aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBruce Mitchener <bruce.mitchener@gmail.com>2022-09-17 17:31:08 +0700
committeriximeow <git@iximeow.net>2022-09-23 00:29:30 -0700
commita36f07578272821cfad2c940b00a5600fd03c793 (patch)
tree0f826a966220633d9ad0a2d9112bbb66c81880bb
parent093781f2652416c28927c76b9ada05ba6450b330 (diff)
Fix some typos.
-rw-r--r--README.md2
-rw-r--r--src/lib.rs2
-rw-r--r--src/long_mode/mod.rs8
-rw-r--r--src/protected_mode/mod.rs8
-rw-r--r--src/real_mode/mod.rs8
5 files changed, 14 insertions, 14 deletions
diff --git a/README.md b/README.md
index ee2f95d..8ed6edb 100644
--- a/README.md
+++ b/README.md
@@ -20,7 +20,7 @@ the `ffi/` directory provides a repackaging of `yaxpeax-x86` suitable for use by
the decoders provided by `yaxpeax-x86` are designed to be usable in a `no_std` setting, and does so by default. to build `yaxpeax_x86` without `std`, add the parameter `default-features = false` to your `yaxpeax-x86` dependency; the [ffi packaging](https://git.iximeow.net/yaxpeax-x86/tree/ffi) of `yaxpeax_x86` does this and builds without the Rust standard library as well. serde can be enabled without `std`, but json serialization/deserialization [need some careful attention](https://serde.rs/no-std.html) in that mode. as well as the `colors` feature to render instructions with default (eg terminal-friendly) syntax highlighting.
### instruction set extensions
-`yaxpeax-x86` decoders provide the option to specify what [instruction set extensions](http://git.iximeow.net/yaxpeax-x86/tree/src/long_mode/mod.rs#n1297) are eligible when decoding, to support decoding x86 instructions as understood by a particular microarchitecture. the default impls of decoders in `yaxpeax_x86` take an optimistsic approach to decoding and assumes all feature sets are available, as well as accepting both intel-specific and amd-specific quirks around undefined encodings.
+`yaxpeax-x86` decoders provide the option to specify what [instruction set extensions](http://git.iximeow.net/yaxpeax-x86/tree/src/long_mode/mod.rs#n1297) are eligible when decoding, to support decoding x86 instructions as understood by a particular microarchitecture. the default impls of decoders in `yaxpeax_x86` take an optimistic approach to decoding and assumes all feature sets are available, as well as accepting both intel-specific and amd-specific quirks around undefined encodings.
yaxpeax-x86 decodes long-mode (`amd64`/`x86_64`), protected-mode (`x86`/`x86_32`), and real-mode (`x86_16`) instructions. the most part, ISA extensions decode equivalently across modes; this is the full list of extensions that are supported:
diff --git a/src/lib.rs b/src/lib.rs
index 9825fd2..86354ca 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -17,7 +17,7 @@
//! ```
//!
//! instructions, operands, registers, and generally all decoding structures, are in their mode's
-//! repsective submodule:
+//! respective submodule:
//! * `x86_64`/`amd64` decoding is under [`long_mode`]
//! * `x86_32`/`x86` decoding is under [`protected_mode`]
//! * `x86_16`/`8086` decoding is under [`real_mode`]
diff --git a/src/long_mode/mod.rs b/src/long_mode/mod.rs
index 2f3e510..b4f296e 100644
--- a/src/long_mode/mod.rs
+++ b/src/long_mode/mod.rs
@@ -399,7 +399,7 @@ pub enum Operand {
/// instruction uses this mode. as an example, `[0x1133]`
DisplacementU32(u32),
/// a memory access to a literal qword address. it's relatively rare that a well-formed x86
- /// instruction uses this mode, but plausibe. for example, `gs:[0x14]`. segment overrides,
+ /// instruction uses this mode, but plausible. for example, `gs:[0x14]`. segment overrides,
/// however, are maintained on the instruction itself.
DisplacementU64(u64),
/// a simple dereference of the address held in some register. for example: `[rsi]`.
@@ -516,7 +516,7 @@ impl OperandSpec {
///
/// the behavior for non-`avx512` instructions is equivalent to `merge`. `zero` is only useful in
/// conjunction with a mask register, where bits specified in the mask register correspond to
-/// unmodified items in the instruction's desination.
+/// unmodified items in the instruction's destination.
#[derive(Debug, Copy, Clone, PartialEq, Eq)]
pub enum MergeMode {
Merge,
@@ -2660,7 +2660,7 @@ enum OperandSpec {
RegRRR_maskmerge_sae_noround,
// the register in modrm_mmm (eg modrm mod bits were 11)
RegMMM,
- // same as `RegRRR`: the register is modrm's `mmm` bits, and may be masekd.
+ // same as `RegRRR`: the register is modrm's `mmm` bits, and may be masked.
RegMMM_maskmerge,
RegMMM_maskmerge_sae_noround,
// the register selected by vex-vvvv bits
@@ -3259,7 +3259,7 @@ impl InstDecoder {
}
/// enable all `avx512` features on this `InstDecoder`. no real CPU, at time of writing,
- /// actually has such a feature comination, but this is a useful overestimate for `avx512`
+ /// actually has such a feature combination, but this is a useful overestimate for `avx512`
/// generally.
pub fn with_avx512(mut self) -> Self {
let avx512_mask =
diff --git a/src/protected_mode/mod.rs b/src/protected_mode/mod.rs
index 5457b9d..644413f 100644
--- a/src/protected_mode/mod.rs
+++ b/src/protected_mode/mod.rs
@@ -339,7 +339,7 @@ pub enum Operand {
/// instruction uses this mode. as an example, `[0x1133]`
DisplacementU16(u16),
/// a memory access to a literal qword address. it's relatively rare that a well-formed x86
- /// instruction uses this mode, but plausibe. for example, `fs:[0x14]`. segment overrides,
+ /// instruction uses this mode, but plausible. for example, `fs:[0x14]`. segment overrides,
/// however, are maintained on the instruction itself.
DisplacementU32(u32),
/// a simple dereference of the address held in some register. for example: `[esi]`.
@@ -464,7 +464,7 @@ impl OperandSpec {
///
/// the behavior for non-`avx512` instructions is equivalent to `merge`. `zero` is only useful in
/// conjunction with a mask register, where bits specified in the mask register correspond to
-/// unmodified items in the instruction's desination.
+/// unmodified items in the instruction's destination.
#[derive(Debug, Copy, Clone, PartialEq, Eq)]
pub enum MergeMode {
Merge,
@@ -2609,7 +2609,7 @@ enum OperandSpec {
RegRRR_maskmerge_sae_noround,
// the register in modrm_mmm (eg modrm mod bits were 11)
RegMMM,
- // same as `RegRRR`: the register is modrm's `mmm` bits, and may be masekd.
+ // same as `RegRRR`: the register is modrm's `mmm` bits, and may be masked.
RegMMM_maskmerge,
RegMMM_maskmerge_sae_noround,
// the register selected by vex-vvvv bits
@@ -3213,7 +3213,7 @@ impl InstDecoder {
}
/// enable all `avx512` features on this `InstDecoder`. no real CPU, at time of writing,
- /// actually has such a feature comination, but this is a useful overestimate for `avx512`
+ /// actually has such a feature combination, but this is a useful overestimate for `avx512`
/// generally.
pub fn with_avx512(mut self) -> Self {
let avx512_mask =
diff --git a/src/real_mode/mod.rs b/src/real_mode/mod.rs
index 8749ae2..13b3ba0 100644
--- a/src/real_mode/mod.rs
+++ b/src/real_mode/mod.rs
@@ -339,7 +339,7 @@ pub enum Operand {
/// instruction uses this mode. as an example, `[0x1133]`
DisplacementU16(u16),
/// a memory access to a literal qword address. it's relatively rare that a well-formed x86
- /// instruction uses this mode, but plausibe. for example, `fs:[0x14]`. segment overrides,
+ /// instruction uses this mode, but plausible. for example, `fs:[0x14]`. segment overrides,
/// however, are maintained on the instruction itself.
DisplacementU32(u32),
/// a simple dereference of the address held in some register. for example: `[esi]`.
@@ -464,7 +464,7 @@ impl OperandSpec {
///
/// the behavior for non-`avx512` instructions is equivalent to `merge`. `zero` is only useful in
/// conjunction with a mask register, where bits specified in the mask register correspond to
-/// unmodified items in the instruction's desination.
+/// unmodified items in the instruction's destination.
#[derive(Debug, Copy, Clone, PartialEq, Eq)]
pub enum MergeMode {
Merge,
@@ -2609,7 +2609,7 @@ enum OperandSpec {
RegRRR_maskmerge_sae_noround,
// the register in modrm_mmm (eg modrm mod bits were 11)
RegMMM,
- // same as `RegRRR`: the register is modrm's `mmm` bits, and may be masekd.
+ // same as `RegRRR`: the register is modrm's `mmm` bits, and may be masked.
RegMMM_maskmerge,
RegMMM_maskmerge_sae_noround,
// the register selected by vex-vvvv bits
@@ -3213,7 +3213,7 @@ impl InstDecoder {
}
/// enable all `avx512` features on this `InstDecoder`. no real CPU, at time of writing,
- /// actually has such a feature comination, but this is a useful overestimate for `avx512`
+ /// actually has such a feature combination, but this is a useful overestimate for `avx512`
/// generally.
pub fn with_avx512(mut self) -> Self {
let avx512_mask =