[ARM] Adjust how NEON shifts are lowered
[llvm-core.git] / test / Transforms / ConstantHoisting / AArch64 / const-hoist-gep.ll
blobcc761ad9bffa81ed820d345bd904b338011e77a6
1 ; RUN: opt -consthoist -consthoist-gep -S -o - %s | FileCheck %s
3 target triple = "aarch64-none--musleabi"
5 ; Check that constant GEP expressions are rewritten to one-dimensional
6 ; (single-index) GEPs, whose base poiner is a multi-dimensional GEP.
7 ; CHECK:  %const = bitcast i32* getelementptr inbounds (%0, %0* @global, i32 0, i32 4, i32 0, i32 0) to i32*
8 ; CHECK-NEXT:  store i32 undef, i32* %const, align 4
10 ; CHECK-NEXT:  %[[BC1:[a-z0-9_]+]] = bitcast i32* %const to i8*
11 ; CHECK-NEXT:  %[[M1:[a-z0-9_]+]] = getelementptr i8, i8* %[[BC1]], i32 4
12 ; CHECK-NEXT:  %[[BC2:[a-z0-9_]+]] = bitcast i8* %[[M1]] to i32*
13 ; CHECK-NEXT:  store i32 undef, i32* %[[BC2]], align 4
15 ; CHECK-NEXT:  %[[BC3:[a-z0-9_]+]] = bitcast i32* %const to i8*
16 ; CHECK-NEXT:  %[[M2:[a-z0-9_]+]] = getelementptr i8, i8* %[[BC3]], i32 160
17 ; CHECK-NEXT:  %[[BC4:[a-z0-9_]+]] = bitcast i8* %[[M2]] to i32*
18 ; CHECK-NEXT:  store i32 undef, i32* %[[BC4]], align 4
20 ; CHECK-NEXT:  %[[BC5:[a-z0-9_]+]] = bitcast i32* %const to i8*
21 ; CHECK-NEXT:  %[[M3:[a-z0-9_]+]] = getelementptr i8, i8* %[[BC5]], i32 164
22 ; CHECK-NEXT:  %[[BC6:[a-z0-9_]+]] = bitcast i8* %[[M3]] to i32*
23 ; CHECK-NEXT:  store i32 undef, i32* %[[BC6]], align 4
25 %0 = type { %1, %2, [9 x i16], %6, %7 }
26 %1 = type { i32, i32, i32, i32, i32, i32, i16, i16, i8, i8, i16, i32, i32, i16, i8, i8 }
27 %2 = type { i32, %3, i8, i8, i8, i8, i32, %4, %5, [16 x i8], i16, i16, i8, i8, i8, i8, i32, i32, i32 }
28 %3 = type { i16, i8, i8 }
29 %4 = type { i16, i8, i8 }
30 %5 = type { i8, i8, i8, i8, i8, i8, i8, i8, i8, i8, i8, i8, i8, i8, i8, i8 }
31 %6 = type { i8, i8 }
32 %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 }
34 @global = external dso_local local_unnamed_addr global %0, align 4
36 define dso_local void @zot() {
37 bb:
38   store i32 undef, i32* getelementptr inbounds (%0, %0* @global, i32 0, i32 4, i32 0, i32 0), align 4
39   store i32 undef, i32* getelementptr inbounds (%0, %0* @global, i32 0, i32 4, i32 0, i32 1), align 4
40   store i32 undef, i32* getelementptr inbounds (%0, %0* @global, i32 0, i32 4, i32 11, i32 0), align 4
41   store i32 undef, i32* getelementptr inbounds (%0, %0* @global, i32 0, i32 4, i32 11, i32 1), align 4
42   ret void