blob: 4726eacb320b2957fc37623dd89090ddb700af6b [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
11// PathDiagnostics for analyses based on GRSimpleVals.
12//
13//===----------------------------------------------------------------------===//
14
15#include "clang/Analysis/PathSensitive/BugReporter.h"
Ted Kremenek50a6d0c2008-04-09 21:41:14 +000016#include "clang/Analysis/PathSensitive/GRExprEngine.h"
Ted Kremenek61f3e052008-04-03 04:42:52 +000017#include "clang/AST/ASTContext.h"
18#include "clang/AST/CFG.h"
19#include "clang/AST/Expr.h"
Ted Kremenek00605e02009-03-27 20:55:39 +000020#include "clang/AST/ParentMap.h"
Chris Lattner16f00492009-04-26 01:32:48 +000021#include "clang/AST/StmtObjC.h"
22#include "clang/Basic/SourceManager.h"
Ted Kremenek61f3e052008-04-03 04:42:52 +000023#include "clang/Analysis/ProgramPoint.h"
24#include "clang/Analysis/PathDiagnostic.h"
Chris Lattner405674c2008-08-23 22:23:37 +000025#include "llvm/Support/raw_ostream.h"
Ted Kremenek331b0ac2008-06-18 05:34:07 +000026#include "llvm/ADT/DenseMap.h"
Ted Kremenekcf118d42009-02-04 23:49:09 +000027#include "llvm/ADT/STLExtras.h"
Ted Kremenek00605e02009-03-27 20:55:39 +000028#include "llvm/ADT/OwningPtr.h"
Ted Kremenek10aa5542009-03-12 23:41:59 +000029#include <queue>
Ted Kremenek61f3e052008-04-03 04:42:52 +000030
31using namespace clang;
32
Ted Kremenek8966bc12009-05-06 21:39:49 +000033BugReporterVisitor::~BugReporterVisitor() {}
34BugReporterContext::~BugReporterContext() {
35 for (visitor_iterator I = visitor_begin(), E = visitor_end(); I != E; ++I)
36 if ((*I)->isOwnedByReporterContext()) delete *I;
37}
38
Ted Kremenekcf118d42009-02-04 23:49:09 +000039//===----------------------------------------------------------------------===//
Ted Kremenek31061982009-03-31 23:00:32 +000040// Helper routines for walking the ExplodedGraph and fetching statements.
Ted Kremenekcf118d42009-02-04 23:49:09 +000041//===----------------------------------------------------------------------===//
Ted Kremenek61f3e052008-04-03 04:42:52 +000042
Ted Kremenekb697b102009-02-23 22:44:26 +000043static inline Stmt* GetStmt(ProgramPoint P) {
44 if (const PostStmt* PS = dyn_cast<PostStmt>(&P))
Ted Kremenek61f3e052008-04-03 04:42:52 +000045 return PS->getStmt();
Ted Kremenekb697b102009-02-23 22:44:26 +000046 else if (const BlockEdge* BE = dyn_cast<BlockEdge>(&P))
Ted Kremenek61f3e052008-04-03 04:42:52 +000047 return BE->getSrc()->getTerminator();
Ted Kremenek61f3e052008-04-03 04:42:52 +000048
Ted Kremenekb697b102009-02-23 22:44:26 +000049 return 0;
Ted Kremenek706e3cf2008-04-07 23:35:17 +000050}
51
Ted Kremenek3148eb42009-01-24 00:55:43 +000052static inline const ExplodedNode<GRState>*
Ted Kremenekb697b102009-02-23 22:44:26 +000053GetPredecessorNode(const ExplodedNode<GRState>* N) {
Ted Kremenekbd7efa82008-04-17 23:44:37 +000054 return N->pred_empty() ? NULL : *(N->pred_begin());
55}
Ted Kremenek2673c9f2008-04-25 19:01:27 +000056
Ted Kremenekb697b102009-02-23 22:44:26 +000057static inline const ExplodedNode<GRState>*
58GetSuccessorNode(const ExplodedNode<GRState>* N) {
59 return N->succ_empty() ? NULL : *(N->succ_begin());
Ted Kremenekbd7efa82008-04-17 23:44:37 +000060}
61
Ted Kremenekb697b102009-02-23 22:44:26 +000062static Stmt* GetPreviousStmt(const ExplodedNode<GRState>* N) {
63 for (N = GetPredecessorNode(N); N; N = GetPredecessorNode(N))
64 if (Stmt *S = GetStmt(N->getLocation()))
65 return S;
66
67 return 0;
Ted Kremenek3148eb42009-01-24 00:55:43 +000068}
69
Ted Kremenekb697b102009-02-23 22:44:26 +000070static Stmt* GetNextStmt(const ExplodedNode<GRState>* N) {
71 for (N = GetSuccessorNode(N); N; N = GetSuccessorNode(N))
Ted Kremenekf5ab8e62009-03-28 17:33:57 +000072 if (Stmt *S = GetStmt(N->getLocation())) {
73 // Check if the statement is '?' or '&&'/'||'. These are "merges",
74 // not actual statement points.
75 switch (S->getStmtClass()) {
76 case Stmt::ChooseExprClass:
77 case Stmt::ConditionalOperatorClass: continue;
78 case Stmt::BinaryOperatorClass: {
79 BinaryOperator::Opcode Op = cast<BinaryOperator>(S)->getOpcode();
80 if (Op == BinaryOperator::LAnd || Op == BinaryOperator::LOr)
81 continue;
82 break;
83 }
84 default:
85 break;
86 }
Ted Kremenekb697b102009-02-23 22:44:26 +000087 return S;
Ted Kremenekf5ab8e62009-03-28 17:33:57 +000088 }
Ted Kremenekb697b102009-02-23 22:44:26 +000089
90 return 0;
91}
92
93static inline Stmt* GetCurrentOrPreviousStmt(const ExplodedNode<GRState>* N) {
94 if (Stmt *S = GetStmt(N->getLocation()))
95 return S;
96
97 return GetPreviousStmt(N);
98}
99
100static inline Stmt* GetCurrentOrNextStmt(const ExplodedNode<GRState>* N) {
101 if (Stmt *S = GetStmt(N->getLocation()))
102 return S;
103
104 return GetNextStmt(N);
105}
106
107//===----------------------------------------------------------------------===//
Ted Kremenek31061982009-03-31 23:00:32 +0000108// PathDiagnosticBuilder and its associated routines and helper objects.
Ted Kremenekb697b102009-02-23 22:44:26 +0000109//===----------------------------------------------------------------------===//
Ted Kremenekb479dad2009-02-23 23:13:51 +0000110
Ted Kremenek7dc86642009-03-31 20:22:36 +0000111typedef llvm::DenseMap<const ExplodedNode<GRState>*,
112const ExplodedNode<GRState>*> NodeBackMap;
113
Ted Kremenekbabdd7b2009-03-27 05:06:10 +0000114namespace {
Ted Kremenek7dc86642009-03-31 20:22:36 +0000115class VISIBILITY_HIDDEN NodeMapClosure : public BugReport::NodeResolver {
116 NodeBackMap& M;
117public:
118 NodeMapClosure(NodeBackMap *m) : M(*m) {}
119 ~NodeMapClosure() {}
120
121 const ExplodedNode<GRState>* getOriginalNode(const ExplodedNode<GRState>* N) {
122 NodeBackMap::iterator I = M.find(N);
123 return I == M.end() ? 0 : I->second;
124 }
125};
126
Ted Kremenek8966bc12009-05-06 21:39:49 +0000127class VISIBILITY_HIDDEN PathDiagnosticBuilder : public BugReporterContext {
Ted Kremenek7dc86642009-03-31 20:22:36 +0000128 BugReport *R;
Ted Kremenekbabdd7b2009-03-27 05:06:10 +0000129 PathDiagnosticClient *PDC;
Ted Kremenek00605e02009-03-27 20:55:39 +0000130 llvm::OwningPtr<ParentMap> PM;
Ted Kremenek7dc86642009-03-31 20:22:36 +0000131 NodeMapClosure NMC;
Ted Kremenekbabdd7b2009-03-27 05:06:10 +0000132public:
Ted Kremenek8966bc12009-05-06 21:39:49 +0000133 PathDiagnosticBuilder(GRBugReporter &br,
Ted Kremenek7dc86642009-03-31 20:22:36 +0000134 BugReport *r, NodeBackMap *Backmap,
Ted Kremenek8966bc12009-05-06 21:39:49 +0000135 PathDiagnosticClient *pdc)
136 : BugReporterContext(br),
137 R(r), PDC(pdc), NMC(Backmap)
138 {
139 addVisitor(R);
140 }
Ted Kremenekbabdd7b2009-03-27 05:06:10 +0000141
Ted Kremenek00605e02009-03-27 20:55:39 +0000142 PathDiagnosticLocation ExecutionContinues(const ExplodedNode<GRState>* N);
Ted Kremenekbabdd7b2009-03-27 05:06:10 +0000143
Ted Kremenek00605e02009-03-27 20:55:39 +0000144 PathDiagnosticLocation ExecutionContinues(llvm::raw_string_ostream& os,
145 const ExplodedNode<GRState>* N);
146
147 ParentMap& getParentMap() {
Ted Kremenek8966bc12009-05-06 21:39:49 +0000148 if (PM.get() == 0)
149 PM.reset(new ParentMap(getCodeDecl().getBody(getASTContext())));
Ted Kremenek00605e02009-03-27 20:55:39 +0000150 return *PM.get();
151 }
Ted Kremenekbabdd7b2009-03-27 05:06:10 +0000152
Ted Kremenekc3f83ad2009-04-01 17:18:21 +0000153 const Stmt *getParent(const Stmt *S) {
154 return getParentMap().getParent(S);
155 }
Ted Kremenek8966bc12009-05-06 21:39:49 +0000156
157 virtual NodeMapClosure& getNodeResolver() { return NMC; }
Ted Kremenek7dc86642009-03-31 20:22:36 +0000158 BugReport& getReport() { return *R; }
Douglas Gregor72971342009-04-18 00:02:19 +0000159
Ted Kremenekd8c938b2009-03-27 21:16:25 +0000160 PathDiagnosticLocation getEnclosingStmtLocation(const Stmt *S);
161
Ted Kremenek5fb5dfb2009-04-01 06:13:56 +0000162 PathDiagnosticLocation
163 getEnclosingStmtLocation(const PathDiagnosticLocation &L) {
164 if (const Stmt *S = L.asStmt())
165 return getEnclosingStmtLocation(S);
166
167 return L;
168 }
169
Ted Kremenek7dc86642009-03-31 20:22:36 +0000170 PathDiagnosticClient::PathGenerationScheme getGenerationScheme() const {
171 return PDC ? PDC->getGenerationScheme() : PathDiagnosticClient::Extensive;
172 }
173
Ted Kremenekbabdd7b2009-03-27 05:06:10 +0000174 bool supportsLogicalOpControlFlow() const {
175 return PDC ? PDC->supportsLogicalOpControlFlow() : true;
176 }
177};
178} // end anonymous namespace
179
Ted Kremenek00605e02009-03-27 20:55:39 +0000180PathDiagnosticLocation
181PathDiagnosticBuilder::ExecutionContinues(const ExplodedNode<GRState>* N) {
182 if (Stmt *S = GetNextStmt(N))
Ted Kremenek8966bc12009-05-06 21:39:49 +0000183 return PathDiagnosticLocation(S, getSourceManager());
Ted Kremenek00605e02009-03-27 20:55:39 +0000184
Ted Kremenek8966bc12009-05-06 21:39:49 +0000185 return FullSourceLoc(getCodeDecl().getBodyRBrace(getASTContext()),
186 getSourceManager());
Ted Kremenek082cb8d2009-03-12 18:41:53 +0000187}
188
Ted Kremenek00605e02009-03-27 20:55:39 +0000189PathDiagnosticLocation
Ted Kremenekbabdd7b2009-03-27 05:06:10 +0000190PathDiagnosticBuilder::ExecutionContinues(llvm::raw_string_ostream& os,
191 const ExplodedNode<GRState>* N) {
192
Ted Kremenek143ca222008-05-06 18:11:09 +0000193 // Slow, but probably doesn't matter.
Ted Kremenekb697b102009-02-23 22:44:26 +0000194 if (os.str().empty())
195 os << ' ';
Ted Kremenek143ca222008-05-06 18:11:09 +0000196
Ted Kremenek00605e02009-03-27 20:55:39 +0000197 const PathDiagnosticLocation &Loc = ExecutionContinues(N);
Ted Kremenek082cb8d2009-03-12 18:41:53 +0000198
Ted Kremenek00605e02009-03-27 20:55:39 +0000199 if (Loc.asStmt())
Ted Kremenekb697b102009-02-23 22:44:26 +0000200 os << "Execution continues on line "
Ted Kremenek8966bc12009-05-06 21:39:49 +0000201 << getSourceManager().getInstantiationLineNumber(Loc.asLocation())
202 << '.';
Ted Kremenekb697b102009-02-23 22:44:26 +0000203 else
Ted Kremenekb479dad2009-02-23 23:13:51 +0000204 os << "Execution jumps to the end of the "
Ted Kremenek8966bc12009-05-06 21:39:49 +0000205 << (isa<ObjCMethodDecl>(getCodeDecl()) ? "method" : "function") << '.';
Ted Kremenek082cb8d2009-03-12 18:41:53 +0000206
207 return Loc;
Ted Kremenek143ca222008-05-06 18:11:09 +0000208}
209
Ted Kremenekd8c938b2009-03-27 21:16:25 +0000210PathDiagnosticLocation
211PathDiagnosticBuilder::getEnclosingStmtLocation(const Stmt *S) {
212 assert(S && "Null Stmt* passed to getEnclosingStmtLocation");
Ted Kremenekc42e07e2009-05-05 22:19:17 +0000213 ParentMap &P = getParentMap();
Ted Kremenek8966bc12009-05-06 21:39:49 +0000214 SourceManager &SMgr = getSourceManager();
Ted Kremeneke88a1702009-05-11 22:19:32 +0000215
Ted Kremenekc42e07e2009-05-05 22:19:17 +0000216 while (isa<Expr>(S) && P.isConsumedExpr(cast<Expr>(S))) {
Ted Kremenek8c8b0ad2009-05-11 19:50:47 +0000217 const Stmt *Parent = P.getParentIgnoreParens(S);
Ted Kremenekd8c938b2009-03-27 21:16:25 +0000218
Ted Kremenekaf3e3d52009-03-28 03:37:59 +0000219 if (!Parent)
220 break;
Ted Kremenekd8c938b2009-03-27 21:16:25 +0000221
Ted Kremenekaf3e3d52009-03-28 03:37:59 +0000222 switch (Parent->getStmtClass()) {
Ted Kremenek5fb5dfb2009-04-01 06:13:56 +0000223 case Stmt::BinaryOperatorClass: {
224 const BinaryOperator *B = cast<BinaryOperator>(Parent);
225 if (B->isLogicalOp())
226 return PathDiagnosticLocation(S, SMgr);
227 break;
Ted Kremenek8c8b0ad2009-05-11 19:50:47 +0000228 }
Ted Kremenekaf3e3d52009-03-28 03:37:59 +0000229 case Stmt::CompoundStmtClass:
230 case Stmt::StmtExprClass:
Ted Kremenek1d9a23a2009-03-28 04:08:14 +0000231 return PathDiagnosticLocation(S, SMgr);
232 case Stmt::ChooseExprClass:
233 // Similar to '?' if we are referring to condition, just have the edge
234 // point to the entire choose expression.
235 if (cast<ChooseExpr>(Parent)->getCond() == S)
236 return PathDiagnosticLocation(Parent, SMgr);
237 else
238 return PathDiagnosticLocation(S, SMgr);
239 case Stmt::ConditionalOperatorClass:
240 // For '?', if we are referring to condition, just have the edge point
241 // to the entire '?' expression.
242 if (cast<ConditionalOperator>(Parent)->getCond() == S)
243 return PathDiagnosticLocation(Parent, SMgr);
244 else
245 return PathDiagnosticLocation(S, SMgr);
Ted Kremenekaf3e3d52009-03-28 03:37:59 +0000246 case Stmt::DoStmtClass:
Ted Kremenekaf3e3d52009-03-28 03:37:59 +0000247 return PathDiagnosticLocation(S, SMgr);
Ted Kremenekaf3e3d52009-03-28 03:37:59 +0000248 case Stmt::ForStmtClass:
249 if (cast<ForStmt>(Parent)->getBody() == S)
250 return PathDiagnosticLocation(S, SMgr);
251 break;
252 case Stmt::IfStmtClass:
253 if (cast<IfStmt>(Parent)->getCond() != S)
254 return PathDiagnosticLocation(S, SMgr);
Ted Kremenek8bd4d032009-04-28 04:23:15 +0000255 break;
Ted Kremenekaf3e3d52009-03-28 03:37:59 +0000256 case Stmt::ObjCForCollectionStmtClass:
257 if (cast<ObjCForCollectionStmt>(Parent)->getBody() == S)
258 return PathDiagnosticLocation(S, SMgr);
259 break;
260 case Stmt::WhileStmtClass:
261 if (cast<WhileStmt>(Parent)->getCond() != S)
262 return PathDiagnosticLocation(S, SMgr);
263 break;
264 default:
265 break;
266 }
267
Ted Kremenekd8c938b2009-03-27 21:16:25 +0000268 S = Parent;
269 }
270
271 assert(S && "Cannot have null Stmt for PathDiagnosticLocation");
Ted Kremeneke88a1702009-05-11 22:19:32 +0000272
273 // Special case: DeclStmts can appear in for statement declarations, in which
274 // case the ForStmt is the context.
275 if (isa<DeclStmt>(S)) {
276 if (const Stmt *Parent = P.getParent(S)) {
277 switch (Parent->getStmtClass()) {
278 case Stmt::ForStmtClass:
279 case Stmt::ObjCForCollectionStmtClass:
280 return PathDiagnosticLocation(Parent, SMgr);
281 default:
282 break;
283 }
284 }
285 }
286 else if (isa<BinaryOperator>(S)) {
287 // Special case: the binary operator represents the initialization
288 // code in a for statement (this can happen when the variable being
289 // initialized is an old variable.
290 if (const ForStmt *FS =
291 dyn_cast_or_null<ForStmt>(P.getParentIgnoreParens(S))) {
292 if (FS->getInit() == S)
293 return PathDiagnosticLocation(FS, SMgr);
294 }
295 }
296
Ted Kremenekd8c938b2009-03-27 21:16:25 +0000297 return PathDiagnosticLocation(S, SMgr);
298}
299
Ted Kremenekcf118d42009-02-04 23:49:09 +0000300//===----------------------------------------------------------------------===//
Ted Kremenek31061982009-03-31 23:00:32 +0000301// ScanNotableSymbols: closure-like callback for scanning Store bindings.
302//===----------------------------------------------------------------------===//
303
304static const VarDecl*
305GetMostRecentVarDeclBinding(const ExplodedNode<GRState>* N,
306 GRStateManager& VMgr, SVal X) {
307
308 for ( ; N ; N = N->pred_empty() ? 0 : *N->pred_begin()) {
309
310 ProgramPoint P = N->getLocation();
311
312 if (!isa<PostStmt>(P))
313 continue;
314
315 DeclRefExpr* DR = dyn_cast<DeclRefExpr>(cast<PostStmt>(P).getStmt());
316
317 if (!DR)
318 continue;
319
320 SVal Y = VMgr.GetSVal(N->getState(), DR);
321
322 if (X != Y)
323 continue;
324
325 VarDecl* VD = dyn_cast<VarDecl>(DR->getDecl());
326
327 if (!VD)
328 continue;
329
330 return VD;
331 }
332
333 return 0;
334}
335
336namespace {
337class VISIBILITY_HIDDEN NotableSymbolHandler
338: public StoreManager::BindingsHandler {
339
340 SymbolRef Sym;
341 const GRState* PrevSt;
342 const Stmt* S;
343 GRStateManager& VMgr;
344 const ExplodedNode<GRState>* Pred;
345 PathDiagnostic& PD;
346 BugReporter& BR;
347
348public:
349
350 NotableSymbolHandler(SymbolRef sym, const GRState* prevst, const Stmt* s,
351 GRStateManager& vmgr, const ExplodedNode<GRState>* pred,
352 PathDiagnostic& pd, BugReporter& br)
353 : Sym(sym), PrevSt(prevst), S(s), VMgr(vmgr), Pred(pred), PD(pd), BR(br) {}
354
355 bool HandleBinding(StoreManager& SMgr, Store store, const MemRegion* R,
356 SVal V) {
357
358 SymbolRef ScanSym = V.getAsSymbol();
359
360 if (ScanSym != Sym)
361 return true;
362
363 // Check if the previous state has this binding.
364 SVal X = VMgr.GetSVal(PrevSt, loc::MemRegionVal(R));
365
366 if (X == V) // Same binding?
367 return true;
368
369 // Different binding. Only handle assignments for now. We don't pull
370 // this check out of the loop because we will eventually handle other
371 // cases.
372
373 VarDecl *VD = 0;
374
375 if (const BinaryOperator* B = dyn_cast<BinaryOperator>(S)) {
376 if (!B->isAssignmentOp())
377 return true;
378
379 // What variable did we assign to?
380 DeclRefExpr* DR = dyn_cast<DeclRefExpr>(B->getLHS()->IgnoreParenCasts());
381
382 if (!DR)
383 return true;
384
385 VD = dyn_cast<VarDecl>(DR->getDecl());
386 }
387 else if (const DeclStmt* DS = dyn_cast<DeclStmt>(S)) {
388 // FIXME: Eventually CFGs won't have DeclStmts. Right now we
389 // assume that each DeclStmt has a single Decl. This invariant
390 // holds by contruction in the CFG.
391 VD = dyn_cast<VarDecl>(*DS->decl_begin());
392 }
393
394 if (!VD)
395 return true;
396
397 // What is the most recently referenced variable with this binding?
398 const VarDecl* MostRecent = GetMostRecentVarDeclBinding(Pred, VMgr, V);
399
400 if (!MostRecent)
401 return true;
402
403 // Create the diagnostic.
404 FullSourceLoc L(S->getLocStart(), BR.getSourceManager());
405
406 if (Loc::IsLocType(VD->getType())) {
407 std::string msg = "'" + std::string(VD->getNameAsString()) +
408 "' now aliases '" + MostRecent->getNameAsString() + "'";
409
410 PD.push_front(new PathDiagnosticEventPiece(L, msg));
411 }
412
413 return true;
414 }
415};
416}
417
418static void HandleNotableSymbol(const ExplodedNode<GRState>* N,
419 const Stmt* S,
420 SymbolRef Sym, BugReporter& BR,
421 PathDiagnostic& PD) {
422
423 const ExplodedNode<GRState>* Pred = N->pred_empty() ? 0 : *N->pred_begin();
424 const GRState* PrevSt = Pred ? Pred->getState() : 0;
425
426 if (!PrevSt)
427 return;
428
429 // Look at the region bindings of the current state that map to the
430 // specified symbol. Are any of them not in the previous state?
431 GRStateManager& VMgr = cast<GRBugReporter>(BR).getStateManager();
432 NotableSymbolHandler H(Sym, PrevSt, S, VMgr, Pred, PD, BR);
433 cast<GRBugReporter>(BR).getStateManager().iterBindings(N->getState(), H);
434}
435
436namespace {
437class VISIBILITY_HIDDEN ScanNotableSymbols
438: public StoreManager::BindingsHandler {
439
440 llvm::SmallSet<SymbolRef, 10> AlreadyProcessed;
441 const ExplodedNode<GRState>* N;
442 Stmt* S;
443 GRBugReporter& BR;
444 PathDiagnostic& PD;
445
446public:
447 ScanNotableSymbols(const ExplodedNode<GRState>* n, Stmt* s, GRBugReporter& br,
448 PathDiagnostic& pd)
449 : N(n), S(s), BR(br), PD(pd) {}
450
451 bool HandleBinding(StoreManager& SMgr, Store store,
452 const MemRegion* R, SVal V) {
453
454 SymbolRef ScanSym = V.getAsSymbol();
455
456 if (!ScanSym)
457 return true;
458
459 if (!BR.isNotable(ScanSym))
460 return true;
461
462 if (AlreadyProcessed.count(ScanSym))
463 return true;
464
465 AlreadyProcessed.insert(ScanSym);
466
467 HandleNotableSymbol(N, S, ScanSym, BR, PD);
468 return true;
469 }
470};
471} // end anonymous namespace
472
473//===----------------------------------------------------------------------===//
474// "Minimal" path diagnostic generation algorithm.
475//===----------------------------------------------------------------------===//
476
Ted Kremenek14856d72009-04-06 23:06:54 +0000477static void CompactPathDiagnostic(PathDiagnostic &PD, const SourceManager& SM);
478
Ted Kremenek31061982009-03-31 23:00:32 +0000479static void GenerateMinimalPathDiagnostic(PathDiagnostic& PD,
480 PathDiagnosticBuilder &PDB,
481 const ExplodedNode<GRState> *N) {
Ted Kremenek8966bc12009-05-06 21:39:49 +0000482
Ted Kremenek31061982009-03-31 23:00:32 +0000483 SourceManager& SMgr = PDB.getSourceManager();
484 const ExplodedNode<GRState>* NextNode = N->pred_empty()
485 ? NULL : *(N->pred_begin());
486 while (NextNode) {
487 N = NextNode;
488 NextNode = GetPredecessorNode(N);
489
490 ProgramPoint P = N->getLocation();
491
492 if (const BlockEdge* BE = dyn_cast<BlockEdge>(&P)) {
493 CFGBlock* Src = BE->getSrc();
494 CFGBlock* Dst = BE->getDst();
495 Stmt* T = Src->getTerminator();
496
497 if (!T)
498 continue;
499
500 FullSourceLoc Start(T->getLocStart(), SMgr);
501
502 switch (T->getStmtClass()) {
503 default:
504 break;
505
506 case Stmt::GotoStmtClass:
507 case Stmt::IndirectGotoStmtClass: {
508 Stmt* S = GetNextStmt(N);
509
510 if (!S)
511 continue;
512
513 std::string sbuf;
514 llvm::raw_string_ostream os(sbuf);
515 const PathDiagnosticLocation &End = PDB.getEnclosingStmtLocation(S);
516
517 os << "Control jumps to line "
518 << End.asLocation().getInstantiationLineNumber();
519 PD.push_front(new PathDiagnosticControlFlowPiece(Start, End,
520 os.str()));
521 break;
522 }
523
524 case Stmt::SwitchStmtClass: {
525 // Figure out what case arm we took.
526 std::string sbuf;
527 llvm::raw_string_ostream os(sbuf);
528
529 if (Stmt* S = Dst->getLabel()) {
530 PathDiagnosticLocation End(S, SMgr);
531
532 switch (S->getStmtClass()) {
533 default:
534 os << "No cases match in the switch statement. "
535 "Control jumps to line "
536 << End.asLocation().getInstantiationLineNumber();
537 break;
538 case Stmt::DefaultStmtClass:
539 os << "Control jumps to the 'default' case at line "
540 << End.asLocation().getInstantiationLineNumber();
541 break;
542
543 case Stmt::CaseStmtClass: {
544 os << "Control jumps to 'case ";
545 CaseStmt* Case = cast<CaseStmt>(S);
546 Expr* LHS = Case->getLHS()->IgnoreParenCasts();
547
548 // Determine if it is an enum.
549 bool GetRawInt = true;
550
551 if (DeclRefExpr* DR = dyn_cast<DeclRefExpr>(LHS)) {
552 // FIXME: Maybe this should be an assertion. Are there cases
553 // were it is not an EnumConstantDecl?
554 EnumConstantDecl* D =
555 dyn_cast<EnumConstantDecl>(DR->getDecl());
556
557 if (D) {
558 GetRawInt = false;
559 os << D->getNameAsString();
560 }
561 }
Eli Friedman9ec64d62009-04-26 19:04:51 +0000562
563 if (GetRawInt)
Ted Kremenek8966bc12009-05-06 21:39:49 +0000564 os << LHS->EvaluateAsInt(PDB.getASTContext());
Eli Friedman9ec64d62009-04-26 19:04:51 +0000565
Ted Kremenek31061982009-03-31 23:00:32 +0000566 os << ":' at line "
567 << End.asLocation().getInstantiationLineNumber();
568 break;
569 }
570 }
571 PD.push_front(new PathDiagnosticControlFlowPiece(Start, End,
572 os.str()));
573 }
574 else {
575 os << "'Default' branch taken. ";
576 const PathDiagnosticLocation &End = PDB.ExecutionContinues(os, N);
577 PD.push_front(new PathDiagnosticControlFlowPiece(Start, End,
578 os.str()));
579 }
580
581 break;
582 }
583
584 case Stmt::BreakStmtClass:
585 case Stmt::ContinueStmtClass: {
586 std::string sbuf;
587 llvm::raw_string_ostream os(sbuf);
588 PathDiagnosticLocation End = PDB.ExecutionContinues(os, N);
589 PD.push_front(new PathDiagnosticControlFlowPiece(Start, End,
590 os.str()));
591 break;
592 }
593
594 // Determine control-flow for ternary '?'.
595 case Stmt::ConditionalOperatorClass: {
596 std::string sbuf;
597 llvm::raw_string_ostream os(sbuf);
598 os << "'?' condition is ";
599
600 if (*(Src->succ_begin()+1) == Dst)
601 os << "false";
602 else
603 os << "true";
604
605 PathDiagnosticLocation End = PDB.ExecutionContinues(N);
606
607 if (const Stmt *S = End.asStmt())
608 End = PDB.getEnclosingStmtLocation(S);
609
610 PD.push_front(new PathDiagnosticControlFlowPiece(Start, End,
611 os.str()));
612 break;
613 }
614
615 // Determine control-flow for short-circuited '&&' and '||'.
616 case Stmt::BinaryOperatorClass: {
617 if (!PDB.supportsLogicalOpControlFlow())
618 break;
619
620 BinaryOperator *B = cast<BinaryOperator>(T);
621 std::string sbuf;
622 llvm::raw_string_ostream os(sbuf);
623 os << "Left side of '";
624
625 if (B->getOpcode() == BinaryOperator::LAnd) {
626 os << "&&" << "' is ";
627
628 if (*(Src->succ_begin()+1) == Dst) {
629 os << "false";
630 PathDiagnosticLocation End(B->getLHS(), SMgr);
631 PathDiagnosticLocation Start(B->getOperatorLoc(), SMgr);
632 PD.push_front(new PathDiagnosticControlFlowPiece(Start, End,
633 os.str()));
634 }
635 else {
636 os << "true";
637 PathDiagnosticLocation Start(B->getLHS(), SMgr);
638 PathDiagnosticLocation End = PDB.ExecutionContinues(N);
639 PD.push_front(new PathDiagnosticControlFlowPiece(Start, End,
640 os.str()));
641 }
642 }
643 else {
644 assert(B->getOpcode() == BinaryOperator::LOr);
645 os << "||" << "' is ";
646
647 if (*(Src->succ_begin()+1) == Dst) {
648 os << "false";
649 PathDiagnosticLocation Start(B->getLHS(), SMgr);
650 PathDiagnosticLocation End = PDB.ExecutionContinues(N);
651 PD.push_front(new PathDiagnosticControlFlowPiece(Start, End,
652 os.str()));
653 }
654 else {
655 os << "true";
656 PathDiagnosticLocation End(B->getLHS(), SMgr);
657 PathDiagnosticLocation Start(B->getOperatorLoc(), SMgr);
658 PD.push_front(new PathDiagnosticControlFlowPiece(Start, End,
659 os.str()));
660 }
661 }
662
663 break;
664 }
665
666 case Stmt::DoStmtClass: {
667 if (*(Src->succ_begin()) == Dst) {
668 std::string sbuf;
669 llvm::raw_string_ostream os(sbuf);
670
671 os << "Loop condition is true. ";
672 PathDiagnosticLocation End = PDB.ExecutionContinues(os, N);
673
674 if (const Stmt *S = End.asStmt())
675 End = PDB.getEnclosingStmtLocation(S);
676
677 PD.push_front(new PathDiagnosticControlFlowPiece(Start, End,
678 os.str()));
679 }
680 else {
681 PathDiagnosticLocation End = PDB.ExecutionContinues(N);
682
683 if (const Stmt *S = End.asStmt())
684 End = PDB.getEnclosingStmtLocation(S);
685
686 PD.push_front(new PathDiagnosticControlFlowPiece(Start, End,
687 "Loop condition is false. Exiting loop"));
688 }
689
690 break;
691 }
692
693 case Stmt::WhileStmtClass:
694 case Stmt::ForStmtClass: {
695 if (*(Src->succ_begin()+1) == Dst) {
696 std::string sbuf;
697 llvm::raw_string_ostream os(sbuf);
698
699 os << "Loop condition is false. ";
700 PathDiagnosticLocation End = PDB.ExecutionContinues(os, N);
701 if (const Stmt *S = End.asStmt())
702 End = PDB.getEnclosingStmtLocation(S);
703
704 PD.push_front(new PathDiagnosticControlFlowPiece(Start, End,
705 os.str()));
706 }
707 else {
708 PathDiagnosticLocation End = PDB.ExecutionContinues(N);
709 if (const Stmt *S = End.asStmt())
710 End = PDB.getEnclosingStmtLocation(S);
711
712 PD.push_front(new PathDiagnosticControlFlowPiece(Start, End,
Ted Kremenek5fb5dfb2009-04-01 06:13:56 +0000713 "Loop condition is true. Entering loop body"));
Ted Kremenek31061982009-03-31 23:00:32 +0000714 }
715
716 break;
717 }
718
719 case Stmt::IfStmtClass: {
720 PathDiagnosticLocation End = PDB.ExecutionContinues(N);
721
722 if (const Stmt *S = End.asStmt())
723 End = PDB.getEnclosingStmtLocation(S);
724
725 if (*(Src->succ_begin()+1) == Dst)
726 PD.push_front(new PathDiagnosticControlFlowPiece(Start, End,
Ted Kremenek5fb5dfb2009-04-01 06:13:56 +0000727 "Taking false branch"));
Ted Kremenek31061982009-03-31 23:00:32 +0000728 else
729 PD.push_front(new PathDiagnosticControlFlowPiece(Start, End,
Ted Kremenek5fb5dfb2009-04-01 06:13:56 +0000730 "Taking true branch"));
Ted Kremenek31061982009-03-31 23:00:32 +0000731
732 break;
733 }
734 }
735 }
736
Ted Kremenekdd986cc2009-05-07 00:45:33 +0000737 if (NextNode) {
738 for (BugReporterContext::visitor_iterator I = PDB.visitor_begin(),
739 E = PDB.visitor_end(); I!=E; ++I) {
740 if (PathDiagnosticPiece* p = (*I)->VisitNode(N, NextNode, PDB))
741 PD.push_front(p);
742 }
Ted Kremenek8966bc12009-05-06 21:39:49 +0000743 }
Ted Kremenek31061982009-03-31 23:00:32 +0000744
745 if (const PostStmt* PS = dyn_cast<PostStmt>(&P)) {
746 // Scan the region bindings, and see if a "notable" symbol has a new
747 // lval binding.
748 ScanNotableSymbols SNS(N, PS->getStmt(), PDB.getBugReporter(), PD);
749 PDB.getStateManager().iterBindings(N->getState(), SNS);
750 }
751 }
Ted Kremenek14856d72009-04-06 23:06:54 +0000752
753 // After constructing the full PathDiagnostic, do a pass over it to compact
754 // PathDiagnosticPieces that occur within a macro.
755 CompactPathDiagnostic(PD, PDB.getSourceManager());
Ted Kremenek31061982009-03-31 23:00:32 +0000756}
757
758//===----------------------------------------------------------------------===//
Ted Kremenek5fb5dfb2009-04-01 06:13:56 +0000759// "Extensive" PathDiagnostic generation.
760//===----------------------------------------------------------------------===//
761
762static bool IsControlFlowExpr(const Stmt *S) {
763 const Expr *E = dyn_cast<Expr>(S);
Ted Kremenek14856d72009-04-06 23:06:54 +0000764
Ted Kremenek5fb5dfb2009-04-01 06:13:56 +0000765 if (!E)
766 return false;
767
768 E = E->IgnoreParenCasts();
769
770 if (isa<ConditionalOperator>(E))
771 return true;
772
773 if (const BinaryOperator *B = dyn_cast<BinaryOperator>(E))
774 if (B->isLogicalOp())
775 return true;
776
777 return false;
778}
779
Ted Kremenek14856d72009-04-06 23:06:54 +0000780namespace {
Ted Kremenek8f9b1b32009-05-01 16:08:09 +0000781class VISIBILITY_HIDDEN ContextLocation : public PathDiagnosticLocation {
782 bool IsDead;
783public:
784 ContextLocation(const PathDiagnosticLocation &L, bool isdead = false)
785 : PathDiagnosticLocation(L), IsDead(isdead) {}
786
787 void markDead() { IsDead = true; }
788 bool isDead() const { return IsDead; }
789};
790
Ted Kremenek14856d72009-04-06 23:06:54 +0000791class VISIBILITY_HIDDEN EdgeBuilder {
Ted Kremenek8f9b1b32009-05-01 16:08:09 +0000792 std::vector<ContextLocation> CLocs;
793 typedef std::vector<ContextLocation>::iterator iterator;
Ted Kremenek14856d72009-04-06 23:06:54 +0000794 PathDiagnostic &PD;
795 PathDiagnosticBuilder &PDB;
796 PathDiagnosticLocation PrevLoc;
Ted Kremenek8f9b1b32009-05-01 16:08:09 +0000797
798 bool IsConsumedExpr(const PathDiagnosticLocation &L);
799
Ted Kremenek14856d72009-04-06 23:06:54 +0000800 bool containsLocation(const PathDiagnosticLocation &Container,
801 const PathDiagnosticLocation &Containee);
802
803 PathDiagnosticLocation getContextLocation(const PathDiagnosticLocation &L);
Ted Kremenek14856d72009-04-06 23:06:54 +0000804
Ted Kremenek9650cf32009-05-11 21:42:34 +0000805 PathDiagnosticLocation cleanUpLocation(PathDiagnosticLocation L,
806 bool firstCharOnly = false) {
Ted Kremenek8c8b0ad2009-05-11 19:50:47 +0000807 if (const Stmt *S = L.asStmt()) {
Ted Kremenek9650cf32009-05-11 21:42:34 +0000808 const Stmt *Original = S;
Ted Kremenek8c8b0ad2009-05-11 19:50:47 +0000809 while (1) {
810 // Adjust the location for some expressions that are best referenced
811 // by one of their subexpressions.
Ted Kremenek9650cf32009-05-11 21:42:34 +0000812 switch (S->getStmtClass()) {
813 default:
814 break;
815 case Stmt::ParenExprClass:
816 S = cast<ParenExpr>(S)->IgnoreParens();
817 firstCharOnly = true;
818 continue;
819 case Stmt::ConditionalOperatorClass:
820 S = cast<ConditionalOperator>(S)->getCond();
821 firstCharOnly = true;
822 continue;
823 case Stmt::ChooseExprClass:
824 S = cast<ChooseExpr>(S)->getCond();
825 firstCharOnly = true;
826 continue;
827 case Stmt::BinaryOperatorClass:
828 S = cast<BinaryOperator>(S)->getLHS();
829 firstCharOnly = true;
830 continue;
831 }
832
833 break;
Ted Kremenek8c8b0ad2009-05-11 19:50:47 +0000834 }
835
Ted Kremenek9650cf32009-05-11 21:42:34 +0000836 if (S != Original)
837 L = PathDiagnosticLocation(S, L.getManager());
Ted Kremenek8c8b0ad2009-05-11 19:50:47 +0000838 }
839
Ted Kremenek9650cf32009-05-11 21:42:34 +0000840 if (firstCharOnly)
841 L = PathDiagnosticLocation(L.asLocation());
842
Ted Kremenek8c8b0ad2009-05-11 19:50:47 +0000843 return L;
844 }
845
Ted Kremenek14856d72009-04-06 23:06:54 +0000846 void popLocation() {
Ted Kremenek8f9b1b32009-05-01 16:08:09 +0000847 if (!CLocs.back().isDead() && CLocs.back().asLocation().isFileID()) {
Ted Kremenek5c7168c2009-04-22 20:36:26 +0000848 // For contexts, we only one the first character as the range.
Ted Kremenek9650cf32009-05-11 21:42:34 +0000849 rawAddEdge( cleanUpLocation(CLocs.back(), true));
Ted Kremenek5c7168c2009-04-22 20:36:26 +0000850 }
Ted Kremenek14856d72009-04-06 23:06:54 +0000851 CLocs.pop_back();
852 }
853
854 PathDiagnosticLocation IgnoreParens(const PathDiagnosticLocation &L);
855
856public:
857 EdgeBuilder(PathDiagnostic &pd, PathDiagnosticBuilder &pdb)
858 : PD(pd), PDB(pdb) {
Ted Kremeneka301a672009-04-22 18:16:20 +0000859
860 // If the PathDiagnostic already has pieces, add the enclosing statement
861 // of the first piece as a context as well.
Ted Kremenek14856d72009-04-06 23:06:54 +0000862 if (!PD.empty()) {
863 PrevLoc = PD.begin()->getLocation();
864
865 if (const Stmt *S = PrevLoc.asStmt())
Ted Kremeneke1baed32009-05-05 23:13:38 +0000866 addExtendedContext(PDB.getEnclosingStmtLocation(S).asStmt());
Ted Kremenek14856d72009-04-06 23:06:54 +0000867 }
868 }
869
870 ~EdgeBuilder() {
871 while (!CLocs.empty()) popLocation();
Ted Kremeneka301a672009-04-22 18:16:20 +0000872
873 // Finally, add an initial edge from the start location of the first
874 // statement (if it doesn't already exist).
Sebastian Redld3a413d2009-04-26 20:35:05 +0000875 // FIXME: Should handle CXXTryStmt if analyser starts supporting C++.
876 if (const CompoundStmt *CS =
Ted Kremenek8966bc12009-05-06 21:39:49 +0000877 PDB.getCodeDecl().getCompoundBody(PDB.getASTContext()))
Ted Kremeneka301a672009-04-22 18:16:20 +0000878 if (!CS->body_empty()) {
879 SourceLocation Loc = (*CS->body_begin())->getLocStart();
880 rawAddEdge(PathDiagnosticLocation(Loc, PDB.getSourceManager()));
881 }
882
Ted Kremenek14856d72009-04-06 23:06:54 +0000883 }
884
885 void addEdge(PathDiagnosticLocation NewLoc, bool alwaysAdd = false);
886
887 void addEdge(const Stmt *S, bool alwaysAdd = false) {
888 addEdge(PathDiagnosticLocation(S, PDB.getSourceManager()), alwaysAdd);
889 }
890
Ted Kremenek8bd4d032009-04-28 04:23:15 +0000891 void rawAddEdge(PathDiagnosticLocation NewLoc);
892
Ted Kremenek14856d72009-04-06 23:06:54 +0000893 void addContext(const Stmt *S);
Ted Kremeneke1baed32009-05-05 23:13:38 +0000894 void addExtendedContext(const Stmt *S);
Ted Kremenek14856d72009-04-06 23:06:54 +0000895};
896} // end anonymous namespace
897
898
899PathDiagnosticLocation
900EdgeBuilder::getContextLocation(const PathDiagnosticLocation &L) {
901 if (const Stmt *S = L.asStmt()) {
902 if (IsControlFlowExpr(S))
903 return L;
904
905 return PDB.getEnclosingStmtLocation(S);
906 }
907
908 return L;
909}
910
911bool EdgeBuilder::containsLocation(const PathDiagnosticLocation &Container,
912 const PathDiagnosticLocation &Containee) {
913
914 if (Container == Containee)
915 return true;
916
917 if (Container.asDecl())
918 return true;
919
920 if (const Stmt *S = Containee.asStmt())
921 if (const Stmt *ContainerS = Container.asStmt()) {
922 while (S) {
923 if (S == ContainerS)
924 return true;
925 S = PDB.getParent(S);
926 }
927 return false;
928 }
929
930 // Less accurate: compare using source ranges.
931 SourceRange ContainerR = Container.asRange();
932 SourceRange ContaineeR = Containee.asRange();
933
934 SourceManager &SM = PDB.getSourceManager();
935 SourceLocation ContainerRBeg = SM.getInstantiationLoc(ContainerR.getBegin());
936 SourceLocation ContainerREnd = SM.getInstantiationLoc(ContainerR.getEnd());
937 SourceLocation ContaineeRBeg = SM.getInstantiationLoc(ContaineeR.getBegin());
938 SourceLocation ContaineeREnd = SM.getInstantiationLoc(ContaineeR.getEnd());
939
940 unsigned ContainerBegLine = SM.getInstantiationLineNumber(ContainerRBeg);
941 unsigned ContainerEndLine = SM.getInstantiationLineNumber(ContainerREnd);
942 unsigned ContaineeBegLine = SM.getInstantiationLineNumber(ContaineeRBeg);
943 unsigned ContaineeEndLine = SM.getInstantiationLineNumber(ContaineeREnd);
944
945 assert(ContainerBegLine <= ContainerEndLine);
946 assert(ContaineeBegLine <= ContaineeEndLine);
947
948 return (ContainerBegLine <= ContaineeBegLine &&
949 ContainerEndLine >= ContaineeEndLine &&
950 (ContainerBegLine != ContaineeBegLine ||
951 SM.getInstantiationColumnNumber(ContainerRBeg) <=
952 SM.getInstantiationColumnNumber(ContaineeRBeg)) &&
953 (ContainerEndLine != ContaineeEndLine ||
954 SM.getInstantiationColumnNumber(ContainerREnd) >=
955 SM.getInstantiationColumnNumber(ContainerREnd)));
956}
957
958PathDiagnosticLocation
959EdgeBuilder::IgnoreParens(const PathDiagnosticLocation &L) {
960 if (const Expr* E = dyn_cast_or_null<Expr>(L.asStmt()))
961 return PathDiagnosticLocation(E->IgnoreParenCasts(),
962 PDB.getSourceManager());
963 return L;
964}
965
966void EdgeBuilder::rawAddEdge(PathDiagnosticLocation NewLoc) {
967 if (!PrevLoc.isValid()) {
968 PrevLoc = NewLoc;
969 return;
970 }
971
Ted Kremenek8c8b0ad2009-05-11 19:50:47 +0000972 const PathDiagnosticLocation &NewLocClean = cleanUpLocation(NewLoc);
973 const PathDiagnosticLocation &PrevLocClean = cleanUpLocation(PrevLoc);
974
975 if (NewLocClean.asLocation() == PrevLocClean.asLocation())
Ted Kremenek14856d72009-04-06 23:06:54 +0000976 return;
977
978 // FIXME: Ignore intra-macro edges for now.
Ted Kremenek8c8b0ad2009-05-11 19:50:47 +0000979 if (NewLocClean.asLocation().getInstantiationLoc() ==
980 PrevLocClean.asLocation().getInstantiationLoc())
Ted Kremenek14856d72009-04-06 23:06:54 +0000981 return;
982
Ted Kremenek8c8b0ad2009-05-11 19:50:47 +0000983 PD.push_front(new PathDiagnosticControlFlowPiece(NewLocClean, PrevLocClean));
984 PrevLoc = NewLoc;
Ted Kremenek14856d72009-04-06 23:06:54 +0000985}
986
987void EdgeBuilder::addEdge(PathDiagnosticLocation NewLoc, bool alwaysAdd) {
Ted Kremeneka301a672009-04-22 18:16:20 +0000988
989 if (!alwaysAdd && NewLoc.asLocation().isMacroID())
990 return;
991
Ted Kremenek14856d72009-04-06 23:06:54 +0000992 const PathDiagnosticLocation &CLoc = getContextLocation(NewLoc);
993
994 while (!CLocs.empty()) {
Ted Kremenek8f9b1b32009-05-01 16:08:09 +0000995 ContextLocation &TopContextLoc = CLocs.back();
Ted Kremenek14856d72009-04-06 23:06:54 +0000996
997 // Is the top location context the same as the one for the new location?
998 if (TopContextLoc == CLoc) {
Ted Kremenek8f9b1b32009-05-01 16:08:09 +0000999 if (alwaysAdd) {
Ted Kremenek4c6f8d32009-05-04 18:15:17 +00001000 if (IsConsumedExpr(TopContextLoc) &&
1001 !IsControlFlowExpr(TopContextLoc.asStmt()))
Ted Kremenek8f9b1b32009-05-01 16:08:09 +00001002 TopContextLoc.markDead();
1003
Ted Kremenek14856d72009-04-06 23:06:54 +00001004 rawAddEdge(NewLoc);
Ted Kremenek8f9b1b32009-05-01 16:08:09 +00001005 }
Ted Kremenek14856d72009-04-06 23:06:54 +00001006
1007 return;
1008 }
1009
1010 if (containsLocation(TopContextLoc, CLoc)) {
Ted Kremenek8f9b1b32009-05-01 16:08:09 +00001011 if (alwaysAdd) {
Ted Kremenek14856d72009-04-06 23:06:54 +00001012 rawAddEdge(NewLoc);
Ted Kremenek8f9b1b32009-05-01 16:08:09 +00001013
Ted Kremenek4c6f8d32009-05-04 18:15:17 +00001014 if (IsConsumedExpr(CLoc) && !IsControlFlowExpr(CLoc.asStmt())) {
Ted Kremenek8f9b1b32009-05-01 16:08:09 +00001015 CLocs.push_back(ContextLocation(CLoc, true));
1016 return;
1017 }
1018 }
1019
Ted Kremenek14856d72009-04-06 23:06:54 +00001020 CLocs.push_back(CLoc);
1021 return;
1022 }
1023
1024 // Context does not contain the location. Flush it.
1025 popLocation();
1026 }
Ted Kremenek5c7168c2009-04-22 20:36:26 +00001027
1028 // If we reach here, there is no enclosing context. Just add the edge.
1029 rawAddEdge(NewLoc);
Ted Kremenek14856d72009-04-06 23:06:54 +00001030}
1031
Ted Kremenek8f9b1b32009-05-01 16:08:09 +00001032bool EdgeBuilder::IsConsumedExpr(const PathDiagnosticLocation &L) {
1033 if (const Expr *X = dyn_cast_or_null<Expr>(L.asStmt()))
1034 return PDB.getParentMap().isConsumedExpr(X) && !IsControlFlowExpr(X);
1035
1036 return false;
1037}
1038
Ted Kremeneke1baed32009-05-05 23:13:38 +00001039void EdgeBuilder::addExtendedContext(const Stmt *S) {
1040 if (!S)
1041 return;
1042
1043 const Stmt *Parent = PDB.getParent(S);
1044 while (Parent) {
1045 if (isa<CompoundStmt>(Parent))
1046 Parent = PDB.getParent(Parent);
1047 else
1048 break;
1049 }
1050
1051 if (Parent) {
1052 switch (Parent->getStmtClass()) {
1053 case Stmt::DoStmtClass:
1054 case Stmt::ObjCAtSynchronizedStmtClass:
1055 addContext(Parent);
1056 default:
1057 break;
1058 }
1059 }
1060
1061 addContext(S);
1062}
1063
Ted Kremenek14856d72009-04-06 23:06:54 +00001064void EdgeBuilder::addContext(const Stmt *S) {
1065 if (!S)
1066 return;
1067
1068 PathDiagnosticLocation L(S, PDB.getSourceManager());
1069
1070 while (!CLocs.empty()) {
1071 const PathDiagnosticLocation &TopContextLoc = CLocs.back();
1072
1073 // Is the top location context the same as the one for the new location?
1074 if (TopContextLoc == L)
1075 return;
1076
1077 if (containsLocation(TopContextLoc, L)) {
Ted Kremenek14856d72009-04-06 23:06:54 +00001078 CLocs.push_back(L);
1079 return;
1080 }
1081
1082 // Context does not contain the location. Flush it.
1083 popLocation();
1084 }
1085
1086 CLocs.push_back(L);
1087}
1088
1089static void GenerateExtensivePathDiagnostic(PathDiagnostic& PD,
1090 PathDiagnosticBuilder &PDB,
1091 const ExplodedNode<GRState> *N) {
1092
1093
1094 EdgeBuilder EB(PD, PDB);
1095
1096 const ExplodedNode<GRState>* NextNode = N->pred_empty()
1097 ? NULL : *(N->pred_begin());
Ted Kremenek14856d72009-04-06 23:06:54 +00001098 while (NextNode) {
1099 N = NextNode;
1100 NextNode = GetPredecessorNode(N);
1101 ProgramPoint P = N->getLocation();
1102
Ted Kremenekdd986cc2009-05-07 00:45:33 +00001103 do {
1104 // Block edges.
1105 if (const BlockEdge *BE = dyn_cast<BlockEdge>(&P)) {
1106 const CFGBlock &Blk = *BE->getSrc();
1107 const Stmt *Term = Blk.getTerminator();
1108
1109 if (Term)
1110 EB.addContext(Term);
Ted Kremenek14856d72009-04-06 23:06:54 +00001111
Ted Kremenekdd986cc2009-05-07 00:45:33 +00001112 // Are we jumping to the head of a loop? Add a special diagnostic.
1113 if (const Stmt *Loop = BE->getSrc()->getLoopTarget()) {
1114
1115 PathDiagnosticLocation L(Loop, PDB.getSourceManager());
1116 PathDiagnosticEventPiece *p =
1117 new PathDiagnosticEventPiece(L,
1118 "Looping back to the head of the loop");
1119
1120 EB.addEdge(p->getLocation(), true);
1121 PD.push_front(p);
1122
1123 if (!Term) {
1124 const CompoundStmt *CS = NULL;
1125 if (const ForStmt *FS = dyn_cast<ForStmt>(Loop))
1126 CS = dyn_cast<CompoundStmt>(FS->getBody());
1127 else if (const WhileStmt *WS = dyn_cast<WhileStmt>(Loop))
1128 CS = dyn_cast<CompoundStmt>(WS->getBody());
1129
1130 if (CS)
1131 EB.rawAddEdge(PathDiagnosticLocation(CS->getRBracLoc(),
1132 PDB.getSourceManager()));
1133 }
Ted Kremenek8bd4d032009-04-28 04:23:15 +00001134 }
Ted Kremenekdd986cc2009-05-07 00:45:33 +00001135
1136 break;
Ted Kremenek14856d72009-04-06 23:06:54 +00001137 }
1138
Ted Kremenekdd986cc2009-05-07 00:45:33 +00001139 if (const BlockEntrance *BE = dyn_cast<BlockEntrance>(&P)) {
1140 if (const Stmt* S = BE->getFirstStmt()) {
1141 if (IsControlFlowExpr(S)) {
1142 // Add the proper context for '&&', '||', and '?'.
1143 EB.addContext(S);
1144 }
1145 else
1146 EB.addExtendedContext(PDB.getEnclosingStmtLocation(S).asStmt());
1147 }
1148
1149 break;
1150 }
1151 } while (0);
1152
1153 if (!NextNode)
Ted Kremenek14856d72009-04-06 23:06:54 +00001154 continue;
Ted Kremenek14856d72009-04-06 23:06:54 +00001155
Ted Kremenek8966bc12009-05-06 21:39:49 +00001156 for (BugReporterContext::visitor_iterator I = PDB.visitor_begin(),
1157 E = PDB.visitor_end(); I!=E; ++I) {
1158 if (PathDiagnosticPiece* p = (*I)->VisitNode(N, NextNode, PDB)) {
1159 const PathDiagnosticLocation &Loc = p->getLocation();
1160 EB.addEdge(Loc, true);
1161 PD.push_front(p);
1162 if (const Stmt *S = Loc.asStmt())
1163 EB.addExtendedContext(PDB.getEnclosingStmtLocation(S).asStmt());
1164 }
1165 }
Ted Kremenek14856d72009-04-06 23:06:54 +00001166 }
1167}
1168
Ted Kremenek5fb5dfb2009-04-01 06:13:56 +00001169//===----------------------------------------------------------------------===//
Ted Kremenekcf118d42009-02-04 23:49:09 +00001170// Methods for BugType and subclasses.
1171//===----------------------------------------------------------------------===//
1172BugType::~BugType() {}
1173void BugType::FlushReports(BugReporter &BR) {}
Ted Kremenekbb77e9b2008-05-01 22:50:36 +00001174
Ted Kremenekcf118d42009-02-04 23:49:09 +00001175//===----------------------------------------------------------------------===//
1176// Methods for BugReport and subclasses.
1177//===----------------------------------------------------------------------===//
1178BugReport::~BugReport() {}
1179RangedBugReport::~RangedBugReport() {}
1180
1181Stmt* BugReport::getStmt(BugReporter& BR) const {
Ted Kremenek200ed922008-05-02 23:21:21 +00001182 ProgramPoint ProgP = EndNode->getLocation();
Ted Kremenekbd7efa82008-04-17 23:44:37 +00001183 Stmt *S = NULL;
1184
Ted Kremenekcf118d42009-02-04 23:49:09 +00001185 if (BlockEntrance* BE = dyn_cast<BlockEntrance>(&ProgP)) {
Ted Kremenekb697b102009-02-23 22:44:26 +00001186 if (BE->getBlock() == &BR.getCFG()->getExit()) S = GetPreviousStmt(EndNode);
Ted Kremenekcf118d42009-02-04 23:49:09 +00001187 }
1188 if (!S) S = GetStmt(ProgP);
1189
Ted Kremenekbb77e9b2008-05-01 22:50:36 +00001190 return S;
1191}
1192
1193PathDiagnosticPiece*
Ted Kremenek8966bc12009-05-06 21:39:49 +00001194BugReport::getEndPath(BugReporterContext& BRC,
Ted Kremenek3148eb42009-01-24 00:55:43 +00001195 const ExplodedNode<GRState>* EndPathNode) {
Ted Kremenekbb77e9b2008-05-01 22:50:36 +00001196
Ted Kremenek8966bc12009-05-06 21:39:49 +00001197 Stmt* S = getStmt(BRC.getBugReporter());
Ted Kremenek61f3e052008-04-03 04:42:52 +00001198
1199 if (!S)
1200 return NULL;
Ted Kremenek3ef538d2009-05-11 23:50:59 +00001201
Ted Kremenekde7161f2008-04-03 18:00:37 +00001202 const SourceRange *Beg, *End;
Ted Kremenek3ef538d2009-05-11 23:50:59 +00001203 getRanges(BRC.getBugReporter(), Beg, End);
1204 PathDiagnosticLocation L(S, BRC.getSourceManager());
Ted Kremenekcf118d42009-02-04 23:49:09 +00001205
Ted Kremenek3ef538d2009-05-11 23:50:59 +00001206 // Only add the statement itself as a range if we didn't specify any
1207 // special ranges for this report.
1208 PathDiagnosticPiece* P = new PathDiagnosticEventPiece(L, getDescription(),
1209 Beg == End);
1210
Ted Kremenekbb77e9b2008-05-01 22:50:36 +00001211 for (; Beg != End; ++Beg)
1212 P->addRange(*Beg);
Ted Kremenek61f3e052008-04-03 04:42:52 +00001213
1214 return P;
1215}
1216
Ted Kremenekbb77e9b2008-05-01 22:50:36 +00001217void BugReport::getRanges(BugReporter& BR, const SourceRange*& beg,
1218 const SourceRange*& end) {
1219
1220 if (Expr* E = dyn_cast_or_null<Expr>(getStmt(BR))) {
1221 R = E->getSourceRange();
Ted Kremenek9b5e5052009-02-27 20:05:10 +00001222 assert(R.isValid());
Ted Kremenekbb77e9b2008-05-01 22:50:36 +00001223 beg = &R;
1224 end = beg+1;
1225 }
1226 else
1227 beg = end = 0;
Ted Kremenekf1ae7052008-04-03 17:57:38 +00001228}
1229
Ted Kremenekcf118d42009-02-04 23:49:09 +00001230SourceLocation BugReport::getLocation() const {
1231 if (EndNode)
Ted Kremenek9b5e5052009-02-27 20:05:10 +00001232 if (Stmt* S = GetCurrentOrPreviousStmt(EndNode)) {
1233 // For member expressions, return the location of the '.' or '->'.
1234 if (MemberExpr* ME = dyn_cast<MemberExpr>(S))
1235 return ME->getMemberLoc();
1236
Ted Kremenekcf118d42009-02-04 23:49:09 +00001237 return S->getLocStart();
Ted Kremenek9b5e5052009-02-27 20:05:10 +00001238 }
Ted Kremenekcf118d42009-02-04 23:49:09 +00001239
1240 return FullSourceLoc();
Ted Kremenekd2f642b2008-04-14 17:39:48 +00001241}
1242
Ted Kremenek3148eb42009-01-24 00:55:43 +00001243PathDiagnosticPiece* BugReport::VisitNode(const ExplodedNode<GRState>* N,
1244 const ExplodedNode<GRState>* PrevN,
Ted Kremenek8966bc12009-05-06 21:39:49 +00001245 BugReporterContext &BRC) {
Ted Kremenek50a6d0c2008-04-09 21:41:14 +00001246 return NULL;
1247}
1248
Ted Kremenekcf118d42009-02-04 23:49:09 +00001249//===----------------------------------------------------------------------===//
1250// Methods for BugReporter and subclasses.
1251//===----------------------------------------------------------------------===//
1252
1253BugReportEquivClass::~BugReportEquivClass() {
Ted Kremenek8966bc12009-05-06 21:39:49 +00001254 for (iterator I=begin(), E=end(); I!=E; ++I) delete *I;
Ted Kremenekcf118d42009-02-04 23:49:09 +00001255}
1256
1257GRBugReporter::~GRBugReporter() { FlushReports(); }
1258BugReporterData::~BugReporterData() {}
1259
1260ExplodedGraph<GRState>&
1261GRBugReporter::getGraph() { return Eng.getGraph(); }
1262
1263GRStateManager&
1264GRBugReporter::getStateManager() { return Eng.getStateManager(); }
1265
1266BugReporter::~BugReporter() { FlushReports(); }
1267
1268void BugReporter::FlushReports() {
1269 if (BugTypes.isEmpty())
1270 return;
1271
1272 // First flush the warnings for each BugType. This may end up creating new
1273 // warnings and new BugTypes. Because ImmutableSet is a functional data
1274 // structure, we do not need to worry about the iterators being invalidated.
1275 for (BugTypesTy::iterator I=BugTypes.begin(), E=BugTypes.end(); I!=E; ++I)
1276 const_cast<BugType*>(*I)->FlushReports(*this);
1277
1278 // Iterate through BugTypes a second time. BugTypes may have been updated
1279 // with new BugType objects and new warnings.
1280 for (BugTypesTy::iterator I=BugTypes.begin(), E=BugTypes.end(); I!=E; ++I) {
1281 BugType *BT = const_cast<BugType*>(*I);
1282
1283 typedef llvm::FoldingSet<BugReportEquivClass> SetTy;
1284 SetTy& EQClasses = BT->EQClasses;
1285
1286 for (SetTy::iterator EI=EQClasses.begin(), EE=EQClasses.end(); EI!=EE;++EI){
1287 BugReportEquivClass& EQ = *EI;
1288 FlushReport(EQ);
1289 }
Ted Kremeneka43a1eb2008-04-23 23:02:12 +00001290
Ted Kremenekcf118d42009-02-04 23:49:09 +00001291 // Delete the BugType object. This will also delete the equivalence
1292 // classes.
1293 delete BT;
Ted Kremenek94826a72008-04-03 04:59:14 +00001294 }
Ted Kremenekcf118d42009-02-04 23:49:09 +00001295
1296 // Remove all references to the BugType objects.
1297 BugTypes = F.GetEmptySet();
1298}
1299
1300//===----------------------------------------------------------------------===//
1301// PathDiagnostics generation.
1302//===----------------------------------------------------------------------===//
1303
Ted Kremenekfe9e5432009-02-18 03:48:14 +00001304static std::pair<std::pair<ExplodedGraph<GRState>*, NodeBackMap*>,
Ted Kremenekcf118d42009-02-04 23:49:09 +00001305 std::pair<ExplodedNode<GRState>*, unsigned> >
1306MakeReportGraph(const ExplodedGraph<GRState>* G,
1307 const ExplodedNode<GRState>** NStart,
1308 const ExplodedNode<GRState>** NEnd) {
Ted Kremenek94826a72008-04-03 04:59:14 +00001309
Ted Kremenekcf118d42009-02-04 23:49:09 +00001310 // Create the trimmed graph. It will contain the shortest paths from the
1311 // error nodes to the root. In the new graph we should only have one
1312 // error node unless there are two or more error nodes with the same minimum
1313 // path length.
1314 ExplodedGraph<GRState>* GTrim;
1315 InterExplodedGraphMap<GRState>* NMap;
Ted Kremenekfe9e5432009-02-18 03:48:14 +00001316
1317 llvm::DenseMap<const void*, const void*> InverseMap;
1318 llvm::tie(GTrim, NMap) = G->Trim(NStart, NEnd, &InverseMap);
Ted Kremenekcf118d42009-02-04 23:49:09 +00001319
1320 // Create owning pointers for GTrim and NMap just to ensure that they are
1321 // released when this function exists.
1322 llvm::OwningPtr<ExplodedGraph<GRState> > AutoReleaseGTrim(GTrim);
1323 llvm::OwningPtr<InterExplodedGraphMap<GRState> > AutoReleaseNMap(NMap);
1324
1325 // Find the (first) error node in the trimmed graph. We just need to consult
1326 // the node map (NMap) which maps from nodes in the original graph to nodes
1327 // in the new graph.
1328 const ExplodedNode<GRState>* N = 0;
1329 unsigned NodeIndex = 0;
1330
1331 for (const ExplodedNode<GRState>** I = NStart; I != NEnd; ++I)
1332 if ((N = NMap->getMappedNode(*I))) {
1333 NodeIndex = (I - NStart) / sizeof(*I);
1334 break;
1335 }
1336
1337 assert(N && "No error node found in the trimmed graph.");
1338
1339 // Create a new (third!) graph with a single path. This is the graph
1340 // that will be returned to the caller.
Ted Kremenek3148eb42009-01-24 00:55:43 +00001341 ExplodedGraph<GRState> *GNew =
Ted Kremenekfe9e5432009-02-18 03:48:14 +00001342 new ExplodedGraph<GRState>(GTrim->getCFG(), GTrim->getCodeDecl(),
1343 GTrim->getContext());
Ted Kremenekcf118d42009-02-04 23:49:09 +00001344
Ted Kremenek10aa5542009-03-12 23:41:59 +00001345 // Sometimes the trimmed graph can contain a cycle. Perform a reverse BFS
Ted Kremenek331b0ac2008-06-18 05:34:07 +00001346 // to the root node, and then construct a new graph that contains only
1347 // a single path.
Ted Kremenek3148eb42009-01-24 00:55:43 +00001348 llvm::DenseMap<const void*,unsigned> Visited;
Ted Kremenek10aa5542009-03-12 23:41:59 +00001349 std::queue<const ExplodedNode<GRState>*> WS;
1350 WS.push(N);
1351
Ted Kremenek331b0ac2008-06-18 05:34:07 +00001352 unsigned cnt = 0;
Ted Kremenek3148eb42009-01-24 00:55:43 +00001353 const ExplodedNode<GRState>* Root = 0;
Ted Kremenekc1da4412008-06-17 19:14:06 +00001354
Ted Kremenek331b0ac2008-06-18 05:34:07 +00001355 while (!WS.empty()) {
Ted Kremenek10aa5542009-03-12 23:41:59 +00001356 const ExplodedNode<GRState>* Node = WS.front();
1357 WS.pop();
Ted Kremenek331b0ac2008-06-18 05:34:07 +00001358
1359 if (Visited.find(Node) != Visited.end())
1360 continue;
1361
1362 Visited[Node] = cnt++;
1363
1364 if (Node->pred_empty()) {
1365 Root = Node;
1366 break;
1367 }
1368
Ted Kremenek3148eb42009-01-24 00:55:43 +00001369 for (ExplodedNode<GRState>::const_pred_iterator I=Node->pred_begin(),
Ted Kremenek331b0ac2008-06-18 05:34:07 +00001370 E=Node->pred_end(); I!=E; ++I)
Ted Kremenek10aa5542009-03-12 23:41:59 +00001371 WS.push(*I);
Ted Kremenek331b0ac2008-06-18 05:34:07 +00001372 }
Ted Kremenekcf118d42009-02-04 23:49:09 +00001373
Ted Kremenek331b0ac2008-06-18 05:34:07 +00001374 assert (Root);
1375
Ted Kremenek10aa5542009-03-12 23:41:59 +00001376 // Now walk from the root down the BFS path, always taking the successor
Ted Kremenek331b0ac2008-06-18 05:34:07 +00001377 // with the lowest number.
Ted Kremenek4adc81e2008-08-13 04:27:00 +00001378 ExplodedNode<GRState> *Last = 0, *First = 0;
Ted Kremenekfe9e5432009-02-18 03:48:14 +00001379 NodeBackMap *BM = new NodeBackMap();
Ted Kremenekcf118d42009-02-04 23:49:09 +00001380
Ted Kremenek331b0ac2008-06-18 05:34:07 +00001381 for ( N = Root ;;) {
Ted Kremenek331b0ac2008-06-18 05:34:07 +00001382 // Lookup the number associated with the current node.
Ted Kremenek3148eb42009-01-24 00:55:43 +00001383 llvm::DenseMap<const void*,unsigned>::iterator I = Visited.find(N);
Ted Kremenek331b0ac2008-06-18 05:34:07 +00001384 assert (I != Visited.end());
1385
1386 // Create the equivalent node in the new graph with the same state
1387 // and location.
Ted Kremenek4adc81e2008-08-13 04:27:00 +00001388 ExplodedNode<GRState>* NewN =
Ted Kremenekfe9e5432009-02-18 03:48:14 +00001389 GNew->getNode(N->getLocation(), N->getState());
1390
1391 // Store the mapping to the original node.
1392 llvm::DenseMap<const void*, const void*>::iterator IMitr=InverseMap.find(N);
1393 assert(IMitr != InverseMap.end() && "No mapping to original node.");
1394 (*BM)[NewN] = (const ExplodedNode<GRState>*) IMitr->second;
Ted Kremenekcf118d42009-02-04 23:49:09 +00001395
Ted Kremenek331b0ac2008-06-18 05:34:07 +00001396 // Link up the new node with the previous node.
1397 if (Last)
1398 NewN->addPredecessor(Last);
Ted Kremeneka43a1eb2008-04-23 23:02:12 +00001399
1400 Last = NewN;
Ted Kremenekcf118d42009-02-04 23:49:09 +00001401
Ted Kremenek331b0ac2008-06-18 05:34:07 +00001402 // Are we at the final node?
1403 if (I->second == 0) {
1404 First = NewN;
Ted Kremenekc1da4412008-06-17 19:14:06 +00001405 break;
Ted Kremenek331b0ac2008-06-18 05:34:07 +00001406 }
Ted Kremenekcf118d42009-02-04 23:49:09 +00001407
Ted Kremenek331b0ac2008-06-18 05:34:07 +00001408 // Find the next successor node. We choose the node that is marked
1409 // with the lowest DFS number.
Ted Kremenek3148eb42009-01-24 00:55:43 +00001410 ExplodedNode<GRState>::const_succ_iterator SI = N->succ_begin();
1411 ExplodedNode<GRState>::const_succ_iterator SE = N->succ_end();
Ted Kremenekc1da4412008-06-17 19:14:06 +00001412 N = 0;
1413
Ted Kremenek331b0ac2008-06-18 05:34:07 +00001414 for (unsigned MinVal = 0; SI != SE; ++SI) {
Ted Kremenekcf118d42009-02-04 23:49:09 +00001415
Ted Kremenek331b0ac2008-06-18 05:34:07 +00001416 I = Visited.find(*SI);
1417
1418 if (I == Visited.end())
1419 continue;
1420
1421 if (!N || I->second < MinVal) {
1422 N = *SI;
1423 MinVal = I->second;
Ted Kremenekc1da4412008-06-17 19:14:06 +00001424 }
Ted Kremenek331b0ac2008-06-18 05:34:07 +00001425 }
Ted Kremenekcf118d42009-02-04 23:49:09 +00001426
Ted Kremenek331b0ac2008-06-18 05:34:07 +00001427 assert (N);
Ted Kremeneka43a1eb2008-04-23 23:02:12 +00001428 }
Ted Kremenekcf118d42009-02-04 23:49:09 +00001429
Ted Kremenek331b0ac2008-06-18 05:34:07 +00001430 assert (First);
Ted Kremenekfe9e5432009-02-18 03:48:14 +00001431 return std::make_pair(std::make_pair(GNew, BM),
1432 std::make_pair(First, NodeIndex));
Ted Kremeneka43a1eb2008-04-23 23:02:12 +00001433}
1434
Ted Kremenek0e5c8d42009-03-10 05:16:17 +00001435/// CompactPathDiagnostic - This function postprocesses a PathDiagnostic object
1436/// and collapses PathDiagosticPieces that are expanded by macros.
1437static void CompactPathDiagnostic(PathDiagnostic &PD, const SourceManager& SM) {
1438 typedef std::vector<std::pair<PathDiagnosticMacroPiece*, SourceLocation> >
1439 MacroStackTy;
1440
1441 typedef std::vector<PathDiagnosticPiece*>
1442 PiecesTy;
1443
1444 MacroStackTy MacroStack;
1445 PiecesTy Pieces;
1446
1447 for (PathDiagnostic::iterator I = PD.begin(), E = PD.end(); I!=E; ++I) {
1448 // Get the location of the PathDiagnosticPiece.
Ted Kremenek5fb5dfb2009-04-01 06:13:56 +00001449 const FullSourceLoc Loc = I->getLocation().asLocation();
Ted Kremenek0e5c8d42009-03-10 05:16:17 +00001450
1451 // Determine the instantiation location, which is the location we group
1452 // related PathDiagnosticPieces.
1453 SourceLocation InstantiationLoc = Loc.isMacroID() ?
1454 SM.getInstantiationLoc(Loc) :
1455 SourceLocation();
1456
1457 if (Loc.isFileID()) {
1458 MacroStack.clear();
1459 Pieces.push_back(&*I);
1460 continue;
1461 }
1462
1463 assert(Loc.isMacroID());
1464
1465 // Is the PathDiagnosticPiece within the same macro group?
1466 if (!MacroStack.empty() && InstantiationLoc == MacroStack.back().second) {
1467 MacroStack.back().first->push_back(&*I);
1468 continue;
1469 }
1470
1471 // We aren't in the same group. Are we descending into a new macro
1472 // or are part of an old one?
1473 PathDiagnosticMacroPiece *MacroGroup = 0;
1474
1475 SourceLocation ParentInstantiationLoc = InstantiationLoc.isMacroID() ?
1476 SM.getInstantiationLoc(Loc) :
1477 SourceLocation();
1478
1479 // Walk the entire macro stack.
1480 while (!MacroStack.empty()) {
1481 if (InstantiationLoc == MacroStack.back().second) {
1482 MacroGroup = MacroStack.back().first;
1483 break;
1484 }
1485
1486 if (ParentInstantiationLoc == MacroStack.back().second) {
1487 MacroGroup = MacroStack.back().first;
1488 break;
1489 }
1490
1491 MacroStack.pop_back();
1492 }
1493
1494 if (!MacroGroup || ParentInstantiationLoc == MacroStack.back().second) {
1495 // Create a new macro group and add it to the stack.
1496 PathDiagnosticMacroPiece *NewGroup = new PathDiagnosticMacroPiece(Loc);
1497
1498 if (MacroGroup)
1499 MacroGroup->push_back(NewGroup);
1500 else {
1501 assert(InstantiationLoc.isFileID());
1502 Pieces.push_back(NewGroup);
1503 }
1504
1505 MacroGroup = NewGroup;
1506 MacroStack.push_back(std::make_pair(MacroGroup, InstantiationLoc));
1507 }
1508
1509 // Finally, add the PathDiagnosticPiece to the group.
1510 MacroGroup->push_back(&*I);
1511 }
1512
1513 // Now take the pieces and construct a new PathDiagnostic.
1514 PD.resetPath(false);
1515
1516 for (PiecesTy::iterator I=Pieces.begin(), E=Pieces.end(); I!=E; ++I) {
1517 if (PathDiagnosticMacroPiece *MP=dyn_cast<PathDiagnosticMacroPiece>(*I))
1518 if (!MP->containsEvent()) {
1519 delete MP;
1520 continue;
1521 }
1522
1523 PD.push_back(*I);
1524 }
1525}
1526
Ted Kremenek7dc86642009-03-31 20:22:36 +00001527void GRBugReporter::GeneratePathDiagnostic(PathDiagnostic& PD,
Ted Kremenek8966bc12009-05-06 21:39:49 +00001528 BugReportEquivClass& EQ) {
Ted Kremenek7dc86642009-03-31 20:22:36 +00001529
1530 std::vector<const ExplodedNode<GRState>*> Nodes;
1531
Ted Kremenekcf118d42009-02-04 23:49:09 +00001532 for (BugReportEquivClass::iterator I=EQ.begin(), E=EQ.end(); I!=E; ++I) {
1533 const ExplodedNode<GRState>* N = I->getEndNode();
1534 if (N) Nodes.push_back(N);
1535 }
1536
1537 if (Nodes.empty())
1538 return;
Ted Kremeneka43a1eb2008-04-23 23:02:12 +00001539
1540 // Construct a new graph that contains only a single path from the error
Ted Kremenekcf118d42009-02-04 23:49:09 +00001541 // node to a root.
Ted Kremenekfe9e5432009-02-18 03:48:14 +00001542 const std::pair<std::pair<ExplodedGraph<GRState>*, NodeBackMap*>,
Ted Kremenek7dc86642009-03-31 20:22:36 +00001543 std::pair<ExplodedNode<GRState>*, unsigned> >&
1544 GPair = MakeReportGraph(&getGraph(), &Nodes[0], &Nodes[0] + Nodes.size());
Ted Kremeneka43a1eb2008-04-23 23:02:12 +00001545
Ted Kremenekcf118d42009-02-04 23:49:09 +00001546 // Find the BugReport with the original location.
1547 BugReport *R = 0;
1548 unsigned i = 0;
1549 for (BugReportEquivClass::iterator I=EQ.begin(), E=EQ.end(); I!=E; ++I, ++i)
1550 if (i == GPair.second.second) { R = *I; break; }
1551
1552 assert(R && "No original report found for sliced graph.");
Ted Kremeneka43a1eb2008-04-23 23:02:12 +00001553
Ted Kremenekfe9e5432009-02-18 03:48:14 +00001554 llvm::OwningPtr<ExplodedGraph<GRState> > ReportGraph(GPair.first.first);
1555 llvm::OwningPtr<NodeBackMap> BackMap(GPair.first.second);
Ted Kremenekcf118d42009-02-04 23:49:09 +00001556 const ExplodedNode<GRState> *N = GPair.second.first;
Ted Kremenek7dc86642009-03-31 20:22:36 +00001557
Ted Kremenek8966bc12009-05-06 21:39:49 +00001558 // Start building the path diagnostic...
1559 PathDiagnosticBuilder PDB(*this, R, BackMap.get(), getPathDiagnosticClient());
1560
1561 if (PathDiagnosticPiece* Piece = R->getEndPath(PDB, N))
Ted Kremenekbd7efa82008-04-17 23:44:37 +00001562 PD.push_back(Piece);
1563 else
1564 return;
Ted Kremenekdd986cc2009-05-07 00:45:33 +00001565
1566 R->registerInitialVisitors(PDB, N);
Ted Kremenekbd7efa82008-04-17 23:44:37 +00001567
Ted Kremenek7dc86642009-03-31 20:22:36 +00001568 switch (PDB.getGenerationScheme()) {
1569 case PathDiagnosticClient::Extensive:
Ted Kremenek8966bc12009-05-06 21:39:49 +00001570 GenerateExtensivePathDiagnostic(PD, PDB, N);
Ted Kremenek5fb5dfb2009-04-01 06:13:56 +00001571 break;
Ted Kremenek7dc86642009-03-31 20:22:36 +00001572 case PathDiagnosticClient::Minimal:
1573 GenerateMinimalPathDiagnostic(PD, PDB, N);
1574 break;
1575 }
Ted Kremenek7dc86642009-03-31 20:22:36 +00001576}
1577
Ted Kremenekcf118d42009-02-04 23:49:09 +00001578void BugReporter::Register(BugType *BT) {
1579 BugTypes = F.Add(BugTypes, BT);
Ted Kremenek76d90c82008-05-16 18:33:14 +00001580}
1581
Ted Kremenekcf118d42009-02-04 23:49:09 +00001582void BugReporter::EmitReport(BugReport* R) {
1583 // Compute the bug report's hash to determine its equivalence class.
1584 llvm::FoldingSetNodeID ID;
1585 R->Profile(ID);
Ted Kremenek61f3e052008-04-03 04:42:52 +00001586
Ted Kremenekcf118d42009-02-04 23:49:09 +00001587 // Lookup the equivance class. If there isn't one, create it.
1588 BugType& BT = R->getBugType();
1589 Register(&BT);
1590 void *InsertPos;
1591 BugReportEquivClass* EQ = BT.EQClasses.FindNodeOrInsertPos(ID, InsertPos);
1592
1593 if (!EQ) {
1594 EQ = new BugReportEquivClass(R);
1595 BT.EQClasses.InsertNode(EQ, InsertPos);
1596 }
1597 else
1598 EQ->AddReport(R);
Ted Kremenek61f3e052008-04-03 04:42:52 +00001599}
1600
Ted Kremenekcf118d42009-02-04 23:49:09 +00001601void BugReporter::FlushReport(BugReportEquivClass& EQ) {
1602 assert(!EQ.Reports.empty());
1603 BugReport &R = **EQ.begin();
Ted Kremenekd49967f2009-04-29 21:58:13 +00001604 PathDiagnosticClient* PD = getPathDiagnosticClient();
Ted Kremenekcf118d42009-02-04 23:49:09 +00001605
1606 // FIXME: Make sure we use the 'R' for the path that was actually used.
1607 // Probably doesn't make a difference in practice.
1608 BugType& BT = R.getBugType();
1609
Ted Kremenekd49967f2009-04-29 21:58:13 +00001610 llvm::OwningPtr<PathDiagnostic>
1611 D(new PathDiagnostic(R.getBugType().getName(),
Ted Kremenekda0e8422009-04-29 22:05:03 +00001612 !PD || PD->useVerboseDescription()
Ted Kremenekd49967f2009-04-29 21:58:13 +00001613 ? R.getDescription() : R.getShortDescription(),
1614 BT.getCategory()));
1615
Ted Kremenekcf118d42009-02-04 23:49:09 +00001616 GeneratePathDiagnostic(*D.get(), EQ);
Ted Kremenek072192b2008-04-30 23:47:44 +00001617
1618 // Get the meta data.
Ted Kremenek072192b2008-04-30 23:47:44 +00001619 std::pair<const char**, const char**> Meta = R.getExtraDescriptiveText();
Ted Kremenek3148eb42009-01-24 00:55:43 +00001620 for (const char** s = Meta.first; s != Meta.second; ++s) D->addMeta(*s);
Ted Kremenek75840e12008-04-18 01:56:37 +00001621
Ted Kremenek3148eb42009-01-24 00:55:43 +00001622 // Emit a summary diagnostic to the regular Diagnostics engine.
Ted Kremenek3148eb42009-01-24 00:55:43 +00001623 const SourceRange *Beg = 0, *End = 0;
1624 R.getRanges(*this, Beg, End);
1625 Diagnostic& Diag = getDiagnostic();
Ted Kremenekcf118d42009-02-04 23:49:09 +00001626 FullSourceLoc L(R.getLocation(), getSourceManager());
Ted Kremenekd90e7082009-02-07 22:36:41 +00001627 unsigned ErrorDiag = Diag.getCustomDiagID(Diagnostic::Warning,
Ted Kremenekeaedfea2009-05-10 05:11:21 +00001628 R.getShortDescription().c_str());
Ted Kremenek57202072008-07-14 17:40:50 +00001629
Ted Kremenek3148eb42009-01-24 00:55:43 +00001630 switch (End-Beg) {
Chris Lattner0a14eee2008-11-18 07:04:44 +00001631 default: assert(0 && "Don't handle this many ranges yet!");
1632 case 0: Diag.Report(L, ErrorDiag); break;
1633 case 1: Diag.Report(L, ErrorDiag) << Beg[0]; break;
1634 case 2: Diag.Report(L, ErrorDiag) << Beg[0] << Beg[1]; break;
1635 case 3: Diag.Report(L, ErrorDiag) << Beg[0] << Beg[1] << Beg[2]; break;
Ted Kremenek2f0e89e2008-04-18 22:56:53 +00001636 }
Ted Kremenek3148eb42009-01-24 00:55:43 +00001637
1638 // Emit a full diagnostic for the path if we have a PathDiagnosticClient.
1639 if (!PD)
1640 return;
1641
1642 if (D->empty()) {
Ted Kremenek1fbfd5b2009-03-06 23:58:11 +00001643 PathDiagnosticPiece* piece =
1644 new PathDiagnosticEventPiece(L, R.getDescription());
1645
Ted Kremenek3148eb42009-01-24 00:55:43 +00001646 for ( ; Beg != End; ++Beg) piece->addRange(*Beg);
1647 D->push_back(piece);
1648 }
1649
1650 PD->HandlePathDiagnostic(D.take());
Ted Kremenek61f3e052008-04-03 04:42:52 +00001651}
Ted Kremenek57202072008-07-14 17:40:50 +00001652
Ted Kremenek8c036c72008-09-20 04:23:38 +00001653void BugReporter::EmitBasicReport(const char* name, const char* str,
1654 SourceLocation Loc,
1655 SourceRange* RBeg, unsigned NumRanges) {
1656 EmitBasicReport(name, "", str, Loc, RBeg, NumRanges);
1657}
Ted Kremenekcf118d42009-02-04 23:49:09 +00001658
Ted Kremenek8c036c72008-09-20 04:23:38 +00001659void BugReporter::EmitBasicReport(const char* name, const char* category,
1660 const char* str, SourceLocation Loc,
1661 SourceRange* RBeg, unsigned NumRanges) {
1662
Ted Kremenekcf118d42009-02-04 23:49:09 +00001663 // 'BT' will be owned by BugReporter as soon as we call 'EmitReport'.
1664 BugType *BT = new BugType(name, category);
Chris Lattner0a14eee2008-11-18 07:04:44 +00001665 FullSourceLoc L = getContext().getFullLoc(Loc);
Ted Kremenekcf118d42009-02-04 23:49:09 +00001666 RangedBugReport *R = new DiagBugReport(*BT, str, L);
1667 for ( ; NumRanges > 0 ; --NumRanges, ++RBeg) R->addRange(*RBeg);
1668 EmitReport(R);
Ted Kremenek57202072008-07-14 17:40:50 +00001669}