xref: /llvm-project/llvm/test/Transforms/ConstantHoisting/ARM/const-hoist-gep.ll (revision 85eeba48a0fefcdf6d12cf422d2060592f689823)
1; NOTE: Assertions have been autogenerated by utils/update_test_checks.py UTC_ARGS: --version 2
2; RUN: opt -passes=consthoist -consthoist-gep -S -o - %s | FileCheck %s
3
4target datalayout = "e-m:e-p:32:32-i64:64-v128:64:128-a:0:32-n32-S64"
5target triple = "thumbv6m-none--musleabi"
6
7%0 = type { %1, %2, [9 x i16], %6, %7 }
8%1 = type { i32, i32, i32, i32, i32, i32, i16, i16, i8, i8, i16, i32, i32, i16, i8, i8 }
9%2 = type { i32, %3, i8, i8, i8, i8, i32, %4, %5, [16 x i8], i16, i16, i8, i8, i8, i8, i32, i32, i32 }
10%3 = type { i16, i8, i8 }
11%4 = type { i16, i8, i8 }
12%5 = type { i8, i8, i8, i8, i8, i8, i8, i8, i8, i8, i8, i8, i8, i8, i8, i8 }
13%6 = type { i8, i8 }
14%7 = type { [5 x i32], [3 x i32], [6 x i32], [3 x i32], [2 x i32], [4 x i32], [3 x i32], [2 x i32], [4 x i32], [5 x i32], [3 x i32], [6 x i32], [1 x i32], i32, i32, i32, i32, i32, i32 }
15
16@global = external dso_local local_unnamed_addr global %0, align 4
17
18; Check that constant GEP expressions are rewritten to one-dimensional
19; (single-index) GEPs, whose base poiner is a multi-dimensional GEP.
20define dso_local void @zot() {
21; CHECK-LABEL: define dso_local void @zot() {
22; CHECK-NEXT:  bb:
23; CHECK-NEXT:    [[CONST1:%.*]] = bitcast ptr getelementptr inbounds ([[TMP0:%.*]], ptr @global, i32 0, i32 4, i32 11, i32 0) to ptr
24; CHECK-NEXT:    [[CONST:%.*]] = bitcast ptr getelementptr inbounds ([[TMP0]], ptr @global, i32 0, i32 4, i32 0, i32 0) to ptr
25; CHECK-NEXT:    store i32 undef, ptr [[CONST]], align 4
26; CHECK-NEXT:    [[MAT_GEP:%.*]] = getelementptr i8, ptr [[CONST]], i32 4
27; CHECK-NEXT:    [[MAT_BITCAST:%.*]] = bitcast ptr [[MAT_GEP]] to ptr
28; CHECK-NEXT:    store i32 undef, ptr [[MAT_BITCAST]], align 4
29; CHECK-NEXT:    store i32 undef, ptr [[CONST1]], align 4
30; CHECK-NEXT:    [[MAT_GEP2:%.*]] = getelementptr i8, ptr [[CONST1]], i32 4
31; CHECK-NEXT:    [[MAT_BITCAST3:%.*]] = bitcast ptr [[MAT_GEP2]] to ptr
32; CHECK-NEXT:    store i32 undef, ptr [[MAT_BITCAST3]], align 4
33; CHECK-NEXT:    ret void
34;
35bb:
36  store i32 undef, ptr getelementptr inbounds (%0, ptr @global, i32 0, i32 4, i32 0, i32 0), align 4
37  store i32 undef, ptr getelementptr inbounds (%0, ptr @global, i32 0, i32 4, i32 0, i32 1), align 4
38  store i32 undef, ptr getelementptr inbounds (%0, ptr @global, i32 0, i32 4, i32 11, i32 0), align 4
39  store i32 undef, ptr getelementptr inbounds (%0, ptr @global, i32 0, i32 4, i32 11, i32 1), align 4
40  ret void
41}
42
43