Nick Lewycky | 579a024 | 2008-11-02 05:52:50 +0000 | [diff] [blame] | 1 | //===- MergeFunctions.cpp - Merge identical functions ---------------------===// |
| 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
| 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
| 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
| 10 | // This pass looks for equivalent functions that are mergable and folds them. |
| 11 | // |
Nick Lewycky | 579a024 | 2008-11-02 05:52:50 +0000 | [diff] [blame] | 12 | // A hash is computed from the function, based on its type and number of |
| 13 | // basic blocks. |
| 14 | // |
| 15 | // Once all hashes are computed, we perform an expensive equality comparison |
| 16 | // on each function pair. This takes n^2/2 comparisons per bucket, so it's |
| 17 | // important that the hash function be high quality. The equality comparison |
| 18 | // iterates through each instruction in each basic block. |
| 19 | // |
Nick Lewycky | 33ab0b1 | 2010-05-13 05:48:45 +0000 | [diff] [blame] | 20 | // When a match is found the functions are folded. If both functions are |
| 21 | // overridable, we move the functionality into a new internal function and |
| 22 | // leave two overridable thunks to it. |
Nick Lewycky | 579a024 | 2008-11-02 05:52:50 +0000 | [diff] [blame] | 23 | // |
| 24 | //===----------------------------------------------------------------------===// |
| 25 | // |
| 26 | // Future work: |
| 27 | // |
Nick Lewycky | 579a024 | 2008-11-02 05:52:50 +0000 | [diff] [blame] | 28 | // * virtual functions. |
| 29 | // |
| 30 | // Many functions have their address taken by the virtual function table for |
| 31 | // the object they belong to. However, as long as it's only used for a lookup |
Nick Lewycky | be04fde | 2010-08-08 05:04:23 +0000 | [diff] [blame] | 32 | // and call, this is irrelevant, and we'd like to fold such functions. |
Nick Lewycky | 579a024 | 2008-11-02 05:52:50 +0000 | [diff] [blame] | 33 | // |
Nick Lewycky | 78d4330 | 2010-08-02 05:23:03 +0000 | [diff] [blame] | 34 | // * switch from n^2 pair-wise comparisons to an n-way comparison for each |
| 35 | // bucket. |
Nick Lewycky | 33ab0b1 | 2010-05-13 05:48:45 +0000 | [diff] [blame] | 36 | // |
Nick Lewycky | be04fde | 2010-08-08 05:04:23 +0000 | [diff] [blame] | 37 | // * be smarter about bitcasts. |
Nick Lewycky | 33ab0b1 | 2010-05-13 05:48:45 +0000 | [diff] [blame] | 38 | // |
| 39 | // In order to fold functions, we will sometimes add either bitcast instructions |
| 40 | // or bitcast constant expressions. Unfortunately, this can confound further |
| 41 | // analysis since the two functions differ where one has a bitcast and the |
Nick Lewycky | be04fde | 2010-08-08 05:04:23 +0000 | [diff] [blame] | 42 | // other doesn't. We should learn to look through bitcasts. |
Nick Lewycky | 33ab0b1 | 2010-05-13 05:48:45 +0000 | [diff] [blame] | 43 | // |
Nick Lewycky | 579a024 | 2008-11-02 05:52:50 +0000 | [diff] [blame] | 44 | //===----------------------------------------------------------------------===// |
| 45 | |
| 46 | #define DEBUG_TYPE "mergefunc" |
| 47 | #include "llvm/Transforms/IPO.h" |
Nick Lewycky | f53de86 | 2010-08-31 05:53:05 +0000 | [diff] [blame] | 48 | #include "llvm/ADT/DenseSet.h" |
Nick Lewycky | 287de60 | 2009-06-12 08:04:51 +0000 | [diff] [blame] | 49 | #include "llvm/ADT/FoldingSet.h" |
Nick Lewycky | 33ab0b1 | 2010-05-13 05:48:45 +0000 | [diff] [blame] | 50 | #include "llvm/ADT/SmallSet.h" |
Nick Lewycky | 579a024 | 2008-11-02 05:52:50 +0000 | [diff] [blame] | 51 | #include "llvm/ADT/Statistic.h" |
Nick Lewycky | f53de86 | 2010-08-31 05:53:05 +0000 | [diff] [blame] | 52 | #include "llvm/ADT/STLExtras.h" |
Nick Lewycky | 579a024 | 2008-11-02 05:52:50 +0000 | [diff] [blame] | 53 | #include "llvm/Constants.h" |
| 54 | #include "llvm/InlineAsm.h" |
| 55 | #include "llvm/Instructions.h" |
Owen Anderson | 14ce9ef | 2009-07-06 01:34:54 +0000 | [diff] [blame] | 56 | #include "llvm/LLVMContext.h" |
Nick Lewycky | 579a024 | 2008-11-02 05:52:50 +0000 | [diff] [blame] | 57 | #include "llvm/Module.h" |
| 58 | #include "llvm/Pass.h" |
Nick Lewycky | 6feb333 | 2008-11-02 16:46:26 +0000 | [diff] [blame] | 59 | #include "llvm/Support/CallSite.h" |
Nick Lewycky | 579a024 | 2008-11-02 05:52:50 +0000 | [diff] [blame] | 60 | #include "llvm/Support/Debug.h" |
Torok Edwin | c25e758 | 2009-07-11 20:10:48 +0000 | [diff] [blame] | 61 | #include "llvm/Support/ErrorHandling.h" |
Nick Lewycky | be04fde | 2010-08-08 05:04:23 +0000 | [diff] [blame] | 62 | #include "llvm/Support/IRBuilder.h" |
Nick Lewycky | f53de86 | 2010-08-31 05:53:05 +0000 | [diff] [blame] | 63 | #include "llvm/Support/ValueHandle.h" |
Daniel Dunbar | ce63ffb | 2009-07-25 00:23:56 +0000 | [diff] [blame] | 64 | #include "llvm/Support/raw_ostream.h" |
Nick Lewycky | 33ab0b1 | 2010-05-13 05:48:45 +0000 | [diff] [blame] | 65 | #include "llvm/Target/TargetData.h" |
Nick Lewycky | 65a0af3 | 2010-08-31 08:29:37 +0000 | [diff] [blame] | 66 | #include <vector> |
Nick Lewycky | 579a024 | 2008-11-02 05:52:50 +0000 | [diff] [blame] | 67 | using namespace llvm; |
| 68 | |
| 69 | STATISTIC(NumFunctionsMerged, "Number of functions merged"); |
Nick Lewycky | 2b6c01b | 2010-09-07 01:42:10 +0000 | [diff] [blame] | 70 | STATISTIC(NumThunksWritten, "Number of thunks generated"); |
Nick Lewycky | b38824f | 2011-01-25 08:56:50 +0000 | [diff] [blame] | 71 | STATISTIC(NumAliasesWritten, "Number of aliases generated"); |
Nick Lewycky | 2b6c01b | 2010-09-07 01:42:10 +0000 | [diff] [blame] | 72 | STATISTIC(NumDoubleWeak, "Number of new functions created"); |
Nick Lewycky | 579a024 | 2008-11-02 05:52:50 +0000 | [diff] [blame] | 73 | |
Nick Lewycky | 2b6c01b | 2010-09-07 01:42:10 +0000 | [diff] [blame] | 74 | /// ProfileFunction - Creates a hash-code for the function which is the same |
| 75 | /// for any two functions that will compare equal, without looking at the |
| 76 | /// instructions inside the function. |
Nick Lewycky | b0104e1 | 2010-09-05 08:22:49 +0000 | [diff] [blame] | 77 | static unsigned ProfileFunction(const Function *F) { |
| 78 | const FunctionType *FTy = F->getFunctionType(); |
Nick Lewycky | be04fde | 2010-08-08 05:04:23 +0000 | [diff] [blame] | 79 | |
Nick Lewycky | b0104e1 | 2010-09-05 08:22:49 +0000 | [diff] [blame] | 80 | FoldingSetNodeID ID; |
| 81 | ID.AddInteger(F->size()); |
| 82 | ID.AddInteger(F->getCallingConv()); |
| 83 | ID.AddBoolean(F->hasGC()); |
| 84 | ID.AddBoolean(FTy->isVarArg()); |
| 85 | ID.AddInteger(FTy->getReturnType()->getTypeID()); |
| 86 | for (unsigned i = 0, e = FTy->getNumParams(); i != e; ++i) |
| 87 | ID.AddInteger(FTy->getParamType(i)->getTypeID()); |
| 88 | return ID.ComputeHash(); |
Nick Lewycky | 579a024 | 2008-11-02 05:52:50 +0000 | [diff] [blame] | 89 | } |
| 90 | |
Nick Lewycky | 2b6c01b | 2010-09-07 01:42:10 +0000 | [diff] [blame] | 91 | namespace { |
| 92 | |
Nick Lewycky | b0104e1 | 2010-09-05 08:22:49 +0000 | [diff] [blame] | 93 | class ComparableFunction { |
| 94 | public: |
Nick Lewycky | b0e1777 | 2010-09-05 09:00:32 +0000 | [diff] [blame] | 95 | static const ComparableFunction EmptyKey; |
| 96 | static const ComparableFunction TombstoneKey; |
| 97 | |
Nick Lewycky | b0104e1 | 2010-09-05 08:22:49 +0000 | [diff] [blame] | 98 | ComparableFunction(Function *Func, TargetData *TD) |
| 99 | : Func(Func), Hash(ProfileFunction(Func)), TD(TD) {} |
| 100 | |
Nick Lewycky | b0e1777 | 2010-09-05 09:00:32 +0000 | [diff] [blame] | 101 | Function *getFunc() const { return Func; } |
| 102 | unsigned getHash() const { return Hash; } |
| 103 | TargetData *getTD() const { return TD; } |
| 104 | |
| 105 | // Drops AssertingVH reference to the function. Outside of debug mode, this |
| 106 | // does nothing. |
| 107 | void release() { |
| 108 | assert(Func && |
| 109 | "Attempted to release function twice, or release empty/tombstone!"); |
| 110 | Func = NULL; |
| 111 | } |
| 112 | |
Nick Lewycky | e8f8139 | 2011-01-15 10:16:23 +0000 | [diff] [blame] | 113 | bool &getOrInsertCachedComparison(const ComparableFunction &Other, |
| 114 | bool &inserted) const { |
| 115 | typedef DenseMap<Function *, bool>::iterator iterator; |
| 116 | std::pair<iterator, bool> p = |
| 117 | CompareResultCache.insert(std::make_pair(Other.getFunc(), false)); |
| 118 | inserted = p.second; |
| 119 | return p.first->second; |
| 120 | } |
| 121 | |
Nick Lewycky | b0e1777 | 2010-09-05 09:00:32 +0000 | [diff] [blame] | 122 | private: |
| 123 | explicit ComparableFunction(unsigned Hash) |
| 124 | : Func(NULL), Hash(Hash), TD(NULL) {} |
| 125 | |
Nick Lewycky | e8f8139 | 2011-01-15 10:16:23 +0000 | [diff] [blame] | 126 | // DenseMap::grow() triggers a recomparison of all keys in the map, which is |
| 127 | // wildly expensive. This cache tries to preserve known results. |
| 128 | mutable DenseMap<Function *, bool> CompareResultCache; |
| 129 | |
Nick Lewycky | b0e1777 | 2010-09-05 09:00:32 +0000 | [diff] [blame] | 130 | AssertingVH<Function> Func; |
| 131 | unsigned Hash; |
| 132 | TargetData *TD; |
Nick Lewycky | b0104e1 | 2010-09-05 08:22:49 +0000 | [diff] [blame] | 133 | }; |
| 134 | |
Nick Lewycky | b0e1777 | 2010-09-05 09:00:32 +0000 | [diff] [blame] | 135 | const ComparableFunction ComparableFunction::EmptyKey = ComparableFunction(0); |
| 136 | const ComparableFunction ComparableFunction::TombstoneKey = |
| 137 | ComparableFunction(1); |
| 138 | |
Nick Lewycky | 2b6c01b | 2010-09-07 01:42:10 +0000 | [diff] [blame] | 139 | } |
Nick Lewycky | b0e1777 | 2010-09-05 09:00:32 +0000 | [diff] [blame] | 140 | |
| 141 | namespace llvm { |
| 142 | template <> |
| 143 | struct DenseMapInfo<ComparableFunction> { |
| 144 | static ComparableFunction getEmptyKey() { |
| 145 | return ComparableFunction::EmptyKey; |
| 146 | } |
| 147 | static ComparableFunction getTombstoneKey() { |
| 148 | return ComparableFunction::TombstoneKey; |
| 149 | } |
| 150 | static unsigned getHashValue(const ComparableFunction &CF) { |
| 151 | return CF.getHash(); |
| 152 | } |
| 153 | static bool isEqual(const ComparableFunction &LHS, |
| 154 | const ComparableFunction &RHS); |
| 155 | }; |
| 156 | } |
| 157 | |
| 158 | namespace { |
Nick Lewycky | b0104e1 | 2010-09-05 08:22:49 +0000 | [diff] [blame] | 159 | |
| 160 | /// MergeFunctions finds functions which will generate identical machine code, |
| 161 | /// by considering all pointer types to be equivalent. Once identified, |
| 162 | /// MergeFunctions will fold them by replacing a call to one to a call to a |
| 163 | /// bitcast of the other. |
| 164 | /// |
| 165 | class MergeFunctions : public ModulePass { |
| 166 | public: |
| 167 | static char ID; |
Nick Lewycky | b38824f | 2011-01-25 08:56:50 +0000 | [diff] [blame] | 168 | MergeFunctions() |
| 169 | : ModulePass(ID), HasGlobalAliases(false) { |
Owen Anderson | 081c34b | 2010-10-19 17:21:58 +0000 | [diff] [blame] | 170 | initializeMergeFunctionsPass(*PassRegistry::getPassRegistry()); |
| 171 | } |
Nick Lewycky | b0104e1 | 2010-09-05 08:22:49 +0000 | [diff] [blame] | 172 | |
| 173 | bool runOnModule(Module &M); |
| 174 | |
| 175 | private: |
Nick Lewycky | b0e1777 | 2010-09-05 09:00:32 +0000 | [diff] [blame] | 176 | typedef DenseSet<ComparableFunction> FnSetType; |
Nick Lewycky | b0104e1 | 2010-09-05 08:22:49 +0000 | [diff] [blame] | 177 | |
Nick Lewycky | abd6c75 | 2011-01-02 02:46:33 +0000 | [diff] [blame] | 178 | /// A work queue of functions that may have been modified and should be |
| 179 | /// analyzed again. |
| 180 | std::vector<WeakVH> Deferred; |
Nick Lewycky | b0104e1 | 2010-09-05 08:22:49 +0000 | [diff] [blame] | 181 | |
| 182 | /// Insert a ComparableFunction into the FnSet, or merge it away if it's |
| 183 | /// equal to one that's already present. |
Nick Lewycky | abd6c75 | 2011-01-02 02:46:33 +0000 | [diff] [blame] | 184 | bool Insert(ComparableFunction &NewF); |
| 185 | |
| 186 | /// Remove a Function from the FnSet and queue it up for a second sweep of |
| 187 | /// analysis. |
| 188 | void Remove(Function *F); |
| 189 | |
| 190 | /// Find the functions that use this Value and remove them from FnSet and |
| 191 | /// queue the functions. |
| 192 | void RemoveUsers(Value *V); |
Nick Lewycky | b0104e1 | 2010-09-05 08:22:49 +0000 | [diff] [blame] | 193 | |
Nick Lewycky | b38824f | 2011-01-25 08:56:50 +0000 | [diff] [blame] | 194 | /// Replace all direct calls of Old with calls of New. Will bitcast New if |
| 195 | /// necessary to make types match. |
| 196 | void replaceDirectCallers(Function *Old, Function *New); |
| 197 | |
Nick Lewycky | b0104e1 | 2010-09-05 08:22:49 +0000 | [diff] [blame] | 198 | /// MergeTwoFunctions - Merge two equivalent functions. Upon completion, G |
| 199 | /// may be deleted, or may be converted into a thunk. In either case, it |
| 200 | /// should never be visited again. |
Nick Lewycky | abd6c75 | 2011-01-02 02:46:33 +0000 | [diff] [blame] | 201 | void MergeTwoFunctions(Function *F, Function *G); |
Nick Lewycky | b0104e1 | 2010-09-05 08:22:49 +0000 | [diff] [blame] | 202 | |
Nick Lewycky | b38824f | 2011-01-25 08:56:50 +0000 | [diff] [blame] | 203 | /// WriteThunkOrAlias - Replace G with a thunk or an alias to F. Deletes G. |
| 204 | void WriteThunkOrAlias(Function *F, Function *G); |
| 205 | |
Nick Lewycky | b0104e1 | 2010-09-05 08:22:49 +0000 | [diff] [blame] | 206 | /// WriteThunk - Replace G with a simple tail call to bitcast(F). Also |
| 207 | /// replace direct uses of G with bitcast(F). Deletes G. |
Nick Lewycky | abd6c75 | 2011-01-02 02:46:33 +0000 | [diff] [blame] | 208 | void WriteThunk(Function *F, Function *G); |
Nick Lewycky | b0104e1 | 2010-09-05 08:22:49 +0000 | [diff] [blame] | 209 | |
Nick Lewycky | b38824f | 2011-01-25 08:56:50 +0000 | [diff] [blame] | 210 | /// WriteAlias - Replace G with an alias to F. Deletes G. |
| 211 | void WriteAlias(Function *F, Function *G); |
| 212 | |
Nick Lewycky | abd6c75 | 2011-01-02 02:46:33 +0000 | [diff] [blame] | 213 | /// The set of all distinct functions. Use the Insert and Remove methods to |
| 214 | /// modify it. |
| 215 | FnSetType FnSet; |
| 216 | |
| 217 | /// TargetData for more accurate GEP comparisons. May be NULL. |
Nick Lewycky | b0104e1 | 2010-09-05 08:22:49 +0000 | [diff] [blame] | 218 | TargetData *TD; |
Nick Lewycky | b38824f | 2011-01-25 08:56:50 +0000 | [diff] [blame] | 219 | |
| 220 | /// Whether or not the target supports global aliases. |
| 221 | bool HasGlobalAliases; |
Nick Lewycky | b0104e1 | 2010-09-05 08:22:49 +0000 | [diff] [blame] | 222 | }; |
| 223 | |
| 224 | } // end anonymous namespace |
| 225 | |
Nick Lewycky | 579a024 | 2008-11-02 05:52:50 +0000 | [diff] [blame] | 226 | char MergeFunctions::ID = 0; |
Owen Anderson | ce665bd | 2010-10-07 22:25:06 +0000 | [diff] [blame] | 227 | INITIALIZE_PASS(MergeFunctions, "mergefunc", "Merge Functions", false, false) |
Nick Lewycky | 579a024 | 2008-11-02 05:52:50 +0000 | [diff] [blame] | 228 | |
| 229 | ModulePass *llvm::createMergeFunctionsPass() { |
| 230 | return new MergeFunctions(); |
| 231 | } |
| 232 | |
Nick Lewycky | 78d4330 | 2010-08-02 05:23:03 +0000 | [diff] [blame] | 233 | namespace { |
Nick Lewycky | be04fde | 2010-08-08 05:04:23 +0000 | [diff] [blame] | 234 | /// FunctionComparator - Compares two functions to determine whether or not |
| 235 | /// they will generate machine code with the same behaviour. TargetData is |
| 236 | /// used if available. The comparator always fails conservatively (erring on the |
| 237 | /// side of claiming that two functions are different). |
Nick Lewycky | 78d4330 | 2010-08-02 05:23:03 +0000 | [diff] [blame] | 238 | class FunctionComparator { |
| 239 | public: |
Nick Lewycky | f53de86 | 2010-08-31 05:53:05 +0000 | [diff] [blame] | 240 | FunctionComparator(const TargetData *TD, const Function *F1, |
| 241 | const Function *F2) |
Nick Lewycky | c9dcbed | 2010-08-06 07:21:30 +0000 | [diff] [blame] | 242 | : F1(F1), F2(F2), TD(TD), IDMap1Count(0), IDMap2Count(0) {} |
Nick Lewycky | 287de60 | 2009-06-12 08:04:51 +0000 | [diff] [blame] | 243 | |
Nick Lewycky | be04fde | 2010-08-08 05:04:23 +0000 | [diff] [blame] | 244 | /// Compare - test whether the two functions have equivalent behaviour. |
Nick Lewycky | 78d4330 | 2010-08-02 05:23:03 +0000 | [diff] [blame] | 245 | bool Compare(); |
| 246 | |
| 247 | private: |
Nick Lewycky | be04fde | 2010-08-08 05:04:23 +0000 | [diff] [blame] | 248 | /// Compare - test whether two basic blocks have equivalent behaviour. |
Nick Lewycky | 78d4330 | 2010-08-02 05:23:03 +0000 | [diff] [blame] | 249 | bool Compare(const BasicBlock *BB1, const BasicBlock *BB2); |
| 250 | |
Nick Lewycky | be04fde | 2010-08-08 05:04:23 +0000 | [diff] [blame] | 251 | /// Enumerate - Assign or look up previously assigned numbers for the two |
| 252 | /// values, and return whether the numbers are equal. Numbers are assigned in |
| 253 | /// the order visited. |
Nick Lewycky | 78d4330 | 2010-08-02 05:23:03 +0000 | [diff] [blame] | 254 | bool Enumerate(const Value *V1, const Value *V2); |
| 255 | |
Nick Lewycky | be04fde | 2010-08-08 05:04:23 +0000 | [diff] [blame] | 256 | /// isEquivalentOperation - Compare two Instructions for equivalence, similar |
| 257 | /// to Instruction::isSameOperationAs but with modifications to the type |
| 258 | /// comparison. |
Nick Lewycky | 78d4330 | 2010-08-02 05:23:03 +0000 | [diff] [blame] | 259 | bool isEquivalentOperation(const Instruction *I1, |
| 260 | const Instruction *I2) const; |
| 261 | |
Nick Lewycky | be04fde | 2010-08-08 05:04:23 +0000 | [diff] [blame] | 262 | /// isEquivalentGEP - Compare two GEPs for equivalent pointer arithmetic. |
Nick Lewycky | 78d4330 | 2010-08-02 05:23:03 +0000 | [diff] [blame] | 263 | bool isEquivalentGEP(const GEPOperator *GEP1, const GEPOperator *GEP2); |
| 264 | bool isEquivalentGEP(const GetElementPtrInst *GEP1, |
Nick Lewycky | be04fde | 2010-08-08 05:04:23 +0000 | [diff] [blame] | 265 | const GetElementPtrInst *GEP2) { |
Nick Lewycky | 78d4330 | 2010-08-02 05:23:03 +0000 | [diff] [blame] | 266 | return isEquivalentGEP(cast<GEPOperator>(GEP1), cast<GEPOperator>(GEP2)); |
| 267 | } |
| 268 | |
Nick Lewycky | be04fde | 2010-08-08 05:04:23 +0000 | [diff] [blame] | 269 | /// isEquivalentType - Compare two Types, treating all pointer types as equal. |
Nick Lewycky | 78d4330 | 2010-08-02 05:23:03 +0000 | [diff] [blame] | 270 | bool isEquivalentType(const Type *Ty1, const Type *Ty2) const; |
| 271 | |
| 272 | // The two functions undergoing comparison. |
Nick Lewycky | f53de86 | 2010-08-31 05:53:05 +0000 | [diff] [blame] | 273 | const Function *F1, *F2; |
Nick Lewycky | 78d4330 | 2010-08-02 05:23:03 +0000 | [diff] [blame] | 274 | |
Nick Lewycky | f53de86 | 2010-08-31 05:53:05 +0000 | [diff] [blame] | 275 | const TargetData *TD; |
Nick Lewycky | 78d4330 | 2010-08-02 05:23:03 +0000 | [diff] [blame] | 276 | |
| 277 | typedef DenseMap<const Value *, unsigned long> IDMap; |
Nick Lewycky | c9dcbed | 2010-08-06 07:21:30 +0000 | [diff] [blame] | 278 | IDMap Map1, Map2; |
| 279 | unsigned long IDMap1Count, IDMap2Count; |
Nick Lewycky | 78d4330 | 2010-08-02 05:23:03 +0000 | [diff] [blame] | 280 | }; |
| 281 | } |
| 282 | |
Nick Lewycky | c9dcbed | 2010-08-06 07:21:30 +0000 | [diff] [blame] | 283 | /// isEquivalentType - any two pointers in the same address space are |
| 284 | /// equivalent. Otherwise, standard type equivalence rules apply. |
Nick Lewycky | 78d4330 | 2010-08-02 05:23:03 +0000 | [diff] [blame] | 285 | bool FunctionComparator::isEquivalentType(const Type *Ty1, |
| 286 | const Type *Ty2) const { |
Nick Lewycky | 287de60 | 2009-06-12 08:04:51 +0000 | [diff] [blame] | 287 | if (Ty1 == Ty2) |
| 288 | return true; |
| 289 | if (Ty1->getTypeID() != Ty2->getTypeID()) |
| 290 | return false; |
| 291 | |
| 292 | switch(Ty1->getTypeID()) { |
Nick Lewycky | 33ab0b1 | 2010-05-13 05:48:45 +0000 | [diff] [blame] | 293 | default: |
| 294 | llvm_unreachable("Unknown type!"); |
Duncan Sands | 8246adc | 2010-07-07 07:48:00 +0000 | [diff] [blame] | 295 | // Fall through in Release mode. |
Nick Lewycky | 33ab0b1 | 2010-05-13 05:48:45 +0000 | [diff] [blame] | 296 | case Type::IntegerTyID: |
| 297 | case Type::OpaqueTyID: |
Nick Lewycky | 388f491 | 2011-01-26 08:50:18 +0000 | [diff] [blame^] | 298 | case Type::VectorTyID: |
Nick Lewycky | 33ab0b1 | 2010-05-13 05:48:45 +0000 | [diff] [blame] | 299 | // Ty1 == Ty2 would have returned true earlier. |
| 300 | return false; |
| 301 | |
Nick Lewycky | 287de60 | 2009-06-12 08:04:51 +0000 | [diff] [blame] | 302 | case Type::VoidTyID: |
| 303 | case Type::FloatTyID: |
| 304 | case Type::DoubleTyID: |
| 305 | case Type::X86_FP80TyID: |
| 306 | case Type::FP128TyID: |
| 307 | case Type::PPC_FP128TyID: |
| 308 | case Type::LabelTyID: |
| 309 | case Type::MetadataTyID: |
| 310 | return true; |
| 311 | |
Nick Lewycky | 287de60 | 2009-06-12 08:04:51 +0000 | [diff] [blame] | 312 | case Type::PointerTyID: { |
| 313 | const PointerType *PTy1 = cast<PointerType>(Ty1); |
| 314 | const PointerType *PTy2 = cast<PointerType>(Ty2); |
| 315 | return PTy1->getAddressSpace() == PTy2->getAddressSpace(); |
| 316 | } |
| 317 | |
| 318 | case Type::StructTyID: { |
| 319 | const StructType *STy1 = cast<StructType>(Ty1); |
| 320 | const StructType *STy2 = cast<StructType>(Ty2); |
| 321 | if (STy1->getNumElements() != STy2->getNumElements()) |
| 322 | return false; |
| 323 | |
| 324 | if (STy1->isPacked() != STy2->isPacked()) |
| 325 | return false; |
| 326 | |
| 327 | for (unsigned i = 0, e = STy1->getNumElements(); i != e; ++i) { |
| 328 | if (!isEquivalentType(STy1->getElementType(i), STy2->getElementType(i))) |
| 329 | return false; |
| 330 | } |
| 331 | return true; |
| 332 | } |
| 333 | |
| 334 | case Type::FunctionTyID: { |
| 335 | const FunctionType *FTy1 = cast<FunctionType>(Ty1); |
| 336 | const FunctionType *FTy2 = cast<FunctionType>(Ty2); |
| 337 | if (FTy1->getNumParams() != FTy2->getNumParams() || |
| 338 | FTy1->isVarArg() != FTy2->isVarArg()) |
| 339 | return false; |
| 340 | |
| 341 | if (!isEquivalentType(FTy1->getReturnType(), FTy2->getReturnType())) |
| 342 | return false; |
| 343 | |
| 344 | for (unsigned i = 0, e = FTy1->getNumParams(); i != e; ++i) { |
| 345 | if (!isEquivalentType(FTy1->getParamType(i), FTy2->getParamType(i))) |
| 346 | return false; |
| 347 | } |
| 348 | return true; |
| 349 | } |
| 350 | |
Nick Lewycky | 394ce41 | 2010-07-16 06:31:12 +0000 | [diff] [blame] | 351 | case Type::ArrayTyID: { |
| 352 | const ArrayType *ATy1 = cast<ArrayType>(Ty1); |
| 353 | const ArrayType *ATy2 = cast<ArrayType>(Ty2); |
| 354 | return ATy1->getNumElements() == ATy2->getNumElements() && |
| 355 | isEquivalentType(ATy1->getElementType(), ATy2->getElementType()); |
| 356 | } |
Nick Lewycky | 287de60 | 2009-06-12 08:04:51 +0000 | [diff] [blame] | 357 | } |
| 358 | } |
| 359 | |
| 360 | /// isEquivalentOperation - determine whether the two operations are the same |
| 361 | /// except that pointer-to-A and pointer-to-B are equivalent. This should be |
Dan Gohman | 194ae78 | 2009-06-12 19:03:05 +0000 | [diff] [blame] | 362 | /// kept in sync with Instruction::isSameOperationAs. |
Nick Lewycky | 78d4330 | 2010-08-02 05:23:03 +0000 | [diff] [blame] | 363 | bool FunctionComparator::isEquivalentOperation(const Instruction *I1, |
| 364 | const Instruction *I2) const { |
Nick Lewycky | 287de60 | 2009-06-12 08:04:51 +0000 | [diff] [blame] | 365 | if (I1->getOpcode() != I2->getOpcode() || |
| 366 | I1->getNumOperands() != I2->getNumOperands() || |
Dan Gohman | 58cfa3b | 2009-08-25 22:11:20 +0000 | [diff] [blame] | 367 | !isEquivalentType(I1->getType(), I2->getType()) || |
| 368 | !I1->hasSameSubclassOptionalData(I2)) |
Nick Lewycky | 287de60 | 2009-06-12 08:04:51 +0000 | [diff] [blame] | 369 | return false; |
| 370 | |
| 371 | // We have two instructions of identical opcode and #operands. Check to see |
| 372 | // if all operands are the same type |
| 373 | for (unsigned i = 0, e = I1->getNumOperands(); i != e; ++i) |
| 374 | if (!isEquivalentType(I1->getOperand(i)->getType(), |
| 375 | I2->getOperand(i)->getType())) |
| 376 | return false; |
| 377 | |
| 378 | // Check special state that is a part of some instructions. |
| 379 | if (const LoadInst *LI = dyn_cast<LoadInst>(I1)) |
| 380 | return LI->isVolatile() == cast<LoadInst>(I2)->isVolatile() && |
| 381 | LI->getAlignment() == cast<LoadInst>(I2)->getAlignment(); |
| 382 | if (const StoreInst *SI = dyn_cast<StoreInst>(I1)) |
| 383 | return SI->isVolatile() == cast<StoreInst>(I2)->isVolatile() && |
| 384 | SI->getAlignment() == cast<StoreInst>(I2)->getAlignment(); |
| 385 | if (const CmpInst *CI = dyn_cast<CmpInst>(I1)) |
| 386 | return CI->getPredicate() == cast<CmpInst>(I2)->getPredicate(); |
| 387 | if (const CallInst *CI = dyn_cast<CallInst>(I1)) |
| 388 | return CI->isTailCall() == cast<CallInst>(I2)->isTailCall() && |
| 389 | CI->getCallingConv() == cast<CallInst>(I2)->getCallingConv() && |
| 390 | CI->getAttributes().getRawPointer() == |
| 391 | cast<CallInst>(I2)->getAttributes().getRawPointer(); |
| 392 | if (const InvokeInst *CI = dyn_cast<InvokeInst>(I1)) |
| 393 | return CI->getCallingConv() == cast<InvokeInst>(I2)->getCallingConv() && |
| 394 | CI->getAttributes().getRawPointer() == |
| 395 | cast<InvokeInst>(I2)->getAttributes().getRawPointer(); |
| 396 | if (const InsertValueInst *IVI = dyn_cast<InsertValueInst>(I1)) { |
| 397 | if (IVI->getNumIndices() != cast<InsertValueInst>(I2)->getNumIndices()) |
| 398 | return false; |
| 399 | for (unsigned i = 0, e = IVI->getNumIndices(); i != e; ++i) |
| 400 | if (IVI->idx_begin()[i] != cast<InsertValueInst>(I2)->idx_begin()[i]) |
| 401 | return false; |
| 402 | return true; |
| 403 | } |
| 404 | if (const ExtractValueInst *EVI = dyn_cast<ExtractValueInst>(I1)) { |
| 405 | if (EVI->getNumIndices() != cast<ExtractValueInst>(I2)->getNumIndices()) |
| 406 | return false; |
| 407 | for (unsigned i = 0, e = EVI->getNumIndices(); i != e; ++i) |
| 408 | if (EVI->idx_begin()[i] != cast<ExtractValueInst>(I2)->idx_begin()[i]) |
| 409 | return false; |
| 410 | return true; |
| 411 | } |
| 412 | |
| 413 | return true; |
Nick Lewycky | 579a024 | 2008-11-02 05:52:50 +0000 | [diff] [blame] | 414 | } |
| 415 | |
Nick Lewycky | 78d4330 | 2010-08-02 05:23:03 +0000 | [diff] [blame] | 416 | /// isEquivalentGEP - determine whether two GEP operations perform the same |
| 417 | /// underlying arithmetic. |
| 418 | bool FunctionComparator::isEquivalentGEP(const GEPOperator *GEP1, |
| 419 | const GEPOperator *GEP2) { |
| 420 | // When we have target data, we can reduce the GEP down to the value in bytes |
| 421 | // added to the address. |
Nick Lewycky | 33ab0b1 | 2010-05-13 05:48:45 +0000 | [diff] [blame] | 422 | if (TD && GEP1->hasAllConstantIndices() && GEP2->hasAllConstantIndices()) { |
Nick Lewycky | 78d4330 | 2010-08-02 05:23:03 +0000 | [diff] [blame] | 423 | SmallVector<Value *, 8> Indices1(GEP1->idx_begin(), GEP1->idx_end()); |
| 424 | SmallVector<Value *, 8> Indices2(GEP2->idx_begin(), GEP2->idx_end()); |
Nick Lewycky | 33ab0b1 | 2010-05-13 05:48:45 +0000 | [diff] [blame] | 425 | uint64_t Offset1 = TD->getIndexedOffset(GEP1->getPointerOperandType(), |
| 426 | Indices1.data(), Indices1.size()); |
| 427 | uint64_t Offset2 = TD->getIndexedOffset(GEP2->getPointerOperandType(), |
| 428 | Indices2.data(), Indices2.size()); |
| 429 | return Offset1 == Offset2; |
Nick Lewycky | 579a024 | 2008-11-02 05:52:50 +0000 | [diff] [blame] | 430 | } |
| 431 | |
Nick Lewycky | 33ab0b1 | 2010-05-13 05:48:45 +0000 | [diff] [blame] | 432 | if (GEP1->getPointerOperand()->getType() != |
| 433 | GEP2->getPointerOperand()->getType()) |
| 434 | return false; |
| 435 | |
| 436 | if (GEP1->getNumOperands() != GEP2->getNumOperands()) |
| 437 | return false; |
| 438 | |
| 439 | for (unsigned i = 0, e = GEP1->getNumOperands(); i != e; ++i) { |
Nick Lewycky | 78d4330 | 2010-08-02 05:23:03 +0000 | [diff] [blame] | 440 | if (!Enumerate(GEP1->getOperand(i), GEP2->getOperand(i))) |
Nick Lewycky | 33ab0b1 | 2010-05-13 05:48:45 +0000 | [diff] [blame] | 441 | return false; |
| 442 | } |
| 443 | |
| 444 | return true; |
Nick Lewycky | 579a024 | 2008-11-02 05:52:50 +0000 | [diff] [blame] | 445 | } |
| 446 | |
Nick Lewycky | 78d4330 | 2010-08-02 05:23:03 +0000 | [diff] [blame] | 447 | /// Enumerate - Compare two values used by the two functions under pair-wise |
| 448 | /// comparison. If this is the first time the values are seen, they're added to |
| 449 | /// the mapping so that we will detect mismatches on next use. |
| 450 | bool FunctionComparator::Enumerate(const Value *V1, const Value *V2) { |
| 451 | // Check for function @f1 referring to itself and function @f2 referring to |
| 452 | // itself, or referring to each other, or both referring to either of them. |
| 453 | // They're all equivalent if the two functions are otherwise equivalent. |
Nick Lewycky | c9dcbed | 2010-08-06 07:21:30 +0000 | [diff] [blame] | 454 | if (V1 == F1 && V2 == F2) |
| 455 | return true; |
| 456 | if (V1 == F2 && V2 == F1) |
| 457 | return true; |
Nick Lewycky | 579a024 | 2008-11-02 05:52:50 +0000 | [diff] [blame] | 458 | |
Nick Lewycky | 78d4330 | 2010-08-02 05:23:03 +0000 | [diff] [blame] | 459 | // TODO: constant expressions with GEP or references to F1 or F2. |
Nick Lewycky | 33ab0b1 | 2010-05-13 05:48:45 +0000 | [diff] [blame] | 460 | if (isa<Constant>(V1)) |
| 461 | return V1 == V2; |
| 462 | |
| 463 | if (isa<InlineAsm>(V1) && isa<InlineAsm>(V2)) { |
| 464 | const InlineAsm *IA1 = cast<InlineAsm>(V1); |
| 465 | const InlineAsm *IA2 = cast<InlineAsm>(V2); |
| 466 | return IA1->getAsmString() == IA2->getAsmString() && |
| 467 | IA1->getConstraintString() == IA2->getConstraintString(); |
| 468 | } |
| 469 | |
Nick Lewycky | 33ab0b1 | 2010-05-13 05:48:45 +0000 | [diff] [blame] | 470 | unsigned long &ID1 = Map1[V1]; |
| 471 | if (!ID1) |
Nick Lewycky | c9dcbed | 2010-08-06 07:21:30 +0000 | [diff] [blame] | 472 | ID1 = ++IDMap1Count; |
Nick Lewycky | 33ab0b1 | 2010-05-13 05:48:45 +0000 | [diff] [blame] | 473 | |
Nick Lewycky | 33ab0b1 | 2010-05-13 05:48:45 +0000 | [diff] [blame] | 474 | unsigned long &ID2 = Map2[V2]; |
| 475 | if (!ID2) |
Nick Lewycky | c9dcbed | 2010-08-06 07:21:30 +0000 | [diff] [blame] | 476 | ID2 = ++IDMap2Count; |
Nick Lewycky | 33ab0b1 | 2010-05-13 05:48:45 +0000 | [diff] [blame] | 477 | |
| 478 | return ID1 == ID2; |
| 479 | } |
| 480 | |
Nick Lewycky | be04fde | 2010-08-08 05:04:23 +0000 | [diff] [blame] | 481 | /// Compare - test whether two basic blocks have equivalent behaviour. |
Nick Lewycky | 78d4330 | 2010-08-02 05:23:03 +0000 | [diff] [blame] | 482 | bool FunctionComparator::Compare(const BasicBlock *BB1, const BasicBlock *BB2) { |
| 483 | BasicBlock::const_iterator F1I = BB1->begin(), F1E = BB1->end(); |
| 484 | BasicBlock::const_iterator F2I = BB2->begin(), F2E = BB2->end(); |
Nick Lewycky | 579a024 | 2008-11-02 05:52:50 +0000 | [diff] [blame] | 485 | |
| 486 | do { |
Nick Lewycky | 78d4330 | 2010-08-02 05:23:03 +0000 | [diff] [blame] | 487 | if (!Enumerate(F1I, F2I)) |
Nick Lewycky | 579a024 | 2008-11-02 05:52:50 +0000 | [diff] [blame] | 488 | return false; |
| 489 | |
Nick Lewycky | 78d4330 | 2010-08-02 05:23:03 +0000 | [diff] [blame] | 490 | if (const GetElementPtrInst *GEP1 = dyn_cast<GetElementPtrInst>(F1I)) { |
| 491 | const GetElementPtrInst *GEP2 = dyn_cast<GetElementPtrInst>(F2I); |
| 492 | if (!GEP2) |
| 493 | return false; |
Nick Lewycky | a142c93 | 2009-06-13 19:09:52 +0000 | [diff] [blame] | 494 | |
Nick Lewycky | 78d4330 | 2010-08-02 05:23:03 +0000 | [diff] [blame] | 495 | if (!Enumerate(GEP1->getPointerOperand(), GEP2->getPointerOperand())) |
Nick Lewycky | 911ae39 | 2010-05-13 06:45:13 +0000 | [diff] [blame] | 496 | return false; |
Nick Lewycky | a142c93 | 2009-06-13 19:09:52 +0000 | [diff] [blame] | 497 | |
Nick Lewycky | 33ab0b1 | 2010-05-13 05:48:45 +0000 | [diff] [blame] | 498 | if (!isEquivalentGEP(GEP1, GEP2)) |
Nick Lewycky | 911ae39 | 2010-05-13 06:45:13 +0000 | [diff] [blame] | 499 | return false; |
Nick Lewycky | 33ab0b1 | 2010-05-13 05:48:45 +0000 | [diff] [blame] | 500 | } else { |
Nick Lewycky | 78d4330 | 2010-08-02 05:23:03 +0000 | [diff] [blame] | 501 | if (!isEquivalentOperation(F1I, F2I)) |
Nick Lewycky | 579a024 | 2008-11-02 05:52:50 +0000 | [diff] [blame] | 502 | return false; |
| 503 | |
Nick Lewycky | 78d4330 | 2010-08-02 05:23:03 +0000 | [diff] [blame] | 504 | assert(F1I->getNumOperands() == F2I->getNumOperands()); |
| 505 | for (unsigned i = 0, e = F1I->getNumOperands(); i != e; ++i) { |
| 506 | Value *OpF1 = F1I->getOperand(i); |
| 507 | Value *OpF2 = F2I->getOperand(i); |
Nick Lewycky | 579a024 | 2008-11-02 05:52:50 +0000 | [diff] [blame] | 508 | |
Nick Lewycky | 78d4330 | 2010-08-02 05:23:03 +0000 | [diff] [blame] | 509 | if (!Enumerate(OpF1, OpF2)) |
Nick Lewycky | 911ae39 | 2010-05-13 06:45:13 +0000 | [diff] [blame] | 510 | return false; |
Nick Lewycky | 33ab0b1 | 2010-05-13 05:48:45 +0000 | [diff] [blame] | 511 | |
Nick Lewycky | 78d4330 | 2010-08-02 05:23:03 +0000 | [diff] [blame] | 512 | if (OpF1->getValueID() != OpF2->getValueID() || |
| 513 | !isEquivalentType(OpF1->getType(), OpF2->getType())) |
Nick Lewycky | 579a024 | 2008-11-02 05:52:50 +0000 | [diff] [blame] | 514 | return false; |
| 515 | } |
Nick Lewycky | 579a024 | 2008-11-02 05:52:50 +0000 | [diff] [blame] | 516 | } |
| 517 | |
Nick Lewycky | 78d4330 | 2010-08-02 05:23:03 +0000 | [diff] [blame] | 518 | ++F1I, ++F2I; |
| 519 | } while (F1I != F1E && F2I != F2E); |
Nick Lewycky | 579a024 | 2008-11-02 05:52:50 +0000 | [diff] [blame] | 520 | |
Nick Lewycky | 78d4330 | 2010-08-02 05:23:03 +0000 | [diff] [blame] | 521 | return F1I == F1E && F2I == F2E; |
Nick Lewycky | 579a024 | 2008-11-02 05:52:50 +0000 | [diff] [blame] | 522 | } |
| 523 | |
Nick Lewycky | be04fde | 2010-08-08 05:04:23 +0000 | [diff] [blame] | 524 | /// Compare - test whether the two functions have equivalent behaviour. |
Nick Lewycky | 78d4330 | 2010-08-02 05:23:03 +0000 | [diff] [blame] | 525 | bool FunctionComparator::Compare() { |
Nick Lewycky | 579a024 | 2008-11-02 05:52:50 +0000 | [diff] [blame] | 526 | // We need to recheck everything, but check the things that weren't included |
| 527 | // in the hash first. |
| 528 | |
Nick Lewycky | 78d4330 | 2010-08-02 05:23:03 +0000 | [diff] [blame] | 529 | if (F1->getAttributes() != F2->getAttributes()) |
Nick Lewycky | 579a024 | 2008-11-02 05:52:50 +0000 | [diff] [blame] | 530 | return false; |
| 531 | |
Nick Lewycky | 78d4330 | 2010-08-02 05:23:03 +0000 | [diff] [blame] | 532 | if (F1->hasGC() != F2->hasGC()) |
Nick Lewycky | 579a024 | 2008-11-02 05:52:50 +0000 | [diff] [blame] | 533 | return false; |
| 534 | |
Nick Lewycky | 78d4330 | 2010-08-02 05:23:03 +0000 | [diff] [blame] | 535 | if (F1->hasGC() && F1->getGC() != F2->getGC()) |
Nick Lewycky | 579a024 | 2008-11-02 05:52:50 +0000 | [diff] [blame] | 536 | return false; |
| 537 | |
Nick Lewycky | 78d4330 | 2010-08-02 05:23:03 +0000 | [diff] [blame] | 538 | if (F1->hasSection() != F2->hasSection()) |
Nick Lewycky | 579a024 | 2008-11-02 05:52:50 +0000 | [diff] [blame] | 539 | return false; |
| 540 | |
Nick Lewycky | 78d4330 | 2010-08-02 05:23:03 +0000 | [diff] [blame] | 541 | if (F1->hasSection() && F1->getSection() != F2->getSection()) |
Nick Lewycky | 579a024 | 2008-11-02 05:52:50 +0000 | [diff] [blame] | 542 | return false; |
| 543 | |
Nick Lewycky | 78d4330 | 2010-08-02 05:23:03 +0000 | [diff] [blame] | 544 | if (F1->isVarArg() != F2->isVarArg()) |
Nick Lewycky | 287de60 | 2009-06-12 08:04:51 +0000 | [diff] [blame] | 545 | return false; |
| 546 | |
Nick Lewycky | 579a024 | 2008-11-02 05:52:50 +0000 | [diff] [blame] | 547 | // TODO: if it's internal and only used in direct calls, we could handle this |
| 548 | // case too. |
Nick Lewycky | 78d4330 | 2010-08-02 05:23:03 +0000 | [diff] [blame] | 549 | if (F1->getCallingConv() != F2->getCallingConv()) |
Nick Lewycky | 579a024 | 2008-11-02 05:52:50 +0000 | [diff] [blame] | 550 | return false; |
| 551 | |
Nick Lewycky | 78d4330 | 2010-08-02 05:23:03 +0000 | [diff] [blame] | 552 | if (!isEquivalentType(F1->getFunctionType(), F2->getFunctionType())) |
Nick Lewycky | 579a024 | 2008-11-02 05:52:50 +0000 | [diff] [blame] | 553 | return false; |
| 554 | |
Nick Lewycky | 78d4330 | 2010-08-02 05:23:03 +0000 | [diff] [blame] | 555 | assert(F1->arg_size() == F2->arg_size() && |
Nick Lewycky | 2b6c01b | 2010-09-07 01:42:10 +0000 | [diff] [blame] | 556 | "Identically typed functions have different numbers of args!"); |
Nick Lewycky | 579a024 | 2008-11-02 05:52:50 +0000 | [diff] [blame] | 557 | |
Nick Lewycky | 33ab0b1 | 2010-05-13 05:48:45 +0000 | [diff] [blame] | 558 | // Visit the arguments so that they get enumerated in the order they're |
| 559 | // passed in. |
Nick Lewycky | 78d4330 | 2010-08-02 05:23:03 +0000 | [diff] [blame] | 560 | for (Function::const_arg_iterator f1i = F1->arg_begin(), |
| 561 | f2i = F2->arg_begin(), f1e = F1->arg_end(); f1i != f1e; ++f1i, ++f2i) { |
| 562 | if (!Enumerate(f1i, f2i)) |
Nick Lewycky | 2b6c01b | 2010-09-07 01:42:10 +0000 | [diff] [blame] | 563 | llvm_unreachable("Arguments repeat!"); |
Nick Lewycky | 579a024 | 2008-11-02 05:52:50 +0000 | [diff] [blame] | 564 | } |
| 565 | |
Nick Lewycky | be04fde | 2010-08-08 05:04:23 +0000 | [diff] [blame] | 566 | // We do a CFG-ordered walk since the actual ordering of the blocks in the |
| 567 | // linked list is immaterial. Our walk starts at the entry block for both |
Nick Lewycky | 78d4330 | 2010-08-02 05:23:03 +0000 | [diff] [blame] | 568 | // functions, then takes each block from each terminator in order. As an |
| 569 | // artifact, this also means that unreachable blocks are ignored. |
| 570 | SmallVector<const BasicBlock *, 8> F1BBs, F2BBs; |
| 571 | SmallSet<const BasicBlock *, 128> VisitedBBs; // in terms of F1. |
Nick Lewycky | c9dcbed | 2010-08-06 07:21:30 +0000 | [diff] [blame] | 572 | |
Nick Lewycky | 78d4330 | 2010-08-02 05:23:03 +0000 | [diff] [blame] | 573 | F1BBs.push_back(&F1->getEntryBlock()); |
| 574 | F2BBs.push_back(&F2->getEntryBlock()); |
Nick Lewycky | c9dcbed | 2010-08-06 07:21:30 +0000 | [diff] [blame] | 575 | |
Nick Lewycky | 78d4330 | 2010-08-02 05:23:03 +0000 | [diff] [blame] | 576 | VisitedBBs.insert(F1BBs[0]); |
| 577 | while (!F1BBs.empty()) { |
| 578 | const BasicBlock *F1BB = F1BBs.pop_back_val(); |
| 579 | const BasicBlock *F2BB = F2BBs.pop_back_val(); |
Nick Lewycky | c9dcbed | 2010-08-06 07:21:30 +0000 | [diff] [blame] | 580 | |
Nick Lewycky | 78d4330 | 2010-08-02 05:23:03 +0000 | [diff] [blame] | 581 | if (!Enumerate(F1BB, F2BB) || !Compare(F1BB, F2BB)) |
Nick Lewycky | 33ab0b1 | 2010-05-13 05:48:45 +0000 | [diff] [blame] | 582 | return false; |
Nick Lewycky | c9dcbed | 2010-08-06 07:21:30 +0000 | [diff] [blame] | 583 | |
Nick Lewycky | 78d4330 | 2010-08-02 05:23:03 +0000 | [diff] [blame] | 584 | const TerminatorInst *F1TI = F1BB->getTerminator(); |
| 585 | const TerminatorInst *F2TI = F2BB->getTerminator(); |
Nick Lewycky | c9dcbed | 2010-08-06 07:21:30 +0000 | [diff] [blame] | 586 | |
Nick Lewycky | 78d4330 | 2010-08-02 05:23:03 +0000 | [diff] [blame] | 587 | assert(F1TI->getNumSuccessors() == F2TI->getNumSuccessors()); |
| 588 | for (unsigned i = 0, e = F1TI->getNumSuccessors(); i != e; ++i) { |
| 589 | if (!VisitedBBs.insert(F1TI->getSuccessor(i))) |
Nick Lewycky | 911ae39 | 2010-05-13 06:45:13 +0000 | [diff] [blame] | 590 | continue; |
Nick Lewycky | c9dcbed | 2010-08-06 07:21:30 +0000 | [diff] [blame] | 591 | |
Nick Lewycky | 78d4330 | 2010-08-02 05:23:03 +0000 | [diff] [blame] | 592 | F1BBs.push_back(F1TI->getSuccessor(i)); |
| 593 | F2BBs.push_back(F2TI->getSuccessor(i)); |
Nick Lewycky | 33ab0b1 | 2010-05-13 05:48:45 +0000 | [diff] [blame] | 594 | } |
| 595 | } |
Nick Lewycky | 579a024 | 2008-11-02 05:52:50 +0000 | [diff] [blame] | 596 | return true; |
| 597 | } |
| 598 | |
Nick Lewycky | b38824f | 2011-01-25 08:56:50 +0000 | [diff] [blame] | 599 | /// Replace direct callers of Old with New. |
| 600 | void MergeFunctions::replaceDirectCallers(Function *Old, Function *New) { |
| 601 | Constant *BitcastNew = ConstantExpr::getBitCast(New, Old->getType()); |
| 602 | for (Value::use_iterator UI = Old->use_begin(), UE = Old->use_end(); |
| 603 | UI != UE;) { |
| 604 | Value::use_iterator TheIter = UI; |
| 605 | ++UI; |
| 606 | CallSite CS(*TheIter); |
| 607 | if (CS && CS.isCallee(TheIter)) { |
| 608 | Remove(CS.getInstruction()->getParent()->getParent()); |
| 609 | TheIter.getUse().set(BitcastNew); |
| 610 | } |
| 611 | } |
| 612 | } |
| 613 | |
| 614 | void MergeFunctions::WriteThunkOrAlias(Function *F, Function *G) { |
| 615 | if (HasGlobalAliases && G->hasUnnamedAddr()) { |
| 616 | if (G->hasExternalLinkage() || G->hasLocalLinkage() || |
| 617 | G->hasWeakLinkage()) { |
| 618 | WriteAlias(F, G); |
| 619 | return; |
| 620 | } |
| 621 | } |
| 622 | |
| 623 | WriteThunk(F, G); |
| 624 | } |
| 625 | |
Nick Lewycky | be04fde | 2010-08-08 05:04:23 +0000 | [diff] [blame] | 626 | /// WriteThunk - Replace G with a simple tail call to bitcast(F). Also replace |
Nick Lewycky | b0104e1 | 2010-09-05 08:22:49 +0000 | [diff] [blame] | 627 | /// direct uses of G with bitcast(F). Deletes G. |
Nick Lewycky | abd6c75 | 2011-01-02 02:46:33 +0000 | [diff] [blame] | 628 | void MergeFunctions::WriteThunk(Function *F, Function *G) { |
Nick Lewycky | 33ab0b1 | 2010-05-13 05:48:45 +0000 | [diff] [blame] | 629 | if (!G->mayBeOverridden()) { |
| 630 | // Redirect direct callers of G to F. |
Nick Lewycky | b38824f | 2011-01-25 08:56:50 +0000 | [diff] [blame] | 631 | replaceDirectCallers(G, F); |
Nick Lewycky | 33ab0b1 | 2010-05-13 05:48:45 +0000 | [diff] [blame] | 632 | } |
| 633 | |
Nick Lewycky | 2b6c01b | 2010-09-07 01:42:10 +0000 | [diff] [blame] | 634 | // If G was internal then we may have replaced all uses of G with F. If so, |
Nick Lewycky | c9dcbed | 2010-08-06 07:21:30 +0000 | [diff] [blame] | 635 | // stop here and delete G. There's no need for a thunk. |
| 636 | if (G->hasLocalLinkage() && G->use_empty()) { |
| 637 | G->eraseFromParent(); |
| 638 | return; |
| 639 | } |
| 640 | |
Nick Lewycky | 8728d7a | 2009-06-12 15:56:56 +0000 | [diff] [blame] | 641 | Function *NewG = Function::Create(G->getFunctionType(), G->getLinkage(), "", |
| 642 | G->getParent()); |
Owen Anderson | 1d0be15 | 2009-08-13 21:58:54 +0000 | [diff] [blame] | 643 | BasicBlock *BB = BasicBlock::Create(F->getContext(), "", NewG); |
Nick Lewycky | be04fde | 2010-08-08 05:04:23 +0000 | [diff] [blame] | 644 | IRBuilder<false> Builder(BB); |
Nick Lewycky | 287de60 | 2009-06-12 08:04:51 +0000 | [diff] [blame] | 645 | |
Nick Lewycky | 33ab0b1 | 2010-05-13 05:48:45 +0000 | [diff] [blame] | 646 | SmallVector<Value *, 16> Args; |
Nick Lewycky | 287de60 | 2009-06-12 08:04:51 +0000 | [diff] [blame] | 647 | unsigned i = 0; |
| 648 | const FunctionType *FFTy = F->getFunctionType(); |
| 649 | for (Function::arg_iterator AI = NewG->arg_begin(), AE = NewG->arg_end(); |
| 650 | AI != AE; ++AI) { |
Nick Lewycky | be04fde | 2010-08-08 05:04:23 +0000 | [diff] [blame] | 651 | Args.push_back(Builder.CreateBitCast(AI, FFTy->getParamType(i))); |
Nick Lewycky | 287de60 | 2009-06-12 08:04:51 +0000 | [diff] [blame] | 652 | ++i; |
| 653 | } |
| 654 | |
Nick Lewycky | be04fde | 2010-08-08 05:04:23 +0000 | [diff] [blame] | 655 | CallInst *CI = Builder.CreateCall(F, Args.begin(), Args.end()); |
Nick Lewycky | 287de60 | 2009-06-12 08:04:51 +0000 | [diff] [blame] | 656 | CI->setTailCall(); |
Nick Lewycky | b3c36c9 | 2009-06-12 16:04:00 +0000 | [diff] [blame] | 657 | CI->setCallingConv(F->getCallingConv()); |
Benjamin Kramer | f012705 | 2010-01-05 13:12:22 +0000 | [diff] [blame] | 658 | if (NewG->getReturnType()->isVoidTy()) { |
Nick Lewycky | be04fde | 2010-08-08 05:04:23 +0000 | [diff] [blame] | 659 | Builder.CreateRetVoid(); |
Nick Lewycky | 287de60 | 2009-06-12 08:04:51 +0000 | [diff] [blame] | 660 | } else { |
Nick Lewycky | be04fde | 2010-08-08 05:04:23 +0000 | [diff] [blame] | 661 | Builder.CreateRet(Builder.CreateBitCast(CI, NewG->getReturnType())); |
Nick Lewycky | 287de60 | 2009-06-12 08:04:51 +0000 | [diff] [blame] | 662 | } |
| 663 | |
| 664 | NewG->copyAttributesFrom(G); |
| 665 | NewG->takeName(G); |
Nick Lewycky | abd6c75 | 2011-01-02 02:46:33 +0000 | [diff] [blame] | 666 | RemoveUsers(G); |
Nick Lewycky | 287de60 | 2009-06-12 08:04:51 +0000 | [diff] [blame] | 667 | G->replaceAllUsesWith(NewG); |
| 668 | G->eraseFromParent(); |
Nick Lewycky | 2b6c01b | 2010-09-07 01:42:10 +0000 | [diff] [blame] | 669 | |
| 670 | DEBUG(dbgs() << "WriteThunk: " << NewG->getName() << '\n'); |
| 671 | ++NumThunksWritten; |
Nick Lewycky | 287de60 | 2009-06-12 08:04:51 +0000 | [diff] [blame] | 672 | } |
| 673 | |
Nick Lewycky | b38824f | 2011-01-25 08:56:50 +0000 | [diff] [blame] | 674 | /// WriteAlias - Replace G with an alias to F and delete G. |
| 675 | void MergeFunctions::WriteAlias(Function *F, Function *G) { |
| 676 | Constant *BitcastF = ConstantExpr::getBitCast(F, G->getType()); |
| 677 | GlobalAlias *GA = new GlobalAlias(G->getType(), G->getLinkage(), "", |
| 678 | BitcastF, G->getParent()); |
| 679 | F->setAlignment(std::max(F->getAlignment(), G->getAlignment())); |
| 680 | GA->takeName(G); |
| 681 | GA->setVisibility(G->getVisibility()); |
| 682 | RemoveUsers(G); |
| 683 | G->replaceAllUsesWith(GA); |
| 684 | G->eraseFromParent(); |
| 685 | |
| 686 | DEBUG(dbgs() << "WriteAlias: " << GA->getName() << '\n'); |
| 687 | ++NumAliasesWritten; |
| 688 | } |
| 689 | |
Nick Lewycky | be04fde | 2010-08-08 05:04:23 +0000 | [diff] [blame] | 690 | /// MergeTwoFunctions - Merge two equivalent functions. Upon completion, |
Nick Lewycky | f53de86 | 2010-08-31 05:53:05 +0000 | [diff] [blame] | 691 | /// Function G is deleted. |
Nick Lewycky | abd6c75 | 2011-01-02 02:46:33 +0000 | [diff] [blame] | 692 | void MergeFunctions::MergeTwoFunctions(Function *F, Function *G) { |
Nick Lewycky | 2b6c01b | 2010-09-07 01:42:10 +0000 | [diff] [blame] | 693 | if (F->mayBeOverridden()) { |
| 694 | assert(G->mayBeOverridden()); |
Nick Lewycky | 33ab0b1 | 2010-05-13 05:48:45 +0000 | [diff] [blame] | 695 | |
Nick Lewycky | b38824f | 2011-01-25 08:56:50 +0000 | [diff] [blame] | 696 | if (HasGlobalAliases) { |
| 697 | // Make them both thunks to the same internal function. |
| 698 | Function *H = Function::Create(F->getFunctionType(), F->getLinkage(), "", |
| 699 | F->getParent()); |
| 700 | H->copyAttributesFrom(F); |
| 701 | H->takeName(F); |
| 702 | RemoveUsers(F); |
| 703 | F->replaceAllUsesWith(H); |
Nick Lewycky | 33ab0b1 | 2010-05-13 05:48:45 +0000 | [diff] [blame] | 704 | |
Nick Lewycky | b38824f | 2011-01-25 08:56:50 +0000 | [diff] [blame] | 705 | unsigned MaxAlignment = std::max(G->getAlignment(), H->getAlignment()); |
Nick Lewycky | 3221834 | 2010-08-09 21:03:28 +0000 | [diff] [blame] | 706 | |
Nick Lewycky | b38824f | 2011-01-25 08:56:50 +0000 | [diff] [blame] | 707 | WriteAlias(F, G); |
| 708 | WriteAlias(F, H); |
Nick Lewycky | 33ab0b1 | 2010-05-13 05:48:45 +0000 | [diff] [blame] | 709 | |
Nick Lewycky | b38824f | 2011-01-25 08:56:50 +0000 | [diff] [blame] | 710 | F->setAlignment(MaxAlignment); |
| 711 | F->setLinkage(GlobalValue::PrivateLinkage); |
| 712 | } else { |
| 713 | // We can't merge them. Instead, pick one and update all direct callers |
| 714 | // to call it and hope that we improve the instruction cache hit rate. |
| 715 | replaceDirectCallers(G, F); |
| 716 | } |
Nick Lewycky | 2b6c01b | 2010-09-07 01:42:10 +0000 | [diff] [blame] | 717 | |
| 718 | ++NumDoubleWeak; |
Nick Lewycky | c9dcbed | 2010-08-06 07:21:30 +0000 | [diff] [blame] | 719 | } else { |
Nick Lewycky | b38824f | 2011-01-25 08:56:50 +0000 | [diff] [blame] | 720 | WriteThunkOrAlias(F, G); |
Nick Lewycky | 6feb333 | 2008-11-02 16:46:26 +0000 | [diff] [blame] | 721 | } |
| 722 | |
Nick Lewycky | 287de60 | 2009-06-12 08:04:51 +0000 | [diff] [blame] | 723 | ++NumFunctionsMerged; |
Nick Lewycky | 579a024 | 2008-11-02 05:52:50 +0000 | [diff] [blame] | 724 | } |
| 725 | |
Nick Lewycky | b0104e1 | 2010-09-05 08:22:49 +0000 | [diff] [blame] | 726 | // Insert - Insert a ComparableFunction into the FnSet, or merge it away if |
| 727 | // equal to one that's already inserted. |
Nick Lewycky | abd6c75 | 2011-01-02 02:46:33 +0000 | [diff] [blame] | 728 | bool MergeFunctions::Insert(ComparableFunction &NewF) { |
Nick Lewycky | b0104e1 | 2010-09-05 08:22:49 +0000 | [diff] [blame] | 729 | std::pair<FnSetType::iterator, bool> Result = FnSet.insert(NewF); |
| 730 | if (Result.second) |
| 731 | return false; |
Nick Lewycky | be04fde | 2010-08-08 05:04:23 +0000 | [diff] [blame] | 732 | |
Nick Lewycky | b0e1777 | 2010-09-05 09:00:32 +0000 | [diff] [blame] | 733 | const ComparableFunction &OldF = *Result.first; |
Nick Lewycky | b0104e1 | 2010-09-05 08:22:49 +0000 | [diff] [blame] | 734 | |
| 735 | // Never thunk a strong function to a weak function. |
Nick Lewycky | 2b6c01b | 2010-09-07 01:42:10 +0000 | [diff] [blame] | 736 | assert(!OldF.getFunc()->mayBeOverridden() || |
| 737 | NewF.getFunc()->mayBeOverridden()); |
Nick Lewycky | b0104e1 | 2010-09-05 08:22:49 +0000 | [diff] [blame] | 738 | |
Nick Lewycky | b0e1777 | 2010-09-05 09:00:32 +0000 | [diff] [blame] | 739 | DEBUG(dbgs() << " " << OldF.getFunc()->getName() << " == " |
| 740 | << NewF.getFunc()->getName() << '\n'); |
Nick Lewycky | b0104e1 | 2010-09-05 08:22:49 +0000 | [diff] [blame] | 741 | |
Nick Lewycky | b0e1777 | 2010-09-05 09:00:32 +0000 | [diff] [blame] | 742 | Function *DeleteF = NewF.getFunc(); |
| 743 | NewF.release(); |
| 744 | MergeTwoFunctions(OldF.getFunc(), DeleteF); |
Nick Lewycky | b0104e1 | 2010-09-05 08:22:49 +0000 | [diff] [blame] | 745 | return true; |
Nick Lewycky | be04fde | 2010-08-08 05:04:23 +0000 | [diff] [blame] | 746 | } |
Nick Lewycky | 579a024 | 2008-11-02 05:52:50 +0000 | [diff] [blame] | 747 | |
Nick Lewycky | abd6c75 | 2011-01-02 02:46:33 +0000 | [diff] [blame] | 748 | // Remove - Remove a function from FnSet. If it was already in FnSet, add it to |
| 749 | // Deferred so that we'll look at it in the next round. |
| 750 | void MergeFunctions::Remove(Function *F) { |
| 751 | ComparableFunction CF = ComparableFunction(F, TD); |
| 752 | if (FnSet.erase(CF)) { |
| 753 | Deferred.push_back(F); |
Nick Lewycky | f53de86 | 2010-08-31 05:53:05 +0000 | [diff] [blame] | 754 | } |
Nick Lewycky | abd6c75 | 2011-01-02 02:46:33 +0000 | [diff] [blame] | 755 | } |
Nick Lewycky | b0104e1 | 2010-09-05 08:22:49 +0000 | [diff] [blame] | 756 | |
Nick Lewycky | abd6c75 | 2011-01-02 02:46:33 +0000 | [diff] [blame] | 757 | // RemoveUsers - For each instruction used by the value, Remove() the function |
| 758 | // that contains the instruction. This should happen right before a call to RAUW. |
| 759 | void MergeFunctions::RemoveUsers(Value *V) { |
Nick Lewycky | d081b04 | 2011-01-02 19:16:44 +0000 | [diff] [blame] | 760 | std::vector<Value *> Worklist; |
| 761 | Worklist.push_back(V); |
| 762 | while (!Worklist.empty()) { |
| 763 | Value *V = Worklist.back(); |
| 764 | Worklist.pop_back(); |
| 765 | |
| 766 | for (Value::use_iterator UI = V->use_begin(), UE = V->use_end(); |
| 767 | UI != UE; ++UI) { |
| 768 | Use &U = UI.getUse(); |
| 769 | if (Instruction *I = dyn_cast<Instruction>(U.getUser())) { |
| 770 | Remove(I->getParent()->getParent()); |
| 771 | } else if (isa<GlobalValue>(U.getUser())) { |
Nick Lewycky | e8f8139 | 2011-01-15 10:16:23 +0000 | [diff] [blame] | 772 | // do nothing |
Nick Lewycky | d081b04 | 2011-01-02 19:16:44 +0000 | [diff] [blame] | 773 | } else if (Constant *C = dyn_cast<Constant>(U.getUser())) { |
Nick Lewycky | e8f8139 | 2011-01-15 10:16:23 +0000 | [diff] [blame] | 774 | for (Value::use_iterator CUI = C->use_begin(), CUE = C->use_end(); |
| 775 | CUI != CUE; ++CUI) |
Nick Lewycky | d081b04 | 2011-01-02 19:16:44 +0000 | [diff] [blame] | 776 | Worklist.push_back(*CUI); |
| 777 | } |
Nick Lewycky | b0104e1 | 2010-09-05 08:22:49 +0000 | [diff] [blame] | 778 | } |
Nick Lewycky | f53de86 | 2010-08-31 05:53:05 +0000 | [diff] [blame] | 779 | } |
Nick Lewycky | b0104e1 | 2010-09-05 08:22:49 +0000 | [diff] [blame] | 780 | } |
Nick Lewycky | f53de86 | 2010-08-31 05:53:05 +0000 | [diff] [blame] | 781 | |
Nick Lewycky | 579a024 | 2008-11-02 05:52:50 +0000 | [diff] [blame] | 782 | bool MergeFunctions::runOnModule(Module &M) { |
Nick Lewycky | 65a0af3 | 2010-08-31 08:29:37 +0000 | [diff] [blame] | 783 | bool Changed = false; |
Nick Lewycky | be04fde | 2010-08-08 05:04:23 +0000 | [diff] [blame] | 784 | TD = getAnalysisIfAvailable<TargetData>(); |
Nick Lewycky | 579a024 | 2008-11-02 05:52:50 +0000 | [diff] [blame] | 785 | |
Nick Lewycky | abd6c75 | 2011-01-02 02:46:33 +0000 | [diff] [blame] | 786 | for (Module::iterator I = M.begin(), E = M.end(); I != E; ++I) { |
| 787 | Deferred.push_back(WeakVH(I)); |
| 788 | } |
| 789 | |
Nick Lewycky | 65a0af3 | 2010-08-31 08:29:37 +0000 | [diff] [blame] | 790 | do { |
Nick Lewycky | abd6c75 | 2011-01-02 02:46:33 +0000 | [diff] [blame] | 791 | std::vector<WeakVH> Worklist; |
| 792 | Deferred.swap(Worklist); |
| 793 | |
Nick Lewycky | 2b6c01b | 2010-09-07 01:42:10 +0000 | [diff] [blame] | 794 | DEBUG(dbgs() << "size of module: " << M.size() << '\n'); |
Nick Lewycky | abd6c75 | 2011-01-02 02:46:33 +0000 | [diff] [blame] | 795 | DEBUG(dbgs() << "size of worklist: " << Worklist.size() << '\n'); |
Nick Lewycky | 65a0af3 | 2010-08-31 08:29:37 +0000 | [diff] [blame] | 796 | |
Nick Lewycky | b0104e1 | 2010-09-05 08:22:49 +0000 | [diff] [blame] | 797 | // Insert only strong functions and merge them. Strong function merging |
| 798 | // always deletes one of them. |
Nick Lewycky | abd6c75 | 2011-01-02 02:46:33 +0000 | [diff] [blame] | 799 | for (std::vector<WeakVH>::iterator I = Worklist.begin(), |
| 800 | E = Worklist.end(); I != E; ++I) { |
| 801 | if (!*I) continue; |
| 802 | Function *F = cast<Function>(*I); |
Nick Lewycky | b0104e1 | 2010-09-05 08:22:49 +0000 | [diff] [blame] | 803 | if (!F->isDeclaration() && !F->hasAvailableExternallyLinkage() && |
Nick Lewycky | abd6c75 | 2011-01-02 02:46:33 +0000 | [diff] [blame] | 804 | !F->mayBeOverridden()) { |
Nick Lewycky | b0e1777 | 2010-09-05 09:00:32 +0000 | [diff] [blame] | 805 | ComparableFunction CF = ComparableFunction(F, TD); |
Nick Lewycky | abd6c75 | 2011-01-02 02:46:33 +0000 | [diff] [blame] | 806 | Changed |= Insert(CF); |
Nick Lewycky | b0104e1 | 2010-09-05 08:22:49 +0000 | [diff] [blame] | 807 | } |
| 808 | } |
Nick Lewycky | 65a0af3 | 2010-08-31 08:29:37 +0000 | [diff] [blame] | 809 | |
Nick Lewycky | b0104e1 | 2010-09-05 08:22:49 +0000 | [diff] [blame] | 810 | // Insert only weak functions and merge them. By doing these second we |
| 811 | // create thunks to the strong function when possible. When two weak |
| 812 | // functions are identical, we create a new strong function with two weak |
| 813 | // weak thunks to it which are identical but not mergable. |
Nick Lewycky | abd6c75 | 2011-01-02 02:46:33 +0000 | [diff] [blame] | 814 | for (std::vector<WeakVH>::iterator I = Worklist.begin(), |
| 815 | E = Worklist.end(); I != E; ++I) { |
| 816 | if (!*I) continue; |
| 817 | Function *F = cast<Function>(*I); |
Nick Lewycky | b0104e1 | 2010-09-05 08:22:49 +0000 | [diff] [blame] | 818 | if (!F->isDeclaration() && !F->hasAvailableExternallyLinkage() && |
Nick Lewycky | abd6c75 | 2011-01-02 02:46:33 +0000 | [diff] [blame] | 819 | F->mayBeOverridden()) { |
Nick Lewycky | b0e1777 | 2010-09-05 09:00:32 +0000 | [diff] [blame] | 820 | ComparableFunction CF = ComparableFunction(F, TD); |
Nick Lewycky | abd6c75 | 2011-01-02 02:46:33 +0000 | [diff] [blame] | 821 | Changed |= Insert(CF); |
Nick Lewycky | 65a0af3 | 2010-08-31 08:29:37 +0000 | [diff] [blame] | 822 | } |
| 823 | } |
Nick Lewycky | 2b6c01b | 2010-09-07 01:42:10 +0000 | [diff] [blame] | 824 | DEBUG(dbgs() << "size of FnSet: " << FnSet.size() << '\n'); |
Nick Lewycky | abd6c75 | 2011-01-02 02:46:33 +0000 | [diff] [blame] | 825 | } while (!Deferred.empty()); |
| 826 | |
| 827 | FnSet.clear(); |
Nick Lewycky | 65a0af3 | 2010-08-31 08:29:37 +0000 | [diff] [blame] | 828 | |
Nick Lewycky | 579a024 | 2008-11-02 05:52:50 +0000 | [diff] [blame] | 829 | return Changed; |
| 830 | } |
Nick Lewycky | b0104e1 | 2010-09-05 08:22:49 +0000 | [diff] [blame] | 831 | |
Nick Lewycky | b0e1777 | 2010-09-05 09:00:32 +0000 | [diff] [blame] | 832 | bool DenseMapInfo<ComparableFunction>::isEqual(const ComparableFunction &LHS, |
| 833 | const ComparableFunction &RHS) { |
| 834 | if (LHS.getFunc() == RHS.getFunc() && |
| 835 | LHS.getHash() == RHS.getHash()) |
Nick Lewycky | b0104e1 | 2010-09-05 08:22:49 +0000 | [diff] [blame] | 836 | return true; |
Nick Lewycky | b0e1777 | 2010-09-05 09:00:32 +0000 | [diff] [blame] | 837 | if (!LHS.getFunc() || !RHS.getFunc()) |
Nick Lewycky | b0104e1 | 2010-09-05 08:22:49 +0000 | [diff] [blame] | 838 | return false; |
Nick Lewycky | b0e1777 | 2010-09-05 09:00:32 +0000 | [diff] [blame] | 839 | assert(LHS.getTD() == RHS.getTD() && |
| 840 | "Comparing functions for different targets"); |
Nick Lewycky | e8f8139 | 2011-01-15 10:16:23 +0000 | [diff] [blame] | 841 | |
| 842 | bool inserted; |
| 843 | bool &result1 = LHS.getOrInsertCachedComparison(RHS, inserted); |
| 844 | if (!inserted) |
| 845 | return result1; |
| 846 | bool &result2 = RHS.getOrInsertCachedComparison(LHS, inserted); |
| 847 | if (!inserted) |
| 848 | return result1 = result2; |
| 849 | |
| 850 | return result1 = result2 = FunctionComparator(LHS.getTD(), LHS.getFunc(), |
| 851 | RHS.getFunc()).Compare(); |
Nick Lewycky | b0104e1 | 2010-09-05 08:22:49 +0000 | [diff] [blame] | 852 | } |