Searched refs:ProgramState (Results 1 – 14 of 14) sorted by relevance
/external/clang/lib/StaticAnalyzer/Core/ |
D | ProgramState.cpp | 28 void ProgramStateRetain(const ProgramState *state) { in ProgramStateRetain() 29 ++const_cast<ProgramState*>(state)->refCount; in ProgramStateRetain() 33 void ProgramStateRelease(const ProgramState *state) { in ProgramStateRelease() 35 ProgramState *s = const_cast<ProgramState*>(state); in ProgramStateRelease() 39 s->~ProgramState(); in ProgramStateRelease() 45 ProgramState::ProgramState(ProgramStateManager *mgr, const Environment& env, in ProgramState() function in ProgramState 55 ProgramState::ProgramState(const ProgramState &RHS) in ProgramState() function in ProgramState 65 ProgramState::~ProgramState() { in ~ProgramState() 100 ProgramState NewState = *state; in removeDeadBindings() 114 ProgramStateRef ProgramState::bindLoc(Loc LV, SVal V, bool notifyChanges) const { in bindLoc() [all …]
|
D | CMakeLists.txt | 35 ProgramState.cpp
|
D | BugReporterVisitors.cpp | 1337 const ProgramState *state = N->getState().get(); in patternMatch() 1343 const ProgramState *state = N->getState().get(); in patternMatch() 1498 const ProgramState *state = N->getState().get(); in VisitConditionVariable() 1542 const ProgramState *state = N->getState().get(); in VisitTrueTest()
|
D | BugReporter.cpp | 1239 const ProgramState *State, in reversePropagateIntererstingSymbols() 1269 const ProgramState *State, in reversePropagateInterestingSymbols()
|
/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ |
D | ProgramState.h | 74 class ProgramState : public llvm::FoldingSetNode { 80 void operator=(const ProgramState& R) = delete; 100 ProgramState(ProgramStateManager *mgr, const Environment& env, 105 ProgramState(const ProgramState &RHS); 107 ~ProgramState(); 134 static void Profile(llvm::FoldingSetNodeID& ID, const ProgramState *V) { in Profile() 426 friend void ProgramStateRetain(const ProgramState *state); 427 friend void ProgramStateRelease(const ProgramState *state); 446 friend class ProgramState; variable 447 friend void ProgramStateRelease(const ProgramState *state); [all …]
|
D | ProgramState_Fwd.h | 18 class ProgramState; variable 20 void ProgramStateRetain(const ProgramState *state); 21 void ProgramStateRelease(const ProgramState *state); 26 template <> struct IntrusiveRefCntPtrInfo<const clang::ento::ProgramState> { 27 static void retain(const clang::ento::ProgramState *state) { 30 static void release(const clang::ento::ProgramState *state) { 38 typedef IntrusiveRefCntPtr<const ProgramState> ProgramStateRef;
|
D | SubEngine.h | 33 class ProgramState; variable
|
D | Store.h | 34 class ProgramState; variable
|
D | SVals.h | 35 class ProgramState; variable
|
/external/clang/lib/StaticAnalyzer/ |
D | README.txt | 23 (ProgramState). A location in the program is called a program point 42 recorded in the ProgramState object (and are manipulated by the 52 ProgramState and ExplodedNodes are basically immutable once created. Once 53 one creates a ProgramState, you need to create a new one to get a new 54 ProgramState. This immutability is key since the ExplodedGraph represents 65 ProgramState and ExplodedNode which contains updated checker state. If it
|
/external/clang/lib/StaticAnalyzer/Checkers/ |
D | DereferenceChecker.cpp | 46 const Expr *Ex, const ProgramState *state, 56 const ProgramState *state, in AddDerefSource()
|
/external/clang/docs/analyzer/ |
D | IPA.txt | 224 data that is stored in ProgramState, which defines a mapping from MemRegions to 249 ProgramState to attempt to devirtualize the call. In the case of no dynamic 293 RuntimeDefinition object) with a path-sensitive "mode" in the ProgramState. 384 there is no inherent issue with persisting them (say, in a ProgramState's GDM),
|
D | RegionStore.txt | 2 functional data structure stored in each ProgramState; the only class that can
|
/external/clang/include/clang/StaticAnalyzer/Core/ |
D | CheckerManager.h | 43 class ProgramState; variable
|