Chromium Code Reviews| Index: tests_lit/llvm2ice_tests/vector-arg.ll |
| diff --git a/tests_lit/llvm2ice_tests/vector-arg.ll b/tests_lit/llvm2ice_tests/vector-arg.ll |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..a0562ff746ac23176035723f8721fb66d50e9031 |
| --- /dev/null |
| +++ b/tests_lit/llvm2ice_tests/vector-arg.ll |
| @@ -0,0 +1,219 @@ |
| +; This file checks that Subzero generates code in accordance with the |
| +; calling convention for vectors. |
| + |
| +; NOTE: CHECK / OPTM1 lines containing the following strings may be |
| +; subject to change: |
| +; |
| +; * movups: The movups instruction may be changed to movaps when the |
| +; load / store operation is 16 byte aligned. |
| +; |
| +; * stack offsets: These may need to be changed if stack alignment |
| +; support is implemented. |
| + |
| +; RUN: %llvm2ice -O2 --verbose none %s | FileCheck %s |
| +; RUN: %llvm2ice -Om1 --verbose none %s | FileCheck --check-prefix=OPTM1 %s |
| +; RUN: %llvm2ice --verbose none %s | FileCheck --check-prefix=ERRORS %s |
| +; RUN: %llvm2iceinsts %s | %szdiff %s | FileCheck --check-prefix=DUMP %s |
| +; RUN: %llvm2iceinsts --pnacl %s | %szdiff %s \ |
| +; RUN: | FileCheck --check-prefix=DUMP %s |
| + |
| +; The first five functions test that vectors are moved from their |
| +; correct argument location to xmm0. |
| + |
| +define <4 x float> @test_returning_arg0(<4 x float> %arg0, <4 x float> %arg1, <4 x float> %arg2, <4 x float> %arg3, <4 x float> %arg4, <4 x float> %arg5) { |
| +entry: |
| + ret <4 x float> %arg0 |
| +; CHECK-LABEL: test_returning_arg0: |
| +; CHECK-NOT: mov |
| +; CHECK: ret |
| + |
| +; OPTM1-LABEL: test_returning_arg0: |
| +; OPTM1: movups xmmword ptr [[LOC:.*]], xmm0 |
| +; OPTM1: movups xmm0, xmmword ptr [[LOC]] |
| +; OPTM1: ret |
| +} |
| + |
| +define <4 x float> @test_returning_arg1(<4 x float> %arg0, <4 x float> %arg1, <4 x float> %arg2, <4 x float> %arg3, <4 x float> %arg4, <4 x float> %arg5) { |
| +entry: |
| + ret <4 x float> %arg1 |
| +; CHECK-LABEL: test_returning_arg1: |
| +; CHECK: movups xmm0, xmm1 |
| +; CHECK: ret |
| + |
| +; OPTM1-LABEL: test_returning_arg1: |
| +; OPTM1: movups xmmword ptr [[LOC:.*]], xmm1 |
| +; OPTM1: movups xmm0, xmmword ptr [[LOC]] |
| +; OPTM1: ret |
| +} |
| + |
| +define <4 x float> @test_returning_arg2(<4 x float> %arg0, <4 x float> %arg1, <4 x float> %arg2, <4 x float> %arg3, <4 x float> %arg4, <4 x float> %arg5) { |
| +entry: |
| + ret <4 x float> %arg2 |
| +; CHECK-LABEL: test_returning_arg2: |
| +; CHECK: movups xmm0, xmm2 |
| +; CHECK: ret |
| + |
| +; OPTM1-LABEL: test_returning_arg2: |
| +; OPTM1: movups xmmword ptr [[LOC:.*]], xmm2 |
| +; OPTM1: movups xmm0, xmmword ptr [[LOC]] |
| +; OPTM1: ret |
| +} |
| + |
| +define <4 x float> @test_returning_arg3(<4 x float> %arg0, <4 x float> %arg1, <4 x float> %arg2, <4 x float> %arg3, <4 x float> %arg4, <4 x float> %arg5) { |
| +entry: |
| + ret <4 x float> %arg3 |
| +; CHECK-LABEL: test_returning_arg3: |
| +; CHECK: movups xmm0, xmm3 |
| +; CHECK: ret |
| + |
| +; OPTM1-LABEL: test_returning_arg3: |
| +; OPTM1: movups xmmword ptr [[LOC:.*]], xmm3 |
| +; OPTM1: movups xmm0, xmmword ptr [[LOC]] |
| +; OPTM1: ret |
| +} |
| + |
| +define <4 x float> @test_returning_arg4(<4 x float> %arg0, <4 x float> %arg1, <4 x float> %arg2, <4 x float> %arg3, <4 x float> %arg4, <4 x float> %arg5) { |
| +entry: |
| + ret <4 x float> %arg4 |
| +; CHECK-LABEL: test_returning_arg4: |
| +; CHECK: movups xmm0, xmmword ptr [esp+4] |
| +; CHECK: ret |
| + |
| +; OPTM1-LABEL: test_returning_arg4: |
| +; OPTM1: movups xmm0, xmmword ptr {{.*}} |
| +; OPTM1: ret |
| +} |
| + |
| +; The next five functions check that xmm arguments are handled |
| +; correctly when interspersed with stack arguments in the argument |
| +; list. |
| + |
| +define <4 x float> @test_returning_interspersed_arg0(i32 %i32arg0, double %doublearg0, <4 x float> %arg0, <4 x float> %arg1, i32 %i32arg1, <4 x float> %arg2, double %doublearg1, <4 x float> %arg3, i32 %i32arg2, double %doublearg2, float %floatarg0, <4 x float> %arg4, <4 x float> %arg5, float %floatarg1) { |
| +entry: |
| + ret <4 x float> %arg0 |
| +; CHECK-LABEL: test_returning_interspersed_arg0: |
| +; CHECK-NOT: mov |
| +; CHECK: ret |
| + |
| +; OPTM1-LABEL: test_returning_interspersed_arg0: |
| +; OPTM1: movups xmmword ptr [[LOC:.*]], xmm0 |
| +; OPTM1: movups xmm0, xmmword ptr [[LOC]] |
| +; OPTM1: ret |
| +} |
| + |
| +define <4 x float> @test_returning_interspersed_arg1(i32 %i32arg0, double %doublearg0, <4 x float> %arg0, <4 x float> %arg1, i32 %i32arg1, <4 x float> %arg2, double %doublearg1, <4 x float> %arg3, i32 %i32arg2, double %doublearg2, float %floatarg0, <4 x float> %arg4, <4 x float> %arg5, float %floatarg1) { |
| +entry: |
| + ret <4 x float> %arg1 |
| +; CHECK-LABEL: test_returning_interspersed_arg1: |
| +; CHECK: movups xmm0, xmm1 |
| +; CHECK: ret |
| + |
| +; OPTM1-LABEL: test_returning_interspersed_arg1: |
| +; OPTM1: movups xmmword ptr [[LOC:.*]], xmm1 |
| +; OPTM1: movups xmm0, xmmword ptr [[LOC]] |
| +; OPTM1: ret |
| +} |
| + |
| +define <4 x float> @test_returning_interspersed_arg2(i32 %i32arg0, double %doublearg0, <4 x float> %arg0, <4 x float> %arg1, i32 %i32arg1, <4 x float> %arg2, double %doublearg1, <4 x float> %arg3, i32 %i32arg2, double %doublearg2, float %floatarg0, <4 x float> %arg4, <4 x float> %arg5, float %floatarg1) { |
| +entry: |
| + ret <4 x float> %arg2 |
| +; CHECK-LABEL: test_returning_interspersed_arg2: |
| +; CHECK: movups xmm0, xmm2 |
| +; CHECK: ret |
| + |
| +; OPTM1-LABEL: test_returning_interspersed_arg2: |
| +; OPTM1: movups xmmword ptr [[LOC:.*]], xmm2 |
| +; OPTM1: movups xmm0, xmmword ptr [[LOC]] |
| +; OPTM1: ret |
| +} |
| + |
| +define <4 x float> @test_returning_interspersed_arg3(i32 %i32arg0, double %doublearg0, <4 x float> %arg0, <4 x float> %arg1, i32 %i32arg1, <4 x float> %arg2, double %doublearg1, <4 x float> %arg3, i32 %i32arg2, double %doublearg2, float %floatarg0, <4 x float> %arg4, <4 x float> %arg5, float %floatarg1) { |
| +entry: |
| + ret <4 x float> %arg3 |
| +; CHECK-LABEL: test_returning_interspersed_arg3: |
| +; CHECK: movups xmm0, xmm3 |
| +; CHECK: ret |
| + |
| +; OPTM1-LABEL: test_returning_interspersed_arg3: |
| +; OPTM1: movups xmmword ptr [[LOC:.*]], xmm3 |
| +; OPTM1: movups xmm0, xmmword ptr [[LOC]] |
| +; OPTM1: ret |
| +} |
| + |
| +define <4 x float> @test_returning_interspersed_arg4(i32 %i32arg0, double %doublearg0, <4 x float> %arg0, <4 x float> %arg1, i32 %i32arg1, <4 x float> %arg2, double %doublearg1, <4 x float> %arg3, i32 %i32arg2, double %doublearg2, float %floatarg0, <4 x float> %arg4, <4 x float> %arg5, float %floatarg1) { |
| +entry: |
| + ret <4 x float> %arg4 |
| +; CHECK-LABEL: test_returning_interspersed_arg4: |
| +; CHECK: movups xmm0, xmmword ptr [esp+44] |
| +; CHECK: ret |
| + |
| +; OPTM1-LABEL: test_returning_interspersed_arg4: |
| +; OPTM1: movups xmm0, xmmword ptr {{.*}} |
| +; OPTM1: ret |
| +} |
| + |
| +; Test that vectors are passed correctly as arguments to a function. |
| + |
| +declare void @VectorArgs(<4 x float>, <4 x float>, <4 x float>, <4 x float>, <4 x float>, <4 x float>) |
| + |
| +define void @test_passing_vectors(<4 x float> %arg0, <4 x float> %arg1, <4 x float> %arg2, <4 x float> %arg3, <4 x float> %arg4, <4 x float> %arg5, <4 x float> %arg6, <4 x float> %arg7, <4 x float> %arg8, <4 x float> %arg9) { |
| +entry: |
| + call void @VectorArgs(<4 x float> %arg9, <4 x float> %arg8, <4 x float> %arg7, <4 x float> %arg6, <4 x float> %arg5, <4 x float> %arg4) |
| + ret void |
| +; CHECK-LABEL: test_passing_vectors: |
| +; CHECK: movups xmm0, xmmword ptr [esp+4] |
|
jvoung (off chromium)
2014/07/09 04:26:53
What are the first few "CHECK: movups xmm0, xmmwor
wala
2014/07/09 19:05:12
The order that the vector arguments are passed is
|
| +; CHECK: movups xmm1, xmmword ptr [esp+20] |
| +; CHECK: movups xmm2, xmmword ptr [esp+36] |
| +; CHECK: movups xmm3, xmmword ptr [esp+52] |
| +; CHECK: movups [[ARG5:.*]], xmmword ptr [esp+68] |
| +; CHECK: movups [[ARG6:.*]], xmmword ptr [esp+84] |
| +; CHECK: sub esp, 16 |
|
jvoung (off chromium)
2014/07/09 04:26:53
At some point we might want to consolidate the sta
wala
2014/07/09 19:05:13
Added a note in the test and in lowerCall().
|
| +; CHECK-NEXT: movups xmmword ptr [esp], [[ARG5]] |
| +; CHECK: sub esp, 16 |
| +; CHECK-NEXT: movups xmmword ptr [esp], [[ARG6]] |
| +; CHECK: call VectorArgs |
| +; CHECK-NEXT: add esp, 32 |
| +; CHECK: ret |
| + |
| +; OPTM1-LABEL: test_passing_vectors: |
| +; OPTM1: movups xmm0, xmmword ptr {{.*}} |
| +; OPTM1: movups xmm1, xmmword ptr {{.*}} |
| +; OPTM1: movups xmm2, xmmword ptr {{.*}} |
| +; OPTM1: movups xmm3, xmmword ptr {{.*}} |
| +; OPTM1: sub esp, 16 |
| +; OPTM1: movups [[ARG5:.*]], xmmword ptr {{.*}} |
| +; OPTM1-NEXT: movups xmmword ptr [esp], [[ARG5]] |
| +; OPTM1: sub esp, 16 |
| +; OPTM1: movups [[ARG6:.*]], xmmword ptr {{.*}} |
| +; OPTM1: movups xmmword ptr [esp], [[ARG6]] |
| +; OPTM1: call VectorArgs |
| +; OPTM1: add esp, 32 |
| +; OPTM1: ret |
| +} |
| + |
| +; Test that a vector returned from a function is recognized to be in |
| +; xmm0. |
| + |
| +declare <4 x float> @VectorReturn(<4 x float> %arg0) |
| + |
| +define void @test_receiving_vectors(<4 x float> %arg0) { |
| +entry: |
| + %result = call <4 x float> @VectorReturn(<4 x float> %arg0) |
| + %result2 = call <4 x float> @VectorReturn(<4 x float> %result) |
| + ret void |
| +; CHECK-LABEL: test_receiving_vectors: |
| +; CHECK: call VectorReturn |
| +; CHECK-NOT: movups xmm0 |
| +; CHECK: call VectorReturn |
| +; CHECK: ret |
| + |
| +; OPTM1-LABEL: test_receiving_vectors: |
| +; OPTM1: call VectorReturn |
| +; OPTM1: movups [[LOC:.*]], xmm0 |
| +; OPTM1: movups xmm0, [[LOC]] |
| +; OPTM1: call VectorReturn |
| +; OPTM1: ret |
| +} |
| + |
| +; ERRORS-NOT: ICE translation error |
| +; DUMP-NOT: SZ |