blob: 7130b54311677c5b7e75beca8e2aa22c6ffa0b27 [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"
Stepan Dyatkovskiya77f3d82014-06-21 18:58:11 +000063#include "llvm/Support/CommandLine.h"
Nick Lewyckyd01d42e2008-11-02 05:52:50 +000064#include "llvm/Support/Debug.h"
Torok Edwin56d06592009-07-11 20:10:48 +000065#include "llvm/Support/ErrorHandling.h"
Daniel Dunbar0dd5e1e2009-07-25 00:23:56 +000066#include "llvm/Support/raw_ostream.h"
Nick Lewycky68984ed2010-08-31 08:29:37 +000067#include <vector>
Nick Lewyckyd01d42e2008-11-02 05:52:50 +000068using namespace llvm;
69
Chandler Carruth964daaa2014-04-22 02:55:47 +000070#define DEBUG_TYPE "mergefunc"
71
Nick Lewyckyd01d42e2008-11-02 05:52:50 +000072STATISTIC(NumFunctionsMerged, "Number of functions merged");
Nick Lewycky71972d42010-09-07 01:42:10 +000073STATISTIC(NumThunksWritten, "Number of thunks generated");
Nick Lewyckyf1cec162011-01-25 08:56:50 +000074STATISTIC(NumAliasesWritten, "Number of aliases generated");
Nick Lewycky71972d42010-09-07 01:42:10 +000075STATISTIC(NumDoubleWeak, "Number of new functions created");
Nick Lewyckyd01d42e2008-11-02 05:52:50 +000076
Stepan Dyatkovskiya77f3d82014-06-21 18:58:11 +000077static cl::opt<unsigned> NumFunctionsForSanityCheck(
78 "mergefunc-sanity",
79 cl::desc("How many functions in module could be used for "
80 "MergeFunctions pass sanity check. "
81 "'0' disables this check. Works only with '-debug' key."),
82 cl::init(0), cl::Hidden);
83
Benjamin Kramer630e6e12013-04-19 23:06:44 +000084/// Returns the type id for a type to be hashed. We turn pointer types into
85/// integers here because the actual compare logic below considers pointers and
86/// integers of the same size as equal.
87static Type::TypeID getTypeIDForHash(Type *Ty) {
88 if (Ty->isPointerTy())
89 return Type::IntegerTyID;
90 return Ty->getTypeID();
91}
92
Nick Lewyckycfb284c2011-01-28 08:43:14 +000093/// Creates a hash-code for the function which is the same for any two
94/// functions that will compare equal, without looking at the instructions
95/// inside the function.
96static unsigned profileFunction(const Function *F) {
Chris Lattner229907c2011-07-18 04:54:35 +000097 FunctionType *FTy = F->getFunctionType();
Nick Lewyckyfbd27572010-08-08 05:04:23 +000098
Nick Lewycky00959372010-09-05 08:22:49 +000099 FoldingSetNodeID ID;
100 ID.AddInteger(F->size());
101 ID.AddInteger(F->getCallingConv());
102 ID.AddBoolean(F->hasGC());
103 ID.AddBoolean(FTy->isVarArg());
Benjamin Kramer630e6e12013-04-19 23:06:44 +0000104 ID.AddInteger(getTypeIDForHash(FTy->getReturnType()));
Nick Lewycky00959372010-09-05 08:22:49 +0000105 for (unsigned i = 0, e = FTy->getNumParams(); i != e; ++i)
Benjamin Kramer630e6e12013-04-19 23:06:44 +0000106 ID.AddInteger(getTypeIDForHash(FTy->getParamType(i)));
Nick Lewycky00959372010-09-05 08:22:49 +0000107 return ID.ComputeHash();
Nick Lewyckyd01d42e2008-11-02 05:52:50 +0000108}
109
Nick Lewycky71972d42010-09-07 01:42:10 +0000110namespace {
111
Nick Lewyckyaaf40122011-01-28 08:19:00 +0000112/// ComparableFunction - A struct that pairs together functions with a
Micah Villmowcdfe20b2012-10-08 16:38:25 +0000113/// DataLayout so that we can keep them together as elements in the DenseSet.
Nick Lewycky00959372010-09-05 08:22:49 +0000114class ComparableFunction {
115public:
Nick Lewyckyf3a07ec2010-09-05 09:00:32 +0000116 static const ComparableFunction EmptyKey;
117 static const ComparableFunction TombstoneKey;
Micah Villmowcdfe20b2012-10-08 16:38:25 +0000118 static DataLayout * const LookupOnly;
Nick Lewyckyf3a07ec2010-09-05 09:00:32 +0000119
Rafael Espindolaaeff8a92014-02-24 23:12:18 +0000120 ComparableFunction(Function *Func, const DataLayout *DL)
Rafael Espindola37dc9e12014-02-21 00:06:31 +0000121 : Func(Func), Hash(profileFunction(Func)), DL(DL) {}
Nick Lewycky00959372010-09-05 08:22:49 +0000122
Nick Lewyckyf3a07ec2010-09-05 09:00:32 +0000123 Function *getFunc() const { return Func; }
124 unsigned getHash() const { return Hash; }
Rafael Espindolaaeff8a92014-02-24 23:12:18 +0000125 const DataLayout *getDataLayout() const { return DL; }
Nick Lewyckyf3a07ec2010-09-05 09:00:32 +0000126
127 // Drops AssertingVH reference to the function. Outside of debug mode, this
128 // does nothing.
129 void release() {
130 assert(Func &&
131 "Attempted to release function twice, or release empty/tombstone!");
Craig Topperf40110f2014-04-25 05:29:35 +0000132 Func = nullptr;
Nick Lewyckyf3a07ec2010-09-05 09:00:32 +0000133 }
134
135private:
136 explicit ComparableFunction(unsigned Hash)
Craig Topperf40110f2014-04-25 05:29:35 +0000137 : Func(nullptr), Hash(Hash), DL(nullptr) {}
Nick Lewyckyf3a07ec2010-09-05 09:00:32 +0000138
139 AssertingVH<Function> Func;
140 unsigned Hash;
Rafael Espindolaaeff8a92014-02-24 23:12:18 +0000141 const DataLayout *DL;
Nick Lewycky00959372010-09-05 08:22:49 +0000142};
143
Nick Lewyckyf3a07ec2010-09-05 09:00:32 +0000144const ComparableFunction ComparableFunction::EmptyKey = ComparableFunction(0);
145const ComparableFunction ComparableFunction::TombstoneKey =
146 ComparableFunction(1);
Micah Villmowcdfe20b2012-10-08 16:38:25 +0000147DataLayout *const ComparableFunction::LookupOnly = (DataLayout*)(-1);
Nick Lewyckyf3a07ec2010-09-05 09:00:32 +0000148
Nick Lewycky71972d42010-09-07 01:42:10 +0000149}
Nick Lewyckyf3a07ec2010-09-05 09:00:32 +0000150
151namespace llvm {
152 template <>
153 struct DenseMapInfo<ComparableFunction> {
154 static ComparableFunction getEmptyKey() {
155 return ComparableFunction::EmptyKey;
156 }
157 static ComparableFunction getTombstoneKey() {
158 return ComparableFunction::TombstoneKey;
159 }
160 static unsigned getHashValue(const ComparableFunction &CF) {
161 return CF.getHash();
162 }
163 static bool isEqual(const ComparableFunction &LHS,
164 const ComparableFunction &RHS);
165 };
166}
167
168namespace {
Nick Lewycky00959372010-09-05 08:22:49 +0000169
Nick Lewyckyfbd27572010-08-08 05:04:23 +0000170/// FunctionComparator - Compares two functions to determine whether or not
Micah Villmowcdfe20b2012-10-08 16:38:25 +0000171/// they will generate machine code with the same behaviour. DataLayout is
Nick Lewyckyfbd27572010-08-08 05:04:23 +0000172/// used if available. The comparator always fails conservatively (erring on the
173/// side of claiming that two functions are different).
Nick Lewyckyf52bd9c2010-08-02 05:23:03 +0000174class FunctionComparator {
175public:
Rafael Espindola37dc9e12014-02-21 00:06:31 +0000176 FunctionComparator(const DataLayout *DL, const Function *F1,
Nick Lewycky0464d1d2010-08-31 05:53:05 +0000177 const Function *F2)
Stepan Dyatkovskiy17ee5ac2014-06-21 17:55:51 +0000178 : FnL(F1), FnR(F2), DL(DL) {}
Nick Lewyckye04dc222009-06-12 08:04:51 +0000179
Nick Lewyckycfb284c2011-01-28 08:43:14 +0000180 /// Test whether the two functions have equivalent behaviour.
Stepan Dyatkovskiy17ee5ac2014-06-21 17:55:51 +0000181 int compare();
Nick Lewyckyf52bd9c2010-08-02 05:23:03 +0000182
183private:
Nick Lewyckycfb284c2011-01-28 08:43:14 +0000184 /// Test whether two basic blocks have equivalent behaviour.
Stepan Dyatkovskiy17ee5ac2014-06-21 17:55:51 +0000185 int compare(const BasicBlock *BBL, const BasicBlock *BBR);
Nick Lewyckyf52bd9c2010-08-02 05:23:03 +0000186
Stepan Dyatkovskiyd1031302014-05-07 09:05:10 +0000187 /// Constants comparison.
188 /// Its analog to lexicographical comparison between hypothetical numbers
189 /// of next format:
190 /// <bitcastability-trait><raw-bit-contents>
191 ///
192 /// 1. Bitcastability.
193 /// Check whether L's type could be losslessly bitcasted to R's type.
194 /// On this stage method, in case when lossless bitcast is not possible
195 /// method returns -1 or 1, thus also defining which type is greater in
196 /// context of bitcastability.
197 /// Stage 0: If types are equal in terms of cmpTypes, then we can go straight
198 /// to the contents comparison.
199 /// If types differ, remember types comparison result and check
200 /// whether we still can bitcast types.
201 /// Stage 1: Types that satisfies isFirstClassType conditions are always
202 /// greater then others.
203 /// Stage 2: Vector is greater then non-vector.
204 /// If both types are vectors, then vector with greater bitwidth is
205 /// greater.
206 /// If both types are vectors with the same bitwidth, then types
207 /// are bitcastable, and we can skip other stages, and go to contents
208 /// comparison.
209 /// Stage 3: Pointer types are greater than non-pointers. If both types are
210 /// pointers of the same address space - go to contents comparison.
211 /// Different address spaces: pointer with greater address space is
212 /// greater.
213 /// Stage 4: Types are neither vectors, nor pointers. And they differ.
214 /// We don't know how to bitcast them. So, we better don't do it,
215 /// and return types comparison result (so it determines the
216 /// relationship among constants we don't know how to bitcast).
217 ///
218 /// Just for clearance, let's see how the set of constants could look
219 /// on single dimension axis:
220 ///
221 /// [NFCT], [FCT, "others"], [FCT, pointers], [FCT, vectors]
222 /// Where: NFCT - Not a FirstClassType
223 /// FCT - FirstClassTyp:
224 ///
225 /// 2. Compare raw contents.
226 /// It ignores types on this stage and only compares bits from L and R.
227 /// Returns 0, if L and R has equivalent contents.
228 /// -1 or 1 if values are different.
229 /// Pretty trivial:
230 /// 2.1. If contents are numbers, compare numbers.
231 /// Ints with greater bitwidth are greater. Ints with same bitwidths
232 /// compared by their contents.
233 /// 2.2. "And so on". Just to avoid discrepancies with comments
234 /// perhaps it would be better to read the implementation itself.
235 /// 3. And again about overall picture. Let's look back at how the ordered set
236 /// of constants will look like:
237 /// [NFCT], [FCT, "others"], [FCT, pointers], [FCT, vectors]
238 ///
239 /// Now look, what could be inside [FCT, "others"], for example:
240 /// [FCT, "others"] =
241 /// [
242 /// [double 0.1], [double 1.23],
243 /// [i32 1], [i32 2],
244 /// { double 1.0 }, ; StructTyID, NumElements = 1
245 /// { i32 1 }, ; StructTyID, NumElements = 1
246 /// { double 1, i32 1 }, ; StructTyID, NumElements = 2
247 /// { i32 1, double 1 } ; StructTyID, NumElements = 2
248 /// ]
249 ///
250 /// Let's explain the order. Float numbers will be less than integers, just
251 /// because of cmpType terms: FloatTyID < IntegerTyID.
252 /// Floats (with same fltSemantics) are sorted according to their value.
253 /// Then you can see integers, and they are, like a floats,
254 /// could be easy sorted among each others.
255 /// The structures. Structures are grouped at the tail, again because of their
256 /// TypeID: StructTyID > IntegerTyID > FloatTyID.
257 /// Structures with greater number of elements are greater. Structures with
258 /// greater elements going first are greater.
259 /// The same logic with vectors, arrays and other possible complex types.
260 ///
261 /// Bitcastable constants.
262 /// Let's assume, that some constant, belongs to some group of
263 /// "so-called-equal" values with different types, and at the same time
264 /// belongs to another group of constants with equal types
265 /// and "really" equal values.
266 ///
267 /// Now, prove that this is impossible:
268 ///
269 /// If constant A with type TyA is bitcastable to B with type TyB, then:
270 /// 1. All constants with equal types to TyA, are bitcastable to B. Since
271 /// those should be vectors (if TyA is vector), pointers
272 /// (if TyA is pointer), or else (if TyA equal to TyB), those types should
273 /// be equal to TyB.
274 /// 2. All constants with non-equal, but bitcastable types to TyA, are
275 /// bitcastable to B.
276 /// Once again, just because we allow it to vectors and pointers only.
277 /// This statement could be expanded as below:
278 /// 2.1. All vectors with equal bitwidth to vector A, has equal bitwidth to
279 /// vector B, and thus bitcastable to B as well.
280 /// 2.2. All pointers of the same address space, no matter what they point to,
281 /// bitcastable. So if C is pointer, it could be bitcasted to A and to B.
282 /// So any constant equal or bitcastable to A is equal or bitcastable to B.
283 /// QED.
284 ///
285 /// In another words, for pointers and vectors, we ignore top-level type and
286 /// look at their particular properties (bit-width for vectors, and
287 /// address space for pointers).
288 /// If these properties are equal - compare their contents.
289 int cmpConstants(const Constant *L, const Constant *R);
290
Nick Lewyckycfb284c2011-01-28 08:43:14 +0000291 /// Assign or look up previously assigned numbers for the two values, and
292 /// return whether the numbers are equal. Numbers are assigned in the order
293 /// visited.
Stepan Dyatkovskiycfd641f2014-05-07 11:11:39 +0000294 /// Comparison order:
295 /// Stage 0: Value that is function itself is always greater then others.
296 /// If left and right values are references to their functions, then
297 /// they are equal.
298 /// Stage 1: Constants are greater than non-constants.
299 /// If both left and right are constants, then the result of
300 /// cmpConstants is used as cmpValues result.
301 /// Stage 2: InlineAsm instances are greater than others. If both left and
302 /// right are InlineAsm instances, InlineAsm* pointers casted to
303 /// integers and compared as numbers.
304 /// Stage 3: For all other cases we compare order we meet these values in
305 /// their functions. If right value was met first during scanning,
306 /// then left value is greater.
307 /// In another words, we compare serial numbers, for more details
308 /// see comments for sn_mapL and sn_mapR.
309 int cmpValues(const Value *L, const Value *R);
310
311 bool enumerate(const Value *V1, const Value *V2) {
312 return cmpValues(V1, V2) == 0;
313 }
Nick Lewyckyf52bd9c2010-08-02 05:23:03 +0000314
Nick Lewyckycfb284c2011-01-28 08:43:14 +0000315 /// Compare two Instructions for equivalence, similar to
316 /// Instruction::isSameOperationAs but with modifications to the type
Nick Lewyckyfbd27572010-08-08 05:04:23 +0000317 /// comparison.
Stepan Dyatkovskiyfa6820a2014-05-16 11:02:22 +0000318 /// Stages are listed in "most significant stage first" order:
319 /// On each stage below, we do comparison between some left and right
320 /// operation parts. If parts are non-equal, we assign parts comparison
321 /// result to the operation comparison result and exit from method.
322 /// Otherwise we proceed to the next stage.
323 /// Stages:
324 /// 1. Operations opcodes. Compared as numbers.
325 /// 2. Number of operands.
326 /// 3. Operation types. Compared with cmpType method.
327 /// 4. Compare operation subclass optional data as stream of bytes:
328 /// just convert it to integers and call cmpNumbers.
329 /// 5. Compare in operation operand types with cmpType in
330 /// most significant operand first order.
331 /// 6. Last stage. Check operations for some specific attributes.
332 /// For example, for Load it would be:
333 /// 6.1.Load: volatile (as boolean flag)
334 /// 6.2.Load: alignment (as integer numbers)
335 /// 6.3.Load: synch-scope (as integer numbers)
Stepan Dyatkovskiy6baeb882014-06-20 19:11:56 +0000336 /// 6.4.Load: range metadata (as integer numbers)
Stepan Dyatkovskiyfa6820a2014-05-16 11:02:22 +0000337 /// On this stage its better to see the code, since its not more than 10-15
338 /// strings for particular instruction, and could change sometimes.
339 int cmpOperation(const Instruction *L, const Instruction *R) const;
340
Nick Lewyckyf52bd9c2010-08-02 05:23:03 +0000341 bool isEquivalentOperation(const Instruction *I1,
Stepan Dyatkovskiyfa6820a2014-05-16 11:02:22 +0000342 const Instruction *I2) const {
343 return cmpOperation(I1, I2) == 0;
344 }
Nick Lewyckyf52bd9c2010-08-02 05:23:03 +0000345
Nick Lewyckycfb284c2011-01-28 08:43:14 +0000346 /// Compare two GEPs for equivalent pointer arithmetic.
Stepan Dyatkovskiy948366a2014-05-16 11:55:02 +0000347 /// Parts to be compared for each comparison stage,
348 /// most significant stage first:
349 /// 1. Address space. As numbers.
350 /// 2. Constant offset, (if "DataLayout *DL" field is not NULL,
351 /// using GEPOperator::accumulateConstantOffset method).
352 /// 3. Pointer operand type (using cmpType method).
353 /// 4. Number of operands.
354 /// 5. Compare operands, using cmpValues method.
355 int cmpGEP(const GEPOperator *GEPL, const GEPOperator *GEPR);
356 int cmpGEP(const GetElementPtrInst *GEPL, const GetElementPtrInst *GEPR) {
357 return cmpGEP(cast<GEPOperator>(GEPL), cast<GEPOperator>(GEPR));
358 }
359
360 bool isEquivalentGEP(const GEPOperator *GEP1, const GEPOperator *GEP2) {
361 return cmpGEP(GEP1, GEP2) == 0;
362 }
Nick Lewyckyf52bd9c2010-08-02 05:23:03 +0000363 bool isEquivalentGEP(const GetElementPtrInst *GEP1,
Nick Lewyckyfbd27572010-08-08 05:04:23 +0000364 const GetElementPtrInst *GEP2) {
Nick Lewyckyf52bd9c2010-08-02 05:23:03 +0000365 return isEquivalentGEP(cast<GEPOperator>(GEP1), cast<GEPOperator>(GEP2));
366 }
367
Stepan Dyatkovskiyd8eb0bc2014-03-13 11:54:50 +0000368 /// cmpType - compares two types,
369 /// defines total ordering among the types set.
370 ///
371 /// Return values:
372 /// 0 if types are equal,
373 /// -1 if Left is less than Right,
374 /// +1 if Left is greater than Right.
375 ///
376 /// Description:
377 /// Comparison is broken onto stages. Like in lexicographical comparison
378 /// stage coming first has higher priority.
379 /// On each explanation stage keep in mind total ordering properties.
380 ///
Stepan Dyatkovskiy90c44362014-03-14 08:17:19 +0000381 /// 0. Before comparison we coerce pointer types of 0 address space to
382 /// integer.
Stepan Dyatkovskiyd8eb0bc2014-03-13 11:54:50 +0000383 /// We also don't bother with same type at left and right, so
384 /// just return 0 in this case.
385 ///
386 /// 1. If types are of different kind (different type IDs).
387 /// Return result of type IDs comparison, treating them as numbers.
388 /// 2. If types are vectors or integers, compare Type* values as numbers.
389 /// 3. Types has same ID, so check whether they belongs to the next group:
390 /// * Void
391 /// * Float
392 /// * Double
393 /// * X86_FP80
394 /// * FP128
395 /// * PPC_FP128
396 /// * Label
397 /// * Metadata
398 /// If so - return 0, yes - we can treat these types as equal only because
399 /// their IDs are same.
400 /// 4. If Left and Right are pointers, return result of address space
401 /// comparison (numbers comparison). We can treat pointer types of same
402 /// address space as equal.
403 /// 5. If types are complex.
404 /// Then both Left and Right are to be expanded and their element types will
405 /// be checked with the same way. If we get Res != 0 on some stage, return it.
406 /// Otherwise return 0.
407 /// 6. For all other cases put llvm_unreachable.
408 int cmpType(Type *TyL, Type *TyR) const;
409
410 bool isEquivalentType(Type *Ty1, Type *Ty2) const {
411 return cmpType(Ty1, Ty2) == 0;
412 }
413
414 int cmpNumbers(uint64_t L, uint64_t R) const;
Nick Lewyckyf52bd9c2010-08-02 05:23:03 +0000415
Stepan Dyatkovskiyd1031302014-05-07 09:05:10 +0000416 int cmpAPInt(const APInt &L, const APInt &R) const;
417 int cmpAPFloat(const APFloat &L, const APFloat &R) const;
Stepan Dyatkovskiy5c2cc252014-05-16 08:55:34 +0000418 int cmpStrings(StringRef L, StringRef R) const;
419 int cmpAttrs(const AttributeSet L, const AttributeSet R) const;
Stepan Dyatkovskiyd1031302014-05-07 09:05:10 +0000420
Nick Lewyckyf52bd9c2010-08-02 05:23:03 +0000421 // The two functions undergoing comparison.
Stepan Dyatkovskiy17ee5ac2014-06-21 17:55:51 +0000422 const Function *FnL, *FnR;
Nick Lewyckyf52bd9c2010-08-02 05:23:03 +0000423
Rafael Espindola37dc9e12014-02-21 00:06:31 +0000424 const DataLayout *DL;
Nick Lewyckyf52bd9c2010-08-02 05:23:03 +0000425
Stepan Dyatkovskiycfd641f2014-05-07 11:11:39 +0000426 /// Assign serial numbers to values from left function, and values from
427 /// right function.
428 /// Explanation:
429 /// Being comparing functions we need to compare values we meet at left and
430 /// right sides.
431 /// Its easy to sort things out for external values. It just should be
432 /// the same value at left and right.
433 /// But for local values (those were introduced inside function body)
434 /// we have to ensure they were introduced at exactly the same place,
435 /// and plays the same role.
436 /// Let's assign serial number to each value when we meet it first time.
437 /// Values that were met at same place will be with same serial numbers.
438 /// In this case it would be good to explain few points about values assigned
439 /// to BBs and other ways of implementation (see below).
440 ///
441 /// 1. Safety of BB reordering.
442 /// It's safe to change the order of BasicBlocks in function.
443 /// Relationship with other functions and serial numbering will not be
444 /// changed in this case.
445 /// As follows from FunctionComparator::compare(), we do CFG walk: we start
446 /// from the entry, and then take each terminator. So it doesn't matter how in
447 /// fact BBs are ordered in function. And since cmpValues are called during
448 /// this walk, the numbering depends only on how BBs located inside the CFG.
449 /// So the answer is - yes. We will get the same numbering.
450 ///
451 /// 2. Impossibility to use dominance properties of values.
452 /// If we compare two instruction operands: first is usage of local
453 /// variable AL from function FL, and second is usage of local variable AR
454 /// from FR, we could compare their origins and check whether they are
455 /// defined at the same place.
456 /// But, we are still not able to compare operands of PHI nodes, since those
457 /// could be operands from further BBs we didn't scan yet.
458 /// So it's impossible to use dominance properties in general.
459 DenseMap<const Value*, int> sn_mapL, sn_mapR;
Nick Lewyckyf52bd9c2010-08-02 05:23:03 +0000460};
Nick Lewycky564fcca2011-01-28 07:36:21 +0000461
Nick Lewyckyf52bd9c2010-08-02 05:23:03 +0000462}
463
Stepan Dyatkovskiyd8eb0bc2014-03-13 11:54:50 +0000464int FunctionComparator::cmpNumbers(uint64_t L, uint64_t R) const {
465 if (L < R) return -1;
466 if (L > R) return 1;
467 return 0;
468}
Stepan Dyatkovskiyabb85052013-11-26 16:11:03 +0000469
Stepan Dyatkovskiyd1031302014-05-07 09:05:10 +0000470int FunctionComparator::cmpAPInt(const APInt &L, const APInt &R) const {
471 if (int Res = cmpNumbers(L.getBitWidth(), R.getBitWidth()))
472 return Res;
473 if (L.ugt(R)) return 1;
474 if (R.ugt(L)) return -1;
475 return 0;
476}
477
478int FunctionComparator::cmpAPFloat(const APFloat &L, const APFloat &R) const {
479 if (int Res = cmpNumbers((uint64_t)&L.getSemantics(),
480 (uint64_t)&R.getSemantics()))
481 return Res;
482 return cmpAPInt(L.bitcastToAPInt(), R.bitcastToAPInt());
483}
484
Stepan Dyatkovskiy5c2cc252014-05-16 08:55:34 +0000485int FunctionComparator::cmpStrings(StringRef L, StringRef R) const {
486 // Prevent heavy comparison, compare sizes first.
487 if (int Res = cmpNumbers(L.size(), R.size()))
488 return Res;
489
490 // Compare strings lexicographically only when it is necessary: only when
491 // strings are equal in size.
492 return L.compare(R);
493}
494
495int FunctionComparator::cmpAttrs(const AttributeSet L,
496 const AttributeSet R) const {
497 if (int Res = cmpNumbers(L.getNumSlots(), R.getNumSlots()))
498 return Res;
499
500 for (unsigned i = 0, e = L.getNumSlots(); i != e; ++i) {
501 AttributeSet::iterator LI = L.begin(i), LE = L.end(i), RI = R.begin(i),
502 RE = R.end(i);
503 for (; LI != LE && RI != RE; ++LI, ++RI) {
504 Attribute LA = *LI;
505 Attribute RA = *RI;
506 if (LA < RA)
507 return -1;
508 if (RA < LA)
509 return 1;
510 }
511 if (LI != LE)
512 return 1;
513 if (RI != RE)
514 return -1;
515 }
516 return 0;
517}
518
Stepan Dyatkovskiyd1031302014-05-07 09:05:10 +0000519/// Constants comparison:
520/// 1. Check whether type of L constant could be losslessly bitcasted to R
521/// type.
522/// 2. Compare constant contents.
523/// For more details see declaration comments.
524int FunctionComparator::cmpConstants(const Constant *L, const Constant *R) {
525
526 Type *TyL = L->getType();
527 Type *TyR = R->getType();
528
529 // Check whether types are bitcastable. This part is just re-factored
530 // Type::canLosslesslyBitCastTo method, but instead of returning true/false,
531 // we also pack into result which type is "less" for us.
532 int TypesRes = cmpType(TyL, TyR);
533 if (TypesRes != 0) {
534 // Types are different, but check whether we can bitcast them.
535 if (!TyL->isFirstClassType()) {
536 if (TyR->isFirstClassType())
537 return -1;
538 // Neither TyL nor TyR are values of first class type. Return the result
539 // of comparing the types
540 return TypesRes;
541 }
542 if (!TyR->isFirstClassType()) {
543 if (TyL->isFirstClassType())
544 return 1;
545 return TypesRes;
546 }
547
548 // Vector -> Vector conversions are always lossless if the two vector types
549 // have the same size, otherwise not.
550 unsigned TyLWidth = 0;
551 unsigned TyRWidth = 0;
552
553 if (const VectorType *VecTyL = dyn_cast<VectorType>(TyL))
554 TyLWidth = VecTyL->getBitWidth();
555 if (const VectorType *VecTyR = dyn_cast<VectorType>(TyR))
556 TyRWidth = VecTyR->getBitWidth();
557
558 if (TyLWidth != TyRWidth)
559 return cmpNumbers(TyLWidth, TyRWidth);
560
561 // Zero bit-width means neither TyL nor TyR are vectors.
562 if (!TyLWidth) {
563 PointerType *PTyL = dyn_cast<PointerType>(TyL);
564 PointerType *PTyR = dyn_cast<PointerType>(TyR);
565 if (PTyL && PTyR) {
566 unsigned AddrSpaceL = PTyL->getAddressSpace();
567 unsigned AddrSpaceR = PTyR->getAddressSpace();
568 if (int Res = cmpNumbers(AddrSpaceL, AddrSpaceR))
569 return Res;
570 }
571 if (PTyL)
572 return 1;
573 if (PTyR)
574 return -1;
575
576 // TyL and TyR aren't vectors, nor pointers. We don't know how to
577 // bitcast them.
578 return TypesRes;
579 }
580 }
581
582 // OK, types are bitcastable, now check constant contents.
583
584 if (L->isNullValue() && R->isNullValue())
585 return TypesRes;
586 if (L->isNullValue() && !R->isNullValue())
587 return 1;
588 if (!L->isNullValue() && R->isNullValue())
589 return -1;
590
591 if (int Res = cmpNumbers(L->getValueID(), R->getValueID()))
592 return Res;
593
594 switch (L->getValueID()) {
595 case Value::UndefValueVal: return TypesRes;
596 case Value::ConstantIntVal: {
597 const APInt &LInt = cast<ConstantInt>(L)->getValue();
598 const APInt &RInt = cast<ConstantInt>(R)->getValue();
599 return cmpAPInt(LInt, RInt);
600 }
601 case Value::ConstantFPVal: {
602 const APFloat &LAPF = cast<ConstantFP>(L)->getValueAPF();
603 const APFloat &RAPF = cast<ConstantFP>(R)->getValueAPF();
604 return cmpAPFloat(LAPF, RAPF);
605 }
606 case Value::ConstantArrayVal: {
607 const ConstantArray *LA = cast<ConstantArray>(L);
608 const ConstantArray *RA = cast<ConstantArray>(R);
609 uint64_t NumElementsL = cast<ArrayType>(TyL)->getNumElements();
610 uint64_t NumElementsR = cast<ArrayType>(TyR)->getNumElements();
611 if (int Res = cmpNumbers(NumElementsL, NumElementsR))
612 return Res;
613 for (uint64_t i = 0; i < NumElementsL; ++i) {
614 if (int Res = cmpConstants(cast<Constant>(LA->getOperand(i)),
615 cast<Constant>(RA->getOperand(i))))
616 return Res;
617 }
618 return 0;
619 }
620 case Value::ConstantStructVal: {
621 const ConstantStruct *LS = cast<ConstantStruct>(L);
622 const ConstantStruct *RS = cast<ConstantStruct>(R);
623 unsigned NumElementsL = cast<StructType>(TyL)->getNumElements();
624 unsigned NumElementsR = cast<StructType>(TyR)->getNumElements();
625 if (int Res = cmpNumbers(NumElementsL, NumElementsR))
626 return Res;
627 for (unsigned i = 0; i != NumElementsL; ++i) {
628 if (int Res = cmpConstants(cast<Constant>(LS->getOperand(i)),
629 cast<Constant>(RS->getOperand(i))))
630 return Res;
631 }
632 return 0;
633 }
634 case Value::ConstantVectorVal: {
635 const ConstantVector *LV = cast<ConstantVector>(L);
636 const ConstantVector *RV = cast<ConstantVector>(R);
637 unsigned NumElementsL = cast<VectorType>(TyL)->getNumElements();
638 unsigned NumElementsR = cast<VectorType>(TyR)->getNumElements();
639 if (int Res = cmpNumbers(NumElementsL, NumElementsR))
640 return Res;
641 for (uint64_t i = 0; i < NumElementsL; ++i) {
642 if (int Res = cmpConstants(cast<Constant>(LV->getOperand(i)),
643 cast<Constant>(RV->getOperand(i))))
644 return Res;
645 }
646 return 0;
647 }
648 case Value::ConstantExprVal: {
649 const ConstantExpr *LE = cast<ConstantExpr>(L);
650 const ConstantExpr *RE = cast<ConstantExpr>(R);
651 unsigned NumOperandsL = LE->getNumOperands();
652 unsigned NumOperandsR = RE->getNumOperands();
653 if (int Res = cmpNumbers(NumOperandsL, NumOperandsR))
654 return Res;
655 for (unsigned i = 0; i < NumOperandsL; ++i) {
656 if (int Res = cmpConstants(cast<Constant>(LE->getOperand(i)),
657 cast<Constant>(RE->getOperand(i))))
658 return Res;
659 }
660 return 0;
661 }
662 case Value::FunctionVal:
663 case Value::GlobalVariableVal:
664 case Value::GlobalAliasVal:
665 default: // Unknown constant, cast L and R pointers to numbers and compare.
666 return cmpNumbers((uint64_t)L, (uint64_t)R);
667 }
668}
669
Stepan Dyatkovskiyd8eb0bc2014-03-13 11:54:50 +0000670/// cmpType - compares two types,
671/// defines total ordering among the types set.
672/// See method declaration comments for more details.
673int FunctionComparator::cmpType(Type *TyL, Type *TyR) const {
674
Stepan Dyatkovskiya53cf972014-03-14 08:48:52 +0000675 PointerType *PTyL = dyn_cast<PointerType>(TyL);
676 PointerType *PTyR = dyn_cast<PointerType>(TyR);
Stepan Dyatkovskiyabb85052013-11-26 16:11:03 +0000677
Rafael Espindola37dc9e12014-02-21 00:06:31 +0000678 if (DL) {
Stepan Dyatkovskiya53cf972014-03-14 08:48:52 +0000679 if (PTyL && PTyL->getAddressSpace() == 0) TyL = DL->getIntPtrType(TyL);
680 if (PTyR && PTyR->getAddressSpace() == 0) TyR = DL->getIntPtrType(TyR);
Stepan Dyatkovskiyabb85052013-11-26 16:11:03 +0000681 }
682
Stepan Dyatkovskiyd8eb0bc2014-03-13 11:54:50 +0000683 if (TyL == TyR)
684 return 0;
Matt Arsenault5bcefab2013-11-10 01:44:37 +0000685
Stepan Dyatkovskiyd8eb0bc2014-03-13 11:54:50 +0000686 if (int Res = cmpNumbers(TyL->getTypeID(), TyR->getTypeID()))
687 return Res;
Nick Lewyckye04dc222009-06-12 08:04:51 +0000688
Stepan Dyatkovskiyd8eb0bc2014-03-13 11:54:50 +0000689 switch (TyL->getTypeID()) {
Nick Lewyckyd3c6dfe2010-05-13 05:48:45 +0000690 default:
691 llvm_unreachable("Unknown type!");
Duncan Sands408bb192010-07-07 07:48:00 +0000692 // Fall through in Release mode.
Nick Lewyckyd3c6dfe2010-05-13 05:48:45 +0000693 case Type::IntegerTyID:
Nick Lewyckyfb622f92011-01-26 08:50:18 +0000694 case Type::VectorTyID:
Stepan Dyatkovskiyd8eb0bc2014-03-13 11:54:50 +0000695 // TyL == TyR would have returned true earlier.
696 return cmpNumbers((uint64_t)TyL, (uint64_t)TyR);
Nick Lewyckyd3c6dfe2010-05-13 05:48:45 +0000697
Nick Lewyckye04dc222009-06-12 08:04:51 +0000698 case Type::VoidTyID:
699 case Type::FloatTyID:
700 case Type::DoubleTyID:
701 case Type::X86_FP80TyID:
702 case Type::FP128TyID:
703 case Type::PPC_FP128TyID:
704 case Type::LabelTyID:
705 case Type::MetadataTyID:
Stepan Dyatkovskiyd8eb0bc2014-03-13 11:54:50 +0000706 return 0;
Nick Lewyckye04dc222009-06-12 08:04:51 +0000707
Nick Lewyckye04dc222009-06-12 08:04:51 +0000708 case Type::PointerTyID: {
Stepan Dyatkovskiya53cf972014-03-14 08:48:52 +0000709 assert(PTyL && PTyR && "Both types must be pointers here.");
710 return cmpNumbers(PTyL->getAddressSpace(), PTyR->getAddressSpace());
Nick Lewyckye04dc222009-06-12 08:04:51 +0000711 }
712
713 case Type::StructTyID: {
Stepan Dyatkovskiya53cf972014-03-14 08:48:52 +0000714 StructType *STyL = cast<StructType>(TyL);
715 StructType *STyR = cast<StructType>(TyR);
716 if (STyL->getNumElements() != STyR->getNumElements())
717 return cmpNumbers(STyL->getNumElements(), STyR->getNumElements());
Nick Lewyckye04dc222009-06-12 08:04:51 +0000718
Stepan Dyatkovskiya53cf972014-03-14 08:48:52 +0000719 if (STyL->isPacked() != STyR->isPacked())
720 return cmpNumbers(STyL->isPacked(), STyR->isPacked());
Nick Lewyckye04dc222009-06-12 08:04:51 +0000721
Stepan Dyatkovskiya53cf972014-03-14 08:48:52 +0000722 for (unsigned i = 0, e = STyL->getNumElements(); i != e; ++i) {
723 if (int Res = cmpType(STyL->getElementType(i),
724 STyR->getElementType(i)))
Stepan Dyatkovskiyd8eb0bc2014-03-13 11:54:50 +0000725 return Res;
Nick Lewyckye04dc222009-06-12 08:04:51 +0000726 }
Stepan Dyatkovskiyd8eb0bc2014-03-13 11:54:50 +0000727 return 0;
Nick Lewyckye04dc222009-06-12 08:04:51 +0000728 }
729
730 case Type::FunctionTyID: {
Stepan Dyatkovskiya53cf972014-03-14 08:48:52 +0000731 FunctionType *FTyL = cast<FunctionType>(TyL);
732 FunctionType *FTyR = cast<FunctionType>(TyR);
733 if (FTyL->getNumParams() != FTyR->getNumParams())
734 return cmpNumbers(FTyL->getNumParams(), FTyR->getNumParams());
Nick Lewyckye04dc222009-06-12 08:04:51 +0000735
Stepan Dyatkovskiya53cf972014-03-14 08:48:52 +0000736 if (FTyL->isVarArg() != FTyR->isVarArg())
737 return cmpNumbers(FTyL->isVarArg(), FTyR->isVarArg());
Stepan Dyatkovskiyd8eb0bc2014-03-13 11:54:50 +0000738
Stepan Dyatkovskiya53cf972014-03-14 08:48:52 +0000739 if (int Res = cmpType(FTyL->getReturnType(), FTyR->getReturnType()))
Stepan Dyatkovskiyd8eb0bc2014-03-13 11:54:50 +0000740 return Res;
Nick Lewyckye04dc222009-06-12 08:04:51 +0000741
Stepan Dyatkovskiya53cf972014-03-14 08:48:52 +0000742 for (unsigned i = 0, e = FTyL->getNumParams(); i != e; ++i) {
743 if (int Res = cmpType(FTyL->getParamType(i), FTyR->getParamType(i)))
Stepan Dyatkovskiyd8eb0bc2014-03-13 11:54:50 +0000744 return Res;
Nick Lewyckye04dc222009-06-12 08:04:51 +0000745 }
Stepan Dyatkovskiyd8eb0bc2014-03-13 11:54:50 +0000746 return 0;
Nick Lewyckye04dc222009-06-12 08:04:51 +0000747 }
748
Nick Lewycky375efe32010-07-16 06:31:12 +0000749 case Type::ArrayTyID: {
Stepan Dyatkovskiya53cf972014-03-14 08:48:52 +0000750 ArrayType *ATyL = cast<ArrayType>(TyL);
751 ArrayType *ATyR = cast<ArrayType>(TyR);
752 if (ATyL->getNumElements() != ATyR->getNumElements())
753 return cmpNumbers(ATyL->getNumElements(), ATyR->getNumElements());
754 return cmpType(ATyL->getElementType(), ATyR->getElementType());
Nick Lewycky375efe32010-07-16 06:31:12 +0000755 }
Nick Lewyckye04dc222009-06-12 08:04:51 +0000756 }
757}
758
Nick Lewyckycfb284c2011-01-28 08:43:14 +0000759// Determine whether the two operations are the same except that pointer-to-A
760// and pointer-to-B are equivalent. This should be kept in sync with
761// Instruction::isSameOperationAs.
Stepan Dyatkovskiyfa6820a2014-05-16 11:02:22 +0000762// Read method declaration comments for more details.
763int FunctionComparator::cmpOperation(const Instruction *L,
764 const Instruction *R) const {
Nick Lewyckycb1a4c22011-02-06 05:04:00 +0000765 // Differences from Instruction::isSameOperationAs:
766 // * replace type comparison with calls to isEquivalentType.
767 // * we test for I->hasSameSubclassOptionalData (nuw/nsw/tail) at the top
768 // * because of the above, we don't test for the tail bit on calls later on
Stepan Dyatkovskiyfa6820a2014-05-16 11:02:22 +0000769 if (int Res = cmpNumbers(L->getOpcode(), R->getOpcode()))
770 return Res;
771
772 if (int Res = cmpNumbers(L->getNumOperands(), R->getNumOperands()))
773 return Res;
774
775 if (int Res = cmpType(L->getType(), R->getType()))
776 return Res;
777
778 if (int Res = cmpNumbers(L->getRawSubclassOptionalData(),
779 R->getRawSubclassOptionalData()))
780 return Res;
Nick Lewyckye04dc222009-06-12 08:04:51 +0000781
782 // We have two instructions of identical opcode and #operands. Check to see
783 // if all operands are the same type
Stepan Dyatkovskiyfa6820a2014-05-16 11:02:22 +0000784 for (unsigned i = 0, e = L->getNumOperands(); i != e; ++i) {
785 if (int Res =
786 cmpType(L->getOperand(i)->getType(), R->getOperand(i)->getType()))
787 return Res;
788 }
Nick Lewyckye04dc222009-06-12 08:04:51 +0000789
790 // Check special state that is a part of some instructions.
Stepan Dyatkovskiyfa6820a2014-05-16 11:02:22 +0000791 if (const LoadInst *LI = dyn_cast<LoadInst>(L)) {
792 if (int Res = cmpNumbers(LI->isVolatile(), cast<LoadInst>(R)->isVolatile()))
793 return Res;
794 if (int Res =
795 cmpNumbers(LI->getAlignment(), cast<LoadInst>(R)->getAlignment()))
796 return Res;
797 if (int Res =
798 cmpNumbers(LI->getOrdering(), cast<LoadInst>(R)->getOrdering()))
799 return Res;
Stepan Dyatkovskiy6baeb882014-06-20 19:11:56 +0000800 if (int Res =
801 cmpNumbers(LI->getSynchScope(), cast<LoadInst>(R)->getSynchScope()))
802 return Res;
803 return cmpNumbers((uint64_t)LI->getMetadata(LLVMContext::MD_range),
804 (uint64_t)cast<LoadInst>(R)->getMetadata(LLVMContext::MD_range));
Stepan Dyatkovskiyfa6820a2014-05-16 11:02:22 +0000805 }
806 if (const StoreInst *SI = dyn_cast<StoreInst>(L)) {
807 if (int Res =
808 cmpNumbers(SI->isVolatile(), cast<StoreInst>(R)->isVolatile()))
809 return Res;
810 if (int Res =
811 cmpNumbers(SI->getAlignment(), cast<StoreInst>(R)->getAlignment()))
812 return Res;
813 if (int Res =
814 cmpNumbers(SI->getOrdering(), cast<StoreInst>(R)->getOrdering()))
815 return Res;
816 return cmpNumbers(SI->getSynchScope(), cast<StoreInst>(R)->getSynchScope());
817 }
818 if (const CmpInst *CI = dyn_cast<CmpInst>(L))
819 return cmpNumbers(CI->getPredicate(), cast<CmpInst>(R)->getPredicate());
820 if (const CallInst *CI = dyn_cast<CallInst>(L)) {
821 if (int Res = cmpNumbers(CI->getCallingConv(),
822 cast<CallInst>(R)->getCallingConv()))
823 return Res;
824 return cmpAttrs(CI->getAttributes(), cast<CallInst>(R)->getAttributes());
825 }
826 if (const InvokeInst *CI = dyn_cast<InvokeInst>(L)) {
827 if (int Res = cmpNumbers(CI->getCallingConv(),
828 cast<InvokeInst>(R)->getCallingConv()))
829 return Res;
830 return cmpAttrs(CI->getAttributes(), cast<InvokeInst>(R)->getAttributes());
831 }
832 if (const InsertValueInst *IVI = dyn_cast<InsertValueInst>(L)) {
833 ArrayRef<unsigned> LIndices = IVI->getIndices();
834 ArrayRef<unsigned> RIndices = cast<InsertValueInst>(R)->getIndices();
835 if (int Res = cmpNumbers(LIndices.size(), RIndices.size()))
836 return Res;
837 for (size_t i = 0, e = LIndices.size(); i != e; ++i) {
838 if (int Res = cmpNumbers(LIndices[i], RIndices[i]))
839 return Res;
840 }
841 }
842 if (const ExtractValueInst *EVI = dyn_cast<ExtractValueInst>(L)) {
843 ArrayRef<unsigned> LIndices = EVI->getIndices();
844 ArrayRef<unsigned> RIndices = cast<ExtractValueInst>(R)->getIndices();
845 if (int Res = cmpNumbers(LIndices.size(), RIndices.size()))
846 return Res;
847 for (size_t i = 0, e = LIndices.size(); i != e; ++i) {
848 if (int Res = cmpNumbers(LIndices[i], RIndices[i]))
849 return Res;
850 }
851 }
852 if (const FenceInst *FI = dyn_cast<FenceInst>(L)) {
853 if (int Res =
854 cmpNumbers(FI->getOrdering(), cast<FenceInst>(R)->getOrdering()))
855 return Res;
856 return cmpNumbers(FI->getSynchScope(), cast<FenceInst>(R)->getSynchScope());
857 }
Nick Lewyckye04dc222009-06-12 08:04:51 +0000858
Stepan Dyatkovskiyfa6820a2014-05-16 11:02:22 +0000859 if (const AtomicCmpXchgInst *CXI = dyn_cast<AtomicCmpXchgInst>(L)) {
860 if (int Res = cmpNumbers(CXI->isVolatile(),
861 cast<AtomicCmpXchgInst>(R)->isVolatile()))
862 return Res;
Tim Northover420a2162014-06-13 14:24:07 +0000863 if (int Res = cmpNumbers(CXI->isWeak(),
864 cast<AtomicCmpXchgInst>(R)->isWeak()))
865 return Res;
Stepan Dyatkovskiyfa6820a2014-05-16 11:02:22 +0000866 if (int Res = cmpNumbers(CXI->getSuccessOrdering(),
867 cast<AtomicCmpXchgInst>(R)->getSuccessOrdering()))
868 return Res;
869 if (int Res = cmpNumbers(CXI->getFailureOrdering(),
870 cast<AtomicCmpXchgInst>(R)->getFailureOrdering()))
871 return Res;
872 return cmpNumbers(CXI->getSynchScope(),
873 cast<AtomicCmpXchgInst>(R)->getSynchScope());
874 }
875 if (const AtomicRMWInst *RMWI = dyn_cast<AtomicRMWInst>(L)) {
876 if (int Res = cmpNumbers(RMWI->getOperation(),
877 cast<AtomicRMWInst>(R)->getOperation()))
878 return Res;
879 if (int Res = cmpNumbers(RMWI->isVolatile(),
880 cast<AtomicRMWInst>(R)->isVolatile()))
881 return Res;
882 if (int Res = cmpNumbers(RMWI->getOrdering(),
883 cast<AtomicRMWInst>(R)->getOrdering()))
884 return Res;
885 return cmpNumbers(RMWI->getSynchScope(),
886 cast<AtomicRMWInst>(R)->getSynchScope());
887 }
888 return 0;
Nick Lewyckyd01d42e2008-11-02 05:52:50 +0000889}
890
Nick Lewyckycfb284c2011-01-28 08:43:14 +0000891// Determine whether two GEP operations perform the same underlying arithmetic.
Stepan Dyatkovskiy948366a2014-05-16 11:55:02 +0000892// Read method declaration comments for more details.
893int FunctionComparator::cmpGEP(const GEPOperator *GEPL,
894 const GEPOperator *GEPR) {
Matt Arsenault5bcefab2013-11-10 01:44:37 +0000895
Stepan Dyatkovskiy948366a2014-05-16 11:55:02 +0000896 unsigned int ASL = GEPL->getPointerAddressSpace();
897 unsigned int ASR = GEPR->getPointerAddressSpace();
898
899 if (int Res = cmpNumbers(ASL, ASR))
900 return Res;
901
902 // When we have target data, we can reduce the GEP down to the value in bytes
903 // added to the address.
Rafael Espindola37dc9e12014-02-21 00:06:31 +0000904 if (DL) {
Stepan Dyatkovskiy948366a2014-05-16 11:55:02 +0000905 unsigned BitWidth = DL->getPointerSizeInBits(ASL);
906 APInt OffsetL(BitWidth, 0), OffsetR(BitWidth, 0);
907 if (GEPL->accumulateConstantOffset(*DL, OffsetL) &&
908 GEPR->accumulateConstantOffset(*DL, OffsetR))
909 return cmpAPInt(OffsetL, OffsetR);
Nick Lewyckyd01d42e2008-11-02 05:52:50 +0000910 }
911
Stepan Dyatkovskiy948366a2014-05-16 11:55:02 +0000912 if (int Res = cmpNumbers((uint64_t)GEPL->getPointerOperand()->getType(),
913 (uint64_t)GEPR->getPointerOperand()->getType()))
914 return Res;
Nick Lewyckyd3c6dfe2010-05-13 05:48:45 +0000915
Stepan Dyatkovskiy948366a2014-05-16 11:55:02 +0000916 if (int Res = cmpNumbers(GEPL->getNumOperands(), GEPR->getNumOperands()))
917 return Res;
Nick Lewyckyd3c6dfe2010-05-13 05:48:45 +0000918
Stepan Dyatkovskiy948366a2014-05-16 11:55:02 +0000919 for (unsigned i = 0, e = GEPL->getNumOperands(); i != e; ++i) {
920 if (int Res = cmpValues(GEPL->getOperand(i), GEPR->getOperand(i)))
921 return Res;
Nick Lewyckyd3c6dfe2010-05-13 05:48:45 +0000922 }
923
Stepan Dyatkovskiy948366a2014-05-16 11:55:02 +0000924 return 0;
Nick Lewyckyd01d42e2008-11-02 05:52:50 +0000925}
926
Stepan Dyatkovskiycfd641f2014-05-07 11:11:39 +0000927/// Compare two values used by the two functions under pair-wise comparison. If
928/// this is the first time the values are seen, they're added to the mapping so
929/// that we will detect mismatches on next use.
930/// See comments in declaration for more details.
931int FunctionComparator::cmpValues(const Value *L, const Value *R) {
932 // Catch self-reference case.
Stepan Dyatkovskiy17ee5ac2014-06-21 17:55:51 +0000933 if (L == FnL) {
934 if (R == FnR)
Stepan Dyatkovskiycfd641f2014-05-07 11:11:39 +0000935 return 0;
936 return -1;
937 }
Stepan Dyatkovskiy17ee5ac2014-06-21 17:55:51 +0000938 if (R == FnR) {
939 if (L == FnL)
Stepan Dyatkovskiycfd641f2014-05-07 11:11:39 +0000940 return 0;
941 return 1;
Nick Lewycky13e04ae2011-01-27 08:38:19 +0000942 }
Nick Lewyckyd3c6dfe2010-05-13 05:48:45 +0000943
Stepan Dyatkovskiycfd641f2014-05-07 11:11:39 +0000944 const Constant *ConstL = dyn_cast<Constant>(L);
945 const Constant *ConstR = dyn_cast<Constant>(R);
946 if (ConstL && ConstR) {
947 if (L == R)
948 return 0;
949 return cmpConstants(ConstL, ConstR);
950 }
Nick Lewyckyd3c6dfe2010-05-13 05:48:45 +0000951
Stepan Dyatkovskiycfd641f2014-05-07 11:11:39 +0000952 if (ConstL)
953 return 1;
954 if (ConstR)
955 return -1;
Nick Lewyckyd3c6dfe2010-05-13 05:48:45 +0000956
Stepan Dyatkovskiycfd641f2014-05-07 11:11:39 +0000957 const InlineAsm *InlineAsmL = dyn_cast<InlineAsm>(L);
958 const InlineAsm *InlineAsmR = dyn_cast<InlineAsm>(R);
959
960 if (InlineAsmL && InlineAsmR)
961 return cmpNumbers((uint64_t)L, (uint64_t)R);
962 if (InlineAsmL)
963 return 1;
964 if (InlineAsmR)
965 return -1;
966
967 auto LeftSN = sn_mapL.insert(std::make_pair(L, sn_mapL.size())),
968 RightSN = sn_mapR.insert(std::make_pair(R, sn_mapR.size()));
969
970 return cmpNumbers(LeftSN.first->second, RightSN.first->second);
Nick Lewyckyd3c6dfe2010-05-13 05:48:45 +0000971}
Nick Lewyckycfb284c2011-01-28 08:43:14 +0000972// Test whether two basic blocks have equivalent behaviour.
Stepan Dyatkovskiy17ee5ac2014-06-21 17:55:51 +0000973int FunctionComparator::compare(const BasicBlock *BBL, const BasicBlock *BBR) {
974 BasicBlock::const_iterator InstL = BBL->begin(), InstLE = BBL->end();
975 BasicBlock::const_iterator InstR = BBR->begin(), InstRE = BBR->end();
Nick Lewyckyd01d42e2008-11-02 05:52:50 +0000976
977 do {
Stepan Dyatkovskiy17ee5ac2014-06-21 17:55:51 +0000978 if (int Res = cmpValues(InstL, InstR))
979 return Res;
Nick Lewyckyd01d42e2008-11-02 05:52:50 +0000980
Stepan Dyatkovskiy17ee5ac2014-06-21 17:55:51 +0000981 const GetElementPtrInst *GEPL = dyn_cast<GetElementPtrInst>(InstL);
982 const GetElementPtrInst *GEPR = dyn_cast<GetElementPtrInst>(InstR);
Nick Lewycky47b71c52009-06-13 19:09:52 +0000983
Stepan Dyatkovskiy17ee5ac2014-06-21 17:55:51 +0000984 if (GEPL && !GEPR)
985 return 1;
986 if (GEPR && !GEPL)
987 return -1;
Nick Lewycky47b71c52009-06-13 19:09:52 +0000988
Stepan Dyatkovskiy17ee5ac2014-06-21 17:55:51 +0000989 if (GEPL && GEPR) {
990 if (int Res =
991 cmpValues(GEPL->getPointerOperand(), GEPR->getPointerOperand()))
992 return Res;
993 if (int Res = cmpGEP(GEPL, GEPR))
994 return Res;
Nick Lewyckyd3c6dfe2010-05-13 05:48:45 +0000995 } else {
Stepan Dyatkovskiy17ee5ac2014-06-21 17:55:51 +0000996 if (int Res = cmpOperation(InstL, InstR))
997 return Res;
998 assert(InstL->getNumOperands() == InstR->getNumOperands());
Nick Lewyckyd01d42e2008-11-02 05:52:50 +0000999
Stepan Dyatkovskiy17ee5ac2014-06-21 17:55:51 +00001000 for (unsigned i = 0, e = InstL->getNumOperands(); i != e; ++i) {
1001 Value *OpL = InstL->getOperand(i);
1002 Value *OpR = InstR->getOperand(i);
1003 if (int Res = cmpValues(OpL, OpR))
1004 return Res;
1005 if (int Res = cmpNumbers(OpL->getValueID(), OpR->getValueID()))
1006 return Res;
1007 // TODO: Already checked in cmpOperation
1008 if (int Res = cmpType(OpL->getType(), OpR->getType()))
1009 return Res;
Nick Lewyckyd01d42e2008-11-02 05:52:50 +00001010 }
Nick Lewyckyd01d42e2008-11-02 05:52:50 +00001011 }
1012
Stepan Dyatkovskiy17ee5ac2014-06-21 17:55:51 +00001013 ++InstL, ++InstR;
1014 } while (InstL != InstLE && InstR != InstRE);
Nick Lewyckyd01d42e2008-11-02 05:52:50 +00001015
Stepan Dyatkovskiy17ee5ac2014-06-21 17:55:51 +00001016 if (InstL != InstLE && InstR == InstRE)
1017 return 1;
1018 if (InstL == InstLE && InstR != InstRE)
1019 return -1;
1020 return 0;
Nick Lewyckyd01d42e2008-11-02 05:52:50 +00001021}
1022
Nick Lewyckycfb284c2011-01-28 08:43:14 +00001023// Test whether the two functions have equivalent behaviour.
Stepan Dyatkovskiy17ee5ac2014-06-21 17:55:51 +00001024int FunctionComparator::compare() {
Nick Lewyckyd01d42e2008-11-02 05:52:50 +00001025
Stepan Dyatkovskiycfd641f2014-05-07 11:11:39 +00001026 sn_mapL.clear();
1027 sn_mapR.clear();
1028
Stepan Dyatkovskiy17ee5ac2014-06-21 17:55:51 +00001029 if (int Res = cmpAttrs(FnL->getAttributes(), FnR->getAttributes()))
1030 return Res;
Nick Lewyckyd01d42e2008-11-02 05:52:50 +00001031
Stepan Dyatkovskiy17ee5ac2014-06-21 17:55:51 +00001032 if (int Res = cmpNumbers(FnL->hasGC(), FnR->hasGC()))
1033 return Res;
Nick Lewyckyd01d42e2008-11-02 05:52:50 +00001034
Stepan Dyatkovskiy17ee5ac2014-06-21 17:55:51 +00001035 if (FnL->hasGC()) {
1036 if (int Res = cmpNumbers((uint64_t)FnL->getGC(), (uint64_t)FnR->getGC()))
1037 return Res;
1038 }
Nick Lewyckyd01d42e2008-11-02 05:52:50 +00001039
Stepan Dyatkovskiy17ee5ac2014-06-21 17:55:51 +00001040 if (int Res = cmpNumbers(FnL->hasSection(), FnR->hasSection()))
1041 return Res;
Nick Lewyckyd01d42e2008-11-02 05:52:50 +00001042
Stepan Dyatkovskiy17ee5ac2014-06-21 17:55:51 +00001043 if (FnL->hasSection()) {
1044 if (int Res = cmpStrings(FnL->getSection(), FnR->getSection()))
1045 return Res;
1046 }
Nick Lewyckyd01d42e2008-11-02 05:52:50 +00001047
Stepan Dyatkovskiy17ee5ac2014-06-21 17:55:51 +00001048 if (int Res = cmpNumbers(FnL->isVarArg(), FnR->isVarArg()))
1049 return Res;
Nick Lewyckye04dc222009-06-12 08:04:51 +00001050
Nick Lewyckyd01d42e2008-11-02 05:52:50 +00001051 // TODO: if it's internal and only used in direct calls, we could handle this
1052 // case too.
Stepan Dyatkovskiy17ee5ac2014-06-21 17:55:51 +00001053 if (int Res = cmpNumbers(FnL->getCallingConv(), FnR->getCallingConv()))
1054 return Res;
Nick Lewyckyd01d42e2008-11-02 05:52:50 +00001055
Stepan Dyatkovskiy17ee5ac2014-06-21 17:55:51 +00001056 if (int Res = cmpType(FnL->getFunctionType(), FnR->getFunctionType()))
1057 return Res;
Nick Lewyckyd01d42e2008-11-02 05:52:50 +00001058
Stepan Dyatkovskiy17ee5ac2014-06-21 17:55:51 +00001059 assert(FnL->arg_size() == FnR->arg_size() &&
Nick Lewycky71972d42010-09-07 01:42:10 +00001060 "Identically typed functions have different numbers of args!");
Nick Lewyckyd01d42e2008-11-02 05:52:50 +00001061
Nick Lewyckyd3c6dfe2010-05-13 05:48:45 +00001062 // Visit the arguments so that they get enumerated in the order they're
1063 // passed in.
Stepan Dyatkovskiy17ee5ac2014-06-21 17:55:51 +00001064 for (Function::const_arg_iterator ArgLI = FnL->arg_begin(),
1065 ArgRI = FnR->arg_begin(),
1066 ArgLE = FnL->arg_end();
1067 ArgLI != ArgLE; ++ArgLI, ++ArgRI) {
1068 if (cmpValues(ArgLI, ArgRI) != 0)
Nick Lewycky71972d42010-09-07 01:42:10 +00001069 llvm_unreachable("Arguments repeat!");
Nick Lewyckyd01d42e2008-11-02 05:52:50 +00001070 }
1071
Nick Lewyckyfbd27572010-08-08 05:04:23 +00001072 // We do a CFG-ordered walk since the actual ordering of the blocks in the
1073 // linked list is immaterial. Our walk starts at the entry block for both
Nick Lewyckyf52bd9c2010-08-02 05:23:03 +00001074 // functions, then takes each block from each terminator in order. As an
1075 // artifact, this also means that unreachable blocks are ignored.
Stepan Dyatkovskiy17ee5ac2014-06-21 17:55:51 +00001076 SmallVector<const BasicBlock *, 8> FnLBBs, FnRBBs;
Nick Lewyckyf52bd9c2010-08-02 05:23:03 +00001077 SmallSet<const BasicBlock *, 128> VisitedBBs; // in terms of F1.
Nick Lewyckyf216f69a2010-08-06 07:21:30 +00001078
Stepan Dyatkovskiy17ee5ac2014-06-21 17:55:51 +00001079 FnLBBs.push_back(&FnL->getEntryBlock());
1080 FnRBBs.push_back(&FnR->getEntryBlock());
Nick Lewyckyf216f69a2010-08-06 07:21:30 +00001081
Stepan Dyatkovskiy17ee5ac2014-06-21 17:55:51 +00001082 VisitedBBs.insert(FnLBBs[0]);
1083 while (!FnLBBs.empty()) {
1084 const BasicBlock *BBL = FnLBBs.pop_back_val();
1085 const BasicBlock *BBR = FnRBBs.pop_back_val();
Nick Lewyckyf216f69a2010-08-06 07:21:30 +00001086
Stepan Dyatkovskiy17ee5ac2014-06-21 17:55:51 +00001087 if (int Res = cmpValues(BBL, BBR))
1088 return Res;
Nick Lewyckyf216f69a2010-08-06 07:21:30 +00001089
Stepan Dyatkovskiy17ee5ac2014-06-21 17:55:51 +00001090 if (int Res = compare(BBL, BBR))
1091 return Res;
Nick Lewyckyf216f69a2010-08-06 07:21:30 +00001092
Stepan Dyatkovskiy17ee5ac2014-06-21 17:55:51 +00001093 const TerminatorInst *TermL = BBL->getTerminator();
1094 const TerminatorInst *TermR = BBR->getTerminator();
1095
1096 assert(TermL->getNumSuccessors() == TermR->getNumSuccessors());
1097 for (unsigned i = 0, e = TermL->getNumSuccessors(); i != e; ++i) {
1098 if (!VisitedBBs.insert(TermL->getSuccessor(i)))
Nick Lewycky2b3cbac2010-05-13 06:45:13 +00001099 continue;
Nick Lewyckyf216f69a2010-08-06 07:21:30 +00001100
Stepan Dyatkovskiy17ee5ac2014-06-21 17:55:51 +00001101 FnLBBs.push_back(TermL->getSuccessor(i));
1102 FnRBBs.push_back(TermR->getSuccessor(i));
Nick Lewyckyd3c6dfe2010-05-13 05:48:45 +00001103 }
1104 }
Stepan Dyatkovskiy17ee5ac2014-06-21 17:55:51 +00001105 return 0;
Nick Lewyckyd01d42e2008-11-02 05:52:50 +00001106}
1107
Nick Lewycky564fcca2011-01-28 07:36:21 +00001108namespace {
1109
1110/// MergeFunctions finds functions which will generate identical machine code,
1111/// by considering all pointer types to be equivalent. Once identified,
1112/// MergeFunctions will fold them by replacing a call to one to a call to a
1113/// bitcast of the other.
1114///
1115class MergeFunctions : public ModulePass {
1116public:
1117 static char ID;
1118 MergeFunctions()
1119 : ModulePass(ID), HasGlobalAliases(false) {
1120 initializeMergeFunctionsPass(*PassRegistry::getPassRegistry());
1121 }
1122
Craig Topper3e4c6972014-03-05 09:10:37 +00001123 bool runOnModule(Module &M) override;
Nick Lewycky564fcca2011-01-28 07:36:21 +00001124
1125private:
1126 typedef DenseSet<ComparableFunction> FnSetType;
1127
1128 /// A work queue of functions that may have been modified and should be
1129 /// analyzed again.
1130 std::vector<WeakVH> Deferred;
1131
Stepan Dyatkovskiya77f3d82014-06-21 18:58:11 +00001132 /// Checks the rules of order relation introduced among functions set.
1133 /// Returns true, if sanity check has been passed, and false if failed.
1134 bool doSanityCheck(std::vector<WeakVH> &Worklist);
1135
Nick Lewycky564fcca2011-01-28 07:36:21 +00001136 /// Insert a ComparableFunction into the FnSet, or merge it away if it's
1137 /// equal to one that's already present.
Nick Lewyckycfb284c2011-01-28 08:43:14 +00001138 bool insert(ComparableFunction &NewF);
Nick Lewycky564fcca2011-01-28 07:36:21 +00001139
1140 /// Remove a Function from the FnSet and queue it up for a second sweep of
1141 /// analysis.
Nick Lewyckycfb284c2011-01-28 08:43:14 +00001142 void remove(Function *F);
Nick Lewycky564fcca2011-01-28 07:36:21 +00001143
1144 /// Find the functions that use this Value and remove them from FnSet and
1145 /// queue the functions.
Nick Lewyckycfb284c2011-01-28 08:43:14 +00001146 void removeUsers(Value *V);
Nick Lewycky564fcca2011-01-28 07:36:21 +00001147
1148 /// Replace all direct calls of Old with calls of New. Will bitcast New if
1149 /// necessary to make types match.
1150 void replaceDirectCallers(Function *Old, Function *New);
1151
Nick Lewyckycfb284c2011-01-28 08:43:14 +00001152 /// Merge two equivalent functions. Upon completion, G may be deleted, or may
1153 /// be converted into a thunk. In either case, it should never be visited
1154 /// again.
1155 void mergeTwoFunctions(Function *F, Function *G);
Nick Lewycky564fcca2011-01-28 07:36:21 +00001156
Nick Lewyckycfb284c2011-01-28 08:43:14 +00001157 /// Replace G with a thunk or an alias to F. Deletes G.
1158 void writeThunkOrAlias(Function *F, Function *G);
Nick Lewycky564fcca2011-01-28 07:36:21 +00001159
Nick Lewyckycfb284c2011-01-28 08:43:14 +00001160 /// Replace G with a simple tail call to bitcast(F). Also replace direct uses
1161 /// of G with bitcast(F). Deletes G.
1162 void writeThunk(Function *F, Function *G);
Nick Lewycky564fcca2011-01-28 07:36:21 +00001163
Nick Lewyckycfb284c2011-01-28 08:43:14 +00001164 /// Replace G with an alias to F. Deletes G.
1165 void writeAlias(Function *F, Function *G);
Nick Lewycky564fcca2011-01-28 07:36:21 +00001166
Nick Lewyckycfb284c2011-01-28 08:43:14 +00001167 /// The set of all distinct functions. Use the insert() and remove() methods
1168 /// to modify it.
Nick Lewycky564fcca2011-01-28 07:36:21 +00001169 FnSetType FnSet;
1170
Micah Villmowcdfe20b2012-10-08 16:38:25 +00001171 /// DataLayout for more accurate GEP comparisons. May be NULL.
Rafael Espindola43b5a512014-02-25 14:24:11 +00001172 const DataLayout *DL;
Nick Lewycky564fcca2011-01-28 07:36:21 +00001173
1174 /// Whether or not the target supports global aliases.
1175 bool HasGlobalAliases;
1176};
1177
1178} // end anonymous namespace
1179
1180char MergeFunctions::ID = 0;
1181INITIALIZE_PASS(MergeFunctions, "mergefunc", "Merge Functions", false, false)
1182
1183ModulePass *llvm::createMergeFunctionsPass() {
1184 return new MergeFunctions();
1185}
1186
Stepan Dyatkovskiya77f3d82014-06-21 18:58:11 +00001187bool MergeFunctions::doSanityCheck(std::vector<WeakVH> &Worklist) {
1188 if (const unsigned Max = NumFunctionsForSanityCheck) {
1189 unsigned TripleNumber = 0;
1190 bool Valid = true;
1191
1192 dbgs() << "MERGEFUNC-SANITY: Started for first " << Max << " functions.\n";
1193
1194 unsigned i = 0;
1195 for (std::vector<WeakVH>::iterator I = Worklist.begin(), E = Worklist.end();
1196 I != E && i < Max; ++I, ++i) {
1197 unsigned j = i;
1198 for (std::vector<WeakVH>::iterator J = I; J != E && j < Max; ++J, ++j) {
1199 Function *F1 = cast<Function>(*I);
1200 Function *F2 = cast<Function>(*J);
1201 int Res1 = FunctionComparator(DL, F1, F2).compare();
1202 int Res2 = FunctionComparator(DL, F2, F1).compare();
1203
1204 // If F1 <= F2, then F2 >= F1, otherwise report failure.
1205 if (Res1 != -Res2) {
1206 dbgs() << "MERGEFUNC-SANITY: Non-symmetric; triple: " << TripleNumber
1207 << "\n";
1208 F1->dump();
1209 F2->dump();
1210 Valid = false;
1211 }
1212
1213 if (Res1 == 0)
1214 continue;
1215
1216 unsigned k = j;
1217 for (std::vector<WeakVH>::iterator K = J; K != E && k < Max;
1218 ++k, ++K, ++TripleNumber) {
1219 if (K == J)
1220 continue;
1221
1222 Function *F3 = cast<Function>(*K);
1223 int Res3 = FunctionComparator(DL, F1, F3).compare();
1224 int Res4 = FunctionComparator(DL, F2, F3).compare();
1225
1226 bool Transitive = true;
1227
Stepan Dyatkovskiya77f3d82014-06-21 18:58:11 +00001228 if (Res1 != 0 && Res1 == Res4) {
Stepan Dyatkovskiy0b588012014-06-21 19:07:51 +00001229 // F1 > F2, F2 > F3 => F1 > F3
Stepan Dyatkovskiya77f3d82014-06-21 18:58:11 +00001230 Transitive = Res3 == Res1;
Stepan Dyatkovskiy0b588012014-06-21 19:07:51 +00001231 } else if (Res3 != 0 && Res3 == -Res4) {
1232 // F1 > F3, F3 > F2 => F1 > F2
Stepan Dyatkovskiya77f3d82014-06-21 18:58:11 +00001233 Transitive = Res3 == Res1;
Stepan Dyatkovskiy0b588012014-06-21 19:07:51 +00001234 } else if (Res4 != 0 && -Res3 == Res4) {
1235 // F2 > F3, F3 > F1 => F2 > F1
Stepan Dyatkovskiya77f3d82014-06-21 18:58:11 +00001236 Transitive = Res4 == -Res1;
1237 }
1238
1239 if (!Transitive) {
1240 dbgs() << "MERGEFUNC-SANITY: Non-transitive; triple: "
1241 << TripleNumber << "\n";
1242 dbgs() << "Res1, Res3, Res4: " << Res1 << ", " << Res3 << ", "
1243 << Res4 << "\n";
1244 F1->dump();
1245 F2->dump();
1246 F3->dump();
1247 Valid = false;
1248 }
1249 }
1250 }
1251 }
1252
1253 dbgs() << "MERGEFUNC-SANITY: " << (Valid ? "Passed." : "Failed.") << "\n";
1254 return Valid;
1255 }
1256 return true;
1257}
1258
Nick Lewycky564fcca2011-01-28 07:36:21 +00001259bool MergeFunctions::runOnModule(Module &M) {
1260 bool Changed = false;
Rafael Espindola93512512014-02-25 17:30:31 +00001261 DataLayoutPass *DLP = getAnalysisIfAvailable<DataLayoutPass>();
Craig Topperf40110f2014-04-25 05:29:35 +00001262 DL = DLP ? &DLP->getDataLayout() : nullptr;
Nick Lewycky564fcca2011-01-28 07:36:21 +00001263
1264 for (Module::iterator I = M.begin(), E = M.end(); I != E; ++I) {
1265 if (!I->isDeclaration() && !I->hasAvailableExternallyLinkage())
1266 Deferred.push_back(WeakVH(I));
1267 }
1268 FnSet.resize(Deferred.size());
1269
1270 do {
1271 std::vector<WeakVH> Worklist;
1272 Deferred.swap(Worklist);
1273
Stepan Dyatkovskiya77f3d82014-06-21 18:58:11 +00001274 DEBUG(doSanityCheck(Worklist));
1275
Nick Lewycky564fcca2011-01-28 07:36:21 +00001276 DEBUG(dbgs() << "size of module: " << M.size() << '\n');
1277 DEBUG(dbgs() << "size of worklist: " << Worklist.size() << '\n');
1278
1279 // Insert only strong functions and merge them. Strong function merging
1280 // always deletes one of them.
1281 for (std::vector<WeakVH>::iterator I = Worklist.begin(),
1282 E = Worklist.end(); I != E; ++I) {
1283 if (!*I) continue;
1284 Function *F = cast<Function>(*I);
1285 if (!F->isDeclaration() && !F->hasAvailableExternallyLinkage() &&
1286 !F->mayBeOverridden()) {
Rafael Espindola37dc9e12014-02-21 00:06:31 +00001287 ComparableFunction CF = ComparableFunction(F, DL);
Nick Lewyckycfb284c2011-01-28 08:43:14 +00001288 Changed |= insert(CF);
Nick Lewycky564fcca2011-01-28 07:36:21 +00001289 }
1290 }
1291
1292 // Insert only weak functions and merge them. By doing these second we
1293 // create thunks to the strong function when possible. When two weak
1294 // functions are identical, we create a new strong function with two weak
1295 // weak thunks to it which are identical but not mergable.
1296 for (std::vector<WeakVH>::iterator I = Worklist.begin(),
1297 E = Worklist.end(); I != E; ++I) {
1298 if (!*I) continue;
1299 Function *F = cast<Function>(*I);
1300 if (!F->isDeclaration() && !F->hasAvailableExternallyLinkage() &&
1301 F->mayBeOverridden()) {
Rafael Espindola37dc9e12014-02-21 00:06:31 +00001302 ComparableFunction CF = ComparableFunction(F, DL);
Nick Lewyckycfb284c2011-01-28 08:43:14 +00001303 Changed |= insert(CF);
Nick Lewycky564fcca2011-01-28 07:36:21 +00001304 }
1305 }
1306 DEBUG(dbgs() << "size of FnSet: " << FnSet.size() << '\n');
1307 } while (!Deferred.empty());
1308
1309 FnSet.clear();
1310
1311 return Changed;
1312}
1313
1314bool DenseMapInfo<ComparableFunction>::isEqual(const ComparableFunction &LHS,
1315 const ComparableFunction &RHS) {
1316 if (LHS.getFunc() == RHS.getFunc() &&
1317 LHS.getHash() == RHS.getHash())
1318 return true;
1319 if (!LHS.getFunc() || !RHS.getFunc())
1320 return false;
Nick Lewycky292e78c2011-02-09 06:32:02 +00001321
1322 // One of these is a special "underlying pointer comparison only" object.
Rafael Espindola37dc9e12014-02-21 00:06:31 +00001323 if (LHS.getDataLayout() == ComparableFunction::LookupOnly ||
1324 RHS.getDataLayout() == ComparableFunction::LookupOnly)
Nick Lewycky292e78c2011-02-09 06:32:02 +00001325 return false;
1326
Rafael Espindola37dc9e12014-02-21 00:06:31 +00001327 assert(LHS.getDataLayout() == RHS.getDataLayout() &&
Nick Lewycky564fcca2011-01-28 07:36:21 +00001328 "Comparing functions for different targets");
1329
Stepan Dyatkovskiy17ee5ac2014-06-21 17:55:51 +00001330 return FunctionComparator(LHS.getDataLayout(), LHS.getFunc(), RHS.getFunc())
1331 .compare() == 0;
Nick Lewycky564fcca2011-01-28 07:36:21 +00001332}
1333
Nick Lewyckycfb284c2011-01-28 08:43:14 +00001334// Replace direct callers of Old with New.
Nick Lewyckyf1cec162011-01-25 08:56:50 +00001335void MergeFunctions::replaceDirectCallers(Function *Old, Function *New) {
1336 Constant *BitcastNew = ConstantExpr::getBitCast(New, Old->getType());
Chandler Carruthcdf47882014-03-09 03:16:01 +00001337 for (auto UI = Old->use_begin(), UE = Old->use_end(); UI != UE;) {
1338 Use *U = &*UI;
Nick Lewyckyf1cec162011-01-25 08:56:50 +00001339 ++UI;
Chandler Carruthcdf47882014-03-09 03:16:01 +00001340 CallSite CS(U->getUser());
1341 if (CS && CS.isCallee(U)) {
Nick Lewyckycfb284c2011-01-28 08:43:14 +00001342 remove(CS.getInstruction()->getParent()->getParent());
Chandler Carruthcdf47882014-03-09 03:16:01 +00001343 U->set(BitcastNew);
Nick Lewyckyf1cec162011-01-25 08:56:50 +00001344 }
1345 }
1346}
1347
Nick Lewyckycfb284c2011-01-28 08:43:14 +00001348// Replace G with an alias to F if possible, or else a thunk to F. Deletes G.
1349void MergeFunctions::writeThunkOrAlias(Function *F, Function *G) {
Nick Lewyckyf1cec162011-01-25 08:56:50 +00001350 if (HasGlobalAliases && G->hasUnnamedAddr()) {
1351 if (G->hasExternalLinkage() || G->hasLocalLinkage() ||
1352 G->hasWeakLinkage()) {
Nick Lewyckycfb284c2011-01-28 08:43:14 +00001353 writeAlias(F, G);
Nick Lewyckyf1cec162011-01-25 08:56:50 +00001354 return;
1355 }
1356 }
1357
Nick Lewyckycfb284c2011-01-28 08:43:14 +00001358 writeThunk(F, G);
Nick Lewyckyf1cec162011-01-25 08:56:50 +00001359}
1360
Stepan Dyatkovskiydc2c4b42013-09-17 09:36:11 +00001361// Helper for writeThunk,
1362// Selects proper bitcast operation,
Alp Tokercb402912014-01-24 17:20:08 +00001363// but a bit simpler then CastInst::getCastOpcode.
Carlo Kok307625c2014-04-30 17:53:04 +00001364static Value *createCast(IRBuilder<false> &Builder, Value *V, Type *DestTy) {
Stepan Dyatkovskiydc2c4b42013-09-17 09:36:11 +00001365 Type *SrcTy = V->getType();
Carlo Kok307625c2014-04-30 17:53:04 +00001366 if (SrcTy->isStructTy()) {
1367 assert(DestTy->isStructTy());
1368 assert(SrcTy->getStructNumElements() == DestTy->getStructNumElements());
1369 Value *Result = UndefValue::get(DestTy);
1370 for (unsigned int I = 0, E = SrcTy->getStructNumElements(); I < E; ++I) {
1371 Value *Element = createCast(
1372 Builder, Builder.CreateExtractValue(V, ArrayRef<unsigned int>(I)),
1373 DestTy->getStructElementType(I));
1374
1375 Result =
1376 Builder.CreateInsertValue(Result, Element, ArrayRef<unsigned int>(I));
1377 }
1378 return Result;
1379 }
1380 assert(!DestTy->isStructTy());
Stepan Dyatkovskiydc2c4b42013-09-17 09:36:11 +00001381 if (SrcTy->isIntegerTy() && DestTy->isPointerTy())
1382 return Builder.CreateIntToPtr(V, DestTy);
1383 else if (SrcTy->isPointerTy() && DestTy->isIntegerTy())
1384 return Builder.CreatePtrToInt(V, DestTy);
1385 else
1386 return Builder.CreateBitCast(V, DestTy);
1387}
1388
Nick Lewyckycfb284c2011-01-28 08:43:14 +00001389// Replace G with a simple tail call to bitcast(F). Also replace direct uses
1390// of G with bitcast(F). Deletes G.
1391void MergeFunctions::writeThunk(Function *F, Function *G) {
Nick Lewyckyd3c6dfe2010-05-13 05:48:45 +00001392 if (!G->mayBeOverridden()) {
1393 // Redirect direct callers of G to F.
Nick Lewyckyf1cec162011-01-25 08:56:50 +00001394 replaceDirectCallers(G, F);
Nick Lewyckyd3c6dfe2010-05-13 05:48:45 +00001395 }
1396
Nick Lewycky71972d42010-09-07 01:42:10 +00001397 // If G was internal then we may have replaced all uses of G with F. If so,
Nick Lewyckyf216f69a2010-08-06 07:21:30 +00001398 // stop here and delete G. There's no need for a thunk.
1399 if (G->hasLocalLinkage() && G->use_empty()) {
1400 G->eraseFromParent();
1401 return;
1402 }
1403
Nick Lewycky25675ac2009-06-12 15:56:56 +00001404 Function *NewG = Function::Create(G->getFunctionType(), G->getLinkage(), "",
1405 G->getParent());
Owen Anderson55f1c092009-08-13 21:58:54 +00001406 BasicBlock *BB = BasicBlock::Create(F->getContext(), "", NewG);
Nick Lewyckyfbd27572010-08-08 05:04:23 +00001407 IRBuilder<false> Builder(BB);
Nick Lewyckye04dc222009-06-12 08:04:51 +00001408
Nick Lewyckyd3c6dfe2010-05-13 05:48:45 +00001409 SmallVector<Value *, 16> Args;
Nick Lewyckye04dc222009-06-12 08:04:51 +00001410 unsigned i = 0;
Chris Lattner229907c2011-07-18 04:54:35 +00001411 FunctionType *FFTy = F->getFunctionType();
Nick Lewyckye04dc222009-06-12 08:04:51 +00001412 for (Function::arg_iterator AI = NewG->arg_begin(), AE = NewG->arg_end();
1413 AI != AE; ++AI) {
Stepan Dyatkovskiydc2c4b42013-09-17 09:36:11 +00001414 Args.push_back(createCast(Builder, (Value*)AI, FFTy->getParamType(i)));
Nick Lewyckye04dc222009-06-12 08:04:51 +00001415 ++i;
1416 }
1417
Jay Foad5bd375a2011-07-15 08:37:34 +00001418 CallInst *CI = Builder.CreateCall(F, Args);
Nick Lewyckye04dc222009-06-12 08:04:51 +00001419 CI->setTailCall();
Nick Lewyckyd5bf51f2009-06-12 16:04:00 +00001420 CI->setCallingConv(F->getCallingConv());
Benjamin Kramerccce8ba2010-01-05 13:12:22 +00001421 if (NewG->getReturnType()->isVoidTy()) {
Nick Lewyckyfbd27572010-08-08 05:04:23 +00001422 Builder.CreateRetVoid();
Nick Lewyckye04dc222009-06-12 08:04:51 +00001423 } else {
Stepan Dyatkovskiydc2c4b42013-09-17 09:36:11 +00001424 Builder.CreateRet(createCast(Builder, CI, NewG->getReturnType()));
Nick Lewyckye04dc222009-06-12 08:04:51 +00001425 }
1426
1427 NewG->copyAttributesFrom(G);
1428 NewG->takeName(G);
Nick Lewyckycfb284c2011-01-28 08:43:14 +00001429 removeUsers(G);
Nick Lewyckye04dc222009-06-12 08:04:51 +00001430 G->replaceAllUsesWith(NewG);
1431 G->eraseFromParent();
Nick Lewycky71972d42010-09-07 01:42:10 +00001432
Nick Lewyckycfb284c2011-01-28 08:43:14 +00001433 DEBUG(dbgs() << "writeThunk: " << NewG->getName() << '\n');
Nick Lewycky71972d42010-09-07 01:42:10 +00001434 ++NumThunksWritten;
Nick Lewyckye04dc222009-06-12 08:04:51 +00001435}
1436
Nick Lewyckycfb284c2011-01-28 08:43:14 +00001437// Replace G with an alias to F and delete G.
1438void MergeFunctions::writeAlias(Function *F, Function *G) {
Rafael Espindola4fe00942014-05-16 13:34:04 +00001439 PointerType *PTy = G->getType();
Rafael Espindolaf1bedd3742014-05-17 21:29:57 +00001440 auto *GA = GlobalAlias::create(PTy->getElementType(), PTy->getAddressSpace(),
1441 G->getLinkage(), "", F);
Nick Lewyckyf1cec162011-01-25 08:56:50 +00001442 F->setAlignment(std::max(F->getAlignment(), G->getAlignment()));
1443 GA->takeName(G);
1444 GA->setVisibility(G->getVisibility());
Nick Lewyckycfb284c2011-01-28 08:43:14 +00001445 removeUsers(G);
Nick Lewyckyf1cec162011-01-25 08:56:50 +00001446 G->replaceAllUsesWith(GA);
1447 G->eraseFromParent();
1448
Nick Lewyckycfb284c2011-01-28 08:43:14 +00001449 DEBUG(dbgs() << "writeAlias: " << GA->getName() << '\n');
Nick Lewyckyf1cec162011-01-25 08:56:50 +00001450 ++NumAliasesWritten;
1451}
1452
Nick Lewyckycfb284c2011-01-28 08:43:14 +00001453// Merge two equivalent functions. Upon completion, Function G is deleted.
1454void MergeFunctions::mergeTwoFunctions(Function *F, Function *G) {
Nick Lewycky71972d42010-09-07 01:42:10 +00001455 if (F->mayBeOverridden()) {
1456 assert(G->mayBeOverridden());
Nick Lewyckyd3c6dfe2010-05-13 05:48:45 +00001457
Nick Lewyckyf1cec162011-01-25 08:56:50 +00001458 if (HasGlobalAliases) {
1459 // Make them both thunks to the same internal function.
1460 Function *H = Function::Create(F->getFunctionType(), F->getLinkage(), "",
1461 F->getParent());
1462 H->copyAttributesFrom(F);
1463 H->takeName(F);
Nick Lewyckycfb284c2011-01-28 08:43:14 +00001464 removeUsers(F);
Nick Lewyckyf1cec162011-01-25 08:56:50 +00001465 F->replaceAllUsesWith(H);
Nick Lewyckyd3c6dfe2010-05-13 05:48:45 +00001466
Nick Lewyckyf1cec162011-01-25 08:56:50 +00001467 unsigned MaxAlignment = std::max(G->getAlignment(), H->getAlignment());
Nick Lewyckyf0067b62010-08-09 21:03:28 +00001468
Nick Lewyckycfb284c2011-01-28 08:43:14 +00001469 writeAlias(F, G);
1470 writeAlias(F, H);
Nick Lewyckyd3c6dfe2010-05-13 05:48:45 +00001471
Nick Lewyckyf1cec162011-01-25 08:56:50 +00001472 F->setAlignment(MaxAlignment);
1473 F->setLinkage(GlobalValue::PrivateLinkage);
1474 } else {
1475 // We can't merge them. Instead, pick one and update all direct callers
1476 // to call it and hope that we improve the instruction cache hit rate.
1477 replaceDirectCallers(G, F);
1478 }
Nick Lewycky71972d42010-09-07 01:42:10 +00001479
1480 ++NumDoubleWeak;
Nick Lewyckyf216f69a2010-08-06 07:21:30 +00001481 } else {
Nick Lewyckycfb284c2011-01-28 08:43:14 +00001482 writeThunkOrAlias(F, G);
Nick Lewycky3c6d34a2008-11-02 16:46:26 +00001483 }
1484
Nick Lewyckye04dc222009-06-12 08:04:51 +00001485 ++NumFunctionsMerged;
Nick Lewyckyd01d42e2008-11-02 05:52:50 +00001486}
1487
Nick Lewyckycfb284c2011-01-28 08:43:14 +00001488// Insert a ComparableFunction into the FnSet, or merge it away if equal to one
1489// that was already inserted.
1490bool MergeFunctions::insert(ComparableFunction &NewF) {
Nick Lewycky00959372010-09-05 08:22:49 +00001491 std::pair<FnSetType::iterator, bool> Result = FnSet.insert(NewF);
Nick Lewycky292e78c2011-02-09 06:32:02 +00001492 if (Result.second) {
1493 DEBUG(dbgs() << "Inserting as unique: " << NewF.getFunc()->getName() << '\n');
Nick Lewycky00959372010-09-05 08:22:49 +00001494 return false;
Nick Lewycky292e78c2011-02-09 06:32:02 +00001495 }
Nick Lewyckyfbd27572010-08-08 05:04:23 +00001496
Nick Lewyckyf3a07ec2010-09-05 09:00:32 +00001497 const ComparableFunction &OldF = *Result.first;
Nick Lewycky00959372010-09-05 08:22:49 +00001498
Matt Arsenault517d84e2013-10-01 18:05:30 +00001499 // Don't merge tiny functions, since it can just end up making the function
1500 // larger.
1501 // FIXME: Should still merge them if they are unnamed_addr and produce an
1502 // alias.
1503 if (NewF.getFunc()->size() == 1) {
1504 if (NewF.getFunc()->front().size() <= 2) {
1505 DEBUG(dbgs() << NewF.getFunc()->getName()
1506 << " is to small to bother merging\n");
1507 return false;
1508 }
1509 }
1510
Nick Lewycky00959372010-09-05 08:22:49 +00001511 // Never thunk a strong function to a weak function.
Nick Lewycky71972d42010-09-07 01:42:10 +00001512 assert(!OldF.getFunc()->mayBeOverridden() ||
1513 NewF.getFunc()->mayBeOverridden());
Nick Lewycky00959372010-09-05 08:22:49 +00001514
Nick Lewyckyf3a07ec2010-09-05 09:00:32 +00001515 DEBUG(dbgs() << " " << OldF.getFunc()->getName() << " == "
1516 << NewF.getFunc()->getName() << '\n');
Nick Lewycky00959372010-09-05 08:22:49 +00001517
Nick Lewyckyf3a07ec2010-09-05 09:00:32 +00001518 Function *DeleteF = NewF.getFunc();
1519 NewF.release();
Nick Lewyckycfb284c2011-01-28 08:43:14 +00001520 mergeTwoFunctions(OldF.getFunc(), DeleteF);
Nick Lewycky00959372010-09-05 08:22:49 +00001521 return true;
Nick Lewyckyfbd27572010-08-08 05:04:23 +00001522}
Nick Lewyckyd01d42e2008-11-02 05:52:50 +00001523
Nick Lewyckycfb284c2011-01-28 08:43:14 +00001524// Remove a function from FnSet. If it was already in FnSet, add it to Deferred
1525// so that we'll look at it in the next round.
1526void MergeFunctions::remove(Function *F) {
Nick Lewycky292e78c2011-02-09 06:32:02 +00001527 // We need to make sure we remove F, not a function "equal" to F per the
1528 // function equality comparator.
1529 //
1530 // The special "lookup only" ComparableFunction bypasses the expensive
1531 // function comparison in favour of a pointer comparison on the underlying
1532 // Function*'s.
1533 ComparableFunction CF = ComparableFunction(F, ComparableFunction::LookupOnly);
Nick Lewycky4e250c82011-01-02 02:46:33 +00001534 if (FnSet.erase(CF)) {
Nick Lewycky292e78c2011-02-09 06:32:02 +00001535 DEBUG(dbgs() << "Removed " << F->getName() << " from set and deferred it.\n");
Nick Lewycky4e250c82011-01-02 02:46:33 +00001536 Deferred.push_back(F);
Nick Lewycky0464d1d2010-08-31 05:53:05 +00001537 }
Nick Lewycky4e250c82011-01-02 02:46:33 +00001538}
Nick Lewycky00959372010-09-05 08:22:49 +00001539
Nick Lewyckycfb284c2011-01-28 08:43:14 +00001540// For each instruction used by the value, remove() the function that contains
1541// the instruction. This should happen right before a call to RAUW.
1542void MergeFunctions::removeUsers(Value *V) {
Nick Lewycky5361b842011-01-02 19:16:44 +00001543 std::vector<Value *> Worklist;
1544 Worklist.push_back(V);
1545 while (!Worklist.empty()) {
1546 Value *V = Worklist.back();
1547 Worklist.pop_back();
1548
Chandler Carruthcdf47882014-03-09 03:16:01 +00001549 for (User *U : V->users()) {
1550 if (Instruction *I = dyn_cast<Instruction>(U)) {
Nick Lewyckycfb284c2011-01-28 08:43:14 +00001551 remove(I->getParent()->getParent());
Chandler Carruthcdf47882014-03-09 03:16:01 +00001552 } else if (isa<GlobalValue>(U)) {
Nick Lewycky540f9532011-01-15 10:16:23 +00001553 // do nothing
Chandler Carruthcdf47882014-03-09 03:16:01 +00001554 } else if (Constant *C = dyn_cast<Constant>(U)) {
1555 for (User *UU : C->users())
1556 Worklist.push_back(UU);
Nick Lewycky5361b842011-01-02 19:16:44 +00001557 }
Nick Lewycky00959372010-09-05 08:22:49 +00001558 }
Nick Lewycky0464d1d2010-08-31 05:53:05 +00001559 }
Nick Lewycky00959372010-09-05 08:22:49 +00001560}