blob: 67ddbf5bf98c49d98e3019978f4422a04541502d [file] [log] [blame]
Ted Kremenekdbdbaaf2010-03-20 21:06:02 +00001//=- AnalysisBasedWarnings.cpp - Sema warnings based on libAnalysis -*- 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 analysis_warnings::[Policy,Executor].
11// Together they are used by Sema to issue warnings based on inexpensive
12// static analysis algorithms in libAnalysis.
13//
14//===----------------------------------------------------------------------===//
15
Douglas Gregore737f502010-08-12 20:07:10 +000016#include "clang/Sema/AnalysisBasedWarnings.h"
John McCall2d887082010-08-25 22:03:47 +000017#include "clang/Sema/SemaInternal.h"
Ted Kremenekd068aab2010-03-20 21:11:09 +000018#include "clang/Basic/SourceManager.h"
John McCall7cd088e2010-08-24 07:21:54 +000019#include "clang/AST/DeclObjC.h"
John McCall384aff82010-08-25 07:42:41 +000020#include "clang/AST/DeclCXX.h"
Ted Kremenekdbdbaaf2010-03-20 21:06:02 +000021#include "clang/AST/ExprObjC.h"
22#include "clang/AST/ExprCXX.h"
23#include "clang/AST/StmtObjC.h"
24#include "clang/AST/StmtCXX.h"
25#include "clang/Analysis/AnalysisContext.h"
26#include "clang/Analysis/CFG.h"
27#include "clang/Analysis/Analyses/ReachableCode.h"
Ted Kremenek610068c2011-01-15 02:58:47 +000028#include "clang/Analysis/Analyses/UninitializedValuesV2.h"
Ted Kremenekdbdbaaf2010-03-20 21:06:02 +000029#include "llvm/ADT/BitVector.h"
30#include "llvm/Support/Casting.h"
Ted Kremenekdbdbaaf2010-03-20 21:06:02 +000031
32using namespace clang;
33
34//===----------------------------------------------------------------------===//
35// Unreachable code analysis.
36//===----------------------------------------------------------------------===//
37
38namespace {
39 class UnreachableCodeHandler : public reachable_code::Callback {
40 Sema &S;
41 public:
42 UnreachableCodeHandler(Sema &s) : S(s) {}
43
44 void HandleUnreachable(SourceLocation L, SourceRange R1, SourceRange R2) {
45 S.Diag(L, diag::warn_unreachable) << R1 << R2;
46 }
47 };
48}
49
50/// CheckUnreachable - Check for unreachable code.
51static void CheckUnreachable(Sema &S, AnalysisContext &AC) {
52 UnreachableCodeHandler UC(S);
53 reachable_code::FindUnreachableCode(AC, UC);
54}
55
56//===----------------------------------------------------------------------===//
57// Check for missing return value.
58//===----------------------------------------------------------------------===//
59
John McCall16565aa2010-05-16 09:34:11 +000060enum ControlFlowKind {
61 UnknownFallThrough,
62 NeverFallThrough,
63 MaybeFallThrough,
64 AlwaysFallThrough,
65 NeverFallThroughOrReturn
66};
Ted Kremenekdbdbaaf2010-03-20 21:06:02 +000067
68/// CheckFallThrough - Check that we don't fall off the end of a
69/// Statement that should return a value.
70///
71/// \returns AlwaysFallThrough iff we always fall off the end of the statement,
72/// MaybeFallThrough iff we might or might not fall off the end,
73/// NeverFallThroughOrReturn iff we never fall off the end of the statement or
74/// return. We assume NeverFallThrough iff we never fall off the end of the
75/// statement but we may return. We assume that functions not marked noreturn
76/// will return.
77static ControlFlowKind CheckFallThrough(AnalysisContext &AC) {
78 CFG *cfg = AC.getCFG();
John McCall16565aa2010-05-16 09:34:11 +000079 if (cfg == 0) return UnknownFallThrough;
Ted Kremenekdbdbaaf2010-03-20 21:06:02 +000080
81 // The CFG leaves in dead things, and we don't want the dead code paths to
82 // confuse us, so we mark all live things first.
Ted Kremenekdbdbaaf2010-03-20 21:06:02 +000083 llvm::BitVector live(cfg->getNumBlockIDs());
84 unsigned count = reachable_code::ScanReachableFromBlock(cfg->getEntry(),
85 live);
86
87 bool AddEHEdges = AC.getAddEHEdges();
88 if (!AddEHEdges && count != cfg->getNumBlockIDs())
89 // When there are things remaining dead, and we didn't add EH edges
90 // from CallExprs to the catch clauses, we have to go back and
91 // mark them as live.
92 for (CFG::iterator I = cfg->begin(), E = cfg->end(); I != E; ++I) {
93 CFGBlock &b = **I;
94 if (!live[b.getBlockID()]) {
95 if (b.pred_begin() == b.pred_end()) {
96 if (b.getTerminator() && isa<CXXTryStmt>(b.getTerminator()))
97 // When not adding EH edges from calls, catch clauses
98 // can otherwise seem dead. Avoid noting them as dead.
99 count += reachable_code::ScanReachableFromBlock(b, live);
100 continue;
101 }
102 }
103 }
104
105 // Now we know what is live, we check the live precessors of the exit block
106 // and look for fall through paths, being careful to ignore normal returns,
107 // and exceptional paths.
108 bool HasLiveReturn = false;
109 bool HasFakeEdge = false;
110 bool HasPlainEdge = false;
111 bool HasAbnormalEdge = false;
Ted Kremenek90b828a2010-09-09 00:06:07 +0000112
113 // Ignore default cases that aren't likely to be reachable because all
114 // enums in a switch(X) have explicit case statements.
115 CFGBlock::FilterOptions FO;
116 FO.IgnoreDefaultsWithCoveredEnums = 1;
117
118 for (CFGBlock::filtered_pred_iterator
119 I = cfg->getExit().filtered_pred_start_end(FO); I.hasMore(); ++I) {
120 const CFGBlock& B = **I;
Ted Kremenekdbdbaaf2010-03-20 21:06:02 +0000121 if (!live[B.getBlockID()])
122 continue;
123 if (B.size() == 0) {
124 if (B.getTerminator() && isa<CXXTryStmt>(B.getTerminator())) {
125 HasAbnormalEdge = true;
126 continue;
127 }
128
129 // A labeled empty statement, or the entry block...
130 HasPlainEdge = true;
131 continue;
132 }
Zhongxing Xub36cd3e2010-09-16 01:25:47 +0000133 CFGElement CE = B[B.size()-1];
Anders Carlsson0dc5f9a2011-01-16 22:12:43 +0000134 if (CFGInitializer CI = CE.getAs<CFGInitializer>()) {
135 // A base or member initializer.
136 HasPlainEdge = true;
137 continue;
138 }
Anders Carlsson22c41202011-01-17 19:06:31 +0000139 if (CFGMemberDtor MD = CE.getAs<CFGMemberDtor>()) {
140 // A member destructor.
141 HasPlainEdge = true;
142 continue;
143 }
144 if (CFGBaseDtor BD = CE.getAs<CFGBaseDtor>()) {
145 // A base destructor.
146 HasPlainEdge = true;
147 continue;
148 }
Zhongxing Xub36cd3e2010-09-16 01:25:47 +0000149 CFGStmt CS = CE.getAs<CFGStmt>();
150 if (!CS.isValid())
151 continue;
152 Stmt *S = CS.getStmt();
Ted Kremenekdbdbaaf2010-03-20 21:06:02 +0000153 if (isa<ReturnStmt>(S)) {
154 HasLiveReturn = true;
155 continue;
156 }
157 if (isa<ObjCAtThrowStmt>(S)) {
158 HasFakeEdge = true;
159 continue;
160 }
161 if (isa<CXXThrowExpr>(S)) {
162 HasFakeEdge = true;
163 continue;
164 }
165 if (const AsmStmt *AS = dyn_cast<AsmStmt>(S)) {
166 if (AS->isMSAsm()) {
167 HasFakeEdge = true;
168 HasLiveReturn = true;
169 continue;
170 }
171 }
172 if (isa<CXXTryStmt>(S)) {
173 HasAbnormalEdge = true;
174 continue;
175 }
176
177 bool NoReturnEdge = false;
178 if (CallExpr *C = dyn_cast<CallExpr>(S)) {
John McCall259d48e2010-04-30 07:10:06 +0000179 if (std::find(B.succ_begin(), B.succ_end(), &cfg->getExit())
180 == B.succ_end()) {
Ted Kremenekdbdbaaf2010-03-20 21:06:02 +0000181 HasAbnormalEdge = true;
182 continue;
183 }
184 Expr *CEE = C->getCallee()->IgnoreParenCasts();
Rafael Espindola264ba482010-03-30 20:24:48 +0000185 if (getFunctionExtInfo(CEE->getType()).getNoReturn()) {
Ted Kremenekdbdbaaf2010-03-20 21:06:02 +0000186 NoReturnEdge = true;
187 HasFakeEdge = true;
188 } else if (DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(CEE)) {
189 ValueDecl *VD = DRE->getDecl();
190 if (VD->hasAttr<NoReturnAttr>()) {
191 NoReturnEdge = true;
192 HasFakeEdge = true;
193 }
194 }
195 }
196 // FIXME: Add noreturn message sends.
197 if (NoReturnEdge == false)
198 HasPlainEdge = true;
199 }
200 if (!HasPlainEdge) {
201 if (HasLiveReturn)
202 return NeverFallThrough;
203 return NeverFallThroughOrReturn;
204 }
205 if (HasAbnormalEdge || HasFakeEdge || HasLiveReturn)
206 return MaybeFallThrough;
207 // This says AlwaysFallThrough for calls to functions that are not marked
208 // noreturn, that don't return. If people would like this warning to be more
209 // accurate, such functions should be marked as noreturn.
210 return AlwaysFallThrough;
211}
212
Dan Gohman3c46e8d2010-07-26 21:25:24 +0000213namespace {
214
Ted Kremenekdbdbaaf2010-03-20 21:06:02 +0000215struct CheckFallThroughDiagnostics {
216 unsigned diag_MaybeFallThrough_HasNoReturn;
217 unsigned diag_MaybeFallThrough_ReturnsNonVoid;
218 unsigned diag_AlwaysFallThrough_HasNoReturn;
219 unsigned diag_AlwaysFallThrough_ReturnsNonVoid;
220 unsigned diag_NeverFallThroughOrReturn;
221 bool funMode;
Argyrios Kyrtzidis08274082010-12-15 18:44:22 +0000222 SourceLocation FuncLoc;
Ted Kremenekd064fdc2010-03-23 00:13:23 +0000223
Douglas Gregorca7eaee2010-04-16 23:28:44 +0000224 static CheckFallThroughDiagnostics MakeForFunction(const Decl *Func) {
Ted Kremenekdbdbaaf2010-03-20 21:06:02 +0000225 CheckFallThroughDiagnostics D;
Argyrios Kyrtzidis08274082010-12-15 18:44:22 +0000226 D.FuncLoc = Func->getLocation();
Ted Kremenekdbdbaaf2010-03-20 21:06:02 +0000227 D.diag_MaybeFallThrough_HasNoReturn =
228 diag::warn_falloff_noreturn_function;
229 D.diag_MaybeFallThrough_ReturnsNonVoid =
230 diag::warn_maybe_falloff_nonvoid_function;
231 D.diag_AlwaysFallThrough_HasNoReturn =
232 diag::warn_falloff_noreturn_function;
233 D.diag_AlwaysFallThrough_ReturnsNonVoid =
234 diag::warn_falloff_nonvoid_function;
Douglas Gregorca7eaee2010-04-16 23:28:44 +0000235
236 // Don't suggest that virtual functions be marked "noreturn", since they
237 // might be overridden by non-noreturn functions.
238 bool isVirtualMethod = false;
239 if (const CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(Func))
240 isVirtualMethod = Method->isVirtual();
241
242 if (!isVirtualMethod)
243 D.diag_NeverFallThroughOrReturn =
244 diag::warn_suggest_noreturn_function;
245 else
246 D.diag_NeverFallThroughOrReturn = 0;
247
Ted Kremenekdbdbaaf2010-03-20 21:06:02 +0000248 D.funMode = true;
249 return D;
250 }
Ted Kremenekd064fdc2010-03-23 00:13:23 +0000251
Ted Kremenekdbdbaaf2010-03-20 21:06:02 +0000252 static CheckFallThroughDiagnostics MakeForBlock() {
253 CheckFallThroughDiagnostics D;
254 D.diag_MaybeFallThrough_HasNoReturn =
255 diag::err_noreturn_block_has_return_expr;
256 D.diag_MaybeFallThrough_ReturnsNonVoid =
257 diag::err_maybe_falloff_nonvoid_block;
258 D.diag_AlwaysFallThrough_HasNoReturn =
259 diag::err_noreturn_block_has_return_expr;
260 D.diag_AlwaysFallThrough_ReturnsNonVoid =
261 diag::err_falloff_nonvoid_block;
262 D.diag_NeverFallThroughOrReturn =
263 diag::warn_suggest_noreturn_block;
264 D.funMode = false;
265 return D;
266 }
Ted Kremenekd064fdc2010-03-23 00:13:23 +0000267
Ted Kremenekdbdbaaf2010-03-20 21:06:02 +0000268 bool checkDiagnostics(Diagnostic &D, bool ReturnsVoid,
269 bool HasNoReturn) const {
270 if (funMode) {
Argyrios Kyrtzidis08274082010-12-15 18:44:22 +0000271 return (ReturnsVoid ||
272 D.getDiagnosticLevel(diag::warn_maybe_falloff_nonvoid_function,
273 FuncLoc) == Diagnostic::Ignored)
274 && (!HasNoReturn ||
275 D.getDiagnosticLevel(diag::warn_noreturn_function_has_return_expr,
276 FuncLoc) == Diagnostic::Ignored)
277 && (!ReturnsVoid ||
278 D.getDiagnosticLevel(diag::warn_suggest_noreturn_block, FuncLoc)
279 == Diagnostic::Ignored);
Ted Kremenekdbdbaaf2010-03-20 21:06:02 +0000280 }
Ted Kremenekd064fdc2010-03-23 00:13:23 +0000281
Ted Kremenekdbdbaaf2010-03-20 21:06:02 +0000282 // For blocks.
283 return ReturnsVoid && !HasNoReturn
Argyrios Kyrtzidis08274082010-12-15 18:44:22 +0000284 && (!ReturnsVoid ||
285 D.getDiagnosticLevel(diag::warn_suggest_noreturn_block, FuncLoc)
286 == Diagnostic::Ignored);
Ted Kremenekdbdbaaf2010-03-20 21:06:02 +0000287 }
288};
289
Dan Gohman3c46e8d2010-07-26 21:25:24 +0000290}
291
Ted Kremenekdbdbaaf2010-03-20 21:06:02 +0000292/// CheckFallThroughForFunctionDef - Check that we don't fall off the end of a
293/// function that should return a value. Check that we don't fall off the end
294/// of a noreturn function. We assume that functions and blocks not marked
295/// noreturn will return.
296static void CheckFallThroughForBody(Sema &S, const Decl *D, const Stmt *Body,
297 QualType BlockTy,
298 const CheckFallThroughDiagnostics& CD,
299 AnalysisContext &AC) {
300
301 bool ReturnsVoid = false;
302 bool HasNoReturn = false;
303
304 if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) {
305 ReturnsVoid = FD->getResultType()->isVoidType();
306 HasNoReturn = FD->hasAttr<NoReturnAttr>() ||
Rafael Espindola264ba482010-03-30 20:24:48 +0000307 FD->getType()->getAs<FunctionType>()->getNoReturnAttr();
Ted Kremenekdbdbaaf2010-03-20 21:06:02 +0000308 }
309 else if (const ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(D)) {
310 ReturnsVoid = MD->getResultType()->isVoidType();
311 HasNoReturn = MD->hasAttr<NoReturnAttr>();
312 }
313 else if (isa<BlockDecl>(D)) {
Ted Kremenekd064fdc2010-03-23 00:13:23 +0000314 if (const FunctionType *FT =
Ted Kremenekdbdbaaf2010-03-20 21:06:02 +0000315 BlockTy->getPointeeType()->getAs<FunctionType>()) {
316 if (FT->getResultType()->isVoidType())
317 ReturnsVoid = true;
318 if (FT->getNoReturnAttr())
319 HasNoReturn = true;
320 }
321 }
322
323 Diagnostic &Diags = S.getDiagnostics();
324
325 // Short circuit for compilation speed.
326 if (CD.checkDiagnostics(Diags, ReturnsVoid, HasNoReturn))
327 return;
Ted Kremenekd064fdc2010-03-23 00:13:23 +0000328
Ted Kremenekdbdbaaf2010-03-20 21:06:02 +0000329 // FIXME: Function try block
330 if (const CompoundStmt *Compound = dyn_cast<CompoundStmt>(Body)) {
331 switch (CheckFallThrough(AC)) {
John McCall16565aa2010-05-16 09:34:11 +0000332 case UnknownFallThrough:
333 break;
334
Ted Kremenekdbdbaaf2010-03-20 21:06:02 +0000335 case MaybeFallThrough:
336 if (HasNoReturn)
337 S.Diag(Compound->getRBracLoc(),
338 CD.diag_MaybeFallThrough_HasNoReturn);
339 else if (!ReturnsVoid)
340 S.Diag(Compound->getRBracLoc(),
341 CD.diag_MaybeFallThrough_ReturnsNonVoid);
342 break;
343 case AlwaysFallThrough:
344 if (HasNoReturn)
345 S.Diag(Compound->getRBracLoc(),
346 CD.diag_AlwaysFallThrough_HasNoReturn);
347 else if (!ReturnsVoid)
348 S.Diag(Compound->getRBracLoc(),
349 CD.diag_AlwaysFallThrough_ReturnsNonVoid);
350 break;
351 case NeverFallThroughOrReturn:
Douglas Gregorca7eaee2010-04-16 23:28:44 +0000352 if (ReturnsVoid && !HasNoReturn && CD.diag_NeverFallThroughOrReturn)
Ted Kremenekdbdbaaf2010-03-20 21:06:02 +0000353 S.Diag(Compound->getLBracLoc(),
354 CD.diag_NeverFallThroughOrReturn);
355 break;
356 case NeverFallThrough:
357 break;
358 }
359 }
360}
361
362//===----------------------------------------------------------------------===//
Ted Kremenek610068c2011-01-15 02:58:47 +0000363// -Wuninitialized
364//===----------------------------------------------------------------------===//
365
366namespace {
Ted Kremenek94b1b4d2011-01-21 19:41:41 +0000367struct SLocSort {
368 bool operator()(const DeclRefExpr *a, const DeclRefExpr *b) {
369 SourceLocation aLoc = a->getLocStart();
370 SourceLocation bLoc = b->getLocStart();
371 return aLoc.getRawEncoding() < bLoc.getRawEncoding();
372 }
373};
374
Ted Kremenek610068c2011-01-15 02:58:47 +0000375class UninitValsDiagReporter : public UninitVariablesHandler {
376 Sema &S;
Ted Kremenek94b1b4d2011-01-21 19:41:41 +0000377 typedef llvm::SmallVector<const DeclRefExpr *, 2> UsesVec;
378 typedef llvm::DenseMap<const VarDecl *, UsesVec*> UsesMap;
379 UsesMap *uses;
380
Ted Kremenek610068c2011-01-15 02:58:47 +0000381public:
Ted Kremenek94b1b4d2011-01-21 19:41:41 +0000382 UninitValsDiagReporter(Sema &S) : S(S), uses(0) {}
383 ~UninitValsDiagReporter() {
384 flushDiagnostics();
385 }
Ted Kremenek610068c2011-01-15 02:58:47 +0000386
387 void handleUseOfUninitVariable(const DeclRefExpr *dr, const VarDecl *vd) {
Ted Kremenek94b1b4d2011-01-21 19:41:41 +0000388 if (!uses)
389 uses = new UsesMap();
390
391 UsesVec *&vec = (*uses)[vd];
392 if (!vec)
393 vec = new UsesVec();
394
395 vec->push_back(dr);
396 }
397
398 void flushDiagnostics() {
399 if (!uses)
400 return;
401
402 for (UsesMap::iterator i = uses->begin(), e = uses->end(); i != e; ++i) {
403 const VarDecl *vd = i->first;
404 UsesVec *vec = i->second;
405
406 S.Diag(vd->getLocStart(), diag::warn_var_is_uninit)
407 << vd->getDeclName() << vd->getSourceRange();
408
409 // Sort the uses by their SourceLocations. While not strictly
410 // guaranteed to produce them in line/column order, this will provide
411 // a stable ordering.
412 std::sort(vec->begin(), vec->end(), SLocSort());
413
414 for (UsesVec::iterator vi = vec->begin(), ve = vec->end(); vi != ve; ++vi)
415 {
416 const DeclRefExpr *dr = *vi;
417 S.Diag(dr->getLocStart(), diag::note_var_is_uninit)
418 << vd->getDeclName() << dr->getSourceRange();
419 }
420 delete vec;
421 }
422 delete uses;
Ted Kremenek610068c2011-01-15 02:58:47 +0000423 }
424};
425}
426
427//===----------------------------------------------------------------------===//
Ted Kremenekdbdbaaf2010-03-20 21:06:02 +0000428// AnalysisBasedWarnings - Worker object used by Sema to execute analysis-based
429// warnings on a function, method, or block.
430//===----------------------------------------------------------------------===//
431
Ted Kremenekd064fdc2010-03-23 00:13:23 +0000432clang::sema::AnalysisBasedWarnings::Policy::Policy() {
433 enableCheckFallThrough = 1;
434 enableCheckUnreachable = 0;
435}
436
Ted Kremenekdbdbaaf2010-03-20 21:06:02 +0000437clang::sema::AnalysisBasedWarnings::AnalysisBasedWarnings(Sema &s) : S(s) {
438 Diagnostic &D = S.getDiagnostics();
Ted Kremenekd064fdc2010-03-23 00:13:23 +0000439 DefaultPolicy.enableCheckUnreachable = (unsigned)
Argyrios Kyrtzidis08274082010-12-15 18:44:22 +0000440 (D.getDiagnosticLevel(diag::warn_unreachable, SourceLocation()) !=
441 Diagnostic::Ignored);
Ted Kremenekdbdbaaf2010-03-20 21:06:02 +0000442}
443
Ted Kremenekd064fdc2010-03-23 00:13:23 +0000444void clang::sema::
445AnalysisBasedWarnings::IssueWarnings(sema::AnalysisBasedWarnings::Policy P,
Ted Kremenekb7e5f142010-04-08 18:51:44 +0000446 const Decl *D, QualType BlockTy) {
Ted Kremenekd064fdc2010-03-23 00:13:23 +0000447
Ted Kremenekdbdbaaf2010-03-20 21:06:02 +0000448 assert(BlockTy.isNull() || isa<BlockDecl>(D));
Ted Kremenekd068aab2010-03-20 21:11:09 +0000449
Ted Kremenekdbdbaaf2010-03-20 21:06:02 +0000450 // We avoid doing analysis-based warnings when there are errors for
451 // two reasons:
452 // (1) The CFGs often can't be constructed (if the body is invalid), so
453 // don't bother trying.
454 // (2) The code already has problems; running the analysis just takes more
455 // time.
Ted Kremenek99e81922010-04-30 21:49:25 +0000456 Diagnostic &Diags = S.getDiagnostics();
457
458 if (Diags.hasErrorOccurred() || Diags.hasFatalErrorOccurred())
Ted Kremenekd064fdc2010-03-23 00:13:23 +0000459 return;
460
461 // Do not do any analysis for declarations in system headers if we are
462 // going to just ignore them.
Ted Kremenek99e81922010-04-30 21:49:25 +0000463 if (Diags.getSuppressSystemWarnings() &&
Ted Kremenekd064fdc2010-03-23 00:13:23 +0000464 S.SourceMgr.isInSystemHeader(D->getLocation()))
465 return;
466
John McCalle0054f62010-08-25 05:56:39 +0000467 // For code in dependent contexts, we'll do this at instantiation time.
468 if (cast<DeclContext>(D)->isDependentContext())
469 return;
Ted Kremenekdbdbaaf2010-03-20 21:06:02 +0000470
471 const Stmt *Body = D->getBody();
472 assert(Body);
473
474 // Don't generate EH edges for CallExprs as we'd like to avoid the n^2
475 // explosion for destrutors that can result and the compile time hit.
Chandler Carrutheeef9242011-01-08 06:54:40 +0000476 AnalysisContext AC(D, 0, /*useUnoptimizedCFG=*/false, /*addehedges=*/false,
477 /*addImplicitDtors=*/true, /*addInitializers=*/true);
Ted Kremenekdbdbaaf2010-03-20 21:06:02 +0000478
479 // Warning: check missing 'return'
Ted Kremenekd064fdc2010-03-23 00:13:23 +0000480 if (P.enableCheckFallThrough) {
Ted Kremenekdbdbaaf2010-03-20 21:06:02 +0000481 const CheckFallThroughDiagnostics &CD =
482 (isa<BlockDecl>(D) ? CheckFallThroughDiagnostics::MakeForBlock()
Douglas Gregorca7eaee2010-04-16 23:28:44 +0000483 : CheckFallThroughDiagnostics::MakeForFunction(D));
Ted Kremenekdbdbaaf2010-03-20 21:06:02 +0000484 CheckFallThroughForBody(S, D, Body, BlockTy, CD, AC);
485 }
486
487 // Warning: check for unreachable code
Ted Kremenekb7e5f142010-04-08 18:51:44 +0000488 if (P.enableCheckUnreachable)
Ted Kremenekdbdbaaf2010-03-20 21:06:02 +0000489 CheckUnreachable(S, AC);
Ted Kremenek610068c2011-01-15 02:58:47 +0000490
491 if (Diags.getDiagnosticLevel(diag::warn_var_is_uninit, D->getLocStart())
492 != Diagnostic::Ignored) {
Ted Kremenekc21fed32011-01-18 21:18:58 +0000493 if (CFG *cfg = AC.getCFG()) {
494 UninitValsDiagReporter reporter(S);
495 runUninitializedVariablesAnalysis(*cast<DeclContext>(D), *cfg, reporter);
Ted Kremenek610068c2011-01-15 02:58:47 +0000496 }
497 }
Ted Kremenekdbdbaaf2010-03-20 21:06:02 +0000498}
John McCalle0054f62010-08-25 05:56:39 +0000499
500void clang::sema::
501AnalysisBasedWarnings::IssueWarnings(sema::AnalysisBasedWarnings::Policy P,
502 const BlockExpr *E) {
503 return IssueWarnings(P, E->getBlockDecl(), E->getType());
504}
505
506void clang::sema::
507AnalysisBasedWarnings::IssueWarnings(sema::AnalysisBasedWarnings::Policy P,
508 const ObjCMethodDecl *D) {
509 return IssueWarnings(P, D, QualType());
510}
511
512void clang::sema::
513AnalysisBasedWarnings::IssueWarnings(sema::AnalysisBasedWarnings::Policy P,
514 const FunctionDecl *D) {
515 return IssueWarnings(P, D, QualType());
516}