-
Notifications
You must be signed in to change notification settings - Fork 13.2k
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
Implement MIR lowering for or-patterns #67668
Merged
Merged
Changes from all commits
Commits
Show all changes
13 commits
Select commit
Hold shift + click to select a range
425e494
Remove or_patterns from INCOMPLETE_FEATURES
matthewjasper eecee76
Generate prebinding blocks lazily
matthewjasper 64eab77
Don't create unnecessary block
matthewjasper 5cc4352
Implement general or-patterns in `match` expressions
matthewjasper a20969c
Implement general or-patterns in `let` statements
matthewjasper 30058df
Update existing tests for or-patterns
matthewjasper 0b1ff27
Basic run-pass tests for or-patterns
dlrobertson c7e6f88
Add more tests for or-patterns
matthewjasper 5f90dbd
Make `Candidate` private
matthewjasper 89e52e2
Address review comments
matthewjasper 1d90ed6
Apply suggestions from code review
matthewjasper 9b9dafb
Make use of `Place: Copy`
matthewjasper 8dbbe4d
Avoid scheduling repeated `StorageDead`s
matthewjasper 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
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
Large diffs are not rendered by default.
Oops, something went wrong.
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,76 @@ | ||
// Test that simple or-patterns don't get expanded to exponentially large CFGs | ||
|
||
// ignore-tidy-linelength | ||
|
||
#![feature(or_patterns)] | ||
|
||
fn match_tuple(x: (u32, bool, Option<i32>, u32)) -> u32 { | ||
match x { | ||
(y @ (1 | 4), true | false, Some(1 | 8) | None, z @ (6..=9 | 13..=16)) => y ^ z, | ||
_ => 0, | ||
} | ||
} | ||
|
||
fn main() {} | ||
|
||
// END RUST SOURCE | ||
|
||
// START rustc.match_tuple.SimplifyCfg-initial.after.mir | ||
// scope 1 { | ||
// debug y => _7; | ||
// debug z => _8; | ||
// } | ||
// bb0: { | ||
// FakeRead(ForMatchedPlace, _1); | ||
// switchInt((_1.0: u32)) -> [1u32: bb2, 4u32: bb2, otherwise: bb1]; | ||
// } | ||
// bb1: { | ||
// _0 = const 0u32; | ||
// goto -> bb10; | ||
// } | ||
// bb2: { | ||
// _2 = discriminant((_1.2: std::option::Option<i32>)); | ||
// switchInt(move _2) -> [0isize: bb4, 1isize: bb3, otherwise: bb1]; | ||
// } | ||
// bb3: { | ||
// switchInt((((_1.2: std::option::Option<i32>) as Some).0: i32)) -> [1i32: bb4, 8i32: bb4, otherwise: bb1]; | ||
// } | ||
// bb4: { | ||
// _5 = Le(const 6u32, (_1.3: u32)); | ||
// switchInt(move _5) -> [false: bb6, otherwise: bb5]; | ||
// } | ||
// bb5: { | ||
// _6 = Le((_1.3: u32), const 9u32); | ||
// switchInt(move _6) -> [false: bb6, otherwise: bb8]; | ||
// } | ||
// bb6: { | ||
// _3 = Le(const 13u32, (_1.3: u32)); | ||
// switchInt(move _3) -> [false: bb1, otherwise: bb7]; | ||
// } | ||
// bb7: { | ||
// _4 = Le((_1.3: u32), const 16u32); | ||
// switchInt(move _4) -> [false: bb1, otherwise: bb8]; | ||
// } | ||
// bb8: { | ||
// falseEdges -> [real: bb9, imaginary: bb1]; | ||
// } | ||
// bb9: { | ||
// StorageLive(_7); | ||
// _7 = (_1.0: u32); | ||
// StorageLive(_8); | ||
// _8 = (_1.3: u32); | ||
// StorageLive(_9); | ||
// _9 = _7; | ||
// StorageLive(_10); | ||
// _10 = _8; | ||
// _0 = BitXor(move _9, move _10); | ||
// StorageDead(_10); | ||
// StorageDead(_9); | ||
// StorageDead(_8); | ||
// StorageDead(_7); | ||
// goto -> bb10; | ||
// } | ||
// bb10: { | ||
// return; | ||
// } | ||
// END rustc.match_tuple.SimplifyCfg-initial.after.mir |
Oops, something went wrong.
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.
I'm glad this is coming in handy! (assuming you intentionally included
scope 1
to make it clear which MIR locals are used for the user variables)