summaryrefslogtreecommitdiffstats
path: root/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/UndefinedAssignmentChecker.cpp
diff options
context:
space:
mode:
authorpatrick <patrick@openbsd.org>2020-08-03 15:06:44 +0000
committerpatrick <patrick@openbsd.org>2020-08-03 15:06:44 +0000
commitb64793999546ed8adebaeebd9d8345d18db8927d (patch)
tree4357c27b561d73b0e089727c6ed659f2ceff5f47 /gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/UndefinedAssignmentChecker.cpp
parentAdd support for UTF-8 DISPLAY-HINTs with octet length. For now only (diff)
downloadwireguard-openbsd-b64793999546ed8adebaeebd9d8345d18db8927d.tar.xz
wireguard-openbsd-b64793999546ed8adebaeebd9d8345d18db8927d.zip
Remove LLVM 8.0.1 files.
Diffstat (limited to 'gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/UndefinedAssignmentChecker.cpp')
-rw-r--r--gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/UndefinedAssignmentChecker.cpp122
1 files changed, 0 insertions, 122 deletions
diff --git a/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/UndefinedAssignmentChecker.cpp b/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/UndefinedAssignmentChecker.cpp
deleted file mode 100644
index 8e10bfdd2f3..00000000000
--- a/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/UndefinedAssignmentChecker.cpp
+++ /dev/null
@@ -1,122 +0,0 @@
-//===--- UndefinedAssignmentChecker.h ---------------------------*- C++ -*--==//
-//
-// The LLVM Compiler Infrastructure
-//
-// This file is distributed under the University of Illinois Open Source
-// License. See LICENSE.TXT for details.
-//
-//===----------------------------------------------------------------------===//
-//
-// This defines UndefinedAssignmentChecker, a builtin check in ExprEngine that
-// checks for assigning undefined values.
-//
-//===----------------------------------------------------------------------===//
-
-#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/CheckerContext.h"
-
-using namespace clang;
-using namespace ento;
-
-namespace {
-class UndefinedAssignmentChecker
- : public Checker<check::Bind> {
- mutable std::unique_ptr<BugType> BT;
-
-public:
- void checkBind(SVal location, SVal val, const Stmt *S,
- CheckerContext &C) const;
-};
-}
-
-void UndefinedAssignmentChecker::checkBind(SVal location, SVal val,
- const Stmt *StoreE,
- CheckerContext &C) const {
- if (!val.isUndef())
- return;
-
- // Do not report assignments of uninitialized values inside swap functions.
- // This should allow to swap partially uninitialized structs
- // (radar://14129997)
- if (const FunctionDecl *EnclosingFunctionDecl =
- dyn_cast<FunctionDecl>(C.getStackFrame()->getDecl()))
- if (C.getCalleeName(EnclosingFunctionDecl) == "swap")
- return;
-
- ExplodedNode *N = C.generateErrorNode();
-
- if (!N)
- return;
-
- static const char *const DefaultMsg =
- "Assigned value is garbage or undefined";
- if (!BT)
- BT.reset(new BuiltinBug(this, DefaultMsg));
-
- // Generate a report for this bug.
- llvm::SmallString<128> Str;
- llvm::raw_svector_ostream OS(Str);
-
- const Expr *ex = nullptr;
-
- while (StoreE) {
- if (const UnaryOperator *U = dyn_cast<UnaryOperator>(StoreE)) {
- OS << "The expression is an uninitialized value. "
- "The computed value will also be garbage";
-
- ex = U->getSubExpr();
- break;
- }
-
- if (const BinaryOperator *B = dyn_cast<BinaryOperator>(StoreE)) {
- if (B->isCompoundAssignmentOp()) {
- if (C.getSVal(B->getLHS()).isUndef()) {
- OS << "The left expression of the compound assignment is an "
- "uninitialized value. The computed value will also be garbage";
- ex = B->getLHS();
- break;
- }
- }
-
- ex = B->getRHS();
- break;
- }
-
- if (const DeclStmt *DS = dyn_cast<DeclStmt>(StoreE)) {
- const VarDecl *VD = dyn_cast<VarDecl>(DS->getSingleDecl());
- ex = VD->getInit();
- }
-
- if (const auto *CD =
- dyn_cast<CXXConstructorDecl>(C.getStackFrame()->getDecl())) {
- if (CD->isImplicit()) {
- for (auto I : CD->inits()) {
- if (I->getInit()->IgnoreImpCasts() == StoreE) {
- OS << "Value assigned to field '" << I->getMember()->getName()
- << "' in implicit constructor is garbage or undefined";
- break;
- }
- }
- }
- }
-
- break;
- }
-
- if (OS.str().empty())
- OS << DefaultMsg;
-
- auto R = llvm::make_unique<BugReport>(*BT, OS.str(), N);
- if (ex) {
- R->addRange(ex->getSourceRange());
- bugreporter::trackExpressionValue(N, ex, *R);
- }
- C.emitReport(std::move(R));
-}
-
-void ento::registerUndefinedAssignmentChecker(CheckerManager &mgr) {
- mgr.registerChecker<UndefinedAssignmentChecker>();
-}