Home
last modified time | relevance | path

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

/external/clang/lib/StaticAnalyzer/Core/
DExprEngineCallAndReturn.cpp40 void ExprEngine::processCallEnter(NodeBuilderContext& BC, CallEnter CE, in processCallEnter()
97 Optional<CallEnter> CE; in getLastStmt()
100 CE = Node->getLocationAs<CallEnter>(); in getLastStmt()
107 } else if (Optional<CallEnter> CE = PP.getAs<CallEnter>()) { in getLastStmt()
432 CallEnter Loc(CallE, CalleeSFC, CurLC); in REGISTER_TRAIT_WITH_PROGRAMSTATE()
DPathDiagnostic.cpp72 IntrusiveRefCntPtr<PathDiagnosticEventPiece> CallEnter = in flattenTo() local
74 if (CallEnter) in flattenTo()
75 Current.push_back(CallEnter); in flattenTo()
674 } else if (Optional<CallEnter> CE = P.getAs<CallEnter>()) { in create()
695 if (Optional<CallEnter> CE = P.getAs<CallEnter>()) in getStmt()
898 void PathDiagnosticCallPiece::setCallee(const CallEnter &CE, in setCallee()
DBugReporterVisitors.cpp344 Optional<CallEnter> CE = N->getLocationAs<CallEnter>(); in visitNodeMaybeUnsuppress()
508 if (Optional<CallEnter> CE = Succ->getLocationAs<CallEnter>()) { in VisitNode()
621 } else if (StoreSite->getLocation().getAs<CallEnter>()) { in VisitNode()
698 if (P.getAs<CallEnter>() && InitE) in VisitNode()
971 assert(N->getLocation().getAs<CallEnter>() && "Tracking arg but not at call"); in trackNullOrUndefValue()
1653 Optional<CallEnter> CEnter = ProgLoc.getAs<CallEnter>(); in VisitNode()
DCoreEngine.cpp259 HandleCallEnter(Loc.castAs<CallEnter>(), Pred); in dispatchWorkItem()
471 void CoreEngine::HandleCallEnter(const CallEnter &CE, ExplodedNode *Pred) { in HandleCallEnter()
550 if (N->getLocation().getAs<CallEnter>()) { in enqueueStmtNode()
DExplodedGraph.cpp158 if (SuccLoc.getAs<CallEnter>() || SuccLoc.getAs<PreImplicitCall>()) in shouldCollect()
DBugReporter.cpp587 if (Optional<CallEnter> CE = P.getAs<CallEnter>()) { in GenerateMinimalPathDiagnostic()
1433 if (Optional<CallEnter> CE = P.getAs<CallEnter>()) { in GenerateExtensivePathDiagnostic()
1650 if (Optional<CallEnter> CE = P.getAs<CallEnter>()) { in GenerateAlternateExtensivePathDiagnostic()
DExprEngine.cpp1377 if (L.getAs<CallEnter>()) in replayWithoutInlining()
/external/clang/include/clang/Analysis/
DProgramPoint.h584 class CallEnter : public ProgramPoint {
586 CallEnter(const Stmt *stmt, const StackFrameContext *calleeCtx, in CallEnter() function
607 CallEnter() {} in CallEnter() function
/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
DSubEngine.h115 virtual void processCallEnter(NodeBuilderContext& BC, CallEnter CE,
DCoreEngine.h95 void HandleCallEnter(const CallEnter &CE, ExplodedNode *Pred);
DExprEngine.h273 void processCallEnter(NodeBuilderContext& BC, CallEnter CE,
/external/clang/docs/analyzer/
DIPA.txt120 If the conditions are right for inlining, a CallEnter node is created and added
121 to the analysis work list. The CallEnter node marks the change to a new
123 contents of the new stack frame. When the CallEnter node is actually processed,
/external/clang/include/clang/StaticAnalyzer/Core/BugReporter/
DPathDiagnostic.h582 void setCallee(const CallEnter &CE, const SourceManager &SM);
/external/clang/test/Analysis/
Dretain-release.mm412 // Don't crash on getting a null expression from CallEnter corresponding to a
/external/clang/lib/StaticAnalyzer/Checkers/
DRetainCountChecker.cpp2260 if (Optional<CallEnter> CEP = N->getLocation().getAs<CallEnter>()) { in GetAllocationSite()