Misha Brukman | 373086d | 2003-05-20 21:01:22 +0000 | [diff] [blame] | 1 | //===- SCCP.cpp - Sparse Conditional Constant Propagation -----------------===// |
Misha Brukman | b1c9317 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 2 | // |
John Criswell | 482202a | 2003-10-20 19:43:21 +0000 | [diff] [blame] | 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
Chris Lattner | f3ebc3f | 2007-12-29 20:36:04 +0000 | [diff] [blame] | 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
Misha Brukman | b1c9317 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 7 | // |
John Criswell | 482202a | 2003-10-20 19:43:21 +0000 | [diff] [blame] | 8 | //===----------------------------------------------------------------------===// |
Chris Lattner | 347389d | 2001-06-27 23:38:11 +0000 | [diff] [blame] | 9 | // |
Misha Brukman | 373086d | 2003-05-20 21:01:22 +0000 | [diff] [blame] | 10 | // This file implements sparse conditional constant propagation and merging: |
Chris Lattner | 347389d | 2001-06-27 23:38:11 +0000 | [diff] [blame] | 11 | // |
| 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 Lattner | dd6522e | 2002-08-30 23:39:00 +0000 | [diff] [blame] | 16 | // * Proves conditional branches to be unconditional |
Chris Lattner | 347389d | 2001-06-27 23:38:11 +0000 | [diff] [blame] | 17 | // |
Chris Lattner | 347389d | 2001-06-27 23:38:11 +0000 | [diff] [blame] | 18 | //===----------------------------------------------------------------------===// |
| 19 | |
Chris Lattner | b4cfa7f | 2002-05-07 20:03:00 +0000 | [diff] [blame] | 20 | #include "llvm/Transforms/Scalar.h" |
Chris Lattner | 067d607 | 2007-02-02 20:38:30 +0000 | [diff] [blame] | 21 | #include "llvm/ADT/DenseMap.h" |
Chris Lattner | 65938fc | 2008-08-23 23:36:38 +0000 | [diff] [blame] | 22 | #include "llvm/ADT/DenseSet.h" |
Chris Lattner | efdd2bb | 2009-11-02 02:20:32 +0000 | [diff] [blame] | 23 | #include "llvm/ADT/PointerIntPair.h" |
Chris Lattner | 809aee2 | 2009-11-02 06:11:23 +0000 | [diff] [blame] | 24 | #include "llvm/ADT/SmallPtrSet.h" |
Chris Lattner | 0d74d3c | 2007-01-30 23:15:19 +0000 | [diff] [blame] | 25 | #include "llvm/ADT/SmallVector.h" |
Reid Spencer | 7c16caa | 2004-09-01 22:55:40 +0000 | [diff] [blame] | 26 | #include "llvm/ADT/Statistic.h" |
Chandler Carruth | ed0881b | 2012-12-03 16:50:05 +0000 | [diff] [blame] | 27 | #include "llvm/Analysis/ConstantFolding.h" |
Benjamin Kramer | 799003b | 2015-03-23 19:32:43 +0000 | [diff] [blame^] | 28 | #include "llvm/Analysis/TargetLibraryInfo.h" |
Chandler Carruth | 219b89b | 2014-03-04 11:01:28 +0000 | [diff] [blame] | 29 | #include "llvm/IR/CallSite.h" |
Chandler Carruth | 9fb823b | 2013-01-02 11:36:10 +0000 | [diff] [blame] | 30 | #include "llvm/IR/Constants.h" |
| 31 | #include "llvm/IR/DataLayout.h" |
| 32 | #include "llvm/IR/DerivedTypes.h" |
Chandler Carruth | 7da14f1 | 2014-03-06 03:23:41 +0000 | [diff] [blame] | 33 | #include "llvm/IR/InstVisitor.h" |
Chandler Carruth | 9fb823b | 2013-01-02 11:36:10 +0000 | [diff] [blame] | 34 | #include "llvm/IR/Instructions.h" |
Chandler Carruth | ed0881b | 2012-12-03 16:50:05 +0000 | [diff] [blame] | 35 | #include "llvm/Pass.h" |
Chandler Carruth | ed0881b | 2012-12-03 16:50:05 +0000 | [diff] [blame] | 36 | #include "llvm/Support/Debug.h" |
| 37 | #include "llvm/Support/ErrorHandling.h" |
| 38 | #include "llvm/Support/raw_ostream.h" |
Chandler Carruth | ed0881b | 2012-12-03 16:50:05 +0000 | [diff] [blame] | 39 | #include "llvm/Transforms/IPO.h" |
| 40 | #include "llvm/Transforms/Utils/Local.h" |
Chris Lattner | 347389d | 2001-06-27 23:38:11 +0000 | [diff] [blame] | 41 | #include <algorithm> |
Chris Lattner | 49525f8 | 2004-01-09 06:02:20 +0000 | [diff] [blame] | 42 | using namespace llvm; |
Brian Gaeke | 960707c | 2003-11-11 22:41:34 +0000 | [diff] [blame] | 43 | |
Chandler Carruth | 964daaa | 2014-04-22 02:55:47 +0000 | [diff] [blame] | 44 | #define DEBUG_TYPE "sccp" |
| 45 | |
Chris Lattner | 79a42ac | 2006-12-19 21:40:18 +0000 | [diff] [blame] | 46 | STATISTIC(NumInstRemoved, "Number of instructions removed"); |
| 47 | STATISTIC(NumDeadBlocks , "Number of basic blocks unreachable"); |
| 48 | |
Nick Lewycky | 35e92c7 | 2008-03-08 07:48:41 +0000 | [diff] [blame] | 49 | STATISTIC(IPNumInstRemoved, "Number of instructions removed by IPSCCP"); |
Chris Lattner | 79a42ac | 2006-12-19 21:40:18 +0000 | [diff] [blame] | 50 | STATISTIC(IPNumArgsElimed ,"Number of arguments constant propagated by IPSCCP"); |
| 51 | STATISTIC(IPNumGlobalConst, "Number of globals found to be constant by IPSCCP"); |
| 52 | |
Chris Lattner | 7d32538 | 2002-04-29 21:26:08 +0000 | [diff] [blame] | 53 | namespace { |
Chris Lattner | 1847f6d | 2006-12-20 06:21:33 +0000 | [diff] [blame] | 54 | /// 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 Lattner | 2dd09db | 2009-09-02 06:11:42 +0000 | [diff] [blame] | 57 | class LatticeVal { |
Chris Lattner | efdd2bb | 2009-11-02 02:20:32 +0000 | [diff] [blame] | 58 | enum LatticeValueTy { |
Chris Lattner | 1847f6d | 2006-12-20 06:21:33 +0000 | [diff] [blame] | 59 | /// undefined - This LLVM Value has no known value yet. |
| 60 | undefined, |
Jakub Staszak | 632a355 | 2012-01-18 21:16:33 +0000 | [diff] [blame] | 61 | |
Chris Lattner | 1847f6d | 2006-12-20 06:21:33 +0000 | [diff] [blame] | 62 | /// 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 Staszak | 632a355 | 2012-01-18 21:16:33 +0000 | [diff] [blame] | 70 | |
Chris Lattner | 1847f6d | 2006-12-20 06:21:33 +0000 | [diff] [blame] | 71 | /// overdefined - This instruction is not known to be constant, and we know |
| 72 | /// it has a value. |
| 73 | overdefined |
Chris Lattner | efdd2bb | 2009-11-02 02:20:32 +0000 | [diff] [blame] | 74 | }; |
| 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 Staszak | 632a355 | 2012-01-18 21:16:33 +0000 | [diff] [blame] | 79 | |
Chris Lattner | efdd2bb | 2009-11-02 02:20:32 +0000 | [diff] [blame] | 80 | LatticeValueTy getLatticeValue() const { |
| 81 | return Val.getInt(); |
| 82 | } |
Jakub Staszak | 632a355 | 2012-01-18 21:16:33 +0000 | [diff] [blame] | 83 | |
Chris Lattner | 347389d | 2001-06-27 23:38:11 +0000 | [diff] [blame] | 84 | public: |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 85 | LatticeVal() : Val(nullptr, undefined) {} |
Jakub Staszak | 632a355 | 2012-01-18 21:16:33 +0000 | [diff] [blame] | 86 | |
Chris Lattner | 7ccf1a6 | 2009-11-02 03:03:42 +0000 | [diff] [blame] | 87 | bool isUndefined() const { return getLatticeValue() == undefined; } |
| 88 | bool isConstant() const { |
Chris Lattner | efdd2bb | 2009-11-02 02:20:32 +0000 | [diff] [blame] | 89 | return getLatticeValue() == constant || getLatticeValue() == forcedconstant; |
| 90 | } |
Chris Lattner | 7ccf1a6 | 2009-11-02 03:03:42 +0000 | [diff] [blame] | 91 | bool isOverdefined() const { return getLatticeValue() == overdefined; } |
Jakub Staszak | 632a355 | 2012-01-18 21:16:33 +0000 | [diff] [blame] | 92 | |
Chris Lattner | 7ccf1a6 | 2009-11-02 03:03:42 +0000 | [diff] [blame] | 93 | Constant *getConstant() const { |
Chris Lattner | efdd2bb | 2009-11-02 02:20:32 +0000 | [diff] [blame] | 94 | assert(isConstant() && "Cannot get the constant of a non-constant!"); |
| 95 | return Val.getPointer(); |
| 96 | } |
Jakub Staszak | 632a355 | 2012-01-18 21:16:33 +0000 | [diff] [blame] | 97 | |
Chris Lattner | efdd2bb | 2009-11-02 02:20:32 +0000 | [diff] [blame] | 98 | /// markOverdefined - Return true if this is a change in status. |
Chris Lattner | 7ccf1a6 | 2009-11-02 03:03:42 +0000 | [diff] [blame] | 99 | bool markOverdefined() { |
Chris Lattner | efdd2bb | 2009-11-02 02:20:32 +0000 | [diff] [blame] | 100 | if (isOverdefined()) |
| 101 | return false; |
Jakub Staszak | 632a355 | 2012-01-18 21:16:33 +0000 | [diff] [blame] | 102 | |
Chris Lattner | efdd2bb | 2009-11-02 02:20:32 +0000 | [diff] [blame] | 103 | Val.setInt(overdefined); |
| 104 | return true; |
Chris Lattner | 347389d | 2001-06-27 23:38:11 +0000 | [diff] [blame] | 105 | } |
| 106 | |
Chris Lattner | efdd2bb | 2009-11-02 02:20:32 +0000 | [diff] [blame] | 107 | /// markConstant - Return true if this is a change in status. |
Chris Lattner | 7ccf1a6 | 2009-11-02 03:03:42 +0000 | [diff] [blame] | 108 | bool markConstant(Constant *V) { |
Chris Lattner | e1d5cd9 | 2009-11-03 16:50:11 +0000 | [diff] [blame] | 109 | if (getLatticeValue() == constant) { // Constant but not forcedconstant. |
Chris Lattner | efdd2bb | 2009-11-02 02:20:32 +0000 | [diff] [blame] | 110 | assert(getConstant() == V && "Marking constant with different value"); |
| 111 | return false; |
Chris Lattner | 347389d | 2001-06-27 23:38:11 +0000 | [diff] [blame] | 112 | } |
Jakub Staszak | 632a355 | 2012-01-18 21:16:33 +0000 | [diff] [blame] | 113 | |
Chris Lattner | efdd2bb | 2009-11-02 02:20:32 +0000 | [diff] [blame] | 114 | if (isUndefined()) { |
| 115 | Val.setInt(constant); |
| 116 | assert(V && "Marking constant with NULL"); |
| 117 | Val.setPointer(V); |
| 118 | } else { |
Jakub Staszak | 632a355 | 2012-01-18 21:16:33 +0000 | [diff] [blame] | 119 | assert(getLatticeValue() == forcedconstant && |
Chris Lattner | efdd2bb | 2009-11-02 02:20:32 +0000 | [diff] [blame] | 120 | "Cannot move from overdefined to constant!"); |
| 121 | // Stay at forcedconstant if the constant is the same. |
| 122 | if (V == getConstant()) return false; |
Jakub Staszak | 632a355 | 2012-01-18 21:16:33 +0000 | [diff] [blame] | 123 | |
Chris Lattner | efdd2bb | 2009-11-02 02:20:32 +0000 | [diff] [blame] | 124 | // 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 Lattner | 347389d | 2001-06-27 23:38:11 +0000 | [diff] [blame] | 130 | } |
| 131 | |
Chris Lattner | 9e97fbe | 2009-11-02 03:21:36 +0000 | [diff] [blame] | 132 | /// 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 Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 137 | return nullptr; |
Chris Lattner | 9e97fbe | 2009-11-02 03:21:36 +0000 | [diff] [blame] | 138 | } |
Jakub Staszak | 632a355 | 2012-01-18 21:16:33 +0000 | [diff] [blame] | 139 | |
Chris Lattner | 7ccf1a6 | 2009-11-02 03:03:42 +0000 | [diff] [blame] | 140 | void markForcedConstant(Constant *V) { |
Chris Lattner | efdd2bb | 2009-11-02 02:20:32 +0000 | [diff] [blame] | 141 | assert(isUndefined() && "Can't force a defined value!"); |
| 142 | Val.setInt(forcedconstant); |
| 143 | Val.setPointer(V); |
Chris Lattner | 05fe684 | 2004-01-12 03:57:30 +0000 | [diff] [blame] | 144 | } |
Chris Lattner | 347389d | 2001-06-27 23:38:11 +0000 | [diff] [blame] | 145 | }; |
Chris Lattner | e405ed9 | 2009-11-02 02:47:51 +0000 | [diff] [blame] | 146 | } // end anonymous namespace. |
| 147 | |
| 148 | |
| 149 | namespace { |
Chris Lattner | 347389d | 2001-06-27 23:38:11 +0000 | [diff] [blame] | 150 | |
Chris Lattner | 347389d | 2001-06-27 23:38:11 +0000 | [diff] [blame] | 151 | //===----------------------------------------------------------------------===// |
Chris Lattner | 347389d | 2001-06-27 23:38:11 +0000 | [diff] [blame] | 152 | // |
Chris Lattner | 074be1f | 2004-11-15 04:44:20 +0000 | [diff] [blame] | 153 | /// SCCPSolver - This class is a general purpose solver for Sparse Conditional |
| 154 | /// Constant Propagation. |
| 155 | /// |
| 156 | class SCCPSolver : public InstVisitor<SCCPSolver> { |
Mehdi Amini | 46a4355 | 2015-03-04 18:43:29 +0000 | [diff] [blame] | 157 | const DataLayout &DL; |
Chad Rosier | e6de63d | 2011-12-01 21:29:16 +0000 | [diff] [blame] | 158 | const TargetLibraryInfo *TLI; |
Nick Lewycky | 77cb8e6 | 2011-07-25 21:16:04 +0000 | [diff] [blame] | 159 | SmallPtrSet<BasicBlock*, 8> BBExecutable; // The BBs that are executable. |
Chris Lattner | f548403 | 2009-11-02 05:55:40 +0000 | [diff] [blame] | 160 | DenseMap<Value*, LatticeVal> ValueState; // The state each value is in. |
Chris Lattner | 347389d | 2001-06-27 23:38:11 +0000 | [diff] [blame] | 161 | |
Chris Lattner | 156b8c7 | 2009-11-03 23:40:48 +0000 | [diff] [blame] | 162 | /// 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 Staszak | 632a355 | 2012-01-18 21:16:33 +0000 | [diff] [blame] | 166 | |
Chris Lattner | 91dbae6 | 2004-12-11 05:15:59 +0000 | [diff] [blame] | 167 | /// 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 Lattner | 067d607 | 2007-02-02 20:38:30 +0000 | [diff] [blame] | 171 | DenseMap<GlobalVariable*, LatticeVal> TrackedGlobals; |
Chris Lattner | 91dbae6 | 2004-12-11 05:15:59 +0000 | [diff] [blame] | 172 | |
Devang Patel | a7a2075 | 2008-03-11 05:46:42 +0000 | [diff] [blame] | 173 | /// TrackedRetVals - If we are tracking arguments into and the return |
Chris Lattner | b439464 | 2004-12-10 08:02:06 +0000 | [diff] [blame] | 174 | /// 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 Patel | a7a2075 | 2008-03-11 05:46:42 +0000 | [diff] [blame] | 176 | DenseMap<Function*, LatticeVal> TrackedRetVals; |
| 177 | |
| 178 | /// TrackedMultipleRetVals - Same as TrackedRetVals, but used for functions |
| 179 | /// that return multiple values. |
Chris Lattner | 65938fc | 2008-08-23 23:36:38 +0000 | [diff] [blame] | 180 | DenseMap<std::pair<Function*, unsigned>, LatticeVal> TrackedMultipleRetVals; |
Jakub Staszak | 632a355 | 2012-01-18 21:16:33 +0000 | [diff] [blame] | 181 | |
Chris Lattner | 156b8c7 | 2009-11-03 23:40:48 +0000 | [diff] [blame] | 182 | /// MRVFunctionsTracked - Each function in TrackedMultipleRetVals is |
| 183 | /// represented here for efficient lookup. |
| 184 | SmallPtrSet<Function*, 16> MRVFunctionsTracked; |
Chris Lattner | b439464 | 2004-12-10 08:02:06 +0000 | [diff] [blame] | 185 | |
Chris Lattner | 2c42723 | 2009-11-03 20:52:57 +0000 | [diff] [blame] | 186 | /// TrackingIncomingArguments - This is the set of functions for whose |
| 187 | /// arguments we make optimistic assumptions about and try to prove as |
| 188 | /// constants. |
Chris Lattner | cde8de5 | 2009-11-03 19:24:51 +0000 | [diff] [blame] | 189 | SmallPtrSet<Function*, 16> TrackingIncomingArguments; |
Jakub Staszak | 632a355 | 2012-01-18 21:16:33 +0000 | [diff] [blame] | 190 | |
Chris Lattner | 7ccf1a6 | 2009-11-02 03:03:42 +0000 | [diff] [blame] | 191 | /// 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 Lattner | 65938fc | 2008-08-23 23:36:38 +0000 | [diff] [blame] | 198 | SmallVector<Value*, 64> OverdefinedInstWorkList; |
| 199 | SmallVector<Value*, 64> InstWorkList; |
Chris Lattner | d79334d | 2004-07-15 23:36:43 +0000 | [diff] [blame] | 200 | |
| 201 | |
Chris Lattner | 65938fc | 2008-08-23 23:36:38 +0000 | [diff] [blame] | 202 | SmallVector<BasicBlock*, 64> BBWorkList; // The BasicBlock work list |
Chris Lattner | 0bbbe5d | 2003-10-08 16:55:34 +0000 | [diff] [blame] | 203 | |
| 204 | /// KnownFeasibleEdges - Entries in this set are edges which have already had |
| 205 | /// PHI nodes retriggered. |
Chris Lattner | 65938fc | 2008-08-23 23:36:38 +0000 | [diff] [blame] | 206 | typedef std::pair<BasicBlock*, BasicBlock*> Edge; |
| 207 | DenseSet<Edge> KnownFeasibleEdges; |
Chris Lattner | 347389d | 2001-06-27 23:38:11 +0000 | [diff] [blame] | 208 | public: |
Mehdi Amini | 46a4355 | 2015-03-04 18:43:29 +0000 | [diff] [blame] | 209 | SCCPSolver(const DataLayout &DL, const TargetLibraryInfo *tli) |
| 210 | : DL(DL), TLI(tli) {} |
Chris Lattner | 347389d | 2001-06-27 23:38:11 +0000 | [diff] [blame] | 211 | |
Chris Lattner | 074be1f | 2004-11-15 04:44:20 +0000 | [diff] [blame] | 212 | /// 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 Lattner | 809aee2 | 2009-11-02 06:11:23 +0000 | [diff] [blame] | 214 | /// |
| 215 | /// This returns true if the block was not considered live before. |
| 216 | bool MarkBlockExecutable(BasicBlock *BB) { |
David Blaikie | 70573dc | 2014-11-19 07:49:26 +0000 | [diff] [blame] | 217 | if (!BBExecutable.insert(BB).second) |
| 218 | return false; |
Nick Lewycky | 5cd9538 | 2013-06-26 00:30:18 +0000 | [diff] [blame] | 219 | DEBUG(dbgs() << "Marking Block Executable: " << BB->getName() << '\n'); |
Chris Lattner | 074be1f | 2004-11-15 04:44:20 +0000 | [diff] [blame] | 220 | BBWorkList.push_back(BB); // Add the block to the work list! |
Chris Lattner | 809aee2 | 2009-11-02 06:11:23 +0000 | [diff] [blame] | 221 | return true; |
Chris Lattner | 7d32538 | 2002-04-29 21:26:08 +0000 | [diff] [blame] | 222 | } |
| 223 | |
Chris Lattner | 91dbae6 | 2004-12-11 05:15:59 +0000 | [diff] [blame] | 224 | /// TrackValueOfGlobalVariable - Clients can use this method to |
Chris Lattner | b439464 | 2004-12-10 08:02:06 +0000 | [diff] [blame] | 225 | /// inform the SCCPSolver that it should track loads and stores to the |
| 226 | /// specified global variable if it can. This is only legal to call if |
| 227 | /// performing Interprocedural SCCP. |
Chris Lattner | 91dbae6 | 2004-12-11 05:15:59 +0000 | [diff] [blame] | 228 | void TrackValueOfGlobalVariable(GlobalVariable *GV) { |
Chris Lattner | 156b8c7 | 2009-11-03 23:40:48 +0000 | [diff] [blame] | 229 | // We only track the contents of scalar globals. |
| 230 | if (GV->getType()->getElementType()->isSingleValueType()) { |
Chris Lattner | 91dbae6 | 2004-12-11 05:15:59 +0000 | [diff] [blame] | 231 | LatticeVal &IV = TrackedGlobals[GV]; |
| 232 | if (!isa<UndefValue>(GV->getInitializer())) |
| 233 | IV.markConstant(GV->getInitializer()); |
| 234 | } |
| 235 | } |
Chris Lattner | b439464 | 2004-12-10 08:02:06 +0000 | [diff] [blame] | 236 | |
| 237 | /// AddTrackedFunction - If the SCCP solver is supposed to track calls into |
| 238 | /// and out of the specified function (which cannot have its address taken), |
| 239 | /// this method must be called. |
| 240 | void AddTrackedFunction(Function *F) { |
Chris Lattner | b439464 | 2004-12-10 08:02:06 +0000 | [diff] [blame] | 241 | // Add an entry, F -> undef. |
Chris Lattner | 229907c | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 242 | if (StructType *STy = dyn_cast<StructType>(F->getReturnType())) { |
Chris Lattner | 156b8c7 | 2009-11-03 23:40:48 +0000 | [diff] [blame] | 243 | MRVFunctionsTracked.insert(F); |
Devang Patel | a7a2075 | 2008-03-11 05:46:42 +0000 | [diff] [blame] | 244 | for (unsigned i = 0, e = STy->getNumElements(); i != e; ++i) |
Chris Lattner | 5a58a4d | 2008-04-23 05:38:20 +0000 | [diff] [blame] | 245 | TrackedMultipleRetVals.insert(std::make_pair(std::make_pair(F, i), |
| 246 | LatticeVal())); |
| 247 | } else |
| 248 | TrackedRetVals.insert(std::make_pair(F, LatticeVal())); |
Chris Lattner | b439464 | 2004-12-10 08:02:06 +0000 | [diff] [blame] | 249 | } |
| 250 | |
Chris Lattner | cde8de5 | 2009-11-03 19:24:51 +0000 | [diff] [blame] | 251 | void AddArgumentTrackedFunction(Function *F) { |
| 252 | TrackingIncomingArguments.insert(F); |
| 253 | } |
Jakub Staszak | 632a355 | 2012-01-18 21:16:33 +0000 | [diff] [blame] | 254 | |
Chris Lattner | 074be1f | 2004-11-15 04:44:20 +0000 | [diff] [blame] | 255 | /// Solve - Solve for constants and executable blocks. |
| 256 | /// |
| 257 | void Solve(); |
Chris Lattner | 347389d | 2001-06-27 23:38:11 +0000 | [diff] [blame] | 258 | |
Chris Lattner | 1847f6d | 2006-12-20 06:21:33 +0000 | [diff] [blame] | 259 | /// ResolvedUndefsIn - While solving the dataflow for a function, we assume |
Chris Lattner | 7285f43 | 2004-12-10 20:41:50 +0000 | [diff] [blame] | 260 | /// that branches on undef values cannot reach any of their successors. |
| 261 | /// However, this is not a safe assumption. After we solve dataflow, this |
| 262 | /// method should be use to handle this. If this returns true, the solver |
| 263 | /// should be rerun. |
Chris Lattner | 1847f6d | 2006-12-20 06:21:33 +0000 | [diff] [blame] | 264 | bool ResolvedUndefsIn(Function &F); |
Chris Lattner | 7285f43 | 2004-12-10 20:41:50 +0000 | [diff] [blame] | 265 | |
Chris Lattner | add44f3 | 2008-08-23 23:39:31 +0000 | [diff] [blame] | 266 | bool isBlockExecutable(BasicBlock *BB) const { |
| 267 | return BBExecutable.count(BB); |
Chris Lattner | 074be1f | 2004-11-15 04:44:20 +0000 | [diff] [blame] | 268 | } |
| 269 | |
Chris Lattner | b5a13d4 | 2009-11-02 02:54:24 +0000 | [diff] [blame] | 270 | LatticeVal getLatticeValueFor(Value *V) const { |
Chris Lattner | f548403 | 2009-11-02 05:55:40 +0000 | [diff] [blame] | 271 | DenseMap<Value*, LatticeVal>::const_iterator I = ValueState.find(V); |
Chris Lattner | b5a13d4 | 2009-11-02 02:54:24 +0000 | [diff] [blame] | 272 | assert(I != ValueState.end() && "V is not in valuemap!"); |
| 273 | return I->second; |
Chris Lattner | 074be1f | 2004-11-15 04:44:20 +0000 | [diff] [blame] | 274 | } |
Jakub Staszak | 632a355 | 2012-01-18 21:16:33 +0000 | [diff] [blame] | 275 | |
Devang Patel | a7a2075 | 2008-03-11 05:46:42 +0000 | [diff] [blame] | 276 | /// getTrackedRetVals - Get the inferred return value map. |
Chris Lattner | 99e1295 | 2004-12-11 02:53:57 +0000 | [diff] [blame] | 277 | /// |
Devang Patel | a7a2075 | 2008-03-11 05:46:42 +0000 | [diff] [blame] | 278 | const DenseMap<Function*, LatticeVal> &getTrackedRetVals() { |
| 279 | return TrackedRetVals; |
Chris Lattner | 99e1295 | 2004-12-11 02:53:57 +0000 | [diff] [blame] | 280 | } |
| 281 | |
Chris Lattner | 91dbae6 | 2004-12-11 05:15:59 +0000 | [diff] [blame] | 282 | /// getTrackedGlobals - Get and return the set of inferred initializers for |
| 283 | /// global variables. |
Chris Lattner | 067d607 | 2007-02-02 20:38:30 +0000 | [diff] [blame] | 284 | const DenseMap<GlobalVariable*, LatticeVal> &getTrackedGlobals() { |
Chris Lattner | 91dbae6 | 2004-12-11 05:15:59 +0000 | [diff] [blame] | 285 | return TrackedGlobals; |
| 286 | } |
| 287 | |
Chris Lattner | 9e97fbe | 2009-11-02 03:21:36 +0000 | [diff] [blame] | 288 | void markOverdefined(Value *V) { |
Duncan Sands | 19d0b47 | 2010-02-16 11:11:14 +0000 | [diff] [blame] | 289 | assert(!V->getType()->isStructTy() && "Should use other method"); |
Chris Lattner | c33fd46 | 2007-03-04 04:50:21 +0000 | [diff] [blame] | 290 | markOverdefined(ValueState[V], V); |
| 291 | } |
Chris Lattner | 99e1295 | 2004-12-11 02:53:57 +0000 | [diff] [blame] | 292 | |
Chris Lattner | 156b8c7 | 2009-11-03 23:40:48 +0000 | [diff] [blame] | 293 | /// markAnythingOverdefined - Mark the specified value overdefined. This |
| 294 | /// works with both scalars and structs. |
| 295 | void markAnythingOverdefined(Value *V) { |
Chris Lattner | 229907c | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 296 | if (StructType *STy = dyn_cast<StructType>(V->getType())) |
Chris Lattner | 156b8c7 | 2009-11-03 23:40:48 +0000 | [diff] [blame] | 297 | for (unsigned i = 0, e = STy->getNumElements(); i != e; ++i) |
| 298 | markOverdefined(getStructValueState(V, i), V); |
| 299 | else |
| 300 | markOverdefined(V); |
| 301 | } |
Jakub Staszak | 632a355 | 2012-01-18 21:16:33 +0000 | [diff] [blame] | 302 | |
Chris Lattner | 347389d | 2001-06-27 23:38:11 +0000 | [diff] [blame] | 303 | private: |
Chris Lattner | d79334d | 2004-07-15 23:36:43 +0000 | [diff] [blame] | 304 | // markConstant - Make a value be marked as "constant". If the value |
Misha Brukman | b1c9317 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 305 | // is not already a constant, add it to the instruction work list so that |
Chris Lattner | 347389d | 2001-06-27 23:38:11 +0000 | [diff] [blame] | 306 | // the users of the instruction are updated later. |
| 307 | // |
Chris Lattner | 7ccf1a6 | 2009-11-02 03:03:42 +0000 | [diff] [blame] | 308 | void markConstant(LatticeVal &IV, Value *V, Constant *C) { |
| 309 | if (!IV.markConstant(C)) return; |
David Greene | 389fc3b | 2010-01-05 01:27:15 +0000 | [diff] [blame] | 310 | DEBUG(dbgs() << "markConstant: " << *C << ": " << *V << '\n'); |
Chris Lattner | c6c153b | 2010-04-09 01:14:31 +0000 | [diff] [blame] | 311 | if (IV.isOverdefined()) |
| 312 | OverdefinedInstWorkList.push_back(V); |
| 313 | else |
| 314 | InstWorkList.push_back(V); |
Chris Lattner | 7324f7c | 2003-10-08 16:21:03 +0000 | [diff] [blame] | 315 | } |
Jakub Staszak | 632a355 | 2012-01-18 21:16:33 +0000 | [diff] [blame] | 316 | |
Chris Lattner | 7ccf1a6 | 2009-11-02 03:03:42 +0000 | [diff] [blame] | 317 | void markConstant(Value *V, Constant *C) { |
Duncan Sands | 19d0b47 | 2010-02-16 11:11:14 +0000 | [diff] [blame] | 318 | assert(!V->getType()->isStructTy() && "Should use other method"); |
Chris Lattner | b439464 | 2004-12-10 08:02:06 +0000 | [diff] [blame] | 319 | markConstant(ValueState[V], V, C); |
Chris Lattner | 347389d | 2001-06-27 23:38:11 +0000 | [diff] [blame] | 320 | } |
| 321 | |
Chris Lattner | f548403 | 2009-11-02 05:55:40 +0000 | [diff] [blame] | 322 | void markForcedConstant(Value *V, Constant *C) { |
Duncan Sands | 19d0b47 | 2010-02-16 11:11:14 +0000 | [diff] [blame] | 323 | assert(!V->getType()->isStructTy() && "Should use other method"); |
Chris Lattner | c6c153b | 2010-04-09 01:14:31 +0000 | [diff] [blame] | 324 | LatticeVal &IV = ValueState[V]; |
| 325 | IV.markForcedConstant(C); |
David Greene | 389fc3b | 2010-01-05 01:27:15 +0000 | [diff] [blame] | 326 | DEBUG(dbgs() << "markForcedConstant: " << *C << ": " << *V << '\n'); |
Chris Lattner | c6c153b | 2010-04-09 01:14:31 +0000 | [diff] [blame] | 327 | if (IV.isOverdefined()) |
| 328 | OverdefinedInstWorkList.push_back(V); |
| 329 | else |
| 330 | InstWorkList.push_back(V); |
Chris Lattner | f548403 | 2009-11-02 05:55:40 +0000 | [diff] [blame] | 331 | } |
Jakub Staszak | 632a355 | 2012-01-18 21:16:33 +0000 | [diff] [blame] | 332 | |
| 333 | |
Chris Lattner | d79334d | 2004-07-15 23:36:43 +0000 | [diff] [blame] | 334 | // markOverdefined - Make a value be marked as "overdefined". If the |
Misha Brukman | b1c9317 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 335 | // value is not already overdefined, add it to the overdefined instruction |
Chris Lattner | d79334d | 2004-07-15 23:36:43 +0000 | [diff] [blame] | 336 | // work list so that the users of the instruction are updated later. |
Chris Lattner | 7ccf1a6 | 2009-11-02 03:03:42 +0000 | [diff] [blame] | 337 | void markOverdefined(LatticeVal &IV, Value *V) { |
| 338 | if (!IV.markOverdefined()) return; |
Jakub Staszak | 632a355 | 2012-01-18 21:16:33 +0000 | [diff] [blame] | 339 | |
David Greene | 389fc3b | 2010-01-05 01:27:15 +0000 | [diff] [blame] | 340 | DEBUG(dbgs() << "markOverdefined: "; |
Chris Lattner | 7ccf1a6 | 2009-11-02 03:03:42 +0000 | [diff] [blame] | 341 | if (Function *F = dyn_cast<Function>(V)) |
David Greene | 389fc3b | 2010-01-05 01:27:15 +0000 | [diff] [blame] | 342 | dbgs() << "Function '" << F->getName() << "'\n"; |
Chris Lattner | 7ccf1a6 | 2009-11-02 03:03:42 +0000 | [diff] [blame] | 343 | else |
David Greene | 389fc3b | 2010-01-05 01:27:15 +0000 | [diff] [blame] | 344 | dbgs() << *V << '\n'); |
Chris Lattner | 7ccf1a6 | 2009-11-02 03:03:42 +0000 | [diff] [blame] | 345 | // Only instructions go on the work list |
| 346 | OverdefinedInstWorkList.push_back(V); |
Chris Lattner | 7324f7c | 2003-10-08 16:21:03 +0000 | [diff] [blame] | 347 | } |
Chris Lattner | b439464 | 2004-12-10 08:02:06 +0000 | [diff] [blame] | 348 | |
Chris Lattner | f548403 | 2009-11-02 05:55:40 +0000 | [diff] [blame] | 349 | void mergeInValue(LatticeVal &IV, Value *V, LatticeVal MergeWithV) { |
Chris Lattner | b439464 | 2004-12-10 08:02:06 +0000 | [diff] [blame] | 350 | if (IV.isOverdefined() || MergeWithV.isUndefined()) |
| 351 | return; // Noop. |
| 352 | if (MergeWithV.isOverdefined()) |
| 353 | markOverdefined(IV, V); |
| 354 | else if (IV.isUndefined()) |
| 355 | markConstant(IV, V, MergeWithV.getConstant()); |
| 356 | else if (IV.getConstant() != MergeWithV.getConstant()) |
| 357 | markOverdefined(IV, V); |
Chris Lattner | 347389d | 2001-06-27 23:38:11 +0000 | [diff] [blame] | 358 | } |
Jakub Staszak | 632a355 | 2012-01-18 21:16:33 +0000 | [diff] [blame] | 359 | |
Chris Lattner | f548403 | 2009-11-02 05:55:40 +0000 | [diff] [blame] | 360 | void mergeInValue(Value *V, LatticeVal MergeWithV) { |
Duncan Sands | 19d0b47 | 2010-02-16 11:11:14 +0000 | [diff] [blame] | 361 | assert(!V->getType()->isStructTy() && "Should use other method"); |
Chris Lattner | 9e97fbe | 2009-11-02 03:21:36 +0000 | [diff] [blame] | 362 | mergeInValue(ValueState[V], V, MergeWithV); |
Chris Lattner | 06a0ed1 | 2006-02-08 02:38:11 +0000 | [diff] [blame] | 363 | } |
| 364 | |
Chris Lattner | 347389d | 2001-06-27 23:38:11 +0000 | [diff] [blame] | 365 | |
Chris Lattner | f548403 | 2009-11-02 05:55:40 +0000 | [diff] [blame] | 366 | /// getValueState - Return the LatticeVal object that corresponds to the |
| 367 | /// value. This function handles the case when the value hasn't been seen yet |
| 368 | /// by properly seeding constants etc. |
Chris Lattner | 7ccf1a6 | 2009-11-02 03:03:42 +0000 | [diff] [blame] | 369 | LatticeVal &getValueState(Value *V) { |
Duncan Sands | 19d0b47 | 2010-02-16 11:11:14 +0000 | [diff] [blame] | 370 | assert(!V->getType()->isStructTy() && "Should use getStructValueState"); |
Chris Lattner | 646354b | 2004-10-16 18:09:41 +0000 | [diff] [blame] | 371 | |
Benjamin Kramer | 3fcbb82 | 2009-11-05 14:33:27 +0000 | [diff] [blame] | 372 | std::pair<DenseMap<Value*, LatticeVal>::iterator, bool> I = |
| 373 | ValueState.insert(std::make_pair(V, LatticeVal())); |
| 374 | LatticeVal &LV = I.first->second; |
| 375 | |
| 376 | if (!I.second) |
| 377 | return LV; // Common case, already in the map. |
Chris Lattner | 9e97fbe | 2009-11-02 03:21:36 +0000 | [diff] [blame] | 378 | |
Chris Lattner | 1847f6d | 2006-12-20 06:21:33 +0000 | [diff] [blame] | 379 | if (Constant *C = dyn_cast<Constant>(V)) { |
Chris Lattner | 9e97fbe | 2009-11-02 03:21:36 +0000 | [diff] [blame] | 380 | // Undef values remain undefined. |
| 381 | if (!isa<UndefValue>(V)) |
Chris Lattner | 067d607 | 2007-02-02 20:38:30 +0000 | [diff] [blame] | 382 | LV.markConstant(C); // Constants are constant |
Chris Lattner | dd6522e | 2002-08-30 23:39:00 +0000 | [diff] [blame] | 383 | } |
Jakub Staszak | 632a355 | 2012-01-18 21:16:33 +0000 | [diff] [blame] | 384 | |
Chris Lattner | a3c39d3 | 2009-11-02 02:33:50 +0000 | [diff] [blame] | 385 | // All others are underdefined by default. |
Chris Lattner | 9e97fbe | 2009-11-02 03:21:36 +0000 | [diff] [blame] | 386 | return LV; |
Chris Lattner | 347389d | 2001-06-27 23:38:11 +0000 | [diff] [blame] | 387 | } |
| 388 | |
Chris Lattner | 156b8c7 | 2009-11-03 23:40:48 +0000 | [diff] [blame] | 389 | /// getStructValueState - Return the LatticeVal object that corresponds to the |
| 390 | /// value/field pair. This function handles the case when the value hasn't |
| 391 | /// been seen yet by properly seeding constants etc. |
| 392 | LatticeVal &getStructValueState(Value *V, unsigned i) { |
Duncan Sands | 19d0b47 | 2010-02-16 11:11:14 +0000 | [diff] [blame] | 393 | assert(V->getType()->isStructTy() && "Should use getValueState"); |
Chris Lattner | 156b8c7 | 2009-11-03 23:40:48 +0000 | [diff] [blame] | 394 | assert(i < cast<StructType>(V->getType())->getNumElements() && |
| 395 | "Invalid element #"); |
Benjamin Kramer | 3fcbb82 | 2009-11-05 14:33:27 +0000 | [diff] [blame] | 396 | |
| 397 | std::pair<DenseMap<std::pair<Value*, unsigned>, LatticeVal>::iterator, |
| 398 | bool> I = StructValueState.insert( |
| 399 | std::make_pair(std::make_pair(V, i), LatticeVal())); |
| 400 | LatticeVal &LV = I.first->second; |
| 401 | |
| 402 | if (!I.second) |
| 403 | return LV; // Common case, already in the map. |
| 404 | |
Chris Lattner | 156b8c7 | 2009-11-03 23:40:48 +0000 | [diff] [blame] | 405 | if (Constant *C = dyn_cast<Constant>(V)) { |
Chris Lattner | fa77500 | 2012-01-26 02:32:04 +0000 | [diff] [blame] | 406 | Constant *Elt = C->getAggregateElement(i); |
Nadav Rotem | 465834c | 2012-07-24 10:51:42 +0000 | [diff] [blame] | 407 | |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 408 | if (!Elt) |
Chris Lattner | 156b8c7 | 2009-11-03 23:40:48 +0000 | [diff] [blame] | 409 | LV.markOverdefined(); // Unknown sort of constant. |
Chris Lattner | fa77500 | 2012-01-26 02:32:04 +0000 | [diff] [blame] | 410 | else if (isa<UndefValue>(Elt)) |
| 411 | ; // Undef values remain undefined. |
| 412 | else |
| 413 | LV.markConstant(Elt); // Constants are constant. |
Chris Lattner | 156b8c7 | 2009-11-03 23:40:48 +0000 | [diff] [blame] | 414 | } |
Jakub Staszak | 632a355 | 2012-01-18 21:16:33 +0000 | [diff] [blame] | 415 | |
Chris Lattner | 156b8c7 | 2009-11-03 23:40:48 +0000 | [diff] [blame] | 416 | // All others are underdefined by default. |
| 417 | return LV; |
| 418 | } |
Jakub Staszak | 632a355 | 2012-01-18 21:16:33 +0000 | [diff] [blame] | 419 | |
Chris Lattner | 156b8c7 | 2009-11-03 23:40:48 +0000 | [diff] [blame] | 420 | |
Chris Lattner | f548403 | 2009-11-02 05:55:40 +0000 | [diff] [blame] | 421 | /// markEdgeExecutable - Mark a basic block as executable, adding it to the BB |
| 422 | /// work list if it is not already executable. |
Chris Lattner | 0bbbe5d | 2003-10-08 16:55:34 +0000 | [diff] [blame] | 423 | void markEdgeExecutable(BasicBlock *Source, BasicBlock *Dest) { |
| 424 | if (!KnownFeasibleEdges.insert(Edge(Source, Dest)).second) |
| 425 | return; // This edge is already known to be executable! |
| 426 | |
Chris Lattner | 809aee2 | 2009-11-02 06:11:23 +0000 | [diff] [blame] | 427 | if (!MarkBlockExecutable(Dest)) { |
| 428 | // If the destination is already executable, we just made an *edge* |
| 429 | // feasible that wasn't before. Revisit the PHI nodes in the block |
| 430 | // because they have potentially new operands. |
David Greene | 389fc3b | 2010-01-05 01:27:15 +0000 | [diff] [blame] | 431 | DEBUG(dbgs() << "Marking Edge Executable: " << Source->getName() |
Nick Lewycky | 5cd9538 | 2013-06-26 00:30:18 +0000 | [diff] [blame] | 432 | << " -> " << Dest->getName() << '\n'); |
Chris Lattner | 0bbbe5d | 2003-10-08 16:55:34 +0000 | [diff] [blame] | 433 | |
Chris Lattner | 809aee2 | 2009-11-02 06:11:23 +0000 | [diff] [blame] | 434 | PHINode *PN; |
| 435 | for (BasicBlock::iterator I = Dest->begin(); |
| 436 | (PN = dyn_cast<PHINode>(I)); ++I) |
| 437 | visitPHINode(*PN); |
Chris Lattner | cccc5c7 | 2003-04-25 02:50:03 +0000 | [diff] [blame] | 438 | } |
Chris Lattner | 347389d | 2001-06-27 23:38:11 +0000 | [diff] [blame] | 439 | } |
| 440 | |
Chris Lattner | 074be1f | 2004-11-15 04:44:20 +0000 | [diff] [blame] | 441 | // getFeasibleSuccessors - Return a vector of booleans to indicate which |
| 442 | // successors are reachable from a given terminator instruction. |
| 443 | // |
Craig Topper | b94011f | 2013-07-14 04:42:23 +0000 | [diff] [blame] | 444 | void getFeasibleSuccessors(TerminatorInst &TI, SmallVectorImpl<bool> &Succs); |
Chris Lattner | 074be1f | 2004-11-15 04:44:20 +0000 | [diff] [blame] | 445 | |
| 446 | // isEdgeFeasible - Return true if the control flow edge from the 'From' basic |
Chris Lattner | a3c39d3 | 2009-11-02 02:33:50 +0000 | [diff] [blame] | 447 | // block to the 'To' basic block is currently feasible. |
Chris Lattner | 074be1f | 2004-11-15 04:44:20 +0000 | [diff] [blame] | 448 | // |
| 449 | bool isEdgeFeasible(BasicBlock *From, BasicBlock *To); |
| 450 | |
| 451 | // OperandChangedState - This method is invoked on all of the users of an |
Chris Lattner | a3c39d3 | 2009-11-02 02:33:50 +0000 | [diff] [blame] | 452 | // instruction that was just changed state somehow. Based on this |
Chris Lattner | 074be1f | 2004-11-15 04:44:20 +0000 | [diff] [blame] | 453 | // information, we need to update the specified user of this instruction. |
| 454 | // |
Chris Lattner | fb14181 | 2009-11-03 03:42:51 +0000 | [diff] [blame] | 455 | void OperandChangedState(Instruction *I) { |
| 456 | if (BBExecutable.count(I->getParent())) // Inst is executable? |
| 457 | visit(*I); |
Chris Lattner | 074be1f | 2004-11-15 04:44:20 +0000 | [diff] [blame] | 458 | } |
Dale Johannesen | d3a58c8 | 2010-11-30 20:23:21 +0000 | [diff] [blame] | 459 | |
Chris Lattner | 074be1f | 2004-11-15 04:44:20 +0000 | [diff] [blame] | 460 | private: |
| 461 | friend class InstVisitor<SCCPSolver>; |
Chris Lattner | 347389d | 2001-06-27 23:38:11 +0000 | [diff] [blame] | 462 | |
Chris Lattner | a3c39d3 | 2009-11-02 02:33:50 +0000 | [diff] [blame] | 463 | // visit implementations - Something changed in this instruction. Either an |
Chris Lattner | 10b250e | 2001-06-29 23:56:23 +0000 | [diff] [blame] | 464 | // operand made a transition, or the instruction is newly executable. Change |
| 465 | // the value type of I to reflect these changes if appropriate. |
Chris Lattner | 113f4f4 | 2002-06-25 16:13:24 +0000 | [diff] [blame] | 466 | void visitPHINode(PHINode &I); |
Chris Lattner | 6e56079 | 2002-04-18 15:13:15 +0000 | [diff] [blame] | 467 | |
| 468 | // Terminators |
Chris Lattner | b439464 | 2004-12-10 08:02:06 +0000 | [diff] [blame] | 469 | void visitReturnInst(ReturnInst &I); |
Chris Lattner | 113f4f4 | 2002-06-25 16:13:24 +0000 | [diff] [blame] | 470 | void visitTerminatorInst(TerminatorInst &TI); |
Chris Lattner | 6e56079 | 2002-04-18 15:13:15 +0000 | [diff] [blame] | 471 | |
Chris Lattner | 6e1a1b1 | 2002-08-14 17:53:45 +0000 | [diff] [blame] | 472 | void visitCastInst(CastInst &I); |
Chris Lattner | 59db22d | 2004-03-12 05:52:44 +0000 | [diff] [blame] | 473 | void visitSelectInst(SelectInst &I); |
Chris Lattner | 113f4f4 | 2002-06-25 16:13:24 +0000 | [diff] [blame] | 474 | void visitBinaryOperator(Instruction &I); |
Reid Spencer | 266e42b | 2006-12-23 06:05:41 +0000 | [diff] [blame] | 475 | void visitCmpInst(CmpInst &I); |
Robert Bocchino | bd518d1 | 2006-01-10 19:05:05 +0000 | [diff] [blame] | 476 | void visitExtractElementInst(ExtractElementInst &I); |
Robert Bocchino | 6dce250 | 2006-01-17 20:06:55 +0000 | [diff] [blame] | 477 | void visitInsertElementInst(InsertElementInst &I); |
Chris Lattner | 17bd605 | 2006-04-08 01:19:12 +0000 | [diff] [blame] | 478 | void visitShuffleVectorInst(ShuffleVectorInst &I); |
Dan Gohman | 041f9d0 | 2008-06-20 01:15:44 +0000 | [diff] [blame] | 479 | void visitExtractValueInst(ExtractValueInst &EVI); |
| 480 | void visitInsertValueInst(InsertValueInst &IVI); |
Bill Wendling | fae1475 | 2011-08-12 20:24:12 +0000 | [diff] [blame] | 481 | void visitLandingPadInst(LandingPadInst &I) { markAnythingOverdefined(&I); } |
Chris Lattner | 6e56079 | 2002-04-18 15:13:15 +0000 | [diff] [blame] | 482 | |
Chris Lattner | a3c39d3 | 2009-11-02 02:33:50 +0000 | [diff] [blame] | 483 | // Instructions that cannot be folded away. |
Chris Lattner | f548403 | 2009-11-02 05:55:40 +0000 | [diff] [blame] | 484 | void visitStoreInst (StoreInst &I); |
Chris Lattner | 49f7452 | 2004-01-12 04:29:41 +0000 | [diff] [blame] | 485 | void visitLoadInst (LoadInst &I); |
Chris Lattner | dd6522e | 2002-08-30 23:39:00 +0000 | [diff] [blame] | 486 | void visitGetElementPtrInst(GetElementPtrInst &I); |
Victor Hernandez | e297149 | 2009-10-24 04:23:03 +0000 | [diff] [blame] | 487 | void visitCallInst (CallInst &I) { |
Gabor Greif | 62f0aac | 2010-07-28 22:50:26 +0000 | [diff] [blame] | 488 | visitCallSite(&I); |
Victor Hernandez | 5d03449 | 2009-09-18 22:35:49 +0000 | [diff] [blame] | 489 | } |
Chris Lattner | b439464 | 2004-12-10 08:02:06 +0000 | [diff] [blame] | 490 | void visitInvokeInst (InvokeInst &II) { |
Gabor Greif | 62f0aac | 2010-07-28 22:50:26 +0000 | [diff] [blame] | 491 | visitCallSite(&II); |
Chris Lattner | b439464 | 2004-12-10 08:02:06 +0000 | [diff] [blame] | 492 | visitTerminatorInst(II); |
Chris Lattner | df741d6 | 2003-08-27 01:08:35 +0000 | [diff] [blame] | 493 | } |
Chris Lattner | b439464 | 2004-12-10 08:02:06 +0000 | [diff] [blame] | 494 | void visitCallSite (CallSite CS); |
Bill Wendling | f891bf8 | 2011-07-31 06:30:59 +0000 | [diff] [blame] | 495 | void visitResumeInst (TerminatorInst &I) { /*returns void*/ } |
Chris Lattner | 646354b | 2004-10-16 18:09:41 +0000 | [diff] [blame] | 496 | void visitUnreachableInst(TerminatorInst &I) { /*returns void*/ } |
Eli Friedman | 89b694b | 2011-07-27 01:08:30 +0000 | [diff] [blame] | 497 | void visitFenceInst (FenceInst &I) { /*returns void*/ } |
Tim Northover | 6bf04e4 | 2014-06-13 14:54:09 +0000 | [diff] [blame] | 498 | void visitAtomicCmpXchgInst(AtomicCmpXchgInst &I) { |
| 499 | markAnythingOverdefined(&I); |
| 500 | } |
Eli Friedman | 366bcce | 2011-08-02 21:35:16 +0000 | [diff] [blame] | 501 | void visitAtomicRMWInst (AtomicRMWInst &I) { markOverdefined(&I); } |
Victor Hernandez | 8acf295 | 2009-10-23 21:09:37 +0000 | [diff] [blame] | 502 | void visitAllocaInst (Instruction &I) { markOverdefined(&I); } |
Chris Lattner | 156b8c7 | 2009-11-03 23:40:48 +0000 | [diff] [blame] | 503 | void visitVAArgInst (Instruction &I) { markAnythingOverdefined(&I); } |
Chris Lattner | 6e56079 | 2002-04-18 15:13:15 +0000 | [diff] [blame] | 504 | |
Chris Lattner | 113f4f4 | 2002-06-25 16:13:24 +0000 | [diff] [blame] | 505 | void visitInstruction(Instruction &I) { |
Chris Lattner | a3c39d3 | 2009-11-02 02:33:50 +0000 | [diff] [blame] | 506 | // If a new instruction is added to LLVM that we don't handle. |
Nick Lewycky | 5cd9538 | 2013-06-26 00:30:18 +0000 | [diff] [blame] | 507 | dbgs() << "SCCP: Don't know how to handle: " << I << '\n'; |
Chris Lattner | 156b8c7 | 2009-11-03 23:40:48 +0000 | [diff] [blame] | 508 | markAnythingOverdefined(&I); // Just in case |
Chris Lattner | 6e56079 | 2002-04-18 15:13:15 +0000 | [diff] [blame] | 509 | } |
Chris Lattner | 10b250e | 2001-06-29 23:56:23 +0000 | [diff] [blame] | 510 | }; |
Chris Lattner | b28b680 | 2002-07-23 18:06:35 +0000 | [diff] [blame] | 511 | |
Duncan Sands | 2be91fc | 2007-07-20 08:56:21 +0000 | [diff] [blame] | 512 | } // end anonymous namespace |
| 513 | |
| 514 | |
Chris Lattner | fe6c9ee | 2002-05-02 21:44:00 +0000 | [diff] [blame] | 515 | // getFeasibleSuccessors - Return a vector of booleans to indicate which |
| 516 | // successors are reachable from a given terminator instruction. |
| 517 | // |
Chris Lattner | 074be1f | 2004-11-15 04:44:20 +0000 | [diff] [blame] | 518 | void SCCPSolver::getFeasibleSuccessors(TerminatorInst &TI, |
Craig Topper | b94011f | 2013-07-14 04:42:23 +0000 | [diff] [blame] | 519 | SmallVectorImpl<bool> &Succs) { |
Chris Lattner | cccc5c7 | 2003-04-25 02:50:03 +0000 | [diff] [blame] | 520 | Succs.resize(TI.getNumSuccessors()); |
Chris Lattner | 113f4f4 | 2002-06-25 16:13:24 +0000 | [diff] [blame] | 521 | if (BranchInst *BI = dyn_cast<BranchInst>(&TI)) { |
Chris Lattner | fe6c9ee | 2002-05-02 21:44:00 +0000 | [diff] [blame] | 522 | if (BI->isUnconditional()) { |
| 523 | Succs[0] = true; |
Chris Lattner | 6df5cec | 2009-11-02 02:30:06 +0000 | [diff] [blame] | 524 | return; |
Chris Lattner | fe6c9ee | 2002-05-02 21:44:00 +0000 | [diff] [blame] | 525 | } |
Jakub Staszak | 632a355 | 2012-01-18 21:16:33 +0000 | [diff] [blame] | 526 | |
Chris Lattner | f548403 | 2009-11-02 05:55:40 +0000 | [diff] [blame] | 527 | LatticeVal BCValue = getValueState(BI->getCondition()); |
Chris Lattner | 9e97fbe | 2009-11-02 03:21:36 +0000 | [diff] [blame] | 528 | ConstantInt *CI = BCValue.getConstantInt(); |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 529 | if (!CI) { |
Chris Lattner | 6df5cec | 2009-11-02 02:30:06 +0000 | [diff] [blame] | 530 | // Overdefined condition variables, and branches on unfoldable constant |
| 531 | // conditions, mean the branch could go either way. |
Chris Lattner | 9e97fbe | 2009-11-02 03:21:36 +0000 | [diff] [blame] | 532 | if (!BCValue.isUndefined()) |
| 533 | Succs[0] = Succs[1] = true; |
Chris Lattner | 6df5cec | 2009-11-02 02:30:06 +0000 | [diff] [blame] | 534 | return; |
| 535 | } |
Jakub Staszak | 632a355 | 2012-01-18 21:16:33 +0000 | [diff] [blame] | 536 | |
Chris Lattner | 6df5cec | 2009-11-02 02:30:06 +0000 | [diff] [blame] | 537 | // Constant condition variables mean the branch can only go a single way. |
Chris Lattner | 9e97fbe | 2009-11-02 03:21:36 +0000 | [diff] [blame] | 538 | Succs[CI->isZero()] = true; |
Chris Lattner | ee8b951 | 2009-10-29 01:21:20 +0000 | [diff] [blame] | 539 | return; |
| 540 | } |
Jakub Staszak | 632a355 | 2012-01-18 21:16:33 +0000 | [diff] [blame] | 541 | |
Chris Lattner | 9e97fbe | 2009-11-02 03:21:36 +0000 | [diff] [blame] | 542 | if (isa<InvokeInst>(TI)) { |
Chris Lattner | fe6c9ee | 2002-05-02 21:44:00 +0000 | [diff] [blame] | 543 | // Invoke instructions successors are always executable. |
| 544 | Succs[0] = Succs[1] = true; |
Chris Lattner | ee8b951 | 2009-10-29 01:21:20 +0000 | [diff] [blame] | 545 | return; |
| 546 | } |
Jakub Staszak | 632a355 | 2012-01-18 21:16:33 +0000 | [diff] [blame] | 547 | |
Chris Lattner | ee8b951 | 2009-10-29 01:21:20 +0000 | [diff] [blame] | 548 | if (SwitchInst *SI = dyn_cast<SwitchInst>(&TI)) { |
Stepan Dyatkovskiy | 513aaa5 | 2012-02-01 07:49:51 +0000 | [diff] [blame] | 549 | if (!SI->getNumCases()) { |
Eli Friedman | 56f2f21 | 2011-08-16 21:12:35 +0000 | [diff] [blame] | 550 | Succs[0] = true; |
| 551 | return; |
| 552 | } |
Chris Lattner | f548403 | 2009-11-02 05:55:40 +0000 | [diff] [blame] | 553 | LatticeVal SCValue = getValueState(SI->getCondition()); |
Chris Lattner | 9e97fbe | 2009-11-02 03:21:36 +0000 | [diff] [blame] | 554 | ConstantInt *CI = SCValue.getConstantInt(); |
Jakub Staszak | 632a355 | 2012-01-18 21:16:33 +0000 | [diff] [blame] | 555 | |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 556 | if (!CI) { // Overdefined or undefined condition? |
Chris Lattner | fe6c9ee | 2002-05-02 21:44:00 +0000 | [diff] [blame] | 557 | // All destinations are executable! |
Chris Lattner | 9e97fbe | 2009-11-02 03:21:36 +0000 | [diff] [blame] | 558 | if (!SCValue.isUndefined()) |
| 559 | Succs.assign(TI.getNumSuccessors(), true); |
| 560 | return; |
| 561 | } |
Jakub Staszak | 632a355 | 2012-01-18 21:16:33 +0000 | [diff] [blame] | 562 | |
Stepan Dyatkovskiy | 5b648af | 2012-03-08 07:06:20 +0000 | [diff] [blame] | 563 | Succs[SI->findCaseValue(CI).getSuccessorIndex()] = true; |
Chris Lattner | ee8b951 | 2009-10-29 01:21:20 +0000 | [diff] [blame] | 564 | return; |
Chris Lattner | fe6c9ee | 2002-05-02 21:44:00 +0000 | [diff] [blame] | 565 | } |
Jakub Staszak | 632a355 | 2012-01-18 21:16:33 +0000 | [diff] [blame] | 566 | |
Chris Lattner | ee8b951 | 2009-10-29 01:21:20 +0000 | [diff] [blame] | 567 | // TODO: This could be improved if the operand is a [cast of a] BlockAddress. |
| 568 | if (isa<IndirectBrInst>(&TI)) { |
| 569 | // Just mark all destinations executable! |
| 570 | Succs.assign(TI.getNumSuccessors(), true); |
| 571 | return; |
| 572 | } |
Jakub Staszak | 632a355 | 2012-01-18 21:16:33 +0000 | [diff] [blame] | 573 | |
Chris Lattner | ee8b951 | 2009-10-29 01:21:20 +0000 | [diff] [blame] | 574 | #ifndef NDEBUG |
David Greene | 389fc3b | 2010-01-05 01:27:15 +0000 | [diff] [blame] | 575 | dbgs() << "Unknown terminator instruction: " << TI << '\n'; |
Chris Lattner | ee8b951 | 2009-10-29 01:21:20 +0000 | [diff] [blame] | 576 | #endif |
| 577 | llvm_unreachable("SCCP: Don't know how to handle this terminator!"); |
Chris Lattner | fe6c9ee | 2002-05-02 21:44:00 +0000 | [diff] [blame] | 578 | } |
| 579 | |
| 580 | |
Chris Lattner | 13b52e7 | 2002-05-02 21:18:01 +0000 | [diff] [blame] | 581 | // isEdgeFeasible - Return true if the control flow edge from the 'From' basic |
Chris Lattner | a3c39d3 | 2009-11-02 02:33:50 +0000 | [diff] [blame] | 582 | // block to the 'To' basic block is currently feasible. |
Chris Lattner | 13b52e7 | 2002-05-02 21:18:01 +0000 | [diff] [blame] | 583 | // |
Chris Lattner | 074be1f | 2004-11-15 04:44:20 +0000 | [diff] [blame] | 584 | bool SCCPSolver::isEdgeFeasible(BasicBlock *From, BasicBlock *To) { |
Chris Lattner | 13b52e7 | 2002-05-02 21:18:01 +0000 | [diff] [blame] | 585 | assert(BBExecutable.count(To) && "Dest should always be alive!"); |
| 586 | |
| 587 | // Make sure the source basic block is executable!! |
| 588 | if (!BBExecutable.count(From)) return false; |
Misha Brukman | b1c9317 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 589 | |
Chris Lattner | a3c39d3 | 2009-11-02 02:33:50 +0000 | [diff] [blame] | 590 | // Check to make sure this edge itself is actually feasible now. |
Chris Lattner | 71ac22ff | 2003-10-08 15:47:41 +0000 | [diff] [blame] | 591 | TerminatorInst *TI = From->getTerminator(); |
| 592 | if (BranchInst *BI = dyn_cast<BranchInst>(TI)) { |
| 593 | if (BI->isUnconditional()) |
Chris Lattner | fe6c9ee | 2002-05-02 21:44:00 +0000 | [diff] [blame] | 594 | return true; |
Jakub Staszak | 632a355 | 2012-01-18 21:16:33 +0000 | [diff] [blame] | 595 | |
Chris Lattner | f548403 | 2009-11-02 05:55:40 +0000 | [diff] [blame] | 596 | LatticeVal BCValue = getValueState(BI->getCondition()); |
Chris Lattner | fe992d4 | 2004-01-12 17:40:36 +0000 | [diff] [blame] | 597 | |
Chris Lattner | 6df5cec | 2009-11-02 02:30:06 +0000 | [diff] [blame] | 598 | // Overdefined condition variables mean the branch could go either way, |
| 599 | // undef conditions mean that neither edge is feasible yet. |
Chris Lattner | 9e97fbe | 2009-11-02 03:21:36 +0000 | [diff] [blame] | 600 | ConstantInt *CI = BCValue.getConstantInt(); |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 601 | if (!CI) |
Chris Lattner | 9e97fbe | 2009-11-02 03:21:36 +0000 | [diff] [blame] | 602 | return !BCValue.isUndefined(); |
Jakub Staszak | 632a355 | 2012-01-18 21:16:33 +0000 | [diff] [blame] | 603 | |
Chris Lattner | 6df5cec | 2009-11-02 02:30:06 +0000 | [diff] [blame] | 604 | // Constant condition variables mean the branch can only go a single way. |
Chris Lattner | 9e97fbe | 2009-11-02 03:21:36 +0000 | [diff] [blame] | 605 | return BI->getSuccessor(CI->isZero()) == To; |
Chris Lattner | ee8b951 | 2009-10-29 01:21:20 +0000 | [diff] [blame] | 606 | } |
Jakub Staszak | 632a355 | 2012-01-18 21:16:33 +0000 | [diff] [blame] | 607 | |
Chris Lattner | ee8b951 | 2009-10-29 01:21:20 +0000 | [diff] [blame] | 608 | // Invoke instructions successors are always executable. |
| 609 | if (isa<InvokeInst>(TI)) |
Chris Lattner | 71ac22ff | 2003-10-08 15:47:41 +0000 | [diff] [blame] | 610 | return true; |
Jakub Staszak | 632a355 | 2012-01-18 21:16:33 +0000 | [diff] [blame] | 611 | |
Chris Lattner | ee8b951 | 2009-10-29 01:21:20 +0000 | [diff] [blame] | 612 | if (SwitchInst *SI = dyn_cast<SwitchInst>(TI)) { |
Stepan Dyatkovskiy | 513aaa5 | 2012-02-01 07:49:51 +0000 | [diff] [blame] | 613 | if (SI->getNumCases() < 1) |
Eli Friedman | 56f2f21 | 2011-08-16 21:12:35 +0000 | [diff] [blame] | 614 | return true; |
| 615 | |
Chris Lattner | f548403 | 2009-11-02 05:55:40 +0000 | [diff] [blame] | 616 | LatticeVal SCValue = getValueState(SI->getCondition()); |
Chris Lattner | 9e97fbe | 2009-11-02 03:21:36 +0000 | [diff] [blame] | 617 | ConstantInt *CI = SCValue.getConstantInt(); |
Jakub Staszak | 632a355 | 2012-01-18 21:16:33 +0000 | [diff] [blame] | 618 | |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 619 | if (!CI) |
Chris Lattner | 9e97fbe | 2009-11-02 03:21:36 +0000 | [diff] [blame] | 620 | return !SCValue.isUndefined(); |
Chris Lattner | fe992d4 | 2004-01-12 17:40:36 +0000 | [diff] [blame] | 621 | |
Stepan Dyatkovskiy | 5b648af | 2012-03-08 07:06:20 +0000 | [diff] [blame] | 622 | return SI->findCaseValue(CI).getCaseSuccessor() == To; |
Chris Lattner | 71ac22ff | 2003-10-08 15:47:41 +0000 | [diff] [blame] | 623 | } |
Jakub Staszak | 632a355 | 2012-01-18 21:16:33 +0000 | [diff] [blame] | 624 | |
Chris Lattner | ee8b951 | 2009-10-29 01:21:20 +0000 | [diff] [blame] | 625 | // Just mark all destinations executable! |
| 626 | // TODO: This could be improved if the operand is a [cast of a] BlockAddress. |
Eli Friedman | 3de2ddc | 2011-05-21 19:13:10 +0000 | [diff] [blame] | 627 | if (isa<IndirectBrInst>(TI)) |
Chris Lattner | ee8b951 | 2009-10-29 01:21:20 +0000 | [diff] [blame] | 628 | return true; |
Jakub Staszak | 632a355 | 2012-01-18 21:16:33 +0000 | [diff] [blame] | 629 | |
Chris Lattner | ee8b951 | 2009-10-29 01:21:20 +0000 | [diff] [blame] | 630 | #ifndef NDEBUG |
David Greene | 389fc3b | 2010-01-05 01:27:15 +0000 | [diff] [blame] | 631 | dbgs() << "Unknown terminator instruction: " << *TI << '\n'; |
Chris Lattner | ee8b951 | 2009-10-29 01:21:20 +0000 | [diff] [blame] | 632 | #endif |
Craig Topper | e73658d | 2014-04-28 04:05:08 +0000 | [diff] [blame] | 633 | llvm_unreachable(nullptr); |
Chris Lattner | 13b52e7 | 2002-05-02 21:18:01 +0000 | [diff] [blame] | 634 | } |
Chris Lattner | 347389d | 2001-06-27 23:38:11 +0000 | [diff] [blame] | 635 | |
Chris Lattner | a3c39d3 | 2009-11-02 02:33:50 +0000 | [diff] [blame] | 636 | // visit Implementations - Something changed in this instruction, either an |
Chris Lattner | 347389d | 2001-06-27 23:38:11 +0000 | [diff] [blame] | 637 | // operand made a transition, or the instruction is newly executable. Change |
| 638 | // the value type of I to reflect these changes if appropriate. This method |
| 639 | // makes sure to do the following actions: |
| 640 | // |
| 641 | // 1. If a phi node merges two constants in, and has conflicting value coming |
| 642 | // from different branches, or if the PHI node merges in an overdefined |
| 643 | // value, then the PHI node becomes overdefined. |
| 644 | // 2. If a phi node merges only constants in, and they all agree on value, the |
| 645 | // PHI node becomes a constant value equal to that. |
| 646 | // 3. If V <- x (op) y && isConstant(x) && isConstant(y) V = Constant |
| 647 | // 4. If V <- x (op) y && (isOverdefined(x) || isOverdefined(y)) V = Overdefined |
| 648 | // 5. If V <- MEM or V <- CALL or V <- (unknown) then V = Overdefined |
| 649 | // 6. If a conditional branch has a value that is constant, make the selected |
| 650 | // destination executable |
| 651 | // 7. If a conditional branch has a value that is overdefined, make all |
| 652 | // successors executable. |
| 653 | // |
Chris Lattner | 074be1f | 2004-11-15 04:44:20 +0000 | [diff] [blame] | 654 | void SCCPSolver::visitPHINode(PHINode &PN) { |
Chris Lattner | 156b8c7 | 2009-11-03 23:40:48 +0000 | [diff] [blame] | 655 | // If this PN returns a struct, just mark the result overdefined. |
| 656 | // TODO: We could do a lot better than this if code actually uses this. |
Duncan Sands | 19d0b47 | 2010-02-16 11:11:14 +0000 | [diff] [blame] | 657 | if (PN.getType()->isStructTy()) |
Chris Lattner | 156b8c7 | 2009-11-03 23:40:48 +0000 | [diff] [blame] | 658 | return markAnythingOverdefined(&PN); |
Jakub Staszak | 632a355 | 2012-01-18 21:16:33 +0000 | [diff] [blame] | 659 | |
Eli Friedman | 0a30929 | 2011-11-11 01:16:15 +0000 | [diff] [blame] | 660 | if (getValueState(&PN).isOverdefined()) |
Chris Lattner | 05fe684 | 2004-01-12 03:57:30 +0000 | [diff] [blame] | 661 | return; // Quick exit |
Chris Lattner | 347389d | 2001-06-27 23:38:11 +0000 | [diff] [blame] | 662 | |
Chris Lattner | 7a7b114 | 2004-03-16 19:49:59 +0000 | [diff] [blame] | 663 | // Super-extra-high-degree PHI nodes are unlikely to ever be marked constant, |
| 664 | // and slow us down a lot. Just mark them overdefined. |
Chris Lattner | 7ccf1a6 | 2009-11-02 03:03:42 +0000 | [diff] [blame] | 665 | if (PN.getNumIncomingValues() > 64) |
Chris Lattner | f548403 | 2009-11-02 05:55:40 +0000 | [diff] [blame] | 666 | return markOverdefined(&PN); |
Jakub Staszak | 632a355 | 2012-01-18 21:16:33 +0000 | [diff] [blame] | 667 | |
Chris Lattner | 6e56079 | 2002-04-18 15:13:15 +0000 | [diff] [blame] | 668 | // Look at all of the executable operands of the PHI node. If any of them |
| 669 | // are overdefined, the PHI becomes overdefined as well. If they are all |
| 670 | // constant, and they agree with each other, the PHI becomes the identical |
| 671 | // constant. If they are constant and don't agree, the PHI is overdefined. |
| 672 | // If there are no executable operands, the PHI remains undefined. |
| 673 | // |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 674 | Constant *OperandVal = nullptr; |
Chris Lattner | cccc5c7 | 2003-04-25 02:50:03 +0000 | [diff] [blame] | 675 | for (unsigned i = 0, e = PN.getNumIncomingValues(); i != e; ++i) { |
Chris Lattner | f548403 | 2009-11-02 05:55:40 +0000 | [diff] [blame] | 676 | LatticeVal IV = getValueState(PN.getIncomingValue(i)); |
Chris Lattner | cccc5c7 | 2003-04-25 02:50:03 +0000 | [diff] [blame] | 677 | if (IV.isUndefined()) continue; // Doesn't influence PHI node. |
Misha Brukman | b1c9317 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 678 | |
Chris Lattner | 7ccf1a6 | 2009-11-02 03:03:42 +0000 | [diff] [blame] | 679 | if (!isEdgeFeasible(PN.getIncomingBlock(i), PN.getParent())) |
| 680 | continue; |
Jakub Staszak | 632a355 | 2012-01-18 21:16:33 +0000 | [diff] [blame] | 681 | |
Chris Lattner | 7ccf1a6 | 2009-11-02 03:03:42 +0000 | [diff] [blame] | 682 | if (IV.isOverdefined()) // PHI node becomes overdefined! |
| 683 | return markOverdefined(&PN); |
Chris Lattner | 7e27058 | 2003-06-24 20:29:52 +0000 | [diff] [blame] | 684 | |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 685 | if (!OperandVal) { // Grab the first value. |
Chris Lattner | 7ccf1a6 | 2009-11-02 03:03:42 +0000 | [diff] [blame] | 686 | OperandVal = IV.getConstant(); |
| 687 | continue; |
Chris Lattner | 347389d | 2001-06-27 23:38:11 +0000 | [diff] [blame] | 688 | } |
Jakub Staszak | 632a355 | 2012-01-18 21:16:33 +0000 | [diff] [blame] | 689 | |
Chris Lattner | 7ccf1a6 | 2009-11-02 03:03:42 +0000 | [diff] [blame] | 690 | // There is already a reachable operand. If we conflict with it, |
| 691 | // then the PHI node becomes overdefined. If we agree with it, we |
| 692 | // can continue on. |
Jakub Staszak | 632a355 | 2012-01-18 21:16:33 +0000 | [diff] [blame] | 693 | |
Chris Lattner | 7ccf1a6 | 2009-11-02 03:03:42 +0000 | [diff] [blame] | 694 | // Check to see if there are two different constants merging, if so, the PHI |
| 695 | // node is overdefined. |
| 696 | if (IV.getConstant() != OperandVal) |
| 697 | return markOverdefined(&PN); |
Chris Lattner | 347389d | 2001-06-27 23:38:11 +0000 | [diff] [blame] | 698 | } |
| 699 | |
Chris Lattner | 6e56079 | 2002-04-18 15:13:15 +0000 | [diff] [blame] | 700 | // If we exited the loop, this means that the PHI node only has constant |
Chris Lattner | cccc5c7 | 2003-04-25 02:50:03 +0000 | [diff] [blame] | 701 | // arguments that agree with each other(and OperandVal is the constant) or |
| 702 | // OperandVal is null because there are no defined incoming arguments. If |
| 703 | // this is the case, the PHI remains undefined. |
Chris Lattner | 347389d | 2001-06-27 23:38:11 +0000 | [diff] [blame] | 704 | // |
Chris Lattner | cccc5c7 | 2003-04-25 02:50:03 +0000 | [diff] [blame] | 705 | if (OperandVal) |
Chris Lattner | 65938fc | 2008-08-23 23:36:38 +0000 | [diff] [blame] | 706 | markConstant(&PN, OperandVal); // Acquire operand value |
Chris Lattner | 347389d | 2001-06-27 23:38:11 +0000 | [diff] [blame] | 707 | } |
| 708 | |
Chris Lattner | b439464 | 2004-12-10 08:02:06 +0000 | [diff] [blame] | 709 | void SCCPSolver::visitReturnInst(ReturnInst &I) { |
Chris Lattner | f548403 | 2009-11-02 05:55:40 +0000 | [diff] [blame] | 710 | if (I.getNumOperands() == 0) return; // ret void |
Chris Lattner | b439464 | 2004-12-10 08:02:06 +0000 | [diff] [blame] | 711 | |
Chris Lattner | b439464 | 2004-12-10 08:02:06 +0000 | [diff] [blame] | 712 | Function *F = I.getParent()->getParent(); |
Chris Lattner | 156b8c7 | 2009-11-03 23:40:48 +0000 | [diff] [blame] | 713 | Value *ResultOp = I.getOperand(0); |
Jakub Staszak | 632a355 | 2012-01-18 21:16:33 +0000 | [diff] [blame] | 714 | |
Devang Patel | a7a2075 | 2008-03-11 05:46:42 +0000 | [diff] [blame] | 715 | // If we are tracking the return value of this function, merge it in. |
Duncan Sands | 19d0b47 | 2010-02-16 11:11:14 +0000 | [diff] [blame] | 716 | if (!TrackedRetVals.empty() && !ResultOp->getType()->isStructTy()) { |
Chris Lattner | 067d607 | 2007-02-02 20:38:30 +0000 | [diff] [blame] | 717 | DenseMap<Function*, LatticeVal>::iterator TFRVI = |
Devang Patel | a7a2075 | 2008-03-11 05:46:42 +0000 | [diff] [blame] | 718 | TrackedRetVals.find(F); |
Chris Lattner | fb14181 | 2009-11-03 03:42:51 +0000 | [diff] [blame] | 719 | if (TFRVI != TrackedRetVals.end()) { |
Chris Lattner | 156b8c7 | 2009-11-03 23:40:48 +0000 | [diff] [blame] | 720 | mergeInValue(TFRVI->second, F, getValueState(ResultOp)); |
Devang Patel | a7a2075 | 2008-03-11 05:46:42 +0000 | [diff] [blame] | 721 | return; |
| 722 | } |
| 723 | } |
Jakub Staszak | 632a355 | 2012-01-18 21:16:33 +0000 | [diff] [blame] | 724 | |
Chris Lattner | 5a58a4d | 2008-04-23 05:38:20 +0000 | [diff] [blame] | 725 | // Handle functions that return multiple values. |
Chris Lattner | 156b8c7 | 2009-11-03 23:40:48 +0000 | [diff] [blame] | 726 | if (!TrackedMultipleRetVals.empty()) { |
Chris Lattner | 229907c | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 727 | if (StructType *STy = dyn_cast<StructType>(ResultOp->getType())) |
Chris Lattner | 156b8c7 | 2009-11-03 23:40:48 +0000 | [diff] [blame] | 728 | if (MRVFunctionsTracked.count(F)) |
| 729 | for (unsigned i = 0, e = STy->getNumElements(); i != e; ++i) |
| 730 | mergeInValue(TrackedMultipleRetVals[std::make_pair(F, i)], F, |
| 731 | getStructValueState(ResultOp, i)); |
Jakub Staszak | 632a355 | 2012-01-18 21:16:33 +0000 | [diff] [blame] | 732 | |
Chris Lattner | b439464 | 2004-12-10 08:02:06 +0000 | [diff] [blame] | 733 | } |
| 734 | } |
| 735 | |
Chris Lattner | 074be1f | 2004-11-15 04:44:20 +0000 | [diff] [blame] | 736 | void SCCPSolver::visitTerminatorInst(TerminatorInst &TI) { |
Chris Lattner | 37d400a | 2007-02-02 21:15:06 +0000 | [diff] [blame] | 737 | SmallVector<bool, 16> SuccFeasible; |
Chris Lattner | fe6c9ee | 2002-05-02 21:44:00 +0000 | [diff] [blame] | 738 | getFeasibleSuccessors(TI, SuccFeasible); |
Chris Lattner | 347389d | 2001-06-27 23:38:11 +0000 | [diff] [blame] | 739 | |
Chris Lattner | 0bbbe5d | 2003-10-08 16:55:34 +0000 | [diff] [blame] | 740 | BasicBlock *BB = TI.getParent(); |
| 741 | |
Chris Lattner | a3c39d3 | 2009-11-02 02:33:50 +0000 | [diff] [blame] | 742 | // Mark all feasible successors executable. |
Chris Lattner | fe6c9ee | 2002-05-02 21:44:00 +0000 | [diff] [blame] | 743 | for (unsigned i = 0, e = SuccFeasible.size(); i != e; ++i) |
Chris Lattner | 0bbbe5d | 2003-10-08 16:55:34 +0000 | [diff] [blame] | 744 | if (SuccFeasible[i]) |
| 745 | markEdgeExecutable(BB, TI.getSuccessor(i)); |
Chris Lattner | 6e56079 | 2002-04-18 15:13:15 +0000 | [diff] [blame] | 746 | } |
| 747 | |
Chris Lattner | 074be1f | 2004-11-15 04:44:20 +0000 | [diff] [blame] | 748 | void SCCPSolver::visitCastInst(CastInst &I) { |
Chris Lattner | f548403 | 2009-11-02 05:55:40 +0000 | [diff] [blame] | 749 | LatticeVal OpSt = getValueState(I.getOperand(0)); |
| 750 | if (OpSt.isOverdefined()) // Inherit overdefinedness of operand |
Chris Lattner | 113f4f4 | 2002-06-25 16:13:24 +0000 | [diff] [blame] | 751 | markOverdefined(&I); |
Chris Lattner | f548403 | 2009-11-02 05:55:40 +0000 | [diff] [blame] | 752 | else if (OpSt.isConstant()) // Propagate constant value |
Jakub Staszak | 632a355 | 2012-01-18 21:16:33 +0000 | [diff] [blame] | 753 | markConstant(&I, ConstantExpr::getCast(I.getOpcode(), |
Chris Lattner | f548403 | 2009-11-02 05:55:40 +0000 | [diff] [blame] | 754 | OpSt.getConstant(), I.getType())); |
Chris Lattner | 6e56079 | 2002-04-18 15:13:15 +0000 | [diff] [blame] | 755 | } |
| 756 | |
Chris Lattner | 156b8c7 | 2009-11-03 23:40:48 +0000 | [diff] [blame] | 757 | |
Dan Gohman | 041f9d0 | 2008-06-20 01:15:44 +0000 | [diff] [blame] | 758 | void SCCPSolver::visitExtractValueInst(ExtractValueInst &EVI) { |
Chris Lattner | 156b8c7 | 2009-11-03 23:40:48 +0000 | [diff] [blame] | 759 | // If this returns a struct, mark all elements over defined, we don't track |
| 760 | // structs in structs. |
Duncan Sands | 19d0b47 | 2010-02-16 11:11:14 +0000 | [diff] [blame] | 761 | if (EVI.getType()->isStructTy()) |
Chris Lattner | 156b8c7 | 2009-11-03 23:40:48 +0000 | [diff] [blame] | 762 | return markAnythingOverdefined(&EVI); |
Jakub Staszak | 632a355 | 2012-01-18 21:16:33 +0000 | [diff] [blame] | 763 | |
Chris Lattner | 156b8c7 | 2009-11-03 23:40:48 +0000 | [diff] [blame] | 764 | // If this is extracting from more than one level of struct, we don't know. |
Chris Lattner | 7ccf1a6 | 2009-11-02 03:03:42 +0000 | [diff] [blame] | 765 | if (EVI.getNumIndices() != 1) |
| 766 | return markOverdefined(&EVI); |
Dan Gohman | 041f9d0 | 2008-06-20 01:15:44 +0000 | [diff] [blame] | 767 | |
Chris Lattner | 156b8c7 | 2009-11-03 23:40:48 +0000 | [diff] [blame] | 768 | Value *AggVal = EVI.getAggregateOperand(); |
Duncan Sands | 19d0b47 | 2010-02-16 11:11:14 +0000 | [diff] [blame] | 769 | if (AggVal->getType()->isStructTy()) { |
Chris Lattner | 02e2cee | 2009-11-10 22:02:09 +0000 | [diff] [blame] | 770 | unsigned i = *EVI.idx_begin(); |
| 771 | LatticeVal EltVal = getStructValueState(AggVal, i); |
| 772 | mergeInValue(getValueState(&EVI), &EVI, EltVal); |
| 773 | } else { |
| 774 | // Otherwise, must be extracting from an array. |
| 775 | return markOverdefined(&EVI); |
| 776 | } |
Dan Gohman | 041f9d0 | 2008-06-20 01:15:44 +0000 | [diff] [blame] | 777 | } |
| 778 | |
| 779 | void SCCPSolver::visitInsertValueInst(InsertValueInst &IVI) { |
Chris Lattner | 229907c | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 780 | StructType *STy = dyn_cast<StructType>(IVI.getType()); |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 781 | if (!STy) |
Chris Lattner | 7ccf1a6 | 2009-11-02 03:03:42 +0000 | [diff] [blame] | 782 | return markOverdefined(&IVI); |
Jakub Staszak | 632a355 | 2012-01-18 21:16:33 +0000 | [diff] [blame] | 783 | |
Chris Lattner | 156b8c7 | 2009-11-03 23:40:48 +0000 | [diff] [blame] | 784 | // If this has more than one index, we can't handle it, drive all results to |
| 785 | // undef. |
| 786 | if (IVI.getNumIndices() != 1) |
| 787 | return markAnythingOverdefined(&IVI); |
Jakub Staszak | 632a355 | 2012-01-18 21:16:33 +0000 | [diff] [blame] | 788 | |
Chris Lattner | 156b8c7 | 2009-11-03 23:40:48 +0000 | [diff] [blame] | 789 | Value *Aggr = IVI.getAggregateOperand(); |
| 790 | unsigned Idx = *IVI.idx_begin(); |
Jakub Staszak | 632a355 | 2012-01-18 21:16:33 +0000 | [diff] [blame] | 791 | |
Chris Lattner | 156b8c7 | 2009-11-03 23:40:48 +0000 | [diff] [blame] | 792 | // Compute the result based on what we're inserting. |
| 793 | for (unsigned i = 0, e = STy->getNumElements(); i != e; ++i) { |
| 794 | // This passes through all values that aren't the inserted element. |
| 795 | if (i != Idx) { |
| 796 | LatticeVal EltVal = getStructValueState(Aggr, i); |
| 797 | mergeInValue(getStructValueState(&IVI, i), &IVI, EltVal); |
| 798 | continue; |
| 799 | } |
Jakub Staszak | 632a355 | 2012-01-18 21:16:33 +0000 | [diff] [blame] | 800 | |
Chris Lattner | 156b8c7 | 2009-11-03 23:40:48 +0000 | [diff] [blame] | 801 | Value *Val = IVI.getInsertedValueOperand(); |
Duncan Sands | 19d0b47 | 2010-02-16 11:11:14 +0000 | [diff] [blame] | 802 | if (Val->getType()->isStructTy()) |
Chris Lattner | 156b8c7 | 2009-11-03 23:40:48 +0000 | [diff] [blame] | 803 | // We don't track structs in structs. |
| 804 | markOverdefined(getStructValueState(&IVI, i), &IVI); |
| 805 | else { |
| 806 | LatticeVal InVal = getValueState(Val); |
| 807 | mergeInValue(getStructValueState(&IVI, i), &IVI, InVal); |
| 808 | } |
| 809 | } |
Dan Gohman | 041f9d0 | 2008-06-20 01:15:44 +0000 | [diff] [blame] | 810 | } |
| 811 | |
Chris Lattner | 074be1f | 2004-11-15 04:44:20 +0000 | [diff] [blame] | 812 | void SCCPSolver::visitSelectInst(SelectInst &I) { |
Chris Lattner | 156b8c7 | 2009-11-03 23:40:48 +0000 | [diff] [blame] | 813 | // If this select returns a struct, just mark the result overdefined. |
| 814 | // TODO: We could do a lot better than this if code actually uses this. |
Duncan Sands | 19d0b47 | 2010-02-16 11:11:14 +0000 | [diff] [blame] | 815 | if (I.getType()->isStructTy()) |
Chris Lattner | 156b8c7 | 2009-11-03 23:40:48 +0000 | [diff] [blame] | 816 | return markAnythingOverdefined(&I); |
Jakub Staszak | 632a355 | 2012-01-18 21:16:33 +0000 | [diff] [blame] | 817 | |
Chris Lattner | f548403 | 2009-11-02 05:55:40 +0000 | [diff] [blame] | 818 | LatticeVal CondValue = getValueState(I.getCondition()); |
Chris Lattner | 06a0ed1 | 2006-02-08 02:38:11 +0000 | [diff] [blame] | 819 | if (CondValue.isUndefined()) |
| 820 | return; |
Jakub Staszak | 632a355 | 2012-01-18 21:16:33 +0000 | [diff] [blame] | 821 | |
Chris Lattner | 9e97fbe | 2009-11-02 03:21:36 +0000 | [diff] [blame] | 822 | if (ConstantInt *CondCB = CondValue.getConstantInt()) { |
Chris Lattner | f548403 | 2009-11-02 05:55:40 +0000 | [diff] [blame] | 823 | Value *OpVal = CondCB->isZero() ? I.getFalseValue() : I.getTrueValue(); |
| 824 | mergeInValue(&I, getValueState(OpVal)); |
Chris Lattner | 9e97fbe | 2009-11-02 03:21:36 +0000 | [diff] [blame] | 825 | return; |
Chris Lattner | 06a0ed1 | 2006-02-08 02:38:11 +0000 | [diff] [blame] | 826 | } |
Jakub Staszak | 632a355 | 2012-01-18 21:16:33 +0000 | [diff] [blame] | 827 | |
Chris Lattner | 06a0ed1 | 2006-02-08 02:38:11 +0000 | [diff] [blame] | 828 | // Otherwise, the condition is overdefined or a constant we can't evaluate. |
| 829 | // See if we can produce something better than overdefined based on the T/F |
| 830 | // value. |
Chris Lattner | f548403 | 2009-11-02 05:55:40 +0000 | [diff] [blame] | 831 | LatticeVal TVal = getValueState(I.getTrueValue()); |
| 832 | LatticeVal FVal = getValueState(I.getFalseValue()); |
Jakub Staszak | 632a355 | 2012-01-18 21:16:33 +0000 | [diff] [blame] | 833 | |
Chris Lattner | 06a0ed1 | 2006-02-08 02:38:11 +0000 | [diff] [blame] | 834 | // select ?, C, C -> C. |
Jakub Staszak | 632a355 | 2012-01-18 21:16:33 +0000 | [diff] [blame] | 835 | if (TVal.isConstant() && FVal.isConstant() && |
Chris Lattner | 7ccf1a6 | 2009-11-02 03:03:42 +0000 | [diff] [blame] | 836 | TVal.getConstant() == FVal.getConstant()) |
| 837 | return markConstant(&I, FVal.getConstant()); |
Chris Lattner | 06a0ed1 | 2006-02-08 02:38:11 +0000 | [diff] [blame] | 838 | |
Chris Lattner | f548403 | 2009-11-02 05:55:40 +0000 | [diff] [blame] | 839 | if (TVal.isUndefined()) // select ?, undef, X -> X. |
| 840 | return mergeInValue(&I, FVal); |
| 841 | if (FVal.isUndefined()) // select ?, X, undef -> X. |
| 842 | return mergeInValue(&I, TVal); |
| 843 | markOverdefined(&I); |
Chris Lattner | 59db22d | 2004-03-12 05:52:44 +0000 | [diff] [blame] | 844 | } |
| 845 | |
Chris Lattner | f548403 | 2009-11-02 05:55:40 +0000 | [diff] [blame] | 846 | // Handle Binary Operators. |
Chris Lattner | 074be1f | 2004-11-15 04:44:20 +0000 | [diff] [blame] | 847 | void SCCPSolver::visitBinaryOperator(Instruction &I) { |
Chris Lattner | f548403 | 2009-11-02 05:55:40 +0000 | [diff] [blame] | 848 | LatticeVal V1State = getValueState(I.getOperand(0)); |
| 849 | LatticeVal V2State = getValueState(I.getOperand(1)); |
Jakub Staszak | 632a355 | 2012-01-18 21:16:33 +0000 | [diff] [blame] | 850 | |
Chris Lattner | 4f03162 | 2004-11-15 05:03:30 +0000 | [diff] [blame] | 851 | LatticeVal &IV = ValueState[&I]; |
Chris Lattner | 05fe684 | 2004-01-12 03:57:30 +0000 | [diff] [blame] | 852 | if (IV.isOverdefined()) return; |
| 853 | |
Chris Lattner | f548403 | 2009-11-02 05:55:40 +0000 | [diff] [blame] | 854 | if (V1State.isConstant() && V2State.isConstant()) |
| 855 | return markConstant(IV, &I, |
| 856 | ConstantExpr::get(I.getOpcode(), V1State.getConstant(), |
| 857 | V2State.getConstant())); |
Jakub Staszak | 632a355 | 2012-01-18 21:16:33 +0000 | [diff] [blame] | 858 | |
Chris Lattner | f548403 | 2009-11-02 05:55:40 +0000 | [diff] [blame] | 859 | // If something is undef, wait for it to resolve. |
| 860 | if (!V1State.isOverdefined() && !V2State.isOverdefined()) |
| 861 | return; |
Jakub Staszak | 632a355 | 2012-01-18 21:16:33 +0000 | [diff] [blame] | 862 | |
Chris Lattner | f548403 | 2009-11-02 05:55:40 +0000 | [diff] [blame] | 863 | // Otherwise, one of our operands is overdefined. Try to produce something |
| 864 | // better than overdefined with some tricks. |
Jakub Staszak | 632a355 | 2012-01-18 21:16:33 +0000 | [diff] [blame] | 865 | |
Chris Lattner | f548403 | 2009-11-02 05:55:40 +0000 | [diff] [blame] | 866 | // If this is an AND or OR with 0 or -1, it doesn't matter that the other |
| 867 | // operand is overdefined. |
| 868 | if (I.getOpcode() == Instruction::And || I.getOpcode() == Instruction::Or) { |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 869 | LatticeVal *NonOverdefVal = nullptr; |
Chris Lattner | f548403 | 2009-11-02 05:55:40 +0000 | [diff] [blame] | 870 | if (!V1State.isOverdefined()) |
| 871 | NonOverdefVal = &V1State; |
| 872 | else if (!V2State.isOverdefined()) |
| 873 | NonOverdefVal = &V2State; |
Chris Lattner | 05fe684 | 2004-01-12 03:57:30 +0000 | [diff] [blame] | 874 | |
Chris Lattner | f548403 | 2009-11-02 05:55:40 +0000 | [diff] [blame] | 875 | if (NonOverdefVal) { |
| 876 | if (NonOverdefVal->isUndefined()) { |
| 877 | // Could annihilate value. |
| 878 | if (I.getOpcode() == Instruction::And) |
| 879 | markConstant(IV, &I, Constant::getNullValue(I.getType())); |
Chris Lattner | 229907c | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 880 | else if (VectorType *PT = dyn_cast<VectorType>(I.getType())) |
Chris Lattner | f548403 | 2009-11-02 05:55:40 +0000 | [diff] [blame] | 881 | markConstant(IV, &I, Constant::getAllOnesValue(PT)); |
| 882 | else |
| 883 | markConstant(IV, &I, |
| 884 | Constant::getAllOnesValue(I.getType())); |
| 885 | return; |
Chris Lattner | cbc0161 | 2004-12-11 23:15:19 +0000 | [diff] [blame] | 886 | } |
Jakub Staszak | 632a355 | 2012-01-18 21:16:33 +0000 | [diff] [blame] | 887 | |
Chris Lattner | f548403 | 2009-11-02 05:55:40 +0000 | [diff] [blame] | 888 | if (I.getOpcode() == Instruction::And) { |
| 889 | // X and 0 = 0 |
| 890 | if (NonOverdefVal->getConstant()->isNullValue()) |
| 891 | return markConstant(IV, &I, NonOverdefVal->getConstant()); |
| 892 | } else { |
| 893 | if (ConstantInt *CI = NonOverdefVal->getConstantInt()) |
| 894 | if (CI->isAllOnesValue()) // X or -1 = -1 |
| 895 | return markConstant(IV, &I, NonOverdefVal->getConstant()); |
Chris Lattner | cbc0161 | 2004-12-11 23:15:19 +0000 | [diff] [blame] | 896 | } |
| 897 | } |
Chris Lattner | f548403 | 2009-11-02 05:55:40 +0000 | [diff] [blame] | 898 | } |
Chris Lattner | cbc0161 | 2004-12-11 23:15:19 +0000 | [diff] [blame] | 899 | |
| 900 | |
Chris Lattner | f548403 | 2009-11-02 05:55:40 +0000 | [diff] [blame] | 901 | markOverdefined(&I); |
Chris Lattner | 6e56079 | 2002-04-18 15:13:15 +0000 | [diff] [blame] | 902 | } |
Chris Lattner | dd6522e | 2002-08-30 23:39:00 +0000 | [diff] [blame] | 903 | |
Chris Lattner | a3c39d3 | 2009-11-02 02:33:50 +0000 | [diff] [blame] | 904 | // Handle ICmpInst instruction. |
Reid Spencer | 266e42b | 2006-12-23 06:05:41 +0000 | [diff] [blame] | 905 | void SCCPSolver::visitCmpInst(CmpInst &I) { |
Chris Lattner | f548403 | 2009-11-02 05:55:40 +0000 | [diff] [blame] | 906 | LatticeVal V1State = getValueState(I.getOperand(0)); |
| 907 | LatticeVal V2State = getValueState(I.getOperand(1)); |
| 908 | |
Reid Spencer | 266e42b | 2006-12-23 06:05:41 +0000 | [diff] [blame] | 909 | LatticeVal &IV = ValueState[&I]; |
| 910 | if (IV.isOverdefined()) return; |
| 911 | |
Chris Lattner | f548403 | 2009-11-02 05:55:40 +0000 | [diff] [blame] | 912 | if (V1State.isConstant() && V2State.isConstant()) |
Jakub Staszak | 632a355 | 2012-01-18 21:16:33 +0000 | [diff] [blame] | 913 | return markConstant(IV, &I, ConstantExpr::getCompare(I.getPredicate(), |
| 914 | V1State.getConstant(), |
Chris Lattner | f548403 | 2009-11-02 05:55:40 +0000 | [diff] [blame] | 915 | V2State.getConstant())); |
Jakub Staszak | 632a355 | 2012-01-18 21:16:33 +0000 | [diff] [blame] | 916 | |
Chris Lattner | f548403 | 2009-11-02 05:55:40 +0000 | [diff] [blame] | 917 | // If operands are still undefined, wait for it to resolve. |
| 918 | if (!V1State.isOverdefined() && !V2State.isOverdefined()) |
| 919 | return; |
Jakub Staszak | 632a355 | 2012-01-18 21:16:33 +0000 | [diff] [blame] | 920 | |
Chris Lattner | f548403 | 2009-11-02 05:55:40 +0000 | [diff] [blame] | 921 | markOverdefined(&I); |
Reid Spencer | 266e42b | 2006-12-23 06:05:41 +0000 | [diff] [blame] | 922 | } |
| 923 | |
Robert Bocchino | bd518d1 | 2006-01-10 19:05:05 +0000 | [diff] [blame] | 924 | void SCCPSolver::visitExtractElementInst(ExtractElementInst &I) { |
Chris Lattner | 156b8c7 | 2009-11-03 23:40:48 +0000 | [diff] [blame] | 925 | // TODO : SCCP does not handle vectors properly. |
Chris Lattner | 7ccf1a6 | 2009-11-02 03:03:42 +0000 | [diff] [blame] | 926 | return markOverdefined(&I); |
Devang Patel | 21efc73 | 2006-12-04 23:54:59 +0000 | [diff] [blame] | 927 | |
| 928 | #if 0 |
Robert Bocchino | bd518d1 | 2006-01-10 19:05:05 +0000 | [diff] [blame] | 929 | LatticeVal &ValState = getValueState(I.getOperand(0)); |
| 930 | LatticeVal &IdxState = getValueState(I.getOperand(1)); |
| 931 | |
| 932 | if (ValState.isOverdefined() || IdxState.isOverdefined()) |
| 933 | markOverdefined(&I); |
| 934 | else if(ValState.isConstant() && IdxState.isConstant()) |
| 935 | markConstant(&I, ConstantExpr::getExtractElement(ValState.getConstant(), |
| 936 | IdxState.getConstant())); |
Devang Patel | 21efc73 | 2006-12-04 23:54:59 +0000 | [diff] [blame] | 937 | #endif |
Robert Bocchino | bd518d1 | 2006-01-10 19:05:05 +0000 | [diff] [blame] | 938 | } |
| 939 | |
Robert Bocchino | 6dce250 | 2006-01-17 20:06:55 +0000 | [diff] [blame] | 940 | void SCCPSolver::visitInsertElementInst(InsertElementInst &I) { |
Chris Lattner | 156b8c7 | 2009-11-03 23:40:48 +0000 | [diff] [blame] | 941 | // TODO : SCCP does not handle vectors properly. |
Chris Lattner | 7ccf1a6 | 2009-11-02 03:03:42 +0000 | [diff] [blame] | 942 | return markOverdefined(&I); |
Devang Patel | 21efc73 | 2006-12-04 23:54:59 +0000 | [diff] [blame] | 943 | #if 0 |
Robert Bocchino | 6dce250 | 2006-01-17 20:06:55 +0000 | [diff] [blame] | 944 | LatticeVal &ValState = getValueState(I.getOperand(0)); |
| 945 | LatticeVal &EltState = getValueState(I.getOperand(1)); |
| 946 | LatticeVal &IdxState = getValueState(I.getOperand(2)); |
| 947 | |
| 948 | if (ValState.isOverdefined() || EltState.isOverdefined() || |
| 949 | IdxState.isOverdefined()) |
| 950 | markOverdefined(&I); |
| 951 | else if(ValState.isConstant() && EltState.isConstant() && |
| 952 | IdxState.isConstant()) |
| 953 | markConstant(&I, ConstantExpr::getInsertElement(ValState.getConstant(), |
| 954 | EltState.getConstant(), |
| 955 | IdxState.getConstant())); |
| 956 | else if (ValState.isUndefined() && EltState.isConstant() && |
Jakub Staszak | 632a355 | 2012-01-18 21:16:33 +0000 | [diff] [blame] | 957 | IdxState.isConstant()) |
Chris Lattner | 28d921d | 2007-04-14 23:32:02 +0000 | [diff] [blame] | 958 | markConstant(&I,ConstantExpr::getInsertElement(UndefValue::get(I.getType()), |
| 959 | EltState.getConstant(), |
| 960 | IdxState.getConstant())); |
Devang Patel | 21efc73 | 2006-12-04 23:54:59 +0000 | [diff] [blame] | 961 | #endif |
Robert Bocchino | 6dce250 | 2006-01-17 20:06:55 +0000 | [diff] [blame] | 962 | } |
| 963 | |
Chris Lattner | 17bd605 | 2006-04-08 01:19:12 +0000 | [diff] [blame] | 964 | void SCCPSolver::visitShuffleVectorInst(ShuffleVectorInst &I) { |
Chris Lattner | 156b8c7 | 2009-11-03 23:40:48 +0000 | [diff] [blame] | 965 | // TODO : SCCP does not handle vectors properly. |
Chris Lattner | 7ccf1a6 | 2009-11-02 03:03:42 +0000 | [diff] [blame] | 966 | return markOverdefined(&I); |
Devang Patel | 21efc73 | 2006-12-04 23:54:59 +0000 | [diff] [blame] | 967 | #if 0 |
Chris Lattner | 17bd605 | 2006-04-08 01:19:12 +0000 | [diff] [blame] | 968 | LatticeVal &V1State = getValueState(I.getOperand(0)); |
| 969 | LatticeVal &V2State = getValueState(I.getOperand(1)); |
| 970 | LatticeVal &MaskState = getValueState(I.getOperand(2)); |
| 971 | |
| 972 | if (MaskState.isUndefined() || |
| 973 | (V1State.isUndefined() && V2State.isUndefined())) |
| 974 | return; // Undefined output if mask or both inputs undefined. |
Jakub Staszak | 632a355 | 2012-01-18 21:16:33 +0000 | [diff] [blame] | 975 | |
Chris Lattner | 17bd605 | 2006-04-08 01:19:12 +0000 | [diff] [blame] | 976 | if (V1State.isOverdefined() || V2State.isOverdefined() || |
| 977 | MaskState.isOverdefined()) { |
| 978 | markOverdefined(&I); |
| 979 | } else { |
| 980 | // A mix of constant/undef inputs. |
Jakub Staszak | 632a355 | 2012-01-18 21:16:33 +0000 | [diff] [blame] | 981 | Constant *V1 = V1State.isConstant() ? |
Chris Lattner | 17bd605 | 2006-04-08 01:19:12 +0000 | [diff] [blame] | 982 | V1State.getConstant() : UndefValue::get(I.getType()); |
Jakub Staszak | 632a355 | 2012-01-18 21:16:33 +0000 | [diff] [blame] | 983 | Constant *V2 = V2State.isConstant() ? |
Chris Lattner | 17bd605 | 2006-04-08 01:19:12 +0000 | [diff] [blame] | 984 | V2State.getConstant() : UndefValue::get(I.getType()); |
Jakub Staszak | 632a355 | 2012-01-18 21:16:33 +0000 | [diff] [blame] | 985 | Constant *Mask = MaskState.isConstant() ? |
Chris Lattner | 17bd605 | 2006-04-08 01:19:12 +0000 | [diff] [blame] | 986 | MaskState.getConstant() : UndefValue::get(I.getOperand(2)->getType()); |
| 987 | markConstant(&I, ConstantExpr::getShuffleVector(V1, V2, Mask)); |
| 988 | } |
Devang Patel | 21efc73 | 2006-12-04 23:54:59 +0000 | [diff] [blame] | 989 | #endif |
Chris Lattner | 17bd605 | 2006-04-08 01:19:12 +0000 | [diff] [blame] | 990 | } |
| 991 | |
Chris Lattner | a3c39d3 | 2009-11-02 02:33:50 +0000 | [diff] [blame] | 992 | // Handle getelementptr instructions. If all operands are constants then we |
Chris Lattner | dd6522e | 2002-08-30 23:39:00 +0000 | [diff] [blame] | 993 | // can turn this into a getelementptr ConstantExpr. |
| 994 | // |
Chris Lattner | 074be1f | 2004-11-15 04:44:20 +0000 | [diff] [blame] | 995 | void SCCPSolver::visitGetElementPtrInst(GetElementPtrInst &I) { |
Chris Lattner | b70ef3c | 2009-11-02 23:25:39 +0000 | [diff] [blame] | 996 | if (ValueState[&I].isOverdefined()) return; |
Chris Lattner | 49f7452 | 2004-01-12 04:29:41 +0000 | [diff] [blame] | 997 | |
Chris Lattner | 0e7ec67 | 2007-02-02 20:51:48 +0000 | [diff] [blame] | 998 | SmallVector<Constant*, 8> Operands; |
Chris Lattner | dd6522e | 2002-08-30 23:39:00 +0000 | [diff] [blame] | 999 | Operands.reserve(I.getNumOperands()); |
| 1000 | |
| 1001 | for (unsigned i = 0, e = I.getNumOperands(); i != e; ++i) { |
Chris Lattner | f548403 | 2009-11-02 05:55:40 +0000 | [diff] [blame] | 1002 | LatticeVal State = getValueState(I.getOperand(i)); |
Chris Lattner | dd6522e | 2002-08-30 23:39:00 +0000 | [diff] [blame] | 1003 | if (State.isUndefined()) |
Chris Lattner | a3c39d3 | 2009-11-02 02:33:50 +0000 | [diff] [blame] | 1004 | return; // Operands are not resolved yet. |
Jakub Staszak | 632a355 | 2012-01-18 21:16:33 +0000 | [diff] [blame] | 1005 | |
Chris Lattner | 7ccf1a6 | 2009-11-02 03:03:42 +0000 | [diff] [blame] | 1006 | if (State.isOverdefined()) |
Chris Lattner | b70ef3c | 2009-11-02 23:25:39 +0000 | [diff] [blame] | 1007 | return markOverdefined(&I); |
Chris Lattner | 7ccf1a6 | 2009-11-02 03:03:42 +0000 | [diff] [blame] | 1008 | |
Chris Lattner | dd6522e | 2002-08-30 23:39:00 +0000 | [diff] [blame] | 1009 | assert(State.isConstant() && "Unknown state!"); |
| 1010 | Operands.push_back(State.getConstant()); |
| 1011 | } |
| 1012 | |
| 1013 | Constant *Ptr = Operands[0]; |
Craig Topper | e1d1294 | 2014-08-27 05:25:25 +0000 | [diff] [blame] | 1014 | auto Indices = makeArrayRef(Operands.begin() + 1, Operands.end()); |
Jay Foad | ed8db7d | 2011-07-21 14:31:17 +0000 | [diff] [blame] | 1015 | markConstant(&I, ConstantExpr::getGetElementPtr(Ptr, Indices)); |
Chris Lattner | dd6522e | 2002-08-30 23:39:00 +0000 | [diff] [blame] | 1016 | } |
Brian Gaeke | 960707c | 2003-11-11 22:41:34 +0000 | [diff] [blame] | 1017 | |
Chris Lattner | f548403 | 2009-11-02 05:55:40 +0000 | [diff] [blame] | 1018 | void SCCPSolver::visitStoreInst(StoreInst &SI) { |
Chris Lattner | 156b8c7 | 2009-11-03 23:40:48 +0000 | [diff] [blame] | 1019 | // If this store is of a struct, ignore it. |
Duncan Sands | 19d0b47 | 2010-02-16 11:11:14 +0000 | [diff] [blame] | 1020 | if (SI.getOperand(0)->getType()->isStructTy()) |
Chris Lattner | 156b8c7 | 2009-11-03 23:40:48 +0000 | [diff] [blame] | 1021 | return; |
Jakub Staszak | 632a355 | 2012-01-18 21:16:33 +0000 | [diff] [blame] | 1022 | |
Chris Lattner | 91dbae6 | 2004-12-11 05:15:59 +0000 | [diff] [blame] | 1023 | if (TrackedGlobals.empty() || !isa<GlobalVariable>(SI.getOperand(1))) |
| 1024 | return; |
Jakub Staszak | 632a355 | 2012-01-18 21:16:33 +0000 | [diff] [blame] | 1025 | |
Chris Lattner | 91dbae6 | 2004-12-11 05:15:59 +0000 | [diff] [blame] | 1026 | GlobalVariable *GV = cast<GlobalVariable>(SI.getOperand(1)); |
Chris Lattner | 067d607 | 2007-02-02 20:38:30 +0000 | [diff] [blame] | 1027 | DenseMap<GlobalVariable*, LatticeVal>::iterator I = TrackedGlobals.find(GV); |
Chris Lattner | 91dbae6 | 2004-12-11 05:15:59 +0000 | [diff] [blame] | 1028 | if (I == TrackedGlobals.end() || I->second.isOverdefined()) return; |
| 1029 | |
Chris Lattner | f548403 | 2009-11-02 05:55:40 +0000 | [diff] [blame] | 1030 | // Get the value we are storing into the global, then merge it. |
| 1031 | mergeInValue(I->second, GV, getValueState(SI.getOperand(0))); |
Chris Lattner | 91dbae6 | 2004-12-11 05:15:59 +0000 | [diff] [blame] | 1032 | if (I->second.isOverdefined()) |
| 1033 | TrackedGlobals.erase(I); // No need to keep tracking this! |
| 1034 | } |
| 1035 | |
| 1036 | |
Chris Lattner | 49f7452 | 2004-01-12 04:29:41 +0000 | [diff] [blame] | 1037 | // Handle load instructions. If the operand is a constant pointer to a constant |
| 1038 | // global, we can replace the load with the loaded constant value! |
Chris Lattner | 074be1f | 2004-11-15 04:44:20 +0000 | [diff] [blame] | 1039 | void SCCPSolver::visitLoadInst(LoadInst &I) { |
Chris Lattner | 156b8c7 | 2009-11-03 23:40:48 +0000 | [diff] [blame] | 1040 | // If this load is of a struct, just mark the result overdefined. |
Duncan Sands | 19d0b47 | 2010-02-16 11:11:14 +0000 | [diff] [blame] | 1041 | if (I.getType()->isStructTy()) |
Chris Lattner | 156b8c7 | 2009-11-03 23:40:48 +0000 | [diff] [blame] | 1042 | return markAnythingOverdefined(&I); |
Jakub Staszak | 632a355 | 2012-01-18 21:16:33 +0000 | [diff] [blame] | 1043 | |
Chris Lattner | f548403 | 2009-11-02 05:55:40 +0000 | [diff] [blame] | 1044 | LatticeVal PtrVal = getValueState(I.getOperand(0)); |
Chris Lattner | e77c9aa | 2009-11-02 06:06:14 +0000 | [diff] [blame] | 1045 | if (PtrVal.isUndefined()) return; // The pointer is not resolved yet! |
Jakub Staszak | 632a355 | 2012-01-18 21:16:33 +0000 | [diff] [blame] | 1046 | |
Chris Lattner | 4f03162 | 2004-11-15 05:03:30 +0000 | [diff] [blame] | 1047 | LatticeVal &IV = ValueState[&I]; |
Chris Lattner | 49f7452 | 2004-01-12 04:29:41 +0000 | [diff] [blame] | 1048 | if (IV.isOverdefined()) return; |
| 1049 | |
Chris Lattner | f548403 | 2009-11-02 05:55:40 +0000 | [diff] [blame] | 1050 | if (!PtrVal.isConstant() || I.isVolatile()) |
| 1051 | return markOverdefined(IV, &I); |
Jakub Staszak | 632a355 | 2012-01-18 21:16:33 +0000 | [diff] [blame] | 1052 | |
Chris Lattner | e77c9aa | 2009-11-02 06:06:14 +0000 | [diff] [blame] | 1053 | Constant *Ptr = PtrVal.getConstant(); |
Misha Brukman | b1c9317 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 1054 | |
Chris Lattner | f548403 | 2009-11-02 05:55:40 +0000 | [diff] [blame] | 1055 | // load null -> null |
| 1056 | if (isa<ConstantPointerNull>(Ptr) && I.getPointerAddressSpace() == 0) |
| 1057 | return markConstant(IV, &I, Constant::getNullValue(I.getType())); |
Jakub Staszak | 632a355 | 2012-01-18 21:16:33 +0000 | [diff] [blame] | 1058 | |
Chris Lattner | f548403 | 2009-11-02 05:55:40 +0000 | [diff] [blame] | 1059 | // Transform load (constant global) into the value loaded. |
| 1060 | if (GlobalVariable *GV = dyn_cast<GlobalVariable>(Ptr)) { |
Chris Lattner | e77c9aa | 2009-11-02 06:06:14 +0000 | [diff] [blame] | 1061 | if (!TrackedGlobals.empty()) { |
Chris Lattner | f548403 | 2009-11-02 05:55:40 +0000 | [diff] [blame] | 1062 | // If we are tracking this global, merge in the known value for it. |
| 1063 | DenseMap<GlobalVariable*, LatticeVal>::iterator It = |
| 1064 | TrackedGlobals.find(GV); |
| 1065 | if (It != TrackedGlobals.end()) { |
| 1066 | mergeInValue(IV, &I, It->second); |
| 1067 | return; |
Chris Lattner | 49f7452 | 2004-01-12 04:29:41 +0000 | [diff] [blame] | 1068 | } |
Chris Lattner | 91dbae6 | 2004-12-11 05:15:59 +0000 | [diff] [blame] | 1069 | } |
Chris Lattner | 49f7452 | 2004-01-12 04:29:41 +0000 | [diff] [blame] | 1070 | } |
| 1071 | |
Chris Lattner | e77c9aa | 2009-11-02 06:06:14 +0000 | [diff] [blame] | 1072 | // Transform load from a constant into a constant if possible. |
Mehdi Amini | a28d91d | 2015-03-10 02:37:25 +0000 | [diff] [blame] | 1073 | if (Constant *C = ConstantFoldLoadFromConstPtr(Ptr, DL)) |
Chris Lattner | e77c9aa | 2009-11-02 06:06:14 +0000 | [diff] [blame] | 1074 | return markConstant(IV, &I, C); |
Chris Lattner | f548403 | 2009-11-02 05:55:40 +0000 | [diff] [blame] | 1075 | |
Chris Lattner | 49f7452 | 2004-01-12 04:29:41 +0000 | [diff] [blame] | 1076 | // Otherwise we cannot say for certain what value this load will produce. |
| 1077 | // Bail out. |
| 1078 | markOverdefined(IV, &I); |
| 1079 | } |
Chris Lattner | ff9362a | 2004-04-13 19:43:54 +0000 | [diff] [blame] | 1080 | |
Chris Lattner | b439464 | 2004-12-10 08:02:06 +0000 | [diff] [blame] | 1081 | void SCCPSolver::visitCallSite(CallSite CS) { |
| 1082 | Function *F = CS.getCalledFunction(); |
Chris Lattner | b439464 | 2004-12-10 08:02:06 +0000 | [diff] [blame] | 1083 | Instruction *I = CS.getInstruction(); |
Jakub Staszak | 632a355 | 2012-01-18 21:16:33 +0000 | [diff] [blame] | 1084 | |
Chris Lattner | 5a58a4d | 2008-04-23 05:38:20 +0000 | [diff] [blame] | 1085 | // The common case is that we aren't tracking the callee, either because we |
| 1086 | // are not doing interprocedural analysis or the callee is indirect, or is |
| 1087 | // external. Handle these cases first. |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 1088 | if (!F || F->isDeclaration()) { |
Chris Lattner | 5a58a4d | 2008-04-23 05:38:20 +0000 | [diff] [blame] | 1089 | CallOverdefined: |
| 1090 | // Void return and not tracking callee, just bail. |
Chris Lattner | fdd8790 | 2009-10-05 05:54:46 +0000 | [diff] [blame] | 1091 | if (I->getType()->isVoidTy()) return; |
Jakub Staszak | 632a355 | 2012-01-18 21:16:33 +0000 | [diff] [blame] | 1092 | |
Chris Lattner | 5a58a4d | 2008-04-23 05:38:20 +0000 | [diff] [blame] | 1093 | // Otherwise, if we have a single return value case, and if the function is |
| 1094 | // a declaration, maybe we can constant fold it. |
Duncan Sands | 19d0b47 | 2010-02-16 11:11:14 +0000 | [diff] [blame] | 1095 | if (F && F->isDeclaration() && !I->getType()->isStructTy() && |
Chris Lattner | 5a58a4d | 2008-04-23 05:38:20 +0000 | [diff] [blame] | 1096 | canConstantFoldCallTo(F)) { |
Jakub Staszak | 632a355 | 2012-01-18 21:16:33 +0000 | [diff] [blame] | 1097 | |
Chris Lattner | 5a58a4d | 2008-04-23 05:38:20 +0000 | [diff] [blame] | 1098 | SmallVector<Constant*, 8> Operands; |
| 1099 | for (CallSite::arg_iterator AI = CS.arg_begin(), E = CS.arg_end(); |
| 1100 | AI != E; ++AI) { |
Chris Lattner | f548403 | 2009-11-02 05:55:40 +0000 | [diff] [blame] | 1101 | LatticeVal State = getValueState(*AI); |
Jakub Staszak | 632a355 | 2012-01-18 21:16:33 +0000 | [diff] [blame] | 1102 | |
Chris Lattner | 5a58a4d | 2008-04-23 05:38:20 +0000 | [diff] [blame] | 1103 | if (State.isUndefined()) |
| 1104 | return; // Operands are not resolved yet. |
Chris Lattner | 7ccf1a6 | 2009-11-02 03:03:42 +0000 | [diff] [blame] | 1105 | if (State.isOverdefined()) |
| 1106 | return markOverdefined(I); |
Chris Lattner | 5a58a4d | 2008-04-23 05:38:20 +0000 | [diff] [blame] | 1107 | assert(State.isConstant() && "Unknown state!"); |
| 1108 | Operands.push_back(State.getConstant()); |
| 1109 | } |
Jakub Staszak | 632a355 | 2012-01-18 21:16:33 +0000 | [diff] [blame] | 1110 | |
David Majnemer | 2098b86f | 2014-11-07 08:54:19 +0000 | [diff] [blame] | 1111 | if (getValueState(I).isOverdefined()) |
| 1112 | return; |
| 1113 | |
Chris Lattner | 5a58a4d | 2008-04-23 05:38:20 +0000 | [diff] [blame] | 1114 | // If we can constant fold this, mark the result of the call as a |
| 1115 | // constant. |
Chad Rosier | e6de63d | 2011-12-01 21:29:16 +0000 | [diff] [blame] | 1116 | if (Constant *C = ConstantFoldCall(F, Operands, TLI)) |
Chris Lattner | 7ccf1a6 | 2009-11-02 03:03:42 +0000 | [diff] [blame] | 1117 | return markConstant(I, C); |
Chris Lattner | ff9362a | 2004-04-13 19:43:54 +0000 | [diff] [blame] | 1118 | } |
Chris Lattner | 5a58a4d | 2008-04-23 05:38:20 +0000 | [diff] [blame] | 1119 | |
| 1120 | // Otherwise, we don't know anything about this call, mark it overdefined. |
Chris Lattner | 156b8c7 | 2009-11-03 23:40:48 +0000 | [diff] [blame] | 1121 | return markAnythingOverdefined(I); |
Chris Lattner | ff9362a | 2004-04-13 19:43:54 +0000 | [diff] [blame] | 1122 | } |
| 1123 | |
Chris Lattner | cde8de5 | 2009-11-03 19:24:51 +0000 | [diff] [blame] | 1124 | // If this is a local function that doesn't have its address taken, mark its |
| 1125 | // entry block executable and merge in the actual arguments to the call into |
| 1126 | // the formal arguments of the function. |
| 1127 | if (!TrackingIncomingArguments.empty() && TrackingIncomingArguments.count(F)){ |
| 1128 | MarkBlockExecutable(F->begin()); |
Jakub Staszak | 632a355 | 2012-01-18 21:16:33 +0000 | [diff] [blame] | 1129 | |
Chris Lattner | cde8de5 | 2009-11-03 19:24:51 +0000 | [diff] [blame] | 1130 | // Propagate information from this call site into the callee. |
| 1131 | CallSite::arg_iterator CAI = CS.arg_begin(); |
| 1132 | for (Function::arg_iterator AI = F->arg_begin(), E = F->arg_end(); |
| 1133 | AI != E; ++AI, ++CAI) { |
| 1134 | // If this argument is byval, and if the function is not readonly, there |
| 1135 | // will be an implicit copy formed of the input aggregate. |
| 1136 | if (AI->hasByValAttr() && !F->onlyReadsMemory()) { |
| 1137 | markOverdefined(AI); |
| 1138 | continue; |
| 1139 | } |
Jakub Staszak | 632a355 | 2012-01-18 21:16:33 +0000 | [diff] [blame] | 1140 | |
Chris Lattner | 229907c | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 1141 | if (StructType *STy = dyn_cast<StructType>(AI->getType())) { |
Chris Lattner | 762b56f | 2009-11-04 18:57:42 +0000 | [diff] [blame] | 1142 | for (unsigned i = 0, e = STy->getNumElements(); i != e; ++i) { |
| 1143 | LatticeVal CallArg = getStructValueState(*CAI, i); |
| 1144 | mergeInValue(getStructValueState(AI, i), AI, CallArg); |
| 1145 | } |
Chris Lattner | 156b8c7 | 2009-11-03 23:40:48 +0000 | [diff] [blame] | 1146 | } else { |
| 1147 | mergeInValue(AI, getValueState(*CAI)); |
| 1148 | } |
Chris Lattner | cde8de5 | 2009-11-03 19:24:51 +0000 | [diff] [blame] | 1149 | } |
| 1150 | } |
Jakub Staszak | 632a355 | 2012-01-18 21:16:33 +0000 | [diff] [blame] | 1151 | |
Chris Lattner | 5a58a4d | 2008-04-23 05:38:20 +0000 | [diff] [blame] | 1152 | // If this is a single/zero retval case, see if we're tracking the function. |
Chris Lattner | 229907c | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 1153 | if (StructType *STy = dyn_cast<StructType>(F->getReturnType())) { |
Chris Lattner | 156b8c7 | 2009-11-03 23:40:48 +0000 | [diff] [blame] | 1154 | if (!MRVFunctionsTracked.count(F)) |
| 1155 | goto CallOverdefined; // Not tracking this callee. |
Jakub Staszak | 632a355 | 2012-01-18 21:16:33 +0000 | [diff] [blame] | 1156 | |
Chris Lattner | 156b8c7 | 2009-11-03 23:40:48 +0000 | [diff] [blame] | 1157 | // If we are tracking this callee, propagate the result of the function |
| 1158 | // into this call site. |
| 1159 | for (unsigned i = 0, e = STy->getNumElements(); i != e; ++i) |
Jakub Staszak | 632a355 | 2012-01-18 21:16:33 +0000 | [diff] [blame] | 1160 | mergeInValue(getStructValueState(I, i), I, |
Chris Lattner | 156b8c7 | 2009-11-03 23:40:48 +0000 | [diff] [blame] | 1161 | TrackedMultipleRetVals[std::make_pair(F, i)]); |
| 1162 | } else { |
| 1163 | DenseMap<Function*, LatticeVal>::iterator TFRVI = TrackedRetVals.find(F); |
| 1164 | if (TFRVI == TrackedRetVals.end()) |
| 1165 | goto CallOverdefined; // Not tracking this callee. |
Jakub Staszak | 632a355 | 2012-01-18 21:16:33 +0000 | [diff] [blame] | 1166 | |
Chris Lattner | 5a58a4d | 2008-04-23 05:38:20 +0000 | [diff] [blame] | 1167 | // If so, propagate the return value of the callee into this call result. |
| 1168 | mergeInValue(I, TFRVI->second); |
Chris Lattner | 5a58a4d | 2008-04-23 05:38:20 +0000 | [diff] [blame] | 1169 | } |
Chris Lattner | ff9362a | 2004-04-13 19:43:54 +0000 | [diff] [blame] | 1170 | } |
Chris Lattner | 074be1f | 2004-11-15 04:44:20 +0000 | [diff] [blame] | 1171 | |
Chris Lattner | 074be1f | 2004-11-15 04:44:20 +0000 | [diff] [blame] | 1172 | void SCCPSolver::Solve() { |
| 1173 | // Process the work lists until they are empty! |
Misha Brukman | b1c9317 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 1174 | while (!BBWorkList.empty() || !InstWorkList.empty() || |
Jeff Cohen | 8263985 | 2005-04-23 21:38:35 +0000 | [diff] [blame] | 1175 | !OverdefinedInstWorkList.empty()) { |
Chris Lattner | f548403 | 2009-11-02 05:55:40 +0000 | [diff] [blame] | 1176 | // Process the overdefined instruction's work list first, which drives other |
| 1177 | // things to overdefined more quickly. |
Chris Lattner | 074be1f | 2004-11-15 04:44:20 +0000 | [diff] [blame] | 1178 | while (!OverdefinedInstWorkList.empty()) { |
Chris Lattner | f548403 | 2009-11-02 05:55:40 +0000 | [diff] [blame] | 1179 | Value *I = OverdefinedInstWorkList.pop_back_val(); |
Chris Lattner | 074be1f | 2004-11-15 04:44:20 +0000 | [diff] [blame] | 1180 | |
David Greene | 389fc3b | 2010-01-05 01:27:15 +0000 | [diff] [blame] | 1181 | DEBUG(dbgs() << "\nPopped off OI-WL: " << *I << '\n'); |
Misha Brukman | b1c9317 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 1182 | |
Chris Lattner | 074be1f | 2004-11-15 04:44:20 +0000 | [diff] [blame] | 1183 | // "I" got into the work list because it either made the transition from |
Chad Rosier | 4d87d45 | 2013-02-20 20:15:55 +0000 | [diff] [blame] | 1184 | // bottom to constant, or to overdefined. |
Chris Lattner | 074be1f | 2004-11-15 04:44:20 +0000 | [diff] [blame] | 1185 | // |
| 1186 | // Anything on this worklist that is overdefined need not be visited |
| 1187 | // since all of its users will have already been marked as overdefined |
Chris Lattner | a3c39d3 | 2009-11-02 02:33:50 +0000 | [diff] [blame] | 1188 | // Update all of the users of this instruction's value. |
Chris Lattner | 074be1f | 2004-11-15 04:44:20 +0000 | [diff] [blame] | 1189 | // |
Chandler Carruth | cdf4788 | 2014-03-09 03:16:01 +0000 | [diff] [blame] | 1190 | for (User *U : I->users()) |
| 1191 | if (Instruction *UI = dyn_cast<Instruction>(U)) |
| 1192 | OperandChangedState(UI); |
Chris Lattner | 074be1f | 2004-11-15 04:44:20 +0000 | [diff] [blame] | 1193 | } |
Jakub Staszak | 632a355 | 2012-01-18 21:16:33 +0000 | [diff] [blame] | 1194 | |
Chris Lattner | a3c39d3 | 2009-11-02 02:33:50 +0000 | [diff] [blame] | 1195 | // Process the instruction work list. |
Chris Lattner | 074be1f | 2004-11-15 04:44:20 +0000 | [diff] [blame] | 1196 | while (!InstWorkList.empty()) { |
Chris Lattner | f548403 | 2009-11-02 05:55:40 +0000 | [diff] [blame] | 1197 | Value *I = InstWorkList.pop_back_val(); |
Chris Lattner | 074be1f | 2004-11-15 04:44:20 +0000 | [diff] [blame] | 1198 | |
David Greene | 389fc3b | 2010-01-05 01:27:15 +0000 | [diff] [blame] | 1199 | DEBUG(dbgs() << "\nPopped off I-WL: " << *I << '\n'); |
Misha Brukman | b1c9317 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 1200 | |
Chris Lattner | f548403 | 2009-11-02 05:55:40 +0000 | [diff] [blame] | 1201 | // "I" got into the work list because it made the transition from undef to |
| 1202 | // constant. |
Chris Lattner | 074be1f | 2004-11-15 04:44:20 +0000 | [diff] [blame] | 1203 | // |
| 1204 | // Anything on this worklist that is overdefined need not be visited |
| 1205 | // since all of its users will have already been marked as overdefined. |
Chris Lattner | a3c39d3 | 2009-11-02 02:33:50 +0000 | [diff] [blame] | 1206 | // Update all of the users of this instruction's value. |
Chris Lattner | 074be1f | 2004-11-15 04:44:20 +0000 | [diff] [blame] | 1207 | // |
Duncan Sands | 19d0b47 | 2010-02-16 11:11:14 +0000 | [diff] [blame] | 1208 | if (I->getType()->isStructTy() || !getValueState(I).isOverdefined()) |
Chandler Carruth | cdf4788 | 2014-03-09 03:16:01 +0000 | [diff] [blame] | 1209 | for (User *U : I->users()) |
| 1210 | if (Instruction *UI = dyn_cast<Instruction>(U)) |
| 1211 | OperandChangedState(UI); |
Chris Lattner | 074be1f | 2004-11-15 04:44:20 +0000 | [diff] [blame] | 1212 | } |
Misha Brukman | b1c9317 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 1213 | |
Chris Lattner | a3c39d3 | 2009-11-02 02:33:50 +0000 | [diff] [blame] | 1214 | // Process the basic block work list. |
Chris Lattner | 074be1f | 2004-11-15 04:44:20 +0000 | [diff] [blame] | 1215 | while (!BBWorkList.empty()) { |
| 1216 | BasicBlock *BB = BBWorkList.back(); |
| 1217 | BBWorkList.pop_back(); |
Misha Brukman | b1c9317 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 1218 | |
David Greene | 389fc3b | 2010-01-05 01:27:15 +0000 | [diff] [blame] | 1219 | DEBUG(dbgs() << "\nPopped off BBWL: " << *BB << '\n'); |
Misha Brukman | b1c9317 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 1220 | |
Chris Lattner | 074be1f | 2004-11-15 04:44:20 +0000 | [diff] [blame] | 1221 | // Notify all instructions in this basic block that they are newly |
| 1222 | // executable. |
| 1223 | visit(BB); |
| 1224 | } |
| 1225 | } |
| 1226 | } |
| 1227 | |
Chris Lattner | 1847f6d | 2006-12-20 06:21:33 +0000 | [diff] [blame] | 1228 | /// ResolvedUndefsIn - While solving the dataflow for a function, we assume |
Chris Lattner | 7285f43 | 2004-12-10 20:41:50 +0000 | [diff] [blame] | 1229 | /// that branches on undef values cannot reach any of their successors. |
| 1230 | /// However, this is not a safe assumption. After we solve dataflow, this |
| 1231 | /// method should be use to handle this. If this returns true, the solver |
| 1232 | /// should be rerun. |
Chris Lattner | af17096 | 2006-10-22 05:59:17 +0000 | [diff] [blame] | 1233 | /// |
| 1234 | /// This method handles this by finding an unresolved branch and marking it one |
| 1235 | /// of the edges from the block as being feasible, even though the condition |
| 1236 | /// doesn't say it would otherwise be. This allows SCCP to find the rest of the |
| 1237 | /// CFG and only slightly pessimizes the analysis results (by marking one, |
Chris Lattner | 1847f6d | 2006-12-20 06:21:33 +0000 | [diff] [blame] | 1238 | /// potentially infeasible, edge feasible). This cannot usefully modify the |
Chris Lattner | af17096 | 2006-10-22 05:59:17 +0000 | [diff] [blame] | 1239 | /// constraints on the condition of the branch, as that would impact other users |
| 1240 | /// of the value. |
Chris Lattner | 1847f6d | 2006-12-20 06:21:33 +0000 | [diff] [blame] | 1241 | /// |
| 1242 | /// This scan also checks for values that use undefs, whose results are actually |
| 1243 | /// defined. For example, 'zext i8 undef to i32' should produce all zeros |
| 1244 | /// conservatively, as "(zext i8 X -> i32) & 0xFF00" must always return zero, |
| 1245 | /// even if X isn't defined. |
| 1246 | bool SCCPSolver::ResolvedUndefsIn(Function &F) { |
Chris Lattner | af17096 | 2006-10-22 05:59:17 +0000 | [diff] [blame] | 1247 | for (Function::iterator BB = F.begin(), E = F.end(); BB != E; ++BB) { |
| 1248 | if (!BBExecutable.count(BB)) |
| 1249 | continue; |
Jakub Staszak | 632a355 | 2012-01-18 21:16:33 +0000 | [diff] [blame] | 1250 | |
Chris Lattner | 1847f6d | 2006-12-20 06:21:33 +0000 | [diff] [blame] | 1251 | for (BasicBlock::iterator I = BB->begin(), E = BB->end(); I != E; ++I) { |
| 1252 | // Look for instructions which produce undef values. |
Chris Lattner | fdd8790 | 2009-10-05 05:54:46 +0000 | [diff] [blame] | 1253 | if (I->getType()->isVoidTy()) continue; |
Jakub Staszak | 632a355 | 2012-01-18 21:16:33 +0000 | [diff] [blame] | 1254 | |
Chris Lattner | 229907c | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 1255 | if (StructType *STy = dyn_cast<StructType>(I->getType())) { |
Eli Friedman | 1815b68 | 2011-09-20 23:28:51 +0000 | [diff] [blame] | 1256 | // Only a few things that can be structs matter for undef. |
| 1257 | |
| 1258 | // Tracked calls must never be marked overdefined in ResolvedUndefsIn. |
| 1259 | if (CallSite CS = CallSite(I)) |
| 1260 | if (Function *F = CS.getCalledFunction()) |
| 1261 | if (MRVFunctionsTracked.count(F)) |
| 1262 | continue; |
| 1263 | |
| 1264 | // extractvalue and insertvalue don't need to be marked; they are |
Jakub Staszak | 632a355 | 2012-01-18 21:16:33 +0000 | [diff] [blame] | 1265 | // tracked as precisely as their operands. |
Eli Friedman | 1815b68 | 2011-09-20 23:28:51 +0000 | [diff] [blame] | 1266 | if (isa<ExtractValueInst>(I) || isa<InsertValueInst>(I)) |
| 1267 | continue; |
| 1268 | |
| 1269 | // Send the results of everything else to overdefined. We could be |
| 1270 | // more precise than this but it isn't worth bothering. |
| 1271 | for (unsigned i = 0, e = STy->getNumElements(); i != e; ++i) { |
| 1272 | LatticeVal &LV = getStructValueState(I, i); |
| 1273 | if (LV.isUndefined()) |
| 1274 | markOverdefined(LV, I); |
Chris Lattner | 156b8c7 | 2009-11-03 23:40:48 +0000 | [diff] [blame] | 1275 | } |
| 1276 | continue; |
| 1277 | } |
Eli Friedman | 0793eb4 | 2011-08-16 22:06:31 +0000 | [diff] [blame] | 1278 | |
Chris Lattner | 1847f6d | 2006-12-20 06:21:33 +0000 | [diff] [blame] | 1279 | LatticeVal &LV = getValueState(I); |
| 1280 | if (!LV.isUndefined()) continue; |
| 1281 | |
Eli Friedman | d7749be | 2011-08-17 18:10:43 +0000 | [diff] [blame] | 1282 | // extractvalue is safe; check here because the argument is a struct. |
| 1283 | if (isa<ExtractValueInst>(I)) |
| 1284 | continue; |
| 1285 | |
| 1286 | // Compute the operand LatticeVals, for convenience below. |
| 1287 | // Anything taking a struct is conservatively assumed to require |
| 1288 | // overdefined markings. |
| 1289 | if (I->getOperand(0)->getType()->isStructTy()) { |
| 1290 | markOverdefined(I); |
| 1291 | return true; |
| 1292 | } |
Chris Lattner | f548403 | 2009-11-02 05:55:40 +0000 | [diff] [blame] | 1293 | LatticeVal Op0LV = getValueState(I->getOperand(0)); |
Chris Lattner | 1847f6d | 2006-12-20 06:21:33 +0000 | [diff] [blame] | 1294 | LatticeVal Op1LV; |
Eli Friedman | d7749be | 2011-08-17 18:10:43 +0000 | [diff] [blame] | 1295 | if (I->getNumOperands() == 2) { |
| 1296 | if (I->getOperand(1)->getType()->isStructTy()) { |
| 1297 | markOverdefined(I); |
| 1298 | return true; |
| 1299 | } |
| 1300 | |
Chris Lattner | 1847f6d | 2006-12-20 06:21:33 +0000 | [diff] [blame] | 1301 | Op1LV = getValueState(I->getOperand(1)); |
Eli Friedman | d7749be | 2011-08-17 18:10:43 +0000 | [diff] [blame] | 1302 | } |
Chris Lattner | 1847f6d | 2006-12-20 06:21:33 +0000 | [diff] [blame] | 1303 | // If this is an instructions whose result is defined even if the input is |
| 1304 | // not fully defined, propagate the information. |
Chris Lattner | 229907c | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 1305 | Type *ITy = I->getType(); |
Chris Lattner | 1847f6d | 2006-12-20 06:21:33 +0000 | [diff] [blame] | 1306 | switch (I->getOpcode()) { |
Eli Friedman | 0793eb4 | 2011-08-16 22:06:31 +0000 | [diff] [blame] | 1307 | case Instruction::Add: |
| 1308 | case Instruction::Sub: |
| 1309 | case Instruction::Trunc: |
| 1310 | case Instruction::FPTrunc: |
| 1311 | case Instruction::BitCast: |
| 1312 | break; // Any undef -> undef |
| 1313 | case Instruction::FSub: |
| 1314 | case Instruction::FAdd: |
| 1315 | case Instruction::FMul: |
| 1316 | case Instruction::FDiv: |
| 1317 | case Instruction::FRem: |
| 1318 | // Floating-point binary operation: be conservative. |
| 1319 | if (Op0LV.isUndefined() && Op1LV.isUndefined()) |
| 1320 | markForcedConstant(I, Constant::getNullValue(ITy)); |
| 1321 | else |
| 1322 | markOverdefined(I); |
| 1323 | return true; |
Chris Lattner | 1847f6d | 2006-12-20 06:21:33 +0000 | [diff] [blame] | 1324 | case Instruction::ZExt: |
Eli Friedman | 0793eb4 | 2011-08-16 22:06:31 +0000 | [diff] [blame] | 1325 | case Instruction::SExt: |
| 1326 | case Instruction::FPToUI: |
| 1327 | case Instruction::FPToSI: |
| 1328 | case Instruction::FPExt: |
| 1329 | case Instruction::PtrToInt: |
| 1330 | case Instruction::IntToPtr: |
| 1331 | case Instruction::SIToFP: |
| 1332 | case Instruction::UIToFP: |
| 1333 | // undef -> 0; some outputs are impossible |
Chris Lattner | f548403 | 2009-11-02 05:55:40 +0000 | [diff] [blame] | 1334 | markForcedConstant(I, Constant::getNullValue(ITy)); |
Chris Lattner | 1847f6d | 2006-12-20 06:21:33 +0000 | [diff] [blame] | 1335 | return true; |
| 1336 | case Instruction::Mul: |
| 1337 | case Instruction::And: |
Eli Friedman | 0793eb4 | 2011-08-16 22:06:31 +0000 | [diff] [blame] | 1338 | // Both operands undef -> undef |
| 1339 | if (Op0LV.isUndefined() && Op1LV.isUndefined()) |
| 1340 | break; |
Chris Lattner | 1847f6d | 2006-12-20 06:21:33 +0000 | [diff] [blame] | 1341 | // undef * X -> 0. X could be zero. |
| 1342 | // undef & X -> 0. X could be zero. |
Chris Lattner | f548403 | 2009-11-02 05:55:40 +0000 | [diff] [blame] | 1343 | markForcedConstant(I, Constant::getNullValue(ITy)); |
Chris Lattner | 1847f6d | 2006-12-20 06:21:33 +0000 | [diff] [blame] | 1344 | return true; |
| 1345 | |
| 1346 | case Instruction::Or: |
Eli Friedman | 0793eb4 | 2011-08-16 22:06:31 +0000 | [diff] [blame] | 1347 | // Both operands undef -> undef |
| 1348 | if (Op0LV.isUndefined() && Op1LV.isUndefined()) |
| 1349 | break; |
Chris Lattner | 1847f6d | 2006-12-20 06:21:33 +0000 | [diff] [blame] | 1350 | // undef | X -> -1. X could be -1. |
Chris Lattner | f548403 | 2009-11-02 05:55:40 +0000 | [diff] [blame] | 1351 | markForcedConstant(I, Constant::getAllOnesValue(ITy)); |
Chris Lattner | 806adaf | 2007-01-04 02:12:40 +0000 | [diff] [blame] | 1352 | return true; |
Chris Lattner | 1847f6d | 2006-12-20 06:21:33 +0000 | [diff] [blame] | 1353 | |
Eli Friedman | 0793eb4 | 2011-08-16 22:06:31 +0000 | [diff] [blame] | 1354 | case Instruction::Xor: |
| 1355 | // undef ^ undef -> 0; strictly speaking, this is not strictly |
| 1356 | // necessary, but we try to be nice to people who expect this |
| 1357 | // behavior in simple cases |
| 1358 | if (Op0LV.isUndefined() && Op1LV.isUndefined()) { |
| 1359 | markForcedConstant(I, Constant::getNullValue(ITy)); |
| 1360 | return true; |
| 1361 | } |
| 1362 | // undef ^ X -> undef |
| 1363 | break; |
| 1364 | |
Chris Lattner | 1847f6d | 2006-12-20 06:21:33 +0000 | [diff] [blame] | 1365 | case Instruction::SDiv: |
| 1366 | case Instruction::UDiv: |
| 1367 | case Instruction::SRem: |
| 1368 | case Instruction::URem: |
| 1369 | // X / undef -> undef. No change. |
| 1370 | // X % undef -> undef. No change. |
| 1371 | if (Op1LV.isUndefined()) break; |
Jakub Staszak | 632a355 | 2012-01-18 21:16:33 +0000 | [diff] [blame] | 1372 | |
Chris Lattner | 1847f6d | 2006-12-20 06:21:33 +0000 | [diff] [blame] | 1373 | // undef / X -> 0. X could be maxint. |
| 1374 | // undef % X -> 0. X could be 1. |
Chris Lattner | f548403 | 2009-11-02 05:55:40 +0000 | [diff] [blame] | 1375 | markForcedConstant(I, Constant::getNullValue(ITy)); |
Chris Lattner | 1847f6d | 2006-12-20 06:21:33 +0000 | [diff] [blame] | 1376 | return true; |
Jakub Staszak | 632a355 | 2012-01-18 21:16:33 +0000 | [diff] [blame] | 1377 | |
Chris Lattner | 1847f6d | 2006-12-20 06:21:33 +0000 | [diff] [blame] | 1378 | case Instruction::AShr: |
Eli Friedman | 0793eb4 | 2011-08-16 22:06:31 +0000 | [diff] [blame] | 1379 | // X >>a undef -> undef. |
| 1380 | if (Op1LV.isUndefined()) break; |
| 1381 | |
| 1382 | // undef >>a X -> all ones |
| 1383 | markForcedConstant(I, Constant::getAllOnesValue(ITy)); |
Chris Lattner | 1847f6d | 2006-12-20 06:21:33 +0000 | [diff] [blame] | 1384 | return true; |
| 1385 | case Instruction::LShr: |
| 1386 | case Instruction::Shl: |
Eli Friedman | 0793eb4 | 2011-08-16 22:06:31 +0000 | [diff] [blame] | 1387 | // X << undef -> undef. |
| 1388 | // X >> undef -> undef. |
| 1389 | if (Op1LV.isUndefined()) break; |
| 1390 | |
| 1391 | // undef << X -> 0 |
| 1392 | // undef >> X -> 0 |
Chris Lattner | f548403 | 2009-11-02 05:55:40 +0000 | [diff] [blame] | 1393 | markForcedConstant(I, Constant::getNullValue(ITy)); |
Chris Lattner | 1847f6d | 2006-12-20 06:21:33 +0000 | [diff] [blame] | 1394 | return true; |
| 1395 | case Instruction::Select: |
Eli Friedman | 0793eb4 | 2011-08-16 22:06:31 +0000 | [diff] [blame] | 1396 | Op1LV = getValueState(I->getOperand(1)); |
Chris Lattner | 1847f6d | 2006-12-20 06:21:33 +0000 | [diff] [blame] | 1397 | // undef ? X : Y -> X or Y. There could be commonality between X/Y. |
| 1398 | if (Op0LV.isUndefined()) { |
| 1399 | if (!Op1LV.isConstant()) // Pick the constant one if there is any. |
| 1400 | Op1LV = getValueState(I->getOperand(2)); |
| 1401 | } else if (Op1LV.isUndefined()) { |
| 1402 | // c ? undef : undef -> undef. No change. |
| 1403 | Op1LV = getValueState(I->getOperand(2)); |
| 1404 | if (Op1LV.isUndefined()) |
| 1405 | break; |
| 1406 | // Otherwise, c ? undef : x -> x. |
| 1407 | } else { |
| 1408 | // Leave Op1LV as Operand(1)'s LatticeValue. |
| 1409 | } |
Jakub Staszak | 632a355 | 2012-01-18 21:16:33 +0000 | [diff] [blame] | 1410 | |
Chris Lattner | 1847f6d | 2006-12-20 06:21:33 +0000 | [diff] [blame] | 1411 | if (Op1LV.isConstant()) |
Chris Lattner | f548403 | 2009-11-02 05:55:40 +0000 | [diff] [blame] | 1412 | markForcedConstant(I, Op1LV.getConstant()); |
Chris Lattner | 1847f6d | 2006-12-20 06:21:33 +0000 | [diff] [blame] | 1413 | else |
Chris Lattner | f548403 | 2009-11-02 05:55:40 +0000 | [diff] [blame] | 1414 | markOverdefined(I); |
Chris Lattner | 1847f6d | 2006-12-20 06:21:33 +0000 | [diff] [blame] | 1415 | return true; |
Eli Friedman | 0793eb4 | 2011-08-16 22:06:31 +0000 | [diff] [blame] | 1416 | case Instruction::Load: |
| 1417 | // A load here means one of two things: a load of undef from a global, |
| 1418 | // a load from an unknown pointer. Either way, having it return undef |
| 1419 | // is okay. |
| 1420 | break; |
| 1421 | case Instruction::ICmp: |
| 1422 | // X == undef -> undef. Other comparisons get more complicated. |
| 1423 | if (cast<ICmpInst>(I)->isEquality()) |
| 1424 | break; |
| 1425 | markOverdefined(I); |
| 1426 | return true; |
Eli Friedman | 1815b68 | 2011-09-20 23:28:51 +0000 | [diff] [blame] | 1427 | case Instruction::Call: |
| 1428 | case Instruction::Invoke: { |
| 1429 | // There are two reasons a call can have an undef result |
| 1430 | // 1. It could be tracked. |
| 1431 | // 2. It could be constant-foldable. |
| 1432 | // Because of the way we solve return values, tracked calls must |
| 1433 | // never be marked overdefined in ResolvedUndefsIn. |
| 1434 | if (Function *F = CallSite(I).getCalledFunction()) |
| 1435 | if (TrackedRetVals.count(F)) |
| 1436 | break; |
| 1437 | |
| 1438 | // If the call is constant-foldable, we mark it overdefined because |
| 1439 | // we do not know what return values are valid. |
| 1440 | markOverdefined(I); |
| 1441 | return true; |
| 1442 | } |
Eli Friedman | 0793eb4 | 2011-08-16 22:06:31 +0000 | [diff] [blame] | 1443 | default: |
| 1444 | // If we don't know what should happen here, conservatively mark it |
Chris Lattner | 5c207c8 | 2008-05-24 03:59:33 +0000 | [diff] [blame] | 1445 | // overdefined. |
Chris Lattner | f548403 | 2009-11-02 05:55:40 +0000 | [diff] [blame] | 1446 | markOverdefined(I); |
Chris Lattner | 5c207c8 | 2008-05-24 03:59:33 +0000 | [diff] [blame] | 1447 | return true; |
Chris Lattner | 1847f6d | 2006-12-20 06:21:33 +0000 | [diff] [blame] | 1448 | } |
| 1449 | } |
Jakub Staszak | 632a355 | 2012-01-18 21:16:33 +0000 | [diff] [blame] | 1450 | |
Chris Lattner | adca608 | 2010-04-05 22:14:48 +0000 | [diff] [blame] | 1451 | // Check to see if we have a branch or switch on an undefined value. If so |
| 1452 | // we force the branch to go one way or the other to make the successor |
| 1453 | // values live. It doesn't really matter which way we force it. |
Chris Lattner | af17096 | 2006-10-22 05:59:17 +0000 | [diff] [blame] | 1454 | TerminatorInst *TI = BB->getTerminator(); |
| 1455 | if (BranchInst *BI = dyn_cast<BranchInst>(TI)) { |
| 1456 | if (!BI->isConditional()) continue; |
| 1457 | if (!getValueState(BI->getCondition()).isUndefined()) |
| 1458 | continue; |
Jakub Staszak | 632a355 | 2012-01-18 21:16:33 +0000 | [diff] [blame] | 1459 | |
Chris Lattner | adca608 | 2010-04-05 22:14:48 +0000 | [diff] [blame] | 1460 | // If the input to SCCP is actually branch on undef, fix the undef to |
| 1461 | // false. |
| 1462 | if (isa<UndefValue>(BI->getCondition())) { |
| 1463 | BI->setCondition(ConstantInt::getFalse(BI->getContext())); |
| 1464 | markEdgeExecutable(BB, TI->getSuccessor(1)); |
| 1465 | return true; |
| 1466 | } |
Jakub Staszak | 632a355 | 2012-01-18 21:16:33 +0000 | [diff] [blame] | 1467 | |
Chris Lattner | adca608 | 2010-04-05 22:14:48 +0000 | [diff] [blame] | 1468 | // Otherwise, it is a branch on a symbolic value which is currently |
| 1469 | // considered to be undef. Handle this by forcing the input value to the |
| 1470 | // branch to false. |
| 1471 | markForcedConstant(BI->getCondition(), |
| 1472 | ConstantInt::getFalse(TI->getContext())); |
| 1473 | return true; |
| 1474 | } |
Jakub Staszak | 632a355 | 2012-01-18 21:16:33 +0000 | [diff] [blame] | 1475 | |
Chris Lattner | adca608 | 2010-04-05 22:14:48 +0000 | [diff] [blame] | 1476 | if (SwitchInst *SI = dyn_cast<SwitchInst>(TI)) { |
Stepan Dyatkovskiy | 513aaa5 | 2012-02-01 07:49:51 +0000 | [diff] [blame] | 1477 | if (!SI->getNumCases()) |
Dale Johannesen | fecb882 | 2008-05-23 01:01:31 +0000 | [diff] [blame] | 1478 | continue; |
Chris Lattner | af17096 | 2006-10-22 05:59:17 +0000 | [diff] [blame] | 1479 | if (!getValueState(SI->getCondition()).isUndefined()) |
| 1480 | continue; |
Jakub Staszak | 632a355 | 2012-01-18 21:16:33 +0000 | [diff] [blame] | 1481 | |
Chris Lattner | adca608 | 2010-04-05 22:14:48 +0000 | [diff] [blame] | 1482 | // If the input to SCCP is actually switch on undef, fix the undef to |
| 1483 | // the first constant. |
| 1484 | if (isa<UndefValue>(SI->getCondition())) { |
Stepan Dyatkovskiy | 97b02fc | 2012-03-11 06:09:17 +0000 | [diff] [blame] | 1485 | SI->setCondition(SI->case_begin().getCaseValue()); |
| 1486 | markEdgeExecutable(BB, SI->case_begin().getCaseSuccessor()); |
Chris Lattner | adca608 | 2010-04-05 22:14:48 +0000 | [diff] [blame] | 1487 | return true; |
| 1488 | } |
Jakub Staszak | 632a355 | 2012-01-18 21:16:33 +0000 | [diff] [blame] | 1489 | |
Stepan Dyatkovskiy | 97b02fc | 2012-03-11 06:09:17 +0000 | [diff] [blame] | 1490 | markForcedConstant(SI->getCondition(), SI->case_begin().getCaseValue()); |
Chris Lattner | adca608 | 2010-04-05 22:14:48 +0000 | [diff] [blame] | 1491 | return true; |
Chris Lattner | 7285f43 | 2004-12-10 20:41:50 +0000 | [diff] [blame] | 1492 | } |
Chris Lattner | af17096 | 2006-10-22 05:59:17 +0000 | [diff] [blame] | 1493 | } |
Chris Lattner | 2f687fd | 2004-12-11 06:05:53 +0000 | [diff] [blame] | 1494 | |
Chris Lattner | af17096 | 2006-10-22 05:59:17 +0000 | [diff] [blame] | 1495 | return false; |
Chris Lattner | 7285f43 | 2004-12-10 20:41:50 +0000 | [diff] [blame] | 1496 | } |
| 1497 | |
Chris Lattner | 074be1f | 2004-11-15 04:44:20 +0000 | [diff] [blame] | 1498 | |
| 1499 | namespace { |
Chris Lattner | 1890f94 | 2004-11-15 07:15:04 +0000 | [diff] [blame] | 1500 | //===--------------------------------------------------------------------===// |
Chris Lattner | 074be1f | 2004-11-15 04:44:20 +0000 | [diff] [blame] | 1501 | // |
Chris Lattner | 1890f94 | 2004-11-15 07:15:04 +0000 | [diff] [blame] | 1502 | /// SCCP Class - This class uses the SCCPSolver to implement a per-function |
Reid Spencer | e8a74ee | 2006-12-31 22:26:06 +0000 | [diff] [blame] | 1503 | /// Sparse Conditional Constant Propagator. |
Chris Lattner | 1890f94 | 2004-11-15 07:15:04 +0000 | [diff] [blame] | 1504 | /// |
Chris Lattner | 2dd09db | 2009-09-02 06:11:42 +0000 | [diff] [blame] | 1505 | struct SCCP : public FunctionPass { |
Craig Topper | 3e4c697 | 2014-03-05 09:10:37 +0000 | [diff] [blame] | 1506 | void getAnalysisUsage(AnalysisUsage &AU) const override { |
Chandler Carruth | b98f63d | 2015-01-15 10:41:28 +0000 | [diff] [blame] | 1507 | AU.addRequired<TargetLibraryInfoWrapperPass>(); |
Chad Rosier | e6de63d | 2011-12-01 21:29:16 +0000 | [diff] [blame] | 1508 | } |
Nick Lewycky | e7da2d6 | 2007-05-06 13:37:16 +0000 | [diff] [blame] | 1509 | static char ID; // Pass identification, replacement for typeid |
Owen Anderson | 6c18d1a | 2010-10-19 17:21:58 +0000 | [diff] [blame] | 1510 | SCCP() : FunctionPass(ID) { |
| 1511 | initializeSCCPPass(*PassRegistry::getPassRegistry()); |
| 1512 | } |
Devang Patel | 09f162c | 2007-05-01 21:15:47 +0000 | [diff] [blame] | 1513 | |
Chris Lattner | 1890f94 | 2004-11-15 07:15:04 +0000 | [diff] [blame] | 1514 | // runOnFunction - Run the Sparse Conditional Constant Propagation |
| 1515 | // algorithm, and return true if the function was modified. |
| 1516 | // |
Craig Topper | 3e4c697 | 2014-03-05 09:10:37 +0000 | [diff] [blame] | 1517 | bool runOnFunction(Function &F) override; |
Chris Lattner | 1890f94 | 2004-11-15 07:15:04 +0000 | [diff] [blame] | 1518 | }; |
Chris Lattner | 074be1f | 2004-11-15 04:44:20 +0000 | [diff] [blame] | 1519 | } // end anonymous namespace |
| 1520 | |
Dan Gohman | d78c400 | 2008-05-13 00:00:25 +0000 | [diff] [blame] | 1521 | char SCCP::ID = 0; |
Owen Anderson | a57b97e | 2010-07-21 22:09:45 +0000 | [diff] [blame] | 1522 | INITIALIZE_PASS(SCCP, "sccp", |
Owen Anderson | df7a4f2 | 2010-10-07 22:25:06 +0000 | [diff] [blame] | 1523 | "Sparse Conditional Constant Propagation", false, false) |
Chris Lattner | 074be1f | 2004-11-15 04:44:20 +0000 | [diff] [blame] | 1524 | |
Chris Lattner | a3c39d3 | 2009-11-02 02:33:50 +0000 | [diff] [blame] | 1525 | // createSCCPPass - This is the public interface to this file. |
Chris Lattner | 074be1f | 2004-11-15 04:44:20 +0000 | [diff] [blame] | 1526 | FunctionPass *llvm::createSCCPPass() { |
| 1527 | return new SCCP(); |
| 1528 | } |
| 1529 | |
Chris Lattner | e405ed9 | 2009-11-02 02:47:51 +0000 | [diff] [blame] | 1530 | static void DeleteInstructionInBlock(BasicBlock *BB) { |
David Greene | 389fc3b | 2010-01-05 01:27:15 +0000 | [diff] [blame] | 1531 | DEBUG(dbgs() << " BasicBlock Dead:" << *BB); |
Chris Lattner | e405ed9 | 2009-11-02 02:47:51 +0000 | [diff] [blame] | 1532 | ++NumDeadBlocks; |
Bill Wendling | 770d0f0 | 2011-08-31 20:55:20 +0000 | [diff] [blame] | 1533 | |
| 1534 | // Check to see if there are non-terminating instructions to delete. |
| 1535 | if (isa<TerminatorInst>(BB->begin())) |
| 1536 | return; |
| 1537 | |
Bill Wendling | 321fb37 | 2011-09-04 09:43:36 +0000 | [diff] [blame] | 1538 | // Delete the instructions backwards, as it has a reduced likelihood of having |
| 1539 | // to update as many def-use and use-def chains. |
| 1540 | Instruction *EndInst = BB->getTerminator(); // Last not to be deleted. |
| 1541 | while (EndInst != BB->begin()) { |
| 1542 | // Delete the next to last instruction. |
| 1543 | BasicBlock::iterator I = EndInst; |
| 1544 | Instruction *Inst = --I; |
Bill Wendling | bf8280f | 2011-09-01 21:28:33 +0000 | [diff] [blame] | 1545 | if (!Inst->use_empty()) |
| 1546 | Inst->replaceAllUsesWith(UndefValue::get(Inst->getType())); |
Bill Wendling | 321fb37 | 2011-09-04 09:43:36 +0000 | [diff] [blame] | 1547 | if (isa<LandingPadInst>(Inst)) { |
| 1548 | EndInst = Inst; |
Bill Wendling | 770d0f0 | 2011-08-31 20:55:20 +0000 | [diff] [blame] | 1549 | continue; |
Bill Wendling | 321fb37 | 2011-09-04 09:43:36 +0000 | [diff] [blame] | 1550 | } |
Bill Wendling | bf8280f | 2011-09-01 21:28:33 +0000 | [diff] [blame] | 1551 | BB->getInstList().erase(Inst); |
Chris Lattner | e405ed9 | 2009-11-02 02:47:51 +0000 | [diff] [blame] | 1552 | ++NumInstRemoved; |
| 1553 | } |
| 1554 | } |
Chris Lattner | 074be1f | 2004-11-15 04:44:20 +0000 | [diff] [blame] | 1555 | |
Chris Lattner | 074be1f | 2004-11-15 04:44:20 +0000 | [diff] [blame] | 1556 | // runOnFunction() - Run the Sparse Conditional Constant Propagation algorithm, |
| 1557 | // and return true if the function was modified. |
| 1558 | // |
| 1559 | bool SCCP::runOnFunction(Function &F) { |
Paul Robinson | af4e64d | 2014-02-06 00:07:05 +0000 | [diff] [blame] | 1560 | if (skipOptnoneFunction(F)) |
| 1561 | return false; |
| 1562 | |
David Greene | 389fc3b | 2010-01-05 01:27:15 +0000 | [diff] [blame] | 1563 | DEBUG(dbgs() << "SCCP on function '" << F.getName() << "'\n"); |
Mehdi Amini | 46a4355 | 2015-03-04 18:43:29 +0000 | [diff] [blame] | 1564 | const DataLayout &DL = F.getParent()->getDataLayout(); |
Chandler Carruth | b98f63d | 2015-01-15 10:41:28 +0000 | [diff] [blame] | 1565 | const TargetLibraryInfo *TLI = |
| 1566 | &getAnalysis<TargetLibraryInfoWrapperPass>().getTLI(); |
Rafael Espindola | 37dc9e1 | 2014-02-21 00:06:31 +0000 | [diff] [blame] | 1567 | SCCPSolver Solver(DL, TLI); |
Chris Lattner | 074be1f | 2004-11-15 04:44:20 +0000 | [diff] [blame] | 1568 | |
| 1569 | // Mark the first block of the function as being executable. |
| 1570 | Solver.MarkBlockExecutable(F.begin()); |
| 1571 | |
Chris Lattner | d18c16b | 2004-11-15 05:45:33 +0000 | [diff] [blame] | 1572 | // Mark all arguments to the function as being overdefined. |
Chris Lattner | 28d921d | 2007-04-14 23:32:02 +0000 | [diff] [blame] | 1573 | for (Function::arg_iterator AI = F.arg_begin(), E = F.arg_end(); AI != E;++AI) |
Chris Lattner | 156b8c7 | 2009-11-03 23:40:48 +0000 | [diff] [blame] | 1574 | Solver.markAnythingOverdefined(AI); |
Chris Lattner | d18c16b | 2004-11-15 05:45:33 +0000 | [diff] [blame] | 1575 | |
Chris Lattner | 074be1f | 2004-11-15 04:44:20 +0000 | [diff] [blame] | 1576 | // Solve for constants. |
Chris Lattner | 1847f6d | 2006-12-20 06:21:33 +0000 | [diff] [blame] | 1577 | bool ResolvedUndefs = true; |
| 1578 | while (ResolvedUndefs) { |
Chris Lattner | 7285f43 | 2004-12-10 20:41:50 +0000 | [diff] [blame] | 1579 | Solver.Solve(); |
David Greene | 389fc3b | 2010-01-05 01:27:15 +0000 | [diff] [blame] | 1580 | DEBUG(dbgs() << "RESOLVING UNDEFs\n"); |
Chris Lattner | 1847f6d | 2006-12-20 06:21:33 +0000 | [diff] [blame] | 1581 | ResolvedUndefs = Solver.ResolvedUndefsIn(F); |
Chris Lattner | 7285f43 | 2004-12-10 20:41:50 +0000 | [diff] [blame] | 1582 | } |
Chris Lattner | 074be1f | 2004-11-15 04:44:20 +0000 | [diff] [blame] | 1583 | |
Chris Lattner | d18c16b | 2004-11-15 05:45:33 +0000 | [diff] [blame] | 1584 | bool MadeChanges = false; |
| 1585 | |
| 1586 | // If we decided that there are basic blocks that are dead in this function, |
| 1587 | // delete their contents now. Note that we cannot actually delete the blocks, |
| 1588 | // as we cannot modify the CFG of the function. |
Chris Lattner | c33fd46 | 2007-03-04 04:50:21 +0000 | [diff] [blame] | 1589 | |
Chris Lattner | e405ed9 | 2009-11-02 02:47:51 +0000 | [diff] [blame] | 1590 | for (Function::iterator BB = F.begin(), E = F.end(); BB != E; ++BB) { |
Chris Lattner | add44f3 | 2008-08-23 23:39:31 +0000 | [diff] [blame] | 1591 | if (!Solver.isBlockExecutable(BB)) { |
Chris Lattner | e405ed9 | 2009-11-02 02:47:51 +0000 | [diff] [blame] | 1592 | DeleteInstructionInBlock(BB); |
| 1593 | MadeChanges = true; |
| 1594 | continue; |
Chris Lattner | 074be1f | 2004-11-15 04:44:20 +0000 | [diff] [blame] | 1595 | } |
Jakub Staszak | 632a355 | 2012-01-18 21:16:33 +0000 | [diff] [blame] | 1596 | |
Chris Lattner | e405ed9 | 2009-11-02 02:47:51 +0000 | [diff] [blame] | 1597 | // Iterate over all of the instructions in a function, replacing them with |
| 1598 | // constants if we have found them to be of constant values. |
| 1599 | // |
| 1600 | for (BasicBlock::iterator BI = BB->begin(), E = BB->end(); BI != E; ) { |
| 1601 | Instruction *Inst = BI++; |
| 1602 | if (Inst->getType()->isVoidTy() || isa<TerminatorInst>(Inst)) |
| 1603 | continue; |
Jakub Staszak | 632a355 | 2012-01-18 21:16:33 +0000 | [diff] [blame] | 1604 | |
Chris Lattner | 156b8c7 | 2009-11-03 23:40:48 +0000 | [diff] [blame] | 1605 | // TODO: Reconstruct structs from their elements. |
Duncan Sands | 19d0b47 | 2010-02-16 11:11:14 +0000 | [diff] [blame] | 1606 | if (Inst->getType()->isStructTy()) |
Chris Lattner | 156b8c7 | 2009-11-03 23:40:48 +0000 | [diff] [blame] | 1607 | continue; |
Jakub Staszak | 632a355 | 2012-01-18 21:16:33 +0000 | [diff] [blame] | 1608 | |
Chris Lattner | b5a13d4 | 2009-11-02 02:54:24 +0000 | [diff] [blame] | 1609 | LatticeVal IV = Solver.getLatticeValueFor(Inst); |
| 1610 | if (IV.isOverdefined()) |
Chris Lattner | e405ed9 | 2009-11-02 02:47:51 +0000 | [diff] [blame] | 1611 | continue; |
Jakub Staszak | 632a355 | 2012-01-18 21:16:33 +0000 | [diff] [blame] | 1612 | |
Chris Lattner | e405ed9 | 2009-11-02 02:47:51 +0000 | [diff] [blame] | 1613 | Constant *Const = IV.isConstant() |
| 1614 | ? IV.getConstant() : UndefValue::get(Inst->getType()); |
Nick Lewycky | 5cd9538 | 2013-06-26 00:30:18 +0000 | [diff] [blame] | 1615 | DEBUG(dbgs() << " Constant: " << *Const << " = " << *Inst << '\n'); |
Chris Lattner | e405ed9 | 2009-11-02 02:47:51 +0000 | [diff] [blame] | 1616 | |
| 1617 | // Replaces all of the uses of a variable with uses of the constant. |
| 1618 | Inst->replaceAllUsesWith(Const); |
Jakub Staszak | 632a355 | 2012-01-18 21:16:33 +0000 | [diff] [blame] | 1619 | |
Chris Lattner | e405ed9 | 2009-11-02 02:47:51 +0000 | [diff] [blame] | 1620 | // Delete the instruction. |
| 1621 | Inst->eraseFromParent(); |
Jakub Staszak | 632a355 | 2012-01-18 21:16:33 +0000 | [diff] [blame] | 1622 | |
Chris Lattner | e405ed9 | 2009-11-02 02:47:51 +0000 | [diff] [blame] | 1623 | // Hey, we just changed something! |
| 1624 | MadeChanges = true; |
| 1625 | ++NumInstRemoved; |
| 1626 | } |
| 1627 | } |
Chris Lattner | 074be1f | 2004-11-15 04:44:20 +0000 | [diff] [blame] | 1628 | |
| 1629 | return MadeChanges; |
| 1630 | } |
Chris Lattner | b439464 | 2004-12-10 08:02:06 +0000 | [diff] [blame] | 1631 | |
| 1632 | namespace { |
Chris Lattner | b439464 | 2004-12-10 08:02:06 +0000 | [diff] [blame] | 1633 | //===--------------------------------------------------------------------===// |
| 1634 | // |
| 1635 | /// IPSCCP Class - This class implements interprocedural Sparse Conditional |
| 1636 | /// Constant Propagation. |
| 1637 | /// |
Chris Lattner | 2dd09db | 2009-09-02 06:11:42 +0000 | [diff] [blame] | 1638 | struct IPSCCP : public ModulePass { |
Craig Topper | 3e4c697 | 2014-03-05 09:10:37 +0000 | [diff] [blame] | 1639 | void getAnalysisUsage(AnalysisUsage &AU) const override { |
Chandler Carruth | b98f63d | 2015-01-15 10:41:28 +0000 | [diff] [blame] | 1640 | AU.addRequired<TargetLibraryInfoWrapperPass>(); |
Chad Rosier | e6de63d | 2011-12-01 21:29:16 +0000 | [diff] [blame] | 1641 | } |
Devang Patel | 8c78a0b | 2007-05-03 01:11:54 +0000 | [diff] [blame] | 1642 | static char ID; |
Owen Anderson | 6c18d1a | 2010-10-19 17:21:58 +0000 | [diff] [blame] | 1643 | IPSCCP() : ModulePass(ID) { |
| 1644 | initializeIPSCCPPass(*PassRegistry::getPassRegistry()); |
| 1645 | } |
Craig Topper | 3e4c697 | 2014-03-05 09:10:37 +0000 | [diff] [blame] | 1646 | bool runOnModule(Module &M) override; |
Chris Lattner | b439464 | 2004-12-10 08:02:06 +0000 | [diff] [blame] | 1647 | }; |
Chris Lattner | b439464 | 2004-12-10 08:02:06 +0000 | [diff] [blame] | 1648 | } // end anonymous namespace |
| 1649 | |
Dan Gohman | d78c400 | 2008-05-13 00:00:25 +0000 | [diff] [blame] | 1650 | char IPSCCP::ID = 0; |
Chad Rosier | e6de63d | 2011-12-01 21:29:16 +0000 | [diff] [blame] | 1651 | INITIALIZE_PASS_BEGIN(IPSCCP, "ipsccp", |
| 1652 | "Interprocedural Sparse Conditional Constant Propagation", |
| 1653 | false, false) |
Chandler Carruth | b98f63d | 2015-01-15 10:41:28 +0000 | [diff] [blame] | 1654 | INITIALIZE_PASS_DEPENDENCY(TargetLibraryInfoWrapperPass) |
Chad Rosier | e6de63d | 2011-12-01 21:29:16 +0000 | [diff] [blame] | 1655 | INITIALIZE_PASS_END(IPSCCP, "ipsccp", |
Owen Anderson | a57b97e | 2010-07-21 22:09:45 +0000 | [diff] [blame] | 1656 | "Interprocedural Sparse Conditional Constant Propagation", |
Owen Anderson | df7a4f2 | 2010-10-07 22:25:06 +0000 | [diff] [blame] | 1657 | false, false) |
Dan Gohman | d78c400 | 2008-05-13 00:00:25 +0000 | [diff] [blame] | 1658 | |
Chris Lattner | a3c39d3 | 2009-11-02 02:33:50 +0000 | [diff] [blame] | 1659 | // createIPSCCPPass - This is the public interface to this file. |
Chris Lattner | b439464 | 2004-12-10 08:02:06 +0000 | [diff] [blame] | 1660 | ModulePass *llvm::createIPSCCPPass() { |
| 1661 | return new IPSCCP(); |
| 1662 | } |
| 1663 | |
| 1664 | |
Gabor Greif | 9027ffb | 2010-03-24 10:29:52 +0000 | [diff] [blame] | 1665 | static bool AddressIsTaken(const GlobalValue *GV) { |
Chris Lattner | 8cb10a1 | 2005-04-19 19:16:19 +0000 | [diff] [blame] | 1666 | // Delete any dead constantexpr klingons. |
| 1667 | GV->removeDeadConstantUsers(); |
| 1668 | |
Chandler Carruth | cdf4788 | 2014-03-09 03:16:01 +0000 | [diff] [blame] | 1669 | for (const Use &U : GV->uses()) { |
| 1670 | const User *UR = U.getUser(); |
| 1671 | if (const StoreInst *SI = dyn_cast<StoreInst>(UR)) { |
Chris Lattner | 91dbae6 | 2004-12-11 05:15:59 +0000 | [diff] [blame] | 1672 | if (SI->getOperand(0) == GV || SI->isVolatile()) |
| 1673 | return true; // Storing addr of GV. |
Chandler Carruth | cdf4788 | 2014-03-09 03:16:01 +0000 | [diff] [blame] | 1674 | } else if (isa<InvokeInst>(UR) || isa<CallInst>(UR)) { |
Chris Lattner | b439464 | 2004-12-10 08:02:06 +0000 | [diff] [blame] | 1675 | // Make sure we are calling the function, not passing the address. |
Chandler Carruth | cdf4788 | 2014-03-09 03:16:01 +0000 | [diff] [blame] | 1676 | ImmutableCallSite CS(cast<Instruction>(UR)); |
| 1677 | if (!CS.isCallee(&U)) |
Nick Lewycky | d73806a | 2008-11-03 03:49:14 +0000 | [diff] [blame] | 1678 | return true; |
Chandler Carruth | cdf4788 | 2014-03-09 03:16:01 +0000 | [diff] [blame] | 1679 | } else if (const LoadInst *LI = dyn_cast<LoadInst>(UR)) { |
Chris Lattner | 91dbae6 | 2004-12-11 05:15:59 +0000 | [diff] [blame] | 1680 | if (LI->isVolatile()) |
| 1681 | return true; |
Chandler Carruth | cdf4788 | 2014-03-09 03:16:01 +0000 | [diff] [blame] | 1682 | } else if (isa<BlockAddress>(UR)) { |
Chris Lattner | 1a8b80e | 2009-11-01 06:11:53 +0000 | [diff] [blame] | 1683 | // blockaddress doesn't take the address of the function, it takes addr |
| 1684 | // of label. |
Chris Lattner | 91dbae6 | 2004-12-11 05:15:59 +0000 | [diff] [blame] | 1685 | } else { |
Chris Lattner | b439464 | 2004-12-10 08:02:06 +0000 | [diff] [blame] | 1686 | return true; |
| 1687 | } |
Gabor Greif | 9027ffb | 2010-03-24 10:29:52 +0000 | [diff] [blame] | 1688 | } |
Chris Lattner | b439464 | 2004-12-10 08:02:06 +0000 | [diff] [blame] | 1689 | return false; |
| 1690 | } |
| 1691 | |
| 1692 | bool IPSCCP::runOnModule(Module &M) { |
Mehdi Amini | 46a4355 | 2015-03-04 18:43:29 +0000 | [diff] [blame] | 1693 | const DataLayout &DL = M.getDataLayout(); |
Chandler Carruth | b98f63d | 2015-01-15 10:41:28 +0000 | [diff] [blame] | 1694 | const TargetLibraryInfo *TLI = |
| 1695 | &getAnalysis<TargetLibraryInfoWrapperPass>().getTLI(); |
Rafael Espindola | 37dc9e1 | 2014-02-21 00:06:31 +0000 | [diff] [blame] | 1696 | SCCPSolver Solver(DL, TLI); |
Chris Lattner | b439464 | 2004-12-10 08:02:06 +0000 | [diff] [blame] | 1697 | |
Chris Lattner | 363226d | 2010-08-12 22:25:23 +0000 | [diff] [blame] | 1698 | // AddressTakenFunctions - This set keeps track of the address-taken functions |
| 1699 | // that are in the input. As IPSCCP runs through and simplifies code, |
| 1700 | // functions that were address taken can end up losing their |
| 1701 | // address-taken-ness. Because of this, we keep track of their addresses from |
| 1702 | // the first pass so we can use them for the later simplification pass. |
| 1703 | SmallPtrSet<Function*, 32> AddressTakenFunctions; |
Jakub Staszak | 632a355 | 2012-01-18 21:16:33 +0000 | [diff] [blame] | 1704 | |
Chris Lattner | b439464 | 2004-12-10 08:02:06 +0000 | [diff] [blame] | 1705 | // Loop over all functions, marking arguments to those with their addresses |
| 1706 | // taken or that are external as overdefined. |
| 1707 | // |
Chris Lattner | 47837c5 | 2009-11-02 06:34:04 +0000 | [diff] [blame] | 1708 | for (Module::iterator F = M.begin(), E = M.end(); F != E; ++F) { |
| 1709 | if (F->isDeclaration()) |
| 1710 | continue; |
Jakub Staszak | 632a355 | 2012-01-18 21:16:33 +0000 | [diff] [blame] | 1711 | |
Chris Lattner | fb14181 | 2009-11-03 03:42:51 +0000 | [diff] [blame] | 1712 | // If this is a strong or ODR definition of this function, then we can |
| 1713 | // propagate information about its result into callsites of it. |
Chris Lattner | 156b8c7 | 2009-11-03 23:40:48 +0000 | [diff] [blame] | 1714 | if (!F->mayBeOverridden()) |
Chris Lattner | b439464 | 2004-12-10 08:02:06 +0000 | [diff] [blame] | 1715 | Solver.AddTrackedFunction(F); |
Jakub Staszak | 632a355 | 2012-01-18 21:16:33 +0000 | [diff] [blame] | 1716 | |
Chris Lattner | fb14181 | 2009-11-03 03:42:51 +0000 | [diff] [blame] | 1717 | // If this function only has direct calls that we can see, we can track its |
| 1718 | // arguments and return value aggressively, and can assume it is not called |
| 1719 | // unless we see evidence to the contrary. |
Chris Lattner | 363226d | 2010-08-12 22:25:23 +0000 | [diff] [blame] | 1720 | if (F->hasLocalLinkage()) { |
| 1721 | if (AddressIsTaken(F)) |
| 1722 | AddressTakenFunctions.insert(F); |
| 1723 | else { |
| 1724 | Solver.AddArgumentTrackedFunction(F); |
| 1725 | continue; |
| 1726 | } |
Chris Lattner | cde8de5 | 2009-11-03 19:24:51 +0000 | [diff] [blame] | 1727 | } |
Chris Lattner | fb14181 | 2009-11-03 03:42:51 +0000 | [diff] [blame] | 1728 | |
| 1729 | // Assume the function is called. |
| 1730 | Solver.MarkBlockExecutable(F->begin()); |
Jakub Staszak | 632a355 | 2012-01-18 21:16:33 +0000 | [diff] [blame] | 1731 | |
Chris Lattner | fb14181 | 2009-11-03 03:42:51 +0000 | [diff] [blame] | 1732 | // Assume nothing about the incoming arguments. |
| 1733 | for (Function::arg_iterator AI = F->arg_begin(), E = F->arg_end(); |
| 1734 | AI != E; ++AI) |
Chris Lattner | 156b8c7 | 2009-11-03 23:40:48 +0000 | [diff] [blame] | 1735 | Solver.markAnythingOverdefined(AI); |
Chris Lattner | 47837c5 | 2009-11-02 06:34:04 +0000 | [diff] [blame] | 1736 | } |
Chris Lattner | b439464 | 2004-12-10 08:02:06 +0000 | [diff] [blame] | 1737 | |
Chris Lattner | 91dbae6 | 2004-12-11 05:15:59 +0000 | [diff] [blame] | 1738 | // Loop over global variables. We inform the solver about any internal global |
| 1739 | // variables that do not have their 'addresses taken'. If they don't have |
| 1740 | // their addresses taken, we can propagate constants through them. |
Chris Lattner | 8cb10a1 | 2005-04-19 19:16:19 +0000 | [diff] [blame] | 1741 | for (Module::global_iterator G = M.global_begin(), E = M.global_end(); |
| 1742 | G != E; ++G) |
Rafael Espindola | 6de96a1 | 2009-01-15 20:18:42 +0000 | [diff] [blame] | 1743 | if (!G->isConstant() && G->hasLocalLinkage() && !AddressIsTaken(G)) |
Chris Lattner | 91dbae6 | 2004-12-11 05:15:59 +0000 | [diff] [blame] | 1744 | Solver.TrackValueOfGlobalVariable(G); |
| 1745 | |
Chris Lattner | b439464 | 2004-12-10 08:02:06 +0000 | [diff] [blame] | 1746 | // Solve for constants. |
Chris Lattner | 1847f6d | 2006-12-20 06:21:33 +0000 | [diff] [blame] | 1747 | bool ResolvedUndefs = true; |
| 1748 | while (ResolvedUndefs) { |
Chris Lattner | 7285f43 | 2004-12-10 20:41:50 +0000 | [diff] [blame] | 1749 | Solver.Solve(); |
| 1750 | |
David Greene | 389fc3b | 2010-01-05 01:27:15 +0000 | [diff] [blame] | 1751 | DEBUG(dbgs() << "RESOLVING UNDEFS\n"); |
Chris Lattner | 1847f6d | 2006-12-20 06:21:33 +0000 | [diff] [blame] | 1752 | ResolvedUndefs = false; |
Chris Lattner | 7285f43 | 2004-12-10 20:41:50 +0000 | [diff] [blame] | 1753 | for (Module::iterator F = M.begin(), E = M.end(); F != E; ++F) |
Chris Lattner | 1847f6d | 2006-12-20 06:21:33 +0000 | [diff] [blame] | 1754 | ResolvedUndefs |= Solver.ResolvedUndefsIn(*F); |
Chris Lattner | 7285f43 | 2004-12-10 20:41:50 +0000 | [diff] [blame] | 1755 | } |
Chris Lattner | b439464 | 2004-12-10 08:02:06 +0000 | [diff] [blame] | 1756 | |
| 1757 | bool MadeChanges = false; |
| 1758 | |
| 1759 | // Iterate over all of the instructions in the module, replacing them with |
| 1760 | // constants if we have found them to be of constant values. |
| 1761 | // |
Chris Lattner | 65938fc | 2008-08-23 23:36:38 +0000 | [diff] [blame] | 1762 | SmallVector<BasicBlock*, 512> BlocksToErase; |
Chris Lattner | 37d400a | 2007-02-02 21:15:06 +0000 | [diff] [blame] | 1763 | |
Chris Lattner | b439464 | 2004-12-10 08:02:06 +0000 | [diff] [blame] | 1764 | for (Module::iterator F = M.begin(), E = M.end(); F != E; ++F) { |
Chris Lattner | e82b087 | 2009-11-02 03:25:55 +0000 | [diff] [blame] | 1765 | if (Solver.isBlockExecutable(F->begin())) { |
| 1766 | for (Function::arg_iterator AI = F->arg_begin(), E = F->arg_end(); |
| 1767 | AI != E; ++AI) { |
Duncan Sands | 19d0b47 | 2010-02-16 11:11:14 +0000 | [diff] [blame] | 1768 | if (AI->use_empty() || AI->getType()->isStructTy()) continue; |
Jakub Staszak | 632a355 | 2012-01-18 21:16:33 +0000 | [diff] [blame] | 1769 | |
Chris Lattner | 156b8c7 | 2009-11-03 23:40:48 +0000 | [diff] [blame] | 1770 | // TODO: Could use getStructLatticeValueFor to find out if the entire |
| 1771 | // result is a constant and replace it entirely if so. |
| 1772 | |
Chris Lattner | e82b087 | 2009-11-02 03:25:55 +0000 | [diff] [blame] | 1773 | LatticeVal IV = Solver.getLatticeValueFor(AI); |
| 1774 | if (IV.isOverdefined()) continue; |
Jakub Staszak | 632a355 | 2012-01-18 21:16:33 +0000 | [diff] [blame] | 1775 | |
Chris Lattner | e82b087 | 2009-11-02 03:25:55 +0000 | [diff] [blame] | 1776 | Constant *CST = IV.isConstant() ? |
| 1777 | IV.getConstant() : UndefValue::get(AI->getType()); |
David Greene | 389fc3b | 2010-01-05 01:27:15 +0000 | [diff] [blame] | 1778 | DEBUG(dbgs() << "*** Arg " << *AI << " = " << *CST <<"\n"); |
Jakub Staszak | 632a355 | 2012-01-18 21:16:33 +0000 | [diff] [blame] | 1779 | |
Chris Lattner | e82b087 | 2009-11-02 03:25:55 +0000 | [diff] [blame] | 1780 | // Replaces all of the uses of a variable with uses of the |
| 1781 | // constant. |
| 1782 | AI->replaceAllUsesWith(CST); |
| 1783 | ++IPNumArgsElimed; |
| 1784 | } |
Chris Lattner | b5a13d4 | 2009-11-02 02:54:24 +0000 | [diff] [blame] | 1785 | } |
Chris Lattner | b439464 | 2004-12-10 08:02:06 +0000 | [diff] [blame] | 1786 | |
Chris Lattner | e405ed9 | 2009-11-02 02:47:51 +0000 | [diff] [blame] | 1787 | for (Function::iterator BB = F->begin(), E = F->end(); BB != E; ++BB) { |
Chris Lattner | add44f3 | 2008-08-23 23:39:31 +0000 | [diff] [blame] | 1788 | if (!Solver.isBlockExecutable(BB)) { |
Chris Lattner | e405ed9 | 2009-11-02 02:47:51 +0000 | [diff] [blame] | 1789 | DeleteInstructionInBlock(BB); |
| 1790 | MadeChanges = true; |
Chris Lattner | 7285f43 | 2004-12-10 20:41:50 +0000 | [diff] [blame] | 1791 | |
Chris Lattner | bae4b64 | 2004-12-10 22:29:08 +0000 | [diff] [blame] | 1792 | TerminatorInst *TI = BB->getTerminator(); |
Chris Lattner | bae4b64 | 2004-12-10 22:29:08 +0000 | [diff] [blame] | 1793 | for (unsigned i = 0, e = TI->getNumSuccessors(); i != e; ++i) { |
| 1794 | BasicBlock *Succ = TI->getSuccessor(i); |
Dan Gohman | c731c97 | 2007-10-03 19:26:29 +0000 | [diff] [blame] | 1795 | if (!Succ->empty() && isa<PHINode>(Succ->begin())) |
Chris Lattner | bae4b64 | 2004-12-10 22:29:08 +0000 | [diff] [blame] | 1796 | TI->getSuccessor(i)->removePredecessor(BB); |
| 1797 | } |
Chris Lattner | 99e1295 | 2004-12-11 02:53:57 +0000 | [diff] [blame] | 1798 | if (!TI->use_empty()) |
Owen Anderson | b292b8c | 2009-07-30 23:03:37 +0000 | [diff] [blame] | 1799 | TI->replaceAllUsesWith(UndefValue::get(TI->getType())); |
Chris Lattner | e405ed9 | 2009-11-02 02:47:51 +0000 | [diff] [blame] | 1800 | TI->eraseFromParent(); |
Chris Lattner | bae4b64 | 2004-12-10 22:29:08 +0000 | [diff] [blame] | 1801 | |
Chris Lattner | 8525ebe | 2004-12-11 05:32:19 +0000 | [diff] [blame] | 1802 | if (&*BB != &F->front()) |
| 1803 | BlocksToErase.push_back(BB); |
| 1804 | else |
Owen Anderson | 55f1c09 | 2009-08-13 21:58:54 +0000 | [diff] [blame] | 1805 | new UnreachableInst(M.getContext(), BB); |
Chris Lattner | e405ed9 | 2009-11-02 02:47:51 +0000 | [diff] [blame] | 1806 | continue; |
Chris Lattner | b439464 | 2004-12-10 08:02:06 +0000 | [diff] [blame] | 1807 | } |
Jakub Staszak | 632a355 | 2012-01-18 21:16:33 +0000 | [diff] [blame] | 1808 | |
Chris Lattner | e405ed9 | 2009-11-02 02:47:51 +0000 | [diff] [blame] | 1809 | for (BasicBlock::iterator BI = BB->begin(), E = BB->end(); BI != E; ) { |
| 1810 | Instruction *Inst = BI++; |
Duncan Sands | 19d0b47 | 2010-02-16 11:11:14 +0000 | [diff] [blame] | 1811 | if (Inst->getType()->isVoidTy() || Inst->getType()->isStructTy()) |
Chris Lattner | e405ed9 | 2009-11-02 02:47:51 +0000 | [diff] [blame] | 1812 | continue; |
Jakub Staszak | 632a355 | 2012-01-18 21:16:33 +0000 | [diff] [blame] | 1813 | |
Chris Lattner | 156b8c7 | 2009-11-03 23:40:48 +0000 | [diff] [blame] | 1814 | // TODO: Could use getStructLatticeValueFor to find out if the entire |
| 1815 | // result is a constant and replace it entirely if so. |
Jakub Staszak | 632a355 | 2012-01-18 21:16:33 +0000 | [diff] [blame] | 1816 | |
Chris Lattner | b5a13d4 | 2009-11-02 02:54:24 +0000 | [diff] [blame] | 1817 | LatticeVal IV = Solver.getLatticeValueFor(Inst); |
| 1818 | if (IV.isOverdefined()) |
Chris Lattner | e405ed9 | 2009-11-02 02:47:51 +0000 | [diff] [blame] | 1819 | continue; |
Jakub Staszak | 632a355 | 2012-01-18 21:16:33 +0000 | [diff] [blame] | 1820 | |
Chris Lattner | e405ed9 | 2009-11-02 02:47:51 +0000 | [diff] [blame] | 1821 | Constant *Const = IV.isConstant() |
| 1822 | ? IV.getConstant() : UndefValue::get(Inst->getType()); |
Nick Lewycky | 5cd9538 | 2013-06-26 00:30:18 +0000 | [diff] [blame] | 1823 | DEBUG(dbgs() << " Constant: " << *Const << " = " << *Inst << '\n'); |
Chris Lattner | e405ed9 | 2009-11-02 02:47:51 +0000 | [diff] [blame] | 1824 | |
| 1825 | // Replaces all of the uses of a variable with uses of the |
| 1826 | // constant. |
| 1827 | Inst->replaceAllUsesWith(Const); |
Jakub Staszak | 632a355 | 2012-01-18 21:16:33 +0000 | [diff] [blame] | 1828 | |
Chris Lattner | e405ed9 | 2009-11-02 02:47:51 +0000 | [diff] [blame] | 1829 | // Delete the instruction. |
| 1830 | if (!isa<CallInst>(Inst) && !isa<TerminatorInst>(Inst)) |
| 1831 | Inst->eraseFromParent(); |
| 1832 | |
| 1833 | // Hey, we just changed something! |
| 1834 | MadeChanges = true; |
| 1835 | ++IPNumInstRemoved; |
| 1836 | } |
| 1837 | } |
Chris Lattner | bae4b64 | 2004-12-10 22:29:08 +0000 | [diff] [blame] | 1838 | |
| 1839 | // Now that all instructions in the function are constant folded, erase dead |
| 1840 | // blocks, because we can now use ConstantFoldTerminator to get rid of |
| 1841 | // in-edges. |
| 1842 | for (unsigned i = 0, e = BlocksToErase.size(); i != e; ++i) { |
| 1843 | // If there are any PHI nodes in this successor, drop entries for BB now. |
| 1844 | BasicBlock *DeadBB = BlocksToErase[i]; |
Chandler Carruth | cdf4788 | 2014-03-09 03:16:01 +0000 | [diff] [blame] | 1845 | for (Value::user_iterator UI = DeadBB->user_begin(), |
| 1846 | UE = DeadBB->user_end(); |
| 1847 | UI != UE;) { |
Dan Gohman | 1f522d9 | 2009-11-23 16:13:39 +0000 | [diff] [blame] | 1848 | // Grab the user and then increment the iterator early, as the user |
| 1849 | // will be deleted. Step past all adjacent uses from the same user. |
| 1850 | Instruction *I = dyn_cast<Instruction>(*UI); |
| 1851 | do { ++UI; } while (UI != UE && *UI == I); |
| 1852 | |
Dan Gohman | d15302a | 2009-11-20 20:19:14 +0000 | [diff] [blame] | 1853 | // Ignore blockaddress users; BasicBlock's dtor will handle them. |
Dan Gohman | d15302a | 2009-11-20 20:19:14 +0000 | [diff] [blame] | 1854 | if (!I) continue; |
| 1855 | |
Chris Lattner | bae4b64 | 2004-12-10 22:29:08 +0000 | [diff] [blame] | 1856 | bool Folded = ConstantFoldTerminator(I->getParent()); |
Chris Lattner | fe7b6ef | 2006-10-23 18:57:02 +0000 | [diff] [blame] | 1857 | if (!Folded) { |
Reid Spencer | 7a9c62b | 2007-01-12 07:05:14 +0000 | [diff] [blame] | 1858 | // The constant folder may not have been able to fold the terminator |
Chris Lattner | fe7b6ef | 2006-10-23 18:57:02 +0000 | [diff] [blame] | 1859 | // if this is a branch or switch on undef. Fold it manually as a |
| 1860 | // branch to the first successor. |
Devang Patel | 45f1ae0 | 2008-11-21 01:52:59 +0000 | [diff] [blame] | 1861 | #ifndef NDEBUG |
Chris Lattner | fe7b6ef | 2006-10-23 18:57:02 +0000 | [diff] [blame] | 1862 | if (BranchInst *BI = dyn_cast<BranchInst>(I)) { |
| 1863 | assert(BI->isConditional() && isa<UndefValue>(BI->getCondition()) && |
| 1864 | "Branch should be foldable!"); |
| 1865 | } else if (SwitchInst *SI = dyn_cast<SwitchInst>(I)) { |
| 1866 | assert(isa<UndefValue>(SI->getCondition()) && "Switch should fold"); |
| 1867 | } else { |
Torok Edwin | fbcc663 | 2009-07-14 16:55:14 +0000 | [diff] [blame] | 1868 | llvm_unreachable("Didn't fold away reference to block!"); |
Chris Lattner | fe7b6ef | 2006-10-23 18:57:02 +0000 | [diff] [blame] | 1869 | } |
Devang Patel | 45f1ae0 | 2008-11-21 01:52:59 +0000 | [diff] [blame] | 1870 | #endif |
Jakub Staszak | 632a355 | 2012-01-18 21:16:33 +0000 | [diff] [blame] | 1871 | |
Chris Lattner | fe7b6ef | 2006-10-23 18:57:02 +0000 | [diff] [blame] | 1872 | // Make this an uncond branch to the first successor. |
| 1873 | TerminatorInst *TI = I->getParent()->getTerminator(); |
Gabor Greif | e9ecc68 | 2008-04-06 20:25:17 +0000 | [diff] [blame] | 1874 | BranchInst::Create(TI->getSuccessor(0), TI); |
Jakub Staszak | 632a355 | 2012-01-18 21:16:33 +0000 | [diff] [blame] | 1875 | |
Chris Lattner | fe7b6ef | 2006-10-23 18:57:02 +0000 | [diff] [blame] | 1876 | // Remove entries in successor phi nodes to remove edges. |
| 1877 | for (unsigned i = 1, e = TI->getNumSuccessors(); i != e; ++i) |
| 1878 | TI->getSuccessor(i)->removePredecessor(TI->getParent()); |
Jakub Staszak | 632a355 | 2012-01-18 21:16:33 +0000 | [diff] [blame] | 1879 | |
Chris Lattner | fe7b6ef | 2006-10-23 18:57:02 +0000 | [diff] [blame] | 1880 | // Remove the old terminator. |
| 1881 | TI->eraseFromParent(); |
| 1882 | } |
Chris Lattner | bae4b64 | 2004-12-10 22:29:08 +0000 | [diff] [blame] | 1883 | } |
Misha Brukman | b1c9317 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 1884 | |
Chris Lattner | bae4b64 | 2004-12-10 22:29:08 +0000 | [diff] [blame] | 1885 | // Finally, delete the basic block. |
| 1886 | F->getBasicBlockList().erase(DeadBB); |
| 1887 | } |
Chris Lattner | 37d400a | 2007-02-02 21:15:06 +0000 | [diff] [blame] | 1888 | BlocksToErase.clear(); |
Chris Lattner | b439464 | 2004-12-10 08:02:06 +0000 | [diff] [blame] | 1889 | } |
Chris Lattner | 99e1295 | 2004-12-11 02:53:57 +0000 | [diff] [blame] | 1890 | |
| 1891 | // If we inferred constant or undef return values for a function, we replaced |
| 1892 | // all call uses with the inferred value. This means we don't need to bother |
| 1893 | // actually returning anything from the function. Replace all return |
| 1894 | // instructions with return undef. |
Chris Lattner | d887f1d | 2010-02-27 00:07:42 +0000 | [diff] [blame] | 1895 | // |
| 1896 | // Do this in two stages: first identify the functions we should process, then |
| 1897 | // actually zap their returns. This is important because we can only do this |
Chris Lattner | 2af7e3d | 2010-02-27 07:50:40 +0000 | [diff] [blame] | 1898 | // if the address of the function isn't taken. In cases where a return is the |
Chris Lattner | d887f1d | 2010-02-27 00:07:42 +0000 | [diff] [blame] | 1899 | // last use of a function, the order of processing functions would affect |
Chris Lattner | 2af7e3d | 2010-02-27 07:50:40 +0000 | [diff] [blame] | 1900 | // whether other functions are optimizable. |
Chris Lattner | d887f1d | 2010-02-27 00:07:42 +0000 | [diff] [blame] | 1901 | SmallVector<ReturnInst*, 8> ReturnsToZap; |
Jakub Staszak | 632a355 | 2012-01-18 21:16:33 +0000 | [diff] [blame] | 1902 | |
Devang Patel | e418de3 | 2008-03-11 17:32:05 +0000 | [diff] [blame] | 1903 | // TODO: Process multiple value ret instructions also. |
Devang Patel | a7a2075 | 2008-03-11 05:46:42 +0000 | [diff] [blame] | 1904 | const DenseMap<Function*, LatticeVal> &RV = Solver.getTrackedRetVals(); |
Chris Lattner | 067d607 | 2007-02-02 20:38:30 +0000 | [diff] [blame] | 1905 | for (DenseMap<Function*, LatticeVal>::const_iterator I = RV.begin(), |
Chris Lattner | fb14181 | 2009-11-03 03:42:51 +0000 | [diff] [blame] | 1906 | E = RV.end(); I != E; ++I) { |
| 1907 | Function *F = I->first; |
| 1908 | if (I->second.isOverdefined() || F->getReturnType()->isVoidTy()) |
| 1909 | continue; |
Jakub Staszak | 632a355 | 2012-01-18 21:16:33 +0000 | [diff] [blame] | 1910 | |
Chris Lattner | fb14181 | 2009-11-03 03:42:51 +0000 | [diff] [blame] | 1911 | // We can only do this if we know that nothing else can call the function. |
Chris Lattner | 363226d | 2010-08-12 22:25:23 +0000 | [diff] [blame] | 1912 | if (!F->hasLocalLinkage() || AddressTakenFunctions.count(F)) |
Chris Lattner | fb14181 | 2009-11-03 03:42:51 +0000 | [diff] [blame] | 1913 | continue; |
Jakub Staszak | 632a355 | 2012-01-18 21:16:33 +0000 | [diff] [blame] | 1914 | |
Chris Lattner | fb14181 | 2009-11-03 03:42:51 +0000 | [diff] [blame] | 1915 | for (Function::iterator BB = F->begin(), E = F->end(); BB != E; ++BB) |
| 1916 | if (ReturnInst *RI = dyn_cast<ReturnInst>(BB->getTerminator())) |
| 1917 | if (!isa<UndefValue>(RI->getOperand(0))) |
Chris Lattner | d887f1d | 2010-02-27 00:07:42 +0000 | [diff] [blame] | 1918 | ReturnsToZap.push_back(RI); |
| 1919 | } |
| 1920 | |
| 1921 | // Zap all returns which we've identified as zap to change. |
| 1922 | for (unsigned i = 0, e = ReturnsToZap.size(); i != e; ++i) { |
| 1923 | Function *F = ReturnsToZap[i]->getParent()->getParent(); |
| 1924 | ReturnsToZap[i]->setOperand(0, UndefValue::get(F->getReturnType())); |
Chris Lattner | fb14181 | 2009-11-03 03:42:51 +0000 | [diff] [blame] | 1925 | } |
Jakub Staszak | 632a355 | 2012-01-18 21:16:33 +0000 | [diff] [blame] | 1926 | |
Chad Rosier | bb2a6da | 2012-03-28 00:35:33 +0000 | [diff] [blame] | 1927 | // If we inferred constant or undef values for globals variables, we can |
| 1928 | // delete the global and any stores that remain to it. |
Chris Lattner | 067d607 | 2007-02-02 20:38:30 +0000 | [diff] [blame] | 1929 | const DenseMap<GlobalVariable*, LatticeVal> &TG = Solver.getTrackedGlobals(); |
| 1930 | for (DenseMap<GlobalVariable*, LatticeVal>::const_iterator I = TG.begin(), |
Chris Lattner | 91dbae6 | 2004-12-11 05:15:59 +0000 | [diff] [blame] | 1931 | E = TG.end(); I != E; ++I) { |
| 1932 | GlobalVariable *GV = I->first; |
| 1933 | assert(!I->second.isOverdefined() && |
| 1934 | "Overdefined values should have been taken out of the map!"); |
David Greene | 389fc3b | 2010-01-05 01:27:15 +0000 | [diff] [blame] | 1935 | DEBUG(dbgs() << "Found that GV '" << GV->getName() << "' is constant!\n"); |
Chris Lattner | 91dbae6 | 2004-12-11 05:15:59 +0000 | [diff] [blame] | 1936 | while (!GV->use_empty()) { |
Chandler Carruth | cdf4788 | 2014-03-09 03:16:01 +0000 | [diff] [blame] | 1937 | StoreInst *SI = cast<StoreInst>(GV->user_back()); |
Chris Lattner | 91dbae6 | 2004-12-11 05:15:59 +0000 | [diff] [blame] | 1938 | SI->eraseFromParent(); |
| 1939 | } |
| 1940 | M.getGlobalList().erase(GV); |
Chris Lattner | 2f687fd | 2004-12-11 06:05:53 +0000 | [diff] [blame] | 1941 | ++IPNumGlobalConst; |
Chris Lattner | 91dbae6 | 2004-12-11 05:15:59 +0000 | [diff] [blame] | 1942 | } |
Misha Brukman | b1c9317 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 1943 | |
Chris Lattner | b439464 | 2004-12-10 08:02:06 +0000 | [diff] [blame] | 1944 | return MadeChanges; |
| 1945 | } |