diff options
| author | bors <bors@rust-lang.org> | 2018-12-22 13:49:10 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2018-12-22 13:49:10 +0000 |
| commit | fa922ab876cb3140de2ead9c8ad88a75982c167c (patch) | |
| tree | 448be2134239f359ba139ae046937cefdfafd362 /src | |
| parent | 9966590422ed3e6bd97bc1967b7435a03cfb949b (diff) | |
| parent | f93cbf617000673e5ad2fc0fd0eff0c9ea229314 (diff) | |
| download | rust-fa922ab876cb3140de2ead9c8ad88a75982c167c.tar.gz rust-fa922ab876cb3140de2ead9c8ad88a75982c167c.zip | |
Auto merge of #57060 - nikic:inhabit-perf-2, r=varkor
Short-circuit DefIdForest::intersection() If the forest is already empty, there is no point in intersecting further. Also handle the first element separately, so we don't compute an unnecessary intersection between the full forest and the first element, which is always equal to the first element. This is the second try at fixing #57028, as the previous attempt only recovered part of the regression. I checked locally that this drops time spent in ty::inhabitedness for syn-check a lot, though not to zero. r? @varkor
Diffstat (limited to 'src')
| -rw-r--r-- | src/librustc/ty/inhabitedness/def_id_forest.rs | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/src/librustc/ty/inhabitedness/def_id_forest.rs b/src/librustc/ty/inhabitedness/def_id_forest.rs index 163263babf8..af2185205a3 100644 --- a/src/librustc/ty/inhabitedness/def_id_forest.rs +++ b/src/librustc/ty/inhabitedness/def_id_forest.rs @@ -74,10 +74,21 @@ impl<'a, 'gcx, 'tcx> DefIdForest { iter: I) -> DefIdForest where I: IntoIterator<Item=DefIdForest> { - let mut ret = DefIdForest::full(tcx); + let mut iter = iter.into_iter(); + let mut ret = if let Some(first) = iter.next() { + first + } else { + return DefIdForest::full(tcx); + }; + let mut next_ret = SmallVec::new(); let mut old_ret: SmallVec<[DefId; 1]> = SmallVec::new(); for next_forest in iter { + // No need to continue if the intersection is already empty. + if ret.is_empty() { + break; + } + for id in ret.root_ids.drain() { if next_forest.contains(tcx, id) { next_ret.push(id); |
