44 releases (12 breaking)

Uses new Rust 2024

0.129.1 Feb 25, 2026
0.128.4 Feb 24, 2026
0.127.0 Dec 22, 2025
0.126.1 Nov 24, 2025
0.118.0 Mar 20, 2025

#992 in Rust patterns

Download history 114625/week @ 2025-11-20 112177/week @ 2025-11-27 128499/week @ 2025-12-04 131920/week @ 2025-12-11 111797/week @ 2025-12-18 82020/week @ 2025-12-25 126748/week @ 2026-01-01 156558/week @ 2026-01-08 157171/week @ 2026-01-15 181591/week @ 2026-01-22 178484/week @ 2026-01-29 179285/week @ 2026-02-05 205636/week @ 2026-02-12 239174/week @ 2026-02-19 278657/week @ 2026-02-26 336596/week @ 2026-03-05

1,094,164 downloads per month
Used in 735 crates (2 directly)

Apache-2.0 WITH LLVM-exception

140KB
3K SLoC

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 WriteGpr = u8;
    type ReadXmm = u8;
    type ReadWriteXmm = u8;
    type WriteXmm = 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 rax: u8 = 0;
let and = inst::andb_i::new(Fixed(rax), Imm8::new(0b10101010));
let seq: Vec<Inst<Regs>> = vec![and.into()];

// Now we can encode this sequence into a code buffer.
let mut buffer = vec![];
for inst in seq {
    inst.encode(&mut buffer);
}
assert_eq!(buffer, vec![0x24, 0b10101010]);

With an Inst, we can encode the instruction into a code buffer; see the example.


cranelift-assembler-x64

A Cranelift-specific x64 assembler. Unlike the existing cranelift-codegen assembler, this assembler uses instructions, not instruction classes, as the core abstraction.

Use

Like cranelift-codegen, using this assembler starts with enum Inst. For convenience, a main.rs script prints the path to this generated code:

$ cat $(cargo run) | head
...
pub enum Inst<R:Registers> {
    andb_i(andb_i),
    andw_i(andw_i),
    andl_i(andl_i),
    ...

Test

In order to check that this assembler emits correct machine code, we fuzz it against a known-good disassembler. We can run a quick, one-second check:

$ cargo test -- --nocapture

Or we can run the fuzzer indefinitely:

$ cargo +nightly fuzz run -s none roundtrip -j16

Dependencies

~0–5.5MB
~167K SLoC