blob: 4701d2f740564217f3f7a29686d1ff8765fdd892 [file] [log] [blame]
Misha Brukman82c89b92003-05-20 21:01:22 +00001//===- SCCP.cpp - Sparse Conditional Constant Propagation -----------------===//
Misha Brukmanfd939082005-04-21 23:48:37 +00002//
John Criswellb576c942003-10-20 19:43:21 +00003// The LLVM Compiler Infrastructure
4//
Chris Lattner4ee451d2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Misha Brukmanfd939082005-04-21 23:48:37 +00007//
John Criswellb576c942003-10-20 19:43:21 +00008//===----------------------------------------------------------------------===//
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"
Owen Andersonfa5cbd62009-07-03 19:42:02 +000030#include "llvm/LLVMContext.h"
Chris Lattnerbd0ef772002-02-26 21:46:54 +000031#include "llvm/Pass.h"
Chris Lattner79066fa2007-01-30 23:46:24 +000032#include "llvm/Analysis/ConstantFolding.h"
Victor Hernandezf006b182009-10-27 20:05:49 +000033#include "llvm/Analysis/MemoryBuiltins.h"
Dan Gohmanc4b65ea2008-06-20 01:15:44 +000034#include "llvm/Analysis/ValueTracking.h"
Chris Lattner58b7b082004-04-13 19:43:54 +000035#include "llvm/Transforms/Utils/Local.h"
Chris Lattner59acc7d2004-12-10 08:02:06 +000036#include "llvm/Support/CallSite.h"
Reid Spencer551ccae2004-09-01 22:55:40 +000037#include "llvm/Support/Debug.h"
Torok Edwin7d696d82009-07-11 13:10:19 +000038#include "llvm/Support/ErrorHandling.h"
Chris Lattner79066fa2007-01-30 23:46:24 +000039#include "llvm/Support/InstVisitor.h"
Daniel Dunbarce63ffb2009-07-25 00:23:56 +000040#include "llvm/Support/raw_ostream.h"
Chris Lattnerb59673e2007-02-02 20:38:30 +000041#include "llvm/ADT/DenseMap.h"
Chris Lattnercf712de2008-08-23 23:36:38 +000042#include "llvm/ADT/DenseSet.h"
Chris Lattnercc56aad2007-02-02 20:57:39 +000043#include "llvm/ADT/SmallSet.h"
Chris Lattnercd2492e2007-01-30 23:15:19 +000044#include "llvm/ADT/SmallVector.h"
Reid Spencer551ccae2004-09-01 22:55:40 +000045#include "llvm/ADT/Statistic.h"
46#include "llvm/ADT/STLExtras.h"
Chris Lattner138a1242001-06-27 23:38:11 +000047#include <algorithm>
Dan Gohmanc9235d22008-03-21 23:51:57 +000048#include <map>
Chris Lattnerd7456022004-01-09 06:02:20 +000049using namespace llvm;
Brian Gaeked0fde302003-11-11 22:41:34 +000050
Chris Lattner0e5f4992006-12-19 21:40:18 +000051STATISTIC(NumInstRemoved, "Number of instructions removed");
52STATISTIC(NumDeadBlocks , "Number of basic blocks unreachable");
53
Nick Lewycky6c36a0f2008-03-08 07:48:41 +000054STATISTIC(IPNumInstRemoved, "Number of instructions removed by IPSCCP");
Chris Lattner0e5f4992006-12-19 21:40:18 +000055STATISTIC(IPNumDeadBlocks , "Number of basic blocks unreachable by IPSCCP");
56STATISTIC(IPNumArgsElimed ,"Number of arguments constant propagated by IPSCCP");
57STATISTIC(IPNumGlobalConst, "Number of globals found to be constant by IPSCCP");
58
Chris Lattner0dbfc052002-04-29 21:26:08 +000059namespace {
Chris Lattner3bad2532006-12-20 06:21:33 +000060/// LatticeVal class - This class represents the different lattice values that
61/// an LLVM value may occupy. It is a simple class with value semantics.
62///
Chris Lattner3e8b6632009-09-02 06:11:42 +000063class LatticeVal {
Misha Brukmanfd939082005-04-21 23:48:37 +000064 enum {
Chris Lattner3bad2532006-12-20 06:21:33 +000065 /// undefined - This LLVM Value has no known value yet.
66 undefined,
67
68 /// constant - This LLVM Value has a specific constant value.
69 constant,
70
71 /// forcedconstant - This LLVM Value was thought to be undef until
72 /// ResolvedUndefsIn. This is treated just like 'constant', but if merged
73 /// with another (different) constant, it goes to overdefined, instead of
74 /// asserting.
75 forcedconstant,
76
77 /// overdefined - This instruction is not known to be constant, and we know
78 /// it has a value.
79 overdefined
80 } LatticeValue; // The current lattice position
81
Chris Lattnere9bb2df2001-12-03 22:26:30 +000082 Constant *ConstantVal; // If Constant value, the current value
Chris Lattner138a1242001-06-27 23:38:11 +000083public:
Chris Lattneref36dfd2004-11-15 05:03:30 +000084 inline LatticeVal() : LatticeValue(undefined), ConstantVal(0) {}
Chris Lattner3bad2532006-12-20 06:21:33 +000085
Chris Lattner138a1242001-06-27 23:38:11 +000086 // markOverdefined - Return true if this is a new status to be in...
87 inline bool markOverdefined() {
Chris Lattnere9bb2df2001-12-03 22:26:30 +000088 if (LatticeValue != overdefined) {
89 LatticeValue = overdefined;
Chris Lattner138a1242001-06-27 23:38:11 +000090 return true;
91 }
92 return false;
93 }
94
Chris Lattner3bad2532006-12-20 06:21:33 +000095 // markConstant - Return true if this is a new status for us.
Chris Lattnere9bb2df2001-12-03 22:26:30 +000096 inline bool markConstant(Constant *V) {
97 if (LatticeValue != constant) {
Chris Lattner3bad2532006-12-20 06:21:33 +000098 if (LatticeValue == undefined) {
99 LatticeValue = constant;
Jim Laskey52ab9042007-01-03 00:11:03 +0000100 assert(V && "Marking constant with NULL");
Chris Lattner3bad2532006-12-20 06:21:33 +0000101 ConstantVal = V;
102 } else {
103 assert(LatticeValue == forcedconstant &&
104 "Cannot move from overdefined to constant!");
105 // Stay at forcedconstant if the constant is the same.
106 if (V == ConstantVal) return false;
107
108 // Otherwise, we go to overdefined. Assumptions made based on the
109 // forced value are possibly wrong. Assuming this is another constant
110 // could expose a contradiction.
111 LatticeValue = overdefined;
112 }
Chris Lattner138a1242001-06-27 23:38:11 +0000113 return true;
114 } else {
Chris Lattnerb70d82f2001-09-07 16:43:22 +0000115 assert(ConstantVal == V && "Marking constant with different value");
Chris Lattner138a1242001-06-27 23:38:11 +0000116 }
117 return false;
118 }
119
Chris Lattner3bad2532006-12-20 06:21:33 +0000120 inline void markForcedConstant(Constant *V) {
121 assert(LatticeValue == undefined && "Can't force a defined value!");
122 LatticeValue = forcedconstant;
123 ConstantVal = V;
124 }
125
126 inline bool isUndefined() const { return LatticeValue == undefined; }
127 inline bool isConstant() const {
128 return LatticeValue == constant || LatticeValue == forcedconstant;
129 }
Chris Lattnere9bb2df2001-12-03 22:26:30 +0000130 inline bool isOverdefined() const { return LatticeValue == overdefined; }
Chris Lattner138a1242001-06-27 23:38:11 +0000131
Chris Lattner1daee8b2004-01-12 03:57:30 +0000132 inline Constant *getConstant() const {
133 assert(isConstant() && "Cannot get the constant of a non-constant!");
134 return ConstantVal;
135 }
Chris Lattner138a1242001-06-27 23:38:11 +0000136};
137
Chris Lattner138a1242001-06-27 23:38:11 +0000138//===----------------------------------------------------------------------===//
Chris Lattner138a1242001-06-27 23:38:11 +0000139//
Chris Lattner82bec2c2004-11-15 04:44:20 +0000140/// SCCPSolver - This class is a general purpose solver for Sparse Conditional
141/// Constant Propagation.
142///
143class SCCPSolver : public InstVisitor<SCCPSolver> {
Owen Anderson07cf79e2009-07-06 23:00:19 +0000144 LLVMContext *Context;
Chris Lattnercf712de2008-08-23 23:36:38 +0000145 DenseSet<BasicBlock*> BBExecutable;// The basic blocks that are executable
Bill Wendling7a7cf6b2008-08-14 23:05:24 +0000146 std::map<Value*, LatticeVal> ValueState; // The state each value is in.
Chris Lattner138a1242001-06-27 23:38:11 +0000147
Chris Lattnerdd336d12004-12-11 05:15:59 +0000148 /// GlobalValue - If we are tracking any values for the contents of a global
149 /// variable, we keep a mapping from the constant accessor to the element of
150 /// the global, to the currently known value. If the value becomes
151 /// overdefined, it's entry is simply removed from this map.
Chris Lattnerb59673e2007-02-02 20:38:30 +0000152 DenseMap<GlobalVariable*, LatticeVal> TrackedGlobals;
Chris Lattnerdd336d12004-12-11 05:15:59 +0000153
Devang Patel7c490d42008-03-11 05:46:42 +0000154 /// TrackedRetVals - If we are tracking arguments into and the return
Chris Lattner59acc7d2004-12-10 08:02:06 +0000155 /// value out of a function, it will have an entry in this map, indicating
156 /// what the known return value for the function is.
Devang Patel7c490d42008-03-11 05:46:42 +0000157 DenseMap<Function*, LatticeVal> TrackedRetVals;
158
159 /// TrackedMultipleRetVals - Same as TrackedRetVals, but used for functions
160 /// that return multiple values.
Chris Lattnercf712de2008-08-23 23:36:38 +0000161 DenseMap<std::pair<Function*, unsigned>, LatticeVal> TrackedMultipleRetVals;
Chris Lattner59acc7d2004-12-10 08:02:06 +0000162
Chris Lattner80b2d6c2004-07-15 23:36:43 +0000163 // The reason for two worklists is that overdefined is the lowest state
164 // on the lattice, and moving things to overdefined as fast as possible
165 // makes SCCP converge much faster.
166 // By having a separate worklist, we accomplish this because everything
167 // possibly overdefined will become overdefined at the soonest possible
168 // point.
Chris Lattnercf712de2008-08-23 23:36:38 +0000169 SmallVector<Value*, 64> OverdefinedInstWorkList;
170 SmallVector<Value*, 64> InstWorkList;
Chris Lattner80b2d6c2004-07-15 23:36:43 +0000171
172
Chris Lattnercf712de2008-08-23 23:36:38 +0000173 SmallVector<BasicBlock*, 64> BBWorkList; // The BasicBlock work list
Chris Lattner16b18fd2003-10-08 16:55:34 +0000174
Chris Lattner1daee8b2004-01-12 03:57:30 +0000175 /// UsersOfOverdefinedPHIs - Keep track of any users of PHI nodes that are not
176 /// overdefined, despite the fact that the PHI node is overdefined.
177 std::multimap<PHINode*, Instruction*> UsersOfOverdefinedPHIs;
178
Chris Lattner16b18fd2003-10-08 16:55:34 +0000179 /// KnownFeasibleEdges - Entries in this set are edges which have already had
180 /// PHI nodes retriggered.
Chris Lattnercf712de2008-08-23 23:36:38 +0000181 typedef std::pair<BasicBlock*, BasicBlock*> Edge;
182 DenseSet<Edge> KnownFeasibleEdges;
Chris Lattner138a1242001-06-27 23:38:11 +0000183public:
Owen Anderson07cf79e2009-07-06 23:00:19 +0000184 void setContext(LLVMContext *C) { Context = C; }
Chris Lattner138a1242001-06-27 23:38:11 +0000185
Chris Lattner82bec2c2004-11-15 04:44:20 +0000186 /// MarkBlockExecutable - This method can be used by clients to mark all of
187 /// the blocks that are known to be intrinsically live in the processed unit.
188 void MarkBlockExecutable(BasicBlock *BB) {
Daniel Dunbar93b67e42009-07-26 07:49:05 +0000189 DEBUG(errs() << "Marking Block Executable: " << BB->getName() << "\n");
Chris Lattner82bec2c2004-11-15 04:44:20 +0000190 BBExecutable.insert(BB); // Basic block is executable!
191 BBWorkList.push_back(BB); // Add the block to the work list!
Chris Lattner0dbfc052002-04-29 21:26:08 +0000192 }
193
Chris Lattnerdd336d12004-12-11 05:15:59 +0000194 /// TrackValueOfGlobalVariable - Clients can use this method to
Chris Lattner59acc7d2004-12-10 08:02:06 +0000195 /// inform the SCCPSolver that it should track loads and stores to the
196 /// specified global variable if it can. This is only legal to call if
197 /// performing Interprocedural SCCP.
Chris Lattnerdd336d12004-12-11 05:15:59 +0000198 void TrackValueOfGlobalVariable(GlobalVariable *GV) {
199 const Type *ElTy = GV->getType()->getElementType();
200 if (ElTy->isFirstClassType()) {
201 LatticeVal &IV = TrackedGlobals[GV];
202 if (!isa<UndefValue>(GV->getInitializer()))
203 IV.markConstant(GV->getInitializer());
204 }
205 }
Chris Lattner59acc7d2004-12-10 08:02:06 +0000206
207 /// AddTrackedFunction - If the SCCP solver is supposed to track calls into
208 /// and out of the specified function (which cannot have its address taken),
209 /// this method must be called.
210 void AddTrackedFunction(Function *F) {
Rafael Espindolabb46f522009-01-15 20:18:42 +0000211 assert(F->hasLocalLinkage() && "Can only track internal functions!");
Chris Lattner59acc7d2004-12-10 08:02:06 +0000212 // Add an entry, F -> undef.
Devang Patel7c490d42008-03-11 05:46:42 +0000213 if (const StructType *STy = dyn_cast<StructType>(F->getReturnType())) {
214 for (unsigned i = 0, e = STy->getNumElements(); i != e; ++i)
Chris Lattnerc6ee00b2008-04-23 05:38:20 +0000215 TrackedMultipleRetVals.insert(std::make_pair(std::make_pair(F, i),
216 LatticeVal()));
217 } else
218 TrackedRetVals.insert(std::make_pair(F, LatticeVal()));
Chris Lattner59acc7d2004-12-10 08:02:06 +0000219 }
220
Chris Lattner82bec2c2004-11-15 04:44:20 +0000221 /// Solve - Solve for constants and executable blocks.
222 ///
223 void Solve();
Chris Lattner138a1242001-06-27 23:38:11 +0000224
Chris Lattner3bad2532006-12-20 06:21:33 +0000225 /// ResolvedUndefsIn - While solving the dataflow for a function, we assume
Chris Lattnerfc6ac502004-12-10 20:41:50 +0000226 /// that branches on undef values cannot reach any of their successors.
227 /// However, this is not a safe assumption. After we solve dataflow, this
228 /// method should be use to handle this. If this returns true, the solver
229 /// should be rerun.
Chris Lattner3bad2532006-12-20 06:21:33 +0000230 bool ResolvedUndefsIn(Function &F);
Chris Lattnerfc6ac502004-12-10 20:41:50 +0000231
Chris Lattner7eb01bf2008-08-23 23:39:31 +0000232 bool isBlockExecutable(BasicBlock *BB) const {
233 return BBExecutable.count(BB);
Chris Lattner82bec2c2004-11-15 04:44:20 +0000234 }
235
236 /// getValueMapping - Once we have solved for constants, return the mapping of
Chris Lattneref36dfd2004-11-15 05:03:30 +0000237 /// LLVM values to LatticeVals.
Bill Wendling7a7cf6b2008-08-14 23:05:24 +0000238 std::map<Value*, LatticeVal> &getValueMapping() {
Chris Lattner82bec2c2004-11-15 04:44:20 +0000239 return ValueState;
240 }
241
Devang Patel7c490d42008-03-11 05:46:42 +0000242 /// getTrackedRetVals - Get the inferred return value map.
Chris Lattner0417feb2004-12-11 02:53:57 +0000243 ///
Devang Patel7c490d42008-03-11 05:46:42 +0000244 const DenseMap<Function*, LatticeVal> &getTrackedRetVals() {
245 return TrackedRetVals;
Chris Lattner0417feb2004-12-11 02:53:57 +0000246 }
247
Chris Lattnerdd336d12004-12-11 05:15:59 +0000248 /// getTrackedGlobals - Get and return the set of inferred initializers for
249 /// global variables.
Chris Lattnerb59673e2007-02-02 20:38:30 +0000250 const DenseMap<GlobalVariable*, LatticeVal> &getTrackedGlobals() {
Chris Lattnerdd336d12004-12-11 05:15:59 +0000251 return TrackedGlobals;
252 }
253
Chris Lattner57939df2007-03-04 04:50:21 +0000254 inline void markOverdefined(Value *V) {
255 markOverdefined(ValueState[V], V);
256 }
Chris Lattner0417feb2004-12-11 02:53:57 +0000257
Chris Lattner138a1242001-06-27 23:38:11 +0000258private:
Chris Lattner80b2d6c2004-07-15 23:36:43 +0000259 // markConstant - Make a value be marked as "constant". If the value
Misha Brukmanfd939082005-04-21 23:48:37 +0000260 // is not already a constant, add it to the instruction work list so that
Chris Lattner138a1242001-06-27 23:38:11 +0000261 // the users of the instruction are updated later.
262 //
Chris Lattner59acc7d2004-12-10 08:02:06 +0000263 inline void markConstant(LatticeVal &IV, Value *V, Constant *C) {
Chris Lattner3d405b02003-10-08 16:21:03 +0000264 if (IV.markConstant(C)) {
Dan Gohman87325772009-08-17 15:25:05 +0000265 DEBUG(errs() << "markConstant: " << *C << ": " << *V << '\n');
Chris Lattner59acc7d2004-12-10 08:02:06 +0000266 InstWorkList.push_back(V);
Chris Lattner138a1242001-06-27 23:38:11 +0000267 }
Chris Lattner3d405b02003-10-08 16:21:03 +0000268 }
Chris Lattner3bad2532006-12-20 06:21:33 +0000269
270 inline void markForcedConstant(LatticeVal &IV, Value *V, Constant *C) {
271 IV.markForcedConstant(C);
Dan Gohman87325772009-08-17 15:25:05 +0000272 DEBUG(errs() << "markForcedConstant: " << *C << ": " << *V << '\n');
Chris Lattner3bad2532006-12-20 06:21:33 +0000273 InstWorkList.push_back(V);
274 }
275
Chris Lattner59acc7d2004-12-10 08:02:06 +0000276 inline void markConstant(Value *V, Constant *C) {
277 markConstant(ValueState[V], V, C);
Chris Lattner138a1242001-06-27 23:38:11 +0000278 }
279
Chris Lattner80b2d6c2004-07-15 23:36:43 +0000280 // markOverdefined - Make a value be marked as "overdefined". If the
Misha Brukmanfd939082005-04-21 23:48:37 +0000281 // value is not already overdefined, add it to the overdefined instruction
Chris Lattner80b2d6c2004-07-15 23:36:43 +0000282 // work list so that the users of the instruction are updated later.
Chris Lattner59acc7d2004-12-10 08:02:06 +0000283 inline void markOverdefined(LatticeVal &IV, Value *V) {
Chris Lattner3d405b02003-10-08 16:21:03 +0000284 if (IV.markOverdefined()) {
Daniel Dunbarce63ffb2009-07-25 00:23:56 +0000285 DEBUG(errs() << "markOverdefined: ";
Chris Lattnerdade2d22004-12-11 06:05:53 +0000286 if (Function *F = dyn_cast<Function>(V))
Daniel Dunbarce63ffb2009-07-25 00:23:56 +0000287 errs() << "Function '" << F->getName() << "'\n";
Chris Lattnerdade2d22004-12-11 06:05:53 +0000288 else
Dan Gohman87325772009-08-17 15:25:05 +0000289 errs() << *V << '\n');
Chris Lattner82bec2c2004-11-15 04:44:20 +0000290 // Only instructions go on the work list
Chris Lattner59acc7d2004-12-10 08:02:06 +0000291 OverdefinedInstWorkList.push_back(V);
Chris Lattner138a1242001-06-27 23:38:11 +0000292 }
Chris Lattner3d405b02003-10-08 16:21:03 +0000293 }
Chris Lattner59acc7d2004-12-10 08:02:06 +0000294
295 inline void mergeInValue(LatticeVal &IV, Value *V, LatticeVal &MergeWithV) {
296 if (IV.isOverdefined() || MergeWithV.isUndefined())
297 return; // Noop.
298 if (MergeWithV.isOverdefined())
299 markOverdefined(IV, V);
300 else if (IV.isUndefined())
301 markConstant(IV, V, MergeWithV.getConstant());
302 else if (IV.getConstant() != MergeWithV.getConstant())
303 markOverdefined(IV, V);
Chris Lattner138a1242001-06-27 23:38:11 +0000304 }
Chris Lattnerfe243eb2006-02-08 02:38:11 +0000305
306 inline void mergeInValue(Value *V, LatticeVal &MergeWithV) {
307 return mergeInValue(ValueState[V], V, MergeWithV);
308 }
309
Chris Lattner138a1242001-06-27 23:38:11 +0000310
Chris Lattneref36dfd2004-11-15 05:03:30 +0000311 // getValueState - Return the LatticeVal object that corresponds to the value.
Misha Brukman5560c9d2003-08-18 14:43:39 +0000312 // This function is necessary because not all values should start out in the
Chris Lattner73e21422002-04-09 19:48:49 +0000313 // underdefined state... Argument's should be overdefined, and
Chris Lattner79df7c02002-03-26 18:01:55 +0000314 // constants should be marked as constants. If a value is not known to be an
Chris Lattner138a1242001-06-27 23:38:11 +0000315 // Instruction object, then use this accessor to get its value from the map.
316 //
Chris Lattneref36dfd2004-11-15 05:03:30 +0000317 inline LatticeVal &getValueState(Value *V) {
Bill Wendling7a7cf6b2008-08-14 23:05:24 +0000318 std::map<Value*, LatticeVal>::iterator I = ValueState.find(V);
Chris Lattner138a1242001-06-27 23:38:11 +0000319 if (I != ValueState.end()) return I->second; // Common case, in the map
Chris Lattner5d356a72004-10-16 18:09:41 +0000320
Chris Lattner3bad2532006-12-20 06:21:33 +0000321 if (Constant *C = dyn_cast<Constant>(V)) {
Chris Lattner7e529e42004-11-15 05:45:33 +0000322 if (isa<UndefValue>(V)) {
323 // Nothing to do, remain undefined.
324 } else {
Chris Lattnerb59673e2007-02-02 20:38:30 +0000325 LatticeVal &LV = ValueState[C];
326 LV.markConstant(C); // Constants are constant
327 return LV;
Chris Lattner7e529e42004-11-15 05:45:33 +0000328 }
Chris Lattner2a88bb72002-08-30 23:39:00 +0000329 }
Chris Lattner138a1242001-06-27 23:38:11 +0000330 // All others are underdefined by default...
331 return ValueState[V];
332 }
333
Misha Brukmanfd939082005-04-21 23:48:37 +0000334 // markEdgeExecutable - Mark a basic block as executable, adding it to the BB
Chris Lattner138a1242001-06-27 23:38:11 +0000335 // work list if it is not already executable...
Misha Brukmanfd939082005-04-21 23:48:37 +0000336 //
Chris Lattner16b18fd2003-10-08 16:55:34 +0000337 void markEdgeExecutable(BasicBlock *Source, BasicBlock *Dest) {
338 if (!KnownFeasibleEdges.insert(Edge(Source, Dest)).second)
339 return; // This edge is already known to be executable!
340
341 if (BBExecutable.count(Dest)) {
Daniel Dunbar93b67e42009-07-26 07:49:05 +0000342 DEBUG(errs() << "Marking Edge Executable: " << Source->getName()
343 << " -> " << Dest->getName() << "\n");
Chris Lattner16b18fd2003-10-08 16:55:34 +0000344
345 // The destination is already executable, but we just made an edge
Chris Lattner929c6fb2003-10-08 16:56:11 +0000346 // feasible that wasn't before. Revisit the PHI nodes in the block
347 // because they have potentially new operands.
Chris Lattner59acc7d2004-12-10 08:02:06 +0000348 for (BasicBlock::iterator I = Dest->begin(); isa<PHINode>(I); ++I)
349 visitPHINode(*cast<PHINode>(I));
Chris Lattner9de28282003-04-25 02:50:03 +0000350
351 } else {
Chris Lattner82bec2c2004-11-15 04:44:20 +0000352 MarkBlockExecutable(Dest);
Chris Lattner9de28282003-04-25 02:50:03 +0000353 }
Chris Lattner138a1242001-06-27 23:38:11 +0000354 }
355
Chris Lattner82bec2c2004-11-15 04:44:20 +0000356 // getFeasibleSuccessors - Return a vector of booleans to indicate which
357 // successors are reachable from a given terminator instruction.
358 //
Chris Lattner1c1f1122007-02-02 21:15:06 +0000359 void getFeasibleSuccessors(TerminatorInst &TI, SmallVector<bool, 16> &Succs);
Chris Lattner82bec2c2004-11-15 04:44:20 +0000360
361 // isEdgeFeasible - Return true if the control flow edge from the 'From' basic
362 // block to the 'To' basic block is currently feasible...
363 //
364 bool isEdgeFeasible(BasicBlock *From, BasicBlock *To);
365
366 // OperandChangedState - This method is invoked on all of the users of an
367 // instruction that was just changed state somehow.... Based on this
368 // information, we need to update the specified user of this instruction.
369 //
370 void OperandChangedState(User *U) {
371 // Only instructions use other variable values!
372 Instruction &I = cast<Instruction>(*U);
373 if (BBExecutable.count(I.getParent())) // Inst is executable?
374 visit(I);
375 }
376
377private:
378 friend class InstVisitor<SCCPSolver>;
Chris Lattner138a1242001-06-27 23:38:11 +0000379
Misha Brukmanfd939082005-04-21 23:48:37 +0000380 // visit implementations - Something changed in this instruction... Either an
Chris Lattnercb056de2001-06-29 23:56:23 +0000381 // operand made a transition, or the instruction is newly executable. Change
382 // the value type of I to reflect these changes if appropriate.
383 //
Chris Lattner7e708292002-06-25 16:13:24 +0000384 void visitPHINode(PHINode &I);
Chris Lattner2a632552002-04-18 15:13:15 +0000385
386 // Terminators
Chris Lattner59acc7d2004-12-10 08:02:06 +0000387 void visitReturnInst(ReturnInst &I);
Chris Lattner7e708292002-06-25 16:13:24 +0000388 void visitTerminatorInst(TerminatorInst &TI);
Chris Lattner2a632552002-04-18 15:13:15 +0000389
Chris Lattnerb8047602002-08-14 17:53:45 +0000390 void visitCastInst(CastInst &I);
Chris Lattner6e323722004-03-12 05:52:44 +0000391 void visitSelectInst(SelectInst &I);
Chris Lattner7e708292002-06-25 16:13:24 +0000392 void visitBinaryOperator(Instruction &I);
Reid Spencere4d87aa2006-12-23 06:05:41 +0000393 void visitCmpInst(CmpInst &I);
Robert Bocchino56107e22006-01-10 19:05:05 +0000394 void visitExtractElementInst(ExtractElementInst &I);
Robert Bocchino8fcf01e2006-01-17 20:06:55 +0000395 void visitInsertElementInst(InsertElementInst &I);
Chris Lattner543abdf2006-04-08 01:19:12 +0000396 void visitShuffleVectorInst(ShuffleVectorInst &I);
Dan Gohmanc4b65ea2008-06-20 01:15:44 +0000397 void visitExtractValueInst(ExtractValueInst &EVI);
398 void visitInsertValueInst(InsertValueInst &IVI);
Chris Lattner2a632552002-04-18 15:13:15 +0000399
400 // Instructions that cannot be folded away...
Chris Lattnerdd336d12004-12-11 05:15:59 +0000401 void visitStoreInst (Instruction &I);
Chris Lattnerc6a4d6a2004-01-12 04:29:41 +0000402 void visitLoadInst (LoadInst &I);
Chris Lattner2a88bb72002-08-30 23:39:00 +0000403 void visitGetElementPtrInst(GetElementPtrInst &I);
Victor Hernandez66284e02009-10-24 04:23:03 +0000404 void visitCallInst (CallInst &I) {
405 if (isFreeCall(&I))
406 return;
Chris Lattner32c0d222009-09-27 21:35:11 +0000407 visitCallSite(CallSite::get(&I));
Victor Hernandez83d63912009-09-18 22:35:49 +0000408 }
Chris Lattner59acc7d2004-12-10 08:02:06 +0000409 void visitInvokeInst (InvokeInst &II) {
410 visitCallSite(CallSite::get(&II));
411 visitTerminatorInst(II);
Chris Lattner99b28e62003-08-27 01:08:35 +0000412 }
Chris Lattner59acc7d2004-12-10 08:02:06 +0000413 void visitCallSite (CallSite CS);
Chris Lattner36143fc2003-09-08 18:54:55 +0000414 void visitUnwindInst (TerminatorInst &I) { /*returns void*/ }
Chris Lattner5d356a72004-10-16 18:09:41 +0000415 void visitUnreachableInst(TerminatorInst &I) { /*returns void*/ }
Victor Hernandez7b929da2009-10-23 21:09:37 +0000416 void visitAllocaInst (Instruction &I) { markOverdefined(&I); }
Chris Lattnercda965e2003-10-18 05:56:52 +0000417 void visitVANextInst (Instruction &I) { markOverdefined(&I); }
418 void visitVAArgInst (Instruction &I) { markOverdefined(&I); }
Chris Lattner2a632552002-04-18 15:13:15 +0000419
Chris Lattner7e708292002-06-25 16:13:24 +0000420 void visitInstruction(Instruction &I) {
Chris Lattner2a632552002-04-18 15:13:15 +0000421 // If a new instruction is added to LLVM that we don't handle...
Chris Lattnerbdff5482009-08-23 04:37:46 +0000422 errs() << "SCCP: Don't know how to handle: " << I;
Chris Lattner7e708292002-06-25 16:13:24 +0000423 markOverdefined(&I); // Just in case
Chris Lattner2a632552002-04-18 15:13:15 +0000424 }
Chris Lattnercb056de2001-06-29 23:56:23 +0000425};
Chris Lattnerf6293092002-07-23 18:06:35 +0000426
Duncan Sandse2abf122007-07-20 08:56:21 +0000427} // end anonymous namespace
428
429
Chris Lattnerb9a66342002-05-02 21:44:00 +0000430// getFeasibleSuccessors - Return a vector of booleans to indicate which
431// successors are reachable from a given terminator instruction.
432//
Chris Lattner82bec2c2004-11-15 04:44:20 +0000433void SCCPSolver::getFeasibleSuccessors(TerminatorInst &TI,
Chris Lattner1c1f1122007-02-02 21:15:06 +0000434 SmallVector<bool, 16> &Succs) {
Chris Lattner9de28282003-04-25 02:50:03 +0000435 Succs.resize(TI.getNumSuccessors());
Chris Lattner7e708292002-06-25 16:13:24 +0000436 if (BranchInst *BI = dyn_cast<BranchInst>(&TI)) {
Chris Lattnerb9a66342002-05-02 21:44:00 +0000437 if (BI->isUnconditional()) {
438 Succs[0] = true;
439 } else {
Chris Lattneref36dfd2004-11-15 05:03:30 +0000440 LatticeVal &BCValue = getValueState(BI->getCondition());
Chris Lattner84831642004-01-12 17:40:36 +0000441 if (BCValue.isOverdefined() ||
Reid Spencer579dca12007-01-12 04:24:46 +0000442 (BCValue.isConstant() && !isa<ConstantInt>(BCValue.getConstant()))) {
Chris Lattner84831642004-01-12 17:40:36 +0000443 // Overdefined condition variables, and branches on unfoldable constant
444 // conditions, mean the branch could go either way.
Chris Lattnerb9a66342002-05-02 21:44:00 +0000445 Succs[0] = Succs[1] = true;
446 } else if (BCValue.isConstant()) {
447 // Constant condition variables mean the branch can only go a single way
Owen Anderson5defacc2009-07-31 17:39:07 +0000448 Succs[BCValue.getConstant() == ConstantInt::getFalse(*Context)] = true;
Chris Lattnerb9a66342002-05-02 21:44:00 +0000449 }
450 }
Reid Spencer3ed469c2006-11-02 20:25:50 +0000451 } else if (isa<InvokeInst>(&TI)) {
Chris Lattnerb9a66342002-05-02 21:44:00 +0000452 // Invoke instructions successors are always executable.
453 Succs[0] = Succs[1] = true;
Chris Lattner7e708292002-06-25 16:13:24 +0000454 } else if (SwitchInst *SI = dyn_cast<SwitchInst>(&TI)) {
Chris Lattneref36dfd2004-11-15 05:03:30 +0000455 LatticeVal &SCValue = getValueState(SI->getCondition());
Chris Lattner84831642004-01-12 17:40:36 +0000456 if (SCValue.isOverdefined() || // Overdefined condition?
457 (SCValue.isConstant() && !isa<ConstantInt>(SCValue.getConstant()))) {
Chris Lattnerb9a66342002-05-02 21:44:00 +0000458 // All destinations are executable!
Chris Lattner7e708292002-06-25 16:13:24 +0000459 Succs.assign(TI.getNumSuccessors(), true);
Chris Lattner3a73c9e2008-05-10 23:56:54 +0000460 } else if (SCValue.isConstant())
461 Succs[SI->findCaseValue(cast<ConstantInt>(SCValue.getConstant()))] = true;
Chris Lattnerb9a66342002-05-02 21:44:00 +0000462 } else {
Torok Edwinc23197a2009-07-14 16:55:14 +0000463 llvm_unreachable("SCCP: Don't know how to handle this terminator!");
Chris Lattnerb9a66342002-05-02 21:44:00 +0000464 }
465}
466
467
Chris Lattner59f0ce22002-05-02 21:18:01 +0000468// isEdgeFeasible - Return true if the control flow edge from the 'From' basic
469// block to the 'To' basic block is currently feasible...
470//
Chris Lattner82bec2c2004-11-15 04:44:20 +0000471bool SCCPSolver::isEdgeFeasible(BasicBlock *From, BasicBlock *To) {
Chris Lattner59f0ce22002-05-02 21:18:01 +0000472 assert(BBExecutable.count(To) && "Dest should always be alive!");
473
474 // Make sure the source basic block is executable!!
475 if (!BBExecutable.count(From)) return false;
Misha Brukmanfd939082005-04-21 23:48:37 +0000476
Chris Lattnerb9a66342002-05-02 21:44:00 +0000477 // Check to make sure this edge itself is actually feasible now...
Chris Lattner7d275f42003-10-08 15:47:41 +0000478 TerminatorInst *TI = From->getTerminator();
479 if (BranchInst *BI = dyn_cast<BranchInst>(TI)) {
480 if (BI->isUnconditional())
Chris Lattnerb9a66342002-05-02 21:44:00 +0000481 return true;
Chris Lattner7d275f42003-10-08 15:47:41 +0000482 else {
Chris Lattneref36dfd2004-11-15 05:03:30 +0000483 LatticeVal &BCValue = getValueState(BI->getCondition());
Chris Lattner7d275f42003-10-08 15:47:41 +0000484 if (BCValue.isOverdefined()) {
485 // Overdefined condition variables mean the branch could go either way.
486 return true;
487 } else if (BCValue.isConstant()) {
Chris Lattner84831642004-01-12 17:40:36 +0000488 // Not branching on an evaluatable constant?
Chris Lattner54a525d2007-01-13 00:42:58 +0000489 if (!isa<ConstantInt>(BCValue.getConstant())) return true;
Chris Lattner84831642004-01-12 17:40:36 +0000490
Chris Lattner7d275f42003-10-08 15:47:41 +0000491 // Constant condition variables mean the branch can only go a single way
Misha Brukmanfd939082005-04-21 23:48:37 +0000492 return BI->getSuccessor(BCValue.getConstant() ==
Owen Anderson5defacc2009-07-31 17:39:07 +0000493 ConstantInt::getFalse(*Context)) == To;
Chris Lattner7d275f42003-10-08 15:47:41 +0000494 }
495 return false;
496 }
Reid Spencer3ed469c2006-11-02 20:25:50 +0000497 } else if (isa<InvokeInst>(TI)) {
Chris Lattner7d275f42003-10-08 15:47:41 +0000498 // Invoke instructions successors are always executable.
499 return true;
500 } else if (SwitchInst *SI = dyn_cast<SwitchInst>(TI)) {
Chris Lattneref36dfd2004-11-15 05:03:30 +0000501 LatticeVal &SCValue = getValueState(SI->getCondition());
Chris Lattner7d275f42003-10-08 15:47:41 +0000502 if (SCValue.isOverdefined()) { // Overdefined condition?
503 // All destinations are executable!
504 return true;
505 } else if (SCValue.isConstant()) {
506 Constant *CPV = SCValue.getConstant();
Chris Lattner84831642004-01-12 17:40:36 +0000507 if (!isa<ConstantInt>(CPV))
508 return true; // not a foldable constant?
509
Chris Lattner7d275f42003-10-08 15:47:41 +0000510 // Make sure to skip the "default value" which isn't a value
511 for (unsigned i = 1, E = SI->getNumSuccessors(); i != E; ++i)
512 if (SI->getSuccessorValue(i) == CPV) // Found the taken branch...
513 return SI->getSuccessor(i) == To;
514
515 // Constant value not equal to any of the branches... must execute
516 // default branch then...
517 return SI->getDefaultDest() == To;
518 }
519 return false;
520 } else {
Torok Edwin7d696d82009-07-11 13:10:19 +0000521#ifndef NDEBUG
Chris Lattnerbdff5482009-08-23 04:37:46 +0000522 errs() << "Unknown terminator instruction: " << *TI << '\n';
Torok Edwin7d696d82009-07-11 13:10:19 +0000523#endif
Torok Edwinc23197a2009-07-14 16:55:14 +0000524 llvm_unreachable(0);
Chris Lattner7d275f42003-10-08 15:47:41 +0000525 }
Chris Lattner59f0ce22002-05-02 21:18:01 +0000526}
Chris Lattner138a1242001-06-27 23:38:11 +0000527
Chris Lattner2a632552002-04-18 15:13:15 +0000528// visit Implementations - Something changed in this instruction... Either an
Chris Lattner138a1242001-06-27 23:38:11 +0000529// operand made a transition, or the instruction is newly executable. Change
530// the value type of I to reflect these changes if appropriate. This method
531// makes sure to do the following actions:
532//
533// 1. If a phi node merges two constants in, and has conflicting value coming
534// from different branches, or if the PHI node merges in an overdefined
535// value, then the PHI node becomes overdefined.
536// 2. If a phi node merges only constants in, and they all agree on value, the
537// PHI node becomes a constant value equal to that.
538// 3. If V <- x (op) y && isConstant(x) && isConstant(y) V = Constant
539// 4. If V <- x (op) y && (isOverdefined(x) || isOverdefined(y)) V = Overdefined
540// 5. If V <- MEM or V <- CALL or V <- (unknown) then V = Overdefined
541// 6. If a conditional branch has a value that is constant, make the selected
542// destination executable
543// 7. If a conditional branch has a value that is overdefined, make all
544// successors executable.
545//
Chris Lattner82bec2c2004-11-15 04:44:20 +0000546void SCCPSolver::visitPHINode(PHINode &PN) {
Chris Lattneref36dfd2004-11-15 05:03:30 +0000547 LatticeVal &PNIV = getValueState(&PN);
Chris Lattner1daee8b2004-01-12 03:57:30 +0000548 if (PNIV.isOverdefined()) {
549 // There may be instructions using this PHI node that are not overdefined
550 // themselves. If so, make sure that they know that the PHI node operand
551 // changed.
552 std::multimap<PHINode*, Instruction*>::iterator I, E;
553 tie(I, E) = UsersOfOverdefinedPHIs.equal_range(&PN);
554 if (I != E) {
Chris Lattner1c1f1122007-02-02 21:15:06 +0000555 SmallVector<Instruction*, 16> Users;
Chris Lattner1daee8b2004-01-12 03:57:30 +0000556 for (; I != E; ++I) Users.push_back(I->second);
557 while (!Users.empty()) {
558 visit(Users.back());
559 Users.pop_back();
560 }
561 }
562 return; // Quick exit
563 }
Chris Lattner138a1242001-06-27 23:38:11 +0000564
Chris Lattnera2f652d2004-03-16 19:49:59 +0000565 // Super-extra-high-degree PHI nodes are unlikely to ever be marked constant,
566 // and slow us down a lot. Just mark them overdefined.
567 if (PN.getNumIncomingValues() > 64) {
568 markOverdefined(PNIV, &PN);
569 return;
570 }
571
Chris Lattner2a632552002-04-18 15:13:15 +0000572 // Look at all of the executable operands of the PHI node. If any of them
573 // are overdefined, the PHI becomes overdefined as well. If they are all
574 // constant, and they agree with each other, the PHI becomes the identical
575 // constant. If they are constant and don't agree, the PHI is overdefined.
576 // If there are no executable operands, the PHI remains undefined.
577 //
Chris Lattner9de28282003-04-25 02:50:03 +0000578 Constant *OperandVal = 0;
579 for (unsigned i = 0, e = PN.getNumIncomingValues(); i != e; ++i) {
Chris Lattneref36dfd2004-11-15 05:03:30 +0000580 LatticeVal &IV = getValueState(PN.getIncomingValue(i));
Chris Lattner9de28282003-04-25 02:50:03 +0000581 if (IV.isUndefined()) continue; // Doesn't influence PHI node.
Misha Brukmanfd939082005-04-21 23:48:37 +0000582
Chris Lattner7e708292002-06-25 16:13:24 +0000583 if (isEdgeFeasible(PN.getIncomingBlock(i), PN.getParent())) {
Chris Lattner38b5ae42003-06-24 20:29:52 +0000584 if (IV.isOverdefined()) { // PHI node becomes overdefined!
Chris Lattnercf712de2008-08-23 23:36:38 +0000585 markOverdefined(&PN);
Chris Lattner38b5ae42003-06-24 20:29:52 +0000586 return;
587 }
588
Chris Lattner9de28282003-04-25 02:50:03 +0000589 if (OperandVal == 0) { // Grab the first value...
590 OperandVal = IV.getConstant();
Chris Lattner2a632552002-04-18 15:13:15 +0000591 } else { // Another value is being merged in!
592 // There is already a reachable operand. If we conflict with it,
593 // then the PHI node becomes overdefined. If we agree with it, we
594 // can continue on.
Misha Brukmanfd939082005-04-21 23:48:37 +0000595
Chris Lattner2a632552002-04-18 15:13:15 +0000596 // Check to see if there are two different constants merging...
Chris Lattner9de28282003-04-25 02:50:03 +0000597 if (IV.getConstant() != OperandVal) {
Chris Lattner2a632552002-04-18 15:13:15 +0000598 // Yes there is. This means the PHI node is not constant.
599 // You must be overdefined poor PHI.
600 //
Chris Lattnercf712de2008-08-23 23:36:38 +0000601 markOverdefined(&PN); // The PHI node now becomes overdefined
Chris Lattner2a632552002-04-18 15:13:15 +0000602 return; // I'm done analyzing you
Chris Lattner5b7d42b2001-11-26 18:57:38 +0000603 }
Chris Lattner138a1242001-06-27 23:38:11 +0000604 }
605 }
Chris Lattner138a1242001-06-27 23:38:11 +0000606 }
607
Chris Lattner2a632552002-04-18 15:13:15 +0000608 // If we exited the loop, this means that the PHI node only has constant
Chris Lattner9de28282003-04-25 02:50:03 +0000609 // arguments that agree with each other(and OperandVal is the constant) or
610 // OperandVal is null because there are no defined incoming arguments. If
611 // this is the case, the PHI remains undefined.
Chris Lattner138a1242001-06-27 23:38:11 +0000612 //
Chris Lattner9de28282003-04-25 02:50:03 +0000613 if (OperandVal)
Chris Lattnercf712de2008-08-23 23:36:38 +0000614 markConstant(&PN, OperandVal); // Acquire operand value
Chris Lattner138a1242001-06-27 23:38:11 +0000615}
616
Chris Lattner59acc7d2004-12-10 08:02:06 +0000617void SCCPSolver::visitReturnInst(ReturnInst &I) {
618 if (I.getNumOperands() == 0) return; // Ret void
619
Chris Lattner59acc7d2004-12-10 08:02:06 +0000620 Function *F = I.getParent()->getParent();
Devang Patel7c490d42008-03-11 05:46:42 +0000621 // If we are tracking the return value of this function, merge it in.
Rafael Espindolabb46f522009-01-15 20:18:42 +0000622 if (!F->hasLocalLinkage())
Devang Patel7c490d42008-03-11 05:46:42 +0000623 return;
624
Chris Lattnerc6ee00b2008-04-23 05:38:20 +0000625 if (!TrackedRetVals.empty() && I.getNumOperands() == 1) {
Chris Lattnerb59673e2007-02-02 20:38:30 +0000626 DenseMap<Function*, LatticeVal>::iterator TFRVI =
Devang Patel7c490d42008-03-11 05:46:42 +0000627 TrackedRetVals.find(F);
628 if (TFRVI != TrackedRetVals.end() &&
Chris Lattner59acc7d2004-12-10 08:02:06 +0000629 !TFRVI->second.isOverdefined()) {
630 LatticeVal &IV = getValueState(I.getOperand(0));
631 mergeInValue(TFRVI->second, F, IV);
Devang Patel7c490d42008-03-11 05:46:42 +0000632 return;
633 }
634 }
635
Chris Lattnerc6ee00b2008-04-23 05:38:20 +0000636 // Handle functions that return multiple values.
637 if (!TrackedMultipleRetVals.empty() && I.getNumOperands() > 1) {
638 for (unsigned i = 0, e = I.getNumOperands(); i != e; ++i) {
Chris Lattnercf712de2008-08-23 23:36:38 +0000639 DenseMap<std::pair<Function*, unsigned>, LatticeVal>::iterator
Chris Lattnerc6ee00b2008-04-23 05:38:20 +0000640 It = TrackedMultipleRetVals.find(std::make_pair(F, i));
641 if (It == TrackedMultipleRetVals.end()) break;
642 mergeInValue(It->second, F, getValueState(I.getOperand(i)));
Chris Lattner59acc7d2004-12-10 08:02:06 +0000643 }
Dan Gohmanc4b65ea2008-06-20 01:15:44 +0000644 } else if (!TrackedMultipleRetVals.empty() &&
645 I.getNumOperands() == 1 &&
646 isa<StructType>(I.getOperand(0)->getType())) {
647 for (unsigned i = 0, e = I.getOperand(0)->getType()->getNumContainedTypes();
648 i != e; ++i) {
Chris Lattnercf712de2008-08-23 23:36:38 +0000649 DenseMap<std::pair<Function*, unsigned>, LatticeVal>::iterator
Dan Gohmanc4b65ea2008-06-20 01:15:44 +0000650 It = TrackedMultipleRetVals.find(std::make_pair(F, i));
651 if (It == TrackedMultipleRetVals.end()) break;
Owen Andersone922c022009-07-22 00:24:57 +0000652 if (Value *Val = FindInsertedValue(I.getOperand(0), i, I.getContext()))
Nick Lewyckyd7f20b62009-06-06 23:13:08 +0000653 mergeInValue(It->second, F, getValueState(Val));
Dan Gohmanc4b65ea2008-06-20 01:15:44 +0000654 }
Chris Lattner59acc7d2004-12-10 08:02:06 +0000655 }
656}
657
Chris Lattner82bec2c2004-11-15 04:44:20 +0000658void SCCPSolver::visitTerminatorInst(TerminatorInst &TI) {
Chris Lattner1c1f1122007-02-02 21:15:06 +0000659 SmallVector<bool, 16> SuccFeasible;
Chris Lattnerb9a66342002-05-02 21:44:00 +0000660 getFeasibleSuccessors(TI, SuccFeasible);
Chris Lattner138a1242001-06-27 23:38:11 +0000661
Chris Lattner16b18fd2003-10-08 16:55:34 +0000662 BasicBlock *BB = TI.getParent();
663
Chris Lattnerb9a66342002-05-02 21:44:00 +0000664 // Mark all feasible successors executable...
665 for (unsigned i = 0, e = SuccFeasible.size(); i != e; ++i)
Chris Lattner16b18fd2003-10-08 16:55:34 +0000666 if (SuccFeasible[i])
667 markEdgeExecutable(BB, TI.getSuccessor(i));
Chris Lattner2a632552002-04-18 15:13:15 +0000668}
669
Chris Lattner82bec2c2004-11-15 04:44:20 +0000670void SCCPSolver::visitCastInst(CastInst &I) {
Chris Lattner7e708292002-06-25 16:13:24 +0000671 Value *V = I.getOperand(0);
Chris Lattneref36dfd2004-11-15 05:03:30 +0000672 LatticeVal &VState = getValueState(V);
Chris Lattnerb7a5d3e2004-01-12 17:43:40 +0000673 if (VState.isOverdefined()) // Inherit overdefinedness of operand
Chris Lattner7e708292002-06-25 16:13:24 +0000674 markOverdefined(&I);
Chris Lattnerb7a5d3e2004-01-12 17:43:40 +0000675 else if (VState.isConstant()) // Propagate constant value
Owen Andersonbaf3c402009-07-29 18:55:55 +0000676 markConstant(&I, ConstantExpr::getCast(I.getOpcode(),
Reid Spencer4da49122006-12-12 05:05:00 +0000677 VState.getConstant(), I.getType()));
Chris Lattner2a632552002-04-18 15:13:15 +0000678}
679
Dan Gohmanc4b65ea2008-06-20 01:15:44 +0000680void SCCPSolver::visitExtractValueInst(ExtractValueInst &EVI) {
Dan Gohman60ea2682008-06-20 16:41:17 +0000681 Value *Aggr = EVI.getAggregateOperand();
Dan Gohmanc4b65ea2008-06-20 01:15:44 +0000682
Dan Gohman60ea2682008-06-20 16:41:17 +0000683 // If the operand to the extractvalue is an undef, the result is undef.
Dan Gohmanc4b65ea2008-06-20 01:15:44 +0000684 if (isa<UndefValue>(Aggr))
685 return;
686
687 // Currently only handle single-index extractvalues.
688 if (EVI.getNumIndices() != 1) {
689 markOverdefined(&EVI);
690 return;
691 }
692
693 Function *F = 0;
694 if (CallInst *CI = dyn_cast<CallInst>(Aggr))
695 F = CI->getCalledFunction();
696 else if (InvokeInst *II = dyn_cast<InvokeInst>(Aggr))
697 F = II->getCalledFunction();
698
699 // TODO: If IPSCCP resolves the callee of this function, we could propagate a
700 // result back!
701 if (F == 0 || TrackedMultipleRetVals.empty()) {
702 markOverdefined(&EVI);
703 return;
704 }
705
Chris Lattnercf712de2008-08-23 23:36:38 +0000706 // See if we are tracking the result of the callee. If not tracking this
707 // function (for example, it is a declaration) just move to overdefined.
708 if (!TrackedMultipleRetVals.count(std::make_pair(F, *EVI.idx_begin()))) {
Dan Gohmanc4b65ea2008-06-20 01:15:44 +0000709 markOverdefined(&EVI);
710 return;
711 }
712
713 // Otherwise, the value will be merged in here as a result of CallSite
714 // handling.
715}
716
717void SCCPSolver::visitInsertValueInst(InsertValueInst &IVI) {
Dan Gohman60ea2682008-06-20 16:41:17 +0000718 Value *Aggr = IVI.getAggregateOperand();
719 Value *Val = IVI.getInsertedValueOperand();
Dan Gohmanc4b65ea2008-06-20 01:15:44 +0000720
Dan Gohman60ea2682008-06-20 16:41:17 +0000721 // If the operands to the insertvalue are undef, the result is undef.
Dan Gohmandfaceb42008-06-20 16:39:44 +0000722 if (isa<UndefValue>(Aggr) && isa<UndefValue>(Val))
Dan Gohmanc4b65ea2008-06-20 01:15:44 +0000723 return;
724
725 // Currently only handle single-index insertvalues.
726 if (IVI.getNumIndices() != 1) {
727 markOverdefined(&IVI);
728 return;
729 }
Dan Gohmandfaceb42008-06-20 16:39:44 +0000730
731 // Currently only handle insertvalue instructions that are in a single-use
732 // chain that builds up a return value.
733 for (const InsertValueInst *TmpIVI = &IVI; ; ) {
734 if (!TmpIVI->hasOneUse()) {
735 markOverdefined(&IVI);
736 return;
737 }
738 const Value *V = *TmpIVI->use_begin();
739 if (isa<ReturnInst>(V))
740 break;
741 TmpIVI = dyn_cast<InsertValueInst>(V);
742 if (!TmpIVI) {
743 markOverdefined(&IVI);
744 return;
745 }
746 }
Dan Gohmanc4b65ea2008-06-20 01:15:44 +0000747
748 // See if we are tracking the result of the callee.
749 Function *F = IVI.getParent()->getParent();
Chris Lattnercf712de2008-08-23 23:36:38 +0000750 DenseMap<std::pair<Function*, unsigned>, LatticeVal>::iterator
Dan Gohmanc4b65ea2008-06-20 01:15:44 +0000751 It = TrackedMultipleRetVals.find(std::make_pair(F, *IVI.idx_begin()));
752
753 // Merge in the inserted member value.
754 if (It != TrackedMultipleRetVals.end())
755 mergeInValue(It->second, F, getValueState(Val));
756
Dan Gohman60ea2682008-06-20 16:41:17 +0000757 // Mark the aggregate result of the IVI overdefined; any tracking that we do
758 // will be done on the individual member values.
Dan Gohmanc4b65ea2008-06-20 01:15:44 +0000759 markOverdefined(&IVI);
760}
761
Chris Lattner82bec2c2004-11-15 04:44:20 +0000762void SCCPSolver::visitSelectInst(SelectInst &I) {
Chris Lattneref36dfd2004-11-15 05:03:30 +0000763 LatticeVal &CondValue = getValueState(I.getCondition());
Chris Lattnerfe243eb2006-02-08 02:38:11 +0000764 if (CondValue.isUndefined())
765 return;
Reid Spencer579dca12007-01-12 04:24:46 +0000766 if (CondValue.isConstant()) {
Zhou Sheng6b6b6ef2007-01-11 12:24:14 +0000767 if (ConstantInt *CondCB = dyn_cast<ConstantInt>(CondValue.getConstant())){
Reid Spencer579dca12007-01-12 04:24:46 +0000768 mergeInValue(&I, getValueState(CondCB->getZExtValue() ? I.getTrueValue()
Zhou Sheng6b6b6ef2007-01-11 12:24:14 +0000769 : I.getFalseValue()));
Chris Lattnerfe243eb2006-02-08 02:38:11 +0000770 return;
771 }
772 }
773
774 // Otherwise, the condition is overdefined or a constant we can't evaluate.
775 // See if we can produce something better than overdefined based on the T/F
776 // value.
777 LatticeVal &TVal = getValueState(I.getTrueValue());
778 LatticeVal &FVal = getValueState(I.getFalseValue());
779
780 // select ?, C, C -> C.
781 if (TVal.isConstant() && FVal.isConstant() &&
782 TVal.getConstant() == FVal.getConstant()) {
783 markConstant(&I, FVal.getConstant());
784 return;
785 }
786
787 if (TVal.isUndefined()) { // select ?, undef, X -> X.
788 mergeInValue(&I, FVal);
789 } else if (FVal.isUndefined()) { // select ?, X, undef -> X.
790 mergeInValue(&I, TVal);
791 } else {
792 markOverdefined(&I);
Chris Lattner6e323722004-03-12 05:52:44 +0000793 }
794}
795
Chris Lattner2a632552002-04-18 15:13:15 +0000796// Handle BinaryOperators and Shift Instructions...
Chris Lattner82bec2c2004-11-15 04:44:20 +0000797void SCCPSolver::visitBinaryOperator(Instruction &I) {
Chris Lattneref36dfd2004-11-15 05:03:30 +0000798 LatticeVal &IV = ValueState[&I];
Chris Lattner1daee8b2004-01-12 03:57:30 +0000799 if (IV.isOverdefined()) return;
800
Chris Lattneref36dfd2004-11-15 05:03:30 +0000801 LatticeVal &V1State = getValueState(I.getOperand(0));
802 LatticeVal &V2State = getValueState(I.getOperand(1));
Chris Lattner1daee8b2004-01-12 03:57:30 +0000803
Chris Lattner2a632552002-04-18 15:13:15 +0000804 if (V1State.isOverdefined() || V2State.isOverdefined()) {
Chris Lattnera177c672004-12-11 23:15:19 +0000805 // If this is an AND or OR with 0 or -1, it doesn't matter that the other
806 // operand is overdefined.
807 if (I.getOpcode() == Instruction::And || I.getOpcode() == Instruction::Or) {
808 LatticeVal *NonOverdefVal = 0;
809 if (!V1State.isOverdefined()) {
810 NonOverdefVal = &V1State;
811 } else if (!V2State.isOverdefined()) {
812 NonOverdefVal = &V2State;
813 }
814
815 if (NonOverdefVal) {
816 if (NonOverdefVal->isUndefined()) {
817 // Could annihilate value.
818 if (I.getOpcode() == Instruction::And)
Owen Andersona7235ea2009-07-31 20:28:14 +0000819 markConstant(IV, &I, Constant::getNullValue(I.getType()));
Reid Spencer9d6565a2007-02-15 02:26:10 +0000820 else if (const VectorType *PT = dyn_cast<VectorType>(I.getType()))
Owen Andersona7235ea2009-07-31 20:28:14 +0000821 markConstant(IV, &I, Constant::getAllOnesValue(PT));
Chris Lattner7ce2f8b2007-01-04 02:12:40 +0000822 else
Owen Andersonfa5cbd62009-07-03 19:42:02 +0000823 markConstant(IV, &I,
Owen Andersona7235ea2009-07-31 20:28:14 +0000824 Constant::getAllOnesValue(I.getType()));
Chris Lattnera177c672004-12-11 23:15:19 +0000825 return;
826 } else {
827 if (I.getOpcode() == Instruction::And) {
828 if (NonOverdefVal->getConstant()->isNullValue()) {
829 markConstant(IV, &I, NonOverdefVal->getConstant());
Jim Laskey52ab9042007-01-03 00:11:03 +0000830 return; // X and 0 = 0
Chris Lattnera177c672004-12-11 23:15:19 +0000831 }
832 } else {
Zhou Sheng6b6b6ef2007-01-11 12:24:14 +0000833 if (ConstantInt *CI =
834 dyn_cast<ConstantInt>(NonOverdefVal->getConstant()))
Chris Lattnera177c672004-12-11 23:15:19 +0000835 if (CI->isAllOnesValue()) {
836 markConstant(IV, &I, NonOverdefVal->getConstant());
837 return; // X or -1 = -1
838 }
839 }
840 }
841 }
842 }
843
844
Chris Lattner1daee8b2004-01-12 03:57:30 +0000845 // If both operands are PHI nodes, it is possible that this instruction has
846 // a constant value, despite the fact that the PHI node doesn't. Check for
847 // this condition now.
848 if (PHINode *PN1 = dyn_cast<PHINode>(I.getOperand(0)))
849 if (PHINode *PN2 = dyn_cast<PHINode>(I.getOperand(1)))
850 if (PN1->getParent() == PN2->getParent()) {
851 // Since the two PHI nodes are in the same basic block, they must have
852 // entries for the same predecessors. Walk the predecessor list, and
853 // if all of the incoming values are constants, and the result of
854 // evaluating this expression with all incoming value pairs is the
855 // same, then this expression is a constant even though the PHI node
856 // is not a constant!
Chris Lattneref36dfd2004-11-15 05:03:30 +0000857 LatticeVal Result;
Chris Lattner1daee8b2004-01-12 03:57:30 +0000858 for (unsigned i = 0, e = PN1->getNumIncomingValues(); i != e; ++i) {
Chris Lattneref36dfd2004-11-15 05:03:30 +0000859 LatticeVal &In1 = getValueState(PN1->getIncomingValue(i));
Chris Lattner1daee8b2004-01-12 03:57:30 +0000860 BasicBlock *InBlock = PN1->getIncomingBlock(i);
Chris Lattneref36dfd2004-11-15 05:03:30 +0000861 LatticeVal &In2 =
862 getValueState(PN2->getIncomingValueForBlock(InBlock));
Chris Lattner1daee8b2004-01-12 03:57:30 +0000863
864 if (In1.isOverdefined() || In2.isOverdefined()) {
865 Result.markOverdefined();
866 break; // Cannot fold this operation over the PHI nodes!
867 } else if (In1.isConstant() && In2.isConstant()) {
Owen Andersonfa5cbd62009-07-03 19:42:02 +0000868 Constant *V =
Owen Andersonbaf3c402009-07-29 18:55:55 +0000869 ConstantExpr::get(I.getOpcode(), In1.getConstant(),
Chris Lattnerb16689b2004-01-12 19:08:43 +0000870 In2.getConstant());
Chris Lattner1daee8b2004-01-12 03:57:30 +0000871 if (Result.isUndefined())
Chris Lattnerb16689b2004-01-12 19:08:43 +0000872 Result.markConstant(V);
873 else if (Result.isConstant() && Result.getConstant() != V) {
Chris Lattner1daee8b2004-01-12 03:57:30 +0000874 Result.markOverdefined();
875 break;
876 }
877 }
878 }
879
880 // If we found a constant value here, then we know the instruction is
881 // constant despite the fact that the PHI nodes are overdefined.
882 if (Result.isConstant()) {
883 markConstant(IV, &I, Result.getConstant());
884 // Remember that this instruction is virtually using the PHI node
885 // operands.
886 UsersOfOverdefinedPHIs.insert(std::make_pair(PN1, &I));
887 UsersOfOverdefinedPHIs.insert(std::make_pair(PN2, &I));
888 return;
889 } else if (Result.isUndefined()) {
890 return;
891 }
892
893 // Okay, this really is overdefined now. Since we might have
894 // speculatively thought that this was not overdefined before, and
895 // added ourselves to the UsersOfOverdefinedPHIs list for the PHIs,
896 // make sure to clean out any entries that we put there, for
897 // efficiency.
898 std::multimap<PHINode*, Instruction*>::iterator It, E;
899 tie(It, E) = UsersOfOverdefinedPHIs.equal_range(PN1);
900 while (It != E) {
901 if (It->second == &I) {
902 UsersOfOverdefinedPHIs.erase(It++);
903 } else
904 ++It;
905 }
906 tie(It, E) = UsersOfOverdefinedPHIs.equal_range(PN2);
907 while (It != E) {
908 if (It->second == &I) {
909 UsersOfOverdefinedPHIs.erase(It++);
910 } else
911 ++It;
912 }
913 }
914
915 markOverdefined(IV, &I);
Chris Lattner2a632552002-04-18 15:13:15 +0000916 } else if (V1State.isConstant() && V2State.isConstant()) {
Owen Andersonfa5cbd62009-07-03 19:42:02 +0000917 markConstant(IV, &I,
Owen Andersonbaf3c402009-07-29 18:55:55 +0000918 ConstantExpr::get(I.getOpcode(), V1State.getConstant(),
Chris Lattnerb16689b2004-01-12 19:08:43 +0000919 V2State.getConstant()));
Chris Lattner2a632552002-04-18 15:13:15 +0000920 }
921}
Chris Lattner2a88bb72002-08-30 23:39:00 +0000922
Reid Spencere4d87aa2006-12-23 06:05:41 +0000923// Handle ICmpInst instruction...
924void SCCPSolver::visitCmpInst(CmpInst &I) {
925 LatticeVal &IV = ValueState[&I];
926 if (IV.isOverdefined()) return;
927
928 LatticeVal &V1State = getValueState(I.getOperand(0));
929 LatticeVal &V2State = getValueState(I.getOperand(1));
930
931 if (V1State.isOverdefined() || V2State.isOverdefined()) {
932 // If both operands are PHI nodes, it is possible that this instruction has
933 // a constant value, despite the fact that the PHI node doesn't. Check for
934 // this condition now.
935 if (PHINode *PN1 = dyn_cast<PHINode>(I.getOperand(0)))
936 if (PHINode *PN2 = dyn_cast<PHINode>(I.getOperand(1)))
937 if (PN1->getParent() == PN2->getParent()) {
938 // Since the two PHI nodes are in the same basic block, they must have
939 // entries for the same predecessors. Walk the predecessor list, and
940 // if all of the incoming values are constants, and the result of
941 // evaluating this expression with all incoming value pairs is the
942 // same, then this expression is a constant even though the PHI node
943 // is not a constant!
944 LatticeVal Result;
945 for (unsigned i = 0, e = PN1->getNumIncomingValues(); i != e; ++i) {
946 LatticeVal &In1 = getValueState(PN1->getIncomingValue(i));
947 BasicBlock *InBlock = PN1->getIncomingBlock(i);
948 LatticeVal &In2 =
949 getValueState(PN2->getIncomingValueForBlock(InBlock));
950
951 if (In1.isOverdefined() || In2.isOverdefined()) {
952 Result.markOverdefined();
953 break; // Cannot fold this operation over the PHI nodes!
954 } else if (In1.isConstant() && In2.isConstant()) {
Owen Andersonbaf3c402009-07-29 18:55:55 +0000955 Constant *V = ConstantExpr::getCompare(I.getPredicate(),
Reid Spencere4d87aa2006-12-23 06:05:41 +0000956 In1.getConstant(),
957 In2.getConstant());
958 if (Result.isUndefined())
959 Result.markConstant(V);
960 else if (Result.isConstant() && Result.getConstant() != V) {
961 Result.markOverdefined();
962 break;
963 }
964 }
965 }
966
967 // If we found a constant value here, then we know the instruction is
968 // constant despite the fact that the PHI nodes are overdefined.
969 if (Result.isConstant()) {
970 markConstant(IV, &I, Result.getConstant());
971 // Remember that this instruction is virtually using the PHI node
972 // operands.
973 UsersOfOverdefinedPHIs.insert(std::make_pair(PN1, &I));
974 UsersOfOverdefinedPHIs.insert(std::make_pair(PN2, &I));
975 return;
976 } else if (Result.isUndefined()) {
977 return;
978 }
979
980 // Okay, this really is overdefined now. Since we might have
981 // speculatively thought that this was not overdefined before, and
982 // added ourselves to the UsersOfOverdefinedPHIs list for the PHIs,
983 // make sure to clean out any entries that we put there, for
984 // efficiency.
985 std::multimap<PHINode*, Instruction*>::iterator It, E;
986 tie(It, E) = UsersOfOverdefinedPHIs.equal_range(PN1);
987 while (It != E) {
988 if (It->second == &I) {
989 UsersOfOverdefinedPHIs.erase(It++);
990 } else
991 ++It;
992 }
993 tie(It, E) = UsersOfOverdefinedPHIs.equal_range(PN2);
994 while (It != E) {
995 if (It->second == &I) {
996 UsersOfOverdefinedPHIs.erase(It++);
997 } else
998 ++It;
999 }
1000 }
1001
1002 markOverdefined(IV, &I);
1003 } else if (V1State.isConstant() && V2State.isConstant()) {
Owen Andersonbaf3c402009-07-29 18:55:55 +00001004 markConstant(IV, &I, ConstantExpr::getCompare(I.getPredicate(),
Reid Spencere4d87aa2006-12-23 06:05:41 +00001005 V1State.getConstant(),
1006 V2State.getConstant()));
1007 }
1008}
1009
Robert Bocchino56107e22006-01-10 19:05:05 +00001010void SCCPSolver::visitExtractElementInst(ExtractElementInst &I) {
Devang Patel67a821d2006-12-04 23:54:59 +00001011 // FIXME : SCCP does not handle vectors properly.
1012 markOverdefined(&I);
1013 return;
1014
1015#if 0
Robert Bocchino56107e22006-01-10 19:05:05 +00001016 LatticeVal &ValState = getValueState(I.getOperand(0));
1017 LatticeVal &IdxState = getValueState(I.getOperand(1));
1018
1019 if (ValState.isOverdefined() || IdxState.isOverdefined())
1020 markOverdefined(&I);
1021 else if(ValState.isConstant() && IdxState.isConstant())
1022 markConstant(&I, ConstantExpr::getExtractElement(ValState.getConstant(),
1023 IdxState.getConstant()));
Devang Patel67a821d2006-12-04 23:54:59 +00001024#endif
Robert Bocchino56107e22006-01-10 19:05:05 +00001025}
1026
Robert Bocchino8fcf01e2006-01-17 20:06:55 +00001027void SCCPSolver::visitInsertElementInst(InsertElementInst &I) {
Devang Patel67a821d2006-12-04 23:54:59 +00001028 // FIXME : SCCP does not handle vectors properly.
1029 markOverdefined(&I);
1030 return;
1031#if 0
Robert Bocchino8fcf01e2006-01-17 20:06:55 +00001032 LatticeVal &ValState = getValueState(I.getOperand(0));
1033 LatticeVal &EltState = getValueState(I.getOperand(1));
1034 LatticeVal &IdxState = getValueState(I.getOperand(2));
1035
1036 if (ValState.isOverdefined() || EltState.isOverdefined() ||
1037 IdxState.isOverdefined())
1038 markOverdefined(&I);
1039 else if(ValState.isConstant() && EltState.isConstant() &&
1040 IdxState.isConstant())
1041 markConstant(&I, ConstantExpr::getInsertElement(ValState.getConstant(),
1042 EltState.getConstant(),
1043 IdxState.getConstant()));
1044 else if (ValState.isUndefined() && EltState.isConstant() &&
Devang Patel67a821d2006-12-04 23:54:59 +00001045 IdxState.isConstant())
Chris Lattnere34e9a22007-04-14 23:32:02 +00001046 markConstant(&I,ConstantExpr::getInsertElement(UndefValue::get(I.getType()),
1047 EltState.getConstant(),
1048 IdxState.getConstant()));
Devang Patel67a821d2006-12-04 23:54:59 +00001049#endif
Robert Bocchino8fcf01e2006-01-17 20:06:55 +00001050}
1051
Chris Lattner543abdf2006-04-08 01:19:12 +00001052void SCCPSolver::visitShuffleVectorInst(ShuffleVectorInst &I) {
Devang Patel67a821d2006-12-04 23:54:59 +00001053 // FIXME : SCCP does not handle vectors properly.
1054 markOverdefined(&I);
1055 return;
1056#if 0
Chris Lattner543abdf2006-04-08 01:19:12 +00001057 LatticeVal &V1State = getValueState(I.getOperand(0));
1058 LatticeVal &V2State = getValueState(I.getOperand(1));
1059 LatticeVal &MaskState = getValueState(I.getOperand(2));
1060
1061 if (MaskState.isUndefined() ||
1062 (V1State.isUndefined() && V2State.isUndefined()))
1063 return; // Undefined output if mask or both inputs undefined.
1064
1065 if (V1State.isOverdefined() || V2State.isOverdefined() ||
1066 MaskState.isOverdefined()) {
1067 markOverdefined(&I);
1068 } else {
1069 // A mix of constant/undef inputs.
1070 Constant *V1 = V1State.isConstant() ?
1071 V1State.getConstant() : UndefValue::get(I.getType());
1072 Constant *V2 = V2State.isConstant() ?
1073 V2State.getConstant() : UndefValue::get(I.getType());
1074 Constant *Mask = MaskState.isConstant() ?
1075 MaskState.getConstant() : UndefValue::get(I.getOperand(2)->getType());
1076 markConstant(&I, ConstantExpr::getShuffleVector(V1, V2, Mask));
1077 }
Devang Patel67a821d2006-12-04 23:54:59 +00001078#endif
Chris Lattner543abdf2006-04-08 01:19:12 +00001079}
1080
Chris Lattner2a88bb72002-08-30 23:39:00 +00001081// Handle getelementptr instructions... if all operands are constants then we
1082// can turn this into a getelementptr ConstantExpr.
1083//
Chris Lattner82bec2c2004-11-15 04:44:20 +00001084void SCCPSolver::visitGetElementPtrInst(GetElementPtrInst &I) {
Chris Lattneref36dfd2004-11-15 05:03:30 +00001085 LatticeVal &IV = ValueState[&I];
Chris Lattnerc6a4d6a2004-01-12 04:29:41 +00001086 if (IV.isOverdefined()) return;
1087
Chris Lattnere777ff22007-02-02 20:51:48 +00001088 SmallVector<Constant*, 8> Operands;
Chris Lattner2a88bb72002-08-30 23:39:00 +00001089 Operands.reserve(I.getNumOperands());
1090
1091 for (unsigned i = 0, e = I.getNumOperands(); i != e; ++i) {
Chris Lattneref36dfd2004-11-15 05:03:30 +00001092 LatticeVal &State = getValueState(I.getOperand(i));
Chris Lattner2a88bb72002-08-30 23:39:00 +00001093 if (State.isUndefined())
1094 return; // Operands are not resolved yet...
1095 else if (State.isOverdefined()) {
Chris Lattnerc6a4d6a2004-01-12 04:29:41 +00001096 markOverdefined(IV, &I);
Chris Lattner2a88bb72002-08-30 23:39:00 +00001097 return;
1098 }
1099 assert(State.isConstant() && "Unknown state!");
1100 Operands.push_back(State.getConstant());
1101 }
1102
1103 Constant *Ptr = Operands[0];
1104 Operands.erase(Operands.begin()); // Erase the pointer from idx list...
1105
Owen Andersonbaf3c402009-07-29 18:55:55 +00001106 markConstant(IV, &I, ConstantExpr::getGetElementPtr(Ptr, &Operands[0],
Chris Lattnere777ff22007-02-02 20:51:48 +00001107 Operands.size()));
Chris Lattner2a88bb72002-08-30 23:39:00 +00001108}
Brian Gaeked0fde302003-11-11 22:41:34 +00001109
Chris Lattnerdd336d12004-12-11 05:15:59 +00001110void SCCPSolver::visitStoreInst(Instruction &SI) {
1111 if (TrackedGlobals.empty() || !isa<GlobalVariable>(SI.getOperand(1)))
1112 return;
1113 GlobalVariable *GV = cast<GlobalVariable>(SI.getOperand(1));
Chris Lattnerb59673e2007-02-02 20:38:30 +00001114 DenseMap<GlobalVariable*, LatticeVal>::iterator I = TrackedGlobals.find(GV);
Chris Lattnerdd336d12004-12-11 05:15:59 +00001115 if (I == TrackedGlobals.end() || I->second.isOverdefined()) return;
1116
1117 // Get the value we are storing into the global.
1118 LatticeVal &PtrVal = getValueState(SI.getOperand(0));
1119
1120 mergeInValue(I->second, GV, PtrVal);
1121 if (I->second.isOverdefined())
1122 TrackedGlobals.erase(I); // No need to keep tracking this!
1123}
1124
1125
Chris Lattnerc6a4d6a2004-01-12 04:29:41 +00001126// Handle load instructions. If the operand is a constant pointer to a constant
1127// global, we can replace the load with the loaded constant value!
Chris Lattner82bec2c2004-11-15 04:44:20 +00001128void SCCPSolver::visitLoadInst(LoadInst &I) {
Chris Lattneref36dfd2004-11-15 05:03:30 +00001129 LatticeVal &IV = ValueState[&I];
Chris Lattnerc6a4d6a2004-01-12 04:29:41 +00001130 if (IV.isOverdefined()) return;
1131
Chris Lattneref36dfd2004-11-15 05:03:30 +00001132 LatticeVal &PtrVal = getValueState(I.getOperand(0));
Chris Lattnerc6a4d6a2004-01-12 04:29:41 +00001133 if (PtrVal.isUndefined()) return; // The pointer is not resolved yet!
1134 if (PtrVal.isConstant() && !I.isVolatile()) {
1135 Value *Ptr = PtrVal.getConstant();
Christopher Lambb15147e2007-12-29 07:56:53 +00001136 // TODO: Consider a target hook for valid address spaces for this xform.
Chris Lattner8a67ac52009-08-30 20:06:40 +00001137 if (isa<ConstantPointerNull>(Ptr) && I.getPointerAddressSpace() == 0) {
Chris Lattnerc76d8032004-03-07 22:16:24 +00001138 // load null -> null
Owen Andersona7235ea2009-07-31 20:28:14 +00001139 markConstant(IV, &I, Constant::getNullValue(I.getType()));
Chris Lattnerc76d8032004-03-07 22:16:24 +00001140 return;
1141 }
Misha Brukmanfd939082005-04-21 23:48:37 +00001142
Chris Lattnerc6a4d6a2004-01-12 04:29:41 +00001143 // Transform load (constant global) into the value loaded.
Chris Lattnerdd336d12004-12-11 05:15:59 +00001144 if (GlobalVariable *GV = dyn_cast<GlobalVariable>(Ptr)) {
1145 if (GV->isConstant()) {
Duncan Sands64da9402009-03-21 21:27:31 +00001146 if (GV->hasDefinitiveInitializer()) {
Chris Lattnerdd336d12004-12-11 05:15:59 +00001147 markConstant(IV, &I, GV->getInitializer());
1148 return;
1149 }
1150 } else if (!TrackedGlobals.empty()) {
1151 // If we are tracking this global, merge in the known value for it.
Chris Lattnerb59673e2007-02-02 20:38:30 +00001152 DenseMap<GlobalVariable*, LatticeVal>::iterator It =
Chris Lattnerdd336d12004-12-11 05:15:59 +00001153 TrackedGlobals.find(GV);
1154 if (It != TrackedGlobals.end()) {
1155 mergeInValue(IV, &I, It->second);
1156 return;
1157 }
Chris Lattnerc6a4d6a2004-01-12 04:29:41 +00001158 }
Chris Lattnerdd336d12004-12-11 05:15:59 +00001159 }
Chris Lattnerc6a4d6a2004-01-12 04:29:41 +00001160
1161 // Transform load (constantexpr_GEP global, 0, ...) into the value loaded.
1162 if (ConstantExpr *CE = dyn_cast<ConstantExpr>(Ptr))
1163 if (CE->getOpcode() == Instruction::GetElementPtr)
Jeff Cohen9d809302005-04-23 21:38:35 +00001164 if (GlobalVariable *GV = dyn_cast<GlobalVariable>(CE->getOperand(0)))
Duncan Sands64da9402009-03-21 21:27:31 +00001165 if (GV->isConstant() && GV->hasDefinitiveInitializer())
Jeff Cohen9d809302005-04-23 21:38:35 +00001166 if (Constant *V =
Dan Gohmanc6f69e92009-10-05 16:36:26 +00001167 ConstantFoldLoadThroughGEPConstantExpr(GV->getInitializer(), CE)) {
Jeff Cohen9d809302005-04-23 21:38:35 +00001168 markConstant(IV, &I, V);
1169 return;
1170 }
Chris Lattnerc6a4d6a2004-01-12 04:29:41 +00001171 }
1172
1173 // Otherwise we cannot say for certain what value this load will produce.
1174 // Bail out.
1175 markOverdefined(IV, &I);
1176}
Chris Lattner58b7b082004-04-13 19:43:54 +00001177
Chris Lattner59acc7d2004-12-10 08:02:06 +00001178void SCCPSolver::visitCallSite(CallSite CS) {
1179 Function *F = CS.getCalledFunction();
Chris Lattner59acc7d2004-12-10 08:02:06 +00001180 Instruction *I = CS.getInstruction();
Chris Lattnerc6ee00b2008-04-23 05:38:20 +00001181
1182 // The common case is that we aren't tracking the callee, either because we
1183 // are not doing interprocedural analysis or the callee is indirect, or is
1184 // external. Handle these cases first.
Rafael Espindolabb46f522009-01-15 20:18:42 +00001185 if (F == 0 || !F->hasLocalLinkage()) {
Chris Lattnerc6ee00b2008-04-23 05:38:20 +00001186CallOverdefined:
1187 // Void return and not tracking callee, just bail.
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00001188 if (I->getType()->isVoidTy()) return;
Chris Lattnerc6ee00b2008-04-23 05:38:20 +00001189
1190 // Otherwise, if we have a single return value case, and if the function is
1191 // a declaration, maybe we can constant fold it.
1192 if (!isa<StructType>(I->getType()) && F && F->isDeclaration() &&
1193 canConstantFoldCallTo(F)) {
1194
1195 SmallVector<Constant*, 8> Operands;
1196 for (CallSite::arg_iterator AI = CS.arg_begin(), E = CS.arg_end();
1197 AI != E; ++AI) {
1198 LatticeVal &State = getValueState(*AI);
1199 if (State.isUndefined())
1200 return; // Operands are not resolved yet.
1201 else if (State.isOverdefined()) {
1202 markOverdefined(I);
1203 return;
1204 }
1205 assert(State.isConstant() && "Unknown state!");
1206 Operands.push_back(State.getConstant());
1207 }
1208
1209 // If we can constant fold this, mark the result of the call as a
1210 // constant.
Nick Lewyckye3f1fb12009-05-28 04:08:10 +00001211 if (Constant *C = ConstantFoldCall(F, Operands.data(), Operands.size())) {
Chris Lattnerc6ee00b2008-04-23 05:38:20 +00001212 markConstant(I, C);
1213 return;
1214 }
Chris Lattner58b7b082004-04-13 19:43:54 +00001215 }
Chris Lattnerc6ee00b2008-04-23 05:38:20 +00001216
1217 // Otherwise, we don't know anything about this call, mark it overdefined.
1218 markOverdefined(I);
1219 return;
Chris Lattner58b7b082004-04-13 19:43:54 +00001220 }
1221
Chris Lattnerc6ee00b2008-04-23 05:38:20 +00001222 // If this is a single/zero retval case, see if we're tracking the function.
Dan Gohmanc4b65ea2008-06-20 01:15:44 +00001223 DenseMap<Function*, LatticeVal>::iterator TFRVI = TrackedRetVals.find(F);
1224 if (TFRVI != TrackedRetVals.end()) {
Chris Lattnerc6ee00b2008-04-23 05:38:20 +00001225 // If so, propagate the return value of the callee into this call result.
1226 mergeInValue(I, TFRVI->second);
Dan Gohmanc4b65ea2008-06-20 01:15:44 +00001227 } else if (isa<StructType>(I->getType())) {
Chris Lattnerc6ee00b2008-04-23 05:38:20 +00001228 // Check to see if we're tracking this callee, if not, handle it in the
1229 // common path above.
Chris Lattnercf712de2008-08-23 23:36:38 +00001230 DenseMap<std::pair<Function*, unsigned>, LatticeVal>::iterator
1231 TMRVI = TrackedMultipleRetVals.find(std::make_pair(F, 0));
Chris Lattnerc6ee00b2008-04-23 05:38:20 +00001232 if (TMRVI == TrackedMultipleRetVals.end())
1233 goto CallOverdefined;
Torok Edwin2b6183d2009-10-20 15:15:09 +00001234
1235 // Need to mark as overdefined, otherwise it stays undefined which
1236 // creates extractvalue undef, <idx>
1237 markOverdefined(I);
Chris Lattnerc6ee00b2008-04-23 05:38:20 +00001238 // If we are tracking this callee, propagate the return values of the call
Dan Gohmanc4b65ea2008-06-20 01:15:44 +00001239 // into this call site. We do this by walking all the uses. Single-index
1240 // ExtractValueInst uses can be tracked; anything more complicated is
1241 // currently handled conservatively.
Chris Lattnerc6ee00b2008-04-23 05:38:20 +00001242 for (Value::use_iterator UI = I->use_begin(), E = I->use_end();
1243 UI != E; ++UI) {
Dan Gohmanc4b65ea2008-06-20 01:15:44 +00001244 if (ExtractValueInst *EVI = dyn_cast<ExtractValueInst>(*UI)) {
1245 if (EVI->getNumIndices() == 1) {
1246 mergeInValue(EVI,
Dan Gohman60ea2682008-06-20 16:41:17 +00001247 TrackedMultipleRetVals[std::make_pair(F, *EVI->idx_begin())]);
Dan Gohmanc4b65ea2008-06-20 01:15:44 +00001248 continue;
1249 }
1250 }
1251 // The aggregate value is used in a way not handled here. Assume nothing.
1252 markOverdefined(*UI);
Chris Lattnerc6ee00b2008-04-23 05:38:20 +00001253 }
Dan Gohmanc4b65ea2008-06-20 01:15:44 +00001254 } else {
1255 // Otherwise we're not tracking this callee, so handle it in the
1256 // common path above.
1257 goto CallOverdefined;
Chris Lattnerc6ee00b2008-04-23 05:38:20 +00001258 }
1259
1260 // Finally, if this is the first call to the function hit, mark its entry
1261 // block executable.
1262 if (!BBExecutable.count(F->begin()))
1263 MarkBlockExecutable(F->begin());
1264
1265 // Propagate information from this call site into the callee.
1266 CallSite::arg_iterator CAI = CS.arg_begin();
1267 for (Function::arg_iterator AI = F->arg_begin(), E = F->arg_end();
1268 AI != E; ++AI, ++CAI) {
1269 LatticeVal &IV = ValueState[AI];
Torok Edwinc3384992009-09-24 18:33:42 +00001270 if (AI->hasByValAttr() && !F->onlyReadsMemory()) {
Torok Edwin30a94e32009-09-24 09:47:18 +00001271 IV.markOverdefined();
1272 continue;
1273 }
Chris Lattnerc6ee00b2008-04-23 05:38:20 +00001274 if (!IV.isOverdefined())
1275 mergeInValue(IV, AI, getValueState(*CAI));
1276 }
Chris Lattner58b7b082004-04-13 19:43:54 +00001277}
Chris Lattner82bec2c2004-11-15 04:44:20 +00001278
Chris Lattner82bec2c2004-11-15 04:44:20 +00001279void SCCPSolver::Solve() {
1280 // Process the work lists until they are empty!
Misha Brukmanfd939082005-04-21 23:48:37 +00001281 while (!BBWorkList.empty() || !InstWorkList.empty() ||
Jeff Cohen9d809302005-04-23 21:38:35 +00001282 !OverdefinedInstWorkList.empty()) {
Chris Lattner82bec2c2004-11-15 04:44:20 +00001283 // Process the instruction work list...
1284 while (!OverdefinedInstWorkList.empty()) {
Chris Lattner59acc7d2004-12-10 08:02:06 +00001285 Value *I = OverdefinedInstWorkList.back();
Chris Lattner82bec2c2004-11-15 04:44:20 +00001286 OverdefinedInstWorkList.pop_back();
1287
Dan Gohman87325772009-08-17 15:25:05 +00001288 DEBUG(errs() << "\nPopped off OI-WL: " << *I << '\n');
Misha Brukmanfd939082005-04-21 23:48:37 +00001289
Chris Lattner82bec2c2004-11-15 04:44:20 +00001290 // "I" got into the work list because it either made the transition from
1291 // bottom to constant
1292 //
1293 // Anything on this worklist that is overdefined need not be visited
1294 // since all of its users will have already been marked as overdefined
1295 // Update all of the users of this instruction's value...
1296 //
1297 for (Value::use_iterator UI = I->use_begin(), E = I->use_end();
1298 UI != E; ++UI)
1299 OperandChangedState(*UI);
1300 }
1301 // Process the instruction work list...
1302 while (!InstWorkList.empty()) {
Chris Lattner59acc7d2004-12-10 08:02:06 +00001303 Value *I = InstWorkList.back();
Chris Lattner82bec2c2004-11-15 04:44:20 +00001304 InstWorkList.pop_back();
1305
Dan Gohman87325772009-08-17 15:25:05 +00001306 DEBUG(errs() << "\nPopped off I-WL: " << *I << '\n');
Misha Brukmanfd939082005-04-21 23:48:37 +00001307
Chris Lattner82bec2c2004-11-15 04:44:20 +00001308 // "I" got into the work list because it either made the transition from
1309 // bottom to constant
1310 //
1311 // Anything on this worklist that is overdefined need not be visited
1312 // since all of its users will have already been marked as overdefined.
1313 // Update all of the users of this instruction's value...
1314 //
1315 if (!getValueState(I).isOverdefined())
1316 for (Value::use_iterator UI = I->use_begin(), E = I->use_end();
1317 UI != E; ++UI)
1318 OperandChangedState(*UI);
1319 }
Misha Brukmanfd939082005-04-21 23:48:37 +00001320
Chris Lattner82bec2c2004-11-15 04:44:20 +00001321 // Process the basic block work list...
1322 while (!BBWorkList.empty()) {
1323 BasicBlock *BB = BBWorkList.back();
1324 BBWorkList.pop_back();
Misha Brukmanfd939082005-04-21 23:48:37 +00001325
Dan Gohman87325772009-08-17 15:25:05 +00001326 DEBUG(errs() << "\nPopped off BBWL: " << *BB << '\n');
Misha Brukmanfd939082005-04-21 23:48:37 +00001327
Chris Lattner82bec2c2004-11-15 04:44:20 +00001328 // Notify all instructions in this basic block that they are newly
1329 // executable.
1330 visit(BB);
1331 }
1332 }
1333}
1334
Chris Lattner3bad2532006-12-20 06:21:33 +00001335/// ResolvedUndefsIn - While solving the dataflow for a function, we assume
Chris Lattnerfc6ac502004-12-10 20:41:50 +00001336/// that branches on undef values cannot reach any of their successors.
1337/// However, this is not a safe assumption. After we solve dataflow, this
1338/// method should be use to handle this. If this returns true, the solver
1339/// should be rerun.
Chris Lattnerd2d86702006-10-22 05:59:17 +00001340///
1341/// This method handles this by finding an unresolved branch and marking it one
1342/// of the edges from the block as being feasible, even though the condition
1343/// doesn't say it would otherwise be. This allows SCCP to find the rest of the
1344/// CFG and only slightly pessimizes the analysis results (by marking one,
Chris Lattner3bad2532006-12-20 06:21:33 +00001345/// potentially infeasible, edge feasible). This cannot usefully modify the
Chris Lattnerd2d86702006-10-22 05:59:17 +00001346/// constraints on the condition of the branch, as that would impact other users
1347/// of the value.
Chris Lattner3bad2532006-12-20 06:21:33 +00001348///
1349/// This scan also checks for values that use undefs, whose results are actually
1350/// defined. For example, 'zext i8 undef to i32' should produce all zeros
1351/// conservatively, as "(zext i8 X -> i32) & 0xFF00" must always return zero,
1352/// even if X isn't defined.
1353bool SCCPSolver::ResolvedUndefsIn(Function &F) {
Chris Lattnerd2d86702006-10-22 05:59:17 +00001354 for (Function::iterator BB = F.begin(), E = F.end(); BB != E; ++BB) {
1355 if (!BBExecutable.count(BB))
1356 continue;
Chris Lattner3bad2532006-12-20 06:21:33 +00001357
1358 for (BasicBlock::iterator I = BB->begin(), E = BB->end(); I != E; ++I) {
1359 // Look for instructions which produce undef values.
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00001360 if (I->getType()->isVoidTy()) continue;
Chris Lattner3bad2532006-12-20 06:21:33 +00001361
1362 LatticeVal &LV = getValueState(I);
1363 if (!LV.isUndefined()) continue;
1364
1365 // Get the lattice values of the first two operands for use below.
1366 LatticeVal &Op0LV = getValueState(I->getOperand(0));
1367 LatticeVal Op1LV;
1368 if (I->getNumOperands() == 2) {
1369 // If this is a two-operand instruction, and if both operands are
1370 // undefs, the result stays undef.
1371 Op1LV = getValueState(I->getOperand(1));
1372 if (Op0LV.isUndefined() && Op1LV.isUndefined())
1373 continue;
1374 }
1375
1376 // If this is an instructions whose result is defined even if the input is
1377 // not fully defined, propagate the information.
1378 const Type *ITy = I->getType();
1379 switch (I->getOpcode()) {
1380 default: break; // Leave the instruction as an undef.
1381 case Instruction::ZExt:
1382 // After a zero extend, we know the top part is zero. SExt doesn't have
1383 // to be handled here, because we don't know whether the top part is 1's
1384 // or 0's.
1385 assert(Op0LV.isUndefined());
Owen Andersona7235ea2009-07-31 20:28:14 +00001386 markForcedConstant(LV, I, Constant::getNullValue(ITy));
Chris Lattner3bad2532006-12-20 06:21:33 +00001387 return true;
1388 case Instruction::Mul:
1389 case Instruction::And:
1390 // undef * X -> 0. X could be zero.
1391 // undef & X -> 0. X could be zero.
Owen Andersona7235ea2009-07-31 20:28:14 +00001392 markForcedConstant(LV, I, Constant::getNullValue(ITy));
Chris Lattner3bad2532006-12-20 06:21:33 +00001393 return true;
1394
1395 case Instruction::Or:
1396 // undef | X -> -1. X could be -1.
Reid Spencer9d6565a2007-02-15 02:26:10 +00001397 if (const VectorType *PTy = dyn_cast<VectorType>(ITy))
Owen Andersonfa5cbd62009-07-03 19:42:02 +00001398 markForcedConstant(LV, I,
Owen Andersona7235ea2009-07-31 20:28:14 +00001399 Constant::getAllOnesValue(PTy));
Chris Lattner7ce2f8b2007-01-04 02:12:40 +00001400 else
Owen Andersona7235ea2009-07-31 20:28:14 +00001401 markForcedConstant(LV, I, Constant::getAllOnesValue(ITy));
Chris Lattner7ce2f8b2007-01-04 02:12:40 +00001402 return true;
Chris Lattner3bad2532006-12-20 06:21:33 +00001403
1404 case Instruction::SDiv:
1405 case Instruction::UDiv:
1406 case Instruction::SRem:
1407 case Instruction::URem:
1408 // X / undef -> undef. No change.
1409 // X % undef -> undef. No change.
1410 if (Op1LV.isUndefined()) break;
1411
1412 // undef / X -> 0. X could be maxint.
1413 // undef % X -> 0. X could be 1.
Owen Andersona7235ea2009-07-31 20:28:14 +00001414 markForcedConstant(LV, I, Constant::getNullValue(ITy));
Chris Lattner3bad2532006-12-20 06:21:33 +00001415 return true;
1416
1417 case Instruction::AShr:
1418 // undef >>s X -> undef. No change.
1419 if (Op0LV.isUndefined()) break;
1420
1421 // X >>s undef -> X. X could be 0, X could have the high-bit known set.
1422 if (Op0LV.isConstant())
1423 markForcedConstant(LV, I, Op0LV.getConstant());
1424 else
1425 markOverdefined(LV, I);
1426 return true;
1427 case Instruction::LShr:
1428 case Instruction::Shl:
1429 // undef >> X -> undef. No change.
1430 // undef << X -> undef. No change.
1431 if (Op0LV.isUndefined()) break;
1432
1433 // X >> undef -> 0. X could be 0.
1434 // X << undef -> 0. X could be 0.
Owen Andersona7235ea2009-07-31 20:28:14 +00001435 markForcedConstant(LV, I, Constant::getNullValue(ITy));
Chris Lattner3bad2532006-12-20 06:21:33 +00001436 return true;
1437 case Instruction::Select:
1438 // undef ? X : Y -> X or Y. There could be commonality between X/Y.
1439 if (Op0LV.isUndefined()) {
1440 if (!Op1LV.isConstant()) // Pick the constant one if there is any.
1441 Op1LV = getValueState(I->getOperand(2));
1442 } else if (Op1LV.isUndefined()) {
1443 // c ? undef : undef -> undef. No change.
1444 Op1LV = getValueState(I->getOperand(2));
1445 if (Op1LV.isUndefined())
1446 break;
1447 // Otherwise, c ? undef : x -> x.
1448 } else {
1449 // Leave Op1LV as Operand(1)'s LatticeValue.
1450 }
1451
1452 if (Op1LV.isConstant())
1453 markForcedConstant(LV, I, Op1LV.getConstant());
1454 else
1455 markOverdefined(LV, I);
1456 return true;
Chris Lattner60301602008-05-24 03:59:33 +00001457 case Instruction::Call:
1458 // If a call has an undef result, it is because it is constant foldable
1459 // but one of the inputs was undef. Just force the result to
1460 // overdefined.
1461 markOverdefined(LV, I);
1462 return true;
Chris Lattner3bad2532006-12-20 06:21:33 +00001463 }
1464 }
Chris Lattnerd2d86702006-10-22 05:59:17 +00001465
1466 TerminatorInst *TI = BB->getTerminator();
1467 if (BranchInst *BI = dyn_cast<BranchInst>(TI)) {
1468 if (!BI->isConditional()) continue;
1469 if (!getValueState(BI->getCondition()).isUndefined())
1470 continue;
1471 } else if (SwitchInst *SI = dyn_cast<SwitchInst>(TI)) {
Dale Johannesen9bca5832008-05-23 01:01:31 +00001472 if (SI->getNumSuccessors()<2) // no cases
1473 continue;
Chris Lattnerd2d86702006-10-22 05:59:17 +00001474 if (!getValueState(SI->getCondition()).isUndefined())
1475 continue;
1476 } else {
1477 continue;
Chris Lattnerfc6ac502004-12-10 20:41:50 +00001478 }
Chris Lattnerd2d86702006-10-22 05:59:17 +00001479
Chris Lattner05bb7892008-01-28 00:32:30 +00001480 // If the edge to the second successor isn't thought to be feasible yet,
1481 // mark it so now. We pick the second one so that this goes to some
1482 // enumerated value in a switch instead of going to the default destination.
1483 if (KnownFeasibleEdges.count(Edge(BB, TI->getSuccessor(1))))
Chris Lattnerd2d86702006-10-22 05:59:17 +00001484 continue;
1485
1486 // Otherwise, it isn't already thought to be feasible. Mark it as such now
1487 // and return. This will make other blocks reachable, which will allow new
1488 // values to be discovered and existing ones to be moved in the lattice.
Chris Lattner05bb7892008-01-28 00:32:30 +00001489 markEdgeExecutable(BB, TI->getSuccessor(1));
1490
1491 // This must be a conditional branch of switch on undef. At this point,
1492 // force the old terminator to branch to the first successor. This is
1493 // required because we are now influencing the dataflow of the function with
1494 // the assumption that this edge is taken. If we leave the branch condition
1495 // as undef, then further analysis could think the undef went another way
1496 // leading to an inconsistent set of conclusions.
1497 if (BranchInst *BI = dyn_cast<BranchInst>(TI)) {
Owen Anderson5defacc2009-07-31 17:39:07 +00001498 BI->setCondition(ConstantInt::getFalse(*Context));
Chris Lattner05bb7892008-01-28 00:32:30 +00001499 } else {
1500 SwitchInst *SI = cast<SwitchInst>(TI);
1501 SI->setCondition(SI->getCaseValue(1));
1502 }
1503
Chris Lattnerd2d86702006-10-22 05:59:17 +00001504 return true;
1505 }
Chris Lattnerdade2d22004-12-11 06:05:53 +00001506
Chris Lattnerd2d86702006-10-22 05:59:17 +00001507 return false;
Chris Lattnerfc6ac502004-12-10 20:41:50 +00001508}
1509
Chris Lattner82bec2c2004-11-15 04:44:20 +00001510
1511namespace {
Chris Lattner14051812004-11-15 07:15:04 +00001512 //===--------------------------------------------------------------------===//
Chris Lattner82bec2c2004-11-15 04:44:20 +00001513 //
Chris Lattner14051812004-11-15 07:15:04 +00001514 /// SCCP Class - This class uses the SCCPSolver to implement a per-function
Reid Spenceree5d25e2006-12-31 22:26:06 +00001515 /// Sparse Conditional Constant Propagator.
Chris Lattner14051812004-11-15 07:15:04 +00001516 ///
Chris Lattner3e8b6632009-09-02 06:11:42 +00001517 struct SCCP : public FunctionPass {
Nick Lewyckyecd94c82007-05-06 13:37:16 +00001518 static char ID; // Pass identification, replacement for typeid
Dan Gohmanae73dc12008-09-04 17:05:41 +00001519 SCCP() : FunctionPass(&ID) {}
Devang Patel794fd752007-05-01 21:15:47 +00001520
Chris Lattner14051812004-11-15 07:15:04 +00001521 // runOnFunction - Run the Sparse Conditional Constant Propagation
1522 // algorithm, and return true if the function was modified.
1523 //
1524 bool runOnFunction(Function &F);
Misha Brukmanfd939082005-04-21 23:48:37 +00001525
Chris Lattner14051812004-11-15 07:15:04 +00001526 virtual void getAnalysisUsage(AnalysisUsage &AU) const {
1527 AU.setPreservesCFG();
1528 }
1529 };
Chris Lattner82bec2c2004-11-15 04:44:20 +00001530} // end anonymous namespace
1531
Dan Gohman844731a2008-05-13 00:00:25 +00001532char SCCP::ID = 0;
1533static RegisterPass<SCCP>
1534X("sccp", "Sparse Conditional Constant Propagation");
Chris Lattner82bec2c2004-11-15 04:44:20 +00001535
1536// createSCCPPass - This is the public interface to this file...
1537FunctionPass *llvm::createSCCPPass() {
1538 return new SCCP();
1539}
1540
1541
Chris Lattner82bec2c2004-11-15 04:44:20 +00001542// runOnFunction() - Run the Sparse Conditional Constant Propagation algorithm,
1543// and return true if the function was modified.
1544//
1545bool SCCP::runOnFunction(Function &F) {
Daniel Dunbar93b67e42009-07-26 07:49:05 +00001546 DEBUG(errs() << "SCCP on function '" << F.getName() << "'\n");
Chris Lattner82bec2c2004-11-15 04:44:20 +00001547 SCCPSolver Solver;
Owen Andersone922c022009-07-22 00:24:57 +00001548 Solver.setContext(&F.getContext());
Chris Lattner82bec2c2004-11-15 04:44:20 +00001549
1550 // Mark the first block of the function as being executable.
1551 Solver.MarkBlockExecutable(F.begin());
1552
Chris Lattner7e529e42004-11-15 05:45:33 +00001553 // Mark all arguments to the function as being overdefined.
Chris Lattnere34e9a22007-04-14 23:32:02 +00001554 for (Function::arg_iterator AI = F.arg_begin(), E = F.arg_end(); AI != E;++AI)
Chris Lattner57939df2007-03-04 04:50:21 +00001555 Solver.markOverdefined(AI);
Chris Lattner7e529e42004-11-15 05:45:33 +00001556
Chris Lattner82bec2c2004-11-15 04:44:20 +00001557 // Solve for constants.
Chris Lattner3bad2532006-12-20 06:21:33 +00001558 bool ResolvedUndefs = true;
1559 while (ResolvedUndefs) {
Chris Lattnerfc6ac502004-12-10 20:41:50 +00001560 Solver.Solve();
Daniel Dunbar93b67e42009-07-26 07:49:05 +00001561 DEBUG(errs() << "RESOLVING UNDEFs\n");
Chris Lattner3bad2532006-12-20 06:21:33 +00001562 ResolvedUndefs = Solver.ResolvedUndefsIn(F);
Chris Lattnerfc6ac502004-12-10 20:41:50 +00001563 }
Chris Lattner82bec2c2004-11-15 04:44:20 +00001564
Chris Lattner7e529e42004-11-15 05:45:33 +00001565 bool MadeChanges = false;
1566
1567 // If we decided that there are basic blocks that are dead in this function,
1568 // delete their contents now. Note that we cannot actually delete the blocks,
1569 // as we cannot modify the CFG of the function.
1570 //
Chris Lattnercf712de2008-08-23 23:36:38 +00001571 SmallVector<Instruction*, 512> Insts;
Bill Wendling7a7cf6b2008-08-14 23:05:24 +00001572 std::map<Value*, LatticeVal> &Values = Solver.getValueMapping();
Chris Lattner57939df2007-03-04 04:50:21 +00001573
Chris Lattner7e529e42004-11-15 05:45:33 +00001574 for (Function::iterator BB = F.begin(), E = F.end(); BB != E; ++BB)
Chris Lattner7eb01bf2008-08-23 23:39:31 +00001575 if (!Solver.isBlockExecutable(BB)) {
Daniel Dunbar93b67e42009-07-26 07:49:05 +00001576 DEBUG(errs() << " BasicBlock Dead:" << *BB);
Chris Lattnerb77d5d82004-11-15 07:02:42 +00001577 ++NumDeadBlocks;
1578
Chris Lattner7e529e42004-11-15 05:45:33 +00001579 // Delete the instructions backwards, as it has a reduced likelihood of
1580 // having to update as many def-use and use-def chains.
Chris Lattner7e529e42004-11-15 05:45:33 +00001581 for (BasicBlock::iterator I = BB->begin(), E = BB->getTerminator();
1582 I != E; ++I)
1583 Insts.push_back(I);
1584 while (!Insts.empty()) {
1585 Instruction *I = Insts.back();
1586 Insts.pop_back();
1587 if (!I->use_empty())
Owen Anderson9e9a0d52009-07-30 23:03:37 +00001588 I->replaceAllUsesWith(UndefValue::get(I->getType()));
Chris Lattner7e529e42004-11-15 05:45:33 +00001589 BB->getInstList().erase(I);
1590 MadeChanges = true;
Chris Lattnerb77d5d82004-11-15 07:02:42 +00001591 ++NumInstRemoved;
Chris Lattner7e529e42004-11-15 05:45:33 +00001592 }
Chris Lattner59acc7d2004-12-10 08:02:06 +00001593 } else {
1594 // Iterate over all of the instructions in a function, replacing them with
1595 // constants if we have found them to be of constant values.
1596 //
1597 for (BasicBlock::iterator BI = BB->begin(), E = BB->end(); BI != E; ) {
1598 Instruction *Inst = BI++;
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00001599 if (Inst->getType()->isVoidTy() || isa<TerminatorInst>(Inst))
Chris Lattnerf4023a12008-04-24 00:16:28 +00001600 continue;
1601
1602 LatticeVal &IV = Values[Inst];
1603 if (!IV.isConstant() && !IV.isUndefined())
1604 continue;
1605
1606 Constant *Const = IV.isConstant()
Owen Anderson9e9a0d52009-07-30 23:03:37 +00001607 ? IV.getConstant() : UndefValue::get(Inst->getType());
Daniel Dunbar93b67e42009-07-26 07:49:05 +00001608 DEBUG(errs() << " Constant: " << *Const << " = " << *Inst);
Misha Brukmanfd939082005-04-21 23:48:37 +00001609
Chris Lattnerf4023a12008-04-24 00:16:28 +00001610 // Replaces all of the uses of a variable with uses of the constant.
1611 Inst->replaceAllUsesWith(Const);
1612
1613 // Delete the instruction.
1614 Inst->eraseFromParent();
1615
1616 // Hey, we just changed something!
1617 MadeChanges = true;
1618 ++NumInstRemoved;
Chris Lattner82bec2c2004-11-15 04:44:20 +00001619 }
1620 }
1621
1622 return MadeChanges;
1623}
Chris Lattner59acc7d2004-12-10 08:02:06 +00001624
1625namespace {
Chris Lattner59acc7d2004-12-10 08:02:06 +00001626 //===--------------------------------------------------------------------===//
1627 //
1628 /// IPSCCP Class - This class implements interprocedural Sparse Conditional
1629 /// Constant Propagation.
1630 ///
Chris Lattner3e8b6632009-09-02 06:11:42 +00001631 struct IPSCCP : public ModulePass {
Devang Patel19974732007-05-03 01:11:54 +00001632 static char ID;
Dan Gohmanae73dc12008-09-04 17:05:41 +00001633 IPSCCP() : ModulePass(&ID) {}
Chris Lattner59acc7d2004-12-10 08:02:06 +00001634 bool runOnModule(Module &M);
1635 };
Chris Lattner59acc7d2004-12-10 08:02:06 +00001636} // end anonymous namespace
1637
Dan Gohman844731a2008-05-13 00:00:25 +00001638char IPSCCP::ID = 0;
1639static RegisterPass<IPSCCP>
1640Y("ipsccp", "Interprocedural Sparse Conditional Constant Propagation");
1641
Chris Lattner59acc7d2004-12-10 08:02:06 +00001642// createIPSCCPPass - This is the public interface to this file...
1643ModulePass *llvm::createIPSCCPPass() {
1644 return new IPSCCP();
1645}
1646
1647
1648static bool AddressIsTaken(GlobalValue *GV) {
Chris Lattner7d27fc02005-04-19 19:16:19 +00001649 // Delete any dead constantexpr klingons.
1650 GV->removeDeadConstantUsers();
1651
Chris Lattner59acc7d2004-12-10 08:02:06 +00001652 for (Value::use_iterator UI = GV->use_begin(), E = GV->use_end();
1653 UI != E; ++UI)
1654 if (StoreInst *SI = dyn_cast<StoreInst>(*UI)) {
Chris Lattnerdd336d12004-12-11 05:15:59 +00001655 if (SI->getOperand(0) == GV || SI->isVolatile())
1656 return true; // Storing addr of GV.
Chris Lattner59acc7d2004-12-10 08:02:06 +00001657 } else if (isa<InvokeInst>(*UI) || isa<CallInst>(*UI)) {
1658 // Make sure we are calling the function, not passing the address.
1659 CallSite CS = CallSite::get(cast<Instruction>(*UI));
Nick Lewyckyaf386132008-11-03 03:49:14 +00001660 if (CS.hasArgument(GV))
1661 return true;
Chris Lattnerdd336d12004-12-11 05:15:59 +00001662 } else if (LoadInst *LI = dyn_cast<LoadInst>(*UI)) {
1663 if (LI->isVolatile())
1664 return true;
1665 } else {
Chris Lattner59acc7d2004-12-10 08:02:06 +00001666 return true;
1667 }
1668 return false;
1669}
1670
1671bool IPSCCP::runOnModule(Module &M) {
Owen Andersone922c022009-07-22 00:24:57 +00001672 LLVMContext *Context = &M.getContext();
Owen Anderson001dbfe2009-07-16 18:04:31 +00001673
Chris Lattner59acc7d2004-12-10 08:02:06 +00001674 SCCPSolver Solver;
Owen Anderson001dbfe2009-07-16 18:04:31 +00001675 Solver.setContext(Context);
Chris Lattner59acc7d2004-12-10 08:02:06 +00001676
1677 // Loop over all functions, marking arguments to those with their addresses
1678 // taken or that are external as overdefined.
1679 //
Chris Lattner59acc7d2004-12-10 08:02:06 +00001680 for (Module::iterator F = M.begin(), E = M.end(); F != E; ++F)
Rafael Espindolabb46f522009-01-15 20:18:42 +00001681 if (!F->hasLocalLinkage() || AddressIsTaken(F)) {
Reid Spencer5cbf9852007-01-30 20:08:39 +00001682 if (!F->isDeclaration())
Chris Lattner59acc7d2004-12-10 08:02:06 +00001683 Solver.MarkBlockExecutable(F->begin());
Chris Lattner7d27fc02005-04-19 19:16:19 +00001684 for (Function::arg_iterator AI = F->arg_begin(), E = F->arg_end();
1685 AI != E; ++AI)
Chris Lattner57939df2007-03-04 04:50:21 +00001686 Solver.markOverdefined(AI);
Chris Lattner59acc7d2004-12-10 08:02:06 +00001687 } else {
1688 Solver.AddTrackedFunction(F);
1689 }
1690
Chris Lattnerdd336d12004-12-11 05:15:59 +00001691 // Loop over global variables. We inform the solver about any internal global
1692 // variables that do not have their 'addresses taken'. If they don't have
1693 // their addresses taken, we can propagate constants through them.
Chris Lattner7d27fc02005-04-19 19:16:19 +00001694 for (Module::global_iterator G = M.global_begin(), E = M.global_end();
1695 G != E; ++G)
Rafael Espindolabb46f522009-01-15 20:18:42 +00001696 if (!G->isConstant() && G->hasLocalLinkage() && !AddressIsTaken(G))
Chris Lattnerdd336d12004-12-11 05:15:59 +00001697 Solver.TrackValueOfGlobalVariable(G);
1698
Chris Lattner59acc7d2004-12-10 08:02:06 +00001699 // Solve for constants.
Chris Lattner3bad2532006-12-20 06:21:33 +00001700 bool ResolvedUndefs = true;
1701 while (ResolvedUndefs) {
Chris Lattnerfc6ac502004-12-10 20:41:50 +00001702 Solver.Solve();
1703
Daniel Dunbar93b67e42009-07-26 07:49:05 +00001704 DEBUG(errs() << "RESOLVING UNDEFS\n");
Chris Lattner3bad2532006-12-20 06:21:33 +00001705 ResolvedUndefs = false;
Chris Lattnerfc6ac502004-12-10 20:41:50 +00001706 for (Module::iterator F = M.begin(), E = M.end(); F != E; ++F)
Chris Lattner3bad2532006-12-20 06:21:33 +00001707 ResolvedUndefs |= Solver.ResolvedUndefsIn(*F);
Chris Lattnerfc6ac502004-12-10 20:41:50 +00001708 }
Chris Lattner59acc7d2004-12-10 08:02:06 +00001709
1710 bool MadeChanges = false;
1711
1712 // Iterate over all of the instructions in the module, replacing them with
1713 // constants if we have found them to be of constant values.
1714 //
Chris Lattnercf712de2008-08-23 23:36:38 +00001715 SmallVector<Instruction*, 512> Insts;
1716 SmallVector<BasicBlock*, 512> BlocksToErase;
Bill Wendling7a7cf6b2008-08-14 23:05:24 +00001717 std::map<Value*, LatticeVal> &Values = Solver.getValueMapping();
Chris Lattner1c1f1122007-02-02 21:15:06 +00001718
Chris Lattner59acc7d2004-12-10 08:02:06 +00001719 for (Module::iterator F = M.begin(), E = M.end(); F != E; ++F) {
Chris Lattner7d27fc02005-04-19 19:16:19 +00001720 for (Function::arg_iterator AI = F->arg_begin(), E = F->arg_end();
1721 AI != E; ++AI)
Chris Lattner59acc7d2004-12-10 08:02:06 +00001722 if (!AI->use_empty()) {
1723 LatticeVal &IV = Values[AI];
1724 if (IV.isConstant() || IV.isUndefined()) {
1725 Constant *CST = IV.isConstant() ?
Owen Anderson9e9a0d52009-07-30 23:03:37 +00001726 IV.getConstant() : UndefValue::get(AI->getType());
Daniel Dunbar93b67e42009-07-26 07:49:05 +00001727 DEBUG(errs() << "*** Arg " << *AI << " = " << *CST <<"\n");
Misha Brukmanfd939082005-04-21 23:48:37 +00001728
Chris Lattner59acc7d2004-12-10 08:02:06 +00001729 // Replaces all of the uses of a variable with uses of the
1730 // constant.
1731 AI->replaceAllUsesWith(CST);
1732 ++IPNumArgsElimed;
1733 }
1734 }
1735
1736 for (Function::iterator BB = F->begin(), E = F->end(); BB != E; ++BB)
Chris Lattner7eb01bf2008-08-23 23:39:31 +00001737 if (!Solver.isBlockExecutable(BB)) {
Daniel Dunbar93b67e42009-07-26 07:49:05 +00001738 DEBUG(errs() << " BasicBlock Dead:" << *BB);
Chris Lattner59acc7d2004-12-10 08:02:06 +00001739 ++IPNumDeadBlocks;
Chris Lattnerfc6ac502004-12-10 20:41:50 +00001740
Chris Lattner59acc7d2004-12-10 08:02:06 +00001741 // Delete the instructions backwards, as it has a reduced likelihood of
1742 // having to update as many def-use and use-def chains.
Chris Lattner5f9e8b42004-12-10 22:29:08 +00001743 TerminatorInst *TI = BB->getTerminator();
1744 for (BasicBlock::iterator I = BB->begin(), E = TI; I != E; ++I)
Chris Lattner59acc7d2004-12-10 08:02:06 +00001745 Insts.push_back(I);
Chris Lattner5f9e8b42004-12-10 22:29:08 +00001746
Chris Lattner59acc7d2004-12-10 08:02:06 +00001747 while (!Insts.empty()) {
1748 Instruction *I = Insts.back();
1749 Insts.pop_back();
1750 if (!I->use_empty())
Owen Anderson9e9a0d52009-07-30 23:03:37 +00001751 I->replaceAllUsesWith(UndefValue::get(I->getType()));
Chris Lattner59acc7d2004-12-10 08:02:06 +00001752 BB->getInstList().erase(I);
1753 MadeChanges = true;
1754 ++IPNumInstRemoved;
1755 }
Misha Brukmanfd939082005-04-21 23:48:37 +00001756
Chris Lattner5f9e8b42004-12-10 22:29:08 +00001757 for (unsigned i = 0, e = TI->getNumSuccessors(); i != e; ++i) {
1758 BasicBlock *Succ = TI->getSuccessor(i);
Dan Gohmancb406c22007-10-03 19:26:29 +00001759 if (!Succ->empty() && isa<PHINode>(Succ->begin()))
Chris Lattner5f9e8b42004-12-10 22:29:08 +00001760 TI->getSuccessor(i)->removePredecessor(BB);
1761 }
Chris Lattner0417feb2004-12-11 02:53:57 +00001762 if (!TI->use_empty())
Owen Anderson9e9a0d52009-07-30 23:03:37 +00001763 TI->replaceAllUsesWith(UndefValue::get(TI->getType()));
Chris Lattner5f9e8b42004-12-10 22:29:08 +00001764 BB->getInstList().erase(TI);
1765
Chris Lattner864737b2004-12-11 05:32:19 +00001766 if (&*BB != &F->front())
1767 BlocksToErase.push_back(BB);
1768 else
Owen Anderson1d0be152009-08-13 21:58:54 +00001769 new UnreachableInst(M.getContext(), BB);
Chris Lattner864737b2004-12-11 05:32:19 +00001770
Chris Lattner59acc7d2004-12-10 08:02:06 +00001771 } else {
1772 for (BasicBlock::iterator BI = BB->begin(), E = BB->end(); BI != E; ) {
1773 Instruction *Inst = BI++;
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00001774 if (Inst->getType()->isVoidTy())
Chris Lattnereb5f4092008-04-24 00:21:50 +00001775 continue;
1776
1777 LatticeVal &IV = Values[Inst];
1778 if (!IV.isConstant() && !IV.isUndefined())
1779 continue;
1780
1781 Constant *Const = IV.isConstant()
Owen Anderson9e9a0d52009-07-30 23:03:37 +00001782 ? IV.getConstant() : UndefValue::get(Inst->getType());
Daniel Dunbar93b67e42009-07-26 07:49:05 +00001783 DEBUG(errs() << " Constant: " << *Const << " = " << *Inst);
Misha Brukmanfd939082005-04-21 23:48:37 +00001784
Chris Lattnereb5f4092008-04-24 00:21:50 +00001785 // Replaces all of the uses of a variable with uses of the
1786 // constant.
1787 Inst->replaceAllUsesWith(Const);
1788
1789 // Delete the instruction.
Chris Lattnerd9d46242009-01-14 21:01:16 +00001790 if (!isa<CallInst>(Inst) && !isa<TerminatorInst>(Inst))
Chris Lattnereb5f4092008-04-24 00:21:50 +00001791 Inst->eraseFromParent();
Misha Brukmanfd939082005-04-21 23:48:37 +00001792
Chris Lattnereb5f4092008-04-24 00:21:50 +00001793 // Hey, we just changed something!
1794 MadeChanges = true;
1795 ++IPNumInstRemoved;
Chris Lattner59acc7d2004-12-10 08:02:06 +00001796 }
1797 }
Chris Lattner5f9e8b42004-12-10 22:29:08 +00001798
1799 // Now that all instructions in the function are constant folded, erase dead
1800 // blocks, because we can now use ConstantFoldTerminator to get rid of
1801 // in-edges.
1802 for (unsigned i = 0, e = BlocksToErase.size(); i != e; ++i) {
1803 // If there are any PHI nodes in this successor, drop entries for BB now.
1804 BasicBlock *DeadBB = BlocksToErase[i];
1805 while (!DeadBB->use_empty()) {
1806 Instruction *I = cast<Instruction>(DeadBB->use_back());
1807 bool Folded = ConstantFoldTerminator(I->getParent());
Chris Lattnerddaaa372006-10-23 18:57:02 +00001808 if (!Folded) {
Reid Spencera54b7cb2007-01-12 07:05:14 +00001809 // The constant folder may not have been able to fold the terminator
Chris Lattnerddaaa372006-10-23 18:57:02 +00001810 // if this is a branch or switch on undef. Fold it manually as a
1811 // branch to the first successor.
Devang Patelcb9a3542008-11-21 01:52:59 +00001812#ifndef NDEBUG
Chris Lattnerddaaa372006-10-23 18:57:02 +00001813 if (BranchInst *BI = dyn_cast<BranchInst>(I)) {
1814 assert(BI->isConditional() && isa<UndefValue>(BI->getCondition()) &&
1815 "Branch should be foldable!");
1816 } else if (SwitchInst *SI = dyn_cast<SwitchInst>(I)) {
1817 assert(isa<UndefValue>(SI->getCondition()) && "Switch should fold");
1818 } else {
Torok Edwinc23197a2009-07-14 16:55:14 +00001819 llvm_unreachable("Didn't fold away reference to block!");
Chris Lattnerddaaa372006-10-23 18:57:02 +00001820 }
Devang Patelcb9a3542008-11-21 01:52:59 +00001821#endif
Chris Lattnerddaaa372006-10-23 18:57:02 +00001822
1823 // Make this an uncond branch to the first successor.
1824 TerminatorInst *TI = I->getParent()->getTerminator();
Gabor Greif051a9502008-04-06 20:25:17 +00001825 BranchInst::Create(TI->getSuccessor(0), TI);
Chris Lattnerddaaa372006-10-23 18:57:02 +00001826
1827 // Remove entries in successor phi nodes to remove edges.
1828 for (unsigned i = 1, e = TI->getNumSuccessors(); i != e; ++i)
1829 TI->getSuccessor(i)->removePredecessor(TI->getParent());
1830
1831 // Remove the old terminator.
1832 TI->eraseFromParent();
1833 }
Chris Lattner5f9e8b42004-12-10 22:29:08 +00001834 }
Misha Brukmanfd939082005-04-21 23:48:37 +00001835
Chris Lattner5f9e8b42004-12-10 22:29:08 +00001836 // Finally, delete the basic block.
1837 F->getBasicBlockList().erase(DeadBB);
1838 }
Chris Lattner1c1f1122007-02-02 21:15:06 +00001839 BlocksToErase.clear();
Chris Lattner59acc7d2004-12-10 08:02:06 +00001840 }
Chris Lattner0417feb2004-12-11 02:53:57 +00001841
1842 // If we inferred constant or undef return values for a function, we replaced
1843 // all call uses with the inferred value. This means we don't need to bother
1844 // actually returning anything from the function. Replace all return
1845 // instructions with return undef.
Devang Patel9af014f2008-03-11 17:32:05 +00001846 // TODO: Process multiple value ret instructions also.
Devang Patel7c490d42008-03-11 05:46:42 +00001847 const DenseMap<Function*, LatticeVal> &RV = Solver.getTrackedRetVals();
Chris Lattnerb59673e2007-02-02 20:38:30 +00001848 for (DenseMap<Function*, LatticeVal>::const_iterator I = RV.begin(),
Chris Lattner0417feb2004-12-11 02:53:57 +00001849 E = RV.end(); I != E; ++I)
1850 if (!I->second.isOverdefined() &&
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00001851 !I->first->getReturnType()->isVoidTy()) {
Chris Lattner0417feb2004-12-11 02:53:57 +00001852 Function *F = I->first;
1853 for (Function::iterator BB = F->begin(), E = F->end(); BB != E; ++BB)
1854 if (ReturnInst *RI = dyn_cast<ReturnInst>(BB->getTerminator()))
1855 if (!isa<UndefValue>(RI->getOperand(0)))
Owen Anderson9e9a0d52009-07-30 23:03:37 +00001856 RI->setOperand(0, UndefValue::get(F->getReturnType()));
Chris Lattner0417feb2004-12-11 02:53:57 +00001857 }
Chris Lattnerdd336d12004-12-11 05:15:59 +00001858
1859 // If we infered constant or undef values for globals variables, we can delete
1860 // the global and any stores that remain to it.
Chris Lattnerb59673e2007-02-02 20:38:30 +00001861 const DenseMap<GlobalVariable*, LatticeVal> &TG = Solver.getTrackedGlobals();
1862 for (DenseMap<GlobalVariable*, LatticeVal>::const_iterator I = TG.begin(),
Chris Lattnerdd336d12004-12-11 05:15:59 +00001863 E = TG.end(); I != E; ++I) {
1864 GlobalVariable *GV = I->first;
1865 assert(!I->second.isOverdefined() &&
1866 "Overdefined values should have been taken out of the map!");
Daniel Dunbar93b67e42009-07-26 07:49:05 +00001867 DEBUG(errs() << "Found that GV '" << GV->getName() << "' is constant!\n");
Chris Lattnerdd336d12004-12-11 05:15:59 +00001868 while (!GV->use_empty()) {
1869 StoreInst *SI = cast<StoreInst>(GV->use_back());
1870 SI->eraseFromParent();
1871 }
1872 M.getGlobalList().erase(GV);
Chris Lattnerdade2d22004-12-11 06:05:53 +00001873 ++IPNumGlobalConst;
Chris Lattnerdd336d12004-12-11 05:15:59 +00001874 }
Misha Brukmanfd939082005-04-21 23:48:37 +00001875
Chris Lattner59acc7d2004-12-10 08:02:06 +00001876 return MadeChanges;
1877}