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