[ARM] Cortex-M4 schedule additions
[llvm-complete.git] / test / CodeGen / ARM / ifcvt-diamond-unanalyzable-common.mir
blob8c179958b013a7f53726d7d05e68cfb931ee6b21
1 # RUN: llc %s -o - -run-pass=if-converter -verify-machineinstrs | FileCheck %s
2 # Make sure we correctly if-convert blocks containing an INLINEASM_BR.
3 # CHECK: t2CMPri killed renamable $r2, 34
4 # CHECK-NEXT: $r0 = t2MOVi 2, 1, $cpsr, $noreg
5 # CHECK-NEXT: $r0 = t2MOVi 3, 0, killed $cpsr, $noreg, implicit killed $r0
6 # CHECK-NEXT: tBL 14, $noreg, @fn2
7 # CHECK-NEXT: INLINEASM_BR &"", 9, 13, 0, 13, blockaddress(@fn1, %ir-block.l_yes)
8 # CHECK-NEXT: t2B %bb.1, 14, $noreg
9 --- |
10   target triple = "thumbv7-unknown-linux-gnueabi"
11   
12   define dso_local void @fn1() {
13   l_yes:
14     ret void
15   }
16   
17   declare dso_local i32 @fn2(...)
18 ...
19 ---
20 name:            fn1
21 alignment:       2
22 tracksRegLiveness: true
23 body:             |
24   bb.0:
25     successors: %bb.1(0x40000000), %bb.2(0x40000000)
26     liveins: $r0, $r1, $r2, $r4, $lr
27   
28     $sp = frame-setup t2STMDB_UPD $sp, 14, $noreg, killed $r4, killed $lr
29     t2CMPri killed renamable $r2, 34, 14, $noreg, implicit-def $cpsr
30     t2Bcc %bb.2, 1, killed $cpsr
31   
32   bb.1:
33     successors: %bb.3(0x40000000), %bb.4(0x40000000)
34     liveins: $r1
35   
36     $r0 = t2MOVi 3, 14, $noreg, $noreg
37     tBL 14, $noreg, @fn2, csr_aapcs, implicit-def dead $lr, implicit $sp, implicit $r0, implicit $r1, implicit-def $sp, implicit-def dead $r0
38     INLINEASM_BR &"", 9, 13, 0, 13, blockaddress(@fn1, %ir-block.l_yes)
39     t2B %bb.3, 14, $noreg
40   
41   bb.2:
42     successors: %bb.3(0x40000000), %bb.4(0x40000000)
43     liveins: $r1
44   
45     $r0 = t2MOVi 2, 14, $noreg, $noreg
46     tBL 14, $noreg, @fn2, csr_aapcs, implicit-def dead $lr, implicit $sp, implicit $r0, implicit $r1, implicit-def $sp, implicit-def dead $r0
47     INLINEASM_BR &"", 9, 13, 0, 13, blockaddress(@fn1, %ir-block.l_yes)
48     t2B %bb.3, 14, $noreg
49   
50   bb.3:
51     INLINEASM &"", 1
52     $sp = t2LDMIA_RET $sp, 14, $noreg, def $r4, def $pc
53   
54   bb.4.l_yes (address-taken):
55     $sp = t2LDMIA_RET $sp, 14, $noreg, def $r4, def $pc
57 ...