blob: 07d1376e7ae93af63e83a23da2d7aaea79b0992a [file] [log] [blame]
Nick Lewycky579a0242008-11-02 05:52:50 +00001//===- 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 Lewycky579a0242008-11-02 05:52:50 +000012// 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 Lewycky33ab0b12010-05-13 05:48:45 +000020// 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 Lewycky579a0242008-11-02 05:52:50 +000023//
24//===----------------------------------------------------------------------===//
25//
26// Future work:
27//
Nick Lewycky579a0242008-11-02 05:52:50 +000028// * 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 Lewyckybe04fde2010-08-08 05:04:23 +000032// and call, this is irrelevant, and we'd like to fold such functions.
Nick Lewycky579a0242008-11-02 05:52:50 +000033//
Nick Lewycky78d43302010-08-02 05:23:03 +000034// * switch from n^2 pair-wise comparisons to an n-way comparison for each
35// bucket.
Nick Lewycky33ab0b12010-05-13 05:48:45 +000036//
Nick Lewyckybe04fde2010-08-08 05:04:23 +000037// * be smarter about bitcasts.
Nick Lewycky33ab0b12010-05-13 05:48:45 +000038//
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 Lewyckybe04fde2010-08-08 05:04:23 +000042// other doesn't. We should learn to look through bitcasts.
Nick Lewycky33ab0b12010-05-13 05:48:45 +000043//
Nick Lewycky579a0242008-11-02 05:52:50 +000044//===----------------------------------------------------------------------===//
45
46#define DEBUG_TYPE "mergefunc"
47#include "llvm/Transforms/IPO.h"
Nick Lewyckyf53de862010-08-31 05:53:05 +000048#include "llvm/ADT/DenseSet.h"
Nick Lewycky287de602009-06-12 08:04:51 +000049#include "llvm/ADT/FoldingSet.h"
Nick Lewycky33ab0b12010-05-13 05:48:45 +000050#include "llvm/ADT/SmallSet.h"
Nick Lewycky579a0242008-11-02 05:52:50 +000051#include "llvm/ADT/Statistic.h"
Nick Lewyckyf53de862010-08-31 05:53:05 +000052#include "llvm/ADT/STLExtras.h"
Nick Lewycky579a0242008-11-02 05:52:50 +000053#include "llvm/Constants.h"
54#include "llvm/InlineAsm.h"
55#include "llvm/Instructions.h"
Owen Anderson14ce9ef2009-07-06 01:34:54 +000056#include "llvm/LLVMContext.h"
Nick Lewycky579a0242008-11-02 05:52:50 +000057#include "llvm/Module.h"
58#include "llvm/Pass.h"
Nick Lewycky6feb3332008-11-02 16:46:26 +000059#include "llvm/Support/CallSite.h"
Nick Lewycky579a0242008-11-02 05:52:50 +000060#include "llvm/Support/Debug.h"
Torok Edwinc25e7582009-07-11 20:10:48 +000061#include "llvm/Support/ErrorHandling.h"
Nick Lewyckybe04fde2010-08-08 05:04:23 +000062#include "llvm/Support/IRBuilder.h"
Nick Lewyckyf53de862010-08-31 05:53:05 +000063#include "llvm/Support/ValueHandle.h"
Daniel Dunbarce63ffb2009-07-25 00:23:56 +000064#include "llvm/Support/raw_ostream.h"
Nick Lewycky33ab0b12010-05-13 05:48:45 +000065#include "llvm/Target/TargetData.h"
Nick Lewycky65a0af32010-08-31 08:29:37 +000066#include <vector>
Nick Lewycky579a0242008-11-02 05:52:50 +000067using namespace llvm;
68
69STATISTIC(NumFunctionsMerged, "Number of functions merged");
Nick Lewycky2b6c01b2010-09-07 01:42:10 +000070STATISTIC(NumThunksWritten, "Number of thunks generated");
Nick Lewyckyb38824f2011-01-25 08:56:50 +000071STATISTIC(NumAliasesWritten, "Number of aliases generated");
Nick Lewycky2b6c01b2010-09-07 01:42:10 +000072STATISTIC(NumDoubleWeak, "Number of new functions created");
Nick Lewycky579a0242008-11-02 05:52:50 +000073
Nick Lewycky2b6c01b2010-09-07 01:42:10 +000074/// 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 Lewyckyb0104e12010-09-05 08:22:49 +000077static unsigned ProfileFunction(const Function *F) {
78 const FunctionType *FTy = F->getFunctionType();
Nick Lewyckybe04fde2010-08-08 05:04:23 +000079
Nick Lewyckyb0104e12010-09-05 08:22:49 +000080 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 Lewycky579a0242008-11-02 05:52:50 +000089}
90
Nick Lewycky2b6c01b2010-09-07 01:42:10 +000091namespace {
92
Nick Lewycky8b596432011-01-28 08:19:00 +000093/// ComparableFunction - A struct that pairs together functions with a
94/// TargetData so that we can keep them together as elements in the DenseSet.
Nick Lewyckyb0104e12010-09-05 08:22:49 +000095class ComparableFunction {
96public:
Nick Lewyckyb0e17772010-09-05 09:00:32 +000097 static const ComparableFunction EmptyKey;
98 static const ComparableFunction TombstoneKey;
99
Nick Lewyckyb0104e12010-09-05 08:22:49 +0000100 ComparableFunction(Function *Func, TargetData *TD)
101 : Func(Func), Hash(ProfileFunction(Func)), TD(TD) {}
102
Nick Lewyckyb0e17772010-09-05 09:00:32 +0000103 Function *getFunc() const { return Func; }
104 unsigned getHash() const { return Hash; }
105 TargetData *getTD() const { return TD; }
106
107 // Drops AssertingVH reference to the function. Outside of debug mode, this
108 // does nothing.
109 void release() {
110 assert(Func &&
111 "Attempted to release function twice, or release empty/tombstone!");
112 Func = NULL;
113 }
114
Nick Lewyckye8f81392011-01-15 10:16:23 +0000115 bool &getOrInsertCachedComparison(const ComparableFunction &Other,
116 bool &inserted) const {
117 typedef DenseMap<Function *, bool>::iterator iterator;
118 std::pair<iterator, bool> p =
119 CompareResultCache.insert(std::make_pair(Other.getFunc(), false));
120 inserted = p.second;
121 return p.first->second;
122 }
123
Nick Lewyckyb0e17772010-09-05 09:00:32 +0000124private:
125 explicit ComparableFunction(unsigned Hash)
126 : Func(NULL), Hash(Hash), TD(NULL) {}
127
Nick Lewyckye8f81392011-01-15 10:16:23 +0000128 // DenseMap::grow() triggers a recomparison of all keys in the map, which is
129 // wildly expensive. This cache tries to preserve known results.
130 mutable DenseMap<Function *, bool> CompareResultCache;
131
Nick Lewyckyb0e17772010-09-05 09:00:32 +0000132 AssertingVH<Function> Func;
133 unsigned Hash;
134 TargetData *TD;
Nick Lewyckyb0104e12010-09-05 08:22:49 +0000135};
136
Nick Lewyckyb0e17772010-09-05 09:00:32 +0000137const ComparableFunction ComparableFunction::EmptyKey = ComparableFunction(0);
138const ComparableFunction ComparableFunction::TombstoneKey =
139 ComparableFunction(1);
140
Nick Lewycky2b6c01b2010-09-07 01:42:10 +0000141}
Nick Lewyckyb0e17772010-09-05 09:00:32 +0000142
143namespace llvm {
144 template <>
145 struct DenseMapInfo<ComparableFunction> {
146 static ComparableFunction getEmptyKey() {
147 return ComparableFunction::EmptyKey;
148 }
149 static ComparableFunction getTombstoneKey() {
150 return ComparableFunction::TombstoneKey;
151 }
152 static unsigned getHashValue(const ComparableFunction &CF) {
153 return CF.getHash();
154 }
155 static bool isEqual(const ComparableFunction &LHS,
156 const ComparableFunction &RHS);
157 };
158}
159
160namespace {
Nick Lewyckyb0104e12010-09-05 08:22:49 +0000161
Nick Lewyckybe04fde2010-08-08 05:04:23 +0000162/// FunctionComparator - Compares two functions to determine whether or not
163/// they will generate machine code with the same behaviour. TargetData is
164/// used if available. The comparator always fails conservatively (erring on the
165/// side of claiming that two functions are different).
Nick Lewycky78d43302010-08-02 05:23:03 +0000166class FunctionComparator {
167public:
Nick Lewyckyf53de862010-08-31 05:53:05 +0000168 FunctionComparator(const TargetData *TD, const Function *F1,
169 const Function *F2)
Nick Lewyckyc9dcbed2010-08-06 07:21:30 +0000170 : F1(F1), F2(F2), TD(TD), IDMap1Count(0), IDMap2Count(0) {}
Nick Lewycky287de602009-06-12 08:04:51 +0000171
Nick Lewyckybe04fde2010-08-08 05:04:23 +0000172 /// Compare - test whether the two functions have equivalent behaviour.
Nick Lewycky78d43302010-08-02 05:23:03 +0000173 bool Compare();
174
175private:
Nick Lewyckybe04fde2010-08-08 05:04:23 +0000176 /// Compare - test whether two basic blocks have equivalent behaviour.
Nick Lewycky78d43302010-08-02 05:23:03 +0000177 bool Compare(const BasicBlock *BB1, const BasicBlock *BB2);
178
Nick Lewyckybe04fde2010-08-08 05:04:23 +0000179 /// Enumerate - Assign or look up previously assigned numbers for the two
180 /// values, and return whether the numbers are equal. Numbers are assigned in
181 /// the order visited.
Nick Lewycky78d43302010-08-02 05:23:03 +0000182 bool Enumerate(const Value *V1, const Value *V2);
183
Nick Lewyckybe04fde2010-08-08 05:04:23 +0000184 /// isEquivalentOperation - Compare two Instructions for equivalence, similar
185 /// to Instruction::isSameOperationAs but with modifications to the type
186 /// comparison.
Nick Lewycky78d43302010-08-02 05:23:03 +0000187 bool isEquivalentOperation(const Instruction *I1,
188 const Instruction *I2) const;
189
Nick Lewyckybe04fde2010-08-08 05:04:23 +0000190 /// isEquivalentGEP - Compare two GEPs for equivalent pointer arithmetic.
Nick Lewycky78d43302010-08-02 05:23:03 +0000191 bool isEquivalentGEP(const GEPOperator *GEP1, const GEPOperator *GEP2);
192 bool isEquivalentGEP(const GetElementPtrInst *GEP1,
Nick Lewyckybe04fde2010-08-08 05:04:23 +0000193 const GetElementPtrInst *GEP2) {
Nick Lewycky78d43302010-08-02 05:23:03 +0000194 return isEquivalentGEP(cast<GEPOperator>(GEP1), cast<GEPOperator>(GEP2));
195 }
196
Nick Lewyckybe04fde2010-08-08 05:04:23 +0000197 /// isEquivalentType - Compare two Types, treating all pointer types as equal.
Nick Lewycky78d43302010-08-02 05:23:03 +0000198 bool isEquivalentType(const Type *Ty1, const Type *Ty2) const;
199
200 // The two functions undergoing comparison.
Nick Lewyckyf53de862010-08-31 05:53:05 +0000201 const Function *F1, *F2;
Nick Lewycky78d43302010-08-02 05:23:03 +0000202
Nick Lewyckyf53de862010-08-31 05:53:05 +0000203 const TargetData *TD;
Nick Lewycky78d43302010-08-02 05:23:03 +0000204
205 typedef DenseMap<const Value *, unsigned long> IDMap;
Nick Lewyckyc9dcbed2010-08-06 07:21:30 +0000206 IDMap Map1, Map2;
207 unsigned long IDMap1Count, IDMap2Count;
Nick Lewycky78d43302010-08-02 05:23:03 +0000208};
Nick Lewycky285cf802011-01-28 07:36:21 +0000209
Nick Lewycky78d43302010-08-02 05:23:03 +0000210}
211
Nick Lewyckyc9dcbed2010-08-06 07:21:30 +0000212/// isEquivalentType - any two pointers in the same address space are
213/// equivalent. Otherwise, standard type equivalence rules apply.
Nick Lewycky78d43302010-08-02 05:23:03 +0000214bool FunctionComparator::isEquivalentType(const Type *Ty1,
215 const Type *Ty2) const {
Nick Lewycky287de602009-06-12 08:04:51 +0000216 if (Ty1 == Ty2)
217 return true;
Nick Lewycky207c1932011-01-26 09:13:58 +0000218 if (Ty1->getTypeID() != Ty2->getTypeID()) {
219 if (TD) {
220 LLVMContext &Ctx = Ty1->getContext();
221 if (isa<PointerType>(Ty1) && Ty2 == TD->getIntPtrType(Ctx)) return true;
222 if (isa<PointerType>(Ty2) && Ty1 == TD->getIntPtrType(Ctx)) return true;
223 }
Nick Lewycky287de602009-06-12 08:04:51 +0000224 return false;
Nick Lewycky207c1932011-01-26 09:13:58 +0000225 }
Nick Lewycky287de602009-06-12 08:04:51 +0000226
227 switch(Ty1->getTypeID()) {
Nick Lewycky33ab0b12010-05-13 05:48:45 +0000228 default:
229 llvm_unreachable("Unknown type!");
Duncan Sands8246adc2010-07-07 07:48:00 +0000230 // Fall through in Release mode.
Nick Lewycky33ab0b12010-05-13 05:48:45 +0000231 case Type::IntegerTyID:
232 case Type::OpaqueTyID:
Nick Lewycky388f4912011-01-26 08:50:18 +0000233 case Type::VectorTyID:
Nick Lewycky33ab0b12010-05-13 05:48:45 +0000234 // Ty1 == Ty2 would have returned true earlier.
235 return false;
236
Nick Lewycky287de602009-06-12 08:04:51 +0000237 case Type::VoidTyID:
238 case Type::FloatTyID:
239 case Type::DoubleTyID:
240 case Type::X86_FP80TyID:
241 case Type::FP128TyID:
242 case Type::PPC_FP128TyID:
243 case Type::LabelTyID:
244 case Type::MetadataTyID:
245 return true;
246
Nick Lewycky287de602009-06-12 08:04:51 +0000247 case Type::PointerTyID: {
248 const PointerType *PTy1 = cast<PointerType>(Ty1);
249 const PointerType *PTy2 = cast<PointerType>(Ty2);
250 return PTy1->getAddressSpace() == PTy2->getAddressSpace();
251 }
252
253 case Type::StructTyID: {
254 const StructType *STy1 = cast<StructType>(Ty1);
255 const StructType *STy2 = cast<StructType>(Ty2);
256 if (STy1->getNumElements() != STy2->getNumElements())
257 return false;
258
259 if (STy1->isPacked() != STy2->isPacked())
260 return false;
261
262 for (unsigned i = 0, e = STy1->getNumElements(); i != e; ++i) {
263 if (!isEquivalentType(STy1->getElementType(i), STy2->getElementType(i)))
264 return false;
265 }
266 return true;
267 }
268
269 case Type::FunctionTyID: {
270 const FunctionType *FTy1 = cast<FunctionType>(Ty1);
271 const FunctionType *FTy2 = cast<FunctionType>(Ty2);
272 if (FTy1->getNumParams() != FTy2->getNumParams() ||
273 FTy1->isVarArg() != FTy2->isVarArg())
274 return false;
275
276 if (!isEquivalentType(FTy1->getReturnType(), FTy2->getReturnType()))
277 return false;
278
279 for (unsigned i = 0, e = FTy1->getNumParams(); i != e; ++i) {
280 if (!isEquivalentType(FTy1->getParamType(i), FTy2->getParamType(i)))
281 return false;
282 }
283 return true;
284 }
285
Nick Lewycky394ce412010-07-16 06:31:12 +0000286 case Type::ArrayTyID: {
287 const ArrayType *ATy1 = cast<ArrayType>(Ty1);
288 const ArrayType *ATy2 = cast<ArrayType>(Ty2);
289 return ATy1->getNumElements() == ATy2->getNumElements() &&
290 isEquivalentType(ATy1->getElementType(), ATy2->getElementType());
291 }
Nick Lewycky287de602009-06-12 08:04:51 +0000292 }
293}
294
295/// isEquivalentOperation - determine whether the two operations are the same
296/// except that pointer-to-A and pointer-to-B are equivalent. This should be
Dan Gohman194ae782009-06-12 19:03:05 +0000297/// kept in sync with Instruction::isSameOperationAs.
Nick Lewycky78d43302010-08-02 05:23:03 +0000298bool FunctionComparator::isEquivalentOperation(const Instruction *I1,
299 const Instruction *I2) const {
Nick Lewycky287de602009-06-12 08:04:51 +0000300 if (I1->getOpcode() != I2->getOpcode() ||
301 I1->getNumOperands() != I2->getNumOperands() ||
Dan Gohman58cfa3b2009-08-25 22:11:20 +0000302 !isEquivalentType(I1->getType(), I2->getType()) ||
303 !I1->hasSameSubclassOptionalData(I2))
Nick Lewycky287de602009-06-12 08:04:51 +0000304 return false;
305
306 // We have two instructions of identical opcode and #operands. Check to see
307 // if all operands are the same type
308 for (unsigned i = 0, e = I1->getNumOperands(); i != e; ++i)
309 if (!isEquivalentType(I1->getOperand(i)->getType(),
310 I2->getOperand(i)->getType()))
311 return false;
312
313 // Check special state that is a part of some instructions.
314 if (const LoadInst *LI = dyn_cast<LoadInst>(I1))
315 return LI->isVolatile() == cast<LoadInst>(I2)->isVolatile() &&
316 LI->getAlignment() == cast<LoadInst>(I2)->getAlignment();
317 if (const StoreInst *SI = dyn_cast<StoreInst>(I1))
318 return SI->isVolatile() == cast<StoreInst>(I2)->isVolatile() &&
319 SI->getAlignment() == cast<StoreInst>(I2)->getAlignment();
320 if (const CmpInst *CI = dyn_cast<CmpInst>(I1))
321 return CI->getPredicate() == cast<CmpInst>(I2)->getPredicate();
322 if (const CallInst *CI = dyn_cast<CallInst>(I1))
323 return CI->isTailCall() == cast<CallInst>(I2)->isTailCall() &&
324 CI->getCallingConv() == cast<CallInst>(I2)->getCallingConv() &&
Nick Lewyckyf6c63c22011-01-26 09:23:19 +0000325 CI->getAttributes() == cast<CallInst>(I2)->getAttributes();
Nick Lewycky287de602009-06-12 08:04:51 +0000326 if (const InvokeInst *CI = dyn_cast<InvokeInst>(I1))
327 return CI->getCallingConv() == cast<InvokeInst>(I2)->getCallingConv() &&
Nick Lewyckyf6c63c22011-01-26 09:23:19 +0000328 CI->getAttributes() == cast<InvokeInst>(I2)->getAttributes();
Nick Lewycky287de602009-06-12 08:04:51 +0000329 if (const InsertValueInst *IVI = dyn_cast<InsertValueInst>(I1)) {
330 if (IVI->getNumIndices() != cast<InsertValueInst>(I2)->getNumIndices())
331 return false;
332 for (unsigned i = 0, e = IVI->getNumIndices(); i != e; ++i)
333 if (IVI->idx_begin()[i] != cast<InsertValueInst>(I2)->idx_begin()[i])
334 return false;
335 return true;
336 }
337 if (const ExtractValueInst *EVI = dyn_cast<ExtractValueInst>(I1)) {
338 if (EVI->getNumIndices() != cast<ExtractValueInst>(I2)->getNumIndices())
339 return false;
340 for (unsigned i = 0, e = EVI->getNumIndices(); i != e; ++i)
341 if (EVI->idx_begin()[i] != cast<ExtractValueInst>(I2)->idx_begin()[i])
342 return false;
343 return true;
344 }
345
346 return true;
Nick Lewycky579a0242008-11-02 05:52:50 +0000347}
348
Nick Lewycky78d43302010-08-02 05:23:03 +0000349/// isEquivalentGEP - determine whether two GEP operations perform the same
350/// underlying arithmetic.
351bool FunctionComparator::isEquivalentGEP(const GEPOperator *GEP1,
352 const GEPOperator *GEP2) {
353 // When we have target data, we can reduce the GEP down to the value in bytes
354 // added to the address.
Nick Lewycky33ab0b12010-05-13 05:48:45 +0000355 if (TD && GEP1->hasAllConstantIndices() && GEP2->hasAllConstantIndices()) {
Nick Lewycky78d43302010-08-02 05:23:03 +0000356 SmallVector<Value *, 8> Indices1(GEP1->idx_begin(), GEP1->idx_end());
357 SmallVector<Value *, 8> Indices2(GEP2->idx_begin(), GEP2->idx_end());
Nick Lewycky33ab0b12010-05-13 05:48:45 +0000358 uint64_t Offset1 = TD->getIndexedOffset(GEP1->getPointerOperandType(),
359 Indices1.data(), Indices1.size());
360 uint64_t Offset2 = TD->getIndexedOffset(GEP2->getPointerOperandType(),
361 Indices2.data(), Indices2.size());
362 return Offset1 == Offset2;
Nick Lewycky579a0242008-11-02 05:52:50 +0000363 }
364
Nick Lewycky33ab0b12010-05-13 05:48:45 +0000365 if (GEP1->getPointerOperand()->getType() !=
366 GEP2->getPointerOperand()->getType())
367 return false;
368
369 if (GEP1->getNumOperands() != GEP2->getNumOperands())
370 return false;
371
372 for (unsigned i = 0, e = GEP1->getNumOperands(); i != e; ++i) {
Nick Lewycky78d43302010-08-02 05:23:03 +0000373 if (!Enumerate(GEP1->getOperand(i), GEP2->getOperand(i)))
Nick Lewycky33ab0b12010-05-13 05:48:45 +0000374 return false;
375 }
376
377 return true;
Nick Lewycky579a0242008-11-02 05:52:50 +0000378}
379
Nick Lewycky78d43302010-08-02 05:23:03 +0000380/// Enumerate - Compare two values used by the two functions under pair-wise
381/// comparison. If this is the first time the values are seen, they're added to
382/// the mapping so that we will detect mismatches on next use.
383bool FunctionComparator::Enumerate(const Value *V1, const Value *V2) {
384 // Check for function @f1 referring to itself and function @f2 referring to
385 // itself, or referring to each other, or both referring to either of them.
386 // They're all equivalent if the two functions are otherwise equivalent.
Nick Lewyckyc9dcbed2010-08-06 07:21:30 +0000387 if (V1 == F1 && V2 == F2)
388 return true;
389 if (V1 == F2 && V2 == F1)
390 return true;
Nick Lewycky579a0242008-11-02 05:52:50 +0000391
Benjamin Kramer9c1858c2011-01-27 20:30:54 +0000392 if (const Constant *C1 = dyn_cast<Constant>(V1)) {
Nick Lewycky25296e22011-01-27 08:38:19 +0000393 if (V1 == V2) return true;
Nick Lewycky25296e22011-01-27 08:38:19 +0000394 const Constant *C2 = dyn_cast<Constant>(V2);
395 if (!C2) return false;
396 // TODO: constant expressions with GEP or references to F1 or F2.
397 if (C1->isNullValue() && C2->isNullValue() &&
398 isEquivalentType(C1->getType(), C2->getType()))
399 return true;
Nick Lewyckyc9d69482011-01-27 19:51:31 +0000400 // Try bitcasting C2 to C1's type. If the bitcast is legal and returns C1
401 // then they must have equal bit patterns.
Nick Lewycky25296e22011-01-27 08:38:19 +0000402 return C1->getType()->canLosslesslyBitCastTo(C2->getType()) &&
403 C1 == ConstantExpr::getBitCast(const_cast<Constant*>(C2), C1->getType());
404 }
Nick Lewycky33ab0b12010-05-13 05:48:45 +0000405
406 if (isa<InlineAsm>(V1) && isa<InlineAsm>(V2)) {
407 const InlineAsm *IA1 = cast<InlineAsm>(V1);
408 const InlineAsm *IA2 = cast<InlineAsm>(V2);
409 return IA1->getAsmString() == IA2->getAsmString() &&
410 IA1->getConstraintString() == IA2->getConstraintString();
411 }
412
Nick Lewycky33ab0b12010-05-13 05:48:45 +0000413 unsigned long &ID1 = Map1[V1];
414 if (!ID1)
Nick Lewyckyc9dcbed2010-08-06 07:21:30 +0000415 ID1 = ++IDMap1Count;
Nick Lewycky33ab0b12010-05-13 05:48:45 +0000416
Nick Lewycky33ab0b12010-05-13 05:48:45 +0000417 unsigned long &ID2 = Map2[V2];
418 if (!ID2)
Nick Lewyckyc9dcbed2010-08-06 07:21:30 +0000419 ID2 = ++IDMap2Count;
Nick Lewycky33ab0b12010-05-13 05:48:45 +0000420
421 return ID1 == ID2;
422}
423
Nick Lewyckybe04fde2010-08-08 05:04:23 +0000424/// Compare - test whether two basic blocks have equivalent behaviour.
Nick Lewycky78d43302010-08-02 05:23:03 +0000425bool FunctionComparator::Compare(const BasicBlock *BB1, const BasicBlock *BB2) {
426 BasicBlock::const_iterator F1I = BB1->begin(), F1E = BB1->end();
427 BasicBlock::const_iterator F2I = BB2->begin(), F2E = BB2->end();
Nick Lewycky579a0242008-11-02 05:52:50 +0000428
429 do {
Nick Lewycky78d43302010-08-02 05:23:03 +0000430 if (!Enumerate(F1I, F2I))
Nick Lewycky579a0242008-11-02 05:52:50 +0000431 return false;
432
Nick Lewycky78d43302010-08-02 05:23:03 +0000433 if (const GetElementPtrInst *GEP1 = dyn_cast<GetElementPtrInst>(F1I)) {
434 const GetElementPtrInst *GEP2 = dyn_cast<GetElementPtrInst>(F2I);
435 if (!GEP2)
436 return false;
Nick Lewyckya142c932009-06-13 19:09:52 +0000437
Nick Lewycky78d43302010-08-02 05:23:03 +0000438 if (!Enumerate(GEP1->getPointerOperand(), GEP2->getPointerOperand()))
Nick Lewycky911ae392010-05-13 06:45:13 +0000439 return false;
Nick Lewyckya142c932009-06-13 19:09:52 +0000440
Nick Lewycky33ab0b12010-05-13 05:48:45 +0000441 if (!isEquivalentGEP(GEP1, GEP2))
Nick Lewycky911ae392010-05-13 06:45:13 +0000442 return false;
Nick Lewycky33ab0b12010-05-13 05:48:45 +0000443 } else {
Nick Lewycky78d43302010-08-02 05:23:03 +0000444 if (!isEquivalentOperation(F1I, F2I))
Nick Lewycky579a0242008-11-02 05:52:50 +0000445 return false;
446
Nick Lewycky78d43302010-08-02 05:23:03 +0000447 assert(F1I->getNumOperands() == F2I->getNumOperands());
448 for (unsigned i = 0, e = F1I->getNumOperands(); i != e; ++i) {
449 Value *OpF1 = F1I->getOperand(i);
450 Value *OpF2 = F2I->getOperand(i);
Nick Lewycky579a0242008-11-02 05:52:50 +0000451
Nick Lewycky78d43302010-08-02 05:23:03 +0000452 if (!Enumerate(OpF1, OpF2))
Nick Lewycky911ae392010-05-13 06:45:13 +0000453 return false;
Nick Lewycky33ab0b12010-05-13 05:48:45 +0000454
Nick Lewycky78d43302010-08-02 05:23:03 +0000455 if (OpF1->getValueID() != OpF2->getValueID() ||
456 !isEquivalentType(OpF1->getType(), OpF2->getType()))
Nick Lewycky579a0242008-11-02 05:52:50 +0000457 return false;
458 }
Nick Lewycky579a0242008-11-02 05:52:50 +0000459 }
460
Nick Lewycky78d43302010-08-02 05:23:03 +0000461 ++F1I, ++F2I;
462 } while (F1I != F1E && F2I != F2E);
Nick Lewycky579a0242008-11-02 05:52:50 +0000463
Nick Lewycky78d43302010-08-02 05:23:03 +0000464 return F1I == F1E && F2I == F2E;
Nick Lewycky579a0242008-11-02 05:52:50 +0000465}
466
Nick Lewyckybe04fde2010-08-08 05:04:23 +0000467/// Compare - test whether the two functions have equivalent behaviour.
Nick Lewycky78d43302010-08-02 05:23:03 +0000468bool FunctionComparator::Compare() {
Nick Lewycky579a0242008-11-02 05:52:50 +0000469 // We need to recheck everything, but check the things that weren't included
470 // in the hash first.
471
Nick Lewycky78d43302010-08-02 05:23:03 +0000472 if (F1->getAttributes() != F2->getAttributes())
Nick Lewycky579a0242008-11-02 05:52:50 +0000473 return false;
474
Nick Lewycky78d43302010-08-02 05:23:03 +0000475 if (F1->hasGC() != F2->hasGC())
Nick Lewycky579a0242008-11-02 05:52:50 +0000476 return false;
477
Nick Lewycky78d43302010-08-02 05:23:03 +0000478 if (F1->hasGC() && F1->getGC() != F2->getGC())
Nick Lewycky579a0242008-11-02 05:52:50 +0000479 return false;
480
Nick Lewycky78d43302010-08-02 05:23:03 +0000481 if (F1->hasSection() != F2->hasSection())
Nick Lewycky579a0242008-11-02 05:52:50 +0000482 return false;
483
Nick Lewycky78d43302010-08-02 05:23:03 +0000484 if (F1->hasSection() && F1->getSection() != F2->getSection())
Nick Lewycky579a0242008-11-02 05:52:50 +0000485 return false;
486
Nick Lewycky78d43302010-08-02 05:23:03 +0000487 if (F1->isVarArg() != F2->isVarArg())
Nick Lewycky287de602009-06-12 08:04:51 +0000488 return false;
489
Nick Lewycky579a0242008-11-02 05:52:50 +0000490 // TODO: if it's internal and only used in direct calls, we could handle this
491 // case too.
Nick Lewycky78d43302010-08-02 05:23:03 +0000492 if (F1->getCallingConv() != F2->getCallingConv())
Nick Lewycky579a0242008-11-02 05:52:50 +0000493 return false;
494
Nick Lewycky78d43302010-08-02 05:23:03 +0000495 if (!isEquivalentType(F1->getFunctionType(), F2->getFunctionType()))
Nick Lewycky579a0242008-11-02 05:52:50 +0000496 return false;
497
Nick Lewycky78d43302010-08-02 05:23:03 +0000498 assert(F1->arg_size() == F2->arg_size() &&
Nick Lewycky2b6c01b2010-09-07 01:42:10 +0000499 "Identically typed functions have different numbers of args!");
Nick Lewycky579a0242008-11-02 05:52:50 +0000500
Nick Lewycky33ab0b12010-05-13 05:48:45 +0000501 // Visit the arguments so that they get enumerated in the order they're
502 // passed in.
Nick Lewycky78d43302010-08-02 05:23:03 +0000503 for (Function::const_arg_iterator f1i = F1->arg_begin(),
504 f2i = F2->arg_begin(), f1e = F1->arg_end(); f1i != f1e; ++f1i, ++f2i) {
505 if (!Enumerate(f1i, f2i))
Nick Lewycky2b6c01b2010-09-07 01:42:10 +0000506 llvm_unreachable("Arguments repeat!");
Nick Lewycky579a0242008-11-02 05:52:50 +0000507 }
508
Nick Lewyckybe04fde2010-08-08 05:04:23 +0000509 // We do a CFG-ordered walk since the actual ordering of the blocks in the
510 // linked list is immaterial. Our walk starts at the entry block for both
Nick Lewycky78d43302010-08-02 05:23:03 +0000511 // functions, then takes each block from each terminator in order. As an
512 // artifact, this also means that unreachable blocks are ignored.
513 SmallVector<const BasicBlock *, 8> F1BBs, F2BBs;
514 SmallSet<const BasicBlock *, 128> VisitedBBs; // in terms of F1.
Nick Lewyckyc9dcbed2010-08-06 07:21:30 +0000515
Nick Lewycky78d43302010-08-02 05:23:03 +0000516 F1BBs.push_back(&F1->getEntryBlock());
517 F2BBs.push_back(&F2->getEntryBlock());
Nick Lewyckyc9dcbed2010-08-06 07:21:30 +0000518
Nick Lewycky78d43302010-08-02 05:23:03 +0000519 VisitedBBs.insert(F1BBs[0]);
520 while (!F1BBs.empty()) {
521 const BasicBlock *F1BB = F1BBs.pop_back_val();
522 const BasicBlock *F2BB = F2BBs.pop_back_val();
Nick Lewyckyc9dcbed2010-08-06 07:21:30 +0000523
Nick Lewycky78d43302010-08-02 05:23:03 +0000524 if (!Enumerate(F1BB, F2BB) || !Compare(F1BB, F2BB))
Nick Lewycky33ab0b12010-05-13 05:48:45 +0000525 return false;
Nick Lewyckyc9dcbed2010-08-06 07:21:30 +0000526
Nick Lewycky78d43302010-08-02 05:23:03 +0000527 const TerminatorInst *F1TI = F1BB->getTerminator();
528 const TerminatorInst *F2TI = F2BB->getTerminator();
Nick Lewyckyc9dcbed2010-08-06 07:21:30 +0000529
Nick Lewycky78d43302010-08-02 05:23:03 +0000530 assert(F1TI->getNumSuccessors() == F2TI->getNumSuccessors());
531 for (unsigned i = 0, e = F1TI->getNumSuccessors(); i != e; ++i) {
532 if (!VisitedBBs.insert(F1TI->getSuccessor(i)))
Nick Lewycky911ae392010-05-13 06:45:13 +0000533 continue;
Nick Lewyckyc9dcbed2010-08-06 07:21:30 +0000534
Nick Lewycky78d43302010-08-02 05:23:03 +0000535 F1BBs.push_back(F1TI->getSuccessor(i));
536 F2BBs.push_back(F2TI->getSuccessor(i));
Nick Lewycky33ab0b12010-05-13 05:48:45 +0000537 }
538 }
Nick Lewycky579a0242008-11-02 05:52:50 +0000539 return true;
540}
541
Nick Lewycky285cf802011-01-28 07:36:21 +0000542namespace {
543
544/// MergeFunctions finds functions which will generate identical machine code,
545/// by considering all pointer types to be equivalent. Once identified,
546/// MergeFunctions will fold them by replacing a call to one to a call to a
547/// bitcast of the other.
548///
549class MergeFunctions : public ModulePass {
550public:
551 static char ID;
552 MergeFunctions()
553 : ModulePass(ID), HasGlobalAliases(false) {
554 initializeMergeFunctionsPass(*PassRegistry::getPassRegistry());
555 }
556
557 bool runOnModule(Module &M);
558
559private:
560 typedef DenseSet<ComparableFunction> FnSetType;
561
562 /// A work queue of functions that may have been modified and should be
563 /// analyzed again.
564 std::vector<WeakVH> Deferred;
565
566 /// Insert a ComparableFunction into the FnSet, or merge it away if it's
567 /// equal to one that's already present.
568 bool Insert(ComparableFunction &NewF);
569
570 /// Remove a Function from the FnSet and queue it up for a second sweep of
571 /// analysis.
572 void Remove(Function *F);
573
574 /// Find the functions that use this Value and remove them from FnSet and
575 /// queue the functions.
576 void RemoveUsers(Value *V);
577
578 /// Replace all direct calls of Old with calls of New. Will bitcast New if
579 /// necessary to make types match.
580 void replaceDirectCallers(Function *Old, Function *New);
581
582 /// MergeTwoFunctions - Merge two equivalent functions. Upon completion, G
583 /// may be deleted, or may be converted into a thunk. In either case, it
584 /// should never be visited again.
585 void MergeTwoFunctions(Function *F, Function *G);
586
587 /// WriteThunkOrAlias - Replace G with a thunk or an alias to F. Deletes G.
588 void WriteThunkOrAlias(Function *F, Function *G);
589
590 /// WriteThunk - Replace G with a simple tail call to bitcast(F). Also
591 /// replace direct uses of G with bitcast(F). Deletes G.
592 void WriteThunk(Function *F, Function *G);
593
594 /// WriteAlias - Replace G with an alias to F. Deletes G.
595 void WriteAlias(Function *F, Function *G);
596
597 /// The set of all distinct functions. Use the Insert and Remove methods to
598 /// modify it.
599 FnSetType FnSet;
600
601 /// TargetData for more accurate GEP comparisons. May be NULL.
602 TargetData *TD;
603
604 /// Whether or not the target supports global aliases.
605 bool HasGlobalAliases;
606};
607
608} // end anonymous namespace
609
610char MergeFunctions::ID = 0;
611INITIALIZE_PASS(MergeFunctions, "mergefunc", "Merge Functions", false, false)
612
613ModulePass *llvm::createMergeFunctionsPass() {
614 return new MergeFunctions();
615}
616
617bool MergeFunctions::runOnModule(Module &M) {
618 bool Changed = false;
619 TD = getAnalysisIfAvailable<TargetData>();
620
621 for (Module::iterator I = M.begin(), E = M.end(); I != E; ++I) {
622 if (!I->isDeclaration() && !I->hasAvailableExternallyLinkage())
623 Deferred.push_back(WeakVH(I));
624 }
625 FnSet.resize(Deferred.size());
626
627 do {
628 std::vector<WeakVH> Worklist;
629 Deferred.swap(Worklist);
630
631 DEBUG(dbgs() << "size of module: " << M.size() << '\n');
632 DEBUG(dbgs() << "size of worklist: " << Worklist.size() << '\n');
633
634 // Insert only strong functions and merge them. Strong function merging
635 // always deletes one of them.
636 for (std::vector<WeakVH>::iterator I = Worklist.begin(),
637 E = Worklist.end(); I != E; ++I) {
638 if (!*I) continue;
639 Function *F = cast<Function>(*I);
640 if (!F->isDeclaration() && !F->hasAvailableExternallyLinkage() &&
641 !F->mayBeOverridden()) {
642 ComparableFunction CF = ComparableFunction(F, TD);
643 Changed |= Insert(CF);
644 }
645 }
646
647 // Insert only weak functions and merge them. By doing these second we
648 // create thunks to the strong function when possible. When two weak
649 // functions are identical, we create a new strong function with two weak
650 // weak thunks to it which are identical but not mergable.
651 for (std::vector<WeakVH>::iterator I = Worklist.begin(),
652 E = Worklist.end(); I != E; ++I) {
653 if (!*I) continue;
654 Function *F = cast<Function>(*I);
655 if (!F->isDeclaration() && !F->hasAvailableExternallyLinkage() &&
656 F->mayBeOverridden()) {
657 ComparableFunction CF = ComparableFunction(F, TD);
658 Changed |= Insert(CF);
659 }
660 }
661 DEBUG(dbgs() << "size of FnSet: " << FnSet.size() << '\n');
662 } while (!Deferred.empty());
663
664 FnSet.clear();
665
666 return Changed;
667}
668
669bool DenseMapInfo<ComparableFunction>::isEqual(const ComparableFunction &LHS,
670 const ComparableFunction &RHS) {
671 if (LHS.getFunc() == RHS.getFunc() &&
672 LHS.getHash() == RHS.getHash())
673 return true;
674 if (!LHS.getFunc() || !RHS.getFunc())
675 return false;
676 assert(LHS.getTD() == RHS.getTD() &&
677 "Comparing functions for different targets");
678
679 bool inserted;
680 bool &result1 = LHS.getOrInsertCachedComparison(RHS, inserted);
681 if (!inserted)
682 return result1;
683 bool &result2 = RHS.getOrInsertCachedComparison(LHS, inserted);
684 if (!inserted)
685 return result1 = result2;
686
687 return result1 = result2 = FunctionComparator(LHS.getTD(), LHS.getFunc(),
688 RHS.getFunc()).Compare();
689}
690
Nick Lewyckyb38824f2011-01-25 08:56:50 +0000691/// Replace direct callers of Old with New.
692void MergeFunctions::replaceDirectCallers(Function *Old, Function *New) {
693 Constant *BitcastNew = ConstantExpr::getBitCast(New, Old->getType());
694 for (Value::use_iterator UI = Old->use_begin(), UE = Old->use_end();
695 UI != UE;) {
696 Value::use_iterator TheIter = UI;
697 ++UI;
698 CallSite CS(*TheIter);
699 if (CS && CS.isCallee(TheIter)) {
700 Remove(CS.getInstruction()->getParent()->getParent());
701 TheIter.getUse().set(BitcastNew);
702 }
703 }
704}
705
706void MergeFunctions::WriteThunkOrAlias(Function *F, Function *G) {
707 if (HasGlobalAliases && G->hasUnnamedAddr()) {
708 if (G->hasExternalLinkage() || G->hasLocalLinkage() ||
709 G->hasWeakLinkage()) {
710 WriteAlias(F, G);
711 return;
712 }
713 }
714
715 WriteThunk(F, G);
716}
717
Nick Lewyckybe04fde2010-08-08 05:04:23 +0000718/// WriteThunk - Replace G with a simple tail call to bitcast(F). Also replace
Nick Lewyckyb0104e12010-09-05 08:22:49 +0000719/// direct uses of G with bitcast(F). Deletes G.
Nick Lewyckyabd6c752011-01-02 02:46:33 +0000720void MergeFunctions::WriteThunk(Function *F, Function *G) {
Nick Lewycky33ab0b12010-05-13 05:48:45 +0000721 if (!G->mayBeOverridden()) {
722 // Redirect direct callers of G to F.
Nick Lewyckyb38824f2011-01-25 08:56:50 +0000723 replaceDirectCallers(G, F);
Nick Lewycky33ab0b12010-05-13 05:48:45 +0000724 }
725
Nick Lewycky2b6c01b2010-09-07 01:42:10 +0000726 // If G was internal then we may have replaced all uses of G with F. If so,
Nick Lewyckyc9dcbed2010-08-06 07:21:30 +0000727 // stop here and delete G. There's no need for a thunk.
728 if (G->hasLocalLinkage() && G->use_empty()) {
729 G->eraseFromParent();
730 return;
731 }
732
Nick Lewycky8728d7a2009-06-12 15:56:56 +0000733 Function *NewG = Function::Create(G->getFunctionType(), G->getLinkage(), "",
734 G->getParent());
Owen Anderson1d0be152009-08-13 21:58:54 +0000735 BasicBlock *BB = BasicBlock::Create(F->getContext(), "", NewG);
Nick Lewyckybe04fde2010-08-08 05:04:23 +0000736 IRBuilder<false> Builder(BB);
Nick Lewycky287de602009-06-12 08:04:51 +0000737
Nick Lewycky33ab0b12010-05-13 05:48:45 +0000738 SmallVector<Value *, 16> Args;
Nick Lewycky287de602009-06-12 08:04:51 +0000739 unsigned i = 0;
740 const FunctionType *FFTy = F->getFunctionType();
741 for (Function::arg_iterator AI = NewG->arg_begin(), AE = NewG->arg_end();
742 AI != AE; ++AI) {
Nick Lewyckybe04fde2010-08-08 05:04:23 +0000743 Args.push_back(Builder.CreateBitCast(AI, FFTy->getParamType(i)));
Nick Lewycky287de602009-06-12 08:04:51 +0000744 ++i;
745 }
746
Nick Lewyckybe04fde2010-08-08 05:04:23 +0000747 CallInst *CI = Builder.CreateCall(F, Args.begin(), Args.end());
Nick Lewycky287de602009-06-12 08:04:51 +0000748 CI->setTailCall();
Nick Lewyckyb3c36c92009-06-12 16:04:00 +0000749 CI->setCallingConv(F->getCallingConv());
Benjamin Kramerf0127052010-01-05 13:12:22 +0000750 if (NewG->getReturnType()->isVoidTy()) {
Nick Lewyckybe04fde2010-08-08 05:04:23 +0000751 Builder.CreateRetVoid();
Nick Lewycky287de602009-06-12 08:04:51 +0000752 } else {
Nick Lewyckybe04fde2010-08-08 05:04:23 +0000753 Builder.CreateRet(Builder.CreateBitCast(CI, NewG->getReturnType()));
Nick Lewycky287de602009-06-12 08:04:51 +0000754 }
755
756 NewG->copyAttributesFrom(G);
757 NewG->takeName(G);
Nick Lewyckyabd6c752011-01-02 02:46:33 +0000758 RemoveUsers(G);
Nick Lewycky287de602009-06-12 08:04:51 +0000759 G->replaceAllUsesWith(NewG);
760 G->eraseFromParent();
Nick Lewycky2b6c01b2010-09-07 01:42:10 +0000761
762 DEBUG(dbgs() << "WriteThunk: " << NewG->getName() << '\n');
763 ++NumThunksWritten;
Nick Lewycky287de602009-06-12 08:04:51 +0000764}
765
Nick Lewyckyb38824f2011-01-25 08:56:50 +0000766/// WriteAlias - Replace G with an alias to F and delete G.
767void MergeFunctions::WriteAlias(Function *F, Function *G) {
768 Constant *BitcastF = ConstantExpr::getBitCast(F, G->getType());
769 GlobalAlias *GA = new GlobalAlias(G->getType(), G->getLinkage(), "",
770 BitcastF, G->getParent());
771 F->setAlignment(std::max(F->getAlignment(), G->getAlignment()));
772 GA->takeName(G);
773 GA->setVisibility(G->getVisibility());
774 RemoveUsers(G);
775 G->replaceAllUsesWith(GA);
776 G->eraseFromParent();
777
778 DEBUG(dbgs() << "WriteAlias: " << GA->getName() << '\n');
779 ++NumAliasesWritten;
780}
781
Nick Lewyckybe04fde2010-08-08 05:04:23 +0000782/// MergeTwoFunctions - Merge two equivalent functions. Upon completion,
Nick Lewyckyf53de862010-08-31 05:53:05 +0000783/// Function G is deleted.
Nick Lewyckyabd6c752011-01-02 02:46:33 +0000784void MergeFunctions::MergeTwoFunctions(Function *F, Function *G) {
Nick Lewycky2b6c01b2010-09-07 01:42:10 +0000785 if (F->mayBeOverridden()) {
786 assert(G->mayBeOverridden());
Nick Lewycky33ab0b12010-05-13 05:48:45 +0000787
Nick Lewyckyb38824f2011-01-25 08:56:50 +0000788 if (HasGlobalAliases) {
789 // Make them both thunks to the same internal function.
790 Function *H = Function::Create(F->getFunctionType(), F->getLinkage(), "",
791 F->getParent());
792 H->copyAttributesFrom(F);
793 H->takeName(F);
794 RemoveUsers(F);
795 F->replaceAllUsesWith(H);
Nick Lewycky33ab0b12010-05-13 05:48:45 +0000796
Nick Lewyckyb38824f2011-01-25 08:56:50 +0000797 unsigned MaxAlignment = std::max(G->getAlignment(), H->getAlignment());
Nick Lewycky32218342010-08-09 21:03:28 +0000798
Nick Lewyckyb38824f2011-01-25 08:56:50 +0000799 WriteAlias(F, G);
800 WriteAlias(F, H);
Nick Lewycky33ab0b12010-05-13 05:48:45 +0000801
Nick Lewyckyb38824f2011-01-25 08:56:50 +0000802 F->setAlignment(MaxAlignment);
803 F->setLinkage(GlobalValue::PrivateLinkage);
804 } else {
805 // We can't merge them. Instead, pick one and update all direct callers
806 // to call it and hope that we improve the instruction cache hit rate.
807 replaceDirectCallers(G, F);
808 }
Nick Lewycky2b6c01b2010-09-07 01:42:10 +0000809
810 ++NumDoubleWeak;
Nick Lewyckyc9dcbed2010-08-06 07:21:30 +0000811 } else {
Nick Lewyckyb38824f2011-01-25 08:56:50 +0000812 WriteThunkOrAlias(F, G);
Nick Lewycky6feb3332008-11-02 16:46:26 +0000813 }
814
Nick Lewycky287de602009-06-12 08:04:51 +0000815 ++NumFunctionsMerged;
Nick Lewycky579a0242008-11-02 05:52:50 +0000816}
817
Nick Lewyckyb0104e12010-09-05 08:22:49 +0000818// Insert - Insert a ComparableFunction into the FnSet, or merge it away if
819// equal to one that's already inserted.
Nick Lewyckyabd6c752011-01-02 02:46:33 +0000820bool MergeFunctions::Insert(ComparableFunction &NewF) {
Nick Lewyckyb0104e12010-09-05 08:22:49 +0000821 std::pair<FnSetType::iterator, bool> Result = FnSet.insert(NewF);
822 if (Result.second)
823 return false;
Nick Lewyckybe04fde2010-08-08 05:04:23 +0000824
Nick Lewyckyb0e17772010-09-05 09:00:32 +0000825 const ComparableFunction &OldF = *Result.first;
Nick Lewyckyb0104e12010-09-05 08:22:49 +0000826
827 // Never thunk a strong function to a weak function.
Nick Lewycky2b6c01b2010-09-07 01:42:10 +0000828 assert(!OldF.getFunc()->mayBeOverridden() ||
829 NewF.getFunc()->mayBeOverridden());
Nick Lewyckyb0104e12010-09-05 08:22:49 +0000830
Nick Lewyckyb0e17772010-09-05 09:00:32 +0000831 DEBUG(dbgs() << " " << OldF.getFunc()->getName() << " == "
832 << NewF.getFunc()->getName() << '\n');
Nick Lewyckyb0104e12010-09-05 08:22:49 +0000833
Nick Lewyckyb0e17772010-09-05 09:00:32 +0000834 Function *DeleteF = NewF.getFunc();
835 NewF.release();
836 MergeTwoFunctions(OldF.getFunc(), DeleteF);
Nick Lewyckyb0104e12010-09-05 08:22:49 +0000837 return true;
Nick Lewyckybe04fde2010-08-08 05:04:23 +0000838}
Nick Lewycky579a0242008-11-02 05:52:50 +0000839
Nick Lewyckyabd6c752011-01-02 02:46:33 +0000840// Remove - Remove a function from FnSet. If it was already in FnSet, add it to
841// Deferred so that we'll look at it in the next round.
842void MergeFunctions::Remove(Function *F) {
843 ComparableFunction CF = ComparableFunction(F, TD);
844 if (FnSet.erase(CF)) {
845 Deferred.push_back(F);
Nick Lewyckyf53de862010-08-31 05:53:05 +0000846 }
Nick Lewyckyabd6c752011-01-02 02:46:33 +0000847}
Nick Lewyckyb0104e12010-09-05 08:22:49 +0000848
Nick Lewyckyabd6c752011-01-02 02:46:33 +0000849// RemoveUsers - For each instruction used by the value, Remove() the function
850// that contains the instruction. This should happen right before a call to RAUW.
851void MergeFunctions::RemoveUsers(Value *V) {
Nick Lewyckyd081b042011-01-02 19:16:44 +0000852 std::vector<Value *> Worklist;
853 Worklist.push_back(V);
854 while (!Worklist.empty()) {
855 Value *V = Worklist.back();
856 Worklist.pop_back();
857
858 for (Value::use_iterator UI = V->use_begin(), UE = V->use_end();
859 UI != UE; ++UI) {
860 Use &U = UI.getUse();
861 if (Instruction *I = dyn_cast<Instruction>(U.getUser())) {
862 Remove(I->getParent()->getParent());
863 } else if (isa<GlobalValue>(U.getUser())) {
Nick Lewyckye8f81392011-01-15 10:16:23 +0000864 // do nothing
Nick Lewyckyd081b042011-01-02 19:16:44 +0000865 } else if (Constant *C = dyn_cast<Constant>(U.getUser())) {
Nick Lewyckye8f81392011-01-15 10:16:23 +0000866 for (Value::use_iterator CUI = C->use_begin(), CUE = C->use_end();
867 CUI != CUE; ++CUI)
Nick Lewyckyd081b042011-01-02 19:16:44 +0000868 Worklist.push_back(*CUI);
869 }
Nick Lewyckyb0104e12010-09-05 08:22:49 +0000870 }
Nick Lewyckyf53de862010-08-31 05:53:05 +0000871 }
Nick Lewyckyb0104e12010-09-05 08:22:49 +0000872}