26class ReturnUndefChecker :
public Checker< check::PreStmt<ReturnStmt> > {
27 const BugType BT_Undef{
this,
"Garbage return value"};
28 const BugType BT_NullReference{
this,
"Returning null reference"};
38void ReturnUndefChecker::checkPreStmt(
const ReturnStmt *RS,
43 SVal RetVal =
C.getSVal(RetE);
81 const Expr *RetE,
const Expr *TrackingE =
nullptr) {
86 auto Report = std::make_unique<PathSensitiveBugReport>(BT, Msg, N);
91 C.emitReport(std::move(Report));
95 emitBug(
C, BT_Undef,
"Undefined or garbage value returned to caller", RetE);
101 std::tie(StNonNull, StNull) =
C.getState()->assume(RetVal);
105 C.addTransition(StNonNull);
110 emitBug(
C, BT_NullReference, BT_NullReference.getDescription(), RetE,
118bool ento::shouldRegisterReturnUndefChecker(
const CheckerManager &mgr) {
static void emitBug(CheckerContext &C, const BugType &BT, StringRef Msg, const Expr *RetE, const Expr *TrackingE=nullptr)
This represents one expression.
const Decl * getDecl() const
A (possibly-)qualified type.
bool isNull() const
Return true if this QualType doesn't point to a type yet.
ReturnStmt - This represents a return, optionally of an expression: return; return 4;.
It represents a stack frame of the call stack (based on CallEvent).
SourceRange getSourceRange() const LLVM_READONLY
SourceLocation tokens are not useful in isolation - they are low level value objects created/interpre...
bool isReferenceType() const
static QualType getDeclaredResultType(const Decl *D)
Returns the result type of a function or method declaration.
CHECKER * registerChecker(AT &&... Args)
Used to register checkers.
SVal - This represents a symbolic expression, which can be either an L-value or an R-value.
T castAs() const
Convert to the specified SVal type, asserting that this SVal is of the desired type.
const Expr * getDerefExpr(const Stmt *S)
Given that expression S represents a pointer that would be dereferenced, try to find a sub-expression...
bool trackExpressionValue(const ExplodedNode *N, const Expr *E, PathSensitiveBugReport &R, TrackingOptions Opts={})
Attempts to add visitors to track expression value back to its point of origin.
The JSON file list parser is used to communicate input to InstallAPI.