blob: 7d48185768ba578b04ccefab617d03dba86b8fa2 [file] [log] [blame]
Misha Brukman373086d2003-05-20 21:01:22 +00001//===- SCCP.cpp - Sparse Conditional Constant Propagation -----------------===//
Chris Lattner347389d2001-06-27 23:38:11 +00002//
Misha Brukman373086d2003-05-20 21:01:22 +00003// This file implements sparse conditional constant propagation and merging:
Chris Lattner347389d2001-06-27 23:38:11 +00004//
5// Specifically, this:
6// * Assumes values are constant unless proven otherwise
7// * Assumes BasicBlocks are dead unless proven otherwise
8// * Proves values to be constant, and replaces them with constants
Chris Lattnerdd6522e2002-08-30 23:39:00 +00009// * Proves conditional branches to be unconditional
Chris Lattner347389d2001-06-27 23:38:11 +000010//
11// Notice that:
12// * This pass has a habit of making definitions be dead. It is a good idea
13// to to run a DCE pass sometime after running this pass.
14//
15//===----------------------------------------------------------------------===//
16
Chris Lattnerb4cfa7f2002-05-07 20:03:00 +000017#include "llvm/Transforms/Scalar.h"
Chris Lattner65b529f2002-04-08 20:18:09 +000018#include "llvm/ConstantHandling.h"
Chris Lattner57698e22002-03-26 18:01:55 +000019#include "llvm/Function.h"
Chris Lattnercccc5c72003-04-25 02:50:03 +000020#include "llvm/Instructions.h"
Chris Lattner04805fa2002-02-26 21:46:54 +000021#include "llvm/Pass.h"
Chris Lattner6e560792002-04-18 15:13:15 +000022#include "llvm/Support/InstVisitor.h"
Chris Lattner8abcd562003-08-01 22:15:03 +000023#include "Support/Debug.h"
Chris Lattnerbf3a0992002-10-01 22:38:41 +000024#include "Support/Statistic.h"
Chris Lattner8abcd562003-08-01 22:15:03 +000025#include "Support/STLExtras.h"
Chris Lattner347389d2001-06-27 23:38:11 +000026#include <algorithm>
Chris Lattner347389d2001-06-27 23:38:11 +000027#include <set>
28
Chris Lattner347389d2001-06-27 23:38:11 +000029// InstVal class - This class represents the different lattice values that an
Chris Lattnerc8e66542002-04-27 06:56:12 +000030// instruction may occupy. It is a simple class with value semantics.
Chris Lattner347389d2001-06-27 23:38:11 +000031//
Chris Lattner7d325382002-04-29 21:26:08 +000032namespace {
Chris Lattnerbf3a0992002-10-01 22:38:41 +000033 Statistic<> NumInstRemoved("sccp", "Number of instructions removed");
34
Chris Lattner347389d2001-06-27 23:38:11 +000035class InstVal {
36 enum {
Chris Lattner3462ae32001-12-03 22:26:30 +000037 undefined, // This instruction has no known value
38 constant, // This instruction has a constant value
Chris Lattner3462ae32001-12-03 22:26:30 +000039 overdefined // This instruction has an unknown value
40 } LatticeValue; // The current lattice position
41 Constant *ConstantVal; // If Constant value, the current value
Chris Lattner347389d2001-06-27 23:38:11 +000042public:
Chris Lattner3462ae32001-12-03 22:26:30 +000043 inline InstVal() : LatticeValue(undefined), ConstantVal(0) {}
Chris Lattner347389d2001-06-27 23:38:11 +000044
45 // markOverdefined - Return true if this is a new status to be in...
46 inline bool markOverdefined() {
Chris Lattner3462ae32001-12-03 22:26:30 +000047 if (LatticeValue != overdefined) {
48 LatticeValue = overdefined;
Chris Lattner347389d2001-06-27 23:38:11 +000049 return true;
50 }
51 return false;
52 }
53
54 // markConstant - Return true if this is a new status for us...
Chris Lattner3462ae32001-12-03 22:26:30 +000055 inline bool markConstant(Constant *V) {
56 if (LatticeValue != constant) {
57 LatticeValue = constant;
Chris Lattner347389d2001-06-27 23:38:11 +000058 ConstantVal = V;
59 return true;
60 } else {
Chris Lattnerdae05dc2001-09-07 16:43:22 +000061 assert(ConstantVal == V && "Marking constant with different value");
Chris Lattner347389d2001-06-27 23:38:11 +000062 }
63 return false;
64 }
65
Chris Lattner3462ae32001-12-03 22:26:30 +000066 inline bool isUndefined() const { return LatticeValue == undefined; }
67 inline bool isConstant() const { return LatticeValue == constant; }
68 inline bool isOverdefined() const { return LatticeValue == overdefined; }
Chris Lattner347389d2001-06-27 23:38:11 +000069
Chris Lattner3462ae32001-12-03 22:26:30 +000070 inline Constant *getConstant() const { return ConstantVal; }
Chris Lattner347389d2001-06-27 23:38:11 +000071};
72
Chris Lattner7d325382002-04-29 21:26:08 +000073} // end anonymous namespace
Chris Lattner347389d2001-06-27 23:38:11 +000074
75
76//===----------------------------------------------------------------------===//
77// SCCP Class
78//
Misha Brukman373086d2003-05-20 21:01:22 +000079// This class does all of the work of Sparse Conditional Constant Propagation.
Chris Lattner347389d2001-06-27 23:38:11 +000080//
Chris Lattner7d325382002-04-29 21:26:08 +000081namespace {
82class SCCP : public FunctionPass, public InstVisitor<SCCP> {
Chris Lattner7f74a562002-01-20 22:54:45 +000083 std::set<BasicBlock*> BBExecutable;// The basic blocks that are executable
84 std::map<Value*, InstVal> ValueState; // The state each value is in...
Chris Lattner347389d2001-06-27 23:38:11 +000085
Chris Lattnerd66a6e32002-05-07 04:29:32 +000086 std::vector<Instruction*> InstWorkList;// The instruction work list
Chris Lattner7f74a562002-01-20 22:54:45 +000087 std::vector<BasicBlock*> BBWorkList; // The BasicBlock work list
Chris Lattner347389d2001-06-27 23:38:11 +000088public:
89
Misha Brukman373086d2003-05-20 21:01:22 +000090 // runOnFunction - Run the Sparse Conditional Constant Propagation algorithm,
Chris Lattner7d325382002-04-29 21:26:08 +000091 // and return true if the function was modified.
92 //
Chris Lattner113f4f42002-06-25 16:13:24 +000093 bool runOnFunction(Function &F);
Chris Lattner7d325382002-04-29 21:26:08 +000094
95 virtual void getAnalysisUsage(AnalysisUsage &AU) const {
Chris Lattner820d9712002-10-21 20:00:28 +000096 AU.setPreservesCFG();
Chris Lattner7d325382002-04-29 21:26:08 +000097 }
98
Chris Lattner347389d2001-06-27 23:38:11 +000099
100 //===--------------------------------------------------------------------===//
101 // The implementation of this class
102 //
103private:
Chris Lattner6e560792002-04-18 15:13:15 +0000104 friend class InstVisitor<SCCP>; // Allow callbacks from visitor
Chris Lattner347389d2001-06-27 23:38:11 +0000105
106 // markValueOverdefined - Make a value be marked as "constant". If the value
107 // is not already a constant, add it to the instruction work list so that
108 // the users of the instruction are updated later.
109 //
Chris Lattner3462ae32001-12-03 22:26:30 +0000110 inline bool markConstant(Instruction *I, Constant *V) {
Chris Lattner347389d2001-06-27 23:38:11 +0000111 if (ValueState[I].markConstant(V)) {
Chris Lattnercccc5c72003-04-25 02:50:03 +0000112 DEBUG(std::cerr << "markConstant: " << V << " = " << I);
Chris Lattnerd66a6e32002-05-07 04:29:32 +0000113 InstWorkList.push_back(I);
Chris Lattner347389d2001-06-27 23:38:11 +0000114 return true;
115 }
116 return false;
117 }
118
119 // markValueOverdefined - Make a value be marked as "overdefined". If the
120 // value is not already overdefined, add it to the instruction work list so
121 // that the users of the instruction are updated later.
122 //
123 inline bool markOverdefined(Value *V) {
124 if (ValueState[V].markOverdefined()) {
Chris Lattner4b717c02001-10-01 16:18:37 +0000125 if (Instruction *I = dyn_cast<Instruction>(V)) {
Chris Lattnercccc5c72003-04-25 02:50:03 +0000126 DEBUG(std::cerr << "markOverdefined: " << V);
Chris Lattnerd66a6e32002-05-07 04:29:32 +0000127 InstWorkList.push_back(I); // Only instructions go on the work list
Chris Lattner347389d2001-06-27 23:38:11 +0000128 }
129 return true;
130 }
131 return false;
132 }
133
134 // getValueState - Return the InstVal object that corresponds to the value.
Misha Brukman7eb05a12003-08-18 14:43:39 +0000135 // This function is necessary because not all values should start out in the
Chris Lattner2e9fa6d2002-04-09 19:48:49 +0000136 // underdefined state... Argument's should be overdefined, and
Chris Lattner57698e22002-03-26 18:01:55 +0000137 // constants should be marked as constants. If a value is not known to be an
Chris Lattner347389d2001-06-27 23:38:11 +0000138 // Instruction object, then use this accessor to get its value from the map.
139 //
140 inline InstVal &getValueState(Value *V) {
Chris Lattner7f74a562002-01-20 22:54:45 +0000141 std::map<Value*, InstVal>::iterator I = ValueState.find(V);
Chris Lattner347389d2001-06-27 23:38:11 +0000142 if (I != ValueState.end()) return I->second; // Common case, in the map
143
Chris Lattner3462ae32001-12-03 22:26:30 +0000144 if (Constant *CPV = dyn_cast<Constant>(V)) { // Constants are constant
Chris Lattner347389d2001-06-27 23:38:11 +0000145 ValueState[CPV].markConstant(CPV);
Chris Lattner2e9fa6d2002-04-09 19:48:49 +0000146 } else if (isa<Argument>(V)) { // Arguments are overdefined
Chris Lattner347389d2001-06-27 23:38:11 +0000147 ValueState[V].markOverdefined();
Chris Lattnerdd6522e2002-08-30 23:39:00 +0000148 } else if (GlobalValue *GV = dyn_cast<GlobalValue>(V)) {
149 // The address of a global is a constant...
150 ValueState[V].markConstant(ConstantPointerRef::get(GV));
151 }
Chris Lattner347389d2001-06-27 23:38:11 +0000152 // All others are underdefined by default...
153 return ValueState[V];
154 }
155
156 // markExecutable - Mark a basic block as executable, adding it to the BB
157 // work list if it is not already executable...
158 //
159 void markExecutable(BasicBlock *BB) {
Chris Lattnercccc5c72003-04-25 02:50:03 +0000160 if (BBExecutable.count(BB)) {
161 // BB is already executable, but we may have just made an edge feasible
162 // that wasn't before. Add the PHI nodes to the work list so that they
163 // can be rechecked.
164 for (BasicBlock::iterator I = BB->begin();
165 PHINode *PN = dyn_cast<PHINode>(I); ++I)
Chris Lattner3c982762003-04-25 03:35:10 +0000166 visitPHINode(*PN);
Chris Lattnercccc5c72003-04-25 02:50:03 +0000167
168 } else {
169 DEBUG(std::cerr << "Marking BB Executable: " << *BB);
170 BBExecutable.insert(BB); // Basic block is executable!
171 BBWorkList.push_back(BB); // Add the block to the work list!
172 }
Chris Lattner347389d2001-06-27 23:38:11 +0000173 }
174
Chris Lattner347389d2001-06-27 23:38:11 +0000175
Chris Lattner6e560792002-04-18 15:13:15 +0000176 // visit implementations - Something changed in this instruction... Either an
Chris Lattner10b250e2001-06-29 23:56:23 +0000177 // operand made a transition, or the instruction is newly executable. Change
178 // the value type of I to reflect these changes if appropriate.
179 //
Chris Lattner113f4f42002-06-25 16:13:24 +0000180 void visitPHINode(PHINode &I);
Chris Lattner6e560792002-04-18 15:13:15 +0000181
182 // Terminators
Chris Lattner113f4f42002-06-25 16:13:24 +0000183 void visitReturnInst(ReturnInst &I) { /*does not have an effect*/ }
184 void visitTerminatorInst(TerminatorInst &TI);
Chris Lattner6e560792002-04-18 15:13:15 +0000185
Chris Lattner6e1a1b12002-08-14 17:53:45 +0000186 void visitCastInst(CastInst &I);
Chris Lattner113f4f42002-06-25 16:13:24 +0000187 void visitBinaryOperator(Instruction &I);
188 void visitShiftInst(ShiftInst &I) { visitBinaryOperator(I); }
Chris Lattner6e560792002-04-18 15:13:15 +0000189
190 // Instructions that cannot be folded away...
Chris Lattner113f4f42002-06-25 16:13:24 +0000191 void visitStoreInst (Instruction &I) { /*returns void*/ }
Chris Lattnerdfb3a2c2002-08-22 23:37:20 +0000192 void visitLoadInst (Instruction &I) { markOverdefined(&I); }
Chris Lattnerdd6522e2002-08-30 23:39:00 +0000193 void visitGetElementPtrInst(GetElementPtrInst &I);
Chris Lattner113f4f42002-06-25 16:13:24 +0000194 void visitCallInst (Instruction &I) { markOverdefined(&I); }
Chris Lattnerdf741d62003-08-27 01:08:35 +0000195 void visitInvokeInst (TerminatorInst &I) {
196 markOverdefined(&I);
197 visitTerminatorInst(I);
198 }
Chris Lattner9c58cf62003-09-08 18:54:55 +0000199 void visitUnwindInst (TerminatorInst &I) { /*returns void*/ }
Chris Lattner113f4f42002-06-25 16:13:24 +0000200 void visitAllocationInst(Instruction &I) { markOverdefined(&I); }
Chris Lattnerb0269722003-05-08 02:50:13 +0000201 void visitVarArgInst (Instruction &I) { markOverdefined(&I); }
Chris Lattner113f4f42002-06-25 16:13:24 +0000202 void visitFreeInst (Instruction &I) { /*returns void*/ }
Chris Lattner6e560792002-04-18 15:13:15 +0000203
Chris Lattner113f4f42002-06-25 16:13:24 +0000204 void visitInstruction(Instruction &I) {
Chris Lattner6e560792002-04-18 15:13:15 +0000205 // If a new instruction is added to LLVM that we don't handle...
Chris Lattnercccc5c72003-04-25 02:50:03 +0000206 std::cerr << "SCCP: Don't know how to handle: " << I;
Chris Lattner113f4f42002-06-25 16:13:24 +0000207 markOverdefined(&I); // Just in case
Chris Lattner6e560792002-04-18 15:13:15 +0000208 }
Chris Lattner10b250e2001-06-29 23:56:23 +0000209
Chris Lattnerfe6c9ee2002-05-02 21:44:00 +0000210 // getFeasibleSuccessors - Return a vector of booleans to indicate which
211 // successors are reachable from a given terminator instruction.
212 //
Chris Lattner113f4f42002-06-25 16:13:24 +0000213 void getFeasibleSuccessors(TerminatorInst &TI, std::vector<bool> &Succs);
Chris Lattnerfe6c9ee2002-05-02 21:44:00 +0000214
Chris Lattner13b52e72002-05-02 21:18:01 +0000215 // isEdgeFeasible - Return true if the control flow edge from the 'From' basic
216 // block to the 'To' basic block is currently feasible...
217 //
218 bool isEdgeFeasible(BasicBlock *From, BasicBlock *To);
219
Chris Lattner10b250e2001-06-29 23:56:23 +0000220 // OperandChangedState - This method is invoked on all of the users of an
221 // instruction that was just changed state somehow.... Based on this
222 // information, we need to update the specified user of this instruction.
223 //
Chris Lattner13b52e72002-05-02 21:18:01 +0000224 void OperandChangedState(User *U) {
225 // Only instructions use other variable values!
Chris Lattner113f4f42002-06-25 16:13:24 +0000226 Instruction &I = cast<Instruction>(*U);
Chris Lattnercccc5c72003-04-25 02:50:03 +0000227 if (BBExecutable.count(I.getParent())) // Inst is executable?
228 visit(I);
Chris Lattner13b52e72002-05-02 21:18:01 +0000229 }
Chris Lattner10b250e2001-06-29 23:56:23 +0000230};
Chris Lattnerb28b6802002-07-23 18:06:35 +0000231
Chris Lattnercccc5c72003-04-25 02:50:03 +0000232 RegisterOpt<SCCP> X("sccp", "Sparse Conditional Constant Propagation");
Chris Lattner7d325382002-04-29 21:26:08 +0000233} // end anonymous namespace
234
235
236// createSCCPPass - This is the public interface to this file...
237//
238Pass *createSCCPPass() {
239 return new SCCP();
240}
241
Chris Lattner347389d2001-06-27 23:38:11 +0000242
Chris Lattner347389d2001-06-27 23:38:11 +0000243//===----------------------------------------------------------------------===//
244// SCCP Class Implementation
245
246
Misha Brukman373086d2003-05-20 21:01:22 +0000247// runOnFunction() - Run the Sparse Conditional Constant Propagation algorithm,
Chris Lattner7d325382002-04-29 21:26:08 +0000248// and return true if the function was modified.
Chris Lattner347389d2001-06-27 23:38:11 +0000249//
Chris Lattner113f4f42002-06-25 16:13:24 +0000250bool SCCP::runOnFunction(Function &F) {
Chris Lattnerc8e66542002-04-27 06:56:12 +0000251 // Mark the first block of the function as being executable...
Chris Lattner113f4f42002-06-25 16:13:24 +0000252 markExecutable(&F.front());
Chris Lattner347389d2001-06-27 23:38:11 +0000253
254 // Process the work lists until their are empty!
255 while (!BBWorkList.empty() || !InstWorkList.empty()) {
256 // Process the instruction work list...
257 while (!InstWorkList.empty()) {
Chris Lattnerd66a6e32002-05-07 04:29:32 +0000258 Instruction *I = InstWorkList.back();
259 InstWorkList.pop_back();
Chris Lattner347389d2001-06-27 23:38:11 +0000260
Chris Lattnercccc5c72003-04-25 02:50:03 +0000261 DEBUG(std::cerr << "\nPopped off I-WL: " << I);
Chris Lattner347389d2001-06-27 23:38:11 +0000262
263 // "I" got into the work list because it either made the transition from
264 // bottom to constant, or to Overdefined.
265 //
266 // Update all of the users of this instruction's value...
267 //
268 for_each(I->use_begin(), I->use_end(),
269 bind_obj(this, &SCCP::OperandChangedState));
270 }
271
272 // Process the basic block work list...
273 while (!BBWorkList.empty()) {
274 BasicBlock *BB = BBWorkList.back();
275 BBWorkList.pop_back();
276
Chris Lattnercccc5c72003-04-25 02:50:03 +0000277 DEBUG(std::cerr << "\nPopped off BBWL: " << BB);
Chris Lattner347389d2001-06-27 23:38:11 +0000278
Chris Lattner6e560792002-04-18 15:13:15 +0000279 // Notify all instructions in this basic block that they are newly
280 // executable.
281 visit(BB);
Chris Lattner347389d2001-06-27 23:38:11 +0000282 }
283 }
284
Chris Lattner71cbd422002-05-22 17:17:27 +0000285 if (DebugFlag) {
Chris Lattner113f4f42002-06-25 16:13:24 +0000286 for (Function::iterator I = F.begin(), E = F.end(); I != E; ++I)
287 if (!BBExecutable.count(I))
Chris Lattnercccc5c72003-04-25 02:50:03 +0000288 std::cerr << "BasicBlock Dead:" << *I;
Chris Lattner71cbd422002-05-22 17:17:27 +0000289 }
Chris Lattner347389d2001-06-27 23:38:11 +0000290
Chris Lattnerc8e66542002-04-27 06:56:12 +0000291 // Iterate over all of the instructions in a function, replacing them with
Chris Lattner347389d2001-06-27 23:38:11 +0000292 // constants if we have found them to be of constant values.
293 //
294 bool MadeChanges = false;
Chris Lattner113f4f42002-06-25 16:13:24 +0000295 for (Function::iterator BB = F.begin(), BBE = F.end(); BB != BBE; ++BB)
Chris Lattner60a65912002-02-12 21:07:25 +0000296 for (BasicBlock::iterator BI = BB->begin(); BI != BB->end();) {
Chris Lattner113f4f42002-06-25 16:13:24 +0000297 Instruction &Inst = *BI;
298 InstVal &IV = ValueState[&Inst];
Chris Lattner60a65912002-02-12 21:07:25 +0000299 if (IV.isConstant()) {
300 Constant *Const = IV.getConstant();
Chris Lattnercccc5c72003-04-25 02:50:03 +0000301 DEBUG(std::cerr << "Constant: " << Const << " = " << Inst);
Chris Lattnerc4ad64c2001-11-26 18:57:38 +0000302
Chris Lattner60a65912002-02-12 21:07:25 +0000303 // Replaces all of the uses of a variable with uses of the constant.
Chris Lattner113f4f42002-06-25 16:13:24 +0000304 Inst.replaceAllUsesWith(Const);
Chris Lattner347389d2001-06-27 23:38:11 +0000305
Chris Lattner5364d1a2002-05-02 20:32:51 +0000306 // Remove the operator from the list of definitions... and delete it.
Chris Lattner113f4f42002-06-25 16:13:24 +0000307 BI = BB->getInstList().erase(BI);
Chris Lattner347389d2001-06-27 23:38:11 +0000308
Chris Lattner60a65912002-02-12 21:07:25 +0000309 // Hey, we just changed something!
310 MadeChanges = true;
Chris Lattner0b18c1d2002-05-10 15:38:35 +0000311 ++NumInstRemoved;
Chris Lattnerfe6c9ee2002-05-02 21:44:00 +0000312 } else {
313 ++BI;
Chris Lattner60a65912002-02-12 21:07:25 +0000314 }
Chris Lattner347389d2001-06-27 23:38:11 +0000315 }
Chris Lattner347389d2001-06-27 23:38:11 +0000316
Chris Lattner13b52e72002-05-02 21:18:01 +0000317 // Reset state so that the next invocation will have empty data structures
Chris Lattner7d325382002-04-29 21:26:08 +0000318 BBExecutable.clear();
319 ValueState.clear();
Chris Lattner669c6cf2002-11-04 02:54:22 +0000320 std::vector<Instruction*>().swap(InstWorkList);
321 std::vector<BasicBlock*>().swap(BBWorkList);
Chris Lattner7d325382002-04-29 21:26:08 +0000322
Chris Lattnerdae05dc2001-09-07 16:43:22 +0000323 return MadeChanges;
Chris Lattner347389d2001-06-27 23:38:11 +0000324}
325
Chris Lattnerfe6c9ee2002-05-02 21:44:00 +0000326
327// getFeasibleSuccessors - Return a vector of booleans to indicate which
328// successors are reachable from a given terminator instruction.
329//
Chris Lattner113f4f42002-06-25 16:13:24 +0000330void SCCP::getFeasibleSuccessors(TerminatorInst &TI, std::vector<bool> &Succs) {
Chris Lattnercccc5c72003-04-25 02:50:03 +0000331 Succs.resize(TI.getNumSuccessors());
Chris Lattner113f4f42002-06-25 16:13:24 +0000332 if (BranchInst *BI = dyn_cast<BranchInst>(&TI)) {
Chris Lattnerfe6c9ee2002-05-02 21:44:00 +0000333 if (BI->isUnconditional()) {
334 Succs[0] = true;
335 } else {
336 InstVal &BCValue = getValueState(BI->getCondition());
337 if (BCValue.isOverdefined()) {
338 // Overdefined condition variables mean the branch could go either way.
339 Succs[0] = Succs[1] = true;
340 } else if (BCValue.isConstant()) {
341 // Constant condition variables mean the branch can only go a single way
342 Succs[BCValue.getConstant() == ConstantBool::False] = true;
343 }
344 }
Chris Lattner113f4f42002-06-25 16:13:24 +0000345 } else if (InvokeInst *II = dyn_cast<InvokeInst>(&TI)) {
Chris Lattnerfe6c9ee2002-05-02 21:44:00 +0000346 // Invoke instructions successors are always executable.
347 Succs[0] = Succs[1] = true;
Chris Lattner113f4f42002-06-25 16:13:24 +0000348 } else if (SwitchInst *SI = dyn_cast<SwitchInst>(&TI)) {
Chris Lattnerfe6c9ee2002-05-02 21:44:00 +0000349 InstVal &SCValue = getValueState(SI->getCondition());
350 if (SCValue.isOverdefined()) { // Overdefined condition?
351 // All destinations are executable!
Chris Lattner113f4f42002-06-25 16:13:24 +0000352 Succs.assign(TI.getNumSuccessors(), true);
Chris Lattnerfe6c9ee2002-05-02 21:44:00 +0000353 } else if (SCValue.isConstant()) {
354 Constant *CPV = SCValue.getConstant();
355 // Make sure to skip the "default value" which isn't a value
356 for (unsigned i = 1, E = SI->getNumSuccessors(); i != E; ++i) {
357 if (SI->getSuccessorValue(i) == CPV) {// Found the right branch...
358 Succs[i] = true;
359 return;
360 }
361 }
362
363 // Constant value not equal to any of the branches... must execute
364 // default branch then...
365 Succs[0] = true;
366 }
367 } else {
Chris Lattnercccc5c72003-04-25 02:50:03 +0000368 std::cerr << "SCCP: Don't know how to handle: " << TI;
Chris Lattner113f4f42002-06-25 16:13:24 +0000369 Succs.assign(TI.getNumSuccessors(), true);
Chris Lattnerfe6c9ee2002-05-02 21:44:00 +0000370 }
371}
372
373
Chris Lattner13b52e72002-05-02 21:18:01 +0000374// isEdgeFeasible - Return true if the control flow edge from the 'From' basic
375// block to the 'To' basic block is currently feasible...
376//
377bool SCCP::isEdgeFeasible(BasicBlock *From, BasicBlock *To) {
378 assert(BBExecutable.count(To) && "Dest should always be alive!");
379
380 // Make sure the source basic block is executable!!
381 if (!BBExecutable.count(From)) return false;
382
Chris Lattnerfe6c9ee2002-05-02 21:44:00 +0000383 // Check to make sure this edge itself is actually feasible now...
Chris Lattner71ac22ff2003-10-08 15:47:41 +0000384 TerminatorInst *TI = From->getTerminator();
385 if (BranchInst *BI = dyn_cast<BranchInst>(TI)) {
386 if (BI->isUnconditional())
Chris Lattnerfe6c9ee2002-05-02 21:44:00 +0000387 return true;
Chris Lattner71ac22ff2003-10-08 15:47:41 +0000388 else {
389 InstVal &BCValue = getValueState(BI->getCondition());
390 if (BCValue.isOverdefined()) {
391 // Overdefined condition variables mean the branch could go either way.
392 return true;
393 } else if (BCValue.isConstant()) {
394 // Constant condition variables mean the branch can only go a single way
395 return BI->getSuccessor(BCValue.getConstant() ==
396 ConstantBool::False) == To;
397 }
398 return false;
399 }
400 } else if (InvokeInst *II = dyn_cast<InvokeInst>(TI)) {
401 // Invoke instructions successors are always executable.
402 return true;
403 } else if (SwitchInst *SI = dyn_cast<SwitchInst>(TI)) {
404 InstVal &SCValue = getValueState(SI->getCondition());
405 if (SCValue.isOverdefined()) { // Overdefined condition?
406 // All destinations are executable!
407 return true;
408 } else if (SCValue.isConstant()) {
409 Constant *CPV = SCValue.getConstant();
410 // Make sure to skip the "default value" which isn't a value
411 for (unsigned i = 1, E = SI->getNumSuccessors(); i != E; ++i)
412 if (SI->getSuccessorValue(i) == CPV) // Found the taken branch...
413 return SI->getSuccessor(i) == To;
414
415 // Constant value not equal to any of the branches... must execute
416 // default branch then...
417 return SI->getDefaultDest() == To;
418 }
419 return false;
420 } else {
421 std::cerr << "Unknown terminator instruction: " << *TI;
422 abort();
423 }
Chris Lattner13b52e72002-05-02 21:18:01 +0000424}
Chris Lattner347389d2001-06-27 23:38:11 +0000425
Chris Lattner6e560792002-04-18 15:13:15 +0000426// visit Implementations - Something changed in this instruction... Either an
Chris Lattner347389d2001-06-27 23:38:11 +0000427// operand made a transition, or the instruction is newly executable. Change
428// the value type of I to reflect these changes if appropriate. This method
429// makes sure to do the following actions:
430//
431// 1. If a phi node merges two constants in, and has conflicting value coming
432// from different branches, or if the PHI node merges in an overdefined
433// value, then the PHI node becomes overdefined.
434// 2. If a phi node merges only constants in, and they all agree on value, the
435// PHI node becomes a constant value equal to that.
436// 3. If V <- x (op) y && isConstant(x) && isConstant(y) V = Constant
437// 4. If V <- x (op) y && (isOverdefined(x) || isOverdefined(y)) V = Overdefined
438// 5. If V <- MEM or V <- CALL or V <- (unknown) then V = Overdefined
439// 6. If a conditional branch has a value that is constant, make the selected
440// destination executable
441// 7. If a conditional branch has a value that is overdefined, make all
442// successors executable.
443//
Chris Lattner113f4f42002-06-25 16:13:24 +0000444void SCCP::visitPHINode(PHINode &PN) {
Chris Lattnercccc5c72003-04-25 02:50:03 +0000445 if (getValueState(&PN).isOverdefined()) return; // Quick exit
Chris Lattner347389d2001-06-27 23:38:11 +0000446
Chris Lattner6e560792002-04-18 15:13:15 +0000447 // Look at all of the executable operands of the PHI node. If any of them
448 // are overdefined, the PHI becomes overdefined as well. If they are all
449 // constant, and they agree with each other, the PHI becomes the identical
450 // constant. If they are constant and don't agree, the PHI is overdefined.
451 // If there are no executable operands, the PHI remains undefined.
452 //
Chris Lattnercccc5c72003-04-25 02:50:03 +0000453 Constant *OperandVal = 0;
454 for (unsigned i = 0, e = PN.getNumIncomingValues(); i != e; ++i) {
455 InstVal &IV = getValueState(PN.getIncomingValue(i));
456 if (IV.isUndefined()) continue; // Doesn't influence PHI node.
Chris Lattnercccc5c72003-04-25 02:50:03 +0000457
Chris Lattner113f4f42002-06-25 16:13:24 +0000458 if (isEdgeFeasible(PN.getIncomingBlock(i), PN.getParent())) {
Chris Lattner7e270582003-06-24 20:29:52 +0000459 if (IV.isOverdefined()) { // PHI node becomes overdefined!
460 markOverdefined(&PN);
461 return;
462 }
463
Chris Lattnercccc5c72003-04-25 02:50:03 +0000464 if (OperandVal == 0) { // Grab the first value...
465 OperandVal = IV.getConstant();
Chris Lattner6e560792002-04-18 15:13:15 +0000466 } else { // Another value is being merged in!
467 // There is already a reachable operand. If we conflict with it,
468 // then the PHI node becomes overdefined. If we agree with it, we
469 // can continue on.
Chris Lattnercccc5c72003-04-25 02:50:03 +0000470
Chris Lattner6e560792002-04-18 15:13:15 +0000471 // Check to see if there are two different constants merging...
Chris Lattnercccc5c72003-04-25 02:50:03 +0000472 if (IV.getConstant() != OperandVal) {
Chris Lattner6e560792002-04-18 15:13:15 +0000473 // Yes there is. This means the PHI node is not constant.
474 // You must be overdefined poor PHI.
475 //
Chris Lattner113f4f42002-06-25 16:13:24 +0000476 markOverdefined(&PN); // The PHI node now becomes overdefined
Chris Lattner6e560792002-04-18 15:13:15 +0000477 return; // I'm done analyzing you
Chris Lattnerc4ad64c2001-11-26 18:57:38 +0000478 }
Chris Lattner347389d2001-06-27 23:38:11 +0000479 }
480 }
Chris Lattner347389d2001-06-27 23:38:11 +0000481 }
482
Chris Lattner6e560792002-04-18 15:13:15 +0000483 // If we exited the loop, this means that the PHI node only has constant
Chris Lattnercccc5c72003-04-25 02:50:03 +0000484 // arguments that agree with each other(and OperandVal is the constant) or
485 // OperandVal is null because there are no defined incoming arguments. If
486 // this is the case, the PHI remains undefined.
Chris Lattner347389d2001-06-27 23:38:11 +0000487 //
Chris Lattnercccc5c72003-04-25 02:50:03 +0000488 if (OperandVal)
489 markConstant(&PN, OperandVal); // Aquire operand value
Chris Lattner347389d2001-06-27 23:38:11 +0000490}
491
Chris Lattner113f4f42002-06-25 16:13:24 +0000492void SCCP::visitTerminatorInst(TerminatorInst &TI) {
Chris Lattnercccc5c72003-04-25 02:50:03 +0000493 std::vector<bool> SuccFeasible;
Chris Lattnerfe6c9ee2002-05-02 21:44:00 +0000494 getFeasibleSuccessors(TI, SuccFeasible);
Chris Lattner347389d2001-06-27 23:38:11 +0000495
Chris Lattnerfe6c9ee2002-05-02 21:44:00 +0000496 // Mark all feasible successors executable...
497 for (unsigned i = 0, e = SuccFeasible.size(); i != e; ++i)
Chris Lattnera482d522002-05-22 16:07:20 +0000498 if (SuccFeasible[i]) {
Chris Lattner113f4f42002-06-25 16:13:24 +0000499 BasicBlock *Succ = TI.getSuccessor(i);
Chris Lattnera482d522002-05-22 16:07:20 +0000500 markExecutable(Succ);
Chris Lattnera482d522002-05-22 16:07:20 +0000501 }
Chris Lattner6e560792002-04-18 15:13:15 +0000502}
503
Chris Lattner6e1a1b12002-08-14 17:53:45 +0000504void SCCP::visitCastInst(CastInst &I) {
Chris Lattner113f4f42002-06-25 16:13:24 +0000505 Value *V = I.getOperand(0);
Chris Lattner6e560792002-04-18 15:13:15 +0000506 InstVal &VState = getValueState(V);
507 if (VState.isOverdefined()) { // Inherit overdefinedness of operand
Chris Lattner113f4f42002-06-25 16:13:24 +0000508 markOverdefined(&I);
Misha Brukman632df282002-10-29 23:06:16 +0000509 } else if (VState.isConstant()) { // Propagate constant value
Chris Lattner6e1a1b12002-08-14 17:53:45 +0000510 Constant *Result =
511 ConstantFoldCastInstruction(VState.getConstant(), I.getType());
Chris Lattner6e560792002-04-18 15:13:15 +0000512
513 if (Result) {
514 // This instruction constant folds!
Chris Lattner113f4f42002-06-25 16:13:24 +0000515 markConstant(&I, Result);
Chris Lattner6e560792002-04-18 15:13:15 +0000516 } else {
Chris Lattner113f4f42002-06-25 16:13:24 +0000517 markOverdefined(&I); // Don't know how to fold this instruction. :(
Chris Lattner6e560792002-04-18 15:13:15 +0000518 }
519 }
520}
521
522// Handle BinaryOperators and Shift Instructions...
Chris Lattner113f4f42002-06-25 16:13:24 +0000523void SCCP::visitBinaryOperator(Instruction &I) {
524 InstVal &V1State = getValueState(I.getOperand(0));
525 InstVal &V2State = getValueState(I.getOperand(1));
Chris Lattner6e560792002-04-18 15:13:15 +0000526 if (V1State.isOverdefined() || V2State.isOverdefined()) {
Chris Lattner113f4f42002-06-25 16:13:24 +0000527 markOverdefined(&I);
Chris Lattner6e560792002-04-18 15:13:15 +0000528 } else if (V1State.isConstant() && V2State.isConstant()) {
Chris Lattner940daed2002-05-06 03:01:37 +0000529 Constant *Result = 0;
530 if (isa<BinaryOperator>(I))
Chris Lattner113f4f42002-06-25 16:13:24 +0000531 Result = ConstantFoldBinaryInstruction(I.getOpcode(),
Chris Lattner940daed2002-05-06 03:01:37 +0000532 V1State.getConstant(),
533 V2State.getConstant());
534 else if (isa<ShiftInst>(I))
Chris Lattner113f4f42002-06-25 16:13:24 +0000535 Result = ConstantFoldShiftInstruction(I.getOpcode(),
Chris Lattner940daed2002-05-06 03:01:37 +0000536 V1State.getConstant(),
537 V2State.getConstant());
Chris Lattner6e560792002-04-18 15:13:15 +0000538 if (Result)
Chris Lattner113f4f42002-06-25 16:13:24 +0000539 markConstant(&I, Result); // This instruction constant folds!
Chris Lattner6e560792002-04-18 15:13:15 +0000540 else
Chris Lattner113f4f42002-06-25 16:13:24 +0000541 markOverdefined(&I); // Don't know how to fold this instruction. :(
Chris Lattner6e560792002-04-18 15:13:15 +0000542 }
543}
Chris Lattnerdd6522e2002-08-30 23:39:00 +0000544
545// Handle getelementptr instructions... if all operands are constants then we
546// can turn this into a getelementptr ConstantExpr.
547//
548void SCCP::visitGetElementPtrInst(GetElementPtrInst &I) {
549 std::vector<Constant*> Operands;
550 Operands.reserve(I.getNumOperands());
551
552 for (unsigned i = 0, e = I.getNumOperands(); i != e; ++i) {
553 InstVal &State = getValueState(I.getOperand(i));
554 if (State.isUndefined())
555 return; // Operands are not resolved yet...
556 else if (State.isOverdefined()) {
557 markOverdefined(&I);
558 return;
559 }
560 assert(State.isConstant() && "Unknown state!");
561 Operands.push_back(State.getConstant());
562 }
563
564 Constant *Ptr = Operands[0];
565 Operands.erase(Operands.begin()); // Erase the pointer from idx list...
566
567 markConstant(&I, ConstantExpr::getGetElementPtr(Ptr, Operands));
568}