2018-12-13 04:30:53 +08:00
|
|
|
// RUN: %clang_cc1 -triple x86_64-unknown-unknown -emit-llvm -disable-llvm-passes -o - %s -O1 | FileCheck %s
|
|
|
|
// RUN: %clang_cc1 -triple x86_64-unknown-unknown -emit-llvm -disable-llvm-passes -o - -x c++ %s -O1 | FileCheck %s
|
2015-09-03 04:01:30 +08:00
|
|
|
// RUN: %clang_cc1 -triple x86_64-unknown-unknown -emit-llvm -o - %s -O0 | FileCheck %s --check-prefix=CHECK_O0
|
|
|
|
|
|
|
|
// When optimizing, the builtin should be converted to metadata.
|
|
|
|
// When not optimizing, there should be no metadata created for the builtin.
|
|
|
|
// In both cases, the builtin should be removed from the code.
|
|
|
|
|
2018-12-13 04:30:53 +08:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2015-09-03 04:01:30 +08:00
|
|
|
void foo();
|
|
|
|
void branch(int x) {
|
[CodeGenModule] Assume dso_local for -fpic -fno-semantic-interposition
Summary:
Clang -fpic defaults to -fno-semantic-interposition (GCC -fpic defaults
to -fsemantic-interposition).
Users need to specify -fsemantic-interposition to get semantic
interposition behavior.
Semantic interposition is currently a best-effort feature. There may
still be some cases where it is not handled well.
Reviewers: peter.smith, rnk, serge-sans-paille, sfertile, jfb, jdoerfert
Subscribers: dschuff, jyknight, dylanmckay, nemanjai, jvesely, kbarton, fedor.sergeev, asb, rbar, johnrusso, simoncook, sabuasal, niosHD, jrtc27, zzheng, edward-jones, atanasyan, rogfer01, MartinMosbeck, brucehoult, the_o, arphaman, PkmX, jocewei, jsji, Jim, lenary, s.egerton, pzheng, sameer.abuasal, apazos, luismarques, cfe-commits
Tags: #clang
Differential Revision: https://reviews.llvm.org/D73865
2020-02-03 04:23:47 +08:00
|
|
|
// CHECK-LABEL: define dso_local void @branch(
|
2015-09-03 04:01:30 +08:00
|
|
|
|
|
|
|
// CHECK-NOT: builtin_unpredictable
|
|
|
|
// CHECK: !unpredictable [[METADATA:.+]]
|
|
|
|
|
|
|
|
// CHECK_O0-NOT: builtin_unpredictable
|
|
|
|
// CHECK_O0-NOT: !unpredictable
|
|
|
|
|
|
|
|
if (__builtin_unpredictable(x > 0))
|
|
|
|
foo ();
|
|
|
|
}
|
|
|
|
|
|
|
|
int unpredictable_switch(int x) {
|
2015-09-10 06:39:06 +08:00
|
|
|
// CHECK-LABEL: @unpredictable_switch(
|
|
|
|
|
|
|
|
// CHECK-NOT: builtin_unpredictable
|
|
|
|
// CHECK: !unpredictable [[METADATA:.+]]
|
|
|
|
|
|
|
|
// CHECK_O0-NOT: builtin_unpredictable
|
|
|
|
// CHECK_O0-NOT: !unpredictable
|
|
|
|
|
2015-09-03 04:01:30 +08:00
|
|
|
switch(__builtin_unpredictable(x)) {
|
|
|
|
default:
|
|
|
|
return 0;
|
|
|
|
case 0:
|
|
|
|
case 1:
|
|
|
|
case 2:
|
|
|
|
return 1;
|
|
|
|
case 5:
|
|
|
|
return 5;
|
|
|
|
};
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2018-12-13 04:30:53 +08:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
2015-09-10 06:39:06 +08:00
|
|
|
// CHECK: [[METADATA]] = !{}
|
|
|
|
|