Home
last modified time | relevance | path

Searched refs:stack_consumed (Results 1 – 3 of 3) sorted by relevance

/wasmtime-44.0.1/winch/codegen/src/codegen/
H A Dcall.rs400 let mut stack_consumed = 0; in cleanup() localVariable
409 stack_consumed += mem.slot.size; in cleanup()
416 if stack_consumed > 0 { in cleanup()
424 sp.as_u32() >= stack_consumed + result_bytes, in cleanup()
427 let dst = SPOffset::from_u32(sp.as_u32() - stack_consumed); in cleanup()
433 masm.free_stack(stack_consumed)?; in cleanup()
438 if stack_consumed > 0 { in cleanup()
H A Dcontrol.rs381 let stack_consumed = context.stack.sizeof(param_count); in calculate_stack_state() localVariable
383 let base_offset = SPOffset::from_u32(current_sp.as_u32() - stack_consumed); in calculate_stack_state()
/wasmtime-44.0.1/winch/codegen/src/
H A Dvisitor.rs2005 let stack_consumed = context.stack.sizeof(results.stack_operands_len()); in visit_br_if() localVariable
2006 let base = masm.sp_offset()?.as_u32() - stack_consumed; in visit_br_if()