Trait cranelift_codegen::machinst::MachInstEmitState [−][src]
pub trait MachInstEmitState<I: MachInst>: Default + Clone + Debug { fn new(abi: &dyn ABICallee<I = I>) -> Self; fn pre_safepoint(&mut self, _stack_map: StackMap) { ... } fn pre_sourceloc(&mut self, _srcloc: SourceLoc) { ... } }
A trait describing the emission state carried between MachInsts when emitting a function body.
Required methods
Loading content...Provided methods
fn pre_safepoint(&mut self, _stack_map: StackMap)
[src]
Update the emission state before emitting an instruction that is a safepoint.
fn pre_sourceloc(&mut self, _srcloc: SourceLoc)
[src]
Update the emission state to indicate instructions are associated with a particular SourceLoc.