[InstCombine] Signed saturation patterns
[llvm-complete.git] / test / CodeGen / AArch64 / GlobalISel / legalize-gep.mir
blob6d34574b3ba4844ebff8f7037f71ddeb67fef581
1 # NOTE: Assertions have been autogenerated by utils/update_mir_test_checks.py
2 # RUN: llc -march=aarch64 -run-pass=legalizer %s -o - | FileCheck %s
3 ---
4 name:            test_gep_small
5 body:             |
6   bb.0.entry:
7     ; CHECK-LABEL: name: test_gep_small
8     ; CHECK: [[COPY:%[0-9]+]]:_(p0) = COPY $x0
9     ; CHECK: [[COPY1:%[0-9]+]]:_(s64) = COPY $x1
10     ; CHECK: [[COPY2:%[0-9]+]]:_(s64) = COPY [[COPY1]](s64)
11     ; CHECK: [[C:%[0-9]+]]:_(s64) = G_CONSTANT i64 56
12     ; CHECK: [[SHL:%[0-9]+]]:_(s64) = G_SHL [[COPY2]], [[C]](s64)
13     ; CHECK: [[ASHR:%[0-9]+]]:_(s64) = G_ASHR [[SHL]], [[C]](s64)
14     ; CHECK: [[GEP:%[0-9]+]]:_(p0) = G_GEP [[COPY]], [[ASHR]](s64)
15     ; CHECK: $x0 = COPY [[GEP]](p0)
16     %0:_(p0) = COPY $x0
17     %1:_(s64) = COPY $x1
18     %2:_(s8) = G_TRUNC %1(s64)
19     %3:_(p0) = G_GEP %0, %2(s8)
20     $x0 = COPY %3(p0)
22 ...