blob: 79a7533c4849406970d2fe42022c6e5e0329bb2a [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;
99
Nick Lewyckyb0104e12010-09-05 08:22:49 +0000100 ComparableFunction(Function *Func, TargetData *TD)
Nick Lewycky468ee0a2011-01-28 08:43:14 +0000101 : Func(Func), Hash(profileFunction(Func)), TD(TD) {}
Nick Lewyckyb0104e12010-09-05 08:22:49 +0000102
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
115private:
116 explicit ComparableFunction(unsigned Hash)
117 : Func(NULL), Hash(Hash), TD(NULL) {}
118
119 AssertingVH<Function> Func;
120 unsigned Hash;
121 TargetData *TD;
Nick Lewyckyb0104e12010-09-05 08:22:49 +0000122};
123
Nick Lewyckyb0e17772010-09-05 09:00:32 +0000124const ComparableFunction ComparableFunction::EmptyKey = ComparableFunction(0);
125const ComparableFunction ComparableFunction::TombstoneKey =
126 ComparableFunction(1);
127
Nick Lewycky2b6c01b2010-09-07 01:42:10 +0000128}
Nick Lewyckyb0e17772010-09-05 09:00:32 +0000129
130namespace llvm {
131 template <>
132 struct DenseMapInfo<ComparableFunction> {
133 static ComparableFunction getEmptyKey() {
134 return ComparableFunction::EmptyKey;
135 }
136 static ComparableFunction getTombstoneKey() {
137 return ComparableFunction::TombstoneKey;
138 }
139 static unsigned getHashValue(const ComparableFunction &CF) {
140 return CF.getHash();
141 }
142 static bool isEqual(const ComparableFunction &LHS,
143 const ComparableFunction &RHS);
144 };
145}
146
147namespace {
Nick Lewyckyb0104e12010-09-05 08:22:49 +0000148
Nick Lewyckybe04fde2010-08-08 05:04:23 +0000149/// FunctionComparator - Compares two functions to determine whether or not
150/// they will generate machine code with the same behaviour. TargetData is
151/// used if available. The comparator always fails conservatively (erring on the
152/// side of claiming that two functions are different).
Nick Lewycky78d43302010-08-02 05:23:03 +0000153class FunctionComparator {
154public:
Nick Lewyckyf53de862010-08-31 05:53:05 +0000155 FunctionComparator(const TargetData *TD, const Function *F1,
156 const Function *F2)
Nick Lewyckyc9dcbed2010-08-06 07:21:30 +0000157 : F1(F1), F2(F2), TD(TD), IDMap1Count(0), IDMap2Count(0) {}
Nick Lewycky287de602009-06-12 08:04:51 +0000158
Nick Lewycky468ee0a2011-01-28 08:43:14 +0000159 /// Test whether the two functions have equivalent behaviour.
160 bool compare();
Nick Lewycky78d43302010-08-02 05:23:03 +0000161
162private:
Nick Lewycky468ee0a2011-01-28 08:43:14 +0000163 /// Test whether two basic blocks have equivalent behaviour.
164 bool compare(const BasicBlock *BB1, const BasicBlock *BB2);
Nick Lewycky78d43302010-08-02 05:23:03 +0000165
Nick Lewycky468ee0a2011-01-28 08:43:14 +0000166 /// Assign or look up previously assigned numbers for the two values, and
167 /// return whether the numbers are equal. Numbers are assigned in the order
168 /// visited.
169 bool enumerate(const Value *V1, const Value *V2);
Nick Lewycky78d43302010-08-02 05:23:03 +0000170
Nick Lewycky468ee0a2011-01-28 08:43:14 +0000171 /// Compare two Instructions for equivalence, similar to
172 /// Instruction::isSameOperationAs but with modifications to the type
Nick Lewyckybe04fde2010-08-08 05:04:23 +0000173 /// comparison.
Nick Lewycky78d43302010-08-02 05:23:03 +0000174 bool isEquivalentOperation(const Instruction *I1,
175 const Instruction *I2) const;
176
Nick Lewycky468ee0a2011-01-28 08:43:14 +0000177 /// Compare two GEPs for equivalent pointer arithmetic.
Nick Lewycky78d43302010-08-02 05:23:03 +0000178 bool isEquivalentGEP(const GEPOperator *GEP1, const GEPOperator *GEP2);
179 bool isEquivalentGEP(const GetElementPtrInst *GEP1,
Nick Lewyckybe04fde2010-08-08 05:04:23 +0000180 const GetElementPtrInst *GEP2) {
Nick Lewycky78d43302010-08-02 05:23:03 +0000181 return isEquivalentGEP(cast<GEPOperator>(GEP1), cast<GEPOperator>(GEP2));
182 }
183
Nick Lewycky468ee0a2011-01-28 08:43:14 +0000184 /// Compare two Types, treating all pointer types as equal.
Nick Lewycky78d43302010-08-02 05:23:03 +0000185 bool isEquivalentType(const Type *Ty1, const Type *Ty2) const;
186
187 // The two functions undergoing comparison.
Nick Lewyckyf53de862010-08-31 05:53:05 +0000188 const Function *F1, *F2;
Nick Lewycky78d43302010-08-02 05:23:03 +0000189
Nick Lewyckyf53de862010-08-31 05:53:05 +0000190 const TargetData *TD;
Nick Lewycky78d43302010-08-02 05:23:03 +0000191
192 typedef DenseMap<const Value *, unsigned long> IDMap;
Nick Lewyckyc9dcbed2010-08-06 07:21:30 +0000193 IDMap Map1, Map2;
194 unsigned long IDMap1Count, IDMap2Count;
Nick Lewycky78d43302010-08-02 05:23:03 +0000195};
Nick Lewycky285cf802011-01-28 07:36:21 +0000196
Nick Lewycky78d43302010-08-02 05:23:03 +0000197}
198
Nick Lewycky468ee0a2011-01-28 08:43:14 +0000199// Any two pointers in the same address space are equivalent, intptr_t and
200// pointers are equivalent. Otherwise, standard type equivalence rules apply.
Nick Lewycky78d43302010-08-02 05:23:03 +0000201bool FunctionComparator::isEquivalentType(const Type *Ty1,
202 const Type *Ty2) const {
Nick Lewycky287de602009-06-12 08:04:51 +0000203 if (Ty1 == Ty2)
204 return true;
Nick Lewycky207c1932011-01-26 09:13:58 +0000205 if (Ty1->getTypeID() != Ty2->getTypeID()) {
206 if (TD) {
207 LLVMContext &Ctx = Ty1->getContext();
208 if (isa<PointerType>(Ty1) && Ty2 == TD->getIntPtrType(Ctx)) return true;
209 if (isa<PointerType>(Ty2) && Ty1 == TD->getIntPtrType(Ctx)) return true;
210 }
Nick Lewycky287de602009-06-12 08:04:51 +0000211 return false;
Nick Lewycky207c1932011-01-26 09:13:58 +0000212 }
Nick Lewycky287de602009-06-12 08:04:51 +0000213
214 switch(Ty1->getTypeID()) {
Nick Lewycky33ab0b12010-05-13 05:48:45 +0000215 default:
216 llvm_unreachable("Unknown type!");
Duncan Sands8246adc2010-07-07 07:48:00 +0000217 // Fall through in Release mode.
Nick Lewycky33ab0b12010-05-13 05:48:45 +0000218 case Type::IntegerTyID:
219 case Type::OpaqueTyID:
Nick Lewycky388f4912011-01-26 08:50:18 +0000220 case Type::VectorTyID:
Nick Lewycky33ab0b12010-05-13 05:48:45 +0000221 // Ty1 == Ty2 would have returned true earlier.
222 return false;
223
Nick Lewycky287de602009-06-12 08:04:51 +0000224 case Type::VoidTyID:
225 case Type::FloatTyID:
226 case Type::DoubleTyID:
227 case Type::X86_FP80TyID:
228 case Type::FP128TyID:
229 case Type::PPC_FP128TyID:
230 case Type::LabelTyID:
231 case Type::MetadataTyID:
232 return true;
233
Nick Lewycky287de602009-06-12 08:04:51 +0000234 case Type::PointerTyID: {
235 const PointerType *PTy1 = cast<PointerType>(Ty1);
236 const PointerType *PTy2 = cast<PointerType>(Ty2);
237 return PTy1->getAddressSpace() == PTy2->getAddressSpace();
238 }
239
240 case Type::StructTyID: {
241 const StructType *STy1 = cast<StructType>(Ty1);
242 const StructType *STy2 = cast<StructType>(Ty2);
243 if (STy1->getNumElements() != STy2->getNumElements())
244 return false;
245
246 if (STy1->isPacked() != STy2->isPacked())
247 return false;
248
249 for (unsigned i = 0, e = STy1->getNumElements(); i != e; ++i) {
250 if (!isEquivalentType(STy1->getElementType(i), STy2->getElementType(i)))
251 return false;
252 }
253 return true;
254 }
255
256 case Type::FunctionTyID: {
257 const FunctionType *FTy1 = cast<FunctionType>(Ty1);
258 const FunctionType *FTy2 = cast<FunctionType>(Ty2);
259 if (FTy1->getNumParams() != FTy2->getNumParams() ||
260 FTy1->isVarArg() != FTy2->isVarArg())
261 return false;
262
263 if (!isEquivalentType(FTy1->getReturnType(), FTy2->getReturnType()))
264 return false;
265
266 for (unsigned i = 0, e = FTy1->getNumParams(); i != e; ++i) {
267 if (!isEquivalentType(FTy1->getParamType(i), FTy2->getParamType(i)))
268 return false;
269 }
270 return true;
271 }
272
Nick Lewycky394ce412010-07-16 06:31:12 +0000273 case Type::ArrayTyID: {
274 const ArrayType *ATy1 = cast<ArrayType>(Ty1);
275 const ArrayType *ATy2 = cast<ArrayType>(Ty2);
276 return ATy1->getNumElements() == ATy2->getNumElements() &&
277 isEquivalentType(ATy1->getElementType(), ATy2->getElementType());
278 }
Nick Lewycky287de602009-06-12 08:04:51 +0000279 }
280}
281
Nick Lewycky468ee0a2011-01-28 08:43:14 +0000282// Determine whether the two operations are the same except that pointer-to-A
283// and pointer-to-B are equivalent. This should be kept in sync with
284// Instruction::isSameOperationAs.
Nick Lewycky78d43302010-08-02 05:23:03 +0000285bool FunctionComparator::isEquivalentOperation(const Instruction *I1,
286 const Instruction *I2) const {
Nick Lewycky39c33e32011-02-06 05:04:00 +0000287 // Differences from Instruction::isSameOperationAs:
288 // * replace type comparison with calls to isEquivalentType.
289 // * we test for I->hasSameSubclassOptionalData (nuw/nsw/tail) at the top
290 // * because of the above, we don't test for the tail bit on calls later on
Nick Lewycky287de602009-06-12 08:04:51 +0000291 if (I1->getOpcode() != I2->getOpcode() ||
292 I1->getNumOperands() != I2->getNumOperands() ||
Dan Gohman58cfa3b2009-08-25 22:11:20 +0000293 !isEquivalentType(I1->getType(), I2->getType()) ||
294 !I1->hasSameSubclassOptionalData(I2))
Nick Lewycky287de602009-06-12 08:04:51 +0000295 return false;
296
297 // We have two instructions of identical opcode and #operands. Check to see
298 // if all operands are the same type
299 for (unsigned i = 0, e = I1->getNumOperands(); i != e; ++i)
300 if (!isEquivalentType(I1->getOperand(i)->getType(),
301 I2->getOperand(i)->getType()))
302 return false;
303
304 // Check special state that is a part of some instructions.
305 if (const LoadInst *LI = dyn_cast<LoadInst>(I1))
306 return LI->isVolatile() == cast<LoadInst>(I2)->isVolatile() &&
307 LI->getAlignment() == cast<LoadInst>(I2)->getAlignment();
308 if (const StoreInst *SI = dyn_cast<StoreInst>(I1))
309 return SI->isVolatile() == cast<StoreInst>(I2)->isVolatile() &&
310 SI->getAlignment() == cast<StoreInst>(I2)->getAlignment();
311 if (const CmpInst *CI = dyn_cast<CmpInst>(I1))
312 return CI->getPredicate() == cast<CmpInst>(I2)->getPredicate();
313 if (const CallInst *CI = dyn_cast<CallInst>(I1))
Nick Lewycky39c33e32011-02-06 05:04:00 +0000314 return CI->getCallingConv() == cast<CallInst>(I2)->getCallingConv() &&
Nick Lewyckyf6c63c22011-01-26 09:23:19 +0000315 CI->getAttributes() == cast<CallInst>(I2)->getAttributes();
Nick Lewycky287de602009-06-12 08:04:51 +0000316 if (const InvokeInst *CI = dyn_cast<InvokeInst>(I1))
317 return CI->getCallingConv() == cast<InvokeInst>(I2)->getCallingConv() &&
Nick Lewyckyf6c63c22011-01-26 09:23:19 +0000318 CI->getAttributes() == cast<InvokeInst>(I2)->getAttributes();
Nick Lewycky287de602009-06-12 08:04:51 +0000319 if (const InsertValueInst *IVI = dyn_cast<InsertValueInst>(I1)) {
320 if (IVI->getNumIndices() != cast<InsertValueInst>(I2)->getNumIndices())
321 return false;
322 for (unsigned i = 0, e = IVI->getNumIndices(); i != e; ++i)
323 if (IVI->idx_begin()[i] != cast<InsertValueInst>(I2)->idx_begin()[i])
324 return false;
325 return true;
326 }
327 if (const ExtractValueInst *EVI = dyn_cast<ExtractValueInst>(I1)) {
328 if (EVI->getNumIndices() != cast<ExtractValueInst>(I2)->getNumIndices())
329 return false;
330 for (unsigned i = 0, e = EVI->getNumIndices(); i != e; ++i)
331 if (EVI->idx_begin()[i] != cast<ExtractValueInst>(I2)->idx_begin()[i])
332 return false;
333 return true;
334 }
335
336 return true;
Nick Lewycky579a0242008-11-02 05:52:50 +0000337}
338
Nick Lewycky468ee0a2011-01-28 08:43:14 +0000339// Determine whether two GEP operations perform the same underlying arithmetic.
Nick Lewycky78d43302010-08-02 05:23:03 +0000340bool FunctionComparator::isEquivalentGEP(const GEPOperator *GEP1,
341 const GEPOperator *GEP2) {
342 // When we have target data, we can reduce the GEP down to the value in bytes
343 // added to the address.
Nick Lewycky33ab0b12010-05-13 05:48:45 +0000344 if (TD && GEP1->hasAllConstantIndices() && GEP2->hasAllConstantIndices()) {
Nick Lewycky78d43302010-08-02 05:23:03 +0000345 SmallVector<Value *, 8> Indices1(GEP1->idx_begin(), GEP1->idx_end());
346 SmallVector<Value *, 8> Indices2(GEP2->idx_begin(), GEP2->idx_end());
Nick Lewycky33ab0b12010-05-13 05:48:45 +0000347 uint64_t Offset1 = TD->getIndexedOffset(GEP1->getPointerOperandType(),
348 Indices1.data(), Indices1.size());
349 uint64_t Offset2 = TD->getIndexedOffset(GEP2->getPointerOperandType(),
350 Indices2.data(), Indices2.size());
351 return Offset1 == Offset2;
Nick Lewycky579a0242008-11-02 05:52:50 +0000352 }
353
Nick Lewycky33ab0b12010-05-13 05:48:45 +0000354 if (GEP1->getPointerOperand()->getType() !=
355 GEP2->getPointerOperand()->getType())
356 return false;
357
358 if (GEP1->getNumOperands() != GEP2->getNumOperands())
359 return false;
360
361 for (unsigned i = 0, e = GEP1->getNumOperands(); i != e; ++i) {
Nick Lewycky468ee0a2011-01-28 08:43:14 +0000362 if (!enumerate(GEP1->getOperand(i), GEP2->getOperand(i)))
Nick Lewycky33ab0b12010-05-13 05:48:45 +0000363 return false;
364 }
365
366 return true;
Nick Lewycky579a0242008-11-02 05:52:50 +0000367}
368
Nick Lewycky468ee0a2011-01-28 08:43:14 +0000369// Compare two values used by the two functions under pair-wise comparison. If
370// this is the first time the values are seen, they're added to the mapping so
371// that we will detect mismatches on next use.
372bool FunctionComparator::enumerate(const Value *V1, const Value *V2) {
Nick Lewycky78d43302010-08-02 05:23:03 +0000373 // Check for function @f1 referring to itself and function @f2 referring to
374 // itself, or referring to each other, or both referring to either of them.
375 // They're all equivalent if the two functions are otherwise equivalent.
Nick Lewyckyc9dcbed2010-08-06 07:21:30 +0000376 if (V1 == F1 && V2 == F2)
377 return true;
378 if (V1 == F2 && V2 == F1)
379 return true;
Nick Lewycky579a0242008-11-02 05:52:50 +0000380
Benjamin Kramer9c1858c2011-01-27 20:30:54 +0000381 if (const Constant *C1 = dyn_cast<Constant>(V1)) {
Nick Lewycky25296e22011-01-27 08:38:19 +0000382 if (V1 == V2) return true;
Nick Lewycky25296e22011-01-27 08:38:19 +0000383 const Constant *C2 = dyn_cast<Constant>(V2);
384 if (!C2) return false;
385 // TODO: constant expressions with GEP or references to F1 or F2.
386 if (C1->isNullValue() && C2->isNullValue() &&
387 isEquivalentType(C1->getType(), C2->getType()))
388 return true;
Nick Lewyckyc9d69482011-01-27 19:51:31 +0000389 // Try bitcasting C2 to C1's type. If the bitcast is legal and returns C1
390 // then they must have equal bit patterns.
Nick Lewycky25296e22011-01-27 08:38:19 +0000391 return C1->getType()->canLosslesslyBitCastTo(C2->getType()) &&
392 C1 == ConstantExpr::getBitCast(const_cast<Constant*>(C2), C1->getType());
393 }
Nick Lewycky33ab0b12010-05-13 05:48:45 +0000394
Nick Lewyckyd4893322011-02-06 04:33:50 +0000395 if (isa<InlineAsm>(V1) || isa<InlineAsm>(V2))
396 return V1 == V2;
Nick Lewycky33ab0b12010-05-13 05:48:45 +0000397
Nick Lewycky33ab0b12010-05-13 05:48:45 +0000398 unsigned long &ID1 = Map1[V1];
399 if (!ID1)
Nick Lewyckyc9dcbed2010-08-06 07:21:30 +0000400 ID1 = ++IDMap1Count;
Nick Lewycky33ab0b12010-05-13 05:48:45 +0000401
Nick Lewycky33ab0b12010-05-13 05:48:45 +0000402 unsigned long &ID2 = Map2[V2];
403 if (!ID2)
Nick Lewyckyc9dcbed2010-08-06 07:21:30 +0000404 ID2 = ++IDMap2Count;
Nick Lewycky33ab0b12010-05-13 05:48:45 +0000405
406 return ID1 == ID2;
407}
408
Nick Lewycky468ee0a2011-01-28 08:43:14 +0000409// Test whether two basic blocks have equivalent behaviour.
410bool FunctionComparator::compare(const BasicBlock *BB1, const BasicBlock *BB2) {
Nick Lewycky78d43302010-08-02 05:23:03 +0000411 BasicBlock::const_iterator F1I = BB1->begin(), F1E = BB1->end();
412 BasicBlock::const_iterator F2I = BB2->begin(), F2E = BB2->end();
Nick Lewycky579a0242008-11-02 05:52:50 +0000413
414 do {
Nick Lewycky468ee0a2011-01-28 08:43:14 +0000415 if (!enumerate(F1I, F2I))
Nick Lewycky579a0242008-11-02 05:52:50 +0000416 return false;
417
Nick Lewycky78d43302010-08-02 05:23:03 +0000418 if (const GetElementPtrInst *GEP1 = dyn_cast<GetElementPtrInst>(F1I)) {
419 const GetElementPtrInst *GEP2 = dyn_cast<GetElementPtrInst>(F2I);
420 if (!GEP2)
421 return false;
Nick Lewyckya142c932009-06-13 19:09:52 +0000422
Nick Lewycky468ee0a2011-01-28 08:43:14 +0000423 if (!enumerate(GEP1->getPointerOperand(), GEP2->getPointerOperand()))
Nick Lewycky911ae392010-05-13 06:45:13 +0000424 return false;
Nick Lewyckya142c932009-06-13 19:09:52 +0000425
Nick Lewycky33ab0b12010-05-13 05:48:45 +0000426 if (!isEquivalentGEP(GEP1, GEP2))
Nick Lewycky911ae392010-05-13 06:45:13 +0000427 return false;
Nick Lewycky33ab0b12010-05-13 05:48:45 +0000428 } else {
Nick Lewycky78d43302010-08-02 05:23:03 +0000429 if (!isEquivalentOperation(F1I, F2I))
Nick Lewycky579a0242008-11-02 05:52:50 +0000430 return false;
431
Nick Lewycky78d43302010-08-02 05:23:03 +0000432 assert(F1I->getNumOperands() == F2I->getNumOperands());
433 for (unsigned i = 0, e = F1I->getNumOperands(); i != e; ++i) {
434 Value *OpF1 = F1I->getOperand(i);
435 Value *OpF2 = F2I->getOperand(i);
Nick Lewycky579a0242008-11-02 05:52:50 +0000436
Nick Lewycky468ee0a2011-01-28 08:43:14 +0000437 if (!enumerate(OpF1, OpF2))
Nick Lewycky911ae392010-05-13 06:45:13 +0000438 return false;
Nick Lewycky33ab0b12010-05-13 05:48:45 +0000439
Nick Lewycky78d43302010-08-02 05:23:03 +0000440 if (OpF1->getValueID() != OpF2->getValueID() ||
441 !isEquivalentType(OpF1->getType(), OpF2->getType()))
Nick Lewycky579a0242008-11-02 05:52:50 +0000442 return false;
443 }
Nick Lewycky579a0242008-11-02 05:52:50 +0000444 }
445
Nick Lewycky78d43302010-08-02 05:23:03 +0000446 ++F1I, ++F2I;
447 } while (F1I != F1E && F2I != F2E);
Nick Lewycky579a0242008-11-02 05:52:50 +0000448
Nick Lewycky78d43302010-08-02 05:23:03 +0000449 return F1I == F1E && F2I == F2E;
Nick Lewycky579a0242008-11-02 05:52:50 +0000450}
451
Nick Lewycky468ee0a2011-01-28 08:43:14 +0000452// Test whether the two functions have equivalent behaviour.
453bool FunctionComparator::compare() {
Nick Lewycky579a0242008-11-02 05:52:50 +0000454 // We need to recheck everything, but check the things that weren't included
455 // in the hash first.
456
Nick Lewycky78d43302010-08-02 05:23:03 +0000457 if (F1->getAttributes() != F2->getAttributes())
Nick Lewycky579a0242008-11-02 05:52:50 +0000458 return false;
459
Nick Lewycky78d43302010-08-02 05:23:03 +0000460 if (F1->hasGC() != F2->hasGC())
Nick Lewycky579a0242008-11-02 05:52:50 +0000461 return false;
462
Nick Lewycky78d43302010-08-02 05:23:03 +0000463 if (F1->hasGC() && F1->getGC() != F2->getGC())
Nick Lewycky579a0242008-11-02 05:52:50 +0000464 return false;
465
Nick Lewycky78d43302010-08-02 05:23:03 +0000466 if (F1->hasSection() != F2->hasSection())
Nick Lewycky579a0242008-11-02 05:52:50 +0000467 return false;
468
Nick Lewycky78d43302010-08-02 05:23:03 +0000469 if (F1->hasSection() && F1->getSection() != F2->getSection())
Nick Lewycky579a0242008-11-02 05:52:50 +0000470 return false;
471
Nick Lewycky78d43302010-08-02 05:23:03 +0000472 if (F1->isVarArg() != F2->isVarArg())
Nick Lewycky287de602009-06-12 08:04:51 +0000473 return false;
474
Nick Lewycky579a0242008-11-02 05:52:50 +0000475 // TODO: if it's internal and only used in direct calls, we could handle this
476 // case too.
Nick Lewycky78d43302010-08-02 05:23:03 +0000477 if (F1->getCallingConv() != F2->getCallingConv())
Nick Lewycky579a0242008-11-02 05:52:50 +0000478 return false;
479
Nick Lewycky78d43302010-08-02 05:23:03 +0000480 if (!isEquivalentType(F1->getFunctionType(), F2->getFunctionType()))
Nick Lewycky579a0242008-11-02 05:52:50 +0000481 return false;
482
Nick Lewycky78d43302010-08-02 05:23:03 +0000483 assert(F1->arg_size() == F2->arg_size() &&
Nick Lewycky2b6c01b2010-09-07 01:42:10 +0000484 "Identically typed functions have different numbers of args!");
Nick Lewycky579a0242008-11-02 05:52:50 +0000485
Nick Lewycky33ab0b12010-05-13 05:48:45 +0000486 // Visit the arguments so that they get enumerated in the order they're
487 // passed in.
Nick Lewycky78d43302010-08-02 05:23:03 +0000488 for (Function::const_arg_iterator f1i = F1->arg_begin(),
489 f2i = F2->arg_begin(), f1e = F1->arg_end(); f1i != f1e; ++f1i, ++f2i) {
Nick Lewycky468ee0a2011-01-28 08:43:14 +0000490 if (!enumerate(f1i, f2i))
Nick Lewycky2b6c01b2010-09-07 01:42:10 +0000491 llvm_unreachable("Arguments repeat!");
Nick Lewycky579a0242008-11-02 05:52:50 +0000492 }
493
Nick Lewyckybe04fde2010-08-08 05:04:23 +0000494 // We do a CFG-ordered walk since the actual ordering of the blocks in the
495 // linked list is immaterial. Our walk starts at the entry block for both
Nick Lewycky78d43302010-08-02 05:23:03 +0000496 // functions, then takes each block from each terminator in order. As an
497 // artifact, this also means that unreachable blocks are ignored.
498 SmallVector<const BasicBlock *, 8> F1BBs, F2BBs;
499 SmallSet<const BasicBlock *, 128> VisitedBBs; // in terms of F1.
Nick Lewyckyc9dcbed2010-08-06 07:21:30 +0000500
Nick Lewycky78d43302010-08-02 05:23:03 +0000501 F1BBs.push_back(&F1->getEntryBlock());
502 F2BBs.push_back(&F2->getEntryBlock());
Nick Lewyckyc9dcbed2010-08-06 07:21:30 +0000503
Nick Lewycky78d43302010-08-02 05:23:03 +0000504 VisitedBBs.insert(F1BBs[0]);
505 while (!F1BBs.empty()) {
506 const BasicBlock *F1BB = F1BBs.pop_back_val();
507 const BasicBlock *F2BB = F2BBs.pop_back_val();
Nick Lewyckyc9dcbed2010-08-06 07:21:30 +0000508
Nick Lewycky468ee0a2011-01-28 08:43:14 +0000509 if (!enumerate(F1BB, F2BB) || !compare(F1BB, F2BB))
Nick Lewycky33ab0b12010-05-13 05:48:45 +0000510 return false;
Nick Lewyckyc9dcbed2010-08-06 07:21:30 +0000511
Nick Lewycky78d43302010-08-02 05:23:03 +0000512 const TerminatorInst *F1TI = F1BB->getTerminator();
513 const TerminatorInst *F2TI = F2BB->getTerminator();
Nick Lewyckyc9dcbed2010-08-06 07:21:30 +0000514
Nick Lewycky78d43302010-08-02 05:23:03 +0000515 assert(F1TI->getNumSuccessors() == F2TI->getNumSuccessors());
516 for (unsigned i = 0, e = F1TI->getNumSuccessors(); i != e; ++i) {
517 if (!VisitedBBs.insert(F1TI->getSuccessor(i)))
Nick Lewycky911ae392010-05-13 06:45:13 +0000518 continue;
Nick Lewyckyc9dcbed2010-08-06 07:21:30 +0000519
Nick Lewycky78d43302010-08-02 05:23:03 +0000520 F1BBs.push_back(F1TI->getSuccessor(i));
521 F2BBs.push_back(F2TI->getSuccessor(i));
Nick Lewycky33ab0b12010-05-13 05:48:45 +0000522 }
523 }
Nick Lewycky579a0242008-11-02 05:52:50 +0000524 return true;
525}
526
Nick Lewycky285cf802011-01-28 07:36:21 +0000527namespace {
528
529/// MergeFunctions finds functions which will generate identical machine code,
530/// by considering all pointer types to be equivalent. Once identified,
531/// MergeFunctions will fold them by replacing a call to one to a call to a
532/// bitcast of the other.
533///
534class MergeFunctions : public ModulePass {
535public:
536 static char ID;
537 MergeFunctions()
538 : ModulePass(ID), HasGlobalAliases(false) {
539 initializeMergeFunctionsPass(*PassRegistry::getPassRegistry());
540 }
541
542 bool runOnModule(Module &M);
543
544private:
545 typedef DenseSet<ComparableFunction> FnSetType;
546
547 /// A work queue of functions that may have been modified and should be
548 /// analyzed again.
549 std::vector<WeakVH> Deferred;
550
551 /// Insert a ComparableFunction into the FnSet, or merge it away if it's
552 /// equal to one that's already present.
Nick Lewycky468ee0a2011-01-28 08:43:14 +0000553 bool insert(ComparableFunction &NewF);
Nick Lewycky285cf802011-01-28 07:36:21 +0000554
555 /// Remove a Function from the FnSet and queue it up for a second sweep of
556 /// analysis.
Nick Lewycky468ee0a2011-01-28 08:43:14 +0000557 void remove(Function *F);
Nick Lewycky285cf802011-01-28 07:36:21 +0000558
559 /// Find the functions that use this Value and remove them from FnSet and
560 /// queue the functions.
Nick Lewycky468ee0a2011-01-28 08:43:14 +0000561 void removeUsers(Value *V);
Nick Lewycky285cf802011-01-28 07:36:21 +0000562
563 /// Replace all direct calls of Old with calls of New. Will bitcast New if
564 /// necessary to make types match.
565 void replaceDirectCallers(Function *Old, Function *New);
566
Nick Lewycky468ee0a2011-01-28 08:43:14 +0000567 /// Merge two equivalent functions. Upon completion, G may be deleted, or may
568 /// be converted into a thunk. In either case, it should never be visited
569 /// again.
570 void mergeTwoFunctions(Function *F, Function *G);
Nick Lewycky285cf802011-01-28 07:36:21 +0000571
Nick Lewycky468ee0a2011-01-28 08:43:14 +0000572 /// Replace G with a thunk or an alias to F. Deletes G.
573 void writeThunkOrAlias(Function *F, Function *G);
Nick Lewycky285cf802011-01-28 07:36:21 +0000574
Nick Lewycky468ee0a2011-01-28 08:43:14 +0000575 /// Replace G with a simple tail call to bitcast(F). Also replace direct uses
576 /// of G with bitcast(F). Deletes G.
577 void writeThunk(Function *F, Function *G);
Nick Lewycky285cf802011-01-28 07:36:21 +0000578
Nick Lewycky468ee0a2011-01-28 08:43:14 +0000579 /// Replace G with an alias to F. Deletes G.
580 void writeAlias(Function *F, Function *G);
Nick Lewycky285cf802011-01-28 07:36:21 +0000581
Nick Lewycky468ee0a2011-01-28 08:43:14 +0000582 /// The set of all distinct functions. Use the insert() and remove() methods
583 /// to modify it.
Nick Lewycky285cf802011-01-28 07:36:21 +0000584 FnSetType FnSet;
585
586 /// TargetData for more accurate GEP comparisons. May be NULL.
587 TargetData *TD;
588
589 /// Whether or not the target supports global aliases.
590 bool HasGlobalAliases;
591};
592
593} // end anonymous namespace
594
595char MergeFunctions::ID = 0;
596INITIALIZE_PASS(MergeFunctions, "mergefunc", "Merge Functions", false, false)
597
598ModulePass *llvm::createMergeFunctionsPass() {
599 return new MergeFunctions();
600}
601
602bool MergeFunctions::runOnModule(Module &M) {
603 bool Changed = false;
604 TD = getAnalysisIfAvailable<TargetData>();
605
606 for (Module::iterator I = M.begin(), E = M.end(); I != E; ++I) {
607 if (!I->isDeclaration() && !I->hasAvailableExternallyLinkage())
608 Deferred.push_back(WeakVH(I));
609 }
610 FnSet.resize(Deferred.size());
611
612 do {
613 std::vector<WeakVH> Worklist;
614 Deferred.swap(Worklist);
615
616 DEBUG(dbgs() << "size of module: " << M.size() << '\n');
617 DEBUG(dbgs() << "size of worklist: " << Worklist.size() << '\n');
618
619 // Insert only strong functions and merge them. Strong function merging
620 // always deletes one of them.
621 for (std::vector<WeakVH>::iterator I = Worklist.begin(),
622 E = Worklist.end(); I != E; ++I) {
623 if (!*I) continue;
624 Function *F = cast<Function>(*I);
625 if (!F->isDeclaration() && !F->hasAvailableExternallyLinkage() &&
626 !F->mayBeOverridden()) {
627 ComparableFunction CF = ComparableFunction(F, TD);
Nick Lewycky468ee0a2011-01-28 08:43:14 +0000628 Changed |= insert(CF);
Nick Lewycky285cf802011-01-28 07:36:21 +0000629 }
630 }
631
632 // Insert only weak functions and merge them. By doing these second we
633 // create thunks to the strong function when possible. When two weak
634 // functions are identical, we create a new strong function with two weak
635 // weak thunks to it which are identical but not mergable.
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);
Nick Lewycky468ee0a2011-01-28 08:43:14 +0000643 Changed |= insert(CF);
Nick Lewycky285cf802011-01-28 07:36:21 +0000644 }
645 }
646 DEBUG(dbgs() << "size of FnSet: " << FnSet.size() << '\n');
647 } while (!Deferred.empty());
648
649 FnSet.clear();
650
651 return Changed;
652}
653
654bool DenseMapInfo<ComparableFunction>::isEqual(const ComparableFunction &LHS,
655 const ComparableFunction &RHS) {
656 if (LHS.getFunc() == RHS.getFunc() &&
657 LHS.getHash() == RHS.getHash())
658 return true;
659 if (!LHS.getFunc() || !RHS.getFunc())
660 return false;
661 assert(LHS.getTD() == RHS.getTD() &&
662 "Comparing functions for different targets");
663
Nick Lewycky8eb3e542011-02-02 05:31:01 +0000664 return FunctionComparator(LHS.getTD(), LHS.getFunc(),
665 RHS.getFunc()).compare();
Nick Lewycky285cf802011-01-28 07:36:21 +0000666}
667
Nick Lewycky468ee0a2011-01-28 08:43:14 +0000668// Replace direct callers of Old with New.
Nick Lewyckyb38824f2011-01-25 08:56:50 +0000669void MergeFunctions::replaceDirectCallers(Function *Old, Function *New) {
670 Constant *BitcastNew = ConstantExpr::getBitCast(New, Old->getType());
671 for (Value::use_iterator UI = Old->use_begin(), UE = Old->use_end();
672 UI != UE;) {
673 Value::use_iterator TheIter = UI;
674 ++UI;
675 CallSite CS(*TheIter);
676 if (CS && CS.isCallee(TheIter)) {
Nick Lewycky468ee0a2011-01-28 08:43:14 +0000677 remove(CS.getInstruction()->getParent()->getParent());
Nick Lewyckyb38824f2011-01-25 08:56:50 +0000678 TheIter.getUse().set(BitcastNew);
679 }
680 }
681}
682
Nick Lewycky468ee0a2011-01-28 08:43:14 +0000683// Replace G with an alias to F if possible, or else a thunk to F. Deletes G.
684void MergeFunctions::writeThunkOrAlias(Function *F, Function *G) {
Nick Lewyckyb38824f2011-01-25 08:56:50 +0000685 if (HasGlobalAliases && G->hasUnnamedAddr()) {
686 if (G->hasExternalLinkage() || G->hasLocalLinkage() ||
687 G->hasWeakLinkage()) {
Nick Lewycky468ee0a2011-01-28 08:43:14 +0000688 writeAlias(F, G);
Nick Lewyckyb38824f2011-01-25 08:56:50 +0000689 return;
690 }
691 }
692
Nick Lewycky468ee0a2011-01-28 08:43:14 +0000693 writeThunk(F, G);
Nick Lewyckyb38824f2011-01-25 08:56:50 +0000694}
695
Nick Lewycky468ee0a2011-01-28 08:43:14 +0000696// Replace G with a simple tail call to bitcast(F). Also replace direct uses
697// of G with bitcast(F). Deletes G.
698void MergeFunctions::writeThunk(Function *F, Function *G) {
Nick Lewycky33ab0b12010-05-13 05:48:45 +0000699 if (!G->mayBeOverridden()) {
700 // Redirect direct callers of G to F.
Nick Lewyckyb38824f2011-01-25 08:56:50 +0000701 replaceDirectCallers(G, F);
Nick Lewycky33ab0b12010-05-13 05:48:45 +0000702 }
703
Nick Lewycky2b6c01b2010-09-07 01:42:10 +0000704 // If G was internal then we may have replaced all uses of G with F. If so,
Nick Lewyckyc9dcbed2010-08-06 07:21:30 +0000705 // stop here and delete G. There's no need for a thunk.
706 if (G->hasLocalLinkage() && G->use_empty()) {
707 G->eraseFromParent();
708 return;
709 }
710
Nick Lewycky8728d7a2009-06-12 15:56:56 +0000711 Function *NewG = Function::Create(G->getFunctionType(), G->getLinkage(), "",
712 G->getParent());
Owen Anderson1d0be152009-08-13 21:58:54 +0000713 BasicBlock *BB = BasicBlock::Create(F->getContext(), "", NewG);
Nick Lewyckybe04fde2010-08-08 05:04:23 +0000714 IRBuilder<false> Builder(BB);
Nick Lewycky287de602009-06-12 08:04:51 +0000715
Nick Lewycky33ab0b12010-05-13 05:48:45 +0000716 SmallVector<Value *, 16> Args;
Nick Lewycky287de602009-06-12 08:04:51 +0000717 unsigned i = 0;
718 const FunctionType *FFTy = F->getFunctionType();
719 for (Function::arg_iterator AI = NewG->arg_begin(), AE = NewG->arg_end();
720 AI != AE; ++AI) {
Nick Lewyckybe04fde2010-08-08 05:04:23 +0000721 Args.push_back(Builder.CreateBitCast(AI, FFTy->getParamType(i)));
Nick Lewycky287de602009-06-12 08:04:51 +0000722 ++i;
723 }
724
Nick Lewyckybe04fde2010-08-08 05:04:23 +0000725 CallInst *CI = Builder.CreateCall(F, Args.begin(), Args.end());
Nick Lewycky287de602009-06-12 08:04:51 +0000726 CI->setTailCall();
Nick Lewyckyb3c36c92009-06-12 16:04:00 +0000727 CI->setCallingConv(F->getCallingConv());
Benjamin Kramerf0127052010-01-05 13:12:22 +0000728 if (NewG->getReturnType()->isVoidTy()) {
Nick Lewyckybe04fde2010-08-08 05:04:23 +0000729 Builder.CreateRetVoid();
Nick Lewycky287de602009-06-12 08:04:51 +0000730 } else {
Nick Lewyckybe04fde2010-08-08 05:04:23 +0000731 Builder.CreateRet(Builder.CreateBitCast(CI, NewG->getReturnType()));
Nick Lewycky287de602009-06-12 08:04:51 +0000732 }
733
734 NewG->copyAttributesFrom(G);
735 NewG->takeName(G);
Nick Lewycky468ee0a2011-01-28 08:43:14 +0000736 removeUsers(G);
Nick Lewycky287de602009-06-12 08:04:51 +0000737 G->replaceAllUsesWith(NewG);
738 G->eraseFromParent();
Nick Lewycky2b6c01b2010-09-07 01:42:10 +0000739
Nick Lewycky468ee0a2011-01-28 08:43:14 +0000740 DEBUG(dbgs() << "writeThunk: " << NewG->getName() << '\n');
Nick Lewycky2b6c01b2010-09-07 01:42:10 +0000741 ++NumThunksWritten;
Nick Lewycky287de602009-06-12 08:04:51 +0000742}
743
Nick Lewycky468ee0a2011-01-28 08:43:14 +0000744// Replace G with an alias to F and delete G.
745void MergeFunctions::writeAlias(Function *F, Function *G) {
Nick Lewyckyb38824f2011-01-25 08:56:50 +0000746 Constant *BitcastF = ConstantExpr::getBitCast(F, G->getType());
747 GlobalAlias *GA = new GlobalAlias(G->getType(), G->getLinkage(), "",
748 BitcastF, G->getParent());
749 F->setAlignment(std::max(F->getAlignment(), G->getAlignment()));
750 GA->takeName(G);
751 GA->setVisibility(G->getVisibility());
Nick Lewycky468ee0a2011-01-28 08:43:14 +0000752 removeUsers(G);
Nick Lewyckyb38824f2011-01-25 08:56:50 +0000753 G->replaceAllUsesWith(GA);
754 G->eraseFromParent();
755
Nick Lewycky468ee0a2011-01-28 08:43:14 +0000756 DEBUG(dbgs() << "writeAlias: " << GA->getName() << '\n');
Nick Lewyckyb38824f2011-01-25 08:56:50 +0000757 ++NumAliasesWritten;
758}
759
Nick Lewycky468ee0a2011-01-28 08:43:14 +0000760// Merge two equivalent functions. Upon completion, Function G is deleted.
761void MergeFunctions::mergeTwoFunctions(Function *F, Function *G) {
Nick Lewycky2b6c01b2010-09-07 01:42:10 +0000762 if (F->mayBeOverridden()) {
763 assert(G->mayBeOverridden());
Nick Lewycky33ab0b12010-05-13 05:48:45 +0000764
Nick Lewyckyb38824f2011-01-25 08:56:50 +0000765 if (HasGlobalAliases) {
766 // Make them both thunks to the same internal function.
767 Function *H = Function::Create(F->getFunctionType(), F->getLinkage(), "",
768 F->getParent());
769 H->copyAttributesFrom(F);
770 H->takeName(F);
Nick Lewycky468ee0a2011-01-28 08:43:14 +0000771 removeUsers(F);
Nick Lewyckyb38824f2011-01-25 08:56:50 +0000772 F->replaceAllUsesWith(H);
Nick Lewycky33ab0b12010-05-13 05:48:45 +0000773
Nick Lewyckyb38824f2011-01-25 08:56:50 +0000774 unsigned MaxAlignment = std::max(G->getAlignment(), H->getAlignment());
Nick Lewycky32218342010-08-09 21:03:28 +0000775
Nick Lewycky468ee0a2011-01-28 08:43:14 +0000776 writeAlias(F, G);
777 writeAlias(F, H);
Nick Lewycky33ab0b12010-05-13 05:48:45 +0000778
Nick Lewyckyb38824f2011-01-25 08:56:50 +0000779 F->setAlignment(MaxAlignment);
780 F->setLinkage(GlobalValue::PrivateLinkage);
781 } else {
782 // We can't merge them. Instead, pick one and update all direct callers
783 // to call it and hope that we improve the instruction cache hit rate.
784 replaceDirectCallers(G, F);
785 }
Nick Lewycky2b6c01b2010-09-07 01:42:10 +0000786
787 ++NumDoubleWeak;
Nick Lewyckyc9dcbed2010-08-06 07:21:30 +0000788 } else {
Nick Lewycky468ee0a2011-01-28 08:43:14 +0000789 writeThunkOrAlias(F, G);
Nick Lewycky6feb3332008-11-02 16:46:26 +0000790 }
791
Nick Lewycky287de602009-06-12 08:04:51 +0000792 ++NumFunctionsMerged;
Nick Lewycky579a0242008-11-02 05:52:50 +0000793}
794
Nick Lewycky468ee0a2011-01-28 08:43:14 +0000795// Insert a ComparableFunction into the FnSet, or merge it away if equal to one
796// that was already inserted.
797bool MergeFunctions::insert(ComparableFunction &NewF) {
Nick Lewyckyb0104e12010-09-05 08:22:49 +0000798 std::pair<FnSetType::iterator, bool> Result = FnSet.insert(NewF);
799 if (Result.second)
800 return false;
Nick Lewyckybe04fde2010-08-08 05:04:23 +0000801
Nick Lewyckyb0e17772010-09-05 09:00:32 +0000802 const ComparableFunction &OldF = *Result.first;
Nick Lewyckyb0104e12010-09-05 08:22:49 +0000803
804 // Never thunk a strong function to a weak function.
Nick Lewycky2b6c01b2010-09-07 01:42:10 +0000805 assert(!OldF.getFunc()->mayBeOverridden() ||
806 NewF.getFunc()->mayBeOverridden());
Nick Lewyckyb0104e12010-09-05 08:22:49 +0000807
Nick Lewyckyb0e17772010-09-05 09:00:32 +0000808 DEBUG(dbgs() << " " << OldF.getFunc()->getName() << " == "
809 << NewF.getFunc()->getName() << '\n');
Nick Lewyckyb0104e12010-09-05 08:22:49 +0000810
Nick Lewyckyb0e17772010-09-05 09:00:32 +0000811 Function *DeleteF = NewF.getFunc();
812 NewF.release();
Nick Lewycky468ee0a2011-01-28 08:43:14 +0000813 mergeTwoFunctions(OldF.getFunc(), DeleteF);
Nick Lewyckyb0104e12010-09-05 08:22:49 +0000814 return true;
Nick Lewyckybe04fde2010-08-08 05:04:23 +0000815}
Nick Lewycky579a0242008-11-02 05:52:50 +0000816
Nick Lewycky468ee0a2011-01-28 08:43:14 +0000817// Remove a function from FnSet. If it was already in FnSet, add it to Deferred
818// so that we'll look at it in the next round.
819void MergeFunctions::remove(Function *F) {
Nick Lewyckyabd6c752011-01-02 02:46:33 +0000820 ComparableFunction CF = ComparableFunction(F, TD);
821 if (FnSet.erase(CF)) {
822 Deferred.push_back(F);
Nick Lewyckyf53de862010-08-31 05:53:05 +0000823 }
Nick Lewyckyabd6c752011-01-02 02:46:33 +0000824}
Nick Lewyckyb0104e12010-09-05 08:22:49 +0000825
Nick Lewycky468ee0a2011-01-28 08:43:14 +0000826// For each instruction used by the value, remove() the function that contains
827// the instruction. This should happen right before a call to RAUW.
828void MergeFunctions::removeUsers(Value *V) {
Nick Lewyckyd081b042011-01-02 19:16:44 +0000829 std::vector<Value *> Worklist;
830 Worklist.push_back(V);
831 while (!Worklist.empty()) {
832 Value *V = Worklist.back();
833 Worklist.pop_back();
834
835 for (Value::use_iterator UI = V->use_begin(), UE = V->use_end();
836 UI != UE; ++UI) {
837 Use &U = UI.getUse();
838 if (Instruction *I = dyn_cast<Instruction>(U.getUser())) {
Nick Lewycky468ee0a2011-01-28 08:43:14 +0000839 remove(I->getParent()->getParent());
Nick Lewyckyd081b042011-01-02 19:16:44 +0000840 } else if (isa<GlobalValue>(U.getUser())) {
Nick Lewyckye8f81392011-01-15 10:16:23 +0000841 // do nothing
Nick Lewyckyd081b042011-01-02 19:16:44 +0000842 } else if (Constant *C = dyn_cast<Constant>(U.getUser())) {
Nick Lewyckye8f81392011-01-15 10:16:23 +0000843 for (Value::use_iterator CUI = C->use_begin(), CUE = C->use_end();
844 CUI != CUE; ++CUI)
Nick Lewyckyd081b042011-01-02 19:16:44 +0000845 Worklist.push_back(*CUI);
846 }
Nick Lewyckyb0104e12010-09-05 08:22:49 +0000847 }
Nick Lewyckyf53de862010-08-31 05:53:05 +0000848 }
Nick Lewyckyb0104e12010-09-05 08:22:49 +0000849}