Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / llvm / test / CodeGen / ARM / vldm-liveness.mir
blobdb88735719a9ac725cf19e1593de310b4c5e7fa1
1 # NOTE: Assertions have been autogenerated by utils/update_mir_test_checks.py
2 # RUN: llc -run-pass arm-ldst-opt -verify-machineinstrs %s -o - | FileCheck %s
3 # ARM load store optimizer was dealing with a sequence like:
4 #     s1 = VLDRS [r0, 1], implicit-def Q0
5 #     s3 = VLDRS [r0, 2], implicit killed Q0, implicit-def Q0
6 #     s0 = VLDRS [r0, 0], implicit killed Q0, implicit-def Q0
7 #     s2 = VLDRS [r0, 4], implicit killed Q0, implicit-def Q0
9 # It decided to combine the {s0, s1} loads into a single instruction in the
10 # third position. However, this leaves the instruction defining s3 with a stray
11 # imp-use of Q0, which is undefined.
13 # The verifier catches this, so this test just makes sure that appropriate
14 # liveness flags are added.
15 --- |
16   target triple = "thumbv7-apple-ios"
17   define arm_aapcs_vfpcc <4 x float> @foo(ptr %ptr) {
18     ret <4 x float> undef
19   }
20 ...
21 ---
22 name:            foo
23 alignment:       2
24 liveins:
25   - { reg: '$r0' }
26 body:             |
27   bb.0 (%ir-block.0):
28     liveins: $r0
30     ; CHECK-LABEL: name: foo
31     ; CHECK: $s3 = VLDRS $r0, 2, 14 /* CC::al */, $noreg, implicit killed undef $q0, implicit-def $q0 :: (load (s32))
32     ; CHECK: VLDMSIA $r0, 14 /* CC::al */, $noreg, def $s0, def $s1, implicit-def $noreg :: (load (s32))
33     ; CHECK: $s2 = VLDRS killed $r0, 4, 14 /* CC::al */, $noreg, implicit killed $q0, implicit-def $q0 :: (load (s32))
34     ; CHECK: tBX_RET 14 /* CC::al */, $noreg, implicit $q0
35     $s1 = VLDRS $r0, 1, 14, $noreg, implicit-def $q0 :: (load (s32))
36     $s3 = VLDRS $r0, 2, 14, $noreg, implicit killed $q0, implicit-def $q0 :: (load (s32))
38     $s0 = VLDRS $r0, 0, 14, $noreg, implicit killed $q0, implicit-def $q0 :: (load (s32))
40     $s2 = VLDRS killed $r0, 4, 14, $noreg, implicit killed $q0, implicit-def $q0 :: (load (s32))
42     tBX_RET 14, $noreg, implicit $q0
43 ...