OLD | NEW |
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 Loading... |
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 |
OLD | NEW |