[NFC][RemoveDIs] Prefer iterators over inst-pointers in InstCombine
[llvm-project.git] / llvm / test / CodeGen / AArch64 / GlobalISel / postlegalizercombiner-extending-loads.mir
blobdb576419a7647c6fdf36949473be1f7a3453e634
1 # NOTE: Assertions have been autogenerated by utils/update_mir_test_checks.py
2 # RUN: llc -run-pass=aarch64-postlegalizer-combiner -global-isel -verify-machineinstrs %s -o - | FileCheck %s
4 --- |
5   target datalayout = "e-m:o-i64:64-i128:128-n32:64-S128"
6   target triple = "aarch64--"
7   define void @test_zeroext(i8* %addr) {
8   entry:
9     ret void
10   }
11   define void @test_no_anyext(i8* %addr) {
12   entry:
13     ret void
14   }
15 ...
17 ---
18 name:            test_zeroext
19 legalized:       true
20 body: |
21   bb.0.entry:
22     liveins: $x0
23     ; CHECK-LABEL: name: test_zeroext
24     ; CHECK: [[COPY:%[0-9]+]]:_(p0) = COPY $x0
25     ; CHECK: [[ZEXTLOAD:%[0-9]+]]:_(s32) = G_ZEXTLOAD [[COPY]](p0) :: (load (s8) from %ir.addr)
26     ; CHECK: $w0 = COPY [[ZEXTLOAD]](s32)
27     %0:_(p0) = COPY $x0
28     %1:_(s8) = G_LOAD %0 :: (load (s8) from %ir.addr)
29     %2:_(s32) = G_ZEXT %1
30     $w0 = COPY %2
31 ...
33 ---
34 name:            test_no_anyext
35 legalized:       true
36 body: |
37   bb.0.entry:
38     liveins: $x0
39     ; Check that we don't try to do an anyext combine. We don't want to do this
40     ; because an anyexting load like s64 = G_LOAD %p (load 4) isn't legal.
41     ; CHECK-LABEL: name: test_no_anyext
42     ; CHECK: [[COPY:%[0-9]+]]:_(p0) = COPY $x0
43     ; CHECK: [[LOAD:%[0-9]+]]:_(s32) = G_LOAD [[COPY]](p0) :: (load (s32) from %ir.addr)
44     ; CHECK: [[ANYEXT:%[0-9]+]]:_(s64) = G_ANYEXT [[LOAD]](s32)
45     ; CHECK: $x0 = COPY [[ANYEXT]](s64)
46     %0:_(p0) = COPY $x0
47     %1:_(s32) = G_LOAD %0 :: (load (s32) from %ir.addr)
48     %2:_(s64) = G_ANYEXT %1
49     $x0 = COPY %2
50 ...