OLD | NEW |
(Empty) | |
| 1 ; Test branching instructions. |
| 2 ; TODO(kschimpf): Get this working. |
| 3 |
| 4 ; Compile using standalone assembler. |
| 5 ; RUN: %p2i --filetype=asm -i %s --target=arm32 --args -Om1 \ |
| 6 ; RUN: | FileCheck %s --check-prefix=ASM |
| 7 |
| 8 ; Show bytes in assembled standalone code. |
| 9 ; RUN: %p2i --filetype=asm -i %s --target=arm32 --assemble --disassemble \ |
| 10 ; RUN: --args -Om1 | FileCheck %s --check-prefix=DIS |
| 11 |
| 12 ; Compile using integrated assembler. |
| 13 ; RUN: %p2i --filetype=iasm -i %s --target=arm32 --args -Om1 \ |
| 14 ; RUN: | FileCheck %s --check-prefix=IASM |
| 15 |
| 16 ; Show bytes in assembled integrated code. |
| 17 ; RUN: %p2i --filetype=iasm -i %s --target=arm32 --assemble --disassemble \ |
| 18 ; RUN: --args -Om1 | FileCheck %s --check-prefix=DIS |
| 19 |
| 20 ; REQUIRES: allow_dump |
| 21 |
| 22 define internal void @simple_uncond_branch() { |
| 23 ; DIS-LABEL: 00000000 <simple_uncond_branch>: |
| 24 ; ASM-LABEL: simple_uncond_branch: |
| 25 ; IASM-LABEL:simple_uncond_branch: |
| 26 |
| 27 ; ASM-NEXT: .Lsimple_uncond_branch$__0: |
| 28 ; IASM-NEXT: .Lsimple_uncond_branch$__0: |
| 29 |
| 30 br label %l2 |
| 31 ; ASM-NEXT: b .Lsimple_uncond_branch$l2 |
| 32 ; IASM-NEXT: b .Lsimple_uncond_branch$l2 |
| 33 ; DIS-NEXT: 0: ea000000 |
| 34 |
| 35 l1: |
| 36 ; ASM-NEXT: .Lsimple_uncond_branch$l1: |
| 37 ; IASM-NEXT: .Lsimple_uncond_branch$l1: |
| 38 |
| 39 br label %l3 |
| 40 ; ASM-NEXT: b .Lsimple_uncond_branch$l3 |
| 41 ; IASM-NEXT: b .Lsimple_uncond_branch$l3 |
| 42 ; DIS-NEXT: 4: ea000000 |
| 43 |
| 44 l2: |
| 45 ; ASM-NEXT: .Lsimple_uncond_branch$l2: |
| 46 ; IASM-NEXT: .Lsimple_uncond_branch$l2: |
| 47 |
| 48 br label %l1 |
| 49 ; ASM-NEXT: b .Lsimple_uncond_branch$l1 |
| 50 ; IASM-NEXT: b .Lsimple_uncond_branch$l1 |
| 51 ; DIS-NEXT: 8: eafffffd |
| 52 |
| 53 l3: |
| 54 ; ASM-NEXT: .Lsimple_uncond_branch$l3: |
| 55 ; IASM-NEXT: .Lsimple_uncond_branch$l3: |
| 56 |
| 57 ret void |
| 58 ; ASM-NEXT: bx lr |
| 59 ; IASM-NEXT: .byte 0x1e |
| 60 ; IASM-NEXT: .byte 0xff |
| 61 ; IASM-NEXT: .byte 0x2f |
| 62 ; IASM-NEXT: .byte 0xe1 |
| 63 |
| 64 } |
OLD | NEW |