Home
last modified time | relevance | path

Searched refs:getCaller (Results 1 – 25 of 33) sorted by relevance

12

/external/llvm/lib/Transforms/IPO/
DInliner.cpp82 Function *Caller = CS.getCaller(); in InlineCallIfPossible()
226 Function *Caller = CS.getCaller(); in emitAnalysis()
322 Function *Caller = CS.getCaller(); in shouldInline()
342 CS.getCaller()->getName() + " in other contexts")); in shouldInline()
351 CS.getCaller()->getName() + " with cost=" + Twine(IC.getCost()) + in shouldInline()
454 Function *Caller = CS.getCaller(); in inlineCalls()
DWholeProgramDevirt.cpp220 Function *F = CS.getCaller(); in emitRemark()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/IPO/
DInliner.cpp272 Function *Caller = CS.getCaller(); in InlineCallIfPossible()
379 Function *Caller = CS.getCaller(); in shouldInline()
516 << NV("Caller", CS.getCaller()) in inlineCallsImpl()
556 Function *Caller = CS.getCaller(); in inlineCallsImpl()
871 << NV("Caller", CS.getCaller()) in run()
907 Function &F = *Calls[i].first.getCaller(); in run()
949 for (; i < (int)Calls.size() && Calls[i].first.getCaller() == &F; ++i) { in run()
981 &FAM.getResult<BlockFrequencyAnalysis>(*(CS.getCaller())), in run()
1045 return Call.first.getCaller() == &Callee; in run()
DInlineSimple.cpp60 const auto &BBs = CS.getCaller()->getBasicBlockList(); in getInlineCost()
66 OptimizationRemarkEmitter ORE(CS.getCaller()); in getInlineCost()
DSyntheticCountsPropagation.cpp113 Function *Caller = CS.getCaller(); in run()
DPartialInlining.cpp764 Function *Caller = CS.getCaller(); in shouldPartialInline()
940 Function *Caller = CS.getCaller(); in computeCallsiteToProfCountMap()
1381 OptimizationRemarkEmitter CallerORE(CS.getCaller()); in tryPartialInline()
1389 << ore::NV("Caller", CS.getCaller()); in tryPartialInline()
DWholeProgramDevirt.cpp286 Function *F = CS.getCaller(); in emitRemark()
888 Attribute FSAttr = CS.getCaller()->getFnAttribute("target-features"); in applyICallBranchFunnel()
/external/swiftshader/third_party/LLVM/lib/Transforms/IPO/
DInliner.cpp80 Function *Caller = CS.getCaller(); in InlineCallIfPossible()
201 Function *Caller = CS.getCaller(); in getInlineThreshold()
234 Function *Caller = CS.getCaller(); in shouldInline()
404 Function *Caller = CS.getCaller(); in runOnSCC()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/AMDGPU/
DAMDGPUInline.cpp107 Function *Caller = CS.getCaller(); in getInlineThreshold()
174 Function *Caller = CS.getCaller(); in getInlineCost()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Analysis/
DProfileSummaryInfo.cpp266 (CS.getCaller()->hasProfileData() || ProfileSampleAccurate || in isColdCallSite()
267 CS.getCaller()->hasFnAttribute("profile-sample-accurate"))); in isColdCallSite()
DInlineCost.cpp813 CallerBFI->getBlockFreq(&(CS.getCaller()->getEntryBlock())); in isColdCallSite()
852 Function *Caller = CS.getCaller(); in updateThreshold()
1990 Function *Caller = CS.getCaller(); in getInlineCost()
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/IR/
DStatepoint.h156 FunTy *getCaller() const { return getCallSite().getCaller(); } in getCaller() function
DCallSite.h267 FunTy *getCaller() const { return (*this)->getParent()->getParent(); } in getCaller() function
640 !NullPointerIsDefined(getCaller(), in isReturnNonNull()
/external/llvm/include/llvm/IR/
DStatepoint.h136 FunTy *getCaller() const { return getCallSite().getCaller(); } in getCaller() function
DCallSite.h242 FunTy *getCaller() const { return (*this)->getParent()->getParent(); } in getCaller() function
/external/swiftshader/third_party/LLVM/include/llvm/Support/
DCallSite.h154 FunTy *getCaller() const { return (*this)->getParent()->getParent(); } in getCaller() function
/external/llvm/lib/Analysis/
DInlineCost.cpp622 Function *Caller = CS.getCaller(); in updateThreshold()
1488 if (!functionsHaveCompatibleAttributes(CS.getCaller(), Callee, CalleeTTI)) in getInlineCost()
1492 if (CS.getCaller()->hasFnAttribute(Attribute::OptimizeNone)) in getInlineCost()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/Utils/
DInlineFunction.cpp1139 AssumptionCache *AC = &(*IFI.GetAssumptionCache)(*CS.getCaller()); in AddAlignmentAssumptions()
1140 auto &DL = CS.getCaller()->getParent()->getDataLayout(); in AddAlignmentAssumptions()
1152 DT.recalculate(*CS.getCaller()); in AddAlignmentAssumptions()
1178 const Function *Caller = CS.getCaller(); in UpdateCallGraphAfterInlining()
/external/clang/lib/StaticAnalyzer/Core/
DBugReporterVisitors.cpp360 CallEventRef<> Call = CallMgr.getCaller(StackFrame, State); in visitNodeMaybeUnsuppress()
515 CallEventRef<> Call = CallMgr.getCaller(CE->getCalleeContext(), in VisitNode()
1659 CallEventRef<> Call = CEMgr.getCaller(CEnter->getCalleeContext(), State); in VisitNode()
DExprEngineCallAndReturn.cpp242 CallEventRef<> Call = CEMgr.getCaller(calleeCtx, state); in processCallExit()
DCallEvent.cpp1058 CallEventManager::getCaller(const StackFrameContext *CalleeCtx, in getCaller() function in CallEventManager
/external/clang/include/clang/StaticAnalyzer/Core/BugReporter/
DPathDiagnostic.h579 const Decl *getCaller() const { return Caller; } in getCaller() function
/external/llvm/lib/Transforms/Utils/
DInlineFunction.cpp1058 auto &DL = CS.getCaller()->getParent()->getDataLayout(); in AddAlignmentAssumptions()
1081 &IFI.ACT->getAssumptionCache(*CS.getCaller()), in AddAlignmentAssumptions()
/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
DCallEvent.h1048 getCaller(const StackFrameContext *CalleeCtx, ProgramStateRef State);
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/Scalar/
DMemCpyOptimizer.cpp1317 const DataLayout &DL = CS.getCaller()->getParent()->getDataLayout(); in processByValArgument()

12