pub trait ExtendedOpVisitor: OpVisitor {
// Required methods
fn trap(&mut self) -> Self::Return;
fn nop(&mut self) -> Self::Return;
fn get_sp(&mut self, dst: XReg) -> Self::Return;
}
Available on crate feature
decode
only.Expand description
Like OpVisitor
but for extended operations.
Required Methods§
Implementors§
impl ExtendedOpVisitor for Disassembler<'_>
Available on crate feature
disas
only.