1 //===- ArgumentPromotion.cpp - Promote by-reference arguments -------------===//
2 //
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6 //
7 //===----------------------------------------------------------------------===//
8 //
9 // This pass promotes "by reference" arguments to be "by value" arguments.  In
10 // practice, this means looking for internal functions that have pointer
11 // arguments.  If it can prove, through the use of alias analysis, that an
12 // argument is *only* loaded, then it can pass the value into the function
13 // instead of the address of the value.  This can cause recursive simplification
14 // of code and lead to the elimination of allocas (especially in C++ template
15 // code like the STL).
16 //
17 // This pass also handles aggregate arguments that are passed into a function,
18 // scalarizing them if the elements of the aggregate are only loaded.  Note that
19 // by default it refuses to scalarize aggregates which would require passing in
20 // more than three operands to the function, because passing thousands of
21 // operands for a large array or structure is unprofitable! This limit can be
22 // configured or disabled, however.
23 //
24 // Note that this transformation could also be done for arguments that are only
25 // stored to (returning the value instead), but does not currently.  This case
26 // would be best handled when and if LLVM begins supporting multiple return
27 // values from functions.
28 //
29 //===----------------------------------------------------------------------===//
30 
31 #include "llvm/Transforms/IPO/ArgumentPromotion.h"
32 #include "llvm/ADT/DepthFirstIterator.h"
33 #include "llvm/ADT/None.h"
34 #include "llvm/ADT/Optional.h"
35 #include "llvm/ADT/STLExtras.h"
36 #include "llvm/ADT/SmallPtrSet.h"
37 #include "llvm/ADT/SmallVector.h"
38 #include "llvm/ADT/Statistic.h"
39 #include "llvm/ADT/Twine.h"
40 #include "llvm/Analysis/AliasAnalysis.h"
41 #include "llvm/Analysis/AssumptionCache.h"
42 #include "llvm/Analysis/BasicAliasAnalysis.h"
43 #include "llvm/Analysis/CGSCCPassManager.h"
44 #include "llvm/Analysis/CallGraph.h"
45 #include "llvm/Analysis/CallGraphSCCPass.h"
46 #include "llvm/Analysis/LazyCallGraph.h"
47 #include "llvm/Analysis/Loads.h"
48 #include "llvm/Analysis/MemoryLocation.h"
49 #include "llvm/Analysis/TargetLibraryInfo.h"
50 #include "llvm/Analysis/TargetTransformInfo.h"
51 #include "llvm/IR/Argument.h"
52 #include "llvm/IR/Attributes.h"
53 #include "llvm/IR/BasicBlock.h"
54 #include "llvm/IR/CFG.h"
55 #include "llvm/IR/Constants.h"
56 #include "llvm/IR/DataLayout.h"
57 #include "llvm/IR/DerivedTypes.h"
58 #include "llvm/IR/Function.h"
59 #include "llvm/IR/IRBuilder.h"
60 #include "llvm/IR/InstrTypes.h"
61 #include "llvm/IR/Instruction.h"
62 #include "llvm/IR/Instructions.h"
63 #include "llvm/IR/Metadata.h"
64 #include "llvm/IR/Module.h"
65 #include "llvm/IR/NoFolder.h"
66 #include "llvm/IR/PassManager.h"
67 #include "llvm/IR/Type.h"
68 #include "llvm/IR/Use.h"
69 #include "llvm/IR/User.h"
70 #include "llvm/IR/Value.h"
71 #include "llvm/InitializePasses.h"
72 #include "llvm/Pass.h"
73 #include "llvm/Support/Casting.h"
74 #include "llvm/Support/Debug.h"
75 #include "llvm/Support/FormatVariadic.h"
76 #include "llvm/Support/raw_ostream.h"
77 #include "llvm/Transforms/IPO.h"
78 #include <algorithm>
79 #include <cassert>
80 #include <cstdint>
81 #include <functional>
82 #include <iterator>
83 #include <map>
84 #include <set>
85 #include <string>
86 #include <utility>
87 #include <vector>
88 
89 using namespace llvm;
90 
91 #define DEBUG_TYPE "argpromotion"
92 
93 STATISTIC(NumArgumentsPromoted, "Number of pointer arguments promoted");
94 STATISTIC(NumAggregatesPromoted, "Number of aggregate arguments promoted");
95 STATISTIC(NumByValArgsPromoted, "Number of byval arguments promoted");
96 STATISTIC(NumArgumentsDead, "Number of dead pointer args eliminated");
97 
98 /// A vector used to hold the indices of a single GEP instruction
99 using IndicesVector = std::vector<uint64_t>;
100 
101 /// DoPromotion - This method actually performs the promotion of the specified
102 /// arguments, and returns the new function.  At this point, we know that it's
103 /// safe to do so.
104 static Function *
105 doPromotion(Function *F, SmallPtrSetImpl<Argument *> &ArgsToPromote,
106             SmallPtrSetImpl<Argument *> &ByValArgsToTransform,
107             Optional<function_ref<void(CallBase &OldCS, CallBase &NewCS)>>
108                 ReplaceCallSite) {
109   // Start by computing a new prototype for the function, which is the same as
110   // the old function, but has modified arguments.
111   FunctionType *FTy = F->getFunctionType();
112   std::vector<Type *> Params;
113 
114   using ScalarizeTable = std::set<std::pair<Type *, IndicesVector>>;
115 
116   // ScalarizedElements - If we are promoting a pointer that has elements
117   // accessed out of it, keep track of which elements are accessed so that we
118   // can add one argument for each.
119   //
120   // Arguments that are directly loaded will have a zero element value here, to
121   // handle cases where there are both a direct load and GEP accesses.
122   std::map<Argument *, ScalarizeTable> ScalarizedElements;
123 
124   // OriginalLoads - Keep track of a representative load instruction from the
125   // original function so that we can tell the alias analysis implementation
126   // what the new GEP/Load instructions we are inserting look like.
127   // We need to keep the original loads for each argument and the elements
128   // of the argument that are accessed.
129   std::map<std::pair<Argument *, IndicesVector>, LoadInst *> OriginalLoads;
130 
131   // Attribute - Keep track of the parameter attributes for the arguments
132   // that we are *not* promoting. For the ones that we do promote, the parameter
133   // attributes are lost
134   SmallVector<AttributeSet, 8> ArgAttrVec;
135   AttributeList PAL = F->getAttributes();
136 
137   // First, determine the new argument list
138   unsigned ArgNo = 0;
139   for (Function::arg_iterator I = F->arg_begin(), E = F->arg_end(); I != E;
140        ++I, ++ArgNo) {
141     if (ByValArgsToTransform.count(&*I)) {
142       // Simple byval argument? Just add all the struct element types.
143       Type *AgTy = cast<PointerType>(I->getType())->getElementType();
144       StructType *STy = cast<StructType>(AgTy);
145       Params.insert(Params.end(), STy->element_begin(), STy->element_end());
146       ArgAttrVec.insert(ArgAttrVec.end(), STy->getNumElements(),
147                         AttributeSet());
148       ++NumByValArgsPromoted;
149     } else if (!ArgsToPromote.count(&*I)) {
150       // Unchanged argument
151       Params.push_back(I->getType());
152       ArgAttrVec.push_back(PAL.getParamAttributes(ArgNo));
153     } else if (I->use_empty()) {
154       // Dead argument (which are always marked as promotable)
155       ++NumArgumentsDead;
156 
157       // There may be remaining metadata uses of the argument for things like
158       // llvm.dbg.value. Replace them with undef.
159       I->replaceAllUsesWith(UndefValue::get(I->getType()));
160     } else {
161       // Okay, this is being promoted. This means that the only uses are loads
162       // or GEPs which are only used by loads
163 
164       // In this table, we will track which indices are loaded from the argument
165       // (where direct loads are tracked as no indices).
166       ScalarizeTable &ArgIndices = ScalarizedElements[&*I];
167       for (User *U : I->users()) {
168         Instruction *UI = cast<Instruction>(U);
169         Type *SrcTy;
170         if (LoadInst *L = dyn_cast<LoadInst>(UI))
171           SrcTy = L->getType();
172         else
173           SrcTy = cast<GetElementPtrInst>(UI)->getSourceElementType();
174         IndicesVector Indices;
175         Indices.reserve(UI->getNumOperands() - 1);
176         // Since loads will only have a single operand, and GEPs only a single
177         // non-index operand, this will record direct loads without any indices,
178         // and gep+loads with the GEP indices.
179         for (User::op_iterator II = UI->op_begin() + 1, IE = UI->op_end();
180              II != IE; ++II)
181           Indices.push_back(cast<ConstantInt>(*II)->getSExtValue());
182         // GEPs with a single 0 index can be merged with direct loads
183         if (Indices.size() == 1 && Indices.front() == 0)
184           Indices.clear();
185         ArgIndices.insert(std::make_pair(SrcTy, Indices));
186         LoadInst *OrigLoad;
187         if (LoadInst *L = dyn_cast<LoadInst>(UI))
188           OrigLoad = L;
189         else
190           // Take any load, we will use it only to update Alias Analysis
191           OrigLoad = cast<LoadInst>(UI->user_back());
192         OriginalLoads[std::make_pair(&*I, Indices)] = OrigLoad;
193       }
194 
195       // Add a parameter to the function for each element passed in.
196       for (const auto &ArgIndex : ArgIndices) {
197         // not allowed to dereference ->begin() if size() is 0
198         Params.push_back(GetElementPtrInst::getIndexedType(
199             cast<PointerType>(I->getType())->getElementType(),
200             ArgIndex.second));
201         ArgAttrVec.push_back(AttributeSet());
202         assert(Params.back());
203       }
204 
205       if (ArgIndices.size() == 1 && ArgIndices.begin()->second.empty())
206         ++NumArgumentsPromoted;
207       else
208         ++NumAggregatesPromoted;
209     }
210   }
211 
212   Type *RetTy = FTy->getReturnType();
213 
214   // Construct the new function type using the new arguments.
215   FunctionType *NFTy = FunctionType::get(RetTy, Params, FTy->isVarArg());
216 
217   // Create the new function body and insert it into the module.
218   Function *NF = Function::Create(NFTy, F->getLinkage(), F->getAddressSpace(),
219                                   F->getName());
220   NF->copyAttributesFrom(F);
221 
222   // Patch the pointer to LLVM function in debug info descriptor.
223   NF->setSubprogram(F->getSubprogram());
224   F->setSubprogram(nullptr);
225 
226   LLVM_DEBUG(dbgs() << "ARG PROMOTION:  Promoting to:" << *NF << "\n"
227                     << "From: " << *F);
228 
229   // Recompute the parameter attributes list based on the new arguments for
230   // the function.
231   NF->setAttributes(AttributeList::get(F->getContext(), PAL.getFnAttributes(),
232                                        PAL.getRetAttributes(), ArgAttrVec));
233   ArgAttrVec.clear();
234 
235   F->getParent()->getFunctionList().insert(F->getIterator(), NF);
236   NF->takeName(F);
237 
238   // Loop over all of the callers of the function, transforming the call sites
239   // to pass in the loaded pointers.
240   //
241   SmallVector<Value *, 16> Args;
242   while (!F->use_empty()) {
243     CallBase &CB = cast<CallBase>(*F->user_back());
244     assert(CB.getCalledFunction() == F);
245     const AttributeList &CallPAL = CB.getAttributes();
246     IRBuilder<NoFolder> IRB(&CB);
247 
248     // Loop over the operands, inserting GEP and loads in the caller as
249     // appropriate.
250     auto AI = CB.arg_begin();
251     ArgNo = 0;
252     for (Function::arg_iterator I = F->arg_begin(), E = F->arg_end(); I != E;
253          ++I, ++AI, ++ArgNo)
254       if (!ArgsToPromote.count(&*I) && !ByValArgsToTransform.count(&*I)) {
255         Args.push_back(*AI); // Unmodified argument
256         ArgAttrVec.push_back(CallPAL.getParamAttributes(ArgNo));
257       } else if (ByValArgsToTransform.count(&*I)) {
258         // Emit a GEP and load for each element of the struct.
259         Type *AgTy = cast<PointerType>(I->getType())->getElementType();
260         StructType *STy = cast<StructType>(AgTy);
261         Value *Idxs[2] = {
262             ConstantInt::get(Type::getInt32Ty(F->getContext()), 0), nullptr};
263         for (unsigned i = 0, e = STy->getNumElements(); i != e; ++i) {
264           Idxs[1] = ConstantInt::get(Type::getInt32Ty(F->getContext()), i);
265           auto *Idx =
266               IRB.CreateGEP(STy, *AI, Idxs, (*AI)->getName() + "." + Twine(i));
267           // TODO: Tell AA about the new values?
268           Args.push_back(IRB.CreateLoad(STy->getElementType(i), Idx,
269                                         Idx->getName() + ".val"));
270           ArgAttrVec.push_back(AttributeSet());
271         }
272       } else if (!I->use_empty()) {
273         // Non-dead argument: insert GEPs and loads as appropriate.
274         ScalarizeTable &ArgIndices = ScalarizedElements[&*I];
275         // Store the Value* version of the indices in here, but declare it now
276         // for reuse.
277         std::vector<Value *> Ops;
278         for (const auto &ArgIndex : ArgIndices) {
279           Value *V = *AI;
280           LoadInst *OrigLoad =
281               OriginalLoads[std::make_pair(&*I, ArgIndex.second)];
282           if (!ArgIndex.second.empty()) {
283             Ops.reserve(ArgIndex.second.size());
284             Type *ElTy = V->getType();
285             for (auto II : ArgIndex.second) {
286               // Use i32 to index structs, and i64 for others (pointers/arrays).
287               // This satisfies GEP constraints.
288               Type *IdxTy =
289                   (ElTy->isStructTy() ? Type::getInt32Ty(F->getContext())
290                                       : Type::getInt64Ty(F->getContext()));
291               Ops.push_back(ConstantInt::get(IdxTy, II));
292               // Keep track of the type we're currently indexing.
293               if (auto *ElPTy = dyn_cast<PointerType>(ElTy))
294                 ElTy = ElPTy->getElementType();
295               else
296                 ElTy = GetElementPtrInst::getTypeAtIndex(ElTy, II);
297             }
298             // And create a GEP to extract those indices.
299             V = IRB.CreateGEP(ArgIndex.first, V, Ops, V->getName() + ".idx");
300             Ops.clear();
301           }
302           // Since we're replacing a load make sure we take the alignment
303           // of the previous load.
304           LoadInst *newLoad =
305               IRB.CreateLoad(OrigLoad->getType(), V, V->getName() + ".val");
306           newLoad->setAlignment(OrigLoad->getAlign());
307           // Transfer the AA info too.
308           AAMDNodes AAInfo;
309           OrigLoad->getAAMetadata(AAInfo);
310           newLoad->setAAMetadata(AAInfo);
311 
312           Args.push_back(newLoad);
313           ArgAttrVec.push_back(AttributeSet());
314         }
315       }
316 
317     // Push any varargs arguments on the list.
318     for (; AI != CB.arg_end(); ++AI, ++ArgNo) {
319       Args.push_back(*AI);
320       ArgAttrVec.push_back(CallPAL.getParamAttributes(ArgNo));
321     }
322 
323     SmallVector<OperandBundleDef, 1> OpBundles;
324     CB.getOperandBundlesAsDefs(OpBundles);
325 
326     CallBase *NewCS = nullptr;
327     if (InvokeInst *II = dyn_cast<InvokeInst>(&CB)) {
328       NewCS = InvokeInst::Create(NF, II->getNormalDest(), II->getUnwindDest(),
329                                  Args, OpBundles, "", &CB);
330     } else {
331       auto *NewCall = CallInst::Create(NF, Args, OpBundles, "", &CB);
332       NewCall->setTailCallKind(cast<CallInst>(&CB)->getTailCallKind());
333       NewCS = NewCall;
334     }
335     NewCS->setCallingConv(CB.getCallingConv());
336     NewCS->setAttributes(
337         AttributeList::get(F->getContext(), CallPAL.getFnAttributes(),
338                            CallPAL.getRetAttributes(), ArgAttrVec));
339     NewCS->setDebugLoc(CB.getDebugLoc());
340     uint64_t W;
341     if (CB.extractProfTotalWeight(W))
342       NewCS->setProfWeight(W);
343     Args.clear();
344     ArgAttrVec.clear();
345 
346     // Update the callgraph to know that the callsite has been transformed.
347     if (ReplaceCallSite)
348       (*ReplaceCallSite)(CB, *NewCS);
349 
350     if (!CB.use_empty()) {
351       CB.replaceAllUsesWith(NewCS);
352       NewCS->takeName(&CB);
353     }
354 
355     // Finally, remove the old call from the program, reducing the use-count of
356     // F.
357     CB.eraseFromParent();
358   }
359 
360   const DataLayout &DL = F->getParent()->getDataLayout();
361 
362   // Since we have now created the new function, splice the body of the old
363   // function right into the new function, leaving the old rotting hulk of the
364   // function empty.
365   NF->getBasicBlockList().splice(NF->begin(), F->getBasicBlockList());
366 
367   // Loop over the argument list, transferring uses of the old arguments over to
368   // the new arguments, also transferring over the names as well.
369   for (Function::arg_iterator I = F->arg_begin(), E = F->arg_end(),
370                               I2 = NF->arg_begin();
371        I != E; ++I) {
372     if (!ArgsToPromote.count(&*I) && !ByValArgsToTransform.count(&*I)) {
373       // If this is an unmodified argument, move the name and users over to the
374       // new version.
375       I->replaceAllUsesWith(&*I2);
376       I2->takeName(&*I);
377       ++I2;
378       continue;
379     }
380 
381     if (ByValArgsToTransform.count(&*I)) {
382       // In the callee, we create an alloca, and store each of the new incoming
383       // arguments into the alloca.
384       Instruction *InsertPt = &NF->begin()->front();
385 
386       // Just add all the struct element types.
387       Type *AgTy = cast<PointerType>(I->getType())->getElementType();
388       Value *TheAlloca = new AllocaInst(
389           AgTy, DL.getAllocaAddrSpace(), nullptr,
390           I->getParamAlign().getValueOr(DL.getPrefTypeAlign(AgTy)), "",
391           InsertPt);
392       StructType *STy = cast<StructType>(AgTy);
393       Value *Idxs[2] = {ConstantInt::get(Type::getInt32Ty(F->getContext()), 0),
394                         nullptr};
395 
396       for (unsigned i = 0, e = STy->getNumElements(); i != e; ++i) {
397         Idxs[1] = ConstantInt::get(Type::getInt32Ty(F->getContext()), i);
398         Value *Idx = GetElementPtrInst::Create(
399             AgTy, TheAlloca, Idxs, TheAlloca->getName() + "." + Twine(i),
400             InsertPt);
401         I2->setName(I->getName() + "." + Twine(i));
402         new StoreInst(&*I2++, Idx, InsertPt);
403       }
404 
405       // Anything that used the arg should now use the alloca.
406       I->replaceAllUsesWith(TheAlloca);
407       TheAlloca->takeName(&*I);
408 
409       // If the alloca is used in a call, we must clear the tail flag since
410       // the callee now uses an alloca from the caller.
411       for (User *U : TheAlloca->users()) {
412         CallInst *Call = dyn_cast<CallInst>(U);
413         if (!Call)
414           continue;
415         Call->setTailCall(false);
416       }
417       continue;
418     }
419 
420     if (I->use_empty())
421       continue;
422 
423     // Otherwise, if we promoted this argument, then all users are load
424     // instructions (or GEPs with only load users), and all loads should be
425     // using the new argument that we added.
426     ScalarizeTable &ArgIndices = ScalarizedElements[&*I];
427 
428     while (!I->use_empty()) {
429       if (LoadInst *LI = dyn_cast<LoadInst>(I->user_back())) {
430         assert(ArgIndices.begin()->second.empty() &&
431                "Load element should sort to front!");
432         I2->setName(I->getName() + ".val");
433         LI->replaceAllUsesWith(&*I2);
434         LI->eraseFromParent();
435         LLVM_DEBUG(dbgs() << "*** Promoted load of argument '" << I->getName()
436                           << "' in function '" << F->getName() << "'\n");
437       } else {
438         GetElementPtrInst *GEP = cast<GetElementPtrInst>(I->user_back());
439         IndicesVector Operands;
440         Operands.reserve(GEP->getNumIndices());
441         for (User::op_iterator II = GEP->idx_begin(), IE = GEP->idx_end();
442              II != IE; ++II)
443           Operands.push_back(cast<ConstantInt>(*II)->getSExtValue());
444 
445         // GEPs with a single 0 index can be merged with direct loads
446         if (Operands.size() == 1 && Operands.front() == 0)
447           Operands.clear();
448 
449         Function::arg_iterator TheArg = I2;
450         for (ScalarizeTable::iterator It = ArgIndices.begin();
451              It->second != Operands; ++It, ++TheArg) {
452           assert(It != ArgIndices.end() && "GEP not handled??");
453         }
454 
455         TheArg->setName(formatv("{0}.{1:$[.]}.val", I->getName(),
456                                 make_range(Operands.begin(), Operands.end())));
457 
458         LLVM_DEBUG(dbgs() << "*** Promoted agg argument '" << TheArg->getName()
459                           << "' of function '" << NF->getName() << "'\n");
460 
461         // All of the uses must be load instructions.  Replace them all with
462         // the argument specified by ArgNo.
463         while (!GEP->use_empty()) {
464           LoadInst *L = cast<LoadInst>(GEP->user_back());
465           L->replaceAllUsesWith(&*TheArg);
466           L->eraseFromParent();
467         }
468         GEP->eraseFromParent();
469       }
470     }
471 
472     // Increment I2 past all of the arguments added for this promoted pointer.
473     std::advance(I2, ArgIndices.size());
474   }
475 
476   return NF;
477 }
478 
479 /// Return true if we can prove that all callees pass in a valid pointer for the
480 /// specified function argument.
481 static bool allCallersPassValidPointerForArgument(Argument *Arg, Type *Ty) {
482   Function *Callee = Arg->getParent();
483   const DataLayout &DL = Callee->getParent()->getDataLayout();
484 
485   unsigned ArgNo = Arg->getArgNo();
486 
487   // Look at all call sites of the function.  At this point we know we only have
488   // direct callees.
489   for (User *U : Callee->users()) {
490     CallBase &CB = cast<CallBase>(*U);
491 
492     if (!isDereferenceablePointer(CB.getArgOperand(ArgNo), Ty, DL))
493       return false;
494   }
495   return true;
496 }
497 
498 /// Returns true if Prefix is a prefix of longer. That means, Longer has a size
499 /// that is greater than or equal to the size of prefix, and each of the
500 /// elements in Prefix is the same as the corresponding elements in Longer.
501 ///
502 /// This means it also returns true when Prefix and Longer are equal!
503 static bool isPrefix(const IndicesVector &Prefix, const IndicesVector &Longer) {
504   if (Prefix.size() > Longer.size())
505     return false;
506   return std::equal(Prefix.begin(), Prefix.end(), Longer.begin());
507 }
508 
509 /// Checks if Indices, or a prefix of Indices, is in Set.
510 static bool prefixIn(const IndicesVector &Indices,
511                      std::set<IndicesVector> &Set) {
512   std::set<IndicesVector>::iterator Low;
513   Low = Set.upper_bound(Indices);
514   if (Low != Set.begin())
515     Low--;
516   // Low is now the last element smaller than or equal to Indices. This means
517   // it points to a prefix of Indices (possibly Indices itself), if such
518   // prefix exists.
519   //
520   // This load is safe if any prefix of its operands is safe to load.
521   return Low != Set.end() && isPrefix(*Low, Indices);
522 }
523 
524 /// Mark the given indices (ToMark) as safe in the given set of indices
525 /// (Safe). Marking safe usually means adding ToMark to Safe. However, if there
526 /// is already a prefix of Indices in Safe, Indices are implicitely marked safe
527 /// already. Furthermore, any indices that Indices is itself a prefix of, are
528 /// removed from Safe (since they are implicitely safe because of Indices now).
529 static void markIndicesSafe(const IndicesVector &ToMark,
530                             std::set<IndicesVector> &Safe) {
531   std::set<IndicesVector>::iterator Low;
532   Low = Safe.upper_bound(ToMark);
533   // Guard against the case where Safe is empty
534   if (Low != Safe.begin())
535     Low--;
536   // Low is now the last element smaller than or equal to Indices. This
537   // means it points to a prefix of Indices (possibly Indices itself), if
538   // such prefix exists.
539   if (Low != Safe.end()) {
540     if (isPrefix(*Low, ToMark))
541       // If there is already a prefix of these indices (or exactly these
542       // indices) marked a safe, don't bother adding these indices
543       return;
544 
545     // Increment Low, so we can use it as a "insert before" hint
546     ++Low;
547   }
548   // Insert
549   Low = Safe.insert(Low, ToMark);
550   ++Low;
551   // If there we're a prefix of longer index list(s), remove those
552   std::set<IndicesVector>::iterator End = Safe.end();
553   while (Low != End && isPrefix(ToMark, *Low)) {
554     std::set<IndicesVector>::iterator Remove = Low;
555     ++Low;
556     Safe.erase(Remove);
557   }
558 }
559 
560 /// isSafeToPromoteArgument - As you might guess from the name of this method,
561 /// it checks to see if it is both safe and useful to promote the argument.
562 /// This method limits promotion of aggregates to only promote up to three
563 /// elements of the aggregate in order to avoid exploding the number of
564 /// arguments passed in.
565 static bool isSafeToPromoteArgument(Argument *Arg, Type *ByValTy, AAResults &AAR,
566                                     unsigned MaxElements) {
567   using GEPIndicesSet = std::set<IndicesVector>;
568 
569   // Quick exit for unused arguments
570   if (Arg->use_empty())
571     return true;
572 
573   // We can only promote this argument if all of the uses are loads, or are GEP
574   // instructions (with constant indices) that are subsequently loaded.
575   //
576   // Promoting the argument causes it to be loaded in the caller
577   // unconditionally. This is only safe if we can prove that either the load
578   // would have happened in the callee anyway (ie, there is a load in the entry
579   // block) or the pointer passed in at every call site is guaranteed to be
580   // valid.
581   // In the former case, invalid loads can happen, but would have happened
582   // anyway, in the latter case, invalid loads won't happen. This prevents us
583   // from introducing an invalid load that wouldn't have happened in the
584   // original code.
585   //
586   // This set will contain all sets of indices that are loaded in the entry
587   // block, and thus are safe to unconditionally load in the caller.
588   GEPIndicesSet SafeToUnconditionallyLoad;
589 
590   // This set contains all the sets of indices that we are planning to promote.
591   // This makes it possible to limit the number of arguments added.
592   GEPIndicesSet ToPromote;
593 
594   // If the pointer is always valid, any load with first index 0 is valid.
595 
596   if (ByValTy)
597     SafeToUnconditionallyLoad.insert(IndicesVector(1, 0));
598 
599   // Whenever a new underlying type for the operand is found, make sure it's
600   // consistent with the GEPs and loads we've already seen and, if necessary,
601   // use it to see if all incoming pointers are valid (which implies the 0-index
602   // is safe).
603   Type *BaseTy = ByValTy;
604   auto UpdateBaseTy = [&](Type *NewBaseTy) {
605     if (BaseTy)
606       return BaseTy == NewBaseTy;
607 
608     BaseTy = NewBaseTy;
609     if (allCallersPassValidPointerForArgument(Arg, BaseTy)) {
610       assert(SafeToUnconditionallyLoad.empty());
611       SafeToUnconditionallyLoad.insert(IndicesVector(1, 0));
612     }
613 
614     return true;
615   };
616 
617   // First, iterate the entry block and mark loads of (geps of) arguments as
618   // safe.
619   BasicBlock &EntryBlock = Arg->getParent()->front();
620   // Declare this here so we can reuse it
621   IndicesVector Indices;
622   for (Instruction &I : EntryBlock)
623     if (LoadInst *LI = dyn_cast<LoadInst>(&I)) {
624       Value *V = LI->getPointerOperand();
625       if (GetElementPtrInst *GEP = dyn_cast<GetElementPtrInst>(V)) {
626         V = GEP->getPointerOperand();
627         if (V == Arg) {
628           // This load actually loads (part of) Arg? Check the indices then.
629           Indices.reserve(GEP->getNumIndices());
630           for (User::op_iterator II = GEP->idx_begin(), IE = GEP->idx_end();
631                II != IE; ++II)
632             if (ConstantInt *CI = dyn_cast<ConstantInt>(*II))
633               Indices.push_back(CI->getSExtValue());
634             else
635               // We found a non-constant GEP index for this argument? Bail out
636               // right away, can't promote this argument at all.
637               return false;
638 
639           if (!UpdateBaseTy(GEP->getSourceElementType()))
640             return false;
641 
642           // Indices checked out, mark them as safe
643           markIndicesSafe(Indices, SafeToUnconditionallyLoad);
644           Indices.clear();
645         }
646       } else if (V == Arg) {
647         // Direct loads are equivalent to a GEP with a single 0 index.
648         markIndicesSafe(IndicesVector(1, 0), SafeToUnconditionallyLoad);
649 
650         if (BaseTy && LI->getType() != BaseTy)
651           return false;
652 
653         BaseTy = LI->getType();
654       }
655     }
656 
657   // Now, iterate all uses of the argument to see if there are any uses that are
658   // not (GEP+)loads, or any (GEP+)loads that are not safe to promote.
659   SmallVector<LoadInst *, 16> Loads;
660   IndicesVector Operands;
661   for (Use &U : Arg->uses()) {
662     User *UR = U.getUser();
663     Operands.clear();
664     if (LoadInst *LI = dyn_cast<LoadInst>(UR)) {
665       // Don't hack volatile/atomic loads
666       if (!LI->isSimple())
667         return false;
668       Loads.push_back(LI);
669       // Direct loads are equivalent to a GEP with a zero index and then a load.
670       Operands.push_back(0);
671 
672       if (!UpdateBaseTy(LI->getType()))
673         return false;
674     } else if (GetElementPtrInst *GEP = dyn_cast<GetElementPtrInst>(UR)) {
675       if (GEP->use_empty()) {
676         // Dead GEP's cause trouble later.  Just remove them if we run into
677         // them.
678         GEP->eraseFromParent();
679         // TODO: This runs the above loop over and over again for dead GEPs
680         // Couldn't we just do increment the UI iterator earlier and erase the
681         // use?
682         return isSafeToPromoteArgument(Arg, ByValTy, AAR, MaxElements);
683       }
684 
685       if (!UpdateBaseTy(GEP->getSourceElementType()))
686         return false;
687 
688       // Ensure that all of the indices are constants.
689       for (User::op_iterator i = GEP->idx_begin(), e = GEP->idx_end(); i != e;
690            ++i)
691         if (ConstantInt *C = dyn_cast<ConstantInt>(*i))
692           Operands.push_back(C->getSExtValue());
693         else
694           return false; // Not a constant operand GEP!
695 
696       // Ensure that the only users of the GEP are load instructions.
697       for (User *GEPU : GEP->users())
698         if (LoadInst *LI = dyn_cast<LoadInst>(GEPU)) {
699           // Don't hack volatile/atomic loads
700           if (!LI->isSimple())
701             return false;
702           Loads.push_back(LI);
703         } else {
704           // Other uses than load?
705           return false;
706         }
707     } else {
708       return false; // Not a load or a GEP.
709     }
710 
711     // Now, see if it is safe to promote this load / loads of this GEP. Loading
712     // is safe if Operands, or a prefix of Operands, is marked as safe.
713     if (!prefixIn(Operands, SafeToUnconditionallyLoad))
714       return false;
715 
716     // See if we are already promoting a load with these indices. If not, check
717     // to make sure that we aren't promoting too many elements.  If so, nothing
718     // to do.
719     if (ToPromote.find(Operands) == ToPromote.end()) {
720       if (MaxElements > 0 && ToPromote.size() == MaxElements) {
721         LLVM_DEBUG(dbgs() << "argpromotion not promoting argument '"
722                           << Arg->getName()
723                           << "' because it would require adding more "
724                           << "than " << MaxElements
725                           << " arguments to the function.\n");
726         // We limit aggregate promotion to only promoting up to a fixed number
727         // of elements of the aggregate.
728         return false;
729       }
730       ToPromote.insert(std::move(Operands));
731     }
732   }
733 
734   if (Loads.empty())
735     return true; // No users, this is a dead argument.
736 
737   // Okay, now we know that the argument is only used by load instructions and
738   // it is safe to unconditionally perform all of them. Use alias analysis to
739   // check to see if the pointer is guaranteed to not be modified from entry of
740   // the function to each of the load instructions.
741 
742   // Because there could be several/many load instructions, remember which
743   // blocks we know to be transparent to the load.
744   df_iterator_default_set<BasicBlock *, 16> TranspBlocks;
745 
746   for (LoadInst *Load : Loads) {
747     // Check to see if the load is invalidated from the start of the block to
748     // the load itself.
749     BasicBlock *BB = Load->getParent();
750 
751     MemoryLocation Loc = MemoryLocation::get(Load);
752     if (AAR.canInstructionRangeModRef(BB->front(), *Load, Loc, ModRefInfo::Mod))
753       return false; // Pointer is invalidated!
754 
755     // Now check every path from the entry block to the load for transparency.
756     // To do this, we perform a depth first search on the inverse CFG from the
757     // loading block.
758     for (BasicBlock *P : predecessors(BB)) {
759       for (BasicBlock *TranspBB : inverse_depth_first_ext(P, TranspBlocks))
760         if (AAR.canBasicBlockModify(*TranspBB, Loc))
761           return false;
762     }
763   }
764 
765   // If the path from the entry of the function to each load is free of
766   // instructions that potentially invalidate the load, we can make the
767   // transformation!
768   return true;
769 }
770 
771 bool ArgumentPromotionPass::isDenselyPacked(Type *type, const DataLayout &DL) {
772   // There is no size information, so be conservative.
773   if (!type->isSized())
774     return false;
775 
776   // If the alloc size is not equal to the storage size, then there are padding
777   // bytes. For x86_fp80 on x86-64, size: 80 alloc size: 128.
778   if (DL.getTypeSizeInBits(type) != DL.getTypeAllocSizeInBits(type))
779     return false;
780 
781   // FIXME: This isn't the right way to check for padding in vectors with
782   // non-byte-size elements.
783   if (VectorType *seqTy = dyn_cast<VectorType>(type))
784     return isDenselyPacked(seqTy->getElementType(), DL);
785 
786   // For array types, check for padding within members.
787   if (ArrayType *seqTy = dyn_cast<ArrayType>(type))
788     return isDenselyPacked(seqTy->getElementType(), DL);
789 
790   if (!isa<StructType>(type))
791     return true;
792 
793   // Check for padding within and between elements of a struct.
794   StructType *StructTy = cast<StructType>(type);
795   const StructLayout *Layout = DL.getStructLayout(StructTy);
796   uint64_t StartPos = 0;
797   for (unsigned i = 0, E = StructTy->getNumElements(); i < E; ++i) {
798     Type *ElTy = StructTy->getElementType(i);
799     if (!isDenselyPacked(ElTy, DL))
800       return false;
801     if (StartPos != Layout->getElementOffsetInBits(i))
802       return false;
803     StartPos += DL.getTypeAllocSizeInBits(ElTy);
804   }
805 
806   return true;
807 }
808 
809 /// Checks if the padding bytes of an argument could be accessed.
810 static bool canPaddingBeAccessed(Argument *arg) {
811   assert(arg->hasByValAttr());
812 
813   // Track all the pointers to the argument to make sure they are not captured.
814   SmallPtrSet<Value *, 16> PtrValues;
815   PtrValues.insert(arg);
816 
817   // Track all of the stores.
818   SmallVector<StoreInst *, 16> Stores;
819 
820   // Scan through the uses recursively to make sure the pointer is always used
821   // sanely.
822   SmallVector<Value *, 16> WorkList;
823   WorkList.insert(WorkList.end(), arg->user_begin(), arg->user_end());
824   while (!WorkList.empty()) {
825     Value *V = WorkList.back();
826     WorkList.pop_back();
827     if (isa<GetElementPtrInst>(V) || isa<PHINode>(V)) {
828       if (PtrValues.insert(V).second)
829         WorkList.insert(WorkList.end(), V->user_begin(), V->user_end());
830     } else if (StoreInst *Store = dyn_cast<StoreInst>(V)) {
831       Stores.push_back(Store);
832     } else if (!isa<LoadInst>(V)) {
833       return true;
834     }
835   }
836 
837   // Check to make sure the pointers aren't captured
838   for (StoreInst *Store : Stores)
839     if (PtrValues.count(Store->getValueOperand()))
840       return true;
841 
842   return false;
843 }
844 
845 bool ArgumentPromotionPass::areFunctionArgsABICompatible(
846     const Function &F, const TargetTransformInfo &TTI,
847     SmallPtrSetImpl<Argument *> &ArgsToPromote,
848     SmallPtrSetImpl<Argument *> &ByValArgsToTransform) {
849   for (const Use &U : F.uses()) {
850     CallBase *CB = dyn_cast<CallBase>(U.getUser());
851     if (!CB)
852       return false;
853     const Function *Caller = CB->getCaller();
854     const Function *Callee = CB->getCalledFunction();
855     if (!TTI.areFunctionArgsABICompatible(Caller, Callee, ArgsToPromote) ||
856         !TTI.areFunctionArgsABICompatible(Caller, Callee, ByValArgsToTransform))
857       return false;
858   }
859   return true;
860 }
861 
862 /// PromoteArguments - This method checks the specified function to see if there
863 /// are any promotable arguments and if it is safe to promote the function (for
864 /// example, all callers are direct).  If safe to promote some arguments, it
865 /// calls the DoPromotion method.
866 static Function *
867 promoteArguments(Function *F, function_ref<AAResults &(Function &F)> AARGetter,
868                  unsigned MaxElements,
869                  Optional<function_ref<void(CallBase &OldCS, CallBase &NewCS)>>
870                      ReplaceCallSite,
871                  const TargetTransformInfo &TTI) {
872   // Don't perform argument promotion for naked functions; otherwise we can end
873   // up removing parameters that are seemingly 'not used' as they are referred
874   // to in the assembly.
875   if(F->hasFnAttribute(Attribute::Naked))
876     return nullptr;
877 
878   // Make sure that it is local to this module.
879   if (!F->hasLocalLinkage())
880     return nullptr;
881 
882   // Don't promote arguments for variadic functions. Adding, removing, or
883   // changing non-pack parameters can change the classification of pack
884   // parameters. Frontends encode that classification at the call site in the
885   // IR, while in the callee the classification is determined dynamically based
886   // on the number of registers consumed so far.
887   if (F->isVarArg())
888     return nullptr;
889 
890   // Don't transform functions that receive inallocas, as the transformation may
891   // not be safe depending on calling convention.
892   if (F->getAttributes().hasAttrSomewhere(Attribute::InAlloca))
893     return nullptr;
894 
895   // First check: see if there are any pointer arguments!  If not, quick exit.
896   SmallVector<Argument *, 16> PointerArgs;
897   for (Argument &I : F->args())
898     if (I.getType()->isPointerTy())
899       PointerArgs.push_back(&I);
900   if (PointerArgs.empty())
901     return nullptr;
902 
903   // Second check: make sure that all callers are direct callers.  We can't
904   // transform functions that have indirect callers.  Also see if the function
905   // is self-recursive and check that target features are compatible.
906   bool isSelfRecursive = false;
907   for (Use &U : F->uses()) {
908     CallBase *CB = dyn_cast<CallBase>(U.getUser());
909     // Must be a direct call.
910     if (CB == nullptr || !CB->isCallee(&U))
911       return nullptr;
912 
913     // Can't change signature of musttail callee
914     if (CB->isMustTailCall())
915       return nullptr;
916 
917     if (CB->getParent()->getParent() == F)
918       isSelfRecursive = true;
919   }
920 
921   // Can't change signature of musttail caller
922   // FIXME: Support promoting whole chain of musttail functions
923   for (BasicBlock &BB : *F)
924     if (BB.getTerminatingMustTailCall())
925       return nullptr;
926 
927   const DataLayout &DL = F->getParent()->getDataLayout();
928 
929   AAResults &AAR = AARGetter(*F);
930 
931   // Check to see which arguments are promotable.  If an argument is promotable,
932   // add it to ArgsToPromote.
933   SmallPtrSet<Argument *, 8> ArgsToPromote;
934   SmallPtrSet<Argument *, 8> ByValArgsToTransform;
935   for (Argument *PtrArg : PointerArgs) {
936     Type *AgTy = cast<PointerType>(PtrArg->getType())->getElementType();
937 
938     // Replace sret attribute with noalias. This reduces register pressure by
939     // avoiding a register copy.
940     if (PtrArg->hasStructRetAttr()) {
941       unsigned ArgNo = PtrArg->getArgNo();
942       F->removeParamAttr(ArgNo, Attribute::StructRet);
943       F->addParamAttr(ArgNo, Attribute::NoAlias);
944       for (Use &U : F->uses()) {
945         CallBase &CB = cast<CallBase>(*U.getUser());
946         CB.removeParamAttr(ArgNo, Attribute::StructRet);
947         CB.addParamAttr(ArgNo, Attribute::NoAlias);
948       }
949     }
950 
951     // If this is a byval argument, and if the aggregate type is small, just
952     // pass the elements, which is always safe, if the passed value is densely
953     // packed or if we can prove the padding bytes are never accessed.
954     bool isSafeToPromote = PtrArg->hasByValAttr() &&
955                            (ArgumentPromotionPass::isDenselyPacked(AgTy, DL) ||
956                             !canPaddingBeAccessed(PtrArg));
957     if (isSafeToPromote) {
958       if (StructType *STy = dyn_cast<StructType>(AgTy)) {
959         if (MaxElements > 0 && STy->getNumElements() > MaxElements) {
960           LLVM_DEBUG(dbgs() << "argpromotion disable promoting argument '"
961                             << PtrArg->getName()
962                             << "' because it would require adding more"
963                             << " than " << MaxElements
964                             << " arguments to the function.\n");
965           continue;
966         }
967 
968         // If all the elements are single-value types, we can promote it.
969         bool AllSimple = true;
970         for (const auto *EltTy : STy->elements()) {
971           if (!EltTy->isSingleValueType()) {
972             AllSimple = false;
973             break;
974           }
975         }
976 
977         // Safe to transform, don't even bother trying to "promote" it.
978         // Passing the elements as a scalar will allow sroa to hack on
979         // the new alloca we introduce.
980         if (AllSimple) {
981           ByValArgsToTransform.insert(PtrArg);
982           continue;
983         }
984       }
985     }
986 
987     // If the argument is a recursive type and we're in a recursive
988     // function, we could end up infinitely peeling the function argument.
989     if (isSelfRecursive) {
990       if (StructType *STy = dyn_cast<StructType>(AgTy)) {
991         bool RecursiveType = false;
992         for (const auto *EltTy : STy->elements()) {
993           if (EltTy == PtrArg->getType()) {
994             RecursiveType = true;
995             break;
996           }
997         }
998         if (RecursiveType)
999           continue;
1000       }
1001     }
1002 
1003     // Otherwise, see if we can promote the pointer to its value.
1004     Type *ByValTy =
1005         PtrArg->hasByValAttr() ? PtrArg->getParamByValType() : nullptr;
1006     if (isSafeToPromoteArgument(PtrArg, ByValTy, AAR, MaxElements))
1007       ArgsToPromote.insert(PtrArg);
1008   }
1009 
1010   // No promotable pointer arguments.
1011   if (ArgsToPromote.empty() && ByValArgsToTransform.empty())
1012     return nullptr;
1013 
1014   if (!ArgumentPromotionPass::areFunctionArgsABICompatible(
1015           *F, TTI, ArgsToPromote, ByValArgsToTransform))
1016     return nullptr;
1017 
1018   return doPromotion(F, ArgsToPromote, ByValArgsToTransform, ReplaceCallSite);
1019 }
1020 
1021 PreservedAnalyses ArgumentPromotionPass::run(LazyCallGraph::SCC &C,
1022                                              CGSCCAnalysisManager &AM,
1023                                              LazyCallGraph &CG,
1024                                              CGSCCUpdateResult &UR) {
1025   bool Changed = false, LocalChange;
1026 
1027   // Iterate until we stop promoting from this SCC.
1028   do {
1029     LocalChange = false;
1030 
1031     for (LazyCallGraph::Node &N : C) {
1032       Function &OldF = N.getFunction();
1033 
1034       FunctionAnalysisManager &FAM =
1035           AM.getResult<FunctionAnalysisManagerCGSCCProxy>(C, CG).getManager();
1036       // FIXME: This lambda must only be used with this function. We should
1037       // skip the lambda and just get the AA results directly.
1038       auto AARGetter = [&](Function &F) -> AAResults & {
1039         assert(&F == &OldF && "Called with an unexpected function!");
1040         return FAM.getResult<AAManager>(F);
1041       };
1042 
1043       const TargetTransformInfo &TTI = FAM.getResult<TargetIRAnalysis>(OldF);
1044       Function *NewF =
1045           promoteArguments(&OldF, AARGetter, MaxElements, None, TTI);
1046       if (!NewF)
1047         continue;
1048       LocalChange = true;
1049 
1050       // Directly substitute the functions in the call graph. Note that this
1051       // requires the old function to be completely dead and completely
1052       // replaced by the new function. It does no call graph updates, it merely
1053       // swaps out the particular function mapped to a particular node in the
1054       // graph.
1055       C.getOuterRefSCC().replaceNodeFunction(N, *NewF);
1056       OldF.eraseFromParent();
1057     }
1058 
1059     Changed |= LocalChange;
1060   } while (LocalChange);
1061 
1062   if (!Changed)
1063     return PreservedAnalyses::all();
1064 
1065   return PreservedAnalyses::none();
1066 }
1067 
1068 namespace {
1069 
1070 /// ArgPromotion - The 'by reference' to 'by value' argument promotion pass.
1071 struct ArgPromotion : public CallGraphSCCPass {
1072   // Pass identification, replacement for typeid
1073   static char ID;
1074 
1075   explicit ArgPromotion(unsigned MaxElements = 3)
1076       : CallGraphSCCPass(ID), MaxElements(MaxElements) {
1077     initializeArgPromotionPass(*PassRegistry::getPassRegistry());
1078   }
1079 
1080   void getAnalysisUsage(AnalysisUsage &AU) const override {
1081     AU.addRequired<AssumptionCacheTracker>();
1082     AU.addRequired<TargetLibraryInfoWrapperPass>();
1083     AU.addRequired<TargetTransformInfoWrapperPass>();
1084     getAAResultsAnalysisUsage(AU);
1085     CallGraphSCCPass::getAnalysisUsage(AU);
1086   }
1087 
1088   bool runOnSCC(CallGraphSCC &SCC) override;
1089 
1090 private:
1091   using llvm::Pass::doInitialization;
1092 
1093   bool doInitialization(CallGraph &CG) override;
1094 
1095   /// The maximum number of elements to expand, or 0 for unlimited.
1096   unsigned MaxElements;
1097 };
1098 
1099 } // end anonymous namespace
1100 
1101 char ArgPromotion::ID = 0;
1102 
1103 INITIALIZE_PASS_BEGIN(ArgPromotion, "argpromotion",
1104                       "Promote 'by reference' arguments to scalars", false,
1105                       false)
1106 INITIALIZE_PASS_DEPENDENCY(AssumptionCacheTracker)
1107 INITIALIZE_PASS_DEPENDENCY(CallGraphWrapperPass)
1108 INITIALIZE_PASS_DEPENDENCY(TargetLibraryInfoWrapperPass)
1109 INITIALIZE_PASS_DEPENDENCY(TargetTransformInfoWrapperPass)
1110 INITIALIZE_PASS_END(ArgPromotion, "argpromotion",
1111                     "Promote 'by reference' arguments to scalars", false, false)
1112 
1113 Pass *llvm::createArgumentPromotionPass(unsigned MaxElements) {
1114   return new ArgPromotion(MaxElements);
1115 }
1116 
1117 bool ArgPromotion::runOnSCC(CallGraphSCC &SCC) {
1118   if (skipSCC(SCC))
1119     return false;
1120 
1121   // Get the callgraph information that we need to update to reflect our
1122   // changes.
1123   CallGraph &CG = getAnalysis<CallGraphWrapperPass>().getCallGraph();
1124 
1125   LegacyAARGetter AARGetter(*this);
1126 
1127   bool Changed = false, LocalChange;
1128 
1129   // Iterate until we stop promoting from this SCC.
1130   do {
1131     LocalChange = false;
1132     // Attempt to promote arguments from all functions in this SCC.
1133     for (CallGraphNode *OldNode : SCC) {
1134       Function *OldF = OldNode->getFunction();
1135       if (!OldF)
1136         continue;
1137 
1138       auto ReplaceCallSite = [&](CallBase &OldCS, CallBase &NewCS) {
1139         Function *Caller = OldCS.getParent()->getParent();
1140         CallGraphNode *NewCalleeNode =
1141             CG.getOrInsertFunction(NewCS.getCalledFunction());
1142         CallGraphNode *CallerNode = CG[Caller];
1143         CallerNode->replaceCallEdge(cast<CallBase>(OldCS),
1144                                     cast<CallBase>(NewCS), NewCalleeNode);
1145       };
1146 
1147       const TargetTransformInfo &TTI =
1148           getAnalysis<TargetTransformInfoWrapperPass>().getTTI(*OldF);
1149       if (Function *NewF = promoteArguments(OldF, AARGetter, MaxElements,
1150                                             {ReplaceCallSite}, TTI)) {
1151         LocalChange = true;
1152 
1153         // Update the call graph for the newly promoted function.
1154         CallGraphNode *NewNode = CG.getOrInsertFunction(NewF);
1155         NewNode->stealCalledFunctionsFrom(OldNode);
1156         if (OldNode->getNumReferences() == 0)
1157           delete CG.removeFunctionFromModule(OldNode);
1158         else
1159           OldF->setLinkage(Function::ExternalLinkage);
1160 
1161         // And updat ethe SCC we're iterating as well.
1162         SCC.ReplaceNode(OldNode, NewNode);
1163       }
1164     }
1165     // Remember that we changed something.
1166     Changed |= LocalChange;
1167   } while (LocalChange);
1168 
1169   return Changed;
1170 }
1171 
1172 bool ArgPromotion::doInitialization(CallGraph &CG) {
1173   return CallGraphSCCPass::doInitialization(CG);
1174 }
1175