Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(36)

Side by Side Diff: tests_lit/llvm2ice_tests/select-opt.ll

Issue 695993004: Subzero: Switch to AT&T asm syntax. I give up. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Add opcode suffix to xchg. Use .L$ prefix for constant pool entries. Created 6 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « tests_lit/llvm2ice_tests/sdiv.ll ('k') | tests_lit/llvm2ice_tests/shift.ll » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 ; Simple test of the select instruction. The CHECK lines are only 1 ; Simple test of the select instruction. The CHECK lines are only
2 ; checking for basic instruction patterns that should be present 2 ; checking for basic instruction patterns that should be present
3 ; regardless of the optimization level, so there are no special OPTM1 3 ; regardless of the optimization level, so there are no special OPTM1
4 ; match lines. 4 ; match lines.
5 5
6 ; RUN: %p2i -i %s --args -O2 --verbose none \ 6 ; RUN: %p2i -i %s --args -O2 --verbose none \
7 ; RUN: | llvm-mc -triple=i686-none-nacl -x86-asm-syntax=intel -filetype=obj \ 7 ; RUN: | llvm-mc -triple=i686-none-nacl -filetype=obj \
8 ; RUN: | llvm-objdump -d --symbolize -x86-asm-syntax=intel - | FileCheck %s 8 ; RUN: | llvm-objdump -d --symbolize -x86-asm-syntax=intel - | FileCheck %s
9 ; RUN: %p2i -i %s --args -Om1 --verbose none \ 9 ; RUN: %p2i -i %s --args -Om1 --verbose none \
10 ; RUN: | llvm-mc -triple=i686-none-nacl -x86-asm-syntax=intel -filetype=obj \ 10 ; RUN: | llvm-mc -triple=i686-none-nacl -filetype=obj \
11 ; RUN: | llvm-objdump -d --symbolize -x86-asm-syntax=intel - | FileCheck %s 11 ; RUN: | llvm-objdump -d --symbolize -x86-asm-syntax=intel - | FileCheck %s
12 ; RUN: %p2i -i %s --args --verbose none | FileCheck --check-prefix=ERRORS %s 12 ; RUN: %p2i -i %s --args --verbose none | FileCheck --check-prefix=ERRORS %s
13 ; RUN: %p2i -i %s --insts | %szdiff %s | FileCheck --check-prefix=DUMP %s 13 ; RUN: %p2i -i %s --insts | %szdiff %s | FileCheck --check-prefix=DUMP %s
14 14
15 define void @testSelect(i32 %a, i32 %b) { 15 define void @testSelect(i32 %a, i32 %b) {
16 entry: 16 entry:
17 %cmp = icmp slt i32 %a, %b 17 %cmp = icmp slt i32 %a, %b
18 %cond = select i1 %cmp, i32 %a, i32 %b 18 %cond = select i1 %cmp, i32 %a, i32 %b
19 tail call void @useInt(i32 %cond) 19 tail call void @useInt(i32 %cond)
20 %cmp1 = icmp sgt i32 %a, %b 20 %cmp1 = icmp sgt i32 %a, %b
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
56 define i64 @testSelectImm64(i64 %a, i64 %b) { 56 define i64 @testSelectImm64(i64 %a, i64 %b) {
57 entry: 57 entry:
58 %cond = select i1 true, i64 %a, i64 %b 58 %cond = select i1 true, i64 %a, i64 %b
59 ret i64 %cond 59 ret i64 %cond
60 } 60 }
61 ; CHECK-LABEL: testSelectImm64 61 ; CHECK-LABEL: testSelectImm64
62 ; CHECK-NOT: cmp {{[0-9]+}}, 62 ; CHECK-NOT: cmp {{[0-9]+}},
63 63
64 ; ERRORS-NOT: ICE translation error 64 ; ERRORS-NOT: ICE translation error
65 ; DUMP-NOT: SZ 65 ; DUMP-NOT: SZ
OLDNEW
« no previous file with comments | « tests_lit/llvm2ice_tests/sdiv.ll ('k') | tests_lit/llvm2ice_tests/shift.ll » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698