Misha Brukman | 373086d | 2003-05-20 21:01:22 +0000 | [diff] [blame] | 1 | //===- SCCP.cpp - Sparse Conditional Constant Propagation -----------------===// |
Chris Lattner | 347389d | 2001-06-27 23:38:11 +0000 | [diff] [blame] | 2 | // |
Misha Brukman | 373086d | 2003-05-20 21:01:22 +0000 | [diff] [blame] | 3 | // This file implements sparse conditional constant propagation and merging: |
Chris Lattner | 347389d | 2001-06-27 23:38:11 +0000 | [diff] [blame] | 4 | // |
| 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 Lattner | dd6522e | 2002-08-30 23:39:00 +0000 | [diff] [blame] | 9 | // * Proves conditional branches to be unconditional |
Chris Lattner | 347389d | 2001-06-27 23:38:11 +0000 | [diff] [blame] | 10 | // |
| 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 Lattner | b4cfa7f | 2002-05-07 20:03:00 +0000 | [diff] [blame] | 17 | #include "llvm/Transforms/Scalar.h" |
Chris Lattner | 65b529f | 2002-04-08 20:18:09 +0000 | [diff] [blame] | 18 | #include "llvm/ConstantHandling.h" |
Chris Lattner | 57698e2 | 2002-03-26 18:01:55 +0000 | [diff] [blame] | 19 | #include "llvm/Function.h" |
Chris Lattner | cccc5c7 | 2003-04-25 02:50:03 +0000 | [diff] [blame] | 20 | #include "llvm/Instructions.h" |
Chris Lattner | 04805fa | 2002-02-26 21:46:54 +0000 | [diff] [blame] | 21 | #include "llvm/Pass.h" |
Chris Lattner | 6e56079 | 2002-04-18 15:13:15 +0000 | [diff] [blame] | 22 | #include "llvm/Support/InstVisitor.h" |
Chris Lattner | 8abcd56 | 2003-08-01 22:15:03 +0000 | [diff] [blame] | 23 | #include "Support/Debug.h" |
Chris Lattner | bf3a099 | 2002-10-01 22:38:41 +0000 | [diff] [blame] | 24 | #include "Support/Statistic.h" |
Chris Lattner | 8abcd56 | 2003-08-01 22:15:03 +0000 | [diff] [blame] | 25 | #include "Support/STLExtras.h" |
Chris Lattner | 347389d | 2001-06-27 23:38:11 +0000 | [diff] [blame] | 26 | #include <algorithm> |
Chris Lattner | 347389d | 2001-06-27 23:38:11 +0000 | [diff] [blame] | 27 | #include <set> |
| 28 | |
Chris Lattner | 347389d | 2001-06-27 23:38:11 +0000 | [diff] [blame] | 29 | // InstVal class - This class represents the different lattice values that an |
Chris Lattner | c8e6654 | 2002-04-27 06:56:12 +0000 | [diff] [blame] | 30 | // instruction may occupy. It is a simple class with value semantics. |
Chris Lattner | 347389d | 2001-06-27 23:38:11 +0000 | [diff] [blame] | 31 | // |
Chris Lattner | 7d32538 | 2002-04-29 21:26:08 +0000 | [diff] [blame] | 32 | namespace { |
Chris Lattner | bf3a099 | 2002-10-01 22:38:41 +0000 | [diff] [blame] | 33 | Statistic<> NumInstRemoved("sccp", "Number of instructions removed"); |
| 34 | |
Chris Lattner | 347389d | 2001-06-27 23:38:11 +0000 | [diff] [blame] | 35 | class InstVal { |
| 36 | enum { |
Chris Lattner | 3462ae3 | 2001-12-03 22:26:30 +0000 | [diff] [blame] | 37 | undefined, // This instruction has no known value |
| 38 | constant, // This instruction has a constant value |
Chris Lattner | 3462ae3 | 2001-12-03 22:26:30 +0000 | [diff] [blame] | 39 | overdefined // This instruction has an unknown value |
| 40 | } LatticeValue; // The current lattice position |
| 41 | Constant *ConstantVal; // If Constant value, the current value |
Chris Lattner | 347389d | 2001-06-27 23:38:11 +0000 | [diff] [blame] | 42 | public: |
Chris Lattner | 3462ae3 | 2001-12-03 22:26:30 +0000 | [diff] [blame] | 43 | inline InstVal() : LatticeValue(undefined), ConstantVal(0) {} |
Chris Lattner | 347389d | 2001-06-27 23:38:11 +0000 | [diff] [blame] | 44 | |
| 45 | // markOverdefined - Return true if this is a new status to be in... |
| 46 | inline bool markOverdefined() { |
Chris Lattner | 3462ae3 | 2001-12-03 22:26:30 +0000 | [diff] [blame] | 47 | if (LatticeValue != overdefined) { |
| 48 | LatticeValue = overdefined; |
Chris Lattner | 347389d | 2001-06-27 23:38:11 +0000 | [diff] [blame] | 49 | return true; |
| 50 | } |
| 51 | return false; |
| 52 | } |
| 53 | |
| 54 | // markConstant - Return true if this is a new status for us... |
Chris Lattner | 3462ae3 | 2001-12-03 22:26:30 +0000 | [diff] [blame] | 55 | inline bool markConstant(Constant *V) { |
| 56 | if (LatticeValue != constant) { |
| 57 | LatticeValue = constant; |
Chris Lattner | 347389d | 2001-06-27 23:38:11 +0000 | [diff] [blame] | 58 | ConstantVal = V; |
| 59 | return true; |
| 60 | } else { |
Chris Lattner | dae05dc | 2001-09-07 16:43:22 +0000 | [diff] [blame] | 61 | assert(ConstantVal == V && "Marking constant with different value"); |
Chris Lattner | 347389d | 2001-06-27 23:38:11 +0000 | [diff] [blame] | 62 | } |
| 63 | return false; |
| 64 | } |
| 65 | |
Chris Lattner | 3462ae3 | 2001-12-03 22:26:30 +0000 | [diff] [blame] | 66 | inline bool isUndefined() const { return LatticeValue == undefined; } |
| 67 | inline bool isConstant() const { return LatticeValue == constant; } |
| 68 | inline bool isOverdefined() const { return LatticeValue == overdefined; } |
Chris Lattner | 347389d | 2001-06-27 23:38:11 +0000 | [diff] [blame] | 69 | |
Chris Lattner | 3462ae3 | 2001-12-03 22:26:30 +0000 | [diff] [blame] | 70 | inline Constant *getConstant() const { return ConstantVal; } |
Chris Lattner | 347389d | 2001-06-27 23:38:11 +0000 | [diff] [blame] | 71 | }; |
| 72 | |
Chris Lattner | 7d32538 | 2002-04-29 21:26:08 +0000 | [diff] [blame] | 73 | } // end anonymous namespace |
Chris Lattner | 347389d | 2001-06-27 23:38:11 +0000 | [diff] [blame] | 74 | |
| 75 | |
| 76 | //===----------------------------------------------------------------------===// |
| 77 | // SCCP Class |
| 78 | // |
Misha Brukman | 373086d | 2003-05-20 21:01:22 +0000 | [diff] [blame] | 79 | // This class does all of the work of Sparse Conditional Constant Propagation. |
Chris Lattner | 347389d | 2001-06-27 23:38:11 +0000 | [diff] [blame] | 80 | // |
Chris Lattner | 7d32538 | 2002-04-29 21:26:08 +0000 | [diff] [blame] | 81 | namespace { |
| 82 | class SCCP : public FunctionPass, public InstVisitor<SCCP> { |
Chris Lattner | 7f74a56 | 2002-01-20 22:54:45 +0000 | [diff] [blame] | 83 | std::set<BasicBlock*> BBExecutable;// The basic blocks that are executable |
| 84 | std::map<Value*, InstVal> ValueState; // The state each value is in... |
Chris Lattner | 347389d | 2001-06-27 23:38:11 +0000 | [diff] [blame] | 85 | |
Chris Lattner | d66a6e3 | 2002-05-07 04:29:32 +0000 | [diff] [blame] | 86 | std::vector<Instruction*> InstWorkList;// The instruction work list |
Chris Lattner | 7f74a56 | 2002-01-20 22:54:45 +0000 | [diff] [blame] | 87 | std::vector<BasicBlock*> BBWorkList; // The BasicBlock work list |
Chris Lattner | 0bbbe5d | 2003-10-08 16:55:34 +0000 | [diff] [blame^] | 88 | |
| 89 | /// KnownFeasibleEdges - Entries in this set are edges which have already had |
| 90 | /// PHI nodes retriggered. |
| 91 | typedef std::pair<BasicBlock*,BasicBlock*> Edge; |
| 92 | std::set<Edge> KnownFeasibleEdges; |
Chris Lattner | 347389d | 2001-06-27 23:38:11 +0000 | [diff] [blame] | 93 | public: |
| 94 | |
Misha Brukman | 373086d | 2003-05-20 21:01:22 +0000 | [diff] [blame] | 95 | // runOnFunction - Run the Sparse Conditional Constant Propagation algorithm, |
Chris Lattner | 7d32538 | 2002-04-29 21:26:08 +0000 | [diff] [blame] | 96 | // and return true if the function was modified. |
| 97 | // |
Chris Lattner | 113f4f4 | 2002-06-25 16:13:24 +0000 | [diff] [blame] | 98 | bool runOnFunction(Function &F); |
Chris Lattner | 7d32538 | 2002-04-29 21:26:08 +0000 | [diff] [blame] | 99 | |
| 100 | virtual void getAnalysisUsage(AnalysisUsage &AU) const { |
Chris Lattner | 820d971 | 2002-10-21 20:00:28 +0000 | [diff] [blame] | 101 | AU.setPreservesCFG(); |
Chris Lattner | 7d32538 | 2002-04-29 21:26:08 +0000 | [diff] [blame] | 102 | } |
| 103 | |
Chris Lattner | 347389d | 2001-06-27 23:38:11 +0000 | [diff] [blame] | 104 | |
| 105 | //===--------------------------------------------------------------------===// |
| 106 | // The implementation of this class |
| 107 | // |
| 108 | private: |
Chris Lattner | 6e56079 | 2002-04-18 15:13:15 +0000 | [diff] [blame] | 109 | friend class InstVisitor<SCCP>; // Allow callbacks from visitor |
Chris Lattner | 347389d | 2001-06-27 23:38:11 +0000 | [diff] [blame] | 110 | |
| 111 | // markValueOverdefined - Make a value be marked as "constant". If the value |
| 112 | // is not already a constant, add it to the instruction work list so that |
| 113 | // the users of the instruction are updated later. |
| 114 | // |
Chris Lattner | 7324f7c | 2003-10-08 16:21:03 +0000 | [diff] [blame] | 115 | inline void markConstant(InstVal &IV, Instruction *I, Constant *C) { |
| 116 | if (IV.markConstant(C)) { |
| 117 | DEBUG(std::cerr << "markConstant: " << *C << ": " << *I); |
Chris Lattner | d66a6e3 | 2002-05-07 04:29:32 +0000 | [diff] [blame] | 118 | InstWorkList.push_back(I); |
Chris Lattner | 347389d | 2001-06-27 23:38:11 +0000 | [diff] [blame] | 119 | } |
Chris Lattner | 7324f7c | 2003-10-08 16:21:03 +0000 | [diff] [blame] | 120 | } |
| 121 | inline void markConstant(Instruction *I, Constant *C) { |
| 122 | markConstant(ValueState[I], I, C); |
Chris Lattner | 347389d | 2001-06-27 23:38:11 +0000 | [diff] [blame] | 123 | } |
| 124 | |
| 125 | // markValueOverdefined - Make a value be marked as "overdefined". If the |
| 126 | // value is not already overdefined, add it to the instruction work list so |
| 127 | // that the users of the instruction are updated later. |
| 128 | // |
Chris Lattner | 7324f7c | 2003-10-08 16:21:03 +0000 | [diff] [blame] | 129 | inline void markOverdefined(InstVal &IV, Instruction *I) { |
| 130 | if (IV.markOverdefined()) { |
| 131 | DEBUG(std::cerr << "markOverdefined: " << *I); |
| 132 | InstWorkList.push_back(I); // Only instructions go on the work list |
Chris Lattner | 347389d | 2001-06-27 23:38:11 +0000 | [diff] [blame] | 133 | } |
Chris Lattner | 7324f7c | 2003-10-08 16:21:03 +0000 | [diff] [blame] | 134 | } |
| 135 | inline void markOverdefined(Instruction *I) { |
| 136 | markOverdefined(ValueState[I], I); |
Chris Lattner | 347389d | 2001-06-27 23:38:11 +0000 | [diff] [blame] | 137 | } |
| 138 | |
| 139 | // getValueState - Return the InstVal object that corresponds to the value. |
Misha Brukman | 7eb05a1 | 2003-08-18 14:43:39 +0000 | [diff] [blame] | 140 | // This function is necessary because not all values should start out in the |
Chris Lattner | 2e9fa6d | 2002-04-09 19:48:49 +0000 | [diff] [blame] | 141 | // underdefined state... Argument's should be overdefined, and |
Chris Lattner | 57698e2 | 2002-03-26 18:01:55 +0000 | [diff] [blame] | 142 | // constants should be marked as constants. If a value is not known to be an |
Chris Lattner | 347389d | 2001-06-27 23:38:11 +0000 | [diff] [blame] | 143 | // Instruction object, then use this accessor to get its value from the map. |
| 144 | // |
| 145 | inline InstVal &getValueState(Value *V) { |
Chris Lattner | 7f74a56 | 2002-01-20 22:54:45 +0000 | [diff] [blame] | 146 | std::map<Value*, InstVal>::iterator I = ValueState.find(V); |
Chris Lattner | 347389d | 2001-06-27 23:38:11 +0000 | [diff] [blame] | 147 | if (I != ValueState.end()) return I->second; // Common case, in the map |
| 148 | |
Chris Lattner | 3462ae3 | 2001-12-03 22:26:30 +0000 | [diff] [blame] | 149 | if (Constant *CPV = dyn_cast<Constant>(V)) { // Constants are constant |
Chris Lattner | 347389d | 2001-06-27 23:38:11 +0000 | [diff] [blame] | 150 | ValueState[CPV].markConstant(CPV); |
Chris Lattner | 2e9fa6d | 2002-04-09 19:48:49 +0000 | [diff] [blame] | 151 | } else if (isa<Argument>(V)) { // Arguments are overdefined |
Chris Lattner | 347389d | 2001-06-27 23:38:11 +0000 | [diff] [blame] | 152 | ValueState[V].markOverdefined(); |
Chris Lattner | dd6522e | 2002-08-30 23:39:00 +0000 | [diff] [blame] | 153 | } else if (GlobalValue *GV = dyn_cast<GlobalValue>(V)) { |
| 154 | // The address of a global is a constant... |
| 155 | ValueState[V].markConstant(ConstantPointerRef::get(GV)); |
| 156 | } |
Chris Lattner | 347389d | 2001-06-27 23:38:11 +0000 | [diff] [blame] | 157 | // All others are underdefined by default... |
| 158 | return ValueState[V]; |
| 159 | } |
| 160 | |
Chris Lattner | 0bbbe5d | 2003-10-08 16:55:34 +0000 | [diff] [blame^] | 161 | // markEdgeExecutable - Mark a basic block as executable, adding it to the BB |
Chris Lattner | 347389d | 2001-06-27 23:38:11 +0000 | [diff] [blame] | 162 | // work list if it is not already executable... |
| 163 | // |
Chris Lattner | 0bbbe5d | 2003-10-08 16:55:34 +0000 | [diff] [blame^] | 164 | void markEdgeExecutable(BasicBlock *Source, BasicBlock *Dest) { |
| 165 | if (!KnownFeasibleEdges.insert(Edge(Source, Dest)).second) |
| 166 | return; // This edge is already known to be executable! |
| 167 | |
| 168 | if (BBExecutable.count(Dest)) { |
| 169 | DEBUG(std::cerr << "Marking Edge Executable: " << Source->getName() |
| 170 | << " -> " << Dest->getName() << "\n"); |
| 171 | |
| 172 | // The destination is already executable, but we just made an edge |
| 173 | // feasible that wasn't before. Add the PHI nodes to the work list so |
| 174 | // that they can be rechecked. |
| 175 | for (BasicBlock::iterator I = Dest->begin(); |
Chris Lattner | cccc5c7 | 2003-04-25 02:50:03 +0000 | [diff] [blame] | 176 | PHINode *PN = dyn_cast<PHINode>(I); ++I) |
Chris Lattner | 3c98276 | 2003-04-25 03:35:10 +0000 | [diff] [blame] | 177 | visitPHINode(*PN); |
Chris Lattner | cccc5c7 | 2003-04-25 02:50:03 +0000 | [diff] [blame] | 178 | |
| 179 | } else { |
Chris Lattner | 0bbbe5d | 2003-10-08 16:55:34 +0000 | [diff] [blame^] | 180 | DEBUG(std::cerr << "Marking Block Executable: " << Dest->getName()<<"\n"); |
| 181 | BBExecutable.insert(Dest); // Basic block is executable! |
| 182 | BBWorkList.push_back(Dest); // Add the block to the work list! |
Chris Lattner | cccc5c7 | 2003-04-25 02:50:03 +0000 | [diff] [blame] | 183 | } |
Chris Lattner | 347389d | 2001-06-27 23:38:11 +0000 | [diff] [blame] | 184 | } |
| 185 | |
Chris Lattner | 347389d | 2001-06-27 23:38:11 +0000 | [diff] [blame] | 186 | |
Chris Lattner | 6e56079 | 2002-04-18 15:13:15 +0000 | [diff] [blame] | 187 | // visit implementations - Something changed in this instruction... Either an |
Chris Lattner | 10b250e | 2001-06-29 23:56:23 +0000 | [diff] [blame] | 188 | // operand made a transition, or the instruction is newly executable. Change |
| 189 | // the value type of I to reflect these changes if appropriate. |
| 190 | // |
Chris Lattner | 113f4f4 | 2002-06-25 16:13:24 +0000 | [diff] [blame] | 191 | void visitPHINode(PHINode &I); |
Chris Lattner | 6e56079 | 2002-04-18 15:13:15 +0000 | [diff] [blame] | 192 | |
| 193 | // Terminators |
Chris Lattner | 113f4f4 | 2002-06-25 16:13:24 +0000 | [diff] [blame] | 194 | void visitReturnInst(ReturnInst &I) { /*does not have an effect*/ } |
| 195 | void visitTerminatorInst(TerminatorInst &TI); |
Chris Lattner | 6e56079 | 2002-04-18 15:13:15 +0000 | [diff] [blame] | 196 | |
Chris Lattner | 6e1a1b1 | 2002-08-14 17:53:45 +0000 | [diff] [blame] | 197 | void visitCastInst(CastInst &I); |
Chris Lattner | 113f4f4 | 2002-06-25 16:13:24 +0000 | [diff] [blame] | 198 | void visitBinaryOperator(Instruction &I); |
| 199 | void visitShiftInst(ShiftInst &I) { visitBinaryOperator(I); } |
Chris Lattner | 6e56079 | 2002-04-18 15:13:15 +0000 | [diff] [blame] | 200 | |
| 201 | // Instructions that cannot be folded away... |
Chris Lattner | 113f4f4 | 2002-06-25 16:13:24 +0000 | [diff] [blame] | 202 | void visitStoreInst (Instruction &I) { /*returns void*/ } |
Chris Lattner | dfb3a2c | 2002-08-22 23:37:20 +0000 | [diff] [blame] | 203 | void visitLoadInst (Instruction &I) { markOverdefined(&I); } |
Chris Lattner | dd6522e | 2002-08-30 23:39:00 +0000 | [diff] [blame] | 204 | void visitGetElementPtrInst(GetElementPtrInst &I); |
Chris Lattner | 113f4f4 | 2002-06-25 16:13:24 +0000 | [diff] [blame] | 205 | void visitCallInst (Instruction &I) { markOverdefined(&I); } |
Chris Lattner | df741d6 | 2003-08-27 01:08:35 +0000 | [diff] [blame] | 206 | void visitInvokeInst (TerminatorInst &I) { |
Chris Lattner | 7324f7c | 2003-10-08 16:21:03 +0000 | [diff] [blame] | 207 | if (I.getType() != Type::VoidTy) markOverdefined(&I); |
Chris Lattner | df741d6 | 2003-08-27 01:08:35 +0000 | [diff] [blame] | 208 | visitTerminatorInst(I); |
| 209 | } |
Chris Lattner | 9c58cf6 | 2003-09-08 18:54:55 +0000 | [diff] [blame] | 210 | void visitUnwindInst (TerminatorInst &I) { /*returns void*/ } |
Chris Lattner | 113f4f4 | 2002-06-25 16:13:24 +0000 | [diff] [blame] | 211 | void visitAllocationInst(Instruction &I) { markOverdefined(&I); } |
Chris Lattner | b026972 | 2003-05-08 02:50:13 +0000 | [diff] [blame] | 212 | void visitVarArgInst (Instruction &I) { markOverdefined(&I); } |
Chris Lattner | 113f4f4 | 2002-06-25 16:13:24 +0000 | [diff] [blame] | 213 | void visitFreeInst (Instruction &I) { /*returns void*/ } |
Chris Lattner | 6e56079 | 2002-04-18 15:13:15 +0000 | [diff] [blame] | 214 | |
Chris Lattner | 113f4f4 | 2002-06-25 16:13:24 +0000 | [diff] [blame] | 215 | void visitInstruction(Instruction &I) { |
Chris Lattner | 6e56079 | 2002-04-18 15:13:15 +0000 | [diff] [blame] | 216 | // If a new instruction is added to LLVM that we don't handle... |
Chris Lattner | cccc5c7 | 2003-04-25 02:50:03 +0000 | [diff] [blame] | 217 | std::cerr << "SCCP: Don't know how to handle: " << I; |
Chris Lattner | 113f4f4 | 2002-06-25 16:13:24 +0000 | [diff] [blame] | 218 | markOverdefined(&I); // Just in case |
Chris Lattner | 6e56079 | 2002-04-18 15:13:15 +0000 | [diff] [blame] | 219 | } |
Chris Lattner | 10b250e | 2001-06-29 23:56:23 +0000 | [diff] [blame] | 220 | |
Chris Lattner | fe6c9ee | 2002-05-02 21:44:00 +0000 | [diff] [blame] | 221 | // getFeasibleSuccessors - Return a vector of booleans to indicate which |
| 222 | // successors are reachable from a given terminator instruction. |
| 223 | // |
Chris Lattner | 113f4f4 | 2002-06-25 16:13:24 +0000 | [diff] [blame] | 224 | void getFeasibleSuccessors(TerminatorInst &TI, std::vector<bool> &Succs); |
Chris Lattner | fe6c9ee | 2002-05-02 21:44:00 +0000 | [diff] [blame] | 225 | |
Chris Lattner | 13b52e7 | 2002-05-02 21:18:01 +0000 | [diff] [blame] | 226 | // isEdgeFeasible - Return true if the control flow edge from the 'From' basic |
| 227 | // block to the 'To' basic block is currently feasible... |
| 228 | // |
| 229 | bool isEdgeFeasible(BasicBlock *From, BasicBlock *To); |
| 230 | |
Chris Lattner | 10b250e | 2001-06-29 23:56:23 +0000 | [diff] [blame] | 231 | // OperandChangedState - This method is invoked on all of the users of an |
| 232 | // instruction that was just changed state somehow.... Based on this |
| 233 | // information, we need to update the specified user of this instruction. |
| 234 | // |
Chris Lattner | 13b52e7 | 2002-05-02 21:18:01 +0000 | [diff] [blame] | 235 | void OperandChangedState(User *U) { |
| 236 | // Only instructions use other variable values! |
Chris Lattner | 113f4f4 | 2002-06-25 16:13:24 +0000 | [diff] [blame] | 237 | Instruction &I = cast<Instruction>(*U); |
Chris Lattner | cccc5c7 | 2003-04-25 02:50:03 +0000 | [diff] [blame] | 238 | if (BBExecutable.count(I.getParent())) // Inst is executable? |
| 239 | visit(I); |
Chris Lattner | 13b52e7 | 2002-05-02 21:18:01 +0000 | [diff] [blame] | 240 | } |
Chris Lattner | 10b250e | 2001-06-29 23:56:23 +0000 | [diff] [blame] | 241 | }; |
Chris Lattner | b28b680 | 2002-07-23 18:06:35 +0000 | [diff] [blame] | 242 | |
Chris Lattner | cccc5c7 | 2003-04-25 02:50:03 +0000 | [diff] [blame] | 243 | RegisterOpt<SCCP> X("sccp", "Sparse Conditional Constant Propagation"); |
Chris Lattner | 7d32538 | 2002-04-29 21:26:08 +0000 | [diff] [blame] | 244 | } // end anonymous namespace |
| 245 | |
| 246 | |
| 247 | // createSCCPPass - This is the public interface to this file... |
| 248 | // |
| 249 | Pass *createSCCPPass() { |
| 250 | return new SCCP(); |
| 251 | } |
| 252 | |
Chris Lattner | 347389d | 2001-06-27 23:38:11 +0000 | [diff] [blame] | 253 | |
Chris Lattner | 347389d | 2001-06-27 23:38:11 +0000 | [diff] [blame] | 254 | //===----------------------------------------------------------------------===// |
| 255 | // SCCP Class Implementation |
| 256 | |
| 257 | |
Misha Brukman | 373086d | 2003-05-20 21:01:22 +0000 | [diff] [blame] | 258 | // runOnFunction() - Run the Sparse Conditional Constant Propagation algorithm, |
Chris Lattner | 7d32538 | 2002-04-29 21:26:08 +0000 | [diff] [blame] | 259 | // and return true if the function was modified. |
Chris Lattner | 347389d | 2001-06-27 23:38:11 +0000 | [diff] [blame] | 260 | // |
Chris Lattner | 113f4f4 | 2002-06-25 16:13:24 +0000 | [diff] [blame] | 261 | bool SCCP::runOnFunction(Function &F) { |
Chris Lattner | c8e6654 | 2002-04-27 06:56:12 +0000 | [diff] [blame] | 262 | // Mark the first block of the function as being executable... |
Chris Lattner | 0bbbe5d | 2003-10-08 16:55:34 +0000 | [diff] [blame^] | 263 | BBExecutable.insert(F.begin()); // Basic block is executable! |
| 264 | BBWorkList.push_back(F.begin()); // Add the block to the work list! |
Chris Lattner | 347389d | 2001-06-27 23:38:11 +0000 | [diff] [blame] | 265 | |
| 266 | // Process the work lists until their are empty! |
| 267 | while (!BBWorkList.empty() || !InstWorkList.empty()) { |
| 268 | // Process the instruction work list... |
| 269 | while (!InstWorkList.empty()) { |
Chris Lattner | d66a6e3 | 2002-05-07 04:29:32 +0000 | [diff] [blame] | 270 | Instruction *I = InstWorkList.back(); |
| 271 | InstWorkList.pop_back(); |
Chris Lattner | 347389d | 2001-06-27 23:38:11 +0000 | [diff] [blame] | 272 | |
Chris Lattner | cccc5c7 | 2003-04-25 02:50:03 +0000 | [diff] [blame] | 273 | DEBUG(std::cerr << "\nPopped off I-WL: " << I); |
Chris Lattner | 347389d | 2001-06-27 23:38:11 +0000 | [diff] [blame] | 274 | |
| 275 | // "I" got into the work list because it either made the transition from |
| 276 | // bottom to constant, or to Overdefined. |
| 277 | // |
| 278 | // Update all of the users of this instruction's value... |
| 279 | // |
| 280 | for_each(I->use_begin(), I->use_end(), |
| 281 | bind_obj(this, &SCCP::OperandChangedState)); |
| 282 | } |
| 283 | |
| 284 | // Process the basic block work list... |
| 285 | while (!BBWorkList.empty()) { |
| 286 | BasicBlock *BB = BBWorkList.back(); |
| 287 | BBWorkList.pop_back(); |
| 288 | |
Chris Lattner | cccc5c7 | 2003-04-25 02:50:03 +0000 | [diff] [blame] | 289 | DEBUG(std::cerr << "\nPopped off BBWL: " << BB); |
Chris Lattner | 347389d | 2001-06-27 23:38:11 +0000 | [diff] [blame] | 290 | |
Chris Lattner | 6e56079 | 2002-04-18 15:13:15 +0000 | [diff] [blame] | 291 | // Notify all instructions in this basic block that they are newly |
| 292 | // executable. |
| 293 | visit(BB); |
Chris Lattner | 347389d | 2001-06-27 23:38:11 +0000 | [diff] [blame] | 294 | } |
| 295 | } |
| 296 | |
Chris Lattner | 71cbd42 | 2002-05-22 17:17:27 +0000 | [diff] [blame] | 297 | if (DebugFlag) { |
Chris Lattner | 113f4f4 | 2002-06-25 16:13:24 +0000 | [diff] [blame] | 298 | for (Function::iterator I = F.begin(), E = F.end(); I != E; ++I) |
| 299 | if (!BBExecutable.count(I)) |
Chris Lattner | cccc5c7 | 2003-04-25 02:50:03 +0000 | [diff] [blame] | 300 | std::cerr << "BasicBlock Dead:" << *I; |
Chris Lattner | 71cbd42 | 2002-05-22 17:17:27 +0000 | [diff] [blame] | 301 | } |
Chris Lattner | 347389d | 2001-06-27 23:38:11 +0000 | [diff] [blame] | 302 | |
Chris Lattner | c8e6654 | 2002-04-27 06:56:12 +0000 | [diff] [blame] | 303 | // Iterate over all of the instructions in a function, replacing them with |
Chris Lattner | 347389d | 2001-06-27 23:38:11 +0000 | [diff] [blame] | 304 | // constants if we have found them to be of constant values. |
| 305 | // |
| 306 | bool MadeChanges = false; |
Chris Lattner | 113f4f4 | 2002-06-25 16:13:24 +0000 | [diff] [blame] | 307 | for (Function::iterator BB = F.begin(), BBE = F.end(); BB != BBE; ++BB) |
Chris Lattner | 60a6591 | 2002-02-12 21:07:25 +0000 | [diff] [blame] | 308 | for (BasicBlock::iterator BI = BB->begin(); BI != BB->end();) { |
Chris Lattner | 113f4f4 | 2002-06-25 16:13:24 +0000 | [diff] [blame] | 309 | Instruction &Inst = *BI; |
| 310 | InstVal &IV = ValueState[&Inst]; |
Chris Lattner | 60a6591 | 2002-02-12 21:07:25 +0000 | [diff] [blame] | 311 | if (IV.isConstant()) { |
| 312 | Constant *Const = IV.getConstant(); |
Chris Lattner | cccc5c7 | 2003-04-25 02:50:03 +0000 | [diff] [blame] | 313 | DEBUG(std::cerr << "Constant: " << Const << " = " << Inst); |
Chris Lattner | c4ad64c | 2001-11-26 18:57:38 +0000 | [diff] [blame] | 314 | |
Chris Lattner | 60a6591 | 2002-02-12 21:07:25 +0000 | [diff] [blame] | 315 | // Replaces all of the uses of a variable with uses of the constant. |
Chris Lattner | 113f4f4 | 2002-06-25 16:13:24 +0000 | [diff] [blame] | 316 | Inst.replaceAllUsesWith(Const); |
Chris Lattner | 347389d | 2001-06-27 23:38:11 +0000 | [diff] [blame] | 317 | |
Chris Lattner | 5364d1a | 2002-05-02 20:32:51 +0000 | [diff] [blame] | 318 | // Remove the operator from the list of definitions... and delete it. |
Chris Lattner | 113f4f4 | 2002-06-25 16:13:24 +0000 | [diff] [blame] | 319 | BI = BB->getInstList().erase(BI); |
Chris Lattner | 347389d | 2001-06-27 23:38:11 +0000 | [diff] [blame] | 320 | |
Chris Lattner | 60a6591 | 2002-02-12 21:07:25 +0000 | [diff] [blame] | 321 | // Hey, we just changed something! |
| 322 | MadeChanges = true; |
Chris Lattner | 0b18c1d | 2002-05-10 15:38:35 +0000 | [diff] [blame] | 323 | ++NumInstRemoved; |
Chris Lattner | fe6c9ee | 2002-05-02 21:44:00 +0000 | [diff] [blame] | 324 | } else { |
| 325 | ++BI; |
Chris Lattner | 60a6591 | 2002-02-12 21:07:25 +0000 | [diff] [blame] | 326 | } |
Chris Lattner | 347389d | 2001-06-27 23:38:11 +0000 | [diff] [blame] | 327 | } |
Chris Lattner | 347389d | 2001-06-27 23:38:11 +0000 | [diff] [blame] | 328 | |
Chris Lattner | 13b52e7 | 2002-05-02 21:18:01 +0000 | [diff] [blame] | 329 | // Reset state so that the next invocation will have empty data structures |
Chris Lattner | 7d32538 | 2002-04-29 21:26:08 +0000 | [diff] [blame] | 330 | BBExecutable.clear(); |
| 331 | ValueState.clear(); |
Chris Lattner | 669c6cf | 2002-11-04 02:54:22 +0000 | [diff] [blame] | 332 | std::vector<Instruction*>().swap(InstWorkList); |
| 333 | std::vector<BasicBlock*>().swap(BBWorkList); |
Chris Lattner | 7d32538 | 2002-04-29 21:26:08 +0000 | [diff] [blame] | 334 | |
Chris Lattner | dae05dc | 2001-09-07 16:43:22 +0000 | [diff] [blame] | 335 | return MadeChanges; |
Chris Lattner | 347389d | 2001-06-27 23:38:11 +0000 | [diff] [blame] | 336 | } |
| 337 | |
Chris Lattner | fe6c9ee | 2002-05-02 21:44:00 +0000 | [diff] [blame] | 338 | |
| 339 | // getFeasibleSuccessors - Return a vector of booleans to indicate which |
| 340 | // successors are reachable from a given terminator instruction. |
| 341 | // |
Chris Lattner | 113f4f4 | 2002-06-25 16:13:24 +0000 | [diff] [blame] | 342 | void SCCP::getFeasibleSuccessors(TerminatorInst &TI, std::vector<bool> &Succs) { |
Chris Lattner | cccc5c7 | 2003-04-25 02:50:03 +0000 | [diff] [blame] | 343 | Succs.resize(TI.getNumSuccessors()); |
Chris Lattner | 113f4f4 | 2002-06-25 16:13:24 +0000 | [diff] [blame] | 344 | if (BranchInst *BI = dyn_cast<BranchInst>(&TI)) { |
Chris Lattner | fe6c9ee | 2002-05-02 21:44:00 +0000 | [diff] [blame] | 345 | if (BI->isUnconditional()) { |
| 346 | Succs[0] = true; |
| 347 | } else { |
| 348 | InstVal &BCValue = getValueState(BI->getCondition()); |
| 349 | if (BCValue.isOverdefined()) { |
| 350 | // Overdefined condition variables mean the branch could go either way. |
| 351 | Succs[0] = Succs[1] = true; |
| 352 | } else if (BCValue.isConstant()) { |
| 353 | // Constant condition variables mean the branch can only go a single way |
| 354 | Succs[BCValue.getConstant() == ConstantBool::False] = true; |
| 355 | } |
| 356 | } |
Chris Lattner | 113f4f4 | 2002-06-25 16:13:24 +0000 | [diff] [blame] | 357 | } else if (InvokeInst *II = dyn_cast<InvokeInst>(&TI)) { |
Chris Lattner | fe6c9ee | 2002-05-02 21:44:00 +0000 | [diff] [blame] | 358 | // Invoke instructions successors are always executable. |
| 359 | Succs[0] = Succs[1] = true; |
Chris Lattner | 113f4f4 | 2002-06-25 16:13:24 +0000 | [diff] [blame] | 360 | } else if (SwitchInst *SI = dyn_cast<SwitchInst>(&TI)) { |
Chris Lattner | fe6c9ee | 2002-05-02 21:44:00 +0000 | [diff] [blame] | 361 | InstVal &SCValue = getValueState(SI->getCondition()); |
| 362 | if (SCValue.isOverdefined()) { // Overdefined condition? |
| 363 | // All destinations are executable! |
Chris Lattner | 113f4f4 | 2002-06-25 16:13:24 +0000 | [diff] [blame] | 364 | Succs.assign(TI.getNumSuccessors(), true); |
Chris Lattner | fe6c9ee | 2002-05-02 21:44:00 +0000 | [diff] [blame] | 365 | } else if (SCValue.isConstant()) { |
| 366 | Constant *CPV = SCValue.getConstant(); |
| 367 | // Make sure to skip the "default value" which isn't a value |
| 368 | for (unsigned i = 1, E = SI->getNumSuccessors(); i != E; ++i) { |
| 369 | if (SI->getSuccessorValue(i) == CPV) {// Found the right branch... |
| 370 | Succs[i] = true; |
| 371 | return; |
| 372 | } |
| 373 | } |
| 374 | |
| 375 | // Constant value not equal to any of the branches... must execute |
| 376 | // default branch then... |
| 377 | Succs[0] = true; |
| 378 | } |
| 379 | } else { |
Chris Lattner | cccc5c7 | 2003-04-25 02:50:03 +0000 | [diff] [blame] | 380 | std::cerr << "SCCP: Don't know how to handle: " << TI; |
Chris Lattner | 113f4f4 | 2002-06-25 16:13:24 +0000 | [diff] [blame] | 381 | Succs.assign(TI.getNumSuccessors(), true); |
Chris Lattner | fe6c9ee | 2002-05-02 21:44:00 +0000 | [diff] [blame] | 382 | } |
| 383 | } |
| 384 | |
| 385 | |
Chris Lattner | 13b52e7 | 2002-05-02 21:18:01 +0000 | [diff] [blame] | 386 | // isEdgeFeasible - Return true if the control flow edge from the 'From' basic |
| 387 | // block to the 'To' basic block is currently feasible... |
| 388 | // |
| 389 | bool SCCP::isEdgeFeasible(BasicBlock *From, BasicBlock *To) { |
| 390 | assert(BBExecutable.count(To) && "Dest should always be alive!"); |
| 391 | |
| 392 | // Make sure the source basic block is executable!! |
| 393 | if (!BBExecutable.count(From)) return false; |
| 394 | |
Chris Lattner | fe6c9ee | 2002-05-02 21:44:00 +0000 | [diff] [blame] | 395 | // Check to make sure this edge itself is actually feasible now... |
Chris Lattner | 71ac22ff | 2003-10-08 15:47:41 +0000 | [diff] [blame] | 396 | TerminatorInst *TI = From->getTerminator(); |
| 397 | if (BranchInst *BI = dyn_cast<BranchInst>(TI)) { |
| 398 | if (BI->isUnconditional()) |
Chris Lattner | fe6c9ee | 2002-05-02 21:44:00 +0000 | [diff] [blame] | 399 | return true; |
Chris Lattner | 71ac22ff | 2003-10-08 15:47:41 +0000 | [diff] [blame] | 400 | else { |
| 401 | InstVal &BCValue = getValueState(BI->getCondition()); |
| 402 | if (BCValue.isOverdefined()) { |
| 403 | // Overdefined condition variables mean the branch could go either way. |
| 404 | return true; |
| 405 | } else if (BCValue.isConstant()) { |
| 406 | // Constant condition variables mean the branch can only go a single way |
| 407 | return BI->getSuccessor(BCValue.getConstant() == |
| 408 | ConstantBool::False) == To; |
| 409 | } |
| 410 | return false; |
| 411 | } |
| 412 | } else if (InvokeInst *II = dyn_cast<InvokeInst>(TI)) { |
| 413 | // Invoke instructions successors are always executable. |
| 414 | return true; |
| 415 | } else if (SwitchInst *SI = dyn_cast<SwitchInst>(TI)) { |
| 416 | InstVal &SCValue = getValueState(SI->getCondition()); |
| 417 | if (SCValue.isOverdefined()) { // Overdefined condition? |
| 418 | // All destinations are executable! |
| 419 | return true; |
| 420 | } else if (SCValue.isConstant()) { |
| 421 | Constant *CPV = SCValue.getConstant(); |
| 422 | // Make sure to skip the "default value" which isn't a value |
| 423 | for (unsigned i = 1, E = SI->getNumSuccessors(); i != E; ++i) |
| 424 | if (SI->getSuccessorValue(i) == CPV) // Found the taken branch... |
| 425 | return SI->getSuccessor(i) == To; |
| 426 | |
| 427 | // Constant value not equal to any of the branches... must execute |
| 428 | // default branch then... |
| 429 | return SI->getDefaultDest() == To; |
| 430 | } |
| 431 | return false; |
| 432 | } else { |
| 433 | std::cerr << "Unknown terminator instruction: " << *TI; |
| 434 | abort(); |
| 435 | } |
Chris Lattner | 13b52e7 | 2002-05-02 21:18:01 +0000 | [diff] [blame] | 436 | } |
Chris Lattner | 347389d | 2001-06-27 23:38:11 +0000 | [diff] [blame] | 437 | |
Chris Lattner | 6e56079 | 2002-04-18 15:13:15 +0000 | [diff] [blame] | 438 | // visit Implementations - Something changed in this instruction... Either an |
Chris Lattner | 347389d | 2001-06-27 23:38:11 +0000 | [diff] [blame] | 439 | // operand made a transition, or the instruction is newly executable. Change |
| 440 | // the value type of I to reflect these changes if appropriate. This method |
| 441 | // makes sure to do the following actions: |
| 442 | // |
| 443 | // 1. If a phi node merges two constants in, and has conflicting value coming |
| 444 | // from different branches, or if the PHI node merges in an overdefined |
| 445 | // value, then the PHI node becomes overdefined. |
| 446 | // 2. If a phi node merges only constants in, and they all agree on value, the |
| 447 | // PHI node becomes a constant value equal to that. |
| 448 | // 3. If V <- x (op) y && isConstant(x) && isConstant(y) V = Constant |
| 449 | // 4. If V <- x (op) y && (isOverdefined(x) || isOverdefined(y)) V = Overdefined |
| 450 | // 5. If V <- MEM or V <- CALL or V <- (unknown) then V = Overdefined |
| 451 | // 6. If a conditional branch has a value that is constant, make the selected |
| 452 | // destination executable |
| 453 | // 7. If a conditional branch has a value that is overdefined, make all |
| 454 | // successors executable. |
| 455 | // |
Chris Lattner | 113f4f4 | 2002-06-25 16:13:24 +0000 | [diff] [blame] | 456 | void SCCP::visitPHINode(PHINode &PN) { |
Chris Lattner | 7324f7c | 2003-10-08 16:21:03 +0000 | [diff] [blame] | 457 | InstVal &PNIV = getValueState(&PN); |
| 458 | if (PNIV.isOverdefined()) return; // Quick exit |
Chris Lattner | 347389d | 2001-06-27 23:38:11 +0000 | [diff] [blame] | 459 | |
Chris Lattner | 6e56079 | 2002-04-18 15:13:15 +0000 | [diff] [blame] | 460 | // Look at all of the executable operands of the PHI node. If any of them |
| 461 | // are overdefined, the PHI becomes overdefined as well. If they are all |
| 462 | // constant, and they agree with each other, the PHI becomes the identical |
| 463 | // constant. If they are constant and don't agree, the PHI is overdefined. |
| 464 | // If there are no executable operands, the PHI remains undefined. |
| 465 | // |
Chris Lattner | cccc5c7 | 2003-04-25 02:50:03 +0000 | [diff] [blame] | 466 | Constant *OperandVal = 0; |
| 467 | for (unsigned i = 0, e = PN.getNumIncomingValues(); i != e; ++i) { |
| 468 | InstVal &IV = getValueState(PN.getIncomingValue(i)); |
| 469 | if (IV.isUndefined()) continue; // Doesn't influence PHI node. |
Chris Lattner | cccc5c7 | 2003-04-25 02:50:03 +0000 | [diff] [blame] | 470 | |
Chris Lattner | 113f4f4 | 2002-06-25 16:13:24 +0000 | [diff] [blame] | 471 | if (isEdgeFeasible(PN.getIncomingBlock(i), PN.getParent())) { |
Chris Lattner | 7e27058 | 2003-06-24 20:29:52 +0000 | [diff] [blame] | 472 | if (IV.isOverdefined()) { // PHI node becomes overdefined! |
Chris Lattner | 7324f7c | 2003-10-08 16:21:03 +0000 | [diff] [blame] | 473 | markOverdefined(PNIV, &PN); |
Chris Lattner | 7e27058 | 2003-06-24 20:29:52 +0000 | [diff] [blame] | 474 | return; |
| 475 | } |
| 476 | |
Chris Lattner | cccc5c7 | 2003-04-25 02:50:03 +0000 | [diff] [blame] | 477 | if (OperandVal == 0) { // Grab the first value... |
| 478 | OperandVal = IV.getConstant(); |
Chris Lattner | 6e56079 | 2002-04-18 15:13:15 +0000 | [diff] [blame] | 479 | } else { // Another value is being merged in! |
| 480 | // There is already a reachable operand. If we conflict with it, |
| 481 | // then the PHI node becomes overdefined. If we agree with it, we |
| 482 | // can continue on. |
Chris Lattner | cccc5c7 | 2003-04-25 02:50:03 +0000 | [diff] [blame] | 483 | |
Chris Lattner | 6e56079 | 2002-04-18 15:13:15 +0000 | [diff] [blame] | 484 | // Check to see if there are two different constants merging... |
Chris Lattner | cccc5c7 | 2003-04-25 02:50:03 +0000 | [diff] [blame] | 485 | if (IV.getConstant() != OperandVal) { |
Chris Lattner | 6e56079 | 2002-04-18 15:13:15 +0000 | [diff] [blame] | 486 | // Yes there is. This means the PHI node is not constant. |
| 487 | // You must be overdefined poor PHI. |
| 488 | // |
Chris Lattner | 7324f7c | 2003-10-08 16:21:03 +0000 | [diff] [blame] | 489 | markOverdefined(PNIV, &PN); // The PHI node now becomes overdefined |
Chris Lattner | 6e56079 | 2002-04-18 15:13:15 +0000 | [diff] [blame] | 490 | return; // I'm done analyzing you |
Chris Lattner | c4ad64c | 2001-11-26 18:57:38 +0000 | [diff] [blame] | 491 | } |
Chris Lattner | 347389d | 2001-06-27 23:38:11 +0000 | [diff] [blame] | 492 | } |
| 493 | } |
Chris Lattner | 347389d | 2001-06-27 23:38:11 +0000 | [diff] [blame] | 494 | } |
| 495 | |
Chris Lattner | 6e56079 | 2002-04-18 15:13:15 +0000 | [diff] [blame] | 496 | // If we exited the loop, this means that the PHI node only has constant |
Chris Lattner | cccc5c7 | 2003-04-25 02:50:03 +0000 | [diff] [blame] | 497 | // arguments that agree with each other(and OperandVal is the constant) or |
| 498 | // OperandVal is null because there are no defined incoming arguments. If |
| 499 | // this is the case, the PHI remains undefined. |
Chris Lattner | 347389d | 2001-06-27 23:38:11 +0000 | [diff] [blame] | 500 | // |
Chris Lattner | cccc5c7 | 2003-04-25 02:50:03 +0000 | [diff] [blame] | 501 | if (OperandVal) |
Chris Lattner | 7324f7c | 2003-10-08 16:21:03 +0000 | [diff] [blame] | 502 | markConstant(PNIV, &PN, OperandVal); // Aquire operand value |
Chris Lattner | 347389d | 2001-06-27 23:38:11 +0000 | [diff] [blame] | 503 | } |
| 504 | |
Chris Lattner | 113f4f4 | 2002-06-25 16:13:24 +0000 | [diff] [blame] | 505 | void SCCP::visitTerminatorInst(TerminatorInst &TI) { |
Chris Lattner | cccc5c7 | 2003-04-25 02:50:03 +0000 | [diff] [blame] | 506 | std::vector<bool> SuccFeasible; |
Chris Lattner | fe6c9ee | 2002-05-02 21:44:00 +0000 | [diff] [blame] | 507 | getFeasibleSuccessors(TI, SuccFeasible); |
Chris Lattner | 347389d | 2001-06-27 23:38:11 +0000 | [diff] [blame] | 508 | |
Chris Lattner | 0bbbe5d | 2003-10-08 16:55:34 +0000 | [diff] [blame^] | 509 | BasicBlock *BB = TI.getParent(); |
| 510 | |
Chris Lattner | fe6c9ee | 2002-05-02 21:44:00 +0000 | [diff] [blame] | 511 | // Mark all feasible successors executable... |
| 512 | for (unsigned i = 0, e = SuccFeasible.size(); i != e; ++i) |
Chris Lattner | 0bbbe5d | 2003-10-08 16:55:34 +0000 | [diff] [blame^] | 513 | if (SuccFeasible[i]) |
| 514 | markEdgeExecutable(BB, TI.getSuccessor(i)); |
Chris Lattner | 6e56079 | 2002-04-18 15:13:15 +0000 | [diff] [blame] | 515 | } |
| 516 | |
Chris Lattner | 6e1a1b1 | 2002-08-14 17:53:45 +0000 | [diff] [blame] | 517 | void SCCP::visitCastInst(CastInst &I) { |
Chris Lattner | 113f4f4 | 2002-06-25 16:13:24 +0000 | [diff] [blame] | 518 | Value *V = I.getOperand(0); |
Chris Lattner | 6e56079 | 2002-04-18 15:13:15 +0000 | [diff] [blame] | 519 | InstVal &VState = getValueState(V); |
| 520 | if (VState.isOverdefined()) { // Inherit overdefinedness of operand |
Chris Lattner | 113f4f4 | 2002-06-25 16:13:24 +0000 | [diff] [blame] | 521 | markOverdefined(&I); |
Misha Brukman | 632df28 | 2002-10-29 23:06:16 +0000 | [diff] [blame] | 522 | } else if (VState.isConstant()) { // Propagate constant value |
Chris Lattner | 6e1a1b1 | 2002-08-14 17:53:45 +0000 | [diff] [blame] | 523 | Constant *Result = |
| 524 | ConstantFoldCastInstruction(VState.getConstant(), I.getType()); |
Chris Lattner | 6e56079 | 2002-04-18 15:13:15 +0000 | [diff] [blame] | 525 | |
Chris Lattner | 7324f7c | 2003-10-08 16:21:03 +0000 | [diff] [blame] | 526 | if (Result) // If this instruction constant folds! |
Chris Lattner | 113f4f4 | 2002-06-25 16:13:24 +0000 | [diff] [blame] | 527 | markConstant(&I, Result); |
Chris Lattner | 7324f7c | 2003-10-08 16:21:03 +0000 | [diff] [blame] | 528 | else |
Chris Lattner | 113f4f4 | 2002-06-25 16:13:24 +0000 | [diff] [blame] | 529 | markOverdefined(&I); // Don't know how to fold this instruction. :( |
Chris Lattner | 6e56079 | 2002-04-18 15:13:15 +0000 | [diff] [blame] | 530 | } |
| 531 | } |
| 532 | |
| 533 | // Handle BinaryOperators and Shift Instructions... |
Chris Lattner | 113f4f4 | 2002-06-25 16:13:24 +0000 | [diff] [blame] | 534 | void SCCP::visitBinaryOperator(Instruction &I) { |
| 535 | InstVal &V1State = getValueState(I.getOperand(0)); |
| 536 | InstVal &V2State = getValueState(I.getOperand(1)); |
Chris Lattner | 6e56079 | 2002-04-18 15:13:15 +0000 | [diff] [blame] | 537 | if (V1State.isOverdefined() || V2State.isOverdefined()) { |
Chris Lattner | 113f4f4 | 2002-06-25 16:13:24 +0000 | [diff] [blame] | 538 | markOverdefined(&I); |
Chris Lattner | 6e56079 | 2002-04-18 15:13:15 +0000 | [diff] [blame] | 539 | } else if (V1State.isConstant() && V2State.isConstant()) { |
Chris Lattner | 940daed | 2002-05-06 03:01:37 +0000 | [diff] [blame] | 540 | Constant *Result = 0; |
| 541 | if (isa<BinaryOperator>(I)) |
Chris Lattner | 113f4f4 | 2002-06-25 16:13:24 +0000 | [diff] [blame] | 542 | Result = ConstantFoldBinaryInstruction(I.getOpcode(), |
Chris Lattner | 940daed | 2002-05-06 03:01:37 +0000 | [diff] [blame] | 543 | V1State.getConstant(), |
| 544 | V2State.getConstant()); |
| 545 | else if (isa<ShiftInst>(I)) |
Chris Lattner | 113f4f4 | 2002-06-25 16:13:24 +0000 | [diff] [blame] | 546 | Result = ConstantFoldShiftInstruction(I.getOpcode(), |
Chris Lattner | 940daed | 2002-05-06 03:01:37 +0000 | [diff] [blame] | 547 | V1State.getConstant(), |
| 548 | V2State.getConstant()); |
Chris Lattner | 6e56079 | 2002-04-18 15:13:15 +0000 | [diff] [blame] | 549 | if (Result) |
Chris Lattner | 113f4f4 | 2002-06-25 16:13:24 +0000 | [diff] [blame] | 550 | markConstant(&I, Result); // This instruction constant folds! |
Chris Lattner | 6e56079 | 2002-04-18 15:13:15 +0000 | [diff] [blame] | 551 | else |
Chris Lattner | 113f4f4 | 2002-06-25 16:13:24 +0000 | [diff] [blame] | 552 | markOverdefined(&I); // Don't know how to fold this instruction. :( |
Chris Lattner | 6e56079 | 2002-04-18 15:13:15 +0000 | [diff] [blame] | 553 | } |
| 554 | } |
Chris Lattner | dd6522e | 2002-08-30 23:39:00 +0000 | [diff] [blame] | 555 | |
| 556 | // Handle getelementptr instructions... if all operands are constants then we |
| 557 | // can turn this into a getelementptr ConstantExpr. |
| 558 | // |
| 559 | void SCCP::visitGetElementPtrInst(GetElementPtrInst &I) { |
| 560 | std::vector<Constant*> Operands; |
| 561 | Operands.reserve(I.getNumOperands()); |
| 562 | |
| 563 | for (unsigned i = 0, e = I.getNumOperands(); i != e; ++i) { |
| 564 | InstVal &State = getValueState(I.getOperand(i)); |
| 565 | if (State.isUndefined()) |
| 566 | return; // Operands are not resolved yet... |
| 567 | else if (State.isOverdefined()) { |
| 568 | markOverdefined(&I); |
| 569 | return; |
| 570 | } |
| 571 | assert(State.isConstant() && "Unknown state!"); |
| 572 | Operands.push_back(State.getConstant()); |
| 573 | } |
| 574 | |
| 575 | Constant *Ptr = Operands[0]; |
| 576 | Operands.erase(Operands.begin()); // Erase the pointer from idx list... |
| 577 | |
| 578 | markConstant(&I, ConstantExpr::getGetElementPtr(Ptr, Operands)); |
| 579 | } |