1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393
|
; Test moves between FPRs and GPRs. The 32-bit cases test the z10
; implementation, which has no high-word support.
;
; RUN: llc < %s -mtriple=s390x-linux-gnu -mcpu=z10 | FileCheck %s
declare i64 @foo()
declare double @bar()
@dptr = external global double
@iptr = external global i64
; Test 32-bit moves from GPRs to FPRs. The GPR must be moved into the high
; 32 bits of the FPR.
define float @f1(i32 %a) {
; CHECK-LABEL: f1:
; CHECK: sllg [[REGISTER:%r[0-5]]], %r2, 32
; CHECK: ldgr %f0, [[REGISTER]]
%res = bitcast i32 %a to float
ret float %res
}
; Like f1, but create a situation where the shift can be folded with
; surrounding code.
define float @f2(i64 %big) {
; CHECK-LABEL: f2:
; CHECK: risbg [[REGISTER:%r[0-5]]], %r2, 0, 159, 31
; CHECK: ldgr %f0, [[REGISTER]]
%shift = lshr i64 %big, 1
%a = trunc i64 %shift to i32
%res = bitcast i32 %a to float
ret float %res
}
; Another example of the same thing.
define float @f3(i64 %big) {
; CHECK-LABEL: f3:
; CHECK: risbg [[REGISTER:%r[0-5]]], %r2, 0, 159, 2
; CHECK: ldgr %f0, [[REGISTER]]
%shift = ashr i64 %big, 30
%a = trunc i64 %shift to i32
%res = bitcast i32 %a to float
ret float %res
}
; Like f1, but the value to transfer is already in the high 32 bits.
define float @f4(i64 %big) {
; CHECK-LABEL: f4:
; CHECK-NOT: %r2
; CHECK: nilf %r2, 0
; CHECK-NOT: %r2
; CHECK: ldgr %f0, %r2
%shift = ashr i64 %big, 32
%a = trunc i64 %shift to i32
%res = bitcast i32 %a to float
ret float %res
}
; Test 64-bit moves from GPRs to FPRs.
define double @f5(i64 %a) {
; CHECK-LABEL: f5:
; CHECK: ldgr %f0, %r2
%res = bitcast i64 %a to double
ret double %res
}
; Test 128-bit moves from GPRs to FPRs. i128 isn't a legitimate type,
; so this goes through memory.
define void @f6(fp128 *%a, i128 *%b) {
; CHECK-LABEL: f6:
; CHECK: lg
; CHECK: lg
; CHECK: stg
; CHECK: stg
; CHECK: br %r14
%val = load i128, i128 *%b
%res = bitcast i128 %val to fp128
store fp128 %res, fp128 *%a
ret void
}
; Test 32-bit moves from FPRs to GPRs. The high 32 bits of the FPR should
; be moved into the low 32 bits of the GPR.
define i32 @f7(float %a) {
; CHECK-LABEL: f7:
; CHECK: lgdr [[REGISTER:%r[0-5]]], %f0
; CHECK: srlg %r2, [[REGISTER]], 32
%res = bitcast float %a to i32
ret i32 %res
}
; Test 64-bit moves from FPRs to GPRs.
define i64 @f8(double %a) {
; CHECK-LABEL: f8:
; CHECK: lgdr %r2, %f0
%res = bitcast double %a to i64
ret i64 %res
}
; Test 128-bit moves from FPRs to GPRs, with the same restriction as f6.
define void @f9(fp128 *%a, i128 *%b) {
; CHECK-LABEL: f9:
; CHECK: ld
; CHECK: ld
; CHECK: std
; CHECK: std
%val = load fp128, fp128 *%a
%res = bitcast fp128 %val to i128
store i128 %res, i128 *%b
ret void
}
; Test cases where the destination of an LGDR needs to be spilled.
; We shouldn't have any integer stack stores or floating-point loads.
define void @f10(double %extra) {
; CHECK-LABEL: f10:
; CHECK: dptr
; CHECK-NOT: stg {{.*}}(%r15)
; CHECK: %loop
; CHECK-NOT: ld {{.*}}(%r15)
; CHECK: %exit
; CHECK: br %r14
entry:
%double0 = load volatile double, double *@dptr
%biased0 = fadd double %double0, %extra
%int0 = bitcast double %biased0 to i64
%double1 = load volatile double, double *@dptr
%biased1 = fadd double %double1, %extra
%int1 = bitcast double %biased1 to i64
%double2 = load volatile double, double *@dptr
%biased2 = fadd double %double2, %extra
%int2 = bitcast double %biased2 to i64
%double3 = load volatile double, double *@dptr
%biased3 = fadd double %double3, %extra
%int3 = bitcast double %biased3 to i64
%double4 = load volatile double, double *@dptr
%biased4 = fadd double %double4, %extra
%int4 = bitcast double %biased4 to i64
%double5 = load volatile double, double *@dptr
%biased5 = fadd double %double5, %extra
%int5 = bitcast double %biased5 to i64
%double6 = load volatile double, double *@dptr
%biased6 = fadd double %double6, %extra
%int6 = bitcast double %biased6 to i64
%double7 = load volatile double, double *@dptr
%biased7 = fadd double %double7, %extra
%int7 = bitcast double %biased7 to i64
%double8 = load volatile double, double *@dptr
%biased8 = fadd double %double8, %extra
%int8 = bitcast double %biased8 to i64
%double9 = load volatile double, double *@dptr
%biased9 = fadd double %double9, %extra
%int9 = bitcast double %biased9 to i64
br label %loop
loop:
%start = call i64 @foo()
%or0 = or i64 %start, %int0
%or1 = or i64 %or0, %int1
%or2 = or i64 %or1, %int2
%or3 = or i64 %or2, %int3
%or4 = or i64 %or3, %int4
%or5 = or i64 %or4, %int5
%or6 = or i64 %or5, %int6
%or7 = or i64 %or6, %int7
%or8 = or i64 %or7, %int8
%or9 = or i64 %or8, %int9
store i64 %or9, i64 *@iptr
%cont = icmp ne i64 %start, 1
br i1 %cont, label %loop, label %exit
exit:
ret void
}
; ...likewise LDGR, with the requirements the other way around.
define void @f11(i64 %mask) {
; CHECK-LABEL: f11:
; CHECK: iptr
; CHECK-NOT: std {{.*}}(%r15)
; CHECK: %loop
; CHECK-NOT: lg {{.*}}(%r15)
; CHECK: %exit
; CHECK: br %r14
entry:
%int0 = load volatile i64, i64 *@iptr
%masked0 = and i64 %int0, %mask
%double0 = bitcast i64 %masked0 to double
%int1 = load volatile i64, i64 *@iptr
%masked1 = and i64 %int1, %mask
%double1 = bitcast i64 %masked1 to double
%int2 = load volatile i64, i64 *@iptr
%masked2 = and i64 %int2, %mask
%double2 = bitcast i64 %masked2 to double
%int3 = load volatile i64, i64 *@iptr
%masked3 = and i64 %int3, %mask
%double3 = bitcast i64 %masked3 to double
%int4 = load volatile i64, i64 *@iptr
%masked4 = and i64 %int4, %mask
%double4 = bitcast i64 %masked4 to double
%int5 = load volatile i64, i64 *@iptr
%masked5 = and i64 %int5, %mask
%double5 = bitcast i64 %masked5 to double
%int6 = load volatile i64, i64 *@iptr
%masked6 = and i64 %int6, %mask
%double6 = bitcast i64 %masked6 to double
%int7 = load volatile i64, i64 *@iptr
%masked7 = and i64 %int7, %mask
%double7 = bitcast i64 %masked7 to double
%int8 = load volatile i64, i64 *@iptr
%masked8 = and i64 %int8, %mask
%double8 = bitcast i64 %masked8 to double
%int9 = load volatile i64, i64 *@iptr
%masked9 = and i64 %int9, %mask
%double9 = bitcast i64 %masked9 to double
br label %loop
loop:
%start = call double @bar()
%add0 = fadd double %start, %double0
%add1 = fadd double %add0, %double1
%add2 = fadd double %add1, %double2
%add3 = fadd double %add2, %double3
%add4 = fadd double %add3, %double4
%add5 = fadd double %add4, %double5
%add6 = fadd double %add5, %double6
%add7 = fadd double %add6, %double7
%add8 = fadd double %add7, %double8
%add9 = fadd double %add8, %double9
store double %add9, double *@dptr
%cont = fcmp one double %start, 1.0
br i1 %cont, label %loop, label %exit
exit:
ret void
}
; Test cases where the source of an LDGR needs to be spilled.
; We shouldn't have any integer stack stores or floating-point loads.
define void @f12() {
; CHECK-LABEL: f12:
; CHECK: %loop
; CHECK-NOT: std {{.*}}(%r15)
; CHECK: %exit
; CHECK: foo@PLT
; CHECK-NOT: lg {{.*}}(%r15)
; CHECK: foo@PLT
; CHECK: br %r14
entry:
br label %loop
loop:
%int0 = phi i64 [ 0, %entry ], [ %add0, %loop ]
%int1 = phi i64 [ 0, %entry ], [ %add1, %loop ]
%int2 = phi i64 [ 0, %entry ], [ %add2, %loop ]
%int3 = phi i64 [ 0, %entry ], [ %add3, %loop ]
%int4 = phi i64 [ 0, %entry ], [ %add4, %loop ]
%int5 = phi i64 [ 0, %entry ], [ %add5, %loop ]
%int6 = phi i64 [ 0, %entry ], [ %add6, %loop ]
%int7 = phi i64 [ 0, %entry ], [ %add7, %loop ]
%int8 = phi i64 [ 0, %entry ], [ %add8, %loop ]
%int9 = phi i64 [ 0, %entry ], [ %add9, %loop ]
%bias = call i64 @foo()
%add0 = add i64 %int0, %bias
%add1 = add i64 %int1, %bias
%add2 = add i64 %int2, %bias
%add3 = add i64 %int3, %bias
%add4 = add i64 %int4, %bias
%add5 = add i64 %int5, %bias
%add6 = add i64 %int6, %bias
%add7 = add i64 %int7, %bias
%add8 = add i64 %int8, %bias
%add9 = add i64 %int9, %bias
%cont = icmp ne i64 %bias, 1
br i1 %cont, label %loop, label %exit
exit:
%unused1 = call i64 @foo()
%factor = load volatile double, double *@dptr
%conv0 = bitcast i64 %add0 to double
%mul0 = fmul double %conv0, %factor
store volatile double %mul0, double *@dptr
%conv1 = bitcast i64 %add1 to double
%mul1 = fmul double %conv1, %factor
store volatile double %mul1, double *@dptr
%conv2 = bitcast i64 %add2 to double
%mul2 = fmul double %conv2, %factor
store volatile double %mul2, double *@dptr
%conv3 = bitcast i64 %add3 to double
%mul3 = fmul double %conv3, %factor
store volatile double %mul3, double *@dptr
%conv4 = bitcast i64 %add4 to double
%mul4 = fmul double %conv4, %factor
store volatile double %mul4, double *@dptr
%conv5 = bitcast i64 %add5 to double
%mul5 = fmul double %conv5, %factor
store volatile double %mul5, double *@dptr
%conv6 = bitcast i64 %add6 to double
%mul6 = fmul double %conv6, %factor
store volatile double %mul6, double *@dptr
%conv7 = bitcast i64 %add7 to double
%mul7 = fmul double %conv7, %factor
store volatile double %mul7, double *@dptr
%conv8 = bitcast i64 %add8 to double
%mul8 = fmul double %conv8, %factor
store volatile double %mul8, double *@dptr
%conv9 = bitcast i64 %add9 to double
%mul9 = fmul double %conv9, %factor
store volatile double %mul9, double *@dptr
%unused2 = call i64 @foo()
ret void
}
; ...likewise LGDR, with the requirements the other way around.
define void @f13() {
; CHECK-LABEL: f13:
; CHECK: %loop
; CHECK-NOT: stg {{.*}}(%r15)
; CHECK: %exit
; CHECK: foo@PLT
; CHECK-NOT: ld {{.*}}(%r15)
; CHECK: foo@PLT
; CHECK: br %r14
entry:
br label %loop
loop:
%double0 = phi double [ 1.0, %entry ], [ %mul0, %loop ]
%double1 = phi double [ 1.0, %entry ], [ %mul1, %loop ]
%double2 = phi double [ 1.0, %entry ], [ %mul2, %loop ]
%double3 = phi double [ 1.0, %entry ], [ %mul3, %loop ]
%double4 = phi double [ 1.0, %entry ], [ %mul4, %loop ]
%double5 = phi double [ 1.0, %entry ], [ %mul5, %loop ]
%double6 = phi double [ 1.0, %entry ], [ %mul6, %loop ]
%double7 = phi double [ 1.0, %entry ], [ %mul7, %loop ]
%double8 = phi double [ 1.0, %entry ], [ %mul8, %loop ]
%double9 = phi double [ 1.0, %entry ], [ %mul9, %loop ]
%factor = call double @bar()
%mul0 = fmul double %double0, %factor
%mul1 = fmul double %double1, %factor
%mul2 = fmul double %double2, %factor
%mul3 = fmul double %double3, %factor
%mul4 = fmul double %double4, %factor
%mul5 = fmul double %double5, %factor
%mul6 = fmul double %double6, %factor
%mul7 = fmul double %double7, %factor
%mul8 = fmul double %double8, %factor
%mul9 = fmul double %double9, %factor
%cont = fcmp one double %factor, 1.0
br i1 %cont, label %loop, label %exit
exit:
%unused1 = call i64 @foo()
%bias = load volatile i64, i64 *@iptr
%conv0 = bitcast double %mul0 to i64
%add0 = add i64 %conv0, %bias
store volatile i64 %add0, i64 *@iptr
%conv1 = bitcast double %mul1 to i64
%add1 = add i64 %conv1, %bias
store volatile i64 %add1, i64 *@iptr
%conv2 = bitcast double %mul2 to i64
%add2 = add i64 %conv2, %bias
store volatile i64 %add2, i64 *@iptr
%conv3 = bitcast double %mul3 to i64
%add3 = add i64 %conv3, %bias
store volatile i64 %add3, i64 *@iptr
%conv4 = bitcast double %mul4 to i64
%add4 = add i64 %conv4, %bias
store volatile i64 %add4, i64 *@iptr
%conv5 = bitcast double %mul5 to i64
%add5 = add i64 %conv5, %bias
store volatile i64 %add5, i64 *@iptr
%conv6 = bitcast double %mul6 to i64
%add6 = add i64 %conv6, %bias
store volatile i64 %add6, i64 *@iptr
%conv7 = bitcast double %mul7 to i64
%add7 = add i64 %conv7, %bias
store volatile i64 %add7, i64 *@iptr
%conv8 = bitcast double %mul8 to i64
%add8 = add i64 %conv8, %bias
store volatile i64 %add8, i64 *@iptr
%conv9 = bitcast double %mul9 to i64
%add9 = add i64 %conv9, %bias
store volatile i64 %add9, i64 *@iptr
%unused2 = call i64 @foo()
ret void
}
|