Revert " [LoongArch][ISel] Check the number of sign bits in `PatGprGpr_32` (#107432)"
[llvm-project.git] / llvm / test / CodeGen / SystemZ / fp-move-06.ll
blob556fcde912e0016064684187cffef5907c03753b
1 ; Test 32-bit floating-point stores.
3 ; RUN: llc < %s -mtriple=s390x-linux-gnu | FileCheck %s
5 ; Test the low end of the STE range.
6 define void @f1(ptr %ptr, float %val) {
7 ; CHECK-LABEL: f1:
8 ; CHECK: ste %f0, 0(%r2)
9 ; CHECK: br %r14
10   store float %val, ptr %ptr
11   ret void
14 ; Test the high end of the STE range.
15 define void @f2(ptr %src, float %val) {
16 ; CHECK-LABEL: f2:
17 ; CHECK: ste %f0, 4092(%r2)
18 ; CHECK: br %r14
19   %ptr = getelementptr float, ptr %src, i64 1023
20   store float %val, ptr %ptr
21   ret void
24 ; Check the next word up, which should use STEY instead of STE.
25 define void @f3(ptr %src, float %val) {
26 ; CHECK-LABEL: f3:
27 ; CHECK: stey %f0, 4096(%r2)
28 ; CHECK: br %r14
29   %ptr = getelementptr float, ptr %src, i64 1024
30   store float %val, ptr %ptr
31   ret void
34 ; Check the high end of the aligned STEY range.
35 define void @f4(ptr %src, float %val) {
36 ; CHECK-LABEL: f4:
37 ; CHECK: stey %f0, 524284(%r2)
38 ; CHECK: br %r14
39   %ptr = getelementptr float, ptr %src, i64 131071
40   store float %val, ptr %ptr
41   ret void
44 ; Check the next word up, which needs separate address logic.
45 ; Other sequences besides this one would be OK.
46 define void @f5(ptr %src, float %val) {
47 ; CHECK-LABEL: f5:
48 ; CHECK: agfi %r2, 524288
49 ; CHECK: ste %f0, 0(%r2)
50 ; CHECK: br %r14
51   %ptr = getelementptr float, ptr %src, i64 131072
52   store float %val, ptr %ptr
53   ret void
56 ; Check the high end of the negative aligned STEY range.
57 define void @f6(ptr %src, float %val) {
58 ; CHECK-LABEL: f6:
59 ; CHECK: stey %f0, -4(%r2)
60 ; CHECK: br %r14
61   %ptr = getelementptr float, ptr %src, i64 -1
62   store float %val, ptr %ptr
63   ret void
66 ; Check the low end of the STEY range.
67 define void @f7(ptr %src, float %val) {
68 ; CHECK-LABEL: f7:
69 ; CHECK: stey %f0, -524288(%r2)
70 ; CHECK: br %r14
71   %ptr = getelementptr float, ptr %src, i64 -131072
72   store float %val, ptr %ptr
73   ret void
76 ; Check the next word down, which needs separate address logic.
77 ; Other sequences besides this one would be OK.
78 define void @f8(ptr %src, float %val) {
79 ; CHECK-LABEL: f8:
80 ; CHECK: agfi %r2, -524292
81 ; CHECK: ste %f0, 0(%r2)
82 ; CHECK: br %r14
83   %ptr = getelementptr float, ptr %src, i64 -131073
84   store float %val, ptr %ptr
85   ret void
88 ; Check that STE allows an index.
89 define void @f9(i64 %src, i64 %index, float %val) {
90 ; CHECK-LABEL: f9:
91 ; CHECK: ste %f0, 4092({{%r3,%r2|%r2,%r3}})
92 ; CHECK: br %r14
93   %add1 = add i64 %src, %index
94   %add2 = add i64 %add1, 4092
95   %ptr = inttoptr i64 %add2 to ptr
96   store float %val, ptr %ptr
97   ret void
100 ; Check that STEY allows an index.
101 define void @f10(i64 %src, i64 %index, float %val) {
102 ; CHECK-LABEL: f10:
103 ; CHECK: stey %f0, 4096({{%r3,%r2|%r2,%r3}})
104 ; CHECK: br %r14
105   %add1 = add i64 %src, %index
106   %add2 = add i64 %add1, 4096
107   %ptr = inttoptr i64 %add2 to ptr
108   store float %val, ptr %ptr
109   ret void