blob: f58f08ae8163488fe116b8e055836874b69582ef [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 Lewycky579a0242008-11-02 05:52:50 +000070
71namespace {
Nick Lewycky579a0242008-11-02 05:52:50 +000072
Nick Lewyckyb0104e12010-09-05 08:22:49 +000073static unsigned ProfileFunction(const Function *F) {
74 const FunctionType *FTy = F->getFunctionType();
Nick Lewyckybe04fde2010-08-08 05:04:23 +000075
Nick Lewyckyb0104e12010-09-05 08:22:49 +000076 FoldingSetNodeID ID;
77 ID.AddInteger(F->size());
78 ID.AddInteger(F->getCallingConv());
79 ID.AddBoolean(F->hasGC());
80 ID.AddBoolean(FTy->isVarArg());
81 ID.AddInteger(FTy->getReturnType()->getTypeID());
82 for (unsigned i = 0, e = FTy->getNumParams(); i != e; ++i)
83 ID.AddInteger(FTy->getParamType(i)->getTypeID());
84 return ID.ComputeHash();
Nick Lewycky579a0242008-11-02 05:52:50 +000085}
86
Nick Lewyckyb0104e12010-09-05 08:22:49 +000087class ComparableFunction {
88public:
Nick Lewyckyb0e17772010-09-05 09:00:32 +000089 static const ComparableFunction EmptyKey;
90 static const ComparableFunction TombstoneKey;
91
Nick Lewyckyb0104e12010-09-05 08:22:49 +000092 ComparableFunction(Function *Func, TargetData *TD)
93 : Func(Func), Hash(ProfileFunction(Func)), TD(TD) {}
94
Nick Lewyckyb0e17772010-09-05 09:00:32 +000095 Function *getFunc() const { return Func; }
96 unsigned getHash() const { return Hash; }
97 TargetData *getTD() const { return TD; }
98
99 // Drops AssertingVH reference to the function. Outside of debug mode, this
100 // does nothing.
101 void release() {
102 assert(Func &&
103 "Attempted to release function twice, or release empty/tombstone!");
104 Func = NULL;
105 }
106
107private:
108 explicit ComparableFunction(unsigned Hash)
109 : Func(NULL), Hash(Hash), TD(NULL) {}
110
111 AssertingVH<Function> Func;
112 unsigned Hash;
113 TargetData *TD;
Nick Lewyckyb0104e12010-09-05 08:22:49 +0000114};
115
Nick Lewyckyb0e17772010-09-05 09:00:32 +0000116const ComparableFunction ComparableFunction::EmptyKey = ComparableFunction(0);
117const ComparableFunction ComparableFunction::TombstoneKey =
118 ComparableFunction(1);
119
120} // anonymous namespace
121
122namespace llvm {
123 template <>
124 struct DenseMapInfo<ComparableFunction> {
125 static ComparableFunction getEmptyKey() {
126 return ComparableFunction::EmptyKey;
127 }
128 static ComparableFunction getTombstoneKey() {
129 return ComparableFunction::TombstoneKey;
130 }
131 static unsigned getHashValue(const ComparableFunction &CF) {
132 return CF.getHash();
133 }
134 static bool isEqual(const ComparableFunction &LHS,
135 const ComparableFunction &RHS);
136 };
137}
138
139namespace {
Nick Lewyckyb0104e12010-09-05 08:22:49 +0000140
141/// MergeFunctions finds functions which will generate identical machine code,
142/// by considering all pointer types to be equivalent. Once identified,
143/// MergeFunctions will fold them by replacing a call to one to a call to a
144/// bitcast of the other.
145///
146class MergeFunctions : public ModulePass {
147public:
148 static char ID;
149 MergeFunctions() : ModulePass(ID) {}
150
151 bool runOnModule(Module &M);
152
153private:
Nick Lewyckyb0e17772010-09-05 09:00:32 +0000154 typedef DenseSet<ComparableFunction> FnSetType;
Nick Lewyckyb0104e12010-09-05 08:22:49 +0000155
156
157 /// Insert a ComparableFunction into the FnSet, or merge it away if it's
158 /// equal to one that's already present.
Nick Lewyckyb0e17772010-09-05 09:00:32 +0000159 bool Insert(FnSetType &FnSet, ComparableFunction &NewF);
Nick Lewyckyb0104e12010-09-05 08:22:49 +0000160
161 /// MergeTwoFunctions - Merge two equivalent functions. Upon completion, G
162 /// may be deleted, or may be converted into a thunk. In either case, it
163 /// should never be visited again.
164 void MergeTwoFunctions(Function *F, Function *G) const;
165
166 /// WriteThunk - Replace G with a simple tail call to bitcast(F). Also
167 /// replace direct uses of G with bitcast(F). Deletes G.
168 void WriteThunk(Function *F, Function *G) const;
169
170 TargetData *TD;
171};
172
173} // end anonymous namespace
174
Nick Lewycky579a0242008-11-02 05:52:50 +0000175char MergeFunctions::ID = 0;
Owen Andersond13db2c2010-07-21 22:09:45 +0000176INITIALIZE_PASS(MergeFunctions, "mergefunc", "Merge Functions", false, false);
Nick Lewycky579a0242008-11-02 05:52:50 +0000177
178ModulePass *llvm::createMergeFunctionsPass() {
179 return new MergeFunctions();
180}
181
Nick Lewycky78d43302010-08-02 05:23:03 +0000182namespace {
Nick Lewyckybe04fde2010-08-08 05:04:23 +0000183/// FunctionComparator - Compares two functions to determine whether or not
184/// they will generate machine code with the same behaviour. TargetData is
185/// used if available. The comparator always fails conservatively (erring on the
186/// side of claiming that two functions are different).
Nick Lewycky78d43302010-08-02 05:23:03 +0000187class FunctionComparator {
188public:
Nick Lewyckyf53de862010-08-31 05:53:05 +0000189 FunctionComparator(const TargetData *TD, const Function *F1,
190 const Function *F2)
Nick Lewyckyc9dcbed2010-08-06 07:21:30 +0000191 : F1(F1), F2(F2), TD(TD), IDMap1Count(0), IDMap2Count(0) {}
Nick Lewycky287de602009-06-12 08:04:51 +0000192
Nick Lewyckybe04fde2010-08-08 05:04:23 +0000193 /// Compare - test whether the two functions have equivalent behaviour.
Nick Lewycky78d43302010-08-02 05:23:03 +0000194 bool Compare();
195
196private:
Nick Lewyckybe04fde2010-08-08 05:04:23 +0000197 /// Compare - test whether two basic blocks have equivalent behaviour.
Nick Lewycky78d43302010-08-02 05:23:03 +0000198 bool Compare(const BasicBlock *BB1, const BasicBlock *BB2);
199
Nick Lewyckybe04fde2010-08-08 05:04:23 +0000200 /// Enumerate - Assign or look up previously assigned numbers for the two
201 /// values, and return whether the numbers are equal. Numbers are assigned in
202 /// the order visited.
Nick Lewycky78d43302010-08-02 05:23:03 +0000203 bool Enumerate(const Value *V1, const Value *V2);
204
Nick Lewyckybe04fde2010-08-08 05:04:23 +0000205 /// isEquivalentOperation - Compare two Instructions for equivalence, similar
206 /// to Instruction::isSameOperationAs but with modifications to the type
207 /// comparison.
Nick Lewycky78d43302010-08-02 05:23:03 +0000208 bool isEquivalentOperation(const Instruction *I1,
209 const Instruction *I2) const;
210
Nick Lewyckybe04fde2010-08-08 05:04:23 +0000211 /// isEquivalentGEP - Compare two GEPs for equivalent pointer arithmetic.
Nick Lewycky78d43302010-08-02 05:23:03 +0000212 bool isEquivalentGEP(const GEPOperator *GEP1, const GEPOperator *GEP2);
213 bool isEquivalentGEP(const GetElementPtrInst *GEP1,
Nick Lewyckybe04fde2010-08-08 05:04:23 +0000214 const GetElementPtrInst *GEP2) {
Nick Lewycky78d43302010-08-02 05:23:03 +0000215 return isEquivalentGEP(cast<GEPOperator>(GEP1), cast<GEPOperator>(GEP2));
216 }
217
Nick Lewyckybe04fde2010-08-08 05:04:23 +0000218 /// isEquivalentType - Compare two Types, treating all pointer types as equal.
Nick Lewycky78d43302010-08-02 05:23:03 +0000219 bool isEquivalentType(const Type *Ty1, const Type *Ty2) const;
220
221 // The two functions undergoing comparison.
Nick Lewyckyf53de862010-08-31 05:53:05 +0000222 const Function *F1, *F2;
Nick Lewycky78d43302010-08-02 05:23:03 +0000223
Nick Lewyckyf53de862010-08-31 05:53:05 +0000224 const TargetData *TD;
Nick Lewycky78d43302010-08-02 05:23:03 +0000225
226 typedef DenseMap<const Value *, unsigned long> IDMap;
Nick Lewyckyc9dcbed2010-08-06 07:21:30 +0000227 IDMap Map1, Map2;
228 unsigned long IDMap1Count, IDMap2Count;
Nick Lewycky78d43302010-08-02 05:23:03 +0000229};
230}
231
Nick Lewyckyc9dcbed2010-08-06 07:21:30 +0000232/// isEquivalentType - any two pointers in the same address space are
233/// equivalent. Otherwise, standard type equivalence rules apply.
Nick Lewycky78d43302010-08-02 05:23:03 +0000234bool FunctionComparator::isEquivalentType(const Type *Ty1,
235 const Type *Ty2) const {
Nick Lewycky287de602009-06-12 08:04:51 +0000236 if (Ty1 == Ty2)
237 return true;
238 if (Ty1->getTypeID() != Ty2->getTypeID())
239 return false;
240
241 switch(Ty1->getTypeID()) {
Nick Lewycky33ab0b12010-05-13 05:48:45 +0000242 default:
243 llvm_unreachable("Unknown type!");
Duncan Sands8246adc2010-07-07 07:48:00 +0000244 // Fall through in Release mode.
Nick Lewycky33ab0b12010-05-13 05:48:45 +0000245 case Type::IntegerTyID:
246 case Type::OpaqueTyID:
247 // Ty1 == Ty2 would have returned true earlier.
248 return false;
249
Nick Lewycky287de602009-06-12 08:04:51 +0000250 case Type::VoidTyID:
251 case Type::FloatTyID:
252 case Type::DoubleTyID:
253 case Type::X86_FP80TyID:
254 case Type::FP128TyID:
255 case Type::PPC_FP128TyID:
256 case Type::LabelTyID:
257 case Type::MetadataTyID:
258 return true;
259
Nick Lewycky287de602009-06-12 08:04:51 +0000260 case Type::PointerTyID: {
261 const PointerType *PTy1 = cast<PointerType>(Ty1);
262 const PointerType *PTy2 = cast<PointerType>(Ty2);
263 return PTy1->getAddressSpace() == PTy2->getAddressSpace();
264 }
265
266 case Type::StructTyID: {
267 const StructType *STy1 = cast<StructType>(Ty1);
268 const StructType *STy2 = cast<StructType>(Ty2);
269 if (STy1->getNumElements() != STy2->getNumElements())
270 return false;
271
272 if (STy1->isPacked() != STy2->isPacked())
273 return false;
274
275 for (unsigned i = 0, e = STy1->getNumElements(); i != e; ++i) {
276 if (!isEquivalentType(STy1->getElementType(i), STy2->getElementType(i)))
277 return false;
278 }
279 return true;
280 }
281
282 case Type::FunctionTyID: {
283 const FunctionType *FTy1 = cast<FunctionType>(Ty1);
284 const FunctionType *FTy2 = cast<FunctionType>(Ty2);
285 if (FTy1->getNumParams() != FTy2->getNumParams() ||
286 FTy1->isVarArg() != FTy2->isVarArg())
287 return false;
288
289 if (!isEquivalentType(FTy1->getReturnType(), FTy2->getReturnType()))
290 return false;
291
292 for (unsigned i = 0, e = FTy1->getNumParams(); i != e; ++i) {
293 if (!isEquivalentType(FTy1->getParamType(i), FTy2->getParamType(i)))
294 return false;
295 }
296 return true;
297 }
298
Nick Lewycky394ce412010-07-16 06:31:12 +0000299 case Type::ArrayTyID: {
300 const ArrayType *ATy1 = cast<ArrayType>(Ty1);
301 const ArrayType *ATy2 = cast<ArrayType>(Ty2);
302 return ATy1->getNumElements() == ATy2->getNumElements() &&
303 isEquivalentType(ATy1->getElementType(), ATy2->getElementType());
304 }
Nick Lewyckyc9dcbed2010-08-06 07:21:30 +0000305
Nick Lewycky287de602009-06-12 08:04:51 +0000306 case Type::VectorTyID: {
Nick Lewycky394ce412010-07-16 06:31:12 +0000307 const VectorType *VTy1 = cast<VectorType>(Ty1);
308 const VectorType *VTy2 = cast<VectorType>(Ty2);
309 return VTy1->getNumElements() == VTy2->getNumElements() &&
310 isEquivalentType(VTy1->getElementType(), VTy2->getElementType());
Nick Lewycky287de602009-06-12 08:04:51 +0000311 }
312 }
313}
314
315/// isEquivalentOperation - determine whether the two operations are the same
316/// except that pointer-to-A and pointer-to-B are equivalent. This should be
Dan Gohman194ae782009-06-12 19:03:05 +0000317/// kept in sync with Instruction::isSameOperationAs.
Nick Lewycky78d43302010-08-02 05:23:03 +0000318bool FunctionComparator::isEquivalentOperation(const Instruction *I1,
319 const Instruction *I2) const {
Nick Lewycky287de602009-06-12 08:04:51 +0000320 if (I1->getOpcode() != I2->getOpcode() ||
321 I1->getNumOperands() != I2->getNumOperands() ||
Dan Gohman58cfa3b2009-08-25 22:11:20 +0000322 !isEquivalentType(I1->getType(), I2->getType()) ||
323 !I1->hasSameSubclassOptionalData(I2))
Nick Lewycky287de602009-06-12 08:04:51 +0000324 return false;
325
326 // We have two instructions of identical opcode and #operands. Check to see
327 // if all operands are the same type
328 for (unsigned i = 0, e = I1->getNumOperands(); i != e; ++i)
329 if (!isEquivalentType(I1->getOperand(i)->getType(),
330 I2->getOperand(i)->getType()))
331 return false;
332
333 // Check special state that is a part of some instructions.
334 if (const LoadInst *LI = dyn_cast<LoadInst>(I1))
335 return LI->isVolatile() == cast<LoadInst>(I2)->isVolatile() &&
336 LI->getAlignment() == cast<LoadInst>(I2)->getAlignment();
337 if (const StoreInst *SI = dyn_cast<StoreInst>(I1))
338 return SI->isVolatile() == cast<StoreInst>(I2)->isVolatile() &&
339 SI->getAlignment() == cast<StoreInst>(I2)->getAlignment();
340 if (const CmpInst *CI = dyn_cast<CmpInst>(I1))
341 return CI->getPredicate() == cast<CmpInst>(I2)->getPredicate();
342 if (const CallInst *CI = dyn_cast<CallInst>(I1))
343 return CI->isTailCall() == cast<CallInst>(I2)->isTailCall() &&
344 CI->getCallingConv() == cast<CallInst>(I2)->getCallingConv() &&
345 CI->getAttributes().getRawPointer() ==
346 cast<CallInst>(I2)->getAttributes().getRawPointer();
347 if (const InvokeInst *CI = dyn_cast<InvokeInst>(I1))
348 return CI->getCallingConv() == cast<InvokeInst>(I2)->getCallingConv() &&
349 CI->getAttributes().getRawPointer() ==
350 cast<InvokeInst>(I2)->getAttributes().getRawPointer();
351 if (const InsertValueInst *IVI = dyn_cast<InsertValueInst>(I1)) {
352 if (IVI->getNumIndices() != cast<InsertValueInst>(I2)->getNumIndices())
353 return false;
354 for (unsigned i = 0, e = IVI->getNumIndices(); i != e; ++i)
355 if (IVI->idx_begin()[i] != cast<InsertValueInst>(I2)->idx_begin()[i])
356 return false;
357 return true;
358 }
359 if (const ExtractValueInst *EVI = dyn_cast<ExtractValueInst>(I1)) {
360 if (EVI->getNumIndices() != cast<ExtractValueInst>(I2)->getNumIndices())
361 return false;
362 for (unsigned i = 0, e = EVI->getNumIndices(); i != e; ++i)
363 if (EVI->idx_begin()[i] != cast<ExtractValueInst>(I2)->idx_begin()[i])
364 return false;
365 return true;
366 }
367
368 return true;
Nick Lewycky579a0242008-11-02 05:52:50 +0000369}
370
Nick Lewycky78d43302010-08-02 05:23:03 +0000371/// isEquivalentGEP - determine whether two GEP operations perform the same
372/// underlying arithmetic.
373bool FunctionComparator::isEquivalentGEP(const GEPOperator *GEP1,
374 const GEPOperator *GEP2) {
375 // When we have target data, we can reduce the GEP down to the value in bytes
376 // added to the address.
Nick Lewycky33ab0b12010-05-13 05:48:45 +0000377 if (TD && GEP1->hasAllConstantIndices() && GEP2->hasAllConstantIndices()) {
Nick Lewycky78d43302010-08-02 05:23:03 +0000378 SmallVector<Value *, 8> Indices1(GEP1->idx_begin(), GEP1->idx_end());
379 SmallVector<Value *, 8> Indices2(GEP2->idx_begin(), GEP2->idx_end());
Nick Lewycky33ab0b12010-05-13 05:48:45 +0000380 uint64_t Offset1 = TD->getIndexedOffset(GEP1->getPointerOperandType(),
381 Indices1.data(), Indices1.size());
382 uint64_t Offset2 = TD->getIndexedOffset(GEP2->getPointerOperandType(),
383 Indices2.data(), Indices2.size());
384 return Offset1 == Offset2;
Nick Lewycky579a0242008-11-02 05:52:50 +0000385 }
386
Nick Lewycky33ab0b12010-05-13 05:48:45 +0000387 if (GEP1->getPointerOperand()->getType() !=
388 GEP2->getPointerOperand()->getType())
389 return false;
390
391 if (GEP1->getNumOperands() != GEP2->getNumOperands())
392 return false;
393
394 for (unsigned i = 0, e = GEP1->getNumOperands(); i != e; ++i) {
Nick Lewycky78d43302010-08-02 05:23:03 +0000395 if (!Enumerate(GEP1->getOperand(i), GEP2->getOperand(i)))
Nick Lewycky33ab0b12010-05-13 05:48:45 +0000396 return false;
397 }
398
399 return true;
Nick Lewycky579a0242008-11-02 05:52:50 +0000400}
401
Nick Lewycky78d43302010-08-02 05:23:03 +0000402/// Enumerate - Compare two values used by the two functions under pair-wise
403/// comparison. If this is the first time the values are seen, they're added to
404/// the mapping so that we will detect mismatches on next use.
405bool FunctionComparator::Enumerate(const Value *V1, const Value *V2) {
406 // Check for function @f1 referring to itself and function @f2 referring to
407 // itself, or referring to each other, or both referring to either of them.
408 // They're all equivalent if the two functions are otherwise equivalent.
Nick Lewyckyc9dcbed2010-08-06 07:21:30 +0000409 if (V1 == F1 && V2 == F2)
410 return true;
411 if (V1 == F2 && V2 == F1)
412 return true;
Nick Lewycky579a0242008-11-02 05:52:50 +0000413
Nick Lewycky78d43302010-08-02 05:23:03 +0000414 // TODO: constant expressions with GEP or references to F1 or F2.
Nick Lewycky33ab0b12010-05-13 05:48:45 +0000415 if (isa<Constant>(V1))
416 return V1 == V2;
417
418 if (isa<InlineAsm>(V1) && isa<InlineAsm>(V2)) {
419 const InlineAsm *IA1 = cast<InlineAsm>(V1);
420 const InlineAsm *IA2 = cast<InlineAsm>(V2);
421 return IA1->getAsmString() == IA2->getAsmString() &&
422 IA1->getConstraintString() == IA2->getConstraintString();
423 }
424
Nick Lewycky33ab0b12010-05-13 05:48:45 +0000425 unsigned long &ID1 = Map1[V1];
426 if (!ID1)
Nick Lewyckyc9dcbed2010-08-06 07:21:30 +0000427 ID1 = ++IDMap1Count;
Nick Lewycky33ab0b12010-05-13 05:48:45 +0000428
Nick Lewycky33ab0b12010-05-13 05:48:45 +0000429 unsigned long &ID2 = Map2[V2];
430 if (!ID2)
Nick Lewyckyc9dcbed2010-08-06 07:21:30 +0000431 ID2 = ++IDMap2Count;
Nick Lewycky33ab0b12010-05-13 05:48:45 +0000432
433 return ID1 == ID2;
434}
435
Nick Lewyckybe04fde2010-08-08 05:04:23 +0000436/// Compare - test whether two basic blocks have equivalent behaviour.
Nick Lewycky78d43302010-08-02 05:23:03 +0000437bool FunctionComparator::Compare(const BasicBlock *BB1, const BasicBlock *BB2) {
438 BasicBlock::const_iterator F1I = BB1->begin(), F1E = BB1->end();
439 BasicBlock::const_iterator F2I = BB2->begin(), F2E = BB2->end();
Nick Lewycky579a0242008-11-02 05:52:50 +0000440
441 do {
Nick Lewycky78d43302010-08-02 05:23:03 +0000442 if (!Enumerate(F1I, F2I))
Nick Lewycky579a0242008-11-02 05:52:50 +0000443 return false;
444
Nick Lewycky78d43302010-08-02 05:23:03 +0000445 if (const GetElementPtrInst *GEP1 = dyn_cast<GetElementPtrInst>(F1I)) {
446 const GetElementPtrInst *GEP2 = dyn_cast<GetElementPtrInst>(F2I);
447 if (!GEP2)
448 return false;
Nick Lewyckya142c932009-06-13 19:09:52 +0000449
Nick Lewycky78d43302010-08-02 05:23:03 +0000450 if (!Enumerate(GEP1->getPointerOperand(), GEP2->getPointerOperand()))
Nick Lewycky911ae392010-05-13 06:45:13 +0000451 return false;
Nick Lewyckya142c932009-06-13 19:09:52 +0000452
Nick Lewycky33ab0b12010-05-13 05:48:45 +0000453 if (!isEquivalentGEP(GEP1, GEP2))
Nick Lewycky911ae392010-05-13 06:45:13 +0000454 return false;
Nick Lewycky33ab0b12010-05-13 05:48:45 +0000455 } else {
Nick Lewycky78d43302010-08-02 05:23:03 +0000456 if (!isEquivalentOperation(F1I, F2I))
Nick Lewycky579a0242008-11-02 05:52:50 +0000457 return false;
458
Nick Lewycky78d43302010-08-02 05:23:03 +0000459 assert(F1I->getNumOperands() == F2I->getNumOperands());
460 for (unsigned i = 0, e = F1I->getNumOperands(); i != e; ++i) {
461 Value *OpF1 = F1I->getOperand(i);
462 Value *OpF2 = F2I->getOperand(i);
Nick Lewycky579a0242008-11-02 05:52:50 +0000463
Nick Lewycky78d43302010-08-02 05:23:03 +0000464 if (!Enumerate(OpF1, OpF2))
Nick Lewycky911ae392010-05-13 06:45:13 +0000465 return false;
Nick Lewycky33ab0b12010-05-13 05:48:45 +0000466
Nick Lewycky78d43302010-08-02 05:23:03 +0000467 if (OpF1->getValueID() != OpF2->getValueID() ||
468 !isEquivalentType(OpF1->getType(), OpF2->getType()))
Nick Lewycky579a0242008-11-02 05:52:50 +0000469 return false;
470 }
Nick Lewycky579a0242008-11-02 05:52:50 +0000471 }
472
Nick Lewycky78d43302010-08-02 05:23:03 +0000473 ++F1I, ++F2I;
474 } while (F1I != F1E && F2I != F2E);
Nick Lewycky579a0242008-11-02 05:52:50 +0000475
Nick Lewycky78d43302010-08-02 05:23:03 +0000476 return F1I == F1E && F2I == F2E;
Nick Lewycky579a0242008-11-02 05:52:50 +0000477}
478
Nick Lewyckybe04fde2010-08-08 05:04:23 +0000479/// Compare - test whether the two functions have equivalent behaviour.
Nick Lewycky78d43302010-08-02 05:23:03 +0000480bool FunctionComparator::Compare() {
Nick Lewycky579a0242008-11-02 05:52:50 +0000481 // We need to recheck everything, but check the things that weren't included
482 // in the hash first.
483
Nick Lewycky78d43302010-08-02 05:23:03 +0000484 if (F1->getAttributes() != F2->getAttributes())
Nick Lewycky579a0242008-11-02 05:52:50 +0000485 return false;
486
Nick Lewycky78d43302010-08-02 05:23:03 +0000487 if (F1->hasGC() != F2->hasGC())
Nick Lewycky579a0242008-11-02 05:52:50 +0000488 return false;
489
Nick Lewycky78d43302010-08-02 05:23:03 +0000490 if (F1->hasGC() && F1->getGC() != F2->getGC())
Nick Lewycky579a0242008-11-02 05:52:50 +0000491 return false;
492
Nick Lewycky78d43302010-08-02 05:23:03 +0000493 if (F1->hasSection() != F2->hasSection())
Nick Lewycky579a0242008-11-02 05:52:50 +0000494 return false;
495
Nick Lewycky78d43302010-08-02 05:23:03 +0000496 if (F1->hasSection() && F1->getSection() != F2->getSection())
Nick Lewycky579a0242008-11-02 05:52:50 +0000497 return false;
498
Nick Lewycky78d43302010-08-02 05:23:03 +0000499 if (F1->isVarArg() != F2->isVarArg())
Nick Lewycky287de602009-06-12 08:04:51 +0000500 return false;
501
Nick Lewycky579a0242008-11-02 05:52:50 +0000502 // TODO: if it's internal and only used in direct calls, we could handle this
503 // case too.
Nick Lewycky78d43302010-08-02 05:23:03 +0000504 if (F1->getCallingConv() != F2->getCallingConv())
Nick Lewycky579a0242008-11-02 05:52:50 +0000505 return false;
506
Nick Lewycky78d43302010-08-02 05:23:03 +0000507 if (!isEquivalentType(F1->getFunctionType(), F2->getFunctionType()))
Nick Lewycky579a0242008-11-02 05:52:50 +0000508 return false;
509
Nick Lewycky78d43302010-08-02 05:23:03 +0000510 assert(F1->arg_size() == F2->arg_size() &&
Nick Lewycky579a0242008-11-02 05:52:50 +0000511 "Identical functions have a different number of args.");
512
Nick Lewycky33ab0b12010-05-13 05:48:45 +0000513 // Visit the arguments so that they get enumerated in the order they're
514 // passed in.
Nick Lewycky78d43302010-08-02 05:23:03 +0000515 for (Function::const_arg_iterator f1i = F1->arg_begin(),
516 f2i = F2->arg_begin(), f1e = F1->arg_end(); f1i != f1e; ++f1i, ++f2i) {
517 if (!Enumerate(f1i, f2i))
Nick Lewycky33ab0b12010-05-13 05:48:45 +0000518 llvm_unreachable("Arguments repeat");
Nick Lewycky579a0242008-11-02 05:52:50 +0000519 }
520
Nick Lewyckybe04fde2010-08-08 05:04:23 +0000521 // We do a CFG-ordered walk since the actual ordering of the blocks in the
522 // linked list is immaterial. Our walk starts at the entry block for both
Nick Lewycky78d43302010-08-02 05:23:03 +0000523 // functions, then takes each block from each terminator in order. As an
524 // artifact, this also means that unreachable blocks are ignored.
525 SmallVector<const BasicBlock *, 8> F1BBs, F2BBs;
526 SmallSet<const BasicBlock *, 128> VisitedBBs; // in terms of F1.
Nick Lewyckyc9dcbed2010-08-06 07:21:30 +0000527
Nick Lewycky78d43302010-08-02 05:23:03 +0000528 F1BBs.push_back(&F1->getEntryBlock());
529 F2BBs.push_back(&F2->getEntryBlock());
Nick Lewyckyc9dcbed2010-08-06 07:21:30 +0000530
Nick Lewycky78d43302010-08-02 05:23:03 +0000531 VisitedBBs.insert(F1BBs[0]);
532 while (!F1BBs.empty()) {
533 const BasicBlock *F1BB = F1BBs.pop_back_val();
534 const BasicBlock *F2BB = F2BBs.pop_back_val();
Nick Lewyckyc9dcbed2010-08-06 07:21:30 +0000535
Nick Lewycky78d43302010-08-02 05:23:03 +0000536 if (!Enumerate(F1BB, F2BB) || !Compare(F1BB, F2BB))
Nick Lewycky33ab0b12010-05-13 05:48:45 +0000537 return false;
Nick Lewyckyc9dcbed2010-08-06 07:21:30 +0000538
Nick Lewycky78d43302010-08-02 05:23:03 +0000539 const TerminatorInst *F1TI = F1BB->getTerminator();
540 const TerminatorInst *F2TI = F2BB->getTerminator();
Nick Lewyckyc9dcbed2010-08-06 07:21:30 +0000541
Nick Lewycky78d43302010-08-02 05:23:03 +0000542 assert(F1TI->getNumSuccessors() == F2TI->getNumSuccessors());
543 for (unsigned i = 0, e = F1TI->getNumSuccessors(); i != e; ++i) {
544 if (!VisitedBBs.insert(F1TI->getSuccessor(i)))
Nick Lewycky911ae392010-05-13 06:45:13 +0000545 continue;
Nick Lewyckyc9dcbed2010-08-06 07:21:30 +0000546
Nick Lewycky78d43302010-08-02 05:23:03 +0000547 F1BBs.push_back(F1TI->getSuccessor(i));
548 F2BBs.push_back(F2TI->getSuccessor(i));
Nick Lewycky33ab0b12010-05-13 05:48:45 +0000549 }
550 }
Nick Lewycky579a0242008-11-02 05:52:50 +0000551 return true;
552}
553
Nick Lewyckybe04fde2010-08-08 05:04:23 +0000554/// WriteThunk - Replace G with a simple tail call to bitcast(F). Also replace
Nick Lewyckyb0104e12010-09-05 08:22:49 +0000555/// direct uses of G with bitcast(F). Deletes G.
Nick Lewyckybe04fde2010-08-08 05:04:23 +0000556void MergeFunctions::WriteThunk(Function *F, Function *G) const {
Nick Lewycky33ab0b12010-05-13 05:48:45 +0000557 if (!G->mayBeOverridden()) {
558 // Redirect direct callers of G to F.
559 Constant *BitcastF = ConstantExpr::getBitCast(F, G->getType());
560 for (Value::use_iterator UI = G->use_begin(), UE = G->use_end();
561 UI != UE;) {
562 Value::use_iterator TheIter = UI;
563 ++UI;
564 CallSite CS(*TheIter);
565 if (CS && CS.isCallee(TheIter))
566 TheIter.getUse().set(BitcastF);
567 }
568 }
569
Nick Lewyckyc9dcbed2010-08-06 07:21:30 +0000570 // If G was internal then we may have replaced all uses if G with F. If so,
571 // stop here and delete G. There's no need for a thunk.
572 if (G->hasLocalLinkage() && G->use_empty()) {
573 G->eraseFromParent();
574 return;
575 }
576
Nick Lewycky8728d7a2009-06-12 15:56:56 +0000577 Function *NewG = Function::Create(G->getFunctionType(), G->getLinkage(), "",
578 G->getParent());
Owen Anderson1d0be152009-08-13 21:58:54 +0000579 BasicBlock *BB = BasicBlock::Create(F->getContext(), "", NewG);
Nick Lewyckybe04fde2010-08-08 05:04:23 +0000580 IRBuilder<false> Builder(BB);
Nick Lewycky287de602009-06-12 08:04:51 +0000581
Nick Lewycky33ab0b12010-05-13 05:48:45 +0000582 SmallVector<Value *, 16> Args;
Nick Lewycky287de602009-06-12 08:04:51 +0000583 unsigned i = 0;
584 const FunctionType *FFTy = F->getFunctionType();
585 for (Function::arg_iterator AI = NewG->arg_begin(), AE = NewG->arg_end();
586 AI != AE; ++AI) {
Nick Lewyckybe04fde2010-08-08 05:04:23 +0000587 Args.push_back(Builder.CreateBitCast(AI, FFTy->getParamType(i)));
Nick Lewycky287de602009-06-12 08:04:51 +0000588 ++i;
589 }
590
Nick Lewyckybe04fde2010-08-08 05:04:23 +0000591 CallInst *CI = Builder.CreateCall(F, Args.begin(), Args.end());
Nick Lewycky287de602009-06-12 08:04:51 +0000592 CI->setTailCall();
Nick Lewyckyb3c36c92009-06-12 16:04:00 +0000593 CI->setCallingConv(F->getCallingConv());
Benjamin Kramerf0127052010-01-05 13:12:22 +0000594 if (NewG->getReturnType()->isVoidTy()) {
Nick Lewyckybe04fde2010-08-08 05:04:23 +0000595 Builder.CreateRetVoid();
Nick Lewycky287de602009-06-12 08:04:51 +0000596 } else {
Nick Lewyckybe04fde2010-08-08 05:04:23 +0000597 Builder.CreateRet(Builder.CreateBitCast(CI, NewG->getReturnType()));
Nick Lewycky287de602009-06-12 08:04:51 +0000598 }
599
600 NewG->copyAttributesFrom(G);
601 NewG->takeName(G);
602 G->replaceAllUsesWith(NewG);
603 G->eraseFromParent();
Nick Lewycky287de602009-06-12 08:04:51 +0000604}
605
Nick Lewyckybe04fde2010-08-08 05:04:23 +0000606/// MergeTwoFunctions - Merge two equivalent functions. Upon completion,
Nick Lewyckyf53de862010-08-31 05:53:05 +0000607/// Function G is deleted.
608void MergeFunctions::MergeTwoFunctions(Function *F, Function *G) const {
Nick Lewyckyc9dcbed2010-08-06 07:21:30 +0000609 if (F->isWeakForLinker()) {
610 assert(G->isWeakForLinker());
Nick Lewycky33ab0b12010-05-13 05:48:45 +0000611
612 // Make them both thunks to the same internal function.
Nick Lewycky33ab0b12010-05-13 05:48:45 +0000613 Function *H = Function::Create(F->getFunctionType(), F->getLinkage(), "",
614 F->getParent());
615 H->copyAttributesFrom(F);
616 H->takeName(F);
617 F->replaceAllUsesWith(H);
618
Nick Lewycky32218342010-08-09 21:03:28 +0000619 unsigned MaxAlignment = std::max(G->getAlignment(), H->getAlignment());
620
Nick Lewyckybe04fde2010-08-08 05:04:23 +0000621 WriteThunk(F, G);
622 WriteThunk(F, H);
Nick Lewycky33ab0b12010-05-13 05:48:45 +0000623
Nick Lewycky32218342010-08-09 21:03:28 +0000624 F->setAlignment(MaxAlignment);
Nick Lewycky33ab0b12010-05-13 05:48:45 +0000625 F->setLinkage(GlobalValue::InternalLinkage);
Nick Lewyckyc9dcbed2010-08-06 07:21:30 +0000626 } else {
Nick Lewyckybe04fde2010-08-08 05:04:23 +0000627 WriteThunk(F, G);
Nick Lewycky6feb3332008-11-02 16:46:26 +0000628 }
629
Nick Lewycky287de602009-06-12 08:04:51 +0000630 ++NumFunctionsMerged;
Nick Lewycky579a0242008-11-02 05:52:50 +0000631}
632
Nick Lewyckyb0104e12010-09-05 08:22:49 +0000633// Insert - Insert a ComparableFunction into the FnSet, or merge it away if
634// equal to one that's already inserted.
Nick Lewyckyb0e17772010-09-05 09:00:32 +0000635bool MergeFunctions::Insert(FnSetType &FnSet, ComparableFunction &NewF) {
Nick Lewyckyb0104e12010-09-05 08:22:49 +0000636 std::pair<FnSetType::iterator, bool> Result = FnSet.insert(NewF);
637 if (Result.second)
638 return false;
Nick Lewyckybe04fde2010-08-08 05:04:23 +0000639
Nick Lewyckyb0e17772010-09-05 09:00:32 +0000640 const ComparableFunction &OldF = *Result.first;
Nick Lewyckyb0104e12010-09-05 08:22:49 +0000641
642 // Never thunk a strong function to a weak function.
Nick Lewyckyb0e17772010-09-05 09:00:32 +0000643 assert(!OldF.getFunc()->isWeakForLinker() ||
644 NewF.getFunc()->isWeakForLinker());
Nick Lewyckyb0104e12010-09-05 08:22:49 +0000645
Nick Lewyckyb0e17772010-09-05 09:00:32 +0000646 DEBUG(dbgs() << " " << OldF.getFunc()->getName() << " == "
647 << NewF.getFunc()->getName() << '\n');
Nick Lewyckyb0104e12010-09-05 08:22:49 +0000648
Nick Lewyckyb0e17772010-09-05 09:00:32 +0000649 Function *DeleteF = NewF.getFunc();
650 NewF.release();
651 MergeTwoFunctions(OldF.getFunc(), DeleteF);
Nick Lewyckyb0104e12010-09-05 08:22:49 +0000652 return true;
Nick Lewyckybe04fde2010-08-08 05:04:23 +0000653}
Nick Lewycky579a0242008-11-02 05:52:50 +0000654
Nick Lewyckyb0104e12010-09-05 08:22:49 +0000655// IsThunk - This method determines whether or not a given Function is a thunk\// like the ones emitted by this pass and therefore not subject to further
656// merging.
657static bool IsThunk(const Function *F) {
658 // The safe direction to fail is to return true. In that case, the function
659 // will be removed from merging analysis. If we failed to including functions
660 // then we may try to merge unmergable thing (ie., identical weak functions)
661 // which will push us into an infinite loop.
Nick Lewyckyf53de862010-08-31 05:53:05 +0000662
Nick Lewyckyb0104e12010-09-05 08:22:49 +0000663 if (F->size() != 1)
664 return false;
Nick Lewyckyf53de862010-08-31 05:53:05 +0000665
Nick Lewyckyb0104e12010-09-05 08:22:49 +0000666 const BasicBlock *BB = &F->front();
667 // A thunk is:
668 // bitcast-inst*
669 // optional-reg tail call @thunkee(args...*)
670 // ret void|optional-reg
671 // where the args are in the same order as the arguments.
672
673 // Verify that the sequence of bitcast-inst's are all casts of arguments and
674 // that there aren't any extras (ie. no repeated casts).
675 int LastArgNo = -1;
676 BasicBlock::const_iterator I = BB->begin();
677 while (const BitCastInst *BCI = dyn_cast<BitCastInst>(I)) {
678 const Argument *A = dyn_cast<Argument>(BCI->getOperand(0));
679 if (!A) return false;
680 if ((int)A->getArgNo() >= LastArgNo) return false;
681 LastArgNo = A->getArgNo();
682 ++I;
Nick Lewyckyf53de862010-08-31 05:53:05 +0000683 }
Nick Lewyckyb0104e12010-09-05 08:22:49 +0000684
685 // Verify that the call instruction has the same arguments as this function
686 // and that they're all either the incoming argument or a cast of the right
687 // argument.
688 const CallInst *CI = dyn_cast<CallInst>(I++);
689 if (!CI || !CI->isTailCall() ||
690 CI->getNumArgOperands() != F->arg_size()) return false;
691
692 for (unsigned i = 0, e = CI->getNumArgOperands(); i != e; ++i) {
693 const Value *V = CI->getArgOperand(i);
694 const Argument *A = dyn_cast<Argument>(V);
695 if (!A) {
696 const BitCastInst *BCI = dyn_cast<BitCastInst>(V);
697 if (!BCI) return false;
698 A = cast<Argument>(BCI->getOperand(0));
699 }
700 if (A->getArgNo() != i) return false;
Nick Lewyckyf53de862010-08-31 05:53:05 +0000701 }
Nick Lewyckyb0104e12010-09-05 08:22:49 +0000702
703 // Verify that the terminator is a ret void (if we're void) or a ret of the
704 // call's return, or a ret of a bitcast of the call's return.
705 const Value *RetOp = CI;
706 if (const BitCastInst *BCI = dyn_cast<BitCastInst>(I)) {
707 ++I;
708 if (BCI->getOperand(0) != CI) return false;
709 RetOp = BCI;
Nick Lewyckyf53de862010-08-31 05:53:05 +0000710 }
Nick Lewyckyb0104e12010-09-05 08:22:49 +0000711 const ReturnInst *RI = dyn_cast<ReturnInst>(I);
712 if (!RI) return false;
713 if (RI->getNumOperands() == 0)
714 return CI->getType()->isVoidTy();
715 return RI->getReturnValue() == CI;
716}
Nick Lewyckyf53de862010-08-31 05:53:05 +0000717
Nick Lewycky579a0242008-11-02 05:52:50 +0000718bool MergeFunctions::runOnModule(Module &M) {
Nick Lewycky65a0af32010-08-31 08:29:37 +0000719 bool Changed = false;
Nick Lewyckybe04fde2010-08-08 05:04:23 +0000720 TD = getAnalysisIfAvailable<TargetData>();
Nick Lewycky579a0242008-11-02 05:52:50 +0000721
Nick Lewycky65a0af32010-08-31 08:29:37 +0000722 bool LocalChanged;
723 do {
Nick Lewyckyb0104e12010-09-05 08:22:49 +0000724 DEBUG(dbgs() << "size: " << M.size() << '\n');
Nick Lewycky65a0af32010-08-31 08:29:37 +0000725 LocalChanged = false;
Nick Lewycky65a0af32010-08-31 08:29:37 +0000726 FnSetType FnSet;
Nick Lewycky65a0af32010-08-31 08:29:37 +0000727
Nick Lewyckyb0104e12010-09-05 08:22:49 +0000728 // Insert only strong functions and merge them. Strong function merging
729 // always deletes one of them.
730 for (Module::iterator I = M.begin(), E = M.end(); I != E;) {
731 Function *F = I++;
732 if (!F->isDeclaration() && !F->hasAvailableExternallyLinkage() &&
733 !F->isWeakForLinker() && !IsThunk(F)) {
Nick Lewyckyb0e17772010-09-05 09:00:32 +0000734 ComparableFunction CF = ComparableFunction(F, TD);
Nick Lewyckyb0104e12010-09-05 08:22:49 +0000735 LocalChanged |= Insert(FnSet, CF);
736 }
737 }
Nick Lewycky65a0af32010-08-31 08:29:37 +0000738
Nick Lewyckyb0104e12010-09-05 08:22:49 +0000739 // Insert only weak functions and merge them. By doing these second we
740 // create thunks to the strong function when possible. When two weak
741 // functions are identical, we create a new strong function with two weak
742 // weak thunks to it which are identical but not mergable.
743 for (Module::iterator I = M.begin(), E = M.end(); I != E;) {
744 Function *F = I++;
745 if (!F->isDeclaration() && !F->hasAvailableExternallyLinkage() &&
746 F->isWeakForLinker() && !IsThunk(F)) {
Nick Lewyckyb0e17772010-09-05 09:00:32 +0000747 ComparableFunction CF = ComparableFunction(F, TD);
Nick Lewyckyb0104e12010-09-05 08:22:49 +0000748 LocalChanged |= Insert(FnSet, CF);
Nick Lewycky65a0af32010-08-31 08:29:37 +0000749 }
750 }
Nick Lewyckyb0104e12010-09-05 08:22:49 +0000751 Changed |= LocalChanged;
Nick Lewycky65a0af32010-08-31 08:29:37 +0000752 } while (LocalChanged);
753
Nick Lewycky579a0242008-11-02 05:52:50 +0000754 return Changed;
755}
Nick Lewyckyb0104e12010-09-05 08:22:49 +0000756
Nick Lewyckyb0e17772010-09-05 09:00:32 +0000757bool DenseMapInfo<ComparableFunction>::isEqual(const ComparableFunction &LHS,
758 const ComparableFunction &RHS) {
759 if (LHS.getFunc() == RHS.getFunc() &&
760 LHS.getHash() == RHS.getHash())
Nick Lewyckyb0104e12010-09-05 08:22:49 +0000761 return true;
Nick Lewyckyb0e17772010-09-05 09:00:32 +0000762 if (!LHS.getFunc() || !RHS.getFunc())
Nick Lewyckyb0104e12010-09-05 08:22:49 +0000763 return false;
Nick Lewyckyb0e17772010-09-05 09:00:32 +0000764 assert(LHS.getTD() == RHS.getTD() &&
765 "Comparing functions for different targets");
766 return FunctionComparator(LHS.getTD(),
767 LHS.getFunc(), RHS.getFunc()).Compare();
Nick Lewyckyb0104e12010-09-05 08:22:49 +0000768}