Home
last modified time | relevance | path

Searched refs:stack_shape (Results 1 – 9 of 9) sorted by relevance

/wasmtime-44.0.1/crates/cranelift/src/translate/
H A Dstack.rs197 stack_shape: &mut Vec<FrameStackShape>, in truncate_value_stack_to_else_params()
209 stack_shape: &mut Vec<FrameStackShape>, in truncate_value_stack_to_original_size()
228 stack_shape.truncate(new_len); in truncate_value_stack_to_original_size()
264 pub(crate) stack_shape: Vec<FrameStackShape>, field
289 stack_shape: Vec::new(), in new()
409 self.stack_shape.truncate(new_len); in popn()
423 self.stack_shape.truncate(new_len); in pop_stack_shape()
528 if !self.stack_shape.is_empty() { in push_if()
529 let shape = self.stack_shape[i]; in push_if()
530 self.stack_shape.push(shape); in push_if()
[all …]
H A Dfunc_translator.rs289 environ.stacks.stack_shape.clear(); in parse_function_body()
H A Dcode_translator.rs455 &mut environ.stacks.stack_shape, in translate_operator()
3378 &mut environ.stacks.stack_shape, in translate_unreachable_operator()
3394 &mut environ.stacks.stack_shape, in translate_unreachable_operator()
3413 let stack_shape = &mut environ.stacks.stack_shape; in translate_unreachable_operator() localVariable
3420 frame.truncate_value_stack_to_original_size(value_stack, stack_shape); in translate_unreachable_operator()
/wasmtime-44.0.1/crates/wasmtime/src/runtime/
H A Ddebug.rs669 stack_shape: FrameStackShape, field
688 .map(|(wasm_pc, frame_descriptor, stack_shape)| VirtualFrame { in decode()
691 stack_shape, in decode()
735 .stack(frame.stack_shape) in compute()
838 for (_wasm_pc, frame_desc, stack_shape) in frames { in gc_refs_in_frame()
842 for (offset, ty) in frame_desc.stack_and_locals(stack_shape) { in gc_refs_in_frame()
/wasmtime-44.0.1/crates/environ/src/compile/
H A Dframe_table.rs302 for (i, &(wasm_pc, frame_descriptor, stack_shape)) in frames.iter().enumerate() { in add_program_point()
312 .push(U32::new(LittleEndian, stack_shape.0)); in add_program_point()
/wasmtime-44.0.1/src/commands/
H A Dobjdump.rs724 for (wasm_pc, frame_descriptor, stack_shape) in frames { in frame_table()
730 let stack_shape = Self::describe_stack_shape(&frame_descriptor, stack_shape); in frame_table() localVariable
/wasmtime-44.0.1/crates/environ/src/
H A Dframe_table.rs232 let stack_shape = FrameStackShape(data[2].get(LittleEndian)); in program_point_frame_iter() localVariable
239 Some((wasm_pc, frame_descriptor, stack_shape)) in program_point_frame_iter()
/wasmtime-44.0.1/crates/cranelift/src/
H A Dfunc_environ.rs1192 for i in self.stacks.stack_shape.len()..self.stacks.stack.len() { in update_state_slot_stack()
1195 .map(|parent_idx| self.stacks.stack_shape[parent_idx]); in update_state_slot_stack()
1203 self.stacks.stack_shape.push(this_shape); in update_state_slot_stack()
1232 let stack_shape = self in debug_tags() localVariable
1234 .stack_shape in debug_tags()
1250 ir::DebugTag::User(stack_shape), in debug_tags()
H A Dcompiler.rs1627 ir::DebugTag::User(stack_shape), in clif_to_env_frame_tables()
1650 FrameStackShape::from_raw(stack_shape), in clif_to_env_frame_tables()