2013-12-04 11:41:15 +08:00
|
|
|
// REQUIRES: powerpc-registered-target
|
2013-01-23 04:02:45 +08:00
|
|
|
// RUN: %clang_cc1 -triple powerpc-unknown-unknown -emit-llvm %s -o - | FileCheck %s
|
|
|
|
|
|
|
|
void test_eh_return_data_regno()
|
|
|
|
{
|
|
|
|
volatile int res;
|
|
|
|
res = __builtin_eh_return_data_regno(0); // CHECK: store volatile i32 3
|
|
|
|
res = __builtin_eh_return_data_regno(1); // CHECK: store volatile i32 4
|
|
|
|
}
|
2015-09-01 07:55:19 +08:00
|
|
|
|
[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 i64 @test_builtin_ppc_get_timebase
|
2015-09-01 07:55:19 +08:00
|
|
|
long long test_builtin_ppc_get_timebase() {
|
|
|
|
// CHECK: call i64 @llvm.readcyclecounter()
|
|
|
|
return __builtin_ppc_get_timebase();
|
|
|
|
}
|
|
|
|
|
2019-03-29 17:11:52 +08:00
|
|
|
void test_builtin_ppc_setrnd() {
|
|
|
|
volatile double res;
|
|
|
|
volatile int x = 100;
|
|
|
|
|
|
|
|
// CHECK: call double @llvm.ppc.setrnd(i32 2)
|
|
|
|
res = __builtin_setrnd(2);
|
|
|
|
|
|
|
|
// CHECK: call double @llvm.ppc.setrnd(i32 100)
|
|
|
|
res = __builtin_setrnd(100);
|
|
|
|
|
|
|
|
// CHECK: call double @llvm.ppc.setrnd(i32 %2)
|
|
|
|
res = __builtin_setrnd(x);
|
|
|
|
}
|