| OLD | NEW |
| 1 ; Show that we know how to translate mul. | 1 ; Show that we know how to translate mul. |
| 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 |
| (...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 66 ; IASM-NEXT:.LMulTwoI64Regs$__0: | 66 ; IASM-NEXT:.LMulTwoI64Regs$__0: |
| 67 ; IASM-NEXT: .byte 0x90 | 67 ; IASM-NEXT: .byte 0x90 |
| 68 ; IASM-NEXT: .byte 0x3 | 68 ; IASM-NEXT: .byte 0x3 |
| 69 ; IASM-NEXT: .byte 0x3 | 69 ; IASM-NEXT: .byte 0x3 |
| 70 ; IASM-NEXT: .byte 0xe0 | 70 ; IASM-NEXT: .byte 0xe0 |
| 71 | 71 |
| 72 ; IASM-NEXT: .byte 0x92 | 72 ; IASM-NEXT: .byte 0x92 |
| 73 ; IASM-NEXT: .byte 0x31 | 73 ; IASM-NEXT: .byte 0x31 |
| 74 ; IASM-NEXT: .byte 0x21 | 74 ; IASM-NEXT: .byte 0x21 |
| 75 ; IASM-NEXT: .byte 0xe0 | 75 ; IASM-NEXT: .byte 0xe0 |
| 76 ; IASM-NEXT: umull r0, r2, r0, r2 | 76 |
| 77 ; IASM-NEXT: .byte 0x90 |
| 78 ; IASM-NEXT: .byte 0x2 |
| 79 ; IASM-NEXT: .byte 0x82 |
| 80 ; IASM-NEXT: .byte 0xe0 |
| 81 |
| 77 ; IASM-NEXT: .byte 0x1 | 82 ; IASM-NEXT: .byte 0x1 |
| 78 ; IASM-NEXT: .byte 0x20 | 83 ; IASM-NEXT: .byte 0x20 |
| 79 ; IASM-NEXT: .byte 0x82 | 84 ; IASM-NEXT: .byte 0x82 |
| 80 ; IASM-NEXT: .byte 0xe0 | 85 ; IASM-NEXT: .byte 0xe0 |
| 81 | 86 |
| 82 ; IASM-NEXT: .byte 0x2 | 87 ; IASM-NEXT: .byte 0x2 |
| 83 ; IASM-NEXT: .byte 0x10 | 88 ; IASM-NEXT: .byte 0x10 |
| 84 ; IASM-NEXT: .byte 0xa0 | 89 ; IASM-NEXT: .byte 0xa0 |
| 85 ; IASM-NEXT: .byte 0xe1 | 90 ; IASM-NEXT: .byte 0xe1 |
| 86 | 91 |
| 87 ; IASM-NEXT: .byte 0x1e | 92 ; IASM-NEXT: .byte 0x1e |
| 88 ; IASM-NEXT: .byte 0xff | 93 ; IASM-NEXT: .byte 0xff |
| 89 ; IASM-NEXT: .byte 0x2f | 94 ; IASM-NEXT: .byte 0x2f |
| 90 ; IASM-NEXT: .byte 0xe1 | 95 ; IASM-NEXT: .byte 0xe1 |
| OLD | NEW |