Finishing initial docs for all transformations in Passes.html.
[oota-llvm.git] / lib / Transforms / Utils / LowerSwitch.cpp
1 //===- LowerSwitch.cpp - Eliminate Switch instructions --------------------===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file was developed by the LLVM research group and is distributed under
6 // the University of Illinois Open Source License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // The LowerSwitch transformation rewrites switch instructions with a sequence
11 // of branches, which allows targets to get away with not implementing the
12 // switch instruction until it is convenient.
13 //
14 //===----------------------------------------------------------------------===//
15
16 #include "llvm/Transforms/Scalar.h"
17 #include "llvm/Transforms/Utils/UnifyFunctionExitNodes.h"
18 #include "llvm/Constants.h"
19 #include "llvm/Function.h"
20 #include "llvm/Instructions.h"
21 #include "llvm/Pass.h"
22 #include "llvm/ADT/STLExtras.h"
23 #include "llvm/Support/Debug.h"
24 #include "llvm/Support/Compiler.h"
25 #include <algorithm>
26 using namespace llvm;
27
28 namespace {
29   /// LowerSwitch Pass - Replace all SwitchInst instructions with chained branch
30   /// instructions.  Note that this cannot be a BasicBlock pass because it
31   /// modifies the CFG!
32   class VISIBILITY_HIDDEN LowerSwitch : public FunctionPass {
33   public:
34     static char ID; // Pass identification, replacement for typeid
35     LowerSwitch() : FunctionPass((intptr_t) &ID) {} 
36
37     virtual bool runOnFunction(Function &F);
38     
39     virtual void getAnalysisUsage(AnalysisUsage &AU) const {
40       // This is a cluster of orthogonal Transforms
41       AU.addPreserved<UnifyFunctionExitNodes>();
42       AU.addPreservedID(PromoteMemoryToRegisterID);
43       AU.addPreservedID(LowerSelectID);
44       AU.addPreservedID(LowerInvokePassID);
45       AU.addPreservedID(LowerAllocationsID);
46     }
47
48     struct CaseRange {
49       Constant* Low;
50       Constant* High;
51       BasicBlock* BB;
52
53       CaseRange() : Low(0), High(0), BB(0) { }
54       CaseRange(Constant* low, Constant* high, BasicBlock* bb) :
55         Low(low), High(high), BB(bb) { }
56     };
57
58     typedef std::vector<CaseRange>           CaseVector;
59     typedef std::vector<CaseRange>::iterator CaseItr;
60   private:
61     void processSwitchInst(SwitchInst *SI);
62
63     BasicBlock* switchConvert(CaseItr Begin, CaseItr End, Value* Val,
64                               BasicBlock* OrigBlock, BasicBlock* Default);
65     BasicBlock* newLeafBlock(CaseRange& Leaf, Value* Val,
66                              BasicBlock* OrigBlock, BasicBlock* Default);
67     unsigned Clusterify(CaseVector& Cases, SwitchInst *SI);
68   };
69
70   /// The comparison function for sorting the switch case values in the vector.
71   /// WARNING: Case ranges should be disjoint!
72   struct CaseCmp {
73     bool operator () (const LowerSwitch::CaseRange& C1,
74                       const LowerSwitch::CaseRange& C2) {
75
76       const ConstantInt* CI1 = cast<const ConstantInt>(C1.Low);
77       const ConstantInt* CI2 = cast<const ConstantInt>(C2.High);
78       return CI1->getValue().slt(CI2->getValue());
79     }
80   };
81
82   char LowerSwitch::ID = 0;
83   RegisterPass<LowerSwitch>
84   X("lowerswitch", "Lower SwitchInst's to branches");
85 }
86
87 // Publically exposed interface to pass...
88 const PassInfo *llvm::LowerSwitchID = X.getPassInfo();
89 // createLowerSwitchPass - Interface to this file...
90 FunctionPass *llvm::createLowerSwitchPass() {
91   return new LowerSwitch();
92 }
93
94 bool LowerSwitch::runOnFunction(Function &F) {
95   bool Changed = false;
96
97   for (Function::iterator I = F.begin(), E = F.end(); I != E; ) {
98     BasicBlock *Cur = I++; // Advance over block so we don't traverse new blocks
99
100     if (SwitchInst *SI = dyn_cast<SwitchInst>(Cur->getTerminator())) {
101       Changed = true;
102       processSwitchInst(SI);
103     }
104   }
105
106   return Changed;
107 }
108
109 // operator<< - Used for debugging purposes.
110 //
111 static std::ostream& operator<<(std::ostream &O,
112                                 const LowerSwitch::CaseVector &C) {
113   O << "[";
114
115   for (LowerSwitch::CaseVector::const_iterator B = C.begin(),
116          E = C.end(); B != E; ) {
117     O << *B->Low << " -" << *B->High;
118     if (++B != E) O << ", ";
119   }
120
121   return O << "]";
122 }
123
124 static OStream& operator<<(OStream &O, const LowerSwitch::CaseVector &C) {
125   if (O.stream()) *O.stream() << C;
126   return O;
127 }
128
129 // switchConvert - Convert the switch statement into a binary lookup of
130 // the case values. The function recursively builds this tree.
131 //
132 BasicBlock* LowerSwitch::switchConvert(CaseItr Begin, CaseItr End,
133                                        Value* Val, BasicBlock* OrigBlock,
134                                        BasicBlock* Default)
135 {
136   unsigned Size = End - Begin;
137
138   if (Size == 1)
139     return newLeafBlock(*Begin, Val, OrigBlock, Default);
140
141   unsigned Mid = Size / 2;
142   std::vector<CaseRange> LHS(Begin, Begin + Mid);
143   DOUT << "LHS: " << LHS << "\n";
144   std::vector<CaseRange> RHS(Begin + Mid, End);
145   DOUT << "RHS: " << RHS << "\n";
146
147   CaseRange& Pivot = *(Begin + Mid);
148   DEBUG( DOUT << "Pivot ==> " 
149               << cast<ConstantInt>(Pivot.Low)->getValue().toStringSigned(10)
150               << " -"
151               << cast<ConstantInt>(Pivot.High)->getValue().toStringSigned(10)
152               << "\n");
153
154   BasicBlock* LBranch = switchConvert(LHS.begin(), LHS.end(), Val,
155                                       OrigBlock, Default);
156   BasicBlock* RBranch = switchConvert(RHS.begin(), RHS.end(), Val,
157                                       OrigBlock, Default);
158
159   // Create a new node that checks if the value is < pivot. Go to the
160   // left branch if it is and right branch if not.
161   Function* F = OrigBlock->getParent();
162   BasicBlock* NewNode = new BasicBlock("NodeBlock");
163   Function::iterator FI = OrigBlock;
164   F->getBasicBlockList().insert(++FI, NewNode);
165
166   ICmpInst* Comp = new ICmpInst(ICmpInst::ICMP_SLT, Val, Pivot.Low, "Pivot");
167   NewNode->getInstList().push_back(Comp);
168   new BranchInst(LBranch, RBranch, Comp, NewNode);
169   return NewNode;
170 }
171
172 // newLeafBlock - Create a new leaf block for the binary lookup tree. It
173 // checks if the switch's value == the case's value. If not, then it
174 // jumps to the default branch. At this point in the tree, the value
175 // can't be another valid case value, so the jump to the "default" branch
176 // is warranted.
177 //
178 BasicBlock* LowerSwitch::newLeafBlock(CaseRange& Leaf, Value* Val,
179                                       BasicBlock* OrigBlock,
180                                       BasicBlock* Default)
181 {
182   Function* F = OrigBlock->getParent();
183   BasicBlock* NewLeaf = new BasicBlock("LeafBlock");
184   Function::iterator FI = OrigBlock;
185   F->getBasicBlockList().insert(++FI, NewLeaf);
186
187   // Emit comparison
188   ICmpInst* Comp = NULL;
189   if (Leaf.Low == Leaf.High) {
190     // Make the seteq instruction...
191     Comp = new ICmpInst(ICmpInst::ICMP_EQ, Val, Leaf.Low,
192                         "SwitchLeaf", NewLeaf);
193   } else {
194     // Make range comparison
195     if (cast<ConstantInt>(Leaf.Low)->isMinValue(true /*isSigned*/)) {
196       // Val >= Min && Val <= Hi --> Val <= Hi
197       Comp = new ICmpInst(ICmpInst::ICMP_SLE, Val, Leaf.High,
198                           "SwitchLeaf", NewLeaf);
199     } else if (cast<ConstantInt>(Leaf.Low)->isZero()) {
200       // Val >= 0 && Val <= Hi --> Val <=u Hi
201       Comp = new ICmpInst(ICmpInst::ICMP_ULE, Val, Leaf.High,
202                           "SwitchLeaf", NewLeaf);      
203     } else {
204       // Emit V-Lo <=u Hi-Lo
205       Constant* NegLo = ConstantExpr::getNeg(Leaf.Low);
206       Instruction* Add = BinaryOperator::createAdd(Val, NegLo,
207                                                    Val->getName()+".off",
208                                                    NewLeaf);
209       Constant *UpperBound = ConstantExpr::getAdd(NegLo, Leaf.High);
210       Comp = new ICmpInst(ICmpInst::ICMP_ULE, Add, UpperBound,
211                           "SwitchLeaf", NewLeaf);
212     }
213   }
214
215   // Make the conditional branch...
216   BasicBlock* Succ = Leaf.BB;
217   new BranchInst(Succ, Default, Comp, NewLeaf);
218
219   // If there were any PHI nodes in this successor, rewrite one entry
220   // from OrigBlock to come from NewLeaf.
221   for (BasicBlock::iterator I = Succ->begin(); isa<PHINode>(I); ++I) {
222     PHINode* PN = cast<PHINode>(I);
223     // Remove all but one incoming entries from the cluster
224     uint64_t Range = cast<ConstantInt>(Leaf.High)->getSExtValue() -
225                      cast<ConstantInt>(Leaf.Low)->getSExtValue();    
226     for (uint64_t j = 0; j < Range; ++j) {
227       PN->removeIncomingValue(OrigBlock);
228     }
229     
230     int BlockIdx = PN->getBasicBlockIndex(OrigBlock);
231     assert(BlockIdx != -1 && "Switch didn't go to this successor??");
232     PN->setIncomingBlock((unsigned)BlockIdx, NewLeaf);
233   }
234
235   return NewLeaf;
236 }
237
238 // Clusterify - Transform simple list of Cases into list of CaseRange's
239 unsigned LowerSwitch::Clusterify(CaseVector& Cases, SwitchInst *SI) {
240   unsigned numCmps = 0;
241
242   // Start with "simple" cases
243   for (unsigned i = 1; i < SI->getNumSuccessors(); ++i)
244     Cases.push_back(CaseRange(SI->getSuccessorValue(i),
245                               SI->getSuccessorValue(i),
246                               SI->getSuccessor(i)));
247   std::sort(Cases.begin(), Cases.end(), CaseCmp());
248
249   // Merge case into clusters
250   if (Cases.size()>=2)
251     for (CaseItr I=Cases.begin(), J=next(Cases.begin()), E=Cases.end(); J!=E; ) {
252       int64_t nextValue = cast<ConstantInt>(J->Low)->getSExtValue();
253       int64_t currentValue = cast<ConstantInt>(I->High)->getSExtValue();
254       BasicBlock* nextBB = J->BB;
255       BasicBlock* currentBB = I->BB;
256
257       // If the two neighboring cases go to the same destination, merge them
258       // into a single case.
259       if ((nextValue-currentValue==1) && (currentBB == nextBB)) {
260         I->High = J->High;
261         J = Cases.erase(J);
262       } else {
263         I = J++;
264       }
265     }
266
267   for (CaseItr I=Cases.begin(), E=Cases.end(); I!=E; ++I, ++numCmps) {
268     if (I->Low != I->High)
269       // A range counts double, since it requires two compares.
270       ++numCmps;
271   }
272
273   return numCmps;
274 }
275
276 // processSwitchInst - Replace the specified switch instruction with a sequence
277 // of chained if-then insts in a balanced binary search.
278 //
279 void LowerSwitch::processSwitchInst(SwitchInst *SI) {
280   BasicBlock *CurBlock = SI->getParent();
281   BasicBlock *OrigBlock = CurBlock;
282   Function *F = CurBlock->getParent();
283   Value *Val = SI->getOperand(0);  // The value we are switching on...
284   BasicBlock* Default = SI->getDefaultDest();
285
286   // If there is only the default destination, don't bother with the code below.
287   if (SI->getNumOperands() == 2) {
288     new BranchInst(SI->getDefaultDest(), CurBlock);
289     CurBlock->getInstList().erase(SI);
290     return;
291   }
292
293   // Create a new, empty default block so that the new hierarchy of
294   // if-then statements go to this and the PHI nodes are happy.
295   BasicBlock* NewDefault = new BasicBlock("NewDefault");
296   F->getBasicBlockList().insert(Default, NewDefault);
297
298   new BranchInst(Default, NewDefault);
299
300   // If there is an entry in any PHI nodes for the default edge, make sure
301   // to update them as well.
302   for (BasicBlock::iterator I = Default->begin(); isa<PHINode>(I); ++I) {
303     PHINode *PN = cast<PHINode>(I);
304     int BlockIdx = PN->getBasicBlockIndex(OrigBlock);
305     assert(BlockIdx != -1 && "Switch didn't go to this successor??");
306     PN->setIncomingBlock((unsigned)BlockIdx, NewDefault);
307   }
308
309   // Prepare cases vector.
310   CaseVector Cases;
311   unsigned numCmps = Clusterify(Cases, SI);
312
313   DOUT << "Clusterify finished. Total clusters: " << Cases.size()
314        << ". Total compares: " << numCmps << "\n";
315   DOUT << "Cases: " << Cases << "\n";
316   
317   BasicBlock* SwitchBlock = switchConvert(Cases.begin(), Cases.end(), Val,
318                                           OrigBlock, NewDefault);
319
320   // Branch to our shiny new if-then stuff...
321   new BranchInst(SwitchBlock, OrigBlock);
322
323   // We are now done with the switch instruction, delete it.
324   CurBlock->getInstList().erase(SI);
325 }