brintos

brintos / llvm-project-archived public Read only

0
0
Text · 993 B · aab3258 Raw
18 lines · plain
1; RUN: opt < %s  -passes="print<cost-model>" 2>&1 -disable-output -mtriple=x86_64-linux-unknown-unknown -mattr=+avx512f | FileCheck %s2 3%struct.S = type { [1000 x i32] }4 5 6declare <4 x i32> @llvm.masked.gather.v4i32.v4p0(<4 x ptr>, i32, <4 x i1>, <4 x i32>)7 8define <4 x i32> @foov(<4 x ptr> %s, i64 %base){9  %temp = insertelement <4 x i64> undef, i64 %base, i32 010  %vector = shufflevector <4 x i64> %temp, <4 x i64> undef, <4 x i32> zeroinitializer11;CHECK: cost of 0 for instruction: {{.*}} getelementptr inbounds %struct.S12  %B = getelementptr inbounds %struct.S, <4 x ptr> %s, <4 x i32> zeroinitializer, <4 x i32> zeroinitializer13;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> %vector15  %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)16  ret <4 x i32> %res17}18