/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/ |
H A D | BlockCounter.cpp | 24 const StackFrameContext *CallSite; member in __anon6bb5763a0111::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 D | CallEvent.cpp | 1436 const Stmt *CallSite = CalleeCtx->getCallSite(); in getCaller() local 1438 if (CallSite) { in getCaller() 1439 if (CallEventRef<> Out = getCall(CallSite, State, CallerCtx, ElemRef)) in getCaller() 1447 if (const auto *CE = dyn_cast<CXXConstructExpr>(CallSite)) in getCaller() 1450 else if (const auto *CIE = dyn_cast<CXXInheritedCtorInitExpr>(CallSite)) in getCaller()
|
H A D | MemRegion.cpp | 1008 const Stmt *CallSite = SFC->getCallSite(); in getVarRegion() local 1009 if (CallSite) { in getVarRegion() 1013 return getSubRegion<ParamVarRegion>(cast<Expr>(CallSite), Index, in getVarRegion() 1017 return getSubRegion<ParamVarRegion>(cast<Expr>(CallSite), Index, in getVarRegion() 1020 return getSubRegion<ParamVarRegion>(cast<Expr>(CallSite), Index, in getVarRegion()
|
H A D | BugReporter.cpp | 306 const Stmt *CallSite = CExit.getCalleeContext()->getCallSite(); in getMessage() local 307 const auto *CE = dyn_cast_or_null<CallExpr>(CallSite); in getMessage()
|
/freebsd/contrib/llvm-project/llvm/lib/Transforms/IPO/ |
H A D | SampleContextTracker.cpp | 30 ContextTrieNode *ContextTrieNode::getChildContext(const LineLocation &CallSite, in getChildContext() argument 33 return getHottestChildContext(CallSite); in getChildContext() 35 uint64_t Hash = FunctionSamples::getCallSiteHash(CalleeName, CallSite); in getChildContext() 43 ContextTrieNode::getHottestChildContext(const LineLocation &CallSite) { in getHottestChildContext() argument 51 if (ChildNode.CallSiteLoc != CallSite) in getHottestChildContext() 67 const LineLocation &CallSite, in moveContextSamples() argument 70 FunctionSamples::getCallSiteHash(NodeToMove.getFuncName(), CallSite); in moveContextSamples() 76 NewNode.setCallSiteLoc(CallSite); in moveContextSamples() 105 void ContextTrieNode::removeChildContext(const LineLocation &CallSite, in removeChildContext() argument 107 uint64_t Hash = FunctionSamples::getCallSiteHash(CalleeName, CallSite); in removeChildContext() [all …]
|
H A D | SampleProfile.cpp | 757 auto CallSite = FunctionSamples::getCallSiteIdentifier(DIL); in findIndirectCallFunctionSamples() local 759 if (auto T = FS->findCallTargetMapAt(CallSite)) in findIndirectCallFunctionSamples() 762 if (const FunctionSamplesMap *M = FS->findFunctionSamplesMapAt(CallSite)) { in findIndirectCallFunctionSamples() 1633 auto CallSite = FunctionSamples::getCallSiteIdentifier(DIL); in generateMDProfMetadata() local 1635 FS->findCallTargetMapAt(CallSite); in generateMDProfMetadata() 1657 FS->findFunctionSamplesMapAt(CallSite)) { in generateMDProfMetadata()
|
H A D | AttributorAttributes.cpp | 12941 SWITCH_PK_CREATE(CLASS, IRP, IRP_CALL_SITE, CallSite) \ 12980 SWITCH_PK_CREATE(CLASS, IRP, IRP_CALL_SITE, CallSite) \ 13013 SWITCH_PK_CREATE(CLASS, IRP, IRP_CALL_SITE, CallSite) \ 13053 CREATE_ABSTRACT_ATTRIBUTE_FOR_ONE_POSITION(IRP_CALL_SITE, CallSite,
|
/freebsd/contrib/llvm-project/llvm/include/llvm/Transforms/IPO/ |
H A D | SampleContextTracker.h | 42 ContextTrieNode *getChildContext(const LineLocation &CallSite, in ParentContext() 44 ContextTrieNode *getHottestChildContext(const LineLocation &CallSite); 45 ContextTrieNode *getOrCreateChildContext(const LineLocation &CallSite, 48 void removeChildContext(const LineLocation &CallSite, FunctionId ChildName); 202 const LineLocation &CallSite,
|
/freebsd/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ |
H A D | BlockCounter.h | 37 unsigned getNumVisited(const StackFrameContext *CallSite, 48 const StackFrameContext *CallSite,
|
/freebsd/contrib/llvm-project/llvm/lib/Analysis/ |
H A D | ReplayInlineAdvisor.cpp | 63 auto CallSite = Pair.second.split(";").first; in ReplayInlineAdvisor() local 65 if (Callee.empty() || Caller.empty() || CallSite.empty()) { in ReplayInlineAdvisor() 70 std::string Combined = (Callee + CallSite).str(); in ReplayInlineAdvisor()
|
/freebsd/contrib/llvm-project/clang/include/clang/Analysis/ |
H A D | AnalysisDeclContext.h | 303 const Stmt *CallSite; variable 319 : LocationContext(StackFrame, ADC, ParentLC, ID), CallSite(S), in StackFrameContext() 325 const Stmt *getCallSite() const { return CallSite; } in getCallSite()
|
/freebsd/contrib/llvm-project/llvm/lib/ProfileData/ |
H A D | SampleProf.cpp | 430 ProfileConverter::FrameNode::getOrCreateChildFrame(const LineLocation &CallSite, in getOrCreateChildFrame() argument 432 uint64_t Hash = FunctionSamples::getCallSiteHash(CalleeName, CallSite); in getOrCreateChildFrame() 440 AllChildFrames[Hash] = FrameNode(CalleeName, nullptr, CallSite); in getOrCreateChildFrame()
|
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/ |
H A D | SjLjEHPrepare.cpp | 138 Value *CallSite = in insertCallSiteStore() local 143 Builder.CreateStore(CallSiteNoC, CallSite, true /*volatile*/); in insertCallSiteStore()
|
/freebsd/contrib/llvm-project/clang/lib/AST/Interp/ |
H A D | Interp.cpp | 225 const Expr *CallSite = S.Current->Caller->getExpr(S.Current->getRetPC()); in cleanupAfterFunctionCall() local 226 if (const auto *CE = dyn_cast<CallExpr>(CallSite)) { in cleanupAfterFunctionCall() 229 } else if (const auto *CE = dyn_cast<CXXConstructExpr>(CallSite)) { in cleanupAfterFunctionCall()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/ProfileData/ |
H A D | SampleProf.h | 898 findCallTargetMapAt(const LineLocation &CallSite) const { 899 const auto &Ret = BodySamples.find(mapIRLocToProfileLoc(CallSite)); 1420 FrameNode *getOrCreateChildFrame(const LineLocation &CallSite,
|
/freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/PDB/ |
H A D | PDBTypes.h | 275 CallSite, enumerator
|
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/PDB/ |
H A D | PDBExtras.cpp | 277 CASE_OUTPUT_ENUM_CLASS_NAME(PDB_SymType, CallSite, OS) in operator <<()
|
/freebsd/contrib/llvm-project/clang/lib/Analysis/ |
H A D | AnalysisDeclContext.cpp | 415 Profile(ID, getAnalysisDeclContext(), getParent(), CallSite, Block, in Profile()
|
/freebsd/contrib/llvm-project/clang/lib/CodeGen/ |
H A D | CGDebugInfo.h | 593 void addHeapAllocSiteMetadata(llvm::CallBase *CallSite, QualType AllocatedTy,
|
H A D | CGObjCMac.cpp | 2218 llvm::CallBase *CallSite; in EmitMessageSend() local 2221 &CallSite); in EmitMessageSend() 2226 CallSite->setDoesNotReturn(); in EmitMessageSend()
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/SymbolFile/NativePDB/ |
H A D | PdbUtil.cpp | 269 return PDB_SymType::CallSite; in CVSymToPDBSym()
|