Home
last modified time | relevance | path

Searched refs:DynamicTypeData (Results 1 – 6 of 6) sorted by relevance

/wasmtime-44.0.1/cranelift/codegen/src/ir/
H A Ddynamic_type.rs14 pub struct DynamicTypeData { struct
21 impl DynamicTypeData { implementation
38 pub type DynamicTypes = PrimaryMap<DynamicType, DynamicTypeData>;
H A Dstackslot.rs191 use crate::ir::{DynamicTypeData, GlobalValueData};
226 let dtd0 = DynamicTypeData::new(int_vector_ty, gv0); in dynamic_stack_slot()
227 let dtd1 = DynamicTypeData::new(fp_vector_ty, gv1); in dynamic_stack_slot()
H A Dmod.rs40 pub use crate::ir::dynamic_type::{DynamicTypeData, DynamicTypes, dynamic_to_fixed};
H A Ddfg.rs6 use crate::ir::dynamic_type::{DynamicTypeData, DynamicTypes};
823 pub fn make_dynamic_ty(&mut self, data: DynamicTypeData) -> DynamicType { in make_dynamic_ty()
/wasmtime-44.0.1/cranelift/reader/src/
H A Dparser.rs22 DynamicStackSlot, DynamicStackSlotData, DynamicTypeData, ExtFuncData, ExternalName, FuncRef,
297 fn add_dt(&mut self, dt: DynamicType, data: DynamicTypeData, loc: Location) -> ParseResult<()> { in add_dt() argument
300 self.function.dfg.make_dynamic_ty(DynamicTypeData::new( in add_dt()
1582 fn parse_dynamic_type_decl(&mut self) -> ParseResult<(DynamicType, DynamicTypeData)> { in parse_dynamic_type_decl() argument
1592 let data = DynamicTypeData::new(vector_base_ty, dyn_scale); in parse_dynamic_type_decl()
/wasmtime-44.0.1/cranelift/codegen/src/
H A Dinline.rs1532 for ir::DynamicTypeData { in create_dynamic_types()
1537 func.dfg.dynamic_types.push(ir::DynamicTypeData { in create_dynamic_types()