Home
last modified time | relevance | path

Searched refs:struct_type_index (Results 1 – 8 of 8) sorted by relevance

/wasmtime-44.0.1/crates/wasmtime/src/runtime/vm/
H A Dconst_expr.rs294 ConstOp::StructNew { struct_type_index } => { in eval_loop()
296 [*struct_type_index] in eval_loop()
321 ConstOp::StructNewDefault { struct_type_index } => { in eval_loop()
323 [*struct_type_index] in eval_loop()
/wasmtime-44.0.1/crates/cranelift/src/func_environ/gc/
H A Denabled.rs314 struct_type_index: TypeIndex, in translate_struct_new()
317 gc_compiler(func_env)?.alloc_struct(func_env, builder, struct_type_index, &fields) in translate_struct_new()
352 struct_type_index: TypeIndex, in translate_struct_new_default()
354 let interned_ty = func_env.module.types[struct_type_index].unwrap_module_type_index(); in translate_struct_new_default()
361 gc_compiler(func_env)?.alloc_struct(func_env, builder, struct_type_index, &fields) in translate_struct_new_default()
367 struct_type_index: TypeIndex, in translate_struct_get()
384 let interned_type_index = func_env.module.types[struct_type_index].unwrap_module_type_index(); in translate_struct_get()
418 struct_type_index: TypeIndex, in translate_struct_set()
433 let interned_type_index = func_env.module.types[struct_type_index].unwrap_module_type_index(); in translate_struct_set()
/wasmtime-44.0.1/crates/cranelift/src/func_environ/
H A Dgc.rs66 struct_type_index: TypeIndex, in alloc_struct()
/wasmtime-44.0.1/crates/cranelift/src/translate/
H A Dcode_translator.rs2693 let struct_type_index = TypeIndex::from_u32(*struct_type_index); in translate_operator() localVariable
2702 let struct_type_index = TypeIndex::from_u32(*struct_type_index); in translate_operator() localVariable
2708 struct_type_index, in translate_operator()
2711 let struct_type_index = TypeIndex::from_u32(*struct_type_index); in translate_operator() localVariable
2716 struct_type_index, in translate_operator()
2724 struct_type_index, in translate_operator()
2727 let struct_type_index = TypeIndex::from_u32(*struct_type_index); in translate_operator() localVariable
2740 struct_type_index, in translate_operator()
2743 let struct_type_index = TypeIndex::from_u32(*struct_type_index); in translate_operator() localVariable
2756 struct_type_index, in translate_operator()
[all …]
/wasmtime-44.0.1/crates/cranelift/src/func_environ/gc/enabled/
H A Dnull.rs252 struct_type_index: TypeIndex, in alloc_struct()
256 func_env.module.types[struct_type_index].unwrap_module_type_index(); in alloc_struct()
H A Ddrc.rs453 struct_type_index: TypeIndex, in alloc_struct()
457 func_env.module.types[struct_type_index].unwrap_module_type_index(); in alloc_struct()
/wasmtime-44.0.1/crates/environ/src/
H A Dtypes.rs2016 struct_type_index: TypeIndex,
2019 struct_type_index: TypeIndex,
2059 O::StructNew { struct_type_index } => Self::StructNew { in from_wasmparser()
2060 struct_type_index: TypeIndex::from_u32(struct_type_index), in from_wasmparser()
2062 O::StructNewDefault { struct_type_index } => Self::StructNewDefault { in from_wasmparser()
2063 struct_type_index: TypeIndex::from_u32(struct_type_index), in from_wasmparser()
/wasmtime-44.0.1/crates/cranelift/src/
H A Dfunc_environ.rs2611 pub fn struct_fields_len(&mut self, struct_type_index: TypeIndex) -> WasmResult<usize> { in struct_fields_len()
2612 let ty = self.module.types[struct_type_index].unwrap_module_type_index(); in struct_fields_len()
2622 struct_type_index: TypeIndex, in translate_struct_new()
2625 gc::translate_struct_new(self, builder, struct_type_index, &fields) in translate_struct_new()
2631 struct_type_index: TypeIndex, in translate_struct_new_default()
2633 gc::translate_struct_new_default(self, builder, struct_type_index) in translate_struct_new_default()
2639 struct_type_index: TypeIndex, in translate_struct_get()
2647 struct_type_index, in translate_struct_get()
2657 struct_type_index: TypeIndex, in translate_struct_set()
2665 struct_type_index, in translate_struct_set()