blob: 3a287e0f21852b7c09cfeed6df3a4ec75089ecf5 [file] [log] [blame]
Nick Lewyckyd01d42e2008-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 Lewyckyd01d42e2008-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 Lewyckyd3c6dfe2010-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 Lewyckyd01d42e2008-11-02 05:52:50 +000023//
24//===----------------------------------------------------------------------===//
25//
26// Future work:
27//
Nick Lewyckyd01d42e2008-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 Lewyckyfbd27572010-08-08 05:04:23 +000032// and call, this is irrelevant, and we'd like to fold such functions.
Nick Lewyckyd01d42e2008-11-02 05:52:50 +000033//
Nick Lewyckyf52bd9c2010-08-02 05:23:03 +000034// * switch from n^2 pair-wise comparisons to an n-way comparison for each
35// bucket.
Nick Lewyckyd3c6dfe2010-05-13 05:48:45 +000036//
Nick Lewyckyfbd27572010-08-08 05:04:23 +000037// * be smarter about bitcasts.
Nick Lewyckyd3c6dfe2010-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 Lewyckyfbd27572010-08-08 05:04:23 +000042// other doesn't. We should learn to look through bitcasts.
Nick Lewyckyd3c6dfe2010-05-13 05:48:45 +000043//
Nick Lewyckyd01d42e2008-11-02 05:52:50 +000044//===----------------------------------------------------------------------===//
45
Nick Lewyckyd01d42e2008-11-02 05:52:50 +000046#include "llvm/Transforms/IPO.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000047#include "llvm/ADT/DenseSet.h"
48#include "llvm/ADT/FoldingSet.h"
49#include "llvm/ADT/STLExtras.h"
50#include "llvm/ADT/SmallSet.h"
51#include "llvm/ADT/Statistic.h"
Chandler Carruth219b89b2014-03-04 11:01:28 +000052#include "llvm/IR/CallSite.h"
Chandler Carruth9fb823b2013-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"
Chandler Carruth4220e9c2014-03-04 11:17:44 +000061#include "llvm/IR/ValueHandle.h"
Nick Lewyckyd01d42e2008-11-02 05:52:50 +000062#include "llvm/Pass.h"
Nick Lewyckyd01d42e2008-11-02 05:52:50 +000063#include "llvm/Support/Debug.h"
Torok Edwin56d06592009-07-11 20:10:48 +000064#include "llvm/Support/ErrorHandling.h"
Daniel Dunbar0dd5e1e2009-07-25 00:23:56 +000065#include "llvm/Support/raw_ostream.h"
Nick Lewycky68984ed2010-08-31 08:29:37 +000066#include <vector>
Nick Lewyckyd01d42e2008-11-02 05:52:50 +000067using namespace llvm;
68
Chandler Carruth964daaa2014-04-22 02:55:47 +000069#define DEBUG_TYPE "mergefunc"
70
Nick Lewyckyd01d42e2008-11-02 05:52:50 +000071STATISTIC(NumFunctionsMerged, "Number of functions merged");
Nick Lewycky71972d42010-09-07 01:42:10 +000072STATISTIC(NumThunksWritten, "Number of thunks generated");
Nick Lewyckyf1cec162011-01-25 08:56:50 +000073STATISTIC(NumAliasesWritten, "Number of aliases generated");
Nick Lewycky71972d42010-09-07 01:42:10 +000074STATISTIC(NumDoubleWeak, "Number of new functions created");
Nick Lewyckyd01d42e2008-11-02 05:52:50 +000075
Benjamin Kramer630e6e12013-04-19 23:06:44 +000076/// Returns the type id for a type to be hashed. We turn pointer types into
77/// integers here because the actual compare logic below considers pointers and
78/// integers of the same size as equal.
79static Type::TypeID getTypeIDForHash(Type *Ty) {
80 if (Ty->isPointerTy())
81 return Type::IntegerTyID;
82 return Ty->getTypeID();
83}
84
Nick Lewyckycfb284c2011-01-28 08:43:14 +000085/// Creates a hash-code for the function which is the same for any two
86/// functions that will compare equal, without looking at the instructions
87/// inside the function.
88static unsigned profileFunction(const Function *F) {
Chris Lattner229907c2011-07-18 04:54:35 +000089 FunctionType *FTy = F->getFunctionType();
Nick Lewyckyfbd27572010-08-08 05:04:23 +000090
Nick Lewycky00959372010-09-05 08:22:49 +000091 FoldingSetNodeID ID;
92 ID.AddInteger(F->size());
93 ID.AddInteger(F->getCallingConv());
94 ID.AddBoolean(F->hasGC());
95 ID.AddBoolean(FTy->isVarArg());
Benjamin Kramer630e6e12013-04-19 23:06:44 +000096 ID.AddInteger(getTypeIDForHash(FTy->getReturnType()));
Nick Lewycky00959372010-09-05 08:22:49 +000097 for (unsigned i = 0, e = FTy->getNumParams(); i != e; ++i)
Benjamin Kramer630e6e12013-04-19 23:06:44 +000098 ID.AddInteger(getTypeIDForHash(FTy->getParamType(i)));
Nick Lewycky00959372010-09-05 08:22:49 +000099 return ID.ComputeHash();
Nick Lewyckyd01d42e2008-11-02 05:52:50 +0000100}
101
Nick Lewycky71972d42010-09-07 01:42:10 +0000102namespace {
103
Nick Lewyckyaaf40122011-01-28 08:19:00 +0000104/// ComparableFunction - A struct that pairs together functions with a
Micah Villmowcdfe20b2012-10-08 16:38:25 +0000105/// DataLayout so that we can keep them together as elements in the DenseSet.
Nick Lewycky00959372010-09-05 08:22:49 +0000106class ComparableFunction {
107public:
Nick Lewyckyf3a07ec2010-09-05 09:00:32 +0000108 static const ComparableFunction EmptyKey;
109 static const ComparableFunction TombstoneKey;
Micah Villmowcdfe20b2012-10-08 16:38:25 +0000110 static DataLayout * const LookupOnly;
Nick Lewyckyf3a07ec2010-09-05 09:00:32 +0000111
Rafael Espindolaaeff8a92014-02-24 23:12:18 +0000112 ComparableFunction(Function *Func, const DataLayout *DL)
Rafael Espindola37dc9e12014-02-21 00:06:31 +0000113 : Func(Func), Hash(profileFunction(Func)), DL(DL) {}
Nick Lewycky00959372010-09-05 08:22:49 +0000114
Nick Lewyckyf3a07ec2010-09-05 09:00:32 +0000115 Function *getFunc() const { return Func; }
116 unsigned getHash() const { return Hash; }
Rafael Espindolaaeff8a92014-02-24 23:12:18 +0000117 const DataLayout *getDataLayout() const { return DL; }
Nick Lewyckyf3a07ec2010-09-05 09:00:32 +0000118
119 // Drops AssertingVH reference to the function. Outside of debug mode, this
120 // does nothing.
121 void release() {
122 assert(Func &&
123 "Attempted to release function twice, or release empty/tombstone!");
Craig Topperf40110f2014-04-25 05:29:35 +0000124 Func = nullptr;
Nick Lewyckyf3a07ec2010-09-05 09:00:32 +0000125 }
126
127private:
128 explicit ComparableFunction(unsigned Hash)
Craig Topperf40110f2014-04-25 05:29:35 +0000129 : Func(nullptr), Hash(Hash), DL(nullptr) {}
Nick Lewyckyf3a07ec2010-09-05 09:00:32 +0000130
131 AssertingVH<Function> Func;
132 unsigned Hash;
Rafael Espindolaaeff8a92014-02-24 23:12:18 +0000133 const DataLayout *DL;
Nick Lewycky00959372010-09-05 08:22:49 +0000134};
135
Nick Lewyckyf3a07ec2010-09-05 09:00:32 +0000136const ComparableFunction ComparableFunction::EmptyKey = ComparableFunction(0);
137const ComparableFunction ComparableFunction::TombstoneKey =
138 ComparableFunction(1);
Micah Villmowcdfe20b2012-10-08 16:38:25 +0000139DataLayout *const ComparableFunction::LookupOnly = (DataLayout*)(-1);
Nick Lewyckyf3a07ec2010-09-05 09:00:32 +0000140
Nick Lewycky71972d42010-09-07 01:42:10 +0000141}
Nick Lewyckyf3a07ec2010-09-05 09:00:32 +0000142
143namespace llvm {
144 template <>
145 struct DenseMapInfo<ComparableFunction> {
146 static ComparableFunction getEmptyKey() {
147 return ComparableFunction::EmptyKey;
148 }
149 static ComparableFunction getTombstoneKey() {
150 return ComparableFunction::TombstoneKey;
151 }
152 static unsigned getHashValue(const ComparableFunction &CF) {
153 return CF.getHash();
154 }
155 static bool isEqual(const ComparableFunction &LHS,
156 const ComparableFunction &RHS);
157 };
158}
159
160namespace {
Nick Lewycky00959372010-09-05 08:22:49 +0000161
Nick Lewyckyfbd27572010-08-08 05:04:23 +0000162/// FunctionComparator - Compares two functions to determine whether or not
Micah Villmowcdfe20b2012-10-08 16:38:25 +0000163/// they will generate machine code with the same behaviour. DataLayout is
Nick Lewyckyfbd27572010-08-08 05:04:23 +0000164/// used if available. The comparator always fails conservatively (erring on the
165/// side of claiming that two functions are different).
Nick Lewyckyf52bd9c2010-08-02 05:23:03 +0000166class FunctionComparator {
167public:
Rafael Espindola37dc9e12014-02-21 00:06:31 +0000168 FunctionComparator(const DataLayout *DL, const Function *F1,
Nick Lewycky0464d1d2010-08-31 05:53:05 +0000169 const Function *F2)
Rafael Espindola37dc9e12014-02-21 00:06:31 +0000170 : F1(F1), F2(F2), DL(DL) {}
Nick Lewyckye04dc222009-06-12 08:04:51 +0000171
Nick Lewyckycfb284c2011-01-28 08:43:14 +0000172 /// Test whether the two functions have equivalent behaviour.
173 bool compare();
Nick Lewyckyf52bd9c2010-08-02 05:23:03 +0000174
175private:
Nick Lewyckycfb284c2011-01-28 08:43:14 +0000176 /// Test whether two basic blocks have equivalent behaviour.
177 bool compare(const BasicBlock *BB1, const BasicBlock *BB2);
Nick Lewyckyf52bd9c2010-08-02 05:23:03 +0000178
Stepan Dyatkovskiyd1031302014-05-07 09:05:10 +0000179 /// Constants comparison.
180 /// Its analog to lexicographical comparison between hypothetical numbers
181 /// of next format:
182 /// <bitcastability-trait><raw-bit-contents>
183 ///
184 /// 1. Bitcastability.
185 /// Check whether L's type could be losslessly bitcasted to R's type.
186 /// On this stage method, in case when lossless bitcast is not possible
187 /// method returns -1 or 1, thus also defining which type is greater in
188 /// context of bitcastability.
189 /// Stage 0: If types are equal in terms of cmpTypes, then we can go straight
190 /// to the contents comparison.
191 /// If types differ, remember types comparison result and check
192 /// whether we still can bitcast types.
193 /// Stage 1: Types that satisfies isFirstClassType conditions are always
194 /// greater then others.
195 /// Stage 2: Vector is greater then non-vector.
196 /// If both types are vectors, then vector with greater bitwidth is
197 /// greater.
198 /// If both types are vectors with the same bitwidth, then types
199 /// are bitcastable, and we can skip other stages, and go to contents
200 /// comparison.
201 /// Stage 3: Pointer types are greater than non-pointers. If both types are
202 /// pointers of the same address space - go to contents comparison.
203 /// Different address spaces: pointer with greater address space is
204 /// greater.
205 /// Stage 4: Types are neither vectors, nor pointers. And they differ.
206 /// We don't know how to bitcast them. So, we better don't do it,
207 /// and return types comparison result (so it determines the
208 /// relationship among constants we don't know how to bitcast).
209 ///
210 /// Just for clearance, let's see how the set of constants could look
211 /// on single dimension axis:
212 ///
213 /// [NFCT], [FCT, "others"], [FCT, pointers], [FCT, vectors]
214 /// Where: NFCT - Not a FirstClassType
215 /// FCT - FirstClassTyp:
216 ///
217 /// 2. Compare raw contents.
218 /// It ignores types on this stage and only compares bits from L and R.
219 /// Returns 0, if L and R has equivalent contents.
220 /// -1 or 1 if values are different.
221 /// Pretty trivial:
222 /// 2.1. If contents are numbers, compare numbers.
223 /// Ints with greater bitwidth are greater. Ints with same bitwidths
224 /// compared by their contents.
225 /// 2.2. "And so on". Just to avoid discrepancies with comments
226 /// perhaps it would be better to read the implementation itself.
227 /// 3. And again about overall picture. Let's look back at how the ordered set
228 /// of constants will look like:
229 /// [NFCT], [FCT, "others"], [FCT, pointers], [FCT, vectors]
230 ///
231 /// Now look, what could be inside [FCT, "others"], for example:
232 /// [FCT, "others"] =
233 /// [
234 /// [double 0.1], [double 1.23],
235 /// [i32 1], [i32 2],
236 /// { double 1.0 }, ; StructTyID, NumElements = 1
237 /// { i32 1 }, ; StructTyID, NumElements = 1
238 /// { double 1, i32 1 }, ; StructTyID, NumElements = 2
239 /// { i32 1, double 1 } ; StructTyID, NumElements = 2
240 /// ]
241 ///
242 /// Let's explain the order. Float numbers will be less than integers, just
243 /// because of cmpType terms: FloatTyID < IntegerTyID.
244 /// Floats (with same fltSemantics) are sorted according to their value.
245 /// Then you can see integers, and they are, like a floats,
246 /// could be easy sorted among each others.
247 /// The structures. Structures are grouped at the tail, again because of their
248 /// TypeID: StructTyID > IntegerTyID > FloatTyID.
249 /// Structures with greater number of elements are greater. Structures with
250 /// greater elements going first are greater.
251 /// The same logic with vectors, arrays and other possible complex types.
252 ///
253 /// Bitcastable constants.
254 /// Let's assume, that some constant, belongs to some group of
255 /// "so-called-equal" values with different types, and at the same time
256 /// belongs to another group of constants with equal types
257 /// and "really" equal values.
258 ///
259 /// Now, prove that this is impossible:
260 ///
261 /// If constant A with type TyA is bitcastable to B with type TyB, then:
262 /// 1. All constants with equal types to TyA, are bitcastable to B. Since
263 /// those should be vectors (if TyA is vector), pointers
264 /// (if TyA is pointer), or else (if TyA equal to TyB), those types should
265 /// be equal to TyB.
266 /// 2. All constants with non-equal, but bitcastable types to TyA, are
267 /// bitcastable to B.
268 /// Once again, just because we allow it to vectors and pointers only.
269 /// This statement could be expanded as below:
270 /// 2.1. All vectors with equal bitwidth to vector A, has equal bitwidth to
271 /// vector B, and thus bitcastable to B as well.
272 /// 2.2. All pointers of the same address space, no matter what they point to,
273 /// bitcastable. So if C is pointer, it could be bitcasted to A and to B.
274 /// So any constant equal or bitcastable to A is equal or bitcastable to B.
275 /// QED.
276 ///
277 /// In another words, for pointers and vectors, we ignore top-level type and
278 /// look at their particular properties (bit-width for vectors, and
279 /// address space for pointers).
280 /// If these properties are equal - compare their contents.
281 int cmpConstants(const Constant *L, const Constant *R);
282
Nick Lewyckycfb284c2011-01-28 08:43:14 +0000283 /// Assign or look up previously assigned numbers for the two values, and
284 /// return whether the numbers are equal. Numbers are assigned in the order
285 /// visited.
Stepan Dyatkovskiycfd641f2014-05-07 11:11:39 +0000286 /// Comparison order:
287 /// Stage 0: Value that is function itself is always greater then others.
288 /// If left and right values are references to their functions, then
289 /// they are equal.
290 /// Stage 1: Constants are greater than non-constants.
291 /// If both left and right are constants, then the result of
292 /// cmpConstants is used as cmpValues result.
293 /// Stage 2: InlineAsm instances are greater than others. If both left and
294 /// right are InlineAsm instances, InlineAsm* pointers casted to
295 /// integers and compared as numbers.
296 /// Stage 3: For all other cases we compare order we meet these values in
297 /// their functions. If right value was met first during scanning,
298 /// then left value is greater.
299 /// In another words, we compare serial numbers, for more details
300 /// see comments for sn_mapL and sn_mapR.
301 int cmpValues(const Value *L, const Value *R);
302
303 bool enumerate(const Value *V1, const Value *V2) {
304 return cmpValues(V1, V2) == 0;
305 }
Nick Lewyckyf52bd9c2010-08-02 05:23:03 +0000306
Nick Lewyckycfb284c2011-01-28 08:43:14 +0000307 /// Compare two Instructions for equivalence, similar to
308 /// Instruction::isSameOperationAs but with modifications to the type
Nick Lewyckyfbd27572010-08-08 05:04:23 +0000309 /// comparison.
Nick Lewyckyf52bd9c2010-08-02 05:23:03 +0000310 bool isEquivalentOperation(const Instruction *I1,
311 const Instruction *I2) const;
312
Nick Lewyckycfb284c2011-01-28 08:43:14 +0000313 /// Compare two GEPs for equivalent pointer arithmetic.
Nick Lewyckyf52bd9c2010-08-02 05:23:03 +0000314 bool isEquivalentGEP(const GEPOperator *GEP1, const GEPOperator *GEP2);
315 bool isEquivalentGEP(const GetElementPtrInst *GEP1,
Nick Lewyckyfbd27572010-08-08 05:04:23 +0000316 const GetElementPtrInst *GEP2) {
Nick Lewyckyf52bd9c2010-08-02 05:23:03 +0000317 return isEquivalentGEP(cast<GEPOperator>(GEP1), cast<GEPOperator>(GEP2));
318 }
319
Stepan Dyatkovskiyd8eb0bc2014-03-13 11:54:50 +0000320 /// cmpType - compares two types,
321 /// defines total ordering among the types set.
322 ///
323 /// Return values:
324 /// 0 if types are equal,
325 /// -1 if Left is less than Right,
326 /// +1 if Left is greater than Right.
327 ///
328 /// Description:
329 /// Comparison is broken onto stages. Like in lexicographical comparison
330 /// stage coming first has higher priority.
331 /// On each explanation stage keep in mind total ordering properties.
332 ///
Stepan Dyatkovskiy90c44362014-03-14 08:17:19 +0000333 /// 0. Before comparison we coerce pointer types of 0 address space to
334 /// integer.
Stepan Dyatkovskiyd8eb0bc2014-03-13 11:54:50 +0000335 /// We also don't bother with same type at left and right, so
336 /// just return 0 in this case.
337 ///
338 /// 1. If types are of different kind (different type IDs).
339 /// Return result of type IDs comparison, treating them as numbers.
340 /// 2. If types are vectors or integers, compare Type* values as numbers.
341 /// 3. Types has same ID, so check whether they belongs to the next group:
342 /// * Void
343 /// * Float
344 /// * Double
345 /// * X86_FP80
346 /// * FP128
347 /// * PPC_FP128
348 /// * Label
349 /// * Metadata
350 /// If so - return 0, yes - we can treat these types as equal only because
351 /// their IDs are same.
352 /// 4. If Left and Right are pointers, return result of address space
353 /// comparison (numbers comparison). We can treat pointer types of same
354 /// address space as equal.
355 /// 5. If types are complex.
356 /// Then both Left and Right are to be expanded and their element types will
357 /// be checked with the same way. If we get Res != 0 on some stage, return it.
358 /// Otherwise return 0.
359 /// 6. For all other cases put llvm_unreachable.
360 int cmpType(Type *TyL, Type *TyR) const;
361
362 bool isEquivalentType(Type *Ty1, Type *Ty2) const {
363 return cmpType(Ty1, Ty2) == 0;
364 }
365
366 int cmpNumbers(uint64_t L, uint64_t R) const;
Nick Lewyckyf52bd9c2010-08-02 05:23:03 +0000367
Stepan Dyatkovskiyd1031302014-05-07 09:05:10 +0000368 int cmpAPInt(const APInt &L, const APInt &R) const;
369 int cmpAPFloat(const APFloat &L, const APFloat &R) const;
370
Nick Lewyckyf52bd9c2010-08-02 05:23:03 +0000371 // The two functions undergoing comparison.
Nick Lewycky0464d1d2010-08-31 05:53:05 +0000372 const Function *F1, *F2;
Nick Lewyckyf52bd9c2010-08-02 05:23:03 +0000373
Rafael Espindola37dc9e12014-02-21 00:06:31 +0000374 const DataLayout *DL;
Nick Lewyckyf52bd9c2010-08-02 05:23:03 +0000375
Stepan Dyatkovskiycfd641f2014-05-07 11:11:39 +0000376 /// Assign serial numbers to values from left function, and values from
377 /// right function.
378 /// Explanation:
379 /// Being comparing functions we need to compare values we meet at left and
380 /// right sides.
381 /// Its easy to sort things out for external values. It just should be
382 /// the same value at left and right.
383 /// But for local values (those were introduced inside function body)
384 /// we have to ensure they were introduced at exactly the same place,
385 /// and plays the same role.
386 /// Let's assign serial number to each value when we meet it first time.
387 /// Values that were met at same place will be with same serial numbers.
388 /// In this case it would be good to explain few points about values assigned
389 /// to BBs and other ways of implementation (see below).
390 ///
391 /// 1. Safety of BB reordering.
392 /// It's safe to change the order of BasicBlocks in function.
393 /// Relationship with other functions and serial numbering will not be
394 /// changed in this case.
395 /// As follows from FunctionComparator::compare(), we do CFG walk: we start
396 /// from the entry, and then take each terminator. So it doesn't matter how in
397 /// fact BBs are ordered in function. And since cmpValues are called during
398 /// this walk, the numbering depends only on how BBs located inside the CFG.
399 /// So the answer is - yes. We will get the same numbering.
400 ///
401 /// 2. Impossibility to use dominance properties of values.
402 /// If we compare two instruction operands: first is usage of local
403 /// variable AL from function FL, and second is usage of local variable AR
404 /// from FR, we could compare their origins and check whether they are
405 /// defined at the same place.
406 /// But, we are still not able to compare operands of PHI nodes, since those
407 /// could be operands from further BBs we didn't scan yet.
408 /// So it's impossible to use dominance properties in general.
409 DenseMap<const Value*, int> sn_mapL, sn_mapR;
Nick Lewyckyf52bd9c2010-08-02 05:23:03 +0000410};
Nick Lewycky564fcca2011-01-28 07:36:21 +0000411
Nick Lewyckyf52bd9c2010-08-02 05:23:03 +0000412}
413
Stepan Dyatkovskiyd8eb0bc2014-03-13 11:54:50 +0000414int FunctionComparator::cmpNumbers(uint64_t L, uint64_t R) const {
415 if (L < R) return -1;
416 if (L > R) return 1;
417 return 0;
418}
Stepan Dyatkovskiyabb85052013-11-26 16:11:03 +0000419
Stepan Dyatkovskiyd1031302014-05-07 09:05:10 +0000420int FunctionComparator::cmpAPInt(const APInt &L, const APInt &R) const {
421 if (int Res = cmpNumbers(L.getBitWidth(), R.getBitWidth()))
422 return Res;
423 if (L.ugt(R)) return 1;
424 if (R.ugt(L)) return -1;
425 return 0;
426}
427
428int FunctionComparator::cmpAPFloat(const APFloat &L, const APFloat &R) const {
429 if (int Res = cmpNumbers((uint64_t)&L.getSemantics(),
430 (uint64_t)&R.getSemantics()))
431 return Res;
432 return cmpAPInt(L.bitcastToAPInt(), R.bitcastToAPInt());
433}
434
435/// Constants comparison:
436/// 1. Check whether type of L constant could be losslessly bitcasted to R
437/// type.
438/// 2. Compare constant contents.
439/// For more details see declaration comments.
440int FunctionComparator::cmpConstants(const Constant *L, const Constant *R) {
441
442 Type *TyL = L->getType();
443 Type *TyR = R->getType();
444
445 // Check whether types are bitcastable. This part is just re-factored
446 // Type::canLosslesslyBitCastTo method, but instead of returning true/false,
447 // we also pack into result which type is "less" for us.
448 int TypesRes = cmpType(TyL, TyR);
449 if (TypesRes != 0) {
450 // Types are different, but check whether we can bitcast them.
451 if (!TyL->isFirstClassType()) {
452 if (TyR->isFirstClassType())
453 return -1;
454 // Neither TyL nor TyR are values of first class type. Return the result
455 // of comparing the types
456 return TypesRes;
457 }
458 if (!TyR->isFirstClassType()) {
459 if (TyL->isFirstClassType())
460 return 1;
461 return TypesRes;
462 }
463
464 // Vector -> Vector conversions are always lossless if the two vector types
465 // have the same size, otherwise not.
466 unsigned TyLWidth = 0;
467 unsigned TyRWidth = 0;
468
469 if (const VectorType *VecTyL = dyn_cast<VectorType>(TyL))
470 TyLWidth = VecTyL->getBitWidth();
471 if (const VectorType *VecTyR = dyn_cast<VectorType>(TyR))
472 TyRWidth = VecTyR->getBitWidth();
473
474 if (TyLWidth != TyRWidth)
475 return cmpNumbers(TyLWidth, TyRWidth);
476
477 // Zero bit-width means neither TyL nor TyR are vectors.
478 if (!TyLWidth) {
479 PointerType *PTyL = dyn_cast<PointerType>(TyL);
480 PointerType *PTyR = dyn_cast<PointerType>(TyR);
481 if (PTyL && PTyR) {
482 unsigned AddrSpaceL = PTyL->getAddressSpace();
483 unsigned AddrSpaceR = PTyR->getAddressSpace();
484 if (int Res = cmpNumbers(AddrSpaceL, AddrSpaceR))
485 return Res;
486 }
487 if (PTyL)
488 return 1;
489 if (PTyR)
490 return -1;
491
492 // TyL and TyR aren't vectors, nor pointers. We don't know how to
493 // bitcast them.
494 return TypesRes;
495 }
496 }
497
498 // OK, types are bitcastable, now check constant contents.
499
500 if (L->isNullValue() && R->isNullValue())
501 return TypesRes;
502 if (L->isNullValue() && !R->isNullValue())
503 return 1;
504 if (!L->isNullValue() && R->isNullValue())
505 return -1;
506
507 if (int Res = cmpNumbers(L->getValueID(), R->getValueID()))
508 return Res;
509
510 switch (L->getValueID()) {
511 case Value::UndefValueVal: return TypesRes;
512 case Value::ConstantIntVal: {
513 const APInt &LInt = cast<ConstantInt>(L)->getValue();
514 const APInt &RInt = cast<ConstantInt>(R)->getValue();
515 return cmpAPInt(LInt, RInt);
516 }
517 case Value::ConstantFPVal: {
518 const APFloat &LAPF = cast<ConstantFP>(L)->getValueAPF();
519 const APFloat &RAPF = cast<ConstantFP>(R)->getValueAPF();
520 return cmpAPFloat(LAPF, RAPF);
521 }
522 case Value::ConstantArrayVal: {
523 const ConstantArray *LA = cast<ConstantArray>(L);
524 const ConstantArray *RA = cast<ConstantArray>(R);
525 uint64_t NumElementsL = cast<ArrayType>(TyL)->getNumElements();
526 uint64_t NumElementsR = cast<ArrayType>(TyR)->getNumElements();
527 if (int Res = cmpNumbers(NumElementsL, NumElementsR))
528 return Res;
529 for (uint64_t i = 0; i < NumElementsL; ++i) {
530 if (int Res = cmpConstants(cast<Constant>(LA->getOperand(i)),
531 cast<Constant>(RA->getOperand(i))))
532 return Res;
533 }
534 return 0;
535 }
536 case Value::ConstantStructVal: {
537 const ConstantStruct *LS = cast<ConstantStruct>(L);
538 const ConstantStruct *RS = cast<ConstantStruct>(R);
539 unsigned NumElementsL = cast<StructType>(TyL)->getNumElements();
540 unsigned NumElementsR = cast<StructType>(TyR)->getNumElements();
541 if (int Res = cmpNumbers(NumElementsL, NumElementsR))
542 return Res;
543 for (unsigned i = 0; i != NumElementsL; ++i) {
544 if (int Res = cmpConstants(cast<Constant>(LS->getOperand(i)),
545 cast<Constant>(RS->getOperand(i))))
546 return Res;
547 }
548 return 0;
549 }
550 case Value::ConstantVectorVal: {
551 const ConstantVector *LV = cast<ConstantVector>(L);
552 const ConstantVector *RV = cast<ConstantVector>(R);
553 unsigned NumElementsL = cast<VectorType>(TyL)->getNumElements();
554 unsigned NumElementsR = cast<VectorType>(TyR)->getNumElements();
555 if (int Res = cmpNumbers(NumElementsL, NumElementsR))
556 return Res;
557 for (uint64_t i = 0; i < NumElementsL; ++i) {
558 if (int Res = cmpConstants(cast<Constant>(LV->getOperand(i)),
559 cast<Constant>(RV->getOperand(i))))
560 return Res;
561 }
562 return 0;
563 }
564 case Value::ConstantExprVal: {
565 const ConstantExpr *LE = cast<ConstantExpr>(L);
566 const ConstantExpr *RE = cast<ConstantExpr>(R);
567 unsigned NumOperandsL = LE->getNumOperands();
568 unsigned NumOperandsR = RE->getNumOperands();
569 if (int Res = cmpNumbers(NumOperandsL, NumOperandsR))
570 return Res;
571 for (unsigned i = 0; i < NumOperandsL; ++i) {
572 if (int Res = cmpConstants(cast<Constant>(LE->getOperand(i)),
573 cast<Constant>(RE->getOperand(i))))
574 return Res;
575 }
576 return 0;
577 }
578 case Value::FunctionVal:
579 case Value::GlobalVariableVal:
580 case Value::GlobalAliasVal:
581 default: // Unknown constant, cast L and R pointers to numbers and compare.
582 return cmpNumbers((uint64_t)L, (uint64_t)R);
583 }
584}
585
Stepan Dyatkovskiyd8eb0bc2014-03-13 11:54:50 +0000586/// cmpType - compares two types,
587/// defines total ordering among the types set.
588/// See method declaration comments for more details.
589int FunctionComparator::cmpType(Type *TyL, Type *TyR) const {
590
Stepan Dyatkovskiya53cf972014-03-14 08:48:52 +0000591 PointerType *PTyL = dyn_cast<PointerType>(TyL);
592 PointerType *PTyR = dyn_cast<PointerType>(TyR);
Stepan Dyatkovskiyabb85052013-11-26 16:11:03 +0000593
Rafael Espindola37dc9e12014-02-21 00:06:31 +0000594 if (DL) {
Stepan Dyatkovskiya53cf972014-03-14 08:48:52 +0000595 if (PTyL && PTyL->getAddressSpace() == 0) TyL = DL->getIntPtrType(TyL);
596 if (PTyR && PTyR->getAddressSpace() == 0) TyR = DL->getIntPtrType(TyR);
Stepan Dyatkovskiyabb85052013-11-26 16:11:03 +0000597 }
598
Stepan Dyatkovskiyd8eb0bc2014-03-13 11:54:50 +0000599 if (TyL == TyR)
600 return 0;
Matt Arsenault5bcefab2013-11-10 01:44:37 +0000601
Stepan Dyatkovskiyd8eb0bc2014-03-13 11:54:50 +0000602 if (int Res = cmpNumbers(TyL->getTypeID(), TyR->getTypeID()))
603 return Res;
Nick Lewyckye04dc222009-06-12 08:04:51 +0000604
Stepan Dyatkovskiyd8eb0bc2014-03-13 11:54:50 +0000605 switch (TyL->getTypeID()) {
Nick Lewyckyd3c6dfe2010-05-13 05:48:45 +0000606 default:
607 llvm_unreachable("Unknown type!");
Duncan Sands408bb192010-07-07 07:48:00 +0000608 // Fall through in Release mode.
Nick Lewyckyd3c6dfe2010-05-13 05:48:45 +0000609 case Type::IntegerTyID:
Nick Lewyckyfb622f92011-01-26 08:50:18 +0000610 case Type::VectorTyID:
Stepan Dyatkovskiyd8eb0bc2014-03-13 11:54:50 +0000611 // TyL == TyR would have returned true earlier.
612 return cmpNumbers((uint64_t)TyL, (uint64_t)TyR);
Nick Lewyckyd3c6dfe2010-05-13 05:48:45 +0000613
Nick Lewyckye04dc222009-06-12 08:04:51 +0000614 case Type::VoidTyID:
615 case Type::FloatTyID:
616 case Type::DoubleTyID:
617 case Type::X86_FP80TyID:
618 case Type::FP128TyID:
619 case Type::PPC_FP128TyID:
620 case Type::LabelTyID:
621 case Type::MetadataTyID:
Stepan Dyatkovskiyd8eb0bc2014-03-13 11:54:50 +0000622 return 0;
Nick Lewyckye04dc222009-06-12 08:04:51 +0000623
Nick Lewyckye04dc222009-06-12 08:04:51 +0000624 case Type::PointerTyID: {
Stepan Dyatkovskiya53cf972014-03-14 08:48:52 +0000625 assert(PTyL && PTyR && "Both types must be pointers here.");
626 return cmpNumbers(PTyL->getAddressSpace(), PTyR->getAddressSpace());
Nick Lewyckye04dc222009-06-12 08:04:51 +0000627 }
628
629 case Type::StructTyID: {
Stepan Dyatkovskiya53cf972014-03-14 08:48:52 +0000630 StructType *STyL = cast<StructType>(TyL);
631 StructType *STyR = cast<StructType>(TyR);
632 if (STyL->getNumElements() != STyR->getNumElements())
633 return cmpNumbers(STyL->getNumElements(), STyR->getNumElements());
Nick Lewyckye04dc222009-06-12 08:04:51 +0000634
Stepan Dyatkovskiya53cf972014-03-14 08:48:52 +0000635 if (STyL->isPacked() != STyR->isPacked())
636 return cmpNumbers(STyL->isPacked(), STyR->isPacked());
Nick Lewyckye04dc222009-06-12 08:04:51 +0000637
Stepan Dyatkovskiya53cf972014-03-14 08:48:52 +0000638 for (unsigned i = 0, e = STyL->getNumElements(); i != e; ++i) {
639 if (int Res = cmpType(STyL->getElementType(i),
640 STyR->getElementType(i)))
Stepan Dyatkovskiyd8eb0bc2014-03-13 11:54:50 +0000641 return Res;
Nick Lewyckye04dc222009-06-12 08:04:51 +0000642 }
Stepan Dyatkovskiyd8eb0bc2014-03-13 11:54:50 +0000643 return 0;
Nick Lewyckye04dc222009-06-12 08:04:51 +0000644 }
645
646 case Type::FunctionTyID: {
Stepan Dyatkovskiya53cf972014-03-14 08:48:52 +0000647 FunctionType *FTyL = cast<FunctionType>(TyL);
648 FunctionType *FTyR = cast<FunctionType>(TyR);
649 if (FTyL->getNumParams() != FTyR->getNumParams())
650 return cmpNumbers(FTyL->getNumParams(), FTyR->getNumParams());
Nick Lewyckye04dc222009-06-12 08:04:51 +0000651
Stepan Dyatkovskiya53cf972014-03-14 08:48:52 +0000652 if (FTyL->isVarArg() != FTyR->isVarArg())
653 return cmpNumbers(FTyL->isVarArg(), FTyR->isVarArg());
Stepan Dyatkovskiyd8eb0bc2014-03-13 11:54:50 +0000654
Stepan Dyatkovskiya53cf972014-03-14 08:48:52 +0000655 if (int Res = cmpType(FTyL->getReturnType(), FTyR->getReturnType()))
Stepan Dyatkovskiyd8eb0bc2014-03-13 11:54:50 +0000656 return Res;
Nick Lewyckye04dc222009-06-12 08:04:51 +0000657
Stepan Dyatkovskiya53cf972014-03-14 08:48:52 +0000658 for (unsigned i = 0, e = FTyL->getNumParams(); i != e; ++i) {
659 if (int Res = cmpType(FTyL->getParamType(i), FTyR->getParamType(i)))
Stepan Dyatkovskiyd8eb0bc2014-03-13 11:54:50 +0000660 return Res;
Nick Lewyckye04dc222009-06-12 08:04:51 +0000661 }
Stepan Dyatkovskiyd8eb0bc2014-03-13 11:54:50 +0000662 return 0;
Nick Lewyckye04dc222009-06-12 08:04:51 +0000663 }
664
Nick Lewycky375efe32010-07-16 06:31:12 +0000665 case Type::ArrayTyID: {
Stepan Dyatkovskiya53cf972014-03-14 08:48:52 +0000666 ArrayType *ATyL = cast<ArrayType>(TyL);
667 ArrayType *ATyR = cast<ArrayType>(TyR);
668 if (ATyL->getNumElements() != ATyR->getNumElements())
669 return cmpNumbers(ATyL->getNumElements(), ATyR->getNumElements());
670 return cmpType(ATyL->getElementType(), ATyR->getElementType());
Nick Lewycky375efe32010-07-16 06:31:12 +0000671 }
Nick Lewyckye04dc222009-06-12 08:04:51 +0000672 }
673}
674
Nick Lewyckycfb284c2011-01-28 08:43:14 +0000675// Determine whether the two operations are the same except that pointer-to-A
676// and pointer-to-B are equivalent. This should be kept in sync with
677// Instruction::isSameOperationAs.
Nick Lewyckyf52bd9c2010-08-02 05:23:03 +0000678bool FunctionComparator::isEquivalentOperation(const Instruction *I1,
679 const Instruction *I2) const {
Nick Lewyckycb1a4c22011-02-06 05:04:00 +0000680 // Differences from Instruction::isSameOperationAs:
681 // * replace type comparison with calls to isEquivalentType.
682 // * we test for I->hasSameSubclassOptionalData (nuw/nsw/tail) at the top
683 // * because of the above, we don't test for the tail bit on calls later on
Nick Lewyckye04dc222009-06-12 08:04:51 +0000684 if (I1->getOpcode() != I2->getOpcode() ||
685 I1->getNumOperands() != I2->getNumOperands() ||
Dan Gohmanc8a27f22009-08-25 22:11:20 +0000686 !isEquivalentType(I1->getType(), I2->getType()) ||
687 !I1->hasSameSubclassOptionalData(I2))
Nick Lewyckye04dc222009-06-12 08:04:51 +0000688 return false;
689
690 // We have two instructions of identical opcode and #operands. Check to see
691 // if all operands are the same type
692 for (unsigned i = 0, e = I1->getNumOperands(); i != e; ++i)
693 if (!isEquivalentType(I1->getOperand(i)->getType(),
694 I2->getOperand(i)->getType()))
695 return false;
696
697 // Check special state that is a part of some instructions.
698 if (const LoadInst *LI = dyn_cast<LoadInst>(I1))
699 return LI->isVolatile() == cast<LoadInst>(I2)->isVolatile() &&
Eli Friedman211e3482011-08-15 22:16:46 +0000700 LI->getAlignment() == cast<LoadInst>(I2)->getAlignment() &&
701 LI->getOrdering() == cast<LoadInst>(I2)->getOrdering() &&
702 LI->getSynchScope() == cast<LoadInst>(I2)->getSynchScope();
Nick Lewyckye04dc222009-06-12 08:04:51 +0000703 if (const StoreInst *SI = dyn_cast<StoreInst>(I1))
704 return SI->isVolatile() == cast<StoreInst>(I2)->isVolatile() &&
Eli Friedman211e3482011-08-15 22:16:46 +0000705 SI->getAlignment() == cast<StoreInst>(I2)->getAlignment() &&
706 SI->getOrdering() == cast<StoreInst>(I2)->getOrdering() &&
707 SI->getSynchScope() == cast<StoreInst>(I2)->getSynchScope();
Nick Lewyckye04dc222009-06-12 08:04:51 +0000708 if (const CmpInst *CI = dyn_cast<CmpInst>(I1))
709 return CI->getPredicate() == cast<CmpInst>(I2)->getPredicate();
710 if (const CallInst *CI = dyn_cast<CallInst>(I1))
Nick Lewyckycb1a4c22011-02-06 05:04:00 +0000711 return CI->getCallingConv() == cast<CallInst>(I2)->getCallingConv() &&
Nick Lewycky91543442011-01-26 09:23:19 +0000712 CI->getAttributes() == cast<CallInst>(I2)->getAttributes();
Nick Lewyckye04dc222009-06-12 08:04:51 +0000713 if (const InvokeInst *CI = dyn_cast<InvokeInst>(I1))
714 return CI->getCallingConv() == cast<InvokeInst>(I2)->getCallingConv() &&
Nick Lewycky91543442011-01-26 09:23:19 +0000715 CI->getAttributes() == cast<InvokeInst>(I2)->getAttributes();
Eli Friedmanadec5872011-07-29 03:05:32 +0000716 if (const InsertValueInst *IVI = dyn_cast<InsertValueInst>(I1))
717 return IVI->getIndices() == cast<InsertValueInst>(I2)->getIndices();
718 if (const ExtractValueInst *EVI = dyn_cast<ExtractValueInst>(I1))
719 return EVI->getIndices() == cast<ExtractValueInst>(I2)->getIndices();
720 if (const FenceInst *FI = dyn_cast<FenceInst>(I1))
721 return FI->getOrdering() == cast<FenceInst>(I2)->getOrdering() &&
722 FI->getSynchScope() == cast<FenceInst>(I2)->getSynchScope();
723 if (const AtomicCmpXchgInst *CXI = dyn_cast<AtomicCmpXchgInst>(I1))
724 return CXI->isVolatile() == cast<AtomicCmpXchgInst>(I2)->isVolatile() &&
Tim Northovere94a5182014-03-11 10:48:52 +0000725 CXI->getSuccessOrdering() ==
726 cast<AtomicCmpXchgInst>(I2)->getSuccessOrdering() &&
727 CXI->getFailureOrdering() ==
728 cast<AtomicCmpXchgInst>(I2)->getFailureOrdering() &&
Eli Friedmanadec5872011-07-29 03:05:32 +0000729 CXI->getSynchScope() == cast<AtomicCmpXchgInst>(I2)->getSynchScope();
730 if (const AtomicRMWInst *RMWI = dyn_cast<AtomicRMWInst>(I1))
731 return RMWI->getOperation() == cast<AtomicRMWInst>(I2)->getOperation() &&
732 RMWI->isVolatile() == cast<AtomicRMWInst>(I2)->isVolatile() &&
733 RMWI->getOrdering() == cast<AtomicRMWInst>(I2)->getOrdering() &&
734 RMWI->getSynchScope() == cast<AtomicRMWInst>(I2)->getSynchScope();
Nick Lewyckye04dc222009-06-12 08:04:51 +0000735
736 return true;
Nick Lewyckyd01d42e2008-11-02 05:52:50 +0000737}
738
Nick Lewyckycfb284c2011-01-28 08:43:14 +0000739// Determine whether two GEP operations perform the same underlying arithmetic.
Nick Lewyckyf52bd9c2010-08-02 05:23:03 +0000740bool FunctionComparator::isEquivalentGEP(const GEPOperator *GEP1,
741 const GEPOperator *GEP2) {
Matt Arsenault5bcefab2013-11-10 01:44:37 +0000742 unsigned AS = GEP1->getPointerAddressSpace();
743 if (AS != GEP2->getPointerAddressSpace())
744 return false;
745
Rafael Espindola37dc9e12014-02-21 00:06:31 +0000746 if (DL) {
Matt Arsenault5bcefab2013-11-10 01:44:37 +0000747 // When we have target data, we can reduce the GEP down to the value in bytes
748 // added to the address.
Rafael Espindola37dc9e12014-02-21 00:06:31 +0000749 unsigned BitWidth = DL ? DL->getPointerSizeInBits(AS) : 1;
Matt Arsenault5bcefab2013-11-10 01:44:37 +0000750 APInt Offset1(BitWidth, 0), Offset2(BitWidth, 0);
Rafael Espindola37dc9e12014-02-21 00:06:31 +0000751 if (GEP1->accumulateConstantOffset(*DL, Offset1) &&
752 GEP2->accumulateConstantOffset(*DL, Offset2)) {
Matt Arsenault5bcefab2013-11-10 01:44:37 +0000753 return Offset1 == Offset2;
754 }
Nick Lewyckyd01d42e2008-11-02 05:52:50 +0000755 }
756
Nick Lewyckyd3c6dfe2010-05-13 05:48:45 +0000757 if (GEP1->getPointerOperand()->getType() !=
758 GEP2->getPointerOperand()->getType())
759 return false;
760
761 if (GEP1->getNumOperands() != GEP2->getNumOperands())
762 return false;
763
764 for (unsigned i = 0, e = GEP1->getNumOperands(); i != e; ++i) {
Nick Lewyckycfb284c2011-01-28 08:43:14 +0000765 if (!enumerate(GEP1->getOperand(i), GEP2->getOperand(i)))
Nick Lewyckyd3c6dfe2010-05-13 05:48:45 +0000766 return false;
767 }
768
769 return true;
Nick Lewyckyd01d42e2008-11-02 05:52:50 +0000770}
771
Stepan Dyatkovskiycfd641f2014-05-07 11:11:39 +0000772/// Compare two values used by the two functions under pair-wise comparison. If
773/// this is the first time the values are seen, they're added to the mapping so
774/// that we will detect mismatches on next use.
775/// See comments in declaration for more details.
776int FunctionComparator::cmpValues(const Value *L, const Value *R) {
777 // Catch self-reference case.
778 if (L == F1) {
779 if (R == F2)
780 return 0;
781 return -1;
782 }
783 if (R == F2) {
784 if (L == F1)
785 return 0;
786 return 1;
Nick Lewycky13e04ae2011-01-27 08:38:19 +0000787 }
Nick Lewyckyd3c6dfe2010-05-13 05:48:45 +0000788
Stepan Dyatkovskiycfd641f2014-05-07 11:11:39 +0000789 const Constant *ConstL = dyn_cast<Constant>(L);
790 const Constant *ConstR = dyn_cast<Constant>(R);
791 if (ConstL && ConstR) {
792 if (L == R)
793 return 0;
794 return cmpConstants(ConstL, ConstR);
795 }
Nick Lewyckyd3c6dfe2010-05-13 05:48:45 +0000796
Stepan Dyatkovskiycfd641f2014-05-07 11:11:39 +0000797 if (ConstL)
798 return 1;
799 if (ConstR)
800 return -1;
Nick Lewyckyd3c6dfe2010-05-13 05:48:45 +0000801
Stepan Dyatkovskiycfd641f2014-05-07 11:11:39 +0000802 const InlineAsm *InlineAsmL = dyn_cast<InlineAsm>(L);
803 const InlineAsm *InlineAsmR = dyn_cast<InlineAsm>(R);
804
805 if (InlineAsmL && InlineAsmR)
806 return cmpNumbers((uint64_t)L, (uint64_t)R);
807 if (InlineAsmL)
808 return 1;
809 if (InlineAsmR)
810 return -1;
811
812 auto LeftSN = sn_mapL.insert(std::make_pair(L, sn_mapL.size())),
813 RightSN = sn_mapR.insert(std::make_pair(R, sn_mapR.size()));
814
815 return cmpNumbers(LeftSN.first->second, RightSN.first->second);
Nick Lewyckyd3c6dfe2010-05-13 05:48:45 +0000816}
Nick Lewyckycfb284c2011-01-28 08:43:14 +0000817// Test whether two basic blocks have equivalent behaviour.
818bool FunctionComparator::compare(const BasicBlock *BB1, const BasicBlock *BB2) {
Nick Lewyckyf52bd9c2010-08-02 05:23:03 +0000819 BasicBlock::const_iterator F1I = BB1->begin(), F1E = BB1->end();
820 BasicBlock::const_iterator F2I = BB2->begin(), F2E = BB2->end();
Nick Lewyckyd01d42e2008-11-02 05:52:50 +0000821
822 do {
Nick Lewyckycfb284c2011-01-28 08:43:14 +0000823 if (!enumerate(F1I, F2I))
Nick Lewyckyd01d42e2008-11-02 05:52:50 +0000824 return false;
825
Nick Lewyckyf52bd9c2010-08-02 05:23:03 +0000826 if (const GetElementPtrInst *GEP1 = dyn_cast<GetElementPtrInst>(F1I)) {
827 const GetElementPtrInst *GEP2 = dyn_cast<GetElementPtrInst>(F2I);
828 if (!GEP2)
829 return false;
Nick Lewycky47b71c52009-06-13 19:09:52 +0000830
Nick Lewyckycfb284c2011-01-28 08:43:14 +0000831 if (!enumerate(GEP1->getPointerOperand(), GEP2->getPointerOperand()))
Nick Lewycky2b3cbac2010-05-13 06:45:13 +0000832 return false;
Nick Lewycky47b71c52009-06-13 19:09:52 +0000833
Nick Lewyckyd3c6dfe2010-05-13 05:48:45 +0000834 if (!isEquivalentGEP(GEP1, GEP2))
Nick Lewycky2b3cbac2010-05-13 06:45:13 +0000835 return false;
Nick Lewyckyd3c6dfe2010-05-13 05:48:45 +0000836 } else {
Nick Lewyckyf52bd9c2010-08-02 05:23:03 +0000837 if (!isEquivalentOperation(F1I, F2I))
Nick Lewyckyd01d42e2008-11-02 05:52:50 +0000838 return false;
839
Nick Lewyckyf52bd9c2010-08-02 05:23:03 +0000840 assert(F1I->getNumOperands() == F2I->getNumOperands());
841 for (unsigned i = 0, e = F1I->getNumOperands(); i != e; ++i) {
842 Value *OpF1 = F1I->getOperand(i);
843 Value *OpF2 = F2I->getOperand(i);
Nick Lewyckyd01d42e2008-11-02 05:52:50 +0000844
Nick Lewyckycfb284c2011-01-28 08:43:14 +0000845 if (!enumerate(OpF1, OpF2))
Nick Lewycky2b3cbac2010-05-13 06:45:13 +0000846 return false;
Nick Lewyckyd3c6dfe2010-05-13 05:48:45 +0000847
Nick Lewyckyf52bd9c2010-08-02 05:23:03 +0000848 if (OpF1->getValueID() != OpF2->getValueID() ||
849 !isEquivalentType(OpF1->getType(), OpF2->getType()))
Nick Lewyckyd01d42e2008-11-02 05:52:50 +0000850 return false;
851 }
Nick Lewyckyd01d42e2008-11-02 05:52:50 +0000852 }
853
Nick Lewyckyf52bd9c2010-08-02 05:23:03 +0000854 ++F1I, ++F2I;
855 } while (F1I != F1E && F2I != F2E);
Nick Lewyckyd01d42e2008-11-02 05:52:50 +0000856
Nick Lewyckyf52bd9c2010-08-02 05:23:03 +0000857 return F1I == F1E && F2I == F2E;
Nick Lewyckyd01d42e2008-11-02 05:52:50 +0000858}
859
Nick Lewyckycfb284c2011-01-28 08:43:14 +0000860// Test whether the two functions have equivalent behaviour.
861bool FunctionComparator::compare() {
Nick Lewyckyd01d42e2008-11-02 05:52:50 +0000862 // We need to recheck everything, but check the things that weren't included
863 // in the hash first.
864
Stepan Dyatkovskiycfd641f2014-05-07 11:11:39 +0000865 sn_mapL.clear();
866 sn_mapR.clear();
867
Nick Lewyckyf52bd9c2010-08-02 05:23:03 +0000868 if (F1->getAttributes() != F2->getAttributes())
Nick Lewyckyd01d42e2008-11-02 05:52:50 +0000869 return false;
870
Nick Lewyckyf52bd9c2010-08-02 05:23:03 +0000871 if (F1->hasGC() != F2->hasGC())
Nick Lewyckyd01d42e2008-11-02 05:52:50 +0000872 return false;
873
Nick Lewyckyf52bd9c2010-08-02 05:23:03 +0000874 if (F1->hasGC() && F1->getGC() != F2->getGC())
Nick Lewyckyd01d42e2008-11-02 05:52:50 +0000875 return false;
876
Nick Lewyckyf52bd9c2010-08-02 05:23:03 +0000877 if (F1->hasSection() != F2->hasSection())
Nick Lewyckyd01d42e2008-11-02 05:52:50 +0000878 return false;
879
Nick Lewyckyf52bd9c2010-08-02 05:23:03 +0000880 if (F1->hasSection() && F1->getSection() != F2->getSection())
Nick Lewyckyd01d42e2008-11-02 05:52:50 +0000881 return false;
882
Nick Lewyckyf52bd9c2010-08-02 05:23:03 +0000883 if (F1->isVarArg() != F2->isVarArg())
Nick Lewyckye04dc222009-06-12 08:04:51 +0000884 return false;
885
Nick Lewyckyd01d42e2008-11-02 05:52:50 +0000886 // TODO: if it's internal and only used in direct calls, we could handle this
887 // case too.
Nick Lewyckyf52bd9c2010-08-02 05:23:03 +0000888 if (F1->getCallingConv() != F2->getCallingConv())
Nick Lewyckyd01d42e2008-11-02 05:52:50 +0000889 return false;
890
Nick Lewyckyf52bd9c2010-08-02 05:23:03 +0000891 if (!isEquivalentType(F1->getFunctionType(), F2->getFunctionType()))
Nick Lewyckyd01d42e2008-11-02 05:52:50 +0000892 return false;
893
Nick Lewyckyf52bd9c2010-08-02 05:23:03 +0000894 assert(F1->arg_size() == F2->arg_size() &&
Nick Lewycky71972d42010-09-07 01:42:10 +0000895 "Identically typed functions have different numbers of args!");
Nick Lewyckyd01d42e2008-11-02 05:52:50 +0000896
Nick Lewyckyd3c6dfe2010-05-13 05:48:45 +0000897 // Visit the arguments so that they get enumerated in the order they're
898 // passed in.
Nick Lewyckyf52bd9c2010-08-02 05:23:03 +0000899 for (Function::const_arg_iterator f1i = F1->arg_begin(),
900 f2i = F2->arg_begin(), f1e = F1->arg_end(); f1i != f1e; ++f1i, ++f2i) {
Nick Lewyckycfb284c2011-01-28 08:43:14 +0000901 if (!enumerate(f1i, f2i))
Nick Lewycky71972d42010-09-07 01:42:10 +0000902 llvm_unreachable("Arguments repeat!");
Nick Lewyckyd01d42e2008-11-02 05:52:50 +0000903 }
904
Nick Lewyckyfbd27572010-08-08 05:04:23 +0000905 // We do a CFG-ordered walk since the actual ordering of the blocks in the
906 // linked list is immaterial. Our walk starts at the entry block for both
Nick Lewyckyf52bd9c2010-08-02 05:23:03 +0000907 // functions, then takes each block from each terminator in order. As an
908 // artifact, this also means that unreachable blocks are ignored.
909 SmallVector<const BasicBlock *, 8> F1BBs, F2BBs;
910 SmallSet<const BasicBlock *, 128> VisitedBBs; // in terms of F1.
Nick Lewyckyf216f69a2010-08-06 07:21:30 +0000911
Nick Lewyckyf52bd9c2010-08-02 05:23:03 +0000912 F1BBs.push_back(&F1->getEntryBlock());
913 F2BBs.push_back(&F2->getEntryBlock());
Nick Lewyckyf216f69a2010-08-06 07:21:30 +0000914
Nick Lewyckyf52bd9c2010-08-02 05:23:03 +0000915 VisitedBBs.insert(F1BBs[0]);
916 while (!F1BBs.empty()) {
917 const BasicBlock *F1BB = F1BBs.pop_back_val();
918 const BasicBlock *F2BB = F2BBs.pop_back_val();
Nick Lewyckyf216f69a2010-08-06 07:21:30 +0000919
Nick Lewyckycfb284c2011-01-28 08:43:14 +0000920 if (!enumerate(F1BB, F2BB) || !compare(F1BB, F2BB))
Nick Lewyckyd3c6dfe2010-05-13 05:48:45 +0000921 return false;
Nick Lewyckyf216f69a2010-08-06 07:21:30 +0000922
Nick Lewyckyf52bd9c2010-08-02 05:23:03 +0000923 const TerminatorInst *F1TI = F1BB->getTerminator();
924 const TerminatorInst *F2TI = F2BB->getTerminator();
Nick Lewyckyf216f69a2010-08-06 07:21:30 +0000925
Nick Lewyckyf52bd9c2010-08-02 05:23:03 +0000926 assert(F1TI->getNumSuccessors() == F2TI->getNumSuccessors());
927 for (unsigned i = 0, e = F1TI->getNumSuccessors(); i != e; ++i) {
928 if (!VisitedBBs.insert(F1TI->getSuccessor(i)))
Nick Lewycky2b3cbac2010-05-13 06:45:13 +0000929 continue;
Nick Lewyckyf216f69a2010-08-06 07:21:30 +0000930
Nick Lewyckyf52bd9c2010-08-02 05:23:03 +0000931 F1BBs.push_back(F1TI->getSuccessor(i));
932 F2BBs.push_back(F2TI->getSuccessor(i));
Nick Lewyckyd3c6dfe2010-05-13 05:48:45 +0000933 }
934 }
Nick Lewyckyd01d42e2008-11-02 05:52:50 +0000935 return true;
936}
937
Nick Lewycky564fcca2011-01-28 07:36:21 +0000938namespace {
939
940/// MergeFunctions finds functions which will generate identical machine code,
941/// by considering all pointer types to be equivalent. Once identified,
942/// MergeFunctions will fold them by replacing a call to one to a call to a
943/// bitcast of the other.
944///
945class MergeFunctions : public ModulePass {
946public:
947 static char ID;
948 MergeFunctions()
949 : ModulePass(ID), HasGlobalAliases(false) {
950 initializeMergeFunctionsPass(*PassRegistry::getPassRegistry());
951 }
952
Craig Topper3e4c6972014-03-05 09:10:37 +0000953 bool runOnModule(Module &M) override;
Nick Lewycky564fcca2011-01-28 07:36:21 +0000954
955private:
956 typedef DenseSet<ComparableFunction> FnSetType;
957
958 /// A work queue of functions that may have been modified and should be
959 /// analyzed again.
960 std::vector<WeakVH> Deferred;
961
962 /// Insert a ComparableFunction into the FnSet, or merge it away if it's
963 /// equal to one that's already present.
Nick Lewyckycfb284c2011-01-28 08:43:14 +0000964 bool insert(ComparableFunction &NewF);
Nick Lewycky564fcca2011-01-28 07:36:21 +0000965
966 /// Remove a Function from the FnSet and queue it up for a second sweep of
967 /// analysis.
Nick Lewyckycfb284c2011-01-28 08:43:14 +0000968 void remove(Function *F);
Nick Lewycky564fcca2011-01-28 07:36:21 +0000969
970 /// Find the functions that use this Value and remove them from FnSet and
971 /// queue the functions.
Nick Lewyckycfb284c2011-01-28 08:43:14 +0000972 void removeUsers(Value *V);
Nick Lewycky564fcca2011-01-28 07:36:21 +0000973
974 /// Replace all direct calls of Old with calls of New. Will bitcast New if
975 /// necessary to make types match.
976 void replaceDirectCallers(Function *Old, Function *New);
977
Nick Lewyckycfb284c2011-01-28 08:43:14 +0000978 /// Merge two equivalent functions. Upon completion, G may be deleted, or may
979 /// be converted into a thunk. In either case, it should never be visited
980 /// again.
981 void mergeTwoFunctions(Function *F, Function *G);
Nick Lewycky564fcca2011-01-28 07:36:21 +0000982
Nick Lewyckycfb284c2011-01-28 08:43:14 +0000983 /// Replace G with a thunk or an alias to F. Deletes G.
984 void writeThunkOrAlias(Function *F, Function *G);
Nick Lewycky564fcca2011-01-28 07:36:21 +0000985
Nick Lewyckycfb284c2011-01-28 08:43:14 +0000986 /// Replace G with a simple tail call to bitcast(F). Also replace direct uses
987 /// of G with bitcast(F). Deletes G.
988 void writeThunk(Function *F, Function *G);
Nick Lewycky564fcca2011-01-28 07:36:21 +0000989
Nick Lewyckycfb284c2011-01-28 08:43:14 +0000990 /// Replace G with an alias to F. Deletes G.
991 void writeAlias(Function *F, Function *G);
Nick Lewycky564fcca2011-01-28 07:36:21 +0000992
Nick Lewyckycfb284c2011-01-28 08:43:14 +0000993 /// The set of all distinct functions. Use the insert() and remove() methods
994 /// to modify it.
Nick Lewycky564fcca2011-01-28 07:36:21 +0000995 FnSetType FnSet;
996
Micah Villmowcdfe20b2012-10-08 16:38:25 +0000997 /// DataLayout for more accurate GEP comparisons. May be NULL.
Rafael Espindola43b5a512014-02-25 14:24:11 +0000998 const DataLayout *DL;
Nick Lewycky564fcca2011-01-28 07:36:21 +0000999
1000 /// Whether or not the target supports global aliases.
1001 bool HasGlobalAliases;
1002};
1003
1004} // end anonymous namespace
1005
1006char MergeFunctions::ID = 0;
1007INITIALIZE_PASS(MergeFunctions, "mergefunc", "Merge Functions", false, false)
1008
1009ModulePass *llvm::createMergeFunctionsPass() {
1010 return new MergeFunctions();
1011}
1012
1013bool MergeFunctions::runOnModule(Module &M) {
1014 bool Changed = false;
Rafael Espindola93512512014-02-25 17:30:31 +00001015 DataLayoutPass *DLP = getAnalysisIfAvailable<DataLayoutPass>();
Craig Topperf40110f2014-04-25 05:29:35 +00001016 DL = DLP ? &DLP->getDataLayout() : nullptr;
Nick Lewycky564fcca2011-01-28 07:36:21 +00001017
1018 for (Module::iterator I = M.begin(), E = M.end(); I != E; ++I) {
1019 if (!I->isDeclaration() && !I->hasAvailableExternallyLinkage())
1020 Deferred.push_back(WeakVH(I));
1021 }
1022 FnSet.resize(Deferred.size());
1023
1024 do {
1025 std::vector<WeakVH> Worklist;
1026 Deferred.swap(Worklist);
1027
1028 DEBUG(dbgs() << "size of module: " << M.size() << '\n');
1029 DEBUG(dbgs() << "size of worklist: " << Worklist.size() << '\n');
1030
1031 // Insert only strong functions and merge them. Strong function merging
1032 // always deletes one of them.
1033 for (std::vector<WeakVH>::iterator I = Worklist.begin(),
1034 E = Worklist.end(); I != E; ++I) {
1035 if (!*I) continue;
1036 Function *F = cast<Function>(*I);
1037 if (!F->isDeclaration() && !F->hasAvailableExternallyLinkage() &&
1038 !F->mayBeOverridden()) {
Rafael Espindola37dc9e12014-02-21 00:06:31 +00001039 ComparableFunction CF = ComparableFunction(F, DL);
Nick Lewyckycfb284c2011-01-28 08:43:14 +00001040 Changed |= insert(CF);
Nick Lewycky564fcca2011-01-28 07:36:21 +00001041 }
1042 }
1043
1044 // Insert only weak functions and merge them. By doing these second we
1045 // create thunks to the strong function when possible. When two weak
1046 // functions are identical, we create a new strong function with two weak
1047 // weak thunks to it which are identical but not mergable.
1048 for (std::vector<WeakVH>::iterator I = Worklist.begin(),
1049 E = Worklist.end(); I != E; ++I) {
1050 if (!*I) continue;
1051 Function *F = cast<Function>(*I);
1052 if (!F->isDeclaration() && !F->hasAvailableExternallyLinkage() &&
1053 F->mayBeOverridden()) {
Rafael Espindola37dc9e12014-02-21 00:06:31 +00001054 ComparableFunction CF = ComparableFunction(F, DL);
Nick Lewyckycfb284c2011-01-28 08:43:14 +00001055 Changed |= insert(CF);
Nick Lewycky564fcca2011-01-28 07:36:21 +00001056 }
1057 }
1058 DEBUG(dbgs() << "size of FnSet: " << FnSet.size() << '\n');
1059 } while (!Deferred.empty());
1060
1061 FnSet.clear();
1062
1063 return Changed;
1064}
1065
1066bool DenseMapInfo<ComparableFunction>::isEqual(const ComparableFunction &LHS,
1067 const ComparableFunction &RHS) {
1068 if (LHS.getFunc() == RHS.getFunc() &&
1069 LHS.getHash() == RHS.getHash())
1070 return true;
1071 if (!LHS.getFunc() || !RHS.getFunc())
1072 return false;
Nick Lewycky292e78c2011-02-09 06:32:02 +00001073
1074 // One of these is a special "underlying pointer comparison only" object.
Rafael Espindola37dc9e12014-02-21 00:06:31 +00001075 if (LHS.getDataLayout() == ComparableFunction::LookupOnly ||
1076 RHS.getDataLayout() == ComparableFunction::LookupOnly)
Nick Lewycky292e78c2011-02-09 06:32:02 +00001077 return false;
1078
Rafael Espindola37dc9e12014-02-21 00:06:31 +00001079 assert(LHS.getDataLayout() == RHS.getDataLayout() &&
Nick Lewycky564fcca2011-01-28 07:36:21 +00001080 "Comparing functions for different targets");
1081
Rafael Espindola37dc9e12014-02-21 00:06:31 +00001082 return FunctionComparator(LHS.getDataLayout(), LHS.getFunc(),
Nick Lewyckya46c8982011-02-02 05:31:01 +00001083 RHS.getFunc()).compare();
Nick Lewycky564fcca2011-01-28 07:36:21 +00001084}
1085
Nick Lewyckycfb284c2011-01-28 08:43:14 +00001086// Replace direct callers of Old with New.
Nick Lewyckyf1cec162011-01-25 08:56:50 +00001087void MergeFunctions::replaceDirectCallers(Function *Old, Function *New) {
1088 Constant *BitcastNew = ConstantExpr::getBitCast(New, Old->getType());
Chandler Carruthcdf47882014-03-09 03:16:01 +00001089 for (auto UI = Old->use_begin(), UE = Old->use_end(); UI != UE;) {
1090 Use *U = &*UI;
Nick Lewyckyf1cec162011-01-25 08:56:50 +00001091 ++UI;
Chandler Carruthcdf47882014-03-09 03:16:01 +00001092 CallSite CS(U->getUser());
1093 if (CS && CS.isCallee(U)) {
Nick Lewyckycfb284c2011-01-28 08:43:14 +00001094 remove(CS.getInstruction()->getParent()->getParent());
Chandler Carruthcdf47882014-03-09 03:16:01 +00001095 U->set(BitcastNew);
Nick Lewyckyf1cec162011-01-25 08:56:50 +00001096 }
1097 }
1098}
1099
Nick Lewyckycfb284c2011-01-28 08:43:14 +00001100// Replace G with an alias to F if possible, or else a thunk to F. Deletes G.
1101void MergeFunctions::writeThunkOrAlias(Function *F, Function *G) {
Nick Lewyckyf1cec162011-01-25 08:56:50 +00001102 if (HasGlobalAliases && G->hasUnnamedAddr()) {
1103 if (G->hasExternalLinkage() || G->hasLocalLinkage() ||
1104 G->hasWeakLinkage()) {
Nick Lewyckycfb284c2011-01-28 08:43:14 +00001105 writeAlias(F, G);
Nick Lewyckyf1cec162011-01-25 08:56:50 +00001106 return;
1107 }
1108 }
1109
Nick Lewyckycfb284c2011-01-28 08:43:14 +00001110 writeThunk(F, G);
Nick Lewyckyf1cec162011-01-25 08:56:50 +00001111}
1112
Stepan Dyatkovskiydc2c4b42013-09-17 09:36:11 +00001113// Helper for writeThunk,
1114// Selects proper bitcast operation,
Alp Tokercb402912014-01-24 17:20:08 +00001115// but a bit simpler then CastInst::getCastOpcode.
Carlo Kok307625c2014-04-30 17:53:04 +00001116static Value *createCast(IRBuilder<false> &Builder, Value *V, Type *DestTy) {
Stepan Dyatkovskiydc2c4b42013-09-17 09:36:11 +00001117 Type *SrcTy = V->getType();
Carlo Kok307625c2014-04-30 17:53:04 +00001118 if (SrcTy->isStructTy()) {
1119 assert(DestTy->isStructTy());
1120 assert(SrcTy->getStructNumElements() == DestTy->getStructNumElements());
1121 Value *Result = UndefValue::get(DestTy);
1122 for (unsigned int I = 0, E = SrcTy->getStructNumElements(); I < E; ++I) {
1123 Value *Element = createCast(
1124 Builder, Builder.CreateExtractValue(V, ArrayRef<unsigned int>(I)),
1125 DestTy->getStructElementType(I));
1126
1127 Result =
1128 Builder.CreateInsertValue(Result, Element, ArrayRef<unsigned int>(I));
1129 }
1130 return Result;
1131 }
1132 assert(!DestTy->isStructTy());
Stepan Dyatkovskiydc2c4b42013-09-17 09:36:11 +00001133 if (SrcTy->isIntegerTy() && DestTy->isPointerTy())
1134 return Builder.CreateIntToPtr(V, DestTy);
1135 else if (SrcTy->isPointerTy() && DestTy->isIntegerTy())
1136 return Builder.CreatePtrToInt(V, DestTy);
1137 else
1138 return Builder.CreateBitCast(V, DestTy);
1139}
1140
Nick Lewyckycfb284c2011-01-28 08:43:14 +00001141// Replace G with a simple tail call to bitcast(F). Also replace direct uses
1142// of G with bitcast(F). Deletes G.
1143void MergeFunctions::writeThunk(Function *F, Function *G) {
Nick Lewyckyd3c6dfe2010-05-13 05:48:45 +00001144 if (!G->mayBeOverridden()) {
1145 // Redirect direct callers of G to F.
Nick Lewyckyf1cec162011-01-25 08:56:50 +00001146 replaceDirectCallers(G, F);
Nick Lewyckyd3c6dfe2010-05-13 05:48:45 +00001147 }
1148
Nick Lewycky71972d42010-09-07 01:42:10 +00001149 // If G was internal then we may have replaced all uses of G with F. If so,
Nick Lewyckyf216f69a2010-08-06 07:21:30 +00001150 // stop here and delete G. There's no need for a thunk.
1151 if (G->hasLocalLinkage() && G->use_empty()) {
1152 G->eraseFromParent();
1153 return;
1154 }
1155
Nick Lewycky25675ac2009-06-12 15:56:56 +00001156 Function *NewG = Function::Create(G->getFunctionType(), G->getLinkage(), "",
1157 G->getParent());
Owen Anderson55f1c092009-08-13 21:58:54 +00001158 BasicBlock *BB = BasicBlock::Create(F->getContext(), "", NewG);
Nick Lewyckyfbd27572010-08-08 05:04:23 +00001159 IRBuilder<false> Builder(BB);
Nick Lewyckye04dc222009-06-12 08:04:51 +00001160
Nick Lewyckyd3c6dfe2010-05-13 05:48:45 +00001161 SmallVector<Value *, 16> Args;
Nick Lewyckye04dc222009-06-12 08:04:51 +00001162 unsigned i = 0;
Chris Lattner229907c2011-07-18 04:54:35 +00001163 FunctionType *FFTy = F->getFunctionType();
Nick Lewyckye04dc222009-06-12 08:04:51 +00001164 for (Function::arg_iterator AI = NewG->arg_begin(), AE = NewG->arg_end();
1165 AI != AE; ++AI) {
Stepan Dyatkovskiydc2c4b42013-09-17 09:36:11 +00001166 Args.push_back(createCast(Builder, (Value*)AI, FFTy->getParamType(i)));
Nick Lewyckye04dc222009-06-12 08:04:51 +00001167 ++i;
1168 }
1169
Jay Foad5bd375a2011-07-15 08:37:34 +00001170 CallInst *CI = Builder.CreateCall(F, Args);
Nick Lewyckye04dc222009-06-12 08:04:51 +00001171 CI->setTailCall();
Nick Lewyckyd5bf51f2009-06-12 16:04:00 +00001172 CI->setCallingConv(F->getCallingConv());
Benjamin Kramerccce8ba2010-01-05 13:12:22 +00001173 if (NewG->getReturnType()->isVoidTy()) {
Nick Lewyckyfbd27572010-08-08 05:04:23 +00001174 Builder.CreateRetVoid();
Nick Lewyckye04dc222009-06-12 08:04:51 +00001175 } else {
Stepan Dyatkovskiydc2c4b42013-09-17 09:36:11 +00001176 Builder.CreateRet(createCast(Builder, CI, NewG->getReturnType()));
Nick Lewyckye04dc222009-06-12 08:04:51 +00001177 }
1178
1179 NewG->copyAttributesFrom(G);
1180 NewG->takeName(G);
Nick Lewyckycfb284c2011-01-28 08:43:14 +00001181 removeUsers(G);
Nick Lewyckye04dc222009-06-12 08:04:51 +00001182 G->replaceAllUsesWith(NewG);
1183 G->eraseFromParent();
Nick Lewycky71972d42010-09-07 01:42:10 +00001184
Nick Lewyckycfb284c2011-01-28 08:43:14 +00001185 DEBUG(dbgs() << "writeThunk: " << NewG->getName() << '\n');
Nick Lewycky71972d42010-09-07 01:42:10 +00001186 ++NumThunksWritten;
Nick Lewyckye04dc222009-06-12 08:04:51 +00001187}
1188
Nick Lewyckycfb284c2011-01-28 08:43:14 +00001189// Replace G with an alias to F and delete G.
1190void MergeFunctions::writeAlias(Function *F, Function *G) {
Nick Lewyckyf1cec162011-01-25 08:56:50 +00001191 Constant *BitcastF = ConstantExpr::getBitCast(F, G->getType());
1192 GlobalAlias *GA = new GlobalAlias(G->getType(), G->getLinkage(), "",
1193 BitcastF, G->getParent());
1194 F->setAlignment(std::max(F->getAlignment(), G->getAlignment()));
1195 GA->takeName(G);
1196 GA->setVisibility(G->getVisibility());
Nick Lewyckycfb284c2011-01-28 08:43:14 +00001197 removeUsers(G);
Nick Lewyckyf1cec162011-01-25 08:56:50 +00001198 G->replaceAllUsesWith(GA);
1199 G->eraseFromParent();
1200
Nick Lewyckycfb284c2011-01-28 08:43:14 +00001201 DEBUG(dbgs() << "writeAlias: " << GA->getName() << '\n');
Nick Lewyckyf1cec162011-01-25 08:56:50 +00001202 ++NumAliasesWritten;
1203}
1204
Nick Lewyckycfb284c2011-01-28 08:43:14 +00001205// Merge two equivalent functions. Upon completion, Function G is deleted.
1206void MergeFunctions::mergeTwoFunctions(Function *F, Function *G) {
Nick Lewycky71972d42010-09-07 01:42:10 +00001207 if (F->mayBeOverridden()) {
1208 assert(G->mayBeOverridden());
Nick Lewyckyd3c6dfe2010-05-13 05:48:45 +00001209
Nick Lewyckyf1cec162011-01-25 08:56:50 +00001210 if (HasGlobalAliases) {
1211 // Make them both thunks to the same internal function.
1212 Function *H = Function::Create(F->getFunctionType(), F->getLinkage(), "",
1213 F->getParent());
1214 H->copyAttributesFrom(F);
1215 H->takeName(F);
Nick Lewyckycfb284c2011-01-28 08:43:14 +00001216 removeUsers(F);
Nick Lewyckyf1cec162011-01-25 08:56:50 +00001217 F->replaceAllUsesWith(H);
Nick Lewyckyd3c6dfe2010-05-13 05:48:45 +00001218
Nick Lewyckyf1cec162011-01-25 08:56:50 +00001219 unsigned MaxAlignment = std::max(G->getAlignment(), H->getAlignment());
Nick Lewyckyf0067b62010-08-09 21:03:28 +00001220
Nick Lewyckycfb284c2011-01-28 08:43:14 +00001221 writeAlias(F, G);
1222 writeAlias(F, H);
Nick Lewyckyd3c6dfe2010-05-13 05:48:45 +00001223
Nick Lewyckyf1cec162011-01-25 08:56:50 +00001224 F->setAlignment(MaxAlignment);
1225 F->setLinkage(GlobalValue::PrivateLinkage);
1226 } else {
1227 // We can't merge them. Instead, pick one and update all direct callers
1228 // to call it and hope that we improve the instruction cache hit rate.
1229 replaceDirectCallers(G, F);
1230 }
Nick Lewycky71972d42010-09-07 01:42:10 +00001231
1232 ++NumDoubleWeak;
Nick Lewyckyf216f69a2010-08-06 07:21:30 +00001233 } else {
Nick Lewyckycfb284c2011-01-28 08:43:14 +00001234 writeThunkOrAlias(F, G);
Nick Lewycky3c6d34a2008-11-02 16:46:26 +00001235 }
1236
Nick Lewyckye04dc222009-06-12 08:04:51 +00001237 ++NumFunctionsMerged;
Nick Lewyckyd01d42e2008-11-02 05:52:50 +00001238}
1239
Nick Lewyckycfb284c2011-01-28 08:43:14 +00001240// Insert a ComparableFunction into the FnSet, or merge it away if equal to one
1241// that was already inserted.
1242bool MergeFunctions::insert(ComparableFunction &NewF) {
Nick Lewycky00959372010-09-05 08:22:49 +00001243 std::pair<FnSetType::iterator, bool> Result = FnSet.insert(NewF);
Nick Lewycky292e78c2011-02-09 06:32:02 +00001244 if (Result.second) {
1245 DEBUG(dbgs() << "Inserting as unique: " << NewF.getFunc()->getName() << '\n');
Nick Lewycky00959372010-09-05 08:22:49 +00001246 return false;
Nick Lewycky292e78c2011-02-09 06:32:02 +00001247 }
Nick Lewyckyfbd27572010-08-08 05:04:23 +00001248
Nick Lewyckyf3a07ec2010-09-05 09:00:32 +00001249 const ComparableFunction &OldF = *Result.first;
Nick Lewycky00959372010-09-05 08:22:49 +00001250
Matt Arsenault517d84e2013-10-01 18:05:30 +00001251 // Don't merge tiny functions, since it can just end up making the function
1252 // larger.
1253 // FIXME: Should still merge them if they are unnamed_addr and produce an
1254 // alias.
1255 if (NewF.getFunc()->size() == 1) {
1256 if (NewF.getFunc()->front().size() <= 2) {
1257 DEBUG(dbgs() << NewF.getFunc()->getName()
1258 << " is to small to bother merging\n");
1259 return false;
1260 }
1261 }
1262
Nick Lewycky00959372010-09-05 08:22:49 +00001263 // Never thunk a strong function to a weak function.
Nick Lewycky71972d42010-09-07 01:42:10 +00001264 assert(!OldF.getFunc()->mayBeOverridden() ||
1265 NewF.getFunc()->mayBeOverridden());
Nick Lewycky00959372010-09-05 08:22:49 +00001266
Nick Lewyckyf3a07ec2010-09-05 09:00:32 +00001267 DEBUG(dbgs() << " " << OldF.getFunc()->getName() << " == "
1268 << NewF.getFunc()->getName() << '\n');
Nick Lewycky00959372010-09-05 08:22:49 +00001269
Nick Lewyckyf3a07ec2010-09-05 09:00:32 +00001270 Function *DeleteF = NewF.getFunc();
1271 NewF.release();
Nick Lewyckycfb284c2011-01-28 08:43:14 +00001272 mergeTwoFunctions(OldF.getFunc(), DeleteF);
Nick Lewycky00959372010-09-05 08:22:49 +00001273 return true;
Nick Lewyckyfbd27572010-08-08 05:04:23 +00001274}
Nick Lewyckyd01d42e2008-11-02 05:52:50 +00001275
Nick Lewyckycfb284c2011-01-28 08:43:14 +00001276// Remove a function from FnSet. If it was already in FnSet, add it to Deferred
1277// so that we'll look at it in the next round.
1278void MergeFunctions::remove(Function *F) {
Nick Lewycky292e78c2011-02-09 06:32:02 +00001279 // We need to make sure we remove F, not a function "equal" to F per the
1280 // function equality comparator.
1281 //
1282 // The special "lookup only" ComparableFunction bypasses the expensive
1283 // function comparison in favour of a pointer comparison on the underlying
1284 // Function*'s.
1285 ComparableFunction CF = ComparableFunction(F, ComparableFunction::LookupOnly);
Nick Lewycky4e250c82011-01-02 02:46:33 +00001286 if (FnSet.erase(CF)) {
Nick Lewycky292e78c2011-02-09 06:32:02 +00001287 DEBUG(dbgs() << "Removed " << F->getName() << " from set and deferred it.\n");
Nick Lewycky4e250c82011-01-02 02:46:33 +00001288 Deferred.push_back(F);
Nick Lewycky0464d1d2010-08-31 05:53:05 +00001289 }
Nick Lewycky4e250c82011-01-02 02:46:33 +00001290}
Nick Lewycky00959372010-09-05 08:22:49 +00001291
Nick Lewyckycfb284c2011-01-28 08:43:14 +00001292// For each instruction used by the value, remove() the function that contains
1293// the instruction. This should happen right before a call to RAUW.
1294void MergeFunctions::removeUsers(Value *V) {
Nick Lewycky5361b842011-01-02 19:16:44 +00001295 std::vector<Value *> Worklist;
1296 Worklist.push_back(V);
1297 while (!Worklist.empty()) {
1298 Value *V = Worklist.back();
1299 Worklist.pop_back();
1300
Chandler Carruthcdf47882014-03-09 03:16:01 +00001301 for (User *U : V->users()) {
1302 if (Instruction *I = dyn_cast<Instruction>(U)) {
Nick Lewyckycfb284c2011-01-28 08:43:14 +00001303 remove(I->getParent()->getParent());
Chandler Carruthcdf47882014-03-09 03:16:01 +00001304 } else if (isa<GlobalValue>(U)) {
Nick Lewycky540f9532011-01-15 10:16:23 +00001305 // do nothing
Chandler Carruthcdf47882014-03-09 03:16:01 +00001306 } else if (Constant *C = dyn_cast<Constant>(U)) {
1307 for (User *UU : C->users())
1308 Worklist.push_back(UU);
Nick Lewycky5361b842011-01-02 19:16:44 +00001309 }
Nick Lewycky00959372010-09-05 08:22:49 +00001310 }
Nick Lewycky0464d1d2010-08-31 05:53:05 +00001311 }
Nick Lewycky00959372010-09-05 08:22:49 +00001312}