Searched refs:user_stack_maps (Results 1 – 5 of 5) sorted by relevance
| /wasmtime-44.0.1/cranelift/codegen/src/ir/ |
| H A D | mod.rs | 28 mod user_stack_maps; module 68 pub(crate) use crate::ir::user_stack_maps::UserStackMapEntryVec; 69 pub use crate::ir::user_stack_maps::{UserStackMap, UserStackMapEntry};
|
| H A D | dfg.rs | 8 use crate::ir::user_stack_maps::{UserStackMapEntry, UserStackMapEntryVec}; 123 user_stack_maps: alloc::collections::BTreeMap<Inst, UserStackMapEntryVec>, field 175 user_stack_maps: alloc::collections::BTreeMap::new(), in new() 194 self.user_stack_maps.clear(); in clear() 590 self.user_stack_maps.get(&inst).map(|es| &**es) in user_stack_map_entries() 601 self.user_stack_maps.entry(inst).or_default().push(entry); in append_user_stack_map_entry() 625 self.user_stack_maps.remove(&inst) in take_user_stack_map_entries()
|
| /wasmtime-44.0.1/cranelift/codegen/src/machinst/ |
| H A D | buffer.rs | 267 user_stack_maps: SmallVec<[(CodeOffset, u32, ir::UserStackMap); 8]>, field 354 user_stack_maps: self.user_stack_maps, in apply_base_srcloc() 395 pub(crate) user_stack_maps: SmallVec<[(CodeOffset, u32, ir::UserStackMap); 8]>, field 487 user_stack_maps: SmallVec::new(), in new() 1642 user_stack_maps: self.user_stack_maps, in finish() 1801 self.user_stack_maps in push_user_stack_map() 1805 self.user_stack_maps.last().unwrap().0, in push_user_stack_map() 1810 self.user_stack_maps.push((return_addr, span, stack_map)); in push_user_stack_map() 1918 pub fn user_stack_maps(&self) -> &[(CodeOffset, u32, ir::UserStackMap)] { in user_stack_maps() method 1919 &self.user_stack_maps in user_stack_maps() [all …]
|
| H A D | vcode.rs | 104 user_stack_maps: FxHashMap<BackwardsInsnIndex, ir::UserStackMap>, field 600 let old_entry = self.vcode.user_stack_maps.insert(inst, stack_map); in add_user_stack_map() 630 user_stack_maps: FxHashMap::default(), in new() 932 let user_stack_map = self.user_stack_maps.remove(&index); in emit() 1123 self.user_stack_maps.is_empty(), in emit() 1125 self.user_stack_maps, in emit() 1515 self.user_stack_maps.get(&index) in get_user_stack_map()
|
| /wasmtime-44.0.1/crates/cranelift/src/ |
| H A D | compiler.rs | 539 func.buffer.user_stack_maps(), in append_code()
|