Skip to content

Commit 4f39fb1

Browse files
committed
Auto merge of rust-lang#97383 - dingxiangfei2009:restore-region-scope-tree-query, r=dingxiangfei2009
Try to cache region_scope_tree as a query This PR will attempt to restore `region_scope_tree` as a query so that caching works again. It seems that `region_scope_tree` could be re-computed for nested items after all, which could explain the performance regression introduced by rust-lang#95563. cc `@Mark-Simulacrum` `@pnkfelix` I will try to trigger a perf run here.
2 parents 6831417 + cd76f2e commit 4f39fb1

File tree

16 files changed

+35
-42
lines changed

16 files changed

+35
-42
lines changed

compiler/rustc_middle/src/arena.rs

+1
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ macro_rules! arena_types {
3131
[decode] unsafety_check_result: rustc_middle::mir::UnsafetyCheckResult,
3232
[decode] code_region: rustc_middle::mir::coverage::CodeRegion,
3333
[] const_allocs: rustc_middle::mir::interpret::Allocation,
34+
[] region_scope_tree: rustc_middle::middle::region::ScopeTree,
3435
// Required for the incremental on-disk cache
3536
[] mir_keys: rustc_hir::def_id::DefIdSet,
3637
[] dropck_outlives:

compiler/rustc_middle/src/query/mod.rs

+6
Original file line numberDiff line numberDiff line change
@@ -1044,6 +1044,12 @@ rustc_queries! {
10441044
desc { "reachability" }
10451045
}
10461046

1047+
/// Per-body `region::ScopeTree`. The `DefId` should be the owner `DefId` for the body;
1048+
/// in the case of closures, this will be redirected to the enclosing function.
1049+
query region_scope_tree(def_id: DefId) -> &'tcx crate::middle::region::ScopeTree {
1050+
desc { |tcx| "computing drop scopes for `{}`", tcx.def_path_str(def_id) }
1051+
}
1052+
10471053
/// Generates a MIR body for the shim.
10481054
query mir_shims(key: ty::InstanceDef<'tcx>) -> mir::Body<'tcx> {
10491055
storage(ArenaCacheSelector<'tcx>)

compiler/rustc_middle/src/ty/context.rs

-8
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ use crate::hir::place::Place as HirPlace;
66
use crate::infer::canonical::{Canonical, CanonicalVarInfo, CanonicalVarInfos};
77
use crate::lint::{struct_lint_level, LintDiagnosticBuilder, LintLevelSource};
88
use crate::middle::codegen_fn_attrs::CodegenFnAttrs;
9-
use crate::middle::region::ScopeTree;
109
use crate::middle::resolve_lifetime::{self, LifetimeScopeForPath};
1110
use crate::middle::stability;
1211
use crate::mir::interpret::{self, Allocation, ConstAllocation, ConstValue, Scalar};
@@ -538,12 +537,6 @@ pub struct TypeckResults<'tcx> {
538537
/// issue by fake reading `t`.
539538
pub closure_fake_reads: FxHashMap<DefId, Vec<(HirPlace<'tcx>, FakeReadCause, hir::HirId)>>,
540539

541-
/// Tracks critical information about regions in a body.
542-
/// This includes containment relationship between regions,
543-
/// liveness relationship between variables and regions and
544-
/// information about yield points.
545-
pub region_scope_tree: ScopeTree,
546-
547540
/// Tracks the rvalue scoping rules which defines finer scoping for rvalue expressions
548541
/// by applying extended parameter rules.
549542
/// Details may be find in `rustc_typeck::check::rvalue_scopes`.
@@ -586,7 +579,6 @@ impl<'tcx> TypeckResults<'tcx> {
586579
concrete_opaque_types: Default::default(),
587580
closure_min_captures: Default::default(),
588581
closure_fake_reads: Default::default(),
589-
region_scope_tree: Default::default(),
590582
rvalue_scopes: Default::default(),
591583
generator_interior_types: ty::Binder::dummy(Default::default()),
592584
treat_byte_string_as_slice: Default::default(),

compiler/rustc_mir_build/src/build/block.rs

+1-2
Original file line numberDiff line numberDiff line change
@@ -108,8 +108,7 @@ impl<'a, 'tcx> Builder<'a, 'tcx> {
108108
let_scope_stack.push(remainder_scope);
109109

110110
// Declare the bindings, which may create a source scope.
111-
let remainder_span =
112-
remainder_scope.span(this.tcx, &this.typeck_results.region_scope_tree);
111+
let remainder_span = remainder_scope.span(this.tcx, this.region_scope_tree);
113112

114113
let visibility_scope =
115114
Some(this.new_source_scope(remainder_span, LintLevel::Inherited, None));

compiler/rustc_mir_build/src/build/matches/mod.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -700,7 +700,7 @@ impl<'a, 'tcx> Builder<'a, 'tcx> {
700700
self.cfg.push(block, Statement { source_info, kind: StatementKind::StorageLive(local_id) });
701701
// Altough there is almost always scope for given variable in corner cases
702702
// like #92893 we might get variable with no scope.
703-
if let Some(region_scope) = self.typeck_results.region_scope_tree.var_scope(var.local_id) && schedule_drop{
703+
if let Some(region_scope) = self.region_scope_tree.var_scope(var.local_id) && schedule_drop{
704704
self.schedule_drop(span, region_scope, local_id, DropKind::Storage);
705705
}
706706
Place::from(local_id)
@@ -713,7 +713,7 @@ impl<'a, 'tcx> Builder<'a, 'tcx> {
713713
for_guard: ForGuard,
714714
) {
715715
let local_id = self.var_local_id(var, for_guard);
716-
if let Some(region_scope) = self.typeck_results.region_scope_tree.var_scope(var.local_id) {
716+
if let Some(region_scope) = self.region_scope_tree.var_scope(var.local_id) {
717717
self.schedule_drop(span, region_scope, local_id, DropKind::Value);
718718
}
719719
}

compiler/rustc_mir_build/src/build/mod.rs

+2
Original file line numberDiff line numberDiff line change
@@ -398,6 +398,7 @@ struct Builder<'a, 'tcx> {
398398
tcx: TyCtxt<'tcx>,
399399
infcx: &'a InferCtxt<'a, 'tcx>,
400400
typeck_results: &'tcx TypeckResults<'tcx>,
401+
region_scope_tree: &'tcx region::ScopeTree,
401402
param_env: ty::ParamEnv<'tcx>,
402403

403404
thir: &'a Thir<'tcx>,
@@ -880,6 +881,7 @@ impl<'a, 'tcx> Builder<'a, 'tcx> {
880881
tcx,
881882
infcx,
882883
typeck_results: tcx.typeck_opt_const_arg(def),
884+
region_scope_tree: tcx.region_scope_tree(def.did),
883885
param_env,
884886
def_id: def.did.to_def_id(),
885887
hir_id,

compiler/rustc_mir_build/src/build/scope.rs

+1-2
Original file line numberDiff line numberDiff line change
@@ -916,8 +916,7 @@ impl<'a, 'tcx> Builder<'a, 'tcx> {
916916
}
917917

918918
if scope.region_scope == region_scope {
919-
let region_scope_span =
920-
region_scope.span(self.tcx, &self.typeck_results.region_scope_tree);
919+
let region_scope_span = region_scope.span(self.tcx, &self.region_scope_tree);
921920
// Attribute scope exit drops to scope's closing brace.
922921
let scope_end = self.tcx.sess.source_map().end_point(region_scope_span);
923922

compiler/rustc_mir_build/src/thir/cx/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ impl<'tcx> Cx<'tcx> {
7272
tcx,
7373
thir: Thir::new(),
7474
param_env: tcx.param_env(def.did),
75-
region_scope_tree: &typeck_results.region_scope_tree,
75+
region_scope_tree: tcx.region_scope_tree(def.did),
7676
typeck_results,
7777
rvalue_scopes: &typeck_results.rvalue_scopes,
7878
body_owner: def.did.to_def_id(),

compiler/rustc_typeck/src/check/fn_ctxt/_impl.rs

+2-3
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ use crate::astconv::{
44
};
55
use crate::check::callee::{self, DeferredCallResolution};
66
use crate::check::method::{self, MethodCallee, SelfSource};
7-
use crate::check::{region, rvalue_scopes};
7+
use crate::check::rvalue_scopes;
88
use crate::check::{BreakableCtxt, Diverges, Expectation, FnCtxt, LocalTy};
99

1010
use rustc_data_structures::captures::Captures;
@@ -622,10 +622,9 @@ impl<'a, 'tcx> FnCtxt<'a, 'tcx> {
622622
}
623623

624624
pub(in super::super) fn resolve_rvalue_scopes(&self, def_id: DefId) {
625-
let scope_tree = region::region_scope_tree(self.tcx, def_id);
625+
let scope_tree = self.tcx.region_scope_tree(def_id);
626626
let rvalue_scopes = { rvalue_scopes::resolve_rvalue_scopes(self, &scope_tree, def_id) };
627627
let mut typeck_results = self.inh.typeck_results.borrow_mut();
628-
typeck_results.region_scope_tree = scope_tree;
629628
typeck_results.rvalue_scopes = rvalue_scopes;
630629
}
631630

compiler/rustc_typeck/src/check/generator_interior.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,7 @@ pub fn resolve_interior<'a, 'tcx>(
184184
let mut visitor = InteriorVisitor {
185185
fcx,
186186
types: FxIndexSet::default(),
187-
region_scope_tree: &typeck_results.region_scope_tree,
187+
region_scope_tree: fcx.tcx.region_scope_tree(def_id),
188188
rvalue_scopes: &typeck_results.rvalue_scopes,
189189
expr_count: 0,
190190
kind,
@@ -195,7 +195,7 @@ pub fn resolve_interior<'a, 'tcx>(
195195
intravisit::walk_body(&mut visitor, body);
196196

197197
// Check that we visited the same amount of expressions as the RegionResolutionVisitor
198-
let region_expr_count = typeck_results.region_scope_tree.body_expr_count(body_id).unwrap();
198+
let region_expr_count = fcx.tcx.region_scope_tree(def_id).body_expr_count(body_id).unwrap();
199199
assert_eq!(region_expr_count, visitor.expr_count);
200200

201201
// The types are already kept in insertion order.

compiler/rustc_typeck/src/check/generator_interior/drop_ranges.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ pub fn compute_drop_ranges<'a, 'tcx>(
4242
let consumed_borrowed_places = find_consumed_and_borrowed(fcx, def_id, body);
4343

4444
let typeck_results = &fcx.typeck_results.borrow();
45-
let num_exprs = typeck_results.region_scope_tree.body_expr_count(body.id()).unwrap_or(0);
45+
let num_exprs = fcx.tcx.region_scope_tree(def_id).body_expr_count(body.id()).unwrap_or(0);
4646
let (mut drop_ranges, borrowed_temporaries) = build_control_flow_graph(
4747
fcx.tcx.hir(),
4848
fcx.tcx,

compiler/rustc_typeck/src/check/mod.rs

+2
Original file line numberDiff line numberDiff line change
@@ -139,6 +139,7 @@ use crate::require_c_abi_if_c_variadic;
139139
use crate::util::common::indenter;
140140

141141
use self::coercion::DynamicCoerceMany;
142+
use self::region::region_scope_tree;
142143
pub use self::Expectation::*;
143144

144145
#[macro_export]
@@ -256,6 +257,7 @@ pub fn provide(providers: &mut Providers) {
256257
check_trait_item_well_formed,
257258
check_impl_item_well_formed,
258259
check_mod_item_types,
260+
region_scope_tree,
259261
..*providers
260262
};
261263
}

compiler/rustc_typeck/src/check/region.rs

+11-4
Original file line numberDiff line numberDiff line change
@@ -797,14 +797,19 @@ impl<'tcx> Visitor<'tcx> for RegionResolutionVisitor<'tcx> {
797797

798798
/// Per-body `region::ScopeTree`. The `DefId` should be the owner `DefId` for the body;
799799
/// in the case of closures, this will be redirected to the enclosing function.
800-
pub fn region_scope_tree(tcx: TyCtxt<'_>, def_id: DefId) -> ScopeTree {
800+
///
801+
/// Performance: This is a query rather than a simple function to enable
802+
/// re-use in incremental scenarios. We may sometimes need to rerun the
803+
/// type checker even when the HIR hasn't changed, and in those cases
804+
/// we can avoid reconstructing the region scope tree.
805+
pub fn region_scope_tree(tcx: TyCtxt<'_>, def_id: DefId) -> &ScopeTree {
801806
let typeck_root_def_id = tcx.typeck_root_def_id(def_id);
802807
if typeck_root_def_id != def_id {
803-
return region_scope_tree(tcx, typeck_root_def_id);
808+
return tcx.region_scope_tree(typeck_root_def_id);
804809
}
805810

806811
let id = tcx.hir().local_def_id_to_hir_id(def_id.expect_local());
807-
if let Some(body_id) = tcx.hir().maybe_body_owned_by(id) {
812+
let scope_tree = if let Some(body_id) = tcx.hir().maybe_body_owned_by(id) {
808813
let mut visitor = RegionResolutionVisitor {
809814
tcx,
810815
scope_tree: ScopeTree::default(),
@@ -821,5 +826,7 @@ pub fn region_scope_tree(tcx: TyCtxt<'_>, def_id: DefId) -> ScopeTree {
821826
visitor.scope_tree
822827
} else {
823828
ScopeTree::default()
824-
}
829+
};
830+
831+
tcx.arena.alloc(scope_tree)
825832
}

compiler/rustc_typeck/src/check/writeback.rs

-2
Original file line numberDiff line numberDiff line change
@@ -71,8 +71,6 @@ impl<'a, 'tcx> FnCtxt<'a, 'tcx> {
7171
wbcx.visit_user_provided_sigs();
7272
wbcx.visit_generator_interior_types();
7373

74-
wbcx.typeck_results.region_scope_tree =
75-
mem::take(&mut self.typeck_results.borrow_mut().region_scope_tree);
7674
wbcx.typeck_results.rvalue_scopes =
7775
mem::take(&mut self.typeck_results.borrow_mut().rvalue_scopes);
7876

src/tools/clippy/clippy_lints/src/loops/needless_range_loop.rs

+2-11
Original file line numberDiff line numberDiff line change
@@ -55,11 +55,7 @@ pub(super) fn check<'tcx>(
5555
// ensure that the indexed variable was declared before the loop, see #601
5656
if let Some(indexed_extent) = indexed_extent {
5757
let parent_def_id = cx.tcx.hir().get_parent_item(expr.hir_id);
58-
let parent_body_id = cx
59-
.tcx
60-
.hir()
61-
.body_owned_by(cx.tcx.hir().local_def_id_to_hir_id(parent_def_id));
62-
let region_scope_tree = &cx.tcx.typeck_body(parent_body_id).region_scope_tree;
58+
let region_scope_tree = cx.tcx.region_scope_tree(parent_def_id);
6359
let pat_extent = region_scope_tree.var_scope(pat.hir_id.local_id).unwrap();
6460
if region_scope_tree.is_subscope_of(indexed_extent, pat_extent) {
6561
return;
@@ -282,14 +278,9 @@ impl<'a, 'tcx> VarVisitor<'a, 'tcx> {
282278
match res {
283279
Res::Local(hir_id) => {
284280
let parent_def_id = self.cx.tcx.hir().get_parent_item(expr.hir_id);
285-
let parent_body_id = self.cx
286-
.tcx
287-
.hir()
288-
.body_owned_by(self.cx.tcx.hir().local_def_id_to_hir_id(parent_def_id));
289281
let extent = self.cx
290282
.tcx
291-
.typeck_body(parent_body_id)
292-
.region_scope_tree
283+
.region_scope_tree(parent_def_id)
293284
.var_scope(hir_id.local_id)
294285
.unwrap();
295286
if index_used_directly {

src/tools/clippy/clippy_lints/src/shadow.rs

+1-4
Original file line numberDiff line numberDiff line change
@@ -162,10 +162,7 @@ fn is_shadow(
162162
first: ItemLocalId,
163163
second: ItemLocalId,
164164
) -> bool {
165-
let scope_tree = &cx
166-
.tcx
167-
.typeck_body(cx.tcx.hir().body_owned_by(cx.tcx.hir().local_def_id_to_hir_id(owner)))
168-
.region_scope_tree;
165+
let scope_tree = cx.tcx.region_scope_tree(owner);
169166
let first_scope = scope_tree.var_scope(first).unwrap();
170167
let second_scope = scope_tree.var_scope(second).unwrap();
171168
scope_tree.is_subscope_of(second_scope, first_scope)

0 commit comments

Comments
 (0)