Home
last modified time | relevance | path

Searched refs:CallRecord (Results 1 – 7 of 7) sorted by relevance

/freebsd-13.1/contrib/llvm-project/clang/include/clang/Analysis/
H A DCallGraph.h149 struct CallRecord { struct
153 CallRecord() = default; argument
155 CallRecord(CallGraphNode *Callee_, Expr *CallExpr_) in CallRecord() argument
168 SmallVector<CallRecord, 5> CalledFunctions;
173 using iterator = SmallVectorImpl<CallRecord>::iterator;
207 inline bool operator==(const CallGraphNode::CallRecord &LHS,
208 const CallGraphNode::CallRecord &RHS) {
218 static inline clang::CallGraphNode::CallRecord getEmptyKey() {
219 return clang::CallGraphNode::CallRecord(
225 return clang::CallGraphNode::CallRecord(
[all …]
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DCallGraph.h179 using CallRecord = std::pair<Optional<WeakTrackingVH>, CallGraphNode *>;
182 using CalledFunctionsVector = std::vector<CallRecord>;
194 using iterator = std::vector<CallRecord>::iterator;
195 using const_iterator = std::vector<CallRecord>::const_iterator;
287 std::vector<CallRecord> CalledFunctions;
422 using CGNPairTy = CallGraphNode::CallRecord;
441 using CGNPairTy = CallGraphNode::CallRecord;
442 using EdgeRef = const CallGraphNode::CallRecord &;
/freebsd-13.1/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DMallocSizeofChecker.cpp38 struct CallRecord { struct in __anon877a197f0111::CastedAllocFinder
44 CallRecord(ExprParent CastedExprParent, const Expr *CastedExpr, in CallRecord() argument
51 typedef std::vector<CallRecord> CallVec;
62 Calls.push_back(CallRecord(Parent, cast<Expr>(S), AllocCall.first, in VisitChild()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Transforms/IPO/
H A DSyntheticCountsPropagation.cpp109 const CallGraphNode::CallRecord &Edge) { in run()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DCallGraphUpdater.cpp152 if (llvm::none_of(*CallerNode, [&OldCS](const CallGraphNode::CallRecord &CR) { in replaceCallSite()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Analysis/
H A DCallPrinter.cpp164 static const CallGraphNode *CGGetValuePtr(CallGraphNode::CallRecord P) { in CGGetValuePtr()
H A DCallGraph.cpp249 CallRecord &CR = *I; in removeOneAbstractEdgeTo()