mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-01 08:23:21 +01:00
7e501cf4c3
This update was done with the following bash script: find test/CodeGen -name "*.ll" | \ while read NAME; do echo "$NAME" if ! grep -q "^; *RUN: *llc.*debug" $NAME; then TEMP=`mktemp -t temp` cp $NAME $TEMP sed -n "s/^define [^@]*@\([A-Za-z0-9_]*\)(.*$/\1/p" < $NAME | \ while read FUNC; do sed -i '' "s/;\(.*\)\([A-Za-z0-9_-]*\):\( *\)$FUNC: *\$/;\1\2-LABEL:\3$FUNC:/g" $TEMP done sed -i '' "s/;\(.*\)-LABEL-LABEL:/;\1-LABEL:/" $TEMP sed -i '' "s/;\(.*\)-NEXT-LABEL:/;\1-NEXT:/" $TEMP sed -i '' "s/;\(.*\)-NOT-LABEL:/;\1-NOT:/" $TEMP sed -i '' "s/;\(.*\)-DAG-LABEL:/;\1-DAG:/" $TEMP mv $TEMP $NAME fi done llvm-svn: 186280
103 lines
3.0 KiB
LLVM
103 lines
3.0 KiB
LLVM
; RUN: llc < %s -mtriple=s390x-linux-gnu | FileCheck %s
|
|
|
|
declare double @llvm.fma.f64(double %f1, double %f2, double %f3)
|
|
|
|
define double @f1(double %f1, double %f2, double %acc) {
|
|
; CHECK-LABEL: f1:
|
|
; CHECK: madbr %f4, %f0, %f2
|
|
; CHECK: ldr %f0, %f4
|
|
; CHECK: br %r14
|
|
%res = call double @llvm.fma.f64 (double %f1, double %f2, double %acc)
|
|
ret double %res
|
|
}
|
|
|
|
define double @f2(double %f1, double *%ptr, double %acc) {
|
|
; CHECK-LABEL: f2:
|
|
; CHECK: madb %f2, %f0, 0(%r2)
|
|
; CHECK: ldr %f0, %f2
|
|
; CHECK: br %r14
|
|
%f2 = load double *%ptr
|
|
%res = call double @llvm.fma.f64 (double %f1, double %f2, double %acc)
|
|
ret double %res
|
|
}
|
|
|
|
define double @f3(double %f1, double *%base, double %acc) {
|
|
; CHECK-LABEL: f3:
|
|
; CHECK: madb %f2, %f0, 4088(%r2)
|
|
; CHECK: ldr %f0, %f2
|
|
; CHECK: br %r14
|
|
%ptr = getelementptr double *%base, i64 511
|
|
%f2 = load double *%ptr
|
|
%res = call double @llvm.fma.f64 (double %f1, double %f2, double %acc)
|
|
ret double %res
|
|
}
|
|
|
|
define double @f4(double %f1, double *%base, double %acc) {
|
|
; The important thing here is that we don't generate an out-of-range
|
|
; displacement. Other sequences besides this one would be OK.
|
|
;
|
|
; CHECK-LABEL: f4:
|
|
; CHECK: aghi %r2, 4096
|
|
; CHECK: madb %f2, %f0, 0(%r2)
|
|
; CHECK: ldr %f0, %f2
|
|
; CHECK: br %r14
|
|
%ptr = getelementptr double *%base, i64 512
|
|
%f2 = load double *%ptr
|
|
%res = call double @llvm.fma.f64 (double %f1, double %f2, double %acc)
|
|
ret double %res
|
|
}
|
|
|
|
define double @f5(double %f1, double *%base, double %acc) {
|
|
; Here too the important thing is that we don't generate an out-of-range
|
|
; displacement. Other sequences besides this one would be OK.
|
|
;
|
|
; CHECK-LABEL: f5:
|
|
; CHECK: aghi %r2, -8
|
|
; CHECK: madb %f2, %f0, 0(%r2)
|
|
; CHECK: ldr %f0, %f2
|
|
; CHECK: br %r14
|
|
%ptr = getelementptr double *%base, i64 -1
|
|
%f2 = load double *%ptr
|
|
%res = call double @llvm.fma.f64 (double %f1, double %f2, double %acc)
|
|
ret double %res
|
|
}
|
|
|
|
define double @f6(double %f1, double *%base, i64 %index, double %acc) {
|
|
; CHECK-LABEL: f6:
|
|
; CHECK: sllg %r1, %r3, 3
|
|
; CHECK: madb %f2, %f0, 0(%r1,%r2)
|
|
; CHECK: ldr %f0, %f2
|
|
; CHECK: br %r14
|
|
%ptr = getelementptr double *%base, i64 %index
|
|
%f2 = load double *%ptr
|
|
%res = call double @llvm.fma.f64 (double %f1, double %f2, double %acc)
|
|
ret double %res
|
|
}
|
|
|
|
define double @f7(double %f1, double *%base, i64 %index, double %acc) {
|
|
; CHECK-LABEL: f7:
|
|
; CHECK: sllg %r1, %r3, 3
|
|
; CHECK: madb %f2, %f0, 4088({{%r1,%r2|%r2,%r1}})
|
|
; CHECK: ldr %f0, %f2
|
|
; CHECK: br %r14
|
|
%index2 = add i64 %index, 511
|
|
%ptr = getelementptr double *%base, i64 %index2
|
|
%f2 = load double *%ptr
|
|
%res = call double @llvm.fma.f64 (double %f1, double %f2, double %acc)
|
|
ret double %res
|
|
}
|
|
|
|
define double @f8(double %f1, double *%base, i64 %index, double %acc) {
|
|
; CHECK-LABEL: f8:
|
|
; CHECK: sllg %r1, %r3, 3
|
|
; CHECK: lay %r1, 4096({{%r1,%r2|%r2,%r1}})
|
|
; CHECK: madb %f2, %f0, 0(%r1)
|
|
; CHECK: ldr %f0, %f2
|
|
; CHECK: br %r14
|
|
%index2 = add i64 %index, 512
|
|
%ptr = getelementptr double *%base, i64 %index2
|
|
%f2 = load double *%ptr
|
|
%res = call double @llvm.fma.f64 (double %f1, double %f2, double %acc)
|
|
ret double %res
|
|
}
|