[InstCombine] Signed saturation patterns
[llvm-core.git] / test / CodeGen / ARM / GlobalISel / arm-legalize-exts.mir
blob1f673b85068b7992f44a2978d5adc40fe6f72c48
1 # RUN: llc -mtriple arm-- -run-pass=legalizer %s -o - | FileCheck %s
2 # RUN: llc -mtriple thumb-- -mattr=+v6t2 -run-pass=legalizer %s -o - | FileCheck %s
3 --- |
4   define void @test_zext_s16_to_s32() { ret void }
5   define void @test_sext_s8_to_s32() { ret void }
6   define void @test_sext_inreg_s8_to_s32() { ret void }
7   define void @test_anyext_s1_to_s32() { ret void }
9   define void @test_zext_s8_to_s16() { ret void }
10   define void @test_sext_s1_to_s16() { ret void }
12   define void @test_anyext_s1_to_s8() { ret void }
14   define void @test_ext_combine() { ret void }
15 ...
16 ---
17 name:            test_zext_s16_to_s32
18 # CHECK-LABEL: name: test_zext_s16_to_s32
19 legalized:       false
20 # CHECK: legalized: true
21 regBankSelected: false
22 selected:        false
23 tracksRegLiveness: true
24 registers:
25   - { id: 0, class: _ }
26   - { id: 1, class: _ }
27   - { id: 2, class: _ }
28 body:             |
29   bb.0:
30     liveins: $r0
32     %0(p0) = COPY $r0
33     %1(s16) = G_LOAD %0 :: (load 2)
34     %2(s32) = G_ZEXT %1
35     ; G_ZEXT with s16 is legal, so we should find it unchanged in the output
36     ; CHECK: {{%[0-9]+}}:_(s32) = G_ZEXT {{%[0-9]+}}
37     $r0 = COPY %2(s32)
38     BX_RET 14, $noreg, implicit $r0
39 ...
40 ---
41 name:            test_sext_s8_to_s32
42 # CHECK-LABEL: name: test_sext_s8_to_s32
43 legalized:       false
44 # CHECK: legalized: true
45 regBankSelected: false
46 selected:        false
47 tracksRegLiveness: true
48 registers:
49   - { id: 0, class: _ }
50   - { id: 1, class: _ }
51   - { id: 2, class: _ }
52 body:             |
53   bb.0:
54     liveins: $r0
56     %0(p0) = COPY $r0
57     %1(s8) = G_LOAD %0(p0) :: (load 1)
58     %2(s32) = G_SEXT %1
59     ; G_SEXT with s8 is legal, so we should find it unchanged in the output
60     ; CHECK: {{%[0-9]+}}:_(s32) = G_SEXT {{%[0-9]+}}
61     $r0 = COPY %2(s32)
62     BX_RET 14, $noreg, implicit $r0
63 ...
64 ---
65 name:            test_sext_inreg_s8_to_s32
66 # CHECK-LABEL: name: test_sext_inreg_s8_to_s32
67 legalized:       false
68 # CHECK: legalized: true
69 regBankSelected: false
70 selected:        false
71 tracksRegLiveness: true
72 registers:
73   - { id: 0, class: _ }
74   - { id: 1, class: _ }
75   - { id: 2, class: _ }
76 body:             |
77   bb.0:
78     liveins: $r0
80     %0(p0) = COPY $r0
81     %1(s32) = G_LOAD %0(p0) :: (load 4)
82     %2(s32) = G_SEXT_INREG %1, 8
83     ; G_SEXT_INREG should be lowered to a shift pair
84     ; CHECK: [[T1:%[0-9]+]]:_(s32) = G_CONSTANT i32 24
85     ; CHECK: [[T2:%[0-9]+]]:_(s32) = G_SHL {{%[0-9]+}}, [[T1]]
86     ; CHECK: {{%[0-9]+}}:_(s32) = G_ASHR [[T2]], [[T1]]
87     $r0 = COPY %2(s32)
88     BX_RET 14, $noreg, implicit $r0
89 ...
90 ---
91 name:            test_anyext_s1_to_s32
92 # CHECK-LABEL: name: test_anyext_s1_to_s32
93 legalized:       false
94 # CHECK: legalized: true
95 regBankSelected: false
96 selected:        false
97 tracksRegLiveness: true
98 registers:
99   - { id: 0, class: _ }
100   - { id: 1, class: _ }
101   - { id: 2, class: _ }
102 body:             |
103   bb.0:
104     liveins: $r0
106     %0(p0) = COPY $r0
107     %1(s1) = G_LOAD %0(p0) :: (load 1)
108     %2(s32) = G_ANYEXT %1
109     ; G_ANYEXT with s1 is legal, so we should find it unchanged in the output
110     ; CHECK: {{%[0-9]+}}:_(s32) = G_ANYEXT {{%[0-9]+}}
111     $r0 = COPY %2(s32)
112     BX_RET 14, $noreg, implicit $r0
115 name:            test_zext_s8_to_s16
116 # CHECK-LABEL: name: test_zext_s8_to_s16
117 legalized:       false
118 # CHECK: legalized: true
119 regBankSelected: false
120 selected:        false
121 tracksRegLiveness: true
122 registers:
123   - { id: 0, class: _ }
124   - { id: 1, class: _ }
125   - { id: 2, class: _ }
126 body:             |
127   bb.0:
128     liveins: $r0
130     %0(p0) = COPY $r0
131     %1(s8) = G_LOAD %0(p0) :: (load 1)
132     %2(s16) = G_ZEXT %1
133     ; G_ZEXT from s8 to s16 is legal, so we should find it unchanged in the output
134     ; CHECK: {{%[0-9]+}}:_(s16) = G_ZEXT {{%[0-9]+}}(s8)
135     G_STORE %2(s16), %0(p0) :: (store 2)
136     BX_RET 14, $noreg
139 name:            test_sext_s1_to_s16
140 # CHECK-LABEL: name: test_sext_s1_to_s16
141 legalized:       false
142 # CHECK: legalized: true
143 regBankSelected: false
144 selected:        false
145 tracksRegLiveness: true
146 registers:
147   - { id: 0, class: _ }
148   - { id: 1, class: _ }
149   - { id: 2, class: _ }
150 body:             |
151   bb.0:
152     liveins: $r0
154     %0(p0) = COPY $r0
155     %1(s1) = G_LOAD %0(p0) :: (load 1)
156     %2(s16) = G_SEXT %1(s1)
157     ; G_SEXT from s1 to s16 is legal, so we should find it unchanged in the output
158     ; CHECK: {{%[0-9]+}}:_(s16) = G_SEXT {{%[0-9]+}}(s1)
159     G_STORE %2(s16), %0(p0) :: (store 2)
160     BX_RET 14, $noreg
163 name:            test_anyext_s1_to_s8
164 # CHECK-LABEL: name: test_anyext_s1_to_s8
165 legalized:       false
166 # CHECK: legalized: true
167 regBankSelected: false
168 selected:        false
169 tracksRegLiveness: true
170 registers:
171   - { id: 0, class: _ }
172   - { id: 1, class: _ }
173   - { id: 2, class: _ }
174 body:             |
175   bb.0:
176     liveins: $r0
178     %0(p0) = COPY $r0
179     %1(s1) = G_LOAD %0(p0) :: (load 1)
180     %2(s8) = G_ANYEXT %1
181     ; G_ANYEXT from s1 to s8 is legal, so we should find it unchanged in the output
182     ; CHECK: {{%[0-9]+}}:_(s8) = G_ANYEXT {{%[0-9]+}}(s1)
183     G_STORE %2(s8), %0(p0) :: (store 1)
184     BX_RET 14, $noreg
187 name:            test_ext_combine
188 # CHECK-LABEL: name: test_ext_combine
189 legalized:       false
190 # CHECK: legalized: true
191 regBankSelected: false
192 selected:        false
193 tracksRegLiveness: true
194 registers:
195   - { id: 0, class: _ }
196   - { id: 1, class: _ }
197   - { id: 2, class: _ }
198   - { id: 3, class: _ }
199   - { id: 4, class: _ }
200   - { id: 5, class: _ }
201 body:             |
202   bb.0:
203     liveins: $r0
205     %0(p0) = COPY $r0
206     %1(s8) = G_LOAD %0(p0) :: (load 1)
207     ; CHECK: [[V8:%[0-9]+]]:_(s8) = G_LOAD
209     %2(s16) = G_ZEXT %1
210     %3(s16) = G_SEXT %1
212     %4(s16) = G_OR %2, %3
213     ; G_OR is going to widen to 32 bits and the extensions/truncs should combine
214     ; with the already existing ones
215     ; CHECK: [[ZEXT:%[0-9]+]]:_(s32) = G_ZEXT [[V8]](s8)
216     ; CHECK: [[SEXT:%[0-9]+]]:_(s32) = G_SEXT [[V8]](s8)
217     ; CHECK: [[OR:%[0-9]+]]:_(s32) = G_OR [[ZEXT]], [[SEXT]]
218     ; CHECK: [[COPY:%[0-9]+]]:_(s32) = COPY [[OR]]
219     ; CHECK: [[BITS:%[0-9]+]]:_(s32) = G_CONSTANT i32 16
220     ; CHECK: [[SHL:%[0-9]+]]:_(s32) = G_SHL [[COPY]], [[BITS]](s32)
221     ; CHECK: [[ASHR:%[0-9]+]]:_(s32) = G_ASHR [[SHL]], [[BITS]](s32)
222     ; CHECK: $r0 = COPY [[ASHR]]
224     %5(s32) = G_SEXT %4(s16)
225     $r0 = COPY %5
227     BX_RET 14, $noreg, implicit $r0