LLVM 24.0.0git
InlineFunction.cpp
Go to the documentation of this file.
1//===- InlineFunction.cpp - Code to perform function inlining -------------===//
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 file implements inlining of a function into a call site, resolving
10// parameters and the return value as appropriate.
11//
12//===----------------------------------------------------------------------===//
13
14#include "llvm/ADT/DenseMap.h"
15#include "llvm/ADT/STLExtras.h"
16#include "llvm/ADT/SetVector.h"
35#include "llvm/IR/Argument.h"
37#include "llvm/IR/Attributes.h"
38#include "llvm/IR/BasicBlock.h"
39#include "llvm/IR/CFG.h"
40#include "llvm/IR/Constant.h"
42#include "llvm/IR/Constants.h"
43#include "llvm/IR/DataLayout.h"
44#include "llvm/IR/DebugInfo.h"
46#include "llvm/IR/DebugLoc.h"
48#include "llvm/IR/Dominators.h"
50#include "llvm/IR/Function.h"
52#include "llvm/IR/IRBuilder.h"
53#include "llvm/IR/InlineAsm.h"
54#include "llvm/IR/InstrTypes.h"
55#include "llvm/IR/Instruction.h"
58#include "llvm/IR/Intrinsics.h"
59#include "llvm/IR/LLVMContext.h"
60#include "llvm/IR/MDBuilder.h"
61#include "llvm/IR/Metadata.h"
62#include "llvm/IR/Module.h"
65#include "llvm/IR/Type.h"
66#include "llvm/IR/User.h"
67#include "llvm/IR/Value.h"
75#include <algorithm>
76#include <cassert>
77#include <cstdint>
78#include <deque>
79#include <iterator>
80#include <optional>
81#include <string>
82#include <utility>
83#include <vector>
84
85#define DEBUG_TYPE "inline-function"
86
87using namespace llvm;
88using namespace llvm::memprof;
89
90static cl::opt<bool>
91EnableNoAliasConversion("enable-noalias-to-md-conversion", cl::init(true),
93 cl::desc("Convert noalias attributes to metadata during inlining."));
94
95static cl::opt<bool>
96 UseNoAliasIntrinsic("use-noalias-intrinsic-during-inlining", cl::Hidden,
97 cl::init(true),
98 cl::desc("Use the llvm.experimental.noalias.scope.decl "
99 "intrinsic during inlining."));
100
101// Disabled by default, because the added alignment assumptions may increase
102// compile-time and block optimizations. This option is not suitable for use
103// with frontends that emit comprehensive parameter alignment annotations.
104static cl::opt<bool>
105PreserveAlignmentAssumptions("preserve-alignment-assumptions-during-inlining",
106 cl::init(false), cl::Hidden,
107 cl::desc("Convert align attributes to assumptions during inlining."));
108
110 "max-inst-checked-for-throw-during-inlining", cl::Hidden,
111 cl::desc("the maximum number of instructions analyzed for may throw during "
112 "attribute inference in inlined body"),
113 cl::init(4));
114
115namespace {
116
117 /// A class for recording information about inlining a landing pad.
118 class LandingPadInliningInfo {
119 /// Destination of the invoke's unwind.
120 BasicBlock *OuterResumeDest;
121
122 /// Destination for the callee's resume.
123 BasicBlock *InnerResumeDest = nullptr;
124
125 /// LandingPadInst associated with the invoke.
126 LandingPadInst *CallerLPad = nullptr;
127
128 /// PHI for EH values from landingpad insts.
129 PHINode *InnerEHValuesPHI = nullptr;
130
131 SmallVector<Value*, 8> UnwindDestPHIValues;
132
133 public:
134 LandingPadInliningInfo(InvokeInst *II)
135 : OuterResumeDest(II->getUnwindDest()) {
136 // If there are PHI nodes in the unwind destination block, we need to keep
137 // track of which values came into them from the invoke before removing
138 // the edge from this block.
139 BasicBlock *InvokeBB = II->getParent();
140 BasicBlock::iterator I = OuterResumeDest->begin();
141 for (; isa<PHINode>(I); ++I) {
142 // Save the value to use for this edge.
144 UnwindDestPHIValues.push_back(PHI->getIncomingValueForBlock(InvokeBB));
145 }
146
147 CallerLPad = cast<LandingPadInst>(I);
148 }
149
150 /// The outer unwind destination is the target of
151 /// unwind edges introduced for calls within the inlined function.
152 BasicBlock *getOuterResumeDest() const {
153 return OuterResumeDest;
154 }
155
156 BasicBlock *getInnerResumeDest();
157
158 LandingPadInst *getLandingPadInst() const { return CallerLPad; }
159
160 /// Forward the 'resume' instruction to the caller's landing pad block.
161 /// When the landing pad block has only one predecessor, this is
162 /// a simple branch. When there is more than one predecessor, we need to
163 /// split the landing pad block after the landingpad instruction and jump
164 /// to there.
165 void forwardResume(ResumeInst *RI,
166 SmallPtrSetImpl<LandingPadInst*> &InlinedLPads);
167
168 /// Add incoming-PHI values to the unwind destination block for the given
169 /// basic block, using the values for the original invoke's source block.
170 void addIncomingPHIValuesFor(BasicBlock *BB) const {
171 addIncomingPHIValuesForInto(BB, OuterResumeDest);
172 }
173
174 void addIncomingPHIValuesForInto(BasicBlock *src, BasicBlock *dest) const {
175 BasicBlock::iterator I = dest->begin();
176 for (unsigned i = 0, e = UnwindDestPHIValues.size(); i != e; ++i, ++I) {
177 PHINode *phi = cast<PHINode>(I);
178 phi->addIncoming(UnwindDestPHIValues[i], src);
179 }
180 }
181 };
182} // end anonymous namespace
183
186 while (It != BB.end()) {
187 if (auto *IntrinsicCall = dyn_cast<ConvergenceControlInst>(It)) {
188 if (IntrinsicCall->isEntry()) {
189 return IntrinsicCall;
190 }
191 }
192 It = std::next(It);
193 }
194 return nullptr;
195}
196
197/// Get or create a target for the branch from ResumeInsts.
198BasicBlock *LandingPadInliningInfo::getInnerResumeDest() {
199 if (InnerResumeDest) return InnerResumeDest;
200
201 // Split the landing pad.
202 BasicBlock::iterator SplitPoint = ++CallerLPad->getIterator();
203 InnerResumeDest =
204 OuterResumeDest->splitBasicBlock(SplitPoint,
205 OuterResumeDest->getName() + ".body");
206
207 // The number of incoming edges we expect to the inner landing pad.
208 const unsigned PHICapacity = 2;
209
210 // Create corresponding new PHIs for all the PHIs in the outer landing pad.
211 BasicBlock::iterator InsertPoint = InnerResumeDest->begin();
212 BasicBlock::iterator I = OuterResumeDest->begin();
213 for (unsigned i = 0, e = UnwindDestPHIValues.size(); i != e; ++i, ++I) {
214 PHINode *OuterPHI = cast<PHINode>(I);
215 PHINode *InnerPHI = PHINode::Create(OuterPHI->getType(), PHICapacity,
216 OuterPHI->getName() + ".lpad-body");
217 InnerPHI->insertBefore(InsertPoint);
218 OuterPHI->replaceAllUsesWith(InnerPHI);
219 InnerPHI->addIncoming(OuterPHI, OuterResumeDest);
220 }
221
222 // Create a PHI for the exception values.
223 InnerEHValuesPHI =
224 PHINode::Create(CallerLPad->getType(), PHICapacity, "eh.lpad-body");
225 InnerEHValuesPHI->insertBefore(InsertPoint);
226 CallerLPad->replaceAllUsesWith(InnerEHValuesPHI);
227 InnerEHValuesPHI->addIncoming(CallerLPad, OuterResumeDest);
228
229 // All done.
230 return InnerResumeDest;
231}
232
233/// Forward the 'resume' instruction to the caller's landing pad block.
234/// When the landing pad block has only one predecessor, this is a simple
235/// branch. When there is more than one predecessor, we need to split the
236/// landing pad block after the landingpad instruction and jump to there.
237void LandingPadInliningInfo::forwardResume(
238 ResumeInst *RI, SmallPtrSetImpl<LandingPadInst *> &InlinedLPads) {
239 BasicBlock *Dest = getInnerResumeDest();
240 BasicBlock *Src = RI->getParent();
241
242 auto *BI = UncondBrInst::Create(Dest, Src);
243 BI->setDebugLoc(RI->getDebugLoc());
244
245 // Update the PHIs in the destination. They were inserted in an order which
246 // makes this work.
247 addIncomingPHIValuesForInto(Src, Dest);
248
249 InnerEHValuesPHI->addIncoming(RI->getOperand(0), Src);
250 RI->eraseFromParent();
251}
252
253/// Helper for getUnwindDestToken/getUnwindDestTokenHelper.
254static Value *getParentPad(Value *EHPad) {
255 if (auto *FPI = dyn_cast<FuncletPadInst>(EHPad))
256 return FPI->getParentPad();
257 return cast<CatchSwitchInst>(EHPad)->getParentPad();
258}
259
261
262/// Helper for getUnwindDestToken that does the descendant-ward part of
263/// the search.
265 UnwindDestMemoTy &MemoMap) {
266 SmallVector<Instruction *, 8> Worklist(1, EHPad);
267
268 while (!Worklist.empty()) {
269 Instruction *CurrentPad = Worklist.pop_back_val();
270 // We only put pads on the worklist that aren't in the MemoMap. When
271 // we find an unwind dest for a pad we may update its ancestors, but
272 // the queue only ever contains uncles/great-uncles/etc. of CurrentPad,
273 // so they should never get updated while queued on the worklist.
274 assert(!MemoMap.count(CurrentPad));
275 Value *UnwindDestToken = nullptr;
276 if (auto *CatchSwitch = dyn_cast<CatchSwitchInst>(CurrentPad)) {
277 if (CatchSwitch->hasUnwindDest()) {
278 UnwindDestToken = &*CatchSwitch->getUnwindDest()->getFirstNonPHIIt();
279 } else {
280 // Catchswitch doesn't have a 'nounwind' variant, and one might be
281 // annotated as "unwinds to caller" when really it's nounwind (see
282 // e.g. SimplifyCFGOpt::SimplifyUnreachable), so we can't infer the
283 // parent's unwind dest from this. We can check its catchpads'
284 // descendants, since they might include a cleanuppad with an
285 // "unwinds to caller" cleanupret, which can be trusted.
286 for (auto HI = CatchSwitch->handler_begin(),
287 HE = CatchSwitch->handler_end();
288 HI != HE && !UnwindDestToken; ++HI) {
289 BasicBlock *HandlerBlock = *HI;
290 auto *CatchPad =
291 cast<CatchPadInst>(&*HandlerBlock->getFirstNonPHIIt());
292 for (User *Child : CatchPad->users()) {
293 // Intentionally ignore invokes here -- since the catchswitch is
294 // marked "unwind to caller", it would be a verifier error if it
295 // contained an invoke which unwinds out of it, so any invoke we'd
296 // encounter must unwind to some child of the catch.
297 if (!isa<CleanupPadInst>(Child) && !isa<CatchSwitchInst>(Child))
298 continue;
299
300 Instruction *ChildPad = cast<Instruction>(Child);
301 auto Memo = MemoMap.find(ChildPad);
302 if (Memo == MemoMap.end()) {
303 // Haven't figured out this child pad yet; queue it.
304 Worklist.push_back(ChildPad);
305 continue;
306 }
307 // We've already checked this child, but might have found that
308 // it offers no proof either way.
309 Value *ChildUnwindDestToken = Memo->second;
310 if (!ChildUnwindDestToken)
311 continue;
312 // We already know the child's unwind dest, which can either
313 // be ConstantTokenNone to indicate unwind to caller, or can
314 // be another child of the catchpad. Only the former indicates
315 // the unwind dest of the catchswitch.
316 if (isa<ConstantTokenNone>(ChildUnwindDestToken)) {
317 UnwindDestToken = ChildUnwindDestToken;
318 break;
319 }
320 assert(getParentPad(ChildUnwindDestToken) == CatchPad);
321 }
322 }
323 }
324 } else {
325 auto *CleanupPad = cast<CleanupPadInst>(CurrentPad);
326 for (User *U : CleanupPad->users()) {
327 if (auto *CleanupRet = dyn_cast<CleanupReturnInst>(U)) {
328 if (BasicBlock *RetUnwindDest = CleanupRet->getUnwindDest())
329 UnwindDestToken = &*RetUnwindDest->getFirstNonPHIIt();
330 else
331 UnwindDestToken = ConstantTokenNone::get(CleanupPad->getContext());
332 break;
333 }
334 Value *ChildUnwindDestToken;
335 if (auto *Invoke = dyn_cast<InvokeInst>(U)) {
336 ChildUnwindDestToken = &*Invoke->getUnwindDest()->getFirstNonPHIIt();
337 } else if (isa<CleanupPadInst>(U) || isa<CatchSwitchInst>(U)) {
338 Instruction *ChildPad = cast<Instruction>(U);
339 auto Memo = MemoMap.find(ChildPad);
340 if (Memo == MemoMap.end()) {
341 // Haven't resolved this child yet; queue it and keep searching.
342 Worklist.push_back(ChildPad);
343 continue;
344 }
345 // We've checked this child, but still need to ignore it if it
346 // had no proof either way.
347 ChildUnwindDestToken = Memo->second;
348 if (!ChildUnwindDestToken)
349 continue;
350 } else {
351 // Not a relevant user of the cleanuppad
352 continue;
353 }
354 // In a well-formed program, the child/invoke must either unwind to
355 // an(other) child of the cleanup, or exit the cleanup. In the
356 // first case, continue searching.
357 if (isa<Instruction>(ChildUnwindDestToken) &&
358 getParentPad(ChildUnwindDestToken) == CleanupPad)
359 continue;
360 UnwindDestToken = ChildUnwindDestToken;
361 break;
362 }
363 }
364 // If we haven't found an unwind dest for CurrentPad, we may have queued its
365 // children, so move on to the next in the worklist.
366 if (!UnwindDestToken)
367 continue;
368
369 // Now we know that CurrentPad unwinds to UnwindDestToken. It also exits
370 // any ancestors of CurrentPad up to but not including UnwindDestToken's
371 // parent pad. Record this in the memo map, and check to see if the
372 // original EHPad being queried is one of the ones exited.
373 Value *UnwindParent;
374 if (auto *UnwindPad = dyn_cast<Instruction>(UnwindDestToken))
375 UnwindParent = getParentPad(UnwindPad);
376 else
377 UnwindParent = nullptr;
378 bool ExitedOriginalPad = false;
379 for (Instruction *ExitedPad = CurrentPad;
380 ExitedPad && ExitedPad != UnwindParent;
381 ExitedPad = dyn_cast<Instruction>(getParentPad(ExitedPad))) {
382 // Skip over catchpads since they just follow their catchswitches.
383 if (isa<CatchPadInst>(ExitedPad))
384 continue;
385 MemoMap[ExitedPad] = UnwindDestToken;
386 ExitedOriginalPad |= (ExitedPad == EHPad);
387 }
388
389 if (ExitedOriginalPad)
390 return UnwindDestToken;
391
392 // Continue the search.
393 }
394
395 // No definitive information is contained within this funclet.
396 return nullptr;
397}
398
399/// Given an EH pad, find where it unwinds. If it unwinds to an EH pad,
400/// return that pad instruction. If it unwinds to caller, return
401/// ConstantTokenNone. If it does not have a definitive unwind destination,
402/// return nullptr.
403///
404/// This routine gets invoked for calls in funclets in inlinees when inlining
405/// an invoke. Since many funclets don't have calls inside them, it's queried
406/// on-demand rather than building a map of pads to unwind dests up front.
407/// Determining a funclet's unwind dest may require recursively searching its
408/// descendants, and also ancestors and cousins if the descendants don't provide
409/// an answer. Since most funclets will have their unwind dest immediately
410/// available as the unwind dest of a catchswitch or cleanupret, this routine
411/// searches top-down from the given pad and then up. To avoid worst-case
412/// quadratic run-time given that approach, it uses a memo map to avoid
413/// re-processing funclet trees. The callers that rewrite the IR as they go
414/// take advantage of this, for correctness, by checking/forcing rewritten
415/// pads' entries to match the original callee view.
417 UnwindDestMemoTy &MemoMap) {
418 // Catchpads unwind to the same place as their catchswitch;
419 // redirct any queries on catchpads so the code below can
420 // deal with just catchswitches and cleanuppads.
421 if (auto *CPI = dyn_cast<CatchPadInst>(EHPad))
422 EHPad = CPI->getCatchSwitch();
423
424 // Check if we've already determined the unwind dest for this pad.
425 auto Memo = MemoMap.find(EHPad);
426 if (Memo != MemoMap.end())
427 return Memo->second;
428
429 // Search EHPad and, if necessary, its descendants.
430 Value *UnwindDestToken = getUnwindDestTokenHelper(EHPad, MemoMap);
431 assert((UnwindDestToken == nullptr) != (MemoMap.count(EHPad) != 0));
432 if (UnwindDestToken)
433 return UnwindDestToken;
434
435 // No information is available for this EHPad from itself or any of its
436 // descendants. An unwind all the way out to a pad in the caller would
437 // need also to agree with the unwind dest of the parent funclet, so
438 // search up the chain to try to find a funclet with information. Put
439 // null entries in the memo map to avoid re-processing as we go up.
440 MemoMap[EHPad] = nullptr;
441#ifndef NDEBUG
443 TempMemos.insert(EHPad);
444#endif
445 Instruction *LastUselessPad = EHPad;
446 Value *AncestorToken;
447 for (AncestorToken = getParentPad(EHPad);
448 auto *AncestorPad = dyn_cast<Instruction>(AncestorToken);
449 AncestorToken = getParentPad(AncestorToken)) {
450 // Skip over catchpads since they just follow their catchswitches.
451 if (isa<CatchPadInst>(AncestorPad))
452 continue;
453 // If the MemoMap had an entry mapping AncestorPad to nullptr, since we
454 // haven't yet called getUnwindDestTokenHelper for AncestorPad in this
455 // call to getUnwindDestToken, that would mean that AncestorPad had no
456 // information in itself, its descendants, or its ancestors. If that
457 // were the case, then we should also have recorded the lack of information
458 // for the descendant that we're coming from. So assert that we don't
459 // find a null entry in the MemoMap for AncestorPad.
460 assert(!MemoMap.count(AncestorPad) || MemoMap[AncestorPad]);
461 auto AncestorMemo = MemoMap.find(AncestorPad);
462 if (AncestorMemo == MemoMap.end()) {
463 UnwindDestToken = getUnwindDestTokenHelper(AncestorPad, MemoMap);
464 } else {
465 UnwindDestToken = AncestorMemo->second;
466 }
467 if (UnwindDestToken)
468 break;
469 LastUselessPad = AncestorPad;
470 MemoMap[LastUselessPad] = nullptr;
471#ifndef NDEBUG
472 TempMemos.insert(LastUselessPad);
473#endif
474 }
475
476 // We know that getUnwindDestTokenHelper was called on LastUselessPad and
477 // returned nullptr (and likewise for EHPad and any of its ancestors up to
478 // LastUselessPad), so LastUselessPad has no information from below. Since
479 // getUnwindDestTokenHelper must investigate all downward paths through
480 // no-information nodes to prove that a node has no information like this,
481 // and since any time it finds information it records it in the MemoMap for
482 // not just the immediately-containing funclet but also any ancestors also
483 // exited, it must be the case that, walking downward from LastUselessPad,
484 // visiting just those nodes which have not been mapped to an unwind dest
485 // by getUnwindDestTokenHelper (the nullptr TempMemos notwithstanding, since
486 // they are just used to keep getUnwindDestTokenHelper from repeating work),
487 // any node visited must have been exhaustively searched with no information
488 // for it found.
489 SmallVector<Instruction *, 8> Worklist(1, LastUselessPad);
490 while (!Worklist.empty()) {
491 Instruction *UselessPad = Worklist.pop_back_val();
492 auto Memo = MemoMap.find(UselessPad);
493 if (Memo != MemoMap.end() && Memo->second) {
494 // Here the name 'UselessPad' is a bit of a misnomer, because we've found
495 // that it is a funclet that does have information about unwinding to
496 // a particular destination; its parent was a useless pad.
497 // Since its parent has no information, the unwind edge must not escape
498 // the parent, and must target a sibling of this pad. This local unwind
499 // gives us no information about EHPad. Leave it and the subtree rooted
500 // at it alone.
501 assert(getParentPad(Memo->second) == getParentPad(UselessPad));
502 continue;
503 }
504 // We know we don't have information for UselesPad. If it has an entry in
505 // the MemoMap (mapping it to nullptr), it must be one of the TempMemos
506 // added on this invocation of getUnwindDestToken; if a previous invocation
507 // recorded nullptr, it would have had to prove that the ancestors of
508 // UselessPad, which include LastUselessPad, had no information, and that
509 // in turn would have required proving that the descendants of
510 // LastUselesPad, which include EHPad, have no information about
511 // LastUselessPad, which would imply that EHPad was mapped to nullptr in
512 // the MemoMap on that invocation, which isn't the case if we got here.
513 assert(!MemoMap.count(UselessPad) || TempMemos.count(UselessPad));
514 // Assert as we enumerate users that 'UselessPad' doesn't have any unwind
515 // information that we'd be contradicting by making a map entry for it
516 // (which is something that getUnwindDestTokenHelper must have proved for
517 // us to get here). Just assert on is direct users here; the checks in
518 // this downward walk at its descendants will verify that they don't have
519 // any unwind edges that exit 'UselessPad' either (i.e. they either have no
520 // unwind edges or unwind to a sibling).
521 MemoMap[UselessPad] = UnwindDestToken;
522 if (auto *CatchSwitch = dyn_cast<CatchSwitchInst>(UselessPad)) {
523 assert(CatchSwitch->getUnwindDest() == nullptr && "Expected useless pad");
524 for (BasicBlock *HandlerBlock : CatchSwitch->handlers()) {
525 auto *CatchPad = &*HandlerBlock->getFirstNonPHIIt();
526 for (User *U : CatchPad->users()) {
527 assert((!isa<InvokeInst>(U) ||
529 ->getUnwindDest()
530 ->getFirstNonPHIIt()) == CatchPad)) &&
531 "Expected useless pad");
533 Worklist.push_back(cast<Instruction>(U));
534 }
535 }
536 } else {
537 assert(isa<CleanupPadInst>(UselessPad));
538 for (User *U : UselessPad->users()) {
539 assert(!isa<CleanupReturnInst>(U) && "Expected useless pad");
540 assert(
541 (!isa<InvokeInst>(U) ||
543 &*cast<InvokeInst>(U)->getUnwindDest()->getFirstNonPHIIt()) ==
544 UselessPad)) &&
545 "Expected useless pad");
547 Worklist.push_back(cast<Instruction>(U));
548 }
549 }
550 }
551
552 return UnwindDestToken;
553}
554
555/// When we inline a basic block into an invoke,
556/// we have to turn all of the calls that can throw into invokes.
557/// This function analyze BB to see if there are any calls, and if so,
558/// it rewrites them to be invokes that jump to InvokeDest and fills in the PHI
559/// nodes in that block with the values specified in InvokeDestPHIValues.
561 BasicBlock *BB, BasicBlock *UnwindEdge,
562 SmallSetVector<const Value *, 4> &OriginallyIndirectCalls,
563 UnwindDestMemoTy *FuncletUnwindMap = nullptr) {
565 // We only need to check for function calls: inlined invoke
566 // instructions require no special handling.
568
569 if (!CI || CI->doesNotThrow())
570 continue;
571
572 // We do not need to (and in fact, cannot) convert possibly throwing calls
573 // to @llvm.experimental_deoptimize (resp. @llvm.experimental.guard) into
574 // invokes. The caller's "segment" of the deoptimization continuation
575 // attached to the newly inlined @llvm.experimental_deoptimize
576 // (resp. @llvm.experimental.guard) call should contain the exception
577 // handling logic, if any.
578 if (auto *F = CI->getCalledFunction())
579 if (F->getIntrinsicID() == Intrinsic::experimental_deoptimize ||
580 F->getIntrinsicID() == Intrinsic::experimental_guard)
581 continue;
582
583 if (auto FuncletBundle = CI->getOperandBundle(LLVMContext::OB_funclet)) {
584 // This call is nested inside a funclet. If that funclet has an unwind
585 // destination within the inlinee, then unwinding out of this call would
586 // be UB. Rewriting this call to an invoke which targets the inlined
587 // invoke's unwind dest would give the call's parent funclet multiple
588 // unwind destinations, which is something that subsequent EH table
589 // generation can't handle and that the veirifer rejects. So when we
590 // see such a call, leave it as a call.
591 auto *FuncletPad = cast<Instruction>(FuncletBundle->Inputs[0]);
592 Value *UnwindDestToken =
593 getUnwindDestToken(FuncletPad, *FuncletUnwindMap);
594 if (UnwindDestToken && !isa<ConstantTokenNone>(UnwindDestToken))
595 continue;
596#ifndef NDEBUG
597 Instruction *MemoKey;
598 if (auto *CatchPad = dyn_cast<CatchPadInst>(FuncletPad))
599 MemoKey = CatchPad->getCatchSwitch();
600 else
601 MemoKey = FuncletPad;
602 assert(FuncletUnwindMap->count(MemoKey) &&
603 (*FuncletUnwindMap)[MemoKey] == UnwindDestToken &&
604 "must get memoized to avoid confusing later searches");
605#endif // NDEBUG
606 }
607
608 bool WasIndirect = OriginallyIndirectCalls.remove(CI);
609 changeToInvokeAndSplitBasicBlock(CI, UnwindEdge);
610 if (WasIndirect)
611 OriginallyIndirectCalls.insert(BB->getTerminator());
612 return BB;
613 }
614 return nullptr;
615}
616
617/// If we inlined an invoke site, we need to convert calls
618/// in the body of the inlined function into invokes.
619///
620/// II is the invoke instruction being inlined. FirstNewBlock is the first
621/// block of the inlined code (the last block is the end of the function),
622/// and InlineCodeInfo is information about the code that got inlined.
623static void HandleInlinedLandingPad(InvokeInst *II, BasicBlock *FirstNewBlock,
624 ClonedCodeInfo &InlinedCodeInfo) {
625 BasicBlock *InvokeDest = II->getUnwindDest();
626
627 Function *Caller = FirstNewBlock->getParent();
628
629 // The inlined code is currently at the end of the function, scan from the
630 // start of the inlined code to its end, checking for stuff we need to
631 // rewrite.
632 LandingPadInliningInfo Invoke(II);
633
634 // Get all of the inlined landing pad instructions.
636 for (Function::iterator I = FirstNewBlock->getIterator(), E = Caller->end();
637 I != E; ++I)
638 if (InvokeInst *II = dyn_cast<InvokeInst>(I->getTerminator()))
639 InlinedLPads.insert(II->getLandingPadInst());
640
641 // Append the clauses from the outer landing pad instruction into the inlined
642 // landing pad instructions.
643 LandingPadInst *OuterLPad = Invoke.getLandingPadInst();
644 for (LandingPadInst *InlinedLPad : InlinedLPads) {
645 unsigned OuterNum = OuterLPad->getNumClauses();
646 InlinedLPad->reserveClauses(OuterNum);
647 for (unsigned OuterIdx = 0; OuterIdx != OuterNum; ++OuterIdx)
648 InlinedLPad->addClause(OuterLPad->getClause(OuterIdx));
649 if (OuterLPad->isCleanup())
650 InlinedLPad->setCleanup(true);
651 }
652
653 for (Function::iterator BB = FirstNewBlock->getIterator(), E = Caller->end();
654 BB != E; ++BB) {
655 if (InlinedCodeInfo.ContainsCalls)
657 &*BB, Invoke.getOuterResumeDest(),
658 InlinedCodeInfo.OriginallyIndirectCalls))
659 // Update any PHI nodes in the exceptional block to indicate that there
660 // is now a new entry in them.
661 Invoke.addIncomingPHIValuesFor(NewBB);
662
663 // Forward any resumes that are remaining here.
664 if (ResumeInst *RI = dyn_cast<ResumeInst>(BB->getTerminator()))
665 Invoke.forwardResume(RI, InlinedLPads);
666 }
667
668 // Now that everything is happy, we have one final detail. The PHI nodes in
669 // the exception destination block still have entries due to the original
670 // invoke instruction. Eliminate these entries (which might even delete the
671 // PHI node) now.
672 InvokeDest->removePredecessor(II->getParent());
673}
674
675/// If we inlined an invoke site, we need to convert calls
676/// in the body of the inlined function into invokes.
677///
678/// II is the invoke instruction being inlined. FirstNewBlock is the first
679/// block of the inlined code (the last block is the end of the function),
680/// and InlineCodeInfo is information about the code that got inlined.
681static void HandleInlinedEHPad(InvokeInst *II, BasicBlock *FirstNewBlock,
682 ClonedCodeInfo &InlinedCodeInfo) {
683 BasicBlock *UnwindDest = II->getUnwindDest();
684 Function *Caller = FirstNewBlock->getParent();
685
686 assert(UnwindDest->getFirstNonPHIIt()->isEHPad() && "unexpected BasicBlock!");
687
688 // If there are PHI nodes in the unwind destination block, we need to keep
689 // track of which values came into them from the invoke before removing the
690 // edge from this block.
691 SmallVector<Value *, 8> UnwindDestPHIValues;
692 BasicBlock *InvokeBB = II->getParent();
693 for (PHINode &PHI : UnwindDest->phis()) {
694 // Save the value to use for this edge.
695 UnwindDestPHIValues.push_back(PHI.getIncomingValueForBlock(InvokeBB));
696 }
697
698 // Add incoming-PHI values to the unwind destination block for the given basic
699 // block, using the values for the original invoke's source block.
700 auto UpdatePHINodes = [&](BasicBlock *Src) {
701 BasicBlock::iterator I = UnwindDest->begin();
702 for (Value *V : UnwindDestPHIValues) {
704 PHI->addIncoming(V, Src);
705 ++I;
706 }
707 };
708
709 // This connects all the instructions which 'unwind to caller' to the invoke
710 // destination.
711 UnwindDestMemoTy FuncletUnwindMap;
712 for (Function::iterator BB = FirstNewBlock->getIterator(), E = Caller->end();
713 BB != E; ++BB) {
714 if (auto *CRI = dyn_cast<CleanupReturnInst>(BB->getTerminator())) {
715 if (CRI->unwindsToCaller()) {
716 auto *CleanupPad = CRI->getCleanupPad();
717 CleanupReturnInst::Create(CleanupPad, UnwindDest, CRI->getIterator());
718 CRI->eraseFromParent();
719 UpdatePHINodes(&*BB);
720 // Finding a cleanupret with an unwind destination would confuse
721 // subsequent calls to getUnwindDestToken, so map the cleanuppad
722 // to short-circuit any such calls and recognize this as an "unwind
723 // to caller" cleanup.
724 assert(!FuncletUnwindMap.count(CleanupPad) ||
725 isa<ConstantTokenNone>(FuncletUnwindMap[CleanupPad]));
726 FuncletUnwindMap[CleanupPad] =
727 ConstantTokenNone::get(Caller->getContext());
728 }
729 }
730
731 BasicBlock::iterator I = BB->getFirstNonPHIIt();
732 if (!I->isEHPad())
733 continue;
734
735 Instruction *Replacement = nullptr;
736 if (auto *CatchSwitch = dyn_cast<CatchSwitchInst>(I)) {
737 if (CatchSwitch->unwindsToCaller()) {
738 Value *UnwindDestToken;
739 if (auto *ParentPad =
740 dyn_cast<Instruction>(CatchSwitch->getParentPad())) {
741 // This catchswitch is nested inside another funclet. If that
742 // funclet has an unwind destination within the inlinee, then
743 // unwinding out of this catchswitch would be UB. Rewriting this
744 // catchswitch to unwind to the inlined invoke's unwind dest would
745 // give the parent funclet multiple unwind destinations, which is
746 // something that subsequent EH table generation can't handle and
747 // that the veirifer rejects. So when we see such a call, leave it
748 // as "unwind to caller".
749 UnwindDestToken = getUnwindDestToken(ParentPad, FuncletUnwindMap);
750 if (UnwindDestToken && !isa<ConstantTokenNone>(UnwindDestToken))
751 continue;
752 } else {
753 // This catchswitch has no parent to inherit constraints from, and
754 // none of its descendants can have an unwind edge that exits it and
755 // targets another funclet in the inlinee. It may or may not have a
756 // descendant that definitively has an unwind to caller. In either
757 // case, we'll have to assume that any unwinds out of it may need to
758 // be routed to the caller, so treat it as though it has a definitive
759 // unwind to caller.
760 UnwindDestToken = ConstantTokenNone::get(Caller->getContext());
761 }
762 auto *NewCatchSwitch = CatchSwitchInst::Create(
763 CatchSwitch->getParentPad(), UnwindDest,
764 CatchSwitch->getNumHandlers(), CatchSwitch->getName(),
765 CatchSwitch->getIterator());
766 for (BasicBlock *PadBB : CatchSwitch->handlers())
767 NewCatchSwitch->addHandler(PadBB);
768 // Propagate info for the old catchswitch over to the new one in
769 // the unwind map. This also serves to short-circuit any subsequent
770 // checks for the unwind dest of this catchswitch, which would get
771 // confused if they found the outer handler in the callee.
772 FuncletUnwindMap[NewCatchSwitch] = UnwindDestToken;
773 Replacement = NewCatchSwitch;
774 }
775 } else if (!isa<FuncletPadInst>(I)) {
776 llvm_unreachable("unexpected EHPad!");
777 }
778
779 if (Replacement) {
780 Replacement->takeName(&*I);
781 I->replaceAllUsesWith(Replacement);
782 I->eraseFromParent();
783 UpdatePHINodes(&*BB);
784 }
785 }
786
787 if (InlinedCodeInfo.ContainsCalls)
788 for (Function::iterator BB = FirstNewBlock->getIterator(),
789 E = Caller->end();
790 BB != E; ++BB)
792 &*BB, UnwindDest, InlinedCodeInfo.OriginallyIndirectCalls,
793 &FuncletUnwindMap))
794 // Update any PHI nodes in the exceptional block to indicate that there
795 // is now a new entry in them.
796 UpdatePHINodes(NewBB);
797
798 // Now that everything is happy, we have one final detail. The PHI nodes in
799 // the exception destination block still have entries due to the original
800 // invoke instruction. Eliminate these entries (which might even delete the
801 // PHI node) now.
802 UnwindDest->removePredecessor(InvokeBB);
803}
804
805static bool haveCommonPrefix(MDNode *MIBStackContext,
806 MDNode *CallsiteStackContext) {
807 assert(MIBStackContext->getNumOperands() > 0 &&
808 CallsiteStackContext->getNumOperands() > 0);
809 // Because of the context trimming performed during matching, the callsite
810 // context could have more stack ids than the MIB. We match up to the end of
811 // the shortest stack context.
812 for (auto MIBStackIter = MIBStackContext->op_begin(),
813 CallsiteStackIter = CallsiteStackContext->op_begin();
814 MIBStackIter != MIBStackContext->op_end() &&
815 CallsiteStackIter != CallsiteStackContext->op_end();
816 MIBStackIter++, CallsiteStackIter++) {
817 auto *Val1 = mdconst::dyn_extract<ConstantInt>(*MIBStackIter);
818 auto *Val2 = mdconst::dyn_extract<ConstantInt>(*CallsiteStackIter);
819 assert(Val1 && Val2);
820 if (Val1->getZExtValue() != Val2->getZExtValue())
821 return false;
822 }
823 return true;
824}
825
827 Call->setMetadata(LLVMContext::MD_memprof, nullptr);
828}
829
831 Call->setMetadata(LLVMContext::MD_callsite, nullptr);
832}
833
835 const std::vector<Metadata *> &MIBList,
837 assert(!MIBList.empty());
838 // Remove existing memprof, which will either be replaced or may not be needed
839 // if we are able to use a single allocation type function attribute.
842 for (Metadata *MIB : MIBList)
843 CallStack.addCallStack(cast<MDNode>(MIB));
844 bool MemprofMDAttached = CallStack.buildAndAttachMIBMetadata(CI);
845 assert(MemprofMDAttached == CI->hasMetadata(LLVMContext::MD_memprof));
846 if (!MemprofMDAttached)
847 // If we used a function attribute remove the callsite metadata as well.
849}
850
851// Update the metadata on the inlined copy ClonedCall of a call OrigCall in the
852// inlined callee body, based on the callsite metadata InlinedCallsiteMD from
853// the call that was inlined.
854static void propagateMemProfHelper(const CallBase *OrigCall,
855 CallBase *ClonedCall,
856 MDNode *InlinedCallsiteMD,
858 MDNode *OrigCallsiteMD = ClonedCall->getMetadata(LLVMContext::MD_callsite);
859 MDNode *ClonedCallsiteMD = nullptr;
860 // Check if the call originally had callsite metadata, and update it for the
861 // new call in the inlined body.
862 if (OrigCallsiteMD) {
863 // The cloned call's context is now the concatenation of the original call's
864 // callsite metadata and the callsite metadata on the call where it was
865 // inlined.
866 ClonedCallsiteMD = MDNode::concatenate(OrigCallsiteMD, InlinedCallsiteMD);
867 ClonedCall->setMetadata(LLVMContext::MD_callsite, ClonedCallsiteMD);
868 }
869
870 // Update any memprof metadata on the cloned call.
871 MDNode *OrigMemProfMD = ClonedCall->getMetadata(LLVMContext::MD_memprof);
872 if (!OrigMemProfMD)
873 return;
874 // We currently expect that allocations with memprof metadata also have
875 // callsite metadata for the allocation's part of the context.
876 assert(OrigCallsiteMD);
877
878 // New call's MIB list.
879 std::vector<Metadata *> NewMIBList;
880
881 // For each MIB metadata, check if its call stack context starts with the
882 // new clone's callsite metadata. If so, that MIB goes onto the cloned call in
883 // the inlined body. If not, it stays on the out-of-line original call.
884 for (auto &MIBOp : OrigMemProfMD->operands()) {
885 MDNode *MIB = dyn_cast<MDNode>(MIBOp);
886 // Stack is first operand of MIB.
887 MDNode *StackMD = getMIBStackNode(MIB);
888 assert(StackMD);
889 // See if the new cloned callsite context matches this profiled context.
890 if (haveCommonPrefix(StackMD, ClonedCallsiteMD))
891 // Add it to the cloned call's MIB list.
892 NewMIBList.push_back(MIB);
893 }
894 if (NewMIBList.empty()) {
895 removeMemProfMetadata(ClonedCall);
896 removeCallsiteMetadata(ClonedCall);
897 return;
898 }
899 if (NewMIBList.size() < OrigMemProfMD->getNumOperands())
900 updateMemprofMetadata(ClonedCall, NewMIBList, ORE);
901}
902
903// Update memprof related metadata (!memprof and !callsite) based on the
904// inlining of Callee into the callsite at CB. The updates include merging the
905// inlined callee's callsite metadata with that of the inlined call,
906// and moving the subset of any memprof contexts to the inlined callee
907// allocations if they match the new inlined call stack.
908static void
910 bool ContainsMemProfMetadata,
913 MDNode *CallsiteMD = CB.getMetadata(LLVMContext::MD_callsite);
914 // Only need to update if the inlined callsite had callsite metadata, or if
915 // there was any memprof metadata inlined.
916 if (!CallsiteMD && !ContainsMemProfMetadata)
917 return;
918
919 // Propagate metadata onto the cloned calls in the inlined callee.
920 for (const auto &Entry : VMap) {
921 // See if this is a call that has been inlined and remapped, and not
922 // simplified away in the process.
923 auto *OrigCall = dyn_cast_or_null<CallBase>(Entry.first);
924 auto *ClonedCall = dyn_cast_or_null<CallBase>(Entry.second);
925 if (!OrigCall || !ClonedCall)
926 continue;
927 // If the inlined callsite did not have any callsite metadata, then it isn't
928 // involved in any profiled call contexts, and we can remove any memprof
929 // metadata on the cloned call.
930 if (!CallsiteMD) {
931 removeMemProfMetadata(ClonedCall);
932 removeCallsiteMetadata(ClonedCall);
933 continue;
934 }
935 propagateMemProfHelper(OrigCall, ClonedCall, CallsiteMD, ORE);
936 }
937}
938
939/// Collect all calls that produce RetVal, following only pointer-preserving
940/// instructions (cast, phi, select).
943 SmallVector<Value *, 8> Worklist{RetVal};
945 while (!Worklist.empty()) {
946 Value *V = Worklist.pop_back_val();
947 if (!V->getType()->isPointerTy() || !Visited.insert(V).second)
948 continue;
949 if (auto *CB = dyn_cast<CallBase>(V))
950 Out.push_back(CB);
952 Worklist.push_back(cast<CastInst>(V)->getOperand(0));
953 else if (auto *PN = dyn_cast<PHINode>(V))
954 append_range(Worklist, PN->incoming_values());
955 else if (auto *SI = dyn_cast<SelectInst>(V)) {
956 Worklist.push_back(SI->getTrueValue());
957 Worklist.push_back(SI->getFalseValue());
958 }
959 }
960}
961
962/// When inlining a call that carries !alloc_token metadata, propagate that
963/// metadata onto calls exposed by inlining the wrapper body. Propagation is
964/// restricted to return-value producing calls, which avoids instrumenting
965/// unrelated calls in the wrapper body.
966static void
969 ClonedCodeInfo &InlinedFunctionInfo) {
970 MDNode *AllocTokenMD = CB.getMetadata(LLVMContext::MD_alloc_token);
971 if (!AllocTokenMD)
972 return;
973
975 for (BasicBlock &BB : *CalledFunc)
976 if (auto *RI = dyn_cast<ReturnInst>(BB.getTerminator()))
977 if (Value *RV = RI->getReturnValue())
978 collectPointerReturningCalls(RV, AllocCalls);
979
980 for (CallBase *OrigCall : AllocCalls) {
981 auto *ClonedCall = dyn_cast_or_null<CallBase>(VMap.lookup(OrigCall));
982 if (!ClonedCall)
983 continue;
984 // Skip calls simplified during inlining; propagation may be incorrect.
985 if (InlinedFunctionInfo.isSimplified(OrigCall, ClonedCall))
986 continue;
987 // Fill missing only: never overwrite a more specific token the wrapper
988 // already set on an internal allocation.
989 if (ClonedCall->getMetadata(LLVMContext::MD_alloc_token))
990 continue;
991 ClonedCall->setMetadata(LLVMContext::MD_alloc_token, AllocTokenMD);
992 }
993}
994
995/// When inlining a call site that has !llvm.mem.parallel_loop_access,
996/// !llvm.access.group, !alias.scope or !noalias metadata, that metadata should
997/// be propagated to all memory-accessing cloned instructions.
999 Function::iterator FEnd) {
1000 MDNode *MemParallelLoopAccess =
1001 CB.getMetadata(LLVMContext::MD_mem_parallel_loop_access);
1002 MDNode *AccessGroup = CB.getMetadata(LLVMContext::MD_access_group);
1003 MDNode *AliasScope = CB.getMetadata(LLVMContext::MD_alias_scope);
1004 MDNode *NoAlias = CB.getMetadata(LLVMContext::MD_noalias);
1005 if (!MemParallelLoopAccess && !AccessGroup && !AliasScope && !NoAlias)
1006 return;
1007
1008 for (BasicBlock &BB : make_range(FStart, FEnd)) {
1009 for (Instruction &I : BB) {
1010 // This metadata is only relevant for instructions that access memory.
1011 if (!I.mayReadOrWriteMemory())
1012 continue;
1013
1014 if (MemParallelLoopAccess) {
1015 // TODO: This probably should not overwrite MemParalleLoopAccess.
1016 MemParallelLoopAccess = MDNode::concatenate(
1017 I.getMetadata(LLVMContext::MD_mem_parallel_loop_access),
1018 MemParallelLoopAccess);
1019 I.setMetadata(LLVMContext::MD_mem_parallel_loop_access,
1020 MemParallelLoopAccess);
1021 }
1022
1023 if (AccessGroup)
1024 I.setMetadata(LLVMContext::MD_access_group, uniteAccessGroups(
1025 I.getMetadata(LLVMContext::MD_access_group), AccessGroup));
1026
1027 if (AliasScope)
1028 I.setMetadata(LLVMContext::MD_alias_scope, MDNode::concatenate(
1029 I.getMetadata(LLVMContext::MD_alias_scope), AliasScope));
1030
1031 if (NoAlias)
1032 I.setMetadata(LLVMContext::MD_noalias, MDNode::concatenate(
1033 I.getMetadata(LLVMContext::MD_noalias), NoAlias));
1034 }
1035 }
1036}
1037
1038/// Track inlining chain via inlined.from metadata for dontcall diagnostics.
1039static void PropagateInlinedFromMetadata(CallBase &CB, StringRef CalledFuncName,
1040 StringRef CallerFuncName,
1041 Function::iterator FStart,
1042 Function::iterator FEnd) {
1043 LLVMContext &Ctx = CB.getContext();
1044 uint64_t InlineSiteLoc = 0;
1045 if (auto *MD = CB.getMetadata("srcloc"))
1046 if (auto *CI = mdconst::dyn_extract<ConstantInt>(MD->getOperand(0)))
1047 InlineSiteLoc = CI->getZExtValue();
1048
1049 auto *I64Ty = Type::getInt64Ty(Ctx);
1050 auto MakeMDInt = [&](uint64_t V) {
1051 return ConstantAsMetadata::get(ConstantInt::get(I64Ty, V));
1052 };
1053
1054 for (BasicBlock &BB : make_range(FStart, FEnd)) {
1055 for (Instruction &I : BB) {
1056 auto *CI = dyn_cast<CallInst>(&I);
1057 if (!CI || !CI->getMetadata("srcloc"))
1058 continue;
1059 auto *Callee = CI->getCalledFunction();
1060 if (!Callee || (!Callee->hasFnAttribute("dontcall-error") &&
1061 !Callee->hasFnAttribute("dontcall-warn")))
1062 continue;
1063
1065 if (MDNode *Existing = CI->getMetadata("inlined.from"))
1066 append_range(Ops, Existing->operands());
1067 else {
1068 Ops.push_back(MDString::get(Ctx, CalledFuncName));
1069 Ops.push_back(MakeMDInt(0));
1070 }
1071 Ops.push_back(MDString::get(Ctx, CallerFuncName));
1072 Ops.push_back(MakeMDInt(InlineSiteLoc));
1073 CI->setMetadata("inlined.from", MDNode::get(Ctx, Ops));
1074 }
1075 }
1076}
1077
1078/// Bundle operands of the inlined function must be added to inlined call sites.
1080 Instruction *CallSiteEHPad) {
1081 for (Instruction &II : llvm::make_early_inc_range(*InlinedBB)) {
1083 if (!I)
1084 continue;
1085 // Skip call sites which already have a "funclet" bundle.
1086 if (I->getOperandBundle(LLVMContext::OB_funclet))
1087 continue;
1088 // Skip call sites which are nounwind intrinsics (as long as they don't
1089 // lower into regular function calls in the course of IR transformations).
1090 auto *CalledFn =
1091 dyn_cast<Function>(I->getCalledOperand()->stripPointerCasts());
1092 if (CalledFn && CalledFn->isIntrinsic() && I->doesNotThrow() &&
1093 !IntrinsicInst::mayLowerToFunctionCall(CalledFn->getIntrinsicID()))
1094 continue;
1095
1097 I->getOperandBundlesAsDefs(OpBundles);
1098 OpBundles.emplace_back("funclet", CallSiteEHPad);
1099
1100 Instruction *NewInst = CallBase::Create(I, OpBundles, I->getIterator());
1101 NewInst->takeName(I);
1102 I->replaceAllUsesWith(NewInst);
1103 I->eraseFromParent();
1104 }
1105}
1106
1107namespace {
1108/// Utility for cloning !noalias and !alias.scope metadata. When a code region
1109/// using scoped alias metadata is inlined, the aliasing relationships may not
1110/// hold between the two version. It is necessary to create a deep clone of the
1111/// metadata, putting the two versions in separate scope domains.
1112class ScopedAliasMetadataDeepCloner {
1113 using MetadataMap = DenseMap<const MDNode *, TrackingMDNodeRef>;
1114 SetVector<const MDNode *> MD;
1115 MetadataMap MDMap;
1116 void addRecursiveMetadataUses();
1117
1118public:
1119 ScopedAliasMetadataDeepCloner(const Function *F);
1120
1121 /// Create a new clone of the scoped alias metadata, which will be used by
1122 /// subsequent remap() calls.
1123 void clone();
1124
1125 /// Remap instructions in the given range from the original to the cloned
1126 /// metadata.
1127 void remap(Function::iterator FStart, Function::iterator FEnd);
1128};
1129} // namespace
1130
1131ScopedAliasMetadataDeepCloner::ScopedAliasMetadataDeepCloner(
1132 const Function *F) {
1133 for (const BasicBlock &BB : *F) {
1134 for (const Instruction &I : BB) {
1135 if (const MDNode *M = I.getMetadata(LLVMContext::MD_alias_scope))
1136 MD.insert(M);
1137 if (const MDNode *M = I.getMetadata(LLVMContext::MD_noalias))
1138 MD.insert(M);
1139
1140 // We also need to clone the metadata in noalias intrinsics.
1141 if (const auto *Decl = dyn_cast<NoAliasScopeDeclInst>(&I))
1142 MD.insert(Decl->getScopeList());
1143 }
1144 }
1145 addRecursiveMetadataUses();
1146}
1147
1148void ScopedAliasMetadataDeepCloner::addRecursiveMetadataUses() {
1149 SmallVector<const Metadata *, 16> Queue(MD.begin(), MD.end());
1150 while (!Queue.empty()) {
1151 const MDNode *M = cast<MDNode>(Queue.pop_back_val());
1152 for (const Metadata *Op : M->operands())
1153 if (const MDNode *OpMD = dyn_cast<MDNode>(Op))
1154 if (MD.insert(OpMD))
1155 Queue.push_back(OpMD);
1156 }
1157}
1158
1159void ScopedAliasMetadataDeepCloner::clone() {
1160 assert(MDMap.empty() && "clone() already called ?");
1161
1163 for (const MDNode *I : MD) {
1164 DummyNodes.push_back(MDTuple::getTemporary(I->getContext(), {}));
1165 MDMap[I].reset(DummyNodes.back().get());
1166 }
1167
1168 // Create new metadata nodes to replace the dummy nodes, replacing old
1169 // metadata references with either a dummy node or an already-created new
1170 // node.
1172 for (const MDNode *I : MD) {
1173 for (const Metadata *Op : I->operands()) {
1174 if (const MDNode *M = dyn_cast<MDNode>(Op))
1175 NewOps.push_back(MDMap[M]);
1176 else
1177 NewOps.push_back(const_cast<Metadata *>(Op));
1178 }
1179
1180 MDNode *NewM = MDNode::get(I->getContext(), NewOps);
1181 MDTuple *TempM = cast<MDTuple>(MDMap[I]);
1182 assert(TempM->isTemporary() && "Expected temporary node");
1183
1184 TempM->replaceAllUsesWith(NewM);
1185 NewOps.clear();
1186 }
1187}
1188
1189void ScopedAliasMetadataDeepCloner::remap(Function::iterator FStart,
1190 Function::iterator FEnd) {
1191 if (MDMap.empty())
1192 return; // Nothing to do.
1193
1194 for (BasicBlock &BB : make_range(FStart, FEnd)) {
1195 for (Instruction &I : BB) {
1196 // TODO: The null checks for the MDMap.lookup() results should no longer
1197 // be necessary.
1198 if (MDNode *M = I.getMetadata(LLVMContext::MD_alias_scope))
1199 if (MDNode *MNew = MDMap.lookup(M))
1200 I.setMetadata(LLVMContext::MD_alias_scope, MNew);
1201
1202 if (MDNode *M = I.getMetadata(LLVMContext::MD_noalias))
1203 if (MDNode *MNew = MDMap.lookup(M))
1204 I.setMetadata(LLVMContext::MD_noalias, MNew);
1205
1206 if (auto *Decl = dyn_cast<NoAliasScopeDeclInst>(&I))
1207 if (MDNode *MNew = MDMap.lookup(Decl->getScopeList()))
1208 Decl->setScopeList(MNew);
1209 }
1210 }
1211}
1212
1213/// If the inlined function has noalias arguments,
1214/// then add new alias scopes for each noalias argument, tag the mapped noalias
1215/// parameters with noalias metadata specifying the new scope, and tag all
1216/// non-derived loads, stores and memory intrinsics with the new alias scopes.
1218 const DataLayout &DL, AAResults *CalleeAAR,
1219 ClonedCodeInfo &InlinedFunctionInfo) {
1221 return;
1222
1223 const Function *CalledFunc = CB.getCalledFunction();
1225
1226 for (const Argument &Arg : CalledFunc->args())
1227 if (CB.paramHasAttr(Arg.getArgNo(), Attribute::NoAlias) && !Arg.use_empty())
1228 NoAliasArgs.push_back(&Arg);
1229
1230 if (NoAliasArgs.empty())
1231 return;
1232
1233 // To do a good job, if a noalias variable is captured, we need to know if
1234 // the capture point dominates the particular use we're considering.
1235 DominatorTree DT;
1236 DT.recalculate(const_cast<Function&>(*CalledFunc));
1237
1238 // noalias indicates that pointer values based on the argument do not alias
1239 // pointer values which are not based on it. So we add a new "scope" for each
1240 // noalias function argument. Accesses using pointers based on that argument
1241 // become part of that alias scope, accesses using pointers not based on that
1242 // argument are tagged as noalias with that scope.
1243
1245 MDBuilder MDB(CalledFunc->getContext());
1246
1247 // Create a new scope domain for this function.
1248 MDNode *NewDomain =
1249 MDB.createAnonymousAliasScopeDomain(CalledFunc->getName());
1250 for (unsigned i = 0, e = NoAliasArgs.size(); i != e; ++i) {
1251 const Argument *A = NoAliasArgs[i];
1252
1253 std::string Name = std::string(CalledFunc->getName());
1254 if (A->hasName()) {
1255 Name += ": %";
1256 Name += A->getName();
1257 } else {
1258 Name += ": argument ";
1259 Name += utostr(i);
1260 }
1261
1262 // Note: We always create a new anonymous root here. This is true regardless
1263 // of the linkage of the callee because the aliasing "scope" is not just a
1264 // property of the callee, but also all control dependencies in the caller.
1265 MDNode *NewScope = MDB.createAnonymousAliasScope(NewDomain, Name);
1266 NewScopes.insert(std::make_pair(A, NewScope));
1267
1268 if (UseNoAliasIntrinsic) {
1269 // Introduce a llvm.experimental.noalias.scope.decl for the noalias
1270 // argument.
1271 MDNode *AScopeList = MDNode::get(CalledFunc->getContext(), NewScope);
1272 auto *NoAliasDecl =
1273 IRBuilder<>(&CB).CreateNoAliasScopeDeclaration(AScopeList);
1274 // Ignore the result for now. The result will be used when the
1275 // llvm.noalias intrinsic is introduced.
1276 (void)NoAliasDecl;
1277 }
1278 }
1279
1280 // Iterate over all new instructions in the map; for all memory-access
1281 // instructions, add the alias scope metadata.
1282 for (ValueToValueMapTy::iterator VMI = VMap.begin(), VMIE = VMap.end();
1283 VMI != VMIE; ++VMI) {
1284 if (const Instruction *I = dyn_cast<Instruction>(VMI->first)) {
1285 if (!VMI->second)
1286 continue;
1287
1288 Instruction *NI = dyn_cast<Instruction>(VMI->second);
1289 if (!NI || InlinedFunctionInfo.isSimplified(I, NI))
1290 continue;
1291
1292 bool IsArgMemOnlyCall = false, IsFuncCall = false;
1294
1295 if (const LoadInst *LI = dyn_cast<LoadInst>(I))
1296 PtrArgs.push_back(LI->getPointerOperand());
1297 else if (const StoreInst *SI = dyn_cast<StoreInst>(I))
1298 PtrArgs.push_back(SI->getPointerOperand());
1299 else if (const VAArgInst *VAAI = dyn_cast<VAArgInst>(I))
1300 PtrArgs.push_back(VAAI->getPointerOperand());
1301 else if (const AtomicCmpXchgInst *CXI = dyn_cast<AtomicCmpXchgInst>(I))
1302 PtrArgs.push_back(CXI->getPointerOperand());
1303 else if (const AtomicRMWInst *RMWI = dyn_cast<AtomicRMWInst>(I))
1304 PtrArgs.push_back(RMWI->getPointerOperand());
1305 else if (const auto *Call = dyn_cast<CallBase>(I)) {
1306 // If we know that the call does not access memory, then we'll still
1307 // know that about the inlined clone of this call site, and we don't
1308 // need to add metadata.
1309 if (Call->doesNotAccessMemory())
1310 continue;
1311
1312 IsFuncCall = true;
1313 if (CalleeAAR) {
1314 MemoryEffects ME = CalleeAAR->getMemoryEffects(Call);
1315
1316 // We'll retain this knowledge without additional metadata.
1318 continue;
1319
1320 if (ME.onlyAccessesArgPointees())
1321 IsArgMemOnlyCall = true;
1322 }
1323
1324 for (Value *Arg : Call->args()) {
1325 // Only care about pointer arguments. If a noalias argument is
1326 // accessed through a non-pointer argument, it must be captured
1327 // first (e.g. via ptrtoint), and we protect against captures below.
1328 if (!Arg->getType()->isPointerTy())
1329 continue;
1330
1331 PtrArgs.push_back(Arg);
1332 }
1333 }
1334
1335 // If we found no pointers, then this instruction is not suitable for
1336 // pairing with an instruction to receive aliasing metadata.
1337 // However, if this is a call, this we might just alias with none of the
1338 // noalias arguments.
1339 if (PtrArgs.empty() && !IsFuncCall)
1340 continue;
1341
1342 // It is possible that there is only one underlying object, but you
1343 // need to go through several PHIs to see it, and thus could be
1344 // repeated in the Objects list.
1347
1348 for (const Value *V : PtrArgs) {
1350 getUnderlyingObjects(V, Objects, /* LI = */ nullptr);
1351
1352 ObjSet.insert_range(Objects);
1353 }
1354
1355 // Figure out if we're derived from anything that is not a noalias
1356 // argument.
1357 bool RequiresNoCaptureBefore = false, UsesAliasingPtr = false,
1358 UsesUnknownObject = false;
1359 for (const Value *V : ObjSet) {
1360 // Is this value a constant that cannot be derived from any pointer
1361 // value (we need to exclude constant expressions, for example, that
1362 // are formed from arithmetic on global symbols).
1363 bool IsNonPtrConst = isa<ConstantInt>(V) || isa<ConstantFP>(V) ||
1366 if (IsNonPtrConst)
1367 continue;
1368
1369 // If this is anything other than a noalias argument, then we cannot
1370 // completely describe the aliasing properties using alias.scope
1371 // metadata (and, thus, won't add any).
1372 if (const Argument *A = dyn_cast<Argument>(V)) {
1373 if (!CB.paramHasAttr(A->getArgNo(), Attribute::NoAlias))
1374 UsesAliasingPtr = true;
1375 } else {
1376 UsesAliasingPtr = true;
1377 }
1378
1379 if (isEscapeSource(V)) {
1380 // An escape source can only alias with a noalias argument if it has
1381 // been captured beforehand.
1382 RequiresNoCaptureBefore = true;
1383 } else if (!isa<Argument>(V) && !isIdentifiedObject(V)) {
1384 // If this is neither an escape source, nor some identified object
1385 // (which cannot directly alias a noalias argument), nor some other
1386 // argument (which, by definition, also cannot alias a noalias
1387 // argument), conservatively do not make any assumptions.
1388 UsesUnknownObject = true;
1389 }
1390 }
1391
1392 // Nothing we can do if the used underlying object cannot be reliably
1393 // determined.
1394 if (UsesUnknownObject)
1395 continue;
1396
1397 // A function call can always get captured noalias pointers (via other
1398 // parameters, globals, etc.).
1399 if (IsFuncCall && !IsArgMemOnlyCall)
1400 RequiresNoCaptureBefore = true;
1401
1402 // First, we want to figure out all of the sets with which we definitely
1403 // don't alias. Iterate over all noalias set, and add those for which:
1404 // 1. The noalias argument is not in the set of objects from which we
1405 // definitely derive.
1406 // 2. The noalias argument has not yet been captured.
1407 // An arbitrary function that might load pointers could see captured
1408 // noalias arguments via other noalias arguments or globals, and so we
1409 // must always check for prior capture.
1410 for (const Argument *A : NoAliasArgs) {
1411 if (ObjSet.contains(A))
1412 continue; // May be based on a noalias argument.
1413
1414 // It might be tempting to skip the PointerMayBeCapturedBefore check if
1415 // A->hasNoCaptureAttr() is true, but this is incorrect because
1416 // nocapture only guarantees that no copies outlive the function, not
1417 // that the value cannot be locally captured.
1418 if (!RequiresNoCaptureBefore ||
1420 A, /*ReturnCaptures=*/false, I, &DT, /*IncludeI=*/false,
1422 NoAliases.push_back(NewScopes[A]);
1423 }
1424
1425 if (!NoAliases.empty())
1426 NI->setMetadata(LLVMContext::MD_noalias,
1428 NI->getMetadata(LLVMContext::MD_noalias),
1429 MDNode::get(CalledFunc->getContext(), NoAliases)));
1430
1431 // Next, we want to figure out all of the sets to which we might belong.
1432 // We might belong to a set if the noalias argument is in the set of
1433 // underlying objects. If there is some non-noalias argument in our list
1434 // of underlying objects, then we cannot add a scope because the fact
1435 // that some access does not alias with any set of our noalias arguments
1436 // cannot itself guarantee that it does not alias with this access
1437 // (because there is some pointer of unknown origin involved and the
1438 // other access might also depend on this pointer). We also cannot add
1439 // scopes to arbitrary functions unless we know they don't access any
1440 // non-parameter pointer-values.
1441 bool CanAddScopes = !UsesAliasingPtr;
1442 if (CanAddScopes && IsFuncCall)
1443 CanAddScopes = IsArgMemOnlyCall;
1444
1445 if (CanAddScopes)
1446 for (const Argument *A : NoAliasArgs) {
1447 if (ObjSet.count(A))
1448 Scopes.push_back(NewScopes[A]);
1449 }
1450
1451 if (!Scopes.empty())
1452 NI->setMetadata(
1453 LLVMContext::MD_alias_scope,
1454 MDNode::concatenate(NI->getMetadata(LLVMContext::MD_alias_scope),
1455 MDNode::get(CalledFunc->getContext(), Scopes)));
1456 }
1457 }
1458}
1459
1461 ReturnInst *End) {
1462
1463 assert(Begin->getParent() == End->getParent() &&
1464 "Expected to be in same basic block!");
1465 auto BeginIt = Begin->getIterator();
1466 assert(BeginIt != End->getIterator() && "Non-empty BB has empty iterator");
1468 ++BeginIt, End->getIterator(), InlinerAttributeWindow + 1);
1469}
1470
1471// Add attributes from CB params and Fn attributes that can always be propagated
1472// to the corresponding argument / inner callbases.
1474 ValueToValueMapTy &VMap,
1475 ClonedCodeInfo &InlinedFunctionInfo) {
1476 auto *CalledFunction = CB.getCalledFunction();
1477 auto &Context = CalledFunction->getContext();
1478
1479 // Collect valid attributes for all params.
1480 SmallVector<AttrBuilder> ValidObjParamAttrs, ValidExactParamAttrs;
1481 bool HasAttrToPropagate = false;
1482
1483 // Attributes we can only propagate if the exact parameter is forwarded.
1484 // We can propagate both poison generating and UB generating attributes
1485 // without any extra checks. The only attribute that is tricky to propagate
1486 // is `noundef` (skipped for now) as that can create new UB where previous
1487 // behavior was just using a poison value.
1488 static const Attribute::AttrKind ExactAttrsToPropagate[] = {
1489 Attribute::Dereferenceable, Attribute::DereferenceableOrNull,
1490 Attribute::NonNull, Attribute::NoFPClass,
1491 Attribute::Alignment, Attribute::Range};
1492
1493 for (unsigned I = 0, E = CB.arg_size(); I < E; ++I) {
1494 ValidObjParamAttrs.emplace_back(AttrBuilder{CB.getContext()});
1495 ValidExactParamAttrs.emplace_back(AttrBuilder{CB.getContext()});
1496 // Access attributes can be propagated to any param with the same underlying
1497 // object as the argument.
1498 if (CB.paramHasAttr(I, Attribute::ReadNone))
1499 ValidObjParamAttrs.back().addAttribute(Attribute::ReadNone);
1500 if (CB.paramHasAttr(I, Attribute::ReadOnly))
1501 ValidObjParamAttrs.back().addAttribute(Attribute::ReadOnly);
1502
1503 for (Attribute::AttrKind AK : ExactAttrsToPropagate) {
1504 Attribute Attr = CB.getParamAttr(I, AK);
1505 if (Attr.isValid())
1506 ValidExactParamAttrs.back().addAttribute(Attr);
1507 }
1508
1509 HasAttrToPropagate |= ValidObjParamAttrs.back().hasAttributes();
1510 HasAttrToPropagate |= ValidExactParamAttrs.back().hasAttributes();
1511 }
1512
1513 // Won't be able to propagate anything.
1514 if (!HasAttrToPropagate)
1515 return;
1516
1517 for (BasicBlock &BB : *CalledFunction) {
1518 for (Instruction &Ins : BB) {
1519 const auto *InnerCB = dyn_cast<CallBase>(&Ins);
1520 if (!InnerCB)
1521 continue;
1522 auto *NewInnerCB = dyn_cast_or_null<CallBase>(VMap.lookup(InnerCB));
1523 if (!NewInnerCB)
1524 continue;
1525 // The InnerCB might have be simplified during the inlining
1526 // process which can make propagation incorrect.
1527 if (InlinedFunctionInfo.isSimplified(InnerCB, NewInnerCB))
1528 continue;
1529
1530 AttributeList AL = NewInnerCB->getAttributes();
1531 for (unsigned I = 0, E = InnerCB->arg_size(); I < E; ++I) {
1532 // It's unsound or requires special handling to propagate
1533 // attributes to byval arguments. Even if CalledFunction
1534 // doesn't e.g. write to the argument (readonly), the call to
1535 // NewInnerCB may write to its by-value copy.
1536 if (NewInnerCB->isByValArgument(I))
1537 continue;
1538
1539 // Don't bother propagating attrs to constants.
1540 if (match(NewInnerCB->getArgOperand(I),
1542 continue;
1543
1544 // Check if the underlying value for the parameter is an argument.
1545 const Argument *Arg = dyn_cast<Argument>(InnerCB->getArgOperand(I));
1546 unsigned ArgNo;
1547 if (Arg) {
1548 ArgNo = Arg->getArgNo();
1549 // For dereferenceable, dereferenceable_or_null, align, etc...
1550 // we don't want to propagate if the existing param has the same
1551 // attribute with "better" constraints. So remove from the
1552 // new AL if the region of the existing param is larger than
1553 // what we can propagate.
1554 AttrBuilder NewAB{
1555 Context, AttributeSet::get(Context, ValidExactParamAttrs[ArgNo])};
1556 if (AL.getParamDereferenceableBytes(I) >
1557 NewAB.getDereferenceableBytes())
1558 NewAB.removeAttribute(Attribute::Dereferenceable);
1559 if (AL.getParamDereferenceableOrNullBytes(I) >
1560 NewAB.getDereferenceableOrNullBytes())
1561 NewAB.removeAttribute(Attribute::DereferenceableOrNull);
1562 if (AL.getParamAlignment(I).valueOrOne() >
1563 NewAB.getAlignment().valueOrOne())
1564 NewAB.removeAttribute(Attribute::Alignment);
1565 if (auto ExistingRange = AL.getParamRange(I)) {
1566 if (auto NewRange = NewAB.getRange()) {
1567 ConstantRange CombinedRange =
1568 ExistingRange->intersectWith(*NewRange);
1569 NewAB.removeAttribute(Attribute::Range);
1570 NewAB.addRangeAttr(CombinedRange);
1571 }
1572 }
1573
1574 if (FPClassTest ExistingNoFP = AL.getParamNoFPClass(I))
1575 NewAB.addNoFPClassAttr(ExistingNoFP | NewAB.getNoFPClass());
1576
1577 AL = AL.addParamAttributes(Context, I, NewAB);
1578 } else if (NewInnerCB->getArgOperand(I)->getType()->isPointerTy()) {
1579 // Check if the underlying value for the parameter is an argument.
1580 const Value *UnderlyingV =
1581 getUnderlyingObject(InnerCB->getArgOperand(I));
1582 Arg = dyn_cast<Argument>(UnderlyingV);
1583 if (!Arg)
1584 continue;
1585 ArgNo = Arg->getArgNo();
1586 } else {
1587 continue;
1588 }
1589
1590 // If so, propagate its access attributes.
1591 AL = AL.addParamAttributes(Context, I, ValidObjParamAttrs[ArgNo]);
1592
1593 // We can have conflicting attributes from the inner callsite and
1594 // to-be-inlined callsite. In that case, choose the most
1595 // restrictive.
1596
1597 // readonly + writeonly means we can never deref so make readnone.
1598 if (AL.hasParamAttr(I, Attribute::ReadOnly) &&
1599 AL.hasParamAttr(I, Attribute::WriteOnly))
1600 AL = AL.addParamAttribute(Context, I, Attribute::ReadNone);
1601
1602 // If have readnone, need to clear readonly/writeonly
1603 if (AL.hasParamAttr(I, Attribute::ReadNone)) {
1604 AL = AL.removeParamAttribute(Context, I, Attribute::ReadOnly);
1605 AL = AL.removeParamAttribute(Context, I, Attribute::WriteOnly);
1606 }
1607
1608 // Writable cannot exist in conjunction w/ readonly/readnone
1609 if (AL.hasParamAttr(I, Attribute::ReadOnly) ||
1610 AL.hasParamAttr(I, Attribute::ReadNone))
1611 AL = AL.removeParamAttribute(Context, I, Attribute::Writable);
1612 }
1613 NewInnerCB->setAttributes(AL);
1614 }
1615 }
1616}
1617
1618// Only allow these white listed attributes to be propagated back to the
1619// callee. This is because other attributes may only be valid on the call
1620// itself, i.e. attributes such as signext and zeroext.
1621
1622// Attributes that are always okay to propagate as if they are violated its
1623// immediate UB.
1625 AttrBuilder Valid(CB.getContext());
1626 if (auto DerefBytes = CB.getRetDereferenceableBytes())
1627 Valid.addDereferenceableAttr(DerefBytes);
1628 if (auto DerefOrNullBytes = CB.getRetDereferenceableOrNullBytes())
1629 Valid.addDereferenceableOrNullAttr(DerefOrNullBytes);
1630 if (CB.hasRetAttr(Attribute::NoAlias))
1631 Valid.addAttribute(Attribute::NoAlias);
1632 if (CB.hasRetAttr(Attribute::NoUndef))
1633 Valid.addAttribute(Attribute::NoUndef);
1634 return Valid;
1635}
1636
1637// Attributes that need additional checks as propagating them may change
1638// behavior or cause new UB.
1640 AttrBuilder Valid(CB.getContext());
1641 if (CB.hasRetAttr(Attribute::NonNull))
1642 Valid.addAttribute(Attribute::NonNull);
1643 if (CB.hasRetAttr(Attribute::Alignment))
1644 Valid.addAlignmentAttr(CB.getRetAlign());
1645 if (std::optional<ConstantRange> Range = CB.getRange())
1646 Valid.addRangeAttr(*Range);
1647 if (CB.hasRetAttr(Attribute::NoFPClass))
1648 Valid.addNoFPClassAttr(CB.getRetNoFPClass());
1649 return Valid;
1650}
1651
1653 ClonedCodeInfo &InlinedFunctionInfo) {
1654 AttrBuilder CallSiteValidUB = IdentifyValidUBGeneratingAttributes(CB);
1655 AttrBuilder CallSiteValidPG = IdentifyValidPoisonGeneratingAttributes(CB);
1656 if (!CallSiteValidUB.hasAttributes() && !CallSiteValidPG.hasAttributes())
1657 return;
1658 auto *CalledFunction = CB.getCalledFunction();
1659 auto &Context = CalledFunction->getContext();
1660
1661 for (auto &BB : *CalledFunction) {
1662 auto *RI = dyn_cast<ReturnInst>(BB.getTerminator());
1663 if (!RI || !isa<CallBase>(RI->getOperand(0)))
1664 continue;
1665 auto *RetVal = cast<CallBase>(RI->getOperand(0));
1666 // Check that the cloned RetVal exists and is a call, otherwise we cannot
1667 // add the attributes on the cloned RetVal. Simplification during inlining
1668 // could have transformed the cloned instruction.
1669 auto *NewRetVal = dyn_cast_or_null<CallBase>(VMap.lookup(RetVal));
1670 if (!NewRetVal)
1671 continue;
1672
1673 // The RetVal might have be simplified during the inlining
1674 // process which can make propagation incorrect.
1675 if (InlinedFunctionInfo.isSimplified(RetVal, NewRetVal))
1676 continue;
1677 // Backward propagation of attributes to the returned value may be incorrect
1678 // if it is control flow dependent.
1679 // Consider:
1680 // @callee {
1681 // %rv = call @foo()
1682 // %rv2 = call @bar()
1683 // if (%rv2 != null)
1684 // return %rv2
1685 // if (%rv == null)
1686 // exit()
1687 // return %rv
1688 // }
1689 // caller() {
1690 // %val = call nonnull @callee()
1691 // }
1692 // Here we cannot add the nonnull attribute on either foo or bar. So, we
1693 // limit the check to both RetVal and RI are in the same basic block and
1694 // there are no throwing/exiting instructions between these instructions.
1695 if (RI->getParent() != RetVal->getParent() ||
1697 continue;
1698 // Add to the existing attributes of NewRetVal, i.e. the cloned call
1699 // instruction.
1700 // NB! When we have the same attribute already existing on NewRetVal, but
1701 // with a differing value, the AttributeList's merge API honours the already
1702 // existing attribute value (i.e. attributes such as dereferenceable,
1703 // dereferenceable_or_null etc). See AttrBuilder::merge for more details.
1704 AttrBuilder ValidUB = IdentifyValidUBGeneratingAttributes(CB);
1705 AttrBuilder ValidPG = IdentifyValidPoisonGeneratingAttributes(CB);
1706 AttributeList AL = NewRetVal->getAttributes();
1707 if (ValidUB.getDereferenceableBytes() < AL.getRetDereferenceableBytes())
1708 ValidUB.removeAttribute(Attribute::Dereferenceable);
1709 if (ValidUB.getDereferenceableOrNullBytes() <
1710 AL.getRetDereferenceableOrNullBytes())
1711 ValidUB.removeAttribute(Attribute::DereferenceableOrNull);
1712 AttributeList NewAL = AL.addRetAttributes(Context, ValidUB);
1713 // Attributes that may generate poison returns are a bit tricky. If we
1714 // propagate them, other uses of the callsite might have their behavior
1715 // change or cause UB (if they have noundef) b.c of the new potential
1716 // poison.
1717 // Take the following three cases:
1718 //
1719 // 1)
1720 // define nonnull ptr @foo() {
1721 // %p = call ptr @bar()
1722 // call void @use(ptr %p) willreturn nounwind
1723 // ret ptr %p
1724 // }
1725 //
1726 // 2)
1727 // define noundef nonnull ptr @foo() {
1728 // %p = call ptr @bar()
1729 // call void @use(ptr %p) willreturn nounwind
1730 // ret ptr %p
1731 // }
1732 //
1733 // 3)
1734 // define nonnull ptr @foo() {
1735 // %p = call noundef ptr @bar()
1736 // ret ptr %p
1737 // }
1738 //
1739 // In case 1, we can't propagate nonnull because poison value in @use may
1740 // change behavior or trigger UB.
1741 // In case 2, we don't need to be concerned about propagating nonnull, as
1742 // any new poison at @use will trigger UB anyways.
1743 // In case 3, we can never propagate nonnull because it may create UB due to
1744 // the noundef on @bar.
1745 if (ValidPG.getAlignment().valueOrOne() < AL.getRetAlignment().valueOrOne())
1746 ValidPG.removeAttribute(Attribute::Alignment);
1747 if (ValidPG.hasAttributes()) {
1748 Attribute CBRange = ValidPG.getAttribute(Attribute::Range);
1749 if (CBRange.isValid()) {
1750 Attribute NewRange = AL.getRetAttr(Attribute::Range);
1751 if (NewRange.isValid()) {
1752 ValidPG.addRangeAttr(
1753 CBRange.getRange().intersectWith(NewRange.getRange()));
1754 }
1755 }
1756
1757 Attribute CBNoFPClass = ValidPG.getAttribute(Attribute::NoFPClass);
1758 if (CBNoFPClass.isValid() && AL.hasRetAttr(Attribute::NoFPClass)) {
1759 ValidPG.addNoFPClassAttr(
1760 CBNoFPClass.getNoFPClass() |
1761 AL.getRetAttr(Attribute::NoFPClass).getNoFPClass());
1762 }
1763
1764 // Three checks.
1765 // If the callsite has `noundef`, then a poison due to violating the
1766 // return attribute will create UB anyways so we can always propagate.
1767 // Otherwise, if the return value (callee to be inlined) has `noundef`, we
1768 // can't propagate as a new poison return will cause UB.
1769 // Finally, check if the return value has no uses whose behavior may
1770 // change/may cause UB if we potentially return poison. At the moment this
1771 // is implemented overly conservatively with a single-use check.
1772 // TODO: Update the single-use check to iterate through uses and only bail
1773 // if we have a potentially dangerous use.
1774
1775 if (CB.hasRetAttr(Attribute::NoUndef) ||
1776 (RetVal->hasOneUse() && !RetVal->hasRetAttr(Attribute::NoUndef)))
1777 NewAL = NewAL.addRetAttributes(Context, ValidPG);
1778 }
1779 NewRetVal->setAttributes(NewAL);
1780 }
1781}
1782
1783/// If the inlined function has non-byval align arguments, then
1784/// add @llvm.assume-based alignment assumptions to preserve this information.
1787 return;
1788
1790 auto &DL = CB.getDataLayout();
1791
1792 // To avoid inserting redundant assumptions, we should check for assumptions
1793 // already in the caller. To do this, we might need a DT of the caller.
1794 DominatorTree DT;
1795 bool DTCalculated = false;
1796
1797 Function *CalledFunc = CB.getCalledFunction();
1798 for (Argument &Arg : CalledFunc->args()) {
1799 if (!Arg.getType()->isPointerTy() || Arg.hasPassPointeeByValueCopyAttr() ||
1800 Arg.use_empty())
1801 continue;
1802 MaybeAlign Alignment = Arg.getParamAlign();
1803 if (!Alignment)
1804 continue;
1805
1806 if (!DTCalculated) {
1807 DT.recalculate(*CB.getCaller());
1808 DTCalculated = true;
1809 }
1810 // If we can already prove the asserted alignment in the context of the
1811 // caller, then don't bother inserting the assumption.
1812 Value *ArgVal = CB.getArgOperand(Arg.getArgNo());
1813 if (getKnownAlignment(ArgVal, DL, &CB, AC, &DT) >= *Alignment)
1814 continue;
1815
1816 CallInst *NewAsmp = IRBuilder<>(&CB).CreateAlignmentAssumption(
1817 DL, ArgVal, Alignment->value());
1819 }
1820}
1821
1822static void HandleByValArgumentInit(Type *ByValType, Value *Dst, Value *Src,
1823 MaybeAlign SrcAlign, Module *M,
1824 BasicBlock *InsertBlock,
1825 InlineFunctionInfo &IFI,
1826 Function *CalledFunc) {
1827 IRBuilder<> Builder(InsertBlock, InsertBlock->begin());
1828
1829 Value *Size =
1830 Builder.getInt64(M->getDataLayout().getTypeStoreSize(ByValType));
1831
1832 Align DstAlign = Dst->getPointerAlignment(M->getDataLayout());
1833
1834 // Generate a memcpy with the correct alignments.
1835 CallInst *CI = Builder.CreateMemCpy(Dst, DstAlign, Src, SrcAlign, Size);
1836
1837 // The verifier requires that all calls of debug-info-bearing functions
1838 // from debug-info-bearing functions have a debug location (for inlining
1839 // purposes). Assign a dummy location to satisfy the constraint.
1840 if (!CI->getDebugLoc() && InsertBlock->getParent()->getSubprogram())
1841 if (DISubprogram *SP = CalledFunc->getSubprogram())
1842 CI->setDebugLoc(DILocation::get(SP->getContext(), 0, 0, SP));
1843}
1844
1845/// When inlining a call site that has a byval argument,
1846/// we have to make the implicit memcpy explicit by adding it.
1847static Value *HandleByValArgument(Type *ByValType, Value *Arg,
1848 Instruction *TheCall,
1849 const Function *CalledFunc,
1850 InlineFunctionInfo &IFI,
1851 MaybeAlign ByValAlignment) {
1852 Function *Caller = TheCall->getFunction();
1853 const DataLayout &DL = Caller->getDataLayout();
1854
1855 // If the called function is readonly, then it could not mutate the caller's
1856 // copy of the byval'd memory. In this case, it is safe to elide the copy and
1857 // temporary.
1858 if (CalledFunc->onlyReadsMemory()) {
1859 // If the byval argument has a specified alignment that is greater than the
1860 // passed in pointer, then we either have to round up the input pointer or
1861 // give up on this transformation.
1862 if (ByValAlignment.valueOrOne() == 1)
1863 return Arg;
1864
1865 AssumptionCache *AC =
1866 IFI.GetAssumptionCache ? &IFI.GetAssumptionCache(*Caller) : nullptr;
1867
1868 // If the pointer is already known to be sufficiently aligned, or if we can
1869 // round it up to a larger alignment, then we don't need a temporary.
1870 if (getOrEnforceKnownAlignment(Arg, *ByValAlignment, DL, TheCall, AC) >=
1871 *ByValAlignment)
1872 return Arg;
1873
1874 // Otherwise, we have to make a memcpy to get a safe alignment. This is bad
1875 // for code quality, but rarely happens and is required for correctness.
1876 }
1877
1878 // Create the alloca. If we have DataLayout, use nice alignment.
1879 Align Alignment = DL.getPrefTypeAlign(ByValType);
1880
1881 // If the byval had an alignment specified, we *must* use at least that
1882 // alignment, as it is required by the byval argument (and uses of the
1883 // pointer inside the callee).
1884 if (ByValAlignment)
1885 Alignment = std::max(Alignment, *ByValAlignment);
1886
1887 AllocaInst *NewAlloca =
1888 new AllocaInst(ByValType, Arg->getType()->getPointerAddressSpace(),
1889 nullptr, Alignment, Arg->getName());
1891 NewAlloca->insertBefore(Caller->begin()->begin());
1892 IFI.StaticAllocas.push_back(NewAlloca);
1893
1894 // Uses of the argument in the function should use our new alloca
1895 // instead.
1896 return NewAlloca;
1897}
1898
1899// Check whether this Value is used by a lifetime intrinsic.
1901 for (User *U : V->users())
1903 return true;
1904 return false;
1905}
1906
1907// Check whether the given alloca already has
1908// lifetime.start or lifetime.end intrinsics.
1910 Type *Ty = AI->getType();
1911 Type *Int8PtrTy =
1912 PointerType::get(Ty->getContext(), Ty->getPointerAddressSpace());
1913 if (Ty == Int8PtrTy)
1914 return isUsedByLifetimeMarker(AI);
1915
1916 // Do a scan to find all the casts to i8*.
1917 for (User *U : AI->users()) {
1918 if (U->getType() != Int8PtrTy) continue;
1919 if (U->stripPointerCasts() != AI) continue;
1921 return true;
1922 }
1923 return false;
1924}
1925
1926/// Return the result of AI->isStaticAlloca() if AI were moved to the entry
1927/// block. Allocas used in inalloca calls and allocas of dynamic array size
1928/// cannot be static.
1930 return isa<Constant>(AI->getArraySize()) && !AI->isUsedWithInAlloca();
1931}
1932
1933/// Returns a DebugLoc for a new DILocation which is a clone of \p OrigDL
1934/// inlined at \p InlinedAt. \p IANodes is an inlined-at cache.
1936 DebugLoc OrigDL, DILocation *InlinedAt, LLVMContext &Ctx,
1939 if (DILocation *Cached = InlineLocs.lookup(OrigDL.get()))
1940 return DebugLoc(Cached);
1941 DILocation *IA =
1942 OrigDL->getInlinedAt()
1943 ? DebugLoc::appendInlinedAt(OrigDL, InlinedAt, Ctx, IANodes).get()
1944 : InlinedAt;
1946 Ctx, OrigDL.getLine(), OrigDL.getCol(), OrigDL.getScope(), IA,
1947 OrigDL.isImplicitCode(), OrigDL->getAtomGroup(), OrigDL->getAtomRank());
1948 InlineLocs[OrigDL.get()] = Result;
1949 return DebugLoc(Result);
1950}
1951
1952/// Update inlined instructions' line numbers to
1953/// to encode location where these instructions are inlined.
1955 Instruction *TheCall, bool CalleeHasDebugInfo) {
1956 if (!TheCall->getDebugLoc())
1957 return;
1958
1959 // Don't propagate the source location atom from the call to inlined nodebug
1960 // instructions, and avoid putting it in the InlinedAt field of inlined
1961 // not-nodebug instructions. FIXME: Possibly worth transferring/generating
1962 // an atom for the returned value, otherwise we miss stepping on inlined
1963 // nodebug functions (which is different to existing behaviour).
1964 DebugLoc TheCallDL = TheCall->getDebugLoc()->getWithoutAtom();
1965
1966 // A call receiving the outer callsite's fallback location has no usable
1967 // callsite probe of its own. Do not let it inherit the outer call's probe
1968 // discriminator, but preserve any packed DWARF base discriminator.
1969 DebugLoc TheCallDLForInlinedCall = TheCallDL;
1970 uint32_t Discriminator = TheCallDLForInlinedCall->getDiscriminator();
1971 if (DILocation::isPseudoProbeDiscriminator(Discriminator)) {
1972 std::optional<uint32_t> DwarfDiscriminator =
1974 Discriminator);
1975 TheCallDLForInlinedCall = TheCallDLForInlinedCall->cloneWithDiscriminator(
1976 DwarfDiscriminator.value_or(0));
1977 }
1978
1979 auto &Ctx = Fn->getContext();
1980 DILocation *InlinedAtNode = TheCallDL;
1981
1982 // Create a unique call site, not to be confused with any other call from the
1983 // same location.
1984 InlinedAtNode = DILocation::getDistinct(
1985 Ctx, InlinedAtNode->getLine(), InlinedAtNode->getColumn(),
1986 InlinedAtNode->getScope(), InlinedAtNode->getInlinedAt());
1987
1988 // Cache the inlined-at nodes as they're built so they are reused, without
1989 // this every instruction's inlined-at chain would become distinct from each
1990 // other.
1993
1994 // Check if we are not generating inline line tables and want to use
1995 // the call site location instead.
1996 bool NoInlineLineTables = Fn->hasFnAttribute("no-inline-line-tables");
1997
1998 // Helper-util for updating the metadata attached to an instruction.
1999 auto UpdateInst = [&](Instruction &I) {
2000 // Loop metadata needs to be updated so that the start and end locs
2001 // reference inlined-at locations.
2002 auto updateLoopInfoLoc = [&Ctx, &InlinedAtNode, &IANodes,
2003 &InlineLocs](Metadata *MD) -> Metadata * {
2004 if (auto *Loc = dyn_cast_or_null<DILocation>(MD))
2005 return inlineDebugLoc(Loc, InlinedAtNode, Ctx, IANodes, InlineLocs)
2006 .get();
2007 return MD;
2008 };
2009 updateLoopMetadataDebugLocations(I, updateLoopInfoLoc);
2010
2011 if (!NoInlineLineTables)
2012 if (DebugLoc DL = I.getDebugLoc()) {
2013 DebugLoc IDL = inlineDebugLoc(DL, InlinedAtNode, I.getContext(),
2014 IANodes, InlineLocs);
2015 I.setDebugLoc(IDL);
2016 return;
2017 }
2018
2019 if (CalleeHasDebugInfo && !NoInlineLineTables)
2020 return;
2021
2022 // If the inlined instruction has no line number, or if inline info
2023 // is not being generated, make it look as if it originates from the call
2024 // location. This is important for ((__always_inline, __nodebug__))
2025 // functions which must use caller location for all instructions in their
2026 // function body.
2027
2028 // Don't update static allocas, as they may get moved later.
2029 if (auto *AI = dyn_cast<AllocaInst>(&I))
2031 return;
2032
2033 // Do not force a debug loc for pseudo probes, since they do not need to
2034 // be debuggable, and also they are expected to have a zero/null dwarf
2035 // discriminator at this point which could be violated otherwise.
2037 return;
2038
2039 I.setDebugLoc(isa<CallBase>(I) ? TheCallDLForInlinedCall : TheCallDL);
2040 };
2041
2042 // Helper-util for updating debug-info records attached to instructions.
2043 auto UpdateDVR = [&](DbgRecord *DVR) {
2044 assert(DVR->getDebugLoc() && "Debug Value must have debug loc");
2045 if (NoInlineLineTables) {
2046 DVR->setDebugLoc(TheCallDL);
2047 return;
2048 }
2049 DebugLoc DL = DVR->getDebugLoc();
2050 DebugLoc IDL = inlineDebugLoc(DL, InlinedAtNode,
2051 DVR->getMarker()->getParent()->getContext(),
2052 IANodes, InlineLocs);
2053 DVR->setDebugLoc(IDL);
2054 };
2055
2056 // Iterate over all instructions, updating metadata and debug-info records.
2057 for (; FI != Fn->end(); ++FI) {
2058 for (Instruction &I : *FI) {
2059 UpdateInst(I);
2060 for (DbgRecord &DVR : I.getDbgRecordRange()) {
2061 UpdateDVR(&DVR);
2062 }
2063 }
2064
2065 // Remove debug info records if we're not keeping inline info.
2066 if (NoInlineLineTables) {
2067 BasicBlock::iterator BI = FI->begin();
2068 while (BI != FI->end()) {
2069 BI->dropDbgRecords();
2070 ++BI;
2071 }
2072 }
2073 }
2074}
2075
2076#undef DEBUG_TYPE
2077#define DEBUG_TYPE "assignment-tracking"
2078/// Find Alloca and linked DbgAssignIntrinsic for locals escaped by \p CB.
2080 const CallBase &CB) {
2081 at::StorageToVarsMap EscapedLocals;
2083
2084 LLVM_DEBUG(
2085 errs() << "# Finding caller local variables escaped by callee\n");
2086 for (const Value *Arg : CB.args()) {
2087 LLVM_DEBUG(errs() << "INSPECT: " << *Arg << "\n");
2088 if (!Arg->getType()->isPointerTy()) {
2089 LLVM_DEBUG(errs() << " | SKIP: Not a pointer\n");
2090 continue;
2091 }
2092
2093 const Instruction *I = dyn_cast<Instruction>(Arg);
2094 if (!I) {
2095 LLVM_DEBUG(errs() << " | SKIP: Not result of instruction\n");
2096 continue;
2097 }
2098
2099 // Walk back to the base storage.
2100 assert(Arg->getType()->isPtrOrPtrVectorTy());
2101 APInt TmpOffset(DL.getIndexTypeSizeInBits(Arg->getType()), 0, false);
2103 Arg->stripAndAccumulateConstantOffsets(DL, TmpOffset, true));
2104 if (!Base) {
2105 LLVM_DEBUG(errs() << " | SKIP: Couldn't walk back to base storage\n");
2106 continue;
2107 }
2108
2109 assert(Base);
2110 LLVM_DEBUG(errs() << " | BASE: " << *Base << "\n");
2111 // We only need to process each base address once - skip any duplicates.
2112 if (!SeenBases.insert(Base).second)
2113 continue;
2114
2115 // Find all local variables associated with the backing storage.
2116 auto CollectAssignsForStorage = [&](DbgVariableRecord *DbgAssign) {
2117 // Skip variables from inlined functions - they are not local variables.
2118 if (DbgAssign->getDebugLoc().getInlinedAt())
2119 return;
2120 LLVM_DEBUG(errs() << " > DEF : " << *DbgAssign << "\n");
2121 EscapedLocals[Base].insert(at::VarRecord(DbgAssign));
2122 };
2123 for_each(at::getDVRAssignmentMarkers(Base), CollectAssignsForStorage);
2124 }
2125 return EscapedLocals;
2126}
2127
2129 const CallBase &CB) {
2130 LLVM_DEBUG(errs() << "trackInlinedStores into "
2131 << Start->getParent()->getName() << " from "
2132 << CB.getCalledFunction()->getName() << "\n");
2133 const DataLayout &DL = CB.getDataLayout();
2135}
2136
2137/// Update inlined instructions' DIAssignID metadata. We need to do this
2138/// otherwise a function inlined more than once into the same function
2139/// will cause DIAssignID to be shared by many instructions.
2142 // Loop over all the inlined instructions. If we find a DIAssignID
2143 // attachment or use, replace it with a new version.
2144 for (auto BBI = Start; BBI != End; ++BBI) {
2145 for (Instruction &I : *BBI)
2146 at::remapAssignID(Map, I);
2147 }
2148}
2149#undef DEBUG_TYPE
2150#define DEBUG_TYPE "inline-function"
2151
2152/// Update the block frequencies of the caller after a callee has been inlined.
2153///
2154/// Each block cloned into the caller has its block frequency scaled by the
2155/// ratio of CallSiteFreq/CalleeEntryFreq. This ensures that the cloned copy of
2156/// callee's entry block gets the same frequency as the callsite block and the
2157/// relative frequencies of all cloned blocks remain the same after cloning.
2158static void updateCallerBFI(BasicBlock *CallSiteBlock,
2159 const ValueToValueMapTy &VMap,
2160 BlockFrequencyInfo *CallerBFI,
2161 BlockFrequencyInfo *CalleeBFI,
2162 const BasicBlock &CalleeEntryBlock) {
2164 for (auto Entry : VMap) {
2165 if (!isa<BasicBlock>(Entry.first) || !Entry.second)
2166 continue;
2167 auto *OrigBB = cast<BasicBlock>(Entry.first);
2168 auto *ClonedBB = cast<BasicBlock>(Entry.second);
2169 BlockFrequency Freq = CalleeBFI->getBlockFreq(OrigBB);
2170 if (!ClonedBBs.insert(ClonedBB).second) {
2171 // Multiple blocks in the callee might get mapped to one cloned block in
2172 // the caller since we prune the callee as we clone it. When that happens,
2173 // we want to use the maximum among the original blocks' frequencies.
2174 BlockFrequency NewFreq = CallerBFI->getBlockFreq(ClonedBB);
2175 if (NewFreq > Freq)
2176 Freq = NewFreq;
2177 }
2178 CallerBFI->setBlockFreq(ClonedBB, Freq);
2179 }
2180 BasicBlock *EntryClone = cast<BasicBlock>(VMap.lookup(&CalleeEntryBlock));
2181 CallerBFI->setBlockFreqAndScale(
2182 EntryClone, CallerBFI->getBlockFreq(CallSiteBlock), ClonedBBs);
2183}
2184
2185/// Update the branch metadata for cloned call instructions.
2186static void updateCallProfile(Function *Callee, const ValueToValueMapTy &VMap,
2187 const uint64_t &CalleeEntryCount,
2188 const CallBase &TheCall, ProfileSummaryInfo *PSI,
2189 BlockFrequencyInfo *CallerBFI) {
2190 if (CalleeEntryCount < 1)
2191 return;
2192 auto CallSiteCount =
2193 PSI ? PSI->getProfileCount(TheCall, CallerBFI) : std::nullopt;
2194 int64_t CallCount = std::min(CallSiteCount.value_or(0), CalleeEntryCount);
2195 updateProfileCallee(Callee, -CallCount, &VMap);
2196}
2197
2199 Function *Callee, int64_t EntryDelta,
2201 auto CalleeCount = Callee->getEntryCount();
2202 if (!CalleeCount)
2203 return;
2204
2205 // Since CallSiteCount is an estimate, it could exceed the original callee
2206 // count and has to be set to 0 so guard against underflow.
2207 const uint64_t NewEntryCount =
2208 (EntryDelta < 0 && static_cast<uint64_t>(-EntryDelta) > *CalleeCount)
2209 ? 0
2210 : *CalleeCount + EntryDelta;
2211
2212 auto updateVTableProfWeight = [](CallBase *CB, const uint64_t NewEntryCount,
2213 const uint64_t PriorEntryCount) {
2215 if (VPtr)
2216 scaleProfData(*VPtr, NewEntryCount, PriorEntryCount);
2217 };
2218
2219 // During inlining ?
2220 if (VMap) {
2221 uint64_t CloneEntryCount = *CalleeCount - NewEntryCount;
2222 for (auto Entry : *VMap) {
2223 if (isa<CallInst>(Entry.first))
2224 if (auto *CI = dyn_cast_or_null<CallInst>(Entry.second)) {
2225 CI->updateProfWeight(CloneEntryCount, *CalleeCount);
2226 updateVTableProfWeight(CI, CloneEntryCount, *CalleeCount);
2227 }
2228
2229 if (isa<InvokeInst>(Entry.first))
2230 if (auto *II = dyn_cast_or_null<InvokeInst>(Entry.second)) {
2231 II->updateProfWeight(CloneEntryCount, *CalleeCount);
2232 updateVTableProfWeight(II, CloneEntryCount, *CalleeCount);
2233 }
2234 }
2235 }
2236
2237 if (EntryDelta) {
2238 Callee->setEntryCount(NewEntryCount);
2239
2240 for (BasicBlock &BB : *Callee)
2241 // No need to update the callsite if it is pruned during inlining.
2242 if (!VMap || VMap->count(&BB))
2243 for (Instruction &I : BB) {
2244 if (CallInst *CI = dyn_cast<CallInst>(&I)) {
2245 CI->updateProfWeight(NewEntryCount, *CalleeCount);
2246 updateVTableProfWeight(CI, NewEntryCount, *CalleeCount);
2247 }
2249 II->updateProfWeight(NewEntryCount, *CalleeCount);
2250 updateVTableProfWeight(II, NewEntryCount, *CalleeCount);
2251 }
2252 }
2253 }
2254}
2255
2256/// An operand bundle "clang.arc.attachedcall" on a call indicates the call
2257/// result is implicitly consumed by a call to retainRV or claimRV immediately
2258/// after the call. This function inlines the retainRV/claimRV calls.
2259///
2260/// There are three cases to consider:
2261///
2262/// 1. If there is a call to autoreleaseRV that takes a pointer to the returned
2263/// object in the callee return block, the autoreleaseRV call and the
2264/// retainRV/claimRV call in the caller cancel out. If the call in the caller
2265/// is a claimRV call, a call to objc_release is emitted.
2266///
2267/// 2. If there is a call in the callee return block that doesn't have operand
2268/// bundle "clang.arc.attachedcall", the operand bundle on the original call
2269/// is transferred to the call in the callee.
2270///
2271/// 3. Otherwise, a call to objc_retain is inserted if the call in the caller is
2272/// a retainRV call.
2273static void
2275 const SmallVectorImpl<ReturnInst *> &Returns) {
2276 assert(objcarc::isRetainOrClaimRV(RVCallKind) && "unexpected ARC function");
2277 bool IsRetainRV = RVCallKind == objcarc::ARCInstKind::RetainRV,
2278 IsUnsafeClaimRV = !IsRetainRV;
2279
2280 for (auto *RI : Returns) {
2281 Value *RetOpnd = objcarc::GetRCIdentityRoot(RI->getOperand(0));
2282 bool InsertRetainCall = IsRetainRV;
2283 IRBuilder<> Builder(RI->getContext());
2284
2285 // Walk backwards through the basic block looking for either a matching
2286 // autoreleaseRV call or an unannotated call.
2287 auto InstRange = llvm::make_range(++(RI->getIterator().getReverse()),
2288 RI->getParent()->rend());
2289 for (Instruction &I : llvm::make_early_inc_range(InstRange)) {
2290 // Ignore casts.
2291 if (isa<CastInst>(I))
2292 continue;
2293
2294 if (auto *II = dyn_cast<IntrinsicInst>(&I)) {
2295 if (II->getIntrinsicID() != Intrinsic::objc_autoreleaseReturnValue ||
2296 !II->use_empty() ||
2297 objcarc::GetRCIdentityRoot(II->getOperand(0)) != RetOpnd)
2298 break;
2299
2300 // If we've found a matching authoreleaseRV call:
2301 // - If claimRV is attached to the call, insert a call to objc_release
2302 // and erase the autoreleaseRV call.
2303 // - If retainRV is attached to the call, just erase the autoreleaseRV
2304 // call.
2305 if (IsUnsafeClaimRV) {
2306 Builder.SetInsertPoint(II);
2307 Builder.CreateIntrinsic(Intrinsic::objc_release, RetOpnd);
2308 }
2309 II->eraseFromParent();
2310 InsertRetainCall = false;
2311 break;
2312 }
2313
2314 auto *CI = dyn_cast<CallInst>(&I);
2315
2316 if (!CI)
2317 break;
2318
2319 if (objcarc::GetRCIdentityRoot(CI) != RetOpnd ||
2321 break;
2322
2323 // If we've found an unannotated call that defines RetOpnd, add a
2324 // "clang.arc.attachedcall" operand bundle.
2325 Value *BundleArgs[] = {*objcarc::getAttachedARCFunction(&CB)};
2326 OperandBundleDef OB("clang.arc.attachedcall", BundleArgs);
2327 auto *NewCall = CallBase::addOperandBundle(
2328 CI, LLVMContext::OB_clang_arc_attachedcall, OB, CI->getIterator());
2329 NewCall->copyMetadata(*CI);
2330 CI->replaceAllUsesWith(NewCall);
2331 CI->eraseFromParent();
2332 InsertRetainCall = false;
2333 break;
2334 }
2335
2336 if (InsertRetainCall) {
2337 // The retainRV is attached to the call and we've failed to find a
2338 // matching autoreleaseRV or an annotated call in the callee. Emit a call
2339 // to objc_retain.
2340 Builder.SetInsertPoint(RI);
2341 Builder.CreateIntrinsic(Intrinsic::objc_retain, RetOpnd);
2342 }
2343 }
2344}
2345
2346// In contextual profiling, when an inline succeeds, we want to remap the
2347// indices of the callee into the index space of the caller. We can't just leave
2348// them as-is because the same callee may appear in other places in this caller
2349// (other callsites), and its (callee's) counters and sub-contextual profile
2350// tree would be potentially different.
2351// Not all BBs of the callee may survive the opportunistic DCE InlineFunction
2352// does (same goes for callsites in the callee).
2353// We will return a pair of vectors, one for basic block IDs and one for
2354// callsites. For such a vector V, V[Idx] will be -1 if the callee
2355// instrumentation with index Idx did not survive inlining, and a new value
2356// otherwise.
2357// This function will update the caller's instrumentation intrinsics
2358// accordingly, mapping indices as described above. We also replace the "name"
2359// operand because we use it to distinguish between "own" instrumentation and
2360// "from callee" instrumentation when performing the traversal of the CFG of the
2361// caller. We traverse depth-first from the callsite's BB and up to the point we
2362// hit BBs owned by the caller.
2363// The return values will be then used to update the contextual
2364// profile. Note: we only update the "name" and "index" operands in the
2365// instrumentation intrinsics, we leave the hash and total nr of indices as-is,
2366// it's not worth updating those.
2367static std::pair<std::vector<int64_t>, std::vector<int64_t>>
2369 PGOContextualProfile &CtxProf, uint32_t CalleeCounters,
2370 uint32_t CalleeCallsites) {
2371 // We'll allocate a new ID to imported callsite counters and callsites. We're
2372 // using -1 to indicate a counter we delete. Most likely the entry ID, for
2373 // example, will be deleted - we don't want 2 IDs in the same BB, and the
2374 // entry would have been cloned in the callsite's old BB.
2375 std::vector<int64_t> CalleeCounterMap;
2376 std::vector<int64_t> CalleeCallsiteMap;
2377 CalleeCounterMap.resize(CalleeCounters, -1);
2378 CalleeCallsiteMap.resize(CalleeCallsites, -1);
2379
2380 auto RewriteInstrIfNeeded = [&](InstrProfIncrementInst &Ins) -> bool {
2381 if (Ins.getNameValue() == &Caller)
2382 return false;
2383 const auto OldID = static_cast<uint32_t>(Ins.getIndex()->getZExtValue());
2384 if (CalleeCounterMap[OldID] == -1)
2385 CalleeCounterMap[OldID] = CtxProf.allocateNextCounterIndex(Caller);
2386 const auto NewID = static_cast<uint32_t>(CalleeCounterMap[OldID]);
2387
2388 Ins.setNameValue(&Caller);
2389 Ins.setIndex(NewID);
2390 return true;
2391 };
2392
2393 auto RewriteCallsiteInsIfNeeded = [&](InstrProfCallsite &Ins) -> bool {
2394 if (Ins.getNameValue() == &Caller)
2395 return false;
2396 const auto OldID = static_cast<uint32_t>(Ins.getIndex()->getZExtValue());
2397 if (CalleeCallsiteMap[OldID] == -1)
2398 CalleeCallsiteMap[OldID] = CtxProf.allocateNextCallsiteIndex(Caller);
2399 const auto NewID = static_cast<uint32_t>(CalleeCallsiteMap[OldID]);
2400
2401 Ins.setNameValue(&Caller);
2402 Ins.setIndex(NewID);
2403 return true;
2404 };
2405
2406 std::deque<BasicBlock *> Worklist;
2408 // We will traverse the BBs starting from the callsite BB. The callsite BB
2409 // will have at least a BB ID - maybe its own, and in any case the one coming
2410 // from the cloned function's entry BB. The other BBs we'll start seeing from
2411 // there on may or may not have BB IDs. BBs with IDs belonging to our caller
2412 // are definitely not coming from the imported function and form a boundary
2413 // past which we don't need to traverse anymore. BBs may have no
2414 // instrumentation (because we originally inserted instrumentation as per
2415 // MST), in which case we'll traverse past them. An invariant we'll keep is
2416 // that a BB will have at most 1 BB ID. For example, in the callsite BB, we
2417 // will delete the callee BB's instrumentation. This doesn't result in
2418 // information loss: the entry BB of the callee will have the same count as
2419 // the callsite's BB. At the end of this traversal, all the callee's
2420 // instrumentation would be mapped into the caller's instrumentation index
2421 // space. Some of the callee's counters may be deleted (as mentioned, this
2422 // should result in no loss of information).
2423 Worklist.push_back(StartBB);
2424 while (!Worklist.empty()) {
2425 auto *BB = Worklist.front();
2426 Worklist.pop_front();
2427 bool Changed = false;
2428 auto *BBID = CtxProfAnalysis::getBBInstrumentation(*BB);
2429 if (BBID) {
2430 Changed |= RewriteInstrIfNeeded(*BBID);
2431 // this may be the entryblock from the inlined callee, coming into a BB
2432 // that didn't have instrumentation because of MST decisions. Let's make
2433 // sure it's placed accordingly. This is a noop elsewhere.
2434 BBID->moveBefore(BB->getFirstInsertionPt());
2435 }
2436 for (auto &I : llvm::make_early_inc_range(*BB)) {
2437 if (auto *Inc = dyn_cast<InstrProfIncrementInst>(&I)) {
2439 // Step instrumentation is used for select instructions. Inlining may
2440 // have propagated a constant resulting in the condition of the select
2441 // being resolved, case in which function cloning resolves the value
2442 // of the select, and elides the select instruction. If that is the
2443 // case, the step parameter of the instrumentation will reflect that.
2444 // We can delete the instrumentation in that case.
2445 if (isa<Constant>(Inc->getStep())) {
2446 assert(!Inc->getNextNode() || !isa<SelectInst>(Inc->getNextNode()));
2447 Inc->eraseFromParent();
2448 } else {
2449 assert(isa_and_nonnull<SelectInst>(Inc->getNextNode()));
2450 RewriteInstrIfNeeded(*Inc);
2451 }
2452 } else if (Inc != BBID) {
2453 // If we're here it means that the BB had more than 1 IDs, presumably
2454 // some coming from the callee. We "made up our mind" to keep the
2455 // first one (which may or may not have been originally the caller's).
2456 // All the others are superfluous and we delete them.
2457 Inc->eraseFromParent();
2458 Changed = true;
2459 }
2460 } else if (auto *CS = dyn_cast<InstrProfCallsite>(&I)) {
2461 Changed |= RewriteCallsiteInsIfNeeded(*CS);
2462 }
2463 }
2464 if (!BBID || Changed)
2465 for (auto *Succ : successors(BB))
2466 if (Seen.insert(Succ).second)
2467 Worklist.push_back(Succ);
2468 }
2469
2470 assert(!llvm::is_contained(CalleeCounterMap, 0) &&
2471 "Counter index mapping should be either to -1 or to non-zero index, "
2472 "because the 0 "
2473 "index corresponds to the entry BB of the caller");
2474 assert(!llvm::is_contained(CalleeCallsiteMap, 0) &&
2475 "Callsite index mapping should be either to -1 or to non-zero index, "
2476 "because there should have been at least a callsite - the inlined one "
2477 "- which would have had a 0 index.");
2478
2479 return {std::move(CalleeCounterMap), std::move(CalleeCallsiteMap)};
2480}
2481
2482// Inline. If successful, update the contextual profile (if a valid one is
2483// given).
2484// The contextual profile data is organized in trees, as follows:
2485// - each node corresponds to a function
2486// - the root of each tree corresponds to an "entrypoint" - e.g.
2487// RPC handler for server side
2488// - the path from the root to a node is a particular call path
2489// - the counters stored in a node are counter values observed in that
2490// particular call path ("context")
2491// - the edges between nodes are annotated with callsite IDs.
2492//
2493// Updating the contextual profile after an inlining means, at a high level,
2494// copying over the data of the callee, **intentionally without any value
2495// scaling**, and copying over the callees of the inlined callee.
2496llvm::InlineResult
2498 PGOContextualProfile &CtxProf, bool MergeAttributes,
2499 AAResults *CalleeAAR, bool InsertLifetime,
2500 bool TrackInlineHistory, Function *ForwardVarArgsTo,
2502 if (!CtxProf.isInSpecializedModule())
2503 return InlineFunction(CB, IFI, MergeAttributes, CalleeAAR, InsertLifetime,
2504 TrackInlineHistory, ForwardVarArgsTo, ORE);
2505
2506 auto &Caller = *CB.getCaller();
2507 auto &Callee = *CB.getCalledFunction();
2508 auto *StartBB = CB.getParent();
2509
2510 // Get some preliminary data about the callsite before it might get inlined.
2511 // Inlining shouldn't delete the callee, but it's cleaner (and low-cost) to
2512 // get this data upfront and rely less on InlineFunction's behavior.
2513 const auto CalleeGUID = Callee.getGUID();
2514 auto *CallsiteIDIns = CtxProfAnalysis::getCallsiteInstrumentation(CB);
2515 const auto CallsiteID =
2516 static_cast<uint32_t>(CallsiteIDIns->getIndex()->getZExtValue());
2517
2518 const auto NumCalleeCounters = CtxProf.getNumCounters(Callee);
2519 const auto NumCalleeCallsites = CtxProf.getNumCallsites(Callee);
2520
2521 auto Ret = InlineFunction(CB, IFI, MergeAttributes, CalleeAAR, InsertLifetime,
2522 TrackInlineHistory, ForwardVarArgsTo, ORE);
2523 if (!Ret.isSuccess())
2524 return Ret;
2525
2526 // Inlining succeeded, we don't need the instrumentation of the inlined
2527 // callsite.
2528 CallsiteIDIns->eraseFromParent();
2529
2530 // Assinging Maps and then capturing references into it in the lambda because
2531 // captured structured bindings are a C++20 extension. We do also need a
2532 // capture here, though.
2533 const auto IndicesMaps = remapIndices(Caller, StartBB, CtxProf,
2534 NumCalleeCounters, NumCalleeCallsites);
2535 const uint32_t NewCountersSize = CtxProf.getNumCounters(Caller);
2536
2537 auto Updater = [&](PGOCtxProfContext &Ctx) {
2538 assert(Ctx.guid() == Caller.getGUID());
2539 const auto &[CalleeCounterMap, CalleeCallsiteMap] = IndicesMaps;
2540 assert(
2541 (Ctx.counters().size() +
2542 llvm::count_if(CalleeCounterMap, [](auto V) { return V != -1; }) ==
2543 NewCountersSize) &&
2544 "The caller's counters size should have grown by the number of new "
2545 "distinct counters inherited from the inlined callee.");
2546 Ctx.resizeCounters(NewCountersSize);
2547 // If the callsite wasn't exercised in this context, the value of the
2548 // counters coming from it is 0 - which it is right now, after resizing them
2549 // - and so we're done.
2550 auto CSIt = Ctx.callsites().find(CallsiteID);
2551 if (CSIt == Ctx.callsites().end())
2552 return;
2553 auto CalleeCtxIt = CSIt->second.find(CalleeGUID);
2554 // The callsite was exercised, but not with this callee (so presumably this
2555 // is an indirect callsite). Again, we're done here.
2556 if (CalleeCtxIt == CSIt->second.end())
2557 return;
2558
2559 // Let's pull in the counter values and the subcontexts coming from the
2560 // inlined callee.
2561 auto &CalleeCtx = CalleeCtxIt->second;
2562 assert(CalleeCtx.guid() == CalleeGUID);
2563
2564 for (auto I = 0U; I < CalleeCtx.counters().size(); ++I) {
2565 const int64_t NewIndex = CalleeCounterMap[I];
2566 if (NewIndex >= 0) {
2567 assert(NewIndex != 0 && "counter index mapping shouldn't happen to a 0 "
2568 "index, that's the caller's entry BB");
2569 Ctx.counters()[NewIndex] = CalleeCtx.counters()[I];
2570 }
2571 }
2572 for (auto &[I, OtherSet] : CalleeCtx.callsites()) {
2573 const int64_t NewCSIdx = CalleeCallsiteMap[I];
2574 if (NewCSIdx >= 0) {
2575 assert(NewCSIdx != 0 &&
2576 "callsite index mapping shouldn't happen to a 0 index, the "
2577 "caller must've had at least one callsite (with such an index)");
2578 Ctx.ingestAllContexts(NewCSIdx, std::move(OtherSet));
2579 }
2580 }
2581 // We know the traversal is preorder, so it wouldn't have yet looked at the
2582 // sub-contexts of this context that it's currently visiting. Meaning, the
2583 // erase below invalidates no iterators.
2584 auto Deleted = Ctx.callsites().erase(CallsiteID);
2585 assert(Deleted);
2586 (void)Deleted;
2587 };
2588 CtxProf.update(Updater, Caller);
2589 return Ret;
2590}
2591
2593 InlineFunctionInfo &IFI) {
2594 assert(CB.getParent() && CB.getFunction() && "Instruction not in function!");
2595
2596 // FIXME: we don't inline callbr yet.
2597 if (isa<CallBrInst>(CB))
2598 return InlineResult::failure("We don't inline callbr yet.");
2599
2600 // If IFI has any state in it, zap it before we fill it in.
2601 IFI.reset();
2602
2603 Function *CalledFunc = CB.getCalledFunction();
2604 if (!CalledFunc || // Can't inline external function or indirect
2605 CalledFunc->isDeclaration()) // call!
2606 return InlineResult::failure("external or indirect");
2607
2608 // Don't inline if we've already inlined this callee through this call site
2609 // before to prevent infinite inlining through mutually recursive functions.
2610 if (MDNode *InlineHistory = CB.getMetadata(LLVMContext::MD_inline_history)) {
2611 for (const auto &Op : InlineHistory->operands()) {
2612 if (auto *MD = dyn_cast_or_null<ValueAsMetadata>(Op)) {
2613 if (MD->getValue() == CalledFunc) {
2614 return InlineResult::failure("inline history");
2615 }
2616 }
2617 }
2618 }
2619
2620 // The inliner does not know how to inline through calls with operand bundles
2621 // in general ...
2622 if (CB.hasOperandBundles()) {
2623 for (int i = 0, e = CB.getNumOperandBundles(); i != e; ++i) {
2624 auto OBUse = CB.getOperandBundleAt(i);
2625 uint32_t Tag = OBUse.getTagID();
2626 // ... but it knows how to inline through "deopt" operand bundles ...
2628 continue;
2629 // ... and "funclet" operand bundles.
2631 continue;
2633 continue;
2635 continue;
2637 IFI.ConvergenceControlToken = OBUse.Inputs[0].get();
2638 continue;
2639 }
2640
2641 return InlineResult::failure("unsupported operand bundle");
2642 }
2643 }
2644
2645 // FIXME: The check below is redundant and incomplete. According to spec, if a
2646 // convergent call is missing a token, then the caller is using uncontrolled
2647 // convergence. If the callee has an entry intrinsic, then the callee is using
2648 // controlled convergence, and the call cannot be inlined. A proper
2649 // implemenation of this check requires a whole new analysis that identifies
2650 // convergence in every function. For now, we skip that and just do this one
2651 // cursory check. The underlying assumption is that in a compiler flow that
2652 // fully implements convergence control tokens, there is no mixing of
2653 // controlled and uncontrolled convergent operations in the whole program.
2654 if (CB.isConvergent()) {
2655 if (!IFI.ConvergenceControlToken &&
2656 getConvergenceEntry(CalledFunc->getEntryBlock())) {
2657 return InlineResult::failure(
2658 "convergent call needs convergencectrl operand");
2659 }
2660 }
2661
2662 const BasicBlock *OrigBB = CB.getParent();
2663 const Function *Caller = OrigBB->getParent();
2664
2665 // GC poses two hazards to inlining, which only occur when the callee has GC:
2666 // 1. If the caller has no GC, then the callee's GC must be propagated to the
2667 // caller.
2668 // 2. If the caller has a differing GC, it is invalid to inline.
2669 if (CalledFunc->hasGC()) {
2670 if (Caller->hasGC() && CalledFunc->getGC() != Caller->getGC())
2671 return InlineResult::failure("incompatible GC");
2672 }
2673
2674 // Get the personality function from the callee if it contains a landing pad.
2675 Constant *CalledPersonality =
2676 CalledFunc->hasPersonalityFn()
2677 ? CalledFunc->getPersonalityFn()->stripPointerCasts()
2678 : nullptr;
2679
2680 // Find the personality function used by the landing pads of the caller. If it
2681 // exists, then check to see that it matches the personality function used in
2682 // the callee.
2683 Constant *CallerPersonality =
2684 Caller->hasPersonalityFn()
2685 ? Caller->getPersonalityFn()->stripPointerCasts()
2686 : nullptr;
2687 if (CalledPersonality) {
2688 // If the personality functions match, then we can perform the
2689 // inlining. Otherwise, we can't inline.
2690 // TODO: This isn't 100% true. Some personality functions are proper
2691 // supersets of others and can be used in place of the other.
2692 if (CallerPersonality && CalledPersonality != CallerPersonality)
2693 return InlineResult::failure("incompatible personality");
2694 }
2695
2696 // We need to figure out which funclet the callsite was in so that we may
2697 // properly nest the callee.
2698 if (CallerPersonality) {
2699 EHPersonality Personality = classifyEHPersonality(CallerPersonality);
2700 if (isScopedEHPersonality(Personality)) {
2701 std::optional<OperandBundleUse> ParentFunclet =
2703 if (ParentFunclet)
2704 IFI.CallSiteEHPad = cast<FuncletPadInst>(ParentFunclet->Inputs.front());
2705
2706 // OK, the inlining site is legal. What about the target function?
2707
2708 if (IFI.CallSiteEHPad) {
2709 if (Personality == EHPersonality::MSVC_CXX) {
2710 // The MSVC personality cannot tolerate catches getting inlined into
2711 // cleanup funclets.
2713 // Ok, the call site is within a cleanuppad. Let's check the callee
2714 // for catchpads.
2715 for (const BasicBlock &CalledBB : *CalledFunc) {
2716 if (isa<CatchSwitchInst>(CalledBB.getFirstNonPHIIt()))
2717 return InlineResult::failure("catch in cleanup funclet");
2718 }
2719 }
2720 } else if (isAsynchronousEHPersonality(Personality)) {
2721 // SEH is even less tolerant, there may not be any sort of exceptional
2722 // funclet in the callee.
2723 for (const BasicBlock &CalledBB : *CalledFunc) {
2724 if (CalledBB.isEHPad())
2725 return InlineResult::failure("SEH in cleanup funclet");
2726 }
2727 }
2728 }
2729 }
2730 }
2731
2732 return InlineResult::success();
2733}
2734
2735/// This function inlines the called function into the basic block of the
2736/// caller. This returns false if it is not possible to inline this call.
2737/// The program is still in a well defined state if this occurs though.
2738///
2739/// Note that this only does one level of inlining. For example, if the
2740/// instruction 'call B' is inlined, and 'B' calls 'C', then the call to 'C' now
2741/// exists in the instruction stream. Similarly this will inline a recursive
2742/// function by one level.
2744 bool MergeAttributes, AAResults *CalleeAAR,
2745 bool InsertLifetime, bool TrackInlineHistory,
2746 Function *ForwardVarArgsTo,
2748 BasicBlock *OrigBB = CB.getParent();
2749 Function *Caller = OrigBB->getParent();
2750 Function *CalledFunc = CB.getCalledFunction();
2751 assert(CalledFunc && !CalledFunc->isDeclaration() &&
2752 "CanInlineCallSite should have verified direct call to definition");
2753
2754 // Determine if we are dealing with a call in an EHPad which does not unwind
2755 // to caller.
2756 bool EHPadForCallUnwindsLocally = false;
2757 if (IFI.CallSiteEHPad && isa<CallInst>(CB)) {
2758 UnwindDestMemoTy FuncletUnwindMap;
2759 Value *CallSiteUnwindDestToken =
2760 getUnwindDestToken(IFI.CallSiteEHPad, FuncletUnwindMap);
2761
2762 EHPadForCallUnwindsLocally =
2763 CallSiteUnwindDestToken &&
2764 !isa<ConstantTokenNone>(CallSiteUnwindDestToken);
2765 }
2766
2767 // Get an iterator to the last basic block in the function, which will have
2768 // the new function inlined after it.
2769 Function::iterator LastBlock = --Caller->end();
2770
2771 // Make sure to capture all of the return instructions from the cloned
2772 // function.
2774 ClonedCodeInfo InlinedFunctionInfo;
2775 Function::iterator FirstNewBlock;
2776
2777 // GC poses two hazards to inlining, which only occur when the callee has GC:
2778 // 1. If the caller has no GC, then the callee's GC must be propagated to the
2779 // caller.
2780 // 2. If the caller has a differing GC, it is invalid to inline.
2781 if (CalledFunc->hasGC()) {
2782 if (!Caller->hasGC())
2783 Caller->setGC(CalledFunc->getGC());
2784 else {
2785 assert(CalledFunc->getGC() == Caller->getGC() &&
2786 "CanInlineCallSite should have verified compatible GCs");
2787 }
2788 }
2789
2790 if (CalledFunc->hasPersonalityFn()) {
2791 Constant *CalledPersonality =
2792 CalledFunc->getPersonalityFn()->stripPointerCasts();
2793 if (!Caller->hasPersonalityFn()) {
2794 Caller->setPersonalityFn(CalledPersonality);
2795 } else
2796 assert(Caller->getPersonalityFn()->stripPointerCasts() ==
2797 CalledPersonality &&
2798 "CanInlineCallSite should have verified compatible personality");
2799 }
2800
2801 { // Scope to destroy VMap after cloning.
2802 ValueToValueMapTy VMap;
2803 struct ByValInit {
2804 Value *Dst;
2805 Value *Src;
2806 MaybeAlign SrcAlign;
2807 Type *Ty;
2808 };
2809 // Keep a list of tuples (dst, src, src_align) to emit byval
2810 // initializations. Src Alignment is only available though the callbase,
2811 // therefore has to be saved.
2812 SmallVector<ByValInit, 4> ByValInits;
2813
2814 // When inlining a function that contains noalias scope metadata,
2815 // this metadata needs to be cloned so that the inlined blocks
2816 // have different "unique scopes" at every call site.
2817 // Track the metadata that must be cloned. Do this before other changes to
2818 // the function, so that we do not get in trouble when inlining caller ==
2819 // callee.
2820 ScopedAliasMetadataDeepCloner SAMetadataCloner(CB.getCalledFunction());
2821
2822 auto &DL = Caller->getDataLayout();
2823
2824 // Calculate the vector of arguments to pass into the function cloner, which
2825 // matches up the formal to the actual argument values.
2826 auto AI = CB.arg_begin();
2827 unsigned ArgNo = 0;
2828 for (Function::arg_iterator I = CalledFunc->arg_begin(),
2829 E = CalledFunc->arg_end(); I != E; ++I, ++AI, ++ArgNo) {
2830 Value *ActualArg = *AI;
2831
2832 // When byval arguments actually inlined, we need to make the copy implied
2833 // by them explicit. However, we don't do this if the callee is readonly
2834 // or readnone, because the copy would be unneeded: the callee doesn't
2835 // modify the struct.
2836 if (CB.isByValArgument(ArgNo)) {
2837 ActualArg = HandleByValArgument(CB.getParamByValType(ArgNo), ActualArg,
2838 &CB, CalledFunc, IFI,
2839 CalledFunc->getParamAlign(ArgNo));
2840 if (ActualArg != *AI)
2841 ByValInits.push_back({ActualArg, (Value *)*AI,
2842 CB.getParamAlign(ArgNo),
2843 CB.getParamByValType(ArgNo)});
2844 }
2845
2846 VMap[&*I] = ActualArg;
2847 }
2848
2849 // TODO: Remove this when users have been updated to the assume bundles.
2850 // Add alignment assumptions if necessary. We do this before the inlined
2851 // instructions are actually cloned into the caller so that we can easily
2852 // check what will be known at the start of the inlined code.
2853 AddAlignmentAssumptions(CB, IFI);
2854
2855 AssumptionCache *AC =
2856 IFI.GetAssumptionCache ? &IFI.GetAssumptionCache(*Caller) : nullptr;
2857
2858 /// Preserve all attributes on of the call and its parameters.
2859 salvageKnowledge(&CB, AC);
2860
2861 // We want the inliner to prune the code as it copies. We would LOVE to
2862 // have no dead or constant instructions leftover after inlining occurs
2863 // (which can happen, e.g., because an argument was constant), but we'll be
2864 // happy with whatever the cloner can do.
2865 CloneAndPruneFunctionInto(Caller, CalledFunc, VMap,
2866 /*ModuleLevelChanges=*/false, Returns, ".i",
2867 InlinedFunctionInfo);
2868 // Remember the first block that is newly cloned over.
2869 FirstNewBlock = LastBlock; ++FirstNewBlock;
2870
2871 // Insert retainRV/clainRV runtime calls.
2873 if (RVCallKind != objcarc::ARCInstKind::None)
2874 inlineRetainOrClaimRVCalls(CB, RVCallKind, Returns);
2875
2876 // Updated caller/callee profiles only when requested. For sample loader
2877 // inlining, the context-sensitive inlinee profile doesn't need to be
2878 // subtracted from callee profile, and the inlined clone also doesn't need
2879 // to be scaled based on call site count.
2880 if (IFI.UpdateProfile) {
2881 if (IFI.CallerBFI != nullptr && IFI.CalleeBFI != nullptr)
2882 // Update the BFI of blocks cloned into the caller.
2883 updateCallerBFI(OrigBB, VMap, IFI.CallerBFI, IFI.CalleeBFI,
2884 CalledFunc->front());
2885
2886 if (auto Profile = CalledFunc->getEntryCount())
2887 updateCallProfile(CalledFunc, VMap, *Profile, CB, IFI.PSI,
2888 IFI.CallerBFI);
2889 }
2890
2891 // Inject byval arguments initialization.
2892 for (ByValInit &Init : ByValInits)
2893 HandleByValArgumentInit(Init.Ty, Init.Dst, Init.Src, Init.SrcAlign,
2894 Caller->getParent(), &*FirstNewBlock, IFI,
2895 CalledFunc);
2896
2897 std::optional<OperandBundleUse> ParentDeopt =
2899 if (ParentDeopt) {
2901
2902 for (auto &VH : InlinedFunctionInfo.OperandBundleCallSites) {
2904 if (!ICS)
2905 continue; // instruction was DCE'd or RAUW'ed to undef
2906
2907 OpDefs.clear();
2908
2909 OpDefs.reserve(ICS->getNumOperandBundles());
2910
2911 for (unsigned COBi = 0, COBe = ICS->getNumOperandBundles(); COBi < COBe;
2912 ++COBi) {
2913 auto ChildOB = ICS->getOperandBundleAt(COBi);
2914 if (ChildOB.getTagID() != LLVMContext::OB_deopt) {
2915 // If the inlined call has other operand bundles, let them be
2916 OpDefs.emplace_back(ChildOB);
2917 continue;
2918 }
2919
2920 // It may be useful to separate this logic (of handling operand
2921 // bundles) out to a separate "policy" component if this gets crowded.
2922 // Prepend the parent's deoptimization continuation to the newly
2923 // inlined call's deoptimization continuation.
2924 std::vector<Value *> MergedDeoptArgs;
2925 MergedDeoptArgs.reserve(ParentDeopt->Inputs.size() +
2926 ChildOB.Inputs.size());
2927
2928 llvm::append_range(MergedDeoptArgs, ParentDeopt->Inputs);
2929 llvm::append_range(MergedDeoptArgs, ChildOB.Inputs);
2930
2931 OpDefs.emplace_back("deopt", std::move(MergedDeoptArgs));
2932 }
2933
2934 Instruction *NewI = CallBase::Create(ICS, OpDefs, ICS->getIterator());
2935
2936 // Note: the RAUW does the appropriate fixup in VMap, so we need to do
2937 // this even if the call returns void.
2938 ICS->replaceAllUsesWith(NewI);
2939
2940 VH = nullptr;
2941 ICS->eraseFromParent();
2942 }
2943 }
2944
2945 // For 'nodebug' functions, the associated DISubprogram is always null.
2946 // Conservatively avoid propagating the callsite debug location to
2947 // instructions inlined from a function whose DISubprogram is not null.
2948 fixupLineNumbers(Caller, FirstNewBlock, &CB,
2949 CalledFunc->getSubprogram() != nullptr);
2950
2951 if (isAssignmentTrackingEnabled(*Caller->getParent())) {
2952 // Interpret inlined stores to caller-local variables as assignments.
2953 trackInlinedStores(FirstNewBlock, Caller->end(), CB);
2954
2955 // Update DIAssignID metadata attachments and uses so that they are
2956 // unique to this inlined instance.
2957 fixupAssignments(FirstNewBlock, Caller->end());
2958 }
2959
2960 // Now clone the inlined noalias scope metadata.
2961 SAMetadataCloner.clone();
2962 SAMetadataCloner.remap(FirstNewBlock, Caller->end());
2963
2964 // Add noalias metadata if necessary.
2965 AddAliasScopeMetadata(CB, VMap, DL, CalleeAAR, InlinedFunctionInfo);
2966
2967 // Clone return attributes on the callsite into the calls within the inlined
2968 // function which feed into its return value.
2969 AddReturnAttributes(CB, VMap, InlinedFunctionInfo);
2970
2971 // Clone attributes on the params of the callsite to calls within the
2972 // inlined function which use the same param.
2973 AddParamAndFnBasicAttributes(CB, VMap, InlinedFunctionInfo);
2974
2976 CalledFunc, CB, InlinedFunctionInfo.ContainsMemProfMetadata, VMap, ORE);
2977
2978 // Propagate metadata on the callsite if necessary.
2979 PropagateCallSiteMetadata(CB, FirstNewBlock, Caller->end());
2980
2981 // Propagate an allocation wrapper's !alloc_token if necessary.
2982 propagateAllocTokenMetadata(CalledFunc, CB, VMap, InlinedFunctionInfo);
2983
2984 // Propagate implicit ref metadata.
2985 if (CalledFunc->hasMetadata(LLVMContext::MD_implicit_ref)) {
2987 CalledFunc->getMetadata(LLVMContext::MD_implicit_ref, MDs);
2988 for (MDNode *MD : MDs) {
2989 Caller->addMetadata(LLVMContext::MD_implicit_ref, *MD);
2990 }
2991 }
2992
2993 // Propagate inlined.from metadata for dontcall diagnostics.
2994 PropagateInlinedFromMetadata(CB, CalledFunc->getName(), Caller->getName(),
2995 FirstNewBlock, Caller->end());
2996
2997 // Register any cloned assumptions.
2998 if (IFI.GetAssumptionCache)
2999 for (BasicBlock &NewBlock :
3000 make_range(FirstNewBlock->getIterator(), Caller->end()))
3001 for (Instruction &I : NewBlock)
3002 if (auto *II = dyn_cast<AssumeInst>(&I))
3003 IFI.GetAssumptionCache(*Caller).registerAssumption(II);
3004 }
3005
3006 if (IFI.ConvergenceControlToken) {
3007 IntrinsicInst *IntrinsicCall = getConvergenceEntry(*FirstNewBlock);
3008 if (IntrinsicCall) {
3009 IntrinsicCall->replaceAllUsesWith(IFI.ConvergenceControlToken);
3010 IntrinsicCall->eraseFromParent();
3011 }
3012 }
3013
3014 // If there are any alloca instructions in the block that used to be the entry
3015 // block for the callee, move them to the entry block of the caller. First
3016 // calculate which instruction they should be inserted before. We insert the
3017 // instructions at the end of the current alloca list.
3018 {
3019 BasicBlock::iterator InsertPoint = Caller->begin()->begin();
3020 for (BasicBlock::iterator I = FirstNewBlock->begin(),
3021 E = FirstNewBlock->end(); I != E; ) {
3023 if (!AI) continue;
3024
3025 // If the alloca is now dead, remove it. This often occurs due to code
3026 // specialization.
3027 if (AI->use_empty()) {
3028 AI->eraseFromParent();
3029 continue;
3030 }
3031
3033 continue;
3034
3035 // Keep track of the static allocas that we inline into the caller.
3036 IFI.StaticAllocas.push_back(AI);
3037
3038 // Scan for the block of allocas that we can move over, and move them
3039 // all at once.
3040 while (isa<AllocaInst>(I) &&
3041 !cast<AllocaInst>(I)->use_empty() &&
3043 IFI.StaticAllocas.push_back(cast<AllocaInst>(I));
3044 ++I;
3045 }
3046
3047 // Transfer all of the allocas over in a block. Using splice means
3048 // that the instructions aren't removed from the symbol table, then
3049 // reinserted.
3050 I.setTailBit(true);
3051 Caller->getEntryBlock().splice(InsertPoint, &*FirstNewBlock,
3052 AI->getIterator(), I);
3053 }
3054 }
3055
3056 // If the call to the callee cannot throw, set the 'nounwind' flag on any
3057 // calls that we inline.
3058 bool MarkNoUnwind = CB.doesNotThrow();
3059
3060 SmallVector<Value*,4> VarArgsToForward;
3061 SmallVector<AttributeSet, 4> VarArgsAttrs;
3062 for (unsigned i = CalledFunc->getFunctionType()->getNumParams();
3063 i < CB.arg_size(); i++) {
3064 VarArgsToForward.push_back(CB.getArgOperand(i));
3065 VarArgsAttrs.push_back(CB.getAttributes().getParamAttrs(i));
3066 }
3067
3068 bool InlinedMustTailCalls = false, InlinedDeoptimizeCalls = false;
3069 if (InlinedFunctionInfo.ContainsCalls) {
3070 CallInst::TailCallKind CallSiteTailKind = CallInst::TCK_None;
3071 if (CallInst *CI = dyn_cast<CallInst>(&CB))
3072 CallSiteTailKind = CI->getTailCallKind();
3073
3074 // For inlining purposes, the "notail" marker is the same as no marker.
3075 if (CallSiteTailKind == CallInst::TCK_NoTail)
3076 CallSiteTailKind = CallInst::TCK_None;
3077
3078 for (Function::iterator BB = FirstNewBlock, E = Caller->end(); BB != E;
3079 ++BB) {
3082 if (!CI)
3083 continue;
3084
3085 // Forward varargs from inlined call site to calls to the
3086 // ForwardVarArgsTo function, if requested, and to musttail calls.
3087 if (!VarArgsToForward.empty() &&
3088 ((ForwardVarArgsTo &&
3089 CI->getCalledFunction() == ForwardVarArgsTo) ||
3090 CI->isMustTailCall())) {
3091 // Collect attributes for non-vararg parameters.
3092 AttributeList Attrs = CI->getAttributes();
3094 if (!Attrs.isEmpty() || !VarArgsAttrs.empty()) {
3095 for (unsigned ArgNo = 0;
3096 ArgNo < CI->getFunctionType()->getNumParams(); ++ArgNo)
3097 ArgAttrs.push_back(Attrs.getParamAttrs(ArgNo));
3098 }
3099
3100 // Add VarArg attributes.
3101 ArgAttrs.append(VarArgsAttrs.begin(), VarArgsAttrs.end());
3102 Attrs = AttributeList::get(CI->getContext(), Attrs.getFnAttrs(),
3103 Attrs.getRetAttrs(), ArgAttrs);
3104 // Add VarArgs to existing parameters.
3105 SmallVector<Value *, 6> Params(CI->args());
3106 Params.append(VarArgsToForward.begin(), VarArgsToForward.end());
3107 CallInst *NewCI = CallInst::Create(
3108 CI->getFunctionType(), CI->getCalledOperand(), Params, "", CI->getIterator());
3109 NewCI->setDebugLoc(CI->getDebugLoc());
3110 NewCI->setAttributes(Attrs);
3111 NewCI->setCallingConv(CI->getCallingConv());
3112 CI->replaceAllUsesWith(NewCI);
3113 CI->eraseFromParent();
3114 CI = NewCI;
3115 }
3116
3117 if (Function *F = CI->getCalledFunction())
3118 InlinedDeoptimizeCalls |=
3119 F->getIntrinsicID() == Intrinsic::experimental_deoptimize;
3120
3121 // We need to reduce the strength of any inlined tail calls. For
3122 // musttail, we have to avoid introducing potential unbounded stack
3123 // growth. For example, if functions 'f' and 'g' are mutually recursive
3124 // with musttail, we can inline 'g' into 'f' so long as we preserve
3125 // musttail on the cloned call to 'f'. If either the inlined call site
3126 // or the cloned call site is *not* musttail, the program already has
3127 // one frame of stack growth, so it's safe to remove musttail. Here is
3128 // a table of example transformations:
3129 //
3130 // f -> musttail g -> musttail f ==> f -> musttail f
3131 // f -> musttail g -> tail f ==> f -> tail f
3132 // f -> g -> musttail f ==> f -> f
3133 // f -> g -> tail f ==> f -> f
3134 //
3135 // Inlined notail calls should remain notail calls.
3136 CallInst::TailCallKind ChildTCK = CI->getTailCallKind();
3137 if (ChildTCK != CallInst::TCK_NoTail)
3138 ChildTCK = std::min(CallSiteTailKind, ChildTCK);
3139 CI->setTailCallKind(ChildTCK);
3140 InlinedMustTailCalls |= CI->isMustTailCall();
3141
3142 // Call sites inlined through a 'nounwind' call site should be
3143 // 'nounwind' as well. However, avoid marking call sites explicitly
3144 // where possible. This helps expose more opportunities for CSE after
3145 // inlining, commonly when the callee is an intrinsic.
3146 if (MarkNoUnwind && !CI->doesNotThrow())
3147 CI->setDoesNotThrow();
3148 }
3149 }
3150 }
3151
3152 // Leave lifetime markers for the static alloca's, scoping them to the
3153 // function we just inlined.
3154 // We need to insert lifetime intrinsics even at O0 to avoid invalid
3155 // access caused by multithreaded coroutines. The check
3156 // `Caller->isPresplitCoroutine()` would affect AlwaysInliner at O0 only.
3157 if ((InsertLifetime || Caller->isPresplitCoroutine()) &&
3158 !IFI.StaticAllocas.empty()) {
3159 IRBuilder<> builder(&*FirstNewBlock, FirstNewBlock->begin());
3160 for (AllocaInst *AI : IFI.StaticAllocas) {
3161 // Don't mark swifterror allocas. They can't have bitcast uses.
3162 if (AI->isSwiftError())
3163 continue;
3164
3165 // If the alloca is already scoped to something smaller than the whole
3166 // function then there's no need to add redundant, less accurate markers.
3167 if (hasLifetimeMarkers(AI))
3168 continue;
3169
3170 std::optional<TypeSize> Size = AI->getAllocationSize(AI->getDataLayout());
3171 if (Size && Size->isZero())
3172 continue;
3173
3174 builder.CreateLifetimeStart(AI);
3175 for (ReturnInst *RI : Returns) {
3176 // Don't insert llvm.lifetime.end calls between a musttail or deoptimize
3177 // call and a return. The return kills all local allocas.
3178 if (InlinedMustTailCalls &&
3179 RI->getParent()->getTerminatingMustTailCall())
3180 continue;
3181 if (InlinedDeoptimizeCalls &&
3182 RI->getParent()->getTerminatingDeoptimizeCall())
3183 continue;
3184 IRBuilder<>(RI).CreateLifetimeEnd(AI);
3185 }
3186 }
3187 }
3188
3189 // If the inlined code contained dynamic alloca instructions, wrap the inlined
3190 // code with llvm.stacksave/llvm.stackrestore intrinsics.
3191 if (InlinedFunctionInfo.ContainsDynamicAllocas) {
3192 // Insert the llvm.stacksave.
3193 CallInst *SavedPtr = IRBuilder<>(&*FirstNewBlock, FirstNewBlock->begin())
3194 .CreateStackSave("savedstack");
3195
3196 // Insert a call to llvm.stackrestore before any return instructions in the
3197 // inlined function.
3198 for (ReturnInst *RI : Returns) {
3199 // Don't insert llvm.stackrestore calls between a musttail or deoptimize
3200 // call and a return. The return will restore the stack pointer.
3201 if (InlinedMustTailCalls && RI->getParent()->getTerminatingMustTailCall())
3202 continue;
3203 if (InlinedDeoptimizeCalls && RI->getParent()->getTerminatingDeoptimizeCall())
3204 continue;
3205 IRBuilder<>(RI).CreateStackRestore(SavedPtr);
3206 }
3207 }
3208
3209 // If we are inlining for an invoke instruction, we must make sure to rewrite
3210 // any call instructions into invoke instructions. This is sensitive to which
3211 // funclet pads were top-level in the inlinee, so must be done before
3212 // rewriting the "parent pad" links.
3213 if (auto *II = dyn_cast<InvokeInst>(&CB)) {
3214 BasicBlock *UnwindDest = II->getUnwindDest();
3215 BasicBlock::iterator FirstNonPHI = UnwindDest->getFirstNonPHIIt();
3216 if (isa<LandingPadInst>(FirstNonPHI)) {
3217 HandleInlinedLandingPad(II, &*FirstNewBlock, InlinedFunctionInfo);
3218 } else {
3219 HandleInlinedEHPad(II, &*FirstNewBlock, InlinedFunctionInfo);
3220 }
3221 }
3222
3223 // Update the lexical scopes of the new funclets and callsites.
3224 // Anything that had 'none' as its parent is now nested inside the callsite's
3225 // EHPad.
3226 if (IFI.CallSiteEHPad) {
3227 for (Function::iterator BB = FirstNewBlock->getIterator(),
3228 E = Caller->end();
3229 BB != E; ++BB) {
3230 // Add bundle operands to inlined call sites.
3232
3233 // It is problematic if the inlinee has a cleanupret which unwinds to
3234 // caller and we inline it into a call site which doesn't unwind but into
3235 // an EH pad that does. Such an edge must be dynamically unreachable.
3236 // As such, we replace the cleanupret with unreachable.
3237 if (auto *CleanupRet = dyn_cast<CleanupReturnInst>(BB->getTerminator()))
3238 if (CleanupRet->unwindsToCaller() && EHPadForCallUnwindsLocally)
3239 changeToUnreachable(CleanupRet);
3240
3241 BasicBlock::iterator I = BB->getFirstNonPHIIt();
3242 if (!I->isEHPad())
3243 continue;
3244
3245 if (auto *CatchSwitch = dyn_cast<CatchSwitchInst>(I)) {
3246 if (isa<ConstantTokenNone>(CatchSwitch->getParentPad()))
3247 CatchSwitch->setParentPad(IFI.CallSiteEHPad);
3248 } else {
3249 auto *FPI = cast<FuncletPadInst>(I);
3250 if (isa<ConstantTokenNone>(FPI->getParentPad()))
3251 FPI->setParentPad(IFI.CallSiteEHPad);
3252 }
3253 }
3254 }
3255
3256 if (InlinedDeoptimizeCalls) {
3257 // We need to at least remove the deoptimizing returns from the Return set,
3258 // so that the control flow from those returns does not get merged into the
3259 // caller (but terminate it instead). If the caller's return type does not
3260 // match the callee's return type, we also need to change the return type of
3261 // the intrinsic.
3262 if (Caller->getReturnType() == CB.getType()) {
3263 llvm::erase_if(Returns, [](ReturnInst *RI) {
3264 return RI->getParent()->getTerminatingDeoptimizeCall() != nullptr;
3265 });
3266 } else {
3267 SmallVector<ReturnInst *, 8> NormalReturns;
3268 Function *NewDeoptIntrinsic = Intrinsic::getOrInsertDeclaration(
3269 Caller->getParent(), Intrinsic::experimental_deoptimize,
3270 {Caller->getReturnType()});
3271
3272 for (ReturnInst *RI : Returns) {
3273 CallInst *DeoptCall = RI->getParent()->getTerminatingDeoptimizeCall();
3274 if (!DeoptCall) {
3275 NormalReturns.push_back(RI);
3276 continue;
3277 }
3278
3279 // The calling convention on the deoptimize call itself may be bogus,
3280 // since the code we're inlining may have undefined behavior (and may
3281 // never actually execute at runtime); but all
3282 // @llvm.experimental.deoptimize declarations have to have the same
3283 // calling convention in a well-formed module.
3284 auto CallingConv = DeoptCall->getCalledFunction()->getCallingConv();
3285 NewDeoptIntrinsic->setCallingConv(CallingConv);
3286 auto *CurBB = RI->getParent();
3287 RI->eraseFromParent();
3288
3289 SmallVector<Value *, 4> CallArgs(DeoptCall->args());
3290
3292 DeoptCall->getOperandBundlesAsDefs(OpBundles);
3293 auto DeoptAttributes = DeoptCall->getAttributes();
3294 DeoptCall->eraseFromParent();
3295 assert(!OpBundles.empty() &&
3296 "Expected at least the deopt operand bundle");
3297
3298 IRBuilder<> Builder(CurBB);
3299 CallInst *NewDeoptCall =
3300 Builder.CreateCall(NewDeoptIntrinsic, CallArgs, OpBundles);
3301 NewDeoptCall->setCallingConv(CallingConv);
3302 NewDeoptCall->setAttributes(DeoptAttributes);
3303 if (NewDeoptCall->getType()->isVoidTy())
3304 Builder.CreateRetVoid();
3305 else
3306 Builder.CreateRet(NewDeoptCall);
3307 // Since the ret type is changed, remove the incompatible attributes.
3308 NewDeoptCall->removeRetAttrs(AttributeFuncs::typeIncompatible(
3309 NewDeoptCall->getType(), NewDeoptCall->getRetAttributes()));
3310 }
3311
3312 // Leave behind the normal returns so we can merge control flow.
3313 std::swap(Returns, NormalReturns);
3314 }
3315 }
3316
3317 // Handle any inlined musttail call sites. In order for a new call site to be
3318 // musttail, the source of the clone and the inlined call site must have been
3319 // musttail. Therefore it's safe to return without merging control into the
3320 // phi below.
3321 if (InlinedMustTailCalls) {
3322 // Handle the returns preceded by musttail calls separately.
3323 SmallVector<ReturnInst *, 8> NormalReturns;
3324 for (ReturnInst *RI : Returns) {
3325 CallInst *ReturnedMustTail =
3326 RI->getParent()->getTerminatingMustTailCall();
3327 if (!ReturnedMustTail)
3328 NormalReturns.push_back(RI);
3329 }
3330
3331 // Leave behind the normal returns so we can merge control flow.
3332 std::swap(Returns, NormalReturns);
3333 }
3334
3335 // Now that all of the transforms on the inlined code have taken place but
3336 // before we splice the inlined code into the CFG and lose track of which
3337 // blocks were actually inlined, collect the call sites. We only do this if
3338 // call graph updates weren't requested, as those provide value handle based
3339 // tracking of inlined call sites instead. Calls to intrinsics are not
3340 // collected because they are not inlineable.
3341 if (InlinedFunctionInfo.ContainsCalls) {
3342 // Otherwise just collect the raw call sites that were inlined.
3343 for (BasicBlock &NewBB :
3344 make_range(FirstNewBlock->getIterator(), Caller->end()))
3345 for (Instruction &I : NewBB)
3346 if (auto *CB = dyn_cast<CallBase>(&I))
3347 if (!(CB->getCalledFunction() &&
3349 IFI.InlinedCallSites.push_back(CB);
3350 }
3351
3352 for (CallBase *ICB : IFI.InlinedCallSites) {
3353 // We only track inline history if requested, or if the inlined call site
3354 // was originally an indirect call (it may have become a direct call
3355 // during inlining).
3356 if (TrackInlineHistory ||
3357 InlinedFunctionInfo.OriginallyIndirectCalls.contains(ICB)) {
3358 // !inline_history is {Callee, CB.inline_history, ICB.inline_history}.
3359 // Metadata nodes may be null if the referenced function was erased from
3360 // the module.
3362 History.push_back(ValueAsMetadata::get(CalledFunc));
3363 if (MDNode *CBHistory = CB.getMetadata(LLVMContext::MD_inline_history)) {
3364 for (const auto &Op : CBHistory->operands()) {
3365 if (Op)
3366 History.push_back(Op.get());
3367 }
3368 }
3369 if (MDNode *CBHistory =
3370 ICB->getMetadata(LLVMContext::MD_inline_history)) {
3371 for (const auto &Op : CBHistory->operands()) {
3372 if (Op)
3373 History.push_back(Op.get());
3374 }
3375 }
3376 MDNode *NewHistory = MDNode::get(Caller->getContext(), History);
3377 ICB->setMetadata(LLVMContext::MD_inline_history, NewHistory);
3378 }
3379 }
3380
3381 // If we cloned in _exactly one_ basic block, and if that block ends in a
3382 // return instruction, we splice the body of the inlined callee directly into
3383 // the calling basic block.
3384 if (Returns.size() == 1 && std::distance(FirstNewBlock, Caller->end()) == 1) {
3385 // Move all of the instructions right before the call.
3386 OrigBB->splice(CB.getIterator(), &*FirstNewBlock, FirstNewBlock->begin(),
3387 FirstNewBlock->end());
3388 // Remove the cloned basic block.
3389 Caller->back().eraseFromParent();
3390
3391 // If the call site was an invoke instruction, add a branch to the normal
3392 // destination.
3393 if (InvokeInst *II = dyn_cast<InvokeInst>(&CB)) {
3394 UncondBrInst *NewBr =
3395 UncondBrInst::Create(II->getNormalDest(), CB.getIterator());
3396 NewBr->setDebugLoc(Returns[0]->getDebugLoc());
3397 }
3398
3399 // If the return instruction returned a value, replace uses of the call with
3400 // uses of the returned value.
3401 if (!CB.use_empty()) {
3402 ReturnInst *R = Returns[0];
3403 if (&CB == R->getReturnValue())
3405 else
3406 CB.replaceAllUsesWith(R->getReturnValue());
3407 }
3408 // Since we are now done with the Call/Invoke, we can delete it.
3409 CB.eraseFromParent();
3410
3411 // Since we are now done with the return instruction, delete it also.
3412 Returns[0]->eraseFromParent();
3413
3414 if (MergeAttributes)
3415 AttributeFuncs::mergeAttributesForInlining(*Caller, *CalledFunc);
3416
3417 // We are now done with the inlining.
3418 return;
3419 }
3420
3421 // Otherwise, we have the normal case, of more than one block to inline or
3422 // multiple return sites.
3423
3424 // We want to clone the entire callee function into the hole between the
3425 // "starter" and "ender" blocks. How we accomplish this depends on whether
3426 // this is an invoke instruction or a call instruction.
3427 BasicBlock *AfterCallBB;
3428 UncondBrInst *CreatedBranchToNormalDest = nullptr;
3429 if (InvokeInst *II = dyn_cast<InvokeInst>(&CB)) {
3430
3431 // Add an unconditional branch to make this look like the CallInst case...
3432 CreatedBranchToNormalDest =
3433 UncondBrInst::Create(II->getNormalDest(), CB.getIterator());
3434 // We intend to replace this DebugLoc with another later.
3435 CreatedBranchToNormalDest->setDebugLoc(DebugLoc::getTemporary());
3436
3437 // Split the basic block. This guarantees that no PHI nodes will have to be
3438 // updated due to new incoming edges, and make the invoke case more
3439 // symmetric to the call case.
3440 AfterCallBB =
3441 OrigBB->splitBasicBlock(CreatedBranchToNormalDest->getIterator(),
3442 CalledFunc->getName() + ".exit");
3443
3444 } else { // It's a call
3445 // If this is a call instruction, we need to split the basic block that
3446 // the call lives in.
3447 //
3448 AfterCallBB = OrigBB->splitBasicBlock(CB.getIterator(),
3449 CalledFunc->getName() + ".exit");
3450 }
3451
3452 if (IFI.CallerBFI) {
3453 // Copy original BB's block frequency to AfterCallBB
3454 IFI.CallerBFI->setBlockFreq(AfterCallBB,
3455 IFI.CallerBFI->getBlockFreq(OrigBB));
3456 }
3457
3458 // Change the branch that used to go to AfterCallBB to branch to the first
3459 // basic block of the inlined function.
3460 //
3462 Br->setSuccessor(&*FirstNewBlock);
3463
3464 // Now that the function is correct, make it a little bit nicer. In
3465 // particular, move the basic blocks inserted from the end of the function
3466 // into the space made by splitting the source basic block.
3467 Caller->splice(AfterCallBB->getIterator(), Caller, FirstNewBlock,
3468 Caller->end());
3469
3470 // Handle all of the return instructions that we just cloned in, and eliminate
3471 // any users of the original call/invoke instruction.
3472 Type *RTy = CalledFunc->getReturnType();
3473
3474 PHINode *PHI = nullptr;
3475 if (Returns.size() > 1) {
3476 // The PHI node should go at the front of the new basic block to merge all
3477 // possible incoming values.
3478 if (!CB.use_empty()) {
3479 PHI = PHINode::Create(RTy, Returns.size(), CB.getName());
3480 PHI->insertBefore(AfterCallBB->begin());
3481 // Anything that used the result of the function call should now use the
3482 // PHI node as their operand.
3484 }
3485
3486 // Loop over all of the return instructions adding entries to the PHI node
3487 // as appropriate.
3488 if (PHI) {
3489 for (ReturnInst *RI : Returns) {
3490 assert(RI->getReturnValue()->getType() == PHI->getType() &&
3491 "Ret value not consistent in function!");
3492 PHI->addIncoming(RI->getReturnValue(), RI->getParent());
3493 }
3494 }
3495
3496 // Add a branch to the merge points and remove return instructions.
3497 DebugLoc Loc;
3498 for (ReturnInst *RI : Returns) {
3499 UncondBrInst *BI = UncondBrInst::Create(AfterCallBB, RI->getIterator());
3500 Loc = RI->getDebugLoc();
3501 BI->setDebugLoc(Loc);
3502 RI->eraseFromParent();
3503 }
3504 // We need to set the debug location to *somewhere* inside the
3505 // inlined function. The line number may be nonsensical, but the
3506 // instruction will at least be associated with the right
3507 // function.
3508 if (CreatedBranchToNormalDest)
3509 CreatedBranchToNormalDest->setDebugLoc(Loc);
3510 } else if (!Returns.empty()) {
3511 // Otherwise, if there is exactly one return value, just replace anything
3512 // using the return value of the call with the computed value.
3513 if (!CB.use_empty()) {
3514 if (&CB == Returns[0]->getReturnValue())
3516 else
3517 CB.replaceAllUsesWith(Returns[0]->getReturnValue());
3518 }
3519
3520 // Update PHI nodes that use the ReturnBB to use the AfterCallBB.
3521 BasicBlock *ReturnBB = Returns[0]->getParent();
3522 ReturnBB->replaceAllUsesWith(AfterCallBB);
3523
3524 // Splice the code from the return block into the block that it will return
3525 // to, which contains the code that was after the call.
3526 AfterCallBB->splice(AfterCallBB->begin(), ReturnBB);
3527
3528 if (CreatedBranchToNormalDest)
3529 CreatedBranchToNormalDest->setDebugLoc(Returns[0]->getDebugLoc());
3530
3531 // Delete the return instruction now and empty ReturnBB now.
3532 Returns[0]->eraseFromParent();
3533 ReturnBB->eraseFromParent();
3534 } else if (!CB.use_empty()) {
3535 // In this case there are no returns to use, so there is no clear source
3536 // location for the "return".
3537 // FIXME: It may be correct to use the scope end line of the function here,
3538 // since this likely means we are falling out of the function.
3539 if (CreatedBranchToNormalDest)
3540 CreatedBranchToNormalDest->setDebugLoc(DebugLoc::getUnknown());
3541 // No returns, but something is using the return value of the call. Just
3542 // nuke the result.
3544 }
3545
3546 // Since we are now done with the Call/Invoke, we can delete it.
3547 CB.eraseFromParent();
3548
3549 // If we inlined any musttail calls and the original return is now
3550 // unreachable, delete it. It can only contain a ret.
3551 if (InlinedMustTailCalls && pred_empty(AfterCallBB))
3552 AfterCallBB->eraseFromParent();
3553
3554 // We should always be able to fold the entry block of the function into the
3555 // single predecessor of the block...
3556 BasicBlock *CalleeEntry = Br->getSuccessor();
3557
3558 // Splice the code entry block into calling block, right before the
3559 // unconditional branch.
3560 CalleeEntry->replaceAllUsesWith(OrigBB); // Update PHI nodes
3561 OrigBB->splice(Br->getIterator(), CalleeEntry);
3562
3563 // Remove the unconditional branch.
3564 Br->eraseFromParent();
3565
3566 // Now we can remove the CalleeEntry block, which is now empty.
3567 CalleeEntry->eraseFromParent();
3568
3569 // If we inserted a phi node, check to see if it has a single value (e.g. all
3570 // the entries are the same or undef). If so, remove the PHI so it doesn't
3571 // block other optimizations.
3572 if (PHI) {
3573 AssumptionCache *AC =
3574 IFI.GetAssumptionCache ? &IFI.GetAssumptionCache(*Caller) : nullptr;
3575 auto &DL = Caller->getDataLayout();
3576 if (Value *V = simplifyInstruction(PHI, {DL, nullptr, nullptr, AC})) {
3577 PHI->replaceAllUsesWith(V);
3578 PHI->eraseFromParent();
3579 }
3580 }
3581
3582 if (MergeAttributes)
3583 AttributeFuncs::mergeAttributesForInlining(*Caller, *CalledFunc);
3584}
3585
3587 CallBase &CB, InlineFunctionInfo &IFI, bool MergeAttributes,
3588 AAResults *CalleeAAR, bool InsertLifetime, bool TrackInlineHistory,
3589 Function *ForwardVarArgsTo, OptimizationRemarkEmitter *ORE) {
3590 llvm::InlineResult Result = CanInlineCallSite(CB, IFI);
3591 if (Result.isSuccess()) {
3592 InlineFunctionImpl(CB, IFI, MergeAttributes, CalleeAAR, InsertLifetime,
3593 TrackInlineHistory, ForwardVarArgsTo, ORE);
3594 }
3595
3596 return Result;
3597}
assert(UImm &&(UImm !=~static_cast< T >(0)) &&"Invalid immediate!")
unsigned uint64_t
Rewrite undef for PHI
MachineBasicBlock MachineBasicBlock::iterator DebugLoc DL
This file contains the simple types necessary to represent the attributes associated with functions a...
static void UpdatePHINodes(BasicBlock *OrigBB, BasicBlock *NewBB, ArrayRef< BasicBlock * > Preds, Instruction *BI, bool HasLoopExit)
Update the PHI nodes in OrigBB to include the values coming from NewBB.
static GCRegistry::Add< ErlangGC > A("erlang", "erlang-compatible garbage collector")
static GCRegistry::Add< CoreCLRGC > E("coreclr", "CoreCLR-compatible GC")
static cl::opt< bool > NoAliases("csky-no-aliases", cl::desc("Disable the emission of assembler pseudo instructions"), cl::init(false), cl::Hidden)
This file provides interfaces used to build and manipulate a call graph, which is a very useful tool ...
This file contains the declarations for the subclasses of Constant, which represent the different fla...
dxil translate DXIL Translate Metadata
This file defines the DenseMap class.
This file provides various utilities for inspecting and working with the control flow graph in LLVM I...
Module.h This file contains the declarations for the Module class.
static AttrBuilder IdentifyValidUBGeneratingAttributes(CallBase &CB)
static void collectPointerReturningCalls(Value *RetVal, SmallVectorImpl< CallBase * > &Out)
Collect all calls that produce RetVal, following only pointer-preserving instructions (cast,...
DenseMap< Instruction *, Value * > UnwindDestMemoTy
static BasicBlock * HandleCallsInBlockInlinedThroughInvoke(BasicBlock *BB, BasicBlock *UnwindEdge, SmallSetVector< const Value *, 4 > &OriginallyIndirectCalls, UnwindDestMemoTy *FuncletUnwindMap=nullptr)
When we inline a basic block into an invoke, we have to turn all of the calls that can throw into inv...
static at::StorageToVarsMap collectEscapedLocals(const DataLayout &DL, const CallBase &CB)
Find Alloca and linked DbgAssignIntrinsic for locals escaped by CB.
static void fixupLineNumbers(Function *Fn, Function::iterator FI, Instruction *TheCall, bool CalleeHasDebugInfo)
Update inlined instructions' line numbers to to encode location where these instructions are inlined.
static void removeCallsiteMetadata(CallBase *Call)
static void PropagateInlinedFromMetadata(CallBase &CB, StringRef CalledFuncName, StringRef CallerFuncName, Function::iterator FStart, Function::iterator FEnd)
Track inlining chain via inlined.from metadata for dontcall diagnostics.
static Value * getUnwindDestToken(Instruction *EHPad, UnwindDestMemoTy &MemoMap)
Given an EH pad, find where it unwinds.
static void propagateMemProfMetadata(Function *Callee, CallBase &CB, bool ContainsMemProfMetadata, const ValueMap< const Value *, WeakTrackingVH > &VMap, OptimizationRemarkEmitter *ORE)
static cl::opt< bool > PreserveAlignmentAssumptions("preserve-alignment-assumptions-during-inlining", cl::init(false), cl::Hidden, cl::desc("Convert align attributes to assumptions during inlining."))
static void HandleInlinedLandingPad(InvokeInst *II, BasicBlock *FirstNewBlock, ClonedCodeInfo &InlinedCodeInfo)
If we inlined an invoke site, we need to convert calls in the body of the inlined function into invok...
static Value * getUnwindDestTokenHelper(Instruction *EHPad, UnwindDestMemoTy &MemoMap)
Helper for getUnwindDestToken that does the descendant-ward part of the search.
static void updateCallProfile(Function *Callee, const ValueToValueMapTy &VMap, const uint64_t &CalleeEntryCount, const CallBase &TheCall, ProfileSummaryInfo *PSI, BlockFrequencyInfo *CallerBFI)
Update the branch metadata for cloned call instructions.
static cl::opt< bool > UseNoAliasIntrinsic("use-noalias-intrinsic-during-inlining", cl::Hidden, cl::init(true), cl::desc("Use the llvm.experimental.noalias.scope.decl " "intrinsic during inlining."))
static void propagateAllocTokenMetadata(Function *CalledFunc, CallBase &CB, const ValueMap< const Value *, WeakTrackingVH > &VMap, ClonedCodeInfo &InlinedFunctionInfo)
When inlining a call that carries !alloc_token metadata, propagate that metadata onto calls exposed b...
static DebugLoc inlineDebugLoc(DebugLoc OrigDL, DILocation *InlinedAt, LLVMContext &Ctx, DenseMap< const MDNode *, MDNode * > &IANodes, SmallDenseMap< const DILocation *, DILocation *, 16 > &InlineLocs)
Returns a DebugLoc for a new DILocation which is a clone of OrigDL inlined at InlinedAt.
static void PropagateCallSiteMetadata(CallBase &CB, Function::iterator FStart, Function::iterator FEnd)
When inlining a call site that has !llvm.mem.parallel_loop_access, !llvm.access.group,...
static std::pair< std::vector< int64_t >, std::vector< int64_t > > remapIndices(Function &Caller, BasicBlock *StartBB, PGOContextualProfile &CtxProf, uint32_t CalleeCounters, uint32_t CalleeCallsites)
static AttrBuilder IdentifyValidPoisonGeneratingAttributes(CallBase &CB)
static void updateMemprofMetadata(CallBase *CI, const std::vector< Metadata * > &MIBList, OptimizationRemarkEmitter *ORE)
static void updateCallerBFI(BasicBlock *CallSiteBlock, const ValueToValueMapTy &VMap, BlockFrequencyInfo *CallerBFI, BlockFrequencyInfo *CalleeBFI, const BasicBlock &CalleeEntryBlock)
Update the block frequencies of the caller after a callee has been inlined.
static void AddReturnAttributes(CallBase &CB, ValueToValueMapTy &VMap, ClonedCodeInfo &InlinedFunctionInfo)
static void HandleByValArgumentInit(Type *ByValType, Value *Dst, Value *Src, MaybeAlign SrcAlign, Module *M, BasicBlock *InsertBlock, InlineFunctionInfo &IFI, Function *CalledFunc)
static bool MayContainThrowingOrExitingCallAfterCB(CallBase *Begin, ReturnInst *End)
static cl::opt< bool > EnableNoAliasConversion("enable-noalias-to-md-conversion", cl::init(true), cl::Hidden, cl::desc("Convert noalias attributes to metadata during inlining."))
static void AddAliasScopeMetadata(CallBase &CB, ValueToValueMapTy &VMap, const DataLayout &DL, AAResults *CalleeAAR, ClonedCodeInfo &InlinedFunctionInfo)
If the inlined function has noalias arguments, then add new alias scopes for each noalias argument,...
static IntrinsicInst * getConvergenceEntry(BasicBlock &BB)
static void HandleInlinedEHPad(InvokeInst *II, BasicBlock *FirstNewBlock, ClonedCodeInfo &InlinedCodeInfo)
If we inlined an invoke site, we need to convert calls in the body of the inlined function into invok...
static void inlineRetainOrClaimRVCalls(CallBase &CB, objcarc::ARCInstKind RVCallKind, const SmallVectorImpl< ReturnInst * > &Returns)
An operand bundle "clang.arc.attachedcall" on a call indicates the call result is implicitly consumed...
static void fixupAssignments(Function::iterator Start, Function::iterator End)
Update inlined instructions' DIAssignID metadata.
static void propagateMemProfHelper(const CallBase *OrigCall, CallBase *ClonedCall, MDNode *InlinedCallsiteMD, OptimizationRemarkEmitter *ORE)
static bool allocaWouldBeStaticInEntry(const AllocaInst *AI)
Return the result of AI->isStaticAlloca() if AI were moved to the entry block.
static bool isUsedByLifetimeMarker(Value *V)
static void removeMemProfMetadata(CallBase *Call)
static Value * HandleByValArgument(Type *ByValType, Value *Arg, Instruction *TheCall, const Function *CalledFunc, InlineFunctionInfo &IFI, MaybeAlign ByValAlignment)
When inlining a call site that has a byval argument, we have to make the implicit memcpy explicit by ...
static void AddAlignmentAssumptions(CallBase &CB, InlineFunctionInfo &IFI)
If the inlined function has non-byval align arguments, then add @llvm.assume-based alignment assumpti...
static void trackInlinedStores(Function::iterator Start, Function::iterator End, const CallBase &CB)
static cl::opt< unsigned > InlinerAttributeWindow("max-inst-checked-for-throw-during-inlining", cl::Hidden, cl::desc("the maximum number of instructions analyzed for may throw during " "attribute inference in inlined body"), cl::init(4))
static void AddParamAndFnBasicAttributes(const CallBase &CB, ValueToValueMapTy &VMap, ClonedCodeInfo &InlinedFunctionInfo)
static bool haveCommonPrefix(MDNode *MIBStackContext, MDNode *CallsiteStackContext)
static void PropagateOperandBundles(Function::iterator InlinedBB, Instruction *CallSiteEHPad)
Bundle operands of the inlined function must be added to inlined call sites.
static bool hasLifetimeMarkers(AllocaInst *AI)
const AbstractManglingParser< Derived, Alloc >::OperatorInfo AbstractManglingParser< Derived, Alloc >::Ops[]
#define F(x, y, z)
Definition MD5.cpp:54
#define I(x, y, z)
Definition MD5.cpp:57
Load MIR Sample Profile
This file contains the declarations for metadata subclasses.
ConstantRange Range(APInt(BitWidth, Low), APInt(BitWidth, High))
uint64_t IntrinsicInst * II
This file defines common analysis utilities used by the ObjC ARC Optimizer.
This file defines ARC utility functions which are used by various parts of the compiler.
This file contains the declarations for profiling metadata utility functions.
Func MI getDebugLoc()))
This file contains some templates that are useful if you are working with the STL at all.
This file implements a set that has insertion order iteration characteristics.
This file defines the SmallPtrSet class.
This file defines the SmallVector class.
This file contains some functions that are useful when dealing with strings.
#define LLVM_DEBUG(...)
Definition Debug.h:119
static Value * getParentPad(Value *EHPad)
LLVM_ABI MemoryEffects getMemoryEffects(const CallBase *Call)
Return the behavior of the given call site.
Class for arbitrary precision integers.
Definition APInt.h:78
an instruction to allocate memory on the stack
bool isSwiftError() const
Return true if this alloca is used as a swifterror argument to a call.
PointerType * getType() const
Overload to return most specific pointer type.
bool isUsedWithInAlloca() const
Return true if this alloca is used as an inalloca argument to a call.
LLVM_ABI std::optional< TypeSize > getAllocationSize(const DataLayout &DL) const
Get allocation size in bytes.
const Value * getArraySize() const
Get the number of elements allocated.
This class represents an incoming formal argument to a Function.
Definition Argument.h:32
unsigned getArgNo() const
Return the index of this formal argument in its containing function.
Definition Argument.h:50
A cache of @llvm.assume calls within a function.
LLVM_ABI void registerAssumption(AssumeInst *CI)
Add an @llvm.assume intrinsic to this function's cache.
An instruction that atomically checks whether a specified value is in a memory location,...
an instruction that atomically reads a memory location, combines it with another value,...
static LLVM_ABI AttributeSet get(LLVMContext &C, const AttrBuilder &B)
Functions, function parameters, and return types can have attributes to indicate how they should be t...
Definition Attributes.h:106
LLVM_ABI const ConstantRange & getRange() const
Returns the value of the range attribute.
LLVM_ABI FPClassTest getNoFPClass() const
Return the FPClassTest for nofpclass.
AttrKind
This enumeration lists the attributes that can be associated with parameters, function results,...
Definition Attributes.h:125
bool isValid() const
Return true if the attribute is any kind of attribute.
Definition Attributes.h:263
LLVM Basic Block Representation.
Definition BasicBlock.h:62
iterator end()
Definition BasicBlock.h:459
iterator begin()
Instruction iterator methods.
Definition BasicBlock.h:446
iterator_range< const_phi_iterator > phis() const
Returns a range that iterates over the phis in the basic block.
Definition BasicBlock.h:515
LLVM_ABI BasicBlock * splitBasicBlock(iterator I, const Twine &BBName="")
Split the basic block into two basic blocks at the specified instruction.
const Function * getParent() const
Return the enclosing method, or null if none.
Definition BasicBlock.h:213
LLVM_ABI InstListType::const_iterator getFirstNonPHIIt() const
Returns an iterator to the first instruction in this block that is not a PHINode instruction.
LLVM_ABI SymbolTableList< BasicBlock >::iterator eraseFromParent()
Unlink 'this' from the containing function and delete it.
InstListType::iterator iterator
Instruction iterators...
Definition BasicBlock.h:170
const Instruction * getTerminator() const LLVM_READONLY
Returns the terminator instruction; assumes that the block is well-formed.
Definition BasicBlock.h:237
void splice(BasicBlock::iterator ToIt, BasicBlock *FromBB)
Transfer all instructions from FromBB to this basic block at ToIt.
Definition BasicBlock.h:644
LLVM_ABI void removePredecessor(BasicBlock *Pred, bool KeepOneInputPHIs=false)
Update PHI nodes in this BasicBlock before removal of predecessor Pred.
BlockFrequencyInfo pass uses BlockFrequencyInfoImpl implementation to estimate IR basic block frequen...
LLVM_ABI void setBlockFreq(const BasicBlock *BB, BlockFrequency Freq)
LLVM_ABI void setBlockFreqAndScale(const BasicBlock *ReferenceBB, BlockFrequency Freq, SmallPtrSetImpl< BasicBlock * > &BlocksToScale)
Set the frequency of ReferenceBB to Freq and scale the frequencies of the blocks in BlocksToScale suc...
LLVM_ABI BlockFrequency getBlockFreq(const BasicBlock *BB) const
getblockFreq - Return block frequency.
Base class for all callable instructions (InvokeInst and CallInst) Holds everything related to callin...
void setCallingConv(CallingConv::ID CC)
LLVM_ABI FPClassTest getRetNoFPClass() const
Extract a test mask for disallowed floating-point value classes for the return value.
void setDoesNotThrow()
MaybeAlign getRetAlign() const
Extract the alignment of the return value.
LLVM_ABI void getOperandBundlesAsDefs(SmallVectorImpl< OperandBundleDef > &Defs) const
Return the list of operand bundles attached to this instruction as a vector of OperandBundleDefs.
OperandBundleUse getOperandBundleAt(unsigned Index) const
Return the operand bundle at a specific index.
std::optional< OperandBundleUse > getOperandBundle(StringRef Name) const
Return an operand bundle by name, if present.
Function * getCalledFunction() const
Returns the function called, or null if this is an indirect function invocation or the function signa...
void removeRetAttrs(const AttributeMask &AttrsToRemove)
Removes the attributes from the return value.
bool hasRetAttr(Attribute::AttrKind Kind) const
Determine whether the return value has the given attribute.
unsigned getNumOperandBundles() const
Return the number of operand bundles associated with this User.
CallingConv::ID getCallingConv() const
LLVM_ABI bool paramHasAttr(unsigned ArgNo, Attribute::AttrKind Kind) const
Determine whether the argument or parameter has the given attribute.
User::op_iterator arg_begin()
Return the iterator pointing to the beginning of the argument list.
Attribute getParamAttr(unsigned ArgNo, Attribute::AttrKind Kind) const
Get the attribute of a given kind from a given arg.
bool isByValArgument(unsigned ArgNo) const
Determine whether this argument is passed by value.
static LLVM_ABI CallBase * addOperandBundle(CallBase *CB, uint32_t ID, OperandBundleDef OB, InsertPosition InsertPt=nullptr)
Create a clone of CB with operand bundle OB added.
MaybeAlign getParamAlign(unsigned ArgNo) const
Extract the alignment for a call or parameter (0=unknown).
AttributeSet getRetAttributes() const
Return the return attributes for this call.
Type * getParamByValType(unsigned ArgNo) const
Extract the byval type for a call or parameter.
Value * getCalledOperand() const
void setAttributes(AttributeList A)
Set the attributes for this call.
LLVM_ABI std::optional< ConstantRange > getRange() const
If this return value has a range attribute, return the value range of the argument.
bool doesNotThrow() const
Determine if the call cannot unwind.
Value * getArgOperand(unsigned i) const
uint64_t getRetDereferenceableBytes() const
Extract the number of dereferenceable bytes for a call or parameter (0=unknown).
bool isConvergent() const
Determine if the invoke is convergent.
FunctionType * getFunctionType() const
static LLVM_ABI CallBase * Create(CallBase *CB, ArrayRef< OperandBundleDef > Bundles, InsertPosition InsertPt=nullptr)
Create a clone of CB with a different set of operand bundles and insert it before InsertPt.
uint64_t getRetDereferenceableOrNullBytes() const
Extract the number of dereferenceable_or_null bytes for a call (0=unknown).
iterator_range< User::op_iterator > args()
Iteration adapter for range-for loops.
unsigned arg_size() const
AttributeList getAttributes() const
Return the attributes for this call.
bool hasOperandBundles() const
Return true if this User has any operand bundles.
LLVM_ABI Function * getCaller()
Helper to get the caller (the parent function).
This class represents a function call, abstracting a target machine's calling convention.
void setTailCallKind(TailCallKind TCK)
TailCallKind getTailCallKind() const
static CallInst * Create(FunctionType *Ty, Value *F, const Twine &NameStr="", InsertPosition InsertBefore=nullptr)
bool isMustTailCall() const
static CatchSwitchInst * Create(Value *ParentPad, BasicBlock *UnwindDest, unsigned NumHandlers, const Twine &NameStr="", InsertPosition InsertBefore=nullptr)
static CleanupReturnInst * Create(Value *CleanupPad, BasicBlock *UnwindBB=nullptr, InsertPosition InsertBefore=nullptr)
static ConstantAsMetadata * get(Constant *C)
Definition Metadata.h:537
This class represents a range of values.
LLVM_ABI ConstantRange intersectWith(const ConstantRange &CR, PreferredRangeType Type=Smallest) const
Return the range that results from the intersection of this range with another range.
static LLVM_ABI ConstantTokenNone * get(LLVMContext &Context)
Return the ConstantTokenNone.
This is an important base class in LLVM.
Definition Constant.h:43
const Constant * stripPointerCasts() const
Definition Constant.h:233
static LLVM_ABI InstrProfIncrementInst * getBBInstrumentation(BasicBlock &BB)
Get the instruction instrumenting a BB, or nullptr if not present.
static LLVM_ABI InstrProfCallsite * getCallsiteInstrumentation(CallBase &CB)
Get the instruction instrumenting a callsite, or nullptr if that cannot be found.
const DILocation * getWithoutAtom() const
static bool isPseudoProbeDiscriminator(unsigned Discriminator)
uint64_t getAtomGroup() const
const DILocation * cloneWithDiscriminator(unsigned Discriminator) const
Returns a new DILocation with updated Discriminator.
uint8_t getAtomRank() const
Subprogram description. Uses SubclassData1.
A parsed version of the target data layout string in and methods for querying it.
Definition DataLayout.h:64
Base class for non-instruction debug metadata records that have positions within IR.
Record of a variable value-assignment, aka a non instruction representation of the dbg....
A debug info location.
Definition DebugLoc.h:126
static DebugLoc getCompilerGenerated()
Definition DebugLoc.h:154
LLVM_ABI unsigned getLine() const
Definition DebugLoc.cpp:43
DILocation * get() const
Get the underlying DILocation.
Definition DebugLoc.h:220
LLVM_ABI MDNode * getScope() const
Definition DebugLoc.cpp:53
static LLVM_ABI DebugLoc appendInlinedAt(const DebugLoc &DL, DILocation *InlinedAt, LLVMContext &Ctx, DenseMap< const MDNode *, MDNode * > &Cache)
Rebuild the entire inlined-at chain for this instruction so that the top of the chain now is inlined-...
Definition DebugLoc.cpp:129
static DebugLoc getTemporary()
Definition DebugLoc.h:152
LLVM_ABI unsigned getCol() const
Definition DebugLoc.cpp:48
LLVM_ABI bool isImplicitCode() const
Check if the DebugLoc corresponds to an implicit code.
Definition DebugLoc.cpp:78
static DebugLoc getUnknown()
Definition DebugLoc.h:153
ValueT lookup(const_arg_type_t< KeyT > Val) const
Return the entry for the specified key, or a default constructed value if no such entry exists.
Definition DenseMap.h:250
iterator find(const_arg_type_t< KeyT > Val)
Definition DenseMap.h:223
bool empty() const
Definition DenseMap.h:171
size_type count(const_arg_type_t< KeyT > Val) const
Return 1 if the specified key is in the map, 0 otherwise.
Definition DenseMap.h:219
iterator end()
Definition DenseMap.h:141
std::pair< iterator, bool > insert(const std::pair< KeyT, ValueT > &KV)
Definition DenseMap.h:284
Implements a dense probed hash-table based set.
Definition DenseSet.h:281
void recalculate(ParentType &Func)
recalculate - compute a dominator tree for the given function
Concrete subclass of DominatorTreeBase that is used to compute a normal dominator tree.
Definition Dominators.h:122
unsigned getNumParams() const
Return the number of fixed parameters this function type requires.
const BasicBlock & getEntryBlock() const
Definition Function.h:794
BasicBlockListType::iterator iterator
Definition Function.h:70
Argument * arg_iterator
Definition Function.h:73
FunctionType * getFunctionType() const
Returns the FunctionType for me.
Definition Function.h:212
const BasicBlock & front() const
Definition Function.h:845
iterator_range< arg_iterator > args()
Definition Function.h:877
DISubprogram * getSubprogram() const
Get the attached subprogram.
bool hasGC() const
hasGC/getGC/setGC/clearGC - The name of the garbage collection algorithm to use during code generatio...
Definition Function.h:321
CallingConv::ID getCallingConv() const
getCallingConv()/setCallingConv(CC) - These method get and set the calling convention of this functio...
Definition Function.h:273
bool hasPersonalityFn() const
Check whether this function has a personality function.
Definition Function.h:890
Constant * getPersonalityFn() const
Get the personality function associated with this function.
arg_iterator arg_end()
Definition Function.h:862
arg_iterator arg_begin()
Definition Function.h:853
bool isIntrinsic() const
isIntrinsic - Returns true if the function's name starts with "llvm.".
Definition Function.h:252
MaybeAlign getParamAlign(unsigned ArgNo) const
Definition Function.h:464
std::optional< uint64_t > getEntryCount() const
Get the entry count for this function.
LLVMContext & getContext() const
getContext - Return a reference to the LLVMContext associated with this function.
Definition Function.cpp:356
const std::string & getGC() const
Definition Function.cpp:820
Type * getReturnType() const
Returns the type of the ret val.
Definition Function.h:217
iterator end()
Definition Function.h:840
void setCallingConv(CallingConv::ID CC)
Definition Function.h:277
bool onlyReadsMemory() const
Determine if the function does not access or only reads memory.
Definition Function.cpp:877
bool hasFnAttribute(Attribute::AttrKind Kind) const
Return true if the function has the attribute.
Definition Function.cpp:730
bool hasMetadata() const
Return true if this GlobalObject has any metadata attached to it.
MDNode * getMetadata(unsigned KindID) const
Get the metadata of given kind attached to this GlobalObject.
LLVM_ABI bool isDeclaration() const
Return true if the primary definition of this global value is outside of the current translation unit...
Definition Globals.cpp:408
LLVM_ABI CallInst * CreateLifetimeStart(Value *Ptr)
Create a lifetime.start intrinsic.
This provides a uniform API for creating instructions and inserting them into a basic block: either a...
Definition IRBuilder.h:2910
This class captures the data input to the InlineFunction call, and records the auxiliary results prod...
Definition Cloning.h:259
Value * ConvergenceControlToken
Definition Cloning.h:284
ProfileSummaryInfo * PSI
Definition Cloning.h:272
bool UpdateProfile
Update profile for callee as well as cloned version.
Definition Cloning.h:289
Instruction * CallSiteEHPad
Definition Cloning.h:285
function_ref< AssumptionCache &(Function &)> GetAssumptionCache
If non-null, InlineFunction will update the callgraph to reflect the changes it makes.
Definition Cloning.h:271
BlockFrequencyInfo * CalleeBFI
Definition Cloning.h:273
SmallVector< AllocaInst *, 4 > StaticAllocas
InlineFunction fills this in with all static allocas that get copied into the caller.
Definition Cloning.h:277
BlockFrequencyInfo * CallerBFI
Definition Cloning.h:273
SmallVector< CallBase *, 8 > InlinedCallSites
All of the new call sites inlined into the caller.
Definition Cloning.h:282
InlineResult is basically true or false.
Definition InlineCost.h:181
static InlineResult success()
Definition InlineCost.h:186
static InlineResult failure(const char *Reason)
Definition InlineCost.h:187
This represents the llvm.instrprof.callsite intrinsic.
This represents the llvm.instrprof.increment intrinsic.
const DebugLoc & getDebugLoc() const
Return the debug location for this node as a DebugLoc.
bool hasMetadata() const
Return true if this instruction has any metadata attached to it.
LLVM_ABI void insertBefore(InstListType::iterator InsertPos)
Insert an unlinked instruction into a basic block immediately before the specified position.
LLVM_ABI InstListType::iterator eraseFromParent()
This method unlinks 'this' from the containing basic block and deletes it.
LLVM_ABI const Function * getFunction() const
Return the function this instruction belongs to.
MDNode * getMetadata(unsigned KindID) const
Get the metadata of given kind attached to this Instruction.
LLVM_ABI void setMetadata(unsigned KindID, MDNode *Node)
Set the metadata of the specified kind to the specified node.
void setDebugLoc(DebugLoc Loc)
Set the debug location information for this instruction.
LLVM_ABI const DataLayout & getDataLayout() const
Get the data layout of the module this instruction belongs to.
A wrapper class for inspecting calls to intrinsic functions.
static LLVM_ABI bool mayLowerToFunctionCall(Intrinsic::ID IID)
Check if the intrinsic might lower into a regular function call in the course of IR transformations.
Invoke instruction.
This is an important class for using LLVM in a threaded context.
Definition LLVMContext.h:68
The landingpad instruction holds all of the information necessary to generate correct exception handl...
bool isCleanup() const
Return 'true' if this landingpad instruction is a cleanup.
unsigned getNumClauses() const
Get the number of clauses for this landing pad.
Constant * getClause(unsigned Idx) const
Get the value of the clause at index Idx.
An instruction for reading from memory.
MDNode * createAnonymousAliasScope(MDNode *Domain, StringRef Name=StringRef())
Return metadata appropriate for an alias scope root node.
Definition MDBuilder.h:195
MDNode * createAnonymousAliasScopeDomain(StringRef Name=StringRef())
Return metadata appropriate for an alias scope domain node.
Definition MDBuilder.h:188
Metadata node.
Definition Metadata.h:1069
static MDTuple * getDistinct(LLVMContext &Context, ArrayRef< Metadata * > MDs)
Definition Metadata.h:1575
void replaceAllUsesWith(Metadata *MD)
RAUW a temporary.
Definition Metadata.h:1266
static LLVM_ABI MDNode * concatenate(MDNode *A, MDNode *B)
Methods for metadata merging.
bool isTemporary() const
Definition Metadata.h:1253
ArrayRef< MDOperand > operands() const
Definition Metadata.h:1424
op_iterator op_end() const
Definition Metadata.h:1420
static MDTuple * get(LLVMContext &Context, ArrayRef< Metadata * > MDs)
Definition Metadata.h:1567
unsigned getNumOperands() const
Return number of MDNode operands.
Definition Metadata.h:1432
op_iterator op_begin() const
Definition Metadata.h:1416
LLVMContext & getContext() const
Definition Metadata.h:1233
static LLVM_ABI MDString * get(LLVMContext &Context, StringRef Str)
Definition Metadata.cpp:615
static TempMDTuple getTemporary(LLVMContext &Context, ArrayRef< Metadata * > MDs)
Return a temporary node.
Definition Metadata.h:1533
bool onlyAccessesInaccessibleMem() const
Whether this function only (at most) accesses inaccessible memory.
Definition ModRef.h:265
bool onlyAccessesArgPointees() const
Whether this function only (at most) accesses argument memory.
Definition ModRef.h:255
Root of the metadata hierarchy.
Definition Metadata.h:64
A Module instance is used to store all the information related to an LLVM module.
Definition Module.h:68
The optimization diagnostic interface.
The instrumented contextual profile, produced by the CtxProfAnalysis.
LLVM_ABI bool isInSpecializedModule() const
LLVM_ABI void update(Visitor, const Function &F)
uint32_t getNumCounters(const Function &F) const
uint32_t allocateNextCounterIndex(const Function &F)
uint32_t getNumCallsites(const Function &F) const
uint32_t allocateNextCallsiteIndex(const Function &F)
A node (context) in the loaded contextual profile, suitable for mutation during IPO passes.
void addIncoming(Value *V, BasicBlock *BB)
Add an incoming value to the end of the PHI list.
static PHINode * Create(Type *Ty, unsigned NumReservedValues, const Twine &NameStr="", InsertPosition InsertBefore=nullptr)
Constructors - NumReservedValues is a hint for the number of incoming edges that this phi node will h...
static LLVM_ABI PointerType * get(LLVMContext &C, unsigned AddressSpace)
This constructs an opaque pointer to an object in a numbered address space.
Definition Type.cpp:911
static LLVM_ABI PoisonValue * get(Type *T)
Static factory methods - Return an 'poison' object of the specified type.
Analysis providing profile information.
LLVM_ABI std::optional< uint64_t > getProfileCount(const CallBase &CallInst, BlockFrequencyInfo *BFI) const
Returns the profile count for CallInst.
Resume the propagation of an exception.
Return a value (possibly void), from a function.
bool remove(const value_type &X)
Remove an item from the set vector.
Definition SetVector.h:187
bool contains(const_arg_type key) const
Check if the SetVector contains the given key.
Definition SetVector.h:258
bool insert(const value_type &X)
Insert a new element into the SetVector.
Definition SetVector.h:157
size_type count(ConstPtrType Ptr) const
count - Return 1 if the specified pointer is in the set, 0 otherwise.
void insert_range(Range &&R)
std::pair< iterator, bool > insert(PtrType Ptr)
Inserts Ptr if and only if there is no element in the container equal to Ptr.
bool contains(ConstPtrType Ptr) const
SmallPtrSet - This class implements a set which is optimized for holding SmallSize or less elements.
A SetVector that performs no allocations if smaller than a certain size.
Definition SetVector.h:345
This class consists of common code factored out of the SmallVector class to reduce code duplication b...
reference emplace_back(ArgTypes &&... Args)
void reserve(size_type N)
void append(ItTy in_start, ItTy in_end)
Add the specified range to the end of the SmallVector.
void push_back(const T &Elt)
This is a 'vector' (really, a variable-sized array), optimized for the case when the array is small.
An instruction for storing to memory.
Represent a constant reference to a string, i.e.
Definition StringRef.h:56
The instances of the Type class are immutable: once they are created, they are never changed.
Definition Type.h:46
static LLVM_ABI IntegerType * getInt64Ty(LLVMContext &C)
Definition Type.cpp:310
LLVM_ABI unsigned getPointerAddressSpace() const
Get the address space of this pointer or pointer vector type.
bool isVoidTy() const
Return true if this is 'void'.
Definition Type.h:141
Unconditional Branch instruction.
void setSuccessor(BasicBlock *NewSucc)
static UncondBrInst * Create(BasicBlock *Target, InsertPosition InsertBefore=nullptr)
BasicBlock * getSuccessor(unsigned i=0) const
Value * getOperand(unsigned i) const
Definition User.h:207
This class represents the va_arg llvm instruction, which returns an argument of the specified type gi...
static LLVM_ABI ValueAsMetadata * get(Value *V)
Definition Metadata.cpp:510
See the file comment.
Definition ValueMap.h:84
ValueT lookup(const KeyT &Val) const
lookup - Return the entry for the specified key, or a default constructed value if no such entry exis...
Definition ValueMap.h:167
size_type count(const KeyT &Val) const
Return 1 if the specified key is in the map, 0 otherwise.
Definition ValueMap.h:156
iterator begin()
Definition ValueMap.h:138
iterator end()
Definition ValueMap.h:139
ValueMapIteratorImpl< MapT, const Value *, false > iterator
Definition ValueMap.h:135
LLVM Value Representation.
Definition Value.h:75
Type * getType() const
All values are typed, get the type of this value.
Definition Value.h:255
LLVM_ABI void replaceAllUsesWith(Value *V)
Change all uses of this to point to a new Value.
Definition Value.cpp:553
LLVMContext & getContext() const
All values hold a context through their type.
Definition Value.h:258
iterator_range< user_iterator > users()
Definition Value.h:426
bool use_empty() const
Definition Value.h:346
LLVM_ABI StringRef getName() const
Return a constant reference to the value's name.
Definition Value.cpp:319
LLVM_ABI void takeName(Value *V)
Transfer the name from V to this value.
Definition Value.cpp:400
std::pair< iterator, bool > insert(const ValueT &V)
Definition DenseSet.h:209
const ParentTy * getParent() const
Definition ilist_node.h:34
self_iterator getIterator()
Definition ilist_node.h:123
Class to build a trie of call stack contexts for a particular profiled allocation call,...
Helper class to iterate through stack ids in both metadata (memprof MIB and callsite) and the corresp...
CallInst * Call
Changed
This provides a very simple, boring adaptor for a begin and end iterator into a range type.
#define llvm_unreachable(msg)
Marks that the current location is not supposed to be reachable.
CallingConv Namespace - This namespace contains an enum with a value for the well-known calling conve...
Definition CallingConv.h:21
@ BasicBlock
Various leaf nodes.
Definition ISDOpcodes.h:81
LLVM_ABI Function * getOrInsertDeclaration(Module *M, ID id, ArrayRef< Type * > OverloadTys={})
Look up the Function declaration of the intrinsic id in the Module M.
bool match(Val *V, const Pattern &P)
match_immconstant_ty m_ImmConstant()
Match an arbitrary immediate Constant and ignore it.
LLVM_ABI void trackAssignments(Function::iterator Start, Function::iterator End, const StorageToVarsMap &Vars, const DataLayout &DL, bool DebugPrints=false)
Track assignments to Vars between Start and End.
LLVM_ABI void remapAssignID(DenseMap< DIAssignID *, DIAssignID * > &Map, Instruction &I)
Replace DIAssignID uses and attachments with IDs from Map.
SmallVector< DbgVariableRecord * > getDVRAssignmentMarkers(const Instruction *Inst)
Return a range of dbg_assign records for which Inst performs the assignment they encode.
Definition DebugInfo.h:205
DenseMap< const AllocaInst *, SmallSetVector< VarRecord, 2 > > StorageToVarsMap
Map of backing storage to a set of variables that are stored to it.
Definition DebugInfo.h:278
initializer< Ty > init(const Ty &Val)
std::enable_if_t< detail::IsValidPointer< X, Y >::value, X * > dyn_extract(Y &&MD)
Extract a Value from Metadata, if any.
Definition Metadata.h:696
LLVM_ABI MDNode * getMIBStackNode(const MDNode *MIB)
Returns the stack node from an MIB metadata node.
constexpr double phi
ARCInstKind getAttachedARCFunctionKind(const CallBase *CB)
This function returns the ARCInstKind of the function attached to operand bundle clang_arc_attachedca...
Definition ObjCARCUtil.h:75
ARCInstKind
Equivalence classes of instructions in the ARC Model.
@ None
anything that is inert from an ARC perspective.
@ RetainRV
objc_retainAutoreleasedReturnValue
std::optional< Function * > getAttachedARCFunction(const CallBase *CB)
This function returns operand bundle clang_arc_attachedcall's argument, which is the address of the A...
Definition ObjCARCUtil.h:43
bool isRetainOrClaimRV(ARCInstKind Kind)
Check whether the function is retainRV/unsafeClaimRV.
Definition ObjCARCUtil.h:67
const Value * GetRCIdentityRoot(const Value *V)
The RCIdentity root of a value V is a dominating value U for which retaining or releasing U is equiva...
bool hasAttachedCallOpBundle(const CallBase *CB)
Definition ObjCARCUtil.h:29
This is an optimization pass for GlobalISel generic memory operations.
UnaryFunction for_each(R &&Range, UnaryFunction F)
Provide wrappers to std::for_each which take ranges instead of having to pass begin/end explicitly.
Definition STLExtras.h:1732
auto size(R &&Range, std::enable_if_t< std::is_base_of< std::random_access_iterator_tag, typename std::iterator_traits< decltype(Range.begin())>::iterator_category >::value, void > *=nullptr)
Get the size of a range.
Definition STLExtras.h:1669
LLVM_ABI BasicBlock * changeToInvokeAndSplitBasicBlock(CallInst *CI, BasicBlock *UnwindEdge, DomTreeUpdater *DTU=nullptr)
Convert the CallInst to InvokeInst with the specified unwind edge basic block.
Definition Local.cpp:2632
decltype(auto) dyn_cast(const From &Val)
dyn_cast<X> - Return the argument parameter cast to the specified type.
Definition Casting.h:643
auto successors(const MachineBasicBlock *BB)
LLVM_ABI void CloneAndPruneFunctionInto(Function *NewFunc, const Function *OldFunc, ValueToValueMapTy &VMap, bool ModuleLevelChanges, SmallVectorImpl< ReturnInst * > &Returns, const char *NameSuffix, ClonedCodeInfo &CodeInfo)
This works exactly like CloneFunctionInto, except that it does some simple constant prop and DCE on t...
iterator_range< T > make_range(T x, T y)
Convenience function for iterating over sub-ranges.
void append_range(Container &C, Range &&R)
Wrapper function to append range R to container C.
Definition STLExtras.h:2208
iterator_range< early_inc_iterator_impl< detail::IterOfRange< RangeT > > > make_early_inc_range(RangeT &&Range)
Make a range that does early increment to allow mutation of the underlying range without disrupting i...
Definition STLExtras.h:633
std::string utostr(uint64_t X, bool isNeg=false)
MemoryEffectsBase< IRMemLocation > MemoryEffects
Summary of how a function affects memory in the program.
Definition ModRef.h:356
bool isa_and_nonnull(const Y &Val)
Definition Casting.h:676
LLVM_ABI InlineResult InlineFunction(CallBase &CB, InlineFunctionInfo &IFI, bool MergeAttributes=false, AAResults *CalleeAAR=nullptr, bool InsertLifetime=true, bool TrackInlineHistory=false, Function *ForwardVarArgsTo=nullptr, OptimizationRemarkEmitter *ORE=nullptr)
This function inlines the called function into the basic block of the caller.
LLVM_ABI bool PointerMayBeCapturedBefore(const Value *V, bool ReturnCaptures, const Instruction *I, const DominatorTree *DT, bool IncludeI=false, unsigned MaxUsesToExplore=0, const LoopInfo *LI=nullptr)
PointerMayBeCapturedBefore - Return true if this pointer value may be captured by the enclosing funct...
LLVM_ABI InlineResult CanInlineCallSite(const CallBase &CB, InlineFunctionInfo &IFI)
Check if it is legal to perform inlining of the function called by CB into the caller at this particu...
bool isScopedEHPersonality(EHPersonality Pers)
Returns true if this personality uses scope-style EH IR instructions: catchswitch,...
LLVM_ABI Value * simplifyInstruction(Instruction *I, const SimplifyQuery &Q)
See if we can compute a simplified version of this instruction.
auto dyn_cast_or_null(const Y &Val)
Definition Casting.h:753
Align getKnownAlignment(Value *V, const DataLayout &DL, const Instruction *CxtI=nullptr, AssumptionCache *AC=nullptr, const DominatorTree *DT=nullptr)
Try to infer an alignment for the specified pointer.
Definition Local.h:240
LLVM_ABI Align getOrEnforceKnownAlignment(Value *V, MaybeAlign PrefAlign, const DataLayout &DL, const Instruction *CxtI=nullptr, AssumptionCache *AC=nullptr, const DominatorTree *DT=nullptr)
Try to ensure that the alignment of V is at least PrefAlign bytes.
Definition Local.cpp:1558
FPClassTest
Floating-point class tests, supported by 'is_fpclass' intrinsic.
LLVM_ABI EHPersonality classifyEHPersonality(const Value *Pers)
See if the given exception handling personality function is one that we understand.
class LLVM_GSL_OWNER SmallVector
Forward declaration of SmallVector so that calculateSmallVectorDefaultInlinedElements can reference s...
bool isa(const From &Val)
isa<X> - Return true if the parameter to the template is an instance of one of the template type argu...
Definition Casting.h:547
LLVM_ABI unsigned changeToUnreachable(Instruction *I, bool PreserveLCSSA=false, DomTreeUpdater *DTU=nullptr, MemorySSAUpdater *MSSAU=nullptr)
Insert an unreachable instruction before the specified instruction, making it and the rest of the cod...
Definition Local.cpp:2543
LLVM_ABI raw_fd_ostream & errs()
This returns a reference to a raw_ostream for standard error.
IRBuilder(LLVMContext &, FolderTy, InserterTy, MDNode *, ArrayRef< OperandBundleDef >) -> IRBuilder< FolderTy, InserterTy >
LLVM_ABI bool salvageKnowledge(Instruction *I, AssumptionCache *AC=nullptr, DominatorTree *DT=nullptr)
Calls BuildAssumeFromInst and if the resulting llvm.assume is valid insert if before I.
LLVM_ABI void updateProfileCallee(Function *Callee, int64_t EntryDelta, const ValueMap< const Value *, WeakTrackingVH > *VMap=nullptr)
Updates profile information by adjusting the entry count by adding EntryDelta then scaling callsite i...
OperandBundleDefT< Value * > OperandBundleDef
Definition AutoUpgrade.h:34
LLVM_ABI bool isAssignmentTrackingEnabled(const Module &M)
Return true if assignment tracking is enabled for module M.
LLVM_ABI void InlineFunctionImpl(CallBase &CB, InlineFunctionInfo &IFI, bool MergeAttributes=false, AAResults *CalleeAAR=nullptr, bool InsertLifetime=true, bool TrackInlineHistory=false, Function *ForwardVarArgsTo=nullptr, OptimizationRemarkEmitter *ORE=nullptr)
This should generally not be used, use InlineFunction instead.
LLVM_ABI MDNode * uniteAccessGroups(MDNode *AccGroups1, MDNode *AccGroups2)
Compute the union of two access-group lists.
DWARFExpression::Operation Op
bool isAsynchronousEHPersonality(EHPersonality Pers)
Returns true if this personality function catches asynchronous exceptions.
ValueMap< const Value *, WeakTrackingVH > ValueToValueMapTy
LLVM_ABI bool isGuaranteedToTransferExecutionToSuccessor(const Instruction *I)
Return true if this function can prove that the instruction I will always transfer execution to one o...
LLVM_ABI bool isEscapeSource(const Value *V)
Returns true if the pointer is one which would have been considered an escape by isNotCapturedBefore.
auto count_if(R &&Range, UnaryPredicate P)
Wrapper function around std::count_if to count the number of times an element satisfying a given pred...
Definition STLExtras.h:2019
decltype(auto) cast(const From &Val)
cast<X> - Return the argument parameter cast to the specified type.
Definition Casting.h:559
void erase_if(Container &C, UnaryPredicate P)
Provide a container algorithm similar to C++ Library Fundamentals v2's erase_if which is equivalent t...
Definition STLExtras.h:2192
bool is_contained(R &&Range, const E &Element)
Returns true if Element is found in Range.
Definition STLExtras.h:1947
bool capturesAnything(CaptureComponents CC)
Definition ModRef.h:379
bool pred_empty(const BasicBlock *BB)
Definition CFG.h:107
LLVM_ABI const Value * getUnderlyingObject(const Value *V, unsigned MaxLookup=MaxLookupSearchDepth)
This method strips off any GEP address adjustments, pointer casts or llvm.threadlocal....
LLVM_ABI void getUnderlyingObjects(const Value *V, SmallVectorImpl< const Value * > &Objects, const LoopInfo *LI=nullptr, unsigned MaxLookup=MaxLookupSearchDepth)
This method is similar to getUnderlyingObject except that it can look through phi and select instruct...
LLVM_ABI void updateLoopMetadataDebugLocations(Instruction &I, function_ref< Metadata *(Metadata *)> Updater)
Update the debug locations contained within the MD_loop metadata attached to the instruction I,...
LLVM_ABI bool isIdentifiedObject(const Value *V)
Return true if this pointer refers to a distinct and identifiable object.
LLVM_ABI void scaleProfData(Instruction &I, uint64_t S, uint64_t T)
Scaling the profile data attached to 'I' using the ratio of S/T.
void swap(llvm::BitVector &LHS, llvm::BitVector &RHS)
Implement std::swap in terms of BitVector swap.
Definition BitVector.h:880
This struct is a compact representation of a valid (non-zero power of two) alignment.
Definition Alignment.h:39
This struct can be used to capture information about code being cloned, while it is being cloned.
Definition Cloning.h:69
bool ContainsDynamicAllocas
This is set to true if the cloned code contains a 'dynamic' alloca.
Definition Cloning.h:80
bool isSimplified(const Value *From, const Value *To) const
Definition Cloning.h:98
bool ContainsCalls
This is set to true if the cloned code contains a normal call instruction.
Definition Cloning.h:71
bool ContainsMemProfMetadata
This is set to true if there is memprof related metadata (memprof or callsite metadata) in the cloned...
Definition Cloning.h:75
SmallSetVector< const Value *, 4 > OriginallyIndirectCalls
Definition Cloning.h:94
std::vector< WeakTrackingVH > OperandBundleCallSites
All cloned call sites that have operand bundles attached are appended to this vector.
Definition Cloning.h:85
This struct is a compact representation of a valid (power of two) or undefined (0) alignment.
Definition Alignment.h:106
Align valueOrOne() const
For convenience, returns a valid alignment or 1 if undefined.
Definition Alignment.h:130
static Instruction * tryGetVTableInstruction(CallBase *CB)
static std::optional< uint32_t > extractDwarfBaseDiscriminator(uint32_t Value)
Definition PseudoProbe.h:81
Helper struct for trackAssignments, below.
Definition DebugInfo.h:246