Home
last modified time | relevance | path

Searched refs:arg_base_offset (Results 1 – 5 of 5) sorted by relevance

/wasmtime-44.0.1/winch/codegen/src/frame/
H A Dmod.rs131 *offset + (<A as ABI>::arg_base_offset() as u32), in new()
210 let arg_base_offset = <A as ABI>::arg_base_offset().into(); in compute_arg_slots() localVariable
220 .map(|arg| Self::abi_arg_slot(&arg, &mut next_stack, arg_base_offset)) in compute_arg_slots()
225 .map(|arg| Self::abi_arg_slot(&arg, &mut next_stack, arg_base_offset)) in compute_arg_slots()
229 .map(|arg| Self::abi_arg_slot(&arg, &mut next_stack, arg_base_offset)) in compute_arg_slots()
235 fn abi_arg_slot(arg: &ABIOperand, next_stack: &mut u32, arg_base_offset: u32) -> LocalSlot { in abi_arg_slot()
246 LocalSlot::stack_arg(*ty, offset + arg_base_offset) in abi_arg_slot()
/wasmtime-44.0.1/winch/codegen/src/isa/aarch64/
H A Dabi.rs35 fn arg_base_offset() -> u8 { in arg_base_offset() method
69 Self::arg_base_offset() + SHADOW_STACK_POINTER_SLOT_SIZE in initial_frame_size()
/wasmtime-44.0.1/winch/codegen/src/isa/x64/
H A Dabi.rs23 fn arg_base_offset() -> u8 { in arg_base_offset() method
39 Self::arg_base_offset() in initial_frame_size()
H A Dmasm.rs117 offset_upward_to_caller_sp: Self::ABI::arg_base_offset().into(), in frame_setup()
154 offset_upward_to_caller_sp: Self::ABI::arg_base_offset().into(), in check_stack()
/wasmtime-44.0.1/winch/codegen/src/abi/
H A Dmod.rs103 fn arg_base_offset() -> u8; in arg_base_offset() method