MCPcopy Create free account
hub / github.com/Amanieu/regalloc3 / GenericFunction

Class GenericFunction

src/debug_utils/generic_function/mod.rs:71–77  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

69#[derive(Clone)]
70#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
71pub struct GenericFunction {
72 entry_points: Vec<Block>,
73 blocks: PrimaryMap<Block, BlockData>,
74 insts: PrimaryMap<Inst, InstData>,
75 values: PrimaryMap<Value, ValueData>,
76 value_groups: PrimaryMap<ValueGroup, Vec<Value>>,
77}
78
79impl fmt::Debug for GenericFunction {
80 fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected