-
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 #122282 - DianQK:simplify_ub_check, r=<try>
Eliminate `UbCheck` for non-standard libraries Since only core and std are prebuilt crates, I think it's only necessary to keep UB checks for them. `mir-opt` may not optimize some code due to `UbCheck`. In more complex cases, I'm also not sure that LLVM utilizes `assume` correctly. r? saethlin
- Loading branch information
Showing
7 changed files
with
106 additions
and
0 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,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: UbCheck(LanguageUb) | ||
// CHECK: [[assume:_.*]] = const false; | ||
// CHECK-NEXT: assume([[assume]]); | ||
// CHECK-NEXT: unreachable_unchecked::precondition_check | ||
unsafe { x.unwrap_unchecked() } | ||
} | ||
|
||
fn main() { | ||
unwrap_unchecked(None); | ||
} |
55 changes: 55 additions & 0 deletions
55
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,55 @@ | ||
- // 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 { | ||
} | ||
} | ||
} | ||
} | ||
} | ||
|
||
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 = UbCheck(LanguageUb); | ||
+ _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; | ||
} | ||
} | ||
|