Module fuzz

Source
Expand description

A fuzz testing oracle for roundtrip assembly-disassembly.

This contains manual implementations of the Arbitrary trait for types throughout this crate to avoid depending on the arbitrary crate unconditionally (use the fuzz feature instead).

Structs§

FuzzReg
A simple u8 register type for fuzzing only.
FuzzRegs
Fuzz-specific registers.

Traits§

RegistersArbitrary
Helper trait that’s used to be the same as Registers except with an extra for<'a> Arbitrary<'a> bound on all of the associated types.

Functions§

roundtrip
Take a random assembly instruction and check its encoding and pretty-printing against a known-good disassembler.