blob: cc0541284305fdf58237a397d51063a9162d488b [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 Lattneref36dfd2004-11-15 05:03:30 +000024#define DEBUG_TYPE "sccp"
Chris Lattner022103b2002-05-07 20:03:00 +000025#include "llvm/Transforms/Scalar.h"
Chris Lattner59acc7d2004-12-10 08:02:06 +000026#include "llvm/Transforms/IPO.h"
Chris Lattnerb7a5d3e2004-01-12 17:43:40 +000027#include "llvm/Constants.h"
Chris Lattnerdd336d12004-12-11 05:15:59 +000028#include "llvm/DerivedTypes.h"
Chris Lattner9de28282003-04-25 02:50:03 +000029#include "llvm/Instructions.h"
Chris Lattnerbd0ef772002-02-26 21:46:54 +000030#include "llvm/Pass.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"
Chris Lattner59acc7d2004-12-10 08:02:06 +000033#include "llvm/Support/CallSite.h"
Reid Spencer551ccae2004-09-01 22:55:40 +000034#include "llvm/Support/Debug.h"
35#include "llvm/ADT/hash_map"
36#include "llvm/ADT/Statistic.h"
37#include "llvm/ADT/STLExtras.h"
Chris Lattner138a1242001-06-27 23:38:11 +000038#include <algorithm>
Chris Lattner138a1242001-06-27 23:38:11 +000039#include <set>
Chris Lattnerd7456022004-01-09 06:02:20 +000040using namespace llvm;
Brian Gaeked0fde302003-11-11 22:41:34 +000041
Chris Lattneref36dfd2004-11-15 05:03:30 +000042// LatticeVal class - This class represents the different lattice values that an
Chris Lattnerf57b8452002-04-27 06:56:12 +000043// instruction may occupy. It is a simple class with value semantics.
Chris Lattner138a1242001-06-27 23:38:11 +000044//
Chris Lattner0dbfc052002-04-29 21:26:08 +000045namespace {
Chris Lattnera92f6962002-10-01 22:38:41 +000046
Chris Lattneref36dfd2004-11-15 05:03:30 +000047class LatticeVal {
Chris Lattner138a1242001-06-27 23:38:11 +000048 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 Lattneref36dfd2004-11-15 05:03:30 +000055 inline LatticeVal() : 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//===----------------------------------------------------------------------===//
Chris Lattner138a1242001-06-27 23:38:11 +000092//
Chris Lattner82bec2c2004-11-15 04:44:20 +000093/// SCCPSolver - This class is a general purpose solver for Sparse Conditional
94/// Constant Propagation.
95///
96class SCCPSolver : public InstVisitor<SCCPSolver> {
Chris Lattner697954c2002-01-20 22:54:45 +000097 std::set<BasicBlock*> BBExecutable;// The basic blocks that are executable
Chris Lattneref36dfd2004-11-15 05:03:30 +000098 hash_map<Value*, LatticeVal> ValueState; // The state each value is in...
Chris Lattner138a1242001-06-27 23:38:11 +000099
Chris Lattnerdd336d12004-12-11 05:15:59 +0000100 /// GlobalValue - If we are tracking any values for the contents of a global
101 /// variable, we keep a mapping from the constant accessor to the element of
102 /// the global, to the currently known value. If the value becomes
103 /// overdefined, it's entry is simply removed from this map.
104 hash_map<GlobalVariable*, LatticeVal> TrackedGlobals;
105
Chris Lattner59acc7d2004-12-10 08:02:06 +0000106 /// TrackedFunctionRetVals - If we are tracking arguments into and the return
107 /// value out of a function, it will have an entry in this map, indicating
108 /// what the known return value for the function is.
109 hash_map<Function*, LatticeVal> TrackedFunctionRetVals;
110
Chris Lattner80b2d6c2004-07-15 23:36:43 +0000111 // The reason for two worklists is that overdefined is the lowest state
112 // on the lattice, and moving things to overdefined as fast as possible
113 // makes SCCP converge much faster.
114 // By having a separate worklist, we accomplish this because everything
115 // possibly overdefined will become overdefined at the soonest possible
116 // point.
Chris Lattner59acc7d2004-12-10 08:02:06 +0000117 std::vector<Value*> OverdefinedInstWorkList;
118 std::vector<Value*> InstWorkList;
Chris Lattner80b2d6c2004-07-15 23:36:43 +0000119
120
Chris Lattner697954c2002-01-20 22:54:45 +0000121 std::vector<BasicBlock*> BBWorkList; // The BasicBlock work list
Chris Lattner16b18fd2003-10-08 16:55:34 +0000122
Chris Lattner1daee8b2004-01-12 03:57:30 +0000123 /// UsersOfOverdefinedPHIs - Keep track of any users of PHI nodes that are not
124 /// overdefined, despite the fact that the PHI node is overdefined.
125 std::multimap<PHINode*, Instruction*> UsersOfOverdefinedPHIs;
126
Chris Lattner16b18fd2003-10-08 16:55:34 +0000127 /// KnownFeasibleEdges - Entries in this set are edges which have already had
128 /// PHI nodes retriggered.
129 typedef std::pair<BasicBlock*,BasicBlock*> Edge;
130 std::set<Edge> KnownFeasibleEdges;
Chris Lattner138a1242001-06-27 23:38:11 +0000131public:
132
Chris Lattner82bec2c2004-11-15 04:44:20 +0000133 /// MarkBlockExecutable - This method can be used by clients to mark all of
134 /// the blocks that are known to be intrinsically live in the processed unit.
135 void MarkBlockExecutable(BasicBlock *BB) {
136 DEBUG(std::cerr << "Marking Block Executable: " << BB->getName() << "\n");
137 BBExecutable.insert(BB); // Basic block is executable!
138 BBWorkList.push_back(BB); // Add the block to the work list!
Chris Lattner0dbfc052002-04-29 21:26:08 +0000139 }
140
Chris Lattnerdd336d12004-12-11 05:15:59 +0000141 /// TrackValueOfGlobalVariable - Clients can use this method to
Chris Lattner59acc7d2004-12-10 08:02:06 +0000142 /// inform the SCCPSolver that it should track loads and stores to the
143 /// specified global variable if it can. This is only legal to call if
144 /// performing Interprocedural SCCP.
Chris Lattnerdd336d12004-12-11 05:15:59 +0000145 void TrackValueOfGlobalVariable(GlobalVariable *GV) {
146 const Type *ElTy = GV->getType()->getElementType();
147 if (ElTy->isFirstClassType()) {
148 LatticeVal &IV = TrackedGlobals[GV];
149 if (!isa<UndefValue>(GV->getInitializer()))
150 IV.markConstant(GV->getInitializer());
151 }
152 }
Chris Lattner59acc7d2004-12-10 08:02:06 +0000153
154 /// AddTrackedFunction - If the SCCP solver is supposed to track calls into
155 /// and out of the specified function (which cannot have its address taken),
156 /// this method must be called.
157 void AddTrackedFunction(Function *F) {
158 assert(F->hasInternalLinkage() && "Can only track internal functions!");
159 // Add an entry, F -> undef.
160 TrackedFunctionRetVals[F];
161 }
162
Chris Lattner82bec2c2004-11-15 04:44:20 +0000163 /// Solve - Solve for constants and executable blocks.
164 ///
165 void Solve();
Chris Lattner138a1242001-06-27 23:38:11 +0000166
Chris Lattnerfc6ac502004-12-10 20:41:50 +0000167 /// ResolveBranchesIn - While solving the dataflow for a function, we assume
168 /// that branches on undef values cannot reach any of their successors.
169 /// However, this is not a safe assumption. After we solve dataflow, this
170 /// method should be use to handle this. If this returns true, the solver
171 /// should be rerun.
172 bool ResolveBranchesIn(Function &F);
173
Chris Lattner82bec2c2004-11-15 04:44:20 +0000174 /// getExecutableBlocks - Once we have solved for constants, return the set of
175 /// blocks that is known to be executable.
176 std::set<BasicBlock*> &getExecutableBlocks() {
177 return BBExecutable;
178 }
179
180 /// getValueMapping - Once we have solved for constants, return the mapping of
Chris Lattneref36dfd2004-11-15 05:03:30 +0000181 /// LLVM values to LatticeVals.
182 hash_map<Value*, LatticeVal> &getValueMapping() {
Chris Lattner82bec2c2004-11-15 04:44:20 +0000183 return ValueState;
184 }
185
Chris Lattner0417feb2004-12-11 02:53:57 +0000186 /// getTrackedFunctionRetVals - Get the inferred return value map.
187 ///
188 const hash_map<Function*, LatticeVal> &getTrackedFunctionRetVals() {
189 return TrackedFunctionRetVals;
190 }
191
Chris Lattnerdd336d12004-12-11 05:15:59 +0000192 /// getTrackedGlobals - Get and return the set of inferred initializers for
193 /// global variables.
194 const hash_map<GlobalVariable*, LatticeVal> &getTrackedGlobals() {
195 return TrackedGlobals;
196 }
197
Chris Lattner0417feb2004-12-11 02:53:57 +0000198
Chris Lattner138a1242001-06-27 23:38:11 +0000199private:
Chris Lattner80b2d6c2004-07-15 23:36:43 +0000200 // markConstant - Make a value be marked as "constant". If the value
Chris Lattner138a1242001-06-27 23:38:11 +0000201 // is not already a constant, add it to the instruction work list so that
202 // the users of the instruction are updated later.
203 //
Chris Lattner59acc7d2004-12-10 08:02:06 +0000204 inline void markConstant(LatticeVal &IV, Value *V, Constant *C) {
Chris Lattner3d405b02003-10-08 16:21:03 +0000205 if (IV.markConstant(C)) {
Chris Lattner59acc7d2004-12-10 08:02:06 +0000206 DEBUG(std::cerr << "markConstant: " << *C << ": " << *V);
207 InstWorkList.push_back(V);
Chris Lattner138a1242001-06-27 23:38:11 +0000208 }
Chris Lattner3d405b02003-10-08 16:21:03 +0000209 }
Chris Lattner59acc7d2004-12-10 08:02:06 +0000210 inline void markConstant(Value *V, Constant *C) {
211 markConstant(ValueState[V], V, C);
Chris Lattner138a1242001-06-27 23:38:11 +0000212 }
213
Chris Lattner80b2d6c2004-07-15 23:36:43 +0000214 // markOverdefined - Make a value be marked as "overdefined". If the
215 // value is not already overdefined, add it to the overdefined instruction
216 // work list so that the users of the instruction are updated later.
217
Chris Lattner59acc7d2004-12-10 08:02:06 +0000218 inline void markOverdefined(LatticeVal &IV, Value *V) {
Chris Lattner3d405b02003-10-08 16:21:03 +0000219 if (IV.markOverdefined()) {
Chris Lattnerdade2d22004-12-11 06:05:53 +0000220 DEBUG(std::cerr << "markOverdefined: ";
221 if (Function *F = dyn_cast<Function>(V))
222 std::cerr << "Function '" << F->getName() << "'\n";
223 else
224 std::cerr << *V);
Chris Lattner82bec2c2004-11-15 04:44:20 +0000225 // Only instructions go on the work list
Chris Lattner59acc7d2004-12-10 08:02:06 +0000226 OverdefinedInstWorkList.push_back(V);
Chris Lattner138a1242001-06-27 23:38:11 +0000227 }
Chris Lattner3d405b02003-10-08 16:21:03 +0000228 }
Chris Lattner59acc7d2004-12-10 08:02:06 +0000229 inline void markOverdefined(Value *V) {
230 markOverdefined(ValueState[V], V);
231 }
232
233 inline void mergeInValue(LatticeVal &IV, Value *V, LatticeVal &MergeWithV) {
234 if (IV.isOverdefined() || MergeWithV.isUndefined())
235 return; // Noop.
236 if (MergeWithV.isOverdefined())
237 markOverdefined(IV, V);
238 else if (IV.isUndefined())
239 markConstant(IV, V, MergeWithV.getConstant());
240 else if (IV.getConstant() != MergeWithV.getConstant())
241 markOverdefined(IV, V);
Chris Lattner138a1242001-06-27 23:38:11 +0000242 }
243
Chris Lattneref36dfd2004-11-15 05:03:30 +0000244 // getValueState - Return the LatticeVal object that corresponds to the value.
Misha Brukman5560c9d2003-08-18 14:43:39 +0000245 // This function is necessary because not all values should start out in the
Chris Lattner73e21422002-04-09 19:48:49 +0000246 // underdefined state... Argument's should be overdefined, and
Chris Lattner79df7c02002-03-26 18:01:55 +0000247 // constants should be marked as constants. If a value is not known to be an
Chris Lattner138a1242001-06-27 23:38:11 +0000248 // Instruction object, then use this accessor to get its value from the map.
249 //
Chris Lattneref36dfd2004-11-15 05:03:30 +0000250 inline LatticeVal &getValueState(Value *V) {
251 hash_map<Value*, LatticeVal>::iterator I = ValueState.find(V);
Chris Lattner138a1242001-06-27 23:38:11 +0000252 if (I != ValueState.end()) return I->second; // Common case, in the map
Chris Lattner5d356a72004-10-16 18:09:41 +0000253
Chris Lattner7e529e42004-11-15 05:45:33 +0000254 if (Constant *CPV = dyn_cast<Constant>(V)) {
255 if (isa<UndefValue>(V)) {
256 // Nothing to do, remain undefined.
257 } else {
258 ValueState[CPV].markConstant(CPV); // Constants are constant
259 }
Chris Lattner2a88bb72002-08-30 23:39:00 +0000260 }
Chris Lattner138a1242001-06-27 23:38:11 +0000261 // All others are underdefined by default...
262 return ValueState[V];
263 }
264
Chris Lattner16b18fd2003-10-08 16:55:34 +0000265 // markEdgeExecutable - Mark a basic block as executable, adding it to the BB
Chris Lattner138a1242001-06-27 23:38:11 +0000266 // work list if it is not already executable...
267 //
Chris Lattner16b18fd2003-10-08 16:55:34 +0000268 void markEdgeExecutable(BasicBlock *Source, BasicBlock *Dest) {
269 if (!KnownFeasibleEdges.insert(Edge(Source, Dest)).second)
270 return; // This edge is already known to be executable!
271
272 if (BBExecutable.count(Dest)) {
273 DEBUG(std::cerr << "Marking Edge Executable: " << Source->getName()
274 << " -> " << Dest->getName() << "\n");
275
276 // The destination is already executable, but we just made an edge
Chris Lattner929c6fb2003-10-08 16:56:11 +0000277 // feasible that wasn't before. Revisit the PHI nodes in the block
278 // because they have potentially new operands.
Chris Lattner59acc7d2004-12-10 08:02:06 +0000279 for (BasicBlock::iterator I = Dest->begin(); isa<PHINode>(I); ++I)
280 visitPHINode(*cast<PHINode>(I));
Chris Lattner9de28282003-04-25 02:50:03 +0000281
282 } else {
Chris Lattner82bec2c2004-11-15 04:44:20 +0000283 MarkBlockExecutable(Dest);
Chris Lattner9de28282003-04-25 02:50:03 +0000284 }
Chris Lattner138a1242001-06-27 23:38:11 +0000285 }
286
Chris Lattner82bec2c2004-11-15 04:44:20 +0000287 // getFeasibleSuccessors - Return a vector of booleans to indicate which
288 // successors are reachable from a given terminator instruction.
289 //
290 void getFeasibleSuccessors(TerminatorInst &TI, std::vector<bool> &Succs);
291
292 // isEdgeFeasible - Return true if the control flow edge from the 'From' basic
293 // block to the 'To' basic block is currently feasible...
294 //
295 bool isEdgeFeasible(BasicBlock *From, BasicBlock *To);
296
297 // OperandChangedState - This method is invoked on all of the users of an
298 // instruction that was just changed state somehow.... Based on this
299 // information, we need to update the specified user of this instruction.
300 //
301 void OperandChangedState(User *U) {
302 // Only instructions use other variable values!
303 Instruction &I = cast<Instruction>(*U);
304 if (BBExecutable.count(I.getParent())) // Inst is executable?
305 visit(I);
306 }
307
308private:
309 friend class InstVisitor<SCCPSolver>;
Chris Lattner138a1242001-06-27 23:38:11 +0000310
Chris Lattner2a632552002-04-18 15:13:15 +0000311 // visit implementations - Something changed in this instruction... Either an
Chris Lattnercb056de2001-06-29 23:56:23 +0000312 // operand made a transition, or the instruction is newly executable. Change
313 // the value type of I to reflect these changes if appropriate.
314 //
Chris Lattner7e708292002-06-25 16:13:24 +0000315 void visitPHINode(PHINode &I);
Chris Lattner2a632552002-04-18 15:13:15 +0000316
317 // Terminators
Chris Lattner59acc7d2004-12-10 08:02:06 +0000318 void visitReturnInst(ReturnInst &I);
Chris Lattner7e708292002-06-25 16:13:24 +0000319 void visitTerminatorInst(TerminatorInst &TI);
Chris Lattner2a632552002-04-18 15:13:15 +0000320
Chris Lattnerb8047602002-08-14 17:53:45 +0000321 void visitCastInst(CastInst &I);
Chris Lattner6e323722004-03-12 05:52:44 +0000322 void visitSelectInst(SelectInst &I);
Chris Lattner7e708292002-06-25 16:13:24 +0000323 void visitBinaryOperator(Instruction &I);
324 void visitShiftInst(ShiftInst &I) { visitBinaryOperator(I); }
Chris Lattner2a632552002-04-18 15:13:15 +0000325
326 // Instructions that cannot be folded away...
Chris Lattnerdd336d12004-12-11 05:15:59 +0000327 void visitStoreInst (Instruction &I);
Chris Lattnerc6a4d6a2004-01-12 04:29:41 +0000328 void visitLoadInst (LoadInst &I);
Chris Lattner2a88bb72002-08-30 23:39:00 +0000329 void visitGetElementPtrInst(GetElementPtrInst &I);
Chris Lattner59acc7d2004-12-10 08:02:06 +0000330 void visitCallInst (CallInst &I) { visitCallSite(CallSite::get(&I)); }
331 void visitInvokeInst (InvokeInst &II) {
332 visitCallSite(CallSite::get(&II));
333 visitTerminatorInst(II);
Chris Lattner99b28e62003-08-27 01:08:35 +0000334 }
Chris Lattner59acc7d2004-12-10 08:02:06 +0000335 void visitCallSite (CallSite CS);
Chris Lattner36143fc2003-09-08 18:54:55 +0000336 void visitUnwindInst (TerminatorInst &I) { /*returns void*/ }
Chris Lattner5d356a72004-10-16 18:09:41 +0000337 void visitUnreachableInst(TerminatorInst &I) { /*returns void*/ }
Chris Lattner7e708292002-06-25 16:13:24 +0000338 void visitAllocationInst(Instruction &I) { markOverdefined(&I); }
Chris Lattnercda965e2003-10-18 05:56:52 +0000339 void visitVANextInst (Instruction &I) { markOverdefined(&I); }
340 void visitVAArgInst (Instruction &I) { markOverdefined(&I); }
Chris Lattner7e708292002-06-25 16:13:24 +0000341 void visitFreeInst (Instruction &I) { /*returns void*/ }
Chris Lattner2a632552002-04-18 15:13:15 +0000342
Chris Lattner7e708292002-06-25 16:13:24 +0000343 void visitInstruction(Instruction &I) {
Chris Lattner2a632552002-04-18 15:13:15 +0000344 // If a new instruction is added to LLVM that we don't handle...
Chris Lattner9de28282003-04-25 02:50:03 +0000345 std::cerr << "SCCP: Don't know how to handle: " << I;
Chris Lattner7e708292002-06-25 16:13:24 +0000346 markOverdefined(&I); // Just in case
Chris Lattner2a632552002-04-18 15:13:15 +0000347 }
Chris Lattnercb056de2001-06-29 23:56:23 +0000348};
Chris Lattnerf6293092002-07-23 18:06:35 +0000349
Chris Lattnerb9a66342002-05-02 21:44:00 +0000350// getFeasibleSuccessors - Return a vector of booleans to indicate which
351// successors are reachable from a given terminator instruction.
352//
Chris Lattner82bec2c2004-11-15 04:44:20 +0000353void SCCPSolver::getFeasibleSuccessors(TerminatorInst &TI,
354 std::vector<bool> &Succs) {
Chris Lattner9de28282003-04-25 02:50:03 +0000355 Succs.resize(TI.getNumSuccessors());
Chris Lattner7e708292002-06-25 16:13:24 +0000356 if (BranchInst *BI = dyn_cast<BranchInst>(&TI)) {
Chris Lattnerb9a66342002-05-02 21:44:00 +0000357 if (BI->isUnconditional()) {
358 Succs[0] = true;
359 } else {
Chris Lattneref36dfd2004-11-15 05:03:30 +0000360 LatticeVal &BCValue = getValueState(BI->getCondition());
Chris Lattner84831642004-01-12 17:40:36 +0000361 if (BCValue.isOverdefined() ||
362 (BCValue.isConstant() && !isa<ConstantBool>(BCValue.getConstant()))) {
363 // Overdefined condition variables, and branches on unfoldable constant
364 // conditions, mean the branch could go either way.
Chris Lattnerb9a66342002-05-02 21:44:00 +0000365 Succs[0] = Succs[1] = true;
366 } else if (BCValue.isConstant()) {
367 // Constant condition variables mean the branch can only go a single way
368 Succs[BCValue.getConstant() == ConstantBool::False] = true;
369 }
370 }
Chris Lattner7e708292002-06-25 16:13:24 +0000371 } else if (InvokeInst *II = dyn_cast<InvokeInst>(&TI)) {
Chris Lattnerb9a66342002-05-02 21:44:00 +0000372 // Invoke instructions successors are always executable.
373 Succs[0] = Succs[1] = true;
Chris Lattner7e708292002-06-25 16:13:24 +0000374 } else if (SwitchInst *SI = dyn_cast<SwitchInst>(&TI)) {
Chris Lattneref36dfd2004-11-15 05:03:30 +0000375 LatticeVal &SCValue = getValueState(SI->getCondition());
Chris Lattner84831642004-01-12 17:40:36 +0000376 if (SCValue.isOverdefined() || // Overdefined condition?
377 (SCValue.isConstant() && !isa<ConstantInt>(SCValue.getConstant()))) {
Chris Lattnerb9a66342002-05-02 21:44:00 +0000378 // All destinations are executable!
Chris Lattner7e708292002-06-25 16:13:24 +0000379 Succs.assign(TI.getNumSuccessors(), true);
Chris Lattnerb9a66342002-05-02 21:44:00 +0000380 } else if (SCValue.isConstant()) {
381 Constant *CPV = SCValue.getConstant();
382 // Make sure to skip the "default value" which isn't a value
383 for (unsigned i = 1, E = SI->getNumSuccessors(); i != E; ++i) {
384 if (SI->getSuccessorValue(i) == CPV) {// Found the right branch...
385 Succs[i] = true;
386 return;
387 }
388 }
389
390 // Constant value not equal to any of the branches... must execute
391 // default branch then...
392 Succs[0] = true;
393 }
394 } else {
Chris Lattner9de28282003-04-25 02:50:03 +0000395 std::cerr << "SCCP: Don't know how to handle: " << TI;
Chris Lattner7e708292002-06-25 16:13:24 +0000396 Succs.assign(TI.getNumSuccessors(), true);
Chris Lattnerb9a66342002-05-02 21:44:00 +0000397 }
398}
399
400
Chris Lattner59f0ce22002-05-02 21:18:01 +0000401// isEdgeFeasible - Return true if the control flow edge from the 'From' basic
402// block to the 'To' basic block is currently feasible...
403//
Chris Lattner82bec2c2004-11-15 04:44:20 +0000404bool SCCPSolver::isEdgeFeasible(BasicBlock *From, BasicBlock *To) {
Chris Lattner59f0ce22002-05-02 21:18:01 +0000405 assert(BBExecutable.count(To) && "Dest should always be alive!");
406
407 // Make sure the source basic block is executable!!
408 if (!BBExecutable.count(From)) return false;
409
Chris Lattnerb9a66342002-05-02 21:44:00 +0000410 // Check to make sure this edge itself is actually feasible now...
Chris Lattner7d275f42003-10-08 15:47:41 +0000411 TerminatorInst *TI = From->getTerminator();
412 if (BranchInst *BI = dyn_cast<BranchInst>(TI)) {
413 if (BI->isUnconditional())
Chris Lattnerb9a66342002-05-02 21:44:00 +0000414 return true;
Chris Lattner7d275f42003-10-08 15:47:41 +0000415 else {
Chris Lattneref36dfd2004-11-15 05:03:30 +0000416 LatticeVal &BCValue = getValueState(BI->getCondition());
Chris Lattner7d275f42003-10-08 15:47:41 +0000417 if (BCValue.isOverdefined()) {
418 // Overdefined condition variables mean the branch could go either way.
419 return true;
420 } else if (BCValue.isConstant()) {
Chris Lattner84831642004-01-12 17:40:36 +0000421 // Not branching on an evaluatable constant?
422 if (!isa<ConstantBool>(BCValue.getConstant())) return true;
423
Chris Lattner7d275f42003-10-08 15:47:41 +0000424 // Constant condition variables mean the branch can only go a single way
425 return BI->getSuccessor(BCValue.getConstant() ==
426 ConstantBool::False) == To;
427 }
428 return false;
429 }
430 } else if (InvokeInst *II = dyn_cast<InvokeInst>(TI)) {
431 // Invoke instructions successors are always executable.
432 return true;
433 } else if (SwitchInst *SI = dyn_cast<SwitchInst>(TI)) {
Chris Lattneref36dfd2004-11-15 05:03:30 +0000434 LatticeVal &SCValue = getValueState(SI->getCondition());
Chris Lattner7d275f42003-10-08 15:47:41 +0000435 if (SCValue.isOverdefined()) { // Overdefined condition?
436 // All destinations are executable!
437 return true;
438 } else if (SCValue.isConstant()) {
439 Constant *CPV = SCValue.getConstant();
Chris Lattner84831642004-01-12 17:40:36 +0000440 if (!isa<ConstantInt>(CPV))
441 return true; // not a foldable constant?
442
Chris Lattner7d275f42003-10-08 15:47:41 +0000443 // Make sure to skip the "default value" which isn't a value
444 for (unsigned i = 1, E = SI->getNumSuccessors(); i != E; ++i)
445 if (SI->getSuccessorValue(i) == CPV) // Found the taken branch...
446 return SI->getSuccessor(i) == To;
447
448 // Constant value not equal to any of the branches... must execute
449 // default branch then...
450 return SI->getDefaultDest() == To;
451 }
452 return false;
453 } else {
454 std::cerr << "Unknown terminator instruction: " << *TI;
455 abort();
456 }
Chris Lattner59f0ce22002-05-02 21:18:01 +0000457}
Chris Lattner138a1242001-06-27 23:38:11 +0000458
Chris Lattner2a632552002-04-18 15:13:15 +0000459// visit Implementations - Something changed in this instruction... Either an
Chris Lattner138a1242001-06-27 23:38:11 +0000460// operand made a transition, or the instruction is newly executable. Change
461// the value type of I to reflect these changes if appropriate. This method
462// makes sure to do the following actions:
463//
464// 1. If a phi node merges two constants in, and has conflicting value coming
465// from different branches, or if the PHI node merges in an overdefined
466// value, then the PHI node becomes overdefined.
467// 2. If a phi node merges only constants in, and they all agree on value, the
468// PHI node becomes a constant value equal to that.
469// 3. If V <- x (op) y && isConstant(x) && isConstant(y) V = Constant
470// 4. If V <- x (op) y && (isOverdefined(x) || isOverdefined(y)) V = Overdefined
471// 5. If V <- MEM or V <- CALL or V <- (unknown) then V = Overdefined
472// 6. If a conditional branch has a value that is constant, make the selected
473// destination executable
474// 7. If a conditional branch has a value that is overdefined, make all
475// successors executable.
476//
Chris Lattner82bec2c2004-11-15 04:44:20 +0000477void SCCPSolver::visitPHINode(PHINode &PN) {
Chris Lattneref36dfd2004-11-15 05:03:30 +0000478 LatticeVal &PNIV = getValueState(&PN);
Chris Lattner1daee8b2004-01-12 03:57:30 +0000479 if (PNIV.isOverdefined()) {
480 // There may be instructions using this PHI node that are not overdefined
481 // themselves. If so, make sure that they know that the PHI node operand
482 // changed.
483 std::multimap<PHINode*, Instruction*>::iterator I, E;
484 tie(I, E) = UsersOfOverdefinedPHIs.equal_range(&PN);
485 if (I != E) {
486 std::vector<Instruction*> Users;
487 Users.reserve(std::distance(I, E));
488 for (; I != E; ++I) Users.push_back(I->second);
489 while (!Users.empty()) {
490 visit(Users.back());
491 Users.pop_back();
492 }
493 }
494 return; // Quick exit
495 }
Chris Lattner138a1242001-06-27 23:38:11 +0000496
Chris Lattnera2f652d2004-03-16 19:49:59 +0000497 // Super-extra-high-degree PHI nodes are unlikely to ever be marked constant,
498 // and slow us down a lot. Just mark them overdefined.
499 if (PN.getNumIncomingValues() > 64) {
500 markOverdefined(PNIV, &PN);
501 return;
502 }
503
Chris Lattner2a632552002-04-18 15:13:15 +0000504 // Look at all of the executable operands of the PHI node. If any of them
505 // are overdefined, the PHI becomes overdefined as well. If they are all
506 // constant, and they agree with each other, the PHI becomes the identical
507 // constant. If they are constant and don't agree, the PHI is overdefined.
508 // If there are no executable operands, the PHI remains undefined.
509 //
Chris Lattner9de28282003-04-25 02:50:03 +0000510 Constant *OperandVal = 0;
511 for (unsigned i = 0, e = PN.getNumIncomingValues(); i != e; ++i) {
Chris Lattneref36dfd2004-11-15 05:03:30 +0000512 LatticeVal &IV = getValueState(PN.getIncomingValue(i));
Chris Lattner9de28282003-04-25 02:50:03 +0000513 if (IV.isUndefined()) continue; // Doesn't influence PHI node.
Chris Lattner9de28282003-04-25 02:50:03 +0000514
Chris Lattner7e708292002-06-25 16:13:24 +0000515 if (isEdgeFeasible(PN.getIncomingBlock(i), PN.getParent())) {
Chris Lattner38b5ae42003-06-24 20:29:52 +0000516 if (IV.isOverdefined()) { // PHI node becomes overdefined!
Chris Lattner3d405b02003-10-08 16:21:03 +0000517 markOverdefined(PNIV, &PN);
Chris Lattner38b5ae42003-06-24 20:29:52 +0000518 return;
519 }
520
Chris Lattner9de28282003-04-25 02:50:03 +0000521 if (OperandVal == 0) { // Grab the first value...
522 OperandVal = IV.getConstant();
Chris Lattner2a632552002-04-18 15:13:15 +0000523 } else { // Another value is being merged in!
524 // There is already a reachable operand. If we conflict with it,
525 // then the PHI node becomes overdefined. If we agree with it, we
526 // can continue on.
Chris Lattner9de28282003-04-25 02:50:03 +0000527
Chris Lattner2a632552002-04-18 15:13:15 +0000528 // Check to see if there are two different constants merging...
Chris Lattner9de28282003-04-25 02:50:03 +0000529 if (IV.getConstant() != OperandVal) {
Chris Lattner2a632552002-04-18 15:13:15 +0000530 // Yes there is. This means the PHI node is not constant.
531 // You must be overdefined poor PHI.
532 //
Chris Lattner3d405b02003-10-08 16:21:03 +0000533 markOverdefined(PNIV, &PN); // The PHI node now becomes overdefined
Chris Lattner2a632552002-04-18 15:13:15 +0000534 return; // I'm done analyzing you
Chris Lattner5b7d42b2001-11-26 18:57:38 +0000535 }
Chris Lattner138a1242001-06-27 23:38:11 +0000536 }
537 }
Chris Lattner138a1242001-06-27 23:38:11 +0000538 }
539
Chris Lattner2a632552002-04-18 15:13:15 +0000540 // If we exited the loop, this means that the PHI node only has constant
Chris Lattner9de28282003-04-25 02:50:03 +0000541 // arguments that agree with each other(and OperandVal is the constant) or
542 // OperandVal is null because there are no defined incoming arguments. If
543 // this is the case, the PHI remains undefined.
Chris Lattner138a1242001-06-27 23:38:11 +0000544 //
Chris Lattner9de28282003-04-25 02:50:03 +0000545 if (OperandVal)
Misha Brukmancf00c4a2003-10-10 17:57:28 +0000546 markConstant(PNIV, &PN, OperandVal); // Acquire operand value
Chris Lattner138a1242001-06-27 23:38:11 +0000547}
548
Chris Lattner59acc7d2004-12-10 08:02:06 +0000549void SCCPSolver::visitReturnInst(ReturnInst &I) {
550 if (I.getNumOperands() == 0) return; // Ret void
551
552 // If we are tracking the return value of this function, merge it in.
553 Function *F = I.getParent()->getParent();
554 if (F->hasInternalLinkage() && !TrackedFunctionRetVals.empty()) {
555 hash_map<Function*, LatticeVal>::iterator TFRVI =
556 TrackedFunctionRetVals.find(F);
557 if (TFRVI != TrackedFunctionRetVals.end() &&
558 !TFRVI->second.isOverdefined()) {
559 LatticeVal &IV = getValueState(I.getOperand(0));
560 mergeInValue(TFRVI->second, F, IV);
561 }
562 }
563}
564
565
Chris Lattner82bec2c2004-11-15 04:44:20 +0000566void SCCPSolver::visitTerminatorInst(TerminatorInst &TI) {
Chris Lattner9de28282003-04-25 02:50:03 +0000567 std::vector<bool> SuccFeasible;
Chris Lattnerb9a66342002-05-02 21:44:00 +0000568 getFeasibleSuccessors(TI, SuccFeasible);
Chris Lattner138a1242001-06-27 23:38:11 +0000569
Chris Lattner16b18fd2003-10-08 16:55:34 +0000570 BasicBlock *BB = TI.getParent();
571
Chris Lattnerb9a66342002-05-02 21:44:00 +0000572 // Mark all feasible successors executable...
573 for (unsigned i = 0, e = SuccFeasible.size(); i != e; ++i)
Chris Lattner16b18fd2003-10-08 16:55:34 +0000574 if (SuccFeasible[i])
575 markEdgeExecutable(BB, TI.getSuccessor(i));
Chris Lattner2a632552002-04-18 15:13:15 +0000576}
577
Chris Lattner82bec2c2004-11-15 04:44:20 +0000578void SCCPSolver::visitCastInst(CastInst &I) {
Chris Lattner7e708292002-06-25 16:13:24 +0000579 Value *V = I.getOperand(0);
Chris Lattneref36dfd2004-11-15 05:03:30 +0000580 LatticeVal &VState = getValueState(V);
Chris Lattnerb7a5d3e2004-01-12 17:43:40 +0000581 if (VState.isOverdefined()) // Inherit overdefinedness of operand
Chris Lattner7e708292002-06-25 16:13:24 +0000582 markOverdefined(&I);
Chris Lattnerb7a5d3e2004-01-12 17:43:40 +0000583 else if (VState.isConstant()) // Propagate constant value
584 markConstant(&I, ConstantExpr::getCast(VState.getConstant(), I.getType()));
Chris Lattner2a632552002-04-18 15:13:15 +0000585}
586
Chris Lattner82bec2c2004-11-15 04:44:20 +0000587void SCCPSolver::visitSelectInst(SelectInst &I) {
Chris Lattneref36dfd2004-11-15 05:03:30 +0000588 LatticeVal &CondValue = getValueState(I.getCondition());
Chris Lattner6e323722004-03-12 05:52:44 +0000589 if (CondValue.isOverdefined())
590 markOverdefined(&I);
591 else if (CondValue.isConstant()) {
592 if (CondValue.getConstant() == ConstantBool::True) {
Chris Lattneref36dfd2004-11-15 05:03:30 +0000593 LatticeVal &Val = getValueState(I.getTrueValue());
Chris Lattner6e323722004-03-12 05:52:44 +0000594 if (Val.isOverdefined())
595 markOverdefined(&I);
596 else if (Val.isConstant())
597 markConstant(&I, Val.getConstant());
598 } else if (CondValue.getConstant() == ConstantBool::False) {
Chris Lattneref36dfd2004-11-15 05:03:30 +0000599 LatticeVal &Val = getValueState(I.getFalseValue());
Chris Lattner6e323722004-03-12 05:52:44 +0000600 if (Val.isOverdefined())
601 markOverdefined(&I);
602 else if (Val.isConstant())
603 markConstant(&I, Val.getConstant());
604 } else
605 markOverdefined(&I);
606 }
607}
608
Chris Lattner2a632552002-04-18 15:13:15 +0000609// Handle BinaryOperators and Shift Instructions...
Chris Lattner82bec2c2004-11-15 04:44:20 +0000610void SCCPSolver::visitBinaryOperator(Instruction &I) {
Chris Lattneref36dfd2004-11-15 05:03:30 +0000611 LatticeVal &IV = ValueState[&I];
Chris Lattner1daee8b2004-01-12 03:57:30 +0000612 if (IV.isOverdefined()) return;
613
Chris Lattneref36dfd2004-11-15 05:03:30 +0000614 LatticeVal &V1State = getValueState(I.getOperand(0));
615 LatticeVal &V2State = getValueState(I.getOperand(1));
Chris Lattner1daee8b2004-01-12 03:57:30 +0000616
Chris Lattner2a632552002-04-18 15:13:15 +0000617 if (V1State.isOverdefined() || V2State.isOverdefined()) {
Chris Lattnera177c672004-12-11 23:15:19 +0000618 // If this is an AND or OR with 0 or -1, it doesn't matter that the other
619 // operand is overdefined.
620 if (I.getOpcode() == Instruction::And || I.getOpcode() == Instruction::Or) {
621 LatticeVal *NonOverdefVal = 0;
622 if (!V1State.isOverdefined()) {
623 NonOverdefVal = &V1State;
624 } else if (!V2State.isOverdefined()) {
625 NonOverdefVal = &V2State;
626 }
627
628 if (NonOverdefVal) {
629 if (NonOverdefVal->isUndefined()) {
630 // Could annihilate value.
631 if (I.getOpcode() == Instruction::And)
632 markConstant(IV, &I, Constant::getNullValue(I.getType()));
633 else
634 markConstant(IV, &I, ConstantInt::getAllOnesValue(I.getType()));
635 return;
636 } else {
637 if (I.getOpcode() == Instruction::And) {
638 if (NonOverdefVal->getConstant()->isNullValue()) {
639 markConstant(IV, &I, NonOverdefVal->getConstant());
640 return; // X or 0 = -1
641 }
642 } else {
643 if (ConstantIntegral *CI =
644 dyn_cast<ConstantIntegral>(NonOverdefVal->getConstant()))
645 if (CI->isAllOnesValue()) {
646 markConstant(IV, &I, NonOverdefVal->getConstant());
647 return; // X or -1 = -1
648 }
649 }
650 }
651 }
652 }
653
654
Chris Lattner1daee8b2004-01-12 03:57:30 +0000655 // If both operands are PHI nodes, it is possible that this instruction has
656 // a constant value, despite the fact that the PHI node doesn't. Check for
657 // this condition now.
658 if (PHINode *PN1 = dyn_cast<PHINode>(I.getOperand(0)))
659 if (PHINode *PN2 = dyn_cast<PHINode>(I.getOperand(1)))
660 if (PN1->getParent() == PN2->getParent()) {
661 // Since the two PHI nodes are in the same basic block, they must have
662 // entries for the same predecessors. Walk the predecessor list, and
663 // if all of the incoming values are constants, and the result of
664 // evaluating this expression with all incoming value pairs is the
665 // same, then this expression is a constant even though the PHI node
666 // is not a constant!
Chris Lattneref36dfd2004-11-15 05:03:30 +0000667 LatticeVal Result;
Chris Lattner1daee8b2004-01-12 03:57:30 +0000668 for (unsigned i = 0, e = PN1->getNumIncomingValues(); i != e; ++i) {
Chris Lattneref36dfd2004-11-15 05:03:30 +0000669 LatticeVal &In1 = getValueState(PN1->getIncomingValue(i));
Chris Lattner1daee8b2004-01-12 03:57:30 +0000670 BasicBlock *InBlock = PN1->getIncomingBlock(i);
Chris Lattneref36dfd2004-11-15 05:03:30 +0000671 LatticeVal &In2 =
672 getValueState(PN2->getIncomingValueForBlock(InBlock));
Chris Lattner1daee8b2004-01-12 03:57:30 +0000673
674 if (In1.isOverdefined() || In2.isOverdefined()) {
675 Result.markOverdefined();
676 break; // Cannot fold this operation over the PHI nodes!
677 } else if (In1.isConstant() && In2.isConstant()) {
Chris Lattnerb16689b2004-01-12 19:08:43 +0000678 Constant *V = ConstantExpr::get(I.getOpcode(), In1.getConstant(),
679 In2.getConstant());
Chris Lattner1daee8b2004-01-12 03:57:30 +0000680 if (Result.isUndefined())
Chris Lattnerb16689b2004-01-12 19:08:43 +0000681 Result.markConstant(V);
682 else if (Result.isConstant() && Result.getConstant() != V) {
Chris Lattner1daee8b2004-01-12 03:57:30 +0000683 Result.markOverdefined();
684 break;
685 }
686 }
687 }
688
689 // If we found a constant value here, then we know the instruction is
690 // constant despite the fact that the PHI nodes are overdefined.
691 if (Result.isConstant()) {
692 markConstant(IV, &I, Result.getConstant());
693 // Remember that this instruction is virtually using the PHI node
694 // operands.
695 UsersOfOverdefinedPHIs.insert(std::make_pair(PN1, &I));
696 UsersOfOverdefinedPHIs.insert(std::make_pair(PN2, &I));
697 return;
698 } else if (Result.isUndefined()) {
699 return;
700 }
701
702 // Okay, this really is overdefined now. Since we might have
703 // speculatively thought that this was not overdefined before, and
704 // added ourselves to the UsersOfOverdefinedPHIs list for the PHIs,
705 // make sure to clean out any entries that we put there, for
706 // efficiency.
707 std::multimap<PHINode*, Instruction*>::iterator It, E;
708 tie(It, E) = UsersOfOverdefinedPHIs.equal_range(PN1);
709 while (It != E) {
710 if (It->second == &I) {
711 UsersOfOverdefinedPHIs.erase(It++);
712 } else
713 ++It;
714 }
715 tie(It, E) = UsersOfOverdefinedPHIs.equal_range(PN2);
716 while (It != E) {
717 if (It->second == &I) {
718 UsersOfOverdefinedPHIs.erase(It++);
719 } else
720 ++It;
721 }
722 }
723
724 markOverdefined(IV, &I);
Chris Lattner2a632552002-04-18 15:13:15 +0000725 } else if (V1State.isConstant() && V2State.isConstant()) {
Chris Lattnerb16689b2004-01-12 19:08:43 +0000726 markConstant(IV, &I, ConstantExpr::get(I.getOpcode(), V1State.getConstant(),
727 V2State.getConstant()));
Chris Lattner2a632552002-04-18 15:13:15 +0000728 }
729}
Chris Lattner2a88bb72002-08-30 23:39:00 +0000730
731// Handle getelementptr instructions... if all operands are constants then we
732// can turn this into a getelementptr ConstantExpr.
733//
Chris Lattner82bec2c2004-11-15 04:44:20 +0000734void SCCPSolver::visitGetElementPtrInst(GetElementPtrInst &I) {
Chris Lattneref36dfd2004-11-15 05:03:30 +0000735 LatticeVal &IV = ValueState[&I];
Chris Lattnerc6a4d6a2004-01-12 04:29:41 +0000736 if (IV.isOverdefined()) return;
737
Chris Lattner2a88bb72002-08-30 23:39:00 +0000738 std::vector<Constant*> Operands;
739 Operands.reserve(I.getNumOperands());
740
741 for (unsigned i = 0, e = I.getNumOperands(); i != e; ++i) {
Chris Lattneref36dfd2004-11-15 05:03:30 +0000742 LatticeVal &State = getValueState(I.getOperand(i));
Chris Lattner2a88bb72002-08-30 23:39:00 +0000743 if (State.isUndefined())
744 return; // Operands are not resolved yet...
745 else if (State.isOverdefined()) {
Chris Lattnerc6a4d6a2004-01-12 04:29:41 +0000746 markOverdefined(IV, &I);
Chris Lattner2a88bb72002-08-30 23:39:00 +0000747 return;
748 }
749 assert(State.isConstant() && "Unknown state!");
750 Operands.push_back(State.getConstant());
751 }
752
753 Constant *Ptr = Operands[0];
754 Operands.erase(Operands.begin()); // Erase the pointer from idx list...
755
Chris Lattnerc6a4d6a2004-01-12 04:29:41 +0000756 markConstant(IV, &I, ConstantExpr::getGetElementPtr(Ptr, Operands));
Chris Lattner2a88bb72002-08-30 23:39:00 +0000757}
Brian Gaeked0fde302003-11-11 22:41:34 +0000758
Chris Lattnerc6a4d6a2004-01-12 04:29:41 +0000759/// GetGEPGlobalInitializer - Given a constant and a getelementptr constantexpr,
760/// return the constant value being addressed by the constant expression, or
761/// null if something is funny.
762///
763static Constant *GetGEPGlobalInitializer(Constant *C, ConstantExpr *CE) {
Chris Lattner28977af2004-04-05 01:30:19 +0000764 if (CE->getOperand(1) != Constant::getNullValue(CE->getOperand(1)->getType()))
Chris Lattnerc6a4d6a2004-01-12 04:29:41 +0000765 return 0; // Do not allow stepping over the value!
766
767 // Loop over all of the operands, tracking down which value we are
768 // addressing...
769 for (unsigned i = 2, e = CE->getNumOperands(); i != e; ++i)
770 if (ConstantUInt *CU = dyn_cast<ConstantUInt>(CE->getOperand(i))) {
Chris Lattnerde512b52004-02-15 05:55:15 +0000771 ConstantStruct *CS = dyn_cast<ConstantStruct>(C);
772 if (CS == 0) return 0;
Alkis Evlogimenos15876bb2004-08-04 08:44:43 +0000773 if (CU->getValue() >= CS->getNumOperands()) return 0;
Chris Lattner2cc34622005-01-08 19:34:41 +0000774 C = CS->getOperand((unsigned)CU->getValue());
Chris Lattnerc6a4d6a2004-01-12 04:29:41 +0000775 } else if (ConstantSInt *CS = dyn_cast<ConstantSInt>(CE->getOperand(i))) {
Chris Lattnerde512b52004-02-15 05:55:15 +0000776 ConstantArray *CA = dyn_cast<ConstantArray>(C);
777 if (CA == 0) return 0;
Alkis Evlogimenos15876bb2004-08-04 08:44:43 +0000778 if ((uint64_t)CS->getValue() >= CA->getNumOperands()) return 0;
Chris Lattner2cc34622005-01-08 19:34:41 +0000779 C = CA->getOperand((unsigned)CS->getValue());
Chris Lattnerde512b52004-02-15 05:55:15 +0000780 } else
Chris Lattnerc6a4d6a2004-01-12 04:29:41 +0000781 return 0;
782 return C;
783}
784
Chris Lattnerdd336d12004-12-11 05:15:59 +0000785void SCCPSolver::visitStoreInst(Instruction &SI) {
786 if (TrackedGlobals.empty() || !isa<GlobalVariable>(SI.getOperand(1)))
787 return;
788 GlobalVariable *GV = cast<GlobalVariable>(SI.getOperand(1));
789 hash_map<GlobalVariable*, LatticeVal>::iterator I = TrackedGlobals.find(GV);
790 if (I == TrackedGlobals.end() || I->second.isOverdefined()) return;
791
792 // Get the value we are storing into the global.
793 LatticeVal &PtrVal = getValueState(SI.getOperand(0));
794
795 mergeInValue(I->second, GV, PtrVal);
796 if (I->second.isOverdefined())
797 TrackedGlobals.erase(I); // No need to keep tracking this!
798}
799
800
Chris Lattnerc6a4d6a2004-01-12 04:29:41 +0000801// Handle load instructions. If the operand is a constant pointer to a constant
802// global, we can replace the load with the loaded constant value!
Chris Lattner82bec2c2004-11-15 04:44:20 +0000803void SCCPSolver::visitLoadInst(LoadInst &I) {
Chris Lattneref36dfd2004-11-15 05:03:30 +0000804 LatticeVal &IV = ValueState[&I];
Chris Lattnerc6a4d6a2004-01-12 04:29:41 +0000805 if (IV.isOverdefined()) return;
806
Chris Lattneref36dfd2004-11-15 05:03:30 +0000807 LatticeVal &PtrVal = getValueState(I.getOperand(0));
Chris Lattnerc6a4d6a2004-01-12 04:29:41 +0000808 if (PtrVal.isUndefined()) return; // The pointer is not resolved yet!
809 if (PtrVal.isConstant() && !I.isVolatile()) {
810 Value *Ptr = PtrVal.getConstant();
Chris Lattnerc76d8032004-03-07 22:16:24 +0000811 if (isa<ConstantPointerNull>(Ptr)) {
812 // load null -> null
813 markConstant(IV, &I, Constant::getNullValue(I.getType()));
814 return;
815 }
816
Chris Lattnerc6a4d6a2004-01-12 04:29:41 +0000817 // Transform load (constant global) into the value loaded.
Chris Lattnerdd336d12004-12-11 05:15:59 +0000818 if (GlobalVariable *GV = dyn_cast<GlobalVariable>(Ptr)) {
819 if (GV->isConstant()) {
820 if (!GV->isExternal()) {
821 markConstant(IV, &I, GV->getInitializer());
822 return;
823 }
824 } else if (!TrackedGlobals.empty()) {
825 // If we are tracking this global, merge in the known value for it.
826 hash_map<GlobalVariable*, LatticeVal>::iterator It =
827 TrackedGlobals.find(GV);
828 if (It != TrackedGlobals.end()) {
829 mergeInValue(IV, &I, It->second);
830 return;
831 }
Chris Lattnerc6a4d6a2004-01-12 04:29:41 +0000832 }
Chris Lattnerdd336d12004-12-11 05:15:59 +0000833 }
Chris Lattnerc6a4d6a2004-01-12 04:29:41 +0000834
835 // Transform load (constantexpr_GEP global, 0, ...) into the value loaded.
836 if (ConstantExpr *CE = dyn_cast<ConstantExpr>(Ptr))
837 if (CE->getOpcode() == Instruction::GetElementPtr)
Reid Spencer21cb67e2004-07-18 00:31:05 +0000838 if (GlobalVariable *GV = dyn_cast<GlobalVariable>(CE->getOperand(0)))
839 if (GV->isConstant() && !GV->isExternal())
840 if (Constant *V =
841 GetGEPGlobalInitializer(GV->getInitializer(), CE)) {
842 markConstant(IV, &I, V);
843 return;
844 }
Chris Lattnerc6a4d6a2004-01-12 04:29:41 +0000845 }
846
847 // Otherwise we cannot say for certain what value this load will produce.
848 // Bail out.
849 markOverdefined(IV, &I);
850}
Chris Lattner58b7b082004-04-13 19:43:54 +0000851
Chris Lattner59acc7d2004-12-10 08:02:06 +0000852void SCCPSolver::visitCallSite(CallSite CS) {
853 Function *F = CS.getCalledFunction();
854
855 // If we are tracking this function, we must make sure to bind arguments as
856 // appropriate.
857 hash_map<Function*, LatticeVal>::iterator TFRVI =TrackedFunctionRetVals.end();
858 if (F && F->hasInternalLinkage())
859 TFRVI = TrackedFunctionRetVals.find(F);
860
861 if (TFRVI != TrackedFunctionRetVals.end()) {
862 // If this is the first call to the function hit, mark its entry block
863 // executable.
864 if (!BBExecutable.count(F->begin()))
865 MarkBlockExecutable(F->begin());
866
867 CallSite::arg_iterator CAI = CS.arg_begin();
Chris Lattnere4d5c442005-03-15 04:54:21 +0000868 for (Function::arg_iterator AI = F->arg_begin(), E = F->arg_end();
Chris Lattner59acc7d2004-12-10 08:02:06 +0000869 AI != E; ++AI, ++CAI) {
870 LatticeVal &IV = ValueState[AI];
871 if (!IV.isOverdefined())
872 mergeInValue(IV, AI, getValueState(*CAI));
873 }
874 }
875 Instruction *I = CS.getInstruction();
876 if (I->getType() == Type::VoidTy) return;
877
878 LatticeVal &IV = ValueState[I];
Chris Lattner58b7b082004-04-13 19:43:54 +0000879 if (IV.isOverdefined()) return;
880
Chris Lattner59acc7d2004-12-10 08:02:06 +0000881 // Propagate the return value of the function to the value of the instruction.
882 if (TFRVI != TrackedFunctionRetVals.end()) {
883 mergeInValue(IV, I, TFRVI->second);
884 return;
885 }
886
887 if (F == 0 || !F->isExternal() || !canConstantFoldCallTo(F)) {
888 markOverdefined(IV, I);
Chris Lattner58b7b082004-04-13 19:43:54 +0000889 return;
890 }
891
892 std::vector<Constant*> Operands;
Chris Lattner59acc7d2004-12-10 08:02:06 +0000893 Operands.reserve(I->getNumOperands()-1);
Chris Lattner58b7b082004-04-13 19:43:54 +0000894
Chris Lattner59acc7d2004-12-10 08:02:06 +0000895 for (CallSite::arg_iterator AI = CS.arg_begin(), E = CS.arg_end();
896 AI != E; ++AI) {
897 LatticeVal &State = getValueState(*AI);
Chris Lattner58b7b082004-04-13 19:43:54 +0000898 if (State.isUndefined())
899 return; // Operands are not resolved yet...
900 else if (State.isOverdefined()) {
Chris Lattner59acc7d2004-12-10 08:02:06 +0000901 markOverdefined(IV, I);
Chris Lattner58b7b082004-04-13 19:43:54 +0000902 return;
903 }
904 assert(State.isConstant() && "Unknown state!");
905 Operands.push_back(State.getConstant());
906 }
907
908 if (Constant *C = ConstantFoldCall(F, Operands))
Chris Lattner59acc7d2004-12-10 08:02:06 +0000909 markConstant(IV, I, C);
Chris Lattner58b7b082004-04-13 19:43:54 +0000910 else
Chris Lattner59acc7d2004-12-10 08:02:06 +0000911 markOverdefined(IV, I);
Chris Lattner58b7b082004-04-13 19:43:54 +0000912}
Chris Lattner82bec2c2004-11-15 04:44:20 +0000913
914
915void SCCPSolver::Solve() {
916 // Process the work lists until they are empty!
917 while (!BBWorkList.empty() || !InstWorkList.empty() ||
918 !OverdefinedInstWorkList.empty()) {
919 // Process the instruction work list...
920 while (!OverdefinedInstWorkList.empty()) {
Chris Lattner59acc7d2004-12-10 08:02:06 +0000921 Value *I = OverdefinedInstWorkList.back();
Chris Lattner82bec2c2004-11-15 04:44:20 +0000922 OverdefinedInstWorkList.pop_back();
923
Chris Lattner59acc7d2004-12-10 08:02:06 +0000924 DEBUG(std::cerr << "\nPopped off OI-WL: " << *I);
Chris Lattner82bec2c2004-11-15 04:44:20 +0000925
926 // "I" got into the work list because it either made the transition from
927 // bottom to constant
928 //
929 // Anything on this worklist that is overdefined need not be visited
930 // since all of its users will have already been marked as overdefined
931 // Update all of the users of this instruction's value...
932 //
933 for (Value::use_iterator UI = I->use_begin(), E = I->use_end();
934 UI != E; ++UI)
935 OperandChangedState(*UI);
936 }
937 // Process the instruction work list...
938 while (!InstWorkList.empty()) {
Chris Lattner59acc7d2004-12-10 08:02:06 +0000939 Value *I = InstWorkList.back();
Chris Lattner82bec2c2004-11-15 04:44:20 +0000940 InstWorkList.pop_back();
941
942 DEBUG(std::cerr << "\nPopped off I-WL: " << *I);
943
944 // "I" got into the work list because it either made the transition from
945 // bottom to constant
946 //
947 // Anything on this worklist that is overdefined need not be visited
948 // since all of its users will have already been marked as overdefined.
949 // Update all of the users of this instruction's value...
950 //
951 if (!getValueState(I).isOverdefined())
952 for (Value::use_iterator UI = I->use_begin(), E = I->use_end();
953 UI != E; ++UI)
954 OperandChangedState(*UI);
955 }
956
957 // Process the basic block work list...
958 while (!BBWorkList.empty()) {
959 BasicBlock *BB = BBWorkList.back();
960 BBWorkList.pop_back();
961
962 DEBUG(std::cerr << "\nPopped off BBWL: " << *BB);
963
964 // Notify all instructions in this basic block that they are newly
965 // executable.
966 visit(BB);
967 }
968 }
969}
970
Chris Lattnerfc6ac502004-12-10 20:41:50 +0000971/// ResolveBranchesIn - While solving the dataflow for a function, we assume
972/// that branches on undef values cannot reach any of their successors.
973/// However, this is not a safe assumption. After we solve dataflow, this
974/// method should be use to handle this. If this returns true, the solver
975/// should be rerun.
976bool SCCPSolver::ResolveBranchesIn(Function &F) {
977 bool BranchesResolved = false;
Chris Lattnerdade2d22004-12-11 06:05:53 +0000978 for (Function::iterator BB = F.begin(), E = F.end(); BB != E; ++BB)
979 if (BBExecutable.count(BB)) {
980 TerminatorInst *TI = BB->getTerminator();
981 if (BranchInst *BI = dyn_cast<BranchInst>(TI)) {
982 if (BI->isConditional()) {
983 LatticeVal &BCValue = getValueState(BI->getCondition());
984 if (BCValue.isUndefined()) {
985 BI->setCondition(ConstantBool::True);
986 BranchesResolved = true;
987 visit(BI);
988 }
989 }
990 } else if (SwitchInst *SI = dyn_cast<SwitchInst>(TI)) {
991 LatticeVal &SCValue = getValueState(SI->getCondition());
992 if (SCValue.isUndefined()) {
993 const Type *CondTy = SI->getCondition()->getType();
994 SI->setCondition(Constant::getNullValue(CondTy));
Chris Lattnerfc6ac502004-12-10 20:41:50 +0000995 BranchesResolved = true;
Chris Lattnerdade2d22004-12-11 06:05:53 +0000996 visit(SI);
Chris Lattnerfc6ac502004-12-10 20:41:50 +0000997 }
998 }
Chris Lattnerfc6ac502004-12-10 20:41:50 +0000999 }
Chris Lattnerdade2d22004-12-11 06:05:53 +00001000
Chris Lattnerfc6ac502004-12-10 20:41:50 +00001001 return BranchesResolved;
1002}
1003
Chris Lattner82bec2c2004-11-15 04:44:20 +00001004
1005namespace {
Chris Lattner59acc7d2004-12-10 08:02:06 +00001006 Statistic<> NumInstRemoved("sccp", "Number of instructions removed");
1007 Statistic<> NumDeadBlocks ("sccp", "Number of basic blocks unreachable");
1008
Chris Lattner14051812004-11-15 07:15:04 +00001009 //===--------------------------------------------------------------------===//
Chris Lattner82bec2c2004-11-15 04:44:20 +00001010 //
Chris Lattner14051812004-11-15 07:15:04 +00001011 /// SCCP Class - This class uses the SCCPSolver to implement a per-function
1012 /// Sparse Conditional COnstant Propagator.
1013 ///
1014 struct SCCP : public FunctionPass {
1015 // runOnFunction - Run the Sparse Conditional Constant Propagation
1016 // algorithm, and return true if the function was modified.
1017 //
1018 bool runOnFunction(Function &F);
1019
1020 virtual void getAnalysisUsage(AnalysisUsage &AU) const {
1021 AU.setPreservesCFG();
1022 }
1023 };
Chris Lattner82bec2c2004-11-15 04:44:20 +00001024
1025 RegisterOpt<SCCP> X("sccp", "Sparse Conditional Constant Propagation");
1026} // end anonymous namespace
1027
1028
1029// createSCCPPass - This is the public interface to this file...
1030FunctionPass *llvm::createSCCPPass() {
1031 return new SCCP();
1032}
1033
1034
Chris Lattner82bec2c2004-11-15 04:44:20 +00001035// runOnFunction() - Run the Sparse Conditional Constant Propagation algorithm,
1036// and return true if the function was modified.
1037//
1038bool SCCP::runOnFunction(Function &F) {
Chris Lattner7e529e42004-11-15 05:45:33 +00001039 DEBUG(std::cerr << "SCCP on function '" << F.getName() << "'\n");
Chris Lattner82bec2c2004-11-15 04:44:20 +00001040 SCCPSolver Solver;
1041
1042 // Mark the first block of the function as being executable.
1043 Solver.MarkBlockExecutable(F.begin());
1044
Chris Lattner7e529e42004-11-15 05:45:33 +00001045 // Mark all arguments to the function as being overdefined.
1046 hash_map<Value*, LatticeVal> &Values = Solver.getValueMapping();
Chris Lattnere4d5c442005-03-15 04:54:21 +00001047 for (Function::arg_iterator AI = F.arg_begin(), E = F.arg_end(); AI != E; ++AI)
Chris Lattner7e529e42004-11-15 05:45:33 +00001048 Values[AI].markOverdefined();
1049
Chris Lattner82bec2c2004-11-15 04:44:20 +00001050 // Solve for constants.
Chris Lattnerfc6ac502004-12-10 20:41:50 +00001051 bool ResolvedBranches = true;
1052 while (ResolvedBranches) {
1053 Solver.Solve();
Chris Lattnerdade2d22004-12-11 06:05:53 +00001054 DEBUG(std::cerr << "RESOLVING UNDEF BRANCHES\n");
Chris Lattnerfc6ac502004-12-10 20:41:50 +00001055 ResolvedBranches = Solver.ResolveBranchesIn(F);
1056 }
Chris Lattner82bec2c2004-11-15 04:44:20 +00001057
Chris Lattner7e529e42004-11-15 05:45:33 +00001058 bool MadeChanges = false;
1059
1060 // If we decided that there are basic blocks that are dead in this function,
1061 // delete their contents now. Note that we cannot actually delete the blocks,
1062 // as we cannot modify the CFG of the function.
1063 //
1064 std::set<BasicBlock*> &ExecutableBBs = Solver.getExecutableBlocks();
1065 for (Function::iterator BB = F.begin(), E = F.end(); BB != E; ++BB)
1066 if (!ExecutableBBs.count(BB)) {
1067 DEBUG(std::cerr << " BasicBlock Dead:" << *BB);
Chris Lattnerb77d5d82004-11-15 07:02:42 +00001068 ++NumDeadBlocks;
1069
Chris Lattner7e529e42004-11-15 05:45:33 +00001070 // Delete the instructions backwards, as it has a reduced likelihood of
1071 // having to update as many def-use and use-def chains.
1072 std::vector<Instruction*> Insts;
1073 for (BasicBlock::iterator I = BB->begin(), E = BB->getTerminator();
1074 I != E; ++I)
1075 Insts.push_back(I);
1076 while (!Insts.empty()) {
1077 Instruction *I = Insts.back();
1078 Insts.pop_back();
1079 if (!I->use_empty())
1080 I->replaceAllUsesWith(UndefValue::get(I->getType()));
1081 BB->getInstList().erase(I);
1082 MadeChanges = true;
Chris Lattnerb77d5d82004-11-15 07:02:42 +00001083 ++NumInstRemoved;
Chris Lattner7e529e42004-11-15 05:45:33 +00001084 }
Chris Lattner59acc7d2004-12-10 08:02:06 +00001085 } else {
1086 // Iterate over all of the instructions in a function, replacing them with
1087 // constants if we have found them to be of constant values.
1088 //
1089 for (BasicBlock::iterator BI = BB->begin(), E = BB->end(); BI != E; ) {
1090 Instruction *Inst = BI++;
1091 if (Inst->getType() != Type::VoidTy) {
1092 LatticeVal &IV = Values[Inst];
1093 if (IV.isConstant() || IV.isUndefined() &&
1094 !isa<TerminatorInst>(Inst)) {
1095 Constant *Const = IV.isConstant()
1096 ? IV.getConstant() : UndefValue::get(Inst->getType());
Chris Lattner82bec2c2004-11-15 04:44:20 +00001097 DEBUG(std::cerr << " Constant: " << *Const << " = " << *Inst);
Chris Lattner59acc7d2004-12-10 08:02:06 +00001098
1099 // Replaces all of the uses of a variable with uses of the constant.
1100 Inst->replaceAllUsesWith(Const);
1101
1102 // Delete the instruction.
1103 BB->getInstList().erase(Inst);
1104
1105 // Hey, we just changed something!
1106 MadeChanges = true;
1107 ++NumInstRemoved;
Chris Lattner82bec2c2004-11-15 04:44:20 +00001108 }
Chris Lattner82bec2c2004-11-15 04:44:20 +00001109 }
1110 }
1111 }
1112
1113 return MadeChanges;
1114}
Chris Lattner59acc7d2004-12-10 08:02:06 +00001115
1116namespace {
1117 Statistic<> IPNumInstRemoved("ipsccp", "Number of instructions removed");
1118 Statistic<> IPNumDeadBlocks ("ipsccp", "Number of basic blocks unreachable");
1119 Statistic<> IPNumArgsElimed ("ipsccp",
1120 "Number of arguments constant propagated");
Chris Lattnerdd336d12004-12-11 05:15:59 +00001121 Statistic<> IPNumGlobalConst("ipsccp",
1122 "Number of globals found to be constant");
Chris Lattner59acc7d2004-12-10 08:02:06 +00001123
1124 //===--------------------------------------------------------------------===//
1125 //
1126 /// IPSCCP Class - This class implements interprocedural Sparse Conditional
1127 /// Constant Propagation.
1128 ///
1129 struct IPSCCP : public ModulePass {
1130 bool runOnModule(Module &M);
1131 };
1132
1133 RegisterOpt<IPSCCP>
1134 Y("ipsccp", "Interprocedural Sparse Conditional Constant Propagation");
1135} // end anonymous namespace
1136
1137// createIPSCCPPass - This is the public interface to this file...
1138ModulePass *llvm::createIPSCCPPass() {
1139 return new IPSCCP();
1140}
1141
1142
1143static bool AddressIsTaken(GlobalValue *GV) {
1144 for (Value::use_iterator UI = GV->use_begin(), E = GV->use_end();
1145 UI != E; ++UI)
1146 if (StoreInst *SI = dyn_cast<StoreInst>(*UI)) {
Chris Lattnerdd336d12004-12-11 05:15:59 +00001147 if (SI->getOperand(0) == GV || SI->isVolatile())
1148 return true; // Storing addr of GV.
Chris Lattner59acc7d2004-12-10 08:02:06 +00001149 } else if (isa<InvokeInst>(*UI) || isa<CallInst>(*UI)) {
1150 // Make sure we are calling the function, not passing the address.
1151 CallSite CS = CallSite::get(cast<Instruction>(*UI));
1152 for (CallSite::arg_iterator AI = CS.arg_begin(),
1153 E = CS.arg_end(); AI != E; ++AI)
1154 if (*AI == GV)
1155 return true;
Chris Lattnerdd336d12004-12-11 05:15:59 +00001156 } else if (LoadInst *LI = dyn_cast<LoadInst>(*UI)) {
1157 if (LI->isVolatile())
1158 return true;
1159 } else {
Chris Lattner59acc7d2004-12-10 08:02:06 +00001160 return true;
1161 }
1162 return false;
1163}
1164
1165bool IPSCCP::runOnModule(Module &M) {
1166 SCCPSolver Solver;
1167
1168 // Loop over all functions, marking arguments to those with their addresses
1169 // taken or that are external as overdefined.
1170 //
1171 hash_map<Value*, LatticeVal> &Values = Solver.getValueMapping();
1172 for (Module::iterator F = M.begin(), E = M.end(); F != E; ++F)
1173 if (!F->hasInternalLinkage() || AddressIsTaken(F)) {
1174 if (!F->isExternal())
1175 Solver.MarkBlockExecutable(F->begin());
Chris Lattnere4d5c442005-03-15 04:54:21 +00001176 for (Function::arg_iterator AI = F->arg_begin(), E = F->arg_end(); AI != E; ++AI)
Chris Lattner59acc7d2004-12-10 08:02:06 +00001177 Values[AI].markOverdefined();
1178 } else {
1179 Solver.AddTrackedFunction(F);
1180 }
1181
Chris Lattnerdd336d12004-12-11 05:15:59 +00001182 // Loop over global variables. We inform the solver about any internal global
1183 // variables that do not have their 'addresses taken'. If they don't have
1184 // their addresses taken, we can propagate constants through them.
Chris Lattnere4d5c442005-03-15 04:54:21 +00001185 for (Module::global_iterator G = M.global_begin(), E = M.global_end(); G != E; ++G)
Chris Lattnerdd336d12004-12-11 05:15:59 +00001186 if (!G->isConstant() && G->hasInternalLinkage() && !AddressIsTaken(G))
1187 Solver.TrackValueOfGlobalVariable(G);
1188
Chris Lattner59acc7d2004-12-10 08:02:06 +00001189 // Solve for constants.
Chris Lattnerfc6ac502004-12-10 20:41:50 +00001190 bool ResolvedBranches = true;
1191 while (ResolvedBranches) {
1192 Solver.Solve();
1193
Chris Lattnerdade2d22004-12-11 06:05:53 +00001194 DEBUG(std::cerr << "RESOLVING UNDEF BRANCHES\n");
Chris Lattnerfc6ac502004-12-10 20:41:50 +00001195 ResolvedBranches = false;
1196 for (Module::iterator F = M.begin(), E = M.end(); F != E; ++F)
1197 ResolvedBranches |= Solver.ResolveBranchesIn(*F);
1198 }
Chris Lattner59acc7d2004-12-10 08:02:06 +00001199
1200 bool MadeChanges = false;
1201
1202 // Iterate over all of the instructions in the module, replacing them with
1203 // constants if we have found them to be of constant values.
1204 //
1205 std::set<BasicBlock*> &ExecutableBBs = Solver.getExecutableBlocks();
1206 for (Module::iterator F = M.begin(), E = M.end(); F != E; ++F) {
Chris Lattnere4d5c442005-03-15 04:54:21 +00001207 for (Function::arg_iterator AI = F->arg_begin(), E = F->arg_end(); AI != E; ++AI)
Chris Lattner59acc7d2004-12-10 08:02:06 +00001208 if (!AI->use_empty()) {
1209 LatticeVal &IV = Values[AI];
1210 if (IV.isConstant() || IV.isUndefined()) {
1211 Constant *CST = IV.isConstant() ?
1212 IV.getConstant() : UndefValue::get(AI->getType());
1213 DEBUG(std::cerr << "*** Arg " << *AI << " = " << *CST <<"\n");
1214
1215 // Replaces all of the uses of a variable with uses of the
1216 // constant.
1217 AI->replaceAllUsesWith(CST);
1218 ++IPNumArgsElimed;
1219 }
1220 }
1221
Chris Lattner5f9e8b42004-12-10 22:29:08 +00001222 std::vector<BasicBlock*> BlocksToErase;
Chris Lattner59acc7d2004-12-10 08:02:06 +00001223 for (Function::iterator BB = F->begin(), E = F->end(); BB != E; ++BB)
1224 if (!ExecutableBBs.count(BB)) {
1225 DEBUG(std::cerr << " BasicBlock Dead:" << *BB);
1226 ++IPNumDeadBlocks;
Chris Lattnerfc6ac502004-12-10 20:41:50 +00001227
Chris Lattner59acc7d2004-12-10 08:02:06 +00001228 // Delete the instructions backwards, as it has a reduced likelihood of
1229 // having to update as many def-use and use-def chains.
1230 std::vector<Instruction*> Insts;
Chris Lattner5f9e8b42004-12-10 22:29:08 +00001231 TerminatorInst *TI = BB->getTerminator();
1232 for (BasicBlock::iterator I = BB->begin(), E = TI; I != E; ++I)
Chris Lattner59acc7d2004-12-10 08:02:06 +00001233 Insts.push_back(I);
Chris Lattner5f9e8b42004-12-10 22:29:08 +00001234
Chris Lattner59acc7d2004-12-10 08:02:06 +00001235 while (!Insts.empty()) {
1236 Instruction *I = Insts.back();
1237 Insts.pop_back();
1238 if (!I->use_empty())
1239 I->replaceAllUsesWith(UndefValue::get(I->getType()));
1240 BB->getInstList().erase(I);
1241 MadeChanges = true;
1242 ++IPNumInstRemoved;
1243 }
Chris Lattner5f9e8b42004-12-10 22:29:08 +00001244
1245 for (unsigned i = 0, e = TI->getNumSuccessors(); i != e; ++i) {
1246 BasicBlock *Succ = TI->getSuccessor(i);
1247 if (Succ->begin() != Succ->end() && isa<PHINode>(Succ->begin()))
1248 TI->getSuccessor(i)->removePredecessor(BB);
1249 }
Chris Lattner0417feb2004-12-11 02:53:57 +00001250 if (!TI->use_empty())
1251 TI->replaceAllUsesWith(UndefValue::get(TI->getType()));
Chris Lattner5f9e8b42004-12-10 22:29:08 +00001252 BB->getInstList().erase(TI);
1253
Chris Lattner864737b2004-12-11 05:32:19 +00001254 if (&*BB != &F->front())
1255 BlocksToErase.push_back(BB);
1256 else
1257 new UnreachableInst(BB);
1258
Chris Lattner59acc7d2004-12-10 08:02:06 +00001259 } else {
1260 for (BasicBlock::iterator BI = BB->begin(), E = BB->end(); BI != E; ) {
1261 Instruction *Inst = BI++;
1262 if (Inst->getType() != Type::VoidTy) {
1263 LatticeVal &IV = Values[Inst];
1264 if (IV.isConstant() || IV.isUndefined() &&
1265 !isa<TerminatorInst>(Inst)) {
1266 Constant *Const = IV.isConstant()
1267 ? IV.getConstant() : UndefValue::get(Inst->getType());
1268 DEBUG(std::cerr << " Constant: " << *Const << " = " << *Inst);
1269
1270 // Replaces all of the uses of a variable with uses of the
1271 // constant.
1272 Inst->replaceAllUsesWith(Const);
1273
1274 // Delete the instruction.
1275 if (!isa<TerminatorInst>(Inst) && !isa<CallInst>(Inst))
1276 BB->getInstList().erase(Inst);
1277
1278 // Hey, we just changed something!
1279 MadeChanges = true;
1280 ++IPNumInstRemoved;
1281 }
1282 }
1283 }
1284 }
Chris Lattner5f9e8b42004-12-10 22:29:08 +00001285
1286 // Now that all instructions in the function are constant folded, erase dead
1287 // blocks, because we can now use ConstantFoldTerminator to get rid of
1288 // in-edges.
1289 for (unsigned i = 0, e = BlocksToErase.size(); i != e; ++i) {
1290 // If there are any PHI nodes in this successor, drop entries for BB now.
1291 BasicBlock *DeadBB = BlocksToErase[i];
1292 while (!DeadBB->use_empty()) {
1293 Instruction *I = cast<Instruction>(DeadBB->use_back());
1294 bool Folded = ConstantFoldTerminator(I->getParent());
1295 assert(Folded && "Didn't fold away reference to block!");
1296 }
1297
1298 // Finally, delete the basic block.
1299 F->getBasicBlockList().erase(DeadBB);
1300 }
Chris Lattner59acc7d2004-12-10 08:02:06 +00001301 }
Chris Lattner0417feb2004-12-11 02:53:57 +00001302
1303 // If we inferred constant or undef return values for a function, we replaced
1304 // all call uses with the inferred value. This means we don't need to bother
1305 // actually returning anything from the function. Replace all return
1306 // instructions with return undef.
1307 const hash_map<Function*, LatticeVal> &RV =Solver.getTrackedFunctionRetVals();
1308 for (hash_map<Function*, LatticeVal>::const_iterator I = RV.begin(),
1309 E = RV.end(); I != E; ++I)
1310 if (!I->second.isOverdefined() &&
1311 I->first->getReturnType() != Type::VoidTy) {
1312 Function *F = I->first;
1313 for (Function::iterator BB = F->begin(), E = F->end(); BB != E; ++BB)
1314 if (ReturnInst *RI = dyn_cast<ReturnInst>(BB->getTerminator()))
1315 if (!isa<UndefValue>(RI->getOperand(0)))
1316 RI->setOperand(0, UndefValue::get(F->getReturnType()));
1317 }
Chris Lattnerdd336d12004-12-11 05:15:59 +00001318
1319 // If we infered constant or undef values for globals variables, we can delete
1320 // the global and any stores that remain to it.
1321 const hash_map<GlobalVariable*, LatticeVal> &TG = Solver.getTrackedGlobals();
1322 for (hash_map<GlobalVariable*, LatticeVal>::const_iterator I = TG.begin(),
1323 E = TG.end(); I != E; ++I) {
1324 GlobalVariable *GV = I->first;
1325 assert(!I->second.isOverdefined() &&
1326 "Overdefined values should have been taken out of the map!");
1327 DEBUG(std::cerr << "Found that GV '" << GV->getName()<< "' is constant!\n");
1328 while (!GV->use_empty()) {
1329 StoreInst *SI = cast<StoreInst>(GV->use_back());
1330 SI->eraseFromParent();
1331 }
1332 M.getGlobalList().erase(GV);
Chris Lattnerdade2d22004-12-11 06:05:53 +00001333 ++IPNumGlobalConst;
Chris Lattnerdd336d12004-12-11 05:15:59 +00001334 }
Chris Lattner0417feb2004-12-11 02:53:57 +00001335
Chris Lattner59acc7d2004-12-10 08:02:06 +00001336 return MadeChanges;
1337}