clang
15.0.0git
|
#include "clang/StaticAnalyzer/Checkers/BuiltinCheckerRegistration.h"
#include "clang/StaticAnalyzer/Core/BugReporter/BugType.h"
#include "clang/StaticAnalyzer/Core/Checker.h"
#include "clang/StaticAnalyzer/Core/CheckerManager.h"
#include "clang/StaticAnalyzer/Core/PathSensitive/CheckerHelpers.h"
#include "clang/StaticAnalyzer/Core/PathSensitive/CheckerContext.h"
#include "clang/StaticAnalyzer/Core/PathSensitive/CallEvent.h"
#include "llvm/ADT/StringExtras.h"
#include "llvm/Support/Path.h"
Go to the source code of this file.
Macros | |
#define | REGISTER_CHECKER(name, trackingRequired) |
Functions | |
REGISTER_MAP_WITH_PROGRAMSTATE (NullabilityMap, const MemRegion *, NullabilityState) enum class NullConstraint | |
static NullConstraint | getNullConstraint (DefinedOrUnknownSVal Val, ProgramStateRef State) |
static bool | checkValueAtLValForInvariantViolation (ProgramStateRef State, SVal LV, QualType T) |
Returns true when the value stored at the given location has been constrained to null after being passed through an object of nonnnull type. More... | |
static bool | checkParamsForPreconditionViolation (ArrayRef< ParmVarDecl * > Params, ProgramStateRef State, const LocationContext *LocCtxt) |
static bool | checkSelfIvarsForInvariantViolation (ProgramStateRef State, const LocationContext *LocCtxt) |
static bool | checkInvariantViolation (ProgramStateRef State, ExplodedNode *N, CheckerContext &C) |
static const Expr * | lookThroughImplicitCasts (const Expr *E) |
Find the outermost subexpression of E that is not an implicit cast. More... | |
static Nullability | getReceiverNullability (const ObjCMethodCall &M, ProgramStateRef State) |
static const Expr * | matchValueExprForBind (const Stmt *S) |
For a given statement performing a bind, attempt to syntactically match the expression resulting in the bound value. More... | |
static bool | isARCNilInitializedLocal (CheckerContext &C, const Stmt *S) |
Returns true if. More... | |
#define REGISTER_CHECKER | ( | name, | |
trackingRequired | |||
) |
Definition at line 1239 of file NullabilityChecker.cpp.
|
static |
Definition at line 408 of file NullabilityChecker.cpp.
References checkParamsForPreconditionViolation(), checkSelfIvarsForInvariantViolation(), clang::LocationContext::getDecl(), and State.
|
static |
Definition at line 361 of file NullabilityChecker.cpp.
References checkValueAtLValForInvariantViolation(), and State.
Referenced by checkInvariantViolation().
|
static |
Definition at line 378 of file NullabilityChecker.cpp.
References checkValueAtLValForInvariantViolation(), clang::LocationContext::getDecl(), clang::ObjCObjectPointerType::getInterfaceDecl(), clang::LocationContext::getSelfDecl(), clang::ValueDecl::getType(), and State.
Referenced by checkInvariantViolation().
|
static |
Returns true when the value stored at the given location has been constrained to null after being passed through an object of nonnnull type.
Definition at line 335 of file NullabilityChecker.cpp.
References clang::ento::getNullabilityAnnotation(), getNullConstraint(), clang::ento::Nonnull, and State.
Referenced by checkParamsForPreconditionViolation(), and checkSelfIvarsForInvariantViolation().
|
static |
Definition at line 266 of file NullabilityChecker.cpp.
References State, and clang::prec::Unknown.
Referenced by checkValueAtLValForInvariantViolation(), and getReceiverNullability().
|
static |
Definition at line 825 of file NullabilityChecker.cpp.
References getNullConstraint(), clang::ento::Nonnull, State, and clang::ento::Unspecified.
Returns true if.
S | is a DeclStmt for a local variable that ObjC automated reference counting initialized with zero. |
Definition at line 1052 of file NullabilityChecker.cpp.
Find the outermost subexpression of E that is not an implicit cast.
This looks through the implicit casts to _Nonnull that ARC adds to return expressions of ObjC types when the return type of the function or method is non-null but the express is not.
Definition at line 563 of file NullabilityChecker.cpp.
References clang::Expr::IgnoreImpCasts().
For a given statement performing a bind, attempt to syntactically match the expression resulting in the bound value.
Definition at line 1028 of file NullabilityChecker.cpp.
REGISTER_MAP_WITH_PROGRAMSTATE | ( | NullabilityMap | , |
const MemRegion * | , | ||
NullabilityState | |||
) |
Definition at line 235 of file NullabilityChecker.cpp.