[PATCH] D50911: Update MemorySSA in LoopSimplifyCFG.
Alina Sbirlea via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Wed Aug 22 13:11:17 PDT 2018
This revision was automatically updated to reflect the committed changes.
Closed by commit rL340445: Update MemorySSA in LoopSimplifyCFG. (authored by asbirlea, committed by ).
Repository:
rL LLVM
https://reviews.llvm.org/D50911
Files:
llvm/trunk/lib/Transforms/Scalar/LoopSimplifyCFG.cpp
llvm/trunk/test/Transforms/LoopSimplifyCFG/merge-header.ll
llvm/trunk/test/Transforms/LoopSimplifyCFG/scev.ll
Index: llvm/trunk/test/Transforms/LoopSimplifyCFG/merge-header.ll
===================================================================
--- llvm/trunk/test/Transforms/LoopSimplifyCFG/merge-header.ll
+++ llvm/trunk/test/Transforms/LoopSimplifyCFG/merge-header.ll
@@ -1,5 +1,6 @@
; RUN: opt -S -loop-simplifycfg < %s | FileCheck %s
; RUN: opt -S -passes='require<domtree>,loop(simplify-cfg)' < %s | FileCheck %s
+; RUN: opt -S -loop-simplifycfg -enable-mssa-loop-dependency=true -verify-memoryssa < %s | FileCheck %s
; CHECK-LABEL: foo
; CHECK: entry:
Index: llvm/trunk/test/Transforms/LoopSimplifyCFG/scev.ll
===================================================================
--- llvm/trunk/test/Transforms/LoopSimplifyCFG/scev.ll
+++ llvm/trunk/test/Transforms/LoopSimplifyCFG/scev.ll
@@ -1,5 +1,6 @@
; NOTE: Assertions have been autogenerated by utils/update_test_checks.py
; RUN: opt -S -loop-simplifycfg -verify-scev < %s | FileCheck %s
+; RUN: opt -S -loop-simplifycfg -verify-scev -enable-mssa-loop-dependency=true -verify-memoryssa < %s | FileCheck %s
; Verify that the scev information is still valid. Verification should not fail
Index: llvm/trunk/lib/Transforms/Scalar/LoopSimplifyCFG.cpp
===================================================================
--- llvm/trunk/lib/Transforms/Scalar/LoopSimplifyCFG.cpp
+++ llvm/trunk/lib/Transforms/Scalar/LoopSimplifyCFG.cpp
@@ -24,6 +24,8 @@
#include "llvm/Analysis/GlobalsModRef.h"
#include "llvm/Analysis/LoopInfo.h"
#include "llvm/Analysis/LoopPass.h"
+#include "llvm/Analysis/MemorySSA.h"
+#include "llvm/Analysis/MemorySSAUpdater.h"
#include "llvm/Analysis/ScalarEvolution.h"
#include "llvm/Analysis/ScalarEvolutionAliasAnalysis.h"
#include "llvm/Analysis/TargetTransformInfo.h"
@@ -40,7 +42,7 @@
#define DEBUG_TYPE "loop-simplifycfg"
static bool simplifyLoopCFG(Loop &L, DominatorTree &DT, LoopInfo &LI,
- ScalarEvolution &SE) {
+ ScalarEvolution &SE, MemorySSAUpdater *MSSAU) {
bool Changed = false;
DomTreeUpdater DTU(DT, DomTreeUpdater::UpdateStrategy::Eager);
// Copy blocks into a temporary array to avoid iterator invalidation issues
@@ -59,7 +61,7 @@
continue;
// Merge Succ into Pred and delete it.
- MergeBlockIntoPredecessor(Succ, &DTU, &LI);
+ MergeBlockIntoPredecessor(Succ, &DTU, &LI, MSSAU);
SE.forgetTopmostLoop(&L);
@@ -72,7 +74,11 @@
PreservedAnalyses LoopSimplifyCFGPass::run(Loop &L, LoopAnalysisManager &AM,
LoopStandardAnalysisResults &AR,
LPMUpdater &) {
- if (!simplifyLoopCFG(L, AR.DT, AR.LI, AR.SE))
+ Optional<MemorySSAUpdater> MSSAU;
+ if (EnableMSSALoopDependency && AR.MSSA)
+ MSSAU = MemorySSAUpdater(AR.MSSA);
+ if (!simplifyLoopCFG(L, AR.DT, AR.LI, AR.SE,
+ MSSAU.hasValue() ? MSSAU.getPointer() : nullptr))
return PreservedAnalyses::all();
return getLoopPassPreservedAnalyses();
@@ -93,10 +99,22 @@
DominatorTree &DT = getAnalysis<DominatorTreeWrapperPass>().getDomTree();
LoopInfo &LI = getAnalysis<LoopInfoWrapperPass>().getLoopInfo();
ScalarEvolution &SE = getAnalysis<ScalarEvolutionWrapperPass>().getSE();
- return simplifyLoopCFG(*L, DT, LI, SE);
+ Optional<MemorySSAUpdater> MSSAU;
+ if (EnableMSSALoopDependency) {
+ MemorySSA *MSSA = &getAnalysis<MemorySSAWrapperPass>().getMSSA();
+ MSSAU = MemorySSAUpdater(MSSA);
+ if (VerifyMemorySSA)
+ MSSA->verifyMemorySSA();
+ }
+ return simplifyLoopCFG(*L, DT, LI, SE,
+ MSSAU.hasValue() ? MSSAU.getPointer() : nullptr);
}
void getAnalysisUsage(AnalysisUsage &AU) const override {
+ if (EnableMSSALoopDependency) {
+ AU.addRequired<MemorySSAWrapperPass>();
+ AU.addPreserved<MemorySSAWrapperPass>();
+ }
AU.addPreserved<DependenceAnalysisWrapperPass>();
getLoopAnalysisUsage(AU);
}
@@ -107,6 +125,7 @@
INITIALIZE_PASS_BEGIN(LoopSimplifyCFGLegacyPass, "loop-simplifycfg",
"Simplify loop CFG", false, false)
INITIALIZE_PASS_DEPENDENCY(LoopPass)
+INITIALIZE_PASS_DEPENDENCY(MemorySSAWrapperPass)
INITIALIZE_PASS_END(LoopSimplifyCFGLegacyPass, "loop-simplifycfg",
"Simplify loop CFG", false, false)
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D50911.162035.patch
Type: text/x-patch
Size: 4352 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20180822/71a797ac/attachment.bin>
More information about the llvm-commits
mailing list