-
Notifications
You must be signed in to change notification settings - Fork 12.7k
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 #102099 - InnovativeInventor:re-cold-land, r=nikic
Rebased: Mark drop calls in landing pads cold instead of noinline I noticed that certain inlining optimizations were missing while staring at some compiled code output. I'd like to see this relanded, so I rebased the PR from `@erikdesjardins` (PR #94823). This PR reapplies #92419, which was reverted in #94402 due to #94390. Fixes #46515, fixes #87055. Update: fixes #97217.
- Loading branch information
Showing
8 changed files
with
95 additions
and
13 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,22 @@ | ||
// compile-flags: -C opt-level=3 | ||
// ignore-debug: the debug assertions get in the way | ||
// min-llvm-version: 17.0.2 | ||
#![crate_type = "lib"] | ||
|
||
// Regression test for issue 97217 (the following should result in no allocations) | ||
|
||
// CHECK-LABEL: @issue97217 | ||
#[no_mangle] | ||
pub fn issue97217() -> i32 { | ||
// drop_in_place should be inlined and never appear | ||
// CHECK-NOT: drop_in_place | ||
|
||
// __rust_alloc should be optimized out | ||
// CHECK-NOT: __rust_alloc | ||
|
||
let v1 = vec![5, 6, 7]; | ||
let v1_iter = v1.iter(); | ||
let total: i32 = v1_iter.sum(); | ||
println!("{}",total); | ||
total | ||
} |
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 @@ | ||
// compile-flags: -Cno-prepopulate-passes | ||
// needs-unwind | ||
// min-llvm-version: 17.0.2 | ||
#![crate_type = "lib"] | ||
|
||
// This test checks that drop calls in unwind landing pads | ||
// get the `cold` attribute. | ||
|
||
// CHECK-LABEL: @check_cold | ||
// CHECK: {{(call|invoke) void .+}}drop_in_place{{.+}} [[ATTRIBUTES:#[0-9]+]] | ||
// CHECK: attributes [[ATTRIBUTES]] = { cold } | ||
#[no_mangle] | ||
pub fn check_cold(f: fn(), x: Box<u32>) { | ||
// this may unwind | ||
f(); | ||
} |
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,39 @@ | ||
// min-llvm-version: 17.0.2 | ||
// compile-flags: -Copt-level=3 | ||
// ignore-debug: the debug assertions get in the way | ||
#![crate_type = "lib"] | ||
|
||
// This test checks that we can inline drop_in_place in | ||
// unwind landing pads. | ||
|
||
// Without inlining, the box pointers escape via the call to drop_in_place, | ||
// and LLVM will not optimize out the pointer comparison. | ||
// With inlining, everything should be optimized out. | ||
// See https://github.com/rust-lang/rust/issues/46515 | ||
// CHECK-LABEL: @check_no_escape_in_landingpad | ||
// CHECK: start: | ||
// CHECK-NEXT: __rust_no_alloc_shim_is_unstable | ||
// CHECK-NEXT: __rust_no_alloc_shim_is_unstable | ||
// CHECK-NEXT: ret void | ||
#[no_mangle] | ||
pub fn check_no_escape_in_landingpad(f: fn()) { | ||
let x = &*Box::new(0); | ||
let y = &*Box::new(0); | ||
|
||
if x as *const _ == y as *const _ { | ||
f(); | ||
} | ||
} | ||
|
||
// Without inlining, the compiler can't tell that | ||
// dropping an empty string (in a landing pad) does nothing. | ||
// With inlining, the landing pad should be optimized out. | ||
// See https://github.com/rust-lang/rust/issues/87055 | ||
// CHECK-LABEL: @check_eliminate_noop_drop | ||
// CHECK: call void %g() | ||
// CHECK-NEXT: ret void | ||
#[no_mangle] | ||
pub fn check_eliminate_noop_drop(g: fn()) { | ||
let _var = String::new(); | ||
g(); | ||
} |