-
Notifications
You must be signed in to change notification settings - Fork 13k
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 #119878 - scottmcm:inline-always-unwrap, r=<try>
Tune the inlinability of `unwrap` Fixes #115463 cc `@thomcc` This tweaks `unwrap` on `Option` & `Result` to be two parts: - `#[inline(always)]` for checking the discriminant - `#[cold]` for actually panicking The idea here is that checking the discriminant on a `Result` or `Option` should always be trivial enough to be worth inlining, even in `opt-level=z`, especially compared to passing it to a function. As seen in the issue and codegen test, this will hopefully help particularly for things like `.try_into().unwrap()`s that are actually infallible, but in a way that's only visible with the inlining.
- Loading branch information
Showing
4 changed files
with
39 additions
and
5 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
// compile-flags: -C opt-level=z --edition=2021 | ||
// ignore-debug | ||
|
||
#![crate_type = "lib"] | ||
|
||
// From <https://github.com/rust-lang/rust/issues/115463> | ||
|
||
// CHECK-LABEL: @read_up_to_8( | ||
#[no_mangle] | ||
pub fn read_up_to_8(buf: &[u8]) -> u64 { | ||
// CHECK-NOT: unwrap_failed | ||
if buf.len() < 4 { | ||
// actual instance has more code. | ||
return 0; | ||
} | ||
let lo = u32::from_le_bytes(buf[..4].try_into().unwrap()) as u64; | ||
let hi = u32::from_le_bytes(buf[buf.len() - 4..][..4].try_into().unwrap()) as u64; | ||
lo | (hi << 8 * (buf.len() as u64 - 4)) | ||
} | ||
|
||
// CHECK-LABEL: @checking_unwrap_expectation( | ||
#[no_mangle] | ||
pub fn checking_unwrap_expectation(buf: &[u8]) -> &[u8; 4] { | ||
// CHECK: call void @_ZN4core6result13unwrap_failed17h | ||
buf.try_into().unwrap() | ||
} |