OLD | NEW |
1 ; This file tests support for the select instruction with vector valued inputs. | 1 ; This file tests support for the select instruction with vector valued inputs. |
2 | 2 |
3 ; RUN: %llvm2ice -O2 --verbose none %s | FileCheck %s | 3 ; RUN: %llvm2ice -O2 --verbose none %s \ |
4 ; RUN: %llvm2ice -Om1 --verbose none %s | FileCheck %s | 4 ; RUN: | llvm-mc -triple=i686-none-nacl -x86-asm-syntax=intel -filetype=obj \ |
| 5 ; RUN: | llvm-objdump -d --symbolize -x86-asm-syntax=intel - | FileCheck %s |
| 6 ; RUN: %llvm2ice -Om1 --verbose none %s \ |
| 7 ; RUN: | llvm-mc -triple=i686-none-nacl -x86-asm-syntax=intel -filetype=obj \ |
| 8 ; RUN: | llvm-objdump -d --symbolize -x86-asm-syntax=intel - | FileCheck %s |
5 ; RUN: %llvm2ice -O2 -mattr=sse4.1 --verbose none %s \ | 9 ; RUN: %llvm2ice -O2 -mattr=sse4.1 --verbose none %s \ |
6 ; RUN: | FileCheck %s --check-prefix=SSE41 | 10 ; RUN: | llvm-mc -triple=i686-none-nacl -x86-asm-syntax=intel -filetype=obj \ |
| 11 ; RUN: | llvm-objdump -d --symbolize -x86-asm-syntax=intel - \ |
| 12 ; RUN: | FileCheck --check-prefix=SSE41 %s |
7 ; RUN: %llvm2ice -Om1 -mattr=sse4.1 --verbose none %s \ | 13 ; RUN: %llvm2ice -Om1 -mattr=sse4.1 --verbose none %s \ |
8 ; RUN: | FileCheck %s --check-prefix=SSE41 | 14 ; RUN: | llvm-mc -triple=i686-none-nacl -x86-asm-syntax=intel -filetype=obj \ |
9 ; RUN: %llvm2ice -O2 --verbose none %s \ | 15 ; RUN: | llvm-objdump -d --symbolize -x86-asm-syntax=intel - \ |
10 ; RUN: | llvm-mc -triple=i686-none-nacl -x86-asm-syntax=intel -filetype=obj | 16 ; RUN: | FileCheck --check-prefix=SSE41 %s |
11 ; RUN: %llvm2ice -Om1 --verbose none %s \ | |
12 ; RUN: | llvm-mc -triple=i686-none-nacl -x86-asm-syntax=intel -filetype=obj | |
13 ; RUN: %llvm2ice -O2 -mattr=sse4.1 --verbose none %s \ | |
14 ; RUN: | llvm-mc -triple=i686-none-nacl -x86-asm-syntax=intel -filetype=obj | |
15 ; RUN: %llvm2ice -Om1 -mattr=sse4.1 --verbose none %s \ | |
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 <16 x i8> @test_select_v16i8(<16 x i1> %cond, <16 x i8> %arg1, <16 x i8>
%arg2) { | 22 define <16 x i8> @test_select_v16i8(<16 x i1> %cond, <16 x i8> %arg1, <16 x i8>
%arg2) { |
23 entry: | 23 entry: |
24 %res = select <16 x i1> %cond, <16 x i8> %arg1, <16 x i8> %arg2 | 24 %res = select <16 x i1> %cond, <16 x i8> %arg1, <16 x i8> %arg2 |
25 ret <16 x i8> %res | 25 ret <16 x i8> %res |
26 ; CHECK-LABEL: test_select_v16i8: | 26 ; CHECK-LABEL: test_select_v16i8: |
(...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
108 ; CHECK: pandn | 108 ; CHECK: pandn |
109 ; CHECK: por | 109 ; CHECK: por |
110 | 110 |
111 ; SSE41-LABEL: test_select_v4i1: | 111 ; SSE41-LABEL: test_select_v4i1: |
112 ; SSE41: pslld xmm0, 31 | 112 ; SSE41: pslld xmm0, 31 |
113 ; SSE41: blendvps | 113 ; SSE41: blendvps |
114 } | 114 } |
115 | 115 |
116 ; ERRORS-NOT: ICE translation error | 116 ; ERRORS-NOT: ICE translation error |
117 ; DUMP-NOT: SZ | 117 ; DUMP-NOT: SZ |
OLD | NEW |