blob: 8fd22681e5fc3ac3eafa8093ea0bdd073f52f242 [file] [log] [blame]
Matt Arsenaultad966ea2013-06-19 20:18:24 +00001//===-- StructurizeCFG.cpp ------------------------------------------------===//
Tom Stellard6b7d99d2012-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 Stellard6b7d99d2012-12-19 22:10:31 +00009
Matt Arsenaultad966ea2013-06-19 20:18:24 +000010#define DEBUG_TYPE "structurizecfg"
11#include "llvm/Transforms/Scalar.h"
Christian Konig43770272013-03-26 10:24:20 +000012#include "llvm/ADT/MapVector.h"
Benjamin Kramer5c352902013-05-23 17:10:37 +000013#include "llvm/ADT/SCCIterator.h"
Tom Stellard6b7d99d2012-12-19 22:10:31 +000014#include "llvm/Analysis/RegionInfo.h"
Chandler Carruth58a2cbe2013-01-02 10:22:59 +000015#include "llvm/Analysis/RegionIterator.h"
Tom Stellard6b7d99d2012-12-19 22:10:31 +000016#include "llvm/Analysis/RegionPass.h"
Chandler Carruth0b8c9a82013-01-02 11:36:10 +000017#include "llvm/IR/Module.h"
Stephen Hines36b56882014-04-23 16:57:46 -070018#include "llvm/IR/PatternMatch.h"
Benjamin Kramer5c352902013-05-23 17:10:37 +000019#include "llvm/Transforms/Utils/SSAUpdater.h"
Tom Stellard6b7d99d2012-12-19 22:10:31 +000020
21using namespace llvm;
Christian Konigef6b2482013-02-16 11:27:50 +000022using namespace llvm::PatternMatch;
Tom Stellard6b7d99d2012-12-19 22:10:31 +000023
24namespace {
25
26// Definition of the complex types used in this pass.
27
28typedef std::pair<BasicBlock *, Value *> BBValuePair;
Tom Stellard6b7d99d2012-12-19 22:10:31 +000029
30typedef SmallVector<RegionNode*, 8> RNVector;
31typedef SmallVector<BasicBlock*, 8> BBVector;
Tom Stellard27f5d062013-02-08 22:24:37 +000032typedef SmallVector<BranchInst*, 8> BranchVector;
Tom Stellard6b7d99d2012-12-19 22:10:31 +000033typedef SmallVector<BBValuePair, 2> BBValueVector;
34
Tom Stellard27f5d062013-02-08 22:24:37 +000035typedef SmallPtrSet<BasicBlock *, 8> BBSet;
36
Christian Konig43770272013-03-26 10:24:20 +000037typedef MapVector<PHINode *, BBValueVector> PhiMap;
38typedef MapVector<BasicBlock *, BBVector> BB2BBVecMap;
39
Christian Konigf0e469b2013-02-16 11:27:29 +000040typedef DenseMap<DomTreeNode *, unsigned> DTN2UnsignedMap;
Tom Stellard6b7d99d2012-12-19 22:10:31 +000041typedef DenseMap<BasicBlock *, PhiMap> BBPhiMap;
42typedef DenseMap<BasicBlock *, Value *> BBPredicates;
43typedef DenseMap<BasicBlock *, BBPredicates> PredMap;
Christian Konig623977d2013-02-16 11:27:45 +000044typedef DenseMap<BasicBlock *, BasicBlock*> BB2BBMap;
Tom Stellard6b7d99d2012-12-19 22:10:31 +000045
46// The name for newly created blocks.
47
Craig Topper4172a8a2013-07-16 01:17:10 +000048static const char *const FlowBlockName = "Flow";
Tom Stellard6b7d99d2012-12-19 22:10:31 +000049
Christian Konigf0e469b2013-02-16 11:27:29 +000050/// @brief Find the nearest common dominator for multiple BasicBlocks
51///
Matt Arsenaultad966ea2013-06-19 20:18:24 +000052/// Helper class for StructurizeCFG
Christian Konigf0e469b2013-02-16 11:27:29 +000053/// TODO: Maybe move into common code
54class NearestCommonDominator {
Christian Konigf0e469b2013-02-16 11:27:29 +000055 DominatorTree *DT;
56
57 DTN2UnsignedMap IndexMap;
58
59 BasicBlock *Result;
60 unsigned ResultIndex;
61 bool ExplicitMentioned;
62
63public:
64 /// \brief Start a new query
65 NearestCommonDominator(DominatorTree *DomTree) {
66 DT = DomTree;
67 Result = 0;
68 }
69
70 /// \brief Add BB to the resulting dominator
71 void addBlock(BasicBlock *BB, bool Remember = true) {
Christian Konigf0e469b2013-02-16 11:27:29 +000072 DomTreeNode *Node = DT->getNode(BB);
73
74 if (Result == 0) {
75 unsigned Numbering = 0;
76 for (;Node;Node = Node->getIDom())
77 IndexMap[Node] = ++Numbering;
78 Result = BB;
79 ResultIndex = 1;
80 ExplicitMentioned = Remember;
81 return;
82 }
83
84 for (;Node;Node = Node->getIDom())
85 if (IndexMap.count(Node))
86 break;
87 else
88 IndexMap[Node] = 0;
89
90 assert(Node && "Dominator tree invalid!");
91
92 unsigned Numbering = IndexMap[Node];
93 if (Numbering > ResultIndex) {
94 Result = Node->getBlock();
95 ResultIndex = Numbering;
96 ExplicitMentioned = Remember && (Result == BB);
97 } else if (Numbering == ResultIndex) {
98 ExplicitMentioned |= Remember;
99 }
100 }
101
102 /// \brief Is "Result" one of the BBs added with "Remember" = True?
103 bool wasResultExplicitMentioned() {
104 return ExplicitMentioned;
105 }
106
107 /// \brief Get the query result
108 BasicBlock *getResult() {
109 return Result;
110 }
111};
112
Tom Stellard6b7d99d2012-12-19 22:10:31 +0000113/// @brief Transforms the control flow graph on one single entry/exit region
114/// at a time.
115///
116/// After the transform all "If"/"Then"/"Else" style control flow looks like
117/// this:
118///
119/// \verbatim
120/// 1
121/// ||
122/// | |
123/// 2 |
124/// | /
Matt Arsenaultad966ea2013-06-19 20:18:24 +0000125/// |/
Tom Stellard6b7d99d2012-12-19 22:10:31 +0000126/// 3
127/// || Where:
128/// | | 1 = "If" block, calculates the condition
129/// 4 | 2 = "Then" subregion, runs if the condition is true
130/// | / 3 = "Flow" blocks, newly inserted flow blocks, rejoins the flow
131/// |/ 4 = "Else" optional subregion, runs if the condition is false
132/// 5 5 = "End" block, also rejoins the control flow
133/// \endverbatim
134///
135/// Control flow is expressed as a branch where the true exit goes into the
136/// "Then"/"Else" region, while the false exit skips the region
137/// The condition for the optional "Else" region is expressed as a PHI node.
138/// The incomming values of the PHI node are true for the "If" edge and false
139/// for the "Then" edge.
140///
141/// Additionally to that even complicated loops look like this:
142///
143/// \verbatim
144/// 1
145/// ||
146/// | |
147/// 2 ^ Where:
148/// | / 1 = "Entry" block
149/// |/ 2 = "Loop" optional subregion, with all exits at "Flow" block
150/// 3 3 = "Flow" block, with back edge to entry block
151/// |
152/// \endverbatim
153///
154/// The back edge of the "Flow" block is always on the false side of the branch
155/// while the true side continues the general flow. So the loop condition
156/// consist of a network of PHI nodes where the true incoming values expresses
157/// breaks and the false values expresses continue states.
Matt Arsenaultad966ea2013-06-19 20:18:24 +0000158class StructurizeCFG : public RegionPass {
Tom Stellard6b7d99d2012-12-19 22:10:31 +0000159 Type *Boolean;
160 ConstantInt *BoolTrue;
161 ConstantInt *BoolFalse;
162 UndefValue *BoolUndef;
163
164 Function *Func;
165 Region *ParentRegion;
166
167 DominatorTree *DT;
168
169 RNVector Order;
Tom Stellardf4e471a2013-02-08 22:24:38 +0000170 BBSet Visited;
Christian Konig623977d2013-02-16 11:27:45 +0000171
Tom Stellard6b7d99d2012-12-19 22:10:31 +0000172 BBPhiMap DeletedPhis;
Tom Stellard13cf6cb2013-02-08 22:24:35 +0000173 BB2BBVecMap AddedPhis;
Christian Konig623977d2013-02-16 11:27:45 +0000174
175 PredMap Predicates;
Tom Stellard27f5d062013-02-08 22:24:37 +0000176 BranchVector Conditions;
Tom Stellard6b7d99d2012-12-19 22:10:31 +0000177
Christian Konig623977d2013-02-16 11:27:45 +0000178 BB2BBMap Loops;
179 PredMap LoopPreds;
180 BranchVector LoopConds;
181
182 RegionNode *PrevNode;
Tom Stellard6b7d99d2012-12-19 22:10:31 +0000183
184 void orderNodes();
185
Christian Konig623977d2013-02-16 11:27:45 +0000186 void analyzeLoops(RegionNode *N);
187
Christian Konigef6b2482013-02-16 11:27:50 +0000188 Value *invert(Value *Condition);
189
Tom Stellard27f5d062013-02-08 22:24:37 +0000190 Value *buildCondition(BranchInst *Term, unsigned Idx, bool Invert);
Tom Stellard6b7d99d2012-12-19 22:10:31 +0000191
Christian Konig623977d2013-02-16 11:27:45 +0000192 void gatherPredicates(RegionNode *N);
Tom Stellard6b7d99d2012-12-19 22:10:31 +0000193
194 void collectInfos();
195
Christian Konig623977d2013-02-16 11:27:45 +0000196 void insertConditions(bool Loops);
Tom Stellard27f5d062013-02-08 22:24:37 +0000197
Tom Stellard13cf6cb2013-02-08 22:24:35 +0000198 void delPhiValues(BasicBlock *From, BasicBlock *To);
199
200 void addPhiValues(BasicBlock *From, BasicBlock *To);
201
202 void setPhiValues();
203
Tom Stellard6b7d99d2012-12-19 22:10:31 +0000204 void killTerminator(BasicBlock *BB);
205
Tom Stellardf4e471a2013-02-08 22:24:38 +0000206 void changeExit(RegionNode *Node, BasicBlock *NewExit,
207 bool IncludeDominator);
Tom Stellard6b7d99d2012-12-19 22:10:31 +0000208
Tom Stellardf4e471a2013-02-08 22:24:38 +0000209 BasicBlock *getNextFlow(BasicBlock *Dominator);
Tom Stellard6b7d99d2012-12-19 22:10:31 +0000210
Christian Konig623977d2013-02-16 11:27:45 +0000211 BasicBlock *needPrefix(bool NeedEmpty);
Tom Stellard6b7d99d2012-12-19 22:10:31 +0000212
Tom Stellardf4e471a2013-02-08 22:24:38 +0000213 BasicBlock *needPostfix(BasicBlock *Flow, bool ExitUseAllowed);
214
Christian Konig623977d2013-02-16 11:27:45 +0000215 void setPrevNode(BasicBlock *BB);
Tom Stellardf4e471a2013-02-08 22:24:38 +0000216
217 bool dominatesPredicates(BasicBlock *BB, RegionNode *Node);
218
Christian Konig623977d2013-02-16 11:27:45 +0000219 bool isPredictableTrue(RegionNode *Node);
Tom Stellardf4e471a2013-02-08 22:24:38 +0000220
Christian Konig623977d2013-02-16 11:27:45 +0000221 void wireFlow(bool ExitUseAllowed, BasicBlock *LoopEnd);
222
223 void handleLoops(bool ExitUseAllowed, BasicBlock *LoopEnd);
Tom Stellard6b7d99d2012-12-19 22:10:31 +0000224
225 void createFlow();
226
Tom Stellard6b7d99d2012-12-19 22:10:31 +0000227 void rebuildSSA();
228
229public:
Matt Arsenaultad966ea2013-06-19 20:18:24 +0000230 static char ID;
Tom Stellard6b7d99d2012-12-19 22:10:31 +0000231
Matt Arsenaultad966ea2013-06-19 20:18:24 +0000232 StructurizeCFG() :
233 RegionPass(ID) {
Tom Stellardaf7ae9d2013-10-02 17:04:59 +0000234 initializeStructurizeCFGPass(*PassRegistry::getPassRegistry());
Tom Stellard6b7d99d2012-12-19 22:10:31 +0000235 }
236
Christian Konig777962f2013-03-01 09:46:11 +0000237 using Pass::doInitialization;
Stephen Hines36b56882014-04-23 16:57:46 -0700238 bool doInitialization(Region *R, RGPassManager &RGM) override;
Tom Stellard6b7d99d2012-12-19 22:10:31 +0000239
Stephen Hines36b56882014-04-23 16:57:46 -0700240 bool runOnRegion(Region *R, RGPassManager &RGM) override;
Tom Stellard6b7d99d2012-12-19 22:10:31 +0000241
Stephen Hines36b56882014-04-23 16:57:46 -0700242 const char *getPassName() const override {
Matt Arsenaultad966ea2013-06-19 20:18:24 +0000243 return "Structurize control flow";
Tom Stellard6b7d99d2012-12-19 22:10:31 +0000244 }
245
Stephen Hines36b56882014-04-23 16:57:46 -0700246 void getAnalysisUsage(AnalysisUsage &AU) const override {
Tom Stellardaf7ae9d2013-10-02 17:04:59 +0000247 AU.addRequiredID(LowerSwitchID);
Stephen Hines36b56882014-04-23 16:57:46 -0700248 AU.addRequired<DominatorTreeWrapperPass>();
249 AU.addPreserved<DominatorTreeWrapperPass>();
Tom Stellard6b7d99d2012-12-19 22:10:31 +0000250 RegionPass::getAnalysisUsage(AU);
251 }
Tom Stellard6b7d99d2012-12-19 22:10:31 +0000252};
253
254} // end anonymous namespace
255
Matt Arsenaultad966ea2013-06-19 20:18:24 +0000256char StructurizeCFG::ID = 0;
257
258INITIALIZE_PASS_BEGIN(StructurizeCFG, "structurizecfg", "Structurize the CFG",
259 false, false)
Tom Stellardaf7ae9d2013-10-02 17:04:59 +0000260INITIALIZE_PASS_DEPENDENCY(LowerSwitch)
Stephen Hines36b56882014-04-23 16:57:46 -0700261INITIALIZE_PASS_DEPENDENCY(DominatorTreeWrapperPass)
Matt Arsenaultad966ea2013-06-19 20:18:24 +0000262INITIALIZE_PASS_DEPENDENCY(RegionInfo)
263INITIALIZE_PASS_END(StructurizeCFG, "structurizecfg", "Structurize the CFG",
264 false, false)
Tom Stellard6b7d99d2012-12-19 22:10:31 +0000265
266/// \brief Initialize the types and constants used in the pass
Matt Arsenaultad966ea2013-06-19 20:18:24 +0000267bool StructurizeCFG::doInitialization(Region *R, RGPassManager &RGM) {
Tom Stellard6b7d99d2012-12-19 22:10:31 +0000268 LLVMContext &Context = R->getEntry()->getContext();
269
270 Boolean = Type::getInt1Ty(Context);
271 BoolTrue = ConstantInt::getTrue(Context);
272 BoolFalse = ConstantInt::getFalse(Context);
273 BoolUndef = UndefValue::get(Boolean);
274
275 return false;
276}
277
278/// \brief Build up the general order of nodes
Matt Arsenaultad966ea2013-06-19 20:18:24 +0000279void StructurizeCFG::orderNodes() {
Stephen Hines36b56882014-04-23 16:57:46 -0700280 scc_iterator<Region *> I = scc_begin(ParentRegion);
281 for (Order.clear(); !I.isAtEnd(); ++I) {
Tom Stellard6b7d99d2012-12-19 22:10:31 +0000282 std::vector<RegionNode *> &Nodes = *I;
283 Order.append(Nodes.begin(), Nodes.end());
284 }
285}
286
Christian Konig623977d2013-02-16 11:27:45 +0000287/// \brief Determine the end of the loops
Matt Arsenaultad966ea2013-06-19 20:18:24 +0000288void StructurizeCFG::analyzeLoops(RegionNode *N) {
Christian Konig623977d2013-02-16 11:27:45 +0000289 if (N->isSubRegion()) {
290 // Test for exit as back edge
291 BasicBlock *Exit = N->getNodeAs<Region>()->getExit();
292 if (Visited.count(Exit))
293 Loops[Exit] = N->getEntry();
294
295 } else {
296 // Test for sucessors as back edge
297 BasicBlock *BB = N->getNodeAs<BasicBlock>();
298 BranchInst *Term = cast<BranchInst>(BB->getTerminator());
299
300 for (unsigned i = 0, e = Term->getNumSuccessors(); i != e; ++i) {
301 BasicBlock *Succ = Term->getSuccessor(i);
302
303 if (Visited.count(Succ))
304 Loops[Succ] = BB;
305 }
306 }
307}
308
Christian Konigef6b2482013-02-16 11:27:50 +0000309/// \brief Invert the given condition
Matt Arsenaultad966ea2013-06-19 20:18:24 +0000310Value *StructurizeCFG::invert(Value *Condition) {
Christian Konigef6b2482013-02-16 11:27:50 +0000311 // First: Check if it's a constant
312 if (Condition == BoolTrue)
313 return BoolFalse;
314
315 if (Condition == BoolFalse)
316 return BoolTrue;
317
318 if (Condition == BoolUndef)
319 return BoolUndef;
320
321 // Second: If the condition is already inverted, return the original value
322 if (match(Condition, m_Not(m_Value(Condition))))
323 return Condition;
324
Bill Wendling215aad52013-11-25 05:22:53 +0000325 if (Instruction *Inst = dyn_cast<Instruction>(Condition)) {
326 // Third: Check all the users for an invert
327 BasicBlock *Parent = Inst->getParent();
Stephen Hines36b56882014-04-23 16:57:46 -0700328 for (User *U : Condition->users())
329 if (Instruction *I = dyn_cast<Instruction>(U))
330 if (I->getParent() == Parent && match(I, m_Not(m_Specific(Condition))))
331 return I;
Bill Wendling215aad52013-11-25 05:22:53 +0000332
333 // Last option: Create a new instruction
334 return BinaryOperator::CreateNot(Condition, "", Parent->getTerminator());
Christian Konigef6b2482013-02-16 11:27:50 +0000335 }
336
Bill Wendling215aad52013-11-25 05:22:53 +0000337 if (Argument *Arg = dyn_cast<Argument>(Condition)) {
338 BasicBlock &EntryBlock = Arg->getParent()->getEntryBlock();
339 return BinaryOperator::CreateNot(Condition,
340 Arg->getName() + ".inv",
341 EntryBlock.getTerminator());
342 }
343
344 llvm_unreachable("Unhandled condition to invert");
Christian Konigef6b2482013-02-16 11:27:50 +0000345}
346
Tom Stellard27f5d062013-02-08 22:24:37 +0000347/// \brief Build the condition for one edge
Matt Arsenaultad966ea2013-06-19 20:18:24 +0000348Value *StructurizeCFG::buildCondition(BranchInst *Term, unsigned Idx,
349 bool Invert) {
Tom Stellard27f5d062013-02-08 22:24:37 +0000350 Value *Cond = Invert ? BoolFalse : BoolTrue;
351 if (Term->isConditional()) {
352 Cond = Term->getCondition();
Tom Stellard6b7d99d2012-12-19 22:10:31 +0000353
Aaron Ballmanf3d39522013-06-04 01:03:03 +0000354 if (Idx != (unsigned)Invert)
Christian Konigef6b2482013-02-16 11:27:50 +0000355 Cond = invert(Cond);
Tom Stellard27f5d062013-02-08 22:24:37 +0000356 }
357 return Cond;
358}
359
Tom Stellard27f5d062013-02-08 22:24:37 +0000360/// \brief Analyze the predecessors of each block and build up predicates
Matt Arsenaultad966ea2013-06-19 20:18:24 +0000361void StructurizeCFG::gatherPredicates(RegionNode *N) {
Tom Stellard6b7d99d2012-12-19 22:10:31 +0000362 RegionInfo *RI = ParentRegion->getRegionInfo();
Tom Stellard27f5d062013-02-08 22:24:37 +0000363 BasicBlock *BB = N->getEntry();
364 BBPredicates &Pred = Predicates[BB];
Christian Konig623977d2013-02-16 11:27:45 +0000365 BBPredicates &LPred = LoopPreds[BB];
Tom Stellard6b7d99d2012-12-19 22:10:31 +0000366
Tom Stellard27f5d062013-02-08 22:24:37 +0000367 for (pred_iterator PI = pred_begin(BB), PE = pred_end(BB);
368 PI != PE; ++PI) {
Tom Stellard6b7d99d2012-12-19 22:10:31 +0000369
Christian Konig623977d2013-02-16 11:27:45 +0000370 // Ignore it if it's a branch from outside into our region entry
371 if (!ParentRegion->contains(*PI))
Tom Stellard27f5d062013-02-08 22:24:37 +0000372 continue;
Tom Stellard6b7d99d2012-12-19 22:10:31 +0000373
Tom Stellard27f5d062013-02-08 22:24:37 +0000374 Region *R = RI->getRegionFor(*PI);
375 if (R == ParentRegion) {
Tom Stellard6b7d99d2012-12-19 22:10:31 +0000376
Tom Stellard27f5d062013-02-08 22:24:37 +0000377 // It's a top level block in our region
378 BranchInst *Term = cast<BranchInst>((*PI)->getTerminator());
379 for (unsigned i = 0, e = Term->getNumSuccessors(); i != e; ++i) {
380 BasicBlock *Succ = Term->getSuccessor(i);
381 if (Succ != BB)
382 continue;
Tom Stellard6b7d99d2012-12-19 22:10:31 +0000383
Tom Stellard27f5d062013-02-08 22:24:37 +0000384 if (Visited.count(*PI)) {
385 // Normal forward edge
386 if (Term->isConditional()) {
387 // Try to treat it like an ELSE block
388 BasicBlock *Other = Term->getSuccessor(!i);
Christian Konig623977d2013-02-16 11:27:45 +0000389 if (Visited.count(Other) && !Loops.count(Other) &&
Tom Stellard27f5d062013-02-08 22:24:37 +0000390 !Pred.count(Other) && !Pred.count(*PI)) {
Tom Stellard6b7d99d2012-12-19 22:10:31 +0000391
Tom Stellard27f5d062013-02-08 22:24:37 +0000392 Pred[Other] = BoolFalse;
393 Pred[*PI] = BoolTrue;
394 continue;
395 }
396 }
Christian Konig623977d2013-02-16 11:27:45 +0000397 Pred[*PI] = buildCondition(Term, i, false);
Matt Arsenaultad966ea2013-06-19 20:18:24 +0000398
Tom Stellard27f5d062013-02-08 22:24:37 +0000399 } else {
400 // Back edge
Christian Konig623977d2013-02-16 11:27:45 +0000401 LPred[*PI] = buildCondition(Term, i, true);
Tom Stellard27f5d062013-02-08 22:24:37 +0000402 }
Tom Stellard27f5d062013-02-08 22:24:37 +0000403 }
404
405 } else {
406
407 // It's an exit from a sub region
408 while(R->getParent() != ParentRegion)
409 R = R->getParent();
410
411 // Edge from inside a subregion to its entry, ignore it
412 if (R == N)
413 continue;
414
415 BasicBlock *Entry = R->getEntry();
Christian Konig623977d2013-02-16 11:27:45 +0000416 if (Visited.count(Entry))
417 Pred[Entry] = BoolTrue;
418 else
419 LPred[Entry] = BoolFalse;
Tom Stellard6b7d99d2012-12-19 22:10:31 +0000420 }
421 }
422}
423
424/// \brief Collect various loop and predicate infos
Matt Arsenaultad966ea2013-06-19 20:18:24 +0000425void StructurizeCFG::collectInfos() {
Tom Stellard6b7d99d2012-12-19 22:10:31 +0000426 // Reset predicate
427 Predicates.clear();
428
429 // and loop infos
Christian Konig623977d2013-02-16 11:27:45 +0000430 Loops.clear();
431 LoopPreds.clear();
Tom Stellard6b7d99d2012-12-19 22:10:31 +0000432
Tom Stellard27f5d062013-02-08 22:24:37 +0000433 // Reset the visited nodes
434 Visited.clear();
435
436 for (RNVector::reverse_iterator OI = Order.rbegin(), OE = Order.rend();
437 OI != OE; ++OI) {
Tom Stellard6b7d99d2012-12-19 22:10:31 +0000438
439 // Analyze all the conditions leading to a node
Christian Konig623977d2013-02-16 11:27:45 +0000440 gatherPredicates(*OI);
Tom Stellard6b7d99d2012-12-19 22:10:31 +0000441
Tom Stellard27f5d062013-02-08 22:24:37 +0000442 // Remember that we've seen this node
Tom Stellardf4e471a2013-02-08 22:24:38 +0000443 Visited.insert((*OI)->getEntry());
Tom Stellard6b7d99d2012-12-19 22:10:31 +0000444
Christian Konig623977d2013-02-16 11:27:45 +0000445 // Find the last back edges
446 analyzeLoops(*OI);
Tom Stellard27f5d062013-02-08 22:24:37 +0000447 }
Tom Stellard27f5d062013-02-08 22:24:37 +0000448}
449
450/// \brief Insert the missing branch conditions
Matt Arsenaultad966ea2013-06-19 20:18:24 +0000451void StructurizeCFG::insertConditions(bool Loops) {
Christian Konig623977d2013-02-16 11:27:45 +0000452 BranchVector &Conds = Loops ? LoopConds : Conditions;
453 Value *Default = Loops ? BoolTrue : BoolFalse;
Tom Stellard27f5d062013-02-08 22:24:37 +0000454 SSAUpdater PhiInserter;
455
Christian Konig623977d2013-02-16 11:27:45 +0000456 for (BranchVector::iterator I = Conds.begin(),
457 E = Conds.end(); I != E; ++I) {
Tom Stellard27f5d062013-02-08 22:24:37 +0000458
459 BranchInst *Term = *I;
Tom Stellard27f5d062013-02-08 22:24:37 +0000460 assert(Term->isConditional());
461
Christian Konig623977d2013-02-16 11:27:45 +0000462 BasicBlock *Parent = Term->getParent();
463 BasicBlock *SuccTrue = Term->getSuccessor(0);
464 BasicBlock *SuccFalse = Term->getSuccessor(1);
Tom Stellard27f5d062013-02-08 22:24:37 +0000465
Christian Konig25bd8842013-02-16 11:27:40 +0000466 PhiInserter.Initialize(Boolean, "");
467 PhiInserter.AddAvailableValue(&Func->getEntryBlock(), Default);
Christian Konig623977d2013-02-16 11:27:45 +0000468 PhiInserter.AddAvailableValue(Loops ? SuccFalse : Parent, Default);
Christian Konig25bd8842013-02-16 11:27:40 +0000469
Christian Konig623977d2013-02-16 11:27:45 +0000470 BBPredicates &Preds = Loops ? LoopPreds[SuccFalse] : Predicates[SuccTrue];
Christian Konig25bd8842013-02-16 11:27:40 +0000471
472 NearestCommonDominator Dominator(DT);
473 Dominator.addBlock(Parent, false);
474
475 Value *ParentValue = 0;
Tom Stellard27f5d062013-02-08 22:24:37 +0000476 for (BBPredicates::iterator PI = Preds.begin(), PE = Preds.end();
477 PI != PE; ++PI) {
478
Christian Konig25bd8842013-02-16 11:27:40 +0000479 if (PI->first == Parent) {
480 ParentValue = PI->second;
481 break;
482 }
Tom Stellard27f5d062013-02-08 22:24:37 +0000483 PhiInserter.AddAvailableValue(PI->first, PI->second);
Christian Konig25bd8842013-02-16 11:27:40 +0000484 Dominator.addBlock(PI->first);
Tom Stellard27f5d062013-02-08 22:24:37 +0000485 }
486
Christian Konig25bd8842013-02-16 11:27:40 +0000487 if (ParentValue) {
488 Term->setCondition(ParentValue);
489 } else {
490 if (!Dominator.wasResultExplicitMentioned())
491 PhiInserter.AddAvailableValue(Dominator.getResult(), Default);
492
Tom Stellard27f5d062013-02-08 22:24:37 +0000493 Term->setCondition(PhiInserter.GetValueInMiddleOfBlock(Parent));
Christian Konig25bd8842013-02-16 11:27:40 +0000494 }
Tom Stellard6b7d99d2012-12-19 22:10:31 +0000495 }
496}
497
Tom Stellard13cf6cb2013-02-08 22:24:35 +0000498/// \brief Remove all PHI values coming from "From" into "To" and remember
499/// them in DeletedPhis
Matt Arsenaultad966ea2013-06-19 20:18:24 +0000500void StructurizeCFG::delPhiValues(BasicBlock *From, BasicBlock *To) {
Tom Stellard13cf6cb2013-02-08 22:24:35 +0000501 PhiMap &Map = DeletedPhis[To];
502 for (BasicBlock::iterator I = To->begin(), E = To->end();
503 I != E && isa<PHINode>(*I);) {
504
505 PHINode &Phi = cast<PHINode>(*I++);
506 while (Phi.getBasicBlockIndex(From) != -1) {
507 Value *Deleted = Phi.removeIncomingValue(From, false);
508 Map[&Phi].push_back(std::make_pair(From, Deleted));
509 }
510 }
511}
512
513/// \brief Add a dummy PHI value as soon as we knew the new predecessor
Matt Arsenaultad966ea2013-06-19 20:18:24 +0000514void StructurizeCFG::addPhiValues(BasicBlock *From, BasicBlock *To) {
Tom Stellard13cf6cb2013-02-08 22:24:35 +0000515 for (BasicBlock::iterator I = To->begin(), E = To->end();
516 I != E && isa<PHINode>(*I);) {
517
518 PHINode &Phi = cast<PHINode>(*I++);
519 Value *Undef = UndefValue::get(Phi.getType());
520 Phi.addIncoming(Undef, From);
521 }
522 AddedPhis[To].push_back(From);
523}
524
525/// \brief Add the real PHI value as soon as everything is set up
Matt Arsenaultad966ea2013-06-19 20:18:24 +0000526void StructurizeCFG::setPhiValues() {
Tom Stellard13cf6cb2013-02-08 22:24:35 +0000527 SSAUpdater Updater;
528 for (BB2BBVecMap::iterator AI = AddedPhis.begin(), AE = AddedPhis.end();
529 AI != AE; ++AI) {
530
531 BasicBlock *To = AI->first;
532 BBVector &From = AI->second;
533
534 if (!DeletedPhis.count(To))
535 continue;
536
537 PhiMap &Map = DeletedPhis[To];
538 for (PhiMap::iterator PI = Map.begin(), PE = Map.end();
539 PI != PE; ++PI) {
540
541 PHINode *Phi = PI->first;
542 Value *Undef = UndefValue::get(Phi->getType());
543 Updater.Initialize(Phi->getType(), "");
544 Updater.AddAvailableValue(&Func->getEntryBlock(), Undef);
545 Updater.AddAvailableValue(To, Undef);
546
Christian Konig4c79c712013-02-16 11:27:35 +0000547 NearestCommonDominator Dominator(DT);
548 Dominator.addBlock(To, false);
Tom Stellard13cf6cb2013-02-08 22:24:35 +0000549 for (BBValueVector::iterator VI = PI->second.begin(),
550 VE = PI->second.end(); VI != VE; ++VI) {
551
552 Updater.AddAvailableValue(VI->first, VI->second);
Christian Konig4c79c712013-02-16 11:27:35 +0000553 Dominator.addBlock(VI->first);
Tom Stellard13cf6cb2013-02-08 22:24:35 +0000554 }
555
Christian Konig4c79c712013-02-16 11:27:35 +0000556 if (!Dominator.wasResultExplicitMentioned())
557 Updater.AddAvailableValue(Dominator.getResult(), Undef);
558
Tom Stellard13cf6cb2013-02-08 22:24:35 +0000559 for (BBVector::iterator FI = From.begin(), FE = From.end();
560 FI != FE; ++FI) {
561
562 int Idx = Phi->getBasicBlockIndex(*FI);
563 assert(Idx != -1);
564 Phi->setIncomingValue(Idx, Updater.GetValueAtEndOfBlock(*FI));
565 }
566 }
567
568 DeletedPhis.erase(To);
569 }
570 assert(DeletedPhis.empty());
571}
572
Tom Stellardf4e471a2013-02-08 22:24:38 +0000573/// \brief Remove phi values from all successors and then remove the terminator.
Matt Arsenaultad966ea2013-06-19 20:18:24 +0000574void StructurizeCFG::killTerminator(BasicBlock *BB) {
Tom Stellard6b7d99d2012-12-19 22:10:31 +0000575 TerminatorInst *Term = BB->getTerminator();
576 if (!Term)
577 return;
578
579 for (succ_iterator SI = succ_begin(BB), SE = succ_end(BB);
580 SI != SE; ++SI) {
581
582 delPhiValues(BB, *SI);
583 }
584
585 Term->eraseFromParent();
586}
587
Tom Stellardf4e471a2013-02-08 22:24:38 +0000588/// \brief Let node exit(s) point to NewExit
Matt Arsenaultad966ea2013-06-19 20:18:24 +0000589void StructurizeCFG::changeExit(RegionNode *Node, BasicBlock *NewExit,
590 bool IncludeDominator) {
Tom Stellardf4e471a2013-02-08 22:24:38 +0000591 if (Node->isSubRegion()) {
592 Region *SubRegion = Node->getNodeAs<Region>();
593 BasicBlock *OldExit = SubRegion->getExit();
594 BasicBlock *Dominator = 0;
Tom Stellard6b7d99d2012-12-19 22:10:31 +0000595
Tom Stellardf4e471a2013-02-08 22:24:38 +0000596 // Find all the edges from the sub region to the exit
597 for (pred_iterator I = pred_begin(OldExit), E = pred_end(OldExit);
598 I != E;) {
599
600 BasicBlock *BB = *I++;
601 if (!SubRegion->contains(BB))
602 continue;
603
604 // Modify the edges to point to the new exit
605 delPhiValues(BB, OldExit);
606 BB->getTerminator()->replaceUsesOfWith(OldExit, NewExit);
607 addPhiValues(BB, NewExit);
608
609 // Find the new dominator (if requested)
610 if (IncludeDominator) {
611 if (!Dominator)
612 Dominator = BB;
613 else
614 Dominator = DT->findNearestCommonDominator(Dominator, BB);
615 }
Tom Stellard6b7d99d2012-12-19 22:10:31 +0000616 }
617
Tom Stellardf4e471a2013-02-08 22:24:38 +0000618 // Change the dominator (if requested)
619 if (Dominator)
620 DT->changeImmediateDominator(NewExit, Dominator);
Tom Stellard6b7d99d2012-12-19 22:10:31 +0000621
Tom Stellardf4e471a2013-02-08 22:24:38 +0000622 // Update the region info
623 SubRegion->replaceExit(NewExit);
Tom Stellard6b7d99d2012-12-19 22:10:31 +0000624
Tom Stellard6b7d99d2012-12-19 22:10:31 +0000625 } else {
Tom Stellardf4e471a2013-02-08 22:24:38 +0000626 BasicBlock *BB = Node->getNodeAs<BasicBlock>();
627 killTerminator(BB);
628 BranchInst::Create(NewExit, BB);
629 addPhiValues(BB, NewExit);
630 if (IncludeDominator)
631 DT->changeImmediateDominator(NewExit, BB);
Tom Stellard6b7d99d2012-12-19 22:10:31 +0000632 }
Tom Stellard6b7d99d2012-12-19 22:10:31 +0000633}
634
Tom Stellard6b7d99d2012-12-19 22:10:31 +0000635/// \brief Create a new flow node and update dominator tree and region info
Matt Arsenaultad966ea2013-06-19 20:18:24 +0000636BasicBlock *StructurizeCFG::getNextFlow(BasicBlock *Dominator) {
Tom Stellard6b7d99d2012-12-19 22:10:31 +0000637 LLVMContext &Context = Func->getContext();
638 BasicBlock *Insert = Order.empty() ? ParentRegion->getExit() :
639 Order.back()->getEntry();
640 BasicBlock *Flow = BasicBlock::Create(Context, FlowBlockName,
641 Func, Insert);
Tom Stellardf4e471a2013-02-08 22:24:38 +0000642 DT->addNewBlock(Flow, Dominator);
Tom Stellard6b7d99d2012-12-19 22:10:31 +0000643 ParentRegion->getRegionInfo()->setRegionFor(Flow, ParentRegion);
Tom Stellard6b7d99d2012-12-19 22:10:31 +0000644 return Flow;
645}
646
Tom Stellardf4e471a2013-02-08 22:24:38 +0000647/// \brief Create a new or reuse the previous node as flow node
Matt Arsenaultad966ea2013-06-19 20:18:24 +0000648BasicBlock *StructurizeCFG::needPrefix(bool NeedEmpty) {
Christian Konig623977d2013-02-16 11:27:45 +0000649 BasicBlock *Entry = PrevNode->getEntry();
Tom Stellardf4e471a2013-02-08 22:24:38 +0000650
Christian Konig623977d2013-02-16 11:27:45 +0000651 if (!PrevNode->isSubRegion()) {
652 killTerminator(Entry);
653 if (!NeedEmpty || Entry->getFirstInsertionPt() == Entry->end())
654 return Entry;
Tom Stellardf4e471a2013-02-08 22:24:38 +0000655
Matt Arsenaultad966ea2013-06-19 20:18:24 +0000656 }
Tom Stellardf4e471a2013-02-08 22:24:38 +0000657
Christian Konig623977d2013-02-16 11:27:45 +0000658 // create a new flow node
659 BasicBlock *Flow = getNextFlow(Entry);
Tom Stellardf4e471a2013-02-08 22:24:38 +0000660
Christian Konig623977d2013-02-16 11:27:45 +0000661 // and wire it up
662 changeExit(PrevNode, Flow, true);
663 PrevNode = ParentRegion->getBBNode(Flow);
664 return Flow;
Tom Stellardf4e471a2013-02-08 22:24:38 +0000665}
666
667/// \brief Returns the region exit if possible, otherwise just a new flow node
Matt Arsenaultad966ea2013-06-19 20:18:24 +0000668BasicBlock *StructurizeCFG::needPostfix(BasicBlock *Flow,
669 bool ExitUseAllowed) {
Tom Stellardf4e471a2013-02-08 22:24:38 +0000670 if (Order.empty() && ExitUseAllowed) {
671 BasicBlock *Exit = ParentRegion->getExit();
672 DT->changeImmediateDominator(Exit, Flow);
673 addPhiValues(Flow, Exit);
674 return Exit;
675 }
676 return getNextFlow(Flow);
677}
678
Christian Konig623977d2013-02-16 11:27:45 +0000679/// \brief Set the previous node
Matt Arsenaultad966ea2013-06-19 20:18:24 +0000680void StructurizeCFG::setPrevNode(BasicBlock *BB) {
Christian Konig623977d2013-02-16 11:27:45 +0000681 PrevNode = ParentRegion->contains(BB) ? ParentRegion->getBBNode(BB) : 0;
Tom Stellardf4e471a2013-02-08 22:24:38 +0000682}
683
684/// \brief Does BB dominate all the predicates of Node ?
Matt Arsenaultad966ea2013-06-19 20:18:24 +0000685bool StructurizeCFG::dominatesPredicates(BasicBlock *BB, RegionNode *Node) {
Tom Stellardf4e471a2013-02-08 22:24:38 +0000686 BBPredicates &Preds = Predicates[Node->getEntry()];
687 for (BBPredicates::iterator PI = Preds.begin(), PE = Preds.end();
688 PI != PE; ++PI) {
689
690 if (!DT->dominates(BB, PI->first))
691 return false;
692 }
693 return true;
694}
695
Tom Stellard6b7d99d2012-12-19 22:10:31 +0000696/// \brief Can we predict that this node will always be called?
Matt Arsenaultad966ea2013-06-19 20:18:24 +0000697bool StructurizeCFG::isPredictableTrue(RegionNode *Node) {
Christian Konig623977d2013-02-16 11:27:45 +0000698 BBPredicates &Preds = Predicates[Node->getEntry()];
699 bool Dominated = false;
700
701 // Regionentry is always true
702 if (PrevNode == 0)
703 return true;
Tom Stellard6b7d99d2012-12-19 22:10:31 +0000704
705 for (BBPredicates::iterator I = Preds.begin(), E = Preds.end();
706 I != E; ++I) {
707
708 if (I->second != BoolTrue)
709 return false;
710
Christian Konig623977d2013-02-16 11:27:45 +0000711 if (!Dominated && DT->dominates(I->first, PrevNode->getEntry()))
Tom Stellard6b7d99d2012-12-19 22:10:31 +0000712 Dominated = true;
713 }
Tom Stellardf4e471a2013-02-08 22:24:38 +0000714
715 // TODO: The dominator check is too strict
Tom Stellard6b7d99d2012-12-19 22:10:31 +0000716 return Dominated;
717}
718
Tom Stellardf4e471a2013-02-08 22:24:38 +0000719/// Take one node from the order vector and wire it up
Matt Arsenaultad966ea2013-06-19 20:18:24 +0000720void StructurizeCFG::wireFlow(bool ExitUseAllowed,
721 BasicBlock *LoopEnd) {
Tom Stellardf4e471a2013-02-08 22:24:38 +0000722 RegionNode *Node = Order.pop_back_val();
Christian Konig623977d2013-02-16 11:27:45 +0000723 Visited.insert(Node->getEntry());
Tom Stellard6b7d99d2012-12-19 22:10:31 +0000724
Christian Konig623977d2013-02-16 11:27:45 +0000725 if (isPredictableTrue(Node)) {
Tom Stellardf4e471a2013-02-08 22:24:38 +0000726 // Just a linear flow
Christian Konig623977d2013-02-16 11:27:45 +0000727 if (PrevNode) {
728 changeExit(PrevNode, Node->getEntry(), true);
Tom Stellard6b7d99d2012-12-19 22:10:31 +0000729 }
Christian Konig623977d2013-02-16 11:27:45 +0000730 PrevNode = Node;
Tom Stellard6b7d99d2012-12-19 22:10:31 +0000731
732 } else {
Tom Stellardf4e471a2013-02-08 22:24:38 +0000733 // Insert extra prefix node (or reuse last one)
Christian Konig623977d2013-02-16 11:27:45 +0000734 BasicBlock *Flow = needPrefix(false);
Tom Stellard6b7d99d2012-12-19 22:10:31 +0000735
Tom Stellardf4e471a2013-02-08 22:24:38 +0000736 // Insert extra postfix node (or use exit instead)
737 BasicBlock *Entry = Node->getEntry();
Christian Konig623977d2013-02-16 11:27:45 +0000738 BasicBlock *Next = needPostfix(Flow, ExitUseAllowed);
Tom Stellardf4e471a2013-02-08 22:24:38 +0000739
740 // let it point to entry and next block
741 Conditions.push_back(BranchInst::Create(Entry, Next, BoolUndef, Flow));
742 addPhiValues(Flow, Entry);
743 DT->changeImmediateDominator(Entry, Flow);
744
Christian Konig623977d2013-02-16 11:27:45 +0000745 PrevNode = Node;
746 while (!Order.empty() && !Visited.count(LoopEnd) &&
Tom Stellardf4e471a2013-02-08 22:24:38 +0000747 dominatesPredicates(Entry, Order.back())) {
Christian Konig623977d2013-02-16 11:27:45 +0000748 handleLoops(false, LoopEnd);
Tom Stellardf4e471a2013-02-08 22:24:38 +0000749 }
750
Christian Konig623977d2013-02-16 11:27:45 +0000751 changeExit(PrevNode, Next, false);
752 setPrevNode(Next);
753 }
754}
755
Matt Arsenaultad966ea2013-06-19 20:18:24 +0000756void StructurizeCFG::handleLoops(bool ExitUseAllowed,
757 BasicBlock *LoopEnd) {
Christian Konig623977d2013-02-16 11:27:45 +0000758 RegionNode *Node = Order.back();
759 BasicBlock *LoopStart = Node->getEntry();
760
761 if (!Loops.count(LoopStart)) {
762 wireFlow(ExitUseAllowed, LoopEnd);
763 return;
Tom Stellard6b7d99d2012-12-19 22:10:31 +0000764 }
765
Christian Konig623977d2013-02-16 11:27:45 +0000766 if (!isPredictableTrue(Node))
767 LoopStart = needPrefix(true);
768
769 LoopEnd = Loops[Node->getEntry()];
770 wireFlow(false, LoopEnd);
771 while (!Visited.count(LoopEnd)) {
772 handleLoops(false, LoopEnd);
773 }
774
Bill Wendlinge96466e2013-11-25 05:23:10 +0000775 // If the start of the loop is the entry block, we can't branch to it so
776 // insert a new dummy entry block.
777 Function *LoopFunc = LoopStart->getParent();
778 if (LoopStart == &LoopFunc->getEntryBlock()) {
779 LoopStart->setName("entry.orig");
780
781 BasicBlock *NewEntry =
782 BasicBlock::Create(LoopStart->getContext(),
783 "entry",
784 LoopFunc,
785 LoopStart);
786 BranchInst::Create(LoopStart, NewEntry);
787 }
788
Christian Konig623977d2013-02-16 11:27:45 +0000789 // Create an extra loop end node
790 LoopEnd = needPrefix(false);
791 BasicBlock *Next = needPostfix(LoopEnd, ExitUseAllowed);
792 LoopConds.push_back(BranchInst::Create(Next, LoopStart,
793 BoolUndef, LoopEnd));
794 addPhiValues(LoopEnd, LoopStart);
795 setPrevNode(Next);
Tom Stellard6b7d99d2012-12-19 22:10:31 +0000796}
797
Tom Stellard6b7d99d2012-12-19 22:10:31 +0000798/// After this function control flow looks like it should be, but
Tom Stellardf4e471a2013-02-08 22:24:38 +0000799/// branches and PHI nodes only have undefined conditions.
Matt Arsenaultad966ea2013-06-19 20:18:24 +0000800void StructurizeCFG::createFlow() {
Tom Stellardf4e471a2013-02-08 22:24:38 +0000801 BasicBlock *Exit = ParentRegion->getExit();
802 bool EntryDominatesExit = DT->dominates(ParentRegion->getEntry(), Exit);
803
Tom Stellard6b7d99d2012-12-19 22:10:31 +0000804 DeletedPhis.clear();
Tom Stellard13cf6cb2013-02-08 22:24:35 +0000805 AddedPhis.clear();
Tom Stellardf4e471a2013-02-08 22:24:38 +0000806 Conditions.clear();
Christian Konig623977d2013-02-16 11:27:45 +0000807 LoopConds.clear();
Tom Stellard6b7d99d2012-12-19 22:10:31 +0000808
Christian Konig623977d2013-02-16 11:27:45 +0000809 PrevNode = 0;
810 Visited.clear();
811
Tom Stellard6b7d99d2012-12-19 22:10:31 +0000812 while (!Order.empty()) {
Christian Konig623977d2013-02-16 11:27:45 +0000813 handleLoops(EntryDominatesExit, 0);
Tom Stellard6b7d99d2012-12-19 22:10:31 +0000814 }
815
Christian Konig623977d2013-02-16 11:27:45 +0000816 if (PrevNode)
817 changeExit(PrevNode, Exit, EntryDominatesExit);
Tom Stellardf4e471a2013-02-08 22:24:38 +0000818 else
819 assert(EntryDominatesExit);
Tom Stellard6b7d99d2012-12-19 22:10:31 +0000820}
821
Tom Stellard6b7d99d2012-12-19 22:10:31 +0000822/// Handle a rare case where the disintegrated nodes instructions
823/// no longer dominate all their uses. Not sure if this is really nessasary
Matt Arsenaultad966ea2013-06-19 20:18:24 +0000824void StructurizeCFG::rebuildSSA() {
Tom Stellard6b7d99d2012-12-19 22:10:31 +0000825 SSAUpdater Updater;
Stephen Hines36b56882014-04-23 16:57:46 -0700826 for (const auto &BB : ParentRegion->blocks())
Tom Stellard6b7d99d2012-12-19 22:10:31 +0000827 for (BasicBlock::iterator II = BB->begin(), IE = BB->end();
828 II != IE; ++II) {
829
830 bool Initialized = false;
Stephen Hines36b56882014-04-23 16:57:46 -0700831 for (auto I = II->use_begin(), E = II->use_end(); I != E;) {
832 Use &U = *I++;
833 Instruction *User = cast<Instruction>(U.getUser());
Tom Stellard6b7d99d2012-12-19 22:10:31 +0000834 if (User->getParent() == BB) {
835 continue;
836
837 } else if (PHINode *UserPN = dyn_cast<PHINode>(User)) {
Stephen Hines36b56882014-04-23 16:57:46 -0700838 if (UserPN->getIncomingBlock(U) == BB)
Tom Stellard6b7d99d2012-12-19 22:10:31 +0000839 continue;
840 }
841
842 if (DT->dominates(II, User))
843 continue;
844
845 if (!Initialized) {
846 Value *Undef = UndefValue::get(II->getType());
847 Updater.Initialize(II->getType(), "");
848 Updater.AddAvailableValue(&Func->getEntryBlock(), Undef);
849 Updater.AddAvailableValue(BB, II);
850 Initialized = true;
851 }
Stephen Hines36b56882014-04-23 16:57:46 -0700852 Updater.RewriteUseAfterInsertions(U);
Tom Stellard6b7d99d2012-12-19 22:10:31 +0000853 }
854 }
Tom Stellard6b7d99d2012-12-19 22:10:31 +0000855}
856
857/// \brief Run the transformation for each region found
Matt Arsenaultad966ea2013-06-19 20:18:24 +0000858bool StructurizeCFG::runOnRegion(Region *R, RGPassManager &RGM) {
Tom Stellard6b7d99d2012-12-19 22:10:31 +0000859 if (R->isTopLevelRegion())
860 return false;
861
862 Func = R->getEntry()->getParent();
863 ParentRegion = R;
864
Stephen Hines36b56882014-04-23 16:57:46 -0700865 DT = &getAnalysis<DominatorTreeWrapperPass>().getDomTree();
Tom Stellard6b7d99d2012-12-19 22:10:31 +0000866
867 orderNodes();
868 collectInfos();
869 createFlow();
Christian Konig623977d2013-02-16 11:27:45 +0000870 insertConditions(false);
871 insertConditions(true);
Tom Stellard13cf6cb2013-02-08 22:24:35 +0000872 setPhiValues();
Tom Stellard6b7d99d2012-12-19 22:10:31 +0000873 rebuildSSA();
874
Tom Stellard27f5d062013-02-08 22:24:37 +0000875 // Cleanup
Tom Stellard6b7d99d2012-12-19 22:10:31 +0000876 Order.clear();
877 Visited.clear();
Tom Stellard6b7d99d2012-12-19 22:10:31 +0000878 DeletedPhis.clear();
Tom Stellard13cf6cb2013-02-08 22:24:35 +0000879 AddedPhis.clear();
Christian Konig623977d2013-02-16 11:27:45 +0000880 Predicates.clear();
Tom Stellard27f5d062013-02-08 22:24:37 +0000881 Conditions.clear();
Christian Konig623977d2013-02-16 11:27:45 +0000882 Loops.clear();
883 LoopPreds.clear();
884 LoopConds.clear();
Tom Stellard6b7d99d2012-12-19 22:10:31 +0000885
886 return true;
887}
888
889/// \brief Create the pass
Matt Arsenaultad966ea2013-06-19 20:18:24 +0000890Pass *llvm::createStructurizeCFGPass() {
891 return new StructurizeCFG();
Tom Stellard6b7d99d2012-12-19 22:10:31 +0000892}