Expand description
A Cranelift-specific x64 assembler.
All instructions known to this assembler are listed in the inst
module.
The Inst
enumeration contains a variant for each, allowing matching over
all these instructions. All of this is parameterized by a Registers
trait, allowing users of this assembler to plug in their own register types.
// Tell the assembler the type of registers we're using; we can always
// encode a HW register as a `u8` (e.g., `eax = 0`).
pub struct Regs;
impl Registers for Regs {
type ReadGpr = u8;
type ReadWriteGpr = u8;
type ReadXmm = u8;
type ReadWriteXmm = u8;
}
// Then, build one of the `AND` instructions; this one operates on an
// implicit `AL` register with an immediate. We can collect a sequence of
// instructions by converting to the `Inst` type.
let and = inst::andb_i::new(Imm8::new(0b10101010));
let seq: Vec<Inst<Regs>> = vec![and.into()];
// Now we can encode this sequence into a code buffer, checking that each
// instruction is valid in 64-bit mode.
let mut buffer = vec![];
let offsets = vec![];
for inst in seq {
if inst.features().contains(&Feature::_64b) {
inst.encode(&mut buffer, &offsets);
}
}
assert_eq!(buffer, vec![0x24, 0b10101010]);
With an Inst
, we can encode the instruction into a code buffer; see the
example.
Re-exports§
Modules§
- fuzz
- A fuzz testing oracle for roundtrip assembly-disassembly.
- gpr
- Pure register operands; see
Gpr
. - inst
- Expose all known instructions as Rust
struct
s; this is generated inbuild.rs
. - xmm
- Xmm register operands; see
Xmm
.
Structs§
- Amode
Offset - A 32-bit immediate for address offsets.
- Amode
Offset Plus Known Offset - An
AmodeOffset
immediate with an optional known offset. - Constant
- Wrap
CodeSink
-specific constant keys. - Imm8
- An 8-bit immediate operand.
- Imm16
- A 16-bit immediate operand.
- Imm32
- A 32-bit immediate operand.
- Label
- Wrap
CodeSink
-specific labels. - RexFlags
- A small bit field to record a REX prefix specification:
- Simm8
- A signed 8-bit immediate operand (suitable for sign extension).
- Simm16
- A signed 16-bit immediate operand (suitable for sign extension).
- Simm32
- A signed 32-bit immediate operand (suitable for sign extension).
- Trap
Code - Wrap
CodeSink
-specific trap codes.
Enums§
- Amode
- x64 memory addressing modes.
- Deferred
Target - For RIP-relative addressing, keep track of the
CodeSink
-specific target. - Extension
- Define the ways an immediate may be sign- or zero-extended.
- Feature
- A CPU feature.
- GprMem
- A general-purpose register or memory operand.
- Inst
- An assembly instruction; contains all instructions known to the assembler.
- Scale
- The scaling factor for the index register in certain
Amode
s. - XmmMem
- An XMM register or memory operand.
Traits§
- AsReg
- Describe how to interact with an external register type.
- Code
Sink - Describe how an instruction is emitted into a code buffer.
- Known
Offset Table - A table mapping
KnownOffset
identifiers to theiri32
offset values. - Register
Visitor - Describe a visitor for the register operands of an instruction.
- Registers
- A type set fixing the register types used in the assembler.
Functions§
- generated_
files - List the files generated to create this assembler.
Type Aliases§
- Known
Offset - A
KnownOffset
is a unique identifier for a specific offset known only at emission time.