1 //===- 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 //
12 // Order relation is defined on set of functions. It was made through
13 // special function comparison procedure that returns
14 // 0 when functions are equal,
15 // -1 when Left function is less than right function, and
16 // 1 for opposite case. We need total-ordering, so we need to maintain
17 // four properties on the functions set:
18 // a <= a (reflexivity)
19 // if a <= b and b <= a then a = b (antisymmetry)
20 // if a <= b and b <= c then a <= c (transitivity).
21 // for all a and b: a <= b or b <= a (totality).
22 //
23 // Comparison iterates through each instruction in each basic block.
24 // Functions are kept on binary tree. For each new function F we perform
25 // lookup in binary tree.
26 // In practice it works the following way:
27 // -- We define Function* container class with custom "operator<" (FunctionPtr).
28 // -- "FunctionPtr" instances are stored in std::set collection, so every
29 //    std::set::insert operation will give you result in log(N) time.
30 //
31 // As an optimization, a hash of the function structure is calculated first, and
32 // two functions are only compared if they have the same hash. This hash is
33 // cheap to compute, and has the property that if function F == G according to
34 // the comparison function, then hash(F) == hash(G). This consistency property
35 // is critical to ensuring all possible merging opportunities are exploited.
36 // Collisions in the hash affect the speed of the pass but not the correctness
37 // or determinism of the resulting transformation.
38 //
39 // When a match is found the functions are folded. If both functions are
40 // overridable, we move the functionality into a new internal function and
41 // leave two overridable thunks to it.
42 //
43 //===----------------------------------------------------------------------===//
44 //
45 // Future work:
46 //
47 // * virtual functions.
48 //
49 // Many functions have their address taken by the virtual function table for
50 // the object they belong to. However, as long as it's only used for a lookup
51 // and call, this is irrelevant, and we'd like to fold such functions.
52 //
53 // * be smarter about bitcasts.
54 //
55 // In order to fold functions, we will sometimes add either bitcast instructions
56 // or bitcast constant expressions. Unfortunately, this can confound further
57 // analysis since the two functions differ where one has a bitcast and the
58 // other doesn't. We should learn to look through bitcasts.
59 //
60 // * Compare complex types with pointer types inside.
61 // * Compare cross-reference cases.
62 // * Compare complex expressions.
63 //
64 // All the three issues above could be described as ability to prove that
65 // fA == fB == fC == fE == fF == fG in example below:
66 //
67 //  void fA() {
68 //    fB();
69 //  }
70 //  void fB() {
71 //    fA();
72 //  }
73 //
74 //  void fE() {
75 //    fF();
76 //  }
77 //  void fF() {
78 //    fG();
79 //  }
80 //  void fG() {
81 //    fE();
82 //  }
83 //
84 // Simplest cross-reference case (fA <--> fB) was implemented in previous
85 // versions of MergeFunctions, though it presented only in two function pairs
86 // in test-suite (that counts >50k functions)
87 // Though possibility to detect complex cross-referencing (e.g.: A->B->C->D->A)
88 // could cover much more cases.
89 //
90 //===----------------------------------------------------------------------===//
91 
92 #include "llvm/ADT/Hashing.h"
93 #include "llvm/ADT/STLExtras.h"
94 #include "llvm/ADT/SmallSet.h"
95 #include "llvm/ADT/Statistic.h"
96 #include "llvm/IR/CallSite.h"
97 #include "llvm/IR/Constants.h"
98 #include "llvm/IR/DataLayout.h"
99 #include "llvm/IR/DebugInfo.h"
100 #include "llvm/IR/IRBuilder.h"
101 #include "llvm/IR/Instructions.h"
102 #include "llvm/IR/IntrinsicInst.h"
103 #include "llvm/IR/LLVMContext.h"
104 #include "llvm/IR/Module.h"
105 #include "llvm/IR/ValueHandle.h"
106 #include "llvm/IR/ValueMap.h"
107 #include "llvm/Pass.h"
108 #include "llvm/Support/CommandLine.h"
109 #include "llvm/Support/Debug.h"
110 #include "llvm/Support/ErrorHandling.h"
111 #include "llvm/Support/raw_ostream.h"
112 #include "llvm/Transforms/IPO.h"
113 #include "llvm/Transforms/Utils/FunctionComparator.h"
114 #include <vector>
115 
116 using namespace llvm;
117 
118 #define DEBUG_TYPE "mergefunc"
119 
120 STATISTIC(NumFunctionsMerged, "Number of functions merged");
121 STATISTIC(NumThunksWritten, "Number of thunks generated");
122 STATISTIC(NumAliasesWritten, "Number of aliases generated");
123 STATISTIC(NumDoubleWeak, "Number of new functions created");
124 
125 static cl::opt<unsigned> NumFunctionsForSanityCheck(
126     "mergefunc-sanity",
127     cl::desc("How many functions in module could be used for "
128              "MergeFunctions pass sanity check. "
129              "'0' disables this check. Works only with '-debug' key."),
130     cl::init(0), cl::Hidden);
131 
132 // Under option -mergefunc-preserve-debug-info we:
133 // - Do not create a new function for a thunk.
134 // - Retain the debug info for a thunk's parameters (and associated
135 //   instructions for the debug info) from the entry block.
136 //   Note: -debug will display the algorithm at work.
137 // - Create debug-info for the call (to the shared implementation) made by
138 //   a thunk and its return value.
139 // - Erase the rest of the function, retaining the (minimally sized) entry
140 //   block to create a thunk.
141 // - Preserve a thunk's call site to point to the thunk even when both occur
142 //   within the same translation unit, to aid debugability. Note that this
143 //   behaviour differs from the underlying -mergefunc implementation which
144 //   modifies the thunk's call site to point to the shared implementation
145 //   when both occur within the same translation unit.
146 static cl::opt<bool>
147     MergeFunctionsPDI("mergefunc-preserve-debug-info", cl::Hidden,
148                       cl::init(false),
149                       cl::desc("Preserve debug info in thunk when mergefunc "
150                                "transformations are made."));
151 
152 namespace {
153 
154 class FunctionNode {
155   mutable AssertingVH<Function> F;
156   FunctionComparator::FunctionHash Hash;
157 public:
158   // Note the hash is recalculated potentially multiple times, but it is cheap.
159   FunctionNode(Function *F)
160     : F(F), Hash(FunctionComparator::functionHash(*F))  {}
161   Function *getFunc() const { return F; }
162   FunctionComparator::FunctionHash getHash() const { return Hash; }
163 
164   /// Replace the reference to the function F by the function G, assuming their
165   /// implementations are equal.
166   void replaceBy(Function *G) const {
167     F = G;
168   }
169 
170   void release() { F = nullptr; }
171 };
172 
173 /// MergeFunctions finds functions which will generate identical machine code,
174 /// by considering all pointer types to be equivalent. Once identified,
175 /// MergeFunctions will fold them by replacing a call to one to a call to a
176 /// bitcast of the other.
177 ///
178 class MergeFunctions : public ModulePass {
179 public:
180   static char ID;
181   MergeFunctions()
182     : ModulePass(ID), FnTree(FunctionNodeCmp(&GlobalNumbers)), FNodesInTree(),
183       HasGlobalAliases(false) {
184     initializeMergeFunctionsPass(*PassRegistry::getPassRegistry());
185   }
186 
187   bool runOnModule(Module &M) override;
188 
189 private:
190   // The function comparison operator is provided here so that FunctionNodes do
191   // not need to become larger with another pointer.
192   class FunctionNodeCmp {
193     GlobalNumberState* GlobalNumbers;
194   public:
195     FunctionNodeCmp(GlobalNumberState* GN) : GlobalNumbers(GN) {}
196     bool operator()(const FunctionNode &LHS, const FunctionNode &RHS) const {
197       // Order first by hashes, then full function comparison.
198       if (LHS.getHash() != RHS.getHash())
199         return LHS.getHash() < RHS.getHash();
200       FunctionComparator FCmp(LHS.getFunc(), RHS.getFunc(), GlobalNumbers);
201       return FCmp.compare() == -1;
202     }
203   };
204   typedef std::set<FunctionNode, FunctionNodeCmp> FnTreeType;
205 
206   GlobalNumberState GlobalNumbers;
207 
208   /// A work queue of functions that may have been modified and should be
209   /// analyzed again.
210   std::vector<WeakVH> Deferred;
211 
212   /// Checks the rules of order relation introduced among functions set.
213   /// Returns true, if sanity check has been passed, and false if failed.
214   bool doSanityCheck(std::vector<WeakVH> &Worklist);
215 
216   /// Insert a ComparableFunction into the FnTree, or merge it away if it's
217   /// equal to one that's already present.
218   bool insert(Function *NewFunction);
219 
220   /// Remove a Function from the FnTree and queue it up for a second sweep of
221   /// analysis.
222   void remove(Function *F);
223 
224   /// Find the functions that use this Value and remove them from FnTree and
225   /// queue the functions.
226   void removeUsers(Value *V);
227 
228   /// Replace all direct calls of Old with calls of New. Will bitcast New if
229   /// necessary to make types match.
230   void replaceDirectCallers(Function *Old, Function *New);
231 
232   /// Merge two equivalent functions. Upon completion, G may be deleted, or may
233   /// be converted into a thunk. In either case, it should never be visited
234   /// again.
235   void mergeTwoFunctions(Function *F, Function *G);
236 
237   /// Replace G with a thunk or an alias to F. Deletes G.
238   void writeThunkOrAlias(Function *F, Function *G);
239 
240   /// Fill PDIUnrelatedWL with instructions from the entry block that are
241   /// unrelated to parameter related debug info.
242   void filterInstsUnrelatedToPDI(BasicBlock *GEntryBlock,
243                                  std::vector<Instruction *> &PDIUnrelatedWL);
244 
245   /// Erase the rest of the CFG (i.e. barring the entry block).
246   void eraseTail(Function *G);
247 
248   /// Erase the instructions in PDIUnrelatedWL as they are unrelated to the
249   /// parameter debug info, from the entry block.
250   void eraseInstsUnrelatedToPDI(std::vector<Instruction *> &PDIUnrelatedWL);
251 
252   /// Replace G with a simple tail call to bitcast(F). Also (unless
253   /// MergeFunctionsPDI holds) replace direct uses of G with bitcast(F),
254   /// delete G.
255   void writeThunk(Function *F, Function *G);
256 
257   /// Replace G with an alias to F. Deletes G.
258   void writeAlias(Function *F, Function *G);
259 
260   /// Replace function F with function G in the function tree.
261   void replaceFunctionInTree(const FunctionNode &FN, Function *G);
262 
263   /// The set of all distinct functions. Use the insert() and remove() methods
264   /// to modify it. The map allows efficient lookup and deferring of Functions.
265   FnTreeType FnTree;
266   // Map functions to the iterators of the FunctionNode which contains them
267   // in the FnTree. This must be updated carefully whenever the FnTree is
268   // modified, i.e. in insert(), remove(), and replaceFunctionInTree(), to avoid
269   // dangling iterators into FnTree. The invariant that preserves this is that
270   // there is exactly one mapping F -> FN for each FunctionNode FN in FnTree.
271   ValueMap<Function*, FnTreeType::iterator> FNodesInTree;
272 
273   /// Whether or not the target supports global aliases.
274   bool HasGlobalAliases;
275 };
276 
277 } // end anonymous namespace
278 
279 char MergeFunctions::ID = 0;
280 INITIALIZE_PASS(MergeFunctions, "mergefunc", "Merge Functions", false, false)
281 
282 ModulePass *llvm::createMergeFunctionsPass() {
283   return new MergeFunctions();
284 }
285 
286 bool MergeFunctions::doSanityCheck(std::vector<WeakVH> &Worklist) {
287   if (const unsigned Max = NumFunctionsForSanityCheck) {
288     unsigned TripleNumber = 0;
289     bool Valid = true;
290 
291     dbgs() << "MERGEFUNC-SANITY: Started for first " << Max << " functions.\n";
292 
293     unsigned i = 0;
294     for (std::vector<WeakVH>::iterator I = Worklist.begin(), E = Worklist.end();
295          I != E && i < Max; ++I, ++i) {
296       unsigned j = i;
297       for (std::vector<WeakVH>::iterator J = I; J != E && j < Max; ++J, ++j) {
298         Function *F1 = cast<Function>(*I);
299         Function *F2 = cast<Function>(*J);
300         int Res1 = FunctionComparator(F1, F2, &GlobalNumbers).compare();
301         int Res2 = FunctionComparator(F2, F1, &GlobalNumbers).compare();
302 
303         // If F1 <= F2, then F2 >= F1, otherwise report failure.
304         if (Res1 != -Res2) {
305           dbgs() << "MERGEFUNC-SANITY: Non-symmetric; triple: " << TripleNumber
306                  << "\n";
307           dbgs() << *F1 << '\n' << *F2 << '\n';
308           Valid = false;
309         }
310 
311         if (Res1 == 0)
312           continue;
313 
314         unsigned k = j;
315         for (std::vector<WeakVH>::iterator K = J; K != E && k < Max;
316              ++k, ++K, ++TripleNumber) {
317           if (K == J)
318             continue;
319 
320           Function *F3 = cast<Function>(*K);
321           int Res3 = FunctionComparator(F1, F3, &GlobalNumbers).compare();
322           int Res4 = FunctionComparator(F2, F3, &GlobalNumbers).compare();
323 
324           bool Transitive = true;
325 
326           if (Res1 != 0 && Res1 == Res4) {
327             // F1 > F2, F2 > F3 => F1 > F3
328             Transitive = Res3 == Res1;
329           } else if (Res3 != 0 && Res3 == -Res4) {
330             // F1 > F3, F3 > F2 => F1 > F2
331             Transitive = Res3 == Res1;
332           } else if (Res4 != 0 && -Res3 == Res4) {
333             // F2 > F3, F3 > F1 => F2 > F1
334             Transitive = Res4 == -Res1;
335           }
336 
337           if (!Transitive) {
338             dbgs() << "MERGEFUNC-SANITY: Non-transitive; triple: "
339                    << TripleNumber << "\n";
340             dbgs() << "Res1, Res3, Res4: " << Res1 << ", " << Res3 << ", "
341                    << Res4 << "\n";
342             dbgs() << *F1 << '\n' << *F2 << '\n' << *F3 << '\n';
343             Valid = false;
344           }
345         }
346       }
347     }
348 
349     dbgs() << "MERGEFUNC-SANITY: " << (Valid ? "Passed." : "Failed.") << "\n";
350     return Valid;
351   }
352   return true;
353 }
354 
355 bool MergeFunctions::runOnModule(Module &M) {
356   if (skipModule(M))
357     return false;
358 
359   bool Changed = false;
360 
361   // All functions in the module, ordered by hash. Functions with a unique
362   // hash value are easily eliminated.
363   std::vector<std::pair<FunctionComparator::FunctionHash, Function *>>
364     HashedFuncs;
365   for (Function &Func : M) {
366     if (!Func.isDeclaration() && !Func.hasAvailableExternallyLinkage()) {
367       HashedFuncs.push_back({FunctionComparator::functionHash(Func), &Func});
368     }
369   }
370 
371   std::stable_sort(
372       HashedFuncs.begin(), HashedFuncs.end(),
373       [](const std::pair<FunctionComparator::FunctionHash, Function *> &a,
374          const std::pair<FunctionComparator::FunctionHash, Function *> &b) {
375         return a.first < b.first;
376       });
377 
378   auto S = HashedFuncs.begin();
379   for (auto I = HashedFuncs.begin(), IE = HashedFuncs.end(); I != IE; ++I) {
380     // If the hash value matches the previous value or the next one, we must
381     // consider merging it. Otherwise it is dropped and never considered again.
382     if ((I != S && std::prev(I)->first == I->first) ||
383         (std::next(I) != IE && std::next(I)->first == I->first) ) {
384       Deferred.push_back(WeakVH(I->second));
385     }
386   }
387 
388   do {
389     std::vector<WeakVH> Worklist;
390     Deferred.swap(Worklist);
391 
392     DEBUG(doSanityCheck(Worklist));
393 
394     DEBUG(dbgs() << "size of module: " << M.size() << '\n');
395     DEBUG(dbgs() << "size of worklist: " << Worklist.size() << '\n');
396 
397     // Insert functions and merge them.
398     for (WeakVH &I : Worklist) {
399       if (!I)
400         continue;
401       Function *F = cast<Function>(I);
402       if (!F->isDeclaration() && !F->hasAvailableExternallyLinkage()) {
403         Changed |= insert(F);
404       }
405     }
406     DEBUG(dbgs() << "size of FnTree: " << FnTree.size() << '\n');
407   } while (!Deferred.empty());
408 
409   FnTree.clear();
410   GlobalNumbers.clear();
411 
412   return Changed;
413 }
414 
415 // Replace direct callers of Old with New.
416 void MergeFunctions::replaceDirectCallers(Function *Old, Function *New) {
417   Constant *BitcastNew = ConstantExpr::getBitCast(New, Old->getType());
418   for (auto UI = Old->use_begin(), UE = Old->use_end(); UI != UE;) {
419     Use *U = &*UI;
420     ++UI;
421     CallSite CS(U->getUser());
422     if (CS && CS.isCallee(U)) {
423       // Transfer the called function's attributes to the call site. Due to the
424       // bitcast we will 'lose' ABI changing attributes because the 'called
425       // function' is no longer a Function* but the bitcast. Code that looks up
426       // the attributes from the called function will fail.
427 
428       // FIXME: This is not actually true, at least not anymore. The callsite
429       // will always have the same ABI affecting attributes as the callee,
430       // because otherwise the original input has UB. Note that Old and New
431       // always have matching ABI, so no attributes need to be changed.
432       // Transferring other attributes may help other optimizations, but that
433       // should be done uniformly and not in this ad-hoc way.
434       auto &Context = New->getContext();
435       auto NewFuncAttrs = New->getAttributes();
436       auto CallSiteAttrs = CS.getAttributes();
437 
438       CallSiteAttrs = CallSiteAttrs.addAttributes(
439           Context, AttributeList::ReturnIndex, NewFuncAttrs.getRetAttributes());
440 
441       for (unsigned argIdx = 0; argIdx < CS.arg_size(); argIdx++) {
442         if (AttributeSetNode *Attrs = NewFuncAttrs.getParamAttributes(argIdx))
443           CallSiteAttrs = CallSiteAttrs.addAttributes(Context, argIdx, Attrs);
444       }
445 
446       CS.setAttributes(CallSiteAttrs);
447 
448       remove(CS.getInstruction()->getParent()->getParent());
449       U->set(BitcastNew);
450     }
451   }
452 }
453 
454 // Replace G with an alias to F if possible, or else a thunk to F. Deletes G.
455 void MergeFunctions::writeThunkOrAlias(Function *F, Function *G) {
456   if (HasGlobalAliases && G->hasGlobalUnnamedAddr()) {
457     if (G->hasExternalLinkage() || G->hasLocalLinkage() ||
458         G->hasWeakLinkage()) {
459       writeAlias(F, G);
460       return;
461     }
462   }
463 
464   writeThunk(F, G);
465 }
466 
467 // Helper for writeThunk,
468 // Selects proper bitcast operation,
469 // but a bit simpler then CastInst::getCastOpcode.
470 static Value *createCast(IRBuilder<> &Builder, Value *V, Type *DestTy) {
471   Type *SrcTy = V->getType();
472   if (SrcTy->isStructTy()) {
473     assert(DestTy->isStructTy());
474     assert(SrcTy->getStructNumElements() == DestTy->getStructNumElements());
475     Value *Result = UndefValue::get(DestTy);
476     for (unsigned int I = 0, E = SrcTy->getStructNumElements(); I < E; ++I) {
477       Value *Element = createCast(
478           Builder, Builder.CreateExtractValue(V, makeArrayRef(I)),
479           DestTy->getStructElementType(I));
480 
481       Result =
482           Builder.CreateInsertValue(Result, Element, makeArrayRef(I));
483     }
484     return Result;
485   }
486   assert(!DestTy->isStructTy());
487   if (SrcTy->isIntegerTy() && DestTy->isPointerTy())
488     return Builder.CreateIntToPtr(V, DestTy);
489   else if (SrcTy->isPointerTy() && DestTy->isIntegerTy())
490     return Builder.CreatePtrToInt(V, DestTy);
491   else
492     return Builder.CreateBitCast(V, DestTy);
493 }
494 
495 // Erase the instructions in PDIUnrelatedWL as they are unrelated to the
496 // parameter debug info, from the entry block.
497 void MergeFunctions::eraseInstsUnrelatedToPDI(
498     std::vector<Instruction *> &PDIUnrelatedWL) {
499 
500   DEBUG(dbgs() << " Erasing instructions (in reverse order of appearance in "
501                   "entry block) unrelated to parameter debug info from entry "
502                   "block: {\n");
503   while (!PDIUnrelatedWL.empty()) {
504     Instruction *I = PDIUnrelatedWL.back();
505     DEBUG(dbgs() << "  Deleting Instruction: ");
506     DEBUG(I->print(dbgs()));
507     DEBUG(dbgs() << "\n");
508     I->eraseFromParent();
509     PDIUnrelatedWL.pop_back();
510   }
511   DEBUG(dbgs() << " } // Done erasing instructions unrelated to parameter "
512                   "debug info from entry block. \n");
513 }
514 
515 // Reduce G to its entry block.
516 void MergeFunctions::eraseTail(Function *G) {
517 
518   std::vector<BasicBlock *> WorklistBB;
519   for (Function::iterator BBI = std::next(G->begin()), BBE = G->end();
520        BBI != BBE; ++BBI) {
521     BBI->dropAllReferences();
522     WorklistBB.push_back(&*BBI);
523   }
524   while (!WorklistBB.empty()) {
525     BasicBlock *BB = WorklistBB.back();
526     BB->eraseFromParent();
527     WorklistBB.pop_back();
528   }
529 }
530 
531 // We are interested in the following instructions from the entry block as being
532 // related to parameter debug info:
533 // - @llvm.dbg.declare
534 // - stores from the incoming parameters to locations on the stack-frame
535 // - allocas that create these locations on the stack-frame
536 // - @llvm.dbg.value
537 // - the entry block's terminator
538 // The rest are unrelated to debug info for the parameters; fill up
539 // PDIUnrelatedWL with such instructions.
540 void MergeFunctions::filterInstsUnrelatedToPDI(
541     BasicBlock *GEntryBlock, std::vector<Instruction *> &PDIUnrelatedWL) {
542 
543   std::set<Instruction *> PDIRelated;
544   for (BasicBlock::iterator BI = GEntryBlock->begin(), BIE = GEntryBlock->end();
545        BI != BIE; ++BI) {
546     if (auto *DVI = dyn_cast<DbgValueInst>(&*BI)) {
547       DEBUG(dbgs() << " Deciding: ");
548       DEBUG(BI->print(dbgs()));
549       DEBUG(dbgs() << "\n");
550       DILocalVariable *DILocVar = DVI->getVariable();
551       if (DILocVar->isParameter()) {
552         DEBUG(dbgs() << "  Include (parameter): ");
553         DEBUG(BI->print(dbgs()));
554         DEBUG(dbgs() << "\n");
555         PDIRelated.insert(&*BI);
556       } else {
557         DEBUG(dbgs() << "  Delete (!parameter): ");
558         DEBUG(BI->print(dbgs()));
559         DEBUG(dbgs() << "\n");
560       }
561     } else if (auto *DDI = dyn_cast<DbgDeclareInst>(&*BI)) {
562       DEBUG(dbgs() << " Deciding: ");
563       DEBUG(BI->print(dbgs()));
564       DEBUG(dbgs() << "\n");
565       DILocalVariable *DILocVar = DDI->getVariable();
566       if (DILocVar->isParameter()) {
567         DEBUG(dbgs() << "  Parameter: ");
568         DEBUG(DILocVar->print(dbgs()));
569         AllocaInst *AI = dyn_cast_or_null<AllocaInst>(DDI->getAddress());
570         if (AI) {
571           DEBUG(dbgs() << "  Processing alloca users: ");
572           DEBUG(dbgs() << "\n");
573           for (User *U : AI->users()) {
574             if (StoreInst *SI = dyn_cast<StoreInst>(U)) {
575               if (Value *Arg = SI->getValueOperand()) {
576                 if (dyn_cast<Argument>(Arg)) {
577                   DEBUG(dbgs() << "  Include: ");
578                   DEBUG(AI->print(dbgs()));
579                   DEBUG(dbgs() << "\n");
580                   PDIRelated.insert(AI);
581                   DEBUG(dbgs() << "   Include (parameter): ");
582                   DEBUG(SI->print(dbgs()));
583                   DEBUG(dbgs() << "\n");
584                   PDIRelated.insert(SI);
585                   DEBUG(dbgs() << "  Include: ");
586                   DEBUG(BI->print(dbgs()));
587                   DEBUG(dbgs() << "\n");
588                   PDIRelated.insert(&*BI);
589                 } else {
590                   DEBUG(dbgs() << "   Delete (!parameter): ");
591                   DEBUG(SI->print(dbgs()));
592                   DEBUG(dbgs() << "\n");
593                 }
594               }
595             } else {
596               DEBUG(dbgs() << "   Defer: ");
597               DEBUG(U->print(dbgs()));
598               DEBUG(dbgs() << "\n");
599             }
600           }
601         } else {
602           DEBUG(dbgs() << "  Delete (alloca NULL): ");
603           DEBUG(BI->print(dbgs()));
604           DEBUG(dbgs() << "\n");
605         }
606       } else {
607         DEBUG(dbgs() << "  Delete (!parameter): ");
608         DEBUG(BI->print(dbgs()));
609         DEBUG(dbgs() << "\n");
610       }
611     } else if (dyn_cast<TerminatorInst>(BI) == GEntryBlock->getTerminator()) {
612       DEBUG(dbgs() << " Will Include Terminator: ");
613       DEBUG(BI->print(dbgs()));
614       DEBUG(dbgs() << "\n");
615       PDIRelated.insert(&*BI);
616     } else {
617       DEBUG(dbgs() << " Defer: ");
618       DEBUG(BI->print(dbgs()));
619       DEBUG(dbgs() << "\n");
620     }
621   }
622   DEBUG(dbgs()
623         << " Report parameter debug info related/related instructions: {\n");
624   for (BasicBlock::iterator BI = GEntryBlock->begin(), BE = GEntryBlock->end();
625        BI != BE; ++BI) {
626 
627     Instruction *I = &*BI;
628     if (PDIRelated.find(I) == PDIRelated.end()) {
629       DEBUG(dbgs() << "  !PDIRelated: ");
630       DEBUG(I->print(dbgs()));
631       DEBUG(dbgs() << "\n");
632       PDIUnrelatedWL.push_back(I);
633     } else {
634       DEBUG(dbgs() << "   PDIRelated: ");
635       DEBUG(I->print(dbgs()));
636       DEBUG(dbgs() << "\n");
637     }
638   }
639   DEBUG(dbgs() << " }\n");
640 }
641 
642 // Replace G with a simple tail call to bitcast(F). Also (unless
643 // MergeFunctionsPDI holds) replace direct uses of G with bitcast(F),
644 // delete G. Under MergeFunctionsPDI, we use G itself for creating
645 // the thunk as we preserve the debug info (and associated instructions)
646 // from G's entry block pertaining to G's incoming arguments which are
647 // passed on as corresponding arguments in the call that G makes to F.
648 // For better debugability, under MergeFunctionsPDI, we do not modify G's
649 // call sites to point to F even when within the same translation unit.
650 void MergeFunctions::writeThunk(Function *F, Function *G) {
651   if (!G->isInterposable() && !MergeFunctionsPDI) {
652     // Redirect direct callers of G to F. (See note on MergeFunctionsPDI
653     // above).
654     replaceDirectCallers(G, F);
655   }
656 
657   // If G was internal then we may have replaced all uses of G with F. If so,
658   // stop here and delete G. There's no need for a thunk. (See note on
659   // MergeFunctionsPDI above).
660   if (G->hasLocalLinkage() && G->use_empty() && !MergeFunctionsPDI) {
661     G->eraseFromParent();
662     return;
663   }
664 
665   BasicBlock *GEntryBlock = nullptr;
666   std::vector<Instruction *> PDIUnrelatedWL;
667   BasicBlock *BB = nullptr;
668   Function *NewG = nullptr;
669   if (MergeFunctionsPDI) {
670     DEBUG(dbgs() << "writeThunk: (MergeFunctionsPDI) Do not create a new "
671                     "function as thunk; retain original: "
672                  << G->getName() << "()\n");
673     GEntryBlock = &G->getEntryBlock();
674     DEBUG(dbgs() << "writeThunk: (MergeFunctionsPDI) filter parameter related "
675                     "debug info for "
676                  << G->getName() << "() {\n");
677     filterInstsUnrelatedToPDI(GEntryBlock, PDIUnrelatedWL);
678     GEntryBlock->getTerminator()->eraseFromParent();
679     BB = GEntryBlock;
680   } else {
681     NewG = Function::Create(G->getFunctionType(), G->getLinkage(), "",
682                             G->getParent());
683     BB = BasicBlock::Create(F->getContext(), "", NewG);
684   }
685 
686   IRBuilder<> Builder(BB);
687   Function *H = MergeFunctionsPDI ? G : NewG;
688   SmallVector<Value *, 16> Args;
689   unsigned i = 0;
690   FunctionType *FFTy = F->getFunctionType();
691   for (Argument & AI : H->args()) {
692     Args.push_back(createCast(Builder, &AI, FFTy->getParamType(i)));
693     ++i;
694   }
695 
696   CallInst *CI = Builder.CreateCall(F, Args);
697   ReturnInst *RI = nullptr;
698   CI->setTailCall();
699   CI->setCallingConv(F->getCallingConv());
700   CI->setAttributes(F->getAttributes());
701   if (H->getReturnType()->isVoidTy()) {
702     RI = Builder.CreateRetVoid();
703   } else {
704     RI = Builder.CreateRet(createCast(Builder, CI, H->getReturnType()));
705   }
706 
707   if (MergeFunctionsPDI) {
708     DISubprogram *DIS = G->getSubprogram();
709     if (DIS) {
710       DebugLoc CIDbgLoc = DebugLoc::get(DIS->getScopeLine(), 0, DIS);
711       DebugLoc RIDbgLoc = DebugLoc::get(DIS->getScopeLine(), 0, DIS);
712       CI->setDebugLoc(CIDbgLoc);
713       RI->setDebugLoc(RIDbgLoc);
714     } else {
715       DEBUG(dbgs() << "writeThunk: (MergeFunctionsPDI) No DISubprogram for "
716                    << G->getName() << "()\n");
717     }
718     eraseTail(G);
719     eraseInstsUnrelatedToPDI(PDIUnrelatedWL);
720     DEBUG(dbgs() << "} // End of parameter related debug info filtering for: "
721                  << G->getName() << "()\n");
722   } else {
723     NewG->copyAttributesFrom(G);
724     NewG->takeName(G);
725     removeUsers(G);
726     G->replaceAllUsesWith(NewG);
727     G->eraseFromParent();
728   }
729 
730   DEBUG(dbgs() << "writeThunk: " << H->getName() << '\n');
731   ++NumThunksWritten;
732 }
733 
734 // Replace G with an alias to F and delete G.
735 void MergeFunctions::writeAlias(Function *F, Function *G) {
736   auto *GA = GlobalAlias::create(G->getLinkage(), "", F);
737   F->setAlignment(std::max(F->getAlignment(), G->getAlignment()));
738   GA->takeName(G);
739   GA->setVisibility(G->getVisibility());
740   removeUsers(G);
741   G->replaceAllUsesWith(GA);
742   G->eraseFromParent();
743 
744   DEBUG(dbgs() << "writeAlias: " << GA->getName() << '\n');
745   ++NumAliasesWritten;
746 }
747 
748 // Merge two equivalent functions. Upon completion, Function G is deleted.
749 void MergeFunctions::mergeTwoFunctions(Function *F, Function *G) {
750   if (F->isInterposable()) {
751     assert(G->isInterposable());
752 
753     // Make them both thunks to the same internal function.
754     Function *H = Function::Create(F->getFunctionType(), F->getLinkage(), "",
755                                    F->getParent());
756     H->copyAttributesFrom(F);
757     H->takeName(F);
758     removeUsers(F);
759     F->replaceAllUsesWith(H);
760 
761     unsigned MaxAlignment = std::max(G->getAlignment(), H->getAlignment());
762 
763     if (HasGlobalAliases) {
764       writeAlias(F, G);
765       writeAlias(F, H);
766     } else {
767       writeThunk(F, G);
768       writeThunk(F, H);
769     }
770 
771     F->setAlignment(MaxAlignment);
772     F->setLinkage(GlobalValue::PrivateLinkage);
773     ++NumDoubleWeak;
774   } else {
775     writeThunkOrAlias(F, G);
776   }
777 
778   ++NumFunctionsMerged;
779 }
780 
781 /// Replace function F by function G.
782 void MergeFunctions::replaceFunctionInTree(const FunctionNode &FN,
783                                            Function *G) {
784   Function *F = FN.getFunc();
785   assert(FunctionComparator(F, G, &GlobalNumbers).compare() == 0 &&
786          "The two functions must be equal");
787 
788   auto I = FNodesInTree.find(F);
789   assert(I != FNodesInTree.end() && "F should be in FNodesInTree");
790   assert(FNodesInTree.count(G) == 0 && "FNodesInTree should not contain G");
791 
792   FnTreeType::iterator IterToFNInFnTree = I->second;
793   assert(&(*IterToFNInFnTree) == &FN && "F should map to FN in FNodesInTree.");
794   // Remove F -> FN and insert G -> FN
795   FNodesInTree.erase(I);
796   FNodesInTree.insert({G, IterToFNInFnTree});
797   // Replace F with G in FN, which is stored inside the FnTree.
798   FN.replaceBy(G);
799 }
800 
801 // Insert a ComparableFunction into the FnTree, or merge it away if equal to one
802 // that was already inserted.
803 bool MergeFunctions::insert(Function *NewFunction) {
804   std::pair<FnTreeType::iterator, bool> Result =
805       FnTree.insert(FunctionNode(NewFunction));
806 
807   if (Result.second) {
808     assert(FNodesInTree.count(NewFunction) == 0);
809     FNodesInTree.insert({NewFunction, Result.first});
810     DEBUG(dbgs() << "Inserting as unique: " << NewFunction->getName() << '\n');
811     return false;
812   }
813 
814   const FunctionNode &OldF = *Result.first;
815 
816   // Don't merge tiny functions, since it can just end up making the function
817   // larger.
818   // FIXME: Should still merge them if they are unnamed_addr and produce an
819   // alias.
820   if (NewFunction->size() == 1) {
821     if (NewFunction->front().size() <= 2) {
822       DEBUG(dbgs() << NewFunction->getName()
823                    << " is to small to bother merging\n");
824       return false;
825     }
826   }
827 
828   // Impose a total order (by name) on the replacement of functions. This is
829   // important when operating on more than one module independently to prevent
830   // cycles of thunks calling each other when the modules are linked together.
831   //
832   // First of all, we process strong functions before weak functions.
833   if ((OldF.getFunc()->isInterposable() && !NewFunction->isInterposable()) ||
834      (OldF.getFunc()->isInterposable() == NewFunction->isInterposable() &&
835        OldF.getFunc()->getName() > NewFunction->getName())) {
836     // Swap the two functions.
837     Function *F = OldF.getFunc();
838     replaceFunctionInTree(*Result.first, NewFunction);
839     NewFunction = F;
840     assert(OldF.getFunc() != F && "Must have swapped the functions.");
841   }
842 
843   DEBUG(dbgs() << "  " << OldF.getFunc()->getName()
844                << " == " << NewFunction->getName() << '\n');
845 
846   Function *DeleteF = NewFunction;
847   mergeTwoFunctions(OldF.getFunc(), DeleteF);
848   return true;
849 }
850 
851 // Remove a function from FnTree. If it was already in FnTree, add
852 // it to Deferred so that we'll look at it in the next round.
853 void MergeFunctions::remove(Function *F) {
854   auto I = FNodesInTree.find(F);
855   if (I != FNodesInTree.end()) {
856     DEBUG(dbgs() << "Deferred " << F->getName()<< ".\n");
857     FnTree.erase(I->second);
858     // I->second has been invalidated, remove it from the FNodesInTree map to
859     // preserve the invariant.
860     FNodesInTree.erase(I);
861     Deferred.emplace_back(F);
862   }
863 }
864 
865 // For each instruction used by the value, remove() the function that contains
866 // the instruction. This should happen right before a call to RAUW.
867 void MergeFunctions::removeUsers(Value *V) {
868   std::vector<Value *> Worklist;
869   Worklist.push_back(V);
870   SmallSet<Value*, 8> Visited;
871   Visited.insert(V);
872   while (!Worklist.empty()) {
873     Value *V = Worklist.back();
874     Worklist.pop_back();
875 
876     for (User *U : V->users()) {
877       if (Instruction *I = dyn_cast<Instruction>(U)) {
878         remove(I->getParent()->getParent());
879       } else if (isa<GlobalValue>(U)) {
880         // do nothing
881       } else if (Constant *C = dyn_cast<Constant>(U)) {
882         for (User *UU : C->users()) {
883           if (!Visited.insert(UU).second)
884             Worklist.push_back(UU);
885         }
886       }
887     }
888   }
889 }
890