forked from rust-lang/rust
-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Auto merge of rust-lang#117560 - lqd:issue-117146, r=matthewjasper
Compute polonius loan scopes over the region graph In issue rust-lang#117146 a loan flows into an SCC containing a placeholder, and whose representative is an existential region. Since we currently compute loan scopes by looking at SCCs and their representatives only, polonius would compute kill points for this loan here whereas NLLs would not of course. There are a few ways to fix this: - don't try to be efficient by doing the computation over SCCs, and simply look for free regions and placeholders in the successors of the issuing region. - change how the SCC representatives are picked, biasing towards placeholders over existential regions. They *shouldn't* matter much, but some downstream code may subtly depend on the current scheme (though no tests fail if we do such a change). This is for unrelated reasons also the way rust-lang#116891 changes the representative computation. So that PR would also fix issue rust-lang#117146. - try to remove placeholders from the main path, and contain them to a pre-pass + a post-pass kind of polonius leak check. If possible, it would fix this issue by turning an outlives constraints to a placeholder into a constraint to 'static. This should also fix the issue, as the representative would be the free region in the SCC. We want to prototype this change to see if it's possible to try to simplify the borrowck main path from having to deal with placeholders and higher-ranked subtyping 🤞. I'd like to take advantage of fuzzing and a crater run sooner rather than later, so that we grow more confidence that the 2 models are indeed equivalent empirically. Therefore this PR implements option 1 to fix the issue now. We can take care of efficiency later after validation, and once we implement option 3 (which could also impact option 2 and that associated PR, maybe the lack of placeholders could remove the need to change the representative computation) to traverse SCCs and their representative again. (Or we maybe will have some kind of naive position-dependent outlives propagation by then and this code would have been changed) Fixes rust-lang#117146. r? `@matthewjasper`
- Loading branch information
Showing
5 changed files
with
114 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
40 changes: 40 additions & 0 deletions
40
tests/ui/nll/polonius/location-insensitive-scopes-issue-117146.nll.stderr
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
error[E0597]: `a` does not live long enough | ||
--> $DIR/location-insensitive-scopes-issue-117146.rs:10:18 | ||
| | ||
LL | let b = |_| &a; | ||
| --- -^ | ||
| | || | ||
| | |borrowed value does not live long enough | ||
| | returning this value requires that `a` is borrowed for `'static` | ||
| value captured here | ||
... | ||
LL | } | ||
| - `a` dropped here while still borrowed | ||
| | ||
note: due to current limitations in the borrow checker, this implies a `'static` lifetime | ||
--> $DIR/location-insensitive-scopes-issue-117146.rs:20:22 | ||
| | ||
LL | fn bad<F: Fn(&()) -> &()>(_: F) {} | ||
| ^^^ | ||
|
||
error: implementation of `Fn` is not general enough | ||
--> $DIR/location-insensitive-scopes-issue-117146.rs:13:5 | ||
| | ||
LL | bad(&b); | ||
| ^^^^^^^ implementation of `Fn` is not general enough | ||
| | ||
= note: closure with signature `fn(&'2 ()) -> &()` must implement `Fn<(&'1 (),)>`, for any lifetime `'1`... | ||
= note: ...but it actually implements `Fn<(&'2 (),)>`, for some specific lifetime `'2` | ||
|
||
error: implementation of `FnOnce` is not general enough | ||
--> $DIR/location-insensitive-scopes-issue-117146.rs:13:5 | ||
| | ||
LL | bad(&b); | ||
| ^^^^^^^ implementation of `FnOnce` is not general enough | ||
| | ||
= note: closure with signature `fn(&'2 ()) -> &()` must implement `FnOnce<(&'1 (),)>`, for any lifetime `'1`... | ||
= note: ...but it actually implements `FnOnce<(&'2 (),)>`, for some specific lifetime `'2` | ||
|
||
error: aborting due to 3 previous errors | ||
|
||
For more information about this error, try `rustc --explain E0597`. |
40 changes: 40 additions & 0 deletions
40
tests/ui/nll/polonius/location-insensitive-scopes-issue-117146.polonius.stderr
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
error[E0597]: `a` does not live long enough | ||
--> $DIR/location-insensitive-scopes-issue-117146.rs:10:18 | ||
| | ||
LL | let b = |_| &a; | ||
| --- -^ | ||
| | || | ||
| | |borrowed value does not live long enough | ||
| | returning this value requires that `a` is borrowed for `'static` | ||
| value captured here | ||
... | ||
LL | } | ||
| - `a` dropped here while still borrowed | ||
| | ||
note: due to current limitations in the borrow checker, this implies a `'static` lifetime | ||
--> $DIR/location-insensitive-scopes-issue-117146.rs:20:22 | ||
| | ||
LL | fn bad<F: Fn(&()) -> &()>(_: F) {} | ||
| ^^^ | ||
|
||
error: implementation of `Fn` is not general enough | ||
--> $DIR/location-insensitive-scopes-issue-117146.rs:13:5 | ||
| | ||
LL | bad(&b); | ||
| ^^^^^^^ implementation of `Fn` is not general enough | ||
| | ||
= note: closure with signature `fn(&'2 ()) -> &()` must implement `Fn<(&'1 (),)>`, for any lifetime `'1`... | ||
= note: ...but it actually implements `Fn<(&'2 (),)>`, for some specific lifetime `'2` | ||
|
||
error: implementation of `FnOnce` is not general enough | ||
--> $DIR/location-insensitive-scopes-issue-117146.rs:13:5 | ||
| | ||
LL | bad(&b); | ||
| ^^^^^^^ implementation of `FnOnce` is not general enough | ||
| | ||
= note: closure with signature `fn(&'2 ()) -> &()` must implement `FnOnce<(&'1 (),)>`, for any lifetime `'1`... | ||
= note: ...but it actually implements `FnOnce<(&'2 (),)>`, for some specific lifetime `'2` | ||
|
||
error: aborting due to 3 previous errors | ||
|
||
For more information about this error, try `rustc --explain E0597`. |
20 changes: 20 additions & 0 deletions
20
tests/ui/nll/polonius/location-insensitive-scopes-issue-117146.rs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
// This is a non-regression test for issue #117146, where NLL and `-Zpolonius=next` computed | ||
// different loan scopes when a region flowed into an SCC whose representative was an existential | ||
// region. | ||
|
||
// revisions: nll polonius | ||
// [polonius] compile-flags: -Zpolonius=next | ||
|
||
fn main() { | ||
let a = (); | ||
let b = |_| &a; | ||
//[nll]~^ ERROR `a` does not live long enough | ||
//[polonius]~^^ ERROR `a` does not live long enough | ||
bad(&b); | ||
//[nll]~^ ERROR implementation of `Fn` | ||
//[nll]~| ERROR implementation of `FnOnce` | ||
//[polonius]~^^^ ERROR implementation of `Fn` | ||
//[polonius]~| ERROR implementation of `FnOnce` | ||
} | ||
|
||
fn bad<F: Fn(&()) -> &()>(_: F) {} |