Skip to content

Commit f323b0c

Browse files
committed
auto merge of #6640 : dotdash/rust/hash_perf, r=bstrie
The function was a workaround for bootstrapping that isn't required anymore and just degrades hashmap performance, as it doesn't get inlined cross-crate and turns a no-op into a call.
2 parents 2e6cda2 + 09efd47 commit f323b0c

File tree

1 file changed

+15
-19
lines changed

1 file changed

+15
-19
lines changed

src/libcore/hash.rs

+15-19
Original file line numberDiff line numberDiff line change
@@ -76,16 +76,12 @@ pub trait Streaming {
7676
fn reset(&mut self);
7777
}
7878

79-
fn transmute_for_stage0<'a>(bytes: &'a [u8]) -> &'a [u8] {
80-
bytes
81-
}
82-
8379
impl<A:IterBytes> Hash for A {
8480
#[inline(always)]
8581
fn hash_keyed(&self, k0: u64, k1: u64) -> u64 {
8682
let mut s = State::new(k0, k1);
8783
for self.iter_bytes(true) |bytes| {
88-
s.input(transmute_for_stage0(bytes));
84+
s.input(bytes);
8985
}
9086
s.result_u64()
9187
}
@@ -95,10 +91,10 @@ fn hash_keyed_2<A: IterBytes,
9591
B: IterBytes>(a: &A, b: &B, k0: u64, k1: u64) -> u64 {
9692
let mut s = State::new(k0, k1);
9793
for a.iter_bytes(true) |bytes| {
98-
s.input(transmute_for_stage0(bytes));
94+
s.input(bytes);
9995
}
10096
for b.iter_bytes(true) |bytes| {
101-
s.input(transmute_for_stage0(bytes));
97+
s.input(bytes);
10298
}
10399
s.result_u64()
104100
}
@@ -108,13 +104,13 @@ fn hash_keyed_3<A: IterBytes,
108104
C: IterBytes>(a: &A, b: &B, c: &C, k0: u64, k1: u64) -> u64 {
109105
let mut s = State::new(k0, k1);
110106
for a.iter_bytes(true) |bytes| {
111-
s.input(transmute_for_stage0(bytes));
107+
s.input(bytes);
112108
}
113109
for b.iter_bytes(true) |bytes| {
114-
s.input(transmute_for_stage0(bytes));
110+
s.input(bytes);
115111
}
116112
for c.iter_bytes(true) |bytes| {
117-
s.input(transmute_for_stage0(bytes));
113+
s.input(bytes);
118114
}
119115
s.result_u64()
120116
}
@@ -132,16 +128,16 @@ fn hash_keyed_4<A: IterBytes,
132128
-> u64 {
133129
let mut s = State::new(k0, k1);
134130
for a.iter_bytes(true) |bytes| {
135-
s.input(transmute_for_stage0(bytes));
131+
s.input(bytes);
136132
}
137133
for b.iter_bytes(true) |bytes| {
138-
s.input(transmute_for_stage0(bytes));
134+
s.input(bytes);
139135
}
140136
for c.iter_bytes(true) |bytes| {
141-
s.input(transmute_for_stage0(bytes));
137+
s.input(bytes);
142138
}
143139
for d.iter_bytes(true) |bytes| {
144-
s.input(transmute_for_stage0(bytes));
140+
s.input(bytes);
145141
}
146142
s.result_u64()
147143
}
@@ -161,19 +157,19 @@ fn hash_keyed_5<A: IterBytes,
161157
-> u64 {
162158
let mut s = State::new(k0, k1);
163159
for a.iter_bytes(true) |bytes| {
164-
s.input(transmute_for_stage0(bytes));
160+
s.input(bytes);
165161
}
166162
for b.iter_bytes(true) |bytes| {
167-
s.input(transmute_for_stage0(bytes));
163+
s.input(bytes);
168164
}
169165
for c.iter_bytes(true) |bytes| {
170-
s.input(transmute_for_stage0(bytes));
166+
s.input(bytes);
171167
}
172168
for d.iter_bytes(true) |bytes| {
173-
s.input(transmute_for_stage0(bytes));
169+
s.input(bytes);
174170
}
175171
for e.iter_bytes(true) |bytes| {
176-
s.input(transmute_for_stage0(bytes));
172+
s.input(bytes);
177173
}
178174
s.result_u64()
179175
}

0 commit comments

Comments
 (0)