-
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 #61005 - michaelwoerister:error-pgo-windows-unwind, r=z…
…ackmdavis Emit error when trying to use PGO in conjunction with unwinding on Windows. This PR makes `rustc` emit an error when trying use PGO in conjunction with `-Cpanic=unwind` on Windows, isn't supported by LLVM yet. The error messages points to #61002, which documents this known limitation.
- Loading branch information
Showing
6 changed files
with
53 additions
and
8 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,23 @@ | ||
// Test that `-Zpgo-gen` creates expected instrumentation artifacts in LLVM IR. | ||
// Compiling with `-Cpanic=abort` because PGO+unwinding isn't supported on all platforms. | ||
|
||
// needs-profiler-support | ||
// compile-flags: -Z pgo-gen -Ccodegen-units=1 | ||
// compile-flags: -Z pgo-gen -Ccodegen-units=1 -Cpanic=abort | ||
|
||
// CHECK: @__llvm_profile_raw_version = | ||
// CHECK: @__profc_{{.*}}pgo_instrumentation{{.*}}some_function{{.*}} = private global | ||
// CHECK: @__profd_{{.*}}pgo_instrumentation{{.*}}some_function{{.*}} = private global | ||
// CHECK: @__profc_{{.*}}pgo_instrumentation{{.*}}main{{.*}} = private global | ||
// CHECK: @__profd_{{.*}}pgo_instrumentation{{.*}}main{{.*}} = private global | ||
// CHECK: @__profc_{{.*}}pgo_instrumentation{{.*}}some_other_function{{.*}} = private global | ||
// CHECK: @__profd_{{.*}}pgo_instrumentation{{.*}}some_other_function{{.*}} = private global | ||
// CHECK: @__llvm_profile_filename = {{.*}}"default_%m.profraw\00"{{.*}} | ||
|
||
#![crate_type="lib"] | ||
|
||
#[inline(never)] | ||
fn some_function() { | ||
|
||
} | ||
|
||
fn main() { | ||
pub fn some_other_function() { | ||
some_function(); | ||
} |
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