-
Notifications
You must be signed in to change notification settings - Fork 13.4k
Fix HIR visit order #61572
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix HIR visit order #61572
Changes from 4 commits
9d0960a
0fa945e
8450289
93aa60b
e3d8001
770655a
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||
---|---|---|---|---|---|---|
|
@@ -371,6 +371,19 @@ struct RegionResolutionVisitor<'tcx> { | |||||
|
||||||
// The number of expressions and patterns visited in the current body | ||||||
expr_and_pat_count: usize, | ||||||
// When this is 'true', we record the Scopes we encounter | ||||||
// when processing a Yield expression. This allows us to fix | ||||||
// up their indices. | ||||||
pessimistic_yield: bool, | ||||||
// Stores scopes when pessimistic_yield is true. | ||||||
// Each time we encounter an ExprKind::AssignOp, we push | ||||||
// a new Vec into the outermost Vec. This inner Vec is uesd | ||||||
Aaron1011 marked this conversation as resolved.
Show resolved
Hide resolved
|
||||||
// to store any scopes we encounter when visiting the inenr expressions | ||||||
Aaron1011 marked this conversation as resolved.
Show resolved
Hide resolved
|
||||||
// of the AssignOp. Once we finish visiting the inner expressions, we pop | ||||||
// off the inner Vec, and process the Scopes it contains. | ||||||
// This allows us to handle nested AssignOps - while a terrible idea, | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. ( |
||||||
// they are valid Rust, so we need to handle them. | ||||||
fixup_scopes: Vec<Vec<Scope>>, | ||||||
|
||||||
// Generated scope tree: | ||||||
scope_tree: ScopeTree, | ||||||
|
@@ -947,12 +960,108 @@ fn resolve_expr<'tcx>(visitor: &mut RegionResolutionVisitor<'tcx>, expr: &'tcx h | |||||
} | ||||||
} | ||||||
|
||||||
let prev_pessimistic = visitor.pessimistic_yield; | ||||||
|
||||||
// Ordinarily, we can rely on the visit order of HIR intravisit | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This is a very clear explanation 👍 |
||||||
// to correspond to the actual exectuion order of statements. | ||||||
Aaron1011 marked this conversation as resolved.
Show resolved
Hide resolved
|
||||||
// However, there's a weird corner case with compund assignment | ||||||
// operators (e.g. 'a += b'). The evaluation order depends on whether | ||||||
Aaron1011 marked this conversation as resolved.
Show resolved
Hide resolved
|
||||||
// or not the operator is overloaded (e.g. whether or not a trait | ||||||
// like AddAssign is implemented). | ||||||
|
||||||
// For primitive types (which, despite having a trait impl, don't actually | ||||||
// end up calling it), the evluation order is right-to-left. For example, | ||||||
// the following code snippet: | ||||||
// | ||||||
// let y = &mut 0; | ||||||
// *{println!("LHS!"); y} += {println!("RHS!"); 1}; | ||||||
// | ||||||
// will print: | ||||||
// | ||||||
// RHS! | ||||||
// LHS! | ||||||
// | ||||||
// However, if the operator is used on a non-primitive type, | ||||||
// the evaluation order will be left-to-right, since the operator | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 😓 |
||||||
// actually get desugared to a method call. For example, this | ||||||
// nearly identical code snippet: | ||||||
// | ||||||
// let y = &mut String::new(); | ||||||
// *{println!("LHS String"); y} += {println!("RHS String"); "hi"}; | ||||||
// | ||||||
// will print: | ||||||
// LHS String | ||||||
// RHS String | ||||||
// | ||||||
// To determine the actual execution order, we need to perform | ||||||
// trait resolution. Unfortunately, we need to be able to compute | ||||||
// yield_in_scope before type checking is even done, as it gets | ||||||
// used by AST borrowcheck | ||||||
Aaron1011 marked this conversation as resolved.
Show resolved
Hide resolved
|
||||||
// | ||||||
// Fortunately, we don't need to know the actual execution order. | ||||||
// It sufficies to know the 'worst case' order with respect to yields. | ||||||
Aaron1011 marked this conversation as resolved.
Show resolved
Hide resolved
|
||||||
// Specifically, we need to know the highest 'expr_and_pat_count' | ||||||
// that we could assign to the yield expression. To do this, | ||||||
// we pick the greater of the two values from the left-hand | ||||||
// and right-hand expressions. This makes us overly conservative | ||||||
// about what types could possibly live across yield points, | ||||||
// but we will never fail to detect that a type does actually | ||||||
// live across a yield point. The latter part is critical - | ||||||
// we're already overly conservative about what types will live | ||||||
// across yield points, as the generated MIR will determine | ||||||
// when things are actually live. However, for typecheck to work | ||||||
// properly, we can't miss any types. | ||||||
|
||||||
|
||||||
match expr.node { | ||||||
// Manually recurse over closures, because they are the only | ||||||
// case of nested bodies that share the parent environment. | ||||||
hir::ExprKind::Closure(.., body, _, _) => { | ||||||
let body = visitor.tcx.hir().body(body); | ||||||
visitor.visit_body(body); | ||||||
}, | ||||||
hir::ExprKind::AssignOp(_, ref left_expression, ref right_expression) => { | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
debug!("resolve_expr - enabling pessimistic_yield, was previously {}", | ||||||
prev_pessimistic); | ||||||
|
||||||
visitor.fixup_scopes.push(vec![]); | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Instead of using a There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This way, it would be easier to combine There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. That would require me to also keep track of the starting index for new scopes. I think using a There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. We'd only need to store the starting indices in a local variable, rather than a visitor, which should make things clear, I think. I imagine it'll reduce allocation too. |
||||||
visitor.pessimistic_yield = true; | ||||||
|
||||||
// If the actual execution order turns out to be right-to-left, | ||||||
// then we're fine. However, if the actual execution order is left-to-right, | ||||||
// then we'll assign too low of a count to any 'yield' expressions | ||||||
Aaron1011 marked this conversation as resolved.
Show resolved
Hide resolved
|
||||||
// we encounter in 'right_expression' - they should really occur after all of the | ||||||
// expressions in 'left_expression'. | ||||||
visitor.visit_expr(&right_expression); | ||||||
|
||||||
visitor.pessimistic_yield = prev_pessimistic; | ||||||
|
||||||
let target_scopes = visitor.fixup_scopes.pop().unwrap(); | ||||||
debug!("resolve_expr - restoring pessimistic_yield to {}", prev_pessimistic); | ||||||
|
||||||
|
||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. (Remove this line.) |
||||||
visitor.visit_expr(&left_expression); | ||||||
debug!("resolve_expr - fixing up counts to {}", visitor.expr_and_pat_count); | ||||||
|
||||||
for scope in target_scopes { | ||||||
let mut yield_data = visitor.scope_tree.yield_in_scope.get_mut(&scope).unwrap(); | ||||||
let count = yield_data.expr_and_pat_count; | ||||||
let span = yield_data.span; | ||||||
|
||||||
// expr_and_pat_count never decreases. Since we recorded counts in yield_in_scope | ||||||
// before walking the left-hand side, it should be impossible for the recorded | ||||||
// count to be greater than the left-hand side count. | ||||||
if count > visitor.expr_and_pat_count { | ||||||
bug!("Encountered greater count {} at span {:?} - expected no greater than {}", | ||||||
count, span, visitor.expr_and_pat_count); | ||||||
} | ||||||
let new_count = visitor.expr_and_pat_count; | ||||||
debug!("resolve_expr - increasing count for scope {:?} from {} to {} at span {:?}", | ||||||
scope, count, new_count, span); | ||||||
|
||||||
yield_data.expr_and_pat_count = new_count; | ||||||
} | ||||||
|
||||||
} | ||||||
|
||||||
_ => intravisit::walk_expr(visitor, expr) | ||||||
|
@@ -972,6 +1081,10 @@ fn resolve_expr<'tcx>(visitor: &mut RegionResolutionVisitor<'tcx>, expr: &'tcx h | |||||
source: *source, | ||||||
}; | ||||||
visitor.scope_tree.yield_in_scope.insert(scope, data); | ||||||
if visitor.pessimistic_yield { | ||||||
debug!("resolve_expr in pessimistic_yield - marking scope {:?} for fixup", scope); | ||||||
visitor.fixup_scopes.last_mut().unwrap().push(scope); | ||||||
} | ||||||
|
||||||
// Keep traversing up while we can. | ||||||
match visitor.scope_tree.parent_map.get(&scope) { | ||||||
|
@@ -1360,6 +1473,8 @@ fn region_scope_tree<'tcx>(tcx: TyCtxt<'tcx>, def_id: DefId) -> &'tcx ScopeTree | |||||
var_parent: None, | ||||||
}, | ||||||
terminating_scopes: Default::default(), | ||||||
pessimistic_yield: false, | ||||||
fixup_scopes: vec![] | ||||||
Aaron1011 marked this conversation as resolved.
Show resolved
Hide resolved
|
||||||
}; | ||||||
|
||||||
let body = tcx.hir().body(body_id); | ||||||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -28,8 +28,14 @@ impl<'a, 'tcx> InteriorVisitor<'a, 'tcx> { | |
source_span: Span) { | ||
use syntax_pos::DUMMY_SP; | ||
|
||
debug!("generator_interior: attempting to record type {:?} {:?} {:?} {:?}", | ||
ty, scope, expr, source_span); | ||
|
||
|
||
let live_across_yield = scope.map(|s| { | ||
self.region_scope_tree.yield_in_scope(s).and_then(|yield_data| { | ||
|
||
|
||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. (Remove this line.) |
||
// If we are recording an expression that is the last yield | ||
// in the scope, or that has a postorder CFG index larger | ||
// than the one of all of the yields, then its value can't | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
// Regression test for broken MIR error (#61442) | ||
// Due to the two possible evaluation orders for | ||
// a '+=' expression (depending on whether or not the 'AddAssign' trait | ||
// is being used), we were failing to account for all types that might | ||
// possibly be live across a yield point. | ||
|
||
#![feature(generators)] | ||
|
||
fn foo() { | ||
let _x = static || { | ||
let mut s = String::new(); | ||
s += { yield; "" }; | ||
}; | ||
|
||
let _y = static || { | ||
let x = &mut 0; | ||
*{ yield; x } += match String::new() { _ => 0 }; | ||
}; | ||
|
||
// Please don't ever actually write something like this | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 😄 |
||
let _z = static || { | ||
let x = &mut 0; | ||
*{ | ||
let inner = &mut 1; | ||
*{ yield (); inner } += match String::new() { _ => 1}; | ||
yield; | ||
x | ||
} += match String::new() { _ => 2 }; | ||
}; | ||
} | ||
|
||
fn main() { | ||
foo() | ||
} |
Uh oh!
There was an error while loading. Please reload this page.