1 ; RUN: opt < %s -passes="print<cost-model>" 2>&1 -disable-output -mtriple=x86_64-linux-unknown-unknown -mattr=+avx512f | FileCheck %s
3 %struct.S = type { [1000 x i32] }
6 declare <4 x i32> @llvm.masked.gather.v4i32.v4p0(<4 x ptr>, i32, <4 x i1>, <4 x i32>)
8 define <4 x i32> @foov(<4 x ptr> %s, i64 %base){
9 %temp = insertelement <4 x i64> poison, i64 %base, i32 0
10 %vector = shufflevector <4 x i64> %temp, <4 x i64> poison, <4 x i32> zeroinitializer
11 ;CHECK: cost of 0 for instruction: {{.*}} getelementptr inbounds %struct.S
12 %B = getelementptr inbounds %struct.S, <4 x ptr> %s, <4 x i32> zeroinitializer, <4 x i32> zeroinitializer
13 ;CHECK: cost of 0 for instruction: {{.*}} getelementptr inbounds [1000 x i32]
14 %arrayidx = getelementptr inbounds [1000 x i32], <4 x ptr> %B, <4 x i64> zeroinitializer, <4 x i64> %vector
15 %res = call <4 x i32> @llvm.masked.gather.v4i32.v4p0(<4 x ptr> %arrayidx, i32 4, <4 x i1> <i1 true, i1 true, i1 true, i1 true>, <4 x i32> undef)