Home
last modified time | relevance | path

Searched refs:CallSite (Results 1 – 20 of 20) sorted by relevance

/netbsd-src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Core/
H A DBlockCounter.cpp24 const StackFrameContext *CallSite; member in __anonad3bade50111::CountKey
29 : CallSite(CS), BlockID(ID) {} in CountKey()
32 return (CallSite == RHS.CallSite) && (BlockID == RHS.BlockID); in operator ==()
36 return std::tie(CallSite, BlockID) < std::tie(RHS.CallSite, RHS.BlockID); in operator <()
40 ID.AddPointer(CallSite); in Profile()
57 unsigned BlockCounter::getNumVisited(const StackFrameContext *CallSite, in getNumVisited() argument
60 CountMap::data_type* T = M.lookup(CountKey(CallSite, BlockID)); in getNumVisited()
74 const StackFrameContext *CallSite, in IncrementCount() argument
77 CountKey(CallSite, BlockID), in IncrementCount()
78 BC.getNumVisited(CallSite, BlockID)+1).getRoot()); in IncrementCount()
H A DCallEvent.cpp1397 const Stmt *CallSite = CalleeCtx->getCallSite(); in getCaller() local
1399 if (CallSite) { in getCaller()
1400 if (CallEventRef<> Out = getCall(CallSite, State, CallerCtx)) in getCaller()
1408 if (const auto *CE = dyn_cast<CXXConstructExpr>(CallSite)) in getCaller()
1410 else if (const auto *CIE = dyn_cast<CXXInheritedCtorInitExpr>(CallSite)) in getCaller()
H A DMemRegion.cpp926 const Stmt *CallSite = SFC->getCallSite(); in getVarRegion() local
927 if (CallSite) { in getVarRegion()
931 return getSubRegion<ParamVarRegion>(cast<Expr>(CallSite), Index, in getVarRegion()
935 return getSubRegion<ParamVarRegion>(cast<Expr>(CallSite), Index, in getVarRegion()
938 return getSubRegion<ParamVarRegion>(cast<Expr>(CallSite), Index, in getVarRegion()
H A DBugReporter.cpp291 const Stmt *CallSite = CExit.getCalleeContext()->getCallSite(); in getMessage() local
292 const auto *CE = dyn_cast_or_null<CallExpr>(CallSite); in getMessage()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/IPO/
H A DSampleContextTracker.cpp30 ContextTrieNode *ContextTrieNode::getChildContext(const LineLocation &CallSite, in getChildContext() argument
33 return getHottestChildContext(CallSite); in getChildContext()
35 uint32_t Hash = nodeHash(CalleeName, CallSite); in getChildContext()
43 ContextTrieNode::getHottestChildContext(const LineLocation &CallSite) { in getHottestChildContext() argument
51 if (ChildNode.CallSiteLoc != CallSite) in getHottestChildContext()
66 const LineLocation &CallSite, ContextTrieNode &&NodeToMove, in moveToChildContext() argument
68 uint32_t Hash = nodeHash(NodeToMove.getFuncName(), CallSite); in moveToChildContext()
74 NewNode.CallSiteLoc = CallSite; in moveToChildContext()
109 void ContextTrieNode::removeChildContext(const LineLocation &CallSite, in removeChildContext() argument
111 uint32_t Hash = nodeHash(CalleeName, CallSite); in removeChildContext()
[all …]
H A DSampleProfile.cpp690 auto CallSite = FunctionSamples::getCallSiteIdentifier(DIL); in findIndirectCallFunctionSamples() local
691 auto T = FS->findCallTargetMapAt(CallSite); in findIndirectCallFunctionSamples()
696 if (const FunctionSamplesMap *M = FS->findFunctionSamplesMapAt(CallSite)) { in findIndirectCallFunctionSamples()
1455 auto CallSite = FunctionSamples::getCallSiteIdentifier(DIL); in generateMDProfMetadata() local
1456 auto T = FS->findCallTargetMapAt(CallSite); in generateMDProfMetadata()
1478 FS->findFunctionSamplesMapAt(CallSite)) { in generateMDProfMetadata()
H A DAttributorAttributes.cpp8182 SWITCH_PK_CREATE(CLASS, IRP, IRP_CALL_SITE, CallSite) \
8209 SWITCH_PK_CREATE(CLASS, IRP, IRP_CALL_SITE, CallSite) \
8242 SWITCH_PK_CREATE(CLASS, IRP, IRP_CALL_SITE, CallSite) \
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Transforms/IPO/
H A DSampleContextTracker.h44 ContextTrieNode *getChildContext(const LineLocation &CallSite,
46 ContextTrieNode *getHottestChildContext(const LineLocation &CallSite);
47 ContextTrieNode *getOrCreateChildContext(const LineLocation &CallSite,
51 ContextTrieNode &moveToChildContext(const LineLocation &CallSite,
55 void removeChildContext(const LineLocation &CallSite, StringRef CalleeName);
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Analysis/
H A DReplayInlineAdvisor.cpp48 auto CallSite = Pair.second.split(";").first; in ReplayInlineAdvisor() local
50 if (Callee.empty() || CallSite.empty()) in ReplayInlineAdvisor()
53 std::string Combined = (Callee + CallSite).str(); in ReplayInlineAdvisor()
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DBlockCounter.h37 unsigned getNumVisited(const StackFrameContext *CallSite,
48 const StackFrameContext *CallSite,
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Analysis/
H A DAnalysisDeclContext.h297 const Stmt *CallSite; variable
313 : LocationContext(StackFrame, ADC, ParentLC, ID), CallSite(S), in StackFrameContext()
319 const Stmt *getCallSite() const { return CallSite; } in getCallSite()
/netbsd-src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/UninitializedObject/
H A DUninitializedObjectChecker.cpp180 const Stmt *CallSite = Context.getStackFrame()->getCallSite(); in checkEndFunction() local
181 if (CallSite) in checkEndFunction()
183 CallSite, Context.getSourceManager(), Node->getLocationContext()); in checkEndFunction()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/
H A DSjLjEHPrepare.cpp120 Value *CallSite = in insertCallSiteStore() local
125 Builder.CreateStore(CallSiteNoC, CallSite, true /*volatile*/); in insertCallSiteStore()
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/ProfileData/
H A DSampleProf.h613 findCallTargetMapAt(const LineLocation &CallSite) const {
614 const auto &Ret = BodySamples.find(CallSite);
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/PDB/
H A DPDBTypes.h275 CallSite, enumerator
/netbsd-src/external/apache2/llvm/dist/llvm/lib/DebugInfo/PDB/
H A DPDBExtras.cpp270 CASE_OUTPUT_ENUM_CLASS_NAME(PDB_SymType, CallSite, OS) in operator <<()
/netbsd-src/external/apache2/llvm/dist/clang/lib/Analysis/
H A DAnalysisDeclContext.cpp363 Profile(ID, getAnalysisDeclContext(), getParent(), CallSite, Block, in Profile()
/netbsd-src/external/apache2/llvm/dist/clang/lib/CodeGen/
H A DCGDebugInfo.h524 void addHeapAllocSiteMetadata(llvm::CallBase *CallSite, QualType AllocatedTy,
H A DCGObjCMac.cpp2278 llvm::CallBase *CallSite; in EmitMessageSend() local
2281 &CallSite); in EmitMessageSend()
2286 CallSite->setDoesNotReturn(); in EmitMessageSend()
/netbsd-src/external/apache2/llvm/dist/llvm/docs/
H A DLangRef.rst1501 least ``CallSite.Args[EltSizeParam]`` bytes will be available at the
1503 ``CallSite.Args[EltSizeParam] * CallSite.Args[NumEltsParam]`` bytes are