blob: 5f5e796a358959494548c104cd232976ab39238c [file] [log] [blame]
Chris Lattner14383482003-04-23 16:23:59 +00001//===- LowerSwitch.cpp - Eliminate Switch instructions --------------------===//
Misha Brukmanfd939082005-04-21 23:48:37 +00002//
John Criswellb576c942003-10-20 19:43:21 +00003// The LLVM Compiler Infrastructure
4//
Chris Lattner4ee451d2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Misha Brukmanfd939082005-04-21 23:48:37 +00007//
John Criswellb576c942003-10-20 19:43:21 +00008//===----------------------------------------------------------------------===//
Chris Lattner14383482003-04-23 16:23:59 +00009//
Gordon Henriksenc86b6772007-11-04 16:15:04 +000010// 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.
Chris Lattner14383482003-04-23 16:23:59 +000013//
14//===----------------------------------------------------------------------===//
15
16#include "llvm/Transforms/Scalar.h"
Chris Lattner8d89e7b2006-05-09 04:13:41 +000017#include "llvm/Transforms/Utils/UnifyFunctionExitNodes.h"
Chris Lattnerebbc1a52003-10-07 18:46:23 +000018#include "llvm/Constants.h"
Chris Lattner14383482003-04-23 16:23:59 +000019#include "llvm/Function.h"
Misha Brukmand8e1eea2004-07-29 17:05:13 +000020#include "llvm/Instructions.h"
Chris Lattner14383482003-04-23 16:23:59 +000021#include "llvm/Pass.h"
Dan Gohmanb61f2f02007-11-02 22:22:02 +000022#include "llvm/ADT/STLExtras.h"
Reid Spencer551ccae2004-09-01 22:55:40 +000023#include "llvm/Support/Debug.h"
Chris Lattnera4f0b3a2006-08-27 12:54:02 +000024#include "llvm/Support/Compiler.h"
Alkis Evlogimenos20aa4742004-09-03 18:19:51 +000025#include <algorithm>
Chris Lattnerd7456022004-01-09 06:02:20 +000026using namespace llvm;
Brian Gaeked0fde302003-11-11 22:41:34 +000027
Chris Lattner14383482003-04-23 16:23:59 +000028namespace {
Chris Lattner14383482003-04-23 16:23:59 +000029 /// 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!
Chris Lattnerf4b54612006-06-28 22:08:15 +000032 class VISIBILITY_HIDDEN LowerSwitch : public FunctionPass {
Chris Lattnerebbc1a52003-10-07 18:46:23 +000033 public:
Nick Lewyckyecd94c82007-05-06 13:37:16 +000034 static char ID; // Pass identification, replacement for typeid
Devang Patel794fd752007-05-01 21:15:47 +000035 LowerSwitch() : FunctionPass((intptr_t) &ID) {}
36
Chris Lattner8d89e7b2006-05-09 04:13:41 +000037 virtual bool runOnFunction(Function &F);
Chris Lattnered96fe82006-05-17 21:05:27 +000038
Chris Lattner8d89e7b2006-05-09 04:13:41 +000039 virtual void getAnalysisUsage(AnalysisUsage &AU) const {
Anton Korobeynikovbed29462007-04-16 18:10:23 +000040 // This is a cluster of orthogonal Transforms
Chris Lattner8d89e7b2006-05-09 04:13:41 +000041 AU.addPreserved<UnifyFunctionExitNodes>();
42 AU.addPreservedID(PromoteMemoryToRegisterID);
43 AU.addPreservedID(LowerSelectID);
Chris Lattnered96fe82006-05-17 21:05:27 +000044 AU.addPreservedID(LowerInvokePassID);
45 AU.addPreservedID(LowerAllocationsID);
Chris Lattner8d89e7b2006-05-09 04:13:41 +000046 }
Anton Korobeynikove2ff29c2007-03-10 16:46:28 +000047
48 struct CaseRange {
49 Constant* Low;
50 Constant* High;
51 BasicBlock* BB;
52
Jeff Cohenc4558fd2007-03-12 17:56:27 +000053 CaseRange() : Low(0), High(0), BB(0) { }
54 CaseRange(Constant* low, Constant* high, BasicBlock* bb) :
55 Low(low), High(high), BB(bb) { }
Anton Korobeynikove2ff29c2007-03-10 16:46:28 +000056 };
57
58 typedef std::vector<CaseRange> CaseVector;
59 typedef std::vector<CaseRange>::iterator CaseItr;
Chris Lattnerebbc1a52003-10-07 18:46:23 +000060 private:
Chris Lattner14383482003-04-23 16:23:59 +000061 void processSwitchInst(SwitchInst *SI);
Chris Lattnerebbc1a52003-10-07 18:46:23 +000062
63 BasicBlock* switchConvert(CaseItr Begin, CaseItr End, Value* Val,
64 BasicBlock* OrigBlock, BasicBlock* Default);
Anton Korobeynikove2ff29c2007-03-10 16:46:28 +000065 BasicBlock* newLeafBlock(CaseRange& Leaf, Value* Val,
Chris Lattnerebbc1a52003-10-07 18:46:23 +000066 BasicBlock* OrigBlock, BasicBlock* Default);
Anton Korobeynikove2ff29c2007-03-10 16:46:28 +000067 unsigned Clusterify(CaseVector& Cases, SwitchInst *SI);
Chris Lattnerebbc1a52003-10-07 18:46:23 +000068 };
69
70 /// The comparison function for sorting the switch case values in the vector.
Anton Korobeynikove2ff29c2007-03-10 16:46:28 +000071 /// WARNING: Case ranges should be disjoint!
Chris Lattnerebbc1a52003-10-07 18:46:23 +000072 struct CaseCmp {
Anton Korobeynikove2ff29c2007-03-10 16:46:28 +000073 bool operator () (const LowerSwitch::CaseRange& C1,
74 const LowerSwitch::CaseRange& C2) {
Chris Lattnerebbc1a52003-10-07 18:46:23 +000075
Anton Korobeynikove2ff29c2007-03-10 16:46:28 +000076 const ConstantInt* CI1 = cast<const ConstantInt>(C1.Low);
77 const ConstantInt* CI2 = cast<const ConstantInt>(C2.High);
78 return CI1->getValue().slt(CI2->getValue());
Chris Lattnerebbc1a52003-10-07 18:46:23 +000079 }
Chris Lattner14383482003-04-23 16:23:59 +000080 };
81
Devang Patel19974732007-05-03 01:11:54 +000082 char LowerSwitch::ID = 0;
Chris Lattner7f8897f2006-08-27 22:42:52 +000083 RegisterPass<LowerSwitch>
Chris Lattner14383482003-04-23 16:23:59 +000084 X("lowerswitch", "Lower SwitchInst's to branches");
85}
86
Chris Lattnerb3674e42006-05-02 04:24:36 +000087// Publically exposed interface to pass...
88const PassInfo *llvm::LowerSwitchID = X.getPassInfo();
Chris Lattner14383482003-04-23 16:23:59 +000089// createLowerSwitchPass - Interface to this file...
Chris Lattnerd7456022004-01-09 06:02:20 +000090FunctionPass *llvm::createLowerSwitchPass() {
Chris Lattner14383482003-04-23 16:23:59 +000091 return new LowerSwitch();
92}
93
94bool 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
Chris Lattnerebbc1a52003-10-07 18:46:23 +0000109// operator<< - Used for debugging purposes.
110//
Anton Korobeynikove2ff29c2007-03-10 16:46:28 +0000111static std::ostream& operator<<(std::ostream &O,
112 const LowerSwitch::CaseVector &C) {
Chris Lattnerebbc1a52003-10-07 18:46:23 +0000113 O << "[";
114
Anton Korobeynikove2ff29c2007-03-10 16:46:28 +0000115 for (LowerSwitch::CaseVector::const_iterator B = C.begin(),
Chris Lattnerd7456022004-01-09 06:02:20 +0000116 E = C.end(); B != E; ) {
Anton Korobeynikove2ff29c2007-03-10 16:46:28 +0000117 O << *B->Low << " -" << *B->High;
Chris Lattnerebbc1a52003-10-07 18:46:23 +0000118 if (++B != E) O << ", ";
119 }
120
121 return O << "]";
122}
Anton Korobeynikove2ff29c2007-03-10 16:46:28 +0000123
124static OStream& operator<<(OStream &O, const LowerSwitch::CaseVector &C) {
Bill Wendling5c7e3262006-12-17 05:15:13 +0000125 if (O.stream()) *O.stream() << C;
126 return O;
127}
Chris Lattnerebbc1a52003-10-07 18:46:23 +0000128
129// switchConvert - Convert the switch statement into a binary lookup of
130// the case values. The function recursively builds this tree.
131//
132BasicBlock* 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;
Anton Korobeynikove2ff29c2007-03-10 16:46:28 +0000142 std::vector<CaseRange> LHS(Begin, Begin + Mid);
Bill Wendling0d45a092006-11-26 10:17:54 +0000143 DOUT << "LHS: " << LHS << "\n";
Anton Korobeynikove2ff29c2007-03-10 16:46:28 +0000144 std::vector<CaseRange> RHS(Begin + Mid, End);
Bill Wendling0d45a092006-11-26 10:17:54 +0000145 DOUT << "RHS: " << RHS << "\n";
Chris Lattnerebbc1a52003-10-07 18:46:23 +0000146
Anton Korobeynikove2ff29c2007-03-10 16:46:28 +0000147 CaseRange& Pivot = *(Begin + Mid);
Reid Spencere8391e02007-03-02 23:15:21 +0000148 DEBUG( DOUT << "Pivot ==> "
Anton Korobeynikove2ff29c2007-03-10 16:46:28 +0000149 << cast<ConstantInt>(Pivot.Low)->getValue().toStringSigned(10)
150 << " -"
151 << cast<ConstantInt>(Pivot.High)->getValue().toStringSigned(10)
Reid Spencere8391e02007-03-02 23:15:21 +0000152 << "\n");
Chris Lattnerebbc1a52003-10-07 18:46:23 +0000153
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");
Chris Lattner261cdfb2007-04-17 18:09:47 +0000163 Function::iterator FI = OrigBlock;
164 F->getBasicBlockList().insert(++FI, NewNode);
Chris Lattnerebbc1a52003-10-07 18:46:23 +0000165
Anton Korobeynikove2ff29c2007-03-10 16:46:28 +0000166 ICmpInst* Comp = new ICmpInst(ICmpInst::ICMP_SLT, Val, Pivot.Low, "Pivot");
Chris Lattnerebbc1a52003-10-07 18:46:23 +0000167 NewNode->getInstList().push_back(Comp);
Chris Lattnerf8485c62003-11-20 18:25:24 +0000168 new BranchInst(LBranch, RBranch, Comp, NewNode);
Chris Lattnerebbc1a52003-10-07 18:46:23 +0000169 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//
Anton Korobeynikove2ff29c2007-03-10 16:46:28 +0000178BasicBlock* LowerSwitch::newLeafBlock(CaseRange& Leaf, Value* Val,
Chris Lattnerebbc1a52003-10-07 18:46:23 +0000179 BasicBlock* OrigBlock,
180 BasicBlock* Default)
181{
182 Function* F = OrigBlock->getParent();
183 BasicBlock* NewLeaf = new BasicBlock("LeafBlock");
Chris Lattner261cdfb2007-04-17 18:09:47 +0000184 Function::iterator FI = OrigBlock;
185 F->getBasicBlockList().insert(++FI, NewLeaf);
Chris Lattnerebbc1a52003-10-07 18:46:23 +0000186
Anton Korobeynikove2ff29c2007-03-10 16:46:28 +0000187 // 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 }
Chris Lattnerebbc1a52003-10-07 18:46:23 +0000214
215 // Make the conditional branch...
Anton Korobeynikove2ff29c2007-03-10 16:46:28 +0000216 BasicBlock* Succ = Leaf.BB;
Chris Lattnerf8485c62003-11-20 18:25:24 +0000217 new BranchInst(Succ, Default, Comp, NewLeaf);
Chris Lattnerebbc1a52003-10-07 18:46:23 +0000218
219 // If there were any PHI nodes in this successor, rewrite one entry
220 // from OrigBlock to come from NewLeaf.
Reid Spencer2da5c3d2004-09-15 17:06:42 +0000221 for (BasicBlock::iterator I = Succ->begin(); isa<PHINode>(I); ++I) {
222 PHINode* PN = cast<PHINode>(I);
Anton Korobeynikove2ff29c2007-03-10 16:46:28 +0000223 // 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
Chris Lattnerebbc1a52003-10-07 18:46:23 +0000230 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
Anton Korobeynikove2ff29c2007-03-10 16:46:28 +0000238// Clusterify - Transform simple list of Cases into list of CaseRange's
239unsigned 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)));
Dan Gohman111c4f82007-11-02 22:24:01 +0000247 std::sort(Cases.begin(), Cases.end(), CaseCmp());
Anton Korobeynikove2ff29c2007-03-10 16:46:28 +0000248
249 // Merge case into clusters
250 if (Cases.size()>=2)
David Greene9dfb11d2007-12-17 17:42:03 +0000251 for (CaseItr I=Cases.begin(), J=next(Cases.begin()); J!=Cases.end(); ) {
Anton Korobeynikove2ff29c2007-03-10 16:46:28 +0000252 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
Chris Lattner14383482003-04-23 16:23:59 +0000276// processSwitchInst - Replace the specified switch instruction with a sequence
Chris Lattnerebbc1a52003-10-07 18:46:23 +0000277// of chained if-then insts in a balanced binary search.
Chris Lattner14383482003-04-23 16:23:59 +0000278//
279void 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...
Chris Lattnerebbc1a52003-10-07 18:46:23 +0000284 BasicBlock* Default = SI->getDefaultDest();
Chris Lattner14383482003-04-23 16:23:59 +0000285
Chris Lattner44bb5412003-08-23 22:54:34 +0000286 // If there is only the default destination, don't bother with the code below.
287 if (SI->getNumOperands() == 2) {
Chris Lattner108e4ab2003-11-21 16:52:05 +0000288 new BranchInst(SI->getDefaultDest(), CurBlock);
Chris Lattnerbf9eadd2004-03-14 04:14:31 +0000289 CurBlock->getInstList().erase(SI);
Chris Lattner44bb5412003-08-23 22:54:34 +0000290 return;
291 }
292
Chris Lattnerebbc1a52003-10-07 18:46:23 +0000293 // 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);
Chris Lattner14383482003-04-23 16:23:59 +0000297
Chris Lattner108e4ab2003-11-21 16:52:05 +0000298 new BranchInst(Default, NewDefault);
Chris Lattner14383482003-04-23 16:23:59 +0000299
Chris Lattnerebbc1a52003-10-07 18:46:23 +0000300 // If there is an entry in any PHI nodes for the default edge, make sure
301 // to update them as well.
Reid Spencer2da5c3d2004-09-15 17:06:42 +0000302 for (BasicBlock::iterator I = Default->begin(); isa<PHINode>(I); ++I) {
303 PHINode *PN = cast<PHINode>(I);
Chris Lattnerebbc1a52003-10-07 18:46:23 +0000304 int BlockIdx = PN->getBasicBlockIndex(OrigBlock);
305 assert(BlockIdx != -1 && "Switch didn't go to this successor??");
306 PN->setIncomingBlock((unsigned)BlockIdx, NewDefault);
Chris Lattner14383482003-04-23 16:23:59 +0000307 }
308
Anton Korobeynikove2ff29c2007-03-10 16:46:28 +0000309 // Prepare cases vector.
310 CaseVector Cases;
311 unsigned numCmps = Clusterify(Cases, SI);
Chris Lattnerebbc1a52003-10-07 18:46:23 +0000312
Anton Korobeynikove2ff29c2007-03-10 16:46:28 +0000313 DOUT << "Clusterify finished. Total clusters: " << Cases.size()
314 << ". Total compares: " << numCmps << "\n";
Bill Wendling0d45a092006-11-26 10:17:54 +0000315 DOUT << "Cases: " << Cases << "\n";
Anton Korobeynikove2ff29c2007-03-10 16:46:28 +0000316
Chris Lattnerebbc1a52003-10-07 18:46:23 +0000317 BasicBlock* SwitchBlock = switchConvert(Cases.begin(), Cases.end(), Val,
318 OrigBlock, NewDefault);
319
320 // Branch to our shiny new if-then stuff...
Chris Lattner108e4ab2003-11-21 16:52:05 +0000321 new BranchInst(SwitchBlock, OrigBlock);
Chris Lattnerebbc1a52003-10-07 18:46:23 +0000322
Chris Lattner14383482003-04-23 16:23:59 +0000323 // We are now done with the switch instruction, delete it.
Chris Lattnerbf9eadd2004-03-14 04:14:31 +0000324 CurBlock->getInstList().erase(SI);
Chris Lattner14383482003-04-23 16:23:59 +0000325}