-
Notifications
You must be signed in to change notification settings - Fork 12.9k
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 #85186 - nikomatsakis:issue-83538-polluted-cache, r=jac…
…kh726 have on_completion record subcycles have on_completion record subcycles Rework `on_completion` method so that it removes all provisional cache entries that are "below" a completed node (while leaving those entries that are not below the node). This corrects an imprecise result that could in turn lead to an incremental compilation failure. Under the old scheme, if you had: * A depends on... * B depends on A * C depends on... * D depends on C * T: 'static then the provisional results for A, B, C, and D would all be entangled. Thus, if A was `EvaluatedToOkModuloRegions` (because of that final condition), then the result for C and D would also be demoted to "ok modulo regions". In reality, though, the result for C depends only on C and itself, and is not dependent on regions. If we happen to evaluate the cycle starting from C, we would never reach A, and hence the result would be "ok". Under the new scheme, the provisional results for C and D are moved to the permanent cache immediately and are not affected by the result of A. Fixes #83538 r? `@Aaron1011`
- Loading branch information
Showing
9 changed files
with
260 additions
and
51 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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
#![feature(rustc_attrs)] | ||
|
||
// Test for a particular corner case where the evaluation | ||
// cache can get out of date. The problem here is that | ||
// when we cache C, we have observed that it reaches | ||
// to depth 2 (the node for B), but we later realize | ||
// that B itself depends on A (reached depth 0). We | ||
// failed to update the depth for C transitively, which | ||
// resulted in an assertion failure when it was referenced | ||
// from D. | ||
// | ||
// A (reached depth 0) | ||
// E | ||
// B // depth 2 -- reached depth = 0 | ||
// C // depth 3 -- reached depth = 2 (should be 0) | ||
// B | ||
// A // depth 0 | ||
// D (depth 1) | ||
// C (cache -- reached depth = 2) | ||
|
||
struct A { | ||
e: E, | ||
d: C, | ||
} | ||
|
||
struct E { | ||
b: B, | ||
} | ||
|
||
struct B { | ||
a: Option<Box<A>>, | ||
c: C, | ||
} | ||
|
||
struct C { | ||
b: Option<Box<B>>, | ||
} | ||
|
||
#[rustc_evaluate_where_clauses] | ||
fn test<X: ?Sized + Send>() {} | ||
|
||
fn main() { | ||
test::<A>(); | ||
//~^ ERROR evaluate(Binder(TraitPredicate(<A as std::marker::Send>), [])) = Ok(EvaluatedToOk) | ||
} |
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,11 @@ | ||
error: evaluate(Binder(TraitPredicate(<A as std::marker::Send>), [])) = Ok(EvaluatedToOk) | ||
--> $DIR/cache-reached-depth-ice.rs:43:5 | ||
| | ||
LL | fn test<X: ?Sized + Send>() {} | ||
| ---- predicate | ||
... | ||
LL | test::<A>(); | ||
| ^^^^^^^^^ | ||
|
||
error: aborting due to previous error | ||
|
66 changes: 66 additions & 0 deletions
66
src/test/ui/traits/issue-83538-tainted-cache-after-cycle.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,66 @@ | ||
// Regression test for issue #83538. The problem here is that we have | ||
// two cycles: | ||
// | ||
// * `Ty` embeds `Box<Ty>` indirectly, which depends on `Global: 'static`, which is OkModuloRegions. | ||
// * But `Ty` also references `First`, which has a cycle on itself. That should just be `Ok`. | ||
// | ||
// But our caching mechanism was blending both cycles and giving the incorrect result. | ||
|
||
#![feature(rustc_attrs)] | ||
#![allow(bad_style)] | ||
|
||
struct First { | ||
b: Vec<First>, | ||
} | ||
|
||
pub struct Second { | ||
d: Vec<First>, | ||
} | ||
|
||
struct Third<f> { | ||
g: Vec<f>, | ||
} | ||
|
||
enum Ty { | ||
j(Fourth, Fifth, Sixth), | ||
} | ||
|
||
struct Fourth { | ||
o: Vec<Ty>, | ||
} | ||
|
||
struct Fifth { | ||
bounds: First, | ||
} | ||
|
||
struct Sixth { | ||
p: Box<Ty>, | ||
} | ||
|
||
#[rustc_evaluate_where_clauses] | ||
fn forward() | ||
where | ||
Vec<First>: Unpin, | ||
Third<Ty>: Unpin, | ||
{ | ||
} | ||
|
||
#[rustc_evaluate_where_clauses] | ||
fn reverse() | ||
where | ||
Third<Ty>: Unpin, | ||
Vec<First>: Unpin, | ||
{ | ||
} | ||
|
||
fn main() { | ||
// Key is that Vec<First> is "ok" and Third<Ty> is "ok modulo regions": | ||
|
||
forward(); | ||
//~^ ERROR evaluate(Binder(TraitPredicate(<std::vec::Vec<First> as std::marker::Unpin>), [])) = Ok(EvaluatedToOk) | ||
//~| ERROR evaluate(Binder(TraitPredicate(<Third<Ty> as std::marker::Unpin>), [])) = Ok(EvaluatedToOkModuloRegions) | ||
|
||
reverse(); | ||
//~^ ERROR evaluate(Binder(TraitPredicate(<std::vec::Vec<First> as std::marker::Unpin>), [])) = Ok(EvaluatedToOk) | ||
//~| ERROR evaluate(Binder(TraitPredicate(<Third<Ty> as std::marker::Unpin>), [])) = Ok(EvaluatedToOkModuloRegions) | ||
} |
Oops, something went wrong.