blob: 28812a457197704f23145e61e7bf980272c43279 [file] [log] [blame]
Matt Arsenaultd46fce12013-06-19 20:18:24 +00001//===-- StructurizeCFG.cpp ------------------------------------------------===//
Tom Stellardf8794352012-12-19 22:10:31 +00002//
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//===----------------------------------------------------------------------===//
Tom Stellardf8794352012-12-19 22:10:31 +00009
Matt Arsenaultd46fce12013-06-19 20:18:24 +000010#include "llvm/Transforms/Scalar.h"
Christian Konig90b45122013-03-26 10:24:20 +000011#include "llvm/ADT/MapVector.h"
Tom Stellard071ec902015-02-04 20:49:44 +000012#include "llvm/ADT/PostOrderIterator.h"
Benjamin Kramer799003b2015-03-23 19:32:43 +000013#include "llvm/ADT/SCCIterator.h"
Tom Stellard1f0dded2014-12-03 04:28:32 +000014#include "llvm/Analysis/LoopInfo.h"
Tom Stellardf8794352012-12-19 22:10:31 +000015#include "llvm/Analysis/RegionInfo.h"
Chandler Carruthbe810232013-01-02 10:22:59 +000016#include "llvm/Analysis/RegionIterator.h"
Tom Stellardf8794352012-12-19 22:10:31 +000017#include "llvm/Analysis/RegionPass.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000018#include "llvm/IR/Module.h"
Chandler Carruth820a9082014-03-04 11:08:18 +000019#include "llvm/IR/PatternMatch.h"
Tom Stellard071ec902015-02-04 20:49:44 +000020#include "llvm/Support/Debug.h"
Benjamin Kramer799003b2015-03-23 19:32:43 +000021#include "llvm/Support/raw_ostream.h"
Benjamin Kramerd78bb462013-05-23 17:10:37 +000022#include "llvm/Transforms/Utils/SSAUpdater.h"
Tom Stellardf8794352012-12-19 22:10:31 +000023
24using namespace llvm;
Christian Konigd8860992013-02-16 11:27:50 +000025using namespace llvm::PatternMatch;
Tom Stellardf8794352012-12-19 22:10:31 +000026
Chandler Carruth964daaa2014-04-22 02:55:47 +000027#define DEBUG_TYPE "structurizecfg"
28
Tom Stellardf8794352012-12-19 22:10:31 +000029namespace {
30
31// Definition of the complex types used in this pass.
32
33typedef std::pair<BasicBlock *, Value *> BBValuePair;
Tom Stellardf8794352012-12-19 22:10:31 +000034
35typedef SmallVector<RegionNode*, 8> RNVector;
36typedef SmallVector<BasicBlock*, 8> BBVector;
Tom Stellard048f14f2013-02-08 22:24:37 +000037typedef SmallVector<BranchInst*, 8> BranchVector;
Tom Stellardf8794352012-12-19 22:10:31 +000038typedef SmallVector<BBValuePair, 2> BBValueVector;
39
Tom Stellard048f14f2013-02-08 22:24:37 +000040typedef SmallPtrSet<BasicBlock *, 8> BBSet;
41
Christian Konig90b45122013-03-26 10:24:20 +000042typedef MapVector<PHINode *, BBValueVector> PhiMap;
43typedef MapVector<BasicBlock *, BBVector> BB2BBVecMap;
44
Christian Konigd08e3d72013-02-16 11:27:29 +000045typedef DenseMap<DomTreeNode *, unsigned> DTN2UnsignedMap;
Tom Stellardf8794352012-12-19 22:10:31 +000046typedef DenseMap<BasicBlock *, PhiMap> BBPhiMap;
47typedef DenseMap<BasicBlock *, Value *> BBPredicates;
48typedef DenseMap<BasicBlock *, BBPredicates> PredMap;
Christian Konigfc6a9852013-02-16 11:27:45 +000049typedef DenseMap<BasicBlock *, BasicBlock*> BB2BBMap;
Tom Stellardf8794352012-12-19 22:10:31 +000050
51// The name for newly created blocks.
52
Craig Topperd3a34f82013-07-16 01:17:10 +000053static const char *const FlowBlockName = "Flow";
Tom Stellardf8794352012-12-19 22:10:31 +000054
Christian Konigd08e3d72013-02-16 11:27:29 +000055/// @brief Find the nearest common dominator for multiple BasicBlocks
56///
Matt Arsenaultd46fce12013-06-19 20:18:24 +000057/// Helper class for StructurizeCFG
Christian Konigd08e3d72013-02-16 11:27:29 +000058/// TODO: Maybe move into common code
59class NearestCommonDominator {
Christian Konigd08e3d72013-02-16 11:27:29 +000060 DominatorTree *DT;
61
62 DTN2UnsignedMap IndexMap;
63
64 BasicBlock *Result;
65 unsigned ResultIndex;
66 bool ExplicitMentioned;
67
68public:
69 /// \brief Start a new query
70 NearestCommonDominator(DominatorTree *DomTree) {
71 DT = DomTree;
Craig Topperf40110f2014-04-25 05:29:35 +000072 Result = nullptr;
Christian Konigd08e3d72013-02-16 11:27:29 +000073 }
74
75 /// \brief Add BB to the resulting dominator
76 void addBlock(BasicBlock *BB, bool Remember = true) {
Christian Konigd08e3d72013-02-16 11:27:29 +000077 DomTreeNode *Node = DT->getNode(BB);
78
Craig Topperf40110f2014-04-25 05:29:35 +000079 if (!Result) {
Christian Konigd08e3d72013-02-16 11:27:29 +000080 unsigned Numbering = 0;
81 for (;Node;Node = Node->getIDom())
82 IndexMap[Node] = ++Numbering;
83 Result = BB;
84 ResultIndex = 1;
85 ExplicitMentioned = Remember;
86 return;
87 }
88
89 for (;Node;Node = Node->getIDom())
90 if (IndexMap.count(Node))
91 break;
92 else
93 IndexMap[Node] = 0;
94
95 assert(Node && "Dominator tree invalid!");
96
97 unsigned Numbering = IndexMap[Node];
98 if (Numbering > ResultIndex) {
99 Result = Node->getBlock();
100 ResultIndex = Numbering;
101 ExplicitMentioned = Remember && (Result == BB);
102 } else if (Numbering == ResultIndex) {
103 ExplicitMentioned |= Remember;
104 }
105 }
106
107 /// \brief Is "Result" one of the BBs added with "Remember" = True?
108 bool wasResultExplicitMentioned() {
109 return ExplicitMentioned;
110 }
111
112 /// \brief Get the query result
113 BasicBlock *getResult() {
114 return Result;
115 }
116};
117
Tom Stellardf8794352012-12-19 22:10:31 +0000118/// @brief Transforms the control flow graph on one single entry/exit region
119/// at a time.
120///
121/// After the transform all "If"/"Then"/"Else" style control flow looks like
122/// this:
123///
124/// \verbatim
125/// 1
126/// ||
127/// | |
128/// 2 |
129/// | /
Matt Arsenaultd46fce12013-06-19 20:18:24 +0000130/// |/
Tom Stellardf8794352012-12-19 22:10:31 +0000131/// 3
132/// || Where:
133/// | | 1 = "If" block, calculates the condition
134/// 4 | 2 = "Then" subregion, runs if the condition is true
135/// | / 3 = "Flow" blocks, newly inserted flow blocks, rejoins the flow
136/// |/ 4 = "Else" optional subregion, runs if the condition is false
137/// 5 5 = "End" block, also rejoins the control flow
138/// \endverbatim
139///
140/// Control flow is expressed as a branch where the true exit goes into the
141/// "Then"/"Else" region, while the false exit skips the region
142/// The condition for the optional "Else" region is expressed as a PHI node.
143/// The incomming values of the PHI node are true for the "If" edge and false
144/// for the "Then" edge.
145///
146/// Additionally to that even complicated loops look like this:
147///
148/// \verbatim
149/// 1
150/// ||
151/// | |
152/// 2 ^ Where:
153/// | / 1 = "Entry" block
154/// |/ 2 = "Loop" optional subregion, with all exits at "Flow" block
155/// 3 3 = "Flow" block, with back edge to entry block
156/// |
157/// \endverbatim
158///
159/// The back edge of the "Flow" block is always on the false side of the branch
160/// while the true side continues the general flow. So the loop condition
161/// consist of a network of PHI nodes where the true incoming values expresses
162/// breaks and the false values expresses continue states.
Matt Arsenaultd46fce12013-06-19 20:18:24 +0000163class StructurizeCFG : public RegionPass {
Tom Stellardf8794352012-12-19 22:10:31 +0000164 Type *Boolean;
165 ConstantInt *BoolTrue;
166 ConstantInt *BoolFalse;
167 UndefValue *BoolUndef;
168
169 Function *Func;
170 Region *ParentRegion;
171
172 DominatorTree *DT;
Tom Stellard1f0dded2014-12-03 04:28:32 +0000173 LoopInfo *LI;
Tom Stellardf8794352012-12-19 22:10:31 +0000174
175 RNVector Order;
Tom Stellard7370ede2013-02-08 22:24:38 +0000176 BBSet Visited;
Christian Konigfc6a9852013-02-16 11:27:45 +0000177
Tom Stellardf8794352012-12-19 22:10:31 +0000178 BBPhiMap DeletedPhis;
Tom Stellard7ec0e4f2013-02-08 22:24:35 +0000179 BB2BBVecMap AddedPhis;
Christian Konigfc6a9852013-02-16 11:27:45 +0000180
181 PredMap Predicates;
Tom Stellard048f14f2013-02-08 22:24:37 +0000182 BranchVector Conditions;
Tom Stellardf8794352012-12-19 22:10:31 +0000183
Christian Konigfc6a9852013-02-16 11:27:45 +0000184 BB2BBMap Loops;
185 PredMap LoopPreds;
186 BranchVector LoopConds;
187
188 RegionNode *PrevNode;
Tom Stellardf8794352012-12-19 22:10:31 +0000189
190 void orderNodes();
191
Christian Konigfc6a9852013-02-16 11:27:45 +0000192 void analyzeLoops(RegionNode *N);
193
Christian Konigd8860992013-02-16 11:27:50 +0000194 Value *invert(Value *Condition);
195
Tom Stellard048f14f2013-02-08 22:24:37 +0000196 Value *buildCondition(BranchInst *Term, unsigned Idx, bool Invert);
Tom Stellardf8794352012-12-19 22:10:31 +0000197
Christian Konigfc6a9852013-02-16 11:27:45 +0000198 void gatherPredicates(RegionNode *N);
Tom Stellardf8794352012-12-19 22:10:31 +0000199
200 void collectInfos();
201
Christian Konigfc6a9852013-02-16 11:27:45 +0000202 void insertConditions(bool Loops);
Tom Stellard048f14f2013-02-08 22:24:37 +0000203
Tom Stellard7ec0e4f2013-02-08 22:24:35 +0000204 void delPhiValues(BasicBlock *From, BasicBlock *To);
205
206 void addPhiValues(BasicBlock *From, BasicBlock *To);
207
208 void setPhiValues();
209
Tom Stellardf8794352012-12-19 22:10:31 +0000210 void killTerminator(BasicBlock *BB);
211
Tom Stellard7370ede2013-02-08 22:24:38 +0000212 void changeExit(RegionNode *Node, BasicBlock *NewExit,
213 bool IncludeDominator);
Tom Stellardf8794352012-12-19 22:10:31 +0000214
Tom Stellard7370ede2013-02-08 22:24:38 +0000215 BasicBlock *getNextFlow(BasicBlock *Dominator);
Tom Stellardf8794352012-12-19 22:10:31 +0000216
Christian Konigfc6a9852013-02-16 11:27:45 +0000217 BasicBlock *needPrefix(bool NeedEmpty);
Tom Stellardf8794352012-12-19 22:10:31 +0000218
Tom Stellard7370ede2013-02-08 22:24:38 +0000219 BasicBlock *needPostfix(BasicBlock *Flow, bool ExitUseAllowed);
220
Christian Konigfc6a9852013-02-16 11:27:45 +0000221 void setPrevNode(BasicBlock *BB);
Tom Stellard7370ede2013-02-08 22:24:38 +0000222
223 bool dominatesPredicates(BasicBlock *BB, RegionNode *Node);
224
Christian Konigfc6a9852013-02-16 11:27:45 +0000225 bool isPredictableTrue(RegionNode *Node);
Tom Stellard7370ede2013-02-08 22:24:38 +0000226
Christian Konigfc6a9852013-02-16 11:27:45 +0000227 void wireFlow(bool ExitUseAllowed, BasicBlock *LoopEnd);
228
229 void handleLoops(bool ExitUseAllowed, BasicBlock *LoopEnd);
Tom Stellardf8794352012-12-19 22:10:31 +0000230
231 void createFlow();
232
Tom Stellardf8794352012-12-19 22:10:31 +0000233 void rebuildSSA();
234
235public:
Matt Arsenaultd46fce12013-06-19 20:18:24 +0000236 static char ID;
Tom Stellardf8794352012-12-19 22:10:31 +0000237
Matt Arsenaultd46fce12013-06-19 20:18:24 +0000238 StructurizeCFG() :
239 RegionPass(ID) {
Tom Stellardd3e916e2013-10-02 17:04:59 +0000240 initializeStructurizeCFGPass(*PassRegistry::getPassRegistry());
Tom Stellardf8794352012-12-19 22:10:31 +0000241 }
242
Christian Konig01fd1f62013-03-01 09:46:11 +0000243 using Pass::doInitialization;
Craig Topper3e4c6972014-03-05 09:10:37 +0000244 bool doInitialization(Region *R, RGPassManager &RGM) override;
Tom Stellardf8794352012-12-19 22:10:31 +0000245
Craig Topper3e4c6972014-03-05 09:10:37 +0000246 bool runOnRegion(Region *R, RGPassManager &RGM) override;
Tom Stellardf8794352012-12-19 22:10:31 +0000247
Craig Topper3e4c6972014-03-05 09:10:37 +0000248 const char *getPassName() const override {
Matt Arsenaultd46fce12013-06-19 20:18:24 +0000249 return "Structurize control flow";
Tom Stellardf8794352012-12-19 22:10:31 +0000250 }
251
Craig Topper3e4c6972014-03-05 09:10:37 +0000252 void getAnalysisUsage(AnalysisUsage &AU) const override {
Tom Stellardd3e916e2013-10-02 17:04:59 +0000253 AU.addRequiredID(LowerSwitchID);
Chandler Carruth73523022014-01-13 13:07:17 +0000254 AU.addRequired<DominatorTreeWrapperPass>();
Chandler Carruth4f8f3072015-01-17 14:16:18 +0000255 AU.addRequired<LoopInfoWrapperPass>();
Chandler Carruth73523022014-01-13 13:07:17 +0000256 AU.addPreserved<DominatorTreeWrapperPass>();
Tom Stellardf8794352012-12-19 22:10:31 +0000257 RegionPass::getAnalysisUsage(AU);
258 }
Tom Stellardf8794352012-12-19 22:10:31 +0000259};
260
261} // end anonymous namespace
262
Matt Arsenaultd46fce12013-06-19 20:18:24 +0000263char StructurizeCFG::ID = 0;
264
265INITIALIZE_PASS_BEGIN(StructurizeCFG, "structurizecfg", "Structurize the CFG",
266 false, false)
Tom Stellardd3e916e2013-10-02 17:04:59 +0000267INITIALIZE_PASS_DEPENDENCY(LowerSwitch)
Chandler Carruth73523022014-01-13 13:07:17 +0000268INITIALIZE_PASS_DEPENDENCY(DominatorTreeWrapperPass)
Matt Arsenault1b8d8372014-07-19 18:29:29 +0000269INITIALIZE_PASS_DEPENDENCY(RegionInfoPass)
Matt Arsenaultd46fce12013-06-19 20:18:24 +0000270INITIALIZE_PASS_END(StructurizeCFG, "structurizecfg", "Structurize the CFG",
271 false, false)
Tom Stellardf8794352012-12-19 22:10:31 +0000272
273/// \brief Initialize the types and constants used in the pass
Matt Arsenaultd46fce12013-06-19 20:18:24 +0000274bool StructurizeCFG::doInitialization(Region *R, RGPassManager &RGM) {
Tom Stellardf8794352012-12-19 22:10:31 +0000275 LLVMContext &Context = R->getEntry()->getContext();
276
277 Boolean = Type::getInt1Ty(Context);
278 BoolTrue = ConstantInt::getTrue(Context);
279 BoolFalse = ConstantInt::getFalse(Context);
280 BoolUndef = UndefValue::get(Boolean);
281
282 return false;
283}
284
285/// \brief Build up the general order of nodes
Matt Arsenaultd46fce12013-06-19 20:18:24 +0000286void StructurizeCFG::orderNodes() {
Tom Stellard071ec902015-02-04 20:49:44 +0000287 RNVector TempOrder;
288 ReversePostOrderTraversal<Region*> RPOT(ParentRegion);
289 TempOrder.append(RPOT.begin(), RPOT.end());
290
291 std::map<Loop*, unsigned> LoopBlocks;
292
293
294 // The reverse post-order traversal of the list gives us an ordering close
295 // to what we want. The only problem with it is that sometimes backedges
296 // for outer loops will be visited before backedges for inner loops.
297 for (RegionNode *RN : TempOrder) {
298 BasicBlock *BB = RN->getEntry();
299 Loop *Loop = LI->getLoopFor(BB);
300 if (!LoopBlocks.count(Loop)) {
301 LoopBlocks[Loop] = 1;
302 continue;
303 }
304 LoopBlocks[Loop]++;
Tom Stellardf8794352012-12-19 22:10:31 +0000305 }
Tom Stellard071ec902015-02-04 20:49:44 +0000306
307 unsigned CurrentLoopDepth = 0;
308 Loop *CurrentLoop = nullptr;
309 BBSet TempVisited;
310 for (RNVector::iterator I = TempOrder.begin(), E = TempOrder.end(); I != E; ++I) {
311 BasicBlock *BB = (*I)->getEntry();
312 unsigned LoopDepth = LI->getLoopDepth(BB);
313
314 if (std::find(Order.begin(), Order.end(), *I) != Order.end())
315 continue;
316
317 if (LoopDepth < CurrentLoopDepth) {
318 // Make sure we have visited all blocks in this loop before moving back to
319 // the outer loop.
320
321 RNVector::iterator LoopI = I;
322 while(LoopBlocks[CurrentLoop]) {
323 LoopI++;
324 BasicBlock *LoopBB = (*LoopI)->getEntry();
325 if (LI->getLoopFor(LoopBB) == CurrentLoop) {
326 LoopBlocks[CurrentLoop]--;
327 Order.push_back(*LoopI);
328 }
329 }
330 }
331
332 CurrentLoop = LI->getLoopFor(BB);
333 if (CurrentLoop) {
334 LoopBlocks[CurrentLoop]--;
335 }
336
337 CurrentLoopDepth = LoopDepth;
338 Order.push_back(*I);
339 }
340
341 // This pass originally used a post-order traversal and then operated on
342 // the list in reverse. Now that we are using a reverse post-order traversal
343 // rather than re-working the whole pass to operate on the list in order,
344 // we just reverse the list and continue to operate on it in reverse.
345 std::reverse(Order.begin(), Order.end());
Tom Stellardf8794352012-12-19 22:10:31 +0000346}
347
Christian Konigfc6a9852013-02-16 11:27:45 +0000348/// \brief Determine the end of the loops
Matt Arsenaultd46fce12013-06-19 20:18:24 +0000349void StructurizeCFG::analyzeLoops(RegionNode *N) {
Christian Konigfc6a9852013-02-16 11:27:45 +0000350 if (N->isSubRegion()) {
351 // Test for exit as back edge
352 BasicBlock *Exit = N->getNodeAs<Region>()->getExit();
353 if (Visited.count(Exit))
354 Loops[Exit] = N->getEntry();
355
356 } else {
357 // Test for sucessors as back edge
358 BasicBlock *BB = N->getNodeAs<BasicBlock>();
359 BranchInst *Term = cast<BranchInst>(BB->getTerminator());
360
Pete Cooperebcd7482015-08-06 20:22:46 +0000361 for (BasicBlock *Succ : Term->successors())
362 if (Visited.count(Succ))
Christian Konigfc6a9852013-02-16 11:27:45 +0000363 Loops[Succ] = BB;
Christian Konigfc6a9852013-02-16 11:27:45 +0000364 }
365}
366
Christian Konigd8860992013-02-16 11:27:50 +0000367/// \brief Invert the given condition
Matt Arsenaultd46fce12013-06-19 20:18:24 +0000368Value *StructurizeCFG::invert(Value *Condition) {
Christian Konigd8860992013-02-16 11:27:50 +0000369 // First: Check if it's a constant
370 if (Condition == BoolTrue)
371 return BoolFalse;
372
373 if (Condition == BoolFalse)
374 return BoolTrue;
375
376 if (Condition == BoolUndef)
377 return BoolUndef;
378
379 // Second: If the condition is already inverted, return the original value
380 if (match(Condition, m_Not(m_Value(Condition))))
381 return Condition;
382
Matt Arsenault9fb6e0b2013-11-22 19:24:37 +0000383 if (Instruction *Inst = dyn_cast<Instruction>(Condition)) {
384 // Third: Check all the users for an invert
385 BasicBlock *Parent = Inst->getParent();
Chandler Carruthcdf47882014-03-09 03:16:01 +0000386 for (User *U : Condition->users())
387 if (Instruction *I = dyn_cast<Instruction>(U))
388 if (I->getParent() == Parent && match(I, m_Not(m_Specific(Condition))))
389 return I;
Matt Arsenault9fb6e0b2013-11-22 19:24:37 +0000390
391 // Last option: Create a new instruction
392 return BinaryOperator::CreateNot(Condition, "", Parent->getTerminator());
Christian Konigd8860992013-02-16 11:27:50 +0000393 }
394
Matt Arsenault9fb6e0b2013-11-22 19:24:37 +0000395 if (Argument *Arg = dyn_cast<Argument>(Condition)) {
396 BasicBlock &EntryBlock = Arg->getParent()->getEntryBlock();
397 return BinaryOperator::CreateNot(Condition,
398 Arg->getName() + ".inv",
399 EntryBlock.getTerminator());
400 }
401
402 llvm_unreachable("Unhandled condition to invert");
Christian Konigd8860992013-02-16 11:27:50 +0000403}
404
Tom Stellard048f14f2013-02-08 22:24:37 +0000405/// \brief Build the condition for one edge
Matt Arsenaultd46fce12013-06-19 20:18:24 +0000406Value *StructurizeCFG::buildCondition(BranchInst *Term, unsigned Idx,
407 bool Invert) {
Tom Stellard048f14f2013-02-08 22:24:37 +0000408 Value *Cond = Invert ? BoolFalse : BoolTrue;
409 if (Term->isConditional()) {
410 Cond = Term->getCondition();
Tom Stellardf8794352012-12-19 22:10:31 +0000411
Aaron Ballman19978552013-06-04 01:03:03 +0000412 if (Idx != (unsigned)Invert)
Christian Konigd8860992013-02-16 11:27:50 +0000413 Cond = invert(Cond);
Tom Stellard048f14f2013-02-08 22:24:37 +0000414 }
415 return Cond;
416}
417
Tom Stellard048f14f2013-02-08 22:24:37 +0000418/// \brief Analyze the predecessors of each block and build up predicates
Matt Arsenaultd46fce12013-06-19 20:18:24 +0000419void StructurizeCFG::gatherPredicates(RegionNode *N) {
Tom Stellardf8794352012-12-19 22:10:31 +0000420 RegionInfo *RI = ParentRegion->getRegionInfo();
Tom Stellard048f14f2013-02-08 22:24:37 +0000421 BasicBlock *BB = N->getEntry();
422 BBPredicates &Pred = Predicates[BB];
Christian Konigfc6a9852013-02-16 11:27:45 +0000423 BBPredicates &LPred = LoopPreds[BB];
Tom Stellardf8794352012-12-19 22:10:31 +0000424
Duncan P. N. Exon Smith6c990152014-07-21 17:06:51 +0000425 for (pred_iterator PI = pred_begin(BB), PE = pred_end(BB);
426 PI != PE; ++PI) {
427
Christian Konigfc6a9852013-02-16 11:27:45 +0000428 // Ignore it if it's a branch from outside into our region entry
Duncan P. N. Exon Smith6c990152014-07-21 17:06:51 +0000429 if (!ParentRegion->contains(*PI))
Tom Stellard048f14f2013-02-08 22:24:37 +0000430 continue;
Tom Stellardf8794352012-12-19 22:10:31 +0000431
Duncan P. N. Exon Smith6c990152014-07-21 17:06:51 +0000432 Region *R = RI->getRegionFor(*PI);
Tom Stellard048f14f2013-02-08 22:24:37 +0000433 if (R == ParentRegion) {
Tom Stellardf8794352012-12-19 22:10:31 +0000434
Tom Stellard048f14f2013-02-08 22:24:37 +0000435 // It's a top level block in our region
Duncan P. N. Exon Smith6c990152014-07-21 17:06:51 +0000436 BranchInst *Term = cast<BranchInst>((*PI)->getTerminator());
Tom Stellard048f14f2013-02-08 22:24:37 +0000437 for (unsigned i = 0, e = Term->getNumSuccessors(); i != e; ++i) {
438 BasicBlock *Succ = Term->getSuccessor(i);
439 if (Succ != BB)
440 continue;
Tom Stellardf8794352012-12-19 22:10:31 +0000441
Duncan P. N. Exon Smith6c990152014-07-21 17:06:51 +0000442 if (Visited.count(*PI)) {
Tom Stellard048f14f2013-02-08 22:24:37 +0000443 // Normal forward edge
444 if (Term->isConditional()) {
445 // Try to treat it like an ELSE block
446 BasicBlock *Other = Term->getSuccessor(!i);
Christian Konigfc6a9852013-02-16 11:27:45 +0000447 if (Visited.count(Other) && !Loops.count(Other) &&
Duncan P. N. Exon Smith6c990152014-07-21 17:06:51 +0000448 !Pred.count(Other) && !Pred.count(*PI)) {
Tom Stellardf8794352012-12-19 22:10:31 +0000449
Tom Stellard048f14f2013-02-08 22:24:37 +0000450 Pred[Other] = BoolFalse;
Duncan P. N. Exon Smith6c990152014-07-21 17:06:51 +0000451 Pred[*PI] = BoolTrue;
Tom Stellard048f14f2013-02-08 22:24:37 +0000452 continue;
453 }
454 }
Duncan P. N. Exon Smith6c990152014-07-21 17:06:51 +0000455 Pred[*PI] = buildCondition(Term, i, false);
Matt Arsenaultd46fce12013-06-19 20:18:24 +0000456
Tom Stellard048f14f2013-02-08 22:24:37 +0000457 } else {
458 // Back edge
Duncan P. N. Exon Smith6c990152014-07-21 17:06:51 +0000459 LPred[*PI] = buildCondition(Term, i, true);
Tom Stellard048f14f2013-02-08 22:24:37 +0000460 }
Tom Stellard048f14f2013-02-08 22:24:37 +0000461 }
462
463 } else {
464
465 // It's an exit from a sub region
Matt Arsenault1b8d8372014-07-19 18:29:29 +0000466 while (R->getParent() != ParentRegion)
Tom Stellard048f14f2013-02-08 22:24:37 +0000467 R = R->getParent();
468
469 // Edge from inside a subregion to its entry, ignore it
Matt Arsenault1b8d8372014-07-19 18:29:29 +0000470 if (*R == *N)
Tom Stellard048f14f2013-02-08 22:24:37 +0000471 continue;
472
473 BasicBlock *Entry = R->getEntry();
Christian Konigfc6a9852013-02-16 11:27:45 +0000474 if (Visited.count(Entry))
475 Pred[Entry] = BoolTrue;
476 else
477 LPred[Entry] = BoolFalse;
Tom Stellardf8794352012-12-19 22:10:31 +0000478 }
479 }
480}
481
482/// \brief Collect various loop and predicate infos
Matt Arsenaultd46fce12013-06-19 20:18:24 +0000483void StructurizeCFG::collectInfos() {
Tom Stellardf8794352012-12-19 22:10:31 +0000484 // Reset predicate
485 Predicates.clear();
486
487 // and loop infos
Christian Konigfc6a9852013-02-16 11:27:45 +0000488 Loops.clear();
489 LoopPreds.clear();
Tom Stellardf8794352012-12-19 22:10:31 +0000490
Tom Stellard048f14f2013-02-08 22:24:37 +0000491 // Reset the visited nodes
492 Visited.clear();
493
494 for (RNVector::reverse_iterator OI = Order.rbegin(), OE = Order.rend();
495 OI != OE; ++OI) {
Tom Stellardf8794352012-12-19 22:10:31 +0000496
Tom Stellard071ec902015-02-04 20:49:44 +0000497 DEBUG(dbgs() << "Visiting: " <<
498 ((*OI)->isSubRegion() ? "SubRegion with entry: " : "") <<
499 (*OI)->getEntry()->getName() << " Loop Depth: " << LI->getLoopDepth((*OI)->getEntry()) << "\n");
500
Tom Stellardf8794352012-12-19 22:10:31 +0000501 // Analyze all the conditions leading to a node
Christian Konigfc6a9852013-02-16 11:27:45 +0000502 gatherPredicates(*OI);
Tom Stellardf8794352012-12-19 22:10:31 +0000503
Tom Stellard048f14f2013-02-08 22:24:37 +0000504 // Remember that we've seen this node
Tom Stellard7370ede2013-02-08 22:24:38 +0000505 Visited.insert((*OI)->getEntry());
Tom Stellardf8794352012-12-19 22:10:31 +0000506
Christian Konigfc6a9852013-02-16 11:27:45 +0000507 // Find the last back edges
508 analyzeLoops(*OI);
Tom Stellard048f14f2013-02-08 22:24:37 +0000509 }
Tom Stellard048f14f2013-02-08 22:24:37 +0000510}
511
512/// \brief Insert the missing branch conditions
Matt Arsenaultd46fce12013-06-19 20:18:24 +0000513void StructurizeCFG::insertConditions(bool Loops) {
Christian Konigfc6a9852013-02-16 11:27:45 +0000514 BranchVector &Conds = Loops ? LoopConds : Conditions;
515 Value *Default = Loops ? BoolTrue : BoolFalse;
Tom Stellard048f14f2013-02-08 22:24:37 +0000516 SSAUpdater PhiInserter;
517
Matt Arsenault04b67ce2014-05-19 17:52:48 +0000518 for (BranchInst *Term : Conds) {
Tom Stellard048f14f2013-02-08 22:24:37 +0000519 assert(Term->isConditional());
520
Christian Konigfc6a9852013-02-16 11:27:45 +0000521 BasicBlock *Parent = Term->getParent();
522 BasicBlock *SuccTrue = Term->getSuccessor(0);
523 BasicBlock *SuccFalse = Term->getSuccessor(1);
Tom Stellard048f14f2013-02-08 22:24:37 +0000524
Christian Konigb5d88662013-02-16 11:27:40 +0000525 PhiInserter.Initialize(Boolean, "");
526 PhiInserter.AddAvailableValue(&Func->getEntryBlock(), Default);
Christian Konigfc6a9852013-02-16 11:27:45 +0000527 PhiInserter.AddAvailableValue(Loops ? SuccFalse : Parent, Default);
Christian Konigb5d88662013-02-16 11:27:40 +0000528
Christian Konigfc6a9852013-02-16 11:27:45 +0000529 BBPredicates &Preds = Loops ? LoopPreds[SuccFalse] : Predicates[SuccTrue];
Christian Konigb5d88662013-02-16 11:27:40 +0000530
531 NearestCommonDominator Dominator(DT);
532 Dominator.addBlock(Parent, false);
533
Craig Topperf40110f2014-04-25 05:29:35 +0000534 Value *ParentValue = nullptr;
Tom Stellard048f14f2013-02-08 22:24:37 +0000535 for (BBPredicates::iterator PI = Preds.begin(), PE = Preds.end();
536 PI != PE; ++PI) {
537
Christian Konigb5d88662013-02-16 11:27:40 +0000538 if (PI->first == Parent) {
539 ParentValue = PI->second;
540 break;
541 }
Tom Stellard048f14f2013-02-08 22:24:37 +0000542 PhiInserter.AddAvailableValue(PI->first, PI->second);
Christian Konigb5d88662013-02-16 11:27:40 +0000543 Dominator.addBlock(PI->first);
Tom Stellard048f14f2013-02-08 22:24:37 +0000544 }
545
Christian Konigb5d88662013-02-16 11:27:40 +0000546 if (ParentValue) {
547 Term->setCondition(ParentValue);
548 } else {
549 if (!Dominator.wasResultExplicitMentioned())
550 PhiInserter.AddAvailableValue(Dominator.getResult(), Default);
551
Tom Stellard048f14f2013-02-08 22:24:37 +0000552 Term->setCondition(PhiInserter.GetValueInMiddleOfBlock(Parent));
Christian Konigb5d88662013-02-16 11:27:40 +0000553 }
Tom Stellardf8794352012-12-19 22:10:31 +0000554 }
555}
556
Tom Stellard7ec0e4f2013-02-08 22:24:35 +0000557/// \brief Remove all PHI values coming from "From" into "To" and remember
558/// them in DeletedPhis
Matt Arsenaultd46fce12013-06-19 20:18:24 +0000559void StructurizeCFG::delPhiValues(BasicBlock *From, BasicBlock *To) {
Tom Stellard7ec0e4f2013-02-08 22:24:35 +0000560 PhiMap &Map = DeletedPhis[To];
561 for (BasicBlock::iterator I = To->begin(), E = To->end();
562 I != E && isa<PHINode>(*I);) {
563
564 PHINode &Phi = cast<PHINode>(*I++);
565 while (Phi.getBasicBlockIndex(From) != -1) {
566 Value *Deleted = Phi.removeIncomingValue(From, false);
567 Map[&Phi].push_back(std::make_pair(From, Deleted));
568 }
569 }
570}
571
572/// \brief Add a dummy PHI value as soon as we knew the new predecessor
Matt Arsenaultd46fce12013-06-19 20:18:24 +0000573void StructurizeCFG::addPhiValues(BasicBlock *From, BasicBlock *To) {
Tom Stellard7ec0e4f2013-02-08 22:24:35 +0000574 for (BasicBlock::iterator I = To->begin(), E = To->end();
575 I != E && isa<PHINode>(*I);) {
576
577 PHINode &Phi = cast<PHINode>(*I++);
578 Value *Undef = UndefValue::get(Phi.getType());
579 Phi.addIncoming(Undef, From);
580 }
581 AddedPhis[To].push_back(From);
582}
583
584/// \brief Add the real PHI value as soon as everything is set up
Matt Arsenaultd46fce12013-06-19 20:18:24 +0000585void StructurizeCFG::setPhiValues() {
Tom Stellard7ec0e4f2013-02-08 22:24:35 +0000586 SSAUpdater Updater;
587 for (BB2BBVecMap::iterator AI = AddedPhis.begin(), AE = AddedPhis.end();
588 AI != AE; ++AI) {
589
590 BasicBlock *To = AI->first;
591 BBVector &From = AI->second;
592
593 if (!DeletedPhis.count(To))
594 continue;
595
596 PhiMap &Map = DeletedPhis[To];
597 for (PhiMap::iterator PI = Map.begin(), PE = Map.end();
598 PI != PE; ++PI) {
599
600 PHINode *Phi = PI->first;
601 Value *Undef = UndefValue::get(Phi->getType());
602 Updater.Initialize(Phi->getType(), "");
603 Updater.AddAvailableValue(&Func->getEntryBlock(), Undef);
604 Updater.AddAvailableValue(To, Undef);
605
Christian Konig0bccf9d2013-02-16 11:27:35 +0000606 NearestCommonDominator Dominator(DT);
607 Dominator.addBlock(To, false);
Tom Stellard7ec0e4f2013-02-08 22:24:35 +0000608 for (BBValueVector::iterator VI = PI->second.begin(),
609 VE = PI->second.end(); VI != VE; ++VI) {
610
611 Updater.AddAvailableValue(VI->first, VI->second);
Christian Konig0bccf9d2013-02-16 11:27:35 +0000612 Dominator.addBlock(VI->first);
Tom Stellard7ec0e4f2013-02-08 22:24:35 +0000613 }
614
Christian Konig0bccf9d2013-02-16 11:27:35 +0000615 if (!Dominator.wasResultExplicitMentioned())
616 Updater.AddAvailableValue(Dominator.getResult(), Undef);
617
Tom Stellard7ec0e4f2013-02-08 22:24:35 +0000618 for (BBVector::iterator FI = From.begin(), FE = From.end();
619 FI != FE; ++FI) {
620
621 int Idx = Phi->getBasicBlockIndex(*FI);
622 assert(Idx != -1);
623 Phi->setIncomingValue(Idx, Updater.GetValueAtEndOfBlock(*FI));
624 }
625 }
626
627 DeletedPhis.erase(To);
628 }
629 assert(DeletedPhis.empty());
630}
631
Tom Stellard7370ede2013-02-08 22:24:38 +0000632/// \brief Remove phi values from all successors and then remove the terminator.
Matt Arsenaultd46fce12013-06-19 20:18:24 +0000633void StructurizeCFG::killTerminator(BasicBlock *BB) {
Tom Stellardf8794352012-12-19 22:10:31 +0000634 TerminatorInst *Term = BB->getTerminator();
635 if (!Term)
636 return;
637
Duncan P. N. Exon Smith6c990152014-07-21 17:06:51 +0000638 for (succ_iterator SI = succ_begin(BB), SE = succ_end(BB);
639 SI != SE; ++SI) {
640
641 delPhiValues(BB, *SI);
642 }
Tom Stellardf8794352012-12-19 22:10:31 +0000643
644 Term->eraseFromParent();
645}
646
Tom Stellard7370ede2013-02-08 22:24:38 +0000647/// \brief Let node exit(s) point to NewExit
Matt Arsenaultd46fce12013-06-19 20:18:24 +0000648void StructurizeCFG::changeExit(RegionNode *Node, BasicBlock *NewExit,
649 bool IncludeDominator) {
Tom Stellard7370ede2013-02-08 22:24:38 +0000650 if (Node->isSubRegion()) {
651 Region *SubRegion = Node->getNodeAs<Region>();
652 BasicBlock *OldExit = SubRegion->getExit();
Craig Topperf40110f2014-04-25 05:29:35 +0000653 BasicBlock *Dominator = nullptr;
Tom Stellardf8794352012-12-19 22:10:31 +0000654
Tom Stellard7370ede2013-02-08 22:24:38 +0000655 // Find all the edges from the sub region to the exit
Duncan P. N. Exon Smith6c990152014-07-21 17:06:51 +0000656 for (pred_iterator I = pred_begin(OldExit), E = pred_end(OldExit);
657 I != E;) {
658
659 BasicBlock *BB = *I++;
Tom Stellard7370ede2013-02-08 22:24:38 +0000660 if (!SubRegion->contains(BB))
661 continue;
662
663 // Modify the edges to point to the new exit
664 delPhiValues(BB, OldExit);
665 BB->getTerminator()->replaceUsesOfWith(OldExit, NewExit);
666 addPhiValues(BB, NewExit);
667
668 // Find the new dominator (if requested)
669 if (IncludeDominator) {
670 if (!Dominator)
671 Dominator = BB;
672 else
673 Dominator = DT->findNearestCommonDominator(Dominator, BB);
674 }
Tom Stellardf8794352012-12-19 22:10:31 +0000675 }
676
Tom Stellard7370ede2013-02-08 22:24:38 +0000677 // Change the dominator (if requested)
678 if (Dominator)
679 DT->changeImmediateDominator(NewExit, Dominator);
Tom Stellardf8794352012-12-19 22:10:31 +0000680
Tom Stellard7370ede2013-02-08 22:24:38 +0000681 // Update the region info
682 SubRegion->replaceExit(NewExit);
Tom Stellardf8794352012-12-19 22:10:31 +0000683
Tom Stellardf8794352012-12-19 22:10:31 +0000684 } else {
Tom Stellard7370ede2013-02-08 22:24:38 +0000685 BasicBlock *BB = Node->getNodeAs<BasicBlock>();
686 killTerminator(BB);
687 BranchInst::Create(NewExit, BB);
688 addPhiValues(BB, NewExit);
689 if (IncludeDominator)
690 DT->changeImmediateDominator(NewExit, BB);
Tom Stellardf8794352012-12-19 22:10:31 +0000691 }
Tom Stellardf8794352012-12-19 22:10:31 +0000692}
693
Tom Stellardf8794352012-12-19 22:10:31 +0000694/// \brief Create a new flow node and update dominator tree and region info
Matt Arsenaultd46fce12013-06-19 20:18:24 +0000695BasicBlock *StructurizeCFG::getNextFlow(BasicBlock *Dominator) {
Tom Stellardf8794352012-12-19 22:10:31 +0000696 LLVMContext &Context = Func->getContext();
697 BasicBlock *Insert = Order.empty() ? ParentRegion->getExit() :
698 Order.back()->getEntry();
699 BasicBlock *Flow = BasicBlock::Create(Context, FlowBlockName,
700 Func, Insert);
Tom Stellard7370ede2013-02-08 22:24:38 +0000701 DT->addNewBlock(Flow, Dominator);
Tom Stellardf8794352012-12-19 22:10:31 +0000702 ParentRegion->getRegionInfo()->setRegionFor(Flow, ParentRegion);
Tom Stellardf8794352012-12-19 22:10:31 +0000703 return Flow;
704}
705
Tom Stellard7370ede2013-02-08 22:24:38 +0000706/// \brief Create a new or reuse the previous node as flow node
Matt Arsenaultd46fce12013-06-19 20:18:24 +0000707BasicBlock *StructurizeCFG::needPrefix(bool NeedEmpty) {
Christian Konigfc6a9852013-02-16 11:27:45 +0000708 BasicBlock *Entry = PrevNode->getEntry();
Tom Stellard7370ede2013-02-08 22:24:38 +0000709
Christian Konigfc6a9852013-02-16 11:27:45 +0000710 if (!PrevNode->isSubRegion()) {
711 killTerminator(Entry);
712 if (!NeedEmpty || Entry->getFirstInsertionPt() == Entry->end())
713 return Entry;
Tom Stellard7370ede2013-02-08 22:24:38 +0000714
Matt Arsenaultd46fce12013-06-19 20:18:24 +0000715 }
Tom Stellard7370ede2013-02-08 22:24:38 +0000716
Christian Konigfc6a9852013-02-16 11:27:45 +0000717 // create a new flow node
718 BasicBlock *Flow = getNextFlow(Entry);
Tom Stellard7370ede2013-02-08 22:24:38 +0000719
Christian Konigfc6a9852013-02-16 11:27:45 +0000720 // and wire it up
721 changeExit(PrevNode, Flow, true);
722 PrevNode = ParentRegion->getBBNode(Flow);
723 return Flow;
Tom Stellard7370ede2013-02-08 22:24:38 +0000724}
725
726/// \brief Returns the region exit if possible, otherwise just a new flow node
Matt Arsenaultd46fce12013-06-19 20:18:24 +0000727BasicBlock *StructurizeCFG::needPostfix(BasicBlock *Flow,
728 bool ExitUseAllowed) {
Tom Stellard7370ede2013-02-08 22:24:38 +0000729 if (Order.empty() && ExitUseAllowed) {
730 BasicBlock *Exit = ParentRegion->getExit();
731 DT->changeImmediateDominator(Exit, Flow);
732 addPhiValues(Flow, Exit);
733 return Exit;
734 }
735 return getNextFlow(Flow);
736}
737
Christian Konigfc6a9852013-02-16 11:27:45 +0000738/// \brief Set the previous node
Matt Arsenaultd46fce12013-06-19 20:18:24 +0000739void StructurizeCFG::setPrevNode(BasicBlock *BB) {
Craig Topperf40110f2014-04-25 05:29:35 +0000740 PrevNode = ParentRegion->contains(BB) ? ParentRegion->getBBNode(BB)
741 : nullptr;
Tom Stellard7370ede2013-02-08 22:24:38 +0000742}
743
744/// \brief Does BB dominate all the predicates of Node ?
Matt Arsenaultd46fce12013-06-19 20:18:24 +0000745bool StructurizeCFG::dominatesPredicates(BasicBlock *BB, RegionNode *Node) {
Tom Stellard7370ede2013-02-08 22:24:38 +0000746 BBPredicates &Preds = Predicates[Node->getEntry()];
747 for (BBPredicates::iterator PI = Preds.begin(), PE = Preds.end();
748 PI != PE; ++PI) {
749
750 if (!DT->dominates(BB, PI->first))
751 return false;
752 }
753 return true;
754}
755
Tom Stellardf8794352012-12-19 22:10:31 +0000756/// \brief Can we predict that this node will always be called?
Matt Arsenaultd46fce12013-06-19 20:18:24 +0000757bool StructurizeCFG::isPredictableTrue(RegionNode *Node) {
Christian Konigfc6a9852013-02-16 11:27:45 +0000758 BBPredicates &Preds = Predicates[Node->getEntry()];
759 bool Dominated = false;
760
761 // Regionentry is always true
Craig Topperf40110f2014-04-25 05:29:35 +0000762 if (!PrevNode)
Christian Konigfc6a9852013-02-16 11:27:45 +0000763 return true;
Tom Stellardf8794352012-12-19 22:10:31 +0000764
765 for (BBPredicates::iterator I = Preds.begin(), E = Preds.end();
766 I != E; ++I) {
767
768 if (I->second != BoolTrue)
769 return false;
770
Christian Konigfc6a9852013-02-16 11:27:45 +0000771 if (!Dominated && DT->dominates(I->first, PrevNode->getEntry()))
Tom Stellardf8794352012-12-19 22:10:31 +0000772 Dominated = true;
773 }
Tom Stellard7370ede2013-02-08 22:24:38 +0000774
775 // TODO: The dominator check is too strict
Tom Stellardf8794352012-12-19 22:10:31 +0000776 return Dominated;
777}
778
Tom Stellard7370ede2013-02-08 22:24:38 +0000779/// Take one node from the order vector and wire it up
Matt Arsenaultd46fce12013-06-19 20:18:24 +0000780void StructurizeCFG::wireFlow(bool ExitUseAllowed,
781 BasicBlock *LoopEnd) {
Tom Stellard7370ede2013-02-08 22:24:38 +0000782 RegionNode *Node = Order.pop_back_val();
Christian Konigfc6a9852013-02-16 11:27:45 +0000783 Visited.insert(Node->getEntry());
Tom Stellardf8794352012-12-19 22:10:31 +0000784
Christian Konigfc6a9852013-02-16 11:27:45 +0000785 if (isPredictableTrue(Node)) {
Tom Stellard7370ede2013-02-08 22:24:38 +0000786 // Just a linear flow
Christian Konigfc6a9852013-02-16 11:27:45 +0000787 if (PrevNode) {
788 changeExit(PrevNode, Node->getEntry(), true);
Tom Stellardf8794352012-12-19 22:10:31 +0000789 }
Christian Konigfc6a9852013-02-16 11:27:45 +0000790 PrevNode = Node;
Tom Stellardf8794352012-12-19 22:10:31 +0000791
792 } else {
Tom Stellard7370ede2013-02-08 22:24:38 +0000793 // Insert extra prefix node (or reuse last one)
Christian Konigfc6a9852013-02-16 11:27:45 +0000794 BasicBlock *Flow = needPrefix(false);
Tom Stellardf8794352012-12-19 22:10:31 +0000795
Tom Stellard7370ede2013-02-08 22:24:38 +0000796 // Insert extra postfix node (or use exit instead)
797 BasicBlock *Entry = Node->getEntry();
Christian Konigfc6a9852013-02-16 11:27:45 +0000798 BasicBlock *Next = needPostfix(Flow, ExitUseAllowed);
Tom Stellard7370ede2013-02-08 22:24:38 +0000799
800 // let it point to entry and next block
801 Conditions.push_back(BranchInst::Create(Entry, Next, BoolUndef, Flow));
802 addPhiValues(Flow, Entry);
803 DT->changeImmediateDominator(Entry, Flow);
804
Christian Konigfc6a9852013-02-16 11:27:45 +0000805 PrevNode = Node;
806 while (!Order.empty() && !Visited.count(LoopEnd) &&
Tom Stellard7370ede2013-02-08 22:24:38 +0000807 dominatesPredicates(Entry, Order.back())) {
Christian Konigfc6a9852013-02-16 11:27:45 +0000808 handleLoops(false, LoopEnd);
Tom Stellard7370ede2013-02-08 22:24:38 +0000809 }
810
Christian Konigfc6a9852013-02-16 11:27:45 +0000811 changeExit(PrevNode, Next, false);
812 setPrevNode(Next);
813 }
814}
815
Matt Arsenaultd46fce12013-06-19 20:18:24 +0000816void StructurizeCFG::handleLoops(bool ExitUseAllowed,
817 BasicBlock *LoopEnd) {
Christian Konigfc6a9852013-02-16 11:27:45 +0000818 RegionNode *Node = Order.back();
819 BasicBlock *LoopStart = Node->getEntry();
820
821 if (!Loops.count(LoopStart)) {
822 wireFlow(ExitUseAllowed, LoopEnd);
823 return;
Tom Stellardf8794352012-12-19 22:10:31 +0000824 }
825
Christian Konigfc6a9852013-02-16 11:27:45 +0000826 if (!isPredictableTrue(Node))
827 LoopStart = needPrefix(true);
828
829 LoopEnd = Loops[Node->getEntry()];
830 wireFlow(false, LoopEnd);
831 while (!Visited.count(LoopEnd)) {
832 handleLoops(false, LoopEnd);
833 }
834
Matt Arsenault6ea0aad2013-11-22 19:24:39 +0000835 // If the start of the loop is the entry block, we can't branch to it so
836 // insert a new dummy entry block.
837 Function *LoopFunc = LoopStart->getParent();
838 if (LoopStart == &LoopFunc->getEntryBlock()) {
839 LoopStart->setName("entry.orig");
840
841 BasicBlock *NewEntry =
842 BasicBlock::Create(LoopStart->getContext(),
843 "entry",
844 LoopFunc,
845 LoopStart);
846 BranchInst::Create(LoopStart, NewEntry);
847 }
848
Christian Konigfc6a9852013-02-16 11:27:45 +0000849 // Create an extra loop end node
850 LoopEnd = needPrefix(false);
851 BasicBlock *Next = needPostfix(LoopEnd, ExitUseAllowed);
852 LoopConds.push_back(BranchInst::Create(Next, LoopStart,
853 BoolUndef, LoopEnd));
854 addPhiValues(LoopEnd, LoopStart);
855 setPrevNode(Next);
Tom Stellardf8794352012-12-19 22:10:31 +0000856}
857
Tom Stellardf8794352012-12-19 22:10:31 +0000858/// After this function control flow looks like it should be, but
Tom Stellard7370ede2013-02-08 22:24:38 +0000859/// branches and PHI nodes only have undefined conditions.
Matt Arsenaultd46fce12013-06-19 20:18:24 +0000860void StructurizeCFG::createFlow() {
Tom Stellard7370ede2013-02-08 22:24:38 +0000861 BasicBlock *Exit = ParentRegion->getExit();
862 bool EntryDominatesExit = DT->dominates(ParentRegion->getEntry(), Exit);
863
Tom Stellardf8794352012-12-19 22:10:31 +0000864 DeletedPhis.clear();
Tom Stellard7ec0e4f2013-02-08 22:24:35 +0000865 AddedPhis.clear();
Tom Stellard7370ede2013-02-08 22:24:38 +0000866 Conditions.clear();
Christian Konigfc6a9852013-02-16 11:27:45 +0000867 LoopConds.clear();
Tom Stellardf8794352012-12-19 22:10:31 +0000868
Craig Topperf40110f2014-04-25 05:29:35 +0000869 PrevNode = nullptr;
Christian Konigfc6a9852013-02-16 11:27:45 +0000870 Visited.clear();
871
Tom Stellardf8794352012-12-19 22:10:31 +0000872 while (!Order.empty()) {
Craig Topperf40110f2014-04-25 05:29:35 +0000873 handleLoops(EntryDominatesExit, nullptr);
Tom Stellardf8794352012-12-19 22:10:31 +0000874 }
875
Christian Konigfc6a9852013-02-16 11:27:45 +0000876 if (PrevNode)
877 changeExit(PrevNode, Exit, EntryDominatesExit);
Tom Stellard7370ede2013-02-08 22:24:38 +0000878 else
879 assert(EntryDominatesExit);
Tom Stellardf8794352012-12-19 22:10:31 +0000880}
881
Tom Stellardf8794352012-12-19 22:10:31 +0000882/// Handle a rare case where the disintegrated nodes instructions
883/// no longer dominate all their uses. Not sure if this is really nessasary
Matt Arsenaultd46fce12013-06-19 20:18:24 +0000884void StructurizeCFG::rebuildSSA() {
Tom Stellardf8794352012-12-19 22:10:31 +0000885 SSAUpdater Updater;
Richard Trieu6b1aa5f2015-04-15 01:21:15 +0000886 for (auto *BB : ParentRegion->blocks())
Tom Stellardf8794352012-12-19 22:10:31 +0000887 for (BasicBlock::iterator II = BB->begin(), IE = BB->end();
888 II != IE; ++II) {
889
890 bool Initialized = false;
Chandler Carruthcdf47882014-03-09 03:16:01 +0000891 for (auto I = II->use_begin(), E = II->use_end(); I != E;) {
892 Use &U = *I++;
893 Instruction *User = cast<Instruction>(U.getUser());
Tom Stellardf8794352012-12-19 22:10:31 +0000894 if (User->getParent() == BB) {
895 continue;
896
897 } else if (PHINode *UserPN = dyn_cast<PHINode>(User)) {
Chandler Carruthcdf47882014-03-09 03:16:01 +0000898 if (UserPN->getIncomingBlock(U) == BB)
Tom Stellardf8794352012-12-19 22:10:31 +0000899 continue;
900 }
901
902 if (DT->dominates(II, User))
903 continue;
904
905 if (!Initialized) {
906 Value *Undef = UndefValue::get(II->getType());
907 Updater.Initialize(II->getType(), "");
908 Updater.AddAvailableValue(&Func->getEntryBlock(), Undef);
909 Updater.AddAvailableValue(BB, II);
910 Initialized = true;
911 }
Chandler Carruthcdf47882014-03-09 03:16:01 +0000912 Updater.RewriteUseAfterInsertions(U);
Tom Stellardf8794352012-12-19 22:10:31 +0000913 }
914 }
Tom Stellardf8794352012-12-19 22:10:31 +0000915}
916
917/// \brief Run the transformation for each region found
Matt Arsenaultd46fce12013-06-19 20:18:24 +0000918bool StructurizeCFG::runOnRegion(Region *R, RGPassManager &RGM) {
Tom Stellardf8794352012-12-19 22:10:31 +0000919 if (R->isTopLevelRegion())
920 return false;
921
922 Func = R->getEntry()->getParent();
923 ParentRegion = R;
924
Chandler Carruth73523022014-01-13 13:07:17 +0000925 DT = &getAnalysis<DominatorTreeWrapperPass>().getDomTree();
Chandler Carruth4f8f3072015-01-17 14:16:18 +0000926 LI = &getAnalysis<LoopInfoWrapperPass>().getLoopInfo();
Tom Stellardf8794352012-12-19 22:10:31 +0000927
928 orderNodes();
929 collectInfos();
930 createFlow();
Christian Konigfc6a9852013-02-16 11:27:45 +0000931 insertConditions(false);
932 insertConditions(true);
Tom Stellard7ec0e4f2013-02-08 22:24:35 +0000933 setPhiValues();
Tom Stellardf8794352012-12-19 22:10:31 +0000934 rebuildSSA();
935
Tom Stellard048f14f2013-02-08 22:24:37 +0000936 // Cleanup
Tom Stellardf8794352012-12-19 22:10:31 +0000937 Order.clear();
938 Visited.clear();
Tom Stellardf8794352012-12-19 22:10:31 +0000939 DeletedPhis.clear();
Tom Stellard7ec0e4f2013-02-08 22:24:35 +0000940 AddedPhis.clear();
Christian Konigfc6a9852013-02-16 11:27:45 +0000941 Predicates.clear();
Tom Stellard048f14f2013-02-08 22:24:37 +0000942 Conditions.clear();
Christian Konigfc6a9852013-02-16 11:27:45 +0000943 Loops.clear();
944 LoopPreds.clear();
945 LoopConds.clear();
Tom Stellardf8794352012-12-19 22:10:31 +0000946
947 return true;
948}
949
950/// \brief Create the pass
Matt Arsenaultd46fce12013-06-19 20:18:24 +0000951Pass *llvm::createStructurizeCFGPass() {
952 return new StructurizeCFG();
Tom Stellardf8794352012-12-19 22:10:31 +0000953}