2014-03-03 02:24:18 +08:00
|
|
|
// RUN: %clang_cc1 -triple powerpc64-unknown-linux-gnu -O2 -emit-llvm -o - %s | FileCheck %s
|
|
|
|
|
|
|
|
_Bool test_wc_i1(_Bool b1, _Bool b2) {
|
|
|
|
_Bool o;
|
|
|
|
asm("crand %0, %1, %2" : "=wc"(o) : "wc"(b1), "wc"(b2) : );
|
|
|
|
return o;
|
[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 zeroext i1 @test_wc_i1(i1 zeroext %b1, i1 zeroext %b2)
|
2014-03-03 02:24:18 +08:00
|
|
|
// CHECK: call i8 asm "crand $0, $1, $2", "=^wc,^wc,^wc"(i1 %b1, i1 %b2)
|
|
|
|
}
|
|
|
|
|
|
|
|
int test_wc_i32(int b1, int b2) {
|
|
|
|
int o;
|
|
|
|
asm("crand %0, %1, %2" : "=wc"(o) : "wc"(b1), "wc"(b2) : );
|
|
|
|
return o;
|
|
|
|
// CHECK-LABEL: signext i32 @test_wc_i32(i32 signext %b1, i32 signext %b2)
|
|
|
|
// CHECK: call i32 asm "crand $0, $1, $2", "=^wc,^wc,^wc"(i32 %b1, i32 %b2)
|
|
|
|
}
|
|
|
|
|
|
|
|
unsigned char test_wc_i8(unsigned char b1, unsigned char b2) {
|
|
|
|
unsigned char o;
|
|
|
|
asm("crand %0, %1, %2" : "=wc"(o) : "wc"(b1), "wc"(b2) : );
|
|
|
|
return o;
|
|
|
|
// CHECK-LABEL: zeroext i8 @test_wc_i8(i8 zeroext %b1, i8 zeroext %b2)
|
|
|
|
// CHECK: call i8 asm "crand $0, $1, $2", "=^wc,^wc,^wc"(i8 %b1, i8 %b2)
|
|
|
|
}
|
|
|
|
|
2019-07-04 12:44:42 +08:00
|
|
|
float test_fmaxf(float x, float y) {
|
|
|
|
asm("xsmaxdp %x0, %x1, %x2" : "=ww"(x) : "ww"(x), "ww"(y));
|
|
|
|
return x;
|
|
|
|
// CHECK-LABEL: float @test_fmaxf(float %x, float %y)
|
|
|
|
// CHECK: call float asm "xsmaxdp ${0:x}, ${1:x}, ${2:x}", "=^ww,^ww,^ww"(float %x, float %y)
|
|
|
|
}
|
|
|
|
|
|
|
|
double test_fmax(double x, double y) {
|
|
|
|
asm("xsmaxdp %x0, %x1, %x2" : "=ws"(x) : "ws"(x), "ws"(y));
|
|
|
|
return x;
|
|
|
|
// CHECK-LABEL: double @test_fmax(double %x, double %y)
|
|
|
|
// CHECK: call double asm "xsmaxdp ${0:x}, ${1:x}, ${2:x}", "=^ws,^ws,^ws"(double %x, double %y)
|
|
|
|
}
|