[cfe-commits] r41755 - in /cfe/trunk: Analysis/DeadStores.cpp include/clang/Analysis/LocalCheckers.h
Ted Kremenek
kremenek at apple.com
Thu Sep 6 16:01:47 PDT 2007
Author: kremenek
Date: Thu Sep 6 18:01:46 2007
New Revision: 41755
URL: http://llvm.org/viewvc/llvm-project?rev=41755&view=rev
Log:
Forgot to check in the actual "dead stores" checker in the last commit!
Added:
cfe/trunk/Analysis/DeadStores.cpp
cfe/trunk/include/clang/Analysis/LocalCheckers.h
Added: cfe/trunk/Analysis/DeadStores.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/Analysis/DeadStores.cpp?rev=41755&view=auto
==============================================================================
--- cfe/trunk/Analysis/DeadStores.cpp (added)
+++ cfe/trunk/Analysis/DeadStores.cpp Thu Sep 6 18:01:46 2007
@@ -0,0 +1,70 @@
+//==- DeadStores.cpp - Check for stores to dead variables --------*- C++ -*-==//
+//
+// The LLVM Compiler Infrastructure
+//
+// This file was developed by Ted Kremenek and is distributed under
+// the University of Illinois Open Source License. See LICENSE.TXT for details.
+//
+//===----------------------------------------------------------------------===//
+//
+// This files defines a DeadStores, a flow-sensitive checker that looks for
+// stores to variables that are no longer live.
+//
+//===----------------------------------------------------------------------===//
+
+#include "clang/AST/Expr.h"
+#include "clang/Analysis/LocalCheckers.h"
+#include "clang/Analysis/LiveVariables.h"
+#include "clang/AST/CFG.h"
+#include "clang/Basic/Diagnostic.h"
+#include "clang/Lex/Preprocessor.h"
+
+using namespace clang;
+
+namespace {
+
+class DeadStoreAuditor : public LiveVariablesAuditor {
+ Preprocessor& PP;
+public:
+ DeadStoreAuditor(Preprocessor& pp) : PP(pp) {}
+ virtual ~DeadStoreAuditor() {}
+
+ virtual void AuditStmt(Stmt* S, LiveVariables& L, llvm::BitVector& Live) {
+ if (BinaryOperator* B = dyn_cast<BinaryOperator>(S)) {
+ // Is this an assignment?
+ if (!B->isAssignmentOp())
+ return;
+
+ // Is this an assignment to a variable?
+ if (DeclRefExpr* DR = dyn_cast<DeclRefExpr>(B->getLHS())) {
+ // Is the variable live?
+ if (!L.isLive(Live,DR->getDecl())) {
+ SourceRange R = B->getRHS()->getSourceRange();
+ PP.getDiagnostics().Report(DR->getSourceRange().Begin(),
+ diag::warn_dead_store, 0, 0,
+ &R,1);
+
+ }
+ }
+ }
+ }
+};
+
+} // end anonymous namespace
+
+namespace clang {
+
+void CheckDeadStores(CFG& cfg, LiveVariables& L, Preprocessor& PP) {
+ DeadStoreAuditor A(PP);
+
+ for (CFG::iterator I = cfg.begin(), E = cfg.end(); I != E; ++I)
+ L.runOnBlock(&(*I),&A);
+}
+
+void CheckDeadStores(CFG& cfg, Preprocessor& PP) {
+ LiveVariables L;
+ L.runOnCFG(cfg);
+ CheckDeadStores(cfg,L,PP);
+}
+
+} // end namespace clang
\ No newline at end of file
Added: cfe/trunk/include/clang/Analysis/LocalCheckers.h
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/include/clang/Analysis/LocalCheckers.h?rev=41755&view=auto
==============================================================================
--- cfe/trunk/include/clang/Analysis/LocalCheckers.h (added)
+++ cfe/trunk/include/clang/Analysis/LocalCheckers.h Thu Sep 6 18:01:46 2007
@@ -0,0 +1,29 @@
+//==- LocalCheckers.h - Intra-Procedural+Flow-Sensitive Checkers -*- C++ -*-==//
+//
+// The LLVM Compiler Infrastructure
+//
+// This file was developed by Ted Kremenek and is distributed under
+// the University of Illinois Open Source License. See LICENSE.TXT for details.
+//
+//===----------------------------------------------------------------------===//
+//
+// This file defines the interface to call a set of intra-procedural (local)
+// checkers that use flow/path-sensitive analyses to find bugs.
+//
+//===----------------------------------------------------------------------===//
+
+#ifndef LLVM_CLANG_ANALYSIS_LOCALCHECKERS_H
+#define LLVM_CLANG_ANALYSIS_LOCALCHECKERS_H
+
+namespace clang {
+
+class Preprocessor;
+class CFG;
+class LiveVariables;
+
+void CheckDeadStores(CFG& cfg, LiveVariables& L, Preprocessor& PP);
+void CheckDeadStores(CFG& cfg, Preprocessor& PP);
+
+} // end namespace clang
+
+#endif
More information about the cfe-commits
mailing list