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

Side by Side Diff: tests_lit/llvm2ice_tests/sdiv.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
OLDNEW
1 ; This checks the correctness of the lowering code for the small 1 ; This checks the correctness of the lowering code for the small
2 ; integer variants of sdiv and srem. 2 ; integer variants of sdiv and srem.
3 3
4 ; RUN: %p2i -i %s --args -O2 --verbose none \ 4 ; RUN: %p2i -i %s --args -O2 --verbose none \
5 ; RUN: | llvm-mc -triple=i686-none-nacl -x86-asm-syntax=intel -filetype=obj \ 5 ; RUN: | llvm-mc -triple=i686-none-nacl -filetype=obj \
6 ; RUN: | llvm-objdump -d --symbolize -x86-asm-syntax=intel - | FileCheck %s 6 ; RUN: | llvm-objdump -d --symbolize -x86-asm-syntax=intel - | FileCheck %s
7 ; RUN: %p2i -i %s --args -Om1 --verbose none \ 7 ; RUN: %p2i -i %s --args -Om1 --verbose none \
8 ; RUN: | llvm-mc -triple=i686-none-nacl -x86-asm-syntax=intel -filetype=obj \ 8 ; RUN: | llvm-mc -triple=i686-none-nacl -filetype=obj \
9 ; RUN: | llvm-objdump -d --symbolize -x86-asm-syntax=intel - | FileCheck %s 9 ; RUN: | llvm-objdump -d --symbolize -x86-asm-syntax=intel - | FileCheck %s
10 ; RUN: %p2i -i %s --args --verbose none | FileCheck --check-prefix=ERRORS %s 10 ; RUN: %p2i -i %s --args --verbose none | FileCheck --check-prefix=ERRORS %s
11 ; RUN: %p2i -i %s --insts | %szdiff %s | FileCheck --check-prefix=DUMP %s 11 ; RUN: %p2i -i %s --insts | %szdiff %s | FileCheck --check-prefix=DUMP %s
12 12
13 define i32 @sdiv_i8(i32 %a.i32, i32 %b.i32) { 13 define i32 @sdiv_i8(i32 %a.i32, i32 %b.i32) {
14 entry: 14 entry:
15 %a = trunc i32 %a.i32 to i8 15 %a = trunc i32 %a.i32 to i8
16 %b = trunc i32 %b.i32 to i8 16 %b = trunc i32 %b.i32 to i8
17 %res = sdiv i8 %a, %b 17 %res = sdiv i8 %a, %b
18 %res.i32 = zext i8 %res to i32 18 %res.i32 = zext i8 %res to i32
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after
71 entry: 71 entry:
72 %res = srem i32 %a, %b 72 %res = srem i32 %a, %b
73 ret i32 %res 73 ret i32 %res
74 ; CHECK-LABEL: srem_i32: 74 ; CHECK-LABEL: srem_i32:
75 ; CHECK: cdq 75 ; CHECK: cdq
76 ; CHECK: idiv 76 ; CHECK: idiv
77 } 77 }
78 78
79 ; ERRORS-NOT: ICE translation error 79 ; ERRORS-NOT: ICE translation error
80 ; DUMP-NOT: SZ 80 ; DUMP-NOT: SZ
OLDNEW
« no previous file with comments | « tests_lit/llvm2ice_tests/returns_twice_no_coalesce.ll ('k') | tests_lit/llvm2ice_tests/select-opt.ll » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698