pub struct Match {
pub area: Range<u64>,
pub opcode: Str,
pub operands: SmallVec<[Value; 3]>,
pub instructions: Vec<Statement>,
pub jumps: SmallVec<[(u64, Value, Guard); 2]>,
}Expand description
Result of a single disassembly operation.
Fields§
§area: Range<u64>Recognized address range
opcode: StrMatched mnemonic.
operands: SmallVec<[Value; 3]>Opcode arguments.
instructions: Vec<Statement>IL statements modeling the semantics.
jumps: SmallVec<[(u64, Value, Guard); 2]>Jumps/branches originating from the recovered mnemonics
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Match
impl RefUnwindSafe for Match
impl Send for Match
impl Sync for Match
impl Unpin for Match
impl UnwindSafe for Match
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more