Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / llvm / test / CodeGen / Mips / GlobalISel / instruction-select / store_4_unaligned_r6.mir
blob7bcd1ebb9253c93ef6e995de10e544d1493cd1f7
1 # NOTE: Assertions have been autogenerated by utils/update_mir_test_checks.py
2 # RUN: llc -O0 -mtriple=mipsel-linux-gnu -run-pass=instruction-select -mcpu=mips32r6 -verify-machineinstrs %s -o - | FileCheck %s -check-prefixes=MIPS32R6
3 --- |
5   @float_align1 = common global float 0.000000e+00, align 1
6   @float_align8 = common global float 0.000000e+00, align 8
7   @i32_align2 = common global i32 0, align 2
9   define void @store_float_align1(float %a) #0 {
10   entry:
11     store float %a, ptr @float_align1, align 1
12     ret void
13   }
15   define void @store_float_align8(float %a) #0 {
16   entry:
17     store float %a, ptr @float_align8, align 8
18     ret void
19   }
21   define void @store_i32_align2(i32 signext %a) #0 {
22   entry:
23     store i32 %a, ptr @i32_align2, align 2
24     ret void
25   }
27 ...
28 ---
29 name:            store_float_align1
30 alignment:       4
31 legalized:       true
32 regBankSelected: true
33 tracksRegLiveness: true
34 body:             |
35   bb.1.entry:
36     liveins: $f12
38     ; MIPS32R6-LABEL: name: store_float_align1
39     ; MIPS32R6: liveins: $f12
40     ; MIPS32R6: [[COPY:%[0-9]+]]:fgr32 = COPY $f12
41     ; MIPS32R6: [[LUi:%[0-9]+]]:gpr32 = LUi target-flags(mips-abs-hi) @float_align1
42     ; MIPS32R6: [[ADDiu:%[0-9]+]]:gpr32 = ADDiu [[LUi]], target-flags(mips-abs-lo) @float_align1
43     ; MIPS32R6: SWC1 [[COPY]], [[ADDiu]], 0 :: (store (s32) into @float_align1, align 1)
44     ; MIPS32R6: RetRA
45     %0:fprb(s32) = COPY $f12
46     %1:gprb(p0) = G_GLOBAL_VALUE @float_align1
47     G_STORE %0(s32), %1(p0) :: (store (s32) into @float_align1, align 1)
48     RetRA
50 ...
51 ---
52 name:            store_float_align8
53 alignment:       4
54 legalized:       true
55 regBankSelected: true
56 tracksRegLiveness: true
57 body:             |
58   bb.1.entry:
59     liveins: $f12
61     ; MIPS32R6-LABEL: name: store_float_align8
62     ; MIPS32R6: liveins: $f12
63     ; MIPS32R6: [[COPY:%[0-9]+]]:fgr32 = COPY $f12
64     ; MIPS32R6: [[LUi:%[0-9]+]]:gpr32 = LUi target-flags(mips-abs-hi) @float_align8
65     ; MIPS32R6: [[ADDiu:%[0-9]+]]:gpr32 = ADDiu [[LUi]], target-flags(mips-abs-lo) @float_align8
66     ; MIPS32R6: SWC1 [[COPY]], [[ADDiu]], 0 :: (store (s32) into @float_align8, align 8)
67     ; MIPS32R6: RetRA
68     %0:fprb(s32) = COPY $f12
69     %1:gprb(p0) = G_GLOBAL_VALUE @float_align8
70     G_STORE %0(s32), %1(p0) :: (store (s32) into @float_align8, align 8)
71     RetRA
73 ...
74 ---
75 name:            store_i32_align2
76 alignment:       4
77 legalized:       true
78 regBankSelected: true
79 tracksRegLiveness: true
80 body:             |
81   bb.1.entry:
82     liveins: $a0
84     ; MIPS32R6-LABEL: name: store_i32_align2
85     ; MIPS32R6: liveins: $a0
86     ; MIPS32R6: [[COPY:%[0-9]+]]:gpr32 = COPY $a0
87     ; MIPS32R6: [[LUi:%[0-9]+]]:gpr32 = LUi target-flags(mips-abs-hi) @i32_align2
88     ; MIPS32R6: [[ADDiu:%[0-9]+]]:gpr32 = ADDiu [[LUi]], target-flags(mips-abs-lo) @i32_align2
89     ; MIPS32R6: SW [[COPY]], [[ADDiu]], 0 :: (store (s32) into @i32_align2, align 2)
90     ; MIPS32R6: RetRA
91     %0:gprb(s32) = COPY $a0
92     %1:gprb(p0) = G_GLOBAL_VALUE @i32_align2
93     G_STORE %0(s32), %1(p0) :: (store (s32) into @i32_align2, align 2)
94     RetRA
96 ...