blob: 90c3520c83239d12f4dadf8f763f89546bf8eca4 [file] [log] [blame]
Misha Brukman373086d2003-05-20 21:01:22 +00001//===- SCCP.cpp - Sparse Conditional Constant Propagation -----------------===//
Misha Brukmanb1c93172005-04-21 23:48:37 +00002//
John Criswell482202a2003-10-20 19:43:21 +00003// The LLVM Compiler Infrastructure
4//
Chris Lattnerf3ebc3f2007-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 Brukmanb1c93172005-04-21 23:48:37 +00007//
John Criswell482202a2003-10-20 19:43:21 +00008//===----------------------------------------------------------------------===//
Chris Lattner347389d2001-06-27 23:38:11 +00009//
Misha Brukman373086d2003-05-20 21:01:22 +000010// This file implements sparse conditional constant propagation and merging:
Chris Lattner347389d2001-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 Lattnerdd6522e2002-08-30 23:39:00 +000016// * Proves conditional branches to be unconditional
Chris Lattner347389d2001-06-27 23:38:11 +000017//
Chris Lattner347389d2001-06-27 23:38:11 +000018//===----------------------------------------------------------------------===//
19
Chris Lattnerb4cfa7f2002-05-07 20:03:00 +000020#include "llvm/Transforms/Scalar.h"
Chris Lattner067d6072007-02-02 20:38:30 +000021#include "llvm/ADT/DenseMap.h"
Chris Lattner65938fc2008-08-23 23:36:38 +000022#include "llvm/ADT/DenseSet.h"
Chris Lattnerefdd2bb2009-11-02 02:20:32 +000023#include "llvm/ADT/PointerIntPair.h"
Chris Lattner809aee22009-11-02 06:11:23 +000024#include "llvm/ADT/SmallPtrSet.h"
Chris Lattner0d74d3c2007-01-30 23:15:19 +000025#include "llvm/ADT/SmallVector.h"
Reid Spencer7c16caa2004-09-01 22:55:40 +000026#include "llvm/ADT/Statistic.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000027#include "llvm/Analysis/ConstantFolding.h"
Chandler Carruth219b89b2014-03-04 11:01:28 +000028#include "llvm/IR/CallSite.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000029#include "llvm/IR/Constants.h"
30#include "llvm/IR/DataLayout.h"
31#include "llvm/IR/DerivedTypes.h"
Chandler Carruth7da14f12014-03-06 03:23:41 +000032#include "llvm/IR/InstVisitor.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000033#include "llvm/IR/Instructions.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000034#include "llvm/Pass.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000035#include "llvm/Support/Debug.h"
36#include "llvm/Support/ErrorHandling.h"
37#include "llvm/Support/raw_ostream.h"
38#include "llvm/Target/TargetLibraryInfo.h"
39#include "llvm/Transforms/IPO.h"
40#include "llvm/Transforms/Utils/Local.h"
Chris Lattner347389d2001-06-27 23:38:11 +000041#include <algorithm>
Chris Lattner49525f82004-01-09 06:02:20 +000042using namespace llvm;
Brian Gaeke960707c2003-11-11 22:41:34 +000043
Chandler Carruth964daaa2014-04-22 02:55:47 +000044#define DEBUG_TYPE "sccp"
45
Chris Lattner79a42ac2006-12-19 21:40:18 +000046STATISTIC(NumInstRemoved, "Number of instructions removed");
47STATISTIC(NumDeadBlocks , "Number of basic blocks unreachable");
48
Nick Lewycky35e92c72008-03-08 07:48:41 +000049STATISTIC(IPNumInstRemoved, "Number of instructions removed by IPSCCP");
Chris Lattner79a42ac2006-12-19 21:40:18 +000050STATISTIC(IPNumArgsElimed ,"Number of arguments constant propagated by IPSCCP");
51STATISTIC(IPNumGlobalConst, "Number of globals found to be constant by IPSCCP");
52
Chris Lattner7d325382002-04-29 21:26:08 +000053namespace {
Chris Lattner1847f6d2006-12-20 06:21:33 +000054/// LatticeVal class - This class represents the different lattice values that
55/// an LLVM value may occupy. It is a simple class with value semantics.
56///
Chris Lattner2dd09db2009-09-02 06:11:42 +000057class LatticeVal {
Chris Lattnerefdd2bb2009-11-02 02:20:32 +000058 enum LatticeValueTy {
Chris Lattner1847f6d2006-12-20 06:21:33 +000059 /// undefined - This LLVM Value has no known value yet.
60 undefined,
Jakub Staszak632a3552012-01-18 21:16:33 +000061
Chris Lattner1847f6d2006-12-20 06:21:33 +000062 /// constant - This LLVM Value has a specific constant value.
63 constant,
64
65 /// forcedconstant - This LLVM Value was thought to be undef until
66 /// ResolvedUndefsIn. This is treated just like 'constant', but if merged
67 /// with another (different) constant, it goes to overdefined, instead of
68 /// asserting.
69 forcedconstant,
Jakub Staszak632a3552012-01-18 21:16:33 +000070
Chris Lattner1847f6d2006-12-20 06:21:33 +000071 /// overdefined - This instruction is not known to be constant, and we know
72 /// it has a value.
73 overdefined
Chris Lattnerefdd2bb2009-11-02 02:20:32 +000074 };
75
76 /// Val: This stores the current lattice value along with the Constant* for
77 /// the constant if this is a 'constant' or 'forcedconstant' value.
78 PointerIntPair<Constant *, 2, LatticeValueTy> Val;
Jakub Staszak632a3552012-01-18 21:16:33 +000079
Chris Lattnerefdd2bb2009-11-02 02:20:32 +000080 LatticeValueTy getLatticeValue() const {
81 return Val.getInt();
82 }
Jakub Staszak632a3552012-01-18 21:16:33 +000083
Chris Lattner347389d2001-06-27 23:38:11 +000084public:
Craig Topperf40110f2014-04-25 05:29:35 +000085 LatticeVal() : Val(nullptr, undefined) {}
Jakub Staszak632a3552012-01-18 21:16:33 +000086
Chris Lattner7ccf1a62009-11-02 03:03:42 +000087 bool isUndefined() const { return getLatticeValue() == undefined; }
88 bool isConstant() const {
Chris Lattnerefdd2bb2009-11-02 02:20:32 +000089 return getLatticeValue() == constant || getLatticeValue() == forcedconstant;
90 }
Chris Lattner7ccf1a62009-11-02 03:03:42 +000091 bool isOverdefined() const { return getLatticeValue() == overdefined; }
Jakub Staszak632a3552012-01-18 21:16:33 +000092
Chris Lattner7ccf1a62009-11-02 03:03:42 +000093 Constant *getConstant() const {
Chris Lattnerefdd2bb2009-11-02 02:20:32 +000094 assert(isConstant() && "Cannot get the constant of a non-constant!");
95 return Val.getPointer();
96 }
Jakub Staszak632a3552012-01-18 21:16:33 +000097
Chris Lattnerefdd2bb2009-11-02 02:20:32 +000098 /// markOverdefined - Return true if this is a change in status.
Chris Lattner7ccf1a62009-11-02 03:03:42 +000099 bool markOverdefined() {
Chris Lattnerefdd2bb2009-11-02 02:20:32 +0000100 if (isOverdefined())
101 return false;
Jakub Staszak632a3552012-01-18 21:16:33 +0000102
Chris Lattnerefdd2bb2009-11-02 02:20:32 +0000103 Val.setInt(overdefined);
104 return true;
Chris Lattner347389d2001-06-27 23:38:11 +0000105 }
106
Chris Lattnerefdd2bb2009-11-02 02:20:32 +0000107 /// markConstant - Return true if this is a change in status.
Chris Lattner7ccf1a62009-11-02 03:03:42 +0000108 bool markConstant(Constant *V) {
Chris Lattnere1d5cd92009-11-03 16:50:11 +0000109 if (getLatticeValue() == constant) { // Constant but not forcedconstant.
Chris Lattnerefdd2bb2009-11-02 02:20:32 +0000110 assert(getConstant() == V && "Marking constant with different value");
111 return false;
Chris Lattner347389d2001-06-27 23:38:11 +0000112 }
Jakub Staszak632a3552012-01-18 21:16:33 +0000113
Chris Lattnerefdd2bb2009-11-02 02:20:32 +0000114 if (isUndefined()) {
115 Val.setInt(constant);
116 assert(V && "Marking constant with NULL");
117 Val.setPointer(V);
118 } else {
Jakub Staszak632a3552012-01-18 21:16:33 +0000119 assert(getLatticeValue() == forcedconstant &&
Chris Lattnerefdd2bb2009-11-02 02:20:32 +0000120 "Cannot move from overdefined to constant!");
121 // Stay at forcedconstant if the constant is the same.
122 if (V == getConstant()) return false;
Jakub Staszak632a3552012-01-18 21:16:33 +0000123
Chris Lattnerefdd2bb2009-11-02 02:20:32 +0000124 // Otherwise, we go to overdefined. Assumptions made based on the
125 // forced value are possibly wrong. Assuming this is another constant
126 // could expose a contradiction.
127 Val.setInt(overdefined);
128 }
129 return true;
Chris Lattner347389d2001-06-27 23:38:11 +0000130 }
131
Chris Lattner9e97fbe2009-11-02 03:21:36 +0000132 /// getConstantInt - If this is a constant with a ConstantInt value, return it
133 /// otherwise return null.
134 ConstantInt *getConstantInt() const {
135 if (isConstant())
136 return dyn_cast<ConstantInt>(getConstant());
Craig Topperf40110f2014-04-25 05:29:35 +0000137 return nullptr;
Chris Lattner9e97fbe2009-11-02 03:21:36 +0000138 }
Jakub Staszak632a3552012-01-18 21:16:33 +0000139
Chris Lattner7ccf1a62009-11-02 03:03:42 +0000140 void markForcedConstant(Constant *V) {
Chris Lattnerefdd2bb2009-11-02 02:20:32 +0000141 assert(isUndefined() && "Can't force a defined value!");
142 Val.setInt(forcedconstant);
143 Val.setPointer(V);
Chris Lattner05fe6842004-01-12 03:57:30 +0000144 }
Chris Lattner347389d2001-06-27 23:38:11 +0000145};
Chris Lattnere405ed92009-11-02 02:47:51 +0000146} // end anonymous namespace.
147
148
149namespace {
Chris Lattner347389d2001-06-27 23:38:11 +0000150
Chris Lattner347389d2001-06-27 23:38:11 +0000151//===----------------------------------------------------------------------===//
Chris Lattner347389d2001-06-27 23:38:11 +0000152//
Chris Lattner074be1f2004-11-15 04:44:20 +0000153/// SCCPSolver - This class is a general purpose solver for Sparse Conditional
154/// Constant Propagation.
155///
156class SCCPSolver : public InstVisitor<SCCPSolver> {
Rafael Espindola37dc9e12014-02-21 00:06:31 +0000157 const DataLayout *DL;
Chad Rosiere6de63d2011-12-01 21:29:16 +0000158 const TargetLibraryInfo *TLI;
Nick Lewycky77cb8e62011-07-25 21:16:04 +0000159 SmallPtrSet<BasicBlock*, 8> BBExecutable; // The BBs that are executable.
Chris Lattnerf5484032009-11-02 05:55:40 +0000160 DenseMap<Value*, LatticeVal> ValueState; // The state each value is in.
Chris Lattner347389d2001-06-27 23:38:11 +0000161
Chris Lattner156b8c72009-11-03 23:40:48 +0000162 /// StructValueState - This maintains ValueState for values that have
163 /// StructType, for example for formal arguments, calls, insertelement, etc.
164 ///
165 DenseMap<std::pair<Value*, unsigned>, LatticeVal> StructValueState;
Jakub Staszak632a3552012-01-18 21:16:33 +0000166
Chris Lattner91dbae62004-12-11 05:15:59 +0000167 /// GlobalValue - If we are tracking any values for the contents of a global
168 /// variable, we keep a mapping from the constant accessor to the element of
169 /// the global, to the currently known value. If the value becomes
170 /// overdefined, it's entry is simply removed from this map.
Chris Lattner067d6072007-02-02 20:38:30 +0000171 DenseMap<GlobalVariable*, LatticeVal> TrackedGlobals;
Chris Lattner91dbae62004-12-11 05:15:59 +0000172
Devang Patela7a20752008-03-11 05:46:42 +0000173 /// TrackedRetVals - If we are tracking arguments into and the return
Chris Lattnerb4394642004-12-10 08:02:06 +0000174 /// value out of a function, it will have an entry in this map, indicating
175 /// what the known return value for the function is.
Devang Patela7a20752008-03-11 05:46:42 +0000176 DenseMap<Function*, LatticeVal> TrackedRetVals;
177
178 /// TrackedMultipleRetVals - Same as TrackedRetVals, but used for functions
179 /// that return multiple values.
Chris Lattner65938fc2008-08-23 23:36:38 +0000180 DenseMap<std::pair<Function*, unsigned>, LatticeVal> TrackedMultipleRetVals;
Jakub Staszak632a3552012-01-18 21:16:33 +0000181
Chris Lattner156b8c72009-11-03 23:40:48 +0000182 /// MRVFunctionsTracked - Each function in TrackedMultipleRetVals is
183 /// represented here for efficient lookup.
184 SmallPtrSet<Function*, 16> MRVFunctionsTracked;
Chris Lattnerb4394642004-12-10 08:02:06 +0000185
Chris Lattner2c427232009-11-03 20:52:57 +0000186 /// TrackingIncomingArguments - This is the set of functions for whose
187 /// arguments we make optimistic assumptions about and try to prove as
188 /// constants.
Chris Lattnercde8de52009-11-03 19:24:51 +0000189 SmallPtrSet<Function*, 16> TrackingIncomingArguments;
Jakub Staszak632a3552012-01-18 21:16:33 +0000190
Chris Lattner7ccf1a62009-11-02 03:03:42 +0000191 /// The reason for two worklists is that overdefined is the lowest state
192 /// on the lattice, and moving things to overdefined as fast as possible
193 /// makes SCCP converge much faster.
194 ///
195 /// By having a separate worklist, we accomplish this because everything
196 /// possibly overdefined will become overdefined at the soonest possible
197 /// point.
Chris Lattner65938fc2008-08-23 23:36:38 +0000198 SmallVector<Value*, 64> OverdefinedInstWorkList;
199 SmallVector<Value*, 64> InstWorkList;
Chris Lattnerd79334d2004-07-15 23:36:43 +0000200
201
Chris Lattner65938fc2008-08-23 23:36:38 +0000202 SmallVector<BasicBlock*, 64> BBWorkList; // The BasicBlock work list
Chris Lattner0bbbe5d2003-10-08 16:55:34 +0000203
204 /// KnownFeasibleEdges - Entries in this set are edges which have already had
205 /// PHI nodes retriggered.
Chris Lattner65938fc2008-08-23 23:36:38 +0000206 typedef std::pair<BasicBlock*, BasicBlock*> Edge;
207 DenseSet<Edge> KnownFeasibleEdges;
Chris Lattner347389d2001-06-27 23:38:11 +0000208public:
Rafael Espindola37dc9e12014-02-21 00:06:31 +0000209 SCCPSolver(const DataLayout *DL, const TargetLibraryInfo *tli)
210 : DL(DL), TLI(tli) {}
Chris Lattner347389d2001-06-27 23:38:11 +0000211
Chris Lattner074be1f2004-11-15 04:44:20 +0000212 /// MarkBlockExecutable - This method can be used by clients to mark all of
213 /// the blocks that are known to be intrinsically live in the processed unit.
Chris Lattner809aee22009-11-02 06:11:23 +0000214 ///
215 /// This returns true if the block was not considered live before.
216 bool MarkBlockExecutable(BasicBlock *BB) {
217 if (!BBExecutable.insert(BB)) return false;
Nick Lewycky5cd95382013-06-26 00:30:18 +0000218 DEBUG(dbgs() << "Marking Block Executable: " << BB->getName() << '\n');
Chris Lattner074be1f2004-11-15 04:44:20 +0000219 BBWorkList.push_back(BB); // Add the block to the work list!
Chris Lattner809aee22009-11-02 06:11:23 +0000220 return true;
Chris Lattner7d325382002-04-29 21:26:08 +0000221 }
222
Chris Lattner91dbae62004-12-11 05:15:59 +0000223 /// TrackValueOfGlobalVariable - Clients can use this method to
Chris Lattnerb4394642004-12-10 08:02:06 +0000224 /// inform the SCCPSolver that it should track loads and stores to the
225 /// specified global variable if it can. This is only legal to call if
226 /// performing Interprocedural SCCP.
Chris Lattner91dbae62004-12-11 05:15:59 +0000227 void TrackValueOfGlobalVariable(GlobalVariable *GV) {
Chris Lattner156b8c72009-11-03 23:40:48 +0000228 // We only track the contents of scalar globals.
229 if (GV->getType()->getElementType()->isSingleValueType()) {
Chris Lattner91dbae62004-12-11 05:15:59 +0000230 LatticeVal &IV = TrackedGlobals[GV];
231 if (!isa<UndefValue>(GV->getInitializer()))
232 IV.markConstant(GV->getInitializer());
233 }
234 }
Chris Lattnerb4394642004-12-10 08:02:06 +0000235
236 /// AddTrackedFunction - If the SCCP solver is supposed to track calls into
237 /// and out of the specified function (which cannot have its address taken),
238 /// this method must be called.
239 void AddTrackedFunction(Function *F) {
Chris Lattnerb4394642004-12-10 08:02:06 +0000240 // Add an entry, F -> undef.
Chris Lattner229907c2011-07-18 04:54:35 +0000241 if (StructType *STy = dyn_cast<StructType>(F->getReturnType())) {
Chris Lattner156b8c72009-11-03 23:40:48 +0000242 MRVFunctionsTracked.insert(F);
Devang Patela7a20752008-03-11 05:46:42 +0000243 for (unsigned i = 0, e = STy->getNumElements(); i != e; ++i)
Chris Lattner5a58a4d2008-04-23 05:38:20 +0000244 TrackedMultipleRetVals.insert(std::make_pair(std::make_pair(F, i),
245 LatticeVal()));
246 } else
247 TrackedRetVals.insert(std::make_pair(F, LatticeVal()));
Chris Lattnerb4394642004-12-10 08:02:06 +0000248 }
249
Chris Lattnercde8de52009-11-03 19:24:51 +0000250 void AddArgumentTrackedFunction(Function *F) {
251 TrackingIncomingArguments.insert(F);
252 }
Jakub Staszak632a3552012-01-18 21:16:33 +0000253
Chris Lattner074be1f2004-11-15 04:44:20 +0000254 /// Solve - Solve for constants and executable blocks.
255 ///
256 void Solve();
Chris Lattner347389d2001-06-27 23:38:11 +0000257
Chris Lattner1847f6d2006-12-20 06:21:33 +0000258 /// ResolvedUndefsIn - While solving the dataflow for a function, we assume
Chris Lattner7285f432004-12-10 20:41:50 +0000259 /// that branches on undef values cannot reach any of their successors.
260 /// However, this is not a safe assumption. After we solve dataflow, this
261 /// method should be use to handle this. If this returns true, the solver
262 /// should be rerun.
Chris Lattner1847f6d2006-12-20 06:21:33 +0000263 bool ResolvedUndefsIn(Function &F);
Chris Lattner7285f432004-12-10 20:41:50 +0000264
Chris Lattneradd44f32008-08-23 23:39:31 +0000265 bool isBlockExecutable(BasicBlock *BB) const {
266 return BBExecutable.count(BB);
Chris Lattner074be1f2004-11-15 04:44:20 +0000267 }
268
Chris Lattnerb5a13d42009-11-02 02:54:24 +0000269 LatticeVal getLatticeValueFor(Value *V) const {
Chris Lattnerf5484032009-11-02 05:55:40 +0000270 DenseMap<Value*, LatticeVal>::const_iterator I = ValueState.find(V);
Chris Lattnerb5a13d42009-11-02 02:54:24 +0000271 assert(I != ValueState.end() && "V is not in valuemap!");
272 return I->second;
Chris Lattner074be1f2004-11-15 04:44:20 +0000273 }
Jakub Staszak632a3552012-01-18 21:16:33 +0000274
Devang Patela7a20752008-03-11 05:46:42 +0000275 /// getTrackedRetVals - Get the inferred return value map.
Chris Lattner99e12952004-12-11 02:53:57 +0000276 ///
Devang Patela7a20752008-03-11 05:46:42 +0000277 const DenseMap<Function*, LatticeVal> &getTrackedRetVals() {
278 return TrackedRetVals;
Chris Lattner99e12952004-12-11 02:53:57 +0000279 }
280
Chris Lattner91dbae62004-12-11 05:15:59 +0000281 /// getTrackedGlobals - Get and return the set of inferred initializers for
282 /// global variables.
Chris Lattner067d6072007-02-02 20:38:30 +0000283 const DenseMap<GlobalVariable*, LatticeVal> &getTrackedGlobals() {
Chris Lattner91dbae62004-12-11 05:15:59 +0000284 return TrackedGlobals;
285 }
286
Chris Lattner9e97fbe2009-11-02 03:21:36 +0000287 void markOverdefined(Value *V) {
Duncan Sands19d0b472010-02-16 11:11:14 +0000288 assert(!V->getType()->isStructTy() && "Should use other method");
Chris Lattnerc33fd462007-03-04 04:50:21 +0000289 markOverdefined(ValueState[V], V);
290 }
Chris Lattner99e12952004-12-11 02:53:57 +0000291
Chris Lattner156b8c72009-11-03 23:40:48 +0000292 /// markAnythingOverdefined - Mark the specified value overdefined. This
293 /// works with both scalars and structs.
294 void markAnythingOverdefined(Value *V) {
Chris Lattner229907c2011-07-18 04:54:35 +0000295 if (StructType *STy = dyn_cast<StructType>(V->getType()))
Chris Lattner156b8c72009-11-03 23:40:48 +0000296 for (unsigned i = 0, e = STy->getNumElements(); i != e; ++i)
297 markOverdefined(getStructValueState(V, i), V);
298 else
299 markOverdefined(V);
300 }
Jakub Staszak632a3552012-01-18 21:16:33 +0000301
Chris Lattner347389d2001-06-27 23:38:11 +0000302private:
Chris Lattnerd79334d2004-07-15 23:36:43 +0000303 // markConstant - Make a value be marked as "constant". If the value
Misha Brukmanb1c93172005-04-21 23:48:37 +0000304 // is not already a constant, add it to the instruction work list so that
Chris Lattner347389d2001-06-27 23:38:11 +0000305 // the users of the instruction are updated later.
306 //
Chris Lattner7ccf1a62009-11-02 03:03:42 +0000307 void markConstant(LatticeVal &IV, Value *V, Constant *C) {
308 if (!IV.markConstant(C)) return;
David Greene389fc3b2010-01-05 01:27:15 +0000309 DEBUG(dbgs() << "markConstant: " << *C << ": " << *V << '\n');
Chris Lattnerc6c153b2010-04-09 01:14:31 +0000310 if (IV.isOverdefined())
311 OverdefinedInstWorkList.push_back(V);
312 else
313 InstWorkList.push_back(V);
Chris Lattner7324f7c2003-10-08 16:21:03 +0000314 }
Jakub Staszak632a3552012-01-18 21:16:33 +0000315
Chris Lattner7ccf1a62009-11-02 03:03:42 +0000316 void markConstant(Value *V, Constant *C) {
Duncan Sands19d0b472010-02-16 11:11:14 +0000317 assert(!V->getType()->isStructTy() && "Should use other method");
Chris Lattnerb4394642004-12-10 08:02:06 +0000318 markConstant(ValueState[V], V, C);
Chris Lattner347389d2001-06-27 23:38:11 +0000319 }
320
Chris Lattnerf5484032009-11-02 05:55:40 +0000321 void markForcedConstant(Value *V, Constant *C) {
Duncan Sands19d0b472010-02-16 11:11:14 +0000322 assert(!V->getType()->isStructTy() && "Should use other method");
Chris Lattnerc6c153b2010-04-09 01:14:31 +0000323 LatticeVal &IV = ValueState[V];
324 IV.markForcedConstant(C);
David Greene389fc3b2010-01-05 01:27:15 +0000325 DEBUG(dbgs() << "markForcedConstant: " << *C << ": " << *V << '\n');
Chris Lattnerc6c153b2010-04-09 01:14:31 +0000326 if (IV.isOverdefined())
327 OverdefinedInstWorkList.push_back(V);
328 else
329 InstWorkList.push_back(V);
Chris Lattnerf5484032009-11-02 05:55:40 +0000330 }
Jakub Staszak632a3552012-01-18 21:16:33 +0000331
332
Chris Lattnerd79334d2004-07-15 23:36:43 +0000333 // markOverdefined - Make a value be marked as "overdefined". If the
Misha Brukmanb1c93172005-04-21 23:48:37 +0000334 // value is not already overdefined, add it to the overdefined instruction
Chris Lattnerd79334d2004-07-15 23:36:43 +0000335 // work list so that the users of the instruction are updated later.
Chris Lattner7ccf1a62009-11-02 03:03:42 +0000336 void markOverdefined(LatticeVal &IV, Value *V) {
337 if (!IV.markOverdefined()) return;
Jakub Staszak632a3552012-01-18 21:16:33 +0000338
David Greene389fc3b2010-01-05 01:27:15 +0000339 DEBUG(dbgs() << "markOverdefined: ";
Chris Lattner7ccf1a62009-11-02 03:03:42 +0000340 if (Function *F = dyn_cast<Function>(V))
David Greene389fc3b2010-01-05 01:27:15 +0000341 dbgs() << "Function '" << F->getName() << "'\n";
Chris Lattner7ccf1a62009-11-02 03:03:42 +0000342 else
David Greene389fc3b2010-01-05 01:27:15 +0000343 dbgs() << *V << '\n');
Chris Lattner7ccf1a62009-11-02 03:03:42 +0000344 // Only instructions go on the work list
345 OverdefinedInstWorkList.push_back(V);
Chris Lattner7324f7c2003-10-08 16:21:03 +0000346 }
Chris Lattnerb4394642004-12-10 08:02:06 +0000347
Chris Lattnerf5484032009-11-02 05:55:40 +0000348 void mergeInValue(LatticeVal &IV, Value *V, LatticeVal MergeWithV) {
Chris Lattnerb4394642004-12-10 08:02:06 +0000349 if (IV.isOverdefined() || MergeWithV.isUndefined())
350 return; // Noop.
351 if (MergeWithV.isOverdefined())
352 markOverdefined(IV, V);
353 else if (IV.isUndefined())
354 markConstant(IV, V, MergeWithV.getConstant());
355 else if (IV.getConstant() != MergeWithV.getConstant())
356 markOverdefined(IV, V);
Chris Lattner347389d2001-06-27 23:38:11 +0000357 }
Jakub Staszak632a3552012-01-18 21:16:33 +0000358
Chris Lattnerf5484032009-11-02 05:55:40 +0000359 void mergeInValue(Value *V, LatticeVal MergeWithV) {
Duncan Sands19d0b472010-02-16 11:11:14 +0000360 assert(!V->getType()->isStructTy() && "Should use other method");
Chris Lattner9e97fbe2009-11-02 03:21:36 +0000361 mergeInValue(ValueState[V], V, MergeWithV);
Chris Lattner06a0ed12006-02-08 02:38:11 +0000362 }
363
Chris Lattner347389d2001-06-27 23:38:11 +0000364
Chris Lattnerf5484032009-11-02 05:55:40 +0000365 /// getValueState - Return the LatticeVal object that corresponds to the
366 /// value. This function handles the case when the value hasn't been seen yet
367 /// by properly seeding constants etc.
Chris Lattner7ccf1a62009-11-02 03:03:42 +0000368 LatticeVal &getValueState(Value *V) {
Duncan Sands19d0b472010-02-16 11:11:14 +0000369 assert(!V->getType()->isStructTy() && "Should use getStructValueState");
Chris Lattner646354b2004-10-16 18:09:41 +0000370
Benjamin Kramer3fcbb822009-11-05 14:33:27 +0000371 std::pair<DenseMap<Value*, LatticeVal>::iterator, bool> I =
372 ValueState.insert(std::make_pair(V, LatticeVal()));
373 LatticeVal &LV = I.first->second;
374
375 if (!I.second)
376 return LV; // Common case, already in the map.
Chris Lattner9e97fbe2009-11-02 03:21:36 +0000377
Chris Lattner1847f6d2006-12-20 06:21:33 +0000378 if (Constant *C = dyn_cast<Constant>(V)) {
Chris Lattner9e97fbe2009-11-02 03:21:36 +0000379 // Undef values remain undefined.
380 if (!isa<UndefValue>(V))
Chris Lattner067d6072007-02-02 20:38:30 +0000381 LV.markConstant(C); // Constants are constant
Chris Lattnerdd6522e2002-08-30 23:39:00 +0000382 }
Jakub Staszak632a3552012-01-18 21:16:33 +0000383
Chris Lattnera3c39d32009-11-02 02:33:50 +0000384 // All others are underdefined by default.
Chris Lattner9e97fbe2009-11-02 03:21:36 +0000385 return LV;
Chris Lattner347389d2001-06-27 23:38:11 +0000386 }
387
Chris Lattner156b8c72009-11-03 23:40:48 +0000388 /// getStructValueState - Return the LatticeVal object that corresponds to the
389 /// value/field pair. This function handles the case when the value hasn't
390 /// been seen yet by properly seeding constants etc.
391 LatticeVal &getStructValueState(Value *V, unsigned i) {
Duncan Sands19d0b472010-02-16 11:11:14 +0000392 assert(V->getType()->isStructTy() && "Should use getValueState");
Chris Lattner156b8c72009-11-03 23:40:48 +0000393 assert(i < cast<StructType>(V->getType())->getNumElements() &&
394 "Invalid element #");
Benjamin Kramer3fcbb822009-11-05 14:33:27 +0000395
396 std::pair<DenseMap<std::pair<Value*, unsigned>, LatticeVal>::iterator,
397 bool> I = StructValueState.insert(
398 std::make_pair(std::make_pair(V, i), LatticeVal()));
399 LatticeVal &LV = I.first->second;
400
401 if (!I.second)
402 return LV; // Common case, already in the map.
403
Chris Lattner156b8c72009-11-03 23:40:48 +0000404 if (Constant *C = dyn_cast<Constant>(V)) {
Chris Lattnerfa775002012-01-26 02:32:04 +0000405 Constant *Elt = C->getAggregateElement(i);
Nadav Rotem465834c2012-07-24 10:51:42 +0000406
Craig Topperf40110f2014-04-25 05:29:35 +0000407 if (!Elt)
Chris Lattner156b8c72009-11-03 23:40:48 +0000408 LV.markOverdefined(); // Unknown sort of constant.
Chris Lattnerfa775002012-01-26 02:32:04 +0000409 else if (isa<UndefValue>(Elt))
410 ; // Undef values remain undefined.
411 else
412 LV.markConstant(Elt); // Constants are constant.
Chris Lattner156b8c72009-11-03 23:40:48 +0000413 }
Jakub Staszak632a3552012-01-18 21:16:33 +0000414
Chris Lattner156b8c72009-11-03 23:40:48 +0000415 // All others are underdefined by default.
416 return LV;
417 }
Jakub Staszak632a3552012-01-18 21:16:33 +0000418
Chris Lattner156b8c72009-11-03 23:40:48 +0000419
Chris Lattnerf5484032009-11-02 05:55:40 +0000420 /// markEdgeExecutable - Mark a basic block as executable, adding it to the BB
421 /// work list if it is not already executable.
Chris Lattner0bbbe5d2003-10-08 16:55:34 +0000422 void markEdgeExecutable(BasicBlock *Source, BasicBlock *Dest) {
423 if (!KnownFeasibleEdges.insert(Edge(Source, Dest)).second)
424 return; // This edge is already known to be executable!
425
Chris Lattner809aee22009-11-02 06:11:23 +0000426 if (!MarkBlockExecutable(Dest)) {
427 // If the destination is already executable, we just made an *edge*
428 // feasible that wasn't before. Revisit the PHI nodes in the block
429 // because they have potentially new operands.
David Greene389fc3b2010-01-05 01:27:15 +0000430 DEBUG(dbgs() << "Marking Edge Executable: " << Source->getName()
Nick Lewycky5cd95382013-06-26 00:30:18 +0000431 << " -> " << Dest->getName() << '\n');
Chris Lattner0bbbe5d2003-10-08 16:55:34 +0000432
Chris Lattner809aee22009-11-02 06:11:23 +0000433 PHINode *PN;
434 for (BasicBlock::iterator I = Dest->begin();
435 (PN = dyn_cast<PHINode>(I)); ++I)
436 visitPHINode(*PN);
Chris Lattnercccc5c72003-04-25 02:50:03 +0000437 }
Chris Lattner347389d2001-06-27 23:38:11 +0000438 }
439
Chris Lattner074be1f2004-11-15 04:44:20 +0000440 // getFeasibleSuccessors - Return a vector of booleans to indicate which
441 // successors are reachable from a given terminator instruction.
442 //
Craig Topperb94011f2013-07-14 04:42:23 +0000443 void getFeasibleSuccessors(TerminatorInst &TI, SmallVectorImpl<bool> &Succs);
Chris Lattner074be1f2004-11-15 04:44:20 +0000444
445 // isEdgeFeasible - Return true if the control flow edge from the 'From' basic
Chris Lattnera3c39d32009-11-02 02:33:50 +0000446 // block to the 'To' basic block is currently feasible.
Chris Lattner074be1f2004-11-15 04:44:20 +0000447 //
448 bool isEdgeFeasible(BasicBlock *From, BasicBlock *To);
449
450 // OperandChangedState - This method is invoked on all of the users of an
Chris Lattnera3c39d32009-11-02 02:33:50 +0000451 // instruction that was just changed state somehow. Based on this
Chris Lattner074be1f2004-11-15 04:44:20 +0000452 // information, we need to update the specified user of this instruction.
453 //
Chris Lattnerfb141812009-11-03 03:42:51 +0000454 void OperandChangedState(Instruction *I) {
455 if (BBExecutable.count(I->getParent())) // Inst is executable?
456 visit(*I);
Chris Lattner074be1f2004-11-15 04:44:20 +0000457 }
Dale Johannesend3a58c82010-11-30 20:23:21 +0000458
Chris Lattner074be1f2004-11-15 04:44:20 +0000459private:
460 friend class InstVisitor<SCCPSolver>;
Chris Lattner347389d2001-06-27 23:38:11 +0000461
Chris Lattnera3c39d32009-11-02 02:33:50 +0000462 // visit implementations - Something changed in this instruction. Either an
Chris Lattner10b250e2001-06-29 23:56:23 +0000463 // operand made a transition, or the instruction is newly executable. Change
464 // the value type of I to reflect these changes if appropriate.
Chris Lattner113f4f42002-06-25 16:13:24 +0000465 void visitPHINode(PHINode &I);
Chris Lattner6e560792002-04-18 15:13:15 +0000466
467 // Terminators
Chris Lattnerb4394642004-12-10 08:02:06 +0000468 void visitReturnInst(ReturnInst &I);
Chris Lattner113f4f42002-06-25 16:13:24 +0000469 void visitTerminatorInst(TerminatorInst &TI);
Chris Lattner6e560792002-04-18 15:13:15 +0000470
Chris Lattner6e1a1b12002-08-14 17:53:45 +0000471 void visitCastInst(CastInst &I);
Chris Lattner59db22d2004-03-12 05:52:44 +0000472 void visitSelectInst(SelectInst &I);
Chris Lattner113f4f42002-06-25 16:13:24 +0000473 void visitBinaryOperator(Instruction &I);
Reid Spencer266e42b2006-12-23 06:05:41 +0000474 void visitCmpInst(CmpInst &I);
Robert Bocchinobd518d12006-01-10 19:05:05 +0000475 void visitExtractElementInst(ExtractElementInst &I);
Robert Bocchino6dce2502006-01-17 20:06:55 +0000476 void visitInsertElementInst(InsertElementInst &I);
Chris Lattner17bd6052006-04-08 01:19:12 +0000477 void visitShuffleVectorInst(ShuffleVectorInst &I);
Dan Gohman041f9d02008-06-20 01:15:44 +0000478 void visitExtractValueInst(ExtractValueInst &EVI);
479 void visitInsertValueInst(InsertValueInst &IVI);
Bill Wendlingfae14752011-08-12 20:24:12 +0000480 void visitLandingPadInst(LandingPadInst &I) { markAnythingOverdefined(&I); }
Chris Lattner6e560792002-04-18 15:13:15 +0000481
Chris Lattnera3c39d32009-11-02 02:33:50 +0000482 // Instructions that cannot be folded away.
Chris Lattnerf5484032009-11-02 05:55:40 +0000483 void visitStoreInst (StoreInst &I);
Chris Lattner49f74522004-01-12 04:29:41 +0000484 void visitLoadInst (LoadInst &I);
Chris Lattnerdd6522e2002-08-30 23:39:00 +0000485 void visitGetElementPtrInst(GetElementPtrInst &I);
Victor Hernandeze2971492009-10-24 04:23:03 +0000486 void visitCallInst (CallInst &I) {
Gabor Greif62f0aac2010-07-28 22:50:26 +0000487 visitCallSite(&I);
Victor Hernandez5d034492009-09-18 22:35:49 +0000488 }
Chris Lattnerb4394642004-12-10 08:02:06 +0000489 void visitInvokeInst (InvokeInst &II) {
Gabor Greif62f0aac2010-07-28 22:50:26 +0000490 visitCallSite(&II);
Chris Lattnerb4394642004-12-10 08:02:06 +0000491 visitTerminatorInst(II);
Chris Lattnerdf741d62003-08-27 01:08:35 +0000492 }
Chris Lattnerb4394642004-12-10 08:02:06 +0000493 void visitCallSite (CallSite CS);
Bill Wendlingf891bf82011-07-31 06:30:59 +0000494 void visitResumeInst (TerminatorInst &I) { /*returns void*/ }
Chris Lattner646354b2004-10-16 18:09:41 +0000495 void visitUnreachableInst(TerminatorInst &I) { /*returns void*/ }
Eli Friedman89b694b2011-07-27 01:08:30 +0000496 void visitFenceInst (FenceInst &I) { /*returns void*/ }
Tim Northover6bf04e42014-06-13 14:54:09 +0000497 void visitAtomicCmpXchgInst(AtomicCmpXchgInst &I) {
498 markAnythingOverdefined(&I);
499 }
Eli Friedman366bcce2011-08-02 21:35:16 +0000500 void visitAtomicRMWInst (AtomicRMWInst &I) { markOverdefined(&I); }
Victor Hernandez8acf2952009-10-23 21:09:37 +0000501 void visitAllocaInst (Instruction &I) { markOverdefined(&I); }
Chris Lattner156b8c72009-11-03 23:40:48 +0000502 void visitVAArgInst (Instruction &I) { markAnythingOverdefined(&I); }
Chris Lattner6e560792002-04-18 15:13:15 +0000503
Chris Lattner113f4f42002-06-25 16:13:24 +0000504 void visitInstruction(Instruction &I) {
Chris Lattnera3c39d32009-11-02 02:33:50 +0000505 // If a new instruction is added to LLVM that we don't handle.
Nick Lewycky5cd95382013-06-26 00:30:18 +0000506 dbgs() << "SCCP: Don't know how to handle: " << I << '\n';
Chris Lattner156b8c72009-11-03 23:40:48 +0000507 markAnythingOverdefined(&I); // Just in case
Chris Lattner6e560792002-04-18 15:13:15 +0000508 }
Chris Lattner10b250e2001-06-29 23:56:23 +0000509};
Chris Lattnerb28b6802002-07-23 18:06:35 +0000510
Duncan Sands2be91fc2007-07-20 08:56:21 +0000511} // end anonymous namespace
512
513
Chris Lattnerfe6c9ee2002-05-02 21:44:00 +0000514// getFeasibleSuccessors - Return a vector of booleans to indicate which
515// successors are reachable from a given terminator instruction.
516//
Chris Lattner074be1f2004-11-15 04:44:20 +0000517void SCCPSolver::getFeasibleSuccessors(TerminatorInst &TI,
Craig Topperb94011f2013-07-14 04:42:23 +0000518 SmallVectorImpl<bool> &Succs) {
Chris Lattnercccc5c72003-04-25 02:50:03 +0000519 Succs.resize(TI.getNumSuccessors());
Chris Lattner113f4f42002-06-25 16:13:24 +0000520 if (BranchInst *BI = dyn_cast<BranchInst>(&TI)) {
Chris Lattnerfe6c9ee2002-05-02 21:44:00 +0000521 if (BI->isUnconditional()) {
522 Succs[0] = true;
Chris Lattner6df5cec2009-11-02 02:30:06 +0000523 return;
Chris Lattnerfe6c9ee2002-05-02 21:44:00 +0000524 }
Jakub Staszak632a3552012-01-18 21:16:33 +0000525
Chris Lattnerf5484032009-11-02 05:55:40 +0000526 LatticeVal BCValue = getValueState(BI->getCondition());
Chris Lattner9e97fbe2009-11-02 03:21:36 +0000527 ConstantInt *CI = BCValue.getConstantInt();
Craig Topperf40110f2014-04-25 05:29:35 +0000528 if (!CI) {
Chris Lattner6df5cec2009-11-02 02:30:06 +0000529 // Overdefined condition variables, and branches on unfoldable constant
530 // conditions, mean the branch could go either way.
Chris Lattner9e97fbe2009-11-02 03:21:36 +0000531 if (!BCValue.isUndefined())
532 Succs[0] = Succs[1] = true;
Chris Lattner6df5cec2009-11-02 02:30:06 +0000533 return;
534 }
Jakub Staszak632a3552012-01-18 21:16:33 +0000535
Chris Lattner6df5cec2009-11-02 02:30:06 +0000536 // Constant condition variables mean the branch can only go a single way.
Chris Lattner9e97fbe2009-11-02 03:21:36 +0000537 Succs[CI->isZero()] = true;
Chris Lattneree8b9512009-10-29 01:21:20 +0000538 return;
539 }
Jakub Staszak632a3552012-01-18 21:16:33 +0000540
Chris Lattner9e97fbe2009-11-02 03:21:36 +0000541 if (isa<InvokeInst>(TI)) {
Chris Lattnerfe6c9ee2002-05-02 21:44:00 +0000542 // Invoke instructions successors are always executable.
543 Succs[0] = Succs[1] = true;
Chris Lattneree8b9512009-10-29 01:21:20 +0000544 return;
545 }
Jakub Staszak632a3552012-01-18 21:16:33 +0000546
Chris Lattneree8b9512009-10-29 01:21:20 +0000547 if (SwitchInst *SI = dyn_cast<SwitchInst>(&TI)) {
Stepan Dyatkovskiy513aaa52012-02-01 07:49:51 +0000548 if (!SI->getNumCases()) {
Eli Friedman56f2f212011-08-16 21:12:35 +0000549 Succs[0] = true;
550 return;
551 }
Chris Lattnerf5484032009-11-02 05:55:40 +0000552 LatticeVal SCValue = getValueState(SI->getCondition());
Chris Lattner9e97fbe2009-11-02 03:21:36 +0000553 ConstantInt *CI = SCValue.getConstantInt();
Jakub Staszak632a3552012-01-18 21:16:33 +0000554
Craig Topperf40110f2014-04-25 05:29:35 +0000555 if (!CI) { // Overdefined or undefined condition?
Chris Lattnerfe6c9ee2002-05-02 21:44:00 +0000556 // All destinations are executable!
Chris Lattner9e97fbe2009-11-02 03:21:36 +0000557 if (!SCValue.isUndefined())
558 Succs.assign(TI.getNumSuccessors(), true);
559 return;
560 }
Jakub Staszak632a3552012-01-18 21:16:33 +0000561
Stepan Dyatkovskiy5b648af2012-03-08 07:06:20 +0000562 Succs[SI->findCaseValue(CI).getSuccessorIndex()] = true;
Chris Lattneree8b9512009-10-29 01:21:20 +0000563 return;
Chris Lattnerfe6c9ee2002-05-02 21:44:00 +0000564 }
Jakub Staszak632a3552012-01-18 21:16:33 +0000565
Chris Lattneree8b9512009-10-29 01:21:20 +0000566 // TODO: This could be improved if the operand is a [cast of a] BlockAddress.
567 if (isa<IndirectBrInst>(&TI)) {
568 // Just mark all destinations executable!
569 Succs.assign(TI.getNumSuccessors(), true);
570 return;
571 }
Jakub Staszak632a3552012-01-18 21:16:33 +0000572
Chris Lattneree8b9512009-10-29 01:21:20 +0000573#ifndef NDEBUG
David Greene389fc3b2010-01-05 01:27:15 +0000574 dbgs() << "Unknown terminator instruction: " << TI << '\n';
Chris Lattneree8b9512009-10-29 01:21:20 +0000575#endif
576 llvm_unreachable("SCCP: Don't know how to handle this terminator!");
Chris Lattnerfe6c9ee2002-05-02 21:44:00 +0000577}
578
579
Chris Lattner13b52e72002-05-02 21:18:01 +0000580// isEdgeFeasible - Return true if the control flow edge from the 'From' basic
Chris Lattnera3c39d32009-11-02 02:33:50 +0000581// block to the 'To' basic block is currently feasible.
Chris Lattner13b52e72002-05-02 21:18:01 +0000582//
Chris Lattner074be1f2004-11-15 04:44:20 +0000583bool SCCPSolver::isEdgeFeasible(BasicBlock *From, BasicBlock *To) {
Chris Lattner13b52e72002-05-02 21:18:01 +0000584 assert(BBExecutable.count(To) && "Dest should always be alive!");
585
586 // Make sure the source basic block is executable!!
587 if (!BBExecutable.count(From)) return false;
Misha Brukmanb1c93172005-04-21 23:48:37 +0000588
Chris Lattnera3c39d32009-11-02 02:33:50 +0000589 // Check to make sure this edge itself is actually feasible now.
Chris Lattner71ac22ff2003-10-08 15:47:41 +0000590 TerminatorInst *TI = From->getTerminator();
591 if (BranchInst *BI = dyn_cast<BranchInst>(TI)) {
592 if (BI->isUnconditional())
Chris Lattnerfe6c9ee2002-05-02 21:44:00 +0000593 return true;
Jakub Staszak632a3552012-01-18 21:16:33 +0000594
Chris Lattnerf5484032009-11-02 05:55:40 +0000595 LatticeVal BCValue = getValueState(BI->getCondition());
Chris Lattnerfe992d42004-01-12 17:40:36 +0000596
Chris Lattner6df5cec2009-11-02 02:30:06 +0000597 // Overdefined condition variables mean the branch could go either way,
598 // undef conditions mean that neither edge is feasible yet.
Chris Lattner9e97fbe2009-11-02 03:21:36 +0000599 ConstantInt *CI = BCValue.getConstantInt();
Craig Topperf40110f2014-04-25 05:29:35 +0000600 if (!CI)
Chris Lattner9e97fbe2009-11-02 03:21:36 +0000601 return !BCValue.isUndefined();
Jakub Staszak632a3552012-01-18 21:16:33 +0000602
Chris Lattner6df5cec2009-11-02 02:30:06 +0000603 // Constant condition variables mean the branch can only go a single way.
Chris Lattner9e97fbe2009-11-02 03:21:36 +0000604 return BI->getSuccessor(CI->isZero()) == To;
Chris Lattneree8b9512009-10-29 01:21:20 +0000605 }
Jakub Staszak632a3552012-01-18 21:16:33 +0000606
Chris Lattneree8b9512009-10-29 01:21:20 +0000607 // Invoke instructions successors are always executable.
608 if (isa<InvokeInst>(TI))
Chris Lattner71ac22ff2003-10-08 15:47:41 +0000609 return true;
Jakub Staszak632a3552012-01-18 21:16:33 +0000610
Chris Lattneree8b9512009-10-29 01:21:20 +0000611 if (SwitchInst *SI = dyn_cast<SwitchInst>(TI)) {
Stepan Dyatkovskiy513aaa52012-02-01 07:49:51 +0000612 if (SI->getNumCases() < 1)
Eli Friedman56f2f212011-08-16 21:12:35 +0000613 return true;
614
Chris Lattnerf5484032009-11-02 05:55:40 +0000615 LatticeVal SCValue = getValueState(SI->getCondition());
Chris Lattner9e97fbe2009-11-02 03:21:36 +0000616 ConstantInt *CI = SCValue.getConstantInt();
Jakub Staszak632a3552012-01-18 21:16:33 +0000617
Craig Topperf40110f2014-04-25 05:29:35 +0000618 if (!CI)
Chris Lattner9e97fbe2009-11-02 03:21:36 +0000619 return !SCValue.isUndefined();
Chris Lattnerfe992d42004-01-12 17:40:36 +0000620
Stepan Dyatkovskiy5b648af2012-03-08 07:06:20 +0000621 return SI->findCaseValue(CI).getCaseSuccessor() == To;
Chris Lattner71ac22ff2003-10-08 15:47:41 +0000622 }
Jakub Staszak632a3552012-01-18 21:16:33 +0000623
Chris Lattneree8b9512009-10-29 01:21:20 +0000624 // Just mark all destinations executable!
625 // TODO: This could be improved if the operand is a [cast of a] BlockAddress.
Eli Friedman3de2ddc2011-05-21 19:13:10 +0000626 if (isa<IndirectBrInst>(TI))
Chris Lattneree8b9512009-10-29 01:21:20 +0000627 return true;
Jakub Staszak632a3552012-01-18 21:16:33 +0000628
Chris Lattneree8b9512009-10-29 01:21:20 +0000629#ifndef NDEBUG
David Greene389fc3b2010-01-05 01:27:15 +0000630 dbgs() << "Unknown terminator instruction: " << *TI << '\n';
Chris Lattneree8b9512009-10-29 01:21:20 +0000631#endif
Craig Toppere73658d2014-04-28 04:05:08 +0000632 llvm_unreachable(nullptr);
Chris Lattner13b52e72002-05-02 21:18:01 +0000633}
Chris Lattner347389d2001-06-27 23:38:11 +0000634
Chris Lattnera3c39d32009-11-02 02:33:50 +0000635// visit Implementations - Something changed in this instruction, either an
Chris Lattner347389d2001-06-27 23:38:11 +0000636// operand made a transition, or the instruction is newly executable. Change
637// the value type of I to reflect these changes if appropriate. This method
638// makes sure to do the following actions:
639//
640// 1. If a phi node merges two constants in, and has conflicting value coming
641// from different branches, or if the PHI node merges in an overdefined
642// value, then the PHI node becomes overdefined.
643// 2. If a phi node merges only constants in, and they all agree on value, the
644// PHI node becomes a constant value equal to that.
645// 3. If V <- x (op) y && isConstant(x) && isConstant(y) V = Constant
646// 4. If V <- x (op) y && (isOverdefined(x) || isOverdefined(y)) V = Overdefined
647// 5. If V <- MEM or V <- CALL or V <- (unknown) then V = Overdefined
648// 6. If a conditional branch has a value that is constant, make the selected
649// destination executable
650// 7. If a conditional branch has a value that is overdefined, make all
651// successors executable.
652//
Chris Lattner074be1f2004-11-15 04:44:20 +0000653void SCCPSolver::visitPHINode(PHINode &PN) {
Chris Lattner156b8c72009-11-03 23:40:48 +0000654 // If this PN returns a struct, just mark the result overdefined.
655 // TODO: We could do a lot better than this if code actually uses this.
Duncan Sands19d0b472010-02-16 11:11:14 +0000656 if (PN.getType()->isStructTy())
Chris Lattner156b8c72009-11-03 23:40:48 +0000657 return markAnythingOverdefined(&PN);
Jakub Staszak632a3552012-01-18 21:16:33 +0000658
Eli Friedman0a309292011-11-11 01:16:15 +0000659 if (getValueState(&PN).isOverdefined())
Chris Lattner05fe6842004-01-12 03:57:30 +0000660 return; // Quick exit
Chris Lattner347389d2001-06-27 23:38:11 +0000661
Chris Lattner7a7b1142004-03-16 19:49:59 +0000662 // Super-extra-high-degree PHI nodes are unlikely to ever be marked constant,
663 // and slow us down a lot. Just mark them overdefined.
Chris Lattner7ccf1a62009-11-02 03:03:42 +0000664 if (PN.getNumIncomingValues() > 64)
Chris Lattnerf5484032009-11-02 05:55:40 +0000665 return markOverdefined(&PN);
Jakub Staszak632a3552012-01-18 21:16:33 +0000666
Chris Lattner6e560792002-04-18 15:13:15 +0000667 // Look at all of the executable operands of the PHI node. If any of them
668 // are overdefined, the PHI becomes overdefined as well. If they are all
669 // constant, and they agree with each other, the PHI becomes the identical
670 // constant. If they are constant and don't agree, the PHI is overdefined.
671 // If there are no executable operands, the PHI remains undefined.
672 //
Craig Topperf40110f2014-04-25 05:29:35 +0000673 Constant *OperandVal = nullptr;
Chris Lattnercccc5c72003-04-25 02:50:03 +0000674 for (unsigned i = 0, e = PN.getNumIncomingValues(); i != e; ++i) {
Chris Lattnerf5484032009-11-02 05:55:40 +0000675 LatticeVal IV = getValueState(PN.getIncomingValue(i));
Chris Lattnercccc5c72003-04-25 02:50:03 +0000676 if (IV.isUndefined()) continue; // Doesn't influence PHI node.
Misha Brukmanb1c93172005-04-21 23:48:37 +0000677
Chris Lattner7ccf1a62009-11-02 03:03:42 +0000678 if (!isEdgeFeasible(PN.getIncomingBlock(i), PN.getParent()))
679 continue;
Jakub Staszak632a3552012-01-18 21:16:33 +0000680
Chris Lattner7ccf1a62009-11-02 03:03:42 +0000681 if (IV.isOverdefined()) // PHI node becomes overdefined!
682 return markOverdefined(&PN);
Chris Lattner7e270582003-06-24 20:29:52 +0000683
Craig Topperf40110f2014-04-25 05:29:35 +0000684 if (!OperandVal) { // Grab the first value.
Chris Lattner7ccf1a62009-11-02 03:03:42 +0000685 OperandVal = IV.getConstant();
686 continue;
Chris Lattner347389d2001-06-27 23:38:11 +0000687 }
Jakub Staszak632a3552012-01-18 21:16:33 +0000688
Chris Lattner7ccf1a62009-11-02 03:03:42 +0000689 // There is already a reachable operand. If we conflict with it,
690 // then the PHI node becomes overdefined. If we agree with it, we
691 // can continue on.
Jakub Staszak632a3552012-01-18 21:16:33 +0000692
Chris Lattner7ccf1a62009-11-02 03:03:42 +0000693 // Check to see if there are two different constants merging, if so, the PHI
694 // node is overdefined.
695 if (IV.getConstant() != OperandVal)
696 return markOverdefined(&PN);
Chris Lattner347389d2001-06-27 23:38:11 +0000697 }
698
Chris Lattner6e560792002-04-18 15:13:15 +0000699 // If we exited the loop, this means that the PHI node only has constant
Chris Lattnercccc5c72003-04-25 02:50:03 +0000700 // arguments that agree with each other(and OperandVal is the constant) or
701 // OperandVal is null because there are no defined incoming arguments. If
702 // this is the case, the PHI remains undefined.
Chris Lattner347389d2001-06-27 23:38:11 +0000703 //
Chris Lattnercccc5c72003-04-25 02:50:03 +0000704 if (OperandVal)
Chris Lattner65938fc2008-08-23 23:36:38 +0000705 markConstant(&PN, OperandVal); // Acquire operand value
Chris Lattner347389d2001-06-27 23:38:11 +0000706}
707
Chris Lattnerb4394642004-12-10 08:02:06 +0000708void SCCPSolver::visitReturnInst(ReturnInst &I) {
Chris Lattnerf5484032009-11-02 05:55:40 +0000709 if (I.getNumOperands() == 0) return; // ret void
Chris Lattnerb4394642004-12-10 08:02:06 +0000710
Chris Lattnerb4394642004-12-10 08:02:06 +0000711 Function *F = I.getParent()->getParent();
Chris Lattner156b8c72009-11-03 23:40:48 +0000712 Value *ResultOp = I.getOperand(0);
Jakub Staszak632a3552012-01-18 21:16:33 +0000713
Devang Patela7a20752008-03-11 05:46:42 +0000714 // If we are tracking the return value of this function, merge it in.
Duncan Sands19d0b472010-02-16 11:11:14 +0000715 if (!TrackedRetVals.empty() && !ResultOp->getType()->isStructTy()) {
Chris Lattner067d6072007-02-02 20:38:30 +0000716 DenseMap<Function*, LatticeVal>::iterator TFRVI =
Devang Patela7a20752008-03-11 05:46:42 +0000717 TrackedRetVals.find(F);
Chris Lattnerfb141812009-11-03 03:42:51 +0000718 if (TFRVI != TrackedRetVals.end()) {
Chris Lattner156b8c72009-11-03 23:40:48 +0000719 mergeInValue(TFRVI->second, F, getValueState(ResultOp));
Devang Patela7a20752008-03-11 05:46:42 +0000720 return;
721 }
722 }
Jakub Staszak632a3552012-01-18 21:16:33 +0000723
Chris Lattner5a58a4d2008-04-23 05:38:20 +0000724 // Handle functions that return multiple values.
Chris Lattner156b8c72009-11-03 23:40:48 +0000725 if (!TrackedMultipleRetVals.empty()) {
Chris Lattner229907c2011-07-18 04:54:35 +0000726 if (StructType *STy = dyn_cast<StructType>(ResultOp->getType()))
Chris Lattner156b8c72009-11-03 23:40:48 +0000727 if (MRVFunctionsTracked.count(F))
728 for (unsigned i = 0, e = STy->getNumElements(); i != e; ++i)
729 mergeInValue(TrackedMultipleRetVals[std::make_pair(F, i)], F,
730 getStructValueState(ResultOp, i));
Jakub Staszak632a3552012-01-18 21:16:33 +0000731
Chris Lattnerb4394642004-12-10 08:02:06 +0000732 }
733}
734
Chris Lattner074be1f2004-11-15 04:44:20 +0000735void SCCPSolver::visitTerminatorInst(TerminatorInst &TI) {
Chris Lattner37d400a2007-02-02 21:15:06 +0000736 SmallVector<bool, 16> SuccFeasible;
Chris Lattnerfe6c9ee2002-05-02 21:44:00 +0000737 getFeasibleSuccessors(TI, SuccFeasible);
Chris Lattner347389d2001-06-27 23:38:11 +0000738
Chris Lattner0bbbe5d2003-10-08 16:55:34 +0000739 BasicBlock *BB = TI.getParent();
740
Chris Lattnera3c39d32009-11-02 02:33:50 +0000741 // Mark all feasible successors executable.
Chris Lattnerfe6c9ee2002-05-02 21:44:00 +0000742 for (unsigned i = 0, e = SuccFeasible.size(); i != e; ++i)
Chris Lattner0bbbe5d2003-10-08 16:55:34 +0000743 if (SuccFeasible[i])
744 markEdgeExecutable(BB, TI.getSuccessor(i));
Chris Lattner6e560792002-04-18 15:13:15 +0000745}
746
Chris Lattner074be1f2004-11-15 04:44:20 +0000747void SCCPSolver::visitCastInst(CastInst &I) {
Chris Lattnerf5484032009-11-02 05:55:40 +0000748 LatticeVal OpSt = getValueState(I.getOperand(0));
749 if (OpSt.isOverdefined()) // Inherit overdefinedness of operand
Chris Lattner113f4f42002-06-25 16:13:24 +0000750 markOverdefined(&I);
Chris Lattnerf5484032009-11-02 05:55:40 +0000751 else if (OpSt.isConstant()) // Propagate constant value
Jakub Staszak632a3552012-01-18 21:16:33 +0000752 markConstant(&I, ConstantExpr::getCast(I.getOpcode(),
Chris Lattnerf5484032009-11-02 05:55:40 +0000753 OpSt.getConstant(), I.getType()));
Chris Lattner6e560792002-04-18 15:13:15 +0000754}
755
Chris Lattner156b8c72009-11-03 23:40:48 +0000756
Dan Gohman041f9d02008-06-20 01:15:44 +0000757void SCCPSolver::visitExtractValueInst(ExtractValueInst &EVI) {
Chris Lattner156b8c72009-11-03 23:40:48 +0000758 // If this returns a struct, mark all elements over defined, we don't track
759 // structs in structs.
Duncan Sands19d0b472010-02-16 11:11:14 +0000760 if (EVI.getType()->isStructTy())
Chris Lattner156b8c72009-11-03 23:40:48 +0000761 return markAnythingOverdefined(&EVI);
Jakub Staszak632a3552012-01-18 21:16:33 +0000762
Chris Lattner156b8c72009-11-03 23:40:48 +0000763 // If this is extracting from more than one level of struct, we don't know.
Chris Lattner7ccf1a62009-11-02 03:03:42 +0000764 if (EVI.getNumIndices() != 1)
765 return markOverdefined(&EVI);
Dan Gohman041f9d02008-06-20 01:15:44 +0000766
Chris Lattner156b8c72009-11-03 23:40:48 +0000767 Value *AggVal = EVI.getAggregateOperand();
Duncan Sands19d0b472010-02-16 11:11:14 +0000768 if (AggVal->getType()->isStructTy()) {
Chris Lattner02e2cee2009-11-10 22:02:09 +0000769 unsigned i = *EVI.idx_begin();
770 LatticeVal EltVal = getStructValueState(AggVal, i);
771 mergeInValue(getValueState(&EVI), &EVI, EltVal);
772 } else {
773 // Otherwise, must be extracting from an array.
774 return markOverdefined(&EVI);
775 }
Dan Gohman041f9d02008-06-20 01:15:44 +0000776}
777
778void SCCPSolver::visitInsertValueInst(InsertValueInst &IVI) {
Chris Lattner229907c2011-07-18 04:54:35 +0000779 StructType *STy = dyn_cast<StructType>(IVI.getType());
Craig Topperf40110f2014-04-25 05:29:35 +0000780 if (!STy)
Chris Lattner7ccf1a62009-11-02 03:03:42 +0000781 return markOverdefined(&IVI);
Jakub Staszak632a3552012-01-18 21:16:33 +0000782
Chris Lattner156b8c72009-11-03 23:40:48 +0000783 // If this has more than one index, we can't handle it, drive all results to
784 // undef.
785 if (IVI.getNumIndices() != 1)
786 return markAnythingOverdefined(&IVI);
Jakub Staszak632a3552012-01-18 21:16:33 +0000787
Chris Lattner156b8c72009-11-03 23:40:48 +0000788 Value *Aggr = IVI.getAggregateOperand();
789 unsigned Idx = *IVI.idx_begin();
Jakub Staszak632a3552012-01-18 21:16:33 +0000790
Chris Lattner156b8c72009-11-03 23:40:48 +0000791 // Compute the result based on what we're inserting.
792 for (unsigned i = 0, e = STy->getNumElements(); i != e; ++i) {
793 // This passes through all values that aren't the inserted element.
794 if (i != Idx) {
795 LatticeVal EltVal = getStructValueState(Aggr, i);
796 mergeInValue(getStructValueState(&IVI, i), &IVI, EltVal);
797 continue;
798 }
Jakub Staszak632a3552012-01-18 21:16:33 +0000799
Chris Lattner156b8c72009-11-03 23:40:48 +0000800 Value *Val = IVI.getInsertedValueOperand();
Duncan Sands19d0b472010-02-16 11:11:14 +0000801 if (Val->getType()->isStructTy())
Chris Lattner156b8c72009-11-03 23:40:48 +0000802 // We don't track structs in structs.
803 markOverdefined(getStructValueState(&IVI, i), &IVI);
804 else {
805 LatticeVal InVal = getValueState(Val);
806 mergeInValue(getStructValueState(&IVI, i), &IVI, InVal);
807 }
808 }
Dan Gohman041f9d02008-06-20 01:15:44 +0000809}
810
Chris Lattner074be1f2004-11-15 04:44:20 +0000811void SCCPSolver::visitSelectInst(SelectInst &I) {
Chris Lattner156b8c72009-11-03 23:40:48 +0000812 // If this select returns a struct, just mark the result overdefined.
813 // TODO: We could do a lot better than this if code actually uses this.
Duncan Sands19d0b472010-02-16 11:11:14 +0000814 if (I.getType()->isStructTy())
Chris Lattner156b8c72009-11-03 23:40:48 +0000815 return markAnythingOverdefined(&I);
Jakub Staszak632a3552012-01-18 21:16:33 +0000816
Chris Lattnerf5484032009-11-02 05:55:40 +0000817 LatticeVal CondValue = getValueState(I.getCondition());
Chris Lattner06a0ed12006-02-08 02:38:11 +0000818 if (CondValue.isUndefined())
819 return;
Jakub Staszak632a3552012-01-18 21:16:33 +0000820
Chris Lattner9e97fbe2009-11-02 03:21:36 +0000821 if (ConstantInt *CondCB = CondValue.getConstantInt()) {
Chris Lattnerf5484032009-11-02 05:55:40 +0000822 Value *OpVal = CondCB->isZero() ? I.getFalseValue() : I.getTrueValue();
823 mergeInValue(&I, getValueState(OpVal));
Chris Lattner9e97fbe2009-11-02 03:21:36 +0000824 return;
Chris Lattner06a0ed12006-02-08 02:38:11 +0000825 }
Jakub Staszak632a3552012-01-18 21:16:33 +0000826
Chris Lattner06a0ed12006-02-08 02:38:11 +0000827 // Otherwise, the condition is overdefined or a constant we can't evaluate.
828 // See if we can produce something better than overdefined based on the T/F
829 // value.
Chris Lattnerf5484032009-11-02 05:55:40 +0000830 LatticeVal TVal = getValueState(I.getTrueValue());
831 LatticeVal FVal = getValueState(I.getFalseValue());
Jakub Staszak632a3552012-01-18 21:16:33 +0000832
Chris Lattner06a0ed12006-02-08 02:38:11 +0000833 // select ?, C, C -> C.
Jakub Staszak632a3552012-01-18 21:16:33 +0000834 if (TVal.isConstant() && FVal.isConstant() &&
Chris Lattner7ccf1a62009-11-02 03:03:42 +0000835 TVal.getConstant() == FVal.getConstant())
836 return markConstant(&I, FVal.getConstant());
Chris Lattner06a0ed12006-02-08 02:38:11 +0000837
Chris Lattnerf5484032009-11-02 05:55:40 +0000838 if (TVal.isUndefined()) // select ?, undef, X -> X.
839 return mergeInValue(&I, FVal);
840 if (FVal.isUndefined()) // select ?, X, undef -> X.
841 return mergeInValue(&I, TVal);
842 markOverdefined(&I);
Chris Lattner59db22d2004-03-12 05:52:44 +0000843}
844
Chris Lattnerf5484032009-11-02 05:55:40 +0000845// Handle Binary Operators.
Chris Lattner074be1f2004-11-15 04:44:20 +0000846void SCCPSolver::visitBinaryOperator(Instruction &I) {
Chris Lattnerf5484032009-11-02 05:55:40 +0000847 LatticeVal V1State = getValueState(I.getOperand(0));
848 LatticeVal V2State = getValueState(I.getOperand(1));
Jakub Staszak632a3552012-01-18 21:16:33 +0000849
Chris Lattner4f031622004-11-15 05:03:30 +0000850 LatticeVal &IV = ValueState[&I];
Chris Lattner05fe6842004-01-12 03:57:30 +0000851 if (IV.isOverdefined()) return;
852
Chris Lattnerf5484032009-11-02 05:55:40 +0000853 if (V1State.isConstant() && V2State.isConstant())
854 return markConstant(IV, &I,
855 ConstantExpr::get(I.getOpcode(), V1State.getConstant(),
856 V2State.getConstant()));
Jakub Staszak632a3552012-01-18 21:16:33 +0000857
Chris Lattnerf5484032009-11-02 05:55:40 +0000858 // If something is undef, wait for it to resolve.
859 if (!V1State.isOverdefined() && !V2State.isOverdefined())
860 return;
Jakub Staszak632a3552012-01-18 21:16:33 +0000861
Chris Lattnerf5484032009-11-02 05:55:40 +0000862 // Otherwise, one of our operands is overdefined. Try to produce something
863 // better than overdefined with some tricks.
Jakub Staszak632a3552012-01-18 21:16:33 +0000864
Chris Lattnerf5484032009-11-02 05:55:40 +0000865 // If this is an AND or OR with 0 or -1, it doesn't matter that the other
866 // operand is overdefined.
867 if (I.getOpcode() == Instruction::And || I.getOpcode() == Instruction::Or) {
Craig Topperf40110f2014-04-25 05:29:35 +0000868 LatticeVal *NonOverdefVal = nullptr;
Chris Lattnerf5484032009-11-02 05:55:40 +0000869 if (!V1State.isOverdefined())
870 NonOverdefVal = &V1State;
871 else if (!V2State.isOverdefined())
872 NonOverdefVal = &V2State;
Chris Lattner05fe6842004-01-12 03:57:30 +0000873
Chris Lattnerf5484032009-11-02 05:55:40 +0000874 if (NonOverdefVal) {
875 if (NonOverdefVal->isUndefined()) {
876 // Could annihilate value.
877 if (I.getOpcode() == Instruction::And)
878 markConstant(IV, &I, Constant::getNullValue(I.getType()));
Chris Lattner229907c2011-07-18 04:54:35 +0000879 else if (VectorType *PT = dyn_cast<VectorType>(I.getType()))
Chris Lattnerf5484032009-11-02 05:55:40 +0000880 markConstant(IV, &I, Constant::getAllOnesValue(PT));
881 else
882 markConstant(IV, &I,
883 Constant::getAllOnesValue(I.getType()));
884 return;
Chris Lattnercbc01612004-12-11 23:15:19 +0000885 }
Jakub Staszak632a3552012-01-18 21:16:33 +0000886
Chris Lattnerf5484032009-11-02 05:55:40 +0000887 if (I.getOpcode() == Instruction::And) {
888 // X and 0 = 0
889 if (NonOverdefVal->getConstant()->isNullValue())
890 return markConstant(IV, &I, NonOverdefVal->getConstant());
891 } else {
892 if (ConstantInt *CI = NonOverdefVal->getConstantInt())
893 if (CI->isAllOnesValue()) // X or -1 = -1
894 return markConstant(IV, &I, NonOverdefVal->getConstant());
Chris Lattnercbc01612004-12-11 23:15:19 +0000895 }
896 }
Chris Lattnerf5484032009-11-02 05:55:40 +0000897 }
Chris Lattnercbc01612004-12-11 23:15:19 +0000898
899
Chris Lattnerf5484032009-11-02 05:55:40 +0000900 markOverdefined(&I);
Chris Lattner6e560792002-04-18 15:13:15 +0000901}
Chris Lattnerdd6522e2002-08-30 23:39:00 +0000902
Chris Lattnera3c39d32009-11-02 02:33:50 +0000903// Handle ICmpInst instruction.
Reid Spencer266e42b2006-12-23 06:05:41 +0000904void SCCPSolver::visitCmpInst(CmpInst &I) {
Chris Lattnerf5484032009-11-02 05:55:40 +0000905 LatticeVal V1State = getValueState(I.getOperand(0));
906 LatticeVal V2State = getValueState(I.getOperand(1));
907
Reid Spencer266e42b2006-12-23 06:05:41 +0000908 LatticeVal &IV = ValueState[&I];
909 if (IV.isOverdefined()) return;
910
Chris Lattnerf5484032009-11-02 05:55:40 +0000911 if (V1State.isConstant() && V2State.isConstant())
Jakub Staszak632a3552012-01-18 21:16:33 +0000912 return markConstant(IV, &I, ConstantExpr::getCompare(I.getPredicate(),
913 V1State.getConstant(),
Chris Lattnerf5484032009-11-02 05:55:40 +0000914 V2State.getConstant()));
Jakub Staszak632a3552012-01-18 21:16:33 +0000915
Chris Lattnerf5484032009-11-02 05:55:40 +0000916 // If operands are still undefined, wait for it to resolve.
917 if (!V1State.isOverdefined() && !V2State.isOverdefined())
918 return;
Jakub Staszak632a3552012-01-18 21:16:33 +0000919
Chris Lattnerf5484032009-11-02 05:55:40 +0000920 markOverdefined(&I);
Reid Spencer266e42b2006-12-23 06:05:41 +0000921}
922
Robert Bocchinobd518d12006-01-10 19:05:05 +0000923void SCCPSolver::visitExtractElementInst(ExtractElementInst &I) {
Chris Lattner156b8c72009-11-03 23:40:48 +0000924 // TODO : SCCP does not handle vectors properly.
Chris Lattner7ccf1a62009-11-02 03:03:42 +0000925 return markOverdefined(&I);
Devang Patel21efc732006-12-04 23:54:59 +0000926
927#if 0
Robert Bocchinobd518d12006-01-10 19:05:05 +0000928 LatticeVal &ValState = getValueState(I.getOperand(0));
929 LatticeVal &IdxState = getValueState(I.getOperand(1));
930
931 if (ValState.isOverdefined() || IdxState.isOverdefined())
932 markOverdefined(&I);
933 else if(ValState.isConstant() && IdxState.isConstant())
934 markConstant(&I, ConstantExpr::getExtractElement(ValState.getConstant(),
935 IdxState.getConstant()));
Devang Patel21efc732006-12-04 23:54:59 +0000936#endif
Robert Bocchinobd518d12006-01-10 19:05:05 +0000937}
938
Robert Bocchino6dce2502006-01-17 20:06:55 +0000939void SCCPSolver::visitInsertElementInst(InsertElementInst &I) {
Chris Lattner156b8c72009-11-03 23:40:48 +0000940 // TODO : SCCP does not handle vectors properly.
Chris Lattner7ccf1a62009-11-02 03:03:42 +0000941 return markOverdefined(&I);
Devang Patel21efc732006-12-04 23:54:59 +0000942#if 0
Robert Bocchino6dce2502006-01-17 20:06:55 +0000943 LatticeVal &ValState = getValueState(I.getOperand(0));
944 LatticeVal &EltState = getValueState(I.getOperand(1));
945 LatticeVal &IdxState = getValueState(I.getOperand(2));
946
947 if (ValState.isOverdefined() || EltState.isOverdefined() ||
948 IdxState.isOverdefined())
949 markOverdefined(&I);
950 else if(ValState.isConstant() && EltState.isConstant() &&
951 IdxState.isConstant())
952 markConstant(&I, ConstantExpr::getInsertElement(ValState.getConstant(),
953 EltState.getConstant(),
954 IdxState.getConstant()));
955 else if (ValState.isUndefined() && EltState.isConstant() &&
Jakub Staszak632a3552012-01-18 21:16:33 +0000956 IdxState.isConstant())
Chris Lattner28d921d2007-04-14 23:32:02 +0000957 markConstant(&I,ConstantExpr::getInsertElement(UndefValue::get(I.getType()),
958 EltState.getConstant(),
959 IdxState.getConstant()));
Devang Patel21efc732006-12-04 23:54:59 +0000960#endif
Robert Bocchino6dce2502006-01-17 20:06:55 +0000961}
962
Chris Lattner17bd6052006-04-08 01:19:12 +0000963void SCCPSolver::visitShuffleVectorInst(ShuffleVectorInst &I) {
Chris Lattner156b8c72009-11-03 23:40:48 +0000964 // TODO : SCCP does not handle vectors properly.
Chris Lattner7ccf1a62009-11-02 03:03:42 +0000965 return markOverdefined(&I);
Devang Patel21efc732006-12-04 23:54:59 +0000966#if 0
Chris Lattner17bd6052006-04-08 01:19:12 +0000967 LatticeVal &V1State = getValueState(I.getOperand(0));
968 LatticeVal &V2State = getValueState(I.getOperand(1));
969 LatticeVal &MaskState = getValueState(I.getOperand(2));
970
971 if (MaskState.isUndefined() ||
972 (V1State.isUndefined() && V2State.isUndefined()))
973 return; // Undefined output if mask or both inputs undefined.
Jakub Staszak632a3552012-01-18 21:16:33 +0000974
Chris Lattner17bd6052006-04-08 01:19:12 +0000975 if (V1State.isOverdefined() || V2State.isOverdefined() ||
976 MaskState.isOverdefined()) {
977 markOverdefined(&I);
978 } else {
979 // A mix of constant/undef inputs.
Jakub Staszak632a3552012-01-18 21:16:33 +0000980 Constant *V1 = V1State.isConstant() ?
Chris Lattner17bd6052006-04-08 01:19:12 +0000981 V1State.getConstant() : UndefValue::get(I.getType());
Jakub Staszak632a3552012-01-18 21:16:33 +0000982 Constant *V2 = V2State.isConstant() ?
Chris Lattner17bd6052006-04-08 01:19:12 +0000983 V2State.getConstant() : UndefValue::get(I.getType());
Jakub Staszak632a3552012-01-18 21:16:33 +0000984 Constant *Mask = MaskState.isConstant() ?
Chris Lattner17bd6052006-04-08 01:19:12 +0000985 MaskState.getConstant() : UndefValue::get(I.getOperand(2)->getType());
986 markConstant(&I, ConstantExpr::getShuffleVector(V1, V2, Mask));
987 }
Devang Patel21efc732006-12-04 23:54:59 +0000988#endif
Chris Lattner17bd6052006-04-08 01:19:12 +0000989}
990
Chris Lattnera3c39d32009-11-02 02:33:50 +0000991// Handle getelementptr instructions. If all operands are constants then we
Chris Lattnerdd6522e2002-08-30 23:39:00 +0000992// can turn this into a getelementptr ConstantExpr.
993//
Chris Lattner074be1f2004-11-15 04:44:20 +0000994void SCCPSolver::visitGetElementPtrInst(GetElementPtrInst &I) {
Chris Lattnerb70ef3c2009-11-02 23:25:39 +0000995 if (ValueState[&I].isOverdefined()) return;
Chris Lattner49f74522004-01-12 04:29:41 +0000996
Chris Lattner0e7ec672007-02-02 20:51:48 +0000997 SmallVector<Constant*, 8> Operands;
Chris Lattnerdd6522e2002-08-30 23:39:00 +0000998 Operands.reserve(I.getNumOperands());
999
1000 for (unsigned i = 0, e = I.getNumOperands(); i != e; ++i) {
Chris Lattnerf5484032009-11-02 05:55:40 +00001001 LatticeVal State = getValueState(I.getOperand(i));
Chris Lattnerdd6522e2002-08-30 23:39:00 +00001002 if (State.isUndefined())
Chris Lattnera3c39d32009-11-02 02:33:50 +00001003 return; // Operands are not resolved yet.
Jakub Staszak632a3552012-01-18 21:16:33 +00001004
Chris Lattner7ccf1a62009-11-02 03:03:42 +00001005 if (State.isOverdefined())
Chris Lattnerb70ef3c2009-11-02 23:25:39 +00001006 return markOverdefined(&I);
Chris Lattner7ccf1a62009-11-02 03:03:42 +00001007
Chris Lattnerdd6522e2002-08-30 23:39:00 +00001008 assert(State.isConstant() && "Unknown state!");
1009 Operands.push_back(State.getConstant());
1010 }
1011
1012 Constant *Ptr = Operands[0];
Jay Foaded8db7d2011-07-21 14:31:17 +00001013 ArrayRef<Constant *> Indices(Operands.begin() + 1, Operands.end());
1014 markConstant(&I, ConstantExpr::getGetElementPtr(Ptr, Indices));
Chris Lattnerdd6522e2002-08-30 23:39:00 +00001015}
Brian Gaeke960707c2003-11-11 22:41:34 +00001016
Chris Lattnerf5484032009-11-02 05:55:40 +00001017void SCCPSolver::visitStoreInst(StoreInst &SI) {
Chris Lattner156b8c72009-11-03 23:40:48 +00001018 // If this store is of a struct, ignore it.
Duncan Sands19d0b472010-02-16 11:11:14 +00001019 if (SI.getOperand(0)->getType()->isStructTy())
Chris Lattner156b8c72009-11-03 23:40:48 +00001020 return;
Jakub Staszak632a3552012-01-18 21:16:33 +00001021
Chris Lattner91dbae62004-12-11 05:15:59 +00001022 if (TrackedGlobals.empty() || !isa<GlobalVariable>(SI.getOperand(1)))
1023 return;
Jakub Staszak632a3552012-01-18 21:16:33 +00001024
Chris Lattner91dbae62004-12-11 05:15:59 +00001025 GlobalVariable *GV = cast<GlobalVariable>(SI.getOperand(1));
Chris Lattner067d6072007-02-02 20:38:30 +00001026 DenseMap<GlobalVariable*, LatticeVal>::iterator I = TrackedGlobals.find(GV);
Chris Lattner91dbae62004-12-11 05:15:59 +00001027 if (I == TrackedGlobals.end() || I->second.isOverdefined()) return;
1028
Chris Lattnerf5484032009-11-02 05:55:40 +00001029 // Get the value we are storing into the global, then merge it.
1030 mergeInValue(I->second, GV, getValueState(SI.getOperand(0)));
Chris Lattner91dbae62004-12-11 05:15:59 +00001031 if (I->second.isOverdefined())
1032 TrackedGlobals.erase(I); // No need to keep tracking this!
1033}
1034
1035
Chris Lattner49f74522004-01-12 04:29:41 +00001036// Handle load instructions. If the operand is a constant pointer to a constant
1037// global, we can replace the load with the loaded constant value!
Chris Lattner074be1f2004-11-15 04:44:20 +00001038void SCCPSolver::visitLoadInst(LoadInst &I) {
Chris Lattner156b8c72009-11-03 23:40:48 +00001039 // If this load is of a struct, just mark the result overdefined.
Duncan Sands19d0b472010-02-16 11:11:14 +00001040 if (I.getType()->isStructTy())
Chris Lattner156b8c72009-11-03 23:40:48 +00001041 return markAnythingOverdefined(&I);
Jakub Staszak632a3552012-01-18 21:16:33 +00001042
Chris Lattnerf5484032009-11-02 05:55:40 +00001043 LatticeVal PtrVal = getValueState(I.getOperand(0));
Chris Lattnere77c9aa2009-11-02 06:06:14 +00001044 if (PtrVal.isUndefined()) return; // The pointer is not resolved yet!
Jakub Staszak632a3552012-01-18 21:16:33 +00001045
Chris Lattner4f031622004-11-15 05:03:30 +00001046 LatticeVal &IV = ValueState[&I];
Chris Lattner49f74522004-01-12 04:29:41 +00001047 if (IV.isOverdefined()) return;
1048
Chris Lattnerf5484032009-11-02 05:55:40 +00001049 if (!PtrVal.isConstant() || I.isVolatile())
1050 return markOverdefined(IV, &I);
Jakub Staszak632a3552012-01-18 21:16:33 +00001051
Chris Lattnere77c9aa2009-11-02 06:06:14 +00001052 Constant *Ptr = PtrVal.getConstant();
Misha Brukmanb1c93172005-04-21 23:48:37 +00001053
Chris Lattnerf5484032009-11-02 05:55:40 +00001054 // load null -> null
1055 if (isa<ConstantPointerNull>(Ptr) && I.getPointerAddressSpace() == 0)
1056 return markConstant(IV, &I, Constant::getNullValue(I.getType()));
Jakub Staszak632a3552012-01-18 21:16:33 +00001057
Chris Lattnerf5484032009-11-02 05:55:40 +00001058 // Transform load (constant global) into the value loaded.
1059 if (GlobalVariable *GV = dyn_cast<GlobalVariable>(Ptr)) {
Chris Lattnere77c9aa2009-11-02 06:06:14 +00001060 if (!TrackedGlobals.empty()) {
Chris Lattnerf5484032009-11-02 05:55:40 +00001061 // If we are tracking this global, merge in the known value for it.
1062 DenseMap<GlobalVariable*, LatticeVal>::iterator It =
1063 TrackedGlobals.find(GV);
1064 if (It != TrackedGlobals.end()) {
1065 mergeInValue(IV, &I, It->second);
1066 return;
Chris Lattner49f74522004-01-12 04:29:41 +00001067 }
Chris Lattner91dbae62004-12-11 05:15:59 +00001068 }
Chris Lattner49f74522004-01-12 04:29:41 +00001069 }
1070
Chris Lattnere77c9aa2009-11-02 06:06:14 +00001071 // Transform load from a constant into a constant if possible.
Rafael Espindola37dc9e12014-02-21 00:06:31 +00001072 if (Constant *C = ConstantFoldLoadFromConstPtr(Ptr, DL))
Chris Lattnere77c9aa2009-11-02 06:06:14 +00001073 return markConstant(IV, &I, C);
Chris Lattnerf5484032009-11-02 05:55:40 +00001074
Chris Lattner49f74522004-01-12 04:29:41 +00001075 // Otherwise we cannot say for certain what value this load will produce.
1076 // Bail out.
1077 markOverdefined(IV, &I);
1078}
Chris Lattnerff9362a2004-04-13 19:43:54 +00001079
Chris Lattnerb4394642004-12-10 08:02:06 +00001080void SCCPSolver::visitCallSite(CallSite CS) {
1081 Function *F = CS.getCalledFunction();
Chris Lattnerb4394642004-12-10 08:02:06 +00001082 Instruction *I = CS.getInstruction();
Jakub Staszak632a3552012-01-18 21:16:33 +00001083
Chris Lattner5a58a4d2008-04-23 05:38:20 +00001084 // The common case is that we aren't tracking the callee, either because we
1085 // are not doing interprocedural analysis or the callee is indirect, or is
1086 // external. Handle these cases first.
Craig Topperf40110f2014-04-25 05:29:35 +00001087 if (!F || F->isDeclaration()) {
Chris Lattner5a58a4d2008-04-23 05:38:20 +00001088CallOverdefined:
1089 // Void return and not tracking callee, just bail.
Chris Lattnerfdd87902009-10-05 05:54:46 +00001090 if (I->getType()->isVoidTy()) return;
Jakub Staszak632a3552012-01-18 21:16:33 +00001091
Chris Lattner5a58a4d2008-04-23 05:38:20 +00001092 // Otherwise, if we have a single return value case, and if the function is
1093 // a declaration, maybe we can constant fold it.
Duncan Sands19d0b472010-02-16 11:11:14 +00001094 if (F && F->isDeclaration() && !I->getType()->isStructTy() &&
Chris Lattner5a58a4d2008-04-23 05:38:20 +00001095 canConstantFoldCallTo(F)) {
Jakub Staszak632a3552012-01-18 21:16:33 +00001096
Chris Lattner5a58a4d2008-04-23 05:38:20 +00001097 SmallVector<Constant*, 8> Operands;
1098 for (CallSite::arg_iterator AI = CS.arg_begin(), E = CS.arg_end();
1099 AI != E; ++AI) {
Chris Lattnerf5484032009-11-02 05:55:40 +00001100 LatticeVal State = getValueState(*AI);
Jakub Staszak632a3552012-01-18 21:16:33 +00001101
Chris Lattner5a58a4d2008-04-23 05:38:20 +00001102 if (State.isUndefined())
1103 return; // Operands are not resolved yet.
Chris Lattner7ccf1a62009-11-02 03:03:42 +00001104 if (State.isOverdefined())
1105 return markOverdefined(I);
Chris Lattner5a58a4d2008-04-23 05:38:20 +00001106 assert(State.isConstant() && "Unknown state!");
1107 Operands.push_back(State.getConstant());
1108 }
Jakub Staszak632a3552012-01-18 21:16:33 +00001109
Chris Lattner5a58a4d2008-04-23 05:38:20 +00001110 // If we can constant fold this, mark the result of the call as a
1111 // constant.
Chad Rosiere6de63d2011-12-01 21:29:16 +00001112 if (Constant *C = ConstantFoldCall(F, Operands, TLI))
Chris Lattner7ccf1a62009-11-02 03:03:42 +00001113 return markConstant(I, C);
Chris Lattnerff9362a2004-04-13 19:43:54 +00001114 }
Chris Lattner5a58a4d2008-04-23 05:38:20 +00001115
1116 // Otherwise, we don't know anything about this call, mark it overdefined.
Chris Lattner156b8c72009-11-03 23:40:48 +00001117 return markAnythingOverdefined(I);
Chris Lattnerff9362a2004-04-13 19:43:54 +00001118 }
1119
Chris Lattnercde8de52009-11-03 19:24:51 +00001120 // If this is a local function that doesn't have its address taken, mark its
1121 // entry block executable and merge in the actual arguments to the call into
1122 // the formal arguments of the function.
1123 if (!TrackingIncomingArguments.empty() && TrackingIncomingArguments.count(F)){
1124 MarkBlockExecutable(F->begin());
Jakub Staszak632a3552012-01-18 21:16:33 +00001125
Chris Lattnercde8de52009-11-03 19:24:51 +00001126 // Propagate information from this call site into the callee.
1127 CallSite::arg_iterator CAI = CS.arg_begin();
1128 for (Function::arg_iterator AI = F->arg_begin(), E = F->arg_end();
1129 AI != E; ++AI, ++CAI) {
1130 // If this argument is byval, and if the function is not readonly, there
1131 // will be an implicit copy formed of the input aggregate.
1132 if (AI->hasByValAttr() && !F->onlyReadsMemory()) {
1133 markOverdefined(AI);
1134 continue;
1135 }
Jakub Staszak632a3552012-01-18 21:16:33 +00001136
Chris Lattner229907c2011-07-18 04:54:35 +00001137 if (StructType *STy = dyn_cast<StructType>(AI->getType())) {
Chris Lattner762b56f2009-11-04 18:57:42 +00001138 for (unsigned i = 0, e = STy->getNumElements(); i != e; ++i) {
1139 LatticeVal CallArg = getStructValueState(*CAI, i);
1140 mergeInValue(getStructValueState(AI, i), AI, CallArg);
1141 }
Chris Lattner156b8c72009-11-03 23:40:48 +00001142 } else {
1143 mergeInValue(AI, getValueState(*CAI));
1144 }
Chris Lattnercde8de52009-11-03 19:24:51 +00001145 }
1146 }
Jakub Staszak632a3552012-01-18 21:16:33 +00001147
Chris Lattner5a58a4d2008-04-23 05:38:20 +00001148 // If this is a single/zero retval case, see if we're tracking the function.
Chris Lattner229907c2011-07-18 04:54:35 +00001149 if (StructType *STy = dyn_cast<StructType>(F->getReturnType())) {
Chris Lattner156b8c72009-11-03 23:40:48 +00001150 if (!MRVFunctionsTracked.count(F))
1151 goto CallOverdefined; // Not tracking this callee.
Jakub Staszak632a3552012-01-18 21:16:33 +00001152
Chris Lattner156b8c72009-11-03 23:40:48 +00001153 // If we are tracking this callee, propagate the result of the function
1154 // into this call site.
1155 for (unsigned i = 0, e = STy->getNumElements(); i != e; ++i)
Jakub Staszak632a3552012-01-18 21:16:33 +00001156 mergeInValue(getStructValueState(I, i), I,
Chris Lattner156b8c72009-11-03 23:40:48 +00001157 TrackedMultipleRetVals[std::make_pair(F, i)]);
1158 } else {
1159 DenseMap<Function*, LatticeVal>::iterator TFRVI = TrackedRetVals.find(F);
1160 if (TFRVI == TrackedRetVals.end())
1161 goto CallOverdefined; // Not tracking this callee.
Jakub Staszak632a3552012-01-18 21:16:33 +00001162
Chris Lattner5a58a4d2008-04-23 05:38:20 +00001163 // If so, propagate the return value of the callee into this call result.
1164 mergeInValue(I, TFRVI->second);
Chris Lattner5a58a4d2008-04-23 05:38:20 +00001165 }
Chris Lattnerff9362a2004-04-13 19:43:54 +00001166}
Chris Lattner074be1f2004-11-15 04:44:20 +00001167
Chris Lattner074be1f2004-11-15 04:44:20 +00001168void SCCPSolver::Solve() {
1169 // Process the work lists until they are empty!
Misha Brukmanb1c93172005-04-21 23:48:37 +00001170 while (!BBWorkList.empty() || !InstWorkList.empty() ||
Jeff Cohen82639852005-04-23 21:38:35 +00001171 !OverdefinedInstWorkList.empty()) {
Chris Lattnerf5484032009-11-02 05:55:40 +00001172 // Process the overdefined instruction's work list first, which drives other
1173 // things to overdefined more quickly.
Chris Lattner074be1f2004-11-15 04:44:20 +00001174 while (!OverdefinedInstWorkList.empty()) {
Chris Lattnerf5484032009-11-02 05:55:40 +00001175 Value *I = OverdefinedInstWorkList.pop_back_val();
Chris Lattner074be1f2004-11-15 04:44:20 +00001176
David Greene389fc3b2010-01-05 01:27:15 +00001177 DEBUG(dbgs() << "\nPopped off OI-WL: " << *I << '\n');
Misha Brukmanb1c93172005-04-21 23:48:37 +00001178
Chris Lattner074be1f2004-11-15 04:44:20 +00001179 // "I" got into the work list because it either made the transition from
Chad Rosier4d87d452013-02-20 20:15:55 +00001180 // bottom to constant, or to overdefined.
Chris Lattner074be1f2004-11-15 04:44:20 +00001181 //
1182 // Anything on this worklist that is overdefined need not be visited
1183 // since all of its users will have already been marked as overdefined
Chris Lattnera3c39d32009-11-02 02:33:50 +00001184 // Update all of the users of this instruction's value.
Chris Lattner074be1f2004-11-15 04:44:20 +00001185 //
Chandler Carruthcdf47882014-03-09 03:16:01 +00001186 for (User *U : I->users())
1187 if (Instruction *UI = dyn_cast<Instruction>(U))
1188 OperandChangedState(UI);
Chris Lattner074be1f2004-11-15 04:44:20 +00001189 }
Jakub Staszak632a3552012-01-18 21:16:33 +00001190
Chris Lattnera3c39d32009-11-02 02:33:50 +00001191 // Process the instruction work list.
Chris Lattner074be1f2004-11-15 04:44:20 +00001192 while (!InstWorkList.empty()) {
Chris Lattnerf5484032009-11-02 05:55:40 +00001193 Value *I = InstWorkList.pop_back_val();
Chris Lattner074be1f2004-11-15 04:44:20 +00001194
David Greene389fc3b2010-01-05 01:27:15 +00001195 DEBUG(dbgs() << "\nPopped off I-WL: " << *I << '\n');
Misha Brukmanb1c93172005-04-21 23:48:37 +00001196
Chris Lattnerf5484032009-11-02 05:55:40 +00001197 // "I" got into the work list because it made the transition from undef to
1198 // constant.
Chris Lattner074be1f2004-11-15 04:44:20 +00001199 //
1200 // Anything on this worklist that is overdefined need not be visited
1201 // since all of its users will have already been marked as overdefined.
Chris Lattnera3c39d32009-11-02 02:33:50 +00001202 // Update all of the users of this instruction's value.
Chris Lattner074be1f2004-11-15 04:44:20 +00001203 //
Duncan Sands19d0b472010-02-16 11:11:14 +00001204 if (I->getType()->isStructTy() || !getValueState(I).isOverdefined())
Chandler Carruthcdf47882014-03-09 03:16:01 +00001205 for (User *U : I->users())
1206 if (Instruction *UI = dyn_cast<Instruction>(U))
1207 OperandChangedState(UI);
Chris Lattner074be1f2004-11-15 04:44:20 +00001208 }
Misha Brukmanb1c93172005-04-21 23:48:37 +00001209
Chris Lattnera3c39d32009-11-02 02:33:50 +00001210 // Process the basic block work list.
Chris Lattner074be1f2004-11-15 04:44:20 +00001211 while (!BBWorkList.empty()) {
1212 BasicBlock *BB = BBWorkList.back();
1213 BBWorkList.pop_back();
Misha Brukmanb1c93172005-04-21 23:48:37 +00001214
David Greene389fc3b2010-01-05 01:27:15 +00001215 DEBUG(dbgs() << "\nPopped off BBWL: " << *BB << '\n');
Misha Brukmanb1c93172005-04-21 23:48:37 +00001216
Chris Lattner074be1f2004-11-15 04:44:20 +00001217 // Notify all instructions in this basic block that they are newly
1218 // executable.
1219 visit(BB);
1220 }
1221 }
1222}
1223
Chris Lattner1847f6d2006-12-20 06:21:33 +00001224/// ResolvedUndefsIn - While solving the dataflow for a function, we assume
Chris Lattner7285f432004-12-10 20:41:50 +00001225/// that branches on undef values cannot reach any of their successors.
1226/// However, this is not a safe assumption. After we solve dataflow, this
1227/// method should be use to handle this. If this returns true, the solver
1228/// should be rerun.
Chris Lattneraf170962006-10-22 05:59:17 +00001229///
1230/// This method handles this by finding an unresolved branch and marking it one
1231/// of the edges from the block as being feasible, even though the condition
1232/// doesn't say it would otherwise be. This allows SCCP to find the rest of the
1233/// CFG and only slightly pessimizes the analysis results (by marking one,
Chris Lattner1847f6d2006-12-20 06:21:33 +00001234/// potentially infeasible, edge feasible). This cannot usefully modify the
Chris Lattneraf170962006-10-22 05:59:17 +00001235/// constraints on the condition of the branch, as that would impact other users
1236/// of the value.
Chris Lattner1847f6d2006-12-20 06:21:33 +00001237///
1238/// This scan also checks for values that use undefs, whose results are actually
1239/// defined. For example, 'zext i8 undef to i32' should produce all zeros
1240/// conservatively, as "(zext i8 X -> i32) & 0xFF00" must always return zero,
1241/// even if X isn't defined.
1242bool SCCPSolver::ResolvedUndefsIn(Function &F) {
Chris Lattneraf170962006-10-22 05:59:17 +00001243 for (Function::iterator BB = F.begin(), E = F.end(); BB != E; ++BB) {
1244 if (!BBExecutable.count(BB))
1245 continue;
Jakub Staszak632a3552012-01-18 21:16:33 +00001246
Chris Lattner1847f6d2006-12-20 06:21:33 +00001247 for (BasicBlock::iterator I = BB->begin(), E = BB->end(); I != E; ++I) {
1248 // Look for instructions which produce undef values.
Chris Lattnerfdd87902009-10-05 05:54:46 +00001249 if (I->getType()->isVoidTy()) continue;
Jakub Staszak632a3552012-01-18 21:16:33 +00001250
Chris Lattner229907c2011-07-18 04:54:35 +00001251 if (StructType *STy = dyn_cast<StructType>(I->getType())) {
Eli Friedman1815b682011-09-20 23:28:51 +00001252 // Only a few things that can be structs matter for undef.
1253
1254 // Tracked calls must never be marked overdefined in ResolvedUndefsIn.
1255 if (CallSite CS = CallSite(I))
1256 if (Function *F = CS.getCalledFunction())
1257 if (MRVFunctionsTracked.count(F))
1258 continue;
1259
1260 // extractvalue and insertvalue don't need to be marked; they are
Jakub Staszak632a3552012-01-18 21:16:33 +00001261 // tracked as precisely as their operands.
Eli Friedman1815b682011-09-20 23:28:51 +00001262 if (isa<ExtractValueInst>(I) || isa<InsertValueInst>(I))
1263 continue;
1264
1265 // Send the results of everything else to overdefined. We could be
1266 // more precise than this but it isn't worth bothering.
1267 for (unsigned i = 0, e = STy->getNumElements(); i != e; ++i) {
1268 LatticeVal &LV = getStructValueState(I, i);
1269 if (LV.isUndefined())
1270 markOverdefined(LV, I);
Chris Lattner156b8c72009-11-03 23:40:48 +00001271 }
1272 continue;
1273 }
Eli Friedman0793eb42011-08-16 22:06:31 +00001274
Chris Lattner1847f6d2006-12-20 06:21:33 +00001275 LatticeVal &LV = getValueState(I);
1276 if (!LV.isUndefined()) continue;
1277
Eli Friedmand7749be2011-08-17 18:10:43 +00001278 // extractvalue is safe; check here because the argument is a struct.
1279 if (isa<ExtractValueInst>(I))
1280 continue;
1281
1282 // Compute the operand LatticeVals, for convenience below.
1283 // Anything taking a struct is conservatively assumed to require
1284 // overdefined markings.
1285 if (I->getOperand(0)->getType()->isStructTy()) {
1286 markOverdefined(I);
1287 return true;
1288 }
Chris Lattnerf5484032009-11-02 05:55:40 +00001289 LatticeVal Op0LV = getValueState(I->getOperand(0));
Chris Lattner1847f6d2006-12-20 06:21:33 +00001290 LatticeVal Op1LV;
Eli Friedmand7749be2011-08-17 18:10:43 +00001291 if (I->getNumOperands() == 2) {
1292 if (I->getOperand(1)->getType()->isStructTy()) {
1293 markOverdefined(I);
1294 return true;
1295 }
1296
Chris Lattner1847f6d2006-12-20 06:21:33 +00001297 Op1LV = getValueState(I->getOperand(1));
Eli Friedmand7749be2011-08-17 18:10:43 +00001298 }
Chris Lattner1847f6d2006-12-20 06:21:33 +00001299 // If this is an instructions whose result is defined even if the input is
1300 // not fully defined, propagate the information.
Chris Lattner229907c2011-07-18 04:54:35 +00001301 Type *ITy = I->getType();
Chris Lattner1847f6d2006-12-20 06:21:33 +00001302 switch (I->getOpcode()) {
Eli Friedman0793eb42011-08-16 22:06:31 +00001303 case Instruction::Add:
1304 case Instruction::Sub:
1305 case Instruction::Trunc:
1306 case Instruction::FPTrunc:
1307 case Instruction::BitCast:
1308 break; // Any undef -> undef
1309 case Instruction::FSub:
1310 case Instruction::FAdd:
1311 case Instruction::FMul:
1312 case Instruction::FDiv:
1313 case Instruction::FRem:
1314 // Floating-point binary operation: be conservative.
1315 if (Op0LV.isUndefined() && Op1LV.isUndefined())
1316 markForcedConstant(I, Constant::getNullValue(ITy));
1317 else
1318 markOverdefined(I);
1319 return true;
Chris Lattner1847f6d2006-12-20 06:21:33 +00001320 case Instruction::ZExt:
Eli Friedman0793eb42011-08-16 22:06:31 +00001321 case Instruction::SExt:
1322 case Instruction::FPToUI:
1323 case Instruction::FPToSI:
1324 case Instruction::FPExt:
1325 case Instruction::PtrToInt:
1326 case Instruction::IntToPtr:
1327 case Instruction::SIToFP:
1328 case Instruction::UIToFP:
1329 // undef -> 0; some outputs are impossible
Chris Lattnerf5484032009-11-02 05:55:40 +00001330 markForcedConstant(I, Constant::getNullValue(ITy));
Chris Lattner1847f6d2006-12-20 06:21:33 +00001331 return true;
1332 case Instruction::Mul:
1333 case Instruction::And:
Eli Friedman0793eb42011-08-16 22:06:31 +00001334 // Both operands undef -> undef
1335 if (Op0LV.isUndefined() && Op1LV.isUndefined())
1336 break;
Chris Lattner1847f6d2006-12-20 06:21:33 +00001337 // undef * X -> 0. X could be zero.
1338 // undef & X -> 0. X could be zero.
Chris Lattnerf5484032009-11-02 05:55:40 +00001339 markForcedConstant(I, Constant::getNullValue(ITy));
Chris Lattner1847f6d2006-12-20 06:21:33 +00001340 return true;
1341
1342 case Instruction::Or:
Eli Friedman0793eb42011-08-16 22:06:31 +00001343 // Both operands undef -> undef
1344 if (Op0LV.isUndefined() && Op1LV.isUndefined())
1345 break;
Chris Lattner1847f6d2006-12-20 06:21:33 +00001346 // undef | X -> -1. X could be -1.
Chris Lattnerf5484032009-11-02 05:55:40 +00001347 markForcedConstant(I, Constant::getAllOnesValue(ITy));
Chris Lattner806adaf2007-01-04 02:12:40 +00001348 return true;
Chris Lattner1847f6d2006-12-20 06:21:33 +00001349
Eli Friedman0793eb42011-08-16 22:06:31 +00001350 case Instruction::Xor:
1351 // undef ^ undef -> 0; strictly speaking, this is not strictly
1352 // necessary, but we try to be nice to people who expect this
1353 // behavior in simple cases
1354 if (Op0LV.isUndefined() && Op1LV.isUndefined()) {
1355 markForcedConstant(I, Constant::getNullValue(ITy));
1356 return true;
1357 }
1358 // undef ^ X -> undef
1359 break;
1360
Chris Lattner1847f6d2006-12-20 06:21:33 +00001361 case Instruction::SDiv:
1362 case Instruction::UDiv:
1363 case Instruction::SRem:
1364 case Instruction::URem:
1365 // X / undef -> undef. No change.
1366 // X % undef -> undef. No change.
1367 if (Op1LV.isUndefined()) break;
Jakub Staszak632a3552012-01-18 21:16:33 +00001368
Chris Lattner1847f6d2006-12-20 06:21:33 +00001369 // undef / X -> 0. X could be maxint.
1370 // undef % X -> 0. X could be 1.
Chris Lattnerf5484032009-11-02 05:55:40 +00001371 markForcedConstant(I, Constant::getNullValue(ITy));
Chris Lattner1847f6d2006-12-20 06:21:33 +00001372 return true;
Jakub Staszak632a3552012-01-18 21:16:33 +00001373
Chris Lattner1847f6d2006-12-20 06:21:33 +00001374 case Instruction::AShr:
Eli Friedman0793eb42011-08-16 22:06:31 +00001375 // X >>a undef -> undef.
1376 if (Op1LV.isUndefined()) break;
1377
1378 // undef >>a X -> all ones
1379 markForcedConstant(I, Constant::getAllOnesValue(ITy));
Chris Lattner1847f6d2006-12-20 06:21:33 +00001380 return true;
1381 case Instruction::LShr:
1382 case Instruction::Shl:
Eli Friedman0793eb42011-08-16 22:06:31 +00001383 // X << undef -> undef.
1384 // X >> undef -> undef.
1385 if (Op1LV.isUndefined()) break;
1386
1387 // undef << X -> 0
1388 // undef >> X -> 0
Chris Lattnerf5484032009-11-02 05:55:40 +00001389 markForcedConstant(I, Constant::getNullValue(ITy));
Chris Lattner1847f6d2006-12-20 06:21:33 +00001390 return true;
1391 case Instruction::Select:
Eli Friedman0793eb42011-08-16 22:06:31 +00001392 Op1LV = getValueState(I->getOperand(1));
Chris Lattner1847f6d2006-12-20 06:21:33 +00001393 // undef ? X : Y -> X or Y. There could be commonality between X/Y.
1394 if (Op0LV.isUndefined()) {
1395 if (!Op1LV.isConstant()) // Pick the constant one if there is any.
1396 Op1LV = getValueState(I->getOperand(2));
1397 } else if (Op1LV.isUndefined()) {
1398 // c ? undef : undef -> undef. No change.
1399 Op1LV = getValueState(I->getOperand(2));
1400 if (Op1LV.isUndefined())
1401 break;
1402 // Otherwise, c ? undef : x -> x.
1403 } else {
1404 // Leave Op1LV as Operand(1)'s LatticeValue.
1405 }
Jakub Staszak632a3552012-01-18 21:16:33 +00001406
Chris Lattner1847f6d2006-12-20 06:21:33 +00001407 if (Op1LV.isConstant())
Chris Lattnerf5484032009-11-02 05:55:40 +00001408 markForcedConstant(I, Op1LV.getConstant());
Chris Lattner1847f6d2006-12-20 06:21:33 +00001409 else
Chris Lattnerf5484032009-11-02 05:55:40 +00001410 markOverdefined(I);
Chris Lattner1847f6d2006-12-20 06:21:33 +00001411 return true;
Eli Friedman0793eb42011-08-16 22:06:31 +00001412 case Instruction::Load:
1413 // A load here means one of two things: a load of undef from a global,
1414 // a load from an unknown pointer. Either way, having it return undef
1415 // is okay.
1416 break;
1417 case Instruction::ICmp:
1418 // X == undef -> undef. Other comparisons get more complicated.
1419 if (cast<ICmpInst>(I)->isEquality())
1420 break;
1421 markOverdefined(I);
1422 return true;
Eli Friedman1815b682011-09-20 23:28:51 +00001423 case Instruction::Call:
1424 case Instruction::Invoke: {
1425 // There are two reasons a call can have an undef result
1426 // 1. It could be tracked.
1427 // 2. It could be constant-foldable.
1428 // Because of the way we solve return values, tracked calls must
1429 // never be marked overdefined in ResolvedUndefsIn.
1430 if (Function *F = CallSite(I).getCalledFunction())
1431 if (TrackedRetVals.count(F))
1432 break;
1433
1434 // If the call is constant-foldable, we mark it overdefined because
1435 // we do not know what return values are valid.
1436 markOverdefined(I);
1437 return true;
1438 }
Eli Friedman0793eb42011-08-16 22:06:31 +00001439 default:
1440 // If we don't know what should happen here, conservatively mark it
Chris Lattner5c207c82008-05-24 03:59:33 +00001441 // overdefined.
Chris Lattnerf5484032009-11-02 05:55:40 +00001442 markOverdefined(I);
Chris Lattner5c207c82008-05-24 03:59:33 +00001443 return true;
Chris Lattner1847f6d2006-12-20 06:21:33 +00001444 }
1445 }
Jakub Staszak632a3552012-01-18 21:16:33 +00001446
Chris Lattneradca6082010-04-05 22:14:48 +00001447 // Check to see if we have a branch or switch on an undefined value. If so
1448 // we force the branch to go one way or the other to make the successor
1449 // values live. It doesn't really matter which way we force it.
Chris Lattneraf170962006-10-22 05:59:17 +00001450 TerminatorInst *TI = BB->getTerminator();
1451 if (BranchInst *BI = dyn_cast<BranchInst>(TI)) {
1452 if (!BI->isConditional()) continue;
1453 if (!getValueState(BI->getCondition()).isUndefined())
1454 continue;
Jakub Staszak632a3552012-01-18 21:16:33 +00001455
Chris Lattneradca6082010-04-05 22:14:48 +00001456 // If the input to SCCP is actually branch on undef, fix the undef to
1457 // false.
1458 if (isa<UndefValue>(BI->getCondition())) {
1459 BI->setCondition(ConstantInt::getFalse(BI->getContext()));
1460 markEdgeExecutable(BB, TI->getSuccessor(1));
1461 return true;
1462 }
Jakub Staszak632a3552012-01-18 21:16:33 +00001463
Chris Lattneradca6082010-04-05 22:14:48 +00001464 // Otherwise, it is a branch on a symbolic value which is currently
1465 // considered to be undef. Handle this by forcing the input value to the
1466 // branch to false.
1467 markForcedConstant(BI->getCondition(),
1468 ConstantInt::getFalse(TI->getContext()));
1469 return true;
1470 }
Jakub Staszak632a3552012-01-18 21:16:33 +00001471
Chris Lattneradca6082010-04-05 22:14:48 +00001472 if (SwitchInst *SI = dyn_cast<SwitchInst>(TI)) {
Stepan Dyatkovskiy513aaa52012-02-01 07:49:51 +00001473 if (!SI->getNumCases())
Dale Johannesenfecb8822008-05-23 01:01:31 +00001474 continue;
Chris Lattneraf170962006-10-22 05:59:17 +00001475 if (!getValueState(SI->getCondition()).isUndefined())
1476 continue;
Jakub Staszak632a3552012-01-18 21:16:33 +00001477
Chris Lattneradca6082010-04-05 22:14:48 +00001478 // If the input to SCCP is actually switch on undef, fix the undef to
1479 // the first constant.
1480 if (isa<UndefValue>(SI->getCondition())) {
Stepan Dyatkovskiy97b02fc2012-03-11 06:09:17 +00001481 SI->setCondition(SI->case_begin().getCaseValue());
1482 markEdgeExecutable(BB, SI->case_begin().getCaseSuccessor());
Chris Lattneradca6082010-04-05 22:14:48 +00001483 return true;
1484 }
Jakub Staszak632a3552012-01-18 21:16:33 +00001485
Stepan Dyatkovskiy97b02fc2012-03-11 06:09:17 +00001486 markForcedConstant(SI->getCondition(), SI->case_begin().getCaseValue());
Chris Lattneradca6082010-04-05 22:14:48 +00001487 return true;
Chris Lattner7285f432004-12-10 20:41:50 +00001488 }
Chris Lattneraf170962006-10-22 05:59:17 +00001489 }
Chris Lattner2f687fd2004-12-11 06:05:53 +00001490
Chris Lattneraf170962006-10-22 05:59:17 +00001491 return false;
Chris Lattner7285f432004-12-10 20:41:50 +00001492}
1493
Chris Lattner074be1f2004-11-15 04:44:20 +00001494
1495namespace {
Chris Lattner1890f942004-11-15 07:15:04 +00001496 //===--------------------------------------------------------------------===//
Chris Lattner074be1f2004-11-15 04:44:20 +00001497 //
Chris Lattner1890f942004-11-15 07:15:04 +00001498 /// SCCP Class - This class uses the SCCPSolver to implement a per-function
Reid Spencere8a74ee2006-12-31 22:26:06 +00001499 /// Sparse Conditional Constant Propagator.
Chris Lattner1890f942004-11-15 07:15:04 +00001500 ///
Chris Lattner2dd09db2009-09-02 06:11:42 +00001501 struct SCCP : public FunctionPass {
Craig Topper3e4c6972014-03-05 09:10:37 +00001502 void getAnalysisUsage(AnalysisUsage &AU) const override {
Chad Rosiere6de63d2011-12-01 21:29:16 +00001503 AU.addRequired<TargetLibraryInfo>();
1504 }
Nick Lewyckye7da2d62007-05-06 13:37:16 +00001505 static char ID; // Pass identification, replacement for typeid
Owen Anderson6c18d1a2010-10-19 17:21:58 +00001506 SCCP() : FunctionPass(ID) {
1507 initializeSCCPPass(*PassRegistry::getPassRegistry());
1508 }
Devang Patel09f162c2007-05-01 21:15:47 +00001509
Chris Lattner1890f942004-11-15 07:15:04 +00001510 // runOnFunction - Run the Sparse Conditional Constant Propagation
1511 // algorithm, and return true if the function was modified.
1512 //
Craig Topper3e4c6972014-03-05 09:10:37 +00001513 bool runOnFunction(Function &F) override;
Chris Lattner1890f942004-11-15 07:15:04 +00001514 };
Chris Lattner074be1f2004-11-15 04:44:20 +00001515} // end anonymous namespace
1516
Dan Gohmand78c4002008-05-13 00:00:25 +00001517char SCCP::ID = 0;
Owen Andersona57b97e2010-07-21 22:09:45 +00001518INITIALIZE_PASS(SCCP, "sccp",
Owen Andersondf7a4f22010-10-07 22:25:06 +00001519 "Sparse Conditional Constant Propagation", false, false)
Chris Lattner074be1f2004-11-15 04:44:20 +00001520
Chris Lattnera3c39d32009-11-02 02:33:50 +00001521// createSCCPPass - This is the public interface to this file.
Chris Lattner074be1f2004-11-15 04:44:20 +00001522FunctionPass *llvm::createSCCPPass() {
1523 return new SCCP();
1524}
1525
Chris Lattnere405ed92009-11-02 02:47:51 +00001526static void DeleteInstructionInBlock(BasicBlock *BB) {
David Greene389fc3b2010-01-05 01:27:15 +00001527 DEBUG(dbgs() << " BasicBlock Dead:" << *BB);
Chris Lattnere405ed92009-11-02 02:47:51 +00001528 ++NumDeadBlocks;
Bill Wendling770d0f02011-08-31 20:55:20 +00001529
1530 // Check to see if there are non-terminating instructions to delete.
1531 if (isa<TerminatorInst>(BB->begin()))
1532 return;
1533
Bill Wendling321fb372011-09-04 09:43:36 +00001534 // Delete the instructions backwards, as it has a reduced likelihood of having
1535 // to update as many def-use and use-def chains.
1536 Instruction *EndInst = BB->getTerminator(); // Last not to be deleted.
1537 while (EndInst != BB->begin()) {
1538 // Delete the next to last instruction.
1539 BasicBlock::iterator I = EndInst;
1540 Instruction *Inst = --I;
Bill Wendlingbf8280f2011-09-01 21:28:33 +00001541 if (!Inst->use_empty())
1542 Inst->replaceAllUsesWith(UndefValue::get(Inst->getType()));
Bill Wendling321fb372011-09-04 09:43:36 +00001543 if (isa<LandingPadInst>(Inst)) {
1544 EndInst = Inst;
Bill Wendling770d0f02011-08-31 20:55:20 +00001545 continue;
Bill Wendling321fb372011-09-04 09:43:36 +00001546 }
Bill Wendlingbf8280f2011-09-01 21:28:33 +00001547 BB->getInstList().erase(Inst);
Chris Lattnere405ed92009-11-02 02:47:51 +00001548 ++NumInstRemoved;
1549 }
1550}
Chris Lattner074be1f2004-11-15 04:44:20 +00001551
Chris Lattner074be1f2004-11-15 04:44:20 +00001552// runOnFunction() - Run the Sparse Conditional Constant Propagation algorithm,
1553// and return true if the function was modified.
1554//
1555bool SCCP::runOnFunction(Function &F) {
Paul Robinsonaf4e64d2014-02-06 00:07:05 +00001556 if (skipOptnoneFunction(F))
1557 return false;
1558
David Greene389fc3b2010-01-05 01:27:15 +00001559 DEBUG(dbgs() << "SCCP on function '" << F.getName() << "'\n");
Rafael Espindola93512512014-02-25 17:30:31 +00001560 const DataLayoutPass *DLP = getAnalysisIfAvailable<DataLayoutPass>();
Craig Topperf40110f2014-04-25 05:29:35 +00001561 const DataLayout *DL = DLP ? &DLP->getDataLayout() : nullptr;
Chad Rosiere6de63d2011-12-01 21:29:16 +00001562 const TargetLibraryInfo *TLI = &getAnalysis<TargetLibraryInfo>();
Rafael Espindola37dc9e12014-02-21 00:06:31 +00001563 SCCPSolver Solver(DL, TLI);
Chris Lattner074be1f2004-11-15 04:44:20 +00001564
1565 // Mark the first block of the function as being executable.
1566 Solver.MarkBlockExecutable(F.begin());
1567
Chris Lattnerd18c16b2004-11-15 05:45:33 +00001568 // Mark all arguments to the function as being overdefined.
Chris Lattner28d921d2007-04-14 23:32:02 +00001569 for (Function::arg_iterator AI = F.arg_begin(), E = F.arg_end(); AI != E;++AI)
Chris Lattner156b8c72009-11-03 23:40:48 +00001570 Solver.markAnythingOverdefined(AI);
Chris Lattnerd18c16b2004-11-15 05:45:33 +00001571
Chris Lattner074be1f2004-11-15 04:44:20 +00001572 // Solve for constants.
Chris Lattner1847f6d2006-12-20 06:21:33 +00001573 bool ResolvedUndefs = true;
1574 while (ResolvedUndefs) {
Chris Lattner7285f432004-12-10 20:41:50 +00001575 Solver.Solve();
David Greene389fc3b2010-01-05 01:27:15 +00001576 DEBUG(dbgs() << "RESOLVING UNDEFs\n");
Chris Lattner1847f6d2006-12-20 06:21:33 +00001577 ResolvedUndefs = Solver.ResolvedUndefsIn(F);
Chris Lattner7285f432004-12-10 20:41:50 +00001578 }
Chris Lattner074be1f2004-11-15 04:44:20 +00001579
Chris Lattnerd18c16b2004-11-15 05:45:33 +00001580 bool MadeChanges = false;
1581
1582 // If we decided that there are basic blocks that are dead in this function,
1583 // delete their contents now. Note that we cannot actually delete the blocks,
1584 // as we cannot modify the CFG of the function.
Chris Lattnerc33fd462007-03-04 04:50:21 +00001585
Chris Lattnere405ed92009-11-02 02:47:51 +00001586 for (Function::iterator BB = F.begin(), E = F.end(); BB != E; ++BB) {
Chris Lattneradd44f32008-08-23 23:39:31 +00001587 if (!Solver.isBlockExecutable(BB)) {
Chris Lattnere405ed92009-11-02 02:47:51 +00001588 DeleteInstructionInBlock(BB);
1589 MadeChanges = true;
1590 continue;
Chris Lattner074be1f2004-11-15 04:44:20 +00001591 }
Jakub Staszak632a3552012-01-18 21:16:33 +00001592
Chris Lattnere405ed92009-11-02 02:47:51 +00001593 // Iterate over all of the instructions in a function, replacing them with
1594 // constants if we have found them to be of constant values.
1595 //
1596 for (BasicBlock::iterator BI = BB->begin(), E = BB->end(); BI != E; ) {
1597 Instruction *Inst = BI++;
1598 if (Inst->getType()->isVoidTy() || isa<TerminatorInst>(Inst))
1599 continue;
Jakub Staszak632a3552012-01-18 21:16:33 +00001600
Chris Lattner156b8c72009-11-03 23:40:48 +00001601 // TODO: Reconstruct structs from their elements.
Duncan Sands19d0b472010-02-16 11:11:14 +00001602 if (Inst->getType()->isStructTy())
Chris Lattner156b8c72009-11-03 23:40:48 +00001603 continue;
Jakub Staszak632a3552012-01-18 21:16:33 +00001604
Chris Lattnerb5a13d42009-11-02 02:54:24 +00001605 LatticeVal IV = Solver.getLatticeValueFor(Inst);
1606 if (IV.isOverdefined())
Chris Lattnere405ed92009-11-02 02:47:51 +00001607 continue;
Jakub Staszak632a3552012-01-18 21:16:33 +00001608
Chris Lattnere405ed92009-11-02 02:47:51 +00001609 Constant *Const = IV.isConstant()
1610 ? IV.getConstant() : UndefValue::get(Inst->getType());
Nick Lewycky5cd95382013-06-26 00:30:18 +00001611 DEBUG(dbgs() << " Constant: " << *Const << " = " << *Inst << '\n');
Chris Lattnere405ed92009-11-02 02:47:51 +00001612
1613 // Replaces all of the uses of a variable with uses of the constant.
1614 Inst->replaceAllUsesWith(Const);
Jakub Staszak632a3552012-01-18 21:16:33 +00001615
Chris Lattnere405ed92009-11-02 02:47:51 +00001616 // Delete the instruction.
1617 Inst->eraseFromParent();
Jakub Staszak632a3552012-01-18 21:16:33 +00001618
Chris Lattnere405ed92009-11-02 02:47:51 +00001619 // Hey, we just changed something!
1620 MadeChanges = true;
1621 ++NumInstRemoved;
1622 }
1623 }
Chris Lattner074be1f2004-11-15 04:44:20 +00001624
1625 return MadeChanges;
1626}
Chris Lattnerb4394642004-12-10 08:02:06 +00001627
1628namespace {
Chris Lattnerb4394642004-12-10 08:02:06 +00001629 //===--------------------------------------------------------------------===//
1630 //
1631 /// IPSCCP Class - This class implements interprocedural Sparse Conditional
1632 /// Constant Propagation.
1633 ///
Chris Lattner2dd09db2009-09-02 06:11:42 +00001634 struct IPSCCP : public ModulePass {
Craig Topper3e4c6972014-03-05 09:10:37 +00001635 void getAnalysisUsage(AnalysisUsage &AU) const override {
Chad Rosiere6de63d2011-12-01 21:29:16 +00001636 AU.addRequired<TargetLibraryInfo>();
1637 }
Devang Patel8c78a0b2007-05-03 01:11:54 +00001638 static char ID;
Owen Anderson6c18d1a2010-10-19 17:21:58 +00001639 IPSCCP() : ModulePass(ID) {
1640 initializeIPSCCPPass(*PassRegistry::getPassRegistry());
1641 }
Craig Topper3e4c6972014-03-05 09:10:37 +00001642 bool runOnModule(Module &M) override;
Chris Lattnerb4394642004-12-10 08:02:06 +00001643 };
Chris Lattnerb4394642004-12-10 08:02:06 +00001644} // end anonymous namespace
1645
Dan Gohmand78c4002008-05-13 00:00:25 +00001646char IPSCCP::ID = 0;
Chad Rosiere6de63d2011-12-01 21:29:16 +00001647INITIALIZE_PASS_BEGIN(IPSCCP, "ipsccp",
1648 "Interprocedural Sparse Conditional Constant Propagation",
1649 false, false)
1650INITIALIZE_PASS_DEPENDENCY(TargetLibraryInfo)
1651INITIALIZE_PASS_END(IPSCCP, "ipsccp",
Owen Andersona57b97e2010-07-21 22:09:45 +00001652 "Interprocedural Sparse Conditional Constant Propagation",
Owen Andersondf7a4f22010-10-07 22:25:06 +00001653 false, false)
Dan Gohmand78c4002008-05-13 00:00:25 +00001654
Chris Lattnera3c39d32009-11-02 02:33:50 +00001655// createIPSCCPPass - This is the public interface to this file.
Chris Lattnerb4394642004-12-10 08:02:06 +00001656ModulePass *llvm::createIPSCCPPass() {
1657 return new IPSCCP();
1658}
1659
1660
Gabor Greif9027ffb2010-03-24 10:29:52 +00001661static bool AddressIsTaken(const GlobalValue *GV) {
Chris Lattner8cb10a12005-04-19 19:16:19 +00001662 // Delete any dead constantexpr klingons.
1663 GV->removeDeadConstantUsers();
1664
Chandler Carruthcdf47882014-03-09 03:16:01 +00001665 for (const Use &U : GV->uses()) {
1666 const User *UR = U.getUser();
1667 if (const StoreInst *SI = dyn_cast<StoreInst>(UR)) {
Chris Lattner91dbae62004-12-11 05:15:59 +00001668 if (SI->getOperand(0) == GV || SI->isVolatile())
1669 return true; // Storing addr of GV.
Chandler Carruthcdf47882014-03-09 03:16:01 +00001670 } else if (isa<InvokeInst>(UR) || isa<CallInst>(UR)) {
Chris Lattnerb4394642004-12-10 08:02:06 +00001671 // Make sure we are calling the function, not passing the address.
Chandler Carruthcdf47882014-03-09 03:16:01 +00001672 ImmutableCallSite CS(cast<Instruction>(UR));
1673 if (!CS.isCallee(&U))
Nick Lewyckyd73806a2008-11-03 03:49:14 +00001674 return true;
Chandler Carruthcdf47882014-03-09 03:16:01 +00001675 } else if (const LoadInst *LI = dyn_cast<LoadInst>(UR)) {
Chris Lattner91dbae62004-12-11 05:15:59 +00001676 if (LI->isVolatile())
1677 return true;
Chandler Carruthcdf47882014-03-09 03:16:01 +00001678 } else if (isa<BlockAddress>(UR)) {
Chris Lattner1a8b80e2009-11-01 06:11:53 +00001679 // blockaddress doesn't take the address of the function, it takes addr
1680 // of label.
Chris Lattner91dbae62004-12-11 05:15:59 +00001681 } else {
Chris Lattnerb4394642004-12-10 08:02:06 +00001682 return true;
1683 }
Gabor Greif9027ffb2010-03-24 10:29:52 +00001684 }
Chris Lattnerb4394642004-12-10 08:02:06 +00001685 return false;
1686}
1687
1688bool IPSCCP::runOnModule(Module &M) {
Rafael Espindola93512512014-02-25 17:30:31 +00001689 DataLayoutPass *DLP = getAnalysisIfAvailable<DataLayoutPass>();
Craig Topperf40110f2014-04-25 05:29:35 +00001690 const DataLayout *DL = DLP ? &DLP->getDataLayout() : nullptr;
Chad Rosiere6de63d2011-12-01 21:29:16 +00001691 const TargetLibraryInfo *TLI = &getAnalysis<TargetLibraryInfo>();
Rafael Espindola37dc9e12014-02-21 00:06:31 +00001692 SCCPSolver Solver(DL, TLI);
Chris Lattnerb4394642004-12-10 08:02:06 +00001693
Chris Lattner363226d2010-08-12 22:25:23 +00001694 // AddressTakenFunctions - This set keeps track of the address-taken functions
1695 // that are in the input. As IPSCCP runs through and simplifies code,
1696 // functions that were address taken can end up losing their
1697 // address-taken-ness. Because of this, we keep track of their addresses from
1698 // the first pass so we can use them for the later simplification pass.
1699 SmallPtrSet<Function*, 32> AddressTakenFunctions;
Jakub Staszak632a3552012-01-18 21:16:33 +00001700
Chris Lattnerb4394642004-12-10 08:02:06 +00001701 // Loop over all functions, marking arguments to those with their addresses
1702 // taken or that are external as overdefined.
1703 //
Chris Lattner47837c52009-11-02 06:34:04 +00001704 for (Module::iterator F = M.begin(), E = M.end(); F != E; ++F) {
1705 if (F->isDeclaration())
1706 continue;
Jakub Staszak632a3552012-01-18 21:16:33 +00001707
Chris Lattnerfb141812009-11-03 03:42:51 +00001708 // If this is a strong or ODR definition of this function, then we can
1709 // propagate information about its result into callsites of it.
Chris Lattner156b8c72009-11-03 23:40:48 +00001710 if (!F->mayBeOverridden())
Chris Lattnerb4394642004-12-10 08:02:06 +00001711 Solver.AddTrackedFunction(F);
Jakub Staszak632a3552012-01-18 21:16:33 +00001712
Chris Lattnerfb141812009-11-03 03:42:51 +00001713 // If this function only has direct calls that we can see, we can track its
1714 // arguments and return value aggressively, and can assume it is not called
1715 // unless we see evidence to the contrary.
Chris Lattner363226d2010-08-12 22:25:23 +00001716 if (F->hasLocalLinkage()) {
1717 if (AddressIsTaken(F))
1718 AddressTakenFunctions.insert(F);
1719 else {
1720 Solver.AddArgumentTrackedFunction(F);
1721 continue;
1722 }
Chris Lattnercde8de52009-11-03 19:24:51 +00001723 }
Chris Lattnerfb141812009-11-03 03:42:51 +00001724
1725 // Assume the function is called.
1726 Solver.MarkBlockExecutable(F->begin());
Jakub Staszak632a3552012-01-18 21:16:33 +00001727
Chris Lattnerfb141812009-11-03 03:42:51 +00001728 // Assume nothing about the incoming arguments.
1729 for (Function::arg_iterator AI = F->arg_begin(), E = F->arg_end();
1730 AI != E; ++AI)
Chris Lattner156b8c72009-11-03 23:40:48 +00001731 Solver.markAnythingOverdefined(AI);
Chris Lattner47837c52009-11-02 06:34:04 +00001732 }
Chris Lattnerb4394642004-12-10 08:02:06 +00001733
Chris Lattner91dbae62004-12-11 05:15:59 +00001734 // Loop over global variables. We inform the solver about any internal global
1735 // variables that do not have their 'addresses taken'. If they don't have
1736 // their addresses taken, we can propagate constants through them.
Chris Lattner8cb10a12005-04-19 19:16:19 +00001737 for (Module::global_iterator G = M.global_begin(), E = M.global_end();
1738 G != E; ++G)
Rafael Espindola6de96a12009-01-15 20:18:42 +00001739 if (!G->isConstant() && G->hasLocalLinkage() && !AddressIsTaken(G))
Chris Lattner91dbae62004-12-11 05:15:59 +00001740 Solver.TrackValueOfGlobalVariable(G);
1741
Chris Lattnerb4394642004-12-10 08:02:06 +00001742 // Solve for constants.
Chris Lattner1847f6d2006-12-20 06:21:33 +00001743 bool ResolvedUndefs = true;
1744 while (ResolvedUndefs) {
Chris Lattner7285f432004-12-10 20:41:50 +00001745 Solver.Solve();
1746
David Greene389fc3b2010-01-05 01:27:15 +00001747 DEBUG(dbgs() << "RESOLVING UNDEFS\n");
Chris Lattner1847f6d2006-12-20 06:21:33 +00001748 ResolvedUndefs = false;
Chris Lattner7285f432004-12-10 20:41:50 +00001749 for (Module::iterator F = M.begin(), E = M.end(); F != E; ++F)
Chris Lattner1847f6d2006-12-20 06:21:33 +00001750 ResolvedUndefs |= Solver.ResolvedUndefsIn(*F);
Chris Lattner7285f432004-12-10 20:41:50 +00001751 }
Chris Lattnerb4394642004-12-10 08:02:06 +00001752
1753 bool MadeChanges = false;
1754
1755 // Iterate over all of the instructions in the module, replacing them with
1756 // constants if we have found them to be of constant values.
1757 //
Chris Lattner65938fc2008-08-23 23:36:38 +00001758 SmallVector<BasicBlock*, 512> BlocksToErase;
Chris Lattner37d400a2007-02-02 21:15:06 +00001759
Chris Lattnerb4394642004-12-10 08:02:06 +00001760 for (Module::iterator F = M.begin(), E = M.end(); F != E; ++F) {
Chris Lattnere82b0872009-11-02 03:25:55 +00001761 if (Solver.isBlockExecutable(F->begin())) {
1762 for (Function::arg_iterator AI = F->arg_begin(), E = F->arg_end();
1763 AI != E; ++AI) {
Duncan Sands19d0b472010-02-16 11:11:14 +00001764 if (AI->use_empty() || AI->getType()->isStructTy()) continue;
Jakub Staszak632a3552012-01-18 21:16:33 +00001765
Chris Lattner156b8c72009-11-03 23:40:48 +00001766 // TODO: Could use getStructLatticeValueFor to find out if the entire
1767 // result is a constant and replace it entirely if so.
1768
Chris Lattnere82b0872009-11-02 03:25:55 +00001769 LatticeVal IV = Solver.getLatticeValueFor(AI);
1770 if (IV.isOverdefined()) continue;
Jakub Staszak632a3552012-01-18 21:16:33 +00001771
Chris Lattnere82b0872009-11-02 03:25:55 +00001772 Constant *CST = IV.isConstant() ?
1773 IV.getConstant() : UndefValue::get(AI->getType());
David Greene389fc3b2010-01-05 01:27:15 +00001774 DEBUG(dbgs() << "*** Arg " << *AI << " = " << *CST <<"\n");
Jakub Staszak632a3552012-01-18 21:16:33 +00001775
Chris Lattnere82b0872009-11-02 03:25:55 +00001776 // Replaces all of the uses of a variable with uses of the
1777 // constant.
1778 AI->replaceAllUsesWith(CST);
1779 ++IPNumArgsElimed;
1780 }
Chris Lattnerb5a13d42009-11-02 02:54:24 +00001781 }
Chris Lattnerb4394642004-12-10 08:02:06 +00001782
Chris Lattnere405ed92009-11-02 02:47:51 +00001783 for (Function::iterator BB = F->begin(), E = F->end(); BB != E; ++BB) {
Chris Lattneradd44f32008-08-23 23:39:31 +00001784 if (!Solver.isBlockExecutable(BB)) {
Chris Lattnere405ed92009-11-02 02:47:51 +00001785 DeleteInstructionInBlock(BB);
1786 MadeChanges = true;
Chris Lattner7285f432004-12-10 20:41:50 +00001787
Chris Lattnerbae4b642004-12-10 22:29:08 +00001788 TerminatorInst *TI = BB->getTerminator();
Chris Lattnerbae4b642004-12-10 22:29:08 +00001789 for (unsigned i = 0, e = TI->getNumSuccessors(); i != e; ++i) {
1790 BasicBlock *Succ = TI->getSuccessor(i);
Dan Gohmanc731c972007-10-03 19:26:29 +00001791 if (!Succ->empty() && isa<PHINode>(Succ->begin()))
Chris Lattnerbae4b642004-12-10 22:29:08 +00001792 TI->getSuccessor(i)->removePredecessor(BB);
1793 }
Chris Lattner99e12952004-12-11 02:53:57 +00001794 if (!TI->use_empty())
Owen Andersonb292b8c2009-07-30 23:03:37 +00001795 TI->replaceAllUsesWith(UndefValue::get(TI->getType()));
Chris Lattnere405ed92009-11-02 02:47:51 +00001796 TI->eraseFromParent();
Chris Lattnerbae4b642004-12-10 22:29:08 +00001797
Chris Lattner8525ebe2004-12-11 05:32:19 +00001798 if (&*BB != &F->front())
1799 BlocksToErase.push_back(BB);
1800 else
Owen Anderson55f1c092009-08-13 21:58:54 +00001801 new UnreachableInst(M.getContext(), BB);
Chris Lattnere405ed92009-11-02 02:47:51 +00001802 continue;
Chris Lattnerb4394642004-12-10 08:02:06 +00001803 }
Jakub Staszak632a3552012-01-18 21:16:33 +00001804
Chris Lattnere405ed92009-11-02 02:47:51 +00001805 for (BasicBlock::iterator BI = BB->begin(), E = BB->end(); BI != E; ) {
1806 Instruction *Inst = BI++;
Duncan Sands19d0b472010-02-16 11:11:14 +00001807 if (Inst->getType()->isVoidTy() || Inst->getType()->isStructTy())
Chris Lattnere405ed92009-11-02 02:47:51 +00001808 continue;
Jakub Staszak632a3552012-01-18 21:16:33 +00001809
Chris Lattner156b8c72009-11-03 23:40:48 +00001810 // TODO: Could use getStructLatticeValueFor to find out if the entire
1811 // result is a constant and replace it entirely if so.
Jakub Staszak632a3552012-01-18 21:16:33 +00001812
Chris Lattnerb5a13d42009-11-02 02:54:24 +00001813 LatticeVal IV = Solver.getLatticeValueFor(Inst);
1814 if (IV.isOverdefined())
Chris Lattnere405ed92009-11-02 02:47:51 +00001815 continue;
Jakub Staszak632a3552012-01-18 21:16:33 +00001816
Chris Lattnere405ed92009-11-02 02:47:51 +00001817 Constant *Const = IV.isConstant()
1818 ? IV.getConstant() : UndefValue::get(Inst->getType());
Nick Lewycky5cd95382013-06-26 00:30:18 +00001819 DEBUG(dbgs() << " Constant: " << *Const << " = " << *Inst << '\n');
Chris Lattnere405ed92009-11-02 02:47:51 +00001820
1821 // Replaces all of the uses of a variable with uses of the
1822 // constant.
1823 Inst->replaceAllUsesWith(Const);
Jakub Staszak632a3552012-01-18 21:16:33 +00001824
Chris Lattnere405ed92009-11-02 02:47:51 +00001825 // Delete the instruction.
1826 if (!isa<CallInst>(Inst) && !isa<TerminatorInst>(Inst))
1827 Inst->eraseFromParent();
1828
1829 // Hey, we just changed something!
1830 MadeChanges = true;
1831 ++IPNumInstRemoved;
1832 }
1833 }
Chris Lattnerbae4b642004-12-10 22:29:08 +00001834
1835 // Now that all instructions in the function are constant folded, erase dead
1836 // blocks, because we can now use ConstantFoldTerminator to get rid of
1837 // in-edges.
1838 for (unsigned i = 0, e = BlocksToErase.size(); i != e; ++i) {
1839 // If there are any PHI nodes in this successor, drop entries for BB now.
1840 BasicBlock *DeadBB = BlocksToErase[i];
Chandler Carruthcdf47882014-03-09 03:16:01 +00001841 for (Value::user_iterator UI = DeadBB->user_begin(),
1842 UE = DeadBB->user_end();
1843 UI != UE;) {
Dan Gohman1f522d92009-11-23 16:13:39 +00001844 // Grab the user and then increment the iterator early, as the user
1845 // will be deleted. Step past all adjacent uses from the same user.
1846 Instruction *I = dyn_cast<Instruction>(*UI);
1847 do { ++UI; } while (UI != UE && *UI == I);
1848
Dan Gohmand15302a2009-11-20 20:19:14 +00001849 // Ignore blockaddress users; BasicBlock's dtor will handle them.
Dan Gohmand15302a2009-11-20 20:19:14 +00001850 if (!I) continue;
1851
Chris Lattnerbae4b642004-12-10 22:29:08 +00001852 bool Folded = ConstantFoldTerminator(I->getParent());
Chris Lattnerfe7b6ef2006-10-23 18:57:02 +00001853 if (!Folded) {
Reid Spencer7a9c62b2007-01-12 07:05:14 +00001854 // The constant folder may not have been able to fold the terminator
Chris Lattnerfe7b6ef2006-10-23 18:57:02 +00001855 // if this is a branch or switch on undef. Fold it manually as a
1856 // branch to the first successor.
Devang Patel45f1ae02008-11-21 01:52:59 +00001857#ifndef NDEBUG
Chris Lattnerfe7b6ef2006-10-23 18:57:02 +00001858 if (BranchInst *BI = dyn_cast<BranchInst>(I)) {
1859 assert(BI->isConditional() && isa<UndefValue>(BI->getCondition()) &&
1860 "Branch should be foldable!");
1861 } else if (SwitchInst *SI = dyn_cast<SwitchInst>(I)) {
1862 assert(isa<UndefValue>(SI->getCondition()) && "Switch should fold");
1863 } else {
Torok Edwinfbcc6632009-07-14 16:55:14 +00001864 llvm_unreachable("Didn't fold away reference to block!");
Chris Lattnerfe7b6ef2006-10-23 18:57:02 +00001865 }
Devang Patel45f1ae02008-11-21 01:52:59 +00001866#endif
Jakub Staszak632a3552012-01-18 21:16:33 +00001867
Chris Lattnerfe7b6ef2006-10-23 18:57:02 +00001868 // Make this an uncond branch to the first successor.
1869 TerminatorInst *TI = I->getParent()->getTerminator();
Gabor Greife9ecc682008-04-06 20:25:17 +00001870 BranchInst::Create(TI->getSuccessor(0), TI);
Jakub Staszak632a3552012-01-18 21:16:33 +00001871
Chris Lattnerfe7b6ef2006-10-23 18:57:02 +00001872 // Remove entries in successor phi nodes to remove edges.
1873 for (unsigned i = 1, e = TI->getNumSuccessors(); i != e; ++i)
1874 TI->getSuccessor(i)->removePredecessor(TI->getParent());
Jakub Staszak632a3552012-01-18 21:16:33 +00001875
Chris Lattnerfe7b6ef2006-10-23 18:57:02 +00001876 // Remove the old terminator.
1877 TI->eraseFromParent();
1878 }
Chris Lattnerbae4b642004-12-10 22:29:08 +00001879 }
Misha Brukmanb1c93172005-04-21 23:48:37 +00001880
Chris Lattnerbae4b642004-12-10 22:29:08 +00001881 // Finally, delete the basic block.
1882 F->getBasicBlockList().erase(DeadBB);
1883 }
Chris Lattner37d400a2007-02-02 21:15:06 +00001884 BlocksToErase.clear();
Chris Lattnerb4394642004-12-10 08:02:06 +00001885 }
Chris Lattner99e12952004-12-11 02:53:57 +00001886
1887 // If we inferred constant or undef return values for a function, we replaced
1888 // all call uses with the inferred value. This means we don't need to bother
1889 // actually returning anything from the function. Replace all return
1890 // instructions with return undef.
Chris Lattnerd887f1d2010-02-27 00:07:42 +00001891 //
1892 // Do this in two stages: first identify the functions we should process, then
1893 // actually zap their returns. This is important because we can only do this
Chris Lattner2af7e3d2010-02-27 07:50:40 +00001894 // if the address of the function isn't taken. In cases where a return is the
Chris Lattnerd887f1d2010-02-27 00:07:42 +00001895 // last use of a function, the order of processing functions would affect
Chris Lattner2af7e3d2010-02-27 07:50:40 +00001896 // whether other functions are optimizable.
Chris Lattnerd887f1d2010-02-27 00:07:42 +00001897 SmallVector<ReturnInst*, 8> ReturnsToZap;
Jakub Staszak632a3552012-01-18 21:16:33 +00001898
Devang Patele418de32008-03-11 17:32:05 +00001899 // TODO: Process multiple value ret instructions also.
Devang Patela7a20752008-03-11 05:46:42 +00001900 const DenseMap<Function*, LatticeVal> &RV = Solver.getTrackedRetVals();
Chris Lattner067d6072007-02-02 20:38:30 +00001901 for (DenseMap<Function*, LatticeVal>::const_iterator I = RV.begin(),
Chris Lattnerfb141812009-11-03 03:42:51 +00001902 E = RV.end(); I != E; ++I) {
1903 Function *F = I->first;
1904 if (I->second.isOverdefined() || F->getReturnType()->isVoidTy())
1905 continue;
Jakub Staszak632a3552012-01-18 21:16:33 +00001906
Chris Lattnerfb141812009-11-03 03:42:51 +00001907 // We can only do this if we know that nothing else can call the function.
Chris Lattner363226d2010-08-12 22:25:23 +00001908 if (!F->hasLocalLinkage() || AddressTakenFunctions.count(F))
Chris Lattnerfb141812009-11-03 03:42:51 +00001909 continue;
Jakub Staszak632a3552012-01-18 21:16:33 +00001910
Chris Lattnerfb141812009-11-03 03:42:51 +00001911 for (Function::iterator BB = F->begin(), E = F->end(); BB != E; ++BB)
1912 if (ReturnInst *RI = dyn_cast<ReturnInst>(BB->getTerminator()))
1913 if (!isa<UndefValue>(RI->getOperand(0)))
Chris Lattnerd887f1d2010-02-27 00:07:42 +00001914 ReturnsToZap.push_back(RI);
1915 }
1916
1917 // Zap all returns which we've identified as zap to change.
1918 for (unsigned i = 0, e = ReturnsToZap.size(); i != e; ++i) {
1919 Function *F = ReturnsToZap[i]->getParent()->getParent();
1920 ReturnsToZap[i]->setOperand(0, UndefValue::get(F->getReturnType()));
Chris Lattnerfb141812009-11-03 03:42:51 +00001921 }
Jakub Staszak632a3552012-01-18 21:16:33 +00001922
Chad Rosierbb2a6da2012-03-28 00:35:33 +00001923 // If we inferred constant or undef values for globals variables, we can
1924 // delete the global and any stores that remain to it.
Chris Lattner067d6072007-02-02 20:38:30 +00001925 const DenseMap<GlobalVariable*, LatticeVal> &TG = Solver.getTrackedGlobals();
1926 for (DenseMap<GlobalVariable*, LatticeVal>::const_iterator I = TG.begin(),
Chris Lattner91dbae62004-12-11 05:15:59 +00001927 E = TG.end(); I != E; ++I) {
1928 GlobalVariable *GV = I->first;
1929 assert(!I->second.isOverdefined() &&
1930 "Overdefined values should have been taken out of the map!");
David Greene389fc3b2010-01-05 01:27:15 +00001931 DEBUG(dbgs() << "Found that GV '" << GV->getName() << "' is constant!\n");
Chris Lattner91dbae62004-12-11 05:15:59 +00001932 while (!GV->use_empty()) {
Chandler Carruthcdf47882014-03-09 03:16:01 +00001933 StoreInst *SI = cast<StoreInst>(GV->user_back());
Chris Lattner91dbae62004-12-11 05:15:59 +00001934 SI->eraseFromParent();
1935 }
1936 M.getGlobalList().erase(GV);
Chris Lattner2f687fd2004-12-11 06:05:53 +00001937 ++IPNumGlobalConst;
Chris Lattner91dbae62004-12-11 05:15:59 +00001938 }
Misha Brukmanb1c93172005-04-21 23:48:37 +00001939
Chris Lattnerb4394642004-12-10 08:02:06 +00001940 return MadeChanges;
1941}