Home
last modified time | relevance | path

Searched refs:CallEnter (Results 1 – 14 of 14) sorted by relevance

/netbsd-src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Core/
H A DExprEngineCallAndReturn.cpp43 void ExprEngine::processCallEnter(NodeBuilderContext& BC, CallEnter CE, in processCallEnter()
99 Optional<CallEnter> CE; in getLastStmt()
102 CE = Node->getLocationAs<CallEnter>(); in getLastStmt()
109 } else if (Optional<CallEnter> CE = PP.getAs<CallEnter>()) { in getLastStmt()
458 CallEnter Loc(CallE, CalleeSFC, CurLC); in REGISTER_MAP_WITH_PROGRAMSTATE()
H A DCoreEngine.cpp170 HandleCallEnter(Loc.castAs<CallEnter>(), Pred); in dispatchWorkItem()
419 void CoreEngine::HandleCallEnter(const CallEnter &CE, ExplodedNode *Pred) { in HandleCallEnter()
519 if (N->getLocation().getAs<CallEnter>()) { in enqueueStmtNode()
H A DExplodedGraph.cpp148 if (SuccLoc.getAs<CallEnter>() || SuccLoc.getAs<PreImplicitCall>()) in shouldCollect()
338 if (auto CE = P.getAs<CallEnter>()) in getStmtForDiagnostics()
H A DBugReporterVisitors.cpp667 if (auto CE = N->getLocationAs<CallEnter>()) in findModifyingFrames()
1157 Optional<CallEnter> CE = N->getLocationAs<CallEnter>(); in visitNodeMaybeUnsuppress()
1455 if (Optional<CallEnter> CE = Succ->getLocationAs<CallEnter>()) { in VisitNode()
1601 } else if (StoreSite->getLocation().getAs<CallEnter>()) { in VisitNode()
1615 if (P.getAs<CallEnter>() && InitE) in VisitNode()
2896 Optional<CallEnter> CEnter = ProgLoc.getAs<CallEnter>(); in VisitNode()
H A DBugReporter.cpp1131 if (auto CE = P.getAs<CallEnter>()) { in generatePathDiagnosticsForNode()
3140 } else if (auto CE = N->getLocationAs<CallEnter>()) { in findExecutedLines()
H A DExprEngine.cpp1918 if (L.getAs<CallEnter>()) in replayWithoutInlining()
/netbsd-src/external/apache2/llvm/dist/clang/lib/Analysis/
H A DPathDiagnostic.cpp88 if (auto CallEnter = Call.getCallEnterEvent()) in flattenTo() local
89 Current.push_back(std::move(CallEnter)); in flattenTo()
699 } else if (Optional<CallEnter> CE = P.getAs<CallEnter>()) { in create()
868 void PathDiagnosticCallPiece::setCallee(const CallEnter &CE, in setCallee()
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Analysis/
H A DProgramPoint.h630 class CallEnter : public ProgramPoint {
632 CallEnter(const Stmt *stmt, const StackFrameContext *calleeCtx, in CallEnter() function
653 CallEnter() = default;
H A DPathDiagnostic.h42 class CallEnter; variable
600 void setCallee(const CallEnter &CE, const SourceManager &SM);
/netbsd-src/external/apache2/llvm/dist/clang/docs/analyzer/developer-docs/
H A DIPA.rst127 If the conditions are right for inlining, a CallEnter node is created and added
128 to the analysis work list. The CallEnter node marks the change to a new
130 contents of the new stack frame. When the CallEnter node is actually processed,
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DCoreEngine.h111 void HandleCallEnter(const CallEnter &CE, ExplodedNode *Pred);
H A DExprEngine.h378 void processCallEnter(NodeBuilderContext& BC, CallEnter CE,
/netbsd-src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/RetainCountChecker/
H A DRetainCountDiagnostics.cpp717 if (auto CEP = N->getLocation().getAs<CallEnter>()) { in GetAllocationSite()
/netbsd-src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/
H A DIteratorModeling.cpp837 if (auto Enter = PP.getAs<CallEnter>()) { in findCallEnter()