llvm-project/llvm/test/CodeGen/ARM/vfp.ll

157 lines
4.4 KiB
LLVM
Raw Normal View History

; RUN: llc < %s -mtriple=arm-apple-ios -mattr=+vfp2 -disable-post-ra | FileCheck %s
; RUN: llc < %s -mtriple=arm-apple-ios -mattr=+vfp2 -disable-post-ra -regalloc=basic | FileCheck %s
2008-02-18 04:02:20 +08:00
define void @test(float* %P, double* %D) {
%A = load float, float* %P ; <float> [#uses=1]
%B = load double, double* %D ; <double> [#uses=1]
2008-02-18 04:02:20 +08:00
store float %A, float* %P
store double %B, double* %D
ret void
}
2008-02-18 04:02:20 +08:00
declare float @fabsf(float)
2008-02-18 04:02:20 +08:00
declare double @fabs(double)
2008-02-18 04:02:20 +08:00
define void @test_abs(float* %P, double* %D) {
;CHECK-LABEL: test_abs:
%a = load float, float* %P ; <float> [#uses=1]
;CHECK: vabs.f32
%b = call float @fabsf( float %a ) readnone ; <float> [#uses=1]
2008-02-18 04:02:20 +08:00
store float %b, float* %P
%A = load double, double* %D ; <double> [#uses=1]
;CHECK: vabs.f64
%B = call double @fabs( double %A ) readnone ; <double> [#uses=1]
2008-02-18 04:02:20 +08:00
store double %B, double* %D
ret void
}
2008-02-18 04:02:20 +08:00
define void @test_add(float* %P, double* %D) {
;CHECK-LABEL: test_add:
%a = load float, float* %P ; <float> [#uses=2]
%b = fadd float %a, %a ; <float> [#uses=1]
2008-02-18 04:02:20 +08:00
store float %b, float* %P
%A = load double, double* %D ; <double> [#uses=2]
%B = fadd double %A, %A ; <double> [#uses=1]
2008-02-18 04:02:20 +08:00
store double %B, double* %D
ret void
}
2008-02-18 04:02:20 +08:00
define void @test_ext_round(float* %P, double* %D) {
;CHECK-LABEL: test_ext_round:
%a = load float, float* %P ; <float> [#uses=1]
;CHECK: vcvt.f64.f32
;CHECK: vcvt.f32.f64
2008-02-18 04:02:20 +08:00
%b = fpext float %a to double ; <double> [#uses=1]
%A = load double, double* %D ; <double> [#uses=1]
2008-02-18 04:02:20 +08:00
%B = fptrunc double %A to float ; <float> [#uses=1]
store double %b, double* %D
store float %B, float* %P
ret void
}
2008-02-18 04:02:20 +08:00
define void @test_fma(float* %P1, float* %P2, float* %P3) {
;CHECK-LABEL: test_fma:
%a1 = load float, float* %P1 ; <float> [#uses=1]
%a2 = load float, float* %P2 ; <float> [#uses=1]
%a3 = load float, float* %P3 ; <float> [#uses=1]
;CHECK: vnmls.f32
%X = fmul float %a1, %a2 ; <float> [#uses=1]
%Y = fsub float %X, %a3 ; <float> [#uses=1]
2008-02-18 04:02:20 +08:00
store float %Y, float* %P1
ret void
}
2008-02-18 04:02:20 +08:00
define i32 @test_ftoi(float* %P1) {
;CHECK-LABEL: test_ftoi:
%a1 = load float, float* %P1 ; <float> [#uses=1]
;CHECK: vcvt.s32.f32
2008-02-18 04:02:20 +08:00
%b1 = fptosi float %a1 to i32 ; <i32> [#uses=1]
ret i32 %b1
}
2008-02-18 04:02:20 +08:00
define i32 @test_ftou(float* %P1) {
;CHECK-LABEL: test_ftou:
%a1 = load float, float* %P1 ; <float> [#uses=1]
;CHECK: vcvt.u32.f32
2008-02-18 04:02:20 +08:00
%b1 = fptoui float %a1 to i32 ; <i32> [#uses=1]
ret i32 %b1
}
2008-02-18 04:02:20 +08:00
define i32 @test_dtoi(double* %P1) {
;CHECK-LABEL: test_dtoi:
%a1 = load double, double* %P1 ; <double> [#uses=1]
;CHECK: vcvt.s32.f64
2008-02-18 04:02:20 +08:00
%b1 = fptosi double %a1 to i32 ; <i32> [#uses=1]
ret i32 %b1
}
2008-02-18 04:02:20 +08:00
define i32 @test_dtou(double* %P1) {
;CHECK-LABEL: test_dtou:
%a1 = load double, double* %P1 ; <double> [#uses=1]
;CHECK: vcvt.u32.f64
2008-02-18 04:02:20 +08:00
%b1 = fptoui double %a1 to i32 ; <i32> [#uses=1]
ret i32 %b1
}
2008-02-18 04:02:20 +08:00
define void @test_utod(double* %P1, i32 %X) {
;CHECK-LABEL: test_utod:
;CHECK: vcvt.f64.u32
2008-02-18 04:02:20 +08:00
%b1 = uitofp i32 %X to double ; <double> [#uses=1]
store double %b1, double* %P1
ret void
}
2008-02-18 04:02:20 +08:00
define void @test_utod2(double* %P1, i8 %X) {
;CHECK-LABEL: test_utod2:
;CHECK: vcvt.f64.u32
2008-02-18 04:02:20 +08:00
%b1 = uitofp i8 %X to double ; <double> [#uses=1]
store double %b1, double* %P1
ret void
}
2008-02-18 04:02:20 +08:00
define void @test_cmp(float* %glob, i32 %X) {
;CHECK-LABEL: test_cmp:
entry:
%tmp = load float, float* %glob ; <float> [#uses=2]
[opaque pointer type] Add textual IR support for explicit type parameter to getelementptr instruction One of several parallel first steps to remove the target type of pointers, replacing them with a single opaque pointer type. This adds an explicit type parameter to the gep instruction so that when the first parameter becomes an opaque pointer type, the type to gep through is still available to the instructions. * This doesn't modify gep operators, only instructions (operators will be handled separately) * Textual IR changes only. Bitcode (including upgrade) and changing the in-memory representation will be in separate changes. * geps of vectors are transformed as: getelementptr <4 x float*> %x, ... ->getelementptr float, <4 x float*> %x, ... Then, once the opaque pointer type is introduced, this will ultimately look like: getelementptr float, <4 x ptr> %x with the unambiguous interpretation that it is a vector of pointers to float. * address spaces remain on the pointer, not the type: getelementptr float addrspace(1)* %x ->getelementptr float, float addrspace(1)* %x Then, eventually: getelementptr float, ptr addrspace(1) %x Importantly, the massive amount of test case churn has been automated by same crappy python code. I had to manually update a few test cases that wouldn't fit the script's model (r228970,r229196,r229197,r229198). The python script just massages stdin and writes the result to stdout, I then wrapped that in a shell script to handle replacing files, then using the usual find+xargs to migrate all the files. update.py: import fileinput import sys import re ibrep = re.compile(r"(^.*?[^%\w]getelementptr inbounds )(((?:<\d* x )?)(.*?)(| addrspace\(\d\)) *\*(|>)(?:$| *(?:%|@|null|undef|blockaddress|getelementptr|addrspacecast|bitcast|inttoptr|\[\[[a-zA-Z]|\{\{).*$))") normrep = re.compile( r"(^.*?[^%\w]getelementptr )(((?:<\d* x )?)(.*?)(| addrspace\(\d\)) *\*(|>)(?:$| *(?:%|@|null|undef|blockaddress|getelementptr|addrspacecast|bitcast|inttoptr|\[\[[a-zA-Z]|\{\{).*$))") def conv(match, line): if not match: return line line = match.groups()[0] if len(match.groups()[5]) == 0: line += match.groups()[2] line += match.groups()[3] line += ", " line += match.groups()[1] line += "\n" return line for line in sys.stdin: if line.find("getelementptr ") == line.find("getelementptr inbounds"): if line.find("getelementptr inbounds") != line.find("getelementptr inbounds ("): line = conv(re.match(ibrep, line), line) elif line.find("getelementptr ") != line.find("getelementptr ("): line = conv(re.match(normrep, line), line) sys.stdout.write(line) apply.sh: for name in "$@" do python3 `dirname "$0"`/update.py < "$name" > "$name.tmp" && mv "$name.tmp" "$name" rm -f "$name.tmp" done The actual commands: From llvm/src: find test/ -name *.ll | xargs ./apply.sh From llvm/src/tools/clang: find test/ -name *.mm -o -name *.m -o -name *.cpp -o -name *.c | xargs -I '{}' ../../apply.sh "{}" From llvm/src/tools/polly: find test/ -name *.ll | xargs ./apply.sh After that, check-all (with llvm, clang, clang-tools-extra, lld, compiler-rt, and polly all checked out). The extra 'rm' in the apply.sh script is due to a few files in clang's test suite using interesting unicode stuff that my python script was throwing exceptions on. None of those files needed to be migrated, so it seemed sufficient to ignore those cases. Reviewers: rafael, dexonsmith, grosser Differential Revision: http://reviews.llvm.org/D7636 llvm-svn: 230786
2015-02-28 03:29:02 +08:00
%tmp3 = getelementptr float, float* %glob, i32 2 ; <float*> [#uses=1]
%tmp4 = load float, float* %tmp3 ; <float> [#uses=2]
2008-02-18 04:02:20 +08:00
%tmp.upgrd.1 = fcmp oeq float %tmp, %tmp4 ; <i1> [#uses=1]
%tmp5 = fcmp uno float %tmp, %tmp4 ; <i1> [#uses=1]
%tmp6 = or i1 %tmp.upgrd.1, %tmp5 ; <i1> [#uses=1]
;CHECK: bmi
;CHECK-NEXT: bgt
2008-02-18 04:02:20 +08:00
br i1 %tmp6, label %cond_true, label %cond_false
cond_true: ; preds = %entry
%tmp.upgrd.2 = tail call i32 (...)* @bar( ) ; <i32> [#uses=0]
ret void
cond_false: ; preds = %entry
%tmp7 = tail call i32 (...)* @baz( ) ; <i32> [#uses=0]
ret void
}
2008-02-18 04:02:20 +08:00
declare i1 @llvm.isunordered.f32(float, float)
2008-02-18 04:02:20 +08:00
declare i32 @bar(...)
2008-02-18 04:02:20 +08:00
declare i32 @baz(...)
2008-02-18 04:02:20 +08:00
define void @test_cmpfp0(float* %glob, i32 %X) {
;CHECK-LABEL: test_cmpfp0:
entry:
%tmp = load float, float* %glob ; <float> [#uses=1]
;CHECK: vcmpe.f32
2008-02-18 04:02:20 +08:00
%tmp.upgrd.3 = fcmp ogt float %tmp, 0.000000e+00 ; <i1> [#uses=1]
br i1 %tmp.upgrd.3, label %cond_true, label %cond_false
2008-02-18 04:02:20 +08:00
cond_true: ; preds = %entry
%tmp.upgrd.4 = tail call i32 (...)* @bar( ) ; <i32> [#uses=0]
ret void
2008-02-18 04:02:20 +08:00
cond_false: ; preds = %entry
%tmp1 = tail call i32 (...)* @baz( ) ; <i32> [#uses=0]
ret void
}