blob: ed919882588933a9c5521d576d3b7eb2d82f6525 [file] [log] [blame]
Ted Kremenek61f3e052008-04-03 04:42:52 +00001// BugReporter.cpp - Generate PathDiagnostics for Bugs ------------*- C++ -*--//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This file defines BugReporter, a utility class for generating
Ted Kremenek6c07bdb2009-06-26 00:05:51 +000011// PathDiagnostics.
Ted Kremenek61f3e052008-04-03 04:42:52 +000012//
13//===----------------------------------------------------------------------===//
14
Ted Kremenek9b663712011-02-10 01:03:03 +000015#include "clang/StaticAnalyzer/Core/BugReporter/BugReporter.h"
16#include "clang/StaticAnalyzer/Core/BugReporter/BugType.h"
17#include "clang/StaticAnalyzer/Core/PathSensitive/ExprEngine.h"
Ted Kremenek61f3e052008-04-03 04:42:52 +000018#include "clang/AST/ASTContext.h"
Ted Kremeneke41611a2009-07-16 18:13:04 +000019#include "clang/Analysis/CFG.h"
Benjamin Kramerc35fb7d2012-01-28 12:06:22 +000020#include "clang/AST/DeclObjC.h"
Ted Kremenek61f3e052008-04-03 04:42:52 +000021#include "clang/AST/Expr.h"
Ted Kremenek00605e02009-03-27 20:55:39 +000022#include "clang/AST/ParentMap.h"
Chris Lattner16f00492009-04-26 01:32:48 +000023#include "clang/AST/StmtObjC.h"
24#include "clang/Basic/SourceManager.h"
Ted Kremenek61f3e052008-04-03 04:42:52 +000025#include "clang/Analysis/ProgramPoint.h"
Ted Kremenek9b663712011-02-10 01:03:03 +000026#include "clang/StaticAnalyzer/Core/BugReporter/PathDiagnostic.h"
Chris Lattner405674c2008-08-23 22:23:37 +000027#include "llvm/Support/raw_ostream.h"
Ted Kremenek331b0ac2008-06-18 05:34:07 +000028#include "llvm/ADT/DenseMap.h"
Benjamin Kramer8fe83e12012-02-04 13:45:25 +000029#include "llvm/ADT/SmallString.h"
Ted Kremenekcf118d42009-02-04 23:49:09 +000030#include "llvm/ADT/STLExtras.h"
Ted Kremenek00605e02009-03-27 20:55:39 +000031#include "llvm/ADT/OwningPtr.h"
Ted Kremenek802e0242012-02-08 04:32:34 +000032#include "llvm/ADT/IntrusiveRefCntPtr.h"
Ted Kremenek10aa5542009-03-12 23:41:59 +000033#include <queue>
Ted Kremenek61f3e052008-04-03 04:42:52 +000034
35using namespace clang;
Ted Kremenek9ef65372010-12-23 07:20:52 +000036using namespace ento;
Ted Kremenek61f3e052008-04-03 04:42:52 +000037
Ted Kremenek8966bc12009-05-06 21:39:49 +000038BugReporterVisitor::~BugReporterVisitor() {}
Ted Kremenek1b431022010-03-20 18:01:57 +000039
David Blaikie99ba9e32011-12-20 02:48:34 +000040void BugReporterContext::anchor() {}
41
Ted Kremenekcf118d42009-02-04 23:49:09 +000042//===----------------------------------------------------------------------===//
Ted Kremenek31061982009-03-31 23:00:32 +000043// Helper routines for walking the ExplodedGraph and fetching statements.
Ted Kremenekcf118d42009-02-04 23:49:09 +000044//===----------------------------------------------------------------------===//
Ted Kremenek61f3e052008-04-03 04:42:52 +000045
Ted Kremenek9c378f72011-08-12 23:37:29 +000046static inline const Stmt *GetStmt(const ProgramPoint &P) {
Ted Kremenek592362b2009-08-18 01:05:30 +000047 if (const StmtPoint* SP = dyn_cast<StmtPoint>(&P))
48 return SP->getStmt();
Ted Kremenek9c378f72011-08-12 23:37:29 +000049 else if (const BlockEdge *BE = dyn_cast<BlockEdge>(&P))
Ted Kremenek61f3e052008-04-03 04:42:52 +000050 return BE->getSrc()->getTerminator();
Jordan Rose852aa0d2012-07-10 22:07:52 +000051 else if (const CallEnter *CE = dyn_cast<CallEnter>(&P))
52 return CE->getCallExpr();
53 else if (const CallExitEnd *CEE = dyn_cast<CallExitEnd>(&P))
54 return CEE->getCalleeContext()->getCallSite();
Mike Stump1eb44332009-09-09 15:08:12 +000055
Ted Kremenekb697b102009-02-23 22:44:26 +000056 return 0;
Ted Kremenek706e3cf2008-04-07 23:35:17 +000057}
58
Zhongxing Xuc5619d92009-08-06 01:32:16 +000059static inline const ExplodedNode*
Ted Kremenek9c378f72011-08-12 23:37:29 +000060GetPredecessorNode(const ExplodedNode *N) {
Ted Kremenekbd7efa82008-04-17 23:44:37 +000061 return N->pred_empty() ? NULL : *(N->pred_begin());
62}
Ted Kremenek2673c9f2008-04-25 19:01:27 +000063
Zhongxing Xuc5619d92009-08-06 01:32:16 +000064static inline const ExplodedNode*
Ted Kremenek9c378f72011-08-12 23:37:29 +000065GetSuccessorNode(const ExplodedNode *N) {
Ted Kremenekb697b102009-02-23 22:44:26 +000066 return N->succ_empty() ? NULL : *(N->succ_begin());
Ted Kremenekbd7efa82008-04-17 23:44:37 +000067}
68
Ted Kremenek9c378f72011-08-12 23:37:29 +000069static const Stmt *GetPreviousStmt(const ExplodedNode *N) {
Ted Kremenekb697b102009-02-23 22:44:26 +000070 for (N = GetPredecessorNode(N); N; N = GetPredecessorNode(N))
Ted Kremenek5f85e172009-07-22 22:35:28 +000071 if (const Stmt *S = GetStmt(N->getLocation()))
Ted Kremenekb697b102009-02-23 22:44:26 +000072 return S;
Mike Stump1eb44332009-09-09 15:08:12 +000073
Ted Kremenekb697b102009-02-23 22:44:26 +000074 return 0;
Ted Kremenek3148eb42009-01-24 00:55:43 +000075}
76
Ted Kremenek9c378f72011-08-12 23:37:29 +000077static const Stmt *GetNextStmt(const ExplodedNode *N) {
Ted Kremenekb697b102009-02-23 22:44:26 +000078 for (N = GetSuccessorNode(N); N; N = GetSuccessorNode(N))
Ted Kremenek5f85e172009-07-22 22:35:28 +000079 if (const Stmt *S = GetStmt(N->getLocation())) {
Ted Kremenekf5ab8e62009-03-28 17:33:57 +000080 // Check if the statement is '?' or '&&'/'||'. These are "merges",
81 // not actual statement points.
82 switch (S->getStmtClass()) {
83 case Stmt::ChooseExprClass:
John McCall56ca35d2011-02-17 10:25:35 +000084 case Stmt::BinaryConditionalOperatorClass: continue;
Ted Kremenekf5ab8e62009-03-28 17:33:57 +000085 case Stmt::ConditionalOperatorClass: continue;
86 case Stmt::BinaryOperatorClass: {
John McCall2de56d12010-08-25 11:45:40 +000087 BinaryOperatorKind Op = cast<BinaryOperator>(S)->getOpcode();
88 if (Op == BO_LAnd || Op == BO_LOr)
Ted Kremenekf5ab8e62009-03-28 17:33:57 +000089 continue;
90 break;
91 }
92 default:
93 break;
94 }
Ted Kremenekb697b102009-02-23 22:44:26 +000095 return S;
Ted Kremenekf5ab8e62009-03-28 17:33:57 +000096 }
Mike Stump1eb44332009-09-09 15:08:12 +000097
Ted Kremenekb697b102009-02-23 22:44:26 +000098 return 0;
99}
100
Ted Kremenek5f85e172009-07-22 22:35:28 +0000101static inline const Stmt*
Ted Kremenek9c378f72011-08-12 23:37:29 +0000102GetCurrentOrPreviousStmt(const ExplodedNode *N) {
Ted Kremenek5f85e172009-07-22 22:35:28 +0000103 if (const Stmt *S = GetStmt(N->getLocation()))
Ted Kremenekb697b102009-02-23 22:44:26 +0000104 return S;
Mike Stump1eb44332009-09-09 15:08:12 +0000105
Ted Kremenekb697b102009-02-23 22:44:26 +0000106 return GetPreviousStmt(N);
107}
Mike Stump1eb44332009-09-09 15:08:12 +0000108
Ted Kremenek5f85e172009-07-22 22:35:28 +0000109static inline const Stmt*
Ted Kremenek9c378f72011-08-12 23:37:29 +0000110GetCurrentOrNextStmt(const ExplodedNode *N) {
Ted Kremenek5f85e172009-07-22 22:35:28 +0000111 if (const Stmt *S = GetStmt(N->getLocation()))
Ted Kremenekb697b102009-02-23 22:44:26 +0000112 return S;
Mike Stump1eb44332009-09-09 15:08:12 +0000113
Ted Kremenekb697b102009-02-23 22:44:26 +0000114 return GetNextStmt(N);
115}
116
117//===----------------------------------------------------------------------===//
Ted Kremenekc89f4b02012-02-28 23:06:21 +0000118// Diagnostic cleanup.
119//===----------------------------------------------------------------------===//
120
Ted Kremenekb85cce02012-10-25 22:07:10 +0000121static PathDiagnosticEventPiece *
122eventsDescribeSameCondition(PathDiagnosticEventPiece *X,
123 PathDiagnosticEventPiece *Y) {
124 // Prefer diagnostics that come from ConditionBRVisitor over
125 // those that came from TrackConstraintBRVisitor.
126 const void *tagPreferred = ConditionBRVisitor::getTag();
127 const void *tagLesser = TrackConstraintBRVisitor::getTag();
128
129 if (X->getLocation() != Y->getLocation())
130 return 0;
131
132 if (X->getTag() == tagPreferred && Y->getTag() == tagLesser)
133 return X;
134
135 if (Y->getTag() == tagPreferred && X->getTag() == tagLesser)
136 return Y;
137
138 return 0;
139}
140
141static void RemoveRedundantMsgs(PathPieces &path) {
142 unsigned N = path.size();
143 if (N < 2)
144 return;
145 for (unsigned i = 0; i < N; ++i) {
146 IntrusiveRefCntPtr<PathDiagnosticPiece> piece(path.front());
147 path.pop_front();
148
149 switch (piece->getKind()) {
150 case clang::ento::PathDiagnosticPiece::Call:
151 RemoveRedundantMsgs(cast<PathDiagnosticCallPiece>(piece)->path);
152 break;
153 case clang::ento::PathDiagnosticPiece::Macro:
154 RemoveRedundantMsgs(cast<PathDiagnosticMacroPiece>(piece)->subPieces);
155 break;
156 case clang::ento::PathDiagnosticPiece::ControlFlow:
157 break;
158 case clang::ento::PathDiagnosticPiece::Event: {
159 if (i == N-1)
160 break;
161
162 if (PathDiagnosticEventPiece *nextEvent =
163 dyn_cast<PathDiagnosticEventPiece>(path.front().getPtr())) {
164 PathDiagnosticEventPiece *event =
165 cast<PathDiagnosticEventPiece>(piece);
166 // Check to see if we should keep one of the two pieces. If we
167 // come up with a preference, record which piece to keep, and consume
168 // another piece from the path.
169 if (PathDiagnosticEventPiece *pieceToKeep =
170 eventsDescribeSameCondition(event, nextEvent)) {
171 piece = pieceToKeep;
172 path.pop_front();
173 ++i;
174 }
175 }
176 break;
177 }
178 }
179 path.push_back(piece);
180 }
181}
182
Ted Kremenekc89f4b02012-02-28 23:06:21 +0000183/// Recursively scan through a path and prune out calls and macros pieces
184/// that aren't needed. Return true if afterwards the path contains
185/// "interesting stuff" which means it should be pruned from the parent path.
Ted Kremeneka43df952012-09-21 00:09:11 +0000186bool BugReporter::RemoveUneededCalls(PathPieces &pieces, BugReport *R,
187 PathDiagnosticCallPiece *CallWithLoc) {
Ted Kremenekc89f4b02012-02-28 23:06:21 +0000188 bool containsSomethingInteresting = false;
189 const unsigned N = pieces.size();
190
191 for (unsigned i = 0 ; i < N ; ++i) {
192 // Remove the front piece from the path. If it is still something we
193 // want to keep once we are done, we will push it back on the end.
194 IntrusiveRefCntPtr<PathDiagnosticPiece> piece(pieces.front());
195 pieces.pop_front();
196
Ted Kremeneka43df952012-09-21 00:09:11 +0000197 // Throw away pieces with invalid locations.
198 if (piece->getKind() != PathDiagnosticPiece::Call &&
199 piece->getLocation().asLocation().isInvalid())
200 continue;
201
Ted Kremenek72516742012-03-01 00:05:06 +0000202 switch (piece->getKind()) {
203 case PathDiagnosticPiece::Call: {
204 PathDiagnosticCallPiece *call = cast<PathDiagnosticCallPiece>(piece);
Anna Zaks80de4872012-08-29 21:22:37 +0000205 // Check if the location context is interesting.
206 assert(LocationContextMap.count(call));
207 if (R->isInteresting(LocationContextMap[call])) {
208 containsSomethingInteresting = true;
209 break;
210 }
Ted Kremenek72516742012-03-01 00:05:06 +0000211 // Recursively clean out the subclass. Keep this call around if
212 // it contains any informative diagnostics.
Ted Kremeneka43df952012-09-21 00:09:11 +0000213 PathDiagnosticCallPiece *NewCallWithLoc =
214 call->getLocation().asLocation().isValid()
215 ? call : CallWithLoc;
216
217 if (!RemoveUneededCalls(call->path, R, NewCallWithLoc))
Ted Kremenek72516742012-03-01 00:05:06 +0000218 continue;
Ted Kremeneka43df952012-09-21 00:09:11 +0000219
220 if (NewCallWithLoc == CallWithLoc && CallWithLoc) {
221 call->callEnter = CallWithLoc->callEnter;
222 }
223
Ted Kremenekc89f4b02012-02-28 23:06:21 +0000224 containsSomethingInteresting = true;
Ted Kremenek72516742012-03-01 00:05:06 +0000225 break;
226 }
227 case PathDiagnosticPiece::Macro: {
228 PathDiagnosticMacroPiece *macro = cast<PathDiagnosticMacroPiece>(piece);
Anna Zaks80de4872012-08-29 21:22:37 +0000229 if (!RemoveUneededCalls(macro->subPieces, R))
Ted Kremenek72516742012-03-01 00:05:06 +0000230 continue;
231 containsSomethingInteresting = true;
232 break;
233 }
234 case PathDiagnosticPiece::Event: {
235 PathDiagnosticEventPiece *event = cast<PathDiagnosticEventPiece>(piece);
Ted Kremeneka43df952012-09-21 00:09:11 +0000236
Ted Kremenek72516742012-03-01 00:05:06 +0000237 // We never throw away an event, but we do throw it away wholesale
238 // as part of a path if we throw the entire path away.
Ted Kremenek22505ef2012-09-08 07:18:18 +0000239 containsSomethingInteresting |= !event->isPrunable();
Ted Kremenek72516742012-03-01 00:05:06 +0000240 break;
241 }
242 case PathDiagnosticPiece::ControlFlow:
243 break;
Ted Kremenekc89f4b02012-02-28 23:06:21 +0000244 }
245
246 pieces.push_back(piece);
247 }
248
249 return containsSomethingInteresting;
250}
251
252//===----------------------------------------------------------------------===//
Ted Kremenek31061982009-03-31 23:00:32 +0000253// PathDiagnosticBuilder and its associated routines and helper objects.
Ted Kremenekb697b102009-02-23 22:44:26 +0000254//===----------------------------------------------------------------------===//
Ted Kremenekb479dad2009-02-23 23:13:51 +0000255
Zhongxing Xuc5619d92009-08-06 01:32:16 +0000256typedef llvm::DenseMap<const ExplodedNode*,
257const ExplodedNode*> NodeBackMap;
Ted Kremenek7dc86642009-03-31 20:22:36 +0000258
Ted Kremenekbabdd7b2009-03-27 05:06:10 +0000259namespace {
Kovarththanan Rajaratnamba5fb5a2009-11-28 06:07:30 +0000260class NodeMapClosure : public BugReport::NodeResolver {
Ted Kremenek7dc86642009-03-31 20:22:36 +0000261 NodeBackMap& M;
262public:
263 NodeMapClosure(NodeBackMap *m) : M(*m) {}
264 ~NodeMapClosure() {}
Mike Stump1eb44332009-09-09 15:08:12 +0000265
Ted Kremenek9c378f72011-08-12 23:37:29 +0000266 const ExplodedNode *getOriginalNode(const ExplodedNode *N) {
Ted Kremenek7dc86642009-03-31 20:22:36 +0000267 NodeBackMap::iterator I = M.find(N);
268 return I == M.end() ? 0 : I->second;
269 }
270};
Mike Stump1eb44332009-09-09 15:08:12 +0000271
Kovarththanan Rajaratnamba5fb5a2009-11-28 06:07:30 +0000272class PathDiagnosticBuilder : public BugReporterContext {
Ted Kremenek7dc86642009-03-31 20:22:36 +0000273 BugReport *R;
David Blaikieef3643f2011-09-26 00:51:36 +0000274 PathDiagnosticConsumer *PDC;
Dylan Noblesmith6f42b622012-02-05 02:12:40 +0000275 OwningPtr<ParentMap> PM;
Ted Kremenek7dc86642009-03-31 20:22:36 +0000276 NodeMapClosure NMC;
Mike Stump1eb44332009-09-09 15:08:12 +0000277public:
Ted Kremenek59950d32012-02-24 07:12:52 +0000278 const LocationContext *LC;
279
Ted Kremenek8966bc12009-05-06 21:39:49 +0000280 PathDiagnosticBuilder(GRBugReporter &br,
Mike Stump1eb44332009-09-09 15:08:12 +0000281 BugReport *r, NodeBackMap *Backmap,
David Blaikieef3643f2011-09-26 00:51:36 +0000282 PathDiagnosticConsumer *pdc)
Ted Kremenek8966bc12009-05-06 21:39:49 +0000283 : BugReporterContext(br),
Ted Kremenek59950d32012-02-24 07:12:52 +0000284 R(r), PDC(pdc), NMC(Backmap), LC(r->getErrorNode()->getLocationContext())
285 {}
Mike Stump1eb44332009-09-09 15:08:12 +0000286
Ted Kremenek9c378f72011-08-12 23:37:29 +0000287 PathDiagnosticLocation ExecutionContinues(const ExplodedNode *N);
Mike Stump1eb44332009-09-09 15:08:12 +0000288
Ted Kremenek9c378f72011-08-12 23:37:29 +0000289 PathDiagnosticLocation ExecutionContinues(llvm::raw_string_ostream &os,
290 const ExplodedNode *N);
Mike Stump1eb44332009-09-09 15:08:12 +0000291
Anna Zaks8e6431a2011-08-18 22:37:56 +0000292 BugReport *getBugReport() { return R; }
293
Tom Care212f6d32010-09-16 03:50:38 +0000294 Decl const &getCodeDecl() { return R->getErrorNode()->getCodeDecl(); }
Ted Kremenek59950d32012-02-24 07:12:52 +0000295
296 ParentMap& getParentMap() { return LC->getParentMap(); }
Mike Stump1eb44332009-09-09 15:08:12 +0000297
Ted Kremenekc3f83ad2009-04-01 17:18:21 +0000298 const Stmt *getParent(const Stmt *S) {
299 return getParentMap().getParent(S);
300 }
Mike Stump1eb44332009-09-09 15:08:12 +0000301
Ted Kremenek8966bc12009-05-06 21:39:49 +0000302 virtual NodeMapClosure& getNodeResolver() { return NMC; }
Douglas Gregor72971342009-04-18 00:02:19 +0000303
Ted Kremenekd8c938b2009-03-27 21:16:25 +0000304 PathDiagnosticLocation getEnclosingStmtLocation(const Stmt *S);
Mike Stump1eb44332009-09-09 15:08:12 +0000305
David Blaikieef3643f2011-09-26 00:51:36 +0000306 PathDiagnosticConsumer::PathGenerationScheme getGenerationScheme() const {
307 return PDC ? PDC->getGenerationScheme() : PathDiagnosticConsumer::Extensive;
Ted Kremenek7dc86642009-03-31 20:22:36 +0000308 }
309
Ted Kremenekbabdd7b2009-03-27 05:06:10 +0000310 bool supportsLogicalOpControlFlow() const {
311 return PDC ? PDC->supportsLogicalOpControlFlow() : true;
Mike Stump1eb44332009-09-09 15:08:12 +0000312 }
Ted Kremenekbabdd7b2009-03-27 05:06:10 +0000313};
314} // end anonymous namespace
315
Ted Kremenek00605e02009-03-27 20:55:39 +0000316PathDiagnosticLocation
Ted Kremenek9c378f72011-08-12 23:37:29 +0000317PathDiagnosticBuilder::ExecutionContinues(const ExplodedNode *N) {
Ted Kremenek5f85e172009-07-22 22:35:28 +0000318 if (const Stmt *S = GetNextStmt(N))
Ted Kremenek59950d32012-02-24 07:12:52 +0000319 return PathDiagnosticLocation(S, getSourceManager(), LC);
Ted Kremenek00605e02009-03-27 20:55:39 +0000320
Anna Zaks0cd59482011-09-16 19:18:30 +0000321 return PathDiagnosticLocation::createDeclEnd(N->getLocationContext(),
322 getSourceManager());
Ted Kremenek082cb8d2009-03-12 18:41:53 +0000323}
Mike Stump1eb44332009-09-09 15:08:12 +0000324
Ted Kremenek00605e02009-03-27 20:55:39 +0000325PathDiagnosticLocation
Ted Kremenek9c378f72011-08-12 23:37:29 +0000326PathDiagnosticBuilder::ExecutionContinues(llvm::raw_string_ostream &os,
327 const ExplodedNode *N) {
Ted Kremenekbabdd7b2009-03-27 05:06:10 +0000328
Ted Kremenek143ca222008-05-06 18:11:09 +0000329 // Slow, but probably doesn't matter.
Ted Kremenekb697b102009-02-23 22:44:26 +0000330 if (os.str().empty())
331 os << ' ';
Mike Stump1eb44332009-09-09 15:08:12 +0000332
Ted Kremenek00605e02009-03-27 20:55:39 +0000333 const PathDiagnosticLocation &Loc = ExecutionContinues(N);
Mike Stump1eb44332009-09-09 15:08:12 +0000334
Ted Kremenek00605e02009-03-27 20:55:39 +0000335 if (Loc.asStmt())
Ted Kremenekb697b102009-02-23 22:44:26 +0000336 os << "Execution continues on line "
Chandler Carruth64211622011-07-25 21:09:52 +0000337 << getSourceManager().getExpansionLineNumber(Loc.asLocation())
Ted Kremenek8966bc12009-05-06 21:39:49 +0000338 << '.';
Ted Kremenek4f1db532009-12-04 20:34:31 +0000339 else {
340 os << "Execution jumps to the end of the ";
341 const Decl *D = N->getLocationContext()->getDecl();
342 if (isa<ObjCMethodDecl>(D))
343 os << "method";
344 else if (isa<FunctionDecl>(D))
345 os << "function";
346 else {
347 assert(isa<BlockDecl>(D));
348 os << "anonymous block";
349 }
350 os << '.';
351 }
Mike Stump1eb44332009-09-09 15:08:12 +0000352
Ted Kremenek082cb8d2009-03-12 18:41:53 +0000353 return Loc;
Ted Kremenek143ca222008-05-06 18:11:09 +0000354}
355
Ted Kremenekddb7bab2009-05-15 01:50:15 +0000356static bool IsNested(const Stmt *S, ParentMap &PM) {
357 if (isa<Expr>(S) && PM.isConsumedExpr(cast<Expr>(S)))
358 return true;
Mike Stump1eb44332009-09-09 15:08:12 +0000359
Ted Kremenekddb7bab2009-05-15 01:50:15 +0000360 const Stmt *Parent = PM.getParentIgnoreParens(S);
Mike Stump1eb44332009-09-09 15:08:12 +0000361
Ted Kremenekddb7bab2009-05-15 01:50:15 +0000362 if (Parent)
363 switch (Parent->getStmtClass()) {
364 case Stmt::ForStmtClass:
365 case Stmt::DoStmtClass:
366 case Stmt::WhileStmtClass:
367 return true;
368 default:
369 break;
370 }
Mike Stump1eb44332009-09-09 15:08:12 +0000371
372 return false;
Ted Kremenekddb7bab2009-05-15 01:50:15 +0000373}
374
Ted Kremenekd8c938b2009-03-27 21:16:25 +0000375PathDiagnosticLocation
376PathDiagnosticBuilder::getEnclosingStmtLocation(const Stmt *S) {
Ted Kremenek9c378f72011-08-12 23:37:29 +0000377 assert(S && "Null Stmt *passed to getEnclosingStmtLocation");
Mike Stump1eb44332009-09-09 15:08:12 +0000378 ParentMap &P = getParentMap();
Ted Kremenek8966bc12009-05-06 21:39:49 +0000379 SourceManager &SMgr = getSourceManager();
Ted Kremeneke88a1702009-05-11 22:19:32 +0000380
Ted Kremenekddb7bab2009-05-15 01:50:15 +0000381 while (IsNested(S, P)) {
Ted Kremenek8c8b0ad2009-05-11 19:50:47 +0000382 const Stmt *Parent = P.getParentIgnoreParens(S);
Mike Stump1eb44332009-09-09 15:08:12 +0000383
Ted Kremenekaf3e3d52009-03-28 03:37:59 +0000384 if (!Parent)
385 break;
Mike Stump1eb44332009-09-09 15:08:12 +0000386
Ted Kremenekaf3e3d52009-03-28 03:37:59 +0000387 switch (Parent->getStmtClass()) {
Ted Kremenek5fb5dfb2009-04-01 06:13:56 +0000388 case Stmt::BinaryOperatorClass: {
389 const BinaryOperator *B = cast<BinaryOperator>(Parent);
390 if (B->isLogicalOp())
Anna Zaks220ac8c2011-09-15 01:08:34 +0000391 return PathDiagnosticLocation(S, SMgr, LC);
Ted Kremenek5fb5dfb2009-04-01 06:13:56 +0000392 break;
Mike Stump1eb44332009-09-09 15:08:12 +0000393 }
Ted Kremenekaf3e3d52009-03-28 03:37:59 +0000394 case Stmt::CompoundStmtClass:
395 case Stmt::StmtExprClass:
Anna Zaks220ac8c2011-09-15 01:08:34 +0000396 return PathDiagnosticLocation(S, SMgr, LC);
Ted Kremenek1d9a23a2009-03-28 04:08:14 +0000397 case Stmt::ChooseExprClass:
398 // Similar to '?' if we are referring to condition, just have the edge
399 // point to the entire choose expression.
400 if (cast<ChooseExpr>(Parent)->getCond() == S)
Anna Zaks220ac8c2011-09-15 01:08:34 +0000401 return PathDiagnosticLocation(Parent, SMgr, LC);
Ted Kremenek1d9a23a2009-03-28 04:08:14 +0000402 else
Anna Zaks220ac8c2011-09-15 01:08:34 +0000403 return PathDiagnosticLocation(S, SMgr, LC);
John McCall56ca35d2011-02-17 10:25:35 +0000404 case Stmt::BinaryConditionalOperatorClass:
Ted Kremenek1d9a23a2009-03-28 04:08:14 +0000405 case Stmt::ConditionalOperatorClass:
406 // For '?', if we are referring to condition, just have the edge point
407 // to the entire '?' expression.
John McCall56ca35d2011-02-17 10:25:35 +0000408 if (cast<AbstractConditionalOperator>(Parent)->getCond() == S)
Anna Zaks220ac8c2011-09-15 01:08:34 +0000409 return PathDiagnosticLocation(Parent, SMgr, LC);
Ted Kremenek1d9a23a2009-03-28 04:08:14 +0000410 else
Anna Zaks220ac8c2011-09-15 01:08:34 +0000411 return PathDiagnosticLocation(S, SMgr, LC);
Ted Kremenekaf3e3d52009-03-28 03:37:59 +0000412 case Stmt::DoStmtClass:
Anna Zaks220ac8c2011-09-15 01:08:34 +0000413 return PathDiagnosticLocation(S, SMgr, LC);
Ted Kremenekaf3e3d52009-03-28 03:37:59 +0000414 case Stmt::ForStmtClass:
415 if (cast<ForStmt>(Parent)->getBody() == S)
Anna Zaks220ac8c2011-09-15 01:08:34 +0000416 return PathDiagnosticLocation(S, SMgr, LC);
Mike Stump1eb44332009-09-09 15:08:12 +0000417 break;
Ted Kremenekaf3e3d52009-03-28 03:37:59 +0000418 case Stmt::IfStmtClass:
419 if (cast<IfStmt>(Parent)->getCond() != S)
Anna Zaks220ac8c2011-09-15 01:08:34 +0000420 return PathDiagnosticLocation(S, SMgr, LC);
Ted Kremenek8bd4d032009-04-28 04:23:15 +0000421 break;
Ted Kremenekaf3e3d52009-03-28 03:37:59 +0000422 case Stmt::ObjCForCollectionStmtClass:
423 if (cast<ObjCForCollectionStmt>(Parent)->getBody() == S)
Anna Zaks220ac8c2011-09-15 01:08:34 +0000424 return PathDiagnosticLocation(S, SMgr, LC);
Ted Kremenekaf3e3d52009-03-28 03:37:59 +0000425 break;
426 case Stmt::WhileStmtClass:
427 if (cast<WhileStmt>(Parent)->getCond() != S)
Anna Zaks220ac8c2011-09-15 01:08:34 +0000428 return PathDiagnosticLocation(S, SMgr, LC);
Ted Kremenekaf3e3d52009-03-28 03:37:59 +0000429 break;
430 default:
431 break;
432 }
433
Ted Kremenekd8c938b2009-03-27 21:16:25 +0000434 S = Parent;
435 }
Mike Stump1eb44332009-09-09 15:08:12 +0000436
Ted Kremenekd8c938b2009-03-27 21:16:25 +0000437 assert(S && "Cannot have null Stmt for PathDiagnosticLocation");
Ted Kremeneke88a1702009-05-11 22:19:32 +0000438
439 // Special case: DeclStmts can appear in for statement declarations, in which
440 // case the ForStmt is the context.
441 if (isa<DeclStmt>(S)) {
442 if (const Stmt *Parent = P.getParent(S)) {
443 switch (Parent->getStmtClass()) {
444 case Stmt::ForStmtClass:
445 case Stmt::ObjCForCollectionStmtClass:
Anna Zaks220ac8c2011-09-15 01:08:34 +0000446 return PathDiagnosticLocation(Parent, SMgr, LC);
Ted Kremeneke88a1702009-05-11 22:19:32 +0000447 default:
448 break;
Mike Stump1eb44332009-09-09 15:08:12 +0000449 }
450 }
Ted Kremeneke88a1702009-05-11 22:19:32 +0000451 }
452 else if (isa<BinaryOperator>(S)) {
453 // Special case: the binary operator represents the initialization
454 // code in a for statement (this can happen when the variable being
455 // initialized is an old variable.
456 if (const ForStmt *FS =
457 dyn_cast_or_null<ForStmt>(P.getParentIgnoreParens(S))) {
458 if (FS->getInit() == S)
Anna Zaks220ac8c2011-09-15 01:08:34 +0000459 return PathDiagnosticLocation(FS, SMgr, LC);
Ted Kremeneke88a1702009-05-11 22:19:32 +0000460 }
461 }
462
Anna Zaks220ac8c2011-09-15 01:08:34 +0000463 return PathDiagnosticLocation(S, SMgr, LC);
Ted Kremenekd8c938b2009-03-27 21:16:25 +0000464}
465
Ted Kremenekcf118d42009-02-04 23:49:09 +0000466//===----------------------------------------------------------------------===//
Jordan Rosed632d6f2012-09-22 01:24:56 +0000467// "Visitors only" path diagnostic generation algorithm.
468//===----------------------------------------------------------------------===//
469static bool GenerateVisitorsOnlyPathDiagnostic(PathDiagnostic &PD,
470 PathDiagnosticBuilder &PDB,
471 const ExplodedNode *N,
472 ArrayRef<BugReporterVisitor *> visitors) {
473 // All path generation skips the very first node (the error node).
474 // This is because there is special handling for the end-of-path note.
475 N = N->getFirstPred();
476 if (!N)
477 return true;
478
479 BugReport *R = PDB.getBugReport();
480 while (const ExplodedNode *Pred = N->getFirstPred()) {
481 for (ArrayRef<BugReporterVisitor *>::iterator I = visitors.begin(),
482 E = visitors.end();
483 I != E; ++I) {
484 // Visit all the node pairs, but throw the path pieces away.
485 PathDiagnosticPiece *Piece = (*I)->VisitNode(N, Pred, PDB, *R);
486 delete Piece;
487 }
488
489 N = Pred;
490 }
491
492 return R->isValid();
493}
494
495//===----------------------------------------------------------------------===//
Ted Kremenek31061982009-03-31 23:00:32 +0000496// "Minimal" path diagnostic generation algorithm.
497//===----------------------------------------------------------------------===//
Anna Zaks56a938f2012-03-16 23:24:20 +0000498typedef std::pair<PathDiagnosticCallPiece*, const ExplodedNode*> StackDiagPair;
499typedef SmallVector<StackDiagPair, 6> StackDiagVector;
500
Anna Zaks368a0d52012-03-15 21:13:02 +0000501static void updateStackPiecesWithMessage(PathDiagnosticPiece *P,
Anna Zaks56a938f2012-03-16 23:24:20 +0000502 StackDiagVector &CallStack) {
Anna Zaks368a0d52012-03-15 21:13:02 +0000503 // If the piece contains a special message, add it to all the call
504 // pieces on the active stack.
505 if (PathDiagnosticEventPiece *ep =
506 dyn_cast<PathDiagnosticEventPiece>(P)) {
Anna Zaks368a0d52012-03-15 21:13:02 +0000507
Anna Zaks56a938f2012-03-16 23:24:20 +0000508 if (ep->hasCallStackHint())
509 for (StackDiagVector::iterator I = CallStack.begin(),
510 E = CallStack.end(); I != E; ++I) {
511 PathDiagnosticCallPiece *CP = I->first;
512 const ExplodedNode *N = I->second;
NAKAMURA Takumi8fe45252012-03-17 13:06:05 +0000513 std::string stackMsg = ep->getCallStackMessage(N);
Anna Zaks56a938f2012-03-16 23:24:20 +0000514
Anna Zaks368a0d52012-03-15 21:13:02 +0000515 // The last message on the path to final bug is the most important
516 // one. Since we traverse the path backwards, do not add the message
517 // if one has been previously added.
Anna Zaks56a938f2012-03-16 23:24:20 +0000518 if (!CP->hasCallStackMessage())
519 CP->setCallStackMessage(stackMsg);
520 }
Anna Zaks368a0d52012-03-15 21:13:02 +0000521 }
522}
Ted Kremenek31061982009-03-31 23:00:32 +0000523
Ted Kremenek77d09442012-03-02 01:27:31 +0000524static void CompactPathDiagnostic(PathPieces &path, const SourceManager& SM);
Ted Kremenek14856d72009-04-06 23:06:54 +0000525
Jordan Rose8347d3d2012-09-22 01:24:53 +0000526static bool GenerateMinimalPathDiagnostic(PathDiagnostic& PD,
Ted Kremenek31061982009-03-31 23:00:32 +0000527 PathDiagnosticBuilder &PDB,
Jordy Rose3bc75ca2012-03-24 03:03:29 +0000528 const ExplodedNode *N,
529 ArrayRef<BugReporterVisitor *> visitors) {
Ted Kremenek8966bc12009-05-06 21:39:49 +0000530
Ted Kremenek31061982009-03-31 23:00:32 +0000531 SourceManager& SMgr = PDB.getSourceManager();
Ted Kremenek59950d32012-02-24 07:12:52 +0000532 const LocationContext *LC = PDB.LC;
Ted Kremenek9c378f72011-08-12 23:37:29 +0000533 const ExplodedNode *NextNode = N->pred_empty()
Ted Kremenek31061982009-03-31 23:00:32 +0000534 ? NULL : *(N->pred_begin());
Anna Zaks368a0d52012-03-15 21:13:02 +0000535
Anna Zaks56a938f2012-03-16 23:24:20 +0000536 StackDiagVector CallStack;
Anna Zaks368a0d52012-03-15 21:13:02 +0000537
Ted Kremenek31061982009-03-31 23:00:32 +0000538 while (NextNode) {
Mike Stump1eb44332009-09-09 15:08:12 +0000539 N = NextNode;
Ted Kremenek59950d32012-02-24 07:12:52 +0000540 PDB.LC = N->getLocationContext();
Ted Kremenek31061982009-03-31 23:00:32 +0000541 NextNode = GetPredecessorNode(N);
Mike Stump1eb44332009-09-09 15:08:12 +0000542
Ted Kremenek31061982009-03-31 23:00:32 +0000543 ProgramPoint P = N->getLocation();
Jordan Rose183ba8e2012-07-26 20:04:05 +0000544
Anna Zaks80de4872012-08-29 21:22:37 +0000545 do {
546 if (const CallExitEnd *CE = dyn_cast<CallExitEnd>(&P)) {
547 PathDiagnosticCallPiece *C =
548 PathDiagnosticCallPiece::construct(N, *CE, SMgr);
549 GRBugReporter& BR = PDB.getBugReporter();
550 BR.addCallPieceLocationContextPair(C, CE->getCalleeContext());
551 PD.getActivePath().push_front(C);
552 PD.pushActivePath(&C->path);
553 CallStack.push_back(StackDiagPair(C, N));
554 break;
Anna Zaks93739372012-03-14 18:58:28 +0000555 }
Jordan Rose183ba8e2012-07-26 20:04:05 +0000556
Anna Zaks80de4872012-08-29 21:22:37 +0000557 if (const CallEnter *CE = dyn_cast<CallEnter>(&P)) {
558 // Flush all locations, and pop the active path.
559 bool VisitedEntireCall = PD.isWithinCall();
560 PD.popActivePath();
561
562 // Either we just added a bunch of stuff to the top-level path, or
563 // we have a previous CallExitEnd. If the former, it means that the
564 // path terminated within a function call. We must then take the
565 // current contents of the active path and place it within
566 // a new PathDiagnosticCallPiece.
567 PathDiagnosticCallPiece *C;
568 if (VisitedEntireCall) {
569 C = cast<PathDiagnosticCallPiece>(PD.getActivePath().front());
570 } else {
571 const Decl *Caller = CE->getLocationContext()->getDecl();
572 C = PathDiagnosticCallPiece::construct(PD.getActivePath(), Caller);
573 GRBugReporter& BR = PDB.getBugReporter();
574 BR.addCallPieceLocationContextPair(C, CE->getCalleeContext());
575 }
576
577 C->setCallee(*CE, SMgr);
578 if (!CallStack.empty()) {
579 assert(CallStack.back().first == C);
580 CallStack.pop_back();
581 }
582 break;
Anna Zaks368a0d52012-03-15 21:13:02 +0000583 }
Mike Stump1eb44332009-09-09 15:08:12 +0000584
Anna Zaks80de4872012-08-29 21:22:37 +0000585 if (const BlockEdge *BE = dyn_cast<BlockEdge>(&P)) {
586 const CFGBlock *Src = BE->getSrc();
587 const CFGBlock *Dst = BE->getDst();
588 const Stmt *T = Src->getTerminator();
Mike Stump1eb44332009-09-09 15:08:12 +0000589
Anna Zaks80de4872012-08-29 21:22:37 +0000590 if (!T)
591 break;
Mike Stump1eb44332009-09-09 15:08:12 +0000592
Anna Zaks80de4872012-08-29 21:22:37 +0000593 PathDiagnosticLocation Start =
594 PathDiagnosticLocation::createBegin(T, SMgr,
595 N->getLocationContext());
Mike Stump1eb44332009-09-09 15:08:12 +0000596
Anna Zaks80de4872012-08-29 21:22:37 +0000597 switch (T->getStmtClass()) {
Ted Kremenek31061982009-03-31 23:00:32 +0000598 default:
599 break;
Mike Stump1eb44332009-09-09 15:08:12 +0000600
Ted Kremenek31061982009-03-31 23:00:32 +0000601 case Stmt::GotoStmtClass:
Mike Stump1eb44332009-09-09 15:08:12 +0000602 case Stmt::IndirectGotoStmtClass: {
Ted Kremenek9c378f72011-08-12 23:37:29 +0000603 const Stmt *S = GetNextStmt(N);
Mike Stump1eb44332009-09-09 15:08:12 +0000604
Ted Kremenek31061982009-03-31 23:00:32 +0000605 if (!S)
Anna Zaks80de4872012-08-29 21:22:37 +0000606 break;
Mike Stump1eb44332009-09-09 15:08:12 +0000607
Ted Kremenek31061982009-03-31 23:00:32 +0000608 std::string sbuf;
Mike Stump1eb44332009-09-09 15:08:12 +0000609 llvm::raw_string_ostream os(sbuf);
Ted Kremenek31061982009-03-31 23:00:32 +0000610 const PathDiagnosticLocation &End = PDB.getEnclosingStmtLocation(S);
Mike Stump1eb44332009-09-09 15:08:12 +0000611
Ted Kremenek31061982009-03-31 23:00:32 +0000612 os << "Control jumps to line "
Anna Zaks80de4872012-08-29 21:22:37 +0000613 << End.asLocation().getExpansionLineNumber();
614 PD.getActivePath().push_front(new PathDiagnosticControlFlowPiece(
615 Start, End, os.str()));
Ted Kremenek31061982009-03-31 23:00:32 +0000616 break;
617 }
Mike Stump1eb44332009-09-09 15:08:12 +0000618
619 case Stmt::SwitchStmtClass: {
Ted Kremenek31061982009-03-31 23:00:32 +0000620 // Figure out what case arm we took.
621 std::string sbuf;
622 llvm::raw_string_ostream os(sbuf);
Mike Stump1eb44332009-09-09 15:08:12 +0000623
Ted Kremenek9c378f72011-08-12 23:37:29 +0000624 if (const Stmt *S = Dst->getLabel()) {
Anna Zaks220ac8c2011-09-15 01:08:34 +0000625 PathDiagnosticLocation End(S, SMgr, LC);
Mike Stump1eb44332009-09-09 15:08:12 +0000626
Ted Kremenek31061982009-03-31 23:00:32 +0000627 switch (S->getStmtClass()) {
Anna Zaks80de4872012-08-29 21:22:37 +0000628 default:
629 os << "No cases match in the switch statement. "
630 "Control jumps to line "
631 << End.asLocation().getExpansionLineNumber();
632 break;
633 case Stmt::DefaultStmtClass:
634 os << "Control jumps to the 'default' case at line "
635 << End.asLocation().getExpansionLineNumber();
636 break;
Mike Stump1eb44332009-09-09 15:08:12 +0000637
Anna Zaks80de4872012-08-29 21:22:37 +0000638 case Stmt::CaseStmtClass: {
639 os << "Control jumps to 'case ";
640 const CaseStmt *Case = cast<CaseStmt>(S);
641 const Expr *LHS = Case->getLHS()->IgnoreParenCasts();
Mike Stump1eb44332009-09-09 15:08:12 +0000642
Anna Zaks80de4872012-08-29 21:22:37 +0000643 // Determine if it is an enum.
644 bool GetRawInt = true;
Mike Stump1eb44332009-09-09 15:08:12 +0000645
Anna Zaks80de4872012-08-29 21:22:37 +0000646 if (const DeclRefExpr *DR = dyn_cast<DeclRefExpr>(LHS)) {
647 // FIXME: Maybe this should be an assertion. Are there cases
648 // were it is not an EnumConstantDecl?
649 const EnumConstantDecl *D =
Zhongxing Xu03509ae2010-07-20 06:22:24 +0000650 dyn_cast<EnumConstantDecl>(DR->getDecl());
Mike Stump1eb44332009-09-09 15:08:12 +0000651
Anna Zaks80de4872012-08-29 21:22:37 +0000652 if (D) {
653 GetRawInt = false;
654 os << *D;
Ted Kremenek31061982009-03-31 23:00:32 +0000655 }
Ted Kremenek31061982009-03-31 23:00:32 +0000656 }
Anna Zaks80de4872012-08-29 21:22:37 +0000657
658 if (GetRawInt)
659 os << LHS->EvaluateKnownConstInt(PDB.getASTContext());
660
661 os << ":' at line "
662 << End.asLocation().getExpansionLineNumber();
663 break;
Ted Kremenek31061982009-03-31 23:00:32 +0000664 }
Anna Zaks80de4872012-08-29 21:22:37 +0000665 }
666 PD.getActivePath().push_front(new PathDiagnosticControlFlowPiece(
667 Start, End, os.str()));
Ted Kremenek31061982009-03-31 23:00:32 +0000668 }
669 else {
670 os << "'Default' branch taken. ";
Mike Stump1eb44332009-09-09 15:08:12 +0000671 const PathDiagnosticLocation &End = PDB.ExecutionContinues(os, N);
Anna Zaks80de4872012-08-29 21:22:37 +0000672 PD.getActivePath().push_front(new PathDiagnosticControlFlowPiece(
673 Start, End, os.str()));
Ted Kremenek31061982009-03-31 23:00:32 +0000674 }
Mike Stump1eb44332009-09-09 15:08:12 +0000675
Ted Kremenek31061982009-03-31 23:00:32 +0000676 break;
677 }
Mike Stump1eb44332009-09-09 15:08:12 +0000678
Ted Kremenek31061982009-03-31 23:00:32 +0000679 case Stmt::BreakStmtClass:
680 case Stmt::ContinueStmtClass: {
681 std::string sbuf;
682 llvm::raw_string_ostream os(sbuf);
683 PathDiagnosticLocation End = PDB.ExecutionContinues(os, N);
Anna Zaks80de4872012-08-29 21:22:37 +0000684 PD.getActivePath().push_front(new PathDiagnosticControlFlowPiece(
685 Start, End, os.str()));
Ted Kremenek31061982009-03-31 23:00:32 +0000686 break;
687 }
Mike Stump1eb44332009-09-09 15:08:12 +0000688
Anna Zaks80de4872012-08-29 21:22:37 +0000689 // Determine control-flow for ternary '?'.
John McCall56ca35d2011-02-17 10:25:35 +0000690 case Stmt::BinaryConditionalOperatorClass:
Ted Kremenek31061982009-03-31 23:00:32 +0000691 case Stmt::ConditionalOperatorClass: {
692 std::string sbuf;
693 llvm::raw_string_ostream os(sbuf);
694 os << "'?' condition is ";
Mike Stump1eb44332009-09-09 15:08:12 +0000695
Ted Kremenek31061982009-03-31 23:00:32 +0000696 if (*(Src->succ_begin()+1) == Dst)
697 os << "false";
698 else
699 os << "true";
Mike Stump1eb44332009-09-09 15:08:12 +0000700
Ted Kremenek31061982009-03-31 23:00:32 +0000701 PathDiagnosticLocation End = PDB.ExecutionContinues(N);
Mike Stump1eb44332009-09-09 15:08:12 +0000702
Ted Kremenek31061982009-03-31 23:00:32 +0000703 if (const Stmt *S = End.asStmt())
704 End = PDB.getEnclosingStmtLocation(S);
Mike Stump1eb44332009-09-09 15:08:12 +0000705
Anna Zaks80de4872012-08-29 21:22:37 +0000706 PD.getActivePath().push_front(new PathDiagnosticControlFlowPiece(
707 Start, End, os.str()));
Ted Kremenek31061982009-03-31 23:00:32 +0000708 break;
709 }
Mike Stump1eb44332009-09-09 15:08:12 +0000710
Anna Zaks80de4872012-08-29 21:22:37 +0000711 // Determine control-flow for short-circuited '&&' and '||'.
Ted Kremenek31061982009-03-31 23:00:32 +0000712 case Stmt::BinaryOperatorClass: {
713 if (!PDB.supportsLogicalOpControlFlow())
714 break;
Mike Stump1eb44332009-09-09 15:08:12 +0000715
Zhongxing Xu03509ae2010-07-20 06:22:24 +0000716 const BinaryOperator *B = cast<BinaryOperator>(T);
Ted Kremenek31061982009-03-31 23:00:32 +0000717 std::string sbuf;
718 llvm::raw_string_ostream os(sbuf);
719 os << "Left side of '";
Mike Stump1eb44332009-09-09 15:08:12 +0000720
John McCall2de56d12010-08-25 11:45:40 +0000721 if (B->getOpcode() == BO_LAnd) {
Ted Kremenek31061982009-03-31 23:00:32 +0000722 os << "&&" << "' is ";
Mike Stump1eb44332009-09-09 15:08:12 +0000723
Ted Kremenek31061982009-03-31 23:00:32 +0000724 if (*(Src->succ_begin()+1) == Dst) {
725 os << "false";
Anna Zaks220ac8c2011-09-15 01:08:34 +0000726 PathDiagnosticLocation End(B->getLHS(), SMgr, LC);
Anna Zaks0cd59482011-09-16 19:18:30 +0000727 PathDiagnosticLocation Start =
Anna Zaks80de4872012-08-29 21:22:37 +0000728 PathDiagnosticLocation::createOperatorLoc(B, SMgr);
729 PD.getActivePath().push_front(new PathDiagnosticControlFlowPiece(
730 Start, End, os.str()));
Mike Stump1eb44332009-09-09 15:08:12 +0000731 }
Ted Kremenek31061982009-03-31 23:00:32 +0000732 else {
733 os << "true";
Anna Zaks220ac8c2011-09-15 01:08:34 +0000734 PathDiagnosticLocation Start(B->getLHS(), SMgr, LC);
Ted Kremenek31061982009-03-31 23:00:32 +0000735 PathDiagnosticLocation End = PDB.ExecutionContinues(N);
Anna Zaks80de4872012-08-29 21:22:37 +0000736 PD.getActivePath().push_front(new PathDiagnosticControlFlowPiece(
737 Start, End, os.str()));
Mike Stump1eb44332009-09-09 15:08:12 +0000738 }
Ted Kremenek31061982009-03-31 23:00:32 +0000739 }
740 else {
John McCall2de56d12010-08-25 11:45:40 +0000741 assert(B->getOpcode() == BO_LOr);
Ted Kremenek31061982009-03-31 23:00:32 +0000742 os << "||" << "' is ";
Mike Stump1eb44332009-09-09 15:08:12 +0000743
Ted Kremenek31061982009-03-31 23:00:32 +0000744 if (*(Src->succ_begin()+1) == Dst) {
745 os << "false";
Anna Zaks220ac8c2011-09-15 01:08:34 +0000746 PathDiagnosticLocation Start(B->getLHS(), SMgr, LC);
Ted Kremenek31061982009-03-31 23:00:32 +0000747 PathDiagnosticLocation End = PDB.ExecutionContinues(N);
Anna Zaks80de4872012-08-29 21:22:37 +0000748 PD.getActivePath().push_front(new PathDiagnosticControlFlowPiece(
749 Start, End, os.str()));
Ted Kremenek31061982009-03-31 23:00:32 +0000750 }
751 else {
752 os << "true";
Anna Zaks220ac8c2011-09-15 01:08:34 +0000753 PathDiagnosticLocation End(B->getLHS(), SMgr, LC);
Anna Zaks0cd59482011-09-16 19:18:30 +0000754 PathDiagnosticLocation Start =
Anna Zaks80de4872012-08-29 21:22:37 +0000755 PathDiagnosticLocation::createOperatorLoc(B, SMgr);
756 PD.getActivePath().push_front(new PathDiagnosticControlFlowPiece(
757 Start, End, os.str()));
Ted Kremenek31061982009-03-31 23:00:32 +0000758 }
759 }
Mike Stump1eb44332009-09-09 15:08:12 +0000760
Ted Kremenek31061982009-03-31 23:00:32 +0000761 break;
762 }
Mike Stump1eb44332009-09-09 15:08:12 +0000763
764 case Stmt::DoStmtClass: {
Ted Kremenek31061982009-03-31 23:00:32 +0000765 if (*(Src->succ_begin()) == Dst) {
766 std::string sbuf;
767 llvm::raw_string_ostream os(sbuf);
Mike Stump1eb44332009-09-09 15:08:12 +0000768
Ted Kremenek31061982009-03-31 23:00:32 +0000769 os << "Loop condition is true. ";
770 PathDiagnosticLocation End = PDB.ExecutionContinues(os, N);
Mike Stump1eb44332009-09-09 15:08:12 +0000771
Ted Kremenek31061982009-03-31 23:00:32 +0000772 if (const Stmt *S = End.asStmt())
773 End = PDB.getEnclosingStmtLocation(S);
Mike Stump1eb44332009-09-09 15:08:12 +0000774
Anna Zaks80de4872012-08-29 21:22:37 +0000775 PD.getActivePath().push_front(new PathDiagnosticControlFlowPiece(
776 Start, End, os.str()));
Ted Kremenek31061982009-03-31 23:00:32 +0000777 }
778 else {
779 PathDiagnosticLocation End = PDB.ExecutionContinues(N);
Mike Stump1eb44332009-09-09 15:08:12 +0000780
Ted Kremenek31061982009-03-31 23:00:32 +0000781 if (const Stmt *S = End.asStmt())
782 End = PDB.getEnclosingStmtLocation(S);
Mike Stump1eb44332009-09-09 15:08:12 +0000783
Anna Zaks80de4872012-08-29 21:22:37 +0000784 PD.getActivePath().push_front(new PathDiagnosticControlFlowPiece(
785 Start, End, "Loop condition is false. Exiting loop"));
Ted Kremenek31061982009-03-31 23:00:32 +0000786 }
Mike Stump1eb44332009-09-09 15:08:12 +0000787
Ted Kremenek31061982009-03-31 23:00:32 +0000788 break;
789 }
Mike Stump1eb44332009-09-09 15:08:12 +0000790
Ted Kremenek31061982009-03-31 23:00:32 +0000791 case Stmt::WhileStmtClass:
Mike Stump1eb44332009-09-09 15:08:12 +0000792 case Stmt::ForStmtClass: {
Ted Kremenek31061982009-03-31 23:00:32 +0000793 if (*(Src->succ_begin()+1) == Dst) {
794 std::string sbuf;
795 llvm::raw_string_ostream os(sbuf);
Mike Stump1eb44332009-09-09 15:08:12 +0000796
Ted Kremenek31061982009-03-31 23:00:32 +0000797 os << "Loop condition is false. ";
798 PathDiagnosticLocation End = PDB.ExecutionContinues(os, N);
799 if (const Stmt *S = End.asStmt())
800 End = PDB.getEnclosingStmtLocation(S);
Mike Stump1eb44332009-09-09 15:08:12 +0000801
Anna Zaks80de4872012-08-29 21:22:37 +0000802 PD.getActivePath().push_front(new PathDiagnosticControlFlowPiece(
803 Start, End, os.str()));
Ted Kremenek31061982009-03-31 23:00:32 +0000804 }
805 else {
806 PathDiagnosticLocation End = PDB.ExecutionContinues(N);
807 if (const Stmt *S = End.asStmt())
808 End = PDB.getEnclosingStmtLocation(S);
Mike Stump1eb44332009-09-09 15:08:12 +0000809
Anna Zaks80de4872012-08-29 21:22:37 +0000810 PD.getActivePath().push_front(new PathDiagnosticControlFlowPiece(
811 Start, End, "Loop condition is true. Entering loop body"));
Ted Kremenek31061982009-03-31 23:00:32 +0000812 }
Mike Stump1eb44332009-09-09 15:08:12 +0000813
Ted Kremenek31061982009-03-31 23:00:32 +0000814 break;
815 }
Mike Stump1eb44332009-09-09 15:08:12 +0000816
Ted Kremenek31061982009-03-31 23:00:32 +0000817 case Stmt::IfStmtClass: {
818 PathDiagnosticLocation End = PDB.ExecutionContinues(N);
Mike Stump1eb44332009-09-09 15:08:12 +0000819
Ted Kremenek31061982009-03-31 23:00:32 +0000820 if (const Stmt *S = End.asStmt())
821 End = PDB.getEnclosingStmtLocation(S);
Mike Stump1eb44332009-09-09 15:08:12 +0000822
Ted Kremenek31061982009-03-31 23:00:32 +0000823 if (*(Src->succ_begin()+1) == Dst)
Anna Zaks80de4872012-08-29 21:22:37 +0000824 PD.getActivePath().push_front(new PathDiagnosticControlFlowPiece(
825 Start, End, "Taking false branch"));
Mike Stump1eb44332009-09-09 15:08:12 +0000826 else
Anna Zaks80de4872012-08-29 21:22:37 +0000827 PD.getActivePath().push_front(new PathDiagnosticControlFlowPiece(
828 Start, End, "Taking true branch"));
Mike Stump1eb44332009-09-09 15:08:12 +0000829
Ted Kremenek31061982009-03-31 23:00:32 +0000830 break;
831 }
Anna Zaks80de4872012-08-29 21:22:37 +0000832 }
Ted Kremenek31061982009-03-31 23:00:32 +0000833 }
Anna Zaks80de4872012-08-29 21:22:37 +0000834 } while(0);
Mike Stump1eb44332009-09-09 15:08:12 +0000835
Ted Kremenekdd986cc2009-05-07 00:45:33 +0000836 if (NextNode) {
Anna Zaks8e6431a2011-08-18 22:37:56 +0000837 // Add diagnostic pieces from custom visitors.
838 BugReport *R = PDB.getBugReport();
Jordy Rose3bc75ca2012-03-24 03:03:29 +0000839 for (ArrayRef<BugReporterVisitor *>::iterator I = visitors.begin(),
840 E = visitors.end();
841 I != E; ++I) {
Anna Zaks368a0d52012-03-15 21:13:02 +0000842 if (PathDiagnosticPiece *p = (*I)->VisitNode(N, NextNode, PDB, *R)) {
Ted Kremenek2042fc12012-02-24 06:00:00 +0000843 PD.getActivePath().push_front(p);
Anna Zaks368a0d52012-03-15 21:13:02 +0000844 updateStackPiecesWithMessage(p, CallStack);
845 }
Ted Kremenekdd986cc2009-05-07 00:45:33 +0000846 }
Ted Kremenek8966bc12009-05-06 21:39:49 +0000847 }
Ted Kremenek31061982009-03-31 23:00:32 +0000848 }
Mike Stump1eb44332009-09-09 15:08:12 +0000849
Jordan Rose8347d3d2012-09-22 01:24:53 +0000850 if (!PDB.getBugReport()->isValid())
851 return false;
852
Ted Kremenek14856d72009-04-06 23:06:54 +0000853 // After constructing the full PathDiagnostic, do a pass over it to compact
854 // PathDiagnosticPieces that occur within a macro.
Ted Kremenek77d09442012-03-02 01:27:31 +0000855 CompactPathDiagnostic(PD.getMutablePieces(), PDB.getSourceManager());
Jordan Rose8347d3d2012-09-22 01:24:53 +0000856 return true;
Ted Kremenek31061982009-03-31 23:00:32 +0000857}
858
859//===----------------------------------------------------------------------===//
Ted Kremenek5fb5dfb2009-04-01 06:13:56 +0000860// "Extensive" PathDiagnostic generation.
861//===----------------------------------------------------------------------===//
862
863static bool IsControlFlowExpr(const Stmt *S) {
864 const Expr *E = dyn_cast<Expr>(S);
Mike Stump1eb44332009-09-09 15:08:12 +0000865
Ted Kremenek5fb5dfb2009-04-01 06:13:56 +0000866 if (!E)
867 return false;
Mike Stump1eb44332009-09-09 15:08:12 +0000868
869 E = E->IgnoreParenCasts();
870
John McCall56ca35d2011-02-17 10:25:35 +0000871 if (isa<AbstractConditionalOperator>(E))
Ted Kremenek5fb5dfb2009-04-01 06:13:56 +0000872 return true;
Mike Stump1eb44332009-09-09 15:08:12 +0000873
Ted Kremenek5fb5dfb2009-04-01 06:13:56 +0000874 if (const BinaryOperator *B = dyn_cast<BinaryOperator>(E))
875 if (B->isLogicalOp())
876 return true;
Mike Stump1eb44332009-09-09 15:08:12 +0000877
878 return false;
Ted Kremenek5fb5dfb2009-04-01 06:13:56 +0000879}
880
Ted Kremenek14856d72009-04-06 23:06:54 +0000881namespace {
Kovarththanan Rajaratnamba5fb5a2009-11-28 06:07:30 +0000882class ContextLocation : public PathDiagnosticLocation {
Ted Kremenek8f9b1b32009-05-01 16:08:09 +0000883 bool IsDead;
884public:
885 ContextLocation(const PathDiagnosticLocation &L, bool isdead = false)
886 : PathDiagnosticLocation(L), IsDead(isdead) {}
Mike Stump1eb44332009-09-09 15:08:12 +0000887
888 void markDead() { IsDead = true; }
Ted Kremenek8f9b1b32009-05-01 16:08:09 +0000889 bool isDead() const { return IsDead; }
890};
Mike Stump1eb44332009-09-09 15:08:12 +0000891
Kovarththanan Rajaratnamba5fb5a2009-11-28 06:07:30 +0000892class EdgeBuilder {
Ted Kremenek8f9b1b32009-05-01 16:08:09 +0000893 std::vector<ContextLocation> CLocs;
894 typedef std::vector<ContextLocation>::iterator iterator;
Ted Kremenek14856d72009-04-06 23:06:54 +0000895 PathDiagnostic &PD;
896 PathDiagnosticBuilder &PDB;
897 PathDiagnosticLocation PrevLoc;
Mike Stump1eb44332009-09-09 15:08:12 +0000898
Ted Kremenek8f9b1b32009-05-01 16:08:09 +0000899 bool IsConsumedExpr(const PathDiagnosticLocation &L);
Mike Stump1eb44332009-09-09 15:08:12 +0000900
Ted Kremenek14856d72009-04-06 23:06:54 +0000901 bool containsLocation(const PathDiagnosticLocation &Container,
902 const PathDiagnosticLocation &Containee);
Mike Stump1eb44332009-09-09 15:08:12 +0000903
Ted Kremenek14856d72009-04-06 23:06:54 +0000904 PathDiagnosticLocation getContextLocation(const PathDiagnosticLocation &L);
Mike Stump1eb44332009-09-09 15:08:12 +0000905
Ted Kremenek9650cf32009-05-11 21:42:34 +0000906 PathDiagnosticLocation cleanUpLocation(PathDiagnosticLocation L,
907 bool firstCharOnly = false) {
Ted Kremenek8c8b0ad2009-05-11 19:50:47 +0000908 if (const Stmt *S = L.asStmt()) {
Ted Kremenek9650cf32009-05-11 21:42:34 +0000909 const Stmt *Original = S;
Ted Kremenek8c8b0ad2009-05-11 19:50:47 +0000910 while (1) {
911 // Adjust the location for some expressions that are best referenced
912 // by one of their subexpressions.
Ted Kremenek9650cf32009-05-11 21:42:34 +0000913 switch (S->getStmtClass()) {
914 default:
915 break;
916 case Stmt::ParenExprClass:
Peter Collingbournef111d932011-04-15 00:35:48 +0000917 case Stmt::GenericSelectionExprClass:
918 S = cast<Expr>(S)->IgnoreParens();
Ted Kremenek9650cf32009-05-11 21:42:34 +0000919 firstCharOnly = true;
920 continue;
John McCall56ca35d2011-02-17 10:25:35 +0000921 case Stmt::BinaryConditionalOperatorClass:
Ted Kremenek9650cf32009-05-11 21:42:34 +0000922 case Stmt::ConditionalOperatorClass:
John McCall56ca35d2011-02-17 10:25:35 +0000923 S = cast<AbstractConditionalOperator>(S)->getCond();
Ted Kremenek9650cf32009-05-11 21:42:34 +0000924 firstCharOnly = true;
925 continue;
926 case Stmt::ChooseExprClass:
927 S = cast<ChooseExpr>(S)->getCond();
928 firstCharOnly = true;
929 continue;
930 case Stmt::BinaryOperatorClass:
931 S = cast<BinaryOperator>(S)->getLHS();
932 firstCharOnly = true;
933 continue;
934 }
Mike Stump1eb44332009-09-09 15:08:12 +0000935
Ted Kremenek9650cf32009-05-11 21:42:34 +0000936 break;
Ted Kremenek8c8b0ad2009-05-11 19:50:47 +0000937 }
Mike Stump1eb44332009-09-09 15:08:12 +0000938
Ted Kremenek9650cf32009-05-11 21:42:34 +0000939 if (S != Original)
Ted Kremenek59950d32012-02-24 07:12:52 +0000940 L = PathDiagnosticLocation(S, L.getManager(), PDB.LC);
Ted Kremenek8c8b0ad2009-05-11 19:50:47 +0000941 }
Mike Stump1eb44332009-09-09 15:08:12 +0000942
Ted Kremenek9650cf32009-05-11 21:42:34 +0000943 if (firstCharOnly)
Anna Zaks1531bb02011-09-20 01:38:47 +0000944 L = PathDiagnosticLocation::createSingleLocation(L);
Ted Kremenek9650cf32009-05-11 21:42:34 +0000945
Ted Kremenek8c8b0ad2009-05-11 19:50:47 +0000946 return L;
947 }
Mike Stump1eb44332009-09-09 15:08:12 +0000948
Ted Kremenek14856d72009-04-06 23:06:54 +0000949 void popLocation() {
Ted Kremenek8f9b1b32009-05-01 16:08:09 +0000950 if (!CLocs.back().isDead() && CLocs.back().asLocation().isFileID()) {
Ted Kremenek5c7168c2009-04-22 20:36:26 +0000951 // For contexts, we only one the first character as the range.
Ted Kremenek07c015c2009-05-15 02:46:13 +0000952 rawAddEdge(cleanUpLocation(CLocs.back(), true));
Ted Kremenek5c7168c2009-04-22 20:36:26 +0000953 }
Ted Kremenek14856d72009-04-06 23:06:54 +0000954 CLocs.pop_back();
955 }
Mike Stump1eb44332009-09-09 15:08:12 +0000956
Ted Kremenek14856d72009-04-06 23:06:54 +0000957public:
958 EdgeBuilder(PathDiagnostic &pd, PathDiagnosticBuilder &pdb)
959 : PD(pd), PDB(pdb) {
Mike Stump1eb44332009-09-09 15:08:12 +0000960
Ted Kremeneka301a672009-04-22 18:16:20 +0000961 // If the PathDiagnostic already has pieces, add the enclosing statement
962 // of the first piece as a context as well.
Ted Kremenek802e0242012-02-08 04:32:34 +0000963 if (!PD.path.empty()) {
964 PrevLoc = (*PD.path.begin())->getLocation();
Mike Stump1eb44332009-09-09 15:08:12 +0000965
Ted Kremenek14856d72009-04-06 23:06:54 +0000966 if (const Stmt *S = PrevLoc.asStmt())
Ted Kremeneke1baed32009-05-05 23:13:38 +0000967 addExtendedContext(PDB.getEnclosingStmtLocation(S).asStmt());
Ted Kremenek14856d72009-04-06 23:06:54 +0000968 }
969 }
970
971 ~EdgeBuilder() {
972 while (!CLocs.empty()) popLocation();
Anna Zaks0cd59482011-09-16 19:18:30 +0000973
Ted Kremeneka301a672009-04-22 18:16:20 +0000974 // Finally, add an initial edge from the start location of the first
975 // statement (if it doesn't already exist).
Anna Zaks0cd59482011-09-16 19:18:30 +0000976 PathDiagnosticLocation L = PathDiagnosticLocation::createDeclBegin(
Ted Kremenek59950d32012-02-24 07:12:52 +0000977 PDB.LC,
Anna Zaks0cd59482011-09-16 19:18:30 +0000978 PDB.getSourceManager());
979 if (L.isValid())
980 rawAddEdge(L);
Ted Kremenek14856d72009-04-06 23:06:54 +0000981 }
982
Ted Kremenek5de4fdb2012-02-07 02:26:17 +0000983 void flushLocations() {
984 while (!CLocs.empty())
985 popLocation();
986 PrevLoc = PathDiagnosticLocation();
987 }
988
Ted Kremenek14856d72009-04-06 23:06:54 +0000989 void addEdge(PathDiagnosticLocation NewLoc, bool alwaysAdd = false);
Mike Stump1eb44332009-09-09 15:08:12 +0000990
Ted Kremenek8bd4d032009-04-28 04:23:15 +0000991 void rawAddEdge(PathDiagnosticLocation NewLoc);
Mike Stump1eb44332009-09-09 15:08:12 +0000992
Ted Kremenek14856d72009-04-06 23:06:54 +0000993 void addContext(const Stmt *S);
Jordan Rose183ba8e2012-07-26 20:04:05 +0000994 void addContext(const PathDiagnosticLocation &L);
Ted Kremeneke1baed32009-05-05 23:13:38 +0000995 void addExtendedContext(const Stmt *S);
Mike Stump1eb44332009-09-09 15:08:12 +0000996};
Ted Kremenek14856d72009-04-06 23:06:54 +0000997} // end anonymous namespace
998
999
1000PathDiagnosticLocation
1001EdgeBuilder::getContextLocation(const PathDiagnosticLocation &L) {
1002 if (const Stmt *S = L.asStmt()) {
1003 if (IsControlFlowExpr(S))
1004 return L;
Mike Stump1eb44332009-09-09 15:08:12 +00001005
1006 return PDB.getEnclosingStmtLocation(S);
Ted Kremenek14856d72009-04-06 23:06:54 +00001007 }
Mike Stump1eb44332009-09-09 15:08:12 +00001008
Ted Kremenek14856d72009-04-06 23:06:54 +00001009 return L;
1010}
1011
1012bool EdgeBuilder::containsLocation(const PathDiagnosticLocation &Container,
1013 const PathDiagnosticLocation &Containee) {
1014
1015 if (Container == Containee)
1016 return true;
Mike Stump1eb44332009-09-09 15:08:12 +00001017
Ted Kremenek14856d72009-04-06 23:06:54 +00001018 if (Container.asDecl())
1019 return true;
Mike Stump1eb44332009-09-09 15:08:12 +00001020
Ted Kremenek14856d72009-04-06 23:06:54 +00001021 if (const Stmt *S = Containee.asStmt())
1022 if (const Stmt *ContainerS = Container.asStmt()) {
1023 while (S) {
1024 if (S == ContainerS)
1025 return true;
1026 S = PDB.getParent(S);
1027 }
1028 return false;
1029 }
1030
1031 // Less accurate: compare using source ranges.
1032 SourceRange ContainerR = Container.asRange();
1033 SourceRange ContaineeR = Containee.asRange();
Mike Stump1eb44332009-09-09 15:08:12 +00001034
Ted Kremenek14856d72009-04-06 23:06:54 +00001035 SourceManager &SM = PDB.getSourceManager();
Chandler Carruth40278532011-07-25 16:49:02 +00001036 SourceLocation ContainerRBeg = SM.getExpansionLoc(ContainerR.getBegin());
1037 SourceLocation ContainerREnd = SM.getExpansionLoc(ContainerR.getEnd());
1038 SourceLocation ContaineeRBeg = SM.getExpansionLoc(ContaineeR.getBegin());
1039 SourceLocation ContaineeREnd = SM.getExpansionLoc(ContaineeR.getEnd());
Mike Stump1eb44332009-09-09 15:08:12 +00001040
Chandler Carruth64211622011-07-25 21:09:52 +00001041 unsigned ContainerBegLine = SM.getExpansionLineNumber(ContainerRBeg);
1042 unsigned ContainerEndLine = SM.getExpansionLineNumber(ContainerREnd);
1043 unsigned ContaineeBegLine = SM.getExpansionLineNumber(ContaineeRBeg);
1044 unsigned ContaineeEndLine = SM.getExpansionLineNumber(ContaineeREnd);
Mike Stump1eb44332009-09-09 15:08:12 +00001045
Ted Kremenek14856d72009-04-06 23:06:54 +00001046 assert(ContainerBegLine <= ContainerEndLine);
Mike Stump1eb44332009-09-09 15:08:12 +00001047 assert(ContaineeBegLine <= ContaineeEndLine);
1048
Ted Kremenek14856d72009-04-06 23:06:54 +00001049 return (ContainerBegLine <= ContaineeBegLine &&
1050 ContainerEndLine >= ContaineeEndLine &&
1051 (ContainerBegLine != ContaineeBegLine ||
Chandler Carrutha77c0312011-07-25 20:57:57 +00001052 SM.getExpansionColumnNumber(ContainerRBeg) <=
1053 SM.getExpansionColumnNumber(ContaineeRBeg)) &&
Ted Kremenek14856d72009-04-06 23:06:54 +00001054 (ContainerEndLine != ContaineeEndLine ||
Chandler Carrutha77c0312011-07-25 20:57:57 +00001055 SM.getExpansionColumnNumber(ContainerREnd) >=
Ted Kremenek6488dc32012-03-28 05:24:50 +00001056 SM.getExpansionColumnNumber(ContaineeREnd)));
Ted Kremenek14856d72009-04-06 23:06:54 +00001057}
1058
Ted Kremenek14856d72009-04-06 23:06:54 +00001059void EdgeBuilder::rawAddEdge(PathDiagnosticLocation NewLoc) {
1060 if (!PrevLoc.isValid()) {
1061 PrevLoc = NewLoc;
1062 return;
1063 }
Mike Stump1eb44332009-09-09 15:08:12 +00001064
Ted Kremenek8c8b0ad2009-05-11 19:50:47 +00001065 const PathDiagnosticLocation &NewLocClean = cleanUpLocation(NewLoc);
1066 const PathDiagnosticLocation &PrevLocClean = cleanUpLocation(PrevLoc);
Mike Stump1eb44332009-09-09 15:08:12 +00001067
Ted Kremeneka43df952012-09-21 00:09:11 +00001068 if (PrevLocClean.asLocation().isInvalid()) {
1069 PrevLoc = NewLoc;
1070 return;
1071 }
1072
Ted Kremenek8c8b0ad2009-05-11 19:50:47 +00001073 if (NewLocClean.asLocation() == PrevLocClean.asLocation())
Ted Kremenek14856d72009-04-06 23:06:54 +00001074 return;
Mike Stump1eb44332009-09-09 15:08:12 +00001075
Ted Kremenek14856d72009-04-06 23:06:54 +00001076 // FIXME: Ignore intra-macro edges for now.
Chandler Carruth40278532011-07-25 16:49:02 +00001077 if (NewLocClean.asLocation().getExpansionLoc() ==
1078 PrevLocClean.asLocation().getExpansionLoc())
Ted Kremenek14856d72009-04-06 23:06:54 +00001079 return;
1080
Ted Kremenek2042fc12012-02-24 06:00:00 +00001081 PD.getActivePath().push_front(new PathDiagnosticControlFlowPiece(NewLocClean, PrevLocClean));
Ted Kremenek8c8b0ad2009-05-11 19:50:47 +00001082 PrevLoc = NewLoc;
Ted Kremenek14856d72009-04-06 23:06:54 +00001083}
1084
1085void EdgeBuilder::addEdge(PathDiagnosticLocation NewLoc, bool alwaysAdd) {
Mike Stump1eb44332009-09-09 15:08:12 +00001086
Ted Kremeneka301a672009-04-22 18:16:20 +00001087 if (!alwaysAdd && NewLoc.asLocation().isMacroID())
1088 return;
Mike Stump1eb44332009-09-09 15:08:12 +00001089
Ted Kremenek14856d72009-04-06 23:06:54 +00001090 const PathDiagnosticLocation &CLoc = getContextLocation(NewLoc);
1091
1092 while (!CLocs.empty()) {
Ted Kremenek8f9b1b32009-05-01 16:08:09 +00001093 ContextLocation &TopContextLoc = CLocs.back();
Mike Stump1eb44332009-09-09 15:08:12 +00001094
Ted Kremenek14856d72009-04-06 23:06:54 +00001095 // Is the top location context the same as the one for the new location?
1096 if (TopContextLoc == CLoc) {
Ted Kremenek8f9b1b32009-05-01 16:08:09 +00001097 if (alwaysAdd) {
Ted Kremenek4c6f8d32009-05-04 18:15:17 +00001098 if (IsConsumedExpr(TopContextLoc) &&
1099 !IsControlFlowExpr(TopContextLoc.asStmt()))
Ted Kremenek8f9b1b32009-05-01 16:08:09 +00001100 TopContextLoc.markDead();
1101
Ted Kremenek14856d72009-04-06 23:06:54 +00001102 rawAddEdge(NewLoc);
Ted Kremenek8f9b1b32009-05-01 16:08:09 +00001103 }
Ted Kremenek14856d72009-04-06 23:06:54 +00001104
1105 return;
1106 }
1107
1108 if (containsLocation(TopContextLoc, CLoc)) {
Ted Kremenek8f9b1b32009-05-01 16:08:09 +00001109 if (alwaysAdd) {
Ted Kremenek14856d72009-04-06 23:06:54 +00001110 rawAddEdge(NewLoc);
Mike Stump1eb44332009-09-09 15:08:12 +00001111
Ted Kremenek4c6f8d32009-05-04 18:15:17 +00001112 if (IsConsumedExpr(CLoc) && !IsControlFlowExpr(CLoc.asStmt())) {
Ted Kremenek8f9b1b32009-05-01 16:08:09 +00001113 CLocs.push_back(ContextLocation(CLoc, true));
1114 return;
1115 }
1116 }
Mike Stump1eb44332009-09-09 15:08:12 +00001117
Ted Kremenek14856d72009-04-06 23:06:54 +00001118 CLocs.push_back(CLoc);
Mike Stump1eb44332009-09-09 15:08:12 +00001119 return;
Ted Kremenek14856d72009-04-06 23:06:54 +00001120 }
1121
1122 // Context does not contain the location. Flush it.
1123 popLocation();
1124 }
Mike Stump1eb44332009-09-09 15:08:12 +00001125
Ted Kremenek5c7168c2009-04-22 20:36:26 +00001126 // If we reach here, there is no enclosing context. Just add the edge.
1127 rawAddEdge(NewLoc);
Ted Kremenek14856d72009-04-06 23:06:54 +00001128}
1129
Ted Kremenek8f9b1b32009-05-01 16:08:09 +00001130bool EdgeBuilder::IsConsumedExpr(const PathDiagnosticLocation &L) {
1131 if (const Expr *X = dyn_cast_or_null<Expr>(L.asStmt()))
1132 return PDB.getParentMap().isConsumedExpr(X) && !IsControlFlowExpr(X);
Mike Stump1eb44332009-09-09 15:08:12 +00001133
Ted Kremenek8f9b1b32009-05-01 16:08:09 +00001134 return false;
1135}
Mike Stump1eb44332009-09-09 15:08:12 +00001136
Ted Kremeneke1baed32009-05-05 23:13:38 +00001137void EdgeBuilder::addExtendedContext(const Stmt *S) {
1138 if (!S)
1139 return;
Mike Stump1eb44332009-09-09 15:08:12 +00001140
1141 const Stmt *Parent = PDB.getParent(S);
Ted Kremeneke1baed32009-05-05 23:13:38 +00001142 while (Parent) {
1143 if (isa<CompoundStmt>(Parent))
1144 Parent = PDB.getParent(Parent);
1145 else
1146 break;
1147 }
1148
1149 if (Parent) {
1150 switch (Parent->getStmtClass()) {
1151 case Stmt::DoStmtClass:
1152 case Stmt::ObjCAtSynchronizedStmtClass:
1153 addContext(Parent);
1154 default:
1155 break;
1156 }
1157 }
Mike Stump1eb44332009-09-09 15:08:12 +00001158
Ted Kremeneke1baed32009-05-05 23:13:38 +00001159 addContext(S);
1160}
Mike Stump1eb44332009-09-09 15:08:12 +00001161
Ted Kremenek14856d72009-04-06 23:06:54 +00001162void EdgeBuilder::addContext(const Stmt *S) {
1163 if (!S)
1164 return;
1165
Ted Kremenek59950d32012-02-24 07:12:52 +00001166 PathDiagnosticLocation L(S, PDB.getSourceManager(), PDB.LC);
Jordan Rose183ba8e2012-07-26 20:04:05 +00001167 addContext(L);
1168}
Mike Stump1eb44332009-09-09 15:08:12 +00001169
Jordan Rose183ba8e2012-07-26 20:04:05 +00001170void EdgeBuilder::addContext(const PathDiagnosticLocation &L) {
Ted Kremenek14856d72009-04-06 23:06:54 +00001171 while (!CLocs.empty()) {
1172 const PathDiagnosticLocation &TopContextLoc = CLocs.back();
1173
1174 // Is the top location context the same as the one for the new location?
1175 if (TopContextLoc == L)
1176 return;
1177
1178 if (containsLocation(TopContextLoc, L)) {
Ted Kremenek14856d72009-04-06 23:06:54 +00001179 CLocs.push_back(L);
Mike Stump1eb44332009-09-09 15:08:12 +00001180 return;
Ted Kremenek14856d72009-04-06 23:06:54 +00001181 }
1182
1183 // Context does not contain the location. Flush it.
1184 popLocation();
1185 }
1186
1187 CLocs.push_back(L);
1188}
1189
Ted Kremenek11abcec2012-05-02 00:31:29 +00001190// Cone-of-influence: support the reverse propagation of "interesting" symbols
1191// and values by tracing interesting calculations backwards through evaluated
1192// expressions along a path. This is probably overly complicated, but the idea
1193// is that if an expression computed an "interesting" value, the child
1194// expressions are are also likely to be "interesting" as well (which then
1195// propagates to the values they in turn compute). This reverse propagation
1196// is needed to track interesting correlations across function call boundaries,
1197// where formal arguments bind to actual arguments, etc. This is also needed
1198// because the constraint solver sometimes simplifies certain symbolic values
1199// into constants when appropriate, and this complicates reasoning about
1200// interesting values.
1201typedef llvm::DenseSet<const Expr *> InterestingExprs;
1202
1203static void reversePropagateIntererstingSymbols(BugReport &R,
1204 InterestingExprs &IE,
1205 const ProgramState *State,
1206 const Expr *Ex,
1207 const LocationContext *LCtx) {
1208 SVal V = State->getSVal(Ex, LCtx);
1209 if (!(R.isInteresting(V) || IE.count(Ex)))
1210 return;
1211
1212 switch (Ex->getStmtClass()) {
1213 default:
1214 if (!isa<CastExpr>(Ex))
1215 break;
1216 // Fall through.
1217 case Stmt::BinaryOperatorClass:
1218 case Stmt::UnaryOperatorClass: {
1219 for (Stmt::const_child_iterator CI = Ex->child_begin(),
1220 CE = Ex->child_end();
1221 CI != CE; ++CI) {
1222 if (const Expr *child = dyn_cast_or_null<Expr>(*CI)) {
1223 IE.insert(child);
1224 SVal ChildV = State->getSVal(child, LCtx);
1225 R.markInteresting(ChildV);
1226 }
1227 break;
1228 }
1229 }
1230 }
1231
1232 R.markInteresting(V);
1233}
1234
1235static void reversePropagateInterestingSymbols(BugReport &R,
1236 InterestingExprs &IE,
1237 const ProgramState *State,
1238 const LocationContext *CalleeCtx,
1239 const LocationContext *CallerCtx)
1240{
Jordan Rose852aa0d2012-07-10 22:07:52 +00001241 // FIXME: Handle non-CallExpr-based CallEvents.
Ted Kremenek11abcec2012-05-02 00:31:29 +00001242 const StackFrameContext *Callee = CalleeCtx->getCurrentStackFrame();
1243 const Stmt *CallSite = Callee->getCallSite();
Jordan Rose852aa0d2012-07-10 22:07:52 +00001244 if (const CallExpr *CE = dyn_cast_or_null<CallExpr>(CallSite)) {
Ted Kremenek11abcec2012-05-02 00:31:29 +00001245 if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(CalleeCtx->getDecl())) {
1246 FunctionDecl::param_const_iterator PI = FD->param_begin(),
1247 PE = FD->param_end();
1248 CallExpr::const_arg_iterator AI = CE->arg_begin(), AE = CE->arg_end();
1249 for (; AI != AE && PI != PE; ++AI, ++PI) {
1250 if (const Expr *ArgE = *AI) {
1251 if (const ParmVarDecl *PD = *PI) {
1252 Loc LV = State->getLValue(PD, CalleeCtx);
1253 if (R.isInteresting(LV) || R.isInteresting(State->getRawSVal(LV)))
1254 IE.insert(ArgE);
1255 }
1256 }
1257 }
1258 }
1259 }
1260}
1261
Jordan Rose8347d3d2012-09-22 01:24:53 +00001262static bool GenerateExtensivePathDiagnostic(PathDiagnostic& PD,
Ted Kremenek14856d72009-04-06 23:06:54 +00001263 PathDiagnosticBuilder &PDB,
Jordy Rose3bc75ca2012-03-24 03:03:29 +00001264 const ExplodedNode *N,
1265 ArrayRef<BugReporterVisitor *> visitors) {
Ted Kremenek14856d72009-04-06 23:06:54 +00001266 EdgeBuilder EB(PD, PDB);
Anna Zaks0cd59482011-09-16 19:18:30 +00001267 const SourceManager& SM = PDB.getSourceManager();
Anna Zaks56a938f2012-03-16 23:24:20 +00001268 StackDiagVector CallStack;
Ted Kremenek11abcec2012-05-02 00:31:29 +00001269 InterestingExprs IE;
Ted Kremenek14856d72009-04-06 23:06:54 +00001270
Ted Kremenek9c378f72011-08-12 23:37:29 +00001271 const ExplodedNode *NextNode = N->pred_empty() ? NULL : *(N->pred_begin());
Ted Kremenek14856d72009-04-06 23:06:54 +00001272 while (NextNode) {
1273 N = NextNode;
1274 NextNode = GetPredecessorNode(N);
1275 ProgramPoint P = N->getLocation();
1276
Ted Kremenekdd986cc2009-05-07 00:45:33 +00001277 do {
Ted Kremenek11abcec2012-05-02 00:31:29 +00001278 if (const PostStmt *PS = dyn_cast<PostStmt>(&P)) {
1279 if (const Expr *Ex = PS->getStmtAs<Expr>())
1280 reversePropagateIntererstingSymbols(*PDB.getBugReport(), IE,
1281 N->getState().getPtr(), Ex,
1282 N->getLocationContext());
1283 }
1284
Anna Zaks0b3ade82012-04-20 21:59:08 +00001285 if (const CallExitEnd *CE = dyn_cast<CallExitEnd>(&P)) {
Jordan Rose183ba8e2012-07-26 20:04:05 +00001286 const Stmt *S = CE->getCalleeContext()->getCallSite();
1287 if (const Expr *Ex = dyn_cast_or_null<Expr>(S)) {
Jordan Rose852aa0d2012-07-10 22:07:52 +00001288 reversePropagateIntererstingSymbols(*PDB.getBugReport(), IE,
1289 N->getState().getPtr(), Ex,
1290 N->getLocationContext());
Jordan Rose852aa0d2012-07-10 22:07:52 +00001291 }
Jordan Rose183ba8e2012-07-26 20:04:05 +00001292
1293 PathDiagnosticCallPiece *C =
1294 PathDiagnosticCallPiece::construct(N, *CE, SM);
Anna Zaks80de4872012-08-29 21:22:37 +00001295 GRBugReporter& BR = PDB.getBugReporter();
1296 BR.addCallPieceLocationContextPair(C, CE->getCalleeContext());
Jordan Rose183ba8e2012-07-26 20:04:05 +00001297
1298 EB.addEdge(C->callReturn, true);
1299 EB.flushLocations();
1300
1301 PD.getActivePath().push_front(C);
1302 PD.pushActivePath(&C->path);
1303 CallStack.push_back(StackDiagPair(C, N));
Ted Kremenek5de4fdb2012-02-07 02:26:17 +00001304 break;
1305 }
Ted Kremenek4ba86bc2012-03-02 21:16:22 +00001306
Ted Kremenek2042fc12012-02-24 06:00:00 +00001307 // Pop the call hierarchy if we are done walking the contents
1308 // of a function call.
1309 if (const CallEnter *CE = dyn_cast<CallEnter>(&P)) {
Ted Kremenek097ebb32012-03-06 01:25:01 +00001310 // Add an edge to the start of the function.
1311 const Decl *D = CE->getCalleeContext()->getDecl();
1312 PathDiagnosticLocation pos =
1313 PathDiagnosticLocation::createBegin(D, SM);
1314 EB.addEdge(pos);
1315
1316 // Flush all locations, and pop the active path.
Jordan Rose183ba8e2012-07-26 20:04:05 +00001317 bool VisitedEntireCall = PD.isWithinCall();
Ted Kremenek4ba86bc2012-03-02 21:16:22 +00001318 EB.flushLocations();
Ted Kremenek2042fc12012-02-24 06:00:00 +00001319 PD.popActivePath();
Ted Kremenek4ba86bc2012-03-02 21:16:22 +00001320 PDB.LC = N->getLocationContext();
Ted Kremenek097ebb32012-03-06 01:25:01 +00001321
Jordan Rose183ba8e2012-07-26 20:04:05 +00001322 // Either we just added a bunch of stuff to the top-level path, or
1323 // we have a previous CallExitEnd. If the former, it means that the
Ted Kremenek2042fc12012-02-24 06:00:00 +00001324 // path terminated within a function call. We must then take the
1325 // current contents of the active path and place it within
1326 // a new PathDiagnosticCallPiece.
Jordan Rose183ba8e2012-07-26 20:04:05 +00001327 PathDiagnosticCallPiece *C;
1328 if (VisitedEntireCall) {
1329 C = cast<PathDiagnosticCallPiece>(PD.getActivePath().front());
1330 } else {
1331 const Decl *Caller = CE->getLocationContext()->getDecl();
Anna Zaks93739372012-03-14 18:58:28 +00001332 C = PathDiagnosticCallPiece::construct(PD.getActivePath(), Caller);
Anna Zaks80de4872012-08-29 21:22:37 +00001333 GRBugReporter& BR = PDB.getBugReporter();
1334 BR.addCallPieceLocationContextPair(C, CE->getCalleeContext());
Anna Zaks93739372012-03-14 18:58:28 +00001335 }
Jordan Rose852aa0d2012-07-10 22:07:52 +00001336
Jordan Rose183ba8e2012-07-26 20:04:05 +00001337 C->setCallee(*CE, SM);
1338 EB.addContext(C->getLocation());
Anna Zaks368a0d52012-03-15 21:13:02 +00001339
1340 if (!CallStack.empty()) {
Anna Zaks56a938f2012-03-16 23:24:20 +00001341 assert(CallStack.back().first == C);
Anna Zaks368a0d52012-03-15 21:13:02 +00001342 CallStack.pop_back();
1343 }
Ted Kremenek2042fc12012-02-24 06:00:00 +00001344 break;
1345 }
Ted Kremenek4ba86bc2012-03-02 21:16:22 +00001346
1347 // Note that is important that we update the LocationContext
1348 // after looking at CallExits. CallExit basically adds an
1349 // edge in the *caller*, so we don't want to update the LocationContext
1350 // too soon.
1351 PDB.LC = N->getLocationContext();
Ted Kremenek5de4fdb2012-02-07 02:26:17 +00001352
Ted Kremenekdd986cc2009-05-07 00:45:33 +00001353 // Block edges.
Ted Kremenek11abcec2012-05-02 00:31:29 +00001354 if (const BlockEdge *BE = dyn_cast<BlockEdge>(&P)) {
1355 // Does this represent entering a call? If so, look at propagating
1356 // interesting symbols across call boundaries.
1357 if (NextNode) {
1358 const LocationContext *CallerCtx = NextNode->getLocationContext();
1359 const LocationContext *CalleeCtx = PDB.LC;
1360 if (CallerCtx != CalleeCtx) {
1361 reversePropagateInterestingSymbols(*PDB.getBugReport(), IE,
1362 N->getState().getPtr(),
1363 CalleeCtx, CallerCtx);
1364 }
1365 }
1366
Ted Kremenekdd986cc2009-05-07 00:45:33 +00001367 // Are we jumping to the head of a loop? Add a special diagnostic.
Ted Kremenekf57a2aa2012-09-12 06:22:18 +00001368 if (const Stmt *Loop = BE->getSrc()->getLoopTarget()) {
Ted Kremenek59950d32012-02-24 07:12:52 +00001369 PathDiagnosticLocation L(Loop, SM, PDB.LC);
Ted Kremenekddb7bab2009-05-15 01:50:15 +00001370 const CompoundStmt *CS = NULL;
Mike Stump1eb44332009-09-09 15:08:12 +00001371
Ted Kremenekf57a2aa2012-09-12 06:22:18 +00001372 if (const ForStmt *FS = dyn_cast<ForStmt>(Loop))
1373 CS = dyn_cast<CompoundStmt>(FS->getBody());
1374 else if (const WhileStmt *WS = dyn_cast<WhileStmt>(Loop))
1375 CS = dyn_cast<CompoundStmt>(WS->getBody());
Mike Stump1eb44332009-09-09 15:08:12 +00001376
Ted Kremenekdd986cc2009-05-07 00:45:33 +00001377 PathDiagnosticEventPiece *p =
1378 new PathDiagnosticEventPiece(L,
Ted Kremenek07c015c2009-05-15 02:46:13 +00001379 "Looping back to the head of the loop");
Ted Kremenek2dd17ab2012-03-06 01:00:36 +00001380 p->setPrunable(true);
Mike Stump1eb44332009-09-09 15:08:12 +00001381
Ted Kremenekdd986cc2009-05-07 00:45:33 +00001382 EB.addEdge(p->getLocation(), true);
Ted Kremenek2042fc12012-02-24 06:00:00 +00001383 PD.getActivePath().push_front(p);
Mike Stump1eb44332009-09-09 15:08:12 +00001384
Ted Kremenekddb7bab2009-05-15 01:50:15 +00001385 if (CS) {
Anna Zaks0cd59482011-09-16 19:18:30 +00001386 PathDiagnosticLocation BL =
1387 PathDiagnosticLocation::createEndBrace(CS, SM);
Ted Kremenek07c015c2009-05-15 02:46:13 +00001388 EB.addEdge(BL);
Ted Kremenekdd986cc2009-05-07 00:45:33 +00001389 }
Ted Kremenek8bd4d032009-04-28 04:23:15 +00001390 }
Ted Kremenekf57a2aa2012-09-12 06:22:18 +00001391
1392 if (const Stmt *Term = BE->getSrc()->getTerminator())
Ted Kremenekddb7bab2009-05-15 01:50:15 +00001393 EB.addContext(Term);
Mike Stump1eb44332009-09-09 15:08:12 +00001394
Ted Kremenekdd986cc2009-05-07 00:45:33 +00001395 break;
Ted Kremenek14856d72009-04-06 23:06:54 +00001396 }
1397
Mike Stump1eb44332009-09-09 15:08:12 +00001398 if (const BlockEntrance *BE = dyn_cast<BlockEntrance>(&P)) {
Jordan Rose1a7bcc42012-09-12 22:48:08 +00001399 CFGElement First = BE->getFirstElement();
1400 if (const CFGStmt *S = First.getAs<CFGStmt>()) {
Ted Kremenek3c0349e2011-03-01 03:15:10 +00001401 const Stmt *stmt = S->getStmt();
1402 if (IsControlFlowExpr(stmt)) {
Zhongxing Xub36cd3e2010-09-16 01:25:47 +00001403 // Add the proper context for '&&', '||', and '?'.
Ted Kremenek3c0349e2011-03-01 03:15:10 +00001404 EB.addContext(stmt);
Zhongxing Xub36cd3e2010-09-16 01:25:47 +00001405 }
1406 else
Ted Kremenek3c0349e2011-03-01 03:15:10 +00001407 EB.addExtendedContext(PDB.getEnclosingStmtLocation(stmt).asStmt());
Ted Kremenekdd986cc2009-05-07 00:45:33 +00001408 }
Zhongxing Xub36cd3e2010-09-16 01:25:47 +00001409
Ted Kremenekdd986cc2009-05-07 00:45:33 +00001410 break;
1411 }
Ted Kremenek5de4fdb2012-02-07 02:26:17 +00001412
1413
Ted Kremenekdd986cc2009-05-07 00:45:33 +00001414 } while (0);
Mike Stump1eb44332009-09-09 15:08:12 +00001415
Ted Kremenekdd986cc2009-05-07 00:45:33 +00001416 if (!NextNode)
Ted Kremenek14856d72009-04-06 23:06:54 +00001417 continue;
Mike Stump1eb44332009-09-09 15:08:12 +00001418
Anna Zaks8e6431a2011-08-18 22:37:56 +00001419 // Add pieces from custom visitors.
1420 BugReport *R = PDB.getBugReport();
Jordy Rose3bc75ca2012-03-24 03:03:29 +00001421 for (ArrayRef<BugReporterVisitor *>::iterator I = visitors.begin(),
1422 E = visitors.end();
1423 I != E; ++I) {
Anna Zaks8e6431a2011-08-18 22:37:56 +00001424 if (PathDiagnosticPiece *p = (*I)->VisitNode(N, NextNode, PDB, *R)) {
Ted Kremenek8966bc12009-05-06 21:39:49 +00001425 const PathDiagnosticLocation &Loc = p->getLocation();
1426 EB.addEdge(Loc, true);
Ted Kremenek2042fc12012-02-24 06:00:00 +00001427 PD.getActivePath().push_front(p);
Anna Zaks368a0d52012-03-15 21:13:02 +00001428 updateStackPiecesWithMessage(p, CallStack);
1429
Ted Kremenek8966bc12009-05-06 21:39:49 +00001430 if (const Stmt *S = Loc.asStmt())
Mike Stump1eb44332009-09-09 15:08:12 +00001431 EB.addExtendedContext(PDB.getEnclosingStmtLocation(S).asStmt());
Ted Kremenek8966bc12009-05-06 21:39:49 +00001432 }
Mike Stump1eb44332009-09-09 15:08:12 +00001433 }
Ted Kremenek14856d72009-04-06 23:06:54 +00001434 }
Jordan Rose8347d3d2012-09-22 01:24:53 +00001435
1436 return PDB.getBugReport()->isValid();
Ted Kremenek14856d72009-04-06 23:06:54 +00001437}
1438
Ted Kremenek5fb5dfb2009-04-01 06:13:56 +00001439//===----------------------------------------------------------------------===//
Ted Kremenekcf118d42009-02-04 23:49:09 +00001440// Methods for BugType and subclasses.
1441//===----------------------------------------------------------------------===//
Argyrios Kyrtzidis404fc3a2011-02-23 00:16:01 +00001442BugType::~BugType() { }
1443
Ted Kremenekcf118d42009-02-04 23:49:09 +00001444void BugType::FlushReports(BugReporter &BR) {}
Ted Kremenekbb77e9b2008-05-01 22:50:36 +00001445
David Blaikie99ba9e32011-12-20 02:48:34 +00001446void BuiltinBug::anchor() {}
1447
Ted Kremenekcf118d42009-02-04 23:49:09 +00001448//===----------------------------------------------------------------------===//
1449// Methods for BugReport and subclasses.
1450//===----------------------------------------------------------------------===//
Anna Zakse172e8b2011-08-17 23:00:25 +00001451
David Blaikie99ba9e32011-12-20 02:48:34 +00001452void BugReport::NodeResolver::anchor() {}
1453
Anna Zaks8e6431a2011-08-18 22:37:56 +00001454void BugReport::addVisitor(BugReporterVisitor* visitor) {
1455 if (!visitor)
1456 return;
1457
1458 llvm::FoldingSetNodeID ID;
1459 visitor->Profile(ID);
1460 void *InsertPos;
1461
1462 if (CallbacksSet.FindNodeOrInsertPos(ID, InsertPos)) {
1463 delete visitor;
1464 return;
1465 }
1466
1467 CallbacksSet.InsertNode(visitor, InsertPos);
Jordy Rose3bc75ca2012-03-24 03:03:29 +00001468 Callbacks.push_back(visitor);
1469 ++ConfigurationChangeToken;
Anna Zaks8e6431a2011-08-18 22:37:56 +00001470}
1471
1472BugReport::~BugReport() {
1473 for (visitor_iterator I = visitor_begin(), E = visitor_end(); I != E; ++I) {
Anna Zaksdc757b02011-08-19 23:21:56 +00001474 delete *I;
Anna Zaks8e6431a2011-08-18 22:37:56 +00001475 }
Ted Kremenekc4bac8e2012-08-16 17:45:23 +00001476 while (!interestingSymbols.empty()) {
1477 popInterestingSymbolsAndRegions();
1478 }
Anna Zaks8e6431a2011-08-18 22:37:56 +00001479}
Anna Zakse172e8b2011-08-17 23:00:25 +00001480
Ted Kremenek07189522012-04-04 18:11:35 +00001481const Decl *BugReport::getDeclWithIssue() const {
1482 if (DeclWithIssue)
1483 return DeclWithIssue;
1484
1485 const ExplodedNode *N = getErrorNode();
1486 if (!N)
1487 return 0;
1488
1489 const LocationContext *LC = N->getLocationContext();
1490 return LC->getCurrentStackFrame()->getDecl();
1491}
1492
Anna Zakse172e8b2011-08-17 23:00:25 +00001493void BugReport::Profile(llvm::FoldingSetNodeID& hash) const {
1494 hash.AddPointer(&BT);
Anna Zakse172e8b2011-08-17 23:00:25 +00001495 hash.AddString(Description);
Anna Zaksca8e36e2012-02-23 21:38:21 +00001496 if (UniqueingLocation.isValid()) {
1497 UniqueingLocation.Profile(hash);
1498 } else if (Location.isValid()) {
Anna Zaks590dd8e2011-09-20 21:38:35 +00001499 Location.Profile(hash);
1500 } else {
1501 assert(ErrorNode);
1502 hash.AddPointer(GetCurrentOrPreviousStmt(ErrorNode));
1503 }
Anna Zakse172e8b2011-08-17 23:00:25 +00001504
1505 for (SmallVectorImpl<SourceRange>::const_iterator I =
1506 Ranges.begin(), E = Ranges.end(); I != E; ++I) {
1507 const SourceRange range = *I;
1508 if (!range.isValid())
1509 continue;
1510 hash.AddInteger(range.getBegin().getRawEncoding());
1511 hash.AddInteger(range.getEnd().getRawEncoding());
1512 }
1513}
Ted Kremenekcf118d42009-02-04 23:49:09 +00001514
Ted Kremenek76aadc32012-03-09 01:13:14 +00001515void BugReport::markInteresting(SymbolRef sym) {
1516 if (!sym)
1517 return;
Jordy Rose3bc75ca2012-03-24 03:03:29 +00001518
1519 // If the symbol wasn't already in our set, note a configuration change.
Ted Kremenekc4bac8e2012-08-16 17:45:23 +00001520 if (getInterestingSymbols().insert(sym).second)
Jordy Rose3bc75ca2012-03-24 03:03:29 +00001521 ++ConfigurationChangeToken;
Jordy Rose8ec588e2012-03-15 22:45:29 +00001522
1523 if (const SymbolMetadata *meta = dyn_cast<SymbolMetadata>(sym))
Ted Kremenekc4bac8e2012-08-16 17:45:23 +00001524 getInterestingRegions().insert(meta->getRegion());
Ted Kremenek76aadc32012-03-09 01:13:14 +00001525}
1526
1527void BugReport::markInteresting(const MemRegion *R) {
1528 if (!R)
1529 return;
Jordy Rose3bc75ca2012-03-24 03:03:29 +00001530
1531 // If the base region wasn't already in our set, note a configuration change.
Ted Kremenek76aadc32012-03-09 01:13:14 +00001532 R = R->getBaseRegion();
Ted Kremenekc4bac8e2012-08-16 17:45:23 +00001533 if (getInterestingRegions().insert(R).second)
Jordy Rose3bc75ca2012-03-24 03:03:29 +00001534 ++ConfigurationChangeToken;
Jordy Rose8ec588e2012-03-15 22:45:29 +00001535
Ted Kremenek76aadc32012-03-09 01:13:14 +00001536 if (const SymbolicRegion *SR = dyn_cast<SymbolicRegion>(R))
Ted Kremenekc4bac8e2012-08-16 17:45:23 +00001537 getInterestingSymbols().insert(SR->getSymbol());
Ted Kremenek76aadc32012-03-09 01:13:14 +00001538}
1539
1540void BugReport::markInteresting(SVal V) {
1541 markInteresting(V.getAsRegion());
1542 markInteresting(V.getAsSymbol());
1543}
1544
Anna Zaks80de4872012-08-29 21:22:37 +00001545void BugReport::markInteresting(const LocationContext *LC) {
1546 if (!LC)
1547 return;
1548 InterestingLocationContexts.insert(LC);
1549}
1550
Ted Kremenekc4bac8e2012-08-16 17:45:23 +00001551bool BugReport::isInteresting(SVal V) {
Ted Kremenek76aadc32012-03-09 01:13:14 +00001552 return isInteresting(V.getAsRegion()) || isInteresting(V.getAsSymbol());
1553}
1554
Ted Kremenekc4bac8e2012-08-16 17:45:23 +00001555bool BugReport::isInteresting(SymbolRef sym) {
Ted Kremenek76aadc32012-03-09 01:13:14 +00001556 if (!sym)
1557 return false;
Jordy Rose8ec588e2012-03-15 22:45:29 +00001558 // We don't currently consider metadata symbols to be interesting
1559 // even if we know their region is interesting. Is that correct behavior?
Ted Kremenekc4bac8e2012-08-16 17:45:23 +00001560 return getInterestingSymbols().count(sym);
Ted Kremenek76aadc32012-03-09 01:13:14 +00001561}
1562
Ted Kremenekc4bac8e2012-08-16 17:45:23 +00001563bool BugReport::isInteresting(const MemRegion *R) {
Ted Kremenek76aadc32012-03-09 01:13:14 +00001564 if (!R)
1565 return false;
1566 R = R->getBaseRegion();
Ted Kremenekc4bac8e2012-08-16 17:45:23 +00001567 bool b = getInterestingRegions().count(R);
Ted Kremenek76aadc32012-03-09 01:13:14 +00001568 if (b)
1569 return true;
1570 if (const SymbolicRegion *SR = dyn_cast<SymbolicRegion>(R))
Ted Kremenekc4bac8e2012-08-16 17:45:23 +00001571 return getInterestingSymbols().count(SR->getSymbol());
Ted Kremenek76aadc32012-03-09 01:13:14 +00001572 return false;
1573}
Ted Kremenekc4bac8e2012-08-16 17:45:23 +00001574
Anna Zaks80de4872012-08-29 21:22:37 +00001575bool BugReport::isInteresting(const LocationContext *LC) {
1576 if (!LC)
1577 return false;
1578 return InterestingLocationContexts.count(LC);
1579}
1580
Ted Kremenekc4bac8e2012-08-16 17:45:23 +00001581void BugReport::lazyInitializeInterestingSets() {
1582 if (interestingSymbols.empty()) {
1583 interestingSymbols.push_back(new Symbols());
1584 interestingRegions.push_back(new Regions());
1585 }
1586}
1587
1588BugReport::Symbols &BugReport::getInterestingSymbols() {
1589 lazyInitializeInterestingSets();
1590 return *interestingSymbols.back();
1591}
1592
1593BugReport::Regions &BugReport::getInterestingRegions() {
1594 lazyInitializeInterestingSets();
1595 return *interestingRegions.back();
1596}
1597
1598void BugReport::pushInterestingSymbolsAndRegions() {
1599 interestingSymbols.push_back(new Symbols(getInterestingSymbols()));
1600 interestingRegions.push_back(new Regions(getInterestingRegions()));
1601}
1602
1603void BugReport::popInterestingSymbolsAndRegions() {
1604 delete interestingSymbols.back();
1605 interestingSymbols.pop_back();
1606 delete interestingRegions.back();
1607 interestingRegions.pop_back();
1608}
Ted Kremenek76aadc32012-03-09 01:13:14 +00001609
Ted Kremenek9c378f72011-08-12 23:37:29 +00001610const Stmt *BugReport::getStmt() const {
Anna Zakse172e8b2011-08-17 23:00:25 +00001611 if (!ErrorNode)
1612 return 0;
1613
Tom Care212f6d32010-09-16 03:50:38 +00001614 ProgramPoint ProgP = ErrorNode->getLocation();
Ted Kremenek5f85e172009-07-22 22:35:28 +00001615 const Stmt *S = NULL;
Mike Stump1eb44332009-09-09 15:08:12 +00001616
Ted Kremenek9c378f72011-08-12 23:37:29 +00001617 if (BlockEntrance *BE = dyn_cast<BlockEntrance>(&ProgP)) {
Zhongxing Xufafd3832009-08-20 01:23:34 +00001618 CFGBlock &Exit = ProgP.getLocationContext()->getCFG()->getExit();
Zhongxing Xu50d5bc42009-08-18 08:46:04 +00001619 if (BE->getBlock() == &Exit)
Tom Care212f6d32010-09-16 03:50:38 +00001620 S = GetPreviousStmt(ErrorNode);
Ted Kremenekcf118d42009-02-04 23:49:09 +00001621 }
Ted Kremenek5f85e172009-07-22 22:35:28 +00001622 if (!S)
Mike Stump1eb44332009-09-09 15:08:12 +00001623 S = GetStmt(ProgP);
1624
1625 return S;
Ted Kremenekbb77e9b2008-05-01 22:50:36 +00001626}
1627
Argyrios Kyrtzidis640ccf02010-12-04 01:12:15 +00001628std::pair<BugReport::ranges_iterator, BugReport::ranges_iterator>
Anna Zakse172e8b2011-08-17 23:00:25 +00001629BugReport::getRanges() {
1630 // If no custom ranges, add the range of the statement corresponding to
1631 // the error node.
1632 if (Ranges.empty()) {
1633 if (const Expr *E = dyn_cast_or_null<Expr>(getStmt()))
1634 addRange(E->getSourceRange());
1635 else
1636 return std::make_pair(ranges_iterator(), ranges_iterator());
1637 }
1638
Anna Zaks14924262011-08-24 20:31:06 +00001639 // User-specified absence of range info.
1640 if (Ranges.size() == 1 && !Ranges.begin()->isValid())
1641 return std::make_pair(ranges_iterator(), ranges_iterator());
1642
Anna Zakse172e8b2011-08-17 23:00:25 +00001643 return std::make_pair(Ranges.begin(), Ranges.end());
Ted Kremenekf1ae7052008-04-03 17:57:38 +00001644}
1645
Anna Zaks590dd8e2011-09-20 21:38:35 +00001646PathDiagnosticLocation BugReport::getLocation(const SourceManager &SM) const {
Anna Zaksb7530a42011-08-17 23:21:23 +00001647 if (ErrorNode) {
Anna Zaks590dd8e2011-09-20 21:38:35 +00001648 assert(!Location.isValid() &&
Anna Zaksb7530a42011-08-17 23:21:23 +00001649 "Either Location or ErrorNode should be specified but not both.");
1650
Ted Kremenek9c378f72011-08-12 23:37:29 +00001651 if (const Stmt *S = GetCurrentOrPreviousStmt(ErrorNode)) {
Anna Zaks590dd8e2011-09-20 21:38:35 +00001652 const LocationContext *LC = ErrorNode->getLocationContext();
1653
Ted Kremenek9b5e5052009-02-27 20:05:10 +00001654 // For member expressions, return the location of the '.' or '->'.
Ted Kremenek5b9bd212009-09-11 22:07:28 +00001655 if (const MemberExpr *ME = dyn_cast<MemberExpr>(S))
Anna Zaks590dd8e2011-09-20 21:38:35 +00001656 return PathDiagnosticLocation::createMemberLoc(ME, SM);
Ted Kremenek5b9bd212009-09-11 22:07:28 +00001657 // For binary operators, return the location of the operator.
1658 if (const BinaryOperator *B = dyn_cast<BinaryOperator>(S))
Anna Zaks590dd8e2011-09-20 21:38:35 +00001659 return PathDiagnosticLocation::createOperatorLoc(B, SM);
Ted Kremenek9b5e5052009-02-27 20:05:10 +00001660
Anna Zaks590dd8e2011-09-20 21:38:35 +00001661 return PathDiagnosticLocation::createBegin(S, SM, LC);
Ted Kremenek9b5e5052009-02-27 20:05:10 +00001662 }
Anna Zaksb7530a42011-08-17 23:21:23 +00001663 } else {
1664 assert(Location.isValid());
1665 return Location;
1666 }
1667
Anna Zaks590dd8e2011-09-20 21:38:35 +00001668 return PathDiagnosticLocation();
Ted Kremenekd2f642b2008-04-14 17:39:48 +00001669}
1670
Ted Kremenekcf118d42009-02-04 23:49:09 +00001671//===----------------------------------------------------------------------===//
1672// Methods for BugReporter and subclasses.
1673//===----------------------------------------------------------------------===//
1674
Benjamin Kramer4a5f7242012-04-01 19:30:51 +00001675BugReportEquivClass::~BugReportEquivClass() { }
Zhongxing Xua2f4ec02009-09-05 06:06:49 +00001676GRBugReporter::~GRBugReporter() { }
Ted Kremenekcf118d42009-02-04 23:49:09 +00001677BugReporterData::~BugReporterData() {}
1678
Zhongxing Xu38b02b92009-08-06 06:28:40 +00001679ExplodedGraph &GRBugReporter::getGraph() { return Eng.getGraph(); }
Ted Kremenekcf118d42009-02-04 23:49:09 +00001680
Ted Kremenek18c66fd2011-08-15 22:09:50 +00001681ProgramStateManager&
Ted Kremenekcf118d42009-02-04 23:49:09 +00001682GRBugReporter::getStateManager() { return Eng.getStateManager(); }
1683
Anna Zaks3b030a22011-08-19 01:57:09 +00001684BugReporter::~BugReporter() {
1685 FlushReports();
1686
1687 // Free the bug reports we are tracking.
1688 typedef std::vector<BugReportEquivClass *> ContTy;
1689 for (ContTy::iterator I = EQClassesVector.begin(), E = EQClassesVector.end();
1690 I != E; ++I) {
1691 delete *I;
1692 }
1693}
Ted Kremenekcf118d42009-02-04 23:49:09 +00001694
1695void BugReporter::FlushReports() {
1696 if (BugTypes.isEmpty())
1697 return;
1698
1699 // First flush the warnings for each BugType. This may end up creating new
Argyrios Kyrtzidis404fc3a2011-02-23 00:16:01 +00001700 // warnings and new BugTypes.
1701 // FIXME: Only NSErrorChecker needs BugType's FlushReports.
1702 // Turn NSErrorChecker into a proper checker and remove this.
Chris Lattner5f9e2722011-07-23 10:55:15 +00001703 SmallVector<const BugType*, 16> bugTypes;
Ted Kremenekcf118d42009-02-04 23:49:09 +00001704 for (BugTypesTy::iterator I=BugTypes.begin(), E=BugTypes.end(); I!=E; ++I)
Argyrios Kyrtzidis404fc3a2011-02-23 00:16:01 +00001705 bugTypes.push_back(*I);
Chris Lattner5f9e2722011-07-23 10:55:15 +00001706 for (SmallVector<const BugType*, 16>::iterator
Argyrios Kyrtzidis404fc3a2011-02-23 00:16:01 +00001707 I = bugTypes.begin(), E = bugTypes.end(); I != E; ++I)
Ted Kremenekcf118d42009-02-04 23:49:09 +00001708 const_cast<BugType*>(*I)->FlushReports(*this);
1709
Anna Zaksd015f4f2012-08-02 23:41:05 +00001710 // We need to flush reports in deterministic order to ensure the order
1711 // of the reports is consistent between runs.
Anna Zaks0eb6c372012-08-02 00:41:43 +00001712 typedef std::vector<BugReportEquivClass *> ContVecTy;
1713 for (ContVecTy::iterator EI=EQClassesVector.begin(), EE=EQClassesVector.end();
1714 EI != EE; ++EI){
1715 BugReportEquivClass& EQ = **EI;
Argyrios Kyrtzidis404fc3a2011-02-23 00:16:01 +00001716 FlushReport(EQ);
Ted Kremenek94826a72008-04-03 04:59:14 +00001717 }
Ted Kremenekcf118d42009-02-04 23:49:09 +00001718
Argyrios Kyrtzidis404fc3a2011-02-23 00:16:01 +00001719 // BugReporter owns and deletes only BugTypes created implicitly through
1720 // EmitBasicReport.
1721 // FIXME: There are leaks from checkers that assume that the BugTypes they
1722 // create will be destroyed by the BugReporter.
1723 for (llvm::StringMap<BugType*>::iterator
1724 I = StrBugTypes.begin(), E = StrBugTypes.end(); I != E; ++I)
1725 delete I->second;
1726
Ted Kremenekcf118d42009-02-04 23:49:09 +00001727 // Remove all references to the BugType objects.
Ted Kremenek3baf6722010-11-24 00:54:37 +00001728 BugTypes = F.getEmptySet();
Ted Kremenekcf118d42009-02-04 23:49:09 +00001729}
1730
1731//===----------------------------------------------------------------------===//
1732// PathDiagnostics generation.
1733//===----------------------------------------------------------------------===//
1734
Zhongxing Xu38b02b92009-08-06 06:28:40 +00001735static std::pair<std::pair<ExplodedGraph*, NodeBackMap*>,
Zhongxing Xuc5619d92009-08-06 01:32:16 +00001736 std::pair<ExplodedNode*, unsigned> >
Zhongxing Xu38b02b92009-08-06 06:28:40 +00001737MakeReportGraph(const ExplodedGraph* G,
Chris Lattner5f9e2722011-07-23 10:55:15 +00001738 SmallVectorImpl<const ExplodedNode*> &nodes) {
Mike Stump1eb44332009-09-09 15:08:12 +00001739
Ted Kremenekcf118d42009-02-04 23:49:09 +00001740 // Create the trimmed graph. It will contain the shortest paths from the
Mike Stump1eb44332009-09-09 15:08:12 +00001741 // error nodes to the root. In the new graph we should only have one
Ted Kremenekcf118d42009-02-04 23:49:09 +00001742 // error node unless there are two or more error nodes with the same minimum
1743 // path length.
Zhongxing Xu38b02b92009-08-06 06:28:40 +00001744 ExplodedGraph* GTrim;
Zhongxing Xuc5619d92009-08-06 01:32:16 +00001745 InterExplodedGraphMap* NMap;
Ted Kremenekfe9e5432009-02-18 03:48:14 +00001746
1747 llvm::DenseMap<const void*, const void*> InverseMap;
Ted Kremenek40406fe2010-12-03 06:52:30 +00001748 llvm::tie(GTrim, NMap) = G->Trim(nodes.data(), nodes.data() + nodes.size(),
1749 &InverseMap);
Mike Stump1eb44332009-09-09 15:08:12 +00001750
Ted Kremenekcf118d42009-02-04 23:49:09 +00001751 // Create owning pointers for GTrim and NMap just to ensure that they are
1752 // released when this function exists.
Dylan Noblesmith6f42b622012-02-05 02:12:40 +00001753 OwningPtr<ExplodedGraph> AutoReleaseGTrim(GTrim);
1754 OwningPtr<InterExplodedGraphMap> AutoReleaseNMap(NMap);
Mike Stump1eb44332009-09-09 15:08:12 +00001755
Ted Kremenekcf118d42009-02-04 23:49:09 +00001756 // Find the (first) error node in the trimmed graph. We just need to consult
1757 // the node map (NMap) which maps from nodes in the original graph to nodes
1758 // in the new graph.
Ted Kremenek938332c2009-05-16 01:11:58 +00001759
Zhongxing Xuc5619d92009-08-06 01:32:16 +00001760 std::queue<const ExplodedNode*> WS;
Zhongxing Xu38b02b92009-08-06 06:28:40 +00001761 typedef llvm::DenseMap<const ExplodedNode*, unsigned> IndexMapTy;
Ted Kremenek938332c2009-05-16 01:11:58 +00001762 IndexMapTy IndexMap;
Ted Kremenekcf118d42009-02-04 23:49:09 +00001763
Ted Kremenek40406fe2010-12-03 06:52:30 +00001764 for (unsigned nodeIndex = 0 ; nodeIndex < nodes.size(); ++nodeIndex) {
1765 const ExplodedNode *originalNode = nodes[nodeIndex];
1766 if (const ExplodedNode *N = NMap->getMappedNode(originalNode)) {
Ted Kremenek938332c2009-05-16 01:11:58 +00001767 WS.push(N);
Ted Kremenek40406fe2010-12-03 06:52:30 +00001768 IndexMap[originalNode] = nodeIndex;
Ted Kremenekcf118d42009-02-04 23:49:09 +00001769 }
Ted Kremenek40406fe2010-12-03 06:52:30 +00001770 }
Mike Stump1eb44332009-09-09 15:08:12 +00001771
Ted Kremenek938332c2009-05-16 01:11:58 +00001772 assert(!WS.empty() && "No error node found in the trimmed graph.");
Ted Kremenekcf118d42009-02-04 23:49:09 +00001773
1774 // Create a new (third!) graph with a single path. This is the graph
1775 // that will be returned to the caller.
Zhongxing Xuc77a5512010-07-01 07:10:59 +00001776 ExplodedGraph *GNew = new ExplodedGraph();
Mike Stump1eb44332009-09-09 15:08:12 +00001777
Ted Kremenek10aa5542009-03-12 23:41:59 +00001778 // Sometimes the trimmed graph can contain a cycle. Perform a reverse BFS
Ted Kremenek331b0ac2008-06-18 05:34:07 +00001779 // to the root node, and then construct a new graph that contains only
1780 // a single path.
Ted Kremenek3148eb42009-01-24 00:55:43 +00001781 llvm::DenseMap<const void*,unsigned> Visited;
Mike Stump1eb44332009-09-09 15:08:12 +00001782
Ted Kremenek331b0ac2008-06-18 05:34:07 +00001783 unsigned cnt = 0;
Ted Kremenek9c378f72011-08-12 23:37:29 +00001784 const ExplodedNode *Root = 0;
Mike Stump1eb44332009-09-09 15:08:12 +00001785
Ted Kremenek331b0ac2008-06-18 05:34:07 +00001786 while (!WS.empty()) {
Ted Kremenek9c378f72011-08-12 23:37:29 +00001787 const ExplodedNode *Node = WS.front();
Ted Kremenek10aa5542009-03-12 23:41:59 +00001788 WS.pop();
Mike Stump1eb44332009-09-09 15:08:12 +00001789
Ted Kremenek331b0ac2008-06-18 05:34:07 +00001790 if (Visited.find(Node) != Visited.end())
1791 continue;
Mike Stump1eb44332009-09-09 15:08:12 +00001792
Ted Kremenek331b0ac2008-06-18 05:34:07 +00001793 Visited[Node] = cnt++;
Mike Stump1eb44332009-09-09 15:08:12 +00001794
Ted Kremenek331b0ac2008-06-18 05:34:07 +00001795 if (Node->pred_empty()) {
1796 Root = Node;
1797 break;
1798 }
Mike Stump1eb44332009-09-09 15:08:12 +00001799
Zhongxing Xuc5619d92009-08-06 01:32:16 +00001800 for (ExplodedNode::const_pred_iterator I=Node->pred_begin(),
Ted Kremenek331b0ac2008-06-18 05:34:07 +00001801 E=Node->pred_end(); I!=E; ++I)
Ted Kremenek10aa5542009-03-12 23:41:59 +00001802 WS.push(*I);
Ted Kremenek331b0ac2008-06-18 05:34:07 +00001803 }
Mike Stump1eb44332009-09-09 15:08:12 +00001804
Ted Kremenek938332c2009-05-16 01:11:58 +00001805 assert(Root);
Mike Stump1eb44332009-09-09 15:08:12 +00001806
Ted Kremenek10aa5542009-03-12 23:41:59 +00001807 // Now walk from the root down the BFS path, always taking the successor
Ted Kremenek331b0ac2008-06-18 05:34:07 +00001808 // with the lowest number.
Mike Stump1eb44332009-09-09 15:08:12 +00001809 ExplodedNode *Last = 0, *First = 0;
Ted Kremenekfe9e5432009-02-18 03:48:14 +00001810 NodeBackMap *BM = new NodeBackMap();
Ted Kremenek938332c2009-05-16 01:11:58 +00001811 unsigned NodeIndex = 0;
Mike Stump1eb44332009-09-09 15:08:12 +00001812
Zhongxing Xuc5619d92009-08-06 01:32:16 +00001813 for ( const ExplodedNode *N = Root ;;) {
Ted Kremenek331b0ac2008-06-18 05:34:07 +00001814 // Lookup the number associated with the current node.
Ted Kremenek3148eb42009-01-24 00:55:43 +00001815 llvm::DenseMap<const void*,unsigned>::iterator I = Visited.find(N);
Ted Kremenek938332c2009-05-16 01:11:58 +00001816 assert(I != Visited.end());
Mike Stump1eb44332009-09-09 15:08:12 +00001817
Ted Kremenek331b0ac2008-06-18 05:34:07 +00001818 // Create the equivalent node in the new graph with the same state
1819 // and location.
Ted Kremenek9c378f72011-08-12 23:37:29 +00001820 ExplodedNode *NewN = GNew->getNode(N->getLocation(), N->getState());
Mike Stump1eb44332009-09-09 15:08:12 +00001821
Ted Kremenekfe9e5432009-02-18 03:48:14 +00001822 // Store the mapping to the original node.
1823 llvm::DenseMap<const void*, const void*>::iterator IMitr=InverseMap.find(N);
1824 assert(IMitr != InverseMap.end() && "No mapping to original node.");
Zhongxing Xuc5619d92009-08-06 01:32:16 +00001825 (*BM)[NewN] = (const ExplodedNode*) IMitr->second;
Mike Stump1eb44332009-09-09 15:08:12 +00001826
Ted Kremenek331b0ac2008-06-18 05:34:07 +00001827 // Link up the new node with the previous node.
1828 if (Last)
Ted Kremenek5fe4d9d2009-10-07 00:42:52 +00001829 NewN->addPredecessor(Last, *GNew);
Mike Stump1eb44332009-09-09 15:08:12 +00001830
Ted Kremeneka43a1eb2008-04-23 23:02:12 +00001831 Last = NewN;
Mike Stump1eb44332009-09-09 15:08:12 +00001832
Ted Kremenek331b0ac2008-06-18 05:34:07 +00001833 // Are we at the final node?
Ted Kremenek938332c2009-05-16 01:11:58 +00001834 IndexMapTy::iterator IMI =
Zhongxing Xuc5619d92009-08-06 01:32:16 +00001835 IndexMap.find((const ExplodedNode*)(IMitr->second));
Ted Kremenek938332c2009-05-16 01:11:58 +00001836 if (IMI != IndexMap.end()) {
Ted Kremenek331b0ac2008-06-18 05:34:07 +00001837 First = NewN;
Ted Kremenek938332c2009-05-16 01:11:58 +00001838 NodeIndex = IMI->second;
Ted Kremenekc1da4412008-06-17 19:14:06 +00001839 break;
Ted Kremenek331b0ac2008-06-18 05:34:07 +00001840 }
Mike Stump1eb44332009-09-09 15:08:12 +00001841
Ted Kremenek331b0ac2008-06-18 05:34:07 +00001842 // Find the next successor node. We choose the node that is marked
1843 // with the lowest DFS number.
Zhongxing Xuc5619d92009-08-06 01:32:16 +00001844 ExplodedNode::const_succ_iterator SI = N->succ_begin();
1845 ExplodedNode::const_succ_iterator SE = N->succ_end();
Ted Kremenekc1da4412008-06-17 19:14:06 +00001846 N = 0;
Mike Stump1eb44332009-09-09 15:08:12 +00001847
Ted Kremenek331b0ac2008-06-18 05:34:07 +00001848 for (unsigned MinVal = 0; SI != SE; ++SI) {
Mike Stump1eb44332009-09-09 15:08:12 +00001849
Ted Kremenek331b0ac2008-06-18 05:34:07 +00001850 I = Visited.find(*SI);
Mike Stump1eb44332009-09-09 15:08:12 +00001851
Ted Kremenek331b0ac2008-06-18 05:34:07 +00001852 if (I == Visited.end())
1853 continue;
Mike Stump1eb44332009-09-09 15:08:12 +00001854
Ted Kremenek331b0ac2008-06-18 05:34:07 +00001855 if (!N || I->second < MinVal) {
1856 N = *SI;
1857 MinVal = I->second;
Ted Kremenekc1da4412008-06-17 19:14:06 +00001858 }
Ted Kremenek331b0ac2008-06-18 05:34:07 +00001859 }
Mike Stump1eb44332009-09-09 15:08:12 +00001860
Ted Kremenek938332c2009-05-16 01:11:58 +00001861 assert(N);
Ted Kremeneka43a1eb2008-04-23 23:02:12 +00001862 }
Mike Stump1eb44332009-09-09 15:08:12 +00001863
Ted Kremenek938332c2009-05-16 01:11:58 +00001864 assert(First);
1865
Ted Kremenekfe9e5432009-02-18 03:48:14 +00001866 return std::make_pair(std::make_pair(GNew, BM),
1867 std::make_pair(First, NodeIndex));
Ted Kremeneka43a1eb2008-04-23 23:02:12 +00001868}
1869
Ted Kremenek0e5c8d42009-03-10 05:16:17 +00001870/// CompactPathDiagnostic - This function postprocesses a PathDiagnostic object
1871/// and collapses PathDiagosticPieces that are expanded by macros.
Ted Kremenek77d09442012-03-02 01:27:31 +00001872static void CompactPathDiagnostic(PathPieces &path, const SourceManager& SM) {
Ted Kremenek2042fc12012-02-24 06:00:00 +00001873 typedef std::vector<std::pair<IntrusiveRefCntPtr<PathDiagnosticMacroPiece>,
1874 SourceLocation> > MacroStackTy;
Mike Stump1eb44332009-09-09 15:08:12 +00001875
Dylan Noblesmithc93dc782012-02-20 14:00:23 +00001876 typedef std::vector<IntrusiveRefCntPtr<PathDiagnosticPiece> >
Ted Kremenek0e5c8d42009-03-10 05:16:17 +00001877 PiecesTy;
Mike Stump1eb44332009-09-09 15:08:12 +00001878
Ted Kremenek0e5c8d42009-03-10 05:16:17 +00001879 MacroStackTy MacroStack;
1880 PiecesTy Pieces;
Mike Stump1eb44332009-09-09 15:08:12 +00001881
Ted Kremenek77d09442012-03-02 01:27:31 +00001882 for (PathPieces::const_iterator I = path.begin(), E = path.end();
Ted Kremenek2042fc12012-02-24 06:00:00 +00001883 I!=E; ++I) {
Ted Kremenek77d09442012-03-02 01:27:31 +00001884
1885 PathDiagnosticPiece *piece = I->getPtr();
1886
1887 // Recursively compact calls.
1888 if (PathDiagnosticCallPiece *call=dyn_cast<PathDiagnosticCallPiece>(piece)){
1889 CompactPathDiagnostic(call->path, SM);
1890 }
1891
Ted Kremenek0e5c8d42009-03-10 05:16:17 +00001892 // Get the location of the PathDiagnosticPiece.
Ted Kremenek77d09442012-03-02 01:27:31 +00001893 const FullSourceLoc Loc = piece->getLocation().asLocation();
Mike Stump1eb44332009-09-09 15:08:12 +00001894
Ted Kremenek0e5c8d42009-03-10 05:16:17 +00001895 // Determine the instantiation location, which is the location we group
1896 // related PathDiagnosticPieces.
Mike Stump1eb44332009-09-09 15:08:12 +00001897 SourceLocation InstantiationLoc = Loc.isMacroID() ?
Chandler Carruth40278532011-07-25 16:49:02 +00001898 SM.getExpansionLoc(Loc) :
Ted Kremenek0e5c8d42009-03-10 05:16:17 +00001899 SourceLocation();
Mike Stump1eb44332009-09-09 15:08:12 +00001900
Ted Kremenek0e5c8d42009-03-10 05:16:17 +00001901 if (Loc.isFileID()) {
1902 MacroStack.clear();
Ted Kremenek77d09442012-03-02 01:27:31 +00001903 Pieces.push_back(piece);
Ted Kremenek0e5c8d42009-03-10 05:16:17 +00001904 continue;
1905 }
1906
1907 assert(Loc.isMacroID());
Mike Stump1eb44332009-09-09 15:08:12 +00001908
Ted Kremenek0e5c8d42009-03-10 05:16:17 +00001909 // Is the PathDiagnosticPiece within the same macro group?
1910 if (!MacroStack.empty() && InstantiationLoc == MacroStack.back().second) {
Ted Kremenek77d09442012-03-02 01:27:31 +00001911 MacroStack.back().first->subPieces.push_back(piece);
Ted Kremenek0e5c8d42009-03-10 05:16:17 +00001912 continue;
1913 }
1914
1915 // We aren't in the same group. Are we descending into a new macro
1916 // or are part of an old one?
Dylan Noblesmithc93dc782012-02-20 14:00:23 +00001917 IntrusiveRefCntPtr<PathDiagnosticMacroPiece> MacroGroup;
Ted Kremenek0e5c8d42009-03-10 05:16:17 +00001918
1919 SourceLocation ParentInstantiationLoc = InstantiationLoc.isMacroID() ?
Chandler Carruth40278532011-07-25 16:49:02 +00001920 SM.getExpansionLoc(Loc) :
Ted Kremenek0e5c8d42009-03-10 05:16:17 +00001921 SourceLocation();
Mike Stump1eb44332009-09-09 15:08:12 +00001922
Ted Kremenek0e5c8d42009-03-10 05:16:17 +00001923 // Walk the entire macro stack.
1924 while (!MacroStack.empty()) {
1925 if (InstantiationLoc == MacroStack.back().second) {
1926 MacroGroup = MacroStack.back().first;
1927 break;
1928 }
Mike Stump1eb44332009-09-09 15:08:12 +00001929
Ted Kremenek0e5c8d42009-03-10 05:16:17 +00001930 if (ParentInstantiationLoc == MacroStack.back().second) {
1931 MacroGroup = MacroStack.back().first;
1932 break;
1933 }
Mike Stump1eb44332009-09-09 15:08:12 +00001934
Ted Kremenek0e5c8d42009-03-10 05:16:17 +00001935 MacroStack.pop_back();
1936 }
Mike Stump1eb44332009-09-09 15:08:12 +00001937
Ted Kremenek0e5c8d42009-03-10 05:16:17 +00001938 if (!MacroGroup || ParentInstantiationLoc == MacroStack.back().second) {
1939 // Create a new macro group and add it to the stack.
Anna Zaks590dd8e2011-09-20 21:38:35 +00001940 PathDiagnosticMacroPiece *NewGroup =
1941 new PathDiagnosticMacroPiece(
Ted Kremenek77d09442012-03-02 01:27:31 +00001942 PathDiagnosticLocation::createSingleLocation(piece->getLocation()));
Ted Kremenek0e5c8d42009-03-10 05:16:17 +00001943
1944 if (MacroGroup)
Ted Kremenek802e0242012-02-08 04:32:34 +00001945 MacroGroup->subPieces.push_back(NewGroup);
Ted Kremenek0e5c8d42009-03-10 05:16:17 +00001946 else {
1947 assert(InstantiationLoc.isFileID());
1948 Pieces.push_back(NewGroup);
1949 }
Mike Stump1eb44332009-09-09 15:08:12 +00001950
Ted Kremenek0e5c8d42009-03-10 05:16:17 +00001951 MacroGroup = NewGroup;
1952 MacroStack.push_back(std::make_pair(MacroGroup, InstantiationLoc));
1953 }
1954
1955 // Finally, add the PathDiagnosticPiece to the group.
Ted Kremenek77d09442012-03-02 01:27:31 +00001956 MacroGroup->subPieces.push_back(piece);
Ted Kremenek0e5c8d42009-03-10 05:16:17 +00001957 }
Mike Stump1eb44332009-09-09 15:08:12 +00001958
Ted Kremenek0e5c8d42009-03-10 05:16:17 +00001959 // Now take the pieces and construct a new PathDiagnostic.
Ted Kremenek77d09442012-03-02 01:27:31 +00001960 path.clear();
Mike Stump1eb44332009-09-09 15:08:12 +00001961
Ted Kremenek77d09442012-03-02 01:27:31 +00001962 for (PiecesTy::iterator I=Pieces.begin(), E=Pieces.end(); I!=E; ++I)
1963 path.push_back(*I);
Ted Kremenek0e5c8d42009-03-10 05:16:17 +00001964}
1965
Jordan Rose8347d3d2012-09-22 01:24:53 +00001966bool GRBugReporter::generatePathDiagnostic(PathDiagnostic& PD,
Ted Kremenekc4bac8e2012-08-16 17:45:23 +00001967 PathDiagnosticConsumer &PC,
1968 ArrayRef<BugReport *> &bugReports) {
Ted Kremenek40406fe2010-12-03 06:52:30 +00001969 assert(!bugReports.empty());
Jordan Rose8347d3d2012-09-22 01:24:53 +00001970
1971 bool HasValid = false;
Chris Lattner5f9e2722011-07-23 10:55:15 +00001972 SmallVector<const ExplodedNode *, 10> errorNodes;
Ted Kremenekc4bac8e2012-08-16 17:45:23 +00001973 for (ArrayRef<BugReport*>::iterator I = bugReports.begin(),
1974 E = bugReports.end(); I != E; ++I) {
Jordan Rose8347d3d2012-09-22 01:24:53 +00001975 if ((*I)->isValid()) {
1976 HasValid = true;
Ted Kremenek40406fe2010-12-03 06:52:30 +00001977 errorNodes.push_back((*I)->getErrorNode());
Jordan Rose8347d3d2012-09-22 01:24:53 +00001978 } else {
1979 errorNodes.push_back(0);
1980 }
Ted Kremenek40406fe2010-12-03 06:52:30 +00001981 }
Mike Stump1eb44332009-09-09 15:08:12 +00001982
Jordan Rose8347d3d2012-09-22 01:24:53 +00001983 // If all the reports have been marked invalid, we're done.
1984 if (!HasValid)
1985 return false;
1986
Ted Kremeneka43a1eb2008-04-23 23:02:12 +00001987 // Construct a new graph that contains only a single path from the error
Mike Stump1eb44332009-09-09 15:08:12 +00001988 // node to a root.
Zhongxing Xu38b02b92009-08-06 06:28:40 +00001989 const std::pair<std::pair<ExplodedGraph*, NodeBackMap*>,
Zhongxing Xuc5619d92009-08-06 01:32:16 +00001990 std::pair<ExplodedNode*, unsigned> >&
Ted Kremenek40406fe2010-12-03 06:52:30 +00001991 GPair = MakeReportGraph(&getGraph(), errorNodes);
Mike Stump1eb44332009-09-09 15:08:12 +00001992
Ted Kremenekcf118d42009-02-04 23:49:09 +00001993 // Find the BugReport with the original location.
Ted Kremenek40406fe2010-12-03 06:52:30 +00001994 assert(GPair.second.second < bugReports.size());
1995 BugReport *R = bugReports[GPair.second.second];
Ted Kremenekcf118d42009-02-04 23:49:09 +00001996 assert(R && "No original report found for sliced graph.");
Jordan Rose8347d3d2012-09-22 01:24:53 +00001997 assert(R->isValid() && "Report selected from trimmed graph marked invalid.");
Mike Stump1eb44332009-09-09 15:08:12 +00001998
Dylan Noblesmith6f42b622012-02-05 02:12:40 +00001999 OwningPtr<ExplodedGraph> ReportGraph(GPair.first.first);
2000 OwningPtr<NodeBackMap> BackMap(GPair.first.second);
Zhongxing Xuc5619d92009-08-06 01:32:16 +00002001 const ExplodedNode *N = GPair.second.first;
Mike Stump1eb44332009-09-09 15:08:12 +00002002
2003 // Start building the path diagnostic...
Ted Kremenekc4bac8e2012-08-16 17:45:23 +00002004 PathDiagnosticBuilder PDB(*this, R, BackMap.get(), &PC);
Mike Stump1eb44332009-09-09 15:08:12 +00002005
Anna Zaks8e6431a2011-08-18 22:37:56 +00002006 // Register additional node visitors.
Anna Zaks50bbc162011-08-19 22:33:38 +00002007 R->addVisitor(new NilReceiverBRVisitor());
2008 R->addVisitor(new ConditionBRVisitor());
Mike Stump1eb44332009-09-09 15:08:12 +00002009
Jordy Rose3bc75ca2012-03-24 03:03:29 +00002010 BugReport::VisitorList visitors;
2011 unsigned originalReportConfigToken, finalReportConfigToken;
Anna Zaks23f395e2011-08-20 01:27:22 +00002012
Jordy Rose3bc75ca2012-03-24 03:03:29 +00002013 // While generating diagnostics, it's possible the visitors will decide
2014 // new symbols and regions are interesting, or add other visitors based on
2015 // the information they find. If they do, we need to regenerate the path
2016 // based on our new report configuration.
2017 do {
2018 // Get a clean copy of all the visitors.
2019 for (BugReport::visitor_iterator I = R->visitor_begin(),
2020 E = R->visitor_end(); I != E; ++I)
2021 visitors.push_back((*I)->clone());
2022
2023 // Clear out the active path from any previous work.
Jordan Rose3a46f5f2012-08-31 00:36:26 +00002024 PD.resetPath();
Jordy Rose3bc75ca2012-03-24 03:03:29 +00002025 originalReportConfigToken = R->getConfigurationChangeToken();
2026
2027 // Generate the very last diagnostic piece - the piece is visible before
2028 // the trace is expanded.
Jordan Rosed632d6f2012-09-22 01:24:56 +00002029 if (PDB.getGenerationScheme() != PathDiagnosticConsumer::None) {
2030 PathDiagnosticPiece *LastPiece = 0;
2031 for (BugReport::visitor_iterator I = visitors.begin(), E = visitors.end();
2032 I != E; ++I) {
2033 if (PathDiagnosticPiece *Piece = (*I)->getEndPath(PDB, N, *R)) {
2034 assert (!LastPiece &&
2035 "There can only be one final piece in a diagnostic.");
2036 LastPiece = Piece;
2037 }
Jordy Rose3bc75ca2012-03-24 03:03:29 +00002038 }
Jordan Rosed632d6f2012-09-22 01:24:56 +00002039 if (!LastPiece)
2040 LastPiece = BugReporterVisitor::getDefaultEndPath(PDB, N, *R);
2041 if (LastPiece)
2042 PD.setEndOfPath(LastPiece);
2043 else
2044 return false;
Jordy Rose3bc75ca2012-03-24 03:03:29 +00002045 }
Jordy Rose3bc75ca2012-03-24 03:03:29 +00002046
2047 switch (PDB.getGenerationScheme()) {
David Blaikieef3643f2011-09-26 00:51:36 +00002048 case PathDiagnosticConsumer::Extensive:
Jordan Rose8347d3d2012-09-22 01:24:53 +00002049 if (!GenerateExtensivePathDiagnostic(PD, PDB, N, visitors)) {
2050 assert(!R->isValid() && "Failed on valid report");
2051 // Try again. We'll filter out the bad report when we trim the graph.
2052 // FIXME: It would be more efficient to use the same intermediate
2053 // trimmed graph, and just repeat the shortest-path search.
2054 return generatePathDiagnostic(PD, PC, bugReports);
2055 }
Ted Kremenek5fb5dfb2009-04-01 06:13:56 +00002056 break;
David Blaikieef3643f2011-09-26 00:51:36 +00002057 case PathDiagnosticConsumer::Minimal:
Jordan Rose8347d3d2012-09-22 01:24:53 +00002058 if (!GenerateMinimalPathDiagnostic(PD, PDB, N, visitors)) {
2059 assert(!R->isValid() && "Failed on valid report");
2060 // Try again. We'll filter out the bad report when we trim the graph.
2061 return generatePathDiagnostic(PD, PC, bugReports);
2062 }
Ted Kremenek7dc86642009-03-31 20:22:36 +00002063 break;
Ted Kremenekc4bac8e2012-08-16 17:45:23 +00002064 case PathDiagnosticConsumer::None:
Jordan Rosed632d6f2012-09-22 01:24:56 +00002065 if (!GenerateVisitorsOnlyPathDiagnostic(PD, PDB, N, visitors)) {
2066 assert(!R->isValid() && "Failed on valid report");
2067 // Try again. We'll filter out the bad report when we trim the graph.
2068 return generatePathDiagnostic(PD, PC, bugReports);
2069 }
2070 break;
Jordy Rose3bc75ca2012-03-24 03:03:29 +00002071 }
2072
2073 // Clean up the visitors we used.
2074 llvm::DeleteContainerPointers(visitors);
2075
2076 // Did anything change while generating this path?
2077 finalReportConfigToken = R->getConfigurationChangeToken();
2078 } while(finalReportConfigToken != originalReportConfigToken);
2079
Ted Kremenekc89f4b02012-02-28 23:06:21 +00002080 // Finally, prune the diagnostic path of uninteresting stuff.
Ted Kremenekb85cce02012-10-25 22:07:10 +00002081 if (!PD.path.empty()) {
2082 // Remove messages that are basically the same.
2083 RemoveRedundantMsgs(PD.getMutablePieces());
2084
2085 if (R->shouldPrunePath()) {
2086 bool hasSomethingInteresting = RemoveUneededCalls(PD.getMutablePieces(),
2087 R);
2088 assert(hasSomethingInteresting);
2089 (void) hasSomethingInteresting;
2090 }
Ted Kremeneked7948b2012-05-31 06:03:17 +00002091 }
Jordan Rose8347d3d2012-09-22 01:24:53 +00002092
2093 return true;
Ted Kremenek7dc86642009-03-31 20:22:36 +00002094}
2095
Ted Kremenekcf118d42009-02-04 23:49:09 +00002096void BugReporter::Register(BugType *BT) {
Ted Kremenek3baf6722010-11-24 00:54:37 +00002097 BugTypes = F.add(BugTypes, BT);
Ted Kremenek76d90c82008-05-16 18:33:14 +00002098}
2099
Mike Stump1eb44332009-09-09 15:08:12 +00002100void BugReporter::EmitReport(BugReport* R) {
Ted Kremenekcf118d42009-02-04 23:49:09 +00002101 // Compute the bug report's hash to determine its equivalence class.
2102 llvm::FoldingSetNodeID ID;
2103 R->Profile(ID);
Mike Stump1eb44332009-09-09 15:08:12 +00002104
2105 // Lookup the equivance class. If there isn't one, create it.
Ted Kremenekcf118d42009-02-04 23:49:09 +00002106 BugType& BT = R->getBugType();
2107 Register(&BT);
2108 void *InsertPos;
Argyrios Kyrtzidis404fc3a2011-02-23 00:16:01 +00002109 BugReportEquivClass* EQ = EQClasses.FindNodeOrInsertPos(ID, InsertPos);
Mike Stump1eb44332009-09-09 15:08:12 +00002110
Ted Kremenekcf118d42009-02-04 23:49:09 +00002111 if (!EQ) {
2112 EQ = new BugReportEquivClass(R);
Argyrios Kyrtzidis404fc3a2011-02-23 00:16:01 +00002113 EQClasses.InsertNode(EQ, InsertPos);
Anna Zaks3b030a22011-08-19 01:57:09 +00002114 EQClassesVector.push_back(EQ);
Ted Kremenekcf118d42009-02-04 23:49:09 +00002115 }
2116 else
2117 EQ->AddReport(R);
Ted Kremenek61f3e052008-04-03 04:42:52 +00002118}
2119
Ted Kremenek06c9cb42009-09-14 22:01:32 +00002120
2121//===----------------------------------------------------------------------===//
2122// Emitting reports in equivalence classes.
2123//===----------------------------------------------------------------------===//
2124
2125namespace {
Kovarththanan Rajaratnamba5fb5a2009-11-28 06:07:30 +00002126struct FRIEC_WLItem {
Ted Kremenek06c9cb42009-09-14 22:01:32 +00002127 const ExplodedNode *N;
2128 ExplodedNode::const_succ_iterator I, E;
2129
2130 FRIEC_WLItem(const ExplodedNode *n)
2131 : N(n), I(N->succ_begin()), E(N->succ_end()) {}
2132};
2133}
2134
Ted Kremenek61f52bd2010-09-09 19:05:34 +00002135static BugReport *
2136FindReportInEquivalenceClass(BugReportEquivClass& EQ,
Chris Lattner5f9e2722011-07-23 10:55:15 +00002137 SmallVectorImpl<BugReport*> &bugReports) {
Ted Kremenek61f52bd2010-09-09 19:05:34 +00002138
Ted Kremenek06c9cb42009-09-14 22:01:32 +00002139 BugReportEquivClass::iterator I = EQ.begin(), E = EQ.end();
2140 assert(I != E);
Benjamin Kramer4a5f7242012-04-01 19:30:51 +00002141 BugType& BT = I->getBugType();
Ted Kremenek61f52bd2010-09-09 19:05:34 +00002142
Ted Kremenek40406fe2010-12-03 06:52:30 +00002143 // If we don't need to suppress any of the nodes because they are
2144 // post-dominated by a sink, simply add all the nodes in the equivalence class
2145 // to 'Nodes'. Any of the reports will serve as a "representative" report.
Ted Kremenek61f52bd2010-09-09 19:05:34 +00002146 if (!BT.isSuppressOnSink()) {
Benjamin Kramer4a5f7242012-04-01 19:30:51 +00002147 BugReport *R = I;
Ted Kremenek61f52bd2010-09-09 19:05:34 +00002148 for (BugReportEquivClass::iterator I=EQ.begin(), E=EQ.end(); I!=E; ++I) {
Ted Kremenek9c378f72011-08-12 23:37:29 +00002149 const ExplodedNode *N = I->getErrorNode();
Ted Kremenek61f52bd2010-09-09 19:05:34 +00002150 if (N) {
Benjamin Kramer4a5f7242012-04-01 19:30:51 +00002151 R = I;
Ted Kremenek40406fe2010-12-03 06:52:30 +00002152 bugReports.push_back(R);
Ted Kremenek61f52bd2010-09-09 19:05:34 +00002153 }
2154 }
Ted Kremenek06c9cb42009-09-14 22:01:32 +00002155 return R;
Ted Kremenek61f52bd2010-09-09 19:05:34 +00002156 }
2157
Ted Kremenek06c9cb42009-09-14 22:01:32 +00002158 // For bug reports that should be suppressed when all paths are post-dominated
2159 // by a sink node, iterate through the reports in the equivalence class
2160 // until we find one that isn't post-dominated (if one exists). We use a
2161 // DFS traversal of the ExplodedGraph to find a non-sink node. We could write
2162 // this as a recursive function, but we don't want to risk blowing out the
2163 // stack for very long paths.
Ted Kremenek40406fe2010-12-03 06:52:30 +00002164 BugReport *exampleReport = 0;
Ted Kremenek61f52bd2010-09-09 19:05:34 +00002165
Ted Kremenek06c9cb42009-09-14 22:01:32 +00002166 for (; I != E; ++I) {
Benjamin Kramer4a5f7242012-04-01 19:30:51 +00002167 const ExplodedNode *errorNode = I->getErrorNode();
Ted Kremenek06c9cb42009-09-14 22:01:32 +00002168
Ted Kremenek40406fe2010-12-03 06:52:30 +00002169 if (!errorNode)
Ted Kremenek06c9cb42009-09-14 22:01:32 +00002170 continue;
Ted Kremenek40406fe2010-12-03 06:52:30 +00002171 if (errorNode->isSink()) {
David Blaikieb219cfc2011-09-23 05:06:16 +00002172 llvm_unreachable(
Ted Kremenek06c9cb42009-09-14 22:01:32 +00002173 "BugType::isSuppressSink() should not be 'true' for sink end nodes");
Ted Kremenek06c9cb42009-09-14 22:01:32 +00002174 }
Ted Kremenek61f52bd2010-09-09 19:05:34 +00002175 // No successors? By definition this nodes isn't post-dominated by a sink.
Ted Kremenek40406fe2010-12-03 06:52:30 +00002176 if (errorNode->succ_empty()) {
Benjamin Kramer4a5f7242012-04-01 19:30:51 +00002177 bugReports.push_back(I);
Ted Kremenek40406fe2010-12-03 06:52:30 +00002178 if (!exampleReport)
Benjamin Kramer4a5f7242012-04-01 19:30:51 +00002179 exampleReport = I;
Ted Kremenek61f52bd2010-09-09 19:05:34 +00002180 continue;
2181 }
2182
Ted Kremenek06c9cb42009-09-14 22:01:32 +00002183 // At this point we know that 'N' is not a sink and it has at least one
2184 // successor. Use a DFS worklist to find a non-sink end-of-path node.
2185 typedef FRIEC_WLItem WLItem;
Chris Lattner5f9e2722011-07-23 10:55:15 +00002186 typedef SmallVector<WLItem, 10> DFSWorkList;
Ted Kremenek06c9cb42009-09-14 22:01:32 +00002187 llvm::DenseMap<const ExplodedNode *, unsigned> Visited;
2188
2189 DFSWorkList WL;
Ted Kremenek40406fe2010-12-03 06:52:30 +00002190 WL.push_back(errorNode);
2191 Visited[errorNode] = 1;
Ted Kremenek06c9cb42009-09-14 22:01:32 +00002192
2193 while (!WL.empty()) {
2194 WLItem &WI = WL.back();
2195 assert(!WI.N->succ_empty());
2196
2197 for (; WI.I != WI.E; ++WI.I) {
2198 const ExplodedNode *Succ = *WI.I;
2199 // End-of-path node?
2200 if (Succ->succ_empty()) {
Ted Kremenek61f52bd2010-09-09 19:05:34 +00002201 // If we found an end-of-path node that is not a sink.
2202 if (!Succ->isSink()) {
Benjamin Kramer4a5f7242012-04-01 19:30:51 +00002203 bugReports.push_back(I);
Ted Kremenek40406fe2010-12-03 06:52:30 +00002204 if (!exampleReport)
Benjamin Kramer4a5f7242012-04-01 19:30:51 +00002205 exampleReport = I;
Ted Kremenek61f52bd2010-09-09 19:05:34 +00002206 WL.clear();
2207 break;
2208 }
Ted Kremenek06c9cb42009-09-14 22:01:32 +00002209 // Found a sink? Continue on to the next successor.
2210 continue;
2211 }
Ted Kremenek06c9cb42009-09-14 22:01:32 +00002212 // Mark the successor as visited. If it hasn't been explored,
2213 // enqueue it to the DFS worklist.
2214 unsigned &mark = Visited[Succ];
2215 if (!mark) {
2216 mark = 1;
2217 WL.push_back(Succ);
2218 break;
2219 }
2220 }
Ted Kremenek61f52bd2010-09-09 19:05:34 +00002221
2222 // The worklist may have been cleared at this point. First
2223 // check if it is empty before checking the last item.
2224 if (!WL.empty() && &WL.back() == &WI)
Ted Kremenek06c9cb42009-09-14 22:01:32 +00002225 WL.pop_back();
2226 }
2227 }
Ted Kremenek06c9cb42009-09-14 22:01:32 +00002228
Ted Kremenek61f52bd2010-09-09 19:05:34 +00002229 // ExampleReport will be NULL if all the nodes in the equivalence class
2230 // were post-dominated by sinks.
Ted Kremenek40406fe2010-12-03 06:52:30 +00002231 return exampleReport;
Ted Kremenek61f52bd2010-09-09 19:05:34 +00002232}
Ted Kremeneke0a58072009-09-18 22:37:37 +00002233
Ted Kremenekcf118d42009-02-04 23:49:09 +00002234void BugReporter::FlushReport(BugReportEquivClass& EQ) {
Chris Lattner5f9e2722011-07-23 10:55:15 +00002235 SmallVector<BugReport*, 10> bugReports;
Ted Kremenek40406fe2010-12-03 06:52:30 +00002236 BugReport *exampleReport = FindReportInEquivalenceClass(EQ, bugReports);
Ted Kremenekc4bac8e2012-08-16 17:45:23 +00002237 if (exampleReport) {
2238 const PathDiagnosticConsumers &C = getPathDiagnosticConsumers();
2239 for (PathDiagnosticConsumers::const_iterator I=C.begin(),
2240 E=C.end(); I != E; ++I) {
2241 FlushReport(exampleReport, **I, bugReports);
2242 }
2243 }
2244}
2245
2246void BugReporter::FlushReport(BugReport *exampleReport,
2247 PathDiagnosticConsumer &PD,
2248 ArrayRef<BugReport*> bugReports) {
Mike Stump1eb44332009-09-09 15:08:12 +00002249
Ted Kremenekcf118d42009-02-04 23:49:09 +00002250 // FIXME: Make sure we use the 'R' for the path that was actually used.
Mike Stump1eb44332009-09-09 15:08:12 +00002251 // Probably doesn't make a difference in practice.
Ted Kremenek40406fe2010-12-03 06:52:30 +00002252 BugType& BT = exampleReport->getBugType();
Mike Stump1eb44332009-09-09 15:08:12 +00002253
Dylan Noblesmith6f42b622012-02-05 02:12:40 +00002254 OwningPtr<PathDiagnostic>
Ted Kremenek07189522012-04-04 18:11:35 +00002255 D(new PathDiagnostic(exampleReport->getDeclWithIssue(),
2256 exampleReport->getBugType().getName(),
Jordan Rose3a46f5f2012-08-31 00:36:26 +00002257 exampleReport->getDescription(),
2258 exampleReport->getShortDescription(/*Fallback=*/false),
Ted Kremenekd49967f2009-04-29 21:58:13 +00002259 BT.getCategory()));
2260
Ted Kremenekc4bac8e2012-08-16 17:45:23 +00002261 // Generate the full path diagnostic, using the generation scheme
Jordan Rosed632d6f2012-09-22 01:24:56 +00002262 // specified by the PathDiagnosticConsumer. Note that we have to generate
2263 // path diagnostics even for consumers which do not support paths, because
2264 // the BugReporterVisitors may mark this bug as a false positive.
2265 if (!bugReports.empty())
2266 if (!generatePathDiagnostic(*D.get(), PD, bugReports))
2267 return;
Ted Kremenekc4bac8e2012-08-16 17:45:23 +00002268
2269 // If the path is empty, generate a single step path with the location
2270 // of the issue.
2271 if (D->path.empty()) {
2272 PathDiagnosticLocation L = exampleReport->getLocation(getSourceManager());
2273 PathDiagnosticPiece *piece =
2274 new PathDiagnosticEventPiece(L, exampleReport->getDescription());
2275 BugReport::ranges_iterator Beg, End;
2276 llvm::tie(Beg, End) = exampleReport->getRanges();
2277 for ( ; Beg != End; ++Beg)
2278 piece->addRange(*Beg);
Jordan Rose3a46f5f2012-08-31 00:36:26 +00002279 D->setEndOfPath(piece);
Ted Kremenekc4bac8e2012-08-16 17:45:23 +00002280 }
2281
Ted Kremenek072192b2008-04-30 23:47:44 +00002282 // Get the meta data.
Ted Kremenekc4bac8e2012-08-16 17:45:23 +00002283 const BugReport::ExtraTextList &Meta = exampleReport->getExtraText();
Anna Zaks7f2531c2011-08-22 20:31:28 +00002284 for (BugReport::ExtraTextList::const_iterator i = Meta.begin(),
2285 e = Meta.end(); i != e; ++i) {
2286 D->addMeta(*i);
2287 }
Ted Kremenek75840e12008-04-18 01:56:37 +00002288
Ted Kremenekc4bac8e2012-08-16 17:45:23 +00002289 PD.HandlePathDiagnostic(D.take());
Ted Kremenek61f3e052008-04-03 04:42:52 +00002290}
Ted Kremenek57202072008-07-14 17:40:50 +00002291
Ted Kremenek07189522012-04-04 18:11:35 +00002292void BugReporter::EmitBasicReport(const Decl *DeclWithIssue,
Ted Kremenek07189522012-04-04 18:11:35 +00002293 StringRef name,
Chris Lattner5f9e2722011-07-23 10:55:15 +00002294 StringRef category,
Anna Zaks590dd8e2011-09-20 21:38:35 +00002295 StringRef str, PathDiagnosticLocation Loc,
Ted Kremenek8c036c72008-09-20 04:23:38 +00002296 SourceRange* RBeg, unsigned NumRanges) {
Mike Stump1eb44332009-09-09 15:08:12 +00002297
Argyrios Kyrtzidis404fc3a2011-02-23 00:16:01 +00002298 // 'BT' is owned by BugReporter.
2299 BugType *BT = getBugTypeForName(name, category);
Anna Zaks590dd8e2011-09-20 21:38:35 +00002300 BugReport *R = new BugReport(*BT, str, Loc);
Ted Kremenek07189522012-04-04 18:11:35 +00002301 R->setDeclWithIssue(DeclWithIssue);
Ted Kremenekcf118d42009-02-04 23:49:09 +00002302 for ( ; NumRanges > 0 ; --NumRanges, ++RBeg) R->addRange(*RBeg);
2303 EmitReport(R);
Ted Kremenek57202072008-07-14 17:40:50 +00002304}
Argyrios Kyrtzidis404fc3a2011-02-23 00:16:01 +00002305
Chris Lattner5f9e2722011-07-23 10:55:15 +00002306BugType *BugReporter::getBugTypeForName(StringRef name,
2307 StringRef category) {
Dylan Noblesmithf7ccbad2012-02-05 02:13:05 +00002308 SmallString<136> fullDesc;
Argyrios Kyrtzidis404fc3a2011-02-23 00:16:01 +00002309 llvm::raw_svector_ostream(fullDesc) << name << ":" << category;
2310 llvm::StringMapEntry<BugType *> &
2311 entry = StrBugTypes.GetOrCreateValue(fullDesc);
2312 BugType *BT = entry.getValue();
2313 if (!BT) {
2314 BT = new BugType(name, category);
2315 entry.setValue(BT);
2316 }
2317 return BT;
2318}