[PM] Update Polly for LLVM r226459 which removed another pass argument
[polly-mirror.git] / lib / Support / ScopHelper.cpp
blob52e673357ae11c9d37e524b7eaedc49581244898
1 //===- ScopHelper.cpp - Some Helper Functions for Scop. ------------------===//
2 //
3 // The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // Small functions that help with Scop and LLVM-IR.
12 //===----------------------------------------------------------------------===//
14 #include "polly/Support/ScopHelper.h"
15 #include "polly/ScopInfo.h"
16 #include "llvm/Analysis/AliasAnalysis.h"
17 #include "llvm/Analysis/LoopInfo.h"
18 #include "llvm/Analysis/RegionInfo.h"
19 #include "llvm/Analysis/ScalarEvolution.h"
20 #include "llvm/Analysis/ScalarEvolutionExpressions.h"
21 #include "llvm/IR/CFG.h"
22 #include "llvm/Support/Debug.h"
23 #include "llvm/Transforms/Utils/BasicBlockUtils.h"
25 using namespace llvm;
27 #define DEBUG_TYPE "polly-scop-helper"
29 // Helper function for Scop
30 // TODO: Add assertion to not allow parameter to be null
31 //===----------------------------------------------------------------------===//
32 // Temporary Hack for extended region tree.
33 // Cast the region to loop if there is a loop have the same header and exit.
34 Loop *polly::castToLoop(const Region &R, LoopInfo &LI) {
35 BasicBlock *entry = R.getEntry();
37 if (!LI.isLoopHeader(entry))
38 return 0;
40 Loop *L = LI.getLoopFor(entry);
42 BasicBlock *exit = L->getExitBlock();
44 // Is the loop with multiple exits?
45 if (!exit)
46 return 0;
48 if (exit != R.getExit()) {
49 // SubRegion/ParentRegion with the same entry.
50 assert((R.getNode(R.getEntry())->isSubRegion() ||
51 R.getParent()->getEntry() == entry) &&
52 "Expect the loop is the smaller or bigger region");
53 return 0;
56 return L;
59 Value *polly::getPointerOperand(Instruction &Inst) {
60 if (LoadInst *load = dyn_cast<LoadInst>(&Inst))
61 return load->getPointerOperand();
62 else if (StoreInst *store = dyn_cast<StoreInst>(&Inst))
63 return store->getPointerOperand();
64 else if (GetElementPtrInst *gep = dyn_cast<GetElementPtrInst>(&Inst))
65 return gep->getPointerOperand();
67 return 0;
70 Type *polly::getAccessInstType(Instruction *AccInst) {
71 if (StoreInst *Store = dyn_cast<StoreInst>(AccInst))
72 return Store->getValueOperand()->getType();
73 return AccInst->getType();
76 bool polly::hasInvokeEdge(const PHINode *PN) {
77 for (unsigned i = 0, e = PN->getNumIncomingValues(); i < e; ++i)
78 if (InvokeInst *II = dyn_cast<InvokeInst>(PN->getIncomingValue(i)))
79 if (II->getParent() == PN->getIncomingBlock(i))
80 return true;
82 return false;
85 BasicBlock *polly::createSingleExitEdge(Region *R, Pass *P) {
86 BasicBlock *BB = R->getExit();
88 SmallVector<BasicBlock *, 4> Preds;
89 for (pred_iterator PI = pred_begin(BB), PE = pred_end(BB); PI != PE; ++PI)
90 if (R->contains(*PI))
91 Preds.push_back(*PI);
93 auto *AA = P->getAnalysisIfAvailable<AliasAnalysis>();
94 auto *DTWP = P->getAnalysisIfAvailable<DominatorTreeWrapperPass>();
95 auto *DT = DTWP ? &DTWP->getDomTree() : nullptr;
96 auto *LIWP = P->getAnalysisIfAvailable<LoopInfoWrapperPass>();
97 auto *LI = LIWP ? &LIWP->getLoopInfo() : nullptr;
99 return SplitBlockPredecessors(BB, Preds, ".region", AA, DT, LI);
102 static void replaceScopAndRegionEntry(polly::Scop *S, BasicBlock *OldEntry,
103 BasicBlock *NewEntry) {
104 if (polly::ScopStmt *Stmt = S->getStmtForBasicBlock(OldEntry))
105 Stmt->setBasicBlock(NewEntry);
107 S->getRegion().replaceEntryRecursive(NewEntry);
110 BasicBlock *polly::simplifyRegion(Scop *S, Pass *P) {
111 Region *R = &S->getRegion();
113 // The entering block for the region.
114 BasicBlock *EnteringBB = R->getEnteringBlock();
115 BasicBlock *OldEntry = R->getEntry();
116 BasicBlock *NewEntry = nullptr;
118 auto *DTWP = P->getAnalysisIfAvailable<DominatorTreeWrapperPass>();
119 auto *DT = DTWP ? &DTWP->getDomTree() : nullptr;
120 auto *LIWP = P->getAnalysisIfAvailable<LoopInfoWrapperPass>();
121 auto *LI = LIWP ? &LIWP->getLoopInfo() : nullptr;
123 // Create single entry edge if the region has multiple entry edges.
124 if (!EnteringBB) {
125 NewEntry = SplitBlock(OldEntry, OldEntry->begin(), DT, LI);
126 EnteringBB = OldEntry;
129 // Create an unconditional entry edge.
130 if (EnteringBB->getTerminator()->getNumSuccessors() != 1) {
131 BasicBlock *EntryBB = NewEntry ? NewEntry : OldEntry;
132 BasicBlock *SplitEdgeBB = SplitEdge(EnteringBB, EntryBB, DT, LI);
134 // Once the edge between EnteringBB and EntryBB is split, two cases arise.
135 // The first is simple. The new block is inserted between EnteringBB and
136 // EntryBB. In this case no further action is needed. However it might
137 // happen (if the splitted edge is not critical) that the new block is
138 // inserted __after__ EntryBB causing the following situation:
140 // EnteringBB
141 // _|_
142 // | |
143 // | \-> some_other_BB_not_in_R
144 // V
145 // EntryBB
146 // |
147 // V
148 // SplitEdgeBB
150 // In this case we need to swap the role of EntryBB and SplitEdgeBB.
152 // Check which case SplitEdge produced:
153 if (SplitEdgeBB->getTerminator()->getSuccessor(0) == EntryBB) {
154 // First (simple) case.
155 EnteringBB = SplitEdgeBB;
156 } else {
157 // Second (complicated) case.
158 NewEntry = SplitEdgeBB;
159 EnteringBB = EntryBB;
162 EnteringBB->setName("polly.entering.block");
165 if (NewEntry)
166 replaceScopAndRegionEntry(S, OldEntry, NewEntry);
168 // Create single exit edge if the region has multiple exit edges.
169 if (!R->getExitingBlock()) {
170 BasicBlock *NewExit = createSingleExitEdge(R, P);
172 for (auto &&SubRegion : *R)
173 SubRegion->replaceExitRecursive(NewExit);
176 return EnteringBB;
179 void polly::splitEntryBlockForAlloca(BasicBlock *EntryBlock, Pass *P) {
180 // Find first non-alloca instruction. Every basic block has a non-alloc
181 // instruction, as every well formed basic block has a terminator.
182 BasicBlock::iterator I = EntryBlock->begin();
183 while (isa<AllocaInst>(I))
184 ++I;
186 auto *DTWP = P->getAnalysisIfAvailable<DominatorTreeWrapperPass>();
187 auto *DT = DTWP ? &DTWP->getDomTree() : nullptr;
188 auto *LIWP = P->getAnalysisIfAvailable<LoopInfoWrapperPass>();
189 auto *LI = LIWP ? &LIWP->getLoopInfo() : nullptr;
191 // SplitBlock updates DT, DF and LI.
192 BasicBlock *NewEntry = SplitBlock(EntryBlock, I, DT, LI);
193 if (RegionInfoPass *RIP = P->getAnalysisIfAvailable<RegionInfoPass>())
194 RIP->getRegionInfo().splitBlock(NewEntry, EntryBlock);