mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 03:02:36 +01:00
f0bbbf0d53
Just use default CHECK
104 lines
3.4 KiB
LLVM
104 lines
3.4 KiB
LLVM
; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py
|
|
; RUN: llc < %s -mtriple=s390x-linux-gnu -mcpu=z10 | FileCheck %s
|
|
; RUN: llc < %s -mtriple=s390x-linux-gnu -mcpu=z13 | FileCheck %s
|
|
|
|
;
|
|
; Test strict 64-bit square root.
|
|
;
|
|
|
|
declare double @llvm.experimental.constrained.sqrt.f64(double, metadata, metadata)
|
|
|
|
; Check register square root.
|
|
define double @f1(double %val) #0 {
|
|
; CHECK-LABEL: f1:
|
|
; CHECK: # %bb.0:
|
|
; CHECK-NEXT: sqdbr %f0, %f0
|
|
; CHECK-NEXT: br %r14
|
|
%res = call double @llvm.experimental.constrained.sqrt.f64(
|
|
double %val,
|
|
metadata !"round.dynamic",
|
|
metadata !"fpexcept.strict") #0
|
|
ret double %res
|
|
}
|
|
|
|
; Check the low end of the SQDB range.
|
|
define double @f2(double *%ptr) #0 {
|
|
; CHECK-LABEL: f2:
|
|
; CHECK: # %bb.0:
|
|
; CHECK-NEXT: sqdb %f0, 0(%r2)
|
|
; CHECK-NEXT: br %r14
|
|
%val = load double, double *%ptr
|
|
%res = call double @llvm.experimental.constrained.sqrt.f64(
|
|
double %val,
|
|
metadata !"round.dynamic",
|
|
metadata !"fpexcept.strict") #0
|
|
ret double %res
|
|
}
|
|
|
|
; Check the high end of the aligned SQDB range.
|
|
define double @f3(double *%base) #0 {
|
|
; CHECK-LABEL: f3:
|
|
; CHECK: # %bb.0:
|
|
; CHECK-NEXT: sqdb %f0, 4088(%r2)
|
|
; CHECK-NEXT: br %r14
|
|
%ptr = getelementptr double, double *%base, i64 511
|
|
%val = load double, double *%ptr
|
|
%res = call double @llvm.experimental.constrained.sqrt.f64(
|
|
double %val,
|
|
metadata !"round.dynamic",
|
|
metadata !"fpexcept.strict") #0
|
|
ret double %res
|
|
}
|
|
|
|
; Check the next doubleword up, which needs separate address logic.
|
|
; Other sequences besides this one would be OK.
|
|
define double @f4(double *%base) #0 {
|
|
; CHECK-LABEL: f4:
|
|
; CHECK: # %bb.0:
|
|
; CHECK-NEXT: aghi %r2, 4096
|
|
; CHECK-NEXT: sqdb %f0, 0(%r2)
|
|
; CHECK-NEXT: br %r14
|
|
%ptr = getelementptr double, double *%base, i64 512
|
|
%val = load double, double *%ptr
|
|
%res = call double @llvm.experimental.constrained.sqrt.f64(
|
|
double %val,
|
|
metadata !"round.dynamic",
|
|
metadata !"fpexcept.strict") #0
|
|
ret double %res
|
|
}
|
|
|
|
; Check negative displacements, which also need separate address logic.
|
|
define double @f5(double *%base) #0 {
|
|
; CHECK-LABEL: f5:
|
|
; CHECK: # %bb.0:
|
|
; CHECK-NEXT: aghi %r2, -8
|
|
; CHECK-NEXT: sqdb %f0, 0(%r2)
|
|
; CHECK-NEXT: br %r14
|
|
%ptr = getelementptr double, double *%base, i64 -1
|
|
%val = load double, double *%ptr
|
|
%res = call double @llvm.experimental.constrained.sqrt.f64(
|
|
double %val,
|
|
metadata !"round.dynamic",
|
|
metadata !"fpexcept.strict") #0
|
|
ret double %res
|
|
}
|
|
|
|
; Check that SQDB allows indices.
|
|
define double @f6(double *%base, i64 %index) #0 {
|
|
; CHECK-LABEL: f6:
|
|
; CHECK: # %bb.0:
|
|
; CHECK-NEXT: sllg %r1, %r3, 3
|
|
; CHECK-NEXT: sqdb %f0, 800(%r1,%r2)
|
|
; CHECK-NEXT: br %r14
|
|
%ptr1 = getelementptr double, double *%base, i64 %index
|
|
%ptr2 = getelementptr double, double *%ptr1, i64 100
|
|
%val = load double, double *%ptr2
|
|
%res = call double @llvm.experimental.constrained.sqrt.f64(
|
|
double %val,
|
|
metadata !"round.dynamic",
|
|
metadata !"fpexcept.strict") #0
|
|
ret double %res
|
|
}
|
|
|
|
attributes #0 = { strictfp }
|