blob: 09eb4135b6d39520f3e5258665725fd8ee4c0454 [file] [log] [blame]
Chris Lattner18bdbc32004-03-30 18:41:10 +00001//===- LowerSelect.cpp - Transform select insts to branches ---------------===//
Misha Brukmanfd939082005-04-21 23:48:37 +00002//
Chris Lattner18bdbc32004-03-30 18:41:10 +00003// 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.
Misha Brukmanfd939082005-04-21 23:48:37 +00007//
Chris Lattner18bdbc32004-03-30 18:41:10 +00008//===----------------------------------------------------------------------===//
9//
10// This pass lowers select instructions into conditional branches for targets
11// that do not have conditional moves or that have not implemented the select
12// instruction yet.
13//
14// Note that this pass could be improved. In particular it turns every select
15// instruction into a new conditional branch, even though some common cases have
16// select instructions on the same predicate next to each other. It would be
17// better to use the same branch for the whole group of selects.
18//
19//===----------------------------------------------------------------------===//
20
21#include "llvm/Transforms/Scalar.h"
Chris Lattner8d89e7b2006-05-09 04:13:41 +000022#include "llvm/Transforms/Utils/UnifyFunctionExitNodes.h"
Chris Lattner18bdbc32004-03-30 18:41:10 +000023#include "llvm/Function.h"
24#include "llvm/Instructions.h"
25#include "llvm/Pass.h"
26#include "llvm/Type.h"
Reid Spencer9133fe22007-02-05 23:32:05 +000027#include "llvm/Support/Compiler.h"
Chris Lattner18bdbc32004-03-30 18:41:10 +000028using namespace llvm;
29
30namespace {
Chris Lattner18bdbc32004-03-30 18:41:10 +000031 /// LowerSelect - Turn select instructions into conditional branches.
32 ///
Reid Spencer9133fe22007-02-05 23:32:05 +000033 class VISIBILITY_HIDDEN LowerSelect : public FunctionPass {
Chris Lattner18bdbc32004-03-30 18:41:10 +000034 bool OnlyFP; // Only lower FP select instructions?
35 public:
Devang Patel19974732007-05-03 01:11:54 +000036 static char ID; // Pass identifcation, replacement for typeid
Devang Patel794fd752007-05-01 21:15:47 +000037 LowerSelect(bool onlyfp = false) : FunctionPass((intptr_t)&ID),
38 OnlyFP(onlyfp) {}
Chris Lattner18bdbc32004-03-30 18:41:10 +000039
40 virtual void getAnalysisUsage(AnalysisUsage &AU) const {
Chris Lattner8d89e7b2006-05-09 04:13:41 +000041 // This certainly destroys the CFG.
Anton Korobeynikovbed29462007-04-16 18:10:23 +000042 // This is a cluster of orthogonal Transforms:
Chris Lattner8d89e7b2006-05-09 04:13:41 +000043 AU.addPreserved<UnifyFunctionExitNodes>();
44 AU.addPreservedID(PromoteMemoryToRegisterID);
45 AU.addPreservedID(LowerSwitchID);
Chris Lattnered96fe82006-05-17 21:05:27 +000046 AU.addPreservedID(LowerInvokePassID);
47 AU.addPreservedID(LowerAllocationsID);
Chris Lattner18bdbc32004-03-30 18:41:10 +000048 }
49
50 bool runOnFunction(Function &F);
51 };
52
Devang Patel19974732007-05-03 01:11:54 +000053 char LowerSelect::ID = 0;
Chris Lattner7f8897f2006-08-27 22:42:52 +000054 RegisterPass<LowerSelect>
Chris Lattner18bdbc32004-03-30 18:41:10 +000055 X("lowerselect", "Lower select instructions to branches");
56}
57
Chris Lattnerb3674e42006-05-02 04:24:36 +000058// Publically exposed interface to pass...
59const PassInfo *llvm::LowerSelectID = X.getPassInfo();
Chris Lattner18bdbc32004-03-30 18:41:10 +000060//===----------------------------------------------------------------------===//
61// This pass converts SelectInst instructions into conditional branch and PHI
62// instructions. If the OnlyFP flag is set to true, then only floating point
63// select instructions are lowered.
64//
65FunctionPass *llvm::createLowerSelectPass(bool OnlyFP) {
66 return new LowerSelect(OnlyFP);
67}
68
69
70bool LowerSelect::runOnFunction(Function &F) {
71 bool Changed = false;
72 for (Function::iterator BB = F.begin(), E = F.end(); BB != E; ++BB)
73 for (BasicBlock::iterator I = BB->begin(), E = BB->end(); I != E; ++I) {
74 if (SelectInst *SI = dyn_cast<SelectInst>(I))
75 if (!OnlyFP || SI->getType()->isFloatingPoint()) {
76 // Split this basic block in half right before the select instruction.
77 BasicBlock *NewCont =
78 BB->splitBasicBlock(I, BB->getName()+".selectcont");
79
80 // Make the true block, and make it branch to the continue block.
81 BasicBlock *NewTrue = new BasicBlock(BB->getName()+".selecttrue",
82 BB->getParent(), NewCont);
83 new BranchInst(NewCont, NewTrue);
84
85 // Make the unconditional branch in the incoming block be a
86 // conditional branch on the select predicate.
87 BB->getInstList().erase(BB->getTerminator());
88 new BranchInst(NewTrue, NewCont, SI->getCondition(), BB);
89
90 // Create a new PHI node in the cont block with the entries we need.
Chris Lattner86cc4232007-02-11 01:37:51 +000091 PHINode *PN = new PHINode(SI->getType(), "", NewCont->begin());
92 PN->takeName(SI);
Chris Lattner18bdbc32004-03-30 18:41:10 +000093 PN->addIncoming(SI->getTrueValue(), NewTrue);
94 PN->addIncoming(SI->getFalseValue(), BB);
95
96 // Use the PHI instead of the select.
97 SI->replaceAllUsesWith(PN);
98 NewCont->getInstList().erase(SI);
Misha Brukmanfd939082005-04-21 23:48:37 +000099
Chris Lattner18bdbc32004-03-30 18:41:10 +0000100 Changed = true;
101 break; // This block is done with.
102 }
103 }
104 return Changed;
105}