Add explicit keywords.
[oota-llvm.git] / lib / VMCore / BasicBlock.cpp
1 //===-- BasicBlock.cpp - Implement BasicBlock related methods -------------===//
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 // This file implements the BasicBlock class for the VMCore library.
11 //
12 //===----------------------------------------------------------------------===//
13
14 #include "llvm/BasicBlock.h"
15 #include "llvm/Constants.h"
16 #include "llvm/Instructions.h"
17 #include "llvm/Type.h"
18 #include "llvm/Support/CFG.h"
19 #include "llvm/Support/LeakDetector.h"
20 #include "llvm/Support/Compiler.h"
21 #include "SymbolTableListTraitsImpl.h"
22 #include <algorithm>
23 using namespace llvm;
24
25 inline ValueSymbolTable *
26 ilist_traits<Instruction>::getSymTab(BasicBlock *BB) {
27   if (BB)
28     if (Function *F = BB->getParent())
29       return &F->getValueSymbolTable();
30   return 0;
31 }
32
33
34 namespace {
35   /// DummyInst - An instance of this class is used to mark the end of the
36   /// instruction list.  This is not a real instruction.
37   struct VISIBILITY_HIDDEN DummyInst : public Instruction {
38     // allocate space for exactly zero operands
39     void *operator new(size_t s) {
40       return User::operator new(s, 0);
41     }
42     DummyInst() : Instruction(Type::VoidTy, OtherOpsEnd, 0, 0) {
43       // This should not be garbage monitored.
44       LeakDetector::removeGarbageObject(this);
45     }
46
47     Instruction *clone() const {
48       assert(0 && "Cannot clone EOL");abort();
49       return 0;
50     }
51     const char *getOpcodeName() const { return "*end-of-list-inst*"; }
52
53     // Methods for support type inquiry through isa, cast, and dyn_cast...
54     static inline bool classof(const DummyInst *) { return true; }
55     static inline bool classof(const Instruction *I) {
56       return I->getOpcode() == OtherOpsEnd;
57     }
58     static inline bool classof(const Value *V) {
59       return isa<Instruction>(V) && classof(cast<Instruction>(V));
60     }
61   };
62 }
63
64 Instruction *ilist_traits<Instruction>::createSentinel() {
65   return new DummyInst();
66 }
67 iplist<Instruction> &ilist_traits<Instruction>::getList(BasicBlock *BB) {
68   return BB->getInstList();
69 }
70
71 // Explicit instantiation of SymbolTableListTraits since some of the methods
72 // are not in the public header file...
73 template class SymbolTableListTraits<Instruction, BasicBlock>;
74
75
76 BasicBlock::BasicBlock(const std::string &Name, Function *NewParent,
77                        BasicBlock *InsertBefore)
78   : Value(Type::LabelTy, Value::BasicBlockVal), Parent(0) {
79
80   // Make sure that we get added to a function
81   LeakDetector::addGarbageObject(this);
82
83   if (InsertBefore) {
84     assert(NewParent &&
85            "Cannot insert block before another block with no function!");
86     NewParent->getBasicBlockList().insert(InsertBefore, this);
87   } else if (NewParent) {
88     NewParent->getBasicBlockList().push_back(this);
89   }
90   
91   setName(Name);
92 }
93
94
95 BasicBlock::~BasicBlock() {
96   assert(getParent() == 0 && "BasicBlock still linked into the program!");
97   dropAllReferences();
98   InstList.clear();
99 }
100
101 void BasicBlock::setParent(Function *parent) {
102   if (getParent())
103     LeakDetector::addGarbageObject(this);
104
105   // Set Parent=parent, updating instruction symtab entries as appropriate.
106   InstList.setSymTabObject(&Parent, parent);
107
108   if (getParent())
109     LeakDetector::removeGarbageObject(this);
110 }
111
112 void BasicBlock::removeFromParent() {
113   getParent()->getBasicBlockList().remove(this);
114 }
115
116 void BasicBlock::eraseFromParent() {
117   getParent()->getBasicBlockList().erase(this);
118 }
119
120 /// moveBefore - Unlink this basic block from its current function and
121 /// insert it into the function that MovePos lives in, right before MovePos.
122 void BasicBlock::moveBefore(BasicBlock *MovePos) {
123   MovePos->getParent()->getBasicBlockList().splice(MovePos,
124                        getParent()->getBasicBlockList(), this);
125 }
126
127 /// moveAfter - Unlink this basic block from its current function and
128 /// insert it into the function that MovePos lives in, right after MovePos.
129 void BasicBlock::moveAfter(BasicBlock *MovePos) {
130   Function::iterator I = MovePos;
131   MovePos->getParent()->getBasicBlockList().splice(++I,
132                                        getParent()->getBasicBlockList(), this);
133 }
134
135
136 TerminatorInst *BasicBlock::getTerminator() {
137   if (InstList.empty()) return 0;
138   return dyn_cast<TerminatorInst>(&InstList.back());
139 }
140
141 const TerminatorInst *BasicBlock::getTerminator() const {
142   if (InstList.empty()) return 0;
143   return dyn_cast<TerminatorInst>(&InstList.back());
144 }
145
146 Instruction* BasicBlock::getFirstNonPHI() {
147   BasicBlock::iterator i = begin();
148   // All valid basic blocks should have a terminator,
149   // which is not a PHINode. If we have an invalid basic
150   // block we'll get an assertion failure when dereferencing
151   // a past-the-end iterator.
152   while (isa<PHINode>(i)) ++i;
153   return &*i;
154 }
155
156 void BasicBlock::dropAllReferences() {
157   for(iterator I = begin(), E = end(); I != E; ++I)
158     I->dropAllReferences();
159 }
160
161 /// getSinglePredecessor - If this basic block has a single predecessor block,
162 /// return the block, otherwise return a null pointer.
163 BasicBlock *BasicBlock::getSinglePredecessor() {
164   pred_iterator PI = pred_begin(this), E = pred_end(this);
165   if (PI == E) return 0;         // No preds.
166   BasicBlock *ThePred = *PI;
167   ++PI;
168   return (PI == E) ? ThePred : 0 /*multiple preds*/;
169 }
170
171 /// removePredecessor - This method is used to notify a BasicBlock that the
172 /// specified Predecessor of the block is no longer able to reach it.  This is
173 /// actually not used to update the Predecessor list, but is actually used to
174 /// update the PHI nodes that reside in the block.  Note that this should be
175 /// called while the predecessor still refers to this block.
176 ///
177 void BasicBlock::removePredecessor(BasicBlock *Pred,
178                                    bool DontDeleteUselessPHIs) {
179   assert((hasNUsesOrMore(16)||// Reduce cost of this assertion for complex CFGs.
180           find(pred_begin(this), pred_end(this), Pred) != pred_end(this)) &&
181          "removePredecessor: BB is not a predecessor!");
182
183   if (InstList.empty()) return;
184   PHINode *APN = dyn_cast<PHINode>(&front());
185   if (!APN) return;   // Quick exit.
186
187   // If there are exactly two predecessors, then we want to nuke the PHI nodes
188   // altogether.  However, we cannot do this, if this in this case:
189   //
190   //  Loop:
191   //    %x = phi [X, Loop]
192   //    %x2 = add %x, 1         ;; This would become %x2 = add %x2, 1
193   //    br Loop                 ;; %x2 does not dominate all uses
194   //
195   // This is because the PHI node input is actually taken from the predecessor
196   // basic block.  The only case this can happen is with a self loop, so we
197   // check for this case explicitly now.
198   //
199   unsigned max_idx = APN->getNumIncomingValues();
200   assert(max_idx != 0 && "PHI Node in block with 0 predecessors!?!?!");
201   if (max_idx == 2) {
202     BasicBlock *Other = APN->getIncomingBlock(APN->getIncomingBlock(0) == Pred);
203
204     // Disable PHI elimination!
205     if (this == Other) max_idx = 3;
206   }
207
208   // <= Two predecessors BEFORE I remove one?
209   if (max_idx <= 2 && !DontDeleteUselessPHIs) {
210     // Yup, loop through and nuke the PHI nodes
211     while (PHINode *PN = dyn_cast<PHINode>(&front())) {
212       // Remove the predecessor first.
213       PN->removeIncomingValue(Pred, !DontDeleteUselessPHIs);
214
215       // If the PHI _HAD_ two uses, replace PHI node with its now *single* value
216       if (max_idx == 2) {
217         if (PN->getOperand(0) != PN)
218           PN->replaceAllUsesWith(PN->getOperand(0));
219         else
220           // We are left with an infinite loop with no entries: kill the PHI.
221           PN->replaceAllUsesWith(UndefValue::get(PN->getType()));
222         getInstList().pop_front();    // Remove the PHI node
223       }
224
225       // If the PHI node already only had one entry, it got deleted by
226       // removeIncomingValue.
227     }
228   } else {
229     // Okay, now we know that we need to remove predecessor #pred_idx from all
230     // PHI nodes.  Iterate over each PHI node fixing them up
231     PHINode *PN;
232     for (iterator II = begin(); (PN = dyn_cast<PHINode>(II)); ) {
233       ++II;
234       PN->removeIncomingValue(Pred, false);
235       // If all incoming values to the Phi are the same, we can replace the Phi
236       // with that value.
237       Value* PNV = 0;
238       if (!DontDeleteUselessPHIs && (PNV = PN->hasConstantValue())) {
239         PN->replaceAllUsesWith(PNV);
240         PN->eraseFromParent();
241       }
242     }
243   }
244 }
245
246
247 /// splitBasicBlock - This splits a basic block into two at the specified
248 /// instruction.  Note that all instructions BEFORE the specified iterator stay
249 /// as part of the original basic block, an unconditional branch is added to
250 /// the new BB, and the rest of the instructions in the BB are moved to the new
251 /// BB, including the old terminator.  This invalidates the iterator.
252 ///
253 /// Note that this only works on well formed basic blocks (must have a
254 /// terminator), and 'I' must not be the end of instruction list (which would
255 /// cause a degenerate basic block to be formed, having a terminator inside of
256 /// the basic block).
257 ///
258 BasicBlock *BasicBlock::splitBasicBlock(iterator I, const std::string &BBName) {
259   assert(getTerminator() && "Can't use splitBasicBlock on degenerate BB!");
260   assert(I != InstList.end() &&
261          "Trying to get me to create degenerate basic block!");
262
263   BasicBlock *New = BasicBlock::Create(BBName, getParent(), getNext());
264
265   // Move all of the specified instructions from the original basic block into
266   // the new basic block.
267   New->getInstList().splice(New->end(), this->getInstList(), I, end());
268
269   // Add a branch instruction to the newly formed basic block.
270   BranchInst::Create(New, this);
271
272   // Now we must loop through all of the successors of the New block (which
273   // _were_ the successors of the 'this' block), and update any PHI nodes in
274   // successors.  If there were PHI nodes in the successors, then they need to
275   // know that incoming branches will be from New, not from Old.
276   //
277   for (succ_iterator I = succ_begin(New), E = succ_end(New); I != E; ++I) {
278     // Loop over any phi nodes in the basic block, updating the BB field of
279     // incoming values...
280     BasicBlock *Successor = *I;
281     PHINode *PN;
282     for (BasicBlock::iterator II = Successor->begin();
283          (PN = dyn_cast<PHINode>(II)); ++II) {
284       int IDX = PN->getBasicBlockIndex(this);
285       while (IDX != -1) {
286         PN->setIncomingBlock((unsigned)IDX, New);
287         IDX = PN->getBasicBlockIndex(this);
288       }
289     }
290   }
291   return New;
292 }