-
Notifications
You must be signed in to change notification settings - Fork 13k
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
Propagate locals, even if they have unpropagatable assignments somewhere #72135
Merged
Merged
Changes from 3 commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
c849a0d
Add a repro example for not propagating constants of partially const …
oli-obk de434d8
Propagate locals, even if they have unpropagatable assignments somewh…
oli-obk 0a785cd
Add some more sanity tests and add a debug log message for it
oli-obk 27c818b
Bless mir-opt tests to account for #72220
wesleywiser File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
14 changes: 14 additions & 0 deletions
14
src/test/mir-opt/const_prop/mutable_variable_aggregate_partial_read.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,14 @@ | ||
// compile-flags: -O | ||
|
||
// EMIT_MIR rustc.main.ConstProp.diff | ||
fn main() { | ||
let mut x: (i32, i32) = foo(); | ||
x.1 = 99; | ||
x.0 = 42; | ||
let y = x.1; | ||
} | ||
|
||
#[inline(never)] | ||
fn foo() -> (i32, i32) { | ||
unimplemented!() | ||
} |
64 changes: 64 additions & 0 deletions
64
...test/mir-opt/const_prop/mutable_variable_aggregate_partial_read/rustc.main.ConstProp.diff
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,64 @@ | ||
- // MIR for `main` before ConstProp | ||
+ // MIR for `main` after ConstProp | ||
|
||
fn main() -> () { | ||
let mut _0: (); // return place in scope 0 at $DIR/mutable_variable_aggregate_partial_read.rs:4:11: 4:11 | ||
let mut _1: (i32, i32) as UserTypeProjection { base: UserType(0), projs: [] }; // in scope 0 at $DIR/mutable_variable_aggregate_partial_read.rs:5:9: 5:14 | ||
scope 1 { | ||
debug x => _1; // in scope 1 at $DIR/mutable_variable_aggregate_partial_read.rs:5:9: 5:14 | ||
let _2: i32; // in scope 1 at $DIR/mutable_variable_aggregate_partial_read.rs:8:9: 8:10 | ||
scope 2 { | ||
debug y => _2; // in scope 2 at $DIR/mutable_variable_aggregate_partial_read.rs:8:9: 8:10 | ||
} | ||
} | ||
|
||
bb0: { | ||
StorageLive(_1); // scope 0 at $DIR/mutable_variable_aggregate_partial_read.rs:5:9: 5:14 | ||
_1 = const foo() -> bb1; // scope 0 at $DIR/mutable_variable_aggregate_partial_read.rs:5:29: 5:34 | ||
// ty::Const | ||
// + ty: fn() -> (i32, i32) {foo} | ||
// + val: Value(Scalar(<ZST>)) | ||
// mir::Constant | ||
// + span: $DIR/mutable_variable_aggregate_partial_read.rs:5:29: 5:32 | ||
// + literal: Const { ty: fn() -> (i32, i32) {foo}, val: Value(Scalar(<ZST>)) } | ||
} | ||
|
||
bb1: { | ||
(_1.1: i32) = const 99i32; // scope 1 at $DIR/mutable_variable_aggregate_partial_read.rs:6:5: 6:13 | ||
// ty::Const | ||
// + ty: i32 | ||
// + val: Value(Scalar(0x00000063)) | ||
// mir::Constant | ||
- // + span: $DIR/mutable_variable_aggregate_partial_read.rs:6:11: 6:13 | ||
+ // + span: $DIR/mutable_variable_aggregate_partial_read.rs:6:5: 6:13 | ||
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. I should pull 060e437b776e238a492372fbb278fdc27fef1128 out of #71911 and get that merged so we can eliminate this kind of noise from the const prop tests. |
||
// + literal: Const { ty: i32, val: Value(Scalar(0x00000063)) } | ||
(_1.0: i32) = const 42i32; // scope 1 at $DIR/mutable_variable_aggregate_partial_read.rs:7:5: 7:13 | ||
// ty::Const | ||
// + ty: i32 | ||
// + val: Value(Scalar(0x0000002a)) | ||
// mir::Constant | ||
- // + span: $DIR/mutable_variable_aggregate_partial_read.rs:7:11: 7:13 | ||
+ // + span: $DIR/mutable_variable_aggregate_partial_read.rs:7:5: 7:13 | ||
// + literal: Const { ty: i32, val: Value(Scalar(0x0000002a)) } | ||
StorageLive(_2); // scope 1 at $DIR/mutable_variable_aggregate_partial_read.rs:8:9: 8:10 | ||
- _2 = (_1.1: i32); // scope 1 at $DIR/mutable_variable_aggregate_partial_read.rs:8:13: 8:16 | ||
+ _2 = const 99i32; // scope 1 at $DIR/mutable_variable_aggregate_partial_read.rs:8:13: 8:16 | ||
+ // ty::Const | ||
+ // + ty: i32 | ||
+ // + val: Value(Scalar(0x00000063)) | ||
+ // mir::Constant | ||
+ // + span: $DIR/mutable_variable_aggregate_partial_read.rs:8:13: 8:16 | ||
+ // + literal: Const { ty: i32, val: Value(Scalar(0x00000063)) } | ||
_0 = const (); // scope 0 at $DIR/mutable_variable_aggregate_partial_read.rs:4:11: 9:2 | ||
// ty::Const | ||
// + ty: () | ||
// + val: Value(Scalar(<ZST>)) | ||
// mir::Constant | ||
// + span: $DIR/mutable_variable_aggregate_partial_read.rs:4:11: 9:2 | ||
// + literal: Const { ty: (), val: Value(Scalar(<ZST>)) } | ||
StorageDead(_2); // scope 1 at $DIR/mutable_variable_aggregate_partial_read.rs:9:1: 9:2 | ||
StorageDead(_1); // scope 0 at $DIR/mutable_variable_aggregate_partial_read.rs:9:1: 9:2 | ||
return; // scope 0 at $DIR/mutable_variable_aggregate_partial_read.rs:9:2: 9:2 | ||
} | ||
} | ||
|
15 changes: 15 additions & 0 deletions
15
src/test/mir-opt/const_prop/mutable_variable_unprop_assign.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,15 @@ | ||
// compile-flags: -O | ||
|
||
// EMIT_MIR rustc.main.ConstProp.diff | ||
fn main() { | ||
let a = foo(); | ||
let mut x: (i32, i32) = (1, 2); | ||
x.1 = a; | ||
let y = x.1; | ||
let z = x.0; // this could theoretically be allowed, but we can't handle it right now | ||
} | ||
|
||
#[inline(never)] | ||
fn foo() -> i32 { | ||
unimplemented!() | ||
} |
74 changes: 74 additions & 0 deletions
74
src/test/mir-opt/const_prop/mutable_variable_unprop_assign/rustc.main.ConstProp.diff
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,74 @@ | ||
- // MIR for `main` before ConstProp | ||
+ // MIR for `main` after ConstProp | ||
|
||
fn main() -> () { | ||
let mut _0: (); // return place in scope 0 at $DIR/mutable_variable_unprop_assign.rs:4:11: 4:11 | ||
let _1: i32; // in scope 0 at $DIR/mutable_variable_unprop_assign.rs:5:9: 5:10 | ||
let mut _3: i32; // in scope 0 at $DIR/mutable_variable_unprop_assign.rs:7:11: 7:12 | ||
scope 1 { | ||
debug a => _1; // in scope 1 at $DIR/mutable_variable_unprop_assign.rs:5:9: 5:10 | ||
let mut _2: (i32, i32) as UserTypeProjection { base: UserType(0), projs: [] }; // in scope 1 at $DIR/mutable_variable_unprop_assign.rs:6:9: 6:14 | ||
scope 2 { | ||
debug x => _2; // in scope 2 at $DIR/mutable_variable_unprop_assign.rs:6:9: 6:14 | ||
let _4: i32; // in scope 2 at $DIR/mutable_variable_unprop_assign.rs:8:9: 8:10 | ||
scope 3 { | ||
debug y => _4; // in scope 3 at $DIR/mutable_variable_unprop_assign.rs:8:9: 8:10 | ||
let _5: i32; // in scope 3 at $DIR/mutable_variable_unprop_assign.rs:9:9: 9:10 | ||
scope 4 { | ||
debug z => _5; // in scope 4 at $DIR/mutable_variable_unprop_assign.rs:9:9: 9:10 | ||
} | ||
} | ||
} | ||
} | ||
|
||
bb0: { | ||
StorageLive(_1); // scope 0 at $DIR/mutable_variable_unprop_assign.rs:5:9: 5:10 | ||
_1 = const foo() -> bb1; // scope 0 at $DIR/mutable_variable_unprop_assign.rs:5:13: 5:18 | ||
// ty::Const | ||
// + ty: fn() -> i32 {foo} | ||
// + val: Value(Scalar(<ZST>)) | ||
// mir::Constant | ||
// + span: $DIR/mutable_variable_unprop_assign.rs:5:13: 5:16 | ||
// + literal: Const { ty: fn() -> i32 {foo}, val: Value(Scalar(<ZST>)) } | ||
} | ||
|
||
bb1: { | ||
StorageLive(_2); // scope 1 at $DIR/mutable_variable_unprop_assign.rs:6:9: 6:14 | ||
_2 = (const 1i32, const 2i32); // scope 1 at $DIR/mutable_variable_unprop_assign.rs:6:29: 6:35 | ||
// ty::Const | ||
// + ty: i32 | ||
// + val: Value(Scalar(0x00000001)) | ||
// mir::Constant | ||
- // + span: $DIR/mutable_variable_unprop_assign.rs:6:30: 6:31 | ||
+ // + span: $DIR/mutable_variable_unprop_assign.rs:6:29: 6:35 | ||
// + literal: Const { ty: i32, val: Value(Scalar(0x00000001)) } | ||
// ty::Const | ||
// + ty: i32 | ||
// + val: Value(Scalar(0x00000002)) | ||
// mir::Constant | ||
- // + span: $DIR/mutable_variable_unprop_assign.rs:6:33: 6:34 | ||
+ // + span: $DIR/mutable_variable_unprop_assign.rs:6:29: 6:35 | ||
// + literal: Const { ty: i32, val: Value(Scalar(0x00000002)) } | ||
StorageLive(_3); // scope 2 at $DIR/mutable_variable_unprop_assign.rs:7:11: 7:12 | ||
_3 = _1; // scope 2 at $DIR/mutable_variable_unprop_assign.rs:7:11: 7:12 | ||
(_2.1: i32) = move _3; // scope 2 at $DIR/mutable_variable_unprop_assign.rs:7:5: 7:12 | ||
StorageDead(_3); // scope 2 at $DIR/mutable_variable_unprop_assign.rs:7:11: 7:12 | ||
StorageLive(_4); // scope 2 at $DIR/mutable_variable_unprop_assign.rs:8:9: 8:10 | ||
_4 = (_2.1: i32); // scope 2 at $DIR/mutable_variable_unprop_assign.rs:8:13: 8:16 | ||
StorageLive(_5); // scope 3 at $DIR/mutable_variable_unprop_assign.rs:9:9: 9:10 | ||
_5 = (_2.0: i32); // scope 3 at $DIR/mutable_variable_unprop_assign.rs:9:13: 9:16 | ||
_0 = const (); // scope 0 at $DIR/mutable_variable_unprop_assign.rs:4:11: 10:2 | ||
// ty::Const | ||
// + ty: () | ||
// + val: Value(Scalar(<ZST>)) | ||
// mir::Constant | ||
// + span: $DIR/mutable_variable_unprop_assign.rs:4:11: 10:2 | ||
// + literal: Const { ty: (), val: Value(Scalar(<ZST>)) } | ||
StorageDead(_5); // scope 3 at $DIR/mutable_variable_unprop_assign.rs:10:1: 10:2 | ||
StorageDead(_4); // scope 2 at $DIR/mutable_variable_unprop_assign.rs:10:1: 10:2 | ||
StorageDead(_2); // scope 1 at $DIR/mutable_variable_unprop_assign.rs:10:1: 10:2 | ||
StorageDead(_1); // scope 0 at $DIR/mutable_variable_unprop_assign.rs:10:1: 10:2 | ||
return; // scope 0 at $DIR/mutable_variable_unprop_assign.rs:10:2: 10:2 | ||
} | ||
} | ||
|
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
👏