Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DCallEvent.h83 class CallEventRef : public IntrusiveRefCntPtr<const T> {
85 CallEventRef(const T *Call) : IntrusiveRefCntPtr<const T>(Call) {} in CallEventRef() function
86 CallEventRef(const CallEventRef &Orig) : IntrusiveRefCntPtr<const T>(Orig) {} in CallEventRef() function
90 CallEventRef &operator=(const CallEventRef &) = delete;
92 CallEventRef<T> cloneWithState(ProgramStateRef State) const { in cloneWithState()
98 template <typename SuperT> operator CallEventRef<SuperT>() const {
379 CallEventRef<T> cloneWithState(ProgramStateRef NewState) const;
382 CallEventRef<> cloneWithState(ProgramStateRef NewState) const { in cloneWithState()
455 const CallEventRef<> getCaller() const;
1413 CallEventRef<> getCaller(const StackFrameContext *CalleeCtx,
[all …]
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DExprEngineCXX.cpp337 auto getArgLoc = [&](CallEventRef<> Caller) -> std::optional<SVal> { in computeObjectUnderConstruction()
366 CallEventRef<> Caller = in computeObjectUnderConstruction()
375 CallEventRef<> Caller = CEMgr.getCXXConstructorCall( in computeObjectUnderConstruction()
382 CallEventRef<> Caller = in computeObjectUnderConstruction()
735 CallEventRef<> Call = in handleConstructor()
736 CIE ? (CallEventRef<>)CEMgr.getCXXInheritedConstructorCall( in handleConstructor()
738 : (CallEventRef<>)CEMgr.getCXXConstructorCall( in handleConstructor()
903 CallEventRef<CXXDestructorCall> Call = CEMgr.getCXXDestructorCall( in VisitCXXDestructor()
932 CallEventRef<CXXAllocatorCall> Call = in VisitCXXNewAllocatorCall()
1030 CallEventRef<CXXAllocatorCall> Call = in VisitCXXNewExpr()
[all …]
H A DCallEvent.cpp520 const CallEventRef<> CallEvent::getCaller() const { in getCaller()
534 if (const CallEventRef<> Caller = getCaller()) in isCalledFromSystemHeader()
1402 CallEventRef<>
1427 CallEventRef<>
1439 if (CallEventRef<> Out = getCall(CallSite, State, CallerCtx, ElemRef)) in getCaller()
1485 CallEventRef<> CallEventManager::getCall(const Stmt *S, ProgramStateRef State, in getCall()
H A DExprEngineCallAndReturn.cpp189 static bool wasDifferentDeclUsedForInlining(CallEventRef<> Call, in wasDifferentDeclUsedForInlining()
274 CallEventRef<> Call = CEMgr.getCaller(calleeCtx, state); in processCallExit()
396 CallEventRef<> UpdatedCall = Call.cloneWithState(CEEState); in processCallExit()
611 CallEventRef<> CallTemplate = CEMgr.getSimpleCall( in VisitCallExpr()
1219 CallEventRef<> Call = CallTemplate.cloneWithState(State); in defaultEvalCall()
H A DBugReporterVisitors.cpp482 CallEventRef<> Call = in VisitNode()
1171 CallEventRef<> Call = CallMgr.getCaller(CalleeSFC, State); in visitNodeMaybeUnsuppress()
1665 CallEventRef<> Call = CallMgr.getCaller(CE->getCalleeContext(), in VisitNode()
3413 CallEventRef<> Call = CEMgr.getCaller(CEnter->getCalleeContext(), State); in VisitNode()
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/RetainCountChecker/
H A DRetainCountDiagnostics.cpp172 SymbolRef &Sym, std::optional<CallEventRef<>> CE) { in findArgIdxOfSymbol()
237 CallEventRef<ObjCMethodCall> Call = Mgr.getObjCMethodCall( in generateDiagnosticsForCallLike()
253 std::optional<CallEventRef<>> CE = Mgr.getCall(S, CurrSt, LCtx, {nullptr, 0}); in generateDiagnosticsForCallLike()
382 CallEventRef<> Call = CEMgr.getCaller(N->getStackFrame(), N->getState()); in annotateConsumedSummaryMismatch()
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DMallocChecker.cpp3516 CallEventRef<> Call = in VisitNode()