Lines Matching refs:FxHashMap
21 use crate::FxHashMap;
104 user_stack_maps: FxHashMap<BackwardsInsnIndex, ir::UserStackMap>,
109 debug_tags: FxHashMap<BackwardsInsnIndex, Range<u32>>,
127 clobbers: FxHashMap<InsnIndex, PRegSet>,
260 debug_info: FxHashMap<ValueLabel, Vec<(InsnIndex, InsnIndex, VReg)>>,
295 debug_info: FxHashMap::default(), in new()
630 user_stack_maps: FxHashMap::default(), in new()
631 debug_tags: FxHashMap::default(), in new()
635 clobbers: FxHashMap::default(), in new()
1687 vreg_aliases: FxHashMap<regalloc2::VReg, regalloc2::VReg>,
1707 vreg_aliases: FxHashMap::with_capacity_and_hasher(capacity, Default::default()), in with_capacity()