Revert " [LoongArch][ISel] Check the number of sign bits in `PatGprGpr_32` (#107432)"
[llvm-project.git] / llvm / test / CodeGen / AArch64 / GlobalISel / opt-fold-compare.mir
blob2939c4de156665b63fdfa85103e7964f9653d413
1 # NOTE: Assertions have been autogenerated by utils/update_mir_test_checks.py
2 # RUN: llc -mtriple aarch64-unknown-unknown -run-pass=instruction-select -global-isel-abort=1 -verify-machineinstrs %s -o - | FileCheck %s
4 # Verify folding operations into G_ICMP.
6 # E.g cmn/adds folding:
8 # x = G_SUB 0, y
9 # G_ICMP intpred(something_safe) z, x
11 # Folds to:
12 # adds z, y
14 # Where "something_safe" is ne or eq.
16 # ands/tst folding:
18 # z = G_AND x, y
19 # G_ICMP z, 0
21 # Folds to:
23 # tst x, y
25 # When we have signed comparisons.
27 # Tests whose names start with cmn_ should use ADDS for the G_ICMP. Tests whose
28 # names start with no_cmn should use SUBS. Similarly, tests whose names start
29 # with TST should use ANDS for the G_ICMP.
32 ...
33 ---
34 name:            cmn_s32_rhs
35 alignment:       4
36 legalized:       true
37 regBankSelected: true
38 tracksRegLiveness: true
39 body:             |
40   bb.0:
41     liveins: $w0, $w1
43     ; CHECK-LABEL: name: cmn_s32_rhs
44     ; CHECK: liveins: $w0, $w1
45     ; CHECK: [[COPY:%[0-9]+]]:gpr32 = COPY $w0
46     ; CHECK: [[COPY1:%[0-9]+]]:gpr32 = COPY $w1
47     ; CHECK: [[COPY2:%[0-9]+]]:gpr32 = COPY $wzr
48     ; CHECK: [[ADDSWrr:%[0-9]+]]:gpr32 = ADDSWrr [[COPY]], [[COPY1]], implicit-def $nzcv
49     ; CHECK: [[CSINCWr:%[0-9]+]]:gpr32 = CSINCWr [[COPY2]], $wzr, 0, implicit $nzcv
50     ; CHECK: $w0 = COPY [[CSINCWr]]
51     ; CHECK: RET_ReallyLR implicit $w0
52     %0:gpr(s32) = COPY $w0
53     %1:gpr(s32) = COPY $w1
54     %2:gpr(s32) = G_CONSTANT i32 0
55     %6:gpr(s32) = G_CONSTANT i32 1
56     %3:gpr(s32) = G_SUB %2, %1
57     %7:gpr(s32) = G_ICMP intpred(ne), %0(s32), %3
58     %5:gpr(s32) = G_SELECT %7, %6, %2
59     $w0 = COPY %5(s32)
60     RET_ReallyLR implicit $w0
62 ...
63 ---
64 name:            cmn_s32_lhs
65 alignment:       4
66 legalized:       true
67 regBankSelected: true
68 tracksRegLiveness: true
69 body:             |
70   bb.0:
71     liveins: $w0, $w1
73     ; CHECK-LABEL: name: cmn_s32_lhs
74     ; CHECK: liveins: $w0, $w1
75     ; CHECK: [[COPY:%[0-9]+]]:gpr32 = COPY $w0
76     ; CHECK: [[COPY1:%[0-9]+]]:gpr32 = COPY $w1
77     ; CHECK: [[COPY2:%[0-9]+]]:gpr32 = COPY $wzr
78     ; CHECK: [[ADDSWrr:%[0-9]+]]:gpr32 = ADDSWrr [[COPY]], [[COPY1]], implicit-def $nzcv
79     ; CHECK: [[CSINCWr:%[0-9]+]]:gpr32 = CSINCWr [[COPY2]], $wzr, 0, implicit $nzcv
80     ; CHECK: $w0 = COPY [[CSINCWr]]
81     ; CHECK: RET_ReallyLR implicit $w0
82     %0:gpr(s32) = COPY $w0
83     %1:gpr(s32) = COPY $w1
84     %2:gpr(s32) = G_CONSTANT i32 0
85     %6:gpr(s32) = G_CONSTANT i32 1
86     %3:gpr(s32) = G_SUB %2, %0
87     %7:gpr(s32) = G_ICMP intpred(ne), %3(s32), %1
88     %5:gpr(s32) = G_SELECT %7, %6, %2
89     $w0 = COPY %5(s32)
90     RET_ReallyLR implicit $w0
92 ...
93 ---
94 name:            no_cmn_s32_rhs
95 alignment:       4
96 legalized:       true
97 regBankSelected: true
98 tracksRegLiveness: true
99 body:             |
100   bb.0:
101     liveins: $w0, $w1
103     ; CHECK-LABEL: name: no_cmn_s32_rhs
104     ; CHECK: liveins: $w0, $w1
105     ; CHECK: [[COPY:%[0-9]+]]:gpr32 = COPY $w0
106     ; CHECK: [[COPY1:%[0-9]+]]:gpr32 = COPY $w1
107     ; CHECK: [[COPY2:%[0-9]+]]:gpr32 = COPY $wzr
108     ; CHECK: [[SUBSWrr:%[0-9]+]]:gpr32 = SUBSWrr [[COPY2]], [[COPY1]], implicit-def dead $nzcv
109     ; CHECK: [[SUBSWrr1:%[0-9]+]]:gpr32 = SUBSWrr [[COPY]], [[SUBSWrr]], implicit-def $nzcv
110     ; CHECK: [[CSINCWr:%[0-9]+]]:gpr32 = CSINCWr [[COPY2]], $wzr, 10, implicit $nzcv
111     ; CHECK: $w0 = COPY [[CSINCWr]]
112     ; CHECK: RET_ReallyLR implicit $w0
113     %0:gpr(s32) = COPY $w0
114     %1:gpr(s32) = COPY $w1
115     %2:gpr(s32) = G_CONSTANT i32 0
116     %6:gpr(s32) = G_CONSTANT i32 1
117     %3:gpr(s32) = G_SUB %2, %1
118     %7:gpr(s32) = G_ICMP intpred(slt), %0(s32), %3
119     %5:gpr(s32) = G_SELECT %7, %6, %2
120     $w0 = COPY %5(s32)
121     RET_ReallyLR implicit $w0
125 name:            no_cmn_s32_lhs
126 alignment:       4
127 legalized:       true
128 regBankSelected: true
129 tracksRegLiveness: true
130 body:             |
131   bb.0:
132     liveins: $w0, $w1
134     ; CHECK-LABEL: name: no_cmn_s32_lhs
135     ; CHECK: liveins: $w0, $w1
136     ; CHECK: [[COPY:%[0-9]+]]:gpr32 = COPY $w0
137     ; CHECK: [[COPY1:%[0-9]+]]:gpr32 = COPY $w1
138     ; CHECK: [[COPY2:%[0-9]+]]:gpr32 = COPY $wzr
139     ; CHECK: [[SUBSWrr:%[0-9]+]]:gpr32 = SUBSWrr [[COPY2]], [[COPY]], implicit-def dead $nzcv
140     ; CHECK: [[SUBSWrr1:%[0-9]+]]:gpr32 = SUBSWrr [[SUBSWrr]], [[COPY1]], implicit-def $nzcv
141     ; CHECK: [[CSINCWr:%[0-9]+]]:gpr32 = CSINCWr [[COPY2]], $wzr, 10, implicit $nzcv
142     ; CHECK: $w0 = COPY [[CSINCWr]]
143     ; CHECK: RET_ReallyLR implicit $w0
144     %0:gpr(s32) = COPY $w0
145     %1:gpr(s32) = COPY $w1
146     %2:gpr(s32) = G_CONSTANT i32 0
147     %6:gpr(s32) = G_CONSTANT i32 1
148     %3:gpr(s32) = G_SUB %2, %0
149     %7:gpr(s32) = G_ICMP intpred(slt), %3(s32), %1
150     %5:gpr(s32) = G_SELECT %7, %6, %2
151     $w0 = COPY %5(s32)
152     RET_ReallyLR implicit $w0
156 name:            cmn_s64_rhs
157 alignment:       4
158 legalized:       true
159 regBankSelected: true
160 tracksRegLiveness: true
161 body:             |
162   bb.0:
163     liveins: $x0, $x1
165     ; CHECK-LABEL: name: cmn_s64_rhs
166     ; CHECK: liveins: $x0, $x1
167     ; CHECK: [[COPY:%[0-9]+]]:gpr64 = COPY $x0
168     ; CHECK: [[COPY1:%[0-9]+]]:gpr64 = COPY $x1
169     ; CHECK: [[COPY2:%[0-9]+]]:gpr64 = COPY $xzr
170     ; CHECK: [[ADDSXrr:%[0-9]+]]:gpr64 = ADDSXrr [[COPY]], [[COPY1]], implicit-def $nzcv
171     ; CHECK: [[CSINCXr:%[0-9]+]]:gpr64 = CSINCXr [[COPY2]], $xzr, 0, implicit $nzcv
172     ; CHECK: $x0 = COPY [[CSINCXr]]
173     ; CHECK: RET_ReallyLR implicit $x0
174     %0:gpr(s64) = COPY $x0
175     %1:gpr(s64) = COPY $x1
176     %2:gpr(s64) = G_CONSTANT i64 0
177     %6:gpr(s64) = G_CONSTANT i64 1
178     %3:gpr(s64) = G_SUB %2, %1
179     %7:gpr(s32) = G_ICMP intpred(ne), %0(s64), %3
180     %5:gpr(s64) = G_SELECT %7, %6, %2
181     $x0 = COPY %5(s64)
182     RET_ReallyLR implicit $x0
186 name:            cmn_s64_lhs
187 alignment:       4
188 legalized:       true
189 regBankSelected: true
190 tracksRegLiveness: true
191 body:             |
192   bb.0:
193     liveins: $x0, $x1
195     ; CHECK-LABEL: name: cmn_s64_lhs
196     ; CHECK: liveins: $x0, $x1
197     ; CHECK: [[COPY:%[0-9]+]]:gpr64 = COPY $x0
198     ; CHECK: [[COPY1:%[0-9]+]]:gpr64 = COPY $x1
199     ; CHECK: [[COPY2:%[0-9]+]]:gpr64 = COPY $xzr
200     ; CHECK: [[ADDSXrr:%[0-9]+]]:gpr64 = ADDSXrr [[COPY]], [[COPY1]], implicit-def $nzcv
201     ; CHECK: [[CSINCXr:%[0-9]+]]:gpr64 = CSINCXr [[COPY2]], $xzr, 0, implicit $nzcv
202     ; CHECK: $x0 = COPY [[CSINCXr]]
203     ; CHECK: RET_ReallyLR implicit $x0
204     %0:gpr(s64) = COPY $x0
205     %1:gpr(s64) = COPY $x1
206     %2:gpr(s64) = G_CONSTANT i64 0
207     %6:gpr(s64) = G_CONSTANT i64 1
208     %3:gpr(s64) = G_SUB %2, %0
209     %7:gpr(s32) = G_ICMP intpred(ne), %3(s64), %1
210     %5:gpr(s64) = G_SELECT %7, %6, %2
211     $x0 = COPY %5(s64)
212     RET_ReallyLR implicit $x0
216 name:            no_cmn_s64_rhs
217 alignment:       4
218 legalized:       true
219 regBankSelected: true
220 tracksRegLiveness: true
221 body:             |
222   bb.0:
223     liveins: $x0, $x1
225     ; CHECK-LABEL: name: no_cmn_s64_rhs
226     ; CHECK: liveins: $x0, $x1
227     ; CHECK: [[COPY:%[0-9]+]]:gpr64 = COPY $x0
228     ; CHECK: [[COPY1:%[0-9]+]]:gpr64 = COPY $x1
229     ; CHECK: [[COPY2:%[0-9]+]]:gpr64 = COPY $xzr
230     ; CHECK: [[SUBSXrr:%[0-9]+]]:gpr64 = SUBSXrr [[COPY2]], [[COPY1]], implicit-def dead $nzcv
231     ; CHECK: [[SUBSXrr1:%[0-9]+]]:gpr64 = SUBSXrr [[COPY]], [[SUBSXrr]], implicit-def $nzcv
232     ; CHECK: [[CSINCXr:%[0-9]+]]:gpr64 = CSINCXr [[COPY2]], $xzr, 10, implicit $nzcv
233     ; CHECK: $x0 = COPY [[CSINCXr]]
234     ; CHECK: RET_ReallyLR implicit $x0
235     %0:gpr(s64) = COPY $x0
236     %1:gpr(s64) = COPY $x1
237     %2:gpr(s64) = G_CONSTANT i64 0
238     %6:gpr(s64) = G_CONSTANT i64 1
239     %3:gpr(s64) = G_SUB %2, %1
240     %7:gpr(s32) = G_ICMP intpred(slt), %0(s64), %3
241     %5:gpr(s64) = G_SELECT %7, %6, %2
242     $x0 = COPY %5(s64)
243     RET_ReallyLR implicit $x0
247 name:            no_cmn_s64_lhs
248 alignment:       4
249 legalized:       true
250 regBankSelected: true
251 tracksRegLiveness: true
252 body:             |
253   bb.0:
254     liveins: $x0, $x1
256     ; CHECK-LABEL: name: no_cmn_s64_lhs
257     ; CHECK: liveins: $x0, $x1
258     ; CHECK: [[COPY:%[0-9]+]]:gpr64 = COPY $x0
259     ; CHECK: [[COPY1:%[0-9]+]]:gpr64 = COPY $x1
260     ; CHECK: [[COPY2:%[0-9]+]]:gpr64 = COPY $xzr
261     ; CHECK: [[SUBSXrr:%[0-9]+]]:gpr64 = SUBSXrr [[COPY2]], [[COPY]], implicit-def dead $nzcv
262     ; CHECK: [[SUBSXrr1:%[0-9]+]]:gpr64 = SUBSXrr [[SUBSXrr]], [[COPY1]], implicit-def $nzcv
263     ; CHECK: [[CSINCXr:%[0-9]+]]:gpr64 = CSINCXr [[COPY2]], $xzr, 10, implicit $nzcv
264     ; CHECK: $x0 = COPY [[CSINCXr]]
265     ; CHECK: RET_ReallyLR implicit $x0
266     %0:gpr(s64) = COPY $x0
267     %1:gpr(s64) = COPY $x1
268     %2:gpr(s64) = G_CONSTANT i64 0
269     %6:gpr(s64) = G_CONSTANT i64 1
270     %3:gpr(s64) = G_SUB %2, %0
271     %7:gpr(s32) = G_ICMP intpred(slt), %3(s64), %1
272     %5:gpr(s64) = G_SELECT %7, %6, %2
273     $x0 = COPY %5(s64)
274     RET_ReallyLR implicit $x0
278 name:            tst_s32
279 alignment:       4
280 legalized:       true
281 regBankSelected: true
282 tracksRegLiveness: true
283 body:             |
284   bb.0:
285     liveins: $w0, $w1
286     ; CHECK-LABEL: name: tst_s32
287     ; CHECK: liveins: $w0, $w1
288     ; CHECK: [[COPY:%[0-9]+]]:gpr32 = COPY $w1
289     ; CHECK: [[COPY1:%[0-9]+]]:gpr32 = COPY $wzr
290     ; CHECK: [[ANDSWrr:%[0-9]+]]:gpr32 = ANDSWrr [[COPY1]], [[COPY]], implicit-def $nzcv
291     ; CHECK: [[CSINCWr:%[0-9]+]]:gpr32 = CSINCWr [[COPY1]], $wzr, 1, implicit $nzcv
292     ; CHECK: $w0 = COPY [[CSINCWr]]
293     ; CHECK: RET_ReallyLR implicit $w0
294     %0:gpr(s32) = COPY $w0
295     %1:gpr(s32) = COPY $w1
296     %2:gpr(s32) = G_CONSTANT i32 0
297     %6:gpr(s32) = G_CONSTANT i32 1
298     %3:gpr(s32) = G_AND %2, %1
299     %8:gpr(s32) = G_CONSTANT i32 0
300     %7:gpr(s32) = G_ICMP intpred(eq), %3(s32), %8
301     %5:gpr(s32) = G_SELECT %7, %6, %2
302     $w0 = COPY %5(s32)
303     RET_ReallyLR implicit $w0
307 name:            tst_s64
308 alignment:       4
309 legalized:       true
310 regBankSelected: true
311 tracksRegLiveness: true
312 body:             |
313   bb.0:
314     liveins: $x0, $x1
315     ; CHECK-LABEL: name: tst_s64
316     ; CHECK: liveins: $x0, $x1
317     ; CHECK: [[COPY:%[0-9]+]]:gpr64 = COPY $x1
318     ; CHECK: [[COPY1:%[0-9]+]]:gpr64 = COPY $xzr
319     ; CHECK: [[ANDSXrr:%[0-9]+]]:gpr64 = ANDSXrr [[COPY1]], [[COPY]], implicit-def $nzcv
320     ; CHECK: [[CSINCXr:%[0-9]+]]:gpr64 = CSINCXr [[COPY1]], $xzr, 1, implicit $nzcv
321     ; CHECK: $x0 = COPY [[CSINCXr]]
322     ; CHECK: RET_ReallyLR implicit $x0
323     %0:gpr(s64) = COPY $x0
324     %1:gpr(s64) = COPY $x1
325     %2:gpr(s64) = G_CONSTANT i64 0
326     %6:gpr(s64) = G_CONSTANT i64 1
327     %3:gpr(s64) = G_AND %2, %1
328     %8:gpr(s64) = G_CONSTANT i64 0
329     %7:gpr(s32) = G_ICMP intpred(eq), %3(s64), %8
330     %5:gpr(s64) = G_SELECT %7, %6, %2
331     $x0 = COPY %5(s64)
332     RET_ReallyLR implicit $x0
336 name:            no_tst_unsigned_compare
337 alignment:       4
338 legalized:       true
339 regBankSelected: true
340 tracksRegLiveness: true
341 body:             |
342   bb.0:
343     liveins: $w0, $w1
344     ; CHECK-LABEL: name: no_tst_unsigned_compare
345     ; CHECK: liveins: $w0, $w1
346     ; CHECK: [[COPY:%[0-9]+]]:gpr32 = COPY $w1
347     ; CHECK: [[COPY1:%[0-9]+]]:gpr32 = COPY $wzr
348     ; CHECK: [[ANDWrr:%[0-9]+]]:gpr32common = ANDWrr [[COPY1]], [[COPY]]
349     ; CHECK: [[SUBSWri:%[0-9]+]]:gpr32 = SUBSWri [[ANDWrr]], 0, 0, implicit-def $nzcv
350     ; CHECK: [[CSINCWr:%[0-9]+]]:gpr32 = CSINCWr [[COPY1]], $wzr, 9, implicit $nzcv
351     ; CHECK: $w0 = COPY [[CSINCWr]]
352     ; CHECK: RET_ReallyLR implicit $w0
353     %0:gpr(s32) = COPY $w0
354     %1:gpr(s32) = COPY $w1
355     %2:gpr(s32) = G_CONSTANT i32 0
356     %6:gpr(s32) = G_CONSTANT i32 1
357     %3:gpr(s32) = G_AND %2, %1
358     %8:gpr(s32) = G_CONSTANT i32 0
359     %7:gpr(s32) = G_ICMP intpred(ugt), %3(s32), %8
360     %5:gpr(s32) = G_SELECT %7, %6, %2
361     $w0 = COPY %5(s32)
362     RET_ReallyLR implicit $w0
366 name:            no_tst_nonzero
367 alignment:       4
368 legalized:       true
369 regBankSelected: true
370 tracksRegLiveness: true
371 body:             |
372   bb.0:
373     liveins: $w0, $w1
374     ; CHECK-LABEL: name: no_tst_nonzero
375     ; CHECK: liveins: $w0, $w1
376     ; CHECK: [[COPY:%[0-9]+]]:gpr32 = COPY $w1
377     ; CHECK: [[COPY1:%[0-9]+]]:gpr32 = COPY $wzr
378     ; CHECK: [[ANDWrr:%[0-9]+]]:gpr32common = ANDWrr [[COPY1]], [[COPY]]
379     ; CHECK: [[SUBSWri:%[0-9]+]]:gpr32 = SUBSWri [[ANDWrr]], 42, 0, implicit-def $nzcv
380     ; CHECK: [[CSINCWr:%[0-9]+]]:gpr32 = CSINCWr [[COPY1]], $wzr, 9, implicit $nzcv
381     ; CHECK: $w0 = COPY [[CSINCWr]]
382     ; CHECK: RET_ReallyLR implicit $w0
383     %0:gpr(s32) = COPY $w0
384     %1:gpr(s32) = COPY $w1
385     %2:gpr(s32) = G_CONSTANT i32 0
386     %6:gpr(s32) = G_CONSTANT i32 1
387     %3:gpr(s32) = G_AND %2, %1
388     %8:gpr(s32) = G_CONSTANT i32 42
389     %7:gpr(s32) = G_ICMP intpred(ugt), %3(s32), %8
390     %5:gpr(s32) = G_SELECT %7, %6, %2
391     $w0 = COPY %5(s32)
392     RET_ReallyLR implicit $w0
396 name:            imm_tst
397 alignment:       4
398 legalized:       true
399 regBankSelected: true
400 tracksRegLiveness: true
401 body:             |
402   bb.0:
403     liveins: $w0, $w1
404     ; CHECK-LABEL: name: imm_tst
405     ; CHECK: liveins: $w0, $w1
406     ; CHECK: [[COPY:%[0-9]+]]:gpr32 = COPY $w1
407     ; CHECK: [[ANDSWri:%[0-9]+]]:gpr32 = ANDSWri [[COPY]], 1, implicit-def $nzcv
408     ; CHECK: [[CSINCWr:%[0-9]+]]:gpr32 = CSINCWr $wzr, $wzr, 1, implicit $nzcv
409     ; CHECK: $w0 = COPY [[CSINCWr]]
410     ; CHECK: RET_ReallyLR implicit $w0
411     %0:gpr(s32) = COPY $w0
412     %1:gpr(s32) = COPY $w1
413     %2:gpr(s32) = G_CONSTANT i32 0
414     %3:gpr(s32) = G_CONSTANT i32 1
416     ; This can be represented as a logical immediate, so we can pull it into
417     ; the ANDS. We should get ANDSWri.
418     %4:gpr(s32) = G_CONSTANT i32 3
420     %5:gpr(s32) = G_AND %1, %4
421     %6:gpr(s32) = G_ICMP intpred(eq), %5(s32), %2
422     $w0 = COPY %6(s32)
423     RET_ReallyLR implicit $w0
428 name:            no_imm_tst_not_logical_imm
429 alignment:       4
430 legalized:       true
431 regBankSelected: true
432 tracksRegLiveness: true
433 body:             |
434   bb.0:
435     liveins: $w0, $w1
436     ; CHECK-LABEL: name: no_imm_tst_not_logical_imm
437     ; CHECK: liveins: $w0, $w1
438     ; CHECK: [[COPY:%[0-9]+]]:gpr32 = COPY $w1
439     ; CHECK: [[MOVi32imm:%[0-9]+]]:gpr32 = MOVi32imm -1
440     ; CHECK: [[ANDSWrr:%[0-9]+]]:gpr32 = ANDSWrr [[COPY]], [[MOVi32imm]], implicit-def $nzcv
441     ; CHECK: [[CSINCWr:%[0-9]+]]:gpr32 = CSINCWr $wzr, $wzr, 1, implicit $nzcv
442     ; CHECK: $w0 = COPY [[CSINCWr]]
443     ; CHECK: RET_ReallyLR implicit $w0
444     %0:gpr(s32) = COPY $w0
445     %1:gpr(s32) = COPY $w1
446     %2:gpr(s32) = G_CONSTANT i32 0
447     %3:gpr(s32) = G_CONSTANT i32 1
449     ; This immediate can't be represented as a logical immediate. We shouldn't
450     ; select ANDSWri.
451     %4:gpr(s32) = G_CONSTANT i32 -1
453     %5:gpr(s32) = G_AND %1, %4
454     %6:gpr(s32) = G_ICMP intpred(eq), %5(s32), %2
455     $w0 = COPY %6(s32)
456     RET_ReallyLR implicit $w0
460 name:            test_physreg_copy
461 alignment:       4
462 legalized:       true
463 regBankSelected: true
464 tracksRegLiveness: true
465 body:             |
466   bb.0:
467     liveins: $x0, $x1
468     ; CHECK-LABEL: name: test_physreg_copy
469     ; CHECK: liveins: $x0, $x1
470     ; CHECK: [[COPY:%[0-9]+]]:gpr64 = COPY $x0
471     ; CHECK: [[COPY1:%[0-9]+]]:gpr64 = COPY $x1
472     ; CHECK: [[SUBSXrr:%[0-9]+]]:gpr64 = SUBSXrr [[COPY]], [[COPY1]], implicit-def $nzcv
473     ; CHECK: [[CSINCWr:%[0-9]+]]:gpr32 = CSINCWr $wzr, $wzr, 1, implicit $nzcv
474     ; CHECK: $w0 = COPY [[CSINCWr]]
475     ; CHECK: RET_ReallyLR implicit $x0
476     %0:gpr(s64) = COPY $x0
477     %1:gpr(s64) = COPY $x1
478     ; When we find the defs of the LHS and RHS of the compare, we walk over
479     ; copies. Make sure that we don't crash when we hit a copy from a physical
480     ; register.
481     %7:gpr(s32) = G_ICMP intpred(eq), %0, %1
482     $w0 = COPY %7(s32)
483     RET_ReallyLR implicit $x0
487 name:            tst_fold_shift_s64
488 alignment:       4
489 legalized:       true
490 regBankSelected: true
491 tracksRegLiveness: true
492 body:             |
493   bb.0:
494     liveins: $x0, $x1
495     ; We should fold the G_SHL into the ANDS to get ANDSXrs.
496     ;
497     ; CHECK-LABEL: name: tst_fold_shift_s64
498     ; CHECK: liveins: $x0, $x1
499     ; CHECK: %copy:gpr64 = COPY $x1
500     ; CHECK: %zero:gpr64 = COPY $xzr
501     ; CHECK: [[ANDSXrs:%[0-9]+]]:gpr64 = ANDSXrs %zero, %copy, 16, implicit-def $nzcv
502     ; CHECK: %select:gpr64 = CSINCXr %zero, $xzr, 1, implicit $nzcv
503     ; CHECK: $x0 = COPY %select
504     ; CHECK: RET_ReallyLR implicit $x0
505     %copy:gpr(s64) = COPY $x1
506     %zero:gpr(s64) = G_CONSTANT i64 0
507     %one:gpr(s64) = G_CONSTANT i64 1
508     %cst:gpr(s64) = G_CONSTANT i64 16
509     %shift:gpr(s64) = G_SHL %copy(s64), %cst(s64)
510     %and:gpr(s64) = G_AND %zero, %shift
511     %cmp:gpr(s32) = G_ICMP intpred(eq), %and(s64), %zero
512     %select:gpr(s64) = G_SELECT %cmp, %one, %zero
513     $x0 = COPY %select(s64)
514     RET_ReallyLR implicit $x0
518 name:            tst_fold_shift_s32
519 alignment:       4
520 legalized:       true
521 regBankSelected: true
522 tracksRegLiveness: true
523 body:             |
524   bb.0:
525     liveins: $w0, $w1
526     ; We should fold the G_SHL into the ANDS to get ANDSWrs.
527     ;
528     ; CHECK-LABEL: name: tst_fold_shift_s32
529     ; CHECK: liveins: $w0, $w1
530     ; CHECK: %copy:gpr32 = COPY $w1
531     ; CHECK: %zero:gpr32 = COPY $wzr
532     ; CHECK: [[ANDSWrs:%[0-9]+]]:gpr32 = ANDSWrs %zero, %copy, 16, implicit-def $nzcv
533     ; CHECK: %select:gpr32 = CSINCWr %zero, $wzr, 1, implicit $nzcv
534     ; CHECK: $w0 = COPY %select
535     ; CHECK: RET_ReallyLR implicit $w0
536     %copy:gpr(s32) = COPY $w1
537     %zero:gpr(s32) = G_CONSTANT i32 0
538     %one:gpr(s32) = G_CONSTANT i32 1
539     %cst:gpr(s32) = G_CONSTANT i32 16
540     %shift:gpr(s32) = G_SHL %copy(s32), %cst(s32)
541     %and:gpr(s32) = G_AND %zero, %shift
542     %cmp:gpr(s32) = G_ICMP intpred(eq), %and(s32), %zero
543     %select:gpr(s32) = G_SELECT %cmp, %one, %zero
544     $w0 = COPY %select(s32)
545     RET_ReallyLR implicit $w0
549 name:            cmn_s32_neg_imm
550 alignment:       4
551 legalized:       true
552 regBankSelected: true
553 tracksRegLiveness: true
554 body:             |
555   bb.0:
556     liveins: $w0, $w1
558     ; CHECK-LABEL: name: cmn_s32_neg_imm
559     ; CHECK: liveins: $w0, $w1
560     ; CHECK: %reg0:gpr32sp = COPY $w0
561     ; CHECK: [[SUBSWri:%[0-9]+]]:gpr32 = SUBSWri %reg0, 1, 0, implicit-def $nzcv
562     ; CHECK: %cmp:gpr32 = CSINCWr $wzr, $wzr, 0, implicit $nzcv
563     ; CHECK: $w0 = COPY %cmp
564     ; CHECK: RET_ReallyLR implicit $w0
565     %reg0:gpr(s32) = COPY $w0
566     %negative_one:gpr(s32) = G_CONSTANT i32 -1
567     %zero:gpr(s32) = G_CONSTANT i32 0
568     %sub:gpr(s32) = G_SUB %zero, %negative_one
569     %cmp:gpr(s32) = G_ICMP intpred(ne), %reg0(s32), %sub
570     $w0 = COPY %cmp(s32)
571     RET_ReallyLR implicit $w0
575 name:            cmn_arith_extended_shl
576 alignment:       4
577 legalized:       true
578 regBankSelected: true
579 tracksRegLiveness: true
580 body:             |
581   bb.0:
582     liveins: $w0, $x0, $x1
583     ; We should be able to fold away the extend + shift and select ADDSXrx.
585     ; CHECK-LABEL: name: cmn_arith_extended_shl
586     ; CHECK: liveins: $w0, $x0, $x1
587     ; CHECK: %reg0:gpr64sp = COPY $x0
588     ; CHECK: %reg1:gpr32 = COPY $w0
589     ; CHECK: [[ADDSXrx:%[0-9]+]]:gpr64 = ADDSXrx %reg0, %reg1, 50, implicit-def $nzcv
590     ; CHECK: %cmp:gpr32 = CSINCWr $wzr, $wzr, 0, implicit $nzcv
591     ; CHECK: $w0 = COPY %cmp
592     ; CHECK: RET_ReallyLR implicit $w0
593     %reg0:gpr(s64) = COPY $x0
594     %zero:gpr(s64) = G_CONSTANT i64 0
595     %sub:gpr(s64) = G_SUB %zero, %reg0
597     %reg1:gpr(s32) = COPY $w0
598     %ext:gpr(s64) = G_SEXT %reg1(s32)
599     %cst:gpr(s64) = G_CONSTANT i64 2
600     %shift:gpr(s64) = G_SHL %ext, %cst(s64)
602     %cmp:gpr(s32) = G_ICMP intpred(ne), %sub(s64), %shift
603     $w0 = COPY %cmp(s32)
604     RET_ReallyLR implicit $w0