Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / llvm / test / CodeGen / Mips / GlobalISel / legalizer / ctlz.mir
blobf3865435873ada2139ff53dbf4054ce4c5d40762
1 # NOTE: Assertions have been autogenerated by utils/update_mir_test_checks.py
2 # RUN: llc -O0 -mtriple=mipsel-linux-gnu -run-pass=legalizer -verify-machineinstrs %s -o - | FileCheck %s -check-prefixes=MIPS32
3 ---
4 name:            ctlz_i32
5 alignment:       4
6 tracksRegLiveness: true
7 body:             |
8   bb.1.entry:
9     liveins: $a0
11     ; MIPS32-LABEL: name: ctlz_i32
12     ; MIPS32: liveins: $a0
13     ; MIPS32: [[COPY:%[0-9]+]]:_(s32) = COPY $a0
14     ; MIPS32: [[CTLZ:%[0-9]+]]:_(s32) = G_CTLZ [[COPY]](s32)
15     ; MIPS32: $v0 = COPY [[CTLZ]](s32)
16     ; MIPS32: RetRA implicit $v0
17     %0:_(s32) = COPY $a0
18     %1:_(s32) = G_CTLZ %0(s32)
19     $v0 = COPY %1(s32)
20     RetRA implicit $v0
22 ...
23 ---
24 name:            ctlz_i64
25 alignment:       4
26 tracksRegLiveness: true
27 body:             |
28   bb.1.entry:
29     liveins: $a0, $a1
31     ; MIPS32-LABEL: name: ctlz_i64
32     ; MIPS32: liveins: $a0, $a1
33     ; MIPS32: [[COPY:%[0-9]+]]:_(s32) = COPY $a0
34     ; MIPS32: [[COPY1:%[0-9]+]]:_(s32) = COPY $a1
35     ; MIPS32: [[C:%[0-9]+]]:_(s32) = G_CONSTANT i32 0
36     ; MIPS32: [[ICMP:%[0-9]+]]:_(s32) = G_ICMP intpred(eq), [[COPY1]](s32), [[C]]
37     ; MIPS32: [[CTLZ:%[0-9]+]]:_(s32) = G_CTLZ [[COPY]](s32)
38     ; MIPS32: [[C1:%[0-9]+]]:_(s32) = G_CONSTANT i32 32
39     ; MIPS32: [[ADD:%[0-9]+]]:_(s32) = G_ADD [[CTLZ]], [[C1]]
40     ; MIPS32: [[CTLZ1:%[0-9]+]]:_(s32) = G_CTLZ [[COPY1]](s32)
41     ; MIPS32: [[C2:%[0-9]+]]:_(s32) = G_CONSTANT i32 1
42     ; MIPS32: [[AND:%[0-9]+]]:_(s32) = G_AND [[ICMP]], [[C2]]
43     ; MIPS32: [[SELECT:%[0-9]+]]:_(s32) = G_SELECT [[AND]](s32), [[ADD]], [[CTLZ1]]
44     ; MIPS32: $v0 = COPY [[SELECT]](s32)
45     ; MIPS32: $v1 = COPY [[C]](s32)
46     ; MIPS32: RetRA implicit $v0, implicit $v1
47     %1:_(s32) = COPY $a0
48     %2:_(s32) = COPY $a1
49     %0:_(s64) = G_MERGE_VALUES %1(s32), %2(s32)
50     %3:_(s64) = G_CTLZ %0(s64)
51     %4:_(s32), %5:_(s32) = G_UNMERGE_VALUES %3(s64)
52     $v0 = COPY %4(s32)
53     $v1 = COPY %5(s32)
54     RetRA implicit $v0, implicit $v1
56 ...