Struct cranelift_codegen::ir::dfg::DataFlowGraph

source ·
pub struct DataFlowGraph {
    pub insts: Insts,
    pub blocks: Blocks,
    pub dynamic_types: DynamicTypes,
    pub value_lists: ValueListPool,
    pub facts: SecondaryMap<Value, Option<Fact>>,
    pub signatures: PrimaryMap<SigRef, Signature>,
    pub ext_funcs: PrimaryMap<FuncRef, ExtFuncData>,
    pub values_labels: Option<BTreeMap<Value, ValueLabelAssignments>>,
    pub constants: ConstantPool,
    pub immediates: PrimaryMap<Immediate, ConstantData>,
    pub jump_tables: JumpTables,
    /* private fields */
}
Expand description

A data flow graph defines all instructions and basic blocks in a function as well as the data flow dependencies between them. The DFG also tracks values which can be either instruction results or block parameters.

The layout of blocks in the function and of instructions in each block is recorded by the Layout data structure which forms the other half of the function representation.

Fields§

§insts: Insts

Data about all of the instructions in the function, including opcodes and operands. The instructions in this map are not in program order. That is tracked by Layout, along with the block containing each instruction.

§blocks: Blocks

basic blocks in the function and their parameters.

This map is not in program order. That is handled by Layout, and so is the sequence of instructions contained in each block.

§dynamic_types: DynamicTypes

Dynamic types created.

§value_lists: ValueListPool

Memory pool of value lists.

The ValueList references into this pool appear in many places:

  • Instructions in insts that don’t have room for their entire argument list inline.
  • Instruction result values in results.
  • block parameters in blocks.
§facts: SecondaryMap<Value, Option<Fact>>

Facts: proof-carrying-code assertions about values.

§signatures: PrimaryMap<SigRef, Signature>

Function signature table. These signatures are referenced by indirect call instructions as well as the external function references.

§ext_funcs: PrimaryMap<FuncRef, ExtFuncData>

External function references. These are functions that can be called directly.

§values_labels: Option<BTreeMap<Value, ValueLabelAssignments>>

Saves Value labels.

§constants: ConstantPool

Constants used within the function.

§immediates: PrimaryMap<Immediate, ConstantData>

Stores large immediates that otherwise will not fit on InstructionData.

§jump_tables: JumpTables

Jump tables used in this function.

Implementations§

source§

impl DataFlowGraph

source

pub fn new() -> Self

Create a new empty DataFlowGraph.

source

pub fn clear(&mut self)

Clear everything.

source

pub fn num_insts(&self) -> usize

Get the total number of instructions created in this function, whether they are currently inserted in the layout or not.

This is intended for use with SecondaryMap::with_capacity.

source

pub fn inst_is_valid(&self, inst: Inst) -> bool

Returns true if the given instruction reference is valid.

source

pub fn num_blocks(&self) -> usize

Get the total number of basic blocks created in this function, whether they are currently inserted in the layout or not.

This is intended for use with SecondaryMap::with_capacity.

source

pub fn block_is_valid(&self, block: Block) -> bool

Returns true if the given block reference is valid.

source

pub fn block_call(&mut self, block: Block, args: &[Value]) -> BlockCall

Make a BlockCall, bundling together the block and its arguments.

source

pub fn num_values(&self) -> usize

Get the total number of values.

source

pub fn values_and_defs(&self) -> impl Iterator<Item = (Value, ValueDef)> + '_

Get an iterator over all values and their definitions.

source

pub fn collect_debug_info(&mut self)

Starts collection of debug information.

source

pub fn add_value_label_alias( &mut self, to_alias: Value, from: RelSourceLoc, value: Value )

Inserts a ValueLabelAssignments::Alias for to_alias if debug info collection is enabled.

source§

impl DataFlowGraph

Handling values.

Values are either block parameters or instruction results.

source

pub fn values<'a>(&'a self) -> Values<'_>

Get an iterator over all values.

source

pub fn value_is_valid(&self, v: Value) -> bool

Check if a value reference is valid.

source

pub fn value_is_real(&self, value: Value) -> bool

Check whether a value is valid and not an alias.

source

pub fn value_type(&self, v: Value) -> Type

Get the type of a value.

source

pub fn value_def(&self, v: Value) -> ValueDef

Get the definition of a value.

This is either the instruction that defined it or the Block that has the value as an parameter.

source

pub fn value_is_attached(&self, v: Value) -> bool

Determine if v is an attached instruction result / block parameter.

An attached value can’t be attached to something else without first being detached.

Value aliases are not considered to be attached to anything. Use resolve_aliases() to determine if the original aliased value is attached.

source

pub fn resolve_aliases(&self, value: Value) -> Value

Resolve value aliases.

Find the original SSA value that value aliases.

source

pub fn resolve_all_aliases(&mut self)

Replace all uses of value aliases with their resolved values, and delete the aliases.

source

pub fn change_to_alias(&mut self, dest: Value, src: Value)

Turn a value into an alias of another.

Change the dest value to behave as an alias of src. This means that all uses of dest will behave as if they used that value src.

The dest value can’t be attached to an instruction or block.

source

pub fn replace_with_aliases(&mut self, dest_inst: Inst, original_inst: Inst)

Replace the results of one instruction with aliases to the results of another.

Change all the results of dest_inst to behave as aliases of corresponding results of src_inst, as if calling change_to_alias for each.

After calling this instruction, dest_inst will have had its results cleared, so it likely needs to be removed from the graph.

source§

impl DataFlowGraph

Instructions.

source

pub fn make_inst(&mut self, data: InstructionData) -> Inst

Create a new instruction.

The type of the first result is indicated by data.ty. If the instruction produces multiple results, also call make_inst_results to allocate value table entries. (It is always safe to call make_inst_results, regardless of how many results the instruction has.)

source

pub fn make_dynamic_ty(&mut self, data: DynamicTypeData) -> DynamicType

Declares a dynamic vector type

source

pub fn display_inst<'a>(&'a self, inst: Inst) -> DisplayInst<'a>

Returns an object that displays inst.

source

pub fn display_value_inst(&self, value: Value) -> DisplayInst<'_>

Returns an object that displays the given value’s defining instruction.

Panics if the value is not defined by an instruction (i.e. it is a basic block argument).

source

pub fn inst_values<'dfg>( &'dfg self, inst: Inst ) -> impl DoubleEndedIterator<Item = Value> + 'dfg

Construct a read-only visitor context for the values of this instruction.

source

pub fn map_inst_values<F>(&mut self, inst: Inst, body: F)
where F: FnMut(Value) -> Value,

Map a function over the values of the instruction.

source

pub fn overwrite_inst_values<I>(&mut self, inst: Inst, values: I)
where I: Iterator<Item = Value>,

Overwrite the instruction’s value references with values from the iterator. NOTE: the iterator provided is expected to yield at least as many values as the instruction currently has.

source

pub fn inst_args(&self, inst: Inst) -> &[Value]

Get all value arguments on inst as a slice.

source

pub fn inst_args_mut(&mut self, inst: Inst) -> &mut [Value]

Get all value arguments on inst as a mutable slice.

source

pub fn inst_fixed_args(&self, inst: Inst) -> &[Value]

Get the fixed value arguments on inst as a slice.

source

pub fn inst_fixed_args_mut(&mut self, inst: Inst) -> &mut [Value]

Get the fixed value arguments on inst as a mutable slice.

source

pub fn inst_variable_args(&self, inst: Inst) -> &[Value]

Get the variable value arguments on inst as a slice.

source

pub fn inst_variable_args_mut(&mut self, inst: Inst) -> &mut [Value]

Get the variable value arguments on inst as a mutable slice.

source

pub fn make_inst_results(&mut self, inst: Inst, ctrl_typevar: Type) -> usize

Create result values for an instruction that produces multiple results.

Instructions that produce no result values only need to be created with make_inst, otherwise call make_inst_results to allocate value table entries for the results.

The result value types are determined from the instruction’s value type constraints and the provided ctrl_typevar type for polymorphic instructions. For non-polymorphic instructions, ctrl_typevar is ignored, and INVALID can be used.

The type of the first result value is also set, even if it was already set in the InstructionData passed to make_inst. If this function is called with a single-result instruction, that is the only effect.

source

pub fn make_inst_results_reusing<I>( &mut self, inst: Inst, ctrl_typevar: Type, reuse: I ) -> usize
where I: Iterator<Item = Option<Value>>,

Create result values for inst, reusing the provided detached values.

Create a new set of result values for inst using ctrl_typevar to determine the result types. Any values provided by reuse will be reused. When reuse is exhausted or when it produces None, a new value is created.

source

pub fn replace(&mut self, inst: Inst) -> ReplaceBuilder<'_>

Create a ReplaceBuilder that will replace inst with a new instruction in place.

source

pub fn clear_results(&mut self, inst: Inst)

Clear the list of result values from inst.

This leaves inst without any result values. New result values can be created by calling make_inst_results or by using a replace(inst) builder.

source

pub fn replace_result(&mut self, old_value: Value, new_type: Type) -> Value

Replace an instruction result with a new value of type new_type.

The old_value must be an attached instruction result.

The old value is left detached, so it should probably be changed into something else.

Returns the new value.

source

pub fn clone_inst(&mut self, inst: Inst) -> Inst

Clone an instruction, attaching new result Values and returning them.

source

pub fn first_result(&self, inst: Inst) -> Value

Get the first result of an instruction.

This function panics if the instruction doesn’t have any result.

source

pub fn has_results(&self, inst: Inst) -> bool

Test if inst has any result values currently.

source

pub fn inst_results(&self, inst: Inst) -> &[Value]

Return all the results of an instruction.

source

pub fn inst_results_list(&self, inst: Inst) -> ValueList

Return all the results of an instruction as ValueList.

source

pub fn union(&mut self, x: Value, y: Value) -> Value

Create a union of two values.

source

pub fn call_signature(&self, inst: Inst) -> Option<SigRef>

Get the call signature of a direct or indirect call instruction. Returns None if inst is not a call instruction.

source

pub fn inst_result_types<'a>( &'a self, inst: Inst, ctrl_typevar: Type ) -> impl ExactSizeIterator<Item = Type> + 'a

Get the result types of the given instruction.

source

pub fn compute_result_type( &self, inst: Inst, result_idx: usize, ctrl_typevar: Type ) -> Option<Type>

Compute the type of an instruction result from opcode constraints and call signatures.

This computes the same sequence of result types that make_inst_results() above would assign to the created result values, but it does not depend on make_inst_results() being called first.

Returns None if asked about a result index that is too large.

source

pub fn ctrl_typevar(&self, inst: Inst) -> Type

Get the controlling type variable, or INVALID if inst isn’t polymorphic.

source§

impl DataFlowGraph

basic blocks.

source

pub fn make_block(&mut self) -> Block

Create a new basic block.

source

pub fn num_block_params(&self, block: Block) -> usize

Get the number of parameters on block.

source

pub fn block_params(&self, block: Block) -> &[Value]

Get the parameters on block.

source

pub fn block_param_types(&self, block: Block) -> impl Iterator<Item = Type> + '_

Get the types of the parameters on block.

source

pub fn append_block_param(&mut self, block: Block, ty: Type) -> Value

Append a parameter with type ty to block.

source

pub fn swap_remove_block_param(&mut self, val: Value) -> usize

Removes val from block’s parameters by swapping it with the last parameter on block. Returns the position of val before removal.

Important: to ensure O(1) deletion, this method swaps the removed parameter with the last block parameter. This can disrupt all the branch instructions jumping to this block for which you have to change the branch argument order if necessary.

Panics if val is not a block parameter.

source

pub fn remove_block_param(&mut self, val: Value)

Removes val from block‘s parameters by a standard linear time list removal which preserves ordering. Also updates the values’ data.

source

pub fn attach_block_param(&mut self, block: Block, param: Value)

Append an existing value to block’s parameters.

The appended value can’t already be attached to something else.

In almost all cases, you should be using append_block_param() instead of this method.

source

pub fn replace_block_param(&mut self, old_value: Value, new_type: Type) -> Value

Replace a block parameter with a new value of type ty.

The old_value must be an attached block parameter. It is removed from its place in the list of parameters and replaced by a new value of type new_type. The new value gets the same position in the list, and other parameters are not disturbed.

The old value is left detached, so it should probably be changed into something else.

Returns the new value.

source

pub fn detach_block_params(&mut self, block: Block) -> ValueList

Detach all the parameters from block and return them as a ValueList.

This is a quite low-level operation. Sensible things to do with the detached block parameters is to put them back on the same block with attach_block_param() or change them into aliases with change_to_alias().

source

pub fn merge_facts(&mut self, a: Value, b: Value)

Merge the facts for two values. If both values have facts and they differ, both values get a special “conflict” fact that is never satisfied.

source§

impl DataFlowGraph

Parser routines. These routines should not be used outside the parser.

source

pub fn check_dynamic_type(&mut self, ty: Type) -> Option<Type>

Check that the given concrete Type has been defined in the function.

source

pub fn make_inst_results_for_parser( &mut self, inst: Inst, ctrl_typevar: Type, reuse: &[Value] ) -> usize

Create result values for inst, reusing the provided detached values. This is similar to make_inst_results_reusing except it’s only for use in the parser, which needs to reuse previously invalid values.

source

pub fn append_block_param_for_parser( &mut self, block: Block, ty: Type, val: Value )

Similar to append_block_param, append a parameter with type ty to block, but using value val. This is only for use by the parser to create parameters with specific values.

source

pub fn make_value_alias_for_serialization(&mut self, src: Value, dest: Value)

Create a new value alias. This is only for use by the parser to create aliases with specific values, and the printer for testing.

source

pub fn value_alias_dest_for_serialization(&self, v: Value) -> Option<Value>

If v is already defined as an alias, return its destination value. Otherwise return None. This allows the parser to coalesce identical alias definitions, and the printer to identify an alias’s immediate target.

source

pub fn set_alias_type_for_parser(&mut self, v: Value) -> bool

Compute the type of an alias. This is only for use in the parser. Returns false if an alias cycle was encountered.

source

pub fn make_invalid_value_for_parser(&mut self)

Create an invalid value, to pad the index space. This is only for use by the parser to pad out the value index space.

source

pub fn value_is_valid_for_parser(&self, v: Value) -> bool

Check if a value reference is valid, while being aware of aliases which may be unresolved while parsing.

Trait Implementations§

source§

impl Clone for DataFlowGraph

source§

fn clone(&self) -> DataFlowGraph

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl<'de> Deserialize<'de> for DataFlowGraph

source§

fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>
where __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
source§

impl Hash for DataFlowGraph

source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given Hasher. Read more
1.3.0 · source§

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
source§

impl PartialEq for DataFlowGraph

source§

fn eq(&self, other: &DataFlowGraph) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl Serialize for DataFlowGraph

source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more
source§

impl StructuralPartialEq for DataFlowGraph

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> Same for T

§

type Output = T

Should always be Self
source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,