OLD | NEW |
1 ; This test checks support for vector arithmetic. | 1 ; This test checks support for vector arithmetic. |
2 | 2 |
3 ; RUN: %llvm2ice -O2 --verbose none %s | FileCheck %s | 3 ; RUN: %llvm2ice -O2 --verbose none %s | FileCheck %s |
4 ; RUN: %llvm2ice -Om1 --verbose none %s | FileCheck %s | 4 ; RUN: %llvm2ice -Om1 --verbose none %s | FileCheck %s |
5 ; RUN: %llvm2ice -O2 -mattr=sse4.1 --verbose none %s \ | 5 ; RUN: %llvm2ice -O2 -mattr=sse4.1 --verbose none %s \ |
6 ; RUN: | FileCheck %s --check-prefix=SSE41 | 6 ; RUN: | FileCheck %s --check-prefix=SSE41 |
7 ; RUN: %llvm2ice -Om1 -mattr=sse4.1 --verbose none %s \ | 7 ; RUN: %llvm2ice -Om1 -mattr=sse4.1 --verbose none %s \ |
8 ; RUN: | FileCheck %s --check-prefix=SSE41 | 8 ; RUN: | FileCheck %s --check-prefix=SSE41 |
9 ; RUN: %llvm2ice -O2 --verbose none %s \ | 9 ; RUN: %llvm2ice -O2 --verbose none %s \ |
10 ; RUN: | llvm-mc -arch=x86 -x86-asm-syntax=intel -filetype=obj | 10 ; RUN: | llvm-mc -triple=i686-none-nacl -x86-asm-syntax=intel -filetype=obj |
11 ; RUN: %llvm2ice -Om1 --verbose none %s \ | 11 ; RUN: %llvm2ice -Om1 --verbose none %s \ |
12 ; RUN: | llvm-mc -arch=x86 -x86-asm-syntax=intel -filetype=obj | 12 ; RUN: | llvm-mc -triple=i686-none-nacl -x86-asm-syntax=intel -filetype=obj |
13 ; RUN: %llvm2ice -O2 -mattr=sse4.1 --verbose none %s \ | 13 ; RUN: %llvm2ice -O2 -mattr=sse4.1 --verbose none %s \ |
14 ; RUN: | llvm-mc -arch=x86 -x86-asm-syntax=intel -filetype=obj | 14 ; RUN: | llvm-mc -triple=i686-none-nacl -x86-asm-syntax=intel -filetype=obj |
15 ; RUN: %llvm2ice -Om1 -mattr=sse4.1 --verbose none %s \ | 15 ; RUN: %llvm2ice -Om1 -mattr=sse4.1 --verbose none %s \ |
16 ; RUN: | llvm-mc -arch=x86 -x86-asm-syntax=intel -filetype=obj | 16 ; RUN: | llvm-mc -triple=i686-none-nacl -x86-asm-syntax=intel -filetype=obj |
17 ; RUN: %llvm2ice --verbose none %s | FileCheck --check-prefix=ERRORS %s | 17 ; RUN: %llvm2ice --verbose none %s | FileCheck --check-prefix=ERRORS %s |
18 ; RUN: %llvm2iceinsts %s | %szdiff %s | FileCheck --check-prefix=DUMP %s | 18 ; RUN: %llvm2iceinsts %s | %szdiff %s | FileCheck --check-prefix=DUMP %s |
19 ; RUN: %llvm2iceinsts --pnacl %s | %szdiff %s \ | 19 ; RUN: %llvm2iceinsts --pnacl %s | %szdiff %s \ |
20 ; RUN: | FileCheck --check-prefix=DUMP %s | 20 ; RUN: | FileCheck --check-prefix=DUMP %s |
21 | 21 |
22 define <4 x float> @test_fadd(<4 x float> %arg0, <4 x float> %arg1) { | 22 define <4 x float> @test_fadd(<4 x float> %arg0, <4 x float> %arg1) { |
23 entry: | 23 entry: |
24 %res = fadd <4 x float> %arg0, %arg1 | 24 %res = fadd <4 x float> %arg0, %arg1 |
25 ret <4 x float> %res | 25 ret <4 x float> %res |
26 ; CHECK-LABEL: test_fadd: | 26 ; CHECK-LABEL: test_fadd: |
(...skipping 539 matching lines...) Loading... |
566 ret <4 x i32> %res | 566 ret <4 x i32> %res |
567 ; CHECK-LABEL: test_srem_v4i32: | 567 ; CHECK-LABEL: test_srem_v4i32: |
568 ; CHECK: idiv | 568 ; CHECK: idiv |
569 ; CHECK: idiv | 569 ; CHECK: idiv |
570 ; CHECK: idiv | 570 ; CHECK: idiv |
571 ; CHECK: idiv | 571 ; CHECK: idiv |
572 } | 572 } |
573 | 573 |
574 ; ERRORS-NOT: ICE translation error | 574 ; ERRORS-NOT: ICE translation error |
575 ; DUMP-NOT: SZ | 575 ; DUMP-NOT: SZ |
OLD | NEW |