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