21#include "llvm/ADT/SmallString.h"
22#include "llvm/Support/raw_ostream.h"
28class UndefResultChecker
29 :
public Checker< check::PostStmt<BinaryOperator> > {
31 mutable std::unique_ptr<BugType> BT;
41 if (!isa<ArraySubscriptExpr>(Ex))
57 std::tie(StInBound, StOutBound) = state->assumeInBoundDual(Idx, ElementCount);
58 return StOutBound && !StInBound;
63 if (
C.getSVal(B).isUndef()) {
68 dyn_cast<FunctionDecl>(
C.getStackFrame()->getDecl()))
69 if (
C.getCalleeName(EnclosingFunctionDecl) ==
"swap")
79 new BugType(
this,
"Result of operation is garbage or undefined"));
82 llvm::raw_svector_ostream OS(sbuf);
83 const Expr *Ex =
nullptr;
86 if (
C.getSVal(B->
getLHS()).isUndef()) {
90 else if (
C.getSVal(B->
getRHS()).isUndef()) {
96 OS <<
"The " << (isLeft ?
"left" :
"right") <<
" operand of '"
98 <<
"' is a garbage value";
100 OS <<
" due to array index out of bounds";
103 OS <<
"The result of the '"
105 <<
"' expression is undefined";
107 auto report = std::make_unique<PathSensitiveBugReport>(*BT, OS.str(), N);
115 C.emitReport(std::move(report));
123bool ento::shouldRegisterUndefResultChecker(
const CheckerManager &mgr) {
static bool isArrayIndexOutOfBounds(CheckerContext &C, const Expr *Ex)
A builtin binary operation expression such as "x + y" or "x <= y".
StringRef getOpcodeStr() const
This represents one expression.
Expr * IgnoreParenCasts() LLVM_READONLY
Skip past any parentheses and casts which might surround this expression until reaching a fixed point...
Represents a function declaration or definition.
SourceRange getSourceRange() const LLVM_READONLY
SourceLocation tokens are not useful in isolation - they are low level value objects created/interpre...
CHECKER * registerChecker(AT &&... Args)
Used to register checkers.
bool isValid() const =delete
ElementRegion is used to represent both array elements and casts.
QualType getValueType() const override
MemRegion - The root abstract class for all memory regions.
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.
LLVM_ATTRIBUTE_RETURNS_NONNULL const MemRegion * getSuperRegion() const
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.
DefinedOrUnknownSVal getDynamicElementCount(ProgramStateRef State, const MemRegion *MR, SValBuilder &SVB, QualType Ty)