Searched refs:ProgramState (Results 1 – 15 of 15) 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 | Android.mk | 45 ProgramState.cpp \
|
D | BugReporterVisitors.cpp | 1279 const ProgramState *state = N->getState().get(); in patternMatch() 1285 const ProgramState *state = N->getState().get(); in patternMatch() 1440 const ProgramState *state = N->getState().get(); in VisitConditionVariable() 1484 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 | 73 class ProgramState : public llvm::FoldingSetNode { 79 void operator=(const ProgramState& R) = delete; 99 ProgramState(ProgramStateManager *mgr, const Environment& env, 104 ProgramState(const ProgramState &RHS); 106 ~ProgramState(); 133 static void Profile(llvm::FoldingSetNodeID& ID, const ProgramState *V) { in Profile() 425 friend void ProgramStateRetain(const ProgramState *state); 426 friend void ProgramStateRelease(const ProgramState *state); 445 friend class ProgramState; variable 446 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 | 33 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 | 47 const Expr *Ex, const ProgramState *state, 57 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 | 42 class ProgramState; variable
|