1 // RUN: %clang_cc1 -triple s390x-linux-gnu -O2 -emit-llvm -o - %s | FileCheck %s
6 void test_store_m(unsigned int i
) {
7 asm("st %1, %0" : "=m" (gi
) : "r" (i
));
8 // CHECK-LABEL: define{{.*}} void @test_store_m(i32 noundef zeroext %i)
9 // CHECK: call void asm "st $1, $0", "=*m,r"(ptr nonnull elementtype(i32) @gi, i32 %i)
12 void test_store_Q(unsigned int i
) {
13 asm("st %1, %0" : "=Q" (gi
) : "r" (i
));
14 // CHECK-LABEL: define{{.*}} void @test_store_Q(i32 noundef zeroext %i)
15 // CHECK: call void asm "st $1, $0", "=*Q,r"(ptr nonnull elementtype(i32) @gi, i32 %i)
18 void test_store_R(unsigned int i
) {
19 asm("st %1, %0" : "=R" (gi
) : "r" (i
));
20 // CHECK-LABEL: define{{.*}} void @test_store_R(i32 noundef zeroext %i)
21 // CHECK: call void asm "st $1, $0", "=*R,r"(ptr nonnull elementtype(i32) @gi, i32 %i)
24 void test_store_S(unsigned int i
) {
25 asm("st %1, %0" : "=S" (gi
) : "r" (i
));
26 // CHECK-LABEL: define{{.*}} void @test_store_S(i32 noundef zeroext %i)
27 // CHECK: call void asm "st $1, $0", "=*S,r"(ptr nonnull elementtype(i32) @gi, i32 %i)
30 void test_store_T(unsigned int i
) {
31 asm("st %1, %0" : "=T" (gi
) : "r" (i
));
32 // CHECK-LABEL: define{{.*}} void @test_store_T(i32 noundef zeroext %i)
33 // CHECK: call void asm "st $1, $0", "=*T,r"(ptr nonnull elementtype(i32) @gi, i32 %i)
36 int test_load_m(void) {
38 asm("l %0, %1" : "=r" (i
) : "m" (gi
));
40 // CHECK-LABEL: define{{.*}} signext i32 @test_load_m()
41 // CHECK: call i32 asm "l $0, $1", "=r,*m"(ptr nonnull elementtype(i32) @gi)
44 int test_load_Q(void) {
46 asm("l %0, %1" : "=r" (i
) : "Q" (gi
));
48 // CHECK-LABEL: define{{.*}} signext i32 @test_load_Q()
49 // CHECK: call i32 asm "l $0, $1", "=r,*Q"(ptr nonnull elementtype(i32) @gi)
52 int test_load_R(void) {
54 asm("l %0, %1" : "=r" (i
) : "R" (gi
));
56 // CHECK-LABEL: define{{.*}} signext i32 @test_load_R()
57 // CHECK: call i32 asm "l $0, $1", "=r,*R"(ptr nonnull elementtype(i32) @gi)
60 int test_load_S(void) {
62 asm("l %0, %1" : "=r" (i
) : "S" (gi
));
64 // CHECK-LABEL: define{{.*}} signext i32 @test_load_S()
65 // CHECK: call i32 asm "l $0, $1", "=r,*S"(ptr nonnull elementtype(i32) @gi)
68 int test_load_T(void) {
70 asm("l %0, %1" : "=r" (i
) : "T" (gi
));
72 // CHECK-LABEL: define{{.*}} signext i32 @test_load_T()
73 // CHECK: call i32 asm "l $0, $1", "=r,*T"(ptr nonnull elementtype(i32) @gi)
76 void test_mI(unsigned char *c
) {
77 asm volatile("cli %0, %1" :: "Q" (*c
), "I" (100));
78 // CHECK-LABEL: define{{.*}} void @test_mI(ptr noundef %c)
79 // CHECK: call void asm sideeffect "cli $0, $1", "*Q,I"(ptr elementtype(i8) %c, i32 100)
82 unsigned int test_dJa(unsigned int i
, unsigned int j
) {
83 asm("sll %0, %2(%3)" : "=d" (i
) : "0" (i
), "J" (1000), "a" (j
));
85 // CHECK-LABEL: define{{.*}} zeroext i32 @test_dJa(i32 noundef zeroext %i, i32 noundef zeroext %j)
86 // CHECK: call i32 asm "sll $0, $2($3)", "=d,0,J,a"(i32 %i, i32 1000, i32 %j)
89 unsigned long test_rK(unsigned long i
) {
90 asm("aghi %0, %2" : "=r" (i
) : "0" (i
), "K" (-30000));
92 // CHECK-LABEL: define{{.*}} i64 @test_rK(i64 noundef %i)
93 // CHECK: call i64 asm "aghi $0, $2", "=r,0,K"(i64 %i, i32 -30000)
96 unsigned long test_rL(unsigned long i
) {
97 asm("sllg %0, %1, %2" : "=r" (i
) : "r" (i
), "L" (500000));
99 // CHECK-LABEL: define{{.*}} i64 @test_rL(i64 noundef %i)
100 // CHECK: call i64 asm "sllg $0, $1, $2", "=r,r,L"(i64 %i, i32 500000)
104 asm volatile("#FOO %0" :: "M"(0x7fffffff));
105 // CHECK-LABEL: define{{.*}} void @test_M()
106 // CHECK: call void asm sideeffect "#FOO $0", "M"(i32 2147483647)
109 float test_f32(float f
, float g
) {
110 asm("aebr %0, %2" : "=f" (f
) : "0" (f
), "f" (g
));
112 // CHECK-LABEL: define{{.*}} float @test_f32(float noundef %f, float noundef %g)
113 // CHECK: call float asm "aebr $0, $2", "=f,0,f"(float %f, float %g)
116 double test_f64(double f
, double g
) {
117 asm("adbr %0, %2" : "=f" (f
) : "0" (f
), "f" (g
));
119 // CHECK-LABEL: define{{.*}} double @test_f64(double noundef %f, double noundef %g)
120 // CHECK: call double asm "adbr $0, $2", "=f,0,f"(double %f, double %g)
123 long double test_f128(long double f
, long double g
) {
124 asm("axbr %0, %2" : "=f" (f
) : "0" (f
), "f" (g
));
126 // CHECK: define{{.*}} void @test_f128(ptr dead_on_unwind noalias nocapture writable writeonly sret(fp128) align 8 initializes((0, 16)) [[DEST:%.*]], ptr nocapture noundef readonly %0, ptr nocapture noundef readonly %1)
127 // CHECK: %f = load fp128, ptr %0
128 // CHECK: %g = load fp128, ptr %1
129 // CHECK: [[RESULT:%.*]] = tail call fp128 asm "axbr $0, $2", "=f,0,f"(fp128 %f, fp128 %g)
130 // CHECK: store fp128 [[RESULT]], ptr [[DEST]]
133 // Test that there are no tied physreg uses. TwoAddress pass cannot deal with them.
134 int test_physregs(void) {
135 // CHECK-LABEL: define{{.*}} signext i32 @test_physregs()
136 register int l
__asm__("r7") = 0;
138 // CHECK: call i32 asm "lr $0, $1", "={r7},{r7}"
139 __asm__("lr %0, %1" : "+r"(l
));
141 // CHECK: call i32 asm "$0 $1 $2", "={r7},{r7},{r7}"
142 __asm__("%0 %1 %2" : "+r"(l
) : "r"(l
));