Home
last modified time | relevance | path

Searched refs:DynamicType (Results 1 – 10 of 10) sorted by relevance

/wasmtime-44.0.1/cranelift/codegen/src/ir/
H A Dentities.rs148 pub struct DynamicType(u32); struct
149 entity_impl!(DynamicType, "dt");
151 impl DynamicType { implementation
381 DynamicType(DynamicType), enumerator
407 Self::DynamicType(r) => r.fmt(f), in fmt()
455 impl From<DynamicType> for AnyEntity {
456 fn from(r: DynamicType) -> Self { in from()
457 Self::DynamicType(r) in from()
H A Ddynamic_type.rs5 use crate::ir::entities::DynamicType;
38 pub type DynamicTypes = PrimaryMap<DynamicType, DynamicTypeData>;
H A Dstackslot.rs8 use crate::ir::entities::{DynamicStackSlot, DynamicType};
157 pub dyn_ty: DynamicType,
162 pub fn new(kind: StackSlotKind, dyn_ty: DynamicType) -> Self { in new()
H A Dfunction.rs11 DynamicType, ExtFuncData, FuncRef, GlobalValue, GlobalValueData, Inst, JumpTable,
253 pub fn get_dyn_scale(&self, ty: DynamicType) -> GlobalValue { in get_dyn_scale()
264 pub fn get_concrete_dynamic_ty(&self, ty: DynamicType) -> Option<Type> { in get_concrete_dynamic_ty()
H A Dmod.rs42 Block, Constant, DynamicStackSlot, DynamicType, ExceptionTable, ExceptionTag, FuncRef,
H A Ddfg.rs10 Block, BlockArg, BlockCall, ConstantData, ConstantPool, DynamicType, ExceptionTables,
823 pub fn make_dynamic_ty(&mut self, data: DynamicTypeData) -> DynamicType { in make_dynamic_ty() argument
/wasmtime-44.0.1/cranelift/reader/src/
H A Dsourcemap.rs11 use cranelift_codegen::ir::entities::{AnyEntity, DynamicType};
163 pub fn def_dt(&mut self, entity: DynamicType, loc: Location) -> ParseResult<()> { in def_dt() argument
H A Dparser.rs12 use cranelift_codegen::ir::entities::{AnyEntity, DynamicType};
297 fn add_dt(&mut self, dt: DynamicType, data: DynamicTypeData, loc: Location) -> ParseResult<()> { in add_dt() argument
580 fn match_dt(&mut self, err_msg: &str) -> ParseResult<DynamicType> { in match_dt() argument
581 if let Some(Token::DynamicType(dt)) = self.token() { in match_dt()
583 if let Some(dt) = DynamicType::with_number(dt) { in match_dt()
591 fn concrete_from_dt(&mut self, dt: DynamicType, ctx: &mut Context) -> Option<Type> { in concrete_from_dt() argument
1459 Some(Token::DynamicType(..)) => { in parse_preamble()
1582 fn parse_dynamic_type_decl(&mut self) -> ParseResult<(DynamicType, DynamicTypeData)> { in parse_dynamic_type_decl() argument
H A Dlexer.rs37 DynamicType(u32), // dt5 enumerator
350 "dt" => Some(Token::DynamicType(number)), in numbered_entity()
/wasmtime-44.0.1/cranelift/codegen/src/
H A Dinline.rs1313 fn inlined_dynamic_type(&self, callee_dynamic_type: ir::DynamicType) -> ir::DynamicType { in inlined_dynamic_type() argument
1317 ir::DynamicType::from_u32(offset + callee_dynamic_type.as_u32()) in inlined_dynamic_type()