Searched refs:frame_offset (Results 1 – 7 of 7) sorted by relevance
| /wasmtime-44.0.1/crates/unwinder/src/ |
| H A D | exception_table.rs | 182 call_site.frame_offset.unwrap_or(u32::MAX), in add_func() 313 let frame_offset = callsite_idx in lookup_pc() localVariable 318 frame_offset, in lookup_pc() 338 let frame_offset = in lookup_pc_tag() localVariable 432 frame_offset: None, in serialize_exception_table() 441 frame_offset: None, in serialize_exception_table() 446 frame_offset: Some(0x20), in serialize_exception_table() 458 let (frame_offset, iter) = deserialized.lookup_pc(0x148); in serialize_exception_table() 459 assert_eq!(frame_offset, None); in serialize_exception_table() 463 assert_eq!(frame_offset, None); in serialize_exception_table() [all …]
|
| /wasmtime-44.0.1/crates/wasmtime/src/runtime/vm/ |
| H A D | throw.rs | 59 let (frame_offset, handlers) = et.lookup_pc(u32::try_from(rel_pc).unwrap()); in compute_handler() 60 let fp_to_sp = frame_offset.map(|frame_offset| -isize::try_from(frame_offset).unwrap()); in compute_handler()
|
| /wasmtime-44.0.1/cranelift/interpreter/src/ |
| H A D | interpreter.rs | 203 pub frame_offset: usize, field 220 frame_offset: 0, in default() 255 self.frame_offset += frame.function().fixed_stack_size() as usize; in push_frame() 272 self.frame_offset -= frame.function().fixed_stack_size() as usize; in pop_frame() 317 let final_offset = self.frame_offset as u64 + slot_offset + offset; in stack_address()
|
| /wasmtime-44.0.1/src/commands/ |
| H A D | objdump.rs | 661 while let Some((addr, frame_offset, handlers)) = in exception_table() 667 if let Some(frame_offset) = frame_offset { in exception_table()
|
| /wasmtime-44.0.1/cranelift/codegen/src/machinst/ |
| H A D | buffer.rs | 1727 frame_offset: Option<u32>, in add_try_call_site() 1737 frame_offset, in add_try_call_site() 1945 frame_offset: call_site.frame_offset, in call_sites() 2208 pub frame_offset: Option<u32>, field 2233 pub frame_offset: Option<u32>, field 2958 assert_eq!(call_sites[0].frame_offset, Some(0x10)); in metadata_records()
|
| /wasmtime-44.0.1/cranelift/filetests/src/ |
| H A D | function_runner.rs | 657 .map(|(frame_offset, handler)| { in __cranelift_throw() 660 .wrapping_sub(usize::try_from(frame_offset).unwrap()); in __cranelift_throw()
|
| /wasmtime-44.0.1/crates/cranelift/src/ |
| H A D | compiler.rs | 1585 for (ty, frame_offset) in stack_map.entries() { in clif_to_env_stack_maps() 1587 frame_offsets.push(frame_offset); in clif_to_env_stack_maps()
|