Home
last modified time | relevance | path

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

/wasmtime-44.0.1/crates/fuzzing/src/generators/gc_ops/
H A Dtests.rs49 GcOp::StructNew { type_index: 0 }, in test_ops()
122 ops.ops = vec![GcOp::StructNew { type_index: 42 }]; in struct_new_removed_when_no_types()
128 .all(|op| !matches!(op, GcOp::StructNew { .. })), in struct_new_removed_when_no_types()
250 GcOp::StructNew { in fixup_check_types_and_indexes()
268 GcOp::StructNew { type_index: 7 }, in fixup_check_types_and_indexes()
276 GcOp::StructNew { type_index: 9 }, in fixup_check_types_and_indexes()
H A Dops.rs490 StructNew { type_index: u32 },
836 Self::StructNew { type_index: x } => { in encode()
837 func.instruction(&Instruction::StructNew(encoding_bases.struct_type_base + x)); in encode()
H A Dtypes.rs549 GcOp::StructNew { type_index: t }, in fixup()
/wasmtime-44.0.1/crates/wasmtime/src/runtime/vm/
H A Dconst_expr.rs280 ConstOp::StructNew { .. } in eval_loop()
294 ConstOp::StructNew { struct_type_index } => { in eval_loop()
/wasmtime-44.0.1/crates/environ/src/
H A Dtypes.rs2015 StructNew { enumerator
2059 O::StructNew { struct_type_index } => Self::StructNew { in from_wasmparser()
/wasmtime-44.0.1/crates/cranelift/src/translate/
H A Dcode_translator.rs2692 Operator::StructNew { struct_type_index } => { in translate_operator()