diff options
author | Daniel Dunbar <daniel@zuster.org> | 2010-03-20 04:28:39 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2010-03-20 04:28:39 +0000 |
commit | 0f2c907b2b5ee8896f5f0c51e35f80447b49b2c0 (patch) | |
tree | 9cebb4c9021ae8b6a7de2f99c435510de8a6612b /lib/Checker/BugReporterVisitors.cpp | |
parent | efb0fa9e11f75af51744a6159530ef7cc8efa24a (diff) |
Revert r99024, "Augment path diagnostics to include displaying when a message
expression", statistical evidence indicates it has some kind of memory error.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@99040 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Checker/BugReporterVisitors.cpp')
-rw-r--r-- | lib/Checker/BugReporterVisitors.cpp | 51 |
1 files changed, 4 insertions, 47 deletions
diff --git a/lib/Checker/BugReporterVisitors.cpp b/lib/Checker/BugReporterVisitors.cpp index 6cf6d92efb..6cf41b14dc 100644 --- a/lib/Checker/BugReporterVisitors.cpp +++ b/lib/Checker/BugReporterVisitors.cpp @@ -103,6 +103,7 @@ public: const ExplodedNode *Node = N, *Last = NULL; for ( ; Node ; Last = Node, Node = Node->getFirstPred()) { + if (const VarRegion *VR = dyn_cast<VarRegion>(R)) { if (const PostStmt *P = Node->getLocationAs<PostStmt>()) if (const DeclStmt *DS = P->getStmtAs<DeclStmt>()) @@ -247,6 +248,7 @@ public: // Check if in the previous state it was feasible for this constraint // to *not* be true. if (PrevN->getState()->Assume(Constraint, !Assumption)) { + isSatisfied = true; // As a sanity check, make sure that the negation of the constraint @@ -257,8 +259,8 @@ public: // We found the transition point for the constraint. We now need to // pretty-print the constraint. (work-in-progress) - llvm::SmallString<256> sbuf; - llvm::raw_svector_ostream os(sbuf); + std::string sbuf; + llvm::raw_string_ostream os(sbuf); if (isa<Loc>(Constraint)) { os << "Assuming pointer value is "; @@ -363,48 +365,3 @@ void clang::bugreporter::registerFindLastStore(BugReporterContext& BRC, BRC.addVisitor(new FindLastStoreBRVisitor(V, R)); } - -namespace { -class NilReceiverVisitor : public BugReporterVisitor { -public: - NilReceiverVisitor() {} - - PathDiagnosticPiece* VisitNode(const ExplodedNode *N, - const ExplodedNode *PrevN, - BugReporterContext& BRC) { - - const PostStmt *P = N->getLocationAs<PostStmt>(); - if (!P) - return 0; - const ObjCMessageExpr *ME = P->getStmtAs<ObjCMessageExpr>(); - if (!ME) - return 0; - const Expr *Receiver = ME->getReceiver(); - if (!Receiver) - return 0; - const GRState *state = N->getState(); - const SVal &V = state->getSVal(Receiver); - const DefinedOrUnknownSVal *DV = dyn_cast<DefinedOrUnknownSVal>(&V); - if (!DV) - return 0; - - state = state->Assume(*DV, true); - if (state) - return 0; - - // The receiver was nil, and hence the method was skipped. - // Register a BugReporterVisitor to issue a message telling us how - // the receiver was null. - bugreporter::registerTrackNullOrUndefValue(BRC, Receiver, N); - - //Issue a message saying that the method was skipped. - PathDiagnosticLocation L(Receiver, BRC.getSourceManager()); - return new PathDiagnosticEventPiece(L, "No method actually called " - "because the receiver is nil"); - } -}; -} // end anonymous namespace - -void clang::bugreporter::registerNilReceiverVisitor(BugReporterContext &BRC) { - BRC.addVisitor(new NilReceiverVisitor()); -} |