-
Notifications
You must be signed in to change notification settings - Fork 12.8k
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 #122975 - DianQK:simplify_ub_check, r=<try>
Eliminate `UbCheck` for non-standard libraries The purpose of this PR is to allow other passes to treat `UbChecks` as constants in MIR for optimization after #122629. r? RalfJung
- Loading branch information
Showing
13 changed files
with
115 additions
and
40 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
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,16 @@ | ||
//@ unit-test: InstSimplify | ||
//@ compile-flags: -Cdebug-assertions=no -Zinline-mir | ||
|
||
// EMIT_MIR ub_check.unwrap_unchecked.InstSimplify.diff | ||
pub fn unwrap_unchecked(x: Option<i32>) -> i32 { | ||
// CHECK-LABEL: fn unwrap_unchecked( | ||
// CHECK-NOT: UbChecks() | ||
// CHECK: [[assume:_.*]] = const false; | ||
// CHECK-NEXT: assume([[assume]]); | ||
// CHECK-NEXT: unreachable_unchecked::precondition_check | ||
unsafe { x.unwrap_unchecked() } | ||
} | ||
|
||
fn main() { | ||
unwrap_unchecked(None); | ||
} |
59 changes: 59 additions & 0 deletions
59
tests/mir-opt/instsimplify/ub_check.unwrap_unchecked.InstSimplify.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,59 @@ | ||
- // MIR for `unwrap_unchecked` before InstSimplify | ||
+ // MIR for `unwrap_unchecked` after InstSimplify | ||
|
||
fn unwrap_unchecked(_1: Option<i32>) -> i32 { | ||
debug x => _1; | ||
let mut _0: i32; | ||
let mut _2: std::option::Option<i32>; | ||
scope 1 { | ||
scope 2 (inlined #[track_caller] Option::<i32>::unwrap_unchecked) { | ||
debug self => _2; | ||
let mut _3: isize; | ||
scope 3 { | ||
debug val => _0; | ||
} | ||
scope 4 { | ||
scope 5 (inlined unreachable_unchecked) { | ||
let mut _4: bool; | ||
let _5: (); | ||
scope 6 { | ||
} | ||
scope 7 (inlined core::ub_checks::check_language_ub) { | ||
scope 8 (inlined core::ub_checks::check_language_ub::runtime) { | ||
} | ||
} | ||
} | ||
} | ||
} | ||
} | ||
|
||
bb0: { | ||
StorageLive(_2); | ||
_2 = _1; | ||
StorageLive(_3); | ||
StorageLive(_5); | ||
_3 = discriminant(_2); | ||
switchInt(move _3) -> [0: bb2, 1: bb3, otherwise: bb1]; | ||
} | ||
|
||
bb1: { | ||
unreachable; | ||
} | ||
|
||
bb2: { | ||
StorageLive(_4); | ||
- _4 = UbChecks(); | ||
+ _4 = const false; | ||
assume(_4); | ||
_5 = unreachable_unchecked::precondition_check() -> [return: bb1, unwind unreachable]; | ||
} | ||
|
||
bb3: { | ||
_0 = move ((_2 as Some).0: i32); | ||
StorageDead(_5); | ||
StorageDead(_3); | ||
StorageDead(_2); | ||
return; | ||
} | ||
} | ||
|
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