Trait cranelift_codegen::ir::InstInserterBase[][src]

pub trait InstInserterBase<'f>: Sized {
    fn data_flow_graph(&self) -> &DataFlowGraph;
fn data_flow_graph_mut(&mut self) -> &mut DataFlowGraph;
fn insert_built_inst(
        self,
        inst: Inst,
        ctrl_typevar: Type
    ) -> &'f mut DataFlowGraph; }

Base trait for instruction inserters.

This is an alternative base trait for an instruction builder to implement.

An instruction inserter can be adapted into an instruction builder by wrapping it in an InsertBuilder. This provides some common functionality for instruction builders that insert new instructions, as opposed to the ReplaceBuilder which overwrites existing instructions.

Required Methods

Get an immutable reference to the data flow graph.

Get a mutable reference to the data flow graph.

Insert a new instruction which belongs to the DFG.

Implementors