Trait cranelift_codegen::ir::InstBuilderBase [−][src]
pub trait InstBuilderBase<'f>: Sized { fn data_flow_graph(&self) -> &DataFlowGraph; fn data_flow_graph_mut(&mut self) -> &mut DataFlowGraph; fn build(
self,
data: InstructionData,
ctrl_typevar: Type
) -> (Inst, &'f mut DataFlowGraph); }
Base trait for instruction builders.
The InstBuilderBase
trait provides the basic functionality required by the methods of the
generated InstBuilder
trait. These methods should not normally be used directly. Use the
methods in the InstBuilder
trait instead.
Any data type that implements InstBuilderBase
also gets all the methods of the InstBuilder
trait.
Required methods
fn data_flow_graph(&self) -> &DataFlowGraph
[src]
Get an immutable reference to the data flow graph that will hold the constructed instructions.
fn data_flow_graph_mut(&mut self) -> &mut DataFlowGraph
[src]
Get a mutable reference to the data flow graph that will hold the constructed instructions.
fn build(
self,
data: InstructionData,
ctrl_typevar: Type
) -> (Inst, &'f mut DataFlowGraph)
[src]
self,
data: InstructionData,
ctrl_typevar: Type
) -> (Inst, &'f mut DataFlowGraph)
Insert an instruction and return a reference to it, consuming the builder.
The result types may depend on a controlling type variable. For non-polymorphic
instructions with multiple results, pass INVALID
for the ctrl_typevar
argument.
Implementors
impl<'f> InstBuilderBase<'f> for ReplaceBuilder<'f>
[src]
impl<'f> InstBuilderBase<'f> for ReplaceBuilder<'f>
[src]fn data_flow_graph(&self) -> &DataFlowGraph
[src]
fn data_flow_graph_mut(&mut self) -> &mut DataFlowGraph
[src]
fn build(
self,
data: InstructionData,
ctrl_typevar: Type
) -> (Inst, &'f mut DataFlowGraph)
[src]
self,
data: InstructionData,
ctrl_typevar: Type
) -> (Inst, &'f mut DataFlowGraph)
impl<'f, IIB: InstInserterBase<'f>> InstBuilderBase<'f> for InsertBuilder<'f, IIB>
[src]
impl<'f, IIB: InstInserterBase<'f>> InstBuilderBase<'f> for InsertBuilder<'f, IIB>
[src]fn data_flow_graph(&self) -> &DataFlowGraph
[src]
fn data_flow_graph_mut(&mut self) -> &mut DataFlowGraph
[src]
fn build(
self,
data: InstructionData,
ctrl_typevar: Type
) -> (Inst, &'f mut DataFlowGraph)
[src]
self,
data: InstructionData,
ctrl_typevar: Type
) -> (Inst, &'f mut DataFlowGraph)