mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-02 07:11:49 +00:00
8b2b8a1835
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 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@186280 91177308-0d34-0410-b5e6-96231b3b80d8
111 lines
2.8 KiB
LLVM
111 lines
2.8 KiB
LLVM
; Test 64-bit floating-point stores.
|
|
;
|
|
; RUN: llc < %s -mtriple=s390x-linux-gnu | FileCheck %s
|
|
|
|
; Test the low end of the STD range.
|
|
define void @f1(double *%src, double %val) {
|
|
; CHECK-LABEL: f1:
|
|
; CHECK: std %f0, 0(%r2)
|
|
; CHECK: br %r14
|
|
store double %val, double *%src
|
|
ret void
|
|
}
|
|
|
|
; Test the high end of the STD range.
|
|
define void @f2(double *%src, double %val) {
|
|
; CHECK-LABEL: f2:
|
|
; CHECK: std %f0, 4088(%r2)
|
|
; CHECK: br %r14
|
|
%ptr = getelementptr double *%src, i64 511
|
|
store double %val, double *%ptr
|
|
ret void
|
|
}
|
|
|
|
; Check the next doubleword up, which should use STDY instead of STD.
|
|
define void @f3(double *%src, double %val) {
|
|
; CHECK-LABEL: f3:
|
|
; CHECK: stdy %f0, 4096(%r2)
|
|
; CHECK: br %r14
|
|
%ptr = getelementptr double *%src, i64 512
|
|
store double %val, double *%ptr
|
|
ret void
|
|
}
|
|
|
|
; Check the high end of the aligned STDY range.
|
|
define void @f4(double *%src, double %val) {
|
|
; CHECK-LABEL: f4:
|
|
; CHECK: stdy %f0, 524280(%r2)
|
|
; CHECK: br %r14
|
|
%ptr = getelementptr double *%src, i64 65535
|
|
store double %val, double *%ptr
|
|
ret void
|
|
}
|
|
|
|
; Check the next doubleword up, which needs separate address logic.
|
|
; Other sequences besides this one would be OK.
|
|
define void @f5(double *%src, double %val) {
|
|
; CHECK-LABEL: f5:
|
|
; CHECK: agfi %r2, 524288
|
|
; CHECK: std %f0, 0(%r2)
|
|
; CHECK: br %r14
|
|
%ptr = getelementptr double *%src, i64 65536
|
|
store double %val, double *%ptr
|
|
ret void
|
|
}
|
|
|
|
; Check the high end of the negative aligned STDY range.
|
|
define void @f6(double *%src, double %val) {
|
|
; CHECK-LABEL: f6:
|
|
; CHECK: stdy %f0, -8(%r2)
|
|
; CHECK: br %r14
|
|
%ptr = getelementptr double *%src, i64 -1
|
|
store double %val, double *%ptr
|
|
ret void
|
|
}
|
|
|
|
; Check the low end of the STDY range.
|
|
define void @f7(double *%src, double %val) {
|
|
; CHECK-LABEL: f7:
|
|
; CHECK: stdy %f0, -524288(%r2)
|
|
; CHECK: br %r14
|
|
%ptr = getelementptr double *%src, i64 -65536
|
|
store double %val, double *%ptr
|
|
ret void
|
|
}
|
|
|
|
; Check the next doubleword down, which needs separate address logic.
|
|
; Other sequences besides this one would be OK.
|
|
define void @f8(double *%src, double %val) {
|
|
; CHECK-LABEL: f8:
|
|
; CHECK: agfi %r2, -524296
|
|
; CHECK: std %f0, 0(%r2)
|
|
; CHECK: br %r14
|
|
%ptr = getelementptr double *%src, i64 -65537
|
|
store double %val, double *%ptr
|
|
ret void
|
|
}
|
|
|
|
; Check that STD allows an index.
|
|
define void @f9(i64 %src, i64 %index, double %val) {
|
|
; CHECK-LABEL: f9:
|
|
; CHECK: std %f0, 4095({{%r3,%r2|%r2,%r3}})
|
|
; CHECK: br %r14
|
|
%add1 = add i64 %src, %index
|
|
%add2 = add i64 %add1, 4095
|
|
%ptr = inttoptr i64 %add2 to double *
|
|
store double %val, double *%ptr
|
|
ret void
|
|
}
|
|
|
|
; Check that STDY allows an index.
|
|
define void @f10(i64 %src, i64 %index, double %val) {
|
|
; CHECK-LABEL: f10:
|
|
; CHECK: stdy %f0, 4096({{%r3,%r2|%r2,%r3}})
|
|
; CHECK: br %r14
|
|
%add1 = add i64 %src, %index
|
|
%add2 = add i64 %add1, 4096
|
|
%ptr = inttoptr i64 %add2 to double *
|
|
store double %val, double *%ptr
|
|
ret void
|
|
}
|