| /freebsd-13.1/contrib/llvm-project/llvm/lib/Analysis/ |
| H A D | InlineAdvisor.cpp | 77 Function &Caller = *CB.getCaller(); in getDefaultInlineAdvice() 112 FAM.getResult<OptimizationRemarkEmitterAnalysis>(*CB.getCaller())); in getAdviceImpl() 118 : Advisor(Advisor), Caller(CB.getCaller()), Callee(CB.getCalledFunction()), in InlineAdvice() 332 Function *Caller = CB.getCaller(); in shouldInline() 508 bool Advice = CB.getCaller() != CB.getCalledFunction() && in getAdvice() 515 return FAM.getResult<OptimizationRemarkEmitterAnalysis>(*CB.getCaller()); in getCallerORE()
|
| H A D | HeatUtils.cpp | 44 if (CI->getCaller() == (&callerFunction)) { in getNumOfCalls()
|
| H A D | ReplayInlineAdvisor.cpp | 63 Function &Caller = *CB.getCaller(); in getAdviceImpl()
|
| H A D | MLInlineAdvisor.cpp | 141 Function *Caller = Advice.getCaller(); in onSuccessfulInlining() 184 auto &Caller = *CB.getCaller(); in getAdviceImpl()
|
| H A D | ProfileSummaryInfo.cpp | 372 return hasSampleProfile() && CB.getCaller()->hasProfileData(); in isColdCallSite()
|
| H A D | InlineCost.cpp | 1655 CallerBFI->getBlockFreq(&(Call.getCaller()->getEntryBlock())); in isColdCallSite() 1694 Function *Caller = Call.getCaller(); in updateThreshold() 2777 Function *Caller = Call.getCaller(); in getAttributeBasedInliningDecision() 2832 << "... (caller:" << Call.getCaller()->getName() in getInlineCost() 3030 << "... (caller:" << CI->getCaller()->getName() << ")\n"; in run()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Transforms/IPO/ |
| H A D | InlineSimple.cpp | 59 const auto &BBs = CB.getCaller()->getBasicBlockList(); in getInlineCost() 65 OptimizationRemarkEmitter ORE(CB.getCaller()); in getInlineCost()
|
| H A D | Inliner.cpp | 253 Function *Caller = CB.getCaller(); in inlineCallIfPossible() 355 << NV("Caller", CB->getCaller()) in inlineCallsImpl() 397 Function *Caller = CB.getCaller(); in inlineCallsImpl() 896 << NV("Caller", CB->getCaller()) in run() 930 Function &F = *Calls->front().first->getCaller(); in run() 949 while (!Calls->empty() && Calls->front().first->getCaller() == &F) { in run() 986 &FAM.getResult<BlockFrequencyAnalysis>(*(CB->getCaller())), in run() 990 InlineFunction(*CB, IFI, &FAM.getResult<AAManager>(*CB->getCaller())); in run() 1040 return Call.first->getCaller() == &Callee; in run()
|
| H A D | AlwaysInliner.cpp | 67 Function *Caller = CB->getCaller(); in run() 81 &FAM.getResult<BlockFrequencyAnalysis>(*(CB->getCaller())), in run()
|
| H A D | SyntheticCountsPropagation.cpp | 114 Function *Caller = CB.getCaller(); in run()
|
| H A D | PartialInlining.cpp | 783 Function *Caller = CB.getCaller(); in shouldPartialInline() 978 Function *Caller = CB->getCaller(); in computeCallsiteToProfCountMap() 1425 OptimizationRemarkEmitter CallerORE(CB->getCaller()); in tryPartialInline() 1433 << ore::NV("Caller", CB->getCaller()); in tryPartialInline()
|
| H A D | OpenMPOpt.cpp | 1022 Function *OutlinedFn = MergableCIs.front()->getCaller(); in mergeParallelRegions() 1222 << CI->getCaller()->getName() << "\n"); in deleteParallelRegions() 1463 auto *F = RuntimeCall.getCaller(); in splitTargetDataBeginRTC() 1628 assert(CI->getCaller() == &F && "Unexpected call!"); in deduplicateRuntimeCalls() 2688 << CB->getCaller()->getName() << " with " in manifest() 3623 *this, IRPosition::function(*CB.getCaller()), DepClassTy::OPTIONAL); in updateImpl() 3625 *this, IRPosition::function(*CB.getCaller()), DepClassTy::OPTIONAL); in updateImpl()
|
| H A D | Attributor.cpp | 1610 (!ToBeDeletedInsts.count(CI) || !isRunOn(*CI->getCaller()))) in cleanupIR() 1621 if (CB->isCallee(U) && !isRunOn(*CB->getCaller())) in cleanupIR() 2003 return !FnMap.lookup(CB->getCaller()); in internalizeFunctions() 2826 auto *CallerF = CB->getCaller(); in runAttributorOnFunctions() 2846 Functions.count(const_cast<Function *>(CB->getCaller())); in runAttributorOnFunctions()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Transforms/Utils/ |
| H A D | CallGraphUpdater.cpp | 148 Function *Caller = OldCS.getCaller(); in replaceCallSite() 165 Function *Caller = CS.getCaller(); in removeCallSite()
|
| H A D | CallPromotionUtils.cpp | 535 Module *M = CB.getCaller()->getParent(); in tryPromoteCall()
|
| H A D | InlineFunction.cpp | 1274 AssumptionCache *AC = &IFI.GetAssumptionCache(*CB.getCaller()); in AddAlignmentAssumptions() 1275 auto &DL = CB.getCaller()->getParent()->getDataLayout(); in AddAlignmentAssumptions() 1287 DT.recalculate(*CB.getCaller()); in AddAlignmentAssumptions() 1313 const Function *Caller = CB.getCaller(); in UpdateCallGraphAfterInlining()
|
| /freebsd-13.1/contrib/llvm-project/clang/lib/AST/Interp/ |
| H A D | Frame.h | 33 virtual Frame *getCaller() const = 0;
|
| H A D | InterpFrame.h | 51 Frame *getCaller() const override;
|
| H A D | State.cpp | 130 for (Frame *F = Top; F != Bottom; F = F->getCaller(), ++CallIdx) { in addCallStack()
|
| H A D | InterpFrame.cpp | 139 Frame *InterpFrame::getCaller() const { in getCaller() function in InterpFrame
|
| /freebsd-13.1/contrib/llvm-project/llvm/include/llvm/Analysis/ |
| H A D | MLInlineAdvisor.h | 91 Function *getCaller() const { return Caller; } in getCaller() function
|
| /freebsd-13.1/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/ |
| H A D | ReturnValueChecker.cpp | 129 CallEventRef<> Call = CMgr.getCaller(SFC, State); in checkEndFunction()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Target/AMDGPU/ |
| H A D | AMDGPUPropagateAttributes.cpp | 258 Function *Caller = CI->getCaller(); in process()
|
| /freebsd-13.1/contrib/llvm-project/llvm/include/llvm/IR/ |
| H A D | InstrTypes.h | 1409 Function *getCaller(); 1410 const Function *getCaller() const { 1411 return const_cast<CallBase *>(this)->getCaller();
|
| /freebsd-13.1/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/ |
| H A D | BugReporterVisitors.cpp | 580 BR.getStateManager().getCallEventManager().getCaller(SCtx, State); in VisitNode() 1088 CallEventRef<> Call = CallMgr.getCaller(CalleeSFC, State); in visitNodeMaybeUnsuppress() 1424 CallEventRef<> Call = CallMgr.getCaller(CE->getCalleeContext(), in VisitNode() 3124 CallEventRef<> Call = CEMgr.getCaller(CEnter->getCalleeContext(), State); in VisitNode()
|