blob: 7409e779f80bad2981f0aa8ba814a4eaa8cb630b [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);
Chris Lattnered96fe82006-05-17 21:05:27 +000043 AU.addPreservedID(LowerInvokePassID);
44 AU.addPreservedID(LowerAllocationsID);
Chris Lattner8d89e7b2006-05-09 04:13:41 +000045 }
Anton Korobeynikove2ff29c2007-03-10 16:46:28 +000046
47 struct CaseRange {
48 Constant* Low;
49 Constant* High;
50 BasicBlock* BB;
51
Jeff Cohenc4558fd2007-03-12 17:56:27 +000052 CaseRange() : Low(0), High(0), BB(0) { }
53 CaseRange(Constant* low, Constant* high, BasicBlock* bb) :
54 Low(low), High(high), BB(bb) { }
Anton Korobeynikove2ff29c2007-03-10 16:46:28 +000055 };
56
57 typedef std::vector<CaseRange> CaseVector;
58 typedef std::vector<CaseRange>::iterator CaseItr;
Chris Lattnerebbc1a52003-10-07 18:46:23 +000059 private:
Chris Lattner14383482003-04-23 16:23:59 +000060 void processSwitchInst(SwitchInst *SI);
Chris Lattnerebbc1a52003-10-07 18:46:23 +000061
62 BasicBlock* switchConvert(CaseItr Begin, CaseItr End, Value* Val,
63 BasicBlock* OrigBlock, BasicBlock* Default);
Anton Korobeynikove2ff29c2007-03-10 16:46:28 +000064 BasicBlock* newLeafBlock(CaseRange& Leaf, Value* Val,
Chris Lattnerebbc1a52003-10-07 18:46:23 +000065 BasicBlock* OrigBlock, BasicBlock* Default);
Anton Korobeynikove2ff29c2007-03-10 16:46:28 +000066 unsigned Clusterify(CaseVector& Cases, SwitchInst *SI);
Chris Lattnerebbc1a52003-10-07 18:46:23 +000067 };
68
69 /// The comparison function for sorting the switch case values in the vector.
Anton Korobeynikove2ff29c2007-03-10 16:46:28 +000070 /// WARNING: Case ranges should be disjoint!
Chris Lattnerebbc1a52003-10-07 18:46:23 +000071 struct CaseCmp {
Anton Korobeynikove2ff29c2007-03-10 16:46:28 +000072 bool operator () (const LowerSwitch::CaseRange& C1,
73 const LowerSwitch::CaseRange& C2) {
Chris Lattnerebbc1a52003-10-07 18:46:23 +000074
Anton Korobeynikove2ff29c2007-03-10 16:46:28 +000075 const ConstantInt* CI1 = cast<const ConstantInt>(C1.Low);
76 const ConstantInt* CI2 = cast<const ConstantInt>(C2.High);
77 return CI1->getValue().slt(CI2->getValue());
Chris Lattnerebbc1a52003-10-07 18:46:23 +000078 }
Chris Lattner14383482003-04-23 16:23:59 +000079 };
Chris Lattner14383482003-04-23 16:23:59 +000080}
81
Dan Gohman844731a2008-05-13 00:00:25 +000082char LowerSwitch::ID = 0;
83static RegisterPass<LowerSwitch>
84X("lowerswitch", "Lower SwitchInst's to branches");
85
Chris Lattnerb3674e42006-05-02 04:24:36 +000086// Publically exposed interface to pass...
Dan Gohman6ddba2b2008-05-13 02:05:11 +000087const PassInfo *const llvm::LowerSwitchID = &X;
Chris Lattner14383482003-04-23 16:23:59 +000088// createLowerSwitchPass - Interface to this file...
Chris Lattnerd7456022004-01-09 06:02:20 +000089FunctionPass *llvm::createLowerSwitchPass() {
Chris Lattner14383482003-04-23 16:23:59 +000090 return new LowerSwitch();
91}
92
93bool LowerSwitch::runOnFunction(Function &F) {
94 bool Changed = false;
95
96 for (Function::iterator I = F.begin(), E = F.end(); I != E; ) {
97 BasicBlock *Cur = I++; // Advance over block so we don't traverse new blocks
98
99 if (SwitchInst *SI = dyn_cast<SwitchInst>(Cur->getTerminator())) {
100 Changed = true;
101 processSwitchInst(SI);
102 }
103 }
104
105 return Changed;
106}
107
Chris Lattnerebbc1a52003-10-07 18:46:23 +0000108// operator<< - Used for debugging purposes.
109//
Anton Korobeynikove2ff29c2007-03-10 16:46:28 +0000110static std::ostream& operator<<(std::ostream &O,
111 const LowerSwitch::CaseVector &C) {
Chris Lattnerebbc1a52003-10-07 18:46:23 +0000112 O << "[";
113
Anton Korobeynikove2ff29c2007-03-10 16:46:28 +0000114 for (LowerSwitch::CaseVector::const_iterator B = C.begin(),
Chris Lattnerd7456022004-01-09 06:02:20 +0000115 E = C.end(); B != E; ) {
Anton Korobeynikove2ff29c2007-03-10 16:46:28 +0000116 O << *B->Low << " -" << *B->High;
Chris Lattnerebbc1a52003-10-07 18:46:23 +0000117 if (++B != E) O << ", ";
118 }
119
120 return O << "]";
121}
Anton Korobeynikove2ff29c2007-03-10 16:46:28 +0000122
123static OStream& operator<<(OStream &O, const LowerSwitch::CaseVector &C) {
Bill Wendling5c7e3262006-12-17 05:15:13 +0000124 if (O.stream()) *O.stream() << C;
125 return O;
126}
Chris Lattnerebbc1a52003-10-07 18:46:23 +0000127
128// switchConvert - Convert the switch statement into a binary lookup of
129// the case values. The function recursively builds this tree.
130//
131BasicBlock* LowerSwitch::switchConvert(CaseItr Begin, CaseItr End,
132 Value* Val, BasicBlock* OrigBlock,
133 BasicBlock* Default)
134{
135 unsigned Size = End - Begin;
136
137 if (Size == 1)
138 return newLeafBlock(*Begin, Val, OrigBlock, Default);
139
140 unsigned Mid = Size / 2;
Anton Korobeynikove2ff29c2007-03-10 16:46:28 +0000141 std::vector<CaseRange> LHS(Begin, Begin + Mid);
Bill Wendling0d45a092006-11-26 10:17:54 +0000142 DOUT << "LHS: " << LHS << "\n";
Anton Korobeynikove2ff29c2007-03-10 16:46:28 +0000143 std::vector<CaseRange> RHS(Begin + Mid, End);
Bill Wendling0d45a092006-11-26 10:17:54 +0000144 DOUT << "RHS: " << RHS << "\n";
Chris Lattnerebbc1a52003-10-07 18:46:23 +0000145
Anton Korobeynikove2ff29c2007-03-10 16:46:28 +0000146 CaseRange& Pivot = *(Begin + Mid);
Chris Lattnerfad86b02008-08-17 07:19:36 +0000147 DEBUG(cerr << "Pivot ==> "
148 << cast<ConstantInt>(Pivot.Low)->getValue() << " -"
149 << cast<ConstantInt>(Pivot.High)->getValue() << "\n");
Chris Lattnerebbc1a52003-10-07 18:46:23 +0000150
151 BasicBlock* LBranch = switchConvert(LHS.begin(), LHS.end(), Val,
152 OrigBlock, Default);
153 BasicBlock* RBranch = switchConvert(RHS.begin(), RHS.end(), Val,
154 OrigBlock, Default);
155
156 // Create a new node that checks if the value is < pivot. Go to the
157 // left branch if it is and right branch if not.
158 Function* F = OrigBlock->getParent();
Gabor Greif051a9502008-04-06 20:25:17 +0000159 BasicBlock* NewNode = BasicBlock::Create("NodeBlock");
Chris Lattner261cdfb2007-04-17 18:09:47 +0000160 Function::iterator FI = OrigBlock;
161 F->getBasicBlockList().insert(++FI, NewNode);
Chris Lattnerebbc1a52003-10-07 18:46:23 +0000162
Anton Korobeynikove2ff29c2007-03-10 16:46:28 +0000163 ICmpInst* Comp = new ICmpInst(ICmpInst::ICMP_SLT, Val, Pivot.Low, "Pivot");
Chris Lattnerebbc1a52003-10-07 18:46:23 +0000164 NewNode->getInstList().push_back(Comp);
Gabor Greif051a9502008-04-06 20:25:17 +0000165 BranchInst::Create(LBranch, RBranch, Comp, NewNode);
Chris Lattnerebbc1a52003-10-07 18:46:23 +0000166 return NewNode;
167}
168
169// newLeafBlock - Create a new leaf block for the binary lookup tree. It
170// checks if the switch's value == the case's value. If not, then it
171// jumps to the default branch. At this point in the tree, the value
172// can't be another valid case value, so the jump to the "default" branch
173// is warranted.
174//
Anton Korobeynikove2ff29c2007-03-10 16:46:28 +0000175BasicBlock* LowerSwitch::newLeafBlock(CaseRange& Leaf, Value* Val,
Chris Lattnerebbc1a52003-10-07 18:46:23 +0000176 BasicBlock* OrigBlock,
177 BasicBlock* Default)
178{
179 Function* F = OrigBlock->getParent();
Gabor Greif051a9502008-04-06 20:25:17 +0000180 BasicBlock* NewLeaf = BasicBlock::Create("LeafBlock");
Chris Lattner261cdfb2007-04-17 18:09:47 +0000181 Function::iterator FI = OrigBlock;
182 F->getBasicBlockList().insert(++FI, NewLeaf);
Chris Lattnerebbc1a52003-10-07 18:46:23 +0000183
Anton Korobeynikove2ff29c2007-03-10 16:46:28 +0000184 // Emit comparison
185 ICmpInst* Comp = NULL;
186 if (Leaf.Low == Leaf.High) {
187 // Make the seteq instruction...
188 Comp = new ICmpInst(ICmpInst::ICMP_EQ, Val, Leaf.Low,
189 "SwitchLeaf", NewLeaf);
190 } else {
191 // Make range comparison
192 if (cast<ConstantInt>(Leaf.Low)->isMinValue(true /*isSigned*/)) {
193 // Val >= Min && Val <= Hi --> Val <= Hi
194 Comp = new ICmpInst(ICmpInst::ICMP_SLE, Val, Leaf.High,
195 "SwitchLeaf", NewLeaf);
196 } else if (cast<ConstantInt>(Leaf.Low)->isZero()) {
197 // Val >= 0 && Val <= Hi --> Val <=u Hi
198 Comp = new ICmpInst(ICmpInst::ICMP_ULE, Val, Leaf.High,
199 "SwitchLeaf", NewLeaf);
200 } else {
201 // Emit V-Lo <=u Hi-Lo
202 Constant* NegLo = ConstantExpr::getNeg(Leaf.Low);
Gabor Greif7cbd8a32008-05-16 19:29:10 +0000203 Instruction* Add = BinaryOperator::CreateAdd(Val, NegLo,
Anton Korobeynikove2ff29c2007-03-10 16:46:28 +0000204 Val->getName()+".off",
205 NewLeaf);
206 Constant *UpperBound = ConstantExpr::getAdd(NegLo, Leaf.High);
207 Comp = new ICmpInst(ICmpInst::ICMP_ULE, Add, UpperBound,
208 "SwitchLeaf", NewLeaf);
209 }
210 }
Chris Lattnerebbc1a52003-10-07 18:46:23 +0000211
212 // Make the conditional branch...
Anton Korobeynikove2ff29c2007-03-10 16:46:28 +0000213 BasicBlock* Succ = Leaf.BB;
Gabor Greif051a9502008-04-06 20:25:17 +0000214 BranchInst::Create(Succ, Default, Comp, NewLeaf);
Chris Lattnerebbc1a52003-10-07 18:46:23 +0000215
216 // If there were any PHI nodes in this successor, rewrite one entry
217 // from OrigBlock to come from NewLeaf.
Reid Spencer2da5c3d2004-09-15 17:06:42 +0000218 for (BasicBlock::iterator I = Succ->begin(); isa<PHINode>(I); ++I) {
219 PHINode* PN = cast<PHINode>(I);
Anton Korobeynikove2ff29c2007-03-10 16:46:28 +0000220 // Remove all but one incoming entries from the cluster
221 uint64_t Range = cast<ConstantInt>(Leaf.High)->getSExtValue() -
222 cast<ConstantInt>(Leaf.Low)->getSExtValue();
223 for (uint64_t j = 0; j < Range; ++j) {
224 PN->removeIncomingValue(OrigBlock);
225 }
226
Chris Lattnerebbc1a52003-10-07 18:46:23 +0000227 int BlockIdx = PN->getBasicBlockIndex(OrigBlock);
228 assert(BlockIdx != -1 && "Switch didn't go to this successor??");
229 PN->setIncomingBlock((unsigned)BlockIdx, NewLeaf);
230 }
231
232 return NewLeaf;
233}
234
Anton Korobeynikove2ff29c2007-03-10 16:46:28 +0000235// Clusterify - Transform simple list of Cases into list of CaseRange's
236unsigned LowerSwitch::Clusterify(CaseVector& Cases, SwitchInst *SI) {
237 unsigned numCmps = 0;
238
239 // Start with "simple" cases
240 for (unsigned i = 1; i < SI->getNumSuccessors(); ++i)
241 Cases.push_back(CaseRange(SI->getSuccessorValue(i),
242 SI->getSuccessorValue(i),
243 SI->getSuccessor(i)));
Dan Gohman111c4f82007-11-02 22:24:01 +0000244 std::sort(Cases.begin(), Cases.end(), CaseCmp());
Anton Korobeynikove2ff29c2007-03-10 16:46:28 +0000245
246 // Merge case into clusters
247 if (Cases.size()>=2)
David Greene9dfb11d2007-12-17 17:42:03 +0000248 for (CaseItr I=Cases.begin(), J=next(Cases.begin()); J!=Cases.end(); ) {
Anton Korobeynikove2ff29c2007-03-10 16:46:28 +0000249 int64_t nextValue = cast<ConstantInt>(J->Low)->getSExtValue();
250 int64_t currentValue = cast<ConstantInt>(I->High)->getSExtValue();
251 BasicBlock* nextBB = J->BB;
252 BasicBlock* currentBB = I->BB;
253
254 // If the two neighboring cases go to the same destination, merge them
255 // into a single case.
256 if ((nextValue-currentValue==1) && (currentBB == nextBB)) {
257 I->High = J->High;
258 J = Cases.erase(J);
259 } else {
260 I = J++;
261 }
262 }
263
264 for (CaseItr I=Cases.begin(), E=Cases.end(); I!=E; ++I, ++numCmps) {
265 if (I->Low != I->High)
266 // A range counts double, since it requires two compares.
267 ++numCmps;
268 }
269
270 return numCmps;
271}
272
Chris Lattner14383482003-04-23 16:23:59 +0000273// processSwitchInst - Replace the specified switch instruction with a sequence
Chris Lattnerebbc1a52003-10-07 18:46:23 +0000274// of chained if-then insts in a balanced binary search.
Chris Lattner14383482003-04-23 16:23:59 +0000275//
276void LowerSwitch::processSwitchInst(SwitchInst *SI) {
277 BasicBlock *CurBlock = SI->getParent();
278 BasicBlock *OrigBlock = CurBlock;
279 Function *F = CurBlock->getParent();
280 Value *Val = SI->getOperand(0); // The value we are switching on...
Chris Lattnerebbc1a52003-10-07 18:46:23 +0000281 BasicBlock* Default = SI->getDefaultDest();
Chris Lattner14383482003-04-23 16:23:59 +0000282
Chris Lattner44bb5412003-08-23 22:54:34 +0000283 // If there is only the default destination, don't bother with the code below.
284 if (SI->getNumOperands() == 2) {
Gabor Greif051a9502008-04-06 20:25:17 +0000285 BranchInst::Create(SI->getDefaultDest(), CurBlock);
Chris Lattnerbf9eadd2004-03-14 04:14:31 +0000286 CurBlock->getInstList().erase(SI);
Chris Lattner44bb5412003-08-23 22:54:34 +0000287 return;
288 }
289
Chris Lattnerebbc1a52003-10-07 18:46:23 +0000290 // Create a new, empty default block so that the new hierarchy of
291 // if-then statements go to this and the PHI nodes are happy.
Gabor Greif051a9502008-04-06 20:25:17 +0000292 BasicBlock* NewDefault = BasicBlock::Create("NewDefault");
Chris Lattnerebbc1a52003-10-07 18:46:23 +0000293 F->getBasicBlockList().insert(Default, NewDefault);
Chris Lattner14383482003-04-23 16:23:59 +0000294
Gabor Greif051a9502008-04-06 20:25:17 +0000295 BranchInst::Create(Default, NewDefault);
Chris Lattner14383482003-04-23 16:23:59 +0000296
Chris Lattnerebbc1a52003-10-07 18:46:23 +0000297 // If there is an entry in any PHI nodes for the default edge, make sure
298 // to update them as well.
Reid Spencer2da5c3d2004-09-15 17:06:42 +0000299 for (BasicBlock::iterator I = Default->begin(); isa<PHINode>(I); ++I) {
300 PHINode *PN = cast<PHINode>(I);
Chris Lattnerebbc1a52003-10-07 18:46:23 +0000301 int BlockIdx = PN->getBasicBlockIndex(OrigBlock);
302 assert(BlockIdx != -1 && "Switch didn't go to this successor??");
303 PN->setIncomingBlock((unsigned)BlockIdx, NewDefault);
Chris Lattner14383482003-04-23 16:23:59 +0000304 }
305
Anton Korobeynikove2ff29c2007-03-10 16:46:28 +0000306 // Prepare cases vector.
307 CaseVector Cases;
308 unsigned numCmps = Clusterify(Cases, SI);
Chris Lattnerebbc1a52003-10-07 18:46:23 +0000309
Anton Korobeynikove2ff29c2007-03-10 16:46:28 +0000310 DOUT << "Clusterify finished. Total clusters: " << Cases.size()
311 << ". Total compares: " << numCmps << "\n";
Bill Wendling0d45a092006-11-26 10:17:54 +0000312 DOUT << "Cases: " << Cases << "\n";
Anton Korobeynikove2ff29c2007-03-10 16:46:28 +0000313
Chris Lattnerebbc1a52003-10-07 18:46:23 +0000314 BasicBlock* SwitchBlock = switchConvert(Cases.begin(), Cases.end(), Val,
315 OrigBlock, NewDefault);
316
317 // Branch to our shiny new if-then stuff...
Gabor Greif051a9502008-04-06 20:25:17 +0000318 BranchInst::Create(SwitchBlock, OrigBlock);
Chris Lattnerebbc1a52003-10-07 18:46:23 +0000319
Chris Lattner14383482003-04-23 16:23:59 +0000320 // We are now done with the switch instruction, delete it.
Chris Lattnerbf9eadd2004-03-14 04:14:31 +0000321 CurBlock->getInstList().erase(SI);
Chris Lattner14383482003-04-23 16:23:59 +0000322}