Searched refs:ProgramState (Results 1 - 6 of 6) sorted by relevance

/freebsd-11-stable/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DProgramState_Fwd.h1 //== ProgramState_Fwd.h - Incomplete declarations of ProgramState -*- C++ -*--=/
17 class ProgramState;
19 void ProgramStateRetain(const ProgramState *state);
20 void ProgramStateRelease(const ProgramState *state);
25 template <> struct IntrusiveRefCntPtrInfo<const clang::ento::ProgramState> {
26 static void retain(const clang::ento::ProgramState *state) {
29 static void release(const clang::ento::ProgramState *state) {
37 typedef IntrusiveRefCntPtr<const ProgramState> ProgramStateRef;
H A DProgramState.h1 //== ProgramState.h - Path-sensitive "State" for tracking values -*- C++ -*--=//
47 // ProgramStateTrait - Traits used by the Generic Data Map of a ProgramState.
60 /// \class ProgramState
61 /// ProgramState - This class encapsulates:
69 /// ProgramState is intended to be used as a functional object; that is,
72 class ProgramState : public llvm::FoldingSetNode { class in namespace:clang::ento
78 void operator=(const ProgramState& R) = delete;
90 /// makeWithStore - Return a ProgramState with the same values as the current
97 /// This ctor is used when creating the first ProgramState object.
98 ProgramState(ProgramStateManage
[all...]
H A DSubEngine.h37 class ProgramState;
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DProgramState.cpp1 //= ProgramState.cpp - Path-Sensitive "State" for tracking values --*- C++ -*--=
9 // This file implements ProgramState and ProgramStateManager.
13 #include "clang/StaticAnalyzer/Core/PathSensitive/ProgramState.h"
29 void ProgramStateRetain(const ProgramState *state) {
30 ++const_cast<ProgramState*>(state)->refCount;
34 void ProgramStateRelease(const ProgramState *state) {
36 ProgramState *s = const_cast<ProgramState*>(state);
40 s->~ProgramState();
46 ProgramState function in class:ProgramState
56 ProgramState::ProgramState(const ProgramState &RHS) function in class:ProgramState
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DDereferenceChecker.cpp45 const Expr *Ex, const ProgramState *state,
55 const ProgramState *state,
/freebsd-11-stable/lib/clang/libclang/
H A DMakefile655 SRCS_FUL+= StaticAnalyzer/Core/ProgramState.cpp

Completed in 81 milliseconds