Home
last modified time | relevance | path

Searched refs:create_sized_stack_slot (Results 1 – 11 of 11) sorted by relevance

/wasmtime-44.0.1/cranelift/codegen/src/ir/
H A Dstackslot.rs199 func.create_sized_stack_slot(StackSlotData::new(StackSlotKind::ExplicitSlot, 4, 0)); in stack_slot()
201 func.create_sized_stack_slot(StackSlotData::new(StackSlotKind::ExplicitSlot, 8, 0)); in stack_slot()
H A Dfunction.rs232 pub fn create_sized_stack_slot(&mut self, data: StackSlotData) -> StackSlot { in create_sized_stack_slot() method
/wasmtime-44.0.1/cranelift/codegen/src/
H A Dwrite.rs632 f.create_sized_stack_slot(StackSlotData::new(StackSlotKind::ExplicitSlot, 4, 0)); in basic()
668 f.create_sized_stack_slot(StackSlotData::new(StackSlotKind::ExplicitSlot, 4, 2)); in basic()
/wasmtime-44.0.1/cranelift/frontend/src/
H A Dfrontend.rs572 pub fn create_sized_stack_slot(&mut self, data: StackSlotData) -> StackSlot { in create_sized_stack_slot() method
573 self.func.create_sized_stack_slot(data) in create_sized_stack_slot()
/wasmtime-44.0.1/crates/cranelift/src/func_environ/stack_switching/
H A Dinstructions.rs354 let slot = builder.create_sized_stack_slot(slot_size); in allocate_or_reuse_stack_slot()
1871 let slot = builder.create_sized_stack_slot(slot_size); in translate_switch()
/wasmtime-44.0.1/crates/cranelift/src/
H A Dcompiler.rs1075 let slot = builder.func.create_sized_stack_slot(ir::StackSlotData::new( in allocate_stack_array_and_spill_args()
H A Dfunc_environ.rs1112 .create_sized_stack_slot(ir::StackSlotData::new_with_key( in create_state_slot()
/wasmtime-44.0.1/crates/cranelift/src/compiler/
H A Dcomponent.rs1877 .create_sized_stack_slot(ir::StackSlotData::new( in translate_transcode()
/wasmtime-44.0.1/cranelift/fuzzgen/src/
H A Dfunction_generator.rs1641 let slot = builder.create_sized_stack_slot(ss_data); in generate_stack_slots()
/wasmtime-44.0.1/cranelift/frontend/src/frontend/
H A Dsafepoints.rs567 let slot = func.create_sized_stack_slot(ir::StackSlotData::new( in get_or_create_stack_slot()
/wasmtime-44.0.1/cranelift/reader/src/
H A Dparser.rs249 self.function.create_sized_stack_slot(StackSlotData::new( in add_ss()