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