From 3eabf91779b565d6fc5f9d3be2d50736737356b5 Mon Sep 17 00:00:00 2001 From: Alina Sbirlea Date: Thu, 3 Oct 2019 22:20:04 +0000 Subject: [PATCH] [MemorySSA] Don't hoist stores if interfering uses (as calls) exist. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@373674 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Transforms/Scalar/LICM.cpp | 12 ++++++++++- test/Analysis/MemorySSA/pr43540.ll | 34 ++++++++++++++++++++++++++++++ test/Transforms/LICM/guards.ll | 2 +- 3 files changed, 46 insertions(+), 2 deletions(-) create mode 100644 test/Analysis/MemorySSA/pr43540.ll diff --git a/lib/Transforms/Scalar/LICM.cpp b/lib/Transforms/Scalar/LICM.cpp index 2e13e8e4150..262d64f1618 100644 --- a/lib/Transforms/Scalar/LICM.cpp +++ b/lib/Transforms/Scalar/LICM.cpp @@ -1248,12 +1248,22 @@ bool llvm::canSinkOrHoistInst(Instruction &I, AAResults *AA, DominatorTree *DT, // FIXME: More precise: no Uses that alias SI. if (!Flags->IsSink && !MSSA->dominates(SIMD, MU)) return false; - } else if (const auto *MD = dyn_cast(&MA)) + } else if (const auto *MD = dyn_cast(&MA)) { if (auto *LI = dyn_cast(MD->getMemoryInst())) { (void)LI; // Silence warning. assert(!LI->isUnordered() && "Expected unordered load"); return false; } + // Any call, while it may not be clobbering SI, it may be a use. + if (auto *CI = dyn_cast(MD->getMemoryInst())) { + // Check if the call may read from the memory locattion written + // to by SI. Check CI's attributes and arguments; the number of + // such checks performed is limited above by NoOfMemAccTooLarge. + ModRefInfo MRI = AA->getModRefInfo(CI, MemoryLocation::get(SI)); + if (isModOrRefSet(MRI)) + return false; + } + } } auto *Source = MSSA->getSkipSelfWalker()->getClobberingMemoryAccess(SI); diff --git a/test/Analysis/MemorySSA/pr43540.ll b/test/Analysis/MemorySSA/pr43540.ll new file mode 100644 index 00000000000..325e6bc0ae8 --- /dev/null +++ b/test/Analysis/MemorySSA/pr43540.ll @@ -0,0 +1,34 @@ +; RUN: opt -S -licm -enable-mssa-loop-dependency=true %s | FileCheck %s +@v_1 = global i8 0, align 1 +@v_2 = global i8 0, align 1 + +; CHECK-LABEL: @foo() +; CHECK: for.cond: +; CHECK-NOT: store +; CHECK: for.body: +; CHECK: call void @llvm.memcpy.p0i8.p0i8.i64 +; CHECK: store +define void @foo() { +entry: + br label %for.cond + +for.cond: ; preds = %for.body, %entry + %0 = phi i16 [ %inc, %for.body ], [ 0, %entry ] + %cmp = icmp slt i16 %0, 1 + br i1 %cmp, label %for.body, label %for.end + +for.body: ; preds = %for.cond + call void @llvm.memcpy.p0i8.p0i8.i64(i8* @v_1, i8 * @v_2, i64 1, i1 false) + store i8 1, i8 * @v_2, align 1 + %inc = add nsw i16 %0, 1 + br label %for.cond + +for.end: ; preds = %for.cond + ret void +} + +; Function Attrs: argmemonly nounwind willreturn +declare void @llvm.memcpy.p0i8.p0i8.i64(i8* noalias nocapture writeonly, i8 * noalias nocapture readonly, i64, i1 immarg) #2 + +attributes #2 = { argmemonly nounwind willreturn } + diff --git a/test/Transforms/LICM/guards.ll b/test/Transforms/LICM/guards.ll index 2873c89d092..2343e0917c5 100644 --- a/test/Transforms/LICM/guards.ll +++ b/test/Transforms/LICM/guards.ll @@ -84,7 +84,7 @@ loop: } ; But can hoist if the side effect is hoisted with MSSA -define void @test2b_prime(i1 %cond, i32* %ptr) { +define void @test2b_prime(i1 %cond, i32* noalias %ptr) { ; MSSA-LABEL: @test2b_prime( ; MSSA-NEXT: entry: ; MSSA-NEXT: [[P2:%.*]] = getelementptr i32, i32* [[PTR:%.*]], i32 1 -- 2.50.1