OLD | NEW |
1 ; Show that we know how to translate lsl. | 1 ; Show that we know how to translate lsl. |
2 | 2 |
3 ; NOTE: We use -O2 to get rid of memory stores. | 3 ; NOTE: We use -O2 to get rid of memory stores. |
4 | 4 |
5 ; REQUIRES: allow_dump | 5 ; REQUIRES: allow_dump |
6 | 6 |
7 ; Compile using standalone assembler. | 7 ; Compile using standalone assembler. |
8 ; RUN: %p2i --filetype=asm -i %s --target=arm32 --args -O2 \ | 8 ; RUN: %p2i --filetype=asm -i %s --target=arm32 --args -O2 \ |
9 ; RUN: | FileCheck %s --check-prefix=ASM | 9 ; RUN: | FileCheck %s --check-prefix=ASM |
10 | 10 |
11 ; Show bytes in assembled standalone code. | 11 ; Show bytes in assembled standalone code. |
12 ; RUN: %p2i --filetype=asm -i %s --target=arm32 --assemble --disassemble \ | 12 ; RUN: %p2i --filetype=asm -i %s --target=arm32 --assemble --disassemble \ |
13 ; RUN: --args -O2 | FileCheck %s --check-prefix=DIS | 13 ; RUN: --args -O2 | FileCheck %s --check-prefix=DIS |
14 | 14 |
15 ; Compile using integrated assembler. | 15 ; Compile using integrated assembler. |
16 ; RUN: %p2i --filetype=iasm -i %s --target=arm32 --args -O2 \ | 16 ; RUN: %p2i --filetype=iasm -i %s --target=arm32 --args -O2 \ |
17 ; RUN: | FileCheck %s --check-prefix=IASM | 17 ; RUN: | FileCheck %s --check-prefix=IASM |
18 | 18 |
19 ; Show bytes in assembled integrated code. | 19 ; Show bytes in assembled integrated code. |
20 ; RUN: %p2i --filetype=iasm -i %s --target=arm32 --assemble --disassemble \ | 20 ; RUN: %p2i --filetype=iasm -i %s --target=arm32 --assemble --disassemble \ |
21 ; RUN: --args -O2 | FileCheck %s --check-prefix=DIS | 21 ; RUN: --args -O2 | FileCheck %s --check-prefix=DIS |
22 | 22 |
23 define internal i32 @_Z8testUdivhh(i32 %a, i32 %b) { | 23 define internal i32 @ShlAmt(i32 %a) { |
24 | 24 ; ASM-LABEL:ShlAmt: |
25 ; ASM-LABEL:_Z8testUdivhh: | 25 ; DIS-LABEL:00000000 <ShlAmt>: |
26 ; DIS-LABEL:00000000 <_Z8testUdivhh>: | 26 ; IASM-LABEL:ShlAmt: |
27 ; IASM-LABEL:_Z8testUdivhh: | |
28 | 27 |
29 entry: | 28 entry: |
| 29 ; ASM-NEXT:.LShlAmt$entry: |
| 30 ; IASM-NEXT:.LShlAmt$entry: |
30 | 31 |
31 ; ASM-NEXT:.L_Z8testUdivhh$entry: | 32 %shl = shl i32 %a, 23 |
32 ; ASM-NEXT: push {lr} | |
33 ; DIS-NEXT: 0: e52de004 | |
34 ; IASM-NEXT:.L_Z8testUdivhh$entry: | |
35 ; IASM-NEXT: .byte 0x4 | |
36 ; IASM-NEXT: .byte 0xe0 | |
37 ; IASM-NEXT: .byte 0x2d | |
38 ; IASM-NEXT: .byte 0xe5 | |
39 | 33 |
40 %b.arg_trunc = trunc i32 %b to i8 | 34 ; ASM-NEXT: lsl r0, r0, #23 |
41 %a.arg_trunc = trunc i32 %a to i8 | 35 ; DIS-NEXT: 0: e1a00b80 |
42 %div3 = udiv i8 %a.arg_trunc, %b.arg_trunc | 36 ; IASM-NEXT: .byte 0x80 |
43 | 37 ; IASM-NEXT: .byte 0xb |
44 ; ASM-NEXT: sub sp, sp, #12 | 38 ; IASM-NEXT: .byte 0xa0 |
45 ; DIS-NEXT: 4: e24dd00c | |
46 ; IASM-NEXT: .byte 0xc | |
47 ; IASM-NEXT: .byte 0xd0 | |
48 ; IASM-NEXT: .byte 0x4d | |
49 ; IASM-NEXT: .byte 0xe2 | |
50 | |
51 ; ASM-NEXT: lsls r2, r1, #24 | |
52 ; DIS-NEXT: 8: e1b02c01 | |
53 ; IASM-NEXT: .byte 0x1 | |
54 ; IASM-NEXT: .byte 0x2c | |
55 ; IASM-NEXT: .byte 0xb0 | |
56 ; IASM-NEXT: .byte 0xe1 | 39 ; IASM-NEXT: .byte 0xe1 |
57 | 40 |
58 %div3.ret_ext = zext i8 %div3 to i32 | 41 ret i32 %shl |
59 ret i32 %div3.ret_ext | |
60 } | 42 } |
61 | 43 |
62 define internal i32 @_Z7testShljj(i32 %a, i32 %b) { | 44 define internal i32 @ShlReg(i32 %a, i32 %b) { |
63 | 45 ; ASM-LABEL:ShlReg: |
64 ; ASM-LABEL:_Z7testShljj: | 46 ; DIS-LABEL:00000010 <ShlReg>: |
65 ; DIS-LABEL:00000030 <_Z7testShljj>: | 47 ; IASM-LABEL:ShlReg: |
66 ; IASM-LABEL:_Z7testShljj: | |
67 | 48 |
68 entry: | 49 entry: |
69 | 50 ; ASM-NEXT:.LShlReg$entry: |
70 ; ASM-NEXT:.L_Z7testShljj$entry: | 51 ; IASM-NEXT:.LShlReg$entry: |
71 ; IASM-NEXT:.L_Z7testShljj$entry: | |
72 | 52 |
73 %shl = shl i32 %a, %b | 53 %shl = shl i32 %a, %b |
74 | 54 |
75 ; ASM-NEXT: lsl r0, r0, r1 | 55 ; ASM-NEXT: lsl r0, r0, r1 |
76 ; DIS-NEXT: 30: e1a00110 | 56 ; DIS-NEXT: 10: e1a00110 |
77 ; IASM-NEXT: .byte 0x10 | 57 ; IASM-NEXT: .byte 0x10 |
78 ; IASM-NEXT: .byte 0x1 | 58 ; IASM-NEXT: .byte 0x1 |
79 ; IASM-NEXT: .byte 0xa0 | 59 ; IASM-NEXT: .byte 0xa0 |
80 ; IASM-NEXT: .byte 0xe1 | 60 ; IASM-NEXT: .byte 0xe1 |
81 | 61 |
82 ret i32 %shl | 62 ret i32 %shl |
83 } | 63 } |
OLD | NEW |