blob: 0f09b9026ebf53fb29129d6bb567cef75b96939d [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"
Chandler Carruthd04a8d42012-12-03 16:50:05 +000048#include "llvm/ADT/DenseSet.h"
49#include "llvm/ADT/FoldingSet.h"
50#include "llvm/ADT/STLExtras.h"
51#include "llvm/ADT/SmallSet.h"
52#include "llvm/ADT/Statistic.h"
Chandler Carruth0b8c9a82013-01-02 11:36:10 +000053#include "llvm/IR/Constants.h"
54#include "llvm/IR/DataLayout.h"
55#include "llvm/IR/IRBuilder.h"
56#include "llvm/IR/InlineAsm.h"
57#include "llvm/IR/Instructions.h"
58#include "llvm/IR/LLVMContext.h"
59#include "llvm/IR/Module.h"
60#include "llvm/IR/Operator.h"
Nick Lewycky579a0242008-11-02 05:52:50 +000061#include "llvm/Pass.h"
Nick Lewycky6feb3332008-11-02 16:46:26 +000062#include "llvm/Support/CallSite.h"
Nick Lewycky579a0242008-11-02 05:52:50 +000063#include "llvm/Support/Debug.h"
Torok Edwinc25e7582009-07-11 20:10:48 +000064#include "llvm/Support/ErrorHandling.h"
Nick Lewyckyf53de862010-08-31 05:53:05 +000065#include "llvm/Support/ValueHandle.h"
Daniel Dunbarce63ffb2009-07-25 00:23:56 +000066#include "llvm/Support/raw_ostream.h"
Nick Lewycky65a0af32010-08-31 08:29:37 +000067#include <vector>
Nick Lewycky579a0242008-11-02 05:52:50 +000068using namespace llvm;
69
70STATISTIC(NumFunctionsMerged, "Number of functions merged");
Nick Lewycky2b6c01b2010-09-07 01:42:10 +000071STATISTIC(NumThunksWritten, "Number of thunks generated");
Nick Lewyckyb38824f2011-01-25 08:56:50 +000072STATISTIC(NumAliasesWritten, "Number of aliases generated");
Nick Lewycky2b6c01b2010-09-07 01:42:10 +000073STATISTIC(NumDoubleWeak, "Number of new functions created");
Nick Lewycky579a0242008-11-02 05:52:50 +000074
Benjamin Kramer24a5f302013-04-19 23:06:44 +000075/// Returns the type id for a type to be hashed. We turn pointer types into
76/// integers here because the actual compare logic below considers pointers and
77/// integers of the same size as equal.
78static Type::TypeID getTypeIDForHash(Type *Ty) {
79 if (Ty->isPointerTy())
80 return Type::IntegerTyID;
81 return Ty->getTypeID();
82}
83
Nick Lewycky468ee0a2011-01-28 08:43:14 +000084/// Creates a hash-code for the function which is the same for any two
85/// functions that will compare equal, without looking at the instructions
86/// inside the function.
87static unsigned profileFunction(const Function *F) {
Chris Lattnerdb125cf2011-07-18 04:54:35 +000088 FunctionType *FTy = F->getFunctionType();
Nick Lewyckybe04fde2010-08-08 05:04:23 +000089
Nick Lewyckyb0104e12010-09-05 08:22:49 +000090 FoldingSetNodeID ID;
91 ID.AddInteger(F->size());
92 ID.AddInteger(F->getCallingConv());
93 ID.AddBoolean(F->hasGC());
94 ID.AddBoolean(FTy->isVarArg());
Benjamin Kramer24a5f302013-04-19 23:06:44 +000095 ID.AddInteger(getTypeIDForHash(FTy->getReturnType()));
Nick Lewyckyb0104e12010-09-05 08:22:49 +000096 for (unsigned i = 0, e = FTy->getNumParams(); i != e; ++i)
Benjamin Kramer24a5f302013-04-19 23:06:44 +000097 ID.AddInteger(getTypeIDForHash(FTy->getParamType(i)));
Nick Lewyckyb0104e12010-09-05 08:22:49 +000098 return ID.ComputeHash();
Nick Lewycky579a0242008-11-02 05:52:50 +000099}
100
Nick Lewycky2b6c01b2010-09-07 01:42:10 +0000101namespace {
102
Nick Lewycky8b596432011-01-28 08:19:00 +0000103/// ComparableFunction - A struct that pairs together functions with a
Micah Villmow3574eca2012-10-08 16:38:25 +0000104/// DataLayout so that we can keep them together as elements in the DenseSet.
Nick Lewyckyb0104e12010-09-05 08:22:49 +0000105class ComparableFunction {
106public:
Nick Lewyckyb0e17772010-09-05 09:00:32 +0000107 static const ComparableFunction EmptyKey;
108 static const ComparableFunction TombstoneKey;
Micah Villmow3574eca2012-10-08 16:38:25 +0000109 static DataLayout * const LookupOnly;
Nick Lewyckyb0e17772010-09-05 09:00:32 +0000110
Micah Villmow3574eca2012-10-08 16:38:25 +0000111 ComparableFunction(Function *Func, DataLayout *TD)
Nick Lewycky468ee0a2011-01-28 08:43:14 +0000112 : Func(Func), Hash(profileFunction(Func)), TD(TD) {}
Nick Lewyckyb0104e12010-09-05 08:22:49 +0000113
Nick Lewyckyb0e17772010-09-05 09:00:32 +0000114 Function *getFunc() const { return Func; }
115 unsigned getHash() const { return Hash; }
Micah Villmow3574eca2012-10-08 16:38:25 +0000116 DataLayout *getTD() const { return TD; }
Nick Lewyckyb0e17772010-09-05 09:00:32 +0000117
118 // Drops AssertingVH reference to the function. Outside of debug mode, this
119 // does nothing.
120 void release() {
121 assert(Func &&
122 "Attempted to release function twice, or release empty/tombstone!");
123 Func = NULL;
124 }
125
126private:
127 explicit ComparableFunction(unsigned Hash)
128 : Func(NULL), Hash(Hash), TD(NULL) {}
129
130 AssertingVH<Function> Func;
131 unsigned Hash;
Micah Villmow3574eca2012-10-08 16:38:25 +0000132 DataLayout *TD;
Nick Lewyckyb0104e12010-09-05 08:22:49 +0000133};
134
Nick Lewyckyb0e17772010-09-05 09:00:32 +0000135const ComparableFunction ComparableFunction::EmptyKey = ComparableFunction(0);
136const ComparableFunction ComparableFunction::TombstoneKey =
137 ComparableFunction(1);
Micah Villmow3574eca2012-10-08 16:38:25 +0000138DataLayout *const ComparableFunction::LookupOnly = (DataLayout*)(-1);
Nick Lewyckyb0e17772010-09-05 09:00:32 +0000139
Nick Lewycky2b6c01b2010-09-07 01:42:10 +0000140}
Nick Lewyckyb0e17772010-09-05 09:00:32 +0000141
142namespace llvm {
143 template <>
144 struct DenseMapInfo<ComparableFunction> {
145 static ComparableFunction getEmptyKey() {
146 return ComparableFunction::EmptyKey;
147 }
148 static ComparableFunction getTombstoneKey() {
149 return ComparableFunction::TombstoneKey;
150 }
151 static unsigned getHashValue(const ComparableFunction &CF) {
152 return CF.getHash();
153 }
154 static bool isEqual(const ComparableFunction &LHS,
155 const ComparableFunction &RHS);
156 };
157}
158
159namespace {
Nick Lewyckyb0104e12010-09-05 08:22:49 +0000160
Nick Lewyckybe04fde2010-08-08 05:04:23 +0000161/// FunctionComparator - Compares two functions to determine whether or not
Micah Villmow3574eca2012-10-08 16:38:25 +0000162/// they will generate machine code with the same behaviour. DataLayout is
Nick Lewyckybe04fde2010-08-08 05:04:23 +0000163/// used if available. The comparator always fails conservatively (erring on the
164/// side of claiming that two functions are different).
Nick Lewycky78d43302010-08-02 05:23:03 +0000165class FunctionComparator {
166public:
Micah Villmow3574eca2012-10-08 16:38:25 +0000167 FunctionComparator(const DataLayout *TD, const Function *F1,
Nick Lewyckyf53de862010-08-31 05:53:05 +0000168 const Function *F2)
Nick Lewyckyeafe8632011-02-20 08:11:03 +0000169 : F1(F1), F2(F2), TD(TD) {}
Nick Lewycky287de602009-06-12 08:04:51 +0000170
Nick Lewycky468ee0a2011-01-28 08:43:14 +0000171 /// Test whether the two functions have equivalent behaviour.
172 bool compare();
Nick Lewycky78d43302010-08-02 05:23:03 +0000173
174private:
Nick Lewycky468ee0a2011-01-28 08:43:14 +0000175 /// Test whether two basic blocks have equivalent behaviour.
176 bool compare(const BasicBlock *BB1, const BasicBlock *BB2);
Nick Lewycky78d43302010-08-02 05:23:03 +0000177
Nick Lewycky468ee0a2011-01-28 08:43:14 +0000178 /// Assign or look up previously assigned numbers for the two values, and
179 /// return whether the numbers are equal. Numbers are assigned in the order
180 /// visited.
181 bool enumerate(const Value *V1, const Value *V2);
Nick Lewycky78d43302010-08-02 05:23:03 +0000182
Nick Lewycky468ee0a2011-01-28 08:43:14 +0000183 /// Compare two Instructions for equivalence, similar to
184 /// Instruction::isSameOperationAs but with modifications to the type
Nick Lewyckybe04fde2010-08-08 05:04:23 +0000185 /// comparison.
Nick Lewycky78d43302010-08-02 05:23:03 +0000186 bool isEquivalentOperation(const Instruction *I1,
187 const Instruction *I2) const;
188
Nick Lewycky468ee0a2011-01-28 08:43:14 +0000189 /// Compare two GEPs for equivalent pointer arithmetic.
Nick Lewycky78d43302010-08-02 05:23:03 +0000190 bool isEquivalentGEP(const GEPOperator *GEP1, const GEPOperator *GEP2);
191 bool isEquivalentGEP(const GetElementPtrInst *GEP1,
Nick Lewyckybe04fde2010-08-08 05:04:23 +0000192 const GetElementPtrInst *GEP2) {
Nick Lewycky78d43302010-08-02 05:23:03 +0000193 return isEquivalentGEP(cast<GEPOperator>(GEP1), cast<GEPOperator>(GEP2));
194 }
195
Nick Lewycky468ee0a2011-01-28 08:43:14 +0000196 /// Compare two Types, treating all pointer types as equal.
Bill Wendling74d89242013-04-18 23:34:17 +0000197 bool isEquivalentType(Type *Ty1, Type *Ty2) const;
Nick Lewycky78d43302010-08-02 05:23:03 +0000198
199 // The two functions undergoing comparison.
Nick Lewyckyf53de862010-08-31 05:53:05 +0000200 const Function *F1, *F2;
Nick Lewycky78d43302010-08-02 05:23:03 +0000201
Micah Villmow3574eca2012-10-08 16:38:25 +0000202 const DataLayout *TD;
Nick Lewycky78d43302010-08-02 05:23:03 +0000203
Nick Lewyckyeafe8632011-02-20 08:11:03 +0000204 DenseMap<const Value *, const Value *> id_map;
205 DenseSet<const Value *> seen_values;
Nick Lewycky78d43302010-08-02 05:23:03 +0000206};
Nick Lewycky285cf802011-01-28 07:36:21 +0000207
Nick Lewycky78d43302010-08-02 05:23:03 +0000208}
209
Nick Lewycky468ee0a2011-01-28 08:43:14 +0000210// Any two pointers in the same address space are equivalent, intptr_t and
211// pointers are equivalent. Otherwise, standard type equivalence rules apply.
Bill Wendling74d89242013-04-18 23:34:17 +0000212bool FunctionComparator::isEquivalentType(Type *Ty1, Type *Ty2) const {
Nick Lewycky287de602009-06-12 08:04:51 +0000213 if (Ty1 == Ty2)
214 return true;
Nick Lewycky207c1932011-01-26 09:13:58 +0000215 if (Ty1->getTypeID() != Ty2->getTypeID()) {
Bill Wendling74d89242013-04-18 23:34:17 +0000216 if (TD) {
Chandler Carruthece6c6b2012-11-01 08:07:29 +0000217 LLVMContext &Ctx = Ty1->getContext();
218 if (isa<PointerType>(Ty1) && Ty2 == TD->getIntPtrType(Ctx)) return true;
219 if (isa<PointerType>(Ty2) && Ty1 == TD->getIntPtrType(Ctx)) return true;
Nick Lewycky207c1932011-01-26 09:13:58 +0000220 }
Nick Lewycky287de602009-06-12 08:04:51 +0000221 return false;
Nick Lewycky207c1932011-01-26 09:13:58 +0000222 }
Nick Lewycky287de602009-06-12 08:04:51 +0000223
Nick Lewycky628b3372011-03-25 06:05:50 +0000224 switch (Ty1->getTypeID()) {
Nick Lewycky33ab0b12010-05-13 05:48:45 +0000225 default:
226 llvm_unreachable("Unknown type!");
Duncan Sands8246adc2010-07-07 07:48:00 +0000227 // Fall through in Release mode.
Nick Lewycky33ab0b12010-05-13 05:48:45 +0000228 case Type::IntegerTyID:
Nick Lewycky388f4912011-01-26 08:50:18 +0000229 case Type::VectorTyID:
Nick Lewycky33ab0b12010-05-13 05:48:45 +0000230 // Ty1 == Ty2 would have returned true earlier.
231 return false;
232
Nick Lewycky287de602009-06-12 08:04:51 +0000233 case Type::VoidTyID:
234 case Type::FloatTyID:
235 case Type::DoubleTyID:
236 case Type::X86_FP80TyID:
237 case Type::FP128TyID:
238 case Type::PPC_FP128TyID:
239 case Type::LabelTyID:
240 case Type::MetadataTyID:
241 return true;
242
Nick Lewycky287de602009-06-12 08:04:51 +0000243 case Type::PointerTyID: {
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000244 PointerType *PTy1 = cast<PointerType>(Ty1);
245 PointerType *PTy2 = cast<PointerType>(Ty2);
Nick Lewycky287de602009-06-12 08:04:51 +0000246 return PTy1->getAddressSpace() == PTy2->getAddressSpace();
247 }
248
249 case Type::StructTyID: {
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000250 StructType *STy1 = cast<StructType>(Ty1);
251 StructType *STy2 = cast<StructType>(Ty2);
Nick Lewycky287de602009-06-12 08:04:51 +0000252 if (STy1->getNumElements() != STy2->getNumElements())
253 return false;
254
255 if (STy1->isPacked() != STy2->isPacked())
256 return false;
257
258 for (unsigned i = 0, e = STy1->getNumElements(); i != e; ++i) {
259 if (!isEquivalentType(STy1->getElementType(i), STy2->getElementType(i)))
260 return false;
261 }
262 return true;
263 }
264
265 case Type::FunctionTyID: {
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000266 FunctionType *FTy1 = cast<FunctionType>(Ty1);
267 FunctionType *FTy2 = cast<FunctionType>(Ty2);
Nick Lewycky287de602009-06-12 08:04:51 +0000268 if (FTy1->getNumParams() != FTy2->getNumParams() ||
269 FTy1->isVarArg() != FTy2->isVarArg())
270 return false;
271
Bill Wendling74d89242013-04-18 23:34:17 +0000272 if (!isEquivalentType(FTy1->getReturnType(), FTy2->getReturnType()))
Nick Lewycky287de602009-06-12 08:04:51 +0000273 return false;
274
275 for (unsigned i = 0, e = FTy1->getNumParams(); i != e; ++i) {
276 if (!isEquivalentType(FTy1->getParamType(i), FTy2->getParamType(i)))
277 return false;
278 }
279 return true;
280 }
281
Nick Lewycky394ce412010-07-16 06:31:12 +0000282 case Type::ArrayTyID: {
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000283 ArrayType *ATy1 = cast<ArrayType>(Ty1);
284 ArrayType *ATy2 = cast<ArrayType>(Ty2);
Nick Lewycky394ce412010-07-16 06:31:12 +0000285 return ATy1->getNumElements() == ATy2->getNumElements() &&
286 isEquivalentType(ATy1->getElementType(), ATy2->getElementType());
287 }
Nick Lewycky287de602009-06-12 08:04:51 +0000288 }
289}
290
Nick Lewycky468ee0a2011-01-28 08:43:14 +0000291// Determine whether the two operations are the same except that pointer-to-A
292// and pointer-to-B are equivalent. This should be kept in sync with
293// Instruction::isSameOperationAs.
Nick Lewycky78d43302010-08-02 05:23:03 +0000294bool FunctionComparator::isEquivalentOperation(const Instruction *I1,
295 const Instruction *I2) const {
Nick Lewycky39c33e32011-02-06 05:04:00 +0000296 // Differences from Instruction::isSameOperationAs:
297 // * replace type comparison with calls to isEquivalentType.
298 // * we test for I->hasSameSubclassOptionalData (nuw/nsw/tail) at the top
299 // * because of the above, we don't test for the tail bit on calls later on
Nick Lewycky287de602009-06-12 08:04:51 +0000300 if (I1->getOpcode() != I2->getOpcode() ||
301 I1->getNumOperands() != I2->getNumOperands() ||
Dan Gohman58cfa3b2009-08-25 22:11:20 +0000302 !isEquivalentType(I1->getType(), I2->getType()) ||
303 !I1->hasSameSubclassOptionalData(I2))
Nick Lewycky287de602009-06-12 08:04:51 +0000304 return false;
305
306 // We have two instructions of identical opcode and #operands. Check to see
307 // if all operands are the same type
308 for (unsigned i = 0, e = I1->getNumOperands(); i != e; ++i)
309 if (!isEquivalentType(I1->getOperand(i)->getType(),
310 I2->getOperand(i)->getType()))
311 return false;
312
313 // Check special state that is a part of some instructions.
314 if (const LoadInst *LI = dyn_cast<LoadInst>(I1))
315 return LI->isVolatile() == cast<LoadInst>(I2)->isVolatile() &&
Eli Friedman3d30b432011-08-15 22:16:46 +0000316 LI->getAlignment() == cast<LoadInst>(I2)->getAlignment() &&
317 LI->getOrdering() == cast<LoadInst>(I2)->getOrdering() &&
318 LI->getSynchScope() == cast<LoadInst>(I2)->getSynchScope();
Nick Lewycky287de602009-06-12 08:04:51 +0000319 if (const StoreInst *SI = dyn_cast<StoreInst>(I1))
320 return SI->isVolatile() == cast<StoreInst>(I2)->isVolatile() &&
Eli Friedman3d30b432011-08-15 22:16:46 +0000321 SI->getAlignment() == cast<StoreInst>(I2)->getAlignment() &&
322 SI->getOrdering() == cast<StoreInst>(I2)->getOrdering() &&
323 SI->getSynchScope() == cast<StoreInst>(I2)->getSynchScope();
Nick Lewycky287de602009-06-12 08:04:51 +0000324 if (const CmpInst *CI = dyn_cast<CmpInst>(I1))
325 return CI->getPredicate() == cast<CmpInst>(I2)->getPredicate();
326 if (const CallInst *CI = dyn_cast<CallInst>(I1))
Nick Lewycky39c33e32011-02-06 05:04:00 +0000327 return CI->getCallingConv() == cast<CallInst>(I2)->getCallingConv() &&
Nick Lewyckyf6c63c22011-01-26 09:23:19 +0000328 CI->getAttributes() == cast<CallInst>(I2)->getAttributes();
Nick Lewycky287de602009-06-12 08:04:51 +0000329 if (const InvokeInst *CI = dyn_cast<InvokeInst>(I1))
330 return CI->getCallingConv() == cast<InvokeInst>(I2)->getCallingConv() &&
Nick Lewyckyf6c63c22011-01-26 09:23:19 +0000331 CI->getAttributes() == cast<InvokeInst>(I2)->getAttributes();
Eli Friedman55ba8162011-07-29 03:05:32 +0000332 if (const InsertValueInst *IVI = dyn_cast<InsertValueInst>(I1))
333 return IVI->getIndices() == cast<InsertValueInst>(I2)->getIndices();
334 if (const ExtractValueInst *EVI = dyn_cast<ExtractValueInst>(I1))
335 return EVI->getIndices() == cast<ExtractValueInst>(I2)->getIndices();
336 if (const FenceInst *FI = dyn_cast<FenceInst>(I1))
337 return FI->getOrdering() == cast<FenceInst>(I2)->getOrdering() &&
338 FI->getSynchScope() == cast<FenceInst>(I2)->getSynchScope();
339 if (const AtomicCmpXchgInst *CXI = dyn_cast<AtomicCmpXchgInst>(I1))
340 return CXI->isVolatile() == cast<AtomicCmpXchgInst>(I2)->isVolatile() &&
341 CXI->getOrdering() == cast<AtomicCmpXchgInst>(I2)->getOrdering() &&
342 CXI->getSynchScope() == cast<AtomicCmpXchgInst>(I2)->getSynchScope();
343 if (const AtomicRMWInst *RMWI = dyn_cast<AtomicRMWInst>(I1))
344 return RMWI->getOperation() == cast<AtomicRMWInst>(I2)->getOperation() &&
345 RMWI->isVolatile() == cast<AtomicRMWInst>(I2)->isVolatile() &&
346 RMWI->getOrdering() == cast<AtomicRMWInst>(I2)->getOrdering() &&
347 RMWI->getSynchScope() == cast<AtomicRMWInst>(I2)->getSynchScope();
Nick Lewycky287de602009-06-12 08:04:51 +0000348
349 return true;
Nick Lewycky579a0242008-11-02 05:52:50 +0000350}
351
Nick Lewycky468ee0a2011-01-28 08:43:14 +0000352// Determine whether two GEP operations perform the same underlying arithmetic.
Nick Lewycky78d43302010-08-02 05:23:03 +0000353bool FunctionComparator::isEquivalentGEP(const GEPOperator *GEP1,
354 const GEPOperator *GEP2) {
355 // When we have target data, we can reduce the GEP down to the value in bytes
356 // added to the address.
Nuno Lopes98281a22012-12-30 16:25:48 +0000357 unsigned BitWidth = TD ? TD->getPointerSizeInBits() : 1;
358 APInt Offset1(BitWidth, 0), Offset2(BitWidth, 0);
359 if (TD &&
360 GEP1->accumulateConstantOffset(*TD, Offset1) &&
361 GEP2->accumulateConstantOffset(*TD, Offset2)) {
Nick Lewycky33ab0b12010-05-13 05:48:45 +0000362 return Offset1 == Offset2;
Nick Lewycky579a0242008-11-02 05:52:50 +0000363 }
364
Nick Lewycky33ab0b12010-05-13 05:48:45 +0000365 if (GEP1->getPointerOperand()->getType() !=
366 GEP2->getPointerOperand()->getType())
367 return false;
368
369 if (GEP1->getNumOperands() != GEP2->getNumOperands())
370 return false;
371
372 for (unsigned i = 0, e = GEP1->getNumOperands(); i != e; ++i) {
Nick Lewycky468ee0a2011-01-28 08:43:14 +0000373 if (!enumerate(GEP1->getOperand(i), GEP2->getOperand(i)))
Nick Lewycky33ab0b12010-05-13 05:48:45 +0000374 return false;
375 }
376
377 return true;
Nick Lewycky579a0242008-11-02 05:52:50 +0000378}
379
Nick Lewycky468ee0a2011-01-28 08:43:14 +0000380// Compare two values used by the two functions under pair-wise comparison. If
381// this is the first time the values are seen, they're added to the mapping so
382// that we will detect mismatches on next use.
383bool FunctionComparator::enumerate(const Value *V1, const Value *V2) {
Nick Lewycky78d43302010-08-02 05:23:03 +0000384 // Check for function @f1 referring to itself and function @f2 referring to
385 // itself, or referring to each other, or both referring to either of them.
386 // They're all equivalent if the two functions are otherwise equivalent.
Nick Lewyckyc9dcbed2010-08-06 07:21:30 +0000387 if (V1 == F1 && V2 == F2)
388 return true;
389 if (V1 == F2 && V2 == F1)
390 return true;
Nick Lewycky579a0242008-11-02 05:52:50 +0000391
Benjamin Kramer9c1858c2011-01-27 20:30:54 +0000392 if (const Constant *C1 = dyn_cast<Constant>(V1)) {
Nick Lewycky25296e22011-01-27 08:38:19 +0000393 if (V1 == V2) return true;
Nick Lewycky25296e22011-01-27 08:38:19 +0000394 const Constant *C2 = dyn_cast<Constant>(V2);
395 if (!C2) return false;
396 // TODO: constant expressions with GEP or references to F1 or F2.
397 if (C1->isNullValue() && C2->isNullValue() &&
Bill Wendling56cb2292012-07-19 00:11:40 +0000398 isEquivalentType(C1->getType(), C2->getType()))
Nick Lewycky25296e22011-01-27 08:38:19 +0000399 return true;
Nick Lewyckyc9d69482011-01-27 19:51:31 +0000400 // Try bitcasting C2 to C1's type. If the bitcast is legal and returns C1
401 // then they must have equal bit patterns.
Nick Lewycky25296e22011-01-27 08:38:19 +0000402 return C1->getType()->canLosslesslyBitCastTo(C2->getType()) &&
403 C1 == ConstantExpr::getBitCast(const_cast<Constant*>(C2), C1->getType());
404 }
Nick Lewycky33ab0b12010-05-13 05:48:45 +0000405
Nick Lewyckyd4893322011-02-06 04:33:50 +0000406 if (isa<InlineAsm>(V1) || isa<InlineAsm>(V2))
407 return V1 == V2;
Nick Lewycky33ab0b12010-05-13 05:48:45 +0000408
Nick Lewyckyeafe8632011-02-20 08:11:03 +0000409 // Check that V1 maps to V2. If we find a value that V1 maps to then we simply
410 // check whether it's equal to V2. When there is no mapping then we need to
411 // ensure that V2 isn't already equivalent to something else. For this
412 // purpose, we track the V2 values in a set.
Nick Lewycky33ab0b12010-05-13 05:48:45 +0000413
Nick Lewyckyeafe8632011-02-20 08:11:03 +0000414 const Value *&map_elem = id_map[V1];
415 if (map_elem)
416 return map_elem == V2;
417 if (!seen_values.insert(V2).second)
418 return false;
419 map_elem = V2;
420 return true;
Nick Lewycky33ab0b12010-05-13 05:48:45 +0000421}
422
Nick Lewycky468ee0a2011-01-28 08:43:14 +0000423// Test whether two basic blocks have equivalent behaviour.
424bool FunctionComparator::compare(const BasicBlock *BB1, const BasicBlock *BB2) {
Nick Lewycky78d43302010-08-02 05:23:03 +0000425 BasicBlock::const_iterator F1I = BB1->begin(), F1E = BB1->end();
426 BasicBlock::const_iterator F2I = BB2->begin(), F2E = BB2->end();
Nick Lewycky579a0242008-11-02 05:52:50 +0000427
428 do {
Nick Lewycky468ee0a2011-01-28 08:43:14 +0000429 if (!enumerate(F1I, F2I))
Nick Lewycky579a0242008-11-02 05:52:50 +0000430 return false;
431
Nick Lewycky78d43302010-08-02 05:23:03 +0000432 if (const GetElementPtrInst *GEP1 = dyn_cast<GetElementPtrInst>(F1I)) {
433 const GetElementPtrInst *GEP2 = dyn_cast<GetElementPtrInst>(F2I);
434 if (!GEP2)
435 return false;
Nick Lewyckya142c932009-06-13 19:09:52 +0000436
Nick Lewycky468ee0a2011-01-28 08:43:14 +0000437 if (!enumerate(GEP1->getPointerOperand(), GEP2->getPointerOperand()))
Nick Lewycky911ae392010-05-13 06:45:13 +0000438 return false;
Nick Lewyckya142c932009-06-13 19:09:52 +0000439
Nick Lewycky33ab0b12010-05-13 05:48:45 +0000440 if (!isEquivalentGEP(GEP1, GEP2))
Nick Lewycky911ae392010-05-13 06:45:13 +0000441 return false;
Nick Lewycky33ab0b12010-05-13 05:48:45 +0000442 } else {
Nick Lewycky78d43302010-08-02 05:23:03 +0000443 if (!isEquivalentOperation(F1I, F2I))
Nick Lewycky579a0242008-11-02 05:52:50 +0000444 return false;
445
Nick Lewycky78d43302010-08-02 05:23:03 +0000446 assert(F1I->getNumOperands() == F2I->getNumOperands());
447 for (unsigned i = 0, e = F1I->getNumOperands(); i != e; ++i) {
448 Value *OpF1 = F1I->getOperand(i);
449 Value *OpF2 = F2I->getOperand(i);
Nick Lewycky579a0242008-11-02 05:52:50 +0000450
Nick Lewycky468ee0a2011-01-28 08:43:14 +0000451 if (!enumerate(OpF1, OpF2))
Nick Lewycky911ae392010-05-13 06:45:13 +0000452 return false;
Nick Lewycky33ab0b12010-05-13 05:48:45 +0000453
Nick Lewycky78d43302010-08-02 05:23:03 +0000454 if (OpF1->getValueID() != OpF2->getValueID() ||
455 !isEquivalentType(OpF1->getType(), OpF2->getType()))
Nick Lewycky579a0242008-11-02 05:52:50 +0000456 return false;
457 }
Nick Lewycky579a0242008-11-02 05:52:50 +0000458 }
459
Nick Lewycky78d43302010-08-02 05:23:03 +0000460 ++F1I, ++F2I;
461 } while (F1I != F1E && F2I != F2E);
Nick Lewycky579a0242008-11-02 05:52:50 +0000462
Nick Lewycky78d43302010-08-02 05:23:03 +0000463 return F1I == F1E && F2I == F2E;
Nick Lewycky579a0242008-11-02 05:52:50 +0000464}
465
Nick Lewycky468ee0a2011-01-28 08:43:14 +0000466// Test whether the two functions have equivalent behaviour.
467bool FunctionComparator::compare() {
Nick Lewycky579a0242008-11-02 05:52:50 +0000468 // We need to recheck everything, but check the things that weren't included
469 // in the hash first.
470
Nick Lewycky78d43302010-08-02 05:23:03 +0000471 if (F1->getAttributes() != F2->getAttributes())
Nick Lewycky579a0242008-11-02 05:52:50 +0000472 return false;
473
Nick Lewycky78d43302010-08-02 05:23:03 +0000474 if (F1->hasGC() != F2->hasGC())
Nick Lewycky579a0242008-11-02 05:52:50 +0000475 return false;
476
Nick Lewycky78d43302010-08-02 05:23:03 +0000477 if (F1->hasGC() && F1->getGC() != F2->getGC())
Nick Lewycky579a0242008-11-02 05:52:50 +0000478 return false;
479
Nick Lewycky78d43302010-08-02 05:23:03 +0000480 if (F1->hasSection() != F2->hasSection())
Nick Lewycky579a0242008-11-02 05:52:50 +0000481 return false;
482
Nick Lewycky78d43302010-08-02 05:23:03 +0000483 if (F1->hasSection() && F1->getSection() != F2->getSection())
Nick Lewycky579a0242008-11-02 05:52:50 +0000484 return false;
485
Nick Lewycky78d43302010-08-02 05:23:03 +0000486 if (F1->isVarArg() != F2->isVarArg())
Nick Lewycky287de602009-06-12 08:04:51 +0000487 return false;
488
Nick Lewycky579a0242008-11-02 05:52:50 +0000489 // TODO: if it's internal and only used in direct calls, we could handle this
490 // case too.
Nick Lewycky78d43302010-08-02 05:23:03 +0000491 if (F1->getCallingConv() != F2->getCallingConv())
Nick Lewycky579a0242008-11-02 05:52:50 +0000492 return false;
493
Nick Lewycky78d43302010-08-02 05:23:03 +0000494 if (!isEquivalentType(F1->getFunctionType(), F2->getFunctionType()))
Nick Lewycky579a0242008-11-02 05:52:50 +0000495 return false;
496
Nick Lewycky78d43302010-08-02 05:23:03 +0000497 assert(F1->arg_size() == F2->arg_size() &&
Nick Lewycky2b6c01b2010-09-07 01:42:10 +0000498 "Identically typed functions have different numbers of args!");
Nick Lewycky579a0242008-11-02 05:52:50 +0000499
Nick Lewycky33ab0b12010-05-13 05:48:45 +0000500 // Visit the arguments so that they get enumerated in the order they're
501 // passed in.
Nick Lewycky78d43302010-08-02 05:23:03 +0000502 for (Function::const_arg_iterator f1i = F1->arg_begin(),
503 f2i = F2->arg_begin(), f1e = F1->arg_end(); f1i != f1e; ++f1i, ++f2i) {
Nick Lewycky468ee0a2011-01-28 08:43:14 +0000504 if (!enumerate(f1i, f2i))
Nick Lewycky2b6c01b2010-09-07 01:42:10 +0000505 llvm_unreachable("Arguments repeat!");
Nick Lewycky579a0242008-11-02 05:52:50 +0000506 }
507
Nick Lewyckybe04fde2010-08-08 05:04:23 +0000508 // We do a CFG-ordered walk since the actual ordering of the blocks in the
509 // linked list is immaterial. Our walk starts at the entry block for both
Nick Lewycky78d43302010-08-02 05:23:03 +0000510 // functions, then takes each block from each terminator in order. As an
511 // artifact, this also means that unreachable blocks are ignored.
512 SmallVector<const BasicBlock *, 8> F1BBs, F2BBs;
513 SmallSet<const BasicBlock *, 128> VisitedBBs; // in terms of F1.
Nick Lewyckyc9dcbed2010-08-06 07:21:30 +0000514
Nick Lewycky78d43302010-08-02 05:23:03 +0000515 F1BBs.push_back(&F1->getEntryBlock());
516 F2BBs.push_back(&F2->getEntryBlock());
Nick Lewyckyc9dcbed2010-08-06 07:21:30 +0000517
Nick Lewycky78d43302010-08-02 05:23:03 +0000518 VisitedBBs.insert(F1BBs[0]);
519 while (!F1BBs.empty()) {
520 const BasicBlock *F1BB = F1BBs.pop_back_val();
521 const BasicBlock *F2BB = F2BBs.pop_back_val();
Nick Lewyckyc9dcbed2010-08-06 07:21:30 +0000522
Nick Lewycky468ee0a2011-01-28 08:43:14 +0000523 if (!enumerate(F1BB, F2BB) || !compare(F1BB, F2BB))
Nick Lewycky33ab0b12010-05-13 05:48:45 +0000524 return false;
Nick Lewyckyc9dcbed2010-08-06 07:21:30 +0000525
Nick Lewycky78d43302010-08-02 05:23:03 +0000526 const TerminatorInst *F1TI = F1BB->getTerminator();
527 const TerminatorInst *F2TI = F2BB->getTerminator();
Nick Lewyckyc9dcbed2010-08-06 07:21:30 +0000528
Nick Lewycky78d43302010-08-02 05:23:03 +0000529 assert(F1TI->getNumSuccessors() == F2TI->getNumSuccessors());
530 for (unsigned i = 0, e = F1TI->getNumSuccessors(); i != e; ++i) {
531 if (!VisitedBBs.insert(F1TI->getSuccessor(i)))
Nick Lewycky911ae392010-05-13 06:45:13 +0000532 continue;
Nick Lewyckyc9dcbed2010-08-06 07:21:30 +0000533
Nick Lewycky78d43302010-08-02 05:23:03 +0000534 F1BBs.push_back(F1TI->getSuccessor(i));
535 F2BBs.push_back(F2TI->getSuccessor(i));
Nick Lewycky33ab0b12010-05-13 05:48:45 +0000536 }
537 }
Nick Lewycky579a0242008-11-02 05:52:50 +0000538 return true;
539}
540
Nick Lewycky285cf802011-01-28 07:36:21 +0000541namespace {
542
543/// MergeFunctions finds functions which will generate identical machine code,
544/// by considering all pointer types to be equivalent. Once identified,
545/// MergeFunctions will fold them by replacing a call to one to a call to a
546/// bitcast of the other.
547///
548class MergeFunctions : public ModulePass {
549public:
550 static char ID;
551 MergeFunctions()
552 : ModulePass(ID), HasGlobalAliases(false) {
553 initializeMergeFunctionsPass(*PassRegistry::getPassRegistry());
554 }
555
556 bool runOnModule(Module &M);
557
558private:
559 typedef DenseSet<ComparableFunction> FnSetType;
560
561 /// A work queue of functions that may have been modified and should be
562 /// analyzed again.
563 std::vector<WeakVH> Deferred;
564
565 /// Insert a ComparableFunction into the FnSet, or merge it away if it's
566 /// equal to one that's already present.
Nick Lewycky468ee0a2011-01-28 08:43:14 +0000567 bool insert(ComparableFunction &NewF);
Nick Lewycky285cf802011-01-28 07:36:21 +0000568
569 /// Remove a Function from the FnSet and queue it up for a second sweep of
570 /// analysis.
Nick Lewycky468ee0a2011-01-28 08:43:14 +0000571 void remove(Function *F);
Nick Lewycky285cf802011-01-28 07:36:21 +0000572
573 /// Find the functions that use this Value and remove them from FnSet and
574 /// queue the functions.
Nick Lewycky468ee0a2011-01-28 08:43:14 +0000575 void removeUsers(Value *V);
Nick Lewycky285cf802011-01-28 07:36:21 +0000576
577 /// Replace all direct calls of Old with calls of New. Will bitcast New if
578 /// necessary to make types match.
579 void replaceDirectCallers(Function *Old, Function *New);
580
Nick Lewycky468ee0a2011-01-28 08:43:14 +0000581 /// Merge two equivalent functions. Upon completion, G may be deleted, or may
582 /// be converted into a thunk. In either case, it should never be visited
583 /// again.
584 void mergeTwoFunctions(Function *F, Function *G);
Nick Lewycky285cf802011-01-28 07:36:21 +0000585
Nick Lewycky468ee0a2011-01-28 08:43:14 +0000586 /// Replace G with a thunk or an alias to F. Deletes G.
587 void writeThunkOrAlias(Function *F, Function *G);
Nick Lewycky285cf802011-01-28 07:36:21 +0000588
Nick Lewycky468ee0a2011-01-28 08:43:14 +0000589 /// Replace G with a simple tail call to bitcast(F). Also replace direct uses
590 /// of G with bitcast(F). Deletes G.
591 void writeThunk(Function *F, Function *G);
Nick Lewycky285cf802011-01-28 07:36:21 +0000592
Nick Lewycky468ee0a2011-01-28 08:43:14 +0000593 /// Replace G with an alias to F. Deletes G.
594 void writeAlias(Function *F, Function *G);
Nick Lewycky285cf802011-01-28 07:36:21 +0000595
Nick Lewycky468ee0a2011-01-28 08:43:14 +0000596 /// The set of all distinct functions. Use the insert() and remove() methods
597 /// to modify it.
Nick Lewycky285cf802011-01-28 07:36:21 +0000598 FnSetType FnSet;
599
Micah Villmow3574eca2012-10-08 16:38:25 +0000600 /// DataLayout for more accurate GEP comparisons. May be NULL.
601 DataLayout *TD;
Nick Lewycky285cf802011-01-28 07:36:21 +0000602
603 /// Whether or not the target supports global aliases.
604 bool HasGlobalAliases;
605};
606
607} // end anonymous namespace
608
609char MergeFunctions::ID = 0;
610INITIALIZE_PASS(MergeFunctions, "mergefunc", "Merge Functions", false, false)
611
612ModulePass *llvm::createMergeFunctionsPass() {
613 return new MergeFunctions();
614}
615
616bool MergeFunctions::runOnModule(Module &M) {
617 bool Changed = false;
Micah Villmow3574eca2012-10-08 16:38:25 +0000618 TD = getAnalysisIfAvailable<DataLayout>();
Nick Lewycky285cf802011-01-28 07:36:21 +0000619
620 for (Module::iterator I = M.begin(), E = M.end(); I != E; ++I) {
621 if (!I->isDeclaration() && !I->hasAvailableExternallyLinkage())
622 Deferred.push_back(WeakVH(I));
623 }
624 FnSet.resize(Deferred.size());
625
626 do {
627 std::vector<WeakVH> Worklist;
628 Deferred.swap(Worklist);
629
630 DEBUG(dbgs() << "size of module: " << M.size() << '\n');
631 DEBUG(dbgs() << "size of worklist: " << Worklist.size() << '\n');
632
633 // Insert only strong functions and merge them. Strong function merging
634 // always deletes one of them.
635 for (std::vector<WeakVH>::iterator I = Worklist.begin(),
636 E = Worklist.end(); I != E; ++I) {
637 if (!*I) continue;
638 Function *F = cast<Function>(*I);
639 if (!F->isDeclaration() && !F->hasAvailableExternallyLinkage() &&
640 !F->mayBeOverridden()) {
641 ComparableFunction CF = ComparableFunction(F, TD);
Nick Lewycky468ee0a2011-01-28 08:43:14 +0000642 Changed |= insert(CF);
Nick Lewycky285cf802011-01-28 07:36:21 +0000643 }
644 }
645
646 // Insert only weak functions and merge them. By doing these second we
647 // create thunks to the strong function when possible. When two weak
648 // functions are identical, we create a new strong function with two weak
649 // weak thunks to it which are identical but not mergable.
650 for (std::vector<WeakVH>::iterator I = Worklist.begin(),
651 E = Worklist.end(); I != E; ++I) {
652 if (!*I) continue;
653 Function *F = cast<Function>(*I);
654 if (!F->isDeclaration() && !F->hasAvailableExternallyLinkage() &&
655 F->mayBeOverridden()) {
656 ComparableFunction CF = ComparableFunction(F, TD);
Nick Lewycky468ee0a2011-01-28 08:43:14 +0000657 Changed |= insert(CF);
Nick Lewycky285cf802011-01-28 07:36:21 +0000658 }
659 }
660 DEBUG(dbgs() << "size of FnSet: " << FnSet.size() << '\n');
661 } while (!Deferred.empty());
662
663 FnSet.clear();
664
665 return Changed;
666}
667
668bool DenseMapInfo<ComparableFunction>::isEqual(const ComparableFunction &LHS,
669 const ComparableFunction &RHS) {
670 if (LHS.getFunc() == RHS.getFunc() &&
671 LHS.getHash() == RHS.getHash())
672 return true;
673 if (!LHS.getFunc() || !RHS.getFunc())
674 return false;
Nick Lewycky3ba974a2011-02-09 06:32:02 +0000675
676 // One of these is a special "underlying pointer comparison only" object.
677 if (LHS.getTD() == ComparableFunction::LookupOnly ||
678 RHS.getTD() == ComparableFunction::LookupOnly)
679 return false;
680
Nick Lewycky285cf802011-01-28 07:36:21 +0000681 assert(LHS.getTD() == RHS.getTD() &&
682 "Comparing functions for different targets");
683
Nick Lewycky8eb3e542011-02-02 05:31:01 +0000684 return FunctionComparator(LHS.getTD(), LHS.getFunc(),
685 RHS.getFunc()).compare();
Nick Lewycky285cf802011-01-28 07:36:21 +0000686}
687
Nick Lewycky468ee0a2011-01-28 08:43:14 +0000688// Replace direct callers of Old with New.
Nick Lewyckyb38824f2011-01-25 08:56:50 +0000689void MergeFunctions::replaceDirectCallers(Function *Old, Function *New) {
690 Constant *BitcastNew = ConstantExpr::getBitCast(New, Old->getType());
691 for (Value::use_iterator UI = Old->use_begin(), UE = Old->use_end();
692 UI != UE;) {
693 Value::use_iterator TheIter = UI;
694 ++UI;
695 CallSite CS(*TheIter);
696 if (CS && CS.isCallee(TheIter)) {
Nick Lewycky468ee0a2011-01-28 08:43:14 +0000697 remove(CS.getInstruction()->getParent()->getParent());
Nick Lewyckyb38824f2011-01-25 08:56:50 +0000698 TheIter.getUse().set(BitcastNew);
699 }
700 }
701}
702
Nick Lewycky468ee0a2011-01-28 08:43:14 +0000703// Replace G with an alias to F if possible, or else a thunk to F. Deletes G.
704void MergeFunctions::writeThunkOrAlias(Function *F, Function *G) {
Nick Lewyckyb38824f2011-01-25 08:56:50 +0000705 if (HasGlobalAliases && G->hasUnnamedAddr()) {
706 if (G->hasExternalLinkage() || G->hasLocalLinkage() ||
707 G->hasWeakLinkage()) {
Nick Lewycky468ee0a2011-01-28 08:43:14 +0000708 writeAlias(F, G);
Nick Lewyckyb38824f2011-01-25 08:56:50 +0000709 return;
710 }
711 }
712
Nick Lewycky468ee0a2011-01-28 08:43:14 +0000713 writeThunk(F, G);
Nick Lewyckyb38824f2011-01-25 08:56:50 +0000714}
715
Stepan Dyatkovskiy80361492013-09-17 09:36:11 +0000716// Helper for writeThunk,
717// Selects proper bitcast operation,
718// but a bit simplier then CastInst::getCastOpcode.
719static Value* createCast(IRBuilder<false> &Builder, Value *V, Type *DestTy) {
720 Type *SrcTy = V->getType();
721 if (SrcTy->isIntegerTy() && DestTy->isPointerTy())
722 return Builder.CreateIntToPtr(V, DestTy);
723 else if (SrcTy->isPointerTy() && DestTy->isIntegerTy())
724 return Builder.CreatePtrToInt(V, DestTy);
725 else
726 return Builder.CreateBitCast(V, DestTy);
727}
728
Nick Lewycky468ee0a2011-01-28 08:43:14 +0000729// Replace G with a simple tail call to bitcast(F). Also replace direct uses
730// of G with bitcast(F). Deletes G.
731void MergeFunctions::writeThunk(Function *F, Function *G) {
Nick Lewycky33ab0b12010-05-13 05:48:45 +0000732 if (!G->mayBeOverridden()) {
733 // Redirect direct callers of G to F.
Nick Lewyckyb38824f2011-01-25 08:56:50 +0000734 replaceDirectCallers(G, F);
Nick Lewycky33ab0b12010-05-13 05:48:45 +0000735 }
736
Nick Lewycky2b6c01b2010-09-07 01:42:10 +0000737 // If G was internal then we may have replaced all uses of G with F. If so,
Nick Lewyckyc9dcbed2010-08-06 07:21:30 +0000738 // stop here and delete G. There's no need for a thunk.
739 if (G->hasLocalLinkage() && G->use_empty()) {
740 G->eraseFromParent();
741 return;
742 }
743
Nick Lewycky8728d7a2009-06-12 15:56:56 +0000744 Function *NewG = Function::Create(G->getFunctionType(), G->getLinkage(), "",
745 G->getParent());
Owen Anderson1d0be152009-08-13 21:58:54 +0000746 BasicBlock *BB = BasicBlock::Create(F->getContext(), "", NewG);
Nick Lewyckybe04fde2010-08-08 05:04:23 +0000747 IRBuilder<false> Builder(BB);
Nick Lewycky287de602009-06-12 08:04:51 +0000748
Nick Lewycky33ab0b12010-05-13 05:48:45 +0000749 SmallVector<Value *, 16> Args;
Nick Lewycky287de602009-06-12 08:04:51 +0000750 unsigned i = 0;
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000751 FunctionType *FFTy = F->getFunctionType();
Nick Lewycky287de602009-06-12 08:04:51 +0000752 for (Function::arg_iterator AI = NewG->arg_begin(), AE = NewG->arg_end();
753 AI != AE; ++AI) {
Stepan Dyatkovskiy80361492013-09-17 09:36:11 +0000754 Args.push_back(createCast(Builder, (Value*)AI, FFTy->getParamType(i)));
Nick Lewycky287de602009-06-12 08:04:51 +0000755 ++i;
756 }
757
Jay Foada3efbb12011-07-15 08:37:34 +0000758 CallInst *CI = Builder.CreateCall(F, Args);
Nick Lewycky287de602009-06-12 08:04:51 +0000759 CI->setTailCall();
Nick Lewyckyb3c36c92009-06-12 16:04:00 +0000760 CI->setCallingConv(F->getCallingConv());
Benjamin Kramerf0127052010-01-05 13:12:22 +0000761 if (NewG->getReturnType()->isVoidTy()) {
Nick Lewyckybe04fde2010-08-08 05:04:23 +0000762 Builder.CreateRetVoid();
Nick Lewycky287de602009-06-12 08:04:51 +0000763 } else {
Stepan Dyatkovskiy80361492013-09-17 09:36:11 +0000764 Builder.CreateRet(createCast(Builder, CI, NewG->getReturnType()));
Nick Lewycky287de602009-06-12 08:04:51 +0000765 }
766
767 NewG->copyAttributesFrom(G);
768 NewG->takeName(G);
Nick Lewycky468ee0a2011-01-28 08:43:14 +0000769 removeUsers(G);
Nick Lewycky287de602009-06-12 08:04:51 +0000770 G->replaceAllUsesWith(NewG);
771 G->eraseFromParent();
Nick Lewycky2b6c01b2010-09-07 01:42:10 +0000772
Nick Lewycky468ee0a2011-01-28 08:43:14 +0000773 DEBUG(dbgs() << "writeThunk: " << NewG->getName() << '\n');
Nick Lewycky2b6c01b2010-09-07 01:42:10 +0000774 ++NumThunksWritten;
Nick Lewycky287de602009-06-12 08:04:51 +0000775}
776
Nick Lewycky468ee0a2011-01-28 08:43:14 +0000777// Replace G with an alias to F and delete G.
778void MergeFunctions::writeAlias(Function *F, Function *G) {
Nick Lewyckyb38824f2011-01-25 08:56:50 +0000779 Constant *BitcastF = ConstantExpr::getBitCast(F, G->getType());
780 GlobalAlias *GA = new GlobalAlias(G->getType(), G->getLinkage(), "",
781 BitcastF, G->getParent());
782 F->setAlignment(std::max(F->getAlignment(), G->getAlignment()));
783 GA->takeName(G);
784 GA->setVisibility(G->getVisibility());
Nick Lewycky468ee0a2011-01-28 08:43:14 +0000785 removeUsers(G);
Nick Lewyckyb38824f2011-01-25 08:56:50 +0000786 G->replaceAllUsesWith(GA);
787 G->eraseFromParent();
788
Nick Lewycky468ee0a2011-01-28 08:43:14 +0000789 DEBUG(dbgs() << "writeAlias: " << GA->getName() << '\n');
Nick Lewyckyb38824f2011-01-25 08:56:50 +0000790 ++NumAliasesWritten;
791}
792
Nick Lewycky468ee0a2011-01-28 08:43:14 +0000793// Merge two equivalent functions. Upon completion, Function G is deleted.
794void MergeFunctions::mergeTwoFunctions(Function *F, Function *G) {
Nick Lewycky2b6c01b2010-09-07 01:42:10 +0000795 if (F->mayBeOverridden()) {
796 assert(G->mayBeOverridden());
Nick Lewycky33ab0b12010-05-13 05:48:45 +0000797
Nick Lewyckyb38824f2011-01-25 08:56:50 +0000798 if (HasGlobalAliases) {
799 // Make them both thunks to the same internal function.
800 Function *H = Function::Create(F->getFunctionType(), F->getLinkage(), "",
801 F->getParent());
802 H->copyAttributesFrom(F);
803 H->takeName(F);
Nick Lewycky468ee0a2011-01-28 08:43:14 +0000804 removeUsers(F);
Nick Lewyckyb38824f2011-01-25 08:56:50 +0000805 F->replaceAllUsesWith(H);
Nick Lewycky33ab0b12010-05-13 05:48:45 +0000806
Nick Lewyckyb38824f2011-01-25 08:56:50 +0000807 unsigned MaxAlignment = std::max(G->getAlignment(), H->getAlignment());
Nick Lewycky32218342010-08-09 21:03:28 +0000808
Nick Lewycky468ee0a2011-01-28 08:43:14 +0000809 writeAlias(F, G);
810 writeAlias(F, H);
Nick Lewycky33ab0b12010-05-13 05:48:45 +0000811
Nick Lewyckyb38824f2011-01-25 08:56:50 +0000812 F->setAlignment(MaxAlignment);
813 F->setLinkage(GlobalValue::PrivateLinkage);
814 } else {
815 // We can't merge them. Instead, pick one and update all direct callers
816 // to call it and hope that we improve the instruction cache hit rate.
817 replaceDirectCallers(G, F);
818 }
Nick Lewycky2b6c01b2010-09-07 01:42:10 +0000819
820 ++NumDoubleWeak;
Nick Lewyckyc9dcbed2010-08-06 07:21:30 +0000821 } else {
Nick Lewycky468ee0a2011-01-28 08:43:14 +0000822 writeThunkOrAlias(F, G);
Nick Lewycky6feb3332008-11-02 16:46:26 +0000823 }
824
Nick Lewycky287de602009-06-12 08:04:51 +0000825 ++NumFunctionsMerged;
Nick Lewycky579a0242008-11-02 05:52:50 +0000826}
827
Nick Lewycky468ee0a2011-01-28 08:43:14 +0000828// Insert a ComparableFunction into the FnSet, or merge it away if equal to one
829// that was already inserted.
830bool MergeFunctions::insert(ComparableFunction &NewF) {
Nick Lewyckyb0104e12010-09-05 08:22:49 +0000831 std::pair<FnSetType::iterator, bool> Result = FnSet.insert(NewF);
Nick Lewycky3ba974a2011-02-09 06:32:02 +0000832 if (Result.second) {
833 DEBUG(dbgs() << "Inserting as unique: " << NewF.getFunc()->getName() << '\n');
Nick Lewyckyb0104e12010-09-05 08:22:49 +0000834 return false;
Nick Lewycky3ba974a2011-02-09 06:32:02 +0000835 }
Nick Lewyckybe04fde2010-08-08 05:04:23 +0000836
Nick Lewyckyb0e17772010-09-05 09:00:32 +0000837 const ComparableFunction &OldF = *Result.first;
Nick Lewyckyb0104e12010-09-05 08:22:49 +0000838
839 // Never thunk a strong function to a weak function.
Nick Lewycky2b6c01b2010-09-07 01:42:10 +0000840 assert(!OldF.getFunc()->mayBeOverridden() ||
841 NewF.getFunc()->mayBeOverridden());
Nick Lewyckyb0104e12010-09-05 08:22:49 +0000842
Nick Lewyckyb0e17772010-09-05 09:00:32 +0000843 DEBUG(dbgs() << " " << OldF.getFunc()->getName() << " == "
844 << NewF.getFunc()->getName() << '\n');
Nick Lewyckyb0104e12010-09-05 08:22:49 +0000845
Nick Lewyckyb0e17772010-09-05 09:00:32 +0000846 Function *DeleteF = NewF.getFunc();
847 NewF.release();
Nick Lewycky468ee0a2011-01-28 08:43:14 +0000848 mergeTwoFunctions(OldF.getFunc(), DeleteF);
Nick Lewyckyb0104e12010-09-05 08:22:49 +0000849 return true;
Nick Lewyckybe04fde2010-08-08 05:04:23 +0000850}
Nick Lewycky579a0242008-11-02 05:52:50 +0000851
Nick Lewycky468ee0a2011-01-28 08:43:14 +0000852// Remove a function from FnSet. If it was already in FnSet, add it to Deferred
853// so that we'll look at it in the next round.
854void MergeFunctions::remove(Function *F) {
Nick Lewycky3ba974a2011-02-09 06:32:02 +0000855 // We need to make sure we remove F, not a function "equal" to F per the
856 // function equality comparator.
857 //
858 // The special "lookup only" ComparableFunction bypasses the expensive
859 // function comparison in favour of a pointer comparison on the underlying
860 // Function*'s.
861 ComparableFunction CF = ComparableFunction(F, ComparableFunction::LookupOnly);
Nick Lewyckyabd6c752011-01-02 02:46:33 +0000862 if (FnSet.erase(CF)) {
Nick Lewycky3ba974a2011-02-09 06:32:02 +0000863 DEBUG(dbgs() << "Removed " << F->getName() << " from set and deferred it.\n");
Nick Lewyckyabd6c752011-01-02 02:46:33 +0000864 Deferred.push_back(F);
Nick Lewyckyf53de862010-08-31 05:53:05 +0000865 }
Nick Lewyckyabd6c752011-01-02 02:46:33 +0000866}
Nick Lewyckyb0104e12010-09-05 08:22:49 +0000867
Nick Lewycky468ee0a2011-01-28 08:43:14 +0000868// For each instruction used by the value, remove() the function that contains
869// the instruction. This should happen right before a call to RAUW.
870void MergeFunctions::removeUsers(Value *V) {
Nick Lewyckyd081b042011-01-02 19:16:44 +0000871 std::vector<Value *> Worklist;
872 Worklist.push_back(V);
873 while (!Worklist.empty()) {
874 Value *V = Worklist.back();
875 Worklist.pop_back();
876
877 for (Value::use_iterator UI = V->use_begin(), UE = V->use_end();
878 UI != UE; ++UI) {
879 Use &U = UI.getUse();
880 if (Instruction *I = dyn_cast<Instruction>(U.getUser())) {
Nick Lewycky468ee0a2011-01-28 08:43:14 +0000881 remove(I->getParent()->getParent());
Nick Lewyckyd081b042011-01-02 19:16:44 +0000882 } else if (isa<GlobalValue>(U.getUser())) {
Nick Lewyckye8f81392011-01-15 10:16:23 +0000883 // do nothing
Nick Lewyckyd081b042011-01-02 19:16:44 +0000884 } else if (Constant *C = dyn_cast<Constant>(U.getUser())) {
Nick Lewyckye8f81392011-01-15 10:16:23 +0000885 for (Value::use_iterator CUI = C->use_begin(), CUE = C->use_end();
886 CUI != CUE; ++CUI)
Nick Lewyckyd081b042011-01-02 19:16:44 +0000887 Worklist.push_back(*CUI);
888 }
Nick Lewyckyb0104e12010-09-05 08:22:49 +0000889 }
Nick Lewyckyf53de862010-08-31 05:53:05 +0000890 }
Nick Lewyckyb0104e12010-09-05 08:22:49 +0000891}