Home
last modified time | relevance | path

Searched refs:FxHashSet (Results 1 – 7 of 7) sorted by relevance

/wasmtime-44.0.1/cranelift/codegen/src/machinst/
H A Dblockorder.rs67 use crate::{FxHashMap, FxHashSet};
90 cold_blocks: FxHashSet<BlockIndex>,
92 indirect_branch_targets: FxHashSet<BlockIndex>,
165 let mut indirect_branch_target_clif_blocks = FxHashSet::default(); in new()
246 let mut cold_blocks = FxHashSet::default(); in new()
247 let mut indirect_branch_targets = FxHashSet::default(); in new()
H A Dlower.rs24 use crate::{FxHashMap, FxHashSet};
205 inst_sunk: FxHashSet<Inst>,
506 inst_sunk: FxHashSet::default(), in new()
944 .collect::<FxHashSet<_>>(); in emit_value_label_marks_for_value()
/wasmtime-44.0.1/cranelift/codegen/src/egraph/
H A Dmod.rs3 use crate::FxHashSet;
65 remat_values: FxHashSet<Value>,
88 pub(crate) remat_values: &'opt mut FxHashSet<Value>,
96 pub(crate) subsume_values: FxHashSet<Value>,
705 remat_values: FxHashSet::default(), in new()
864 subsume_values: FxHashSet::default(), in remove_pure_and_optimize()
H A Delaborate.rs14 use crate::{FxHashMap, FxHashSet};
57 remat_values: &'a FxHashSet<Value>,
145 remat_values: &'a FxHashSet<Value>, in new()
416 remat_values: &FxHashSet<Value>, in maybe_remat_arg()
/wasmtime-44.0.1/cranelift/codegen/src/
H A Dremove_constant_phis.rs8 use crate::{FxHashMap, FxHashSet};
341 let mut need_editing = FxHashSet::<Block>::default(); in do_remove_constant_phis()
H A Dalias_analysis.rs64 use crate::{FxHashMap, FxHashSet};
208 let mut queue_set = FxHashSet::default(); in compute_block_input_states()
H A Dlib.rs32 pub type FxHashSet<V> = HashSet<V, rustc_hash::FxBuildHasher>; typedef