35 lines · plain
1; RUN: llc -mtriple=hexagon -hexagon-hvx-widen=32 < %s | FileCheck %s2 3target triple = "hexagon"4 5; Test the the store mask is adjusted for gaps between sections. The6; Vector Combine pass generates masked stores for chunks of 128 bytes.7; The masked store must be shifted if the first store in a section8; is not a multiple of 128 bytes. This test checks that two masks9; are created, and the second mask is used in a masked store.10 11; CHECK: [[REG:r[0-9]+]] = ##.LCPI0_112; CHECK: [[VREG1:v[0-9]+]] = vmem([[REG]]+#0)13; CHECK: [[VREG2:v[0-9]+]] = vlalign([[VREG1]],v{{[0-9]+}},r{{[0-9]+}})14; CHECK: [[QREG:q[0-3]+]] = vand([[VREG2]],r{{[0-9]+}})15; CHECK: if ([[QREG]]) vmem({{.*}}) = v{{[0-9]+}}16 17define dllexport void @f0(ptr %a0) local_unnamed_addr #0 {18b0:19 br label %b120 21b1: ; preds = %b1, %b022 %v0 = or i32 -1, 4023 %v1 = getelementptr inbounds i32, ptr %a0, i32 %v024 store <8 x i32> undef, ptr %v1, align 3225 %v3 = or i32 0, 4826 %v4 = getelementptr inbounds i32, ptr %a0, i32 %v327 store <8 x i32> undef, ptr %v4, align 6428 br i1 undef, label %b2, label %b129 30b2: ; preds = %b131 ret void32}33 34attributes #0 = { "target-features"="+hvxv66,+hvx-length128b,-packets" }35