Skip to content

Commit 76c66a9

Browse files
committed
Auto merge of #37920 - nikomatsakis:compile-time-regression-37864, r=mw
in region, treat current (and future) item-likes alike The `visit_fn` code mutates its surrounding context. Between *items*, this was saved/restored, but between impl items it was not. This meant that we wound up with `CallSiteScope` entries with two parents (or more!). As far as I can tell, this is harmless in actual type-checking, since the regions you interact with are always from at most one of those branches. But it can slow things down. Before, the effect was limited, since it only applied to impl items within an impl. After #37660, impl items are visisted all together at the end, and hence this could create a very messed up hierarchy. Isolating impl item properly solves both issues. I cannot come up with a way to unit-test this; for posterity, however, you can observe the messed up hierarchies with a test as simple as the following, which would create a callsite scope with two parents both before and after ``` struct Foo { } impl Foo { fn bar(&self) -> usize { 22 } fn baz(&self) -> usize { 22 } } fn main() { } ``` Fixes #37864. r? @michaelwoerister cc @pnkfelix -- can you think of a way to make a regr test?
2 parents 1077149 + 6fe4bff commit 76c66a9

File tree

3 files changed

+106
-8
lines changed

3 files changed

+106
-8
lines changed

src/librustc/middle/region.rs

+8-8
Original file line numberDiff line numberDiff line change
@@ -1066,7 +1066,9 @@ fn resolve_local<'a, 'tcx>(visitor: &mut RegionResolutionVisitor<'tcx, 'a>,
10661066
}
10671067
}
10681068

1069-
fn resolve_item<'a, 'tcx>(visitor: &mut RegionResolutionVisitor<'tcx, 'a>, item: &'tcx hir::Item) {
1069+
fn resolve_item_like<'a, 'tcx, F>(visitor: &mut RegionResolutionVisitor<'tcx, 'a>, id: ast::NodeId, walk: F)
1070+
where F: FnOnce(&mut RegionResolutionVisitor<'tcx, 'a>)
1071+
{
10701072
// Items create a new outer block scope as far as we're concerned.
10711073
let prev_cx = visitor.cx;
10721074
let prev_ts = mem::replace(&mut visitor.terminating_scopes, NodeSet());
@@ -1075,8 +1077,8 @@ fn resolve_item<'a, 'tcx>(visitor: &mut RegionResolutionVisitor<'tcx, 'a>, item:
10751077
var_parent: ROOT_CODE_EXTENT,
10761078
parent: ROOT_CODE_EXTENT
10771079
};
1078-
intravisit::walk_item(visitor, item);
1079-
visitor.create_item_scope_if_needed(item.id);
1080+
walk(visitor);
1081+
visitor.create_item_scope_if_needed(id);
10801082
visitor.cx = prev_cx;
10811083
visitor.terminating_scopes = prev_ts;
10821084
}
@@ -1179,17 +1181,15 @@ impl<'ast, 'a> Visitor<'ast> for RegionResolutionVisitor<'ast, 'a> {
11791181
}
11801182

11811183
fn visit_item(&mut self, i: &'ast Item) {
1182-
resolve_item(self, i);
1184+
resolve_item_like(self, i.id, |this| intravisit::walk_item(this, i));
11831185
}
11841186

11851187
fn visit_impl_item(&mut self, ii: &'ast hir::ImplItem) {
1186-
intravisit::walk_impl_item(self, ii);
1187-
self.create_item_scope_if_needed(ii.id);
1188+
resolve_item_like(self, ii.id, |this| intravisit::walk_impl_item(this, ii));
11881189
}
11891190

11901191
fn visit_trait_item(&mut self, ti: &'ast hir::TraitItem) {
1191-
intravisit::walk_trait_item(self, ti);
1192-
self.create_item_scope_if_needed(ti.id);
1192+
resolve_item_like(self, ti.id, |this| intravisit::walk_trait_item(this, ti));
11931193
}
11941194

11951195
fn visit_fn(&mut self, fk: FnKind<'ast>, fd: &'ast FnDecl,
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,68 @@
1+
// Copyright 2012-2014 The Rust Project Developers. See the COPYRIGHT
2+
// file at the top-level directory of this distribution and at
3+
// http://rust-lang.org/COPYRIGHT.
4+
//
5+
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6+
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7+
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8+
// option. This file may not be copied, modified, or distributed
9+
// except according to those terms.
10+
11+
// This flag is needed for plugins to work:
12+
// compile-flags: -C prefer-dynamic
13+
14+
#![feature(plugin_registrar, rustc_private)]
15+
#![crate_type = "dylib"]
16+
#![deny(region_hierarchy)]
17+
18+
extern crate syntax;
19+
#[macro_use]
20+
extern crate rustc;
21+
extern crate rustc_plugin;
22+
23+
use rustc::lint::{LateContext, LintPass, LateLintPass, LintArray, LintContext};
24+
use rustc::hir;
25+
use rustc::hir::intravisit::FnKind;
26+
use rustc::middle::region::CodeExtent;
27+
use rustc::util::nodemap::FxHashMap;
28+
29+
use syntax::ast::{self, NodeId};
30+
use syntax::codemap::Span;
31+
32+
declare_lint!(REGION_HIERARCHY, Warn, "warn about bogus region hierarchy");
33+
34+
struct Pass {
35+
map: FxHashMap<CodeExtent, NodeId>
36+
}
37+
38+
impl LintPass for Pass {
39+
fn get_lints(&self) -> LintArray { lint_array!(REGION_HIERARCHY) }
40+
}
41+
42+
impl LateLintPass for Pass {
43+
fn check_fn(&mut self, cx: &LateContext,
44+
fk: FnKind, _: &hir::FnDecl, expr: &hir::Expr,
45+
span: Span, node: ast::NodeId)
46+
{
47+
if let FnKind::Closure(..) = fk { return }
48+
49+
let mut extent = cx.tcx.region_maps.node_extent(expr.id);
50+
while let Some(parent) = cx.tcx.region_maps.opt_encl_scope(extent) {
51+
extent = parent;
52+
}
53+
if let Some(other) = self.map.insert(extent, node) {
54+
cx.span_lint(REGION_HIERARCHY, span, &format!(
55+
"different fns {:?}, {:?} with the same root extent {:?}",
56+
cx.tcx.map.local_def_id(other),
57+
cx.tcx.map.local_def_id(node),
58+
extent));
59+
}
60+
}
61+
}
62+
63+
#[plugin_registrar]
64+
pub fn plugin_registrar(reg: &mut ::rustc_plugin::Registry) {
65+
reg.register_late_lint_pass(Box::new(
66+
Pass { map: FxHashMap() }
67+
));
68+
}

src/test/run-pass/issue-37290/main.rs

+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
// Copyright 2012-2014 The Rust Project Developers. See the COPYRIGHT
2+
// file at the top-level directory of this distribution and at
3+
// http://rust-lang.org/COPYRIGHT.
4+
//
5+
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6+
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7+
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8+
// option. This file may not be copied, modified, or distributed
9+
// except according to those terms.
10+
11+
// aux-build:lint.rs
12+
13+
#![feature(plugin)]
14+
#![plugin(lint)]
15+
16+
struct Foo {
17+
}
18+
19+
impl Foo {
20+
fn bar(&self) -> usize {
21+
22
22+
}
23+
24+
fn baz(&self) -> usize {
25+
22
26+
}
27+
}
28+
29+
fn main() { }
30+

0 commit comments

Comments
 (0)