Skip to content

Commit 4cb995b

Browse files
authored
Using FxHash* instead of Hash* (microsoft#816)
Using `rustc`'s `FxHashSet` and `FxHashMap` and disabling the use of `std::collections::Hash(Set|Map)` ```console Teleport evaluation time: [80.908 µs 81.012 µs 81.138 µs] change: [-9.0801% -8.7843% -8.4988%] (p = 0.00 < 0.05) Performance has improved. Deutsch-Jozsa evaluation time: [21.520 ms 21.534 ms 21.548 ms] change: [-2.6201% -2.4535% -2.3096%] (p = 0.00 < 0.05) Performance has improved. Large file parity evaluation time: [33.821 ms 33.876 ms 33.942 ms] change: [-0.8022% -0.4683% -0.1777%] (p = 0.00 < 0.05) Change within noise threshold. Large input file time: [16.596 ms 16.614 ms 16.632 ms] change: [-6.6542% -6.4932% -6.3307%] (p = 0.00 < 0.05) Performance has improved. Standard library time: [7.3145 ms 7.3215 ms 7.3294 ms] change: [-4.6977% -4.5701% -4.4439%] (p = 0.00 < 0.05) Performance has improved. ```
1 parent 4d9bc42 commit 4cb995b

29 files changed

+153
-125
lines changed

Cargo.lock

+7
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+1
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,7 @@ num-complex = "0.4"
4646
num-traits = "0.2"
4747
indenter = "0.3"
4848
regex-lite = "0.1"
49+
rustc-hash = "1.1.0"
4950
serde = "1.0"
5051
serde-wasm-bindgen = "0.6"
5152
wasm-bindgen = "0.2"

clippy.toml

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
disallowed-types = [
2+
{ path = "std::collections::HashMap", reason = "use FxHashMap instead" },
3+
{ path = "std::collections::HashSet", reason = "use FxHashSet instead" },
4+
]

compiler/qsc/Cargo.toml

+1
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ qsc_fir = { path = "../qsc_fir" }
2525
qsc_hir = { path = "../qsc_hir" }
2626
qsc_passes = { path = "../qsc_passes" }
2727
qsc_project = { path = "../qsc_project", features = ["fs"] }
28+
rustc-hash = { workspace = true }
2829
thiserror = { workspace = true }
2930

3031
[dev-dependencies]

compiler/qsc/src/interpret/stateful.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ use qsc_frontend::{
3434
error::WithSource,
3535
};
3636
use qsc_passes::PackageType;
37-
use std::collections::HashSet;
37+
use rustc_hash::FxHashSet;
3838
use thiserror::Error;
3939

4040
impl Error {
@@ -561,7 +561,7 @@ pub struct BreakpointSpan {
561561
}
562562

563563
struct BreakpointCollector<'a> {
564-
statements: HashSet<BreakpointSpan>,
564+
statements: FxHashSet<BreakpointSpan>,
565565
sources: &'a SourceMap,
566566
offset: u32,
567567
package: &'a Package,
@@ -570,7 +570,7 @@ struct BreakpointCollector<'a> {
570570
impl<'a> BreakpointCollector<'a> {
571571
fn new(sources: &'a SourceMap, offset: u32, package: &'a Package) -> Self {
572572
Self {
573-
statements: HashSet::new(),
573+
statements: FxHashSet::default(),
574574
sources,
575575
offset,
576576
package,

compiler/qsc_eval/Cargo.toml

+1
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ qsc_data_structures = { path = "../qsc_data_structures" }
1717
qsc_fir = { path = "../qsc_fir" }
1818
qsc_hir = { path = "../qsc_hir" }
1919
rand = { workspace = true }
20+
rustc-hash = { workspace = true }
2021
thiserror = { workspace = true }
2122

2223
[dev-dependencies]

compiler/qsc_eval/src/lib.rs

+3-2
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,9 @@ use qsc_fir::fir::{
2828
PackageId, PatKind, PrimField, Res, SpecBody, SpecGen, StmtKind, StringComponent, UnOp,
2929
};
3030
use qsc_fir::fir::{BlockId, ExprId, PatId, StmtId};
31+
use rustc_hash::FxHashMap;
3132
use std::{
32-
collections::{hash_map::Entry, HashMap},
33+
collections::hash_map::Entry,
3334
fmt::{self, Display, Formatter, Write},
3435
iter,
3536
ops::Neg,
@@ -386,7 +387,7 @@ impl Env {
386387

387388
#[derive(Default)]
388389
struct Scope {
389-
bindings: HashMap<NodeId, Variable>,
390+
bindings: FxHashMap<NodeId, Variable>,
390391
frame_id: usize,
391392
}
392393

compiler/qsc_fir/Cargo.toml

+1
Original file line numberDiff line numberDiff line change
@@ -12,3 +12,4 @@ license.workspace = true
1212
indenter = { workspace = true }
1313
num-bigint = { workspace = true }
1414
qsc_data_structures = { path = "../qsc_data_structures" }
15+
rustc-hash = { workspace = true }

compiler/qsc_fir/src/global.rs

+6-5
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,8 @@ use crate::{
66
ty::Scheme,
77
};
88
use qsc_data_structures::index_map;
9-
use std::{collections::HashMap, rc::Rc};
9+
use rustc_hash::FxHashMap;
10+
use std::rc::Rc;
1011

1112
pub struct Global {
1213
pub namespace: Rc<str>,
@@ -32,8 +33,8 @@ pub struct Term {
3233

3334
#[derive(Default)]
3435
pub struct Table {
35-
tys: HashMap<Rc<str>, HashMap<Rc<str>, Ty>>,
36-
terms: HashMap<Rc<str>, HashMap<Rc<str>, Term>>,
36+
tys: FxHashMap<Rc<str>, FxHashMap<Rc<str>, Ty>>,
37+
terms: FxHashMap<Rc<str>, FxHashMap<Rc<str>, Term>>,
3738
}
3839

3940
impl Table {
@@ -50,8 +51,8 @@ impl Table {
5051

5152
impl FromIterator<Global> for Table {
5253
fn from_iter<T: IntoIterator<Item = Global>>(iter: T) -> Self {
53-
let mut tys: HashMap<_, HashMap<_, _>> = HashMap::new();
54-
let mut terms: HashMap<_, HashMap<_, _>> = HashMap::new();
54+
let mut tys: FxHashMap<_, FxHashMap<_, _>> = FxHashMap::default();
55+
let mut terms: FxHashMap<_, FxHashMap<_, _>> = FxHashMap::default();
5556
for global in iter {
5657
match global.kind {
5758
Kind::Ty(ty) => {

compiler/qsc_fir/src/ty.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@
33

44
use indenter::{indented, Indented};
55
use qsc_data_structures::span::Span;
6+
use rustc_hash::FxHashMap;
67

78
use crate::fir::{CallableKind, FieldPath, Functor, ItemId, Res};
89
use std::{
9-
collections::HashMap,
1010
fmt::{self, Debug, Display, Formatter, Write},
1111
rc::Rc,
1212
};
@@ -109,7 +109,7 @@ impl Scheme {
109109
/// Returns an error if the given arguments do not match the scheme parameters.
110110
pub fn instantiate(&self, args: &[GenericArg]) -> Result<Arrow, InstantiationError> {
111111
if args.len() == self.params.len() {
112-
let args: HashMap<_, _> = self
112+
let args: FxHashMap<_, _> = self
113113
.params
114114
.iter()
115115
.enumerate()

compiler/qsc_frontend/Cargo.toml

+1
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ qsc_ast = { path = "../qsc_ast" }
1717
qsc_data_structures = { path = "../qsc_data_structures" }
1818
qsc_hir = { path = "../qsc_hir" }
1919
qsc_parse = { path = "../qsc_parse" }
20+
rustc-hash = { workspace = true }
2021
thiserror = { workspace = true }
2122

2223
[dev-dependencies]

compiler/qsc_frontend/src/closure.rs

+8-10
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,8 @@ use qsc_hir::{
1212
ty::{Arrow, FunctorSetValue, Ty},
1313
visit::{self, Visitor},
1414
};
15-
use std::{
16-
collections::{HashMap, HashSet},
17-
iter,
18-
};
15+
use rustc_hash::{FxHashMap, FxHashSet};
16+
use std::iter;
1917

2018
pub(super) struct Lambda {
2119
pub(super) kind: CallableKind,
@@ -30,8 +28,8 @@ pub(super) struct PartialApp {
3028
}
3129

3230
struct VarFinder {
33-
bindings: HashSet<NodeId>,
34-
uses: HashSet<NodeId>,
31+
bindings: FxHashSet<NodeId>,
32+
uses: FxHashSet<NodeId>,
3533
}
3634

3735
impl VarFinder {
@@ -63,7 +61,7 @@ impl Visitor<'_> for VarFinder {
6361
}
6462

6563
struct VarReplacer<'a> {
66-
substitutions: &'a HashMap<NodeId, NodeId>,
64+
substitutions: &'a FxHashMap<NodeId, NodeId>,
6765
}
6866

6967
impl VarReplacer<'_> {
@@ -91,14 +89,14 @@ pub(super) fn lift(
9189
span: Span,
9290
) -> (Vec<NodeId>, CallableDecl) {
9391
let mut finder = VarFinder {
94-
bindings: HashSet::new(),
95-
uses: HashSet::new(),
92+
bindings: FxHashSet::default(),
93+
uses: FxHashSet::default(),
9694
};
9795
finder.visit_pat(&lambda.input);
9896
finder.visit_expr(&lambda.body);
9997

10098
let free_vars = finder.free_vars();
101-
let substitutions: HashMap<_, _> = free_vars
99+
let substitutions: FxHashMap<_, _> = free_vars
102100
.iter()
103101
.map(|&id| (id, assigner.next_node()))
104102
.collect();

0 commit comments

Comments
 (0)