blob: 1c6477c0223e723e584c73cf2d594e5d78efb29e [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 Lewycky579a0242008-11-02 05:52:50 +000048#include "llvm/Constants.h"
Chandler Carruth06cb8ed2012-06-29 12:38:19 +000049#include "llvm/IRBuilder.h"
Nick Lewycky579a0242008-11-02 05:52:50 +000050#include "llvm/InlineAsm.h"
51#include "llvm/Instructions.h"
Owen Anderson14ce9ef2009-07-06 01:34:54 +000052#include "llvm/LLVMContext.h"
Nick Lewycky579a0242008-11-02 05:52:50 +000053#include "llvm/Module.h"
Jay Foad562b84b2011-04-11 09:35:34 +000054#include "llvm/Operator.h"
Nick Lewycky579a0242008-11-02 05:52:50 +000055#include "llvm/Pass.h"
Chandler Carruth06cb8ed2012-06-29 12:38:19 +000056#include "llvm/ADT/DenseSet.h"
57#include "llvm/ADT/FoldingSet.h"
58#include "llvm/ADT/STLExtras.h"
59#include "llvm/ADT/SmallSet.h"
60#include "llvm/ADT/Statistic.h"
Nick Lewycky6feb3332008-11-02 16:46:26 +000061#include "llvm/Support/CallSite.h"
Nick Lewycky579a0242008-11-02 05:52:50 +000062#include "llvm/Support/Debug.h"
Torok Edwinc25e7582009-07-11 20:10:48 +000063#include "llvm/Support/ErrorHandling.h"
Nick Lewyckyf53de862010-08-31 05:53:05 +000064#include "llvm/Support/ValueHandle.h"
Daniel Dunbarce63ffb2009-07-25 00:23:56 +000065#include "llvm/Support/raw_ostream.h"
Micah Villmow3574eca2012-10-08 16:38:25 +000066#include "llvm/DataLayout.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
Nick Lewycky468ee0a2011-01-28 08:43:14 +000075/// Creates a hash-code for the function which is the same for any two
76/// functions that will compare equal, without looking at the instructions
77/// inside the function.
78static unsigned profileFunction(const Function *F) {
Chris Lattnerdb125cf2011-07-18 04:54:35 +000079 FunctionType *FTy = F->getFunctionType();
Nick Lewyckybe04fde2010-08-08 05:04:23 +000080
Nick Lewyckyb0104e12010-09-05 08:22:49 +000081 FoldingSetNodeID ID;
82 ID.AddInteger(F->size());
83 ID.AddInteger(F->getCallingConv());
84 ID.AddBoolean(F->hasGC());
85 ID.AddBoolean(FTy->isVarArg());
86 ID.AddInteger(FTy->getReturnType()->getTypeID());
87 for (unsigned i = 0, e = FTy->getNumParams(); i != e; ++i)
88 ID.AddInteger(FTy->getParamType(i)->getTypeID());
89 return ID.ComputeHash();
Nick Lewycky579a0242008-11-02 05:52:50 +000090}
91
Nick Lewycky2b6c01b2010-09-07 01:42:10 +000092namespace {
93
Nick Lewycky8b596432011-01-28 08:19:00 +000094/// ComparableFunction - A struct that pairs together functions with a
Micah Villmow3574eca2012-10-08 16:38:25 +000095/// DataLayout so that we can keep them together as elements in the DenseSet.
Nick Lewyckyb0104e12010-09-05 08:22:49 +000096class ComparableFunction {
97public:
Nick Lewyckyb0e17772010-09-05 09:00:32 +000098 static const ComparableFunction EmptyKey;
99 static const ComparableFunction TombstoneKey;
Micah Villmow3574eca2012-10-08 16:38:25 +0000100 static DataLayout * const LookupOnly;
Nick Lewyckyb0e17772010-09-05 09:00:32 +0000101
Micah Villmow3574eca2012-10-08 16:38:25 +0000102 ComparableFunction(Function *Func, DataLayout *TD)
Nick Lewycky468ee0a2011-01-28 08:43:14 +0000103 : Func(Func), Hash(profileFunction(Func)), TD(TD) {}
Nick Lewyckyb0104e12010-09-05 08:22:49 +0000104
Nick Lewyckyb0e17772010-09-05 09:00:32 +0000105 Function *getFunc() const { return Func; }
106 unsigned getHash() const { return Hash; }
Micah Villmow3574eca2012-10-08 16:38:25 +0000107 DataLayout *getTD() const { return TD; }
Nick Lewyckyb0e17772010-09-05 09:00:32 +0000108
109 // Drops AssertingVH reference to the function. Outside of debug mode, this
110 // does nothing.
111 void release() {
112 assert(Func &&
113 "Attempted to release function twice, or release empty/tombstone!");
114 Func = NULL;
115 }
116
117private:
118 explicit ComparableFunction(unsigned Hash)
119 : Func(NULL), Hash(Hash), TD(NULL) {}
120
121 AssertingVH<Function> Func;
122 unsigned Hash;
Micah Villmow3574eca2012-10-08 16:38:25 +0000123 DataLayout *TD;
Nick Lewyckyb0104e12010-09-05 08:22:49 +0000124};
125
Nick Lewyckyb0e17772010-09-05 09:00:32 +0000126const ComparableFunction ComparableFunction::EmptyKey = ComparableFunction(0);
127const ComparableFunction ComparableFunction::TombstoneKey =
128 ComparableFunction(1);
Micah Villmow3574eca2012-10-08 16:38:25 +0000129DataLayout *const ComparableFunction::LookupOnly = (DataLayout*)(-1);
Nick Lewyckyb0e17772010-09-05 09:00:32 +0000130
Nick Lewycky2b6c01b2010-09-07 01:42:10 +0000131}
Nick Lewyckyb0e17772010-09-05 09:00:32 +0000132
133namespace llvm {
134 template <>
135 struct DenseMapInfo<ComparableFunction> {
136 static ComparableFunction getEmptyKey() {
137 return ComparableFunction::EmptyKey;
138 }
139 static ComparableFunction getTombstoneKey() {
140 return ComparableFunction::TombstoneKey;
141 }
142 static unsigned getHashValue(const ComparableFunction &CF) {
143 return CF.getHash();
144 }
145 static bool isEqual(const ComparableFunction &LHS,
146 const ComparableFunction &RHS);
147 };
148}
149
150namespace {
Nick Lewyckyb0104e12010-09-05 08:22:49 +0000151
Nick Lewyckybe04fde2010-08-08 05:04:23 +0000152/// FunctionComparator - Compares two functions to determine whether or not
Micah Villmow3574eca2012-10-08 16:38:25 +0000153/// they will generate machine code with the same behaviour. DataLayout is
Nick Lewyckybe04fde2010-08-08 05:04:23 +0000154/// used if available. The comparator always fails conservatively (erring on the
155/// side of claiming that two functions are different).
Nick Lewycky78d43302010-08-02 05:23:03 +0000156class FunctionComparator {
157public:
Micah Villmow3574eca2012-10-08 16:38:25 +0000158 FunctionComparator(const DataLayout *TD, const Function *F1,
Nick Lewyckyf53de862010-08-31 05:53:05 +0000159 const Function *F2)
Nick Lewyckyeafe8632011-02-20 08:11:03 +0000160 : F1(F1), F2(F2), TD(TD) {}
Nick Lewycky287de602009-06-12 08:04:51 +0000161
Nick Lewycky468ee0a2011-01-28 08:43:14 +0000162 /// Test whether the two functions have equivalent behaviour.
163 bool compare();
Nick Lewycky78d43302010-08-02 05:23:03 +0000164
165private:
Nick Lewycky468ee0a2011-01-28 08:43:14 +0000166 /// Test whether two basic blocks have equivalent behaviour.
167 bool compare(const BasicBlock *BB1, const BasicBlock *BB2);
Nick Lewycky78d43302010-08-02 05:23:03 +0000168
Nick Lewycky468ee0a2011-01-28 08:43:14 +0000169 /// Assign or look up previously assigned numbers for the two values, and
170 /// return whether the numbers are equal. Numbers are assigned in the order
171 /// visited.
172 bool enumerate(const Value *V1, const Value *V2);
Nick Lewycky78d43302010-08-02 05:23:03 +0000173
Nick Lewycky468ee0a2011-01-28 08:43:14 +0000174 /// Compare two Instructions for equivalence, similar to
175 /// Instruction::isSameOperationAs but with modifications to the type
Nick Lewyckybe04fde2010-08-08 05:04:23 +0000176 /// comparison.
Nick Lewycky78d43302010-08-02 05:23:03 +0000177 bool isEquivalentOperation(const Instruction *I1,
178 const Instruction *I2) const;
179
Nick Lewycky468ee0a2011-01-28 08:43:14 +0000180 /// Compare two GEPs for equivalent pointer arithmetic.
Nick Lewycky78d43302010-08-02 05:23:03 +0000181 bool isEquivalentGEP(const GEPOperator *GEP1, const GEPOperator *GEP2);
182 bool isEquivalentGEP(const GetElementPtrInst *GEP1,
Nick Lewyckybe04fde2010-08-08 05:04:23 +0000183 const GetElementPtrInst *GEP2) {
Nick Lewycky78d43302010-08-02 05:23:03 +0000184 return isEquivalentGEP(cast<GEPOperator>(GEP1), cast<GEPOperator>(GEP2));
185 }
186
Nick Lewycky468ee0a2011-01-28 08:43:14 +0000187 /// Compare two Types, treating all pointer types as equal.
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000188 bool isEquivalentType(Type *Ty1, Type *Ty2) const;
Nick Lewycky78d43302010-08-02 05:23:03 +0000189
190 // The two functions undergoing comparison.
Nick Lewyckyf53de862010-08-31 05:53:05 +0000191 const Function *F1, *F2;
Nick Lewycky78d43302010-08-02 05:23:03 +0000192
Micah Villmow3574eca2012-10-08 16:38:25 +0000193 const DataLayout *TD;
Nick Lewycky78d43302010-08-02 05:23:03 +0000194
Nick Lewyckyeafe8632011-02-20 08:11:03 +0000195 DenseMap<const Value *, const Value *> id_map;
196 DenseSet<const Value *> seen_values;
Nick Lewycky78d43302010-08-02 05:23:03 +0000197};
Nick Lewycky285cf802011-01-28 07:36:21 +0000198
Nick Lewycky78d43302010-08-02 05:23:03 +0000199}
200
Nick Lewycky468ee0a2011-01-28 08:43:14 +0000201// Any two pointers in the same address space are equivalent, intptr_t and
202// pointers are equivalent. Otherwise, standard type equivalence rules apply.
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000203bool FunctionComparator::isEquivalentType(Type *Ty1,
204 Type *Ty2) const {
Nick Lewycky287de602009-06-12 08:04:51 +0000205 if (Ty1 == Ty2)
206 return true;
Nick Lewycky207c1932011-01-26 09:13:58 +0000207 if (Ty1->getTypeID() != Ty2->getTypeID()) {
208 if (TD) {
Micah Villmowaa76e9e2012-10-24 15:52:52 +0000209 if (isa<PointerType>(Ty1) && Ty2 == TD->getIntPtrType(Ty1)) return true;
210 if (isa<PointerType>(Ty2) && Ty1 == TD->getIntPtrType(Ty2)) return true;
Nick Lewycky207c1932011-01-26 09:13:58 +0000211 }
Nick Lewycky287de602009-06-12 08:04:51 +0000212 return false;
Nick Lewycky207c1932011-01-26 09:13:58 +0000213 }
Nick Lewycky287de602009-06-12 08:04:51 +0000214
Nick Lewycky628b3372011-03-25 06:05:50 +0000215 switch (Ty1->getTypeID()) {
Nick Lewycky33ab0b12010-05-13 05:48:45 +0000216 default:
217 llvm_unreachable("Unknown type!");
Duncan Sands8246adc2010-07-07 07:48:00 +0000218 // Fall through in Release mode.
Nick Lewycky33ab0b12010-05-13 05:48:45 +0000219 case Type::IntegerTyID:
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: {
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000235 PointerType *PTy1 = cast<PointerType>(Ty1);
236 PointerType *PTy2 = cast<PointerType>(Ty2);
Nick Lewycky287de602009-06-12 08:04:51 +0000237 return PTy1->getAddressSpace() == PTy2->getAddressSpace();
238 }
239
240 case Type::StructTyID: {
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000241 StructType *STy1 = cast<StructType>(Ty1);
242 StructType *STy2 = cast<StructType>(Ty2);
Nick Lewycky287de602009-06-12 08:04:51 +0000243 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: {
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000257 FunctionType *FTy1 = cast<FunctionType>(Ty1);
258 FunctionType *FTy2 = cast<FunctionType>(Ty2);
Nick Lewycky287de602009-06-12 08:04:51 +0000259 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: {
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000274 ArrayType *ATy1 = cast<ArrayType>(Ty1);
275 ArrayType *ATy2 = cast<ArrayType>(Ty2);
Nick Lewycky394ce412010-07-16 06:31:12 +0000276 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() &&
Eli Friedman3d30b432011-08-15 22:16:46 +0000307 LI->getAlignment() == cast<LoadInst>(I2)->getAlignment() &&
308 LI->getOrdering() == cast<LoadInst>(I2)->getOrdering() &&
309 LI->getSynchScope() == cast<LoadInst>(I2)->getSynchScope();
Nick Lewycky287de602009-06-12 08:04:51 +0000310 if (const StoreInst *SI = dyn_cast<StoreInst>(I1))
311 return SI->isVolatile() == cast<StoreInst>(I2)->isVolatile() &&
Eli Friedman3d30b432011-08-15 22:16:46 +0000312 SI->getAlignment() == cast<StoreInst>(I2)->getAlignment() &&
313 SI->getOrdering() == cast<StoreInst>(I2)->getOrdering() &&
314 SI->getSynchScope() == cast<StoreInst>(I2)->getSynchScope();
Nick Lewycky287de602009-06-12 08:04:51 +0000315 if (const CmpInst *CI = dyn_cast<CmpInst>(I1))
316 return CI->getPredicate() == cast<CmpInst>(I2)->getPredicate();
317 if (const CallInst *CI = dyn_cast<CallInst>(I1))
Nick Lewycky39c33e32011-02-06 05:04:00 +0000318 return CI->getCallingConv() == cast<CallInst>(I2)->getCallingConv() &&
Nick Lewyckyf6c63c22011-01-26 09:23:19 +0000319 CI->getAttributes() == cast<CallInst>(I2)->getAttributes();
Nick Lewycky287de602009-06-12 08:04:51 +0000320 if (const InvokeInst *CI = dyn_cast<InvokeInst>(I1))
321 return CI->getCallingConv() == cast<InvokeInst>(I2)->getCallingConv() &&
Nick Lewyckyf6c63c22011-01-26 09:23:19 +0000322 CI->getAttributes() == cast<InvokeInst>(I2)->getAttributes();
Eli Friedman55ba8162011-07-29 03:05:32 +0000323 if (const InsertValueInst *IVI = dyn_cast<InsertValueInst>(I1))
324 return IVI->getIndices() == cast<InsertValueInst>(I2)->getIndices();
325 if (const ExtractValueInst *EVI = dyn_cast<ExtractValueInst>(I1))
326 return EVI->getIndices() == cast<ExtractValueInst>(I2)->getIndices();
327 if (const FenceInst *FI = dyn_cast<FenceInst>(I1))
328 return FI->getOrdering() == cast<FenceInst>(I2)->getOrdering() &&
329 FI->getSynchScope() == cast<FenceInst>(I2)->getSynchScope();
330 if (const AtomicCmpXchgInst *CXI = dyn_cast<AtomicCmpXchgInst>(I1))
331 return CXI->isVolatile() == cast<AtomicCmpXchgInst>(I2)->isVolatile() &&
332 CXI->getOrdering() == cast<AtomicCmpXchgInst>(I2)->getOrdering() &&
333 CXI->getSynchScope() == cast<AtomicCmpXchgInst>(I2)->getSynchScope();
334 if (const AtomicRMWInst *RMWI = dyn_cast<AtomicRMWInst>(I1))
335 return RMWI->getOperation() == cast<AtomicRMWInst>(I2)->getOperation() &&
336 RMWI->isVolatile() == cast<AtomicRMWInst>(I2)->isVolatile() &&
337 RMWI->getOrdering() == cast<AtomicRMWInst>(I2)->getOrdering() &&
338 RMWI->getSynchScope() == cast<AtomicRMWInst>(I2)->getSynchScope();
Nick Lewycky287de602009-06-12 08:04:51 +0000339
340 return true;
Nick Lewycky579a0242008-11-02 05:52:50 +0000341}
342
Nick Lewycky468ee0a2011-01-28 08:43:14 +0000343// Determine whether two GEP operations perform the same underlying arithmetic.
Nick Lewycky78d43302010-08-02 05:23:03 +0000344bool FunctionComparator::isEquivalentGEP(const GEPOperator *GEP1,
345 const GEPOperator *GEP2) {
346 // When we have target data, we can reduce the GEP down to the value in bytes
347 // added to the address.
Nick Lewycky33ab0b12010-05-13 05:48:45 +0000348 if (TD && GEP1->hasAllConstantIndices() && GEP2->hasAllConstantIndices()) {
Nick Lewycky78d43302010-08-02 05:23:03 +0000349 SmallVector<Value *, 8> Indices1(GEP1->idx_begin(), GEP1->idx_end());
350 SmallVector<Value *, 8> Indices2(GEP2->idx_begin(), GEP2->idx_end());
Nick Lewycky33ab0b12010-05-13 05:48:45 +0000351 uint64_t Offset1 = TD->getIndexedOffset(GEP1->getPointerOperandType(),
Jay Foad8fbbb392011-07-19 14:01:37 +0000352 Indices1);
Nick Lewycky33ab0b12010-05-13 05:48:45 +0000353 uint64_t Offset2 = TD->getIndexedOffset(GEP2->getPointerOperandType(),
Jay Foad8fbbb392011-07-19 14:01:37 +0000354 Indices2);
Nick Lewycky33ab0b12010-05-13 05:48:45 +0000355 return Offset1 == Offset2;
Nick Lewycky579a0242008-11-02 05:52:50 +0000356 }
357
Nick Lewycky33ab0b12010-05-13 05:48:45 +0000358 if (GEP1->getPointerOperand()->getType() !=
359 GEP2->getPointerOperand()->getType())
360 return false;
361
362 if (GEP1->getNumOperands() != GEP2->getNumOperands())
363 return false;
364
365 for (unsigned i = 0, e = GEP1->getNumOperands(); i != e; ++i) {
Nick Lewycky468ee0a2011-01-28 08:43:14 +0000366 if (!enumerate(GEP1->getOperand(i), GEP2->getOperand(i)))
Nick Lewycky33ab0b12010-05-13 05:48:45 +0000367 return false;
368 }
369
370 return true;
Nick Lewycky579a0242008-11-02 05:52:50 +0000371}
372
Nick Lewycky468ee0a2011-01-28 08:43:14 +0000373// Compare two values used by the two functions under pair-wise comparison. If
374// this is the first time the values are seen, they're added to the mapping so
375// that we will detect mismatches on next use.
376bool FunctionComparator::enumerate(const Value *V1, const Value *V2) {
Nick Lewycky78d43302010-08-02 05:23:03 +0000377 // Check for function @f1 referring to itself and function @f2 referring to
378 // itself, or referring to each other, or both referring to either of them.
379 // They're all equivalent if the two functions are otherwise equivalent.
Nick Lewyckyc9dcbed2010-08-06 07:21:30 +0000380 if (V1 == F1 && V2 == F2)
381 return true;
382 if (V1 == F2 && V2 == F1)
383 return true;
Nick Lewycky579a0242008-11-02 05:52:50 +0000384
Benjamin Kramer9c1858c2011-01-27 20:30:54 +0000385 if (const Constant *C1 = dyn_cast<Constant>(V1)) {
Nick Lewycky25296e22011-01-27 08:38:19 +0000386 if (V1 == V2) return true;
Nick Lewycky25296e22011-01-27 08:38:19 +0000387 const Constant *C2 = dyn_cast<Constant>(V2);
388 if (!C2) return false;
389 // TODO: constant expressions with GEP or references to F1 or F2.
390 if (C1->isNullValue() && C2->isNullValue() &&
Bill Wendling56cb2292012-07-19 00:11:40 +0000391 isEquivalentType(C1->getType(), C2->getType()))
Nick Lewycky25296e22011-01-27 08:38:19 +0000392 return true;
Nick Lewyckyc9d69482011-01-27 19:51:31 +0000393 // Try bitcasting C2 to C1's type. If the bitcast is legal and returns C1
394 // then they must have equal bit patterns.
Nick Lewycky25296e22011-01-27 08:38:19 +0000395 return C1->getType()->canLosslesslyBitCastTo(C2->getType()) &&
396 C1 == ConstantExpr::getBitCast(const_cast<Constant*>(C2), C1->getType());
397 }
Nick Lewycky33ab0b12010-05-13 05:48:45 +0000398
Nick Lewyckyd4893322011-02-06 04:33:50 +0000399 if (isa<InlineAsm>(V1) || isa<InlineAsm>(V2))
400 return V1 == V2;
Nick Lewycky33ab0b12010-05-13 05:48:45 +0000401
Nick Lewyckyeafe8632011-02-20 08:11:03 +0000402 // Check that V1 maps to V2. If we find a value that V1 maps to then we simply
403 // check whether it's equal to V2. When there is no mapping then we need to
404 // ensure that V2 isn't already equivalent to something else. For this
405 // purpose, we track the V2 values in a set.
Nick Lewycky33ab0b12010-05-13 05:48:45 +0000406
Nick Lewyckyeafe8632011-02-20 08:11:03 +0000407 const Value *&map_elem = id_map[V1];
408 if (map_elem)
409 return map_elem == V2;
410 if (!seen_values.insert(V2).second)
411 return false;
412 map_elem = V2;
413 return true;
Nick Lewycky33ab0b12010-05-13 05:48:45 +0000414}
415
Nick Lewycky468ee0a2011-01-28 08:43:14 +0000416// Test whether two basic blocks have equivalent behaviour.
417bool FunctionComparator::compare(const BasicBlock *BB1, const BasicBlock *BB2) {
Nick Lewycky78d43302010-08-02 05:23:03 +0000418 BasicBlock::const_iterator F1I = BB1->begin(), F1E = BB1->end();
419 BasicBlock::const_iterator F2I = BB2->begin(), F2E = BB2->end();
Nick Lewycky579a0242008-11-02 05:52:50 +0000420
421 do {
Nick Lewycky468ee0a2011-01-28 08:43:14 +0000422 if (!enumerate(F1I, F2I))
Nick Lewycky579a0242008-11-02 05:52:50 +0000423 return false;
424
Nick Lewycky78d43302010-08-02 05:23:03 +0000425 if (const GetElementPtrInst *GEP1 = dyn_cast<GetElementPtrInst>(F1I)) {
426 const GetElementPtrInst *GEP2 = dyn_cast<GetElementPtrInst>(F2I);
427 if (!GEP2)
428 return false;
Nick Lewyckya142c932009-06-13 19:09:52 +0000429
Nick Lewycky468ee0a2011-01-28 08:43:14 +0000430 if (!enumerate(GEP1->getPointerOperand(), GEP2->getPointerOperand()))
Nick Lewycky911ae392010-05-13 06:45:13 +0000431 return false;
Nick Lewyckya142c932009-06-13 19:09:52 +0000432
Nick Lewycky33ab0b12010-05-13 05:48:45 +0000433 if (!isEquivalentGEP(GEP1, GEP2))
Nick Lewycky911ae392010-05-13 06:45:13 +0000434 return false;
Nick Lewycky33ab0b12010-05-13 05:48:45 +0000435 } else {
Nick Lewycky78d43302010-08-02 05:23:03 +0000436 if (!isEquivalentOperation(F1I, F2I))
Nick Lewycky579a0242008-11-02 05:52:50 +0000437 return false;
438
Nick Lewycky78d43302010-08-02 05:23:03 +0000439 assert(F1I->getNumOperands() == F2I->getNumOperands());
440 for (unsigned i = 0, e = F1I->getNumOperands(); i != e; ++i) {
441 Value *OpF1 = F1I->getOperand(i);
442 Value *OpF2 = F2I->getOperand(i);
Nick Lewycky579a0242008-11-02 05:52:50 +0000443
Nick Lewycky468ee0a2011-01-28 08:43:14 +0000444 if (!enumerate(OpF1, OpF2))
Nick Lewycky911ae392010-05-13 06:45:13 +0000445 return false;
Nick Lewycky33ab0b12010-05-13 05:48:45 +0000446
Nick Lewycky78d43302010-08-02 05:23:03 +0000447 if (OpF1->getValueID() != OpF2->getValueID() ||
448 !isEquivalentType(OpF1->getType(), OpF2->getType()))
Nick Lewycky579a0242008-11-02 05:52:50 +0000449 return false;
450 }
Nick Lewycky579a0242008-11-02 05:52:50 +0000451 }
452
Nick Lewycky78d43302010-08-02 05:23:03 +0000453 ++F1I, ++F2I;
454 } while (F1I != F1E && F2I != F2E);
Nick Lewycky579a0242008-11-02 05:52:50 +0000455
Nick Lewycky78d43302010-08-02 05:23:03 +0000456 return F1I == F1E && F2I == F2E;
Nick Lewycky579a0242008-11-02 05:52:50 +0000457}
458
Nick Lewycky468ee0a2011-01-28 08:43:14 +0000459// Test whether the two functions have equivalent behaviour.
460bool FunctionComparator::compare() {
Nick Lewycky579a0242008-11-02 05:52:50 +0000461 // We need to recheck everything, but check the things that weren't included
462 // in the hash first.
463
Nick Lewycky78d43302010-08-02 05:23:03 +0000464 if (F1->getAttributes() != F2->getAttributes())
Nick Lewycky579a0242008-11-02 05:52:50 +0000465 return false;
466
Nick Lewycky78d43302010-08-02 05:23:03 +0000467 if (F1->hasGC() != F2->hasGC())
Nick Lewycky579a0242008-11-02 05:52:50 +0000468 return false;
469
Nick Lewycky78d43302010-08-02 05:23:03 +0000470 if (F1->hasGC() && F1->getGC() != F2->getGC())
Nick Lewycky579a0242008-11-02 05:52:50 +0000471 return false;
472
Nick Lewycky78d43302010-08-02 05:23:03 +0000473 if (F1->hasSection() != F2->hasSection())
Nick Lewycky579a0242008-11-02 05:52:50 +0000474 return false;
475
Nick Lewycky78d43302010-08-02 05:23:03 +0000476 if (F1->hasSection() && F1->getSection() != F2->getSection())
Nick Lewycky579a0242008-11-02 05:52:50 +0000477 return false;
478
Nick Lewycky78d43302010-08-02 05:23:03 +0000479 if (F1->isVarArg() != F2->isVarArg())
Nick Lewycky287de602009-06-12 08:04:51 +0000480 return false;
481
Nick Lewycky579a0242008-11-02 05:52:50 +0000482 // TODO: if it's internal and only used in direct calls, we could handle this
483 // case too.
Nick Lewycky78d43302010-08-02 05:23:03 +0000484 if (F1->getCallingConv() != F2->getCallingConv())
Nick Lewycky579a0242008-11-02 05:52:50 +0000485 return false;
486
Nick Lewycky78d43302010-08-02 05:23:03 +0000487 if (!isEquivalentType(F1->getFunctionType(), F2->getFunctionType()))
Nick Lewycky579a0242008-11-02 05:52:50 +0000488 return false;
489
Nick Lewycky78d43302010-08-02 05:23:03 +0000490 assert(F1->arg_size() == F2->arg_size() &&
Nick Lewycky2b6c01b2010-09-07 01:42:10 +0000491 "Identically typed functions have different numbers of args!");
Nick Lewycky579a0242008-11-02 05:52:50 +0000492
Nick Lewycky33ab0b12010-05-13 05:48:45 +0000493 // Visit the arguments so that they get enumerated in the order they're
494 // passed in.
Nick Lewycky78d43302010-08-02 05:23:03 +0000495 for (Function::const_arg_iterator f1i = F1->arg_begin(),
496 f2i = F2->arg_begin(), f1e = F1->arg_end(); f1i != f1e; ++f1i, ++f2i) {
Nick Lewycky468ee0a2011-01-28 08:43:14 +0000497 if (!enumerate(f1i, f2i))
Nick Lewycky2b6c01b2010-09-07 01:42:10 +0000498 llvm_unreachable("Arguments repeat!");
Nick Lewycky579a0242008-11-02 05:52:50 +0000499 }
500
Nick Lewyckybe04fde2010-08-08 05:04:23 +0000501 // We do a CFG-ordered walk since the actual ordering of the blocks in the
502 // linked list is immaterial. Our walk starts at the entry block for both
Nick Lewycky78d43302010-08-02 05:23:03 +0000503 // functions, then takes each block from each terminator in order. As an
504 // artifact, this also means that unreachable blocks are ignored.
505 SmallVector<const BasicBlock *, 8> F1BBs, F2BBs;
506 SmallSet<const BasicBlock *, 128> VisitedBBs; // in terms of F1.
Nick Lewyckyc9dcbed2010-08-06 07:21:30 +0000507
Nick Lewycky78d43302010-08-02 05:23:03 +0000508 F1BBs.push_back(&F1->getEntryBlock());
509 F2BBs.push_back(&F2->getEntryBlock());
Nick Lewyckyc9dcbed2010-08-06 07:21:30 +0000510
Nick Lewycky78d43302010-08-02 05:23:03 +0000511 VisitedBBs.insert(F1BBs[0]);
512 while (!F1BBs.empty()) {
513 const BasicBlock *F1BB = F1BBs.pop_back_val();
514 const BasicBlock *F2BB = F2BBs.pop_back_val();
Nick Lewyckyc9dcbed2010-08-06 07:21:30 +0000515
Nick Lewycky468ee0a2011-01-28 08:43:14 +0000516 if (!enumerate(F1BB, F2BB) || !compare(F1BB, F2BB))
Nick Lewycky33ab0b12010-05-13 05:48:45 +0000517 return false;
Nick Lewyckyc9dcbed2010-08-06 07:21:30 +0000518
Nick Lewycky78d43302010-08-02 05:23:03 +0000519 const TerminatorInst *F1TI = F1BB->getTerminator();
520 const TerminatorInst *F2TI = F2BB->getTerminator();
Nick Lewyckyc9dcbed2010-08-06 07:21:30 +0000521
Nick Lewycky78d43302010-08-02 05:23:03 +0000522 assert(F1TI->getNumSuccessors() == F2TI->getNumSuccessors());
523 for (unsigned i = 0, e = F1TI->getNumSuccessors(); i != e; ++i) {
524 if (!VisitedBBs.insert(F1TI->getSuccessor(i)))
Nick Lewycky911ae392010-05-13 06:45:13 +0000525 continue;
Nick Lewyckyc9dcbed2010-08-06 07:21:30 +0000526
Nick Lewycky78d43302010-08-02 05:23:03 +0000527 F1BBs.push_back(F1TI->getSuccessor(i));
528 F2BBs.push_back(F2TI->getSuccessor(i));
Nick Lewycky33ab0b12010-05-13 05:48:45 +0000529 }
530 }
Nick Lewycky579a0242008-11-02 05:52:50 +0000531 return true;
532}
533
Nick Lewycky285cf802011-01-28 07:36:21 +0000534namespace {
535
536/// MergeFunctions finds functions which will generate identical machine code,
537/// by considering all pointer types to be equivalent. Once identified,
538/// MergeFunctions will fold them by replacing a call to one to a call to a
539/// bitcast of the other.
540///
541class MergeFunctions : public ModulePass {
542public:
543 static char ID;
544 MergeFunctions()
545 : ModulePass(ID), HasGlobalAliases(false) {
546 initializeMergeFunctionsPass(*PassRegistry::getPassRegistry());
547 }
548
549 bool runOnModule(Module &M);
550
551private:
552 typedef DenseSet<ComparableFunction> FnSetType;
553
554 /// A work queue of functions that may have been modified and should be
555 /// analyzed again.
556 std::vector<WeakVH> Deferred;
557
558 /// Insert a ComparableFunction into the FnSet, or merge it away if it's
559 /// equal to one that's already present.
Nick Lewycky468ee0a2011-01-28 08:43:14 +0000560 bool insert(ComparableFunction &NewF);
Nick Lewycky285cf802011-01-28 07:36:21 +0000561
562 /// Remove a Function from the FnSet and queue it up for a second sweep of
563 /// analysis.
Nick Lewycky468ee0a2011-01-28 08:43:14 +0000564 void remove(Function *F);
Nick Lewycky285cf802011-01-28 07:36:21 +0000565
566 /// Find the functions that use this Value and remove them from FnSet and
567 /// queue the functions.
Nick Lewycky468ee0a2011-01-28 08:43:14 +0000568 void removeUsers(Value *V);
Nick Lewycky285cf802011-01-28 07:36:21 +0000569
570 /// Replace all direct calls of Old with calls of New. Will bitcast New if
571 /// necessary to make types match.
572 void replaceDirectCallers(Function *Old, Function *New);
573
Nick Lewycky468ee0a2011-01-28 08:43:14 +0000574 /// Merge two equivalent functions. Upon completion, G may be deleted, or may
575 /// be converted into a thunk. In either case, it should never be visited
576 /// again.
577 void mergeTwoFunctions(Function *F, Function *G);
Nick Lewycky285cf802011-01-28 07:36:21 +0000578
Nick Lewycky468ee0a2011-01-28 08:43:14 +0000579 /// Replace G with a thunk or an alias to F. Deletes G.
580 void writeThunkOrAlias(Function *F, Function *G);
Nick Lewycky285cf802011-01-28 07:36:21 +0000581
Nick Lewycky468ee0a2011-01-28 08:43:14 +0000582 /// Replace G with a simple tail call to bitcast(F). Also replace direct uses
583 /// of G with bitcast(F). Deletes G.
584 void writeThunk(Function *F, Function *G);
Nick Lewycky285cf802011-01-28 07:36:21 +0000585
Nick Lewycky468ee0a2011-01-28 08:43:14 +0000586 /// Replace G with an alias to F. Deletes G.
587 void writeAlias(Function *F, Function *G);
Nick Lewycky285cf802011-01-28 07:36:21 +0000588
Nick Lewycky468ee0a2011-01-28 08:43:14 +0000589 /// The set of all distinct functions. Use the insert() and remove() methods
590 /// to modify it.
Nick Lewycky285cf802011-01-28 07:36:21 +0000591 FnSetType FnSet;
592
Micah Villmow3574eca2012-10-08 16:38:25 +0000593 /// DataLayout for more accurate GEP comparisons. May be NULL.
594 DataLayout *TD;
Nick Lewycky285cf802011-01-28 07:36:21 +0000595
596 /// Whether or not the target supports global aliases.
597 bool HasGlobalAliases;
598};
599
600} // end anonymous namespace
601
602char MergeFunctions::ID = 0;
603INITIALIZE_PASS(MergeFunctions, "mergefunc", "Merge Functions", false, false)
604
605ModulePass *llvm::createMergeFunctionsPass() {
606 return new MergeFunctions();
607}
608
609bool MergeFunctions::runOnModule(Module &M) {
610 bool Changed = false;
Micah Villmow3574eca2012-10-08 16:38:25 +0000611 TD = getAnalysisIfAvailable<DataLayout>();
Nick Lewycky285cf802011-01-28 07:36:21 +0000612
613 for (Module::iterator I = M.begin(), E = M.end(); I != E; ++I) {
614 if (!I->isDeclaration() && !I->hasAvailableExternallyLinkage())
615 Deferred.push_back(WeakVH(I));
616 }
617 FnSet.resize(Deferred.size());
618
619 do {
620 std::vector<WeakVH> Worklist;
621 Deferred.swap(Worklist);
622
623 DEBUG(dbgs() << "size of module: " << M.size() << '\n');
624 DEBUG(dbgs() << "size of worklist: " << Worklist.size() << '\n');
625
626 // Insert only strong functions and merge them. Strong function merging
627 // always deletes one of them.
628 for (std::vector<WeakVH>::iterator I = Worklist.begin(),
629 E = Worklist.end(); I != E; ++I) {
630 if (!*I) continue;
631 Function *F = cast<Function>(*I);
632 if (!F->isDeclaration() && !F->hasAvailableExternallyLinkage() &&
633 !F->mayBeOverridden()) {
634 ComparableFunction CF = ComparableFunction(F, TD);
Nick Lewycky468ee0a2011-01-28 08:43:14 +0000635 Changed |= insert(CF);
Nick Lewycky285cf802011-01-28 07:36:21 +0000636 }
637 }
638
639 // Insert only weak functions and merge them. By doing these second we
640 // create thunks to the strong function when possible. When two weak
641 // functions are identical, we create a new strong function with two weak
642 // weak thunks to it which are identical but not mergable.
643 for (std::vector<WeakVH>::iterator I = Worklist.begin(),
644 E = Worklist.end(); I != E; ++I) {
645 if (!*I) continue;
646 Function *F = cast<Function>(*I);
647 if (!F->isDeclaration() && !F->hasAvailableExternallyLinkage() &&
648 F->mayBeOverridden()) {
649 ComparableFunction CF = ComparableFunction(F, TD);
Nick Lewycky468ee0a2011-01-28 08:43:14 +0000650 Changed |= insert(CF);
Nick Lewycky285cf802011-01-28 07:36:21 +0000651 }
652 }
653 DEBUG(dbgs() << "size of FnSet: " << FnSet.size() << '\n');
654 } while (!Deferred.empty());
655
656 FnSet.clear();
657
658 return Changed;
659}
660
661bool DenseMapInfo<ComparableFunction>::isEqual(const ComparableFunction &LHS,
662 const ComparableFunction &RHS) {
663 if (LHS.getFunc() == RHS.getFunc() &&
664 LHS.getHash() == RHS.getHash())
665 return true;
666 if (!LHS.getFunc() || !RHS.getFunc())
667 return false;
Nick Lewycky3ba974a2011-02-09 06:32:02 +0000668
669 // One of these is a special "underlying pointer comparison only" object.
670 if (LHS.getTD() == ComparableFunction::LookupOnly ||
671 RHS.getTD() == ComparableFunction::LookupOnly)
672 return false;
673
Nick Lewycky285cf802011-01-28 07:36:21 +0000674 assert(LHS.getTD() == RHS.getTD() &&
675 "Comparing functions for different targets");
676
Nick Lewycky8eb3e542011-02-02 05:31:01 +0000677 return FunctionComparator(LHS.getTD(), LHS.getFunc(),
678 RHS.getFunc()).compare();
Nick Lewycky285cf802011-01-28 07:36:21 +0000679}
680
Nick Lewycky468ee0a2011-01-28 08:43:14 +0000681// Replace direct callers of Old with New.
Nick Lewyckyb38824f2011-01-25 08:56:50 +0000682void MergeFunctions::replaceDirectCallers(Function *Old, Function *New) {
683 Constant *BitcastNew = ConstantExpr::getBitCast(New, Old->getType());
684 for (Value::use_iterator UI = Old->use_begin(), UE = Old->use_end();
685 UI != UE;) {
686 Value::use_iterator TheIter = UI;
687 ++UI;
688 CallSite CS(*TheIter);
689 if (CS && CS.isCallee(TheIter)) {
Nick Lewycky468ee0a2011-01-28 08:43:14 +0000690 remove(CS.getInstruction()->getParent()->getParent());
Nick Lewyckyb38824f2011-01-25 08:56:50 +0000691 TheIter.getUse().set(BitcastNew);
692 }
693 }
694}
695
Nick Lewycky468ee0a2011-01-28 08:43:14 +0000696// Replace G with an alias to F if possible, or else a thunk to F. Deletes G.
697void MergeFunctions::writeThunkOrAlias(Function *F, Function *G) {
Nick Lewyckyb38824f2011-01-25 08:56:50 +0000698 if (HasGlobalAliases && G->hasUnnamedAddr()) {
699 if (G->hasExternalLinkage() || G->hasLocalLinkage() ||
700 G->hasWeakLinkage()) {
Nick Lewycky468ee0a2011-01-28 08:43:14 +0000701 writeAlias(F, G);
Nick Lewyckyb38824f2011-01-25 08:56:50 +0000702 return;
703 }
704 }
705
Nick Lewycky468ee0a2011-01-28 08:43:14 +0000706 writeThunk(F, G);
Nick Lewyckyb38824f2011-01-25 08:56:50 +0000707}
708
Nick Lewycky468ee0a2011-01-28 08:43:14 +0000709// Replace G with a simple tail call to bitcast(F). Also replace direct uses
710// of G with bitcast(F). Deletes G.
711void MergeFunctions::writeThunk(Function *F, Function *G) {
Nick Lewycky33ab0b12010-05-13 05:48:45 +0000712 if (!G->mayBeOverridden()) {
713 // Redirect direct callers of G to F.
Nick Lewyckyb38824f2011-01-25 08:56:50 +0000714 replaceDirectCallers(G, F);
Nick Lewycky33ab0b12010-05-13 05:48:45 +0000715 }
716
Nick Lewycky2b6c01b2010-09-07 01:42:10 +0000717 // If G was internal then we may have replaced all uses of G with F. If so,
Nick Lewyckyc9dcbed2010-08-06 07:21:30 +0000718 // stop here and delete G. There's no need for a thunk.
719 if (G->hasLocalLinkage() && G->use_empty()) {
720 G->eraseFromParent();
721 return;
722 }
723
Nick Lewycky8728d7a2009-06-12 15:56:56 +0000724 Function *NewG = Function::Create(G->getFunctionType(), G->getLinkage(), "",
725 G->getParent());
Owen Anderson1d0be152009-08-13 21:58:54 +0000726 BasicBlock *BB = BasicBlock::Create(F->getContext(), "", NewG);
Nick Lewyckybe04fde2010-08-08 05:04:23 +0000727 IRBuilder<false> Builder(BB);
Nick Lewycky287de602009-06-12 08:04:51 +0000728
Nick Lewycky33ab0b12010-05-13 05:48:45 +0000729 SmallVector<Value *, 16> Args;
Nick Lewycky287de602009-06-12 08:04:51 +0000730 unsigned i = 0;
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000731 FunctionType *FFTy = F->getFunctionType();
Nick Lewycky287de602009-06-12 08:04:51 +0000732 for (Function::arg_iterator AI = NewG->arg_begin(), AE = NewG->arg_end();
733 AI != AE; ++AI) {
Nick Lewyckybe04fde2010-08-08 05:04:23 +0000734 Args.push_back(Builder.CreateBitCast(AI, FFTy->getParamType(i)));
Nick Lewycky287de602009-06-12 08:04:51 +0000735 ++i;
736 }
737
Jay Foada3efbb12011-07-15 08:37:34 +0000738 CallInst *CI = Builder.CreateCall(F, Args);
Nick Lewycky287de602009-06-12 08:04:51 +0000739 CI->setTailCall();
Nick Lewyckyb3c36c92009-06-12 16:04:00 +0000740 CI->setCallingConv(F->getCallingConv());
Benjamin Kramerf0127052010-01-05 13:12:22 +0000741 if (NewG->getReturnType()->isVoidTy()) {
Nick Lewyckybe04fde2010-08-08 05:04:23 +0000742 Builder.CreateRetVoid();
Nick Lewycky287de602009-06-12 08:04:51 +0000743 } else {
Nick Lewyckybe04fde2010-08-08 05:04:23 +0000744 Builder.CreateRet(Builder.CreateBitCast(CI, NewG->getReturnType()));
Nick Lewycky287de602009-06-12 08:04:51 +0000745 }
746
747 NewG->copyAttributesFrom(G);
748 NewG->takeName(G);
Nick Lewycky468ee0a2011-01-28 08:43:14 +0000749 removeUsers(G);
Nick Lewycky287de602009-06-12 08:04:51 +0000750 G->replaceAllUsesWith(NewG);
751 G->eraseFromParent();
Nick Lewycky2b6c01b2010-09-07 01:42:10 +0000752
Nick Lewycky468ee0a2011-01-28 08:43:14 +0000753 DEBUG(dbgs() << "writeThunk: " << NewG->getName() << '\n');
Nick Lewycky2b6c01b2010-09-07 01:42:10 +0000754 ++NumThunksWritten;
Nick Lewycky287de602009-06-12 08:04:51 +0000755}
756
Nick Lewycky468ee0a2011-01-28 08:43:14 +0000757// Replace G with an alias to F and delete G.
758void MergeFunctions::writeAlias(Function *F, Function *G) {
Nick Lewyckyb38824f2011-01-25 08:56:50 +0000759 Constant *BitcastF = ConstantExpr::getBitCast(F, G->getType());
760 GlobalAlias *GA = new GlobalAlias(G->getType(), G->getLinkage(), "",
761 BitcastF, G->getParent());
762 F->setAlignment(std::max(F->getAlignment(), G->getAlignment()));
763 GA->takeName(G);
764 GA->setVisibility(G->getVisibility());
Nick Lewycky468ee0a2011-01-28 08:43:14 +0000765 removeUsers(G);
Nick Lewyckyb38824f2011-01-25 08:56:50 +0000766 G->replaceAllUsesWith(GA);
767 G->eraseFromParent();
768
Nick Lewycky468ee0a2011-01-28 08:43:14 +0000769 DEBUG(dbgs() << "writeAlias: " << GA->getName() << '\n');
Nick Lewyckyb38824f2011-01-25 08:56:50 +0000770 ++NumAliasesWritten;
771}
772
Nick Lewycky468ee0a2011-01-28 08:43:14 +0000773// Merge two equivalent functions. Upon completion, Function G is deleted.
774void MergeFunctions::mergeTwoFunctions(Function *F, Function *G) {
Nick Lewycky2b6c01b2010-09-07 01:42:10 +0000775 if (F->mayBeOverridden()) {
776 assert(G->mayBeOverridden());
Nick Lewycky33ab0b12010-05-13 05:48:45 +0000777
Nick Lewyckyb38824f2011-01-25 08:56:50 +0000778 if (HasGlobalAliases) {
779 // Make them both thunks to the same internal function.
780 Function *H = Function::Create(F->getFunctionType(), F->getLinkage(), "",
781 F->getParent());
782 H->copyAttributesFrom(F);
783 H->takeName(F);
Nick Lewycky468ee0a2011-01-28 08:43:14 +0000784 removeUsers(F);
Nick Lewyckyb38824f2011-01-25 08:56:50 +0000785 F->replaceAllUsesWith(H);
Nick Lewycky33ab0b12010-05-13 05:48:45 +0000786
Nick Lewyckyb38824f2011-01-25 08:56:50 +0000787 unsigned MaxAlignment = std::max(G->getAlignment(), H->getAlignment());
Nick Lewycky32218342010-08-09 21:03:28 +0000788
Nick Lewycky468ee0a2011-01-28 08:43:14 +0000789 writeAlias(F, G);
790 writeAlias(F, H);
Nick Lewycky33ab0b12010-05-13 05:48:45 +0000791
Nick Lewyckyb38824f2011-01-25 08:56:50 +0000792 F->setAlignment(MaxAlignment);
793 F->setLinkage(GlobalValue::PrivateLinkage);
794 } else {
795 // We can't merge them. Instead, pick one and update all direct callers
796 // to call it and hope that we improve the instruction cache hit rate.
797 replaceDirectCallers(G, F);
798 }
Nick Lewycky2b6c01b2010-09-07 01:42:10 +0000799
800 ++NumDoubleWeak;
Nick Lewyckyc9dcbed2010-08-06 07:21:30 +0000801 } else {
Nick Lewycky468ee0a2011-01-28 08:43:14 +0000802 writeThunkOrAlias(F, G);
Nick Lewycky6feb3332008-11-02 16:46:26 +0000803 }
804
Nick Lewycky287de602009-06-12 08:04:51 +0000805 ++NumFunctionsMerged;
Nick Lewycky579a0242008-11-02 05:52:50 +0000806}
807
Nick Lewycky468ee0a2011-01-28 08:43:14 +0000808// Insert a ComparableFunction into the FnSet, or merge it away if equal to one
809// that was already inserted.
810bool MergeFunctions::insert(ComparableFunction &NewF) {
Nick Lewyckyb0104e12010-09-05 08:22:49 +0000811 std::pair<FnSetType::iterator, bool> Result = FnSet.insert(NewF);
Nick Lewycky3ba974a2011-02-09 06:32:02 +0000812 if (Result.second) {
813 DEBUG(dbgs() << "Inserting as unique: " << NewF.getFunc()->getName() << '\n');
Nick Lewyckyb0104e12010-09-05 08:22:49 +0000814 return false;
Nick Lewycky3ba974a2011-02-09 06:32:02 +0000815 }
Nick Lewyckybe04fde2010-08-08 05:04:23 +0000816
Nick Lewyckyb0e17772010-09-05 09:00:32 +0000817 const ComparableFunction &OldF = *Result.first;
Nick Lewyckyb0104e12010-09-05 08:22:49 +0000818
819 // Never thunk a strong function to a weak function.
Nick Lewycky2b6c01b2010-09-07 01:42:10 +0000820 assert(!OldF.getFunc()->mayBeOverridden() ||
821 NewF.getFunc()->mayBeOverridden());
Nick Lewyckyb0104e12010-09-05 08:22:49 +0000822
Nick Lewyckyb0e17772010-09-05 09:00:32 +0000823 DEBUG(dbgs() << " " << OldF.getFunc()->getName() << " == "
824 << NewF.getFunc()->getName() << '\n');
Nick Lewyckyb0104e12010-09-05 08:22:49 +0000825
Nick Lewyckyb0e17772010-09-05 09:00:32 +0000826 Function *DeleteF = NewF.getFunc();
827 NewF.release();
Nick Lewycky468ee0a2011-01-28 08:43:14 +0000828 mergeTwoFunctions(OldF.getFunc(), DeleteF);
Nick Lewyckyb0104e12010-09-05 08:22:49 +0000829 return true;
Nick Lewyckybe04fde2010-08-08 05:04:23 +0000830}
Nick Lewycky579a0242008-11-02 05:52:50 +0000831
Nick Lewycky468ee0a2011-01-28 08:43:14 +0000832// Remove a function from FnSet. If it was already in FnSet, add it to Deferred
833// so that we'll look at it in the next round.
834void MergeFunctions::remove(Function *F) {
Nick Lewycky3ba974a2011-02-09 06:32:02 +0000835 // We need to make sure we remove F, not a function "equal" to F per the
836 // function equality comparator.
837 //
838 // The special "lookup only" ComparableFunction bypasses the expensive
839 // function comparison in favour of a pointer comparison on the underlying
840 // Function*'s.
841 ComparableFunction CF = ComparableFunction(F, ComparableFunction::LookupOnly);
Nick Lewyckyabd6c752011-01-02 02:46:33 +0000842 if (FnSet.erase(CF)) {
Nick Lewycky3ba974a2011-02-09 06:32:02 +0000843 DEBUG(dbgs() << "Removed " << F->getName() << " from set and deferred it.\n");
Nick Lewyckyabd6c752011-01-02 02:46:33 +0000844 Deferred.push_back(F);
Nick Lewyckyf53de862010-08-31 05:53:05 +0000845 }
Nick Lewyckyabd6c752011-01-02 02:46:33 +0000846}
Nick Lewyckyb0104e12010-09-05 08:22:49 +0000847
Nick Lewycky468ee0a2011-01-28 08:43:14 +0000848// For each instruction used by the value, remove() the function that contains
849// the instruction. This should happen right before a call to RAUW.
850void MergeFunctions::removeUsers(Value *V) {
Nick Lewyckyd081b042011-01-02 19:16:44 +0000851 std::vector<Value *> Worklist;
852 Worklist.push_back(V);
853 while (!Worklist.empty()) {
854 Value *V = Worklist.back();
855 Worklist.pop_back();
856
857 for (Value::use_iterator UI = V->use_begin(), UE = V->use_end();
858 UI != UE; ++UI) {
859 Use &U = UI.getUse();
860 if (Instruction *I = dyn_cast<Instruction>(U.getUser())) {
Nick Lewycky468ee0a2011-01-28 08:43:14 +0000861 remove(I->getParent()->getParent());
Nick Lewyckyd081b042011-01-02 19:16:44 +0000862 } else if (isa<GlobalValue>(U.getUser())) {
Nick Lewyckye8f81392011-01-15 10:16:23 +0000863 // do nothing
Nick Lewyckyd081b042011-01-02 19:16:44 +0000864 } else if (Constant *C = dyn_cast<Constant>(U.getUser())) {
Nick Lewyckye8f81392011-01-15 10:16:23 +0000865 for (Value::use_iterator CUI = C->use_begin(), CUE = C->use_end();
866 CUI != CUE; ++CUI)
Nick Lewyckyd081b042011-01-02 19:16:44 +0000867 Worklist.push_back(*CUI);
868 }
Nick Lewyckyb0104e12010-09-05 08:22:49 +0000869 }
Nick Lewyckyf53de862010-08-31 05:53:05 +0000870 }
Nick Lewyckyb0104e12010-09-05 08:22:49 +0000871}