[TableGen] Fix validateOperandClass for non Phyical Reg (#118146)
[llvm-project.git] / llvm / test / CodeGen / AArch64 / GlobalISel / select-redundant-zext-of-load.mir
blobdc7c975edb488e349d1d19fcc8dd5fc17803657a
1 # NOTE: Assertions have been autogenerated by utils/update_mir_test_checks.py
2 # RUN: llc -mtriple=aarch64-- -O0 -run-pass=instruction-select -verify-machineinstrs %s -global-isel-abort=1 -o - | FileCheck %s
3 ---
4 name:            redundant_zext_8
5 legalized:       true
6 regBankSelected: true
7 tracksRegLiveness: true
8 body:             |
9   bb.1:
10     liveins: $x0
12     ; CHECK-LABEL: name: redundant_zext_8
13     ; CHECK: liveins: $x0
14     ; CHECK-NEXT: {{  $}}
15     ; CHECK-NEXT: [[COPY:%[0-9]+]]:gpr64sp = COPY $x0
16     ; CHECK-NEXT: [[LDRBBui:%[0-9]+]]:gpr32 = LDRBBui [[COPY]], 0 :: (load (s8))
17     ; CHECK-NEXT: [[COPY1:%[0-9]+]]:gpr32all = COPY [[LDRBBui]]
18     ; CHECK-NEXT: $w0 = COPY [[COPY1]]
19     ; CHECK-NEXT: RET_ReallyLR implicit $w0
20     %1:gpr(p0) = COPY $x0
21     %2:gpr(s8) = G_LOAD %1(p0) :: (load (s8))
22     %3:gpr(s32) = G_ZEXT %2(s8)
23     $w0 = COPY %3(s32)
24     RET_ReallyLR implicit $w0
26 ...
27 ---
28 name:            redundant_zext_16
29 legalized:       true
30 regBankSelected: true
31 tracksRegLiveness: true
32 body:             |
33   bb.1:
34     liveins: $x0
36     ; CHECK-LABEL: name: redundant_zext_16
37     ; CHECK: liveins: $x0
38     ; CHECK-NEXT: {{  $}}
39     ; CHECK-NEXT: [[COPY:%[0-9]+]]:gpr64sp = COPY $x0
40     ; CHECK-NEXT: [[LDRHHui:%[0-9]+]]:gpr32 = LDRHHui [[COPY]], 0 :: (load (s16))
41     ; CHECK-NEXT: [[COPY1:%[0-9]+]]:gpr32all = COPY [[LDRHHui]]
42     ; CHECK-NEXT: $w0 = COPY [[COPY1]]
43     ; CHECK-NEXT: RET_ReallyLR implicit $w0
44     %1:gpr(p0) = COPY $x0
45     %2:gpr(s16) = G_LOAD %1(p0) :: (load (s16))
46     %3:gpr(s32) = G_ZEXT %2(s16)
47     $w0 = COPY %3(s32)
48     RET_ReallyLR implicit $w0
50 ...