1 ; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py
2 ; RUN: llc -O0 -mtriple=mipsel-linux-gnu -global-isel -verify-machineinstrs %s -o -| FileCheck %s -check-prefixes=MIPS32
4 define i1 @and_i1(i1 %a, i1 %b) {
5 ; MIPS32-LABEL: and_i1:
6 ; MIPS32: # %bb.0: # %entry
7 ; MIPS32-NEXT: and $2, $5, $4
15 define i8 @and_i8(i8 %a, i8 %b) {
16 ; MIPS32-LABEL: and_i8:
17 ; MIPS32: # %bb.0: # %entry
18 ; MIPS32-NEXT: and $2, $5, $4
26 define i16 @and_i16(i16 %a, i16 %b) {
27 ; MIPS32-LABEL: and_i16:
28 ; MIPS32: # %bb.0: # %entry
29 ; MIPS32-NEXT: and $2, $5, $4
37 define i32 @and_i32(i32 %a, i32 %b) {
38 ; MIPS32-LABEL: and_i32:
39 ; MIPS32: # %bb.0: # %entry
40 ; MIPS32-NEXT: and $2, $5, $4
48 define i64 @and_i64(i64 %a, i64 %b) {
49 ; MIPS32-LABEL: and_i64:
50 ; MIPS32: # %bb.0: # %entry
51 ; MIPS32-NEXT: and $2, $6, $4
52 ; MIPS32-NEXT: and $3, $7, $5
60 define i1 @or_i1(i1 %a, i1 %b) {
61 ; MIPS32-LABEL: or_i1:
62 ; MIPS32: # %bb.0: # %entry
63 ; MIPS32-NEXT: or $2, $5, $4
71 define i8 @or_i8(i8 %a, i8 %b) {
72 ; MIPS32-LABEL: or_i8:
73 ; MIPS32: # %bb.0: # %entry
74 ; MIPS32-NEXT: or $2, $5, $4
82 define i16 @or_i16(i16 %a, i16 %b) {
83 ; MIPS32-LABEL: or_i16:
84 ; MIPS32: # %bb.0: # %entry
85 ; MIPS32-NEXT: or $2, $5, $4
93 define i32 @or_i32(i32 %a, i32 %b) {
94 ; MIPS32-LABEL: or_i32:
95 ; MIPS32: # %bb.0: # %entry
96 ; MIPS32-NEXT: or $2, $5, $4
104 define i64 @or_i64(i64 %a, i64 %b) {
105 ; MIPS32-LABEL: or_i64:
106 ; MIPS32: # %bb.0: # %entry
107 ; MIPS32-NEXT: or $2, $6, $4
108 ; MIPS32-NEXT: or $3, $7, $5
109 ; MIPS32-NEXT: jr $ra
116 define i1 @xor_i1(i1 %a, i1 %b) {
117 ; MIPS32-LABEL: xor_i1:
118 ; MIPS32: # %bb.0: # %entry
119 ; MIPS32-NEXT: xor $2, $5, $4
120 ; MIPS32-NEXT: jr $ra
127 define i8 @xor_i8(i8 %a, i8 %b) {
128 ; MIPS32-LABEL: xor_i8:
129 ; MIPS32: # %bb.0: # %entry
130 ; MIPS32-NEXT: xor $2, $5, $4
131 ; MIPS32-NEXT: jr $ra
138 define i16 @xor_i16(i16 %a, i16 %b) {
139 ; MIPS32-LABEL: xor_i16:
140 ; MIPS32: # %bb.0: # %entry
141 ; MIPS32-NEXT: xor $2, $5, $4
142 ; MIPS32-NEXT: jr $ra
145 %xor = xor i16 %b, %a
149 define i32 @xor_i32(i32 %a, i32 %b) {
150 ; MIPS32-LABEL: xor_i32:
151 ; MIPS32: # %bb.0: # %entry
152 ; MIPS32-NEXT: xor $2, $5, $4
153 ; MIPS32-NEXT: jr $ra
156 %xor = xor i32 %b, %a
160 define i64 @xor_i64(i64 %a, i64 %b) {
161 ; MIPS32-LABEL: xor_i64:
162 ; MIPS32: # %bb.0: # %entry
163 ; MIPS32-NEXT: xor $2, $6, $4
164 ; MIPS32-NEXT: xor $3, $7, $5
165 ; MIPS32-NEXT: jr $ra
168 %xor = xor i64 %b, %a
172 define i32 @shl(i32 %a) {
174 ; MIPS32: # %bb.0: # %entry
175 ; MIPS32-NEXT: sll $2, $4, 1
176 ; MIPS32-NEXT: jr $ra
183 define i32 @ashr(i32 %a) {
184 ; MIPS32-LABEL: ashr:
185 ; MIPS32: # %bb.0: # %entry
186 ; MIPS32-NEXT: sra $2, $4, 1
187 ; MIPS32-NEXT: jr $ra
190 %shr = ashr i32 %a, 1
194 define i32 @lshr(i32 %a) {
195 ; MIPS32-LABEL: lshr:
196 ; MIPS32: # %bb.0: # %entry
197 ; MIPS32-NEXT: srl $2, $4, 1
198 ; MIPS32-NEXT: jr $ra
201 %shr = lshr i32 %a, 1
205 define i32 @shlv(i32 %a, i32 %b) {
206 ; MIPS32-LABEL: shlv:
207 ; MIPS32: # %bb.0: # %entry
208 ; MIPS32-NEXT: sllv $2, $4, $5
209 ; MIPS32-NEXT: jr $ra
212 %shl = shl i32 %a, %b
216 define i32 @ashrv(i32 %a, i32 %b) {
217 ; MIPS32-LABEL: ashrv:
218 ; MIPS32: # %bb.0: # %entry
219 ; MIPS32-NEXT: srav $2, $4, $5
220 ; MIPS32-NEXT: jr $ra
223 %shr = ashr i32 %a, %b
227 define i32 @lshrv(i32 %a, i32 %b) {
228 ; MIPS32-LABEL: lshrv:
229 ; MIPS32: # %bb.0: # %entry
230 ; MIPS32-NEXT: srlv $2, $4, $5
231 ; MIPS32-NEXT: jr $ra
234 %shr = lshr i32 %a, %b
238 define i16 @shl_i16(i16 %a) {
239 ; MIPS32-LABEL: shl_i16:
240 ; MIPS32: # %bb.0: # %entry
241 ; MIPS32-NEXT: ori $1, $zero, 2
242 ; MIPS32-NEXT: ori $2, $zero, 65535
243 ; MIPS32-NEXT: and $1, $1, $2
244 ; MIPS32-NEXT: sllv $2, $4, $1
245 ; MIPS32-NEXT: jr $ra
252 define i8 @ashr_i8(i8 %a) {
253 ; MIPS32-LABEL: ashr_i8:
254 ; MIPS32: # %bb.0: # %entry
255 ; MIPS32-NEXT: ori $1, $zero, 2
256 ; MIPS32-NEXT: ori $2, $zero, 255
257 ; MIPS32-NEXT: and $1, $1, $2
258 ; MIPS32-NEXT: sll $2, $4, 24
259 ; MIPS32-NEXT: sra $2, $2, 24
260 ; MIPS32-NEXT: srav $2, $2, $1
261 ; MIPS32-NEXT: jr $ra
268 define i16 @lshr_i16(i16 %a) {
269 ; MIPS32-LABEL: lshr_i16:
270 ; MIPS32: # %bb.0: # %entry
271 ; MIPS32-NEXT: ori $1, $zero, 2
272 ; MIPS32-NEXT: ori $2, $zero, 65535
273 ; MIPS32-NEXT: and $1, $1, $2
274 ; MIPS32-NEXT: and $2, $4, $2
275 ; MIPS32-NEXT: srlv $2, $2, $1
276 ; MIPS32-NEXT: jr $ra
283 define i64 @shl_i64(i64 %a, i64 %b) {
284 ; MIPS32-LABEL: shl_i64:
285 ; MIPS32: # %bb.0: # %entry
286 ; MIPS32-NEXT: addiu $sp, $sp, -8
287 ; MIPS32-NEXT: .cfi_def_cfa_offset 8
288 ; MIPS32-NEXT: ori $1, $zero, 32
289 ; MIPS32-NEXT: subu $2, $6, $1
290 ; MIPS32-NEXT: subu $3, $1, $6
291 ; MIPS32-NEXT: ori $8, $zero, 0
292 ; MIPS32-NEXT: sltu $1, $6, $1
293 ; MIPS32-NEXT: sltiu $9, $6, 1
294 ; MIPS32-NEXT: sllv $10, $4, $6
295 ; MIPS32-NEXT: srlv $3, $4, $3
296 ; MIPS32-NEXT: sllv $6, $5, $6
297 ; MIPS32-NEXT: or $3, $3, $6
298 ; MIPS32-NEXT: sllv $2, $4, $2
299 ; MIPS32-NEXT: ori $4, $zero, 1
300 ; MIPS32-NEXT: and $6, $1, $4
301 ; MIPS32-NEXT: movn $8, $10, $6
302 ; MIPS32-NEXT: and $1, $1, $4
303 ; MIPS32-NEXT: movn $2, $3, $1
304 ; MIPS32-NEXT: and $1, $9, $4
305 ; MIPS32-NEXT: movn $2, $5, $1
306 ; MIPS32-NEXT: sw $2, 4($sp) # 4-byte Folded Spill
307 ; MIPS32-NEXT: move $2, $8
308 ; MIPS32-NEXT: lw $3, 4($sp) # 4-byte Folded Reload
309 ; MIPS32-NEXT: addiu $sp, $sp, 8
310 ; MIPS32-NEXT: jr $ra
313 %shl = shl i64 %a, %b
317 define i64 @ashl_i64(i64 %a, i64 %b) {
318 ; MIPS32-LABEL: ashl_i64:
319 ; MIPS32: # %bb.0: # %entry
320 ; MIPS32-NEXT: ori $1, $zero, 32
321 ; MIPS32-NEXT: subu $2, $6, $1
322 ; MIPS32-NEXT: subu $3, $1, $6
323 ; MIPS32-NEXT: sltu $1, $6, $1
324 ; MIPS32-NEXT: sltiu $8, $6, 1
325 ; MIPS32-NEXT: srav $9, $5, $6
326 ; MIPS32-NEXT: srlv $6, $4, $6
327 ; MIPS32-NEXT: sllv $3, $5, $3
328 ; MIPS32-NEXT: or $3, $6, $3
329 ; MIPS32-NEXT: sra $6, $5, 31
330 ; MIPS32-NEXT: srav $2, $5, $2
331 ; MIPS32-NEXT: ori $5, $zero, 1
332 ; MIPS32-NEXT: and $10, $1, $5
333 ; MIPS32-NEXT: movn $2, $3, $10
334 ; MIPS32-NEXT: and $3, $8, $5
335 ; MIPS32-NEXT: movn $2, $4, $3
336 ; MIPS32-NEXT: and $1, $1, $5
337 ; MIPS32-NEXT: movn $6, $9, $1
338 ; MIPS32-NEXT: move $3, $6
339 ; MIPS32-NEXT: jr $ra
342 %shr = ashr i64 %a, %b
346 define i64 @lshr_i64(i64 %a, i64 %b) {
347 ; MIPS32-LABEL: lshr_i64:
348 ; MIPS32: # %bb.0: # %entry
349 ; MIPS32-NEXT: ori $1, $zero, 32
350 ; MIPS32-NEXT: subu $2, $6, $1
351 ; MIPS32-NEXT: subu $3, $1, $6
352 ; MIPS32-NEXT: ori $8, $zero, 0
353 ; MIPS32-NEXT: sltu $1, $6, $1
354 ; MIPS32-NEXT: sltiu $9, $6, 1
355 ; MIPS32-NEXT: srlv $10, $5, $6
356 ; MIPS32-NEXT: srlv $6, $4, $6
357 ; MIPS32-NEXT: sllv $3, $5, $3
358 ; MIPS32-NEXT: or $3, $6, $3
359 ; MIPS32-NEXT: srlv $2, $5, $2
360 ; MIPS32-NEXT: ori $5, $zero, 1
361 ; MIPS32-NEXT: and $6, $1, $5
362 ; MIPS32-NEXT: movn $2, $3, $6
363 ; MIPS32-NEXT: and $3, $9, $5
364 ; MIPS32-NEXT: movn $2, $4, $3
365 ; MIPS32-NEXT: and $1, $1, $5
366 ; MIPS32-NEXT: movn $8, $10, $1
367 ; MIPS32-NEXT: move $3, $8
368 ; MIPS32-NEXT: jr $ra
371 %shr = lshr i64 %a, %b