Home
last modified time | relevance | path

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

1234

/external/llvm-project/lldb/examples/python/
Dpytracer.py135 def getCaller(self): member in FrameFancy
233 …print("call " + frame.getName() + " from " + frame.getCaller().getName() + " @ " + str(frame.getCa…
260 if frame.getName() == "__init__" and frame.getCaller().getName(
261 ) == "run_one_line" and frame.getCaller().getLineNumber() == 101:
264 if (frame.getCaller().getFileName() == ""):
272 strout += " from " + frame.getCaller().getName() + " @ " + \
273 str(frame.getCaller().getLineNumber()) + " args are " + str(frame.getArgumentInfo())
287 if (frame.getCaller().getFileName() == ""):
309 if (frame.getCaller().getFileName() == ""):
/external/llvm-project/llvm/lib/Transforms/IPO/
DInliner.cpp260 Function *Caller = CB.getCaller(); in inlineCallIfPossible()
362 << NV("Caller", CB->getCaller()) in inlineCallsImpl()
404 Function *Caller = CB.getCaller(); in inlineCallsImpl()
754 << NV("Caller", CB->getCaller()) in run()
789 Function &F = *Calls[I].first->getCaller(); in run()
810 for (; I < (int)Calls.size() && Calls[I].first->getCaller() == &F; ++I) { in run()
847 &FAM.getResult<BlockFrequencyAnalysis>(*(CB->getCaller())), in run()
851 InlineFunction(*CB, IFI, &FAM.getResult<AAManager>(*CB->getCaller())); in run()
901 return Call.first->getCaller() == &Callee; in run()
DInlineSimple.cpp59 const auto &BBs = CB.getCaller()->getBasicBlockList(); in getInlineCost()
65 OptimizationRemarkEmitter ORE(CB.getCaller()); in getInlineCost()
DAlwaysInliner.cpp67 Function *Caller = CB->getCaller(); in run()
81 &FAM.getResult<BlockFrequencyAnalysis>(*(CB->getCaller())), in run()
DSyntheticCountsPropagation.cpp113 Function *Caller = CB.getCaller(); in run()
/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()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/IPO/
DInliner.cpp280 Function *Caller = CS.getCaller(); in InlineCallIfPossible()
426 Function *Caller = CS.getCaller(); in shouldInline()
581 << NV("Caller", CS.getCaller()) in inlineCallsImpl()
621 Function *Caller = CS.getCaller(); in inlineCallsImpl()
941 << NV("Caller", CS.getCaller()) in run()
977 Function &F = *Calls[i].first.getCaller(); in run()
1025 for (; i < (int)Calls.size() && Calls[i].first.getCaller() == &F; ++i) { in run()
1069 &FAM.getResult<BlockFrequencyAnalysis>(*(CS.getCaller())), in run()
1123 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.cpp115 Function *Caller = CS.getCaller(); in run()
/external/llvm-project/llvm/lib/Analysis/
DInlineAdvisor.cpp89 Function &Caller = *CB.getCaller(); in getDefaultInlineAdvice()
124 FAM.getResult<OptimizationRemarkEmitterAnalysis>(*CB.getCaller())); in getAdvice()
130 : Advisor(Advisor), Caller(CB.getCaller()), Callee(CB.getCalledFunction()), in InlineAdvice()
323 Function *Caller = CB.getCaller(); in shouldInline()
445 auto &Caller = *CB.getCaller(); in getAdvice()
DHeatUtils.cpp44 if (CI->getCaller() == (&callerFunction)) { in getNumOfCalls()
DReplayInlineAdvisor.cpp51 Function &Caller = *CB.getCaller(); in getAdvice()
DMLInlineAdvisor.cpp133 Function *Caller = Advice.getCaller(); in onSuccessfulInlining()
172 auto &Caller = *CB.getCaller(); in getAdvice()
/external/llvm-project/llvm/lib/Transforms/Utils/
DCallGraphUpdater.cpp145 Function *Caller = OldCS.getCaller(); in replaceCallSite()
162 Function *Caller = CS.getCaller(); in removeCallSite()
/external/llvm-project/clang/lib/AST/Interp/
DFrame.h33 virtual Frame *getCaller() const = 0;
DInterpFrame.h51 Frame *getCaller() const override;
DState.cpp130 for (Frame *F = Top; F != Bottom; F = F->getCaller(), ++CallIdx) { in addCallStack()
DInterpFrame.cpp139 Frame *InterpFrame::getCaller() const { in getCaller() function in InterpFrame
/external/llvm-project/llvm/lib/Target/AMDGPU/
DAMDGPUInline.cpp111 Function *Caller = CB.getCaller(); in getInlineThreshold()
178 Function *Caller = CB.getCaller(); in getInlineCost()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AMDGPU/
DAMDGPUInline.cpp112 Function *Caller = CS.getCaller(); in getInlineThreshold()
179 Function *Caller = CS.getCaller(); in getInlineCost()
/external/llvm-project/llvm/include/llvm/Analysis/
DMLInlineAdvisor.h90 Function *getCaller() const { return Caller; } in getCaller() function
/external/llvm/include/llvm/IR/
DStatepoint.h136 FunTy *getCaller() const { return getCallSite().getCaller(); } in getCaller() function
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/IR/
DStatepoint.h147 FunTy *getCaller() const { return getCall()->getCaller(); } in getCaller() function
/external/llvm-project/clang/lib/StaticAnalyzer/Checkers/
DReturnValueChecker.cpp129 CallEventRef<> Call = CMgr.getCaller(SFC, State); in checkEndFunction()
/external/llvm-project/mlir/lib/IR/
DLocation.cpp44 Location CallSiteLoc::getCaller() const { return getImpl()->caller; } in getCaller() function in CallSiteLoc

1234