Home
last modified time | relevance | path

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

/wasmtime-44.0.1/cranelift/codegen/src/
H A Dscoped_hash_map.rs79 pub struct ScopedHashMap<K, V> { struct
85 impl<K, V> ScopedHashMap<K, V> argument
223 let mut map: ScopedHashMap<i32, i32> = ScopedHashMap::new(); in basic()
319 let mut map: ScopedHashMap<i32, i32> = ScopedHashMap::new(); in insert_arbitrary_depth()
/wasmtime-44.0.1/cranelift/codegen/src/egraph/
H A Dmod.rs16 use crate::scoped_hash_map::{Entry as ScopedEntry, ScopedHashMap};
86 pub(crate) gvn_map: &'opt mut ScopedHashMap<(Type, InstructionData), Option<Value>>,
771 let mut gvn_map: ScopedHashMap<(Type, InstructionData), Option<Value>> = in remove_pure_and_optimize()
772 ScopedHashMap::with_capacity(cursor.func.dfg.num_values()); in remove_pure_and_optimize()
H A Delaborate.rs12 use crate::scoped_hash_map::ScopedHashMap;
46 value_to_elaborated_value: ScopedHashMap<Value, ElaboratedValue>,
157 value_to_elaborated_value: ScopedHashMap::with_capacity(num_values), in new()