ac97ed386e1d4290217e1da89c70163bf687f9b5
[oota-llvm.git] / lib / VMCore / BasicBlock.cpp
1 //===-- BasicBlock.cpp - Implement BasicBlock related methods -------------===//
2 //
3 // This file implements the BasicBlock class for the VMCore library.
4 //
5 //===----------------------------------------------------------------------===//
6
7 #include "llvm/BasicBlock.h"
8 #include "llvm/iTerminators.h"
9 #include "llvm/Type.h"
10 #include "llvm/Support/CFG.h"
11 #include "llvm/Constant.h"
12 #include "llvm/iPHINode.h"
13 #include "llvm/SymbolTable.h"
14 #include "Support/LeakDetector.h"
15 #include "SymbolTableListTraitsImpl.h"
16 #include <algorithm>
17
18 // DummyInst - An instance of this class is used to mark the end of the
19 // instruction list.  This is not a real instruction.
20 //
21 struct DummyInst : public Instruction {
22   DummyInst() : Instruction(Type::VoidTy, OtherOpsEnd) {
23     // This should not be garbage monitored.
24     LeakDetector::removeGarbageObject(this);
25   }
26
27   virtual Instruction *clone() const {
28     assert(0 && "Cannot clone EOL");abort();
29     return 0;
30   }
31   virtual const char *getOpcodeName() const { return "*end-of-list-inst*"; }
32
33   // Methods for support type inquiry through isa, cast, and dyn_cast...
34   static inline bool classof(const DummyInst *) { return true; }
35   static inline bool classof(const Instruction *I) {
36     return I->getOpcode() == OtherOpsEnd;
37   }
38   static inline bool classof(const Value *V) {
39     return isa<Instruction>(V) && classof(cast<Instruction>(V));
40   }
41 };
42
43 Instruction *ilist_traits<Instruction>::createNode() {
44   return new DummyInst();
45 }
46 iplist<Instruction> &ilist_traits<Instruction>::getList(BasicBlock *BB) {
47   return BB->getInstList();
48 }
49
50 // Explicit instantiation of SymbolTableListTraits since some of the methods
51 // are not in the public header file...
52 template SymbolTableListTraits<Instruction, BasicBlock, Function>;
53
54
55 // BasicBlock ctor - If the function parameter is specified, the basic block is
56 // automatically inserted at the end of the function.
57 //
58 BasicBlock::BasicBlock(const std::string &name, Function *Parent)
59   : Value(Type::LabelTy, Value::BasicBlockVal, name) {
60   // Initialize the instlist...
61   InstList.setItemParent(this);
62
63   // Make sure that we get added to a function
64   LeakDetector::addGarbageObject(this);
65
66   if (Parent)
67     Parent->getBasicBlockList().push_back(this);
68 }
69
70 /// BasicBlock ctor - If the InsertBefore parameter is specified, the basic
71 /// block is automatically inserted right before the specified block.
72 ///
73 BasicBlock::BasicBlock(const std::string &Name, BasicBlock *InsertBefore)
74   : Value(Type::LabelTy, Value::BasicBlockVal, Name) {
75   // Initialize the instlist...
76   InstList.setItemParent(this);
77
78   // Make sure that we get added to a function
79   LeakDetector::addGarbageObject(this);
80
81   if (InsertBefore) {
82     assert(InsertBefore->getParent() &&
83            "Cannot insert block before another block that is not embedded into"
84            " a function yet!");
85     InsertBefore->getParent()->getBasicBlockList().insert(InsertBefore, this);
86   }
87 }
88
89
90 BasicBlock::~BasicBlock() {
91   dropAllReferences();
92   InstList.clear();
93 }
94
95 void BasicBlock::setParent(Function *parent) {
96   if (getParent())
97     LeakDetector::addGarbageObject(this);
98
99   InstList.setParent(parent);
100
101   if (getParent())
102     LeakDetector::removeGarbageObject(this);
103 }
104
105 // Specialize setName to take care of symbol table majik
106 void BasicBlock::setName(const std::string &name, SymbolTable *ST) {
107   Function *P;
108   assert((ST == 0 || (!getParent() || ST == &getParent()->getSymbolTable())) &&
109          "Invalid symtab argument!");
110   if ((P = getParent()) && hasName()) P->getSymbolTable().remove(this);
111   Value::setName(name);
112   if (P && hasName()) P->getSymbolTable().insert(this);
113 }
114
115 TerminatorInst *BasicBlock::getTerminator() {
116   if (InstList.empty()) return 0;
117   return dyn_cast<TerminatorInst>(&InstList.back());
118 }
119
120 const TerminatorInst *const BasicBlock::getTerminator() const {
121   if (InstList.empty()) return 0;
122   return dyn_cast<TerminatorInst>(&InstList.back());
123 }
124
125 void BasicBlock::dropAllReferences() {
126   for(iterator I = begin(), E = end(); I != E; ++I)
127     I->dropAllReferences();
128 }
129
130 // hasConstantReferences() - This predicate is true if there is a 
131 // reference to this basic block in the constant pool for this method.  For
132 // example, if a block is reached through a switch table, that table resides
133 // in the constant pool, and the basic block is reference from it.
134 //
135 bool BasicBlock::hasConstantReferences() const {
136   for (use_const_iterator I = use_begin(), E = use_end(); I != E; ++I)
137     if (::isa<Constant>((Value*)*I))
138       return true;
139
140   return false;
141 }
142
143 // removePredecessor - This method is used to notify a BasicBlock that the
144 // specified Predecessor of the block is no longer able to reach it.  This is
145 // actually not used to update the Predecessor list, but is actually used to 
146 // update the PHI nodes that reside in the block.  Note that this should be
147 // called while the predecessor still refers to this block.
148 //
149 void BasicBlock::removePredecessor(BasicBlock *Pred) {
150   assert(find(pred_begin(this), pred_end(this), Pred) != pred_end(this) &&
151          "removePredecessor: BB is not a predecessor!");
152   if (!isa<PHINode>(front())) return;   // Quick exit.
153
154   pred_iterator PI(pred_begin(this)), EI(pred_end(this));
155   unsigned max_idx;
156
157   // Loop over the rest of the predecessors until we run out, or until we find
158   // out that there are more than 2 predecessors.
159   for (max_idx = 0; PI != EI && max_idx < 3; ++PI, ++max_idx) /*empty*/;
160
161   // If there are exactly two predecessors, then we want to nuke the PHI nodes
162   // altogether.  We cannot do this, however if this in this case however:
163   //
164   //  Loop:
165   //    %x = phi [X, Loop]
166   //    %x2 = add %x, 1         ;; This would become %x2 = add %x2, 1
167   //    br Loop                 ;; %x2 does not dominate all uses
168   //
169   // This is because the PHI node input is actually taken from the predecessor
170   // basic block.  The only case this can happen is with a self loop, so we 
171   // check for this case explicitly now.
172   // 
173   assert(max_idx != 0 && "PHI Node in block with 0 predecessors!?!?!");
174   if (max_idx == 2) {
175     PI = pred_begin(this);
176     BasicBlock *Other = *PI == Pred ? *++PI : *PI;
177
178     // Disable PHI elimination!
179     if (this == Other) max_idx = 3;
180   }
181
182   if (max_idx <= 2) {                // <= Two predecessors BEFORE I remove one?
183     // Yup, loop through and nuke the PHI nodes
184     while (PHINode *PN = dyn_cast<PHINode>(&front())) {
185       PN->removeIncomingValue(Pred); // Remove the predecessor first...
186
187       // If the PHI _HAD_ two uses, replace PHI node with its now *single* value
188       if (max_idx == 2) {
189         if (PN->getOperand(0) != PN)
190           PN->replaceAllUsesWith(PN->getOperand(0));
191         else
192           // We are left with an infinite loop with no entries: kill the PHI.
193           PN->replaceAllUsesWith(Constant::getNullValue(PN->getType()));
194         getInstList().pop_front();    // Remove the PHI node
195       }
196
197       // If the PHI node already only had one entry, it got deleted by
198       // removeIncomingValue.
199     }
200   } else {
201     // Okay, now we know that we need to remove predecessor #pred_idx from all
202     // PHI nodes.  Iterate over each PHI node fixing them up
203     for (iterator II = begin(); PHINode *PN = dyn_cast<PHINode>(II); ++II)
204       PN->removeIncomingValue(Pred);
205   }
206 }
207
208
209 // splitBasicBlock - This splits a basic block into two at the specified
210 // instruction.  Note that all instructions BEFORE the specified iterator stay
211 // as part of the original basic block, an unconditional branch is added to 
212 // the new BB, and the rest of the instructions in the BB are moved to the new
213 // BB, including the old terminator.  This invalidates the iterator.
214 //
215 // Note that this only works on well formed basic blocks (must have a 
216 // terminator), and 'I' must not be the end of instruction list (which would
217 // cause a degenerate basic block to be formed, having a terminator inside of
218 // the basic block). 
219 //
220 BasicBlock *BasicBlock::splitBasicBlock(iterator I, const std::string &BBName) {
221   assert(getTerminator() && "Can't use splitBasicBlock on degenerate BB!");
222   assert(I != InstList.end() && 
223          "Trying to get me to create degenerate basic block!");
224
225   BasicBlock *New = new BasicBlock(BBName, getParent());
226
227   // Go from the end of the basic block through to the iterator pointer, moving
228   // to the new basic block...
229   Instruction *Inst = 0;
230   do {
231     iterator EndIt = end();
232     Inst = InstList.remove(--EndIt);                  // Remove from end
233     New->InstList.push_front(Inst);                   // Add to front
234   } while (Inst != &*I);   // Loop until we move the specified instruction.
235
236   // Add a branch instruction to the newly formed basic block.
237   InstList.push_back(new BranchInst(New));
238
239   // Now we must loop through all of the successors of the New block (which
240   // _were_ the successors of the 'this' block), and update any PHI nodes in
241   // successors.  If there were PHI nodes in the successors, then they need to
242   // know that incoming branches will be from New, not from Old.
243   //
244   for (BasicBlock::succ_iterator I = succ_begin(New), E = succ_end(New);
245        I != E; ++I) {
246     // Loop over any phi nodes in the basic block, updating the BB field of
247     // incoming values...
248     BasicBlock *Successor = *I;
249     for (BasicBlock::iterator II = Successor->begin();
250          PHINode *PN = dyn_cast<PHINode>(II); ++II) {
251       int IDX = PN->getBasicBlockIndex(this);
252       while (IDX != -1) {
253         PN->setIncomingBlock((unsigned)IDX, New);
254         IDX = PN->getBasicBlockIndex(this);
255       }
256     }
257   }
258   return New;
259 }