Skip to content

Commit 1e4241a

Browse files
committed
Optimize Substs::super_fold_with.
This speeds up several rustc-benchmarks by 1--4%.
1 parent 1d3dfa5 commit 1e4241a

File tree

1 file changed

+9
-2
lines changed

1 file changed

+9
-2
lines changed

src/librustc/ty/subst.rs

+9-2
Original file line numberDiff line numberDiff line change
@@ -304,8 +304,15 @@ impl<'a, 'gcx, 'tcx> Substs<'tcx> {
304304

305305
impl<'tcx> TypeFoldable<'tcx> for &'tcx Substs<'tcx> {
306306
fn super_fold_with<'gcx: 'tcx, F: TypeFolder<'gcx, 'tcx>>(&self, folder: &mut F) -> Self {
307-
let params = self.iter().map(|k| k.fold_with(folder)).collect();
308-
folder.tcx().mk_substs(params)
307+
let params: Vec<_> = self.iter().map(|k| k.fold_with(folder)).collect();
308+
309+
// If folding doesn't change the substs, it's faster to avoid calling
310+
// `mk_substs` and instead reuse the existing substs.
311+
if params[..] == self[..] {
312+
self
313+
} else {
314+
folder.tcx().mk_substs(params)
315+
}
309316
}
310317

311318
fn fold_with<'gcx: 'tcx, F: TypeFolder<'gcx, 'tcx>>(&self, folder: &mut F) -> Self {

0 commit comments

Comments
 (0)