blob: 4aee6e76b2a3e6a480bc6978291038e3b67d3936 [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 Lewycky468ee0a2011-01-28 08:43:14 +000074/// Creates a hash-code for the function which is the same for any two
75/// functions that will compare equal, without looking at the instructions
76/// inside the function.
77static unsigned profileFunction(const Function *F) {
Nick Lewyckyb0104e12010-09-05 08:22:49 +000078 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;
Nick Lewycky3ba974a2011-02-09 06:32:02 +000099 static TargetData * const LookupOnly;
Nick Lewyckyb0e17772010-09-05 09:00:32 +0000100
Nick Lewyckyb0104e12010-09-05 08:22:49 +0000101 ComparableFunction(Function *Func, TargetData *TD)
Nick Lewycky468ee0a2011-01-28 08:43:14 +0000102 : Func(Func), Hash(profileFunction(Func)), TD(TD) {}
Nick Lewyckyb0104e12010-09-05 08:22:49 +0000103
Nick Lewyckyb0e17772010-09-05 09:00:32 +0000104 Function *getFunc() const { return Func; }
105 unsigned getHash() const { return Hash; }
106 TargetData *getTD() const { return TD; }
107
108 // Drops AssertingVH reference to the function. Outside of debug mode, this
109 // does nothing.
110 void release() {
111 assert(Func &&
112 "Attempted to release function twice, or release empty/tombstone!");
113 Func = NULL;
114 }
115
116private:
117 explicit ComparableFunction(unsigned Hash)
118 : Func(NULL), Hash(Hash), TD(NULL) {}
119
120 AssertingVH<Function> Func;
121 unsigned Hash;
122 TargetData *TD;
Nick Lewyckyb0104e12010-09-05 08:22:49 +0000123};
124
Nick Lewyckyb0e17772010-09-05 09:00:32 +0000125const ComparableFunction ComparableFunction::EmptyKey = ComparableFunction(0);
126const ComparableFunction ComparableFunction::TombstoneKey =
127 ComparableFunction(1);
Nick Lewycky3ba974a2011-02-09 06:32:02 +0000128TargetData * const ComparableFunction::LookupOnly = (TargetData*)(-1);
Nick Lewyckyb0e17772010-09-05 09:00:32 +0000129
Nick Lewycky2b6c01b2010-09-07 01:42:10 +0000130}
Nick Lewyckyb0e17772010-09-05 09:00:32 +0000131
132namespace llvm {
133 template <>
134 struct DenseMapInfo<ComparableFunction> {
135 static ComparableFunction getEmptyKey() {
136 return ComparableFunction::EmptyKey;
137 }
138 static ComparableFunction getTombstoneKey() {
139 return ComparableFunction::TombstoneKey;
140 }
141 static unsigned getHashValue(const ComparableFunction &CF) {
142 return CF.getHash();
143 }
144 static bool isEqual(const ComparableFunction &LHS,
145 const ComparableFunction &RHS);
146 };
147}
148
149namespace {
Nick Lewyckyb0104e12010-09-05 08:22:49 +0000150
Nick Lewyckybe04fde2010-08-08 05:04:23 +0000151/// FunctionComparator - Compares two functions to determine whether or not
152/// they will generate machine code with the same behaviour. TargetData is
153/// used if available. The comparator always fails conservatively (erring on the
154/// side of claiming that two functions are different).
Nick Lewycky78d43302010-08-02 05:23:03 +0000155class FunctionComparator {
156public:
Nick Lewyckyf53de862010-08-31 05:53:05 +0000157 FunctionComparator(const TargetData *TD, const Function *F1,
158 const Function *F2)
Nick Lewyckyc9dcbed2010-08-06 07:21:30 +0000159 : F1(F1), F2(F2), TD(TD), IDMap1Count(0), IDMap2Count(0) {}
Nick Lewycky287de602009-06-12 08:04:51 +0000160
Nick Lewycky468ee0a2011-01-28 08:43:14 +0000161 /// Test whether the two functions have equivalent behaviour.
162 bool compare();
Nick Lewycky78d43302010-08-02 05:23:03 +0000163
164private:
Nick Lewycky468ee0a2011-01-28 08:43:14 +0000165 /// Test whether two basic blocks have equivalent behaviour.
166 bool compare(const BasicBlock *BB1, const BasicBlock *BB2);
Nick Lewycky78d43302010-08-02 05:23:03 +0000167
Nick Lewycky468ee0a2011-01-28 08:43:14 +0000168 /// Assign or look up previously assigned numbers for the two values, and
169 /// return whether the numbers are equal. Numbers are assigned in the order
170 /// visited.
171 bool enumerate(const Value *V1, const Value *V2);
Nick Lewycky78d43302010-08-02 05:23:03 +0000172
Nick Lewycky468ee0a2011-01-28 08:43:14 +0000173 /// Compare two Instructions for equivalence, similar to
174 /// Instruction::isSameOperationAs but with modifications to the type
Nick Lewyckybe04fde2010-08-08 05:04:23 +0000175 /// comparison.
Nick Lewycky78d43302010-08-02 05:23:03 +0000176 bool isEquivalentOperation(const Instruction *I1,
177 const Instruction *I2) const;
178
Nick Lewycky468ee0a2011-01-28 08:43:14 +0000179 /// Compare two GEPs for equivalent pointer arithmetic.
Nick Lewycky78d43302010-08-02 05:23:03 +0000180 bool isEquivalentGEP(const GEPOperator *GEP1, const GEPOperator *GEP2);
181 bool isEquivalentGEP(const GetElementPtrInst *GEP1,
Nick Lewyckybe04fde2010-08-08 05:04:23 +0000182 const GetElementPtrInst *GEP2) {
Nick Lewycky78d43302010-08-02 05:23:03 +0000183 return isEquivalentGEP(cast<GEPOperator>(GEP1), cast<GEPOperator>(GEP2));
184 }
185
Nick Lewycky468ee0a2011-01-28 08:43:14 +0000186 /// Compare two Types, treating all pointer types as equal.
Nick Lewycky78d43302010-08-02 05:23:03 +0000187 bool isEquivalentType(const Type *Ty1, const Type *Ty2) const;
188
189 // The two functions undergoing comparison.
Nick Lewyckyf53de862010-08-31 05:53:05 +0000190 const Function *F1, *F2;
Nick Lewycky78d43302010-08-02 05:23:03 +0000191
Nick Lewyckyf53de862010-08-31 05:53:05 +0000192 const TargetData *TD;
Nick Lewycky78d43302010-08-02 05:23:03 +0000193
194 typedef DenseMap<const Value *, unsigned long> IDMap;
Nick Lewyckyc9dcbed2010-08-06 07:21:30 +0000195 IDMap Map1, Map2;
196 unsigned long IDMap1Count, IDMap2Count;
Nick Lewycky78d43302010-08-02 05:23:03 +0000197};
Nick Lewycky285cf802011-01-28 07:36:21 +0000198
Nick Lewycky78d43302010-08-02 05:23:03 +0000199}
200
Nick Lewycky468ee0a2011-01-28 08:43:14 +0000201// Any two pointers in the same address space are equivalent, intptr_t and
202// pointers are equivalent. Otherwise, standard type equivalence rules apply.
Nick Lewycky78d43302010-08-02 05:23:03 +0000203bool FunctionComparator::isEquivalentType(const Type *Ty1,
204 const Type *Ty2) const {
Nick Lewycky287de602009-06-12 08:04:51 +0000205 if (Ty1 == Ty2)
206 return true;
Nick Lewycky207c1932011-01-26 09:13:58 +0000207 if (Ty1->getTypeID() != Ty2->getTypeID()) {
208 if (TD) {
209 LLVMContext &Ctx = Ty1->getContext();
210 if (isa<PointerType>(Ty1) && Ty2 == TD->getIntPtrType(Ctx)) return true;
211 if (isa<PointerType>(Ty2) && Ty1 == TD->getIntPtrType(Ctx)) return true;
212 }
Nick Lewycky287de602009-06-12 08:04:51 +0000213 return false;
Nick Lewycky207c1932011-01-26 09:13:58 +0000214 }
Nick Lewycky287de602009-06-12 08:04:51 +0000215
216 switch(Ty1->getTypeID()) {
Nick Lewycky33ab0b12010-05-13 05:48:45 +0000217 default:
218 llvm_unreachable("Unknown type!");
Duncan Sands8246adc2010-07-07 07:48:00 +0000219 // Fall through in Release mode.
Nick Lewycky33ab0b12010-05-13 05:48:45 +0000220 case Type::IntegerTyID:
221 case Type::OpaqueTyID:
Nick Lewycky388f4912011-01-26 08:50:18 +0000222 case Type::VectorTyID:
Nick Lewycky33ab0b12010-05-13 05:48:45 +0000223 // Ty1 == Ty2 would have returned true earlier.
224 return false;
225
Nick Lewycky287de602009-06-12 08:04:51 +0000226 case Type::VoidTyID:
227 case Type::FloatTyID:
228 case Type::DoubleTyID:
229 case Type::X86_FP80TyID:
230 case Type::FP128TyID:
231 case Type::PPC_FP128TyID:
232 case Type::LabelTyID:
233 case Type::MetadataTyID:
234 return true;
235
Nick Lewycky287de602009-06-12 08:04:51 +0000236 case Type::PointerTyID: {
237 const PointerType *PTy1 = cast<PointerType>(Ty1);
238 const PointerType *PTy2 = cast<PointerType>(Ty2);
239 return PTy1->getAddressSpace() == PTy2->getAddressSpace();
240 }
241
242 case Type::StructTyID: {
243 const StructType *STy1 = cast<StructType>(Ty1);
244 const StructType *STy2 = cast<StructType>(Ty2);
245 if (STy1->getNumElements() != STy2->getNumElements())
246 return false;
247
248 if (STy1->isPacked() != STy2->isPacked())
249 return false;
250
251 for (unsigned i = 0, e = STy1->getNumElements(); i != e; ++i) {
252 if (!isEquivalentType(STy1->getElementType(i), STy2->getElementType(i)))
253 return false;
254 }
255 return true;
256 }
257
258 case Type::FunctionTyID: {
259 const FunctionType *FTy1 = cast<FunctionType>(Ty1);
260 const FunctionType *FTy2 = cast<FunctionType>(Ty2);
261 if (FTy1->getNumParams() != FTy2->getNumParams() ||
262 FTy1->isVarArg() != FTy2->isVarArg())
263 return false;
264
265 if (!isEquivalentType(FTy1->getReturnType(), FTy2->getReturnType()))
266 return false;
267
268 for (unsigned i = 0, e = FTy1->getNumParams(); i != e; ++i) {
269 if (!isEquivalentType(FTy1->getParamType(i), FTy2->getParamType(i)))
270 return false;
271 }
272 return true;
273 }
274
Nick Lewycky394ce412010-07-16 06:31:12 +0000275 case Type::ArrayTyID: {
276 const ArrayType *ATy1 = cast<ArrayType>(Ty1);
277 const ArrayType *ATy2 = cast<ArrayType>(Ty2);
278 return ATy1->getNumElements() == ATy2->getNumElements() &&
279 isEquivalentType(ATy1->getElementType(), ATy2->getElementType());
280 }
Nick Lewycky287de602009-06-12 08:04:51 +0000281 }
282}
283
Nick Lewycky468ee0a2011-01-28 08:43:14 +0000284// Determine whether the two operations are the same except that pointer-to-A
285// and pointer-to-B are equivalent. This should be kept in sync with
286// Instruction::isSameOperationAs.
Nick Lewycky78d43302010-08-02 05:23:03 +0000287bool FunctionComparator::isEquivalentOperation(const Instruction *I1,
288 const Instruction *I2) const {
Nick Lewycky39c33e32011-02-06 05:04:00 +0000289 // Differences from Instruction::isSameOperationAs:
290 // * replace type comparison with calls to isEquivalentType.
291 // * we test for I->hasSameSubclassOptionalData (nuw/nsw/tail) at the top
292 // * because of the above, we don't test for the tail bit on calls later on
Nick Lewycky287de602009-06-12 08:04:51 +0000293 if (I1->getOpcode() != I2->getOpcode() ||
294 I1->getNumOperands() != I2->getNumOperands() ||
Dan Gohman58cfa3b2009-08-25 22:11:20 +0000295 !isEquivalentType(I1->getType(), I2->getType()) ||
296 !I1->hasSameSubclassOptionalData(I2))
Nick Lewycky287de602009-06-12 08:04:51 +0000297 return false;
298
299 // We have two instructions of identical opcode and #operands. Check to see
300 // if all operands are the same type
301 for (unsigned i = 0, e = I1->getNumOperands(); i != e; ++i)
302 if (!isEquivalentType(I1->getOperand(i)->getType(),
303 I2->getOperand(i)->getType()))
304 return false;
305
306 // Check special state that is a part of some instructions.
307 if (const LoadInst *LI = dyn_cast<LoadInst>(I1))
308 return LI->isVolatile() == cast<LoadInst>(I2)->isVolatile() &&
309 LI->getAlignment() == cast<LoadInst>(I2)->getAlignment();
310 if (const StoreInst *SI = dyn_cast<StoreInst>(I1))
311 return SI->isVolatile() == cast<StoreInst>(I2)->isVolatile() &&
312 SI->getAlignment() == cast<StoreInst>(I2)->getAlignment();
313 if (const CmpInst *CI = dyn_cast<CmpInst>(I1))
314 return CI->getPredicate() == cast<CmpInst>(I2)->getPredicate();
315 if (const CallInst *CI = dyn_cast<CallInst>(I1))
Nick Lewycky39c33e32011-02-06 05:04:00 +0000316 return CI->getCallingConv() == cast<CallInst>(I2)->getCallingConv() &&
Nick Lewyckyf6c63c22011-01-26 09:23:19 +0000317 CI->getAttributes() == cast<CallInst>(I2)->getAttributes();
Nick Lewycky287de602009-06-12 08:04:51 +0000318 if (const InvokeInst *CI = dyn_cast<InvokeInst>(I1))
319 return CI->getCallingConv() == cast<InvokeInst>(I2)->getCallingConv() &&
Nick Lewyckyf6c63c22011-01-26 09:23:19 +0000320 CI->getAttributes() == cast<InvokeInst>(I2)->getAttributes();
Nick Lewycky287de602009-06-12 08:04:51 +0000321 if (const InsertValueInst *IVI = dyn_cast<InsertValueInst>(I1)) {
322 if (IVI->getNumIndices() != cast<InsertValueInst>(I2)->getNumIndices())
323 return false;
324 for (unsigned i = 0, e = IVI->getNumIndices(); i != e; ++i)
325 if (IVI->idx_begin()[i] != cast<InsertValueInst>(I2)->idx_begin()[i])
326 return false;
327 return true;
328 }
329 if (const ExtractValueInst *EVI = dyn_cast<ExtractValueInst>(I1)) {
330 if (EVI->getNumIndices() != cast<ExtractValueInst>(I2)->getNumIndices())
331 return false;
332 for (unsigned i = 0, e = EVI->getNumIndices(); i != e; ++i)
333 if (EVI->idx_begin()[i] != cast<ExtractValueInst>(I2)->idx_begin()[i])
334 return false;
335 return true;
336 }
337
338 return true;
Nick Lewycky579a0242008-11-02 05:52:50 +0000339}
340
Nick Lewycky468ee0a2011-01-28 08:43:14 +0000341// Determine whether two GEP operations perform the same underlying arithmetic.
Nick Lewycky78d43302010-08-02 05:23:03 +0000342bool FunctionComparator::isEquivalentGEP(const GEPOperator *GEP1,
343 const GEPOperator *GEP2) {
344 // When we have target data, we can reduce the GEP down to the value in bytes
345 // added to the address.
Nick Lewycky33ab0b12010-05-13 05:48:45 +0000346 if (TD && GEP1->hasAllConstantIndices() && GEP2->hasAllConstantIndices()) {
Nick Lewycky78d43302010-08-02 05:23:03 +0000347 SmallVector<Value *, 8> Indices1(GEP1->idx_begin(), GEP1->idx_end());
348 SmallVector<Value *, 8> Indices2(GEP2->idx_begin(), GEP2->idx_end());
Nick Lewycky33ab0b12010-05-13 05:48:45 +0000349 uint64_t Offset1 = TD->getIndexedOffset(GEP1->getPointerOperandType(),
350 Indices1.data(), Indices1.size());
351 uint64_t Offset2 = TD->getIndexedOffset(GEP2->getPointerOperandType(),
352 Indices2.data(), Indices2.size());
353 return Offset1 == Offset2;
Nick Lewycky579a0242008-11-02 05:52:50 +0000354 }
355
Nick Lewycky33ab0b12010-05-13 05:48:45 +0000356 if (GEP1->getPointerOperand()->getType() !=
357 GEP2->getPointerOperand()->getType())
358 return false;
359
360 if (GEP1->getNumOperands() != GEP2->getNumOperands())
361 return false;
362
363 for (unsigned i = 0, e = GEP1->getNumOperands(); i != e; ++i) {
Nick Lewycky468ee0a2011-01-28 08:43:14 +0000364 if (!enumerate(GEP1->getOperand(i), GEP2->getOperand(i)))
Nick Lewycky33ab0b12010-05-13 05:48:45 +0000365 return false;
366 }
367
368 return true;
Nick Lewycky579a0242008-11-02 05:52:50 +0000369}
370
Nick Lewycky468ee0a2011-01-28 08:43:14 +0000371// Compare two values used by the two functions under pair-wise comparison. If
372// this is the first time the values are seen, they're added to the mapping so
373// that we will detect mismatches on next use.
374bool FunctionComparator::enumerate(const Value *V1, const Value *V2) {
Nick Lewycky78d43302010-08-02 05:23:03 +0000375 // Check for function @f1 referring to itself and function @f2 referring to
376 // itself, or referring to each other, or both referring to either of them.
377 // They're all equivalent if the two functions are otherwise equivalent.
Nick Lewyckyc9dcbed2010-08-06 07:21:30 +0000378 if (V1 == F1 && V2 == F2)
379 return true;
380 if (V1 == F2 && V2 == F1)
381 return true;
Nick Lewycky579a0242008-11-02 05:52:50 +0000382
Benjamin Kramer9c1858c2011-01-27 20:30:54 +0000383 if (const Constant *C1 = dyn_cast<Constant>(V1)) {
Nick Lewycky25296e22011-01-27 08:38:19 +0000384 if (V1 == V2) return true;
Nick Lewycky25296e22011-01-27 08:38:19 +0000385 const Constant *C2 = dyn_cast<Constant>(V2);
386 if (!C2) return false;
387 // TODO: constant expressions with GEP or references to F1 or F2.
388 if (C1->isNullValue() && C2->isNullValue() &&
389 isEquivalentType(C1->getType(), C2->getType()))
390 return true;
Nick Lewyckyc9d69482011-01-27 19:51:31 +0000391 // Try bitcasting C2 to C1's type. If the bitcast is legal and returns C1
392 // then they must have equal bit patterns.
Nick Lewycky25296e22011-01-27 08:38:19 +0000393 return C1->getType()->canLosslesslyBitCastTo(C2->getType()) &&
394 C1 == ConstantExpr::getBitCast(const_cast<Constant*>(C2), C1->getType());
395 }
Nick Lewycky33ab0b12010-05-13 05:48:45 +0000396
Nick Lewyckyd4893322011-02-06 04:33:50 +0000397 if (isa<InlineAsm>(V1) || isa<InlineAsm>(V2))
398 return V1 == V2;
Nick Lewycky33ab0b12010-05-13 05:48:45 +0000399
Nick Lewycky33ab0b12010-05-13 05:48:45 +0000400 unsigned long &ID1 = Map1[V1];
401 if (!ID1)
Nick Lewyckyc9dcbed2010-08-06 07:21:30 +0000402 ID1 = ++IDMap1Count;
Nick Lewycky33ab0b12010-05-13 05:48:45 +0000403
Nick Lewycky33ab0b12010-05-13 05:48:45 +0000404 unsigned long &ID2 = Map2[V2];
405 if (!ID2)
Nick Lewyckyc9dcbed2010-08-06 07:21:30 +0000406 ID2 = ++IDMap2Count;
Nick Lewycky33ab0b12010-05-13 05:48:45 +0000407
408 return ID1 == ID2;
409}
410
Nick Lewycky468ee0a2011-01-28 08:43:14 +0000411// Test whether two basic blocks have equivalent behaviour.
412bool FunctionComparator::compare(const BasicBlock *BB1, const BasicBlock *BB2) {
Nick Lewycky78d43302010-08-02 05:23:03 +0000413 BasicBlock::const_iterator F1I = BB1->begin(), F1E = BB1->end();
414 BasicBlock::const_iterator F2I = BB2->begin(), F2E = BB2->end();
Nick Lewycky579a0242008-11-02 05:52:50 +0000415
416 do {
Nick Lewycky468ee0a2011-01-28 08:43:14 +0000417 if (!enumerate(F1I, F2I))
Nick Lewycky579a0242008-11-02 05:52:50 +0000418 return false;
419
Nick Lewycky78d43302010-08-02 05:23:03 +0000420 if (const GetElementPtrInst *GEP1 = dyn_cast<GetElementPtrInst>(F1I)) {
421 const GetElementPtrInst *GEP2 = dyn_cast<GetElementPtrInst>(F2I);
422 if (!GEP2)
423 return false;
Nick Lewyckya142c932009-06-13 19:09:52 +0000424
Nick Lewycky468ee0a2011-01-28 08:43:14 +0000425 if (!enumerate(GEP1->getPointerOperand(), GEP2->getPointerOperand()))
Nick Lewycky911ae392010-05-13 06:45:13 +0000426 return false;
Nick Lewyckya142c932009-06-13 19:09:52 +0000427
Nick Lewycky33ab0b12010-05-13 05:48:45 +0000428 if (!isEquivalentGEP(GEP1, GEP2))
Nick Lewycky911ae392010-05-13 06:45:13 +0000429 return false;
Nick Lewycky33ab0b12010-05-13 05:48:45 +0000430 } else {
Nick Lewycky78d43302010-08-02 05:23:03 +0000431 if (!isEquivalentOperation(F1I, F2I))
Nick Lewycky579a0242008-11-02 05:52:50 +0000432 return false;
433
Nick Lewycky78d43302010-08-02 05:23:03 +0000434 assert(F1I->getNumOperands() == F2I->getNumOperands());
435 for (unsigned i = 0, e = F1I->getNumOperands(); i != e; ++i) {
436 Value *OpF1 = F1I->getOperand(i);
437 Value *OpF2 = F2I->getOperand(i);
Nick Lewycky579a0242008-11-02 05:52:50 +0000438
Nick Lewycky468ee0a2011-01-28 08:43:14 +0000439 if (!enumerate(OpF1, OpF2))
Nick Lewycky911ae392010-05-13 06:45:13 +0000440 return false;
Nick Lewycky33ab0b12010-05-13 05:48:45 +0000441
Nick Lewycky78d43302010-08-02 05:23:03 +0000442 if (OpF1->getValueID() != OpF2->getValueID() ||
443 !isEquivalentType(OpF1->getType(), OpF2->getType()))
Nick Lewycky579a0242008-11-02 05:52:50 +0000444 return false;
445 }
Nick Lewycky579a0242008-11-02 05:52:50 +0000446 }
447
Nick Lewycky78d43302010-08-02 05:23:03 +0000448 ++F1I, ++F2I;
449 } while (F1I != F1E && F2I != F2E);
Nick Lewycky579a0242008-11-02 05:52:50 +0000450
Nick Lewycky78d43302010-08-02 05:23:03 +0000451 return F1I == F1E && F2I == F2E;
Nick Lewycky579a0242008-11-02 05:52:50 +0000452}
453
Nick Lewycky468ee0a2011-01-28 08:43:14 +0000454// Test whether the two functions have equivalent behaviour.
455bool FunctionComparator::compare() {
Nick Lewycky579a0242008-11-02 05:52:50 +0000456 // We need to recheck everything, but check the things that weren't included
457 // in the hash first.
458
Nick Lewycky78d43302010-08-02 05:23:03 +0000459 if (F1->getAttributes() != F2->getAttributes())
Nick Lewycky579a0242008-11-02 05:52:50 +0000460 return false;
461
Nick Lewycky78d43302010-08-02 05:23:03 +0000462 if (F1->hasGC() != F2->hasGC())
Nick Lewycky579a0242008-11-02 05:52:50 +0000463 return false;
464
Nick Lewycky78d43302010-08-02 05:23:03 +0000465 if (F1->hasGC() && F1->getGC() != F2->getGC())
Nick Lewycky579a0242008-11-02 05:52:50 +0000466 return false;
467
Nick Lewycky78d43302010-08-02 05:23:03 +0000468 if (F1->hasSection() != F2->hasSection())
Nick Lewycky579a0242008-11-02 05:52:50 +0000469 return false;
470
Nick Lewycky78d43302010-08-02 05:23:03 +0000471 if (F1->hasSection() && F1->getSection() != F2->getSection())
Nick Lewycky579a0242008-11-02 05:52:50 +0000472 return false;
473
Nick Lewycky78d43302010-08-02 05:23:03 +0000474 if (F1->isVarArg() != F2->isVarArg())
Nick Lewycky287de602009-06-12 08:04:51 +0000475 return false;
476
Nick Lewycky579a0242008-11-02 05:52:50 +0000477 // TODO: if it's internal and only used in direct calls, we could handle this
478 // case too.
Nick Lewycky78d43302010-08-02 05:23:03 +0000479 if (F1->getCallingConv() != F2->getCallingConv())
Nick Lewycky579a0242008-11-02 05:52:50 +0000480 return false;
481
Nick Lewycky78d43302010-08-02 05:23:03 +0000482 if (!isEquivalentType(F1->getFunctionType(), F2->getFunctionType()))
Nick Lewycky579a0242008-11-02 05:52:50 +0000483 return false;
484
Nick Lewycky78d43302010-08-02 05:23:03 +0000485 assert(F1->arg_size() == F2->arg_size() &&
Nick Lewycky2b6c01b2010-09-07 01:42:10 +0000486 "Identically typed functions have different numbers of args!");
Nick Lewycky579a0242008-11-02 05:52:50 +0000487
Nick Lewycky33ab0b12010-05-13 05:48:45 +0000488 // Visit the arguments so that they get enumerated in the order they're
489 // passed in.
Nick Lewycky78d43302010-08-02 05:23:03 +0000490 for (Function::const_arg_iterator f1i = F1->arg_begin(),
491 f2i = F2->arg_begin(), f1e = F1->arg_end(); f1i != f1e; ++f1i, ++f2i) {
Nick Lewycky468ee0a2011-01-28 08:43:14 +0000492 if (!enumerate(f1i, f2i))
Nick Lewycky2b6c01b2010-09-07 01:42:10 +0000493 llvm_unreachable("Arguments repeat!");
Nick Lewycky579a0242008-11-02 05:52:50 +0000494 }
495
Nick Lewyckybe04fde2010-08-08 05:04:23 +0000496 // We do a CFG-ordered walk since the actual ordering of the blocks in the
497 // linked list is immaterial. Our walk starts at the entry block for both
Nick Lewycky78d43302010-08-02 05:23:03 +0000498 // functions, then takes each block from each terminator in order. As an
499 // artifact, this also means that unreachable blocks are ignored.
500 SmallVector<const BasicBlock *, 8> F1BBs, F2BBs;
501 SmallSet<const BasicBlock *, 128> VisitedBBs; // in terms of F1.
Nick Lewyckyc9dcbed2010-08-06 07:21:30 +0000502
Nick Lewycky78d43302010-08-02 05:23:03 +0000503 F1BBs.push_back(&F1->getEntryBlock());
504 F2BBs.push_back(&F2->getEntryBlock());
Nick Lewyckyc9dcbed2010-08-06 07:21:30 +0000505
Nick Lewycky78d43302010-08-02 05:23:03 +0000506 VisitedBBs.insert(F1BBs[0]);
507 while (!F1BBs.empty()) {
508 const BasicBlock *F1BB = F1BBs.pop_back_val();
509 const BasicBlock *F2BB = F2BBs.pop_back_val();
Nick Lewyckyc9dcbed2010-08-06 07:21:30 +0000510
Nick Lewycky468ee0a2011-01-28 08:43:14 +0000511 if (!enumerate(F1BB, F2BB) || !compare(F1BB, F2BB))
Nick Lewycky33ab0b12010-05-13 05:48:45 +0000512 return false;
Nick Lewyckyc9dcbed2010-08-06 07:21:30 +0000513
Nick Lewycky78d43302010-08-02 05:23:03 +0000514 const TerminatorInst *F1TI = F1BB->getTerminator();
515 const TerminatorInst *F2TI = F2BB->getTerminator();
Nick Lewyckyc9dcbed2010-08-06 07:21:30 +0000516
Nick Lewycky78d43302010-08-02 05:23:03 +0000517 assert(F1TI->getNumSuccessors() == F2TI->getNumSuccessors());
518 for (unsigned i = 0, e = F1TI->getNumSuccessors(); i != e; ++i) {
519 if (!VisitedBBs.insert(F1TI->getSuccessor(i)))
Nick Lewycky911ae392010-05-13 06:45:13 +0000520 continue;
Nick Lewyckyc9dcbed2010-08-06 07:21:30 +0000521
Nick Lewycky78d43302010-08-02 05:23:03 +0000522 F1BBs.push_back(F1TI->getSuccessor(i));
523 F2BBs.push_back(F2TI->getSuccessor(i));
Nick Lewycky33ab0b12010-05-13 05:48:45 +0000524 }
525 }
Nick Lewycky579a0242008-11-02 05:52:50 +0000526 return true;
527}
528
Nick Lewycky285cf802011-01-28 07:36:21 +0000529namespace {
530
531/// MergeFunctions finds functions which will generate identical machine code,
532/// by considering all pointer types to be equivalent. Once identified,
533/// MergeFunctions will fold them by replacing a call to one to a call to a
534/// bitcast of the other.
535///
536class MergeFunctions : public ModulePass {
537public:
538 static char ID;
539 MergeFunctions()
540 : ModulePass(ID), HasGlobalAliases(false) {
541 initializeMergeFunctionsPass(*PassRegistry::getPassRegistry());
542 }
543
544 bool runOnModule(Module &M);
545
546private:
547 typedef DenseSet<ComparableFunction> FnSetType;
548
549 /// A work queue of functions that may have been modified and should be
550 /// analyzed again.
551 std::vector<WeakVH> Deferred;
552
553 /// Insert a ComparableFunction into the FnSet, or merge it away if it's
554 /// equal to one that's already present.
Nick Lewycky468ee0a2011-01-28 08:43:14 +0000555 bool insert(ComparableFunction &NewF);
Nick Lewycky285cf802011-01-28 07:36:21 +0000556
557 /// Remove a Function from the FnSet and queue it up for a second sweep of
558 /// analysis.
Nick Lewycky468ee0a2011-01-28 08:43:14 +0000559 void remove(Function *F);
Nick Lewycky285cf802011-01-28 07:36:21 +0000560
561 /// Find the functions that use this Value and remove them from FnSet and
562 /// queue the functions.
Nick Lewycky468ee0a2011-01-28 08:43:14 +0000563 void removeUsers(Value *V);
Nick Lewycky285cf802011-01-28 07:36:21 +0000564
565 /// Replace all direct calls of Old with calls of New. Will bitcast New if
566 /// necessary to make types match.
567 void replaceDirectCallers(Function *Old, Function *New);
568
Nick Lewycky468ee0a2011-01-28 08:43:14 +0000569 /// Merge two equivalent functions. Upon completion, G may be deleted, or may
570 /// be converted into a thunk. In either case, it should never be visited
571 /// again.
572 void mergeTwoFunctions(Function *F, Function *G);
Nick Lewycky285cf802011-01-28 07:36:21 +0000573
Nick Lewycky468ee0a2011-01-28 08:43:14 +0000574 /// Replace G with a thunk or an alias to F. Deletes G.
575 void writeThunkOrAlias(Function *F, Function *G);
Nick Lewycky285cf802011-01-28 07:36:21 +0000576
Nick Lewycky468ee0a2011-01-28 08:43:14 +0000577 /// Replace G with a simple tail call to bitcast(F). Also replace direct uses
578 /// of G with bitcast(F). Deletes G.
579 void writeThunk(Function *F, Function *G);
Nick Lewycky285cf802011-01-28 07:36:21 +0000580
Nick Lewycky468ee0a2011-01-28 08:43:14 +0000581 /// Replace G with an alias to F. Deletes G.
582 void writeAlias(Function *F, Function *G);
Nick Lewycky285cf802011-01-28 07:36:21 +0000583
Nick Lewycky468ee0a2011-01-28 08:43:14 +0000584 /// The set of all distinct functions. Use the insert() and remove() methods
585 /// to modify it.
Nick Lewycky285cf802011-01-28 07:36:21 +0000586 FnSetType FnSet;
587
588 /// TargetData for more accurate GEP comparisons. May be NULL.
589 TargetData *TD;
590
591 /// Whether or not the target supports global aliases.
592 bool HasGlobalAliases;
593};
594
595} // end anonymous namespace
596
597char MergeFunctions::ID = 0;
598INITIALIZE_PASS(MergeFunctions, "mergefunc", "Merge Functions", false, false)
599
600ModulePass *llvm::createMergeFunctionsPass() {
601 return new MergeFunctions();
602}
603
604bool MergeFunctions::runOnModule(Module &M) {
605 bool Changed = false;
606 TD = getAnalysisIfAvailable<TargetData>();
607
608 for (Module::iterator I = M.begin(), E = M.end(); I != E; ++I) {
609 if (!I->isDeclaration() && !I->hasAvailableExternallyLinkage())
610 Deferred.push_back(WeakVH(I));
611 }
612 FnSet.resize(Deferred.size());
613
614 do {
615 std::vector<WeakVH> Worklist;
616 Deferred.swap(Worklist);
617
618 DEBUG(dbgs() << "size of module: " << M.size() << '\n');
619 DEBUG(dbgs() << "size of worklist: " << Worklist.size() << '\n');
620
621 // Insert only strong functions and merge them. Strong function merging
622 // always deletes one of them.
623 for (std::vector<WeakVH>::iterator I = Worklist.begin(),
624 E = Worklist.end(); I != E; ++I) {
625 if (!*I) continue;
626 Function *F = cast<Function>(*I);
627 if (!F->isDeclaration() && !F->hasAvailableExternallyLinkage() &&
628 !F->mayBeOverridden()) {
629 ComparableFunction CF = ComparableFunction(F, TD);
Nick Lewycky468ee0a2011-01-28 08:43:14 +0000630 Changed |= insert(CF);
Nick Lewycky285cf802011-01-28 07:36:21 +0000631 }
632 }
633
634 // Insert only weak functions and merge them. By doing these second we
635 // create thunks to the strong function when possible. When two weak
636 // functions are identical, we create a new strong function with two weak
637 // weak thunks to it which are identical but not mergable.
638 for (std::vector<WeakVH>::iterator I = Worklist.begin(),
639 E = Worklist.end(); I != E; ++I) {
640 if (!*I) continue;
641 Function *F = cast<Function>(*I);
642 if (!F->isDeclaration() && !F->hasAvailableExternallyLinkage() &&
643 F->mayBeOverridden()) {
644 ComparableFunction CF = ComparableFunction(F, TD);
Nick Lewycky468ee0a2011-01-28 08:43:14 +0000645 Changed |= insert(CF);
Nick Lewycky285cf802011-01-28 07:36:21 +0000646 }
647 }
648 DEBUG(dbgs() << "size of FnSet: " << FnSet.size() << '\n');
649 } while (!Deferred.empty());
650
651 FnSet.clear();
652
653 return Changed;
654}
655
656bool DenseMapInfo<ComparableFunction>::isEqual(const ComparableFunction &LHS,
657 const ComparableFunction &RHS) {
658 if (LHS.getFunc() == RHS.getFunc() &&
659 LHS.getHash() == RHS.getHash())
660 return true;
661 if (!LHS.getFunc() || !RHS.getFunc())
662 return false;
Nick Lewycky3ba974a2011-02-09 06:32:02 +0000663
664 // One of these is a special "underlying pointer comparison only" object.
665 if (LHS.getTD() == ComparableFunction::LookupOnly ||
666 RHS.getTD() == ComparableFunction::LookupOnly)
667 return false;
668
Nick Lewycky285cf802011-01-28 07:36:21 +0000669 assert(LHS.getTD() == RHS.getTD() &&
670 "Comparing functions for different targets");
671
Nick Lewycky8eb3e542011-02-02 05:31:01 +0000672 return FunctionComparator(LHS.getTD(), LHS.getFunc(),
673 RHS.getFunc()).compare();
Nick Lewycky285cf802011-01-28 07:36:21 +0000674}
675
Nick Lewycky468ee0a2011-01-28 08:43:14 +0000676// Replace direct callers of Old with New.
Nick Lewyckyb38824f2011-01-25 08:56:50 +0000677void MergeFunctions::replaceDirectCallers(Function *Old, Function *New) {
678 Constant *BitcastNew = ConstantExpr::getBitCast(New, Old->getType());
679 for (Value::use_iterator UI = Old->use_begin(), UE = Old->use_end();
680 UI != UE;) {
681 Value::use_iterator TheIter = UI;
682 ++UI;
683 CallSite CS(*TheIter);
684 if (CS && CS.isCallee(TheIter)) {
Nick Lewycky468ee0a2011-01-28 08:43:14 +0000685 remove(CS.getInstruction()->getParent()->getParent());
Nick Lewyckyb38824f2011-01-25 08:56:50 +0000686 TheIter.getUse().set(BitcastNew);
687 }
688 }
689}
690
Nick Lewycky468ee0a2011-01-28 08:43:14 +0000691// Replace G with an alias to F if possible, or else a thunk to F. Deletes G.
692void MergeFunctions::writeThunkOrAlias(Function *F, Function *G) {
Nick Lewyckyb38824f2011-01-25 08:56:50 +0000693 if (HasGlobalAliases && G->hasUnnamedAddr()) {
694 if (G->hasExternalLinkage() || G->hasLocalLinkage() ||
695 G->hasWeakLinkage()) {
Nick Lewycky468ee0a2011-01-28 08:43:14 +0000696 writeAlias(F, G);
Nick Lewyckyb38824f2011-01-25 08:56:50 +0000697 return;
698 }
699 }
700
Nick Lewycky468ee0a2011-01-28 08:43:14 +0000701 writeThunk(F, G);
Nick Lewyckyb38824f2011-01-25 08:56:50 +0000702}
703
Nick Lewycky468ee0a2011-01-28 08:43:14 +0000704// Replace G with a simple tail call to bitcast(F). Also replace direct uses
705// of G with bitcast(F). Deletes G.
706void MergeFunctions::writeThunk(Function *F, Function *G) {
Nick Lewycky33ab0b12010-05-13 05:48:45 +0000707 if (!G->mayBeOverridden()) {
708 // Redirect direct callers of G to F.
Nick Lewyckyb38824f2011-01-25 08:56:50 +0000709 replaceDirectCallers(G, F);
Nick Lewycky33ab0b12010-05-13 05:48:45 +0000710 }
711
Nick Lewycky2b6c01b2010-09-07 01:42:10 +0000712 // If G was internal then we may have replaced all uses of G with F. If so,
Nick Lewyckyc9dcbed2010-08-06 07:21:30 +0000713 // stop here and delete G. There's no need for a thunk.
714 if (G->hasLocalLinkage() && G->use_empty()) {
715 G->eraseFromParent();
716 return;
717 }
718
Nick Lewycky8728d7a2009-06-12 15:56:56 +0000719 Function *NewG = Function::Create(G->getFunctionType(), G->getLinkage(), "",
720 G->getParent());
Owen Anderson1d0be152009-08-13 21:58:54 +0000721 BasicBlock *BB = BasicBlock::Create(F->getContext(), "", NewG);
Nick Lewyckybe04fde2010-08-08 05:04:23 +0000722 IRBuilder<false> Builder(BB);
Nick Lewycky287de602009-06-12 08:04:51 +0000723
Nick Lewycky33ab0b12010-05-13 05:48:45 +0000724 SmallVector<Value *, 16> Args;
Nick Lewycky287de602009-06-12 08:04:51 +0000725 unsigned i = 0;
726 const FunctionType *FFTy = F->getFunctionType();
727 for (Function::arg_iterator AI = NewG->arg_begin(), AE = NewG->arg_end();
728 AI != AE; ++AI) {
Nick Lewyckybe04fde2010-08-08 05:04:23 +0000729 Args.push_back(Builder.CreateBitCast(AI, FFTy->getParamType(i)));
Nick Lewycky287de602009-06-12 08:04:51 +0000730 ++i;
731 }
732
Nick Lewyckybe04fde2010-08-08 05:04:23 +0000733 CallInst *CI = Builder.CreateCall(F, Args.begin(), Args.end());
Nick Lewycky287de602009-06-12 08:04:51 +0000734 CI->setTailCall();
Nick Lewyckyb3c36c92009-06-12 16:04:00 +0000735 CI->setCallingConv(F->getCallingConv());
Benjamin Kramerf0127052010-01-05 13:12:22 +0000736 if (NewG->getReturnType()->isVoidTy()) {
Nick Lewyckybe04fde2010-08-08 05:04:23 +0000737 Builder.CreateRetVoid();
Nick Lewycky287de602009-06-12 08:04:51 +0000738 } else {
Nick Lewyckybe04fde2010-08-08 05:04:23 +0000739 Builder.CreateRet(Builder.CreateBitCast(CI, NewG->getReturnType()));
Nick Lewycky287de602009-06-12 08:04:51 +0000740 }
741
742 NewG->copyAttributesFrom(G);
743 NewG->takeName(G);
Nick Lewycky468ee0a2011-01-28 08:43:14 +0000744 removeUsers(G);
Nick Lewycky287de602009-06-12 08:04:51 +0000745 G->replaceAllUsesWith(NewG);
746 G->eraseFromParent();
Nick Lewycky2b6c01b2010-09-07 01:42:10 +0000747
Nick Lewycky468ee0a2011-01-28 08:43:14 +0000748 DEBUG(dbgs() << "writeThunk: " << NewG->getName() << '\n');
Nick Lewycky2b6c01b2010-09-07 01:42:10 +0000749 ++NumThunksWritten;
Nick Lewycky287de602009-06-12 08:04:51 +0000750}
751
Nick Lewycky468ee0a2011-01-28 08:43:14 +0000752// Replace G with an alias to F and delete G.
753void MergeFunctions::writeAlias(Function *F, Function *G) {
Nick Lewyckyb38824f2011-01-25 08:56:50 +0000754 Constant *BitcastF = ConstantExpr::getBitCast(F, G->getType());
755 GlobalAlias *GA = new GlobalAlias(G->getType(), G->getLinkage(), "",
756 BitcastF, G->getParent());
757 F->setAlignment(std::max(F->getAlignment(), G->getAlignment()));
758 GA->takeName(G);
759 GA->setVisibility(G->getVisibility());
Nick Lewycky468ee0a2011-01-28 08:43:14 +0000760 removeUsers(G);
Nick Lewyckyb38824f2011-01-25 08:56:50 +0000761 G->replaceAllUsesWith(GA);
762 G->eraseFromParent();
763
Nick Lewycky468ee0a2011-01-28 08:43:14 +0000764 DEBUG(dbgs() << "writeAlias: " << GA->getName() << '\n');
Nick Lewyckyb38824f2011-01-25 08:56:50 +0000765 ++NumAliasesWritten;
766}
767
Nick Lewycky468ee0a2011-01-28 08:43:14 +0000768// Merge two equivalent functions. Upon completion, Function G is deleted.
769void MergeFunctions::mergeTwoFunctions(Function *F, Function *G) {
Nick Lewycky2b6c01b2010-09-07 01:42:10 +0000770 if (F->mayBeOverridden()) {
771 assert(G->mayBeOverridden());
Nick Lewycky33ab0b12010-05-13 05:48:45 +0000772
Nick Lewyckyb38824f2011-01-25 08:56:50 +0000773 if (HasGlobalAliases) {
774 // Make them both thunks to the same internal function.
775 Function *H = Function::Create(F->getFunctionType(), F->getLinkage(), "",
776 F->getParent());
777 H->copyAttributesFrom(F);
778 H->takeName(F);
Nick Lewycky468ee0a2011-01-28 08:43:14 +0000779 removeUsers(F);
Nick Lewyckyb38824f2011-01-25 08:56:50 +0000780 F->replaceAllUsesWith(H);
Nick Lewycky33ab0b12010-05-13 05:48:45 +0000781
Nick Lewyckyb38824f2011-01-25 08:56:50 +0000782 unsigned MaxAlignment = std::max(G->getAlignment(), H->getAlignment());
Nick Lewycky32218342010-08-09 21:03:28 +0000783
Nick Lewycky468ee0a2011-01-28 08:43:14 +0000784 writeAlias(F, G);
785 writeAlias(F, H);
Nick Lewycky33ab0b12010-05-13 05:48:45 +0000786
Nick Lewyckyb38824f2011-01-25 08:56:50 +0000787 F->setAlignment(MaxAlignment);
788 F->setLinkage(GlobalValue::PrivateLinkage);
789 } else {
790 // We can't merge them. Instead, pick one and update all direct callers
791 // to call it and hope that we improve the instruction cache hit rate.
792 replaceDirectCallers(G, F);
793 }
Nick Lewycky2b6c01b2010-09-07 01:42:10 +0000794
795 ++NumDoubleWeak;
Nick Lewyckyc9dcbed2010-08-06 07:21:30 +0000796 } else {
Nick Lewycky468ee0a2011-01-28 08:43:14 +0000797 writeThunkOrAlias(F, G);
Nick Lewycky6feb3332008-11-02 16:46:26 +0000798 }
799
Nick Lewycky287de602009-06-12 08:04:51 +0000800 ++NumFunctionsMerged;
Nick Lewycky579a0242008-11-02 05:52:50 +0000801}
802
Nick Lewycky468ee0a2011-01-28 08:43:14 +0000803// Insert a ComparableFunction into the FnSet, or merge it away if equal to one
804// that was already inserted.
805bool MergeFunctions::insert(ComparableFunction &NewF) {
Nick Lewyckyb0104e12010-09-05 08:22:49 +0000806 std::pair<FnSetType::iterator, bool> Result = FnSet.insert(NewF);
Nick Lewycky3ba974a2011-02-09 06:32:02 +0000807 if (Result.second) {
808 DEBUG(dbgs() << "Inserting as unique: " << NewF.getFunc()->getName() << '\n');
Nick Lewyckyb0104e12010-09-05 08:22:49 +0000809 return false;
Nick Lewycky3ba974a2011-02-09 06:32:02 +0000810 }
Nick Lewyckybe04fde2010-08-08 05:04:23 +0000811
Nick Lewyckyb0e17772010-09-05 09:00:32 +0000812 const ComparableFunction &OldF = *Result.first;
Nick Lewyckyb0104e12010-09-05 08:22:49 +0000813
814 // Never thunk a strong function to a weak function.
Nick Lewycky2b6c01b2010-09-07 01:42:10 +0000815 assert(!OldF.getFunc()->mayBeOverridden() ||
816 NewF.getFunc()->mayBeOverridden());
Nick Lewyckyb0104e12010-09-05 08:22:49 +0000817
Nick Lewyckyb0e17772010-09-05 09:00:32 +0000818 DEBUG(dbgs() << " " << OldF.getFunc()->getName() << " == "
819 << NewF.getFunc()->getName() << '\n');
Nick Lewyckyb0104e12010-09-05 08:22:49 +0000820
Nick Lewyckyb0e17772010-09-05 09:00:32 +0000821 Function *DeleteF = NewF.getFunc();
822 NewF.release();
Nick Lewycky468ee0a2011-01-28 08:43:14 +0000823 mergeTwoFunctions(OldF.getFunc(), DeleteF);
Nick Lewyckyb0104e12010-09-05 08:22:49 +0000824 return true;
Nick Lewyckybe04fde2010-08-08 05:04:23 +0000825}
Nick Lewycky579a0242008-11-02 05:52:50 +0000826
Nick Lewycky468ee0a2011-01-28 08:43:14 +0000827// Remove a function from FnSet. If it was already in FnSet, add it to Deferred
828// so that we'll look at it in the next round.
829void MergeFunctions::remove(Function *F) {
Nick Lewycky3ba974a2011-02-09 06:32:02 +0000830 // We need to make sure we remove F, not a function "equal" to F per the
831 // function equality comparator.
832 //
833 // The special "lookup only" ComparableFunction bypasses the expensive
834 // function comparison in favour of a pointer comparison on the underlying
835 // Function*'s.
836 ComparableFunction CF = ComparableFunction(F, ComparableFunction::LookupOnly);
Nick Lewyckyabd6c752011-01-02 02:46:33 +0000837 if (FnSet.erase(CF)) {
Nick Lewycky3ba974a2011-02-09 06:32:02 +0000838 DEBUG(dbgs() << "Removed " << F->getName() << " from set and deferred it.\n");
Nick Lewyckyabd6c752011-01-02 02:46:33 +0000839 Deferred.push_back(F);
Nick Lewyckyf53de862010-08-31 05:53:05 +0000840 }
Nick Lewyckyabd6c752011-01-02 02:46:33 +0000841}
Nick Lewyckyb0104e12010-09-05 08:22:49 +0000842
Nick Lewycky468ee0a2011-01-28 08:43:14 +0000843// For each instruction used by the value, remove() the function that contains
844// the instruction. This should happen right before a call to RAUW.
845void MergeFunctions::removeUsers(Value *V) {
Nick Lewyckyd081b042011-01-02 19:16:44 +0000846 std::vector<Value *> Worklist;
847 Worklist.push_back(V);
848 while (!Worklist.empty()) {
849 Value *V = Worklist.back();
850 Worklist.pop_back();
851
852 for (Value::use_iterator UI = V->use_begin(), UE = V->use_end();
853 UI != UE; ++UI) {
854 Use &U = UI.getUse();
855 if (Instruction *I = dyn_cast<Instruction>(U.getUser())) {
Nick Lewycky468ee0a2011-01-28 08:43:14 +0000856 remove(I->getParent()->getParent());
Nick Lewyckyd081b042011-01-02 19:16:44 +0000857 } else if (isa<GlobalValue>(U.getUser())) {
Nick Lewyckye8f81392011-01-15 10:16:23 +0000858 // do nothing
Nick Lewyckyd081b042011-01-02 19:16:44 +0000859 } else if (Constant *C = dyn_cast<Constant>(U.getUser())) {
Nick Lewyckye8f81392011-01-15 10:16:23 +0000860 for (Value::use_iterator CUI = C->use_begin(), CUE = C->use_end();
861 CUI != CUE; ++CUI)
Nick Lewyckyd081b042011-01-02 19:16:44 +0000862 Worklist.push_back(*CUI);
863 }
Nick Lewyckyb0104e12010-09-05 08:22:49 +0000864 }
Nick Lewyckyf53de862010-08-31 05:53:05 +0000865 }
Nick Lewyckyb0104e12010-09-05 08:22:49 +0000866}