-
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.
Eliminate
UbCheck
for non-standard libraries
- Loading branch information
Showing
10 changed files
with
122 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
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; | ||
} | ||
} | ||
|
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,2 @@ | ||
#![rustc_ub_check] //~ERROR `#![rustc_ub_check]` is an internal feature of the standard library, mark don't optimize UB Checks | ||
fn main() {} |
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,12 @@ | ||
error[E0658]: `#![rustc_ub_check]` is an internal feature of the standard library, mark don't optimize UB Checks | ||
--> $DIR/feature-gate-rustc-ub-check.rs:1:1 | ||
| | ||
LL | #![rustc_ub_check] | ||
| ^^^^^^^^^^^^^^^^^^ | ||
| | ||
= help: add `#![feature(rustc_ub_check)]` to the crate attributes to enable | ||
= note: this compiler was built on YYYY-MM-DD; consider upgrading it if it is out of date | ||
|
||
error: aborting due to 1 previous error | ||
|
||
For more information about this error, try `rustc --explain E0658`. |