blob: 82d00b472ad49ff5df9443d79f49d7210a030be2 [file] [log] [blame]
Misha Brukman82c89b92003-05-20 21:01:22 +00001//===- SCCP.cpp - Sparse Conditional Constant Propagation -----------------===//
John Criswellb576c942003-10-20 19:43:21 +00002//
3// The LLVM Compiler Infrastructure
4//
5// This file was developed by the LLVM research group and is distributed under
6// the University of Illinois Open Source License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
Chris Lattner138a1242001-06-27 23:38:11 +00009//
Misha Brukman82c89b92003-05-20 21:01:22 +000010// This file implements sparse conditional constant propagation and merging:
Chris Lattner138a1242001-06-27 23:38:11 +000011//
12// Specifically, this:
13// * Assumes values are constant unless proven otherwise
14// * Assumes BasicBlocks are dead unless proven otherwise
15// * Proves values to be constant, and replaces them with constants
Chris Lattner2a88bb72002-08-30 23:39:00 +000016// * Proves conditional branches to be unconditional
Chris Lattner138a1242001-06-27 23:38:11 +000017//
18// Notice that:
19// * This pass has a habit of making definitions be dead. It is a good idea
20// to to run a DCE pass sometime after running this pass.
21//
22//===----------------------------------------------------------------------===//
23
Chris Lattner022103b2002-05-07 20:03:00 +000024#include "llvm/Transforms/Scalar.h"
Chris Lattnerb7a5d3e2004-01-12 17:43:40 +000025#include "llvm/Constants.h"
Chris Lattner79df7c02002-03-26 18:01:55 +000026#include "llvm/Function.h"
Chris Lattnerc6a4d6a2004-01-12 04:29:41 +000027#include "llvm/GlobalVariable.h"
Chris Lattner9de28282003-04-25 02:50:03 +000028#include "llvm/Instructions.h"
Chris Lattnerbd0ef772002-02-26 21:46:54 +000029#include "llvm/Pass.h"
Chris Lattnerb7a5d3e2004-01-12 17:43:40 +000030#include "llvm/Type.h"
Chris Lattner2a632552002-04-18 15:13:15 +000031#include "llvm/Support/InstVisitor.h"
Chris Lattner58b7b082004-04-13 19:43:54 +000032#include "llvm/Transforms/Utils/Local.h"
Reid Spencer551ccae2004-09-01 22:55:40 +000033#include "llvm/Support/Debug.h"
34#include "llvm/ADT/hash_map"
35#include "llvm/ADT/Statistic.h"
36#include "llvm/ADT/STLExtras.h"
Chris Lattner138a1242001-06-27 23:38:11 +000037#include <algorithm>
Chris Lattner138a1242001-06-27 23:38:11 +000038#include <set>
Chris Lattnerd7456022004-01-09 06:02:20 +000039using namespace llvm;
Brian Gaeked0fde302003-11-11 22:41:34 +000040
Chris Lattner138a1242001-06-27 23:38:11 +000041// InstVal class - This class represents the different lattice values that an
Chris Lattnerf57b8452002-04-27 06:56:12 +000042// instruction may occupy. It is a simple class with value semantics.
Chris Lattner138a1242001-06-27 23:38:11 +000043//
Chris Lattner0dbfc052002-04-29 21:26:08 +000044namespace {
Chris Lattnera92f6962002-10-01 22:38:41 +000045 Statistic<> NumInstRemoved("sccp", "Number of instructions removed");
46
Chris Lattner138a1242001-06-27 23:38:11 +000047class InstVal {
48 enum {
Chris Lattnere9bb2df2001-12-03 22:26:30 +000049 undefined, // This instruction has no known value
50 constant, // This instruction has a constant value
Chris Lattnere9bb2df2001-12-03 22:26:30 +000051 overdefined // This instruction has an unknown value
52 } LatticeValue; // The current lattice position
53 Constant *ConstantVal; // If Constant value, the current value
Chris Lattner138a1242001-06-27 23:38:11 +000054public:
Chris Lattnere9bb2df2001-12-03 22:26:30 +000055 inline InstVal() : LatticeValue(undefined), ConstantVal(0) {}
Chris Lattner138a1242001-06-27 23:38:11 +000056
57 // markOverdefined - Return true if this is a new status to be in...
58 inline bool markOverdefined() {
Chris Lattnere9bb2df2001-12-03 22:26:30 +000059 if (LatticeValue != overdefined) {
60 LatticeValue = overdefined;
Chris Lattner138a1242001-06-27 23:38:11 +000061 return true;
62 }
63 return false;
64 }
65
66 // markConstant - Return true if this is a new status for us...
Chris Lattnere9bb2df2001-12-03 22:26:30 +000067 inline bool markConstant(Constant *V) {
68 if (LatticeValue != constant) {
69 LatticeValue = constant;
Chris Lattner138a1242001-06-27 23:38:11 +000070 ConstantVal = V;
71 return true;
72 } else {
Chris Lattnerb70d82f2001-09-07 16:43:22 +000073 assert(ConstantVal == V && "Marking constant with different value");
Chris Lattner138a1242001-06-27 23:38:11 +000074 }
75 return false;
76 }
77
Chris Lattnere9bb2df2001-12-03 22:26:30 +000078 inline bool isUndefined() const { return LatticeValue == undefined; }
79 inline bool isConstant() const { return LatticeValue == constant; }
80 inline bool isOverdefined() const { return LatticeValue == overdefined; }
Chris Lattner138a1242001-06-27 23:38:11 +000081
Chris Lattner1daee8b2004-01-12 03:57:30 +000082 inline Constant *getConstant() const {
83 assert(isConstant() && "Cannot get the constant of a non-constant!");
84 return ConstantVal;
85 }
Chris Lattner138a1242001-06-27 23:38:11 +000086};
87
Chris Lattner0dbfc052002-04-29 21:26:08 +000088} // end anonymous namespace
Chris Lattner138a1242001-06-27 23:38:11 +000089
90
91//===----------------------------------------------------------------------===//
92// SCCP Class
93//
Misha Brukman82c89b92003-05-20 21:01:22 +000094// This class does all of the work of Sparse Conditional Constant Propagation.
Chris Lattner138a1242001-06-27 23:38:11 +000095//
Chris Lattner0dbfc052002-04-29 21:26:08 +000096namespace {
97class SCCP : public FunctionPass, public InstVisitor<SCCP> {
Chris Lattner697954c2002-01-20 22:54:45 +000098 std::set<BasicBlock*> BBExecutable;// The basic blocks that are executable
Chris Lattner80b2d6c2004-07-15 23:36:43 +000099 hash_map<Value*, InstVal> ValueState; // The state each value is in...
Chris Lattner138a1242001-06-27 23:38:11 +0000100
Chris Lattner80b2d6c2004-07-15 23:36:43 +0000101 // The reason for two worklists is that overdefined is the lowest state
102 // on the lattice, and moving things to overdefined as fast as possible
103 // makes SCCP converge much faster.
104 // By having a separate worklist, we accomplish this because everything
105 // possibly overdefined will become overdefined at the soonest possible
106 // point.
107 std::vector<Instruction*> OverdefinedInstWorkList;// The overdefined
108 // instruction work list
Chris Lattner071d0ad2002-05-07 04:29:32 +0000109 std::vector<Instruction*> InstWorkList;// The instruction work list
Chris Lattner80b2d6c2004-07-15 23:36:43 +0000110
111
Chris Lattner697954c2002-01-20 22:54:45 +0000112 std::vector<BasicBlock*> BBWorkList; // The BasicBlock work list
Chris Lattner16b18fd2003-10-08 16:55:34 +0000113
Chris Lattner1daee8b2004-01-12 03:57:30 +0000114 /// UsersOfOverdefinedPHIs - Keep track of any users of PHI nodes that are not
115 /// overdefined, despite the fact that the PHI node is overdefined.
116 std::multimap<PHINode*, Instruction*> UsersOfOverdefinedPHIs;
117
Chris Lattner16b18fd2003-10-08 16:55:34 +0000118 /// KnownFeasibleEdges - Entries in this set are edges which have already had
119 /// PHI nodes retriggered.
120 typedef std::pair<BasicBlock*,BasicBlock*> Edge;
121 std::set<Edge> KnownFeasibleEdges;
Chris Lattner138a1242001-06-27 23:38:11 +0000122public:
123
Misha Brukman82c89b92003-05-20 21:01:22 +0000124 // runOnFunction - Run the Sparse Conditional Constant Propagation algorithm,
Chris Lattner0dbfc052002-04-29 21:26:08 +0000125 // and return true if the function was modified.
126 //
Chris Lattner7e708292002-06-25 16:13:24 +0000127 bool runOnFunction(Function &F);
Chris Lattner0dbfc052002-04-29 21:26:08 +0000128
129 virtual void getAnalysisUsage(AnalysisUsage &AU) const {
Chris Lattnercb2610e2002-10-21 20:00:28 +0000130 AU.setPreservesCFG();
Chris Lattner0dbfc052002-04-29 21:26:08 +0000131 }
132
Chris Lattner138a1242001-06-27 23:38:11 +0000133
134 //===--------------------------------------------------------------------===//
135 // The implementation of this class
136 //
137private:
Chris Lattner1fca5ff2004-10-27 16:14:51 +0000138 friend struct InstVisitor<SCCP>; // Allow callbacks from visitor
Chris Lattner138a1242001-06-27 23:38:11 +0000139
Chris Lattner80b2d6c2004-07-15 23:36:43 +0000140 // markConstant - Make a value be marked as "constant". If the value
Chris Lattner138a1242001-06-27 23:38:11 +0000141 // is not already a constant, add it to the instruction work list so that
142 // the users of the instruction are updated later.
143 //
Chris Lattner3d405b02003-10-08 16:21:03 +0000144 inline void markConstant(InstVal &IV, Instruction *I, Constant *C) {
145 if (IV.markConstant(C)) {
146 DEBUG(std::cerr << "markConstant: " << *C << ": " << *I);
Chris Lattner071d0ad2002-05-07 04:29:32 +0000147 InstWorkList.push_back(I);
Chris Lattner138a1242001-06-27 23:38:11 +0000148 }
Chris Lattner3d405b02003-10-08 16:21:03 +0000149 }
150 inline void markConstant(Instruction *I, Constant *C) {
151 markConstant(ValueState[I], I, C);
Chris Lattner138a1242001-06-27 23:38:11 +0000152 }
153
Chris Lattner80b2d6c2004-07-15 23:36:43 +0000154 // markOverdefined - Make a value be marked as "overdefined". If the
155 // value is not already overdefined, add it to the overdefined instruction
156 // work list so that the users of the instruction are updated later.
157
Chris Lattner3d405b02003-10-08 16:21:03 +0000158 inline void markOverdefined(InstVal &IV, Instruction *I) {
159 if (IV.markOverdefined()) {
160 DEBUG(std::cerr << "markOverdefined: " << *I);
Chris Lattner80b2d6c2004-07-15 23:36:43 +0000161 OverdefinedInstWorkList.push_back(I); // Only instructions go on the work list
Chris Lattner138a1242001-06-27 23:38:11 +0000162 }
Chris Lattner3d405b02003-10-08 16:21:03 +0000163 }
164 inline void markOverdefined(Instruction *I) {
165 markOverdefined(ValueState[I], I);
Chris Lattner138a1242001-06-27 23:38:11 +0000166 }
167
168 // getValueState - Return the InstVal object that corresponds to the value.
Misha Brukman5560c9d2003-08-18 14:43:39 +0000169 // This function is necessary because not all values should start out in the
Chris Lattner73e21422002-04-09 19:48:49 +0000170 // underdefined state... Argument's should be overdefined, and
Chris Lattner79df7c02002-03-26 18:01:55 +0000171 // constants should be marked as constants. If a value is not known to be an
Chris Lattner138a1242001-06-27 23:38:11 +0000172 // Instruction object, then use this accessor to get its value from the map.
173 //
174 inline InstVal &getValueState(Value *V) {
Chris Lattner80b2d6c2004-07-15 23:36:43 +0000175 hash_map<Value*, InstVal>::iterator I = ValueState.find(V);
Chris Lattner138a1242001-06-27 23:38:11 +0000176 if (I != ValueState.end()) return I->second; // Common case, in the map
Chris Lattner5d356a72004-10-16 18:09:41 +0000177
178 if (isa<UndefValue>(V)) {
179 // Nothing to do, remain undefined.
180 } else if (Constant *CPV = dyn_cast<Constant>(V)) {
181 ValueState[CPV].markConstant(CPV); // Constants are constant
Chris Lattner73e21422002-04-09 19:48:49 +0000182 } else if (isa<Argument>(V)) { // Arguments are overdefined
Chris Lattner138a1242001-06-27 23:38:11 +0000183 ValueState[V].markOverdefined();
Chris Lattner2a88bb72002-08-30 23:39:00 +0000184 }
Chris Lattner138a1242001-06-27 23:38:11 +0000185 // All others are underdefined by default...
186 return ValueState[V];
187 }
188
Chris Lattner16b18fd2003-10-08 16:55:34 +0000189 // markEdgeExecutable - Mark a basic block as executable, adding it to the BB
Chris Lattner138a1242001-06-27 23:38:11 +0000190 // work list if it is not already executable...
191 //
Chris Lattner16b18fd2003-10-08 16:55:34 +0000192 void markEdgeExecutable(BasicBlock *Source, BasicBlock *Dest) {
193 if (!KnownFeasibleEdges.insert(Edge(Source, Dest)).second)
194 return; // This edge is already known to be executable!
195
196 if (BBExecutable.count(Dest)) {
197 DEBUG(std::cerr << "Marking Edge Executable: " << Source->getName()
198 << " -> " << Dest->getName() << "\n");
199
200 // The destination is already executable, but we just made an edge
Chris Lattner929c6fb2003-10-08 16:56:11 +0000201 // feasible that wasn't before. Revisit the PHI nodes in the block
202 // because they have potentially new operands.
Reid Spencer2da5c3d2004-09-15 17:06:42 +0000203 for (BasicBlock::iterator I = Dest->begin(); isa<PHINode>(I); ++I) {
204 PHINode *PN = cast<PHINode>(I);
Chris Lattnerbceb2b02003-04-25 03:35:10 +0000205 visitPHINode(*PN);
Reid Spencer2da5c3d2004-09-15 17:06:42 +0000206 }
Chris Lattner9de28282003-04-25 02:50:03 +0000207
208 } else {
Chris Lattner16b18fd2003-10-08 16:55:34 +0000209 DEBUG(std::cerr << "Marking Block Executable: " << Dest->getName()<<"\n");
210 BBExecutable.insert(Dest); // Basic block is executable!
211 BBWorkList.push_back(Dest); // Add the block to the work list!
Chris Lattner9de28282003-04-25 02:50:03 +0000212 }
Chris Lattner138a1242001-06-27 23:38:11 +0000213 }
214
Chris Lattner138a1242001-06-27 23:38:11 +0000215
Chris Lattner2a632552002-04-18 15:13:15 +0000216 // visit implementations - Something changed in this instruction... Either an
Chris Lattnercb056de2001-06-29 23:56:23 +0000217 // operand made a transition, or the instruction is newly executable. Change
218 // the value type of I to reflect these changes if appropriate.
219 //
Chris Lattner7e708292002-06-25 16:13:24 +0000220 void visitPHINode(PHINode &I);
Chris Lattner2a632552002-04-18 15:13:15 +0000221
222 // Terminators
Chris Lattner7e708292002-06-25 16:13:24 +0000223 void visitReturnInst(ReturnInst &I) { /*does not have an effect*/ }
224 void visitTerminatorInst(TerminatorInst &TI);
Chris Lattner2a632552002-04-18 15:13:15 +0000225
Chris Lattnerb8047602002-08-14 17:53:45 +0000226 void visitCastInst(CastInst &I);
Chris Lattner6e323722004-03-12 05:52:44 +0000227 void visitSelectInst(SelectInst &I);
Chris Lattner7e708292002-06-25 16:13:24 +0000228 void visitBinaryOperator(Instruction &I);
229 void visitShiftInst(ShiftInst &I) { visitBinaryOperator(I); }
Chris Lattner2a632552002-04-18 15:13:15 +0000230
231 // Instructions that cannot be folded away...
Chris Lattner7e708292002-06-25 16:13:24 +0000232 void visitStoreInst (Instruction &I) { /*returns void*/ }
Chris Lattnerc6a4d6a2004-01-12 04:29:41 +0000233 void visitLoadInst (LoadInst &I);
Chris Lattner2a88bb72002-08-30 23:39:00 +0000234 void visitGetElementPtrInst(GetElementPtrInst &I);
Chris Lattner58b7b082004-04-13 19:43:54 +0000235 void visitCallInst (CallInst &I);
Chris Lattner99b28e62003-08-27 01:08:35 +0000236 void visitInvokeInst (TerminatorInst &I) {
Chris Lattner3d405b02003-10-08 16:21:03 +0000237 if (I.getType() != Type::VoidTy) markOverdefined(&I);
Chris Lattner99b28e62003-08-27 01:08:35 +0000238 visitTerminatorInst(I);
239 }
Chris Lattner36143fc2003-09-08 18:54:55 +0000240 void visitUnwindInst (TerminatorInst &I) { /*returns void*/ }
Chris Lattner5d356a72004-10-16 18:09:41 +0000241 void visitUnreachableInst(TerminatorInst &I) { /*returns void*/ }
Chris Lattner7e708292002-06-25 16:13:24 +0000242 void visitAllocationInst(Instruction &I) { markOverdefined(&I); }
Chris Lattnercda965e2003-10-18 05:56:52 +0000243 void visitVANextInst (Instruction &I) { markOverdefined(&I); }
244 void visitVAArgInst (Instruction &I) { markOverdefined(&I); }
Chris Lattner7e708292002-06-25 16:13:24 +0000245 void visitFreeInst (Instruction &I) { /*returns void*/ }
Chris Lattner2a632552002-04-18 15:13:15 +0000246
Chris Lattner7e708292002-06-25 16:13:24 +0000247 void visitInstruction(Instruction &I) {
Chris Lattner2a632552002-04-18 15:13:15 +0000248 // If a new instruction is added to LLVM that we don't handle...
Chris Lattner9de28282003-04-25 02:50:03 +0000249 std::cerr << "SCCP: Don't know how to handle: " << I;
Chris Lattner7e708292002-06-25 16:13:24 +0000250 markOverdefined(&I); // Just in case
Chris Lattner2a632552002-04-18 15:13:15 +0000251 }
Chris Lattnercb056de2001-06-29 23:56:23 +0000252
Chris Lattnerb9a66342002-05-02 21:44:00 +0000253 // getFeasibleSuccessors - Return a vector of booleans to indicate which
254 // successors are reachable from a given terminator instruction.
255 //
Chris Lattner7e708292002-06-25 16:13:24 +0000256 void getFeasibleSuccessors(TerminatorInst &TI, std::vector<bool> &Succs);
Chris Lattnerb9a66342002-05-02 21:44:00 +0000257
Chris Lattner59f0ce22002-05-02 21:18:01 +0000258 // isEdgeFeasible - Return true if the control flow edge from the 'From' basic
259 // block to the 'To' basic block is currently feasible...
260 //
261 bool isEdgeFeasible(BasicBlock *From, BasicBlock *To);
262
Chris Lattnercb056de2001-06-29 23:56:23 +0000263 // OperandChangedState - This method is invoked on all of the users of an
264 // instruction that was just changed state somehow.... Based on this
265 // information, we need to update the specified user of this instruction.
266 //
Chris Lattner59f0ce22002-05-02 21:18:01 +0000267 void OperandChangedState(User *U) {
268 // Only instructions use other variable values!
Chris Lattner7e708292002-06-25 16:13:24 +0000269 Instruction &I = cast<Instruction>(*U);
Chris Lattner9de28282003-04-25 02:50:03 +0000270 if (BBExecutable.count(I.getParent())) // Inst is executable?
271 visit(I);
Chris Lattner59f0ce22002-05-02 21:18:01 +0000272 }
Chris Lattnercb056de2001-06-29 23:56:23 +0000273};
Chris Lattnerf6293092002-07-23 18:06:35 +0000274
Chris Lattner9de28282003-04-25 02:50:03 +0000275 RegisterOpt<SCCP> X("sccp", "Sparse Conditional Constant Propagation");
Chris Lattner0dbfc052002-04-29 21:26:08 +0000276} // end anonymous namespace
277
278
279// createSCCPPass - This is the public interface to this file...
Chris Lattner4b501562004-09-20 04:43:15 +0000280FunctionPass *llvm::createSCCPPass() {
Chris Lattner0dbfc052002-04-29 21:26:08 +0000281 return new SCCP();
282}
283
Chris Lattner138a1242001-06-27 23:38:11 +0000284
Chris Lattner138a1242001-06-27 23:38:11 +0000285//===----------------------------------------------------------------------===//
286// SCCP Class Implementation
287
288
Misha Brukman82c89b92003-05-20 21:01:22 +0000289// runOnFunction() - Run the Sparse Conditional Constant Propagation algorithm,
Chris Lattner0dbfc052002-04-29 21:26:08 +0000290// and return true if the function was modified.
Chris Lattner138a1242001-06-27 23:38:11 +0000291//
Chris Lattner7e708292002-06-25 16:13:24 +0000292bool SCCP::runOnFunction(Function &F) {
Chris Lattnerf57b8452002-04-27 06:56:12 +0000293 // Mark the first block of the function as being executable...
Chris Lattner16b18fd2003-10-08 16:55:34 +0000294 BBExecutable.insert(F.begin()); // Basic block is executable!
295 BBWorkList.push_back(F.begin()); // Add the block to the work list!
Chris Lattner138a1242001-06-27 23:38:11 +0000296
Chris Lattner80b2d6c2004-07-15 23:36:43 +0000297 // Process the work lists until they are empty!
298 while (!BBWorkList.empty() || !InstWorkList.empty() ||
299 !OverdefinedInstWorkList.empty()) {
300 // Process the instruction work list...
301 while (!OverdefinedInstWorkList.empty()) {
302 Instruction *I = OverdefinedInstWorkList.back();
303 OverdefinedInstWorkList.pop_back();
304
305 DEBUG(std::cerr << "\nPopped off OI-WL: " << I);
306
307 // "I" got into the work list because it either made the transition from
308 // bottom to constant
309 //
310 // Anything on this worklist that is overdefined need not be visited
311 // since all of its users will have already been marked as overdefined
312 // Update all of the users of this instruction's value...
313 //
314 for_each(I->use_begin(), I->use_end(),
315 bind_obj(this, &SCCP::OperandChangedState));
316 }
Chris Lattner138a1242001-06-27 23:38:11 +0000317 // Process the instruction work list...
318 while (!InstWorkList.empty()) {
Chris Lattner071d0ad2002-05-07 04:29:32 +0000319 Instruction *I = InstWorkList.back();
320 InstWorkList.pop_back();
Chris Lattner138a1242001-06-27 23:38:11 +0000321
Chris Lattner2fc12302004-07-15 01:50:47 +0000322 DEBUG(std::cerr << "\nPopped off I-WL: " << *I);
Chris Lattner138a1242001-06-27 23:38:11 +0000323
324 // "I" got into the work list because it either made the transition from
Chris Lattner80b2d6c2004-07-15 23:36:43 +0000325 // bottom to constant
Chris Lattner138a1242001-06-27 23:38:11 +0000326 //
Chris Lattner80b2d6c2004-07-15 23:36:43 +0000327 // Anything on this worklist that is overdefined need not be visited
328 // since all of its users will have already been marked as overdefined.
Chris Lattner138a1242001-06-27 23:38:11 +0000329 // Update all of the users of this instruction's value...
330 //
Chris Lattner80b2d6c2004-07-15 23:36:43 +0000331 InstVal &Ival = getValueState (I);
332 if (!Ival.isOverdefined())
333 for_each(I->use_begin(), I->use_end(),
334 bind_obj(this, &SCCP::OperandChangedState));
Chris Lattner138a1242001-06-27 23:38:11 +0000335 }
336
337 // Process the basic block work list...
338 while (!BBWorkList.empty()) {
339 BasicBlock *BB = BBWorkList.back();
340 BBWorkList.pop_back();
341
Chris Lattner2fc12302004-07-15 01:50:47 +0000342 DEBUG(std::cerr << "\nPopped off BBWL: " << *BB);
Chris Lattner138a1242001-06-27 23:38:11 +0000343
Chris Lattner2a632552002-04-18 15:13:15 +0000344 // Notify all instructions in this basic block that they are newly
345 // executable.
346 visit(BB);
Chris Lattner138a1242001-06-27 23:38:11 +0000347 }
348 }
349
Chris Lattnerdd278272004-10-09 19:30:36 +0000350 DEBUG(for (Function::iterator I = F.begin(), E = F.end(); I != E; ++I)
351 if (!BBExecutable.count(I))
352 std::cerr << "BasicBlock Dead:" << *I);
Chris Lattner138a1242001-06-27 23:38:11 +0000353
Chris Lattnerf57b8452002-04-27 06:56:12 +0000354 // Iterate over all of the instructions in a function, replacing them with
Chris Lattner138a1242001-06-27 23:38:11 +0000355 // constants if we have found them to be of constant values.
356 //
357 bool MadeChanges = false;
Chris Lattner7e708292002-06-25 16:13:24 +0000358 for (Function::iterator BB = F.begin(), BBE = F.end(); BB != BBE; ++BB)
Chris Lattner221d6882002-02-12 21:07:25 +0000359 for (BasicBlock::iterator BI = BB->begin(); BI != BB->end();) {
Chris Lattner7e708292002-06-25 16:13:24 +0000360 Instruction &Inst = *BI;
361 InstVal &IV = ValueState[&Inst];
Chris Lattner221d6882002-02-12 21:07:25 +0000362 if (IV.isConstant()) {
363 Constant *Const = IV.getConstant();
Chris Lattner2fc12302004-07-15 01:50:47 +0000364 DEBUG(std::cerr << "Constant: " << *Const << " = " << Inst);
Chris Lattner5b7d42b2001-11-26 18:57:38 +0000365
Chris Lattner221d6882002-02-12 21:07:25 +0000366 // Replaces all of the uses of a variable with uses of the constant.
Chris Lattner7e708292002-06-25 16:13:24 +0000367 Inst.replaceAllUsesWith(Const);
Chris Lattner138a1242001-06-27 23:38:11 +0000368
Chris Lattner0e9c5152002-05-02 20:32:51 +0000369 // Remove the operator from the list of definitions... and delete it.
Chris Lattner7e708292002-06-25 16:13:24 +0000370 BI = BB->getInstList().erase(BI);
Chris Lattner138a1242001-06-27 23:38:11 +0000371
Chris Lattner221d6882002-02-12 21:07:25 +0000372 // Hey, we just changed something!
373 MadeChanges = true;
Chris Lattner3dec1f22002-05-10 15:38:35 +0000374 ++NumInstRemoved;
Chris Lattnerb9a66342002-05-02 21:44:00 +0000375 } else {
376 ++BI;
Chris Lattner221d6882002-02-12 21:07:25 +0000377 }
Chris Lattner138a1242001-06-27 23:38:11 +0000378 }
Chris Lattner138a1242001-06-27 23:38:11 +0000379
Chris Lattner59f0ce22002-05-02 21:18:01 +0000380 // Reset state so that the next invocation will have empty data structures
Chris Lattner0dbfc052002-04-29 21:26:08 +0000381 BBExecutable.clear();
382 ValueState.clear();
Chris Lattner80b2d6c2004-07-15 23:36:43 +0000383 std::vector<Instruction*>().swap(OverdefinedInstWorkList);
Chris Lattneraf663462002-11-04 02:54:22 +0000384 std::vector<Instruction*>().swap(InstWorkList);
385 std::vector<BasicBlock*>().swap(BBWorkList);
Chris Lattner0dbfc052002-04-29 21:26:08 +0000386
Chris Lattnerb70d82f2001-09-07 16:43:22 +0000387 return MadeChanges;
Chris Lattner138a1242001-06-27 23:38:11 +0000388}
389
Chris Lattnerb9a66342002-05-02 21:44:00 +0000390
391// getFeasibleSuccessors - Return a vector of booleans to indicate which
392// successors are reachable from a given terminator instruction.
393//
Chris Lattner7e708292002-06-25 16:13:24 +0000394void SCCP::getFeasibleSuccessors(TerminatorInst &TI, std::vector<bool> &Succs) {
Chris Lattner9de28282003-04-25 02:50:03 +0000395 Succs.resize(TI.getNumSuccessors());
Chris Lattner7e708292002-06-25 16:13:24 +0000396 if (BranchInst *BI = dyn_cast<BranchInst>(&TI)) {
Chris Lattnerb9a66342002-05-02 21:44:00 +0000397 if (BI->isUnconditional()) {
398 Succs[0] = true;
399 } else {
400 InstVal &BCValue = getValueState(BI->getCondition());
Chris Lattner84831642004-01-12 17:40:36 +0000401 if (BCValue.isOverdefined() ||
402 (BCValue.isConstant() && !isa<ConstantBool>(BCValue.getConstant()))) {
403 // Overdefined condition variables, and branches on unfoldable constant
404 // conditions, mean the branch could go either way.
Chris Lattnerb9a66342002-05-02 21:44:00 +0000405 Succs[0] = Succs[1] = true;
406 } else if (BCValue.isConstant()) {
407 // Constant condition variables mean the branch can only go a single way
408 Succs[BCValue.getConstant() == ConstantBool::False] = true;
409 }
410 }
Chris Lattner7e708292002-06-25 16:13:24 +0000411 } else if (InvokeInst *II = dyn_cast<InvokeInst>(&TI)) {
Chris Lattnerb9a66342002-05-02 21:44:00 +0000412 // Invoke instructions successors are always executable.
413 Succs[0] = Succs[1] = true;
Chris Lattner7e708292002-06-25 16:13:24 +0000414 } else if (SwitchInst *SI = dyn_cast<SwitchInst>(&TI)) {
Chris Lattnerb9a66342002-05-02 21:44:00 +0000415 InstVal &SCValue = getValueState(SI->getCondition());
Chris Lattner84831642004-01-12 17:40:36 +0000416 if (SCValue.isOverdefined() || // Overdefined condition?
417 (SCValue.isConstant() && !isa<ConstantInt>(SCValue.getConstant()))) {
Chris Lattnerb9a66342002-05-02 21:44:00 +0000418 // All destinations are executable!
Chris Lattner7e708292002-06-25 16:13:24 +0000419 Succs.assign(TI.getNumSuccessors(), true);
Chris Lattnerb9a66342002-05-02 21:44:00 +0000420 } 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 right branch...
425 Succs[i] = true;
426 return;
427 }
428 }
429
430 // Constant value not equal to any of the branches... must execute
431 // default branch then...
432 Succs[0] = true;
433 }
434 } else {
Chris Lattner9de28282003-04-25 02:50:03 +0000435 std::cerr << "SCCP: Don't know how to handle: " << TI;
Chris Lattner7e708292002-06-25 16:13:24 +0000436 Succs.assign(TI.getNumSuccessors(), true);
Chris Lattnerb9a66342002-05-02 21:44:00 +0000437 }
438}
439
440
Chris Lattner59f0ce22002-05-02 21:18:01 +0000441// isEdgeFeasible - Return true if the control flow edge from the 'From' basic
442// block to the 'To' basic block is currently feasible...
443//
444bool SCCP::isEdgeFeasible(BasicBlock *From, BasicBlock *To) {
445 assert(BBExecutable.count(To) && "Dest should always be alive!");
446
447 // Make sure the source basic block is executable!!
448 if (!BBExecutable.count(From)) return false;
449
Chris Lattnerb9a66342002-05-02 21:44:00 +0000450 // Check to make sure this edge itself is actually feasible now...
Chris Lattner7d275f42003-10-08 15:47:41 +0000451 TerminatorInst *TI = From->getTerminator();
452 if (BranchInst *BI = dyn_cast<BranchInst>(TI)) {
453 if (BI->isUnconditional())
Chris Lattnerb9a66342002-05-02 21:44:00 +0000454 return true;
Chris Lattner7d275f42003-10-08 15:47:41 +0000455 else {
456 InstVal &BCValue = getValueState(BI->getCondition());
457 if (BCValue.isOverdefined()) {
458 // Overdefined condition variables mean the branch could go either way.
459 return true;
460 } else if (BCValue.isConstant()) {
Chris Lattner84831642004-01-12 17:40:36 +0000461 // Not branching on an evaluatable constant?
462 if (!isa<ConstantBool>(BCValue.getConstant())) return true;
463
Chris Lattner7d275f42003-10-08 15:47:41 +0000464 // Constant condition variables mean the branch can only go a single way
465 return BI->getSuccessor(BCValue.getConstant() ==
466 ConstantBool::False) == To;
467 }
468 return false;
469 }
470 } else if (InvokeInst *II = dyn_cast<InvokeInst>(TI)) {
471 // Invoke instructions successors are always executable.
472 return true;
473 } else if (SwitchInst *SI = dyn_cast<SwitchInst>(TI)) {
474 InstVal &SCValue = getValueState(SI->getCondition());
475 if (SCValue.isOverdefined()) { // Overdefined condition?
476 // All destinations are executable!
477 return true;
478 } else if (SCValue.isConstant()) {
479 Constant *CPV = SCValue.getConstant();
Chris Lattner84831642004-01-12 17:40:36 +0000480 if (!isa<ConstantInt>(CPV))
481 return true; // not a foldable constant?
482
Chris Lattner7d275f42003-10-08 15:47:41 +0000483 // Make sure to skip the "default value" which isn't a value
484 for (unsigned i = 1, E = SI->getNumSuccessors(); i != E; ++i)
485 if (SI->getSuccessorValue(i) == CPV) // Found the taken branch...
486 return SI->getSuccessor(i) == To;
487
488 // Constant value not equal to any of the branches... must execute
489 // default branch then...
490 return SI->getDefaultDest() == To;
491 }
492 return false;
493 } else {
494 std::cerr << "Unknown terminator instruction: " << *TI;
495 abort();
496 }
Chris Lattner59f0ce22002-05-02 21:18:01 +0000497}
Chris Lattner138a1242001-06-27 23:38:11 +0000498
Chris Lattner2a632552002-04-18 15:13:15 +0000499// visit Implementations - Something changed in this instruction... Either an
Chris Lattner138a1242001-06-27 23:38:11 +0000500// operand made a transition, or the instruction is newly executable. Change
501// the value type of I to reflect these changes if appropriate. This method
502// makes sure to do the following actions:
503//
504// 1. If a phi node merges two constants in, and has conflicting value coming
505// from different branches, or if the PHI node merges in an overdefined
506// value, then the PHI node becomes overdefined.
507// 2. If a phi node merges only constants in, and they all agree on value, the
508// PHI node becomes a constant value equal to that.
509// 3. If V <- x (op) y && isConstant(x) && isConstant(y) V = Constant
510// 4. If V <- x (op) y && (isOverdefined(x) || isOverdefined(y)) V = Overdefined
511// 5. If V <- MEM or V <- CALL or V <- (unknown) then V = Overdefined
512// 6. If a conditional branch has a value that is constant, make the selected
513// destination executable
514// 7. If a conditional branch has a value that is overdefined, make all
515// successors executable.
516//
Chris Lattner7e708292002-06-25 16:13:24 +0000517void SCCP::visitPHINode(PHINode &PN) {
Chris Lattner3d405b02003-10-08 16:21:03 +0000518 InstVal &PNIV = getValueState(&PN);
Chris Lattner1daee8b2004-01-12 03:57:30 +0000519 if (PNIV.isOverdefined()) {
520 // There may be instructions using this PHI node that are not overdefined
521 // themselves. If so, make sure that they know that the PHI node operand
522 // changed.
523 std::multimap<PHINode*, Instruction*>::iterator I, E;
524 tie(I, E) = UsersOfOverdefinedPHIs.equal_range(&PN);
525 if (I != E) {
526 std::vector<Instruction*> Users;
527 Users.reserve(std::distance(I, E));
528 for (; I != E; ++I) Users.push_back(I->second);
529 while (!Users.empty()) {
530 visit(Users.back());
531 Users.pop_back();
532 }
533 }
534 return; // Quick exit
535 }
Chris Lattner138a1242001-06-27 23:38:11 +0000536
Chris Lattnera2f652d2004-03-16 19:49:59 +0000537 // Super-extra-high-degree PHI nodes are unlikely to ever be marked constant,
538 // and slow us down a lot. Just mark them overdefined.
539 if (PN.getNumIncomingValues() > 64) {
540 markOverdefined(PNIV, &PN);
541 return;
542 }
543
Chris Lattner2a632552002-04-18 15:13:15 +0000544 // Look at all of the executable operands of the PHI node. If any of them
545 // are overdefined, the PHI becomes overdefined as well. If they are all
546 // constant, and they agree with each other, the PHI becomes the identical
547 // constant. If they are constant and don't agree, the PHI is overdefined.
548 // If there are no executable operands, the PHI remains undefined.
549 //
Chris Lattner9de28282003-04-25 02:50:03 +0000550 Constant *OperandVal = 0;
551 for (unsigned i = 0, e = PN.getNumIncomingValues(); i != e; ++i) {
552 InstVal &IV = getValueState(PN.getIncomingValue(i));
553 if (IV.isUndefined()) continue; // Doesn't influence PHI node.
Chris Lattner9de28282003-04-25 02:50:03 +0000554
Chris Lattner7e708292002-06-25 16:13:24 +0000555 if (isEdgeFeasible(PN.getIncomingBlock(i), PN.getParent())) {
Chris Lattner38b5ae42003-06-24 20:29:52 +0000556 if (IV.isOverdefined()) { // PHI node becomes overdefined!
Chris Lattner3d405b02003-10-08 16:21:03 +0000557 markOverdefined(PNIV, &PN);
Chris Lattner38b5ae42003-06-24 20:29:52 +0000558 return;
559 }
560
Chris Lattner9de28282003-04-25 02:50:03 +0000561 if (OperandVal == 0) { // Grab the first value...
562 OperandVal = IV.getConstant();
Chris Lattner2a632552002-04-18 15:13:15 +0000563 } else { // Another value is being merged in!
564 // There is already a reachable operand. If we conflict with it,
565 // then the PHI node becomes overdefined. If we agree with it, we
566 // can continue on.
Chris Lattner9de28282003-04-25 02:50:03 +0000567
Chris Lattner2a632552002-04-18 15:13:15 +0000568 // Check to see if there are two different constants merging...
Chris Lattner9de28282003-04-25 02:50:03 +0000569 if (IV.getConstant() != OperandVal) {
Chris Lattner2a632552002-04-18 15:13:15 +0000570 // Yes there is. This means the PHI node is not constant.
571 // You must be overdefined poor PHI.
572 //
Chris Lattner3d405b02003-10-08 16:21:03 +0000573 markOverdefined(PNIV, &PN); // The PHI node now becomes overdefined
Chris Lattner2a632552002-04-18 15:13:15 +0000574 return; // I'm done analyzing you
Chris Lattner5b7d42b2001-11-26 18:57:38 +0000575 }
Chris Lattner138a1242001-06-27 23:38:11 +0000576 }
577 }
Chris Lattner138a1242001-06-27 23:38:11 +0000578 }
579
Chris Lattner2a632552002-04-18 15:13:15 +0000580 // If we exited the loop, this means that the PHI node only has constant
Chris Lattner9de28282003-04-25 02:50:03 +0000581 // arguments that agree with each other(and OperandVal is the constant) or
582 // OperandVal is null because there are no defined incoming arguments. If
583 // this is the case, the PHI remains undefined.
Chris Lattner138a1242001-06-27 23:38:11 +0000584 //
Chris Lattner9de28282003-04-25 02:50:03 +0000585 if (OperandVal)
Misha Brukmancf00c4a2003-10-10 17:57:28 +0000586 markConstant(PNIV, &PN, OperandVal); // Acquire operand value
Chris Lattner138a1242001-06-27 23:38:11 +0000587}
588
Chris Lattner7e708292002-06-25 16:13:24 +0000589void SCCP::visitTerminatorInst(TerminatorInst &TI) {
Chris Lattner9de28282003-04-25 02:50:03 +0000590 std::vector<bool> SuccFeasible;
Chris Lattnerb9a66342002-05-02 21:44:00 +0000591 getFeasibleSuccessors(TI, SuccFeasible);
Chris Lattner138a1242001-06-27 23:38:11 +0000592
Chris Lattner16b18fd2003-10-08 16:55:34 +0000593 BasicBlock *BB = TI.getParent();
594
Chris Lattnerb9a66342002-05-02 21:44:00 +0000595 // Mark all feasible successors executable...
596 for (unsigned i = 0, e = SuccFeasible.size(); i != e; ++i)
Chris Lattner16b18fd2003-10-08 16:55:34 +0000597 if (SuccFeasible[i])
598 markEdgeExecutable(BB, TI.getSuccessor(i));
Chris Lattner2a632552002-04-18 15:13:15 +0000599}
600
Chris Lattnerb8047602002-08-14 17:53:45 +0000601void SCCP::visitCastInst(CastInst &I) {
Chris Lattner7e708292002-06-25 16:13:24 +0000602 Value *V = I.getOperand(0);
Chris Lattner2a632552002-04-18 15:13:15 +0000603 InstVal &VState = getValueState(V);
Chris Lattnerb7a5d3e2004-01-12 17:43:40 +0000604 if (VState.isOverdefined()) // Inherit overdefinedness of operand
Chris Lattner7e708292002-06-25 16:13:24 +0000605 markOverdefined(&I);
Chris Lattnerb7a5d3e2004-01-12 17:43:40 +0000606 else if (VState.isConstant()) // Propagate constant value
607 markConstant(&I, ConstantExpr::getCast(VState.getConstant(), I.getType()));
Chris Lattner2a632552002-04-18 15:13:15 +0000608}
609
Chris Lattner6e323722004-03-12 05:52:44 +0000610void SCCP::visitSelectInst(SelectInst &I) {
611 InstVal &CondValue = getValueState(I.getCondition());
612 if (CondValue.isOverdefined())
613 markOverdefined(&I);
614 else if (CondValue.isConstant()) {
615 if (CondValue.getConstant() == ConstantBool::True) {
616 InstVal &Val = getValueState(I.getTrueValue());
617 if (Val.isOverdefined())
618 markOverdefined(&I);
619 else if (Val.isConstant())
620 markConstant(&I, Val.getConstant());
621 } else if (CondValue.getConstant() == ConstantBool::False) {
622 InstVal &Val = getValueState(I.getFalseValue());
623 if (Val.isOverdefined())
624 markOverdefined(&I);
625 else if (Val.isConstant())
626 markConstant(&I, Val.getConstant());
627 } else
628 markOverdefined(&I);
629 }
630}
631
Chris Lattner2a632552002-04-18 15:13:15 +0000632// Handle BinaryOperators and Shift Instructions...
Chris Lattner7e708292002-06-25 16:13:24 +0000633void SCCP::visitBinaryOperator(Instruction &I) {
Chris Lattner1daee8b2004-01-12 03:57:30 +0000634 InstVal &IV = ValueState[&I];
635 if (IV.isOverdefined()) return;
636
Chris Lattner7e708292002-06-25 16:13:24 +0000637 InstVal &V1State = getValueState(I.getOperand(0));
638 InstVal &V2State = getValueState(I.getOperand(1));
Chris Lattner1daee8b2004-01-12 03:57:30 +0000639
Chris Lattner2a632552002-04-18 15:13:15 +0000640 if (V1State.isOverdefined() || V2State.isOverdefined()) {
Chris Lattner1daee8b2004-01-12 03:57:30 +0000641 // If both operands are PHI nodes, it is possible that this instruction has
642 // a constant value, despite the fact that the PHI node doesn't. Check for
643 // this condition now.
644 if (PHINode *PN1 = dyn_cast<PHINode>(I.getOperand(0)))
645 if (PHINode *PN2 = dyn_cast<PHINode>(I.getOperand(1)))
646 if (PN1->getParent() == PN2->getParent()) {
647 // Since the two PHI nodes are in the same basic block, they must have
648 // entries for the same predecessors. Walk the predecessor list, and
649 // if all of the incoming values are constants, and the result of
650 // evaluating this expression with all incoming value pairs is the
651 // same, then this expression is a constant even though the PHI node
652 // is not a constant!
653 InstVal Result;
654 for (unsigned i = 0, e = PN1->getNumIncomingValues(); i != e; ++i) {
655 InstVal &In1 = getValueState(PN1->getIncomingValue(i));
656 BasicBlock *InBlock = PN1->getIncomingBlock(i);
657 InstVal &In2 =getValueState(PN2->getIncomingValueForBlock(InBlock));
658
659 if (In1.isOverdefined() || In2.isOverdefined()) {
660 Result.markOverdefined();
661 break; // Cannot fold this operation over the PHI nodes!
662 } else if (In1.isConstant() && In2.isConstant()) {
Chris Lattnerb16689b2004-01-12 19:08:43 +0000663 Constant *V = ConstantExpr::get(I.getOpcode(), In1.getConstant(),
664 In2.getConstant());
Chris Lattner1daee8b2004-01-12 03:57:30 +0000665 if (Result.isUndefined())
Chris Lattnerb16689b2004-01-12 19:08:43 +0000666 Result.markConstant(V);
667 else if (Result.isConstant() && Result.getConstant() != V) {
Chris Lattner1daee8b2004-01-12 03:57:30 +0000668 Result.markOverdefined();
669 break;
670 }
671 }
672 }
673
674 // If we found a constant value here, then we know the instruction is
675 // constant despite the fact that the PHI nodes are overdefined.
676 if (Result.isConstant()) {
677 markConstant(IV, &I, Result.getConstant());
678 // Remember that this instruction is virtually using the PHI node
679 // operands.
680 UsersOfOverdefinedPHIs.insert(std::make_pair(PN1, &I));
681 UsersOfOverdefinedPHIs.insert(std::make_pair(PN2, &I));
682 return;
683 } else if (Result.isUndefined()) {
684 return;
685 }
686
687 // Okay, this really is overdefined now. Since we might have
688 // speculatively thought that this was not overdefined before, and
689 // added ourselves to the UsersOfOverdefinedPHIs list for the PHIs,
690 // make sure to clean out any entries that we put there, for
691 // efficiency.
692 std::multimap<PHINode*, Instruction*>::iterator It, E;
693 tie(It, E) = UsersOfOverdefinedPHIs.equal_range(PN1);
694 while (It != E) {
695 if (It->second == &I) {
696 UsersOfOverdefinedPHIs.erase(It++);
697 } else
698 ++It;
699 }
700 tie(It, E) = UsersOfOverdefinedPHIs.equal_range(PN2);
701 while (It != E) {
702 if (It->second == &I) {
703 UsersOfOverdefinedPHIs.erase(It++);
704 } else
705 ++It;
706 }
707 }
708
709 markOverdefined(IV, &I);
Chris Lattner2a632552002-04-18 15:13:15 +0000710 } else if (V1State.isConstant() && V2State.isConstant()) {
Chris Lattnerb16689b2004-01-12 19:08:43 +0000711 markConstant(IV, &I, ConstantExpr::get(I.getOpcode(), V1State.getConstant(),
712 V2State.getConstant()));
Chris Lattner2a632552002-04-18 15:13:15 +0000713 }
714}
Chris Lattner2a88bb72002-08-30 23:39:00 +0000715
716// Handle getelementptr instructions... if all operands are constants then we
717// can turn this into a getelementptr ConstantExpr.
718//
719void SCCP::visitGetElementPtrInst(GetElementPtrInst &I) {
Chris Lattnerc6a4d6a2004-01-12 04:29:41 +0000720 InstVal &IV = ValueState[&I];
721 if (IV.isOverdefined()) return;
722
Chris Lattner2a88bb72002-08-30 23:39:00 +0000723 std::vector<Constant*> Operands;
724 Operands.reserve(I.getNumOperands());
725
726 for (unsigned i = 0, e = I.getNumOperands(); i != e; ++i) {
727 InstVal &State = getValueState(I.getOperand(i));
728 if (State.isUndefined())
729 return; // Operands are not resolved yet...
730 else if (State.isOverdefined()) {
Chris Lattnerc6a4d6a2004-01-12 04:29:41 +0000731 markOverdefined(IV, &I);
Chris Lattner2a88bb72002-08-30 23:39:00 +0000732 return;
733 }
734 assert(State.isConstant() && "Unknown state!");
735 Operands.push_back(State.getConstant());
736 }
737
738 Constant *Ptr = Operands[0];
739 Operands.erase(Operands.begin()); // Erase the pointer from idx list...
740
Chris Lattnerc6a4d6a2004-01-12 04:29:41 +0000741 markConstant(IV, &I, ConstantExpr::getGetElementPtr(Ptr, Operands));
Chris Lattner2a88bb72002-08-30 23:39:00 +0000742}
Brian Gaeked0fde302003-11-11 22:41:34 +0000743
Chris Lattnerc6a4d6a2004-01-12 04:29:41 +0000744/// GetGEPGlobalInitializer - Given a constant and a getelementptr constantexpr,
745/// return the constant value being addressed by the constant expression, or
746/// null if something is funny.
747///
748static Constant *GetGEPGlobalInitializer(Constant *C, ConstantExpr *CE) {
Chris Lattner28977af2004-04-05 01:30:19 +0000749 if (CE->getOperand(1) != Constant::getNullValue(CE->getOperand(1)->getType()))
Chris Lattnerc6a4d6a2004-01-12 04:29:41 +0000750 return 0; // Do not allow stepping over the value!
751
752 // Loop over all of the operands, tracking down which value we are
753 // addressing...
754 for (unsigned i = 2, e = CE->getNumOperands(); i != e; ++i)
755 if (ConstantUInt *CU = dyn_cast<ConstantUInt>(CE->getOperand(i))) {
Chris Lattnerde512b52004-02-15 05:55:15 +0000756 ConstantStruct *CS = dyn_cast<ConstantStruct>(C);
757 if (CS == 0) return 0;
Alkis Evlogimenos15876bb2004-08-04 08:44:43 +0000758 if (CU->getValue() >= CS->getNumOperands()) return 0;
759 C = CS->getOperand(CU->getValue());
Chris Lattnerc6a4d6a2004-01-12 04:29:41 +0000760 } else if (ConstantSInt *CS = dyn_cast<ConstantSInt>(CE->getOperand(i))) {
Chris Lattnerde512b52004-02-15 05:55:15 +0000761 ConstantArray *CA = dyn_cast<ConstantArray>(C);
762 if (CA == 0) return 0;
Alkis Evlogimenos15876bb2004-08-04 08:44:43 +0000763 if ((uint64_t)CS->getValue() >= CA->getNumOperands()) return 0;
764 C = CA->getOperand(CS->getValue());
Chris Lattnerde512b52004-02-15 05:55:15 +0000765 } else
Chris Lattnerc6a4d6a2004-01-12 04:29:41 +0000766 return 0;
767 return C;
768}
769
770// Handle load instructions. If the operand is a constant pointer to a constant
771// global, we can replace the load with the loaded constant value!
772void SCCP::visitLoadInst(LoadInst &I) {
773 InstVal &IV = ValueState[&I];
774 if (IV.isOverdefined()) return;
775
776 InstVal &PtrVal = getValueState(I.getOperand(0));
777 if (PtrVal.isUndefined()) return; // The pointer is not resolved yet!
778 if (PtrVal.isConstant() && !I.isVolatile()) {
779 Value *Ptr = PtrVal.getConstant();
Chris Lattnerc76d8032004-03-07 22:16:24 +0000780 if (isa<ConstantPointerNull>(Ptr)) {
781 // load null -> null
782 markConstant(IV, &I, Constant::getNullValue(I.getType()));
783 return;
784 }
785
Chris Lattnerc6a4d6a2004-01-12 04:29:41 +0000786 // Transform load (constant global) into the value loaded.
787 if (GlobalVariable *GV = dyn_cast<GlobalVariable>(Ptr))
788 if (GV->isConstant() && !GV->isExternal()) {
789 markConstant(IV, &I, GV->getInitializer());
790 return;
791 }
792
793 // Transform load (constantexpr_GEP global, 0, ...) into the value loaded.
794 if (ConstantExpr *CE = dyn_cast<ConstantExpr>(Ptr))
795 if (CE->getOpcode() == Instruction::GetElementPtr)
Reid Spencer21cb67e2004-07-18 00:31:05 +0000796 if (GlobalVariable *GV = dyn_cast<GlobalVariable>(CE->getOperand(0)))
797 if (GV->isConstant() && !GV->isExternal())
798 if (Constant *V =
799 GetGEPGlobalInitializer(GV->getInitializer(), CE)) {
800 markConstant(IV, &I, V);
801 return;
802 }
Chris Lattnerc6a4d6a2004-01-12 04:29:41 +0000803 }
804
805 // Otherwise we cannot say for certain what value this load will produce.
806 // Bail out.
807 markOverdefined(IV, &I);
808}
Chris Lattner58b7b082004-04-13 19:43:54 +0000809
810void SCCP::visitCallInst(CallInst &I) {
811 InstVal &IV = ValueState[&I];
812 if (IV.isOverdefined()) return;
813
814 Function *F = I.getCalledFunction();
815 if (F == 0 || !canConstantFoldCallTo(F)) {
816 markOverdefined(IV, &I);
817 return;
818 }
819
820 std::vector<Constant*> Operands;
821 Operands.reserve(I.getNumOperands()-1);
822
823 for (unsigned i = 1, e = I.getNumOperands(); i != e; ++i) {
824 InstVal &State = getValueState(I.getOperand(i));
825 if (State.isUndefined())
826 return; // Operands are not resolved yet...
827 else if (State.isOverdefined()) {
828 markOverdefined(IV, &I);
829 return;
830 }
831 assert(State.isConstant() && "Unknown state!");
832 Operands.push_back(State.getConstant());
833 }
834
835 if (Constant *C = ConstantFoldCall(F, Operands))
836 markConstant(IV, &I, C);
837 else
838 markOverdefined(IV, &I);
839}