forked from rust-lang/rust
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Rollup merge of rust-lang#79192 - tmiasko:naked-noinline, r=oli-obk
Never inline naked functions The `#[naked]` attribute disabled prologue / epilogue emission for the function and it is responsibility of a developer to provide them. The compiler is no position to inline such functions correctly. Disable inlining of naked functions at LLVM and MIR level. Closes rust-lang#60919.
- Loading branch information
Showing
4 changed files
with
44 additions
and
4 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,29 @@ | ||
// Checks that naked functions are never inlined. | ||
// compile-flags: -O -Zmir-opt-level=2 | ||
#![crate_type = "lib"] | ||
#![feature(asm)] | ||
#![feature(naked_functions)] | ||
|
||
#[inline(always)] | ||
#[naked] | ||
#[no_mangle] | ||
pub unsafe fn f() { | ||
// Check that f has naked and noinline attributes. | ||
// | ||
// CHECK: define void @f() unnamed_addr [[ATTR:#[0-9]+]] | ||
// CHECK-NEXT: start: | ||
// CHECK-NEXT: call void asm | ||
asm!("", options(noreturn)); | ||
} | ||
|
||
#[no_mangle] | ||
pub unsafe fn g() { | ||
// Check that call to f is not inlined. | ||
// | ||
// CHECK-LABEL: define void @g() | ||
// CHECK-NEXT: start: | ||
// CHECK-NEXT: call void @f() | ||
f(); | ||
} | ||
|
||
// CHECK: attributes [[ATTR]] = { naked noinline{{.*}} } |