blob: 5f74343fbd95f2b8e0e215f38afb53fe8f3e4e8e [file] [log] [blame]
Ted Kremenek918fe842010-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 Gregorc3a6ade2010-08-12 20:07:10 +000016#include "clang/Sema/AnalysisBasedWarnings.h"
John McCall28a0cf72010-08-25 07:42:41 +000017#include "clang/AST/DeclCXX.h"
Chandler Carruth3a022472012-12-04 09:13:33 +000018#include "clang/AST/DeclObjC.h"
Ted Kremenekb8d8c4e2011-04-04 20:56:00 +000019#include "clang/AST/EvaluatedExprVisitor.h"
Chandler Carruth3a022472012-12-04 09:13:33 +000020#include "clang/AST/ExprCXX.h"
21#include "clang/AST/ExprObjC.h"
Jordan Rose76831c62012-10-11 16:10:19 +000022#include "clang/AST/ParentMap.h"
Richard Smith84837d52012-05-03 18:27:39 +000023#include "clang/AST/RecursiveASTVisitor.h"
Chandler Carruth3a022472012-12-04 09:13:33 +000024#include "clang/AST/StmtCXX.h"
25#include "clang/AST/StmtObjC.h"
26#include "clang/AST/StmtVisitor.h"
27#include "clang/Analysis/Analyses/CFGReachabilityAnalysis.h"
DeLesley Hutchins48a31762013-08-12 21:20:55 +000028#include "clang/Analysis/Analyses/Consumed.h"
Chandler Carruth3a022472012-12-04 09:13:33 +000029#include "clang/Analysis/Analyses/ReachableCode.h"
30#include "clang/Analysis/Analyses/ThreadSafety.h"
31#include "clang/Analysis/Analyses/UninitializedValues.h"
Ted Kremenek918fe842010-03-20 21:06:02 +000032#include "clang/Analysis/AnalysisContext.h"
33#include "clang/Analysis/CFG.h"
Ted Kremenek3427fac2011-02-23 01:52:04 +000034#include "clang/Analysis/CFGStmtMap.h"
Chandler Carruth3a022472012-12-04 09:13:33 +000035#include "clang/Basic/SourceLocation.h"
36#include "clang/Basic/SourceManager.h"
Chandler Carruth3a022472012-12-04 09:13:33 +000037#include "clang/Lex/Preprocessor.h"
38#include "clang/Sema/ScopeInfo.h"
39#include "clang/Sema/SemaInternal.h"
Alexander Kornienkoe61e5622012-09-28 22:24:03 +000040#include "llvm/ADT/ArrayRef.h"
Ted Kremenek918fe842010-03-20 21:06:02 +000041#include "llvm/ADT/BitVector.h"
Caitlin Sadowskiafbbd8e2011-08-23 18:46:34 +000042#include "llvm/ADT/FoldingSet.h"
43#include "llvm/ADT/ImmutableMap.h"
Enea Zaffanella2f40be72013-02-15 20:09:55 +000044#include "llvm/ADT/MapVector.h"
Caitlin Sadowskiafbbd8e2011-08-23 18:46:34 +000045#include "llvm/ADT/PostOrderIterator.h"
Dmitri Gribenko6743e042012-09-29 11:40:46 +000046#include "llvm/ADT/SmallString.h"
Caitlin Sadowskiafbbd8e2011-08-23 18:46:34 +000047#include "llvm/ADT/SmallVector.h"
Caitlin Sadowski0b3501c2011-09-09 16:04:02 +000048#include "llvm/ADT/StringRef.h"
Ted Kremenek918fe842010-03-20 21:06:02 +000049#include "llvm/Support/Casting.h"
Caitlin Sadowskiafbbd8e2011-08-23 18:46:34 +000050#include <algorithm>
Chandler Carruth3a022472012-12-04 09:13:33 +000051#include <deque>
Richard Smith84837d52012-05-03 18:27:39 +000052#include <iterator>
Caitlin Sadowskiafbbd8e2011-08-23 18:46:34 +000053#include <vector>
Ted Kremenek918fe842010-03-20 21:06:02 +000054
55using namespace clang;
56
57//===----------------------------------------------------------------------===//
58// Unreachable code analysis.
59//===----------------------------------------------------------------------===//
60
61namespace {
62 class UnreachableCodeHandler : public reachable_code::Callback {
63 Sema &S;
64 public:
65 UnreachableCodeHandler(Sema &s) : S(s) {}
66
Ted Kremenek1a8641c2014-03-15 01:26:32 +000067 void HandleUnreachable(reachable_code::UnreachableKind UK,
Ted Kremenekec3bbf42014-03-29 00:35:20 +000068 SourceLocation L,
69 SourceRange SilenceableCondVal,
70 SourceRange R1,
Craig Toppere14c0f82014-03-12 04:55:44 +000071 SourceRange R2) override {
Ted Kremenek1a8641c2014-03-15 01:26:32 +000072 unsigned diag = diag::warn_unreachable;
73 switch (UK) {
74 case reachable_code::UK_Break:
75 diag = diag::warn_unreachable_break;
76 break;
Ted Kremenekf3c93bb2014-03-20 06:07:30 +000077 case reachable_code::UK_Return:
Ted Kremenekad8753c2014-03-15 05:47:06 +000078 diag = diag::warn_unreachable_return;
Ted Kremenek1a8641c2014-03-15 01:26:32 +000079 break;
Ted Kremenek14210372014-03-21 06:02:36 +000080 case reachable_code::UK_Loop_Increment:
81 diag = diag::warn_unreachable_loop_increment;
82 break;
Ted Kremenek1a8641c2014-03-15 01:26:32 +000083 case reachable_code::UK_Other:
84 break;
85 }
86
87 S.Diag(L, diag) << R1 << R2;
Ted Kremenekec3bbf42014-03-29 00:35:20 +000088
89 SourceLocation Open = SilenceableCondVal.getBegin();
90 if (Open.isValid()) {
Alp Tokerb6cc5922014-05-03 03:45:55 +000091 SourceLocation Close = SilenceableCondVal.getEnd();
92 Close = S.getLocForEndOfToken(Close);
Ted Kremenekec3bbf42014-03-29 00:35:20 +000093 if (Close.isValid()) {
94 S.Diag(Open, diag::note_unreachable_silence)
95 << FixItHint::CreateInsertion(Open, "/* DISABLES CODE */ (")
96 << FixItHint::CreateInsertion(Close, ")");
97 }
98 }
Ted Kremenek918fe842010-03-20 21:06:02 +000099 }
100 };
Hans Wennborgdcfba332015-10-06 23:40:43 +0000101} // anonymous namespace
Ted Kremenek918fe842010-03-20 21:06:02 +0000102
103/// CheckUnreachable - Check for unreachable code.
Ted Kremenek81ce1c82011-10-24 01:32:45 +0000104static void CheckUnreachable(Sema &S, AnalysisDeclContext &AC) {
Ted Kremenekc1b28752014-02-25 22:35:37 +0000105 // As a heuristic prune all diagnostics not in the main file. Currently
106 // the majority of warnings in headers are false positives. These
107 // are largely caused by configuration state, e.g. preprocessor
108 // defined code, etc.
109 //
110 // Note that this is also a performance optimization. Analyzing
111 // headers many times can be expensive.
112 if (!S.getSourceManager().isInMainFile(AC.getDecl()->getLocStart()))
113 return;
114
Ted Kremenek918fe842010-03-20 21:06:02 +0000115 UnreachableCodeHandler UC(S);
Ted Kremenek2dd810a2014-03-09 08:13:49 +0000116 reachable_code::FindUnreachableCode(AC, S.getPreprocessor(), UC);
Ted Kremenek918fe842010-03-20 21:06:02 +0000117}
118
Benjamin Kramer3a002252015-02-16 16:53:12 +0000119namespace {
Richard Trieuf935b562014-04-05 05:17:01 +0000120/// \brief Warn on logical operator errors in CFGBuilder
121class LogicalErrorHandler : public CFGCallback {
122 Sema &S;
123
124public:
125 LogicalErrorHandler(Sema &S) : CFGCallback(), S(S) {}
126
127 static bool HasMacroID(const Expr *E) {
128 if (E->getExprLoc().isMacroID())
129 return true;
130
131 // Recurse to children.
Benjamin Kramer642f1732015-07-02 21:03:14 +0000132 for (const Stmt *SubStmt : E->children())
133 if (const Expr *SubExpr = dyn_cast_or_null<Expr>(SubStmt))
134 if (HasMacroID(SubExpr))
135 return true;
Richard Trieuf935b562014-04-05 05:17:01 +0000136
137 return false;
138 }
139
Alexander Kornienko34eb2072015-04-11 02:00:23 +0000140 void compareAlwaysTrue(const BinaryOperator *B, bool isAlwaysTrue) override {
Richard Trieuf935b562014-04-05 05:17:01 +0000141 if (HasMacroID(B))
142 return;
143
144 SourceRange DiagRange = B->getSourceRange();
145 S.Diag(B->getExprLoc(), diag::warn_tautological_overlap_comparison)
146 << DiagRange << isAlwaysTrue;
147 }
Jordan Rose7afd71e2014-05-20 17:31:11 +0000148
Alexander Kornienko34eb2072015-04-11 02:00:23 +0000149 void compareBitwiseEquality(const BinaryOperator *B,
150 bool isAlwaysTrue) override {
Jordan Rose7afd71e2014-05-20 17:31:11 +0000151 if (HasMacroID(B))
152 return;
153
154 SourceRange DiagRange = B->getSourceRange();
155 S.Diag(B->getExprLoc(), diag::warn_comparison_bitwise_always)
156 << DiagRange << isAlwaysTrue;
157 }
Richard Trieuf935b562014-04-05 05:17:01 +0000158};
Hans Wennborgdcfba332015-10-06 23:40:43 +0000159} // anonymous namespace
Richard Trieuf935b562014-04-05 05:17:01 +0000160
Ted Kremenek918fe842010-03-20 21:06:02 +0000161//===----------------------------------------------------------------------===//
Richard Trieu2f024f42013-12-21 02:33:43 +0000162// Check for infinite self-recursion in functions
163//===----------------------------------------------------------------------===//
164
Richard Trieu6995de92015-08-21 03:43:09 +0000165// Returns true if the function is called anywhere within the CFGBlock.
166// For member functions, the additional condition of being call from the
167// this pointer is required.
Duncan P. N. Exon Smithf0eafc72015-07-23 20:11:47 +0000168static bool hasRecursiveCallInPath(const FunctionDecl *FD, CFGBlock &Block) {
Richard Trieu6995de92015-08-21 03:43:09 +0000169 // Process all the Stmt's in this block to find any calls to FD.
Duncan P. N. Exon Smithf0eafc72015-07-23 20:11:47 +0000170 for (const auto &B : Block) {
171 if (B.getKind() != CFGElement::Statement)
172 continue;
173
174 const CallExpr *CE = dyn_cast<CallExpr>(B.getAs<CFGStmt>()->getStmt());
175 if (!CE || !CE->getCalleeDecl() ||
176 CE->getCalleeDecl()->getCanonicalDecl() != FD)
177 continue;
178
179 // Skip function calls which are qualified with a templated class.
180 if (const DeclRefExpr *DRE =
181 dyn_cast<DeclRefExpr>(CE->getCallee()->IgnoreParenImpCasts())) {
182 if (NestedNameSpecifier *NNS = DRE->getQualifier()) {
183 if (NNS->getKind() == NestedNameSpecifier::TypeSpec &&
184 isa<TemplateSpecializationType>(NNS->getAsType())) {
185 continue;
186 }
187 }
188 }
189
190 const CXXMemberCallExpr *MCE = dyn_cast<CXXMemberCallExpr>(CE);
191 if (!MCE || isa<CXXThisExpr>(MCE->getImplicitObjectArgument()) ||
192 !MCE->getMethodDecl()->isVirtual())
193 return true;
194 }
195 return false;
196}
197
Richard Trieu6995de92015-08-21 03:43:09 +0000198// All blocks are in one of three states. States are ordered so that blocks
199// can only move to higher states.
200enum RecursiveState {
201 FoundNoPath,
202 FoundPath,
203 FoundPathWithNoRecursiveCall
204};
205
206// Returns true if there exists a path to the exit block and every path
207// to the exit block passes through a call to FD.
208static bool checkForRecursiveFunctionCall(const FunctionDecl *FD, CFG *cfg) {
209
210 const unsigned ExitID = cfg->getExit().getBlockID();
211
212 // Mark all nodes as FoundNoPath, then set the status of the entry block.
213 SmallVector<RecursiveState, 16> States(cfg->getNumBlockIDs(), FoundNoPath);
214 States[cfg->getEntry().getBlockID()] = FoundPathWithNoRecursiveCall;
215
216 // Make the processing stack and seed it with the entry block.
217 SmallVector<CFGBlock *, 16> Stack;
218 Stack.push_back(&cfg->getEntry());
Richard Trieu2f024f42013-12-21 02:33:43 +0000219
Duncan P. N. Exon Smithdccc30a2015-07-23 20:15:50 +0000220 while (!Stack.empty()) {
Richard Trieu6995de92015-08-21 03:43:09 +0000221 CFGBlock *CurBlock = Stack.back();
Duncan P. N. Exon Smithdccc30a2015-07-23 20:15:50 +0000222 Stack.pop_back();
Richard Trieu2f024f42013-12-21 02:33:43 +0000223
Richard Trieu6995de92015-08-21 03:43:09 +0000224 unsigned ID = CurBlock->getBlockID();
225 RecursiveState CurState = States[ID];
Duncan P. N. Exon Smithdccc30a2015-07-23 20:15:50 +0000226
227 if (CurState == FoundPathWithNoRecursiveCall) {
228 // Found a path to the exit node without a recursive call.
229 if (ExitID == ID)
Richard Trieu6995de92015-08-21 03:43:09 +0000230 return false;
Duncan P. N. Exon Smithdccc30a2015-07-23 20:15:50 +0000231
Richard Trieu6995de92015-08-21 03:43:09 +0000232 // Only change state if the block has a recursive call.
233 if (hasRecursiveCallInPath(FD, *CurBlock))
Duncan P. N. Exon Smithdccc30a2015-07-23 20:15:50 +0000234 CurState = FoundPath;
235 }
236
Richard Trieu6995de92015-08-21 03:43:09 +0000237 // Loop over successor blocks and add them to the Stack if their state
238 // changes.
239 for (auto I = CurBlock->succ_begin(), E = CurBlock->succ_end(); I != E; ++I)
240 if (*I) {
241 unsigned next_ID = (*I)->getBlockID();
242 if (States[next_ID] < CurState) {
243 States[next_ID] = CurState;
244 Stack.push_back(*I);
245 }
246 }
Richard Trieu2f024f42013-12-21 02:33:43 +0000247 }
Richard Trieu6995de92015-08-21 03:43:09 +0000248
249 // Return true if the exit node is reachable, and only reachable through
250 // a recursive call.
251 return States[ExitID] == FoundPath;
Richard Trieu2f024f42013-12-21 02:33:43 +0000252}
253
254static void checkRecursiveFunction(Sema &S, const FunctionDecl *FD,
Richard Trieu6995de92015-08-21 03:43:09 +0000255 const Stmt *Body, AnalysisDeclContext &AC) {
Richard Trieu2f024f42013-12-21 02:33:43 +0000256 FD = FD->getCanonicalDecl();
257
258 // Only run on non-templated functions and non-templated members of
259 // templated classes.
260 if (FD->getTemplatedKind() != FunctionDecl::TK_NonTemplate &&
261 FD->getTemplatedKind() != FunctionDecl::TK_MemberSpecialization)
262 return;
263
264 CFG *cfg = AC.getCFG();
Craig Topperc3ec1492014-05-26 06:22:03 +0000265 if (!cfg) return;
Richard Trieu2f024f42013-12-21 02:33:43 +0000266
267 // If the exit block is unreachable, skip processing the function.
268 if (cfg->getExit().pred_empty())
269 return;
270
Richard Trieu6995de92015-08-21 03:43:09 +0000271 // Emit diagnostic if a recursive function call is detected for all paths.
272 if (checkForRecursiveFunctionCall(FD, cfg))
Richard Trieu2f024f42013-12-21 02:33:43 +0000273 S.Diag(Body->getLocStart(), diag::warn_infinite_recursive_function);
274}
275
276//===----------------------------------------------------------------------===//
Ted Kremenek918fe842010-03-20 21:06:02 +0000277// Check for missing return value.
278//===----------------------------------------------------------------------===//
279
John McCall5c6ec8c2010-05-16 09:34:11 +0000280enum ControlFlowKind {
281 UnknownFallThrough,
282 NeverFallThrough,
283 MaybeFallThrough,
284 AlwaysFallThrough,
285 NeverFallThroughOrReturn
286};
Ted Kremenek918fe842010-03-20 21:06:02 +0000287
288/// CheckFallThrough - Check that we don't fall off the end of a
289/// Statement that should return a value.
290///
Sylvestre Ledru33b5baf2012-09-27 10:16:10 +0000291/// \returns AlwaysFallThrough iff we always fall off the end of the statement,
292/// MaybeFallThrough iff we might or might not fall off the end,
293/// NeverFallThroughOrReturn iff we never fall off the end of the statement or
294/// return. We assume NeverFallThrough iff we never fall off the end of the
Ted Kremenek918fe842010-03-20 21:06:02 +0000295/// statement but we may return. We assume that functions not marked noreturn
296/// will return.
Ted Kremenek81ce1c82011-10-24 01:32:45 +0000297static ControlFlowKind CheckFallThrough(AnalysisDeclContext &AC) {
Ted Kremenek918fe842010-03-20 21:06:02 +0000298 CFG *cfg = AC.getCFG();
Craig Topperc3ec1492014-05-26 06:22:03 +0000299 if (!cfg) return UnknownFallThrough;
Ted Kremenek918fe842010-03-20 21:06:02 +0000300
301 // The CFG leaves in dead things, and we don't want the dead code paths to
302 // confuse us, so we mark all live things first.
Ted Kremenek918fe842010-03-20 21:06:02 +0000303 llvm::BitVector live(cfg->getNumBlockIDs());
Ted Kremenekbd913712011-08-23 23:05:11 +0000304 unsigned count = reachable_code::ScanReachableFromBlock(&cfg->getEntry(),
Ted Kremenek918fe842010-03-20 21:06:02 +0000305 live);
306
307 bool AddEHEdges = AC.getAddEHEdges();
308 if (!AddEHEdges && count != cfg->getNumBlockIDs())
309 // When there are things remaining dead, and we didn't add EH edges
310 // from CallExprs to the catch clauses, we have to go back and
311 // mark them as live.
Aaron Ballmane5195222014-05-15 20:50:47 +0000312 for (const auto *B : *cfg) {
313 if (!live[B->getBlockID()]) {
314 if (B->pred_begin() == B->pred_end()) {
315 if (B->getTerminator() && isa<CXXTryStmt>(B->getTerminator()))
Ted Kremenek918fe842010-03-20 21:06:02 +0000316 // When not adding EH edges from calls, catch clauses
317 // can otherwise seem dead. Avoid noting them as dead.
Aaron Ballmane5195222014-05-15 20:50:47 +0000318 count += reachable_code::ScanReachableFromBlock(B, live);
Ted Kremenek918fe842010-03-20 21:06:02 +0000319 continue;
320 }
321 }
322 }
323
324 // Now we know what is live, we check the live precessors of the exit block
325 // and look for fall through paths, being careful to ignore normal returns,
326 // and exceptional paths.
327 bool HasLiveReturn = false;
328 bool HasFakeEdge = false;
329 bool HasPlainEdge = false;
330 bool HasAbnormalEdge = false;
Ted Kremenek50205742010-09-09 00:06:07 +0000331
332 // Ignore default cases that aren't likely to be reachable because all
333 // enums in a switch(X) have explicit case statements.
334 CFGBlock::FilterOptions FO;
335 FO.IgnoreDefaultsWithCoveredEnums = 1;
336
337 for (CFGBlock::filtered_pred_iterator
338 I = cfg->getExit().filtered_pred_start_end(FO); I.hasMore(); ++I) {
339 const CFGBlock& B = **I;
Ted Kremenek918fe842010-03-20 21:06:02 +0000340 if (!live[B.getBlockID()])
341 continue;
Ted Kremenek5d068492011-01-26 04:49:52 +0000342
Chandler Carruth03faf782011-09-13 09:53:58 +0000343 // Skip blocks which contain an element marked as no-return. They don't
344 // represent actually viable edges into the exit block, so mark them as
345 // abnormal.
346 if (B.hasNoReturnElement()) {
347 HasAbnormalEdge = true;
348 continue;
349 }
350
Ted Kremenek5d068492011-01-26 04:49:52 +0000351 // Destructors can appear after the 'return' in the CFG. This is
352 // normal. We need to look pass the destructors for the return
353 // statement (if it exists).
354 CFGBlock::const_reverse_iterator ri = B.rbegin(), re = B.rend();
Ted Kremeneke06a55c2011-03-02 20:32:29 +0000355
Chandler Carruth03faf782011-09-13 09:53:58 +0000356 for ( ; ri != re ; ++ri)
David Blaikie2a01f5d2013-02-21 20:58:29 +0000357 if (ri->getAs<CFGStmt>())
Ted Kremenek5d068492011-01-26 04:49:52 +0000358 break;
Chandler Carruth03faf782011-09-13 09:53:58 +0000359
Ted Kremenek5d068492011-01-26 04:49:52 +0000360 // No more CFGElements in the block?
361 if (ri == re) {
Ted Kremenek918fe842010-03-20 21:06:02 +0000362 if (B.getTerminator() && isa<CXXTryStmt>(B.getTerminator())) {
363 HasAbnormalEdge = true;
364 continue;
365 }
Ted Kremenek918fe842010-03-20 21:06:02 +0000366 // A labeled empty statement, or the entry block...
367 HasPlainEdge = true;
368 continue;
369 }
Ted Kremenekebe62602011-01-25 22:50:47 +0000370
David Blaikie2a01f5d2013-02-21 20:58:29 +0000371 CFGStmt CS = ri->castAs<CFGStmt>();
Ted Kremenekadfb4452011-08-23 23:05:04 +0000372 const Stmt *S = CS.getStmt();
Ted Kremenek918fe842010-03-20 21:06:02 +0000373 if (isa<ReturnStmt>(S)) {
374 HasLiveReturn = true;
375 continue;
376 }
377 if (isa<ObjCAtThrowStmt>(S)) {
378 HasFakeEdge = true;
379 continue;
380 }
381 if (isa<CXXThrowExpr>(S)) {
382 HasFakeEdge = true;
383 continue;
384 }
Chad Rosier32503022012-06-11 20:47:18 +0000385 if (isa<MSAsmStmt>(S)) {
386 // TODO: Verify this is correct.
387 HasFakeEdge = true;
388 HasLiveReturn = true;
389 continue;
390 }
Ted Kremenek918fe842010-03-20 21:06:02 +0000391 if (isa<CXXTryStmt>(S)) {
392 HasAbnormalEdge = true;
393 continue;
394 }
Chandler Carruth03faf782011-09-13 09:53:58 +0000395 if (std::find(B.succ_begin(), B.succ_end(), &cfg->getExit())
396 == B.succ_end()) {
397 HasAbnormalEdge = true;
398 continue;
Ted Kremenek918fe842010-03-20 21:06:02 +0000399 }
Chandler Carruth03faf782011-09-13 09:53:58 +0000400
401 HasPlainEdge = true;
Ted Kremenek918fe842010-03-20 21:06:02 +0000402 }
403 if (!HasPlainEdge) {
404 if (HasLiveReturn)
405 return NeverFallThrough;
406 return NeverFallThroughOrReturn;
407 }
408 if (HasAbnormalEdge || HasFakeEdge || HasLiveReturn)
409 return MaybeFallThrough;
410 // This says AlwaysFallThrough for calls to functions that are not marked
411 // noreturn, that don't return. If people would like this warning to be more
412 // accurate, such functions should be marked as noreturn.
413 return AlwaysFallThrough;
414}
415
Dan Gohman28ade552010-07-26 21:25:24 +0000416namespace {
417
Ted Kremenek918fe842010-03-20 21:06:02 +0000418struct CheckFallThroughDiagnostics {
419 unsigned diag_MaybeFallThrough_HasNoReturn;
420 unsigned diag_MaybeFallThrough_ReturnsNonVoid;
421 unsigned diag_AlwaysFallThrough_HasNoReturn;
422 unsigned diag_AlwaysFallThrough_ReturnsNonVoid;
423 unsigned diag_NeverFallThroughOrReturn;
Douglas Gregorcf11eb72012-02-15 16:20:15 +0000424 enum { Function, Block, Lambda } funMode;
Argyrios Kyrtzidis1cb0de12010-12-15 18:44:22 +0000425 SourceLocation FuncLoc;
Ted Kremenek0b405322010-03-23 00:13:23 +0000426
Douglas Gregor24f27692010-04-16 23:28:44 +0000427 static CheckFallThroughDiagnostics MakeForFunction(const Decl *Func) {
Ted Kremenek918fe842010-03-20 21:06:02 +0000428 CheckFallThroughDiagnostics D;
Argyrios Kyrtzidis1cb0de12010-12-15 18:44:22 +0000429 D.FuncLoc = Func->getLocation();
Ted Kremenek918fe842010-03-20 21:06:02 +0000430 D.diag_MaybeFallThrough_HasNoReturn =
431 diag::warn_falloff_noreturn_function;
432 D.diag_MaybeFallThrough_ReturnsNonVoid =
433 diag::warn_maybe_falloff_nonvoid_function;
434 D.diag_AlwaysFallThrough_HasNoReturn =
435 diag::warn_falloff_noreturn_function;
436 D.diag_AlwaysFallThrough_ReturnsNonVoid =
437 diag::warn_falloff_nonvoid_function;
Douglas Gregor24f27692010-04-16 23:28:44 +0000438
439 // Don't suggest that virtual functions be marked "noreturn", since they
440 // might be overridden by non-noreturn functions.
441 bool isVirtualMethod = false;
442 if (const CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(Func))
443 isVirtualMethod = Method->isVirtual();
444
Douglas Gregor0de57202011-10-10 18:15:57 +0000445 // Don't suggest that template instantiations be marked "noreturn"
446 bool isTemplateInstantiation = false;
Ted Kremenek85825ae2011-12-01 00:59:17 +0000447 if (const FunctionDecl *Function = dyn_cast<FunctionDecl>(Func))
448 isTemplateInstantiation = Function->isTemplateInstantiation();
Douglas Gregor0de57202011-10-10 18:15:57 +0000449
450 if (!isVirtualMethod && !isTemplateInstantiation)
Douglas Gregor24f27692010-04-16 23:28:44 +0000451 D.diag_NeverFallThroughOrReturn =
452 diag::warn_suggest_noreturn_function;
453 else
454 D.diag_NeverFallThroughOrReturn = 0;
455
Douglas Gregorcf11eb72012-02-15 16:20:15 +0000456 D.funMode = Function;
Ted Kremenek918fe842010-03-20 21:06:02 +0000457 return D;
458 }
Ted Kremenek0b405322010-03-23 00:13:23 +0000459
Ted Kremenek918fe842010-03-20 21:06:02 +0000460 static CheckFallThroughDiagnostics MakeForBlock() {
461 CheckFallThroughDiagnostics D;
462 D.diag_MaybeFallThrough_HasNoReturn =
463 diag::err_noreturn_block_has_return_expr;
464 D.diag_MaybeFallThrough_ReturnsNonVoid =
465 diag::err_maybe_falloff_nonvoid_block;
466 D.diag_AlwaysFallThrough_HasNoReturn =
467 diag::err_noreturn_block_has_return_expr;
468 D.diag_AlwaysFallThrough_ReturnsNonVoid =
469 diag::err_falloff_nonvoid_block;
Fariborz Jahanian5ce22792014-04-03 23:06:35 +0000470 D.diag_NeverFallThroughOrReturn = 0;
Douglas Gregorcf11eb72012-02-15 16:20:15 +0000471 D.funMode = Block;
472 return D;
473 }
474
475 static CheckFallThroughDiagnostics MakeForLambda() {
476 CheckFallThroughDiagnostics D;
477 D.diag_MaybeFallThrough_HasNoReturn =
478 diag::err_noreturn_lambda_has_return_expr;
479 D.diag_MaybeFallThrough_ReturnsNonVoid =
480 diag::warn_maybe_falloff_nonvoid_lambda;
481 D.diag_AlwaysFallThrough_HasNoReturn =
482 diag::err_noreturn_lambda_has_return_expr;
483 D.diag_AlwaysFallThrough_ReturnsNonVoid =
484 diag::warn_falloff_nonvoid_lambda;
485 D.diag_NeverFallThroughOrReturn = 0;
486 D.funMode = Lambda;
Ted Kremenek918fe842010-03-20 21:06:02 +0000487 return D;
488 }
Ted Kremenek0b405322010-03-23 00:13:23 +0000489
David Blaikie9c902b52011-09-25 23:23:43 +0000490 bool checkDiagnostics(DiagnosticsEngine &D, bool ReturnsVoid,
Ted Kremenek918fe842010-03-20 21:06:02 +0000491 bool HasNoReturn) const {
Douglas Gregorcf11eb72012-02-15 16:20:15 +0000492 if (funMode == Function) {
Argyrios Kyrtzidis1cb0de12010-12-15 18:44:22 +0000493 return (ReturnsVoid ||
Alp Tokerd4a3f0e2014-06-15 23:30:39 +0000494 D.isIgnored(diag::warn_maybe_falloff_nonvoid_function,
495 FuncLoc)) &&
496 (!HasNoReturn ||
497 D.isIgnored(diag::warn_noreturn_function_has_return_expr,
498 FuncLoc)) &&
499 (!ReturnsVoid ||
500 D.isIgnored(diag::warn_suggest_noreturn_block, FuncLoc));
Ted Kremenek918fe842010-03-20 21:06:02 +0000501 }
Ted Kremenek0b405322010-03-23 00:13:23 +0000502
Douglas Gregorcf11eb72012-02-15 16:20:15 +0000503 // For blocks / lambdas.
Fariborz Jahanian5ce22792014-04-03 23:06:35 +0000504 return ReturnsVoid && !HasNoReturn;
Ted Kremenek918fe842010-03-20 21:06:02 +0000505 }
506};
507
Hans Wennborgdcfba332015-10-06 23:40:43 +0000508} // anonymous namespace
Dan Gohman28ade552010-07-26 21:25:24 +0000509
Ted Kremenek918fe842010-03-20 21:06:02 +0000510/// CheckFallThroughForFunctionDef - Check that we don't fall off the end of a
511/// function that should return a value. Check that we don't fall off the end
512/// of a noreturn function. We assume that functions and blocks not marked
513/// noreturn will return.
514static void CheckFallThroughForBody(Sema &S, const Decl *D, const Stmt *Body,
Ted Kremenek1767a272011-02-23 01:51:48 +0000515 const BlockExpr *blkExpr,
Ted Kremenek918fe842010-03-20 21:06:02 +0000516 const CheckFallThroughDiagnostics& CD,
Ted Kremenek81ce1c82011-10-24 01:32:45 +0000517 AnalysisDeclContext &AC) {
Ted Kremenek918fe842010-03-20 21:06:02 +0000518
519 bool ReturnsVoid = false;
520 bool HasNoReturn = false;
521
522 if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) {
Alp Toker314cc812014-01-25 16:55:45 +0000523 ReturnsVoid = FD->getReturnType()->isVoidType();
Richard Smith10876ef2013-01-17 01:30:42 +0000524 HasNoReturn = FD->isNoReturn();
Ted Kremenek918fe842010-03-20 21:06:02 +0000525 }
526 else if (const ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(D)) {
Alp Toker314cc812014-01-25 16:55:45 +0000527 ReturnsVoid = MD->getReturnType()->isVoidType();
Ted Kremenek918fe842010-03-20 21:06:02 +0000528 HasNoReturn = MD->hasAttr<NoReturnAttr>();
529 }
530 else if (isa<BlockDecl>(D)) {
Ted Kremenek1767a272011-02-23 01:51:48 +0000531 QualType BlockTy = blkExpr->getType();
Ted Kremenek0b405322010-03-23 00:13:23 +0000532 if (const FunctionType *FT =
Ted Kremenek918fe842010-03-20 21:06:02 +0000533 BlockTy->getPointeeType()->getAs<FunctionType>()) {
Alp Toker314cc812014-01-25 16:55:45 +0000534 if (FT->getReturnType()->isVoidType())
Ted Kremenek918fe842010-03-20 21:06:02 +0000535 ReturnsVoid = true;
536 if (FT->getNoReturnAttr())
537 HasNoReturn = true;
538 }
539 }
540
David Blaikie9c902b52011-09-25 23:23:43 +0000541 DiagnosticsEngine &Diags = S.getDiagnostics();
Ted Kremenek918fe842010-03-20 21:06:02 +0000542
543 // Short circuit for compilation speed.
544 if (CD.checkDiagnostics(Diags, ReturnsVoid, HasNoReturn))
545 return;
Ted Kremenek0b405322010-03-23 00:13:23 +0000546
Aaron Ballmanb2e2c1b2014-10-24 13:19:19 +0000547 SourceLocation LBrace = Body->getLocStart(), RBrace = Body->getLocEnd();
548 // Either in a function body compound statement, or a function-try-block.
549 switch (CheckFallThrough(AC)) {
550 case UnknownFallThrough:
551 break;
John McCall5c6ec8c2010-05-16 09:34:11 +0000552
Aaron Ballmanb2e2c1b2014-10-24 13:19:19 +0000553 case MaybeFallThrough:
554 if (HasNoReturn)
555 S.Diag(RBrace, CD.diag_MaybeFallThrough_HasNoReturn);
556 else if (!ReturnsVoid)
557 S.Diag(RBrace, CD.diag_MaybeFallThrough_ReturnsNonVoid);
558 break;
559 case AlwaysFallThrough:
560 if (HasNoReturn)
561 S.Diag(RBrace, CD.diag_AlwaysFallThrough_HasNoReturn);
562 else if (!ReturnsVoid)
563 S.Diag(RBrace, CD.diag_AlwaysFallThrough_ReturnsNonVoid);
564 break;
565 case NeverFallThroughOrReturn:
566 if (ReturnsVoid && !HasNoReturn && CD.diag_NeverFallThroughOrReturn) {
567 if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) {
568 S.Diag(LBrace, CD.diag_NeverFallThroughOrReturn) << 0 << FD;
569 } else if (const ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(D)) {
570 S.Diag(LBrace, CD.diag_NeverFallThroughOrReturn) << 1 << MD;
571 } else {
572 S.Diag(LBrace, CD.diag_NeverFallThroughOrReturn);
Chandler Carruthc841b6e2011-08-31 09:01:53 +0000573 }
Aaron Ballmanb2e2c1b2014-10-24 13:19:19 +0000574 }
575 break;
576 case NeverFallThrough:
577 break;
Ted Kremenek918fe842010-03-20 21:06:02 +0000578 }
579}
580
581//===----------------------------------------------------------------------===//
Ted Kremenekb749a6d2011-01-15 02:58:47 +0000582// -Wuninitialized
583//===----------------------------------------------------------------------===//
584
Ted Kremenekb8d8c4e2011-04-04 20:56:00 +0000585namespace {
Chandler Carruth4e021822011-04-05 06:48:00 +0000586/// ContainsReference - A visitor class to search for references to
587/// a particular declaration (the needle) within any evaluated component of an
588/// expression (recursively).
Scott Douglass503fc392015-06-10 13:53:15 +0000589class ContainsReference : public ConstEvaluatedExprVisitor<ContainsReference> {
Chandler Carruth4e021822011-04-05 06:48:00 +0000590 bool FoundReference;
591 const DeclRefExpr *Needle;
592
Ted Kremenekb8d8c4e2011-04-04 20:56:00 +0000593public:
Scott Douglass503fc392015-06-10 13:53:15 +0000594 typedef ConstEvaluatedExprVisitor<ContainsReference> Inherited;
Chandler Carruth4e021822011-04-05 06:48:00 +0000595
Scott Douglass503fc392015-06-10 13:53:15 +0000596 ContainsReference(ASTContext &Context, const DeclRefExpr *Needle)
597 : Inherited(Context), FoundReference(false), Needle(Needle) {}
598
599 void VisitExpr(const Expr *E) {
Ted Kremenekb8d8c4e2011-04-04 20:56:00 +0000600 // Stop evaluating if we already have a reference.
Chandler Carruth4e021822011-04-05 06:48:00 +0000601 if (FoundReference)
Ted Kremenekb8d8c4e2011-04-04 20:56:00 +0000602 return;
Chandler Carruth4e021822011-04-05 06:48:00 +0000603
Scott Douglass503fc392015-06-10 13:53:15 +0000604 Inherited::VisitExpr(E);
Ted Kremenekb8d8c4e2011-04-04 20:56:00 +0000605 }
Chandler Carruth4e021822011-04-05 06:48:00 +0000606
Scott Douglass503fc392015-06-10 13:53:15 +0000607 void VisitDeclRefExpr(const DeclRefExpr *E) {
Chandler Carruth4e021822011-04-05 06:48:00 +0000608 if (E == Needle)
609 FoundReference = true;
610 else
Scott Douglass503fc392015-06-10 13:53:15 +0000611 Inherited::VisitDeclRefExpr(E);
Ted Kremenekb8d8c4e2011-04-04 20:56:00 +0000612 }
Chandler Carruth4e021822011-04-05 06:48:00 +0000613
614 bool doesContainReference() const { return FoundReference; }
Ted Kremenekb8d8c4e2011-04-04 20:56:00 +0000615};
Hans Wennborgdcfba332015-10-06 23:40:43 +0000616} // anonymous namespace
Ted Kremenekb8d8c4e2011-04-04 20:56:00 +0000617
David Blaikiee5f9a9e2011-09-10 05:35:08 +0000618static bool SuggestInitializationFixit(Sema &S, const VarDecl *VD) {
Fariborz Jahanian429fadb2012-03-08 00:22:50 +0000619 QualType VariableTy = VD->getType().getCanonicalType();
620 if (VariableTy->isBlockPointerType() &&
621 !VD->hasAttr<BlocksAttr>()) {
Nico Weber3c68ee92014-07-08 23:46:20 +0000622 S.Diag(VD->getLocation(), diag::note_block_var_fixit_add_initialization)
623 << VD->getDeclName()
624 << FixItHint::CreateInsertion(VD->getLocation(), "__block ");
Fariborz Jahanian429fadb2012-03-08 00:22:50 +0000625 return true;
626 }
Richard Smithf7ec86a2013-09-20 00:27:40 +0000627
David Blaikiee5f9a9e2011-09-10 05:35:08 +0000628 // Don't issue a fixit if there is already an initializer.
629 if (VD->getInit())
630 return false;
Richard Trieu2cdcf822012-05-03 01:09:59 +0000631
632 // Don't suggest a fixit inside macros.
633 if (VD->getLocEnd().isMacroID())
634 return false;
635
Alp Tokerb6cc5922014-05-03 03:45:55 +0000636 SourceLocation Loc = S.getLocForEndOfToken(VD->getLocEnd());
Richard Smithf7ec86a2013-09-20 00:27:40 +0000637
638 // Suggest possible initialization (if any).
639 std::string Init = S.getFixItZeroInitializerForType(VariableTy, Loc);
640 if (Init.empty())
641 return false;
642
Richard Smith8d06f422012-01-12 23:53:29 +0000643 S.Diag(Loc, diag::note_var_fixit_add_initialization) << VD->getDeclName()
644 << FixItHint::CreateInsertion(Loc, Init);
645 return true;
David Blaikiee5f9a9e2011-09-10 05:35:08 +0000646}
647
Richard Smith1bb8edb82012-05-26 06:20:46 +0000648/// Create a fixit to remove an if-like statement, on the assumption that its
649/// condition is CondVal.
650static void CreateIfFixit(Sema &S, const Stmt *If, const Stmt *Then,
651 const Stmt *Else, bool CondVal,
652 FixItHint &Fixit1, FixItHint &Fixit2) {
653 if (CondVal) {
654 // If condition is always true, remove all but the 'then'.
655 Fixit1 = FixItHint::CreateRemoval(
656 CharSourceRange::getCharRange(If->getLocStart(),
657 Then->getLocStart()));
658 if (Else) {
Craig Topper07fa1762015-11-15 02:31:46 +0000659 SourceLocation ElseKwLoc = S.getLocForEndOfToken(Then->getLocEnd());
Richard Smith1bb8edb82012-05-26 06:20:46 +0000660 Fixit2 = FixItHint::CreateRemoval(
661 SourceRange(ElseKwLoc, Else->getLocEnd()));
662 }
663 } else {
664 // If condition is always false, remove all but the 'else'.
665 if (Else)
666 Fixit1 = FixItHint::CreateRemoval(
667 CharSourceRange::getCharRange(If->getLocStart(),
668 Else->getLocStart()));
669 else
670 Fixit1 = FixItHint::CreateRemoval(If->getSourceRange());
671 }
672}
673
674/// DiagUninitUse -- Helper function to produce a diagnostic for an
675/// uninitialized use of a variable.
676static void DiagUninitUse(Sema &S, const VarDecl *VD, const UninitUse &Use,
677 bool IsCapturedByBlock) {
678 bool Diagnosed = false;
679
Richard Smithba8071e2013-09-12 18:49:10 +0000680 switch (Use.getKind()) {
681 case UninitUse::Always:
682 S.Diag(Use.getUser()->getLocStart(), diag::warn_uninit_var)
683 << VD->getDeclName() << IsCapturedByBlock
684 << Use.getUser()->getSourceRange();
685 return;
686
687 case UninitUse::AfterDecl:
688 case UninitUse::AfterCall:
689 S.Diag(VD->getLocation(), diag::warn_sometimes_uninit_var)
690 << VD->getDeclName() << IsCapturedByBlock
691 << (Use.getKind() == UninitUse::AfterDecl ? 4 : 5)
692 << const_cast<DeclContext*>(VD->getLexicalDeclContext())
693 << VD->getSourceRange();
694 S.Diag(Use.getUser()->getLocStart(), diag::note_uninit_var_use)
695 << IsCapturedByBlock << Use.getUser()->getSourceRange();
696 return;
697
698 case UninitUse::Maybe:
699 case UninitUse::Sometimes:
700 // Carry on to report sometimes-uninitialized branches, if possible,
701 // or a 'may be used uninitialized' diagnostic otherwise.
702 break;
703 }
704
Richard Smith1bb8edb82012-05-26 06:20:46 +0000705 // Diagnose each branch which leads to a sometimes-uninitialized use.
Richard Smith4323bf82012-05-25 02:17:09 +0000706 for (UninitUse::branch_iterator I = Use.branch_begin(), E = Use.branch_end();
707 I != E; ++I) {
Richard Smith1bb8edb82012-05-26 06:20:46 +0000708 assert(Use.getKind() == UninitUse::Sometimes);
709
710 const Expr *User = Use.getUser();
Richard Smith4323bf82012-05-25 02:17:09 +0000711 const Stmt *Term = I->Terminator;
Richard Smith1bb8edb82012-05-26 06:20:46 +0000712
713 // Information used when building the diagnostic.
Richard Smith4323bf82012-05-25 02:17:09 +0000714 unsigned DiagKind;
David Blaikie1d202a62012-10-08 01:11:04 +0000715 StringRef Str;
Richard Smith1bb8edb82012-05-26 06:20:46 +0000716 SourceRange Range;
717
Stefanus Du Toitb3318502013-03-01 21:41:22 +0000718 // FixIts to suppress the diagnostic by removing the dead condition.
Richard Smith1bb8edb82012-05-26 06:20:46 +0000719 // For all binary terminators, branch 0 is taken if the condition is true,
720 // and branch 1 is taken if the condition is false.
721 int RemoveDiagKind = -1;
722 const char *FixitStr =
723 S.getLangOpts().CPlusPlus ? (I->Output ? "true" : "false")
724 : (I->Output ? "1" : "0");
725 FixItHint Fixit1, Fixit2;
726
Richard Smithba8071e2013-09-12 18:49:10 +0000727 switch (Term ? Term->getStmtClass() : Stmt::DeclStmtClass) {
Richard Smith4323bf82012-05-25 02:17:09 +0000728 default:
Richard Smith1bb8edb82012-05-26 06:20:46 +0000729 // Don't know how to report this. Just fall back to 'may be used
Richard Smithba8071e2013-09-12 18:49:10 +0000730 // uninitialized'. FIXME: Can this happen?
Richard Smith4323bf82012-05-25 02:17:09 +0000731 continue;
732
733 // "condition is true / condition is false".
Richard Smith1bb8edb82012-05-26 06:20:46 +0000734 case Stmt::IfStmtClass: {
735 const IfStmt *IS = cast<IfStmt>(Term);
Richard Smith4323bf82012-05-25 02:17:09 +0000736 DiagKind = 0;
737 Str = "if";
Richard Smith1bb8edb82012-05-26 06:20:46 +0000738 Range = IS->getCond()->getSourceRange();
739 RemoveDiagKind = 0;
740 CreateIfFixit(S, IS, IS->getThen(), IS->getElse(),
741 I->Output, Fixit1, Fixit2);
Richard Smith4323bf82012-05-25 02:17:09 +0000742 break;
Richard Smith1bb8edb82012-05-26 06:20:46 +0000743 }
744 case Stmt::ConditionalOperatorClass: {
745 const ConditionalOperator *CO = cast<ConditionalOperator>(Term);
Richard Smith4323bf82012-05-25 02:17:09 +0000746 DiagKind = 0;
747 Str = "?:";
Richard Smith1bb8edb82012-05-26 06:20:46 +0000748 Range = CO->getCond()->getSourceRange();
749 RemoveDiagKind = 0;
750 CreateIfFixit(S, CO, CO->getTrueExpr(), CO->getFalseExpr(),
751 I->Output, Fixit1, Fixit2);
Richard Smith4323bf82012-05-25 02:17:09 +0000752 break;
Richard Smith1bb8edb82012-05-26 06:20:46 +0000753 }
Richard Smith4323bf82012-05-25 02:17:09 +0000754 case Stmt::BinaryOperatorClass: {
755 const BinaryOperator *BO = cast<BinaryOperator>(Term);
756 if (!BO->isLogicalOp())
757 continue;
758 DiagKind = 0;
759 Str = BO->getOpcodeStr();
760 Range = BO->getLHS()->getSourceRange();
Richard Smith1bb8edb82012-05-26 06:20:46 +0000761 RemoveDiagKind = 0;
762 if ((BO->getOpcode() == BO_LAnd && I->Output) ||
763 (BO->getOpcode() == BO_LOr && !I->Output))
764 // true && y -> y, false || y -> y.
765 Fixit1 = FixItHint::CreateRemoval(SourceRange(BO->getLocStart(),
766 BO->getOperatorLoc()));
767 else
768 // false && y -> false, true || y -> true.
769 Fixit1 = FixItHint::CreateReplacement(BO->getSourceRange(), FixitStr);
Richard Smith4323bf82012-05-25 02:17:09 +0000770 break;
771 }
772
773 // "loop is entered / loop is exited".
774 case Stmt::WhileStmtClass:
775 DiagKind = 1;
776 Str = "while";
777 Range = cast<WhileStmt>(Term)->getCond()->getSourceRange();
Richard Smith1bb8edb82012-05-26 06:20:46 +0000778 RemoveDiagKind = 1;
779 Fixit1 = FixItHint::CreateReplacement(Range, FixitStr);
Richard Smith4323bf82012-05-25 02:17:09 +0000780 break;
781 case Stmt::ForStmtClass:
782 DiagKind = 1;
783 Str = "for";
784 Range = cast<ForStmt>(Term)->getCond()->getSourceRange();
Richard Smith1bb8edb82012-05-26 06:20:46 +0000785 RemoveDiagKind = 1;
786 if (I->Output)
787 Fixit1 = FixItHint::CreateRemoval(Range);
788 else
789 Fixit1 = FixItHint::CreateReplacement(Range, FixitStr);
Richard Smith4323bf82012-05-25 02:17:09 +0000790 break;
Richard Smithba8071e2013-09-12 18:49:10 +0000791 case Stmt::CXXForRangeStmtClass:
792 if (I->Output == 1) {
793 // The use occurs if a range-based for loop's body never executes.
794 // That may be impossible, and there's no syntactic fix for this,
795 // so treat it as a 'may be uninitialized' case.
796 continue;
797 }
798 DiagKind = 1;
799 Str = "for";
800 Range = cast<CXXForRangeStmt>(Term)->getRangeInit()->getSourceRange();
801 break;
Richard Smith4323bf82012-05-25 02:17:09 +0000802
803 // "condition is true / loop is exited".
804 case Stmt::DoStmtClass:
805 DiagKind = 2;
806 Str = "do";
807 Range = cast<DoStmt>(Term)->getCond()->getSourceRange();
Richard Smith1bb8edb82012-05-26 06:20:46 +0000808 RemoveDiagKind = 1;
809 Fixit1 = FixItHint::CreateReplacement(Range, FixitStr);
Richard Smith4323bf82012-05-25 02:17:09 +0000810 break;
811
812 // "switch case is taken".
813 case Stmt::CaseStmtClass:
814 DiagKind = 3;
815 Str = "case";
816 Range = cast<CaseStmt>(Term)->getLHS()->getSourceRange();
817 break;
818 case Stmt::DefaultStmtClass:
819 DiagKind = 3;
820 Str = "default";
821 Range = cast<DefaultStmt>(Term)->getDefaultLoc();
822 break;
823 }
824
Richard Smith1bb8edb82012-05-26 06:20:46 +0000825 S.Diag(Range.getBegin(), diag::warn_sometimes_uninit_var)
826 << VD->getDeclName() << IsCapturedByBlock << DiagKind
827 << Str << I->Output << Range;
828 S.Diag(User->getLocStart(), diag::note_uninit_var_use)
829 << IsCapturedByBlock << User->getSourceRange();
830 if (RemoveDiagKind != -1)
831 S.Diag(Fixit1.RemoveRange.getBegin(), diag::note_uninit_fixit_remove_cond)
832 << RemoveDiagKind << Str << I->Output << Fixit1 << Fixit2;
833
834 Diagnosed = true;
Richard Smith4323bf82012-05-25 02:17:09 +0000835 }
Richard Smith1bb8edb82012-05-26 06:20:46 +0000836
837 if (!Diagnosed)
Richard Smithba8071e2013-09-12 18:49:10 +0000838 S.Diag(Use.getUser()->getLocStart(), diag::warn_maybe_uninit_var)
Richard Smith1bb8edb82012-05-26 06:20:46 +0000839 << VD->getDeclName() << IsCapturedByBlock
840 << Use.getUser()->getSourceRange();
Richard Smith4323bf82012-05-25 02:17:09 +0000841}
842
Chandler Carruthdd8f0d02011-04-05 18:27:05 +0000843/// DiagnoseUninitializedUse -- Helper function for diagnosing uses of an
844/// uninitialized variable. This manages the different forms of diagnostic
845/// emitted for particular types of uses. Returns true if the use was diagnosed
Richard Smith4323bf82012-05-25 02:17:09 +0000846/// as a warning. If a particular use is one we omit warnings for, returns
Chandler Carruthdd8f0d02011-04-05 18:27:05 +0000847/// false.
848static bool DiagnoseUninitializedUse(Sema &S, const VarDecl *VD,
Richard Smith4323bf82012-05-25 02:17:09 +0000849 const UninitUse &Use,
Ted Kremenek596fa162011-10-13 18:50:06 +0000850 bool alwaysReportSelfInit = false) {
Richard Smith4323bf82012-05-25 02:17:09 +0000851 if (const DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(Use.getUser())) {
Richard Trieu43a2fc72012-05-09 21:08:22 +0000852 // Inspect the initializer of the variable declaration which is
853 // being referenced prior to its initialization. We emit
854 // specialized diagnostics for self-initialization, and we
855 // specifically avoid warning about self references which take the
856 // form of:
857 //
858 // int x = x;
859 //
860 // This is used to indicate to GCC that 'x' is intentionally left
861 // uninitialized. Proven code paths which access 'x' in
862 // an uninitialized state after this will still warn.
863 if (const Expr *Initializer = VD->getInit()) {
864 if (!alwaysReportSelfInit && DRE == Initializer->IgnoreParenImpCasts())
865 return false;
Chandler Carruth895904da2011-04-05 18:18:05 +0000866
Richard Trieu43a2fc72012-05-09 21:08:22 +0000867 ContainsReference CR(S.Context, DRE);
Scott Douglass503fc392015-06-10 13:53:15 +0000868 CR.Visit(Initializer);
Richard Trieu43a2fc72012-05-09 21:08:22 +0000869 if (CR.doesContainReference()) {
Chandler Carruth895904da2011-04-05 18:18:05 +0000870 S.Diag(DRE->getLocStart(),
871 diag::warn_uninit_self_reference_in_init)
Richard Trieu43a2fc72012-05-09 21:08:22 +0000872 << VD->getDeclName() << VD->getLocation() << DRE->getSourceRange();
873 return true;
Chandler Carruth895904da2011-04-05 18:18:05 +0000874 }
Chandler Carruth895904da2011-04-05 18:18:05 +0000875 }
Richard Trieu43a2fc72012-05-09 21:08:22 +0000876
Richard Smith1bb8edb82012-05-26 06:20:46 +0000877 DiagUninitUse(S, VD, Use, false);
Chandler Carruth895904da2011-04-05 18:18:05 +0000878 } else {
Richard Smith4323bf82012-05-25 02:17:09 +0000879 const BlockExpr *BE = cast<BlockExpr>(Use.getUser());
Richard Smith1bb8edb82012-05-26 06:20:46 +0000880 if (VD->getType()->isBlockPointerType() && !VD->hasAttr<BlocksAttr>())
881 S.Diag(BE->getLocStart(),
882 diag::warn_uninit_byref_blockvar_captured_by_block)
Fariborz Jahanian429fadb2012-03-08 00:22:50 +0000883 << VD->getDeclName();
Richard Smith1bb8edb82012-05-26 06:20:46 +0000884 else
885 DiagUninitUse(S, VD, Use, true);
Chandler Carruth895904da2011-04-05 18:18:05 +0000886 }
887
888 // Report where the variable was declared when the use wasn't within
David Blaikiee5f9a9e2011-09-10 05:35:08 +0000889 // the initializer of that declaration & we didn't already suggest
890 // an initialization fixit.
Richard Trieu43a2fc72012-05-09 21:08:22 +0000891 if (!SuggestInitializationFixit(S, VD))
Chandler Carruth895904da2011-04-05 18:18:05 +0000892 S.Diag(VD->getLocStart(), diag::note_uninit_var_def)
893 << VD->getDeclName();
894
Chandler Carruthdd8f0d02011-04-05 18:27:05 +0000895 return true;
Chandler Carruth7a037202011-04-05 18:18:08 +0000896}
897
Richard Smith84837d52012-05-03 18:27:39 +0000898namespace {
899 class FallthroughMapper : public RecursiveASTVisitor<FallthroughMapper> {
900 public:
901 FallthroughMapper(Sema &S)
902 : FoundSwitchStatements(false),
903 S(S) {
904 }
905
906 bool foundSwitchStatements() const { return FoundSwitchStatements; }
907
908 void markFallthroughVisited(const AttributedStmt *Stmt) {
909 bool Found = FallthroughStmts.erase(Stmt);
910 assert(Found);
Kaelyn Uhrain29a8eeb2012-05-03 19:46:38 +0000911 (void)Found;
Richard Smith84837d52012-05-03 18:27:39 +0000912 }
913
914 typedef llvm::SmallPtrSet<const AttributedStmt*, 8> AttrStmts;
915
916 const AttrStmts &getFallthroughStmts() const {
917 return FallthroughStmts;
918 }
919
Alexander Kornienkoafed1dd2013-01-30 03:49:44 +0000920 void fillReachableBlocks(CFG *Cfg) {
921 assert(ReachableBlocks.empty() && "ReachableBlocks already filled");
922 std::deque<const CFGBlock *> BlockQueue;
923
924 ReachableBlocks.insert(&Cfg->getEntry());
925 BlockQueue.push_back(&Cfg->getEntry());
Alexander Kornienkoc121b9b2013-02-07 02:17:19 +0000926 // Mark all case blocks reachable to avoid problems with switching on
927 // constants, covered enums, etc.
928 // These blocks can contain fall-through annotations, and we don't want to
929 // issue a warn_fallthrough_attr_unreachable for them.
Aaron Ballmane5195222014-05-15 20:50:47 +0000930 for (const auto *B : *Cfg) {
Alexander Kornienkoc121b9b2013-02-07 02:17:19 +0000931 const Stmt *L = B->getLabel();
David Blaikie82e95a32014-11-19 07:49:47 +0000932 if (L && isa<SwitchCase>(L) && ReachableBlocks.insert(B).second)
Alexander Kornienkoc121b9b2013-02-07 02:17:19 +0000933 BlockQueue.push_back(B);
934 }
935
Alexander Kornienkoafed1dd2013-01-30 03:49:44 +0000936 while (!BlockQueue.empty()) {
937 const CFGBlock *P = BlockQueue.front();
938 BlockQueue.pop_front();
939 for (CFGBlock::const_succ_iterator I = P->succ_begin(),
940 E = P->succ_end();
941 I != E; ++I) {
David Blaikie82e95a32014-11-19 07:49:47 +0000942 if (*I && ReachableBlocks.insert(*I).second)
Alexander Kornienkoafed1dd2013-01-30 03:49:44 +0000943 BlockQueue.push_back(*I);
944 }
945 }
946 }
947
Richard Smith84837d52012-05-03 18:27:39 +0000948 bool checkFallThroughIntoBlock(const CFGBlock &B, int &AnnotatedCnt) {
Alexander Kornienkoafed1dd2013-01-30 03:49:44 +0000949 assert(!ReachableBlocks.empty() && "ReachableBlocks empty");
950
Richard Smith84837d52012-05-03 18:27:39 +0000951 int UnannotatedCnt = 0;
952 AnnotatedCnt = 0;
953
Aaron Ballmane5195222014-05-15 20:50:47 +0000954 std::deque<const CFGBlock*> BlockQueue(B.pred_begin(), B.pred_end());
Richard Smith84837d52012-05-03 18:27:39 +0000955 while (!BlockQueue.empty()) {
956 const CFGBlock *P = BlockQueue.front();
957 BlockQueue.pop_front();
Nick Lewyckycdf11082014-02-27 02:43:25 +0000958 if (!P) continue;
Richard Smith84837d52012-05-03 18:27:39 +0000959
960 const Stmt *Term = P->getTerminator();
961 if (Term && isa<SwitchStmt>(Term))
962 continue; // Switch statement, good.
963
964 const SwitchCase *SW = dyn_cast_or_null<SwitchCase>(P->getLabel());
965 if (SW && SW->getSubStmt() == B.getLabel() && P->begin() == P->end())
966 continue; // Previous case label has no statements, good.
967
Alexander Kornienko09f15f32013-01-25 20:44:56 +0000968 const LabelStmt *L = dyn_cast_or_null<LabelStmt>(P->getLabel());
969 if (L && L->getSubStmt() == B.getLabel() && P->begin() == P->end())
970 continue; // Case label is preceded with a normal label, good.
971
Alexander Kornienkoafed1dd2013-01-30 03:49:44 +0000972 if (!ReachableBlocks.count(P)) {
Alexander Kornienkoc121b9b2013-02-07 02:17:19 +0000973 for (CFGBlock::const_reverse_iterator ElemIt = P->rbegin(),
974 ElemEnd = P->rend();
975 ElemIt != ElemEnd; ++ElemIt) {
David Blaikie00be69a2013-02-23 00:29:34 +0000976 if (Optional<CFGStmt> CS = ElemIt->getAs<CFGStmt>()) {
977 if (const AttributedStmt *AS = asFallThroughAttr(CS->getStmt())) {
Richard Smith84837d52012-05-03 18:27:39 +0000978 S.Diag(AS->getLocStart(),
979 diag::warn_fallthrough_attr_unreachable);
980 markFallthroughVisited(AS);
981 ++AnnotatedCnt;
Alexander Kornienkoc121b9b2013-02-07 02:17:19 +0000982 break;
Richard Smith84837d52012-05-03 18:27:39 +0000983 }
984 // Don't care about other unreachable statements.
985 }
986 }
987 // If there are no unreachable statements, this may be a special
988 // case in CFG:
989 // case X: {
990 // A a; // A has a destructor.
991 // break;
992 // }
993 // // <<<< This place is represented by a 'hanging' CFG block.
994 // case Y:
995 continue;
996 }
997
998 const Stmt *LastStmt = getLastStmt(*P);
999 if (const AttributedStmt *AS = asFallThroughAttr(LastStmt)) {
1000 markFallthroughVisited(AS);
1001 ++AnnotatedCnt;
1002 continue; // Fallthrough annotation, good.
1003 }
1004
1005 if (!LastStmt) { // This block contains no executable statements.
1006 // Traverse its predecessors.
1007 std::copy(P->pred_begin(), P->pred_end(),
1008 std::back_inserter(BlockQueue));
1009 continue;
1010 }
1011
1012 ++UnannotatedCnt;
1013 }
1014 return !!UnannotatedCnt;
1015 }
1016
1017 // RecursiveASTVisitor setup.
1018 bool shouldWalkTypesOfTypeLocs() const { return false; }
1019
1020 bool VisitAttributedStmt(AttributedStmt *S) {
1021 if (asFallThroughAttr(S))
1022 FallthroughStmts.insert(S);
1023 return true;
1024 }
1025
1026 bool VisitSwitchStmt(SwitchStmt *S) {
1027 FoundSwitchStatements = true;
1028 return true;
1029 }
1030
Alexander Kornienkoa9c809f2013-04-02 15:20:32 +00001031 // We don't want to traverse local type declarations. We analyze their
1032 // methods separately.
1033 bool TraverseDecl(Decl *D) { return true; }
1034
Alexander Kornienkobf911642014-06-24 15:28:21 +00001035 // We analyze lambda bodies separately. Skip them here.
1036 bool TraverseLambdaBody(LambdaExpr *LE) { return true; }
1037
Richard Smith84837d52012-05-03 18:27:39 +00001038 private:
1039
1040 static const AttributedStmt *asFallThroughAttr(const Stmt *S) {
1041 if (const AttributedStmt *AS = dyn_cast_or_null<AttributedStmt>(S)) {
1042 if (hasSpecificAttr<FallThroughAttr>(AS->getAttrs()))
1043 return AS;
1044 }
Craig Topperc3ec1492014-05-26 06:22:03 +00001045 return nullptr;
Richard Smith84837d52012-05-03 18:27:39 +00001046 }
1047
1048 static const Stmt *getLastStmt(const CFGBlock &B) {
1049 if (const Stmt *Term = B.getTerminator())
1050 return Term;
1051 for (CFGBlock::const_reverse_iterator ElemIt = B.rbegin(),
1052 ElemEnd = B.rend();
1053 ElemIt != ElemEnd; ++ElemIt) {
David Blaikie00be69a2013-02-23 00:29:34 +00001054 if (Optional<CFGStmt> CS = ElemIt->getAs<CFGStmt>())
1055 return CS->getStmt();
Richard Smith84837d52012-05-03 18:27:39 +00001056 }
1057 // Workaround to detect a statement thrown out by CFGBuilder:
1058 // case X: {} case Y:
1059 // case X: ; case Y:
1060 if (const SwitchCase *SW = dyn_cast_or_null<SwitchCase>(B.getLabel()))
1061 if (!isa<SwitchCase>(SW->getSubStmt()))
1062 return SW->getSubStmt();
1063
Craig Topperc3ec1492014-05-26 06:22:03 +00001064 return nullptr;
Richard Smith84837d52012-05-03 18:27:39 +00001065 }
1066
1067 bool FoundSwitchStatements;
1068 AttrStmts FallthroughStmts;
1069 Sema &S;
Alexander Kornienkoafed1dd2013-01-30 03:49:44 +00001070 llvm::SmallPtrSet<const CFGBlock *, 16> ReachableBlocks;
Richard Smith84837d52012-05-03 18:27:39 +00001071 };
Hans Wennborgdcfba332015-10-06 23:40:43 +00001072} // anonymous namespace
Richard Smith84837d52012-05-03 18:27:39 +00001073
Alexander Kornienko06caf7d2012-06-02 01:01:07 +00001074static void DiagnoseSwitchLabelsFallthrough(Sema &S, AnalysisDeclContext &AC,
Alexis Hunt2178f142012-06-15 21:22:05 +00001075 bool PerFunction) {
Ted Kremenekda5919f2012-11-12 21:20:48 +00001076 // Only perform this analysis when using C++11. There is no good workflow
1077 // for this warning when not using C++11. There is no good way to silence
1078 // the warning (no attribute is available) unless we are using C++11's support
1079 // for generalized attributes. Once could use pragmas to silence the warning,
1080 // but as a general solution that is gross and not in the spirit of this
1081 // warning.
1082 //
1083 // NOTE: This an intermediate solution. There are on-going discussions on
1084 // how to properly support this warning outside of C++11 with an annotation.
Richard Smith2bf7fdb2013-01-02 11:42:31 +00001085 if (!AC.getASTContext().getLangOpts().CPlusPlus11)
Ted Kremenekda5919f2012-11-12 21:20:48 +00001086 return;
1087
Richard Smith84837d52012-05-03 18:27:39 +00001088 FallthroughMapper FM(S);
1089 FM.TraverseStmt(AC.getBody());
1090
1091 if (!FM.foundSwitchStatements())
1092 return;
1093
Alexis Hunt2178f142012-06-15 21:22:05 +00001094 if (PerFunction && FM.getFallthroughStmts().empty())
Alexander Kornienko06caf7d2012-06-02 01:01:07 +00001095 return;
1096
Richard Smith84837d52012-05-03 18:27:39 +00001097 CFG *Cfg = AC.getCFG();
1098
1099 if (!Cfg)
1100 return;
1101
Alexander Kornienkoafed1dd2013-01-30 03:49:44 +00001102 FM.fillReachableBlocks(Cfg);
Richard Smith84837d52012-05-03 18:27:39 +00001103
Pete Cooper57d3f142015-07-30 17:22:52 +00001104 for (const CFGBlock *B : llvm::reverse(*Cfg)) {
Alexander Kornienko55488792013-01-25 15:49:34 +00001105 const Stmt *Label = B->getLabel();
Richard Smith84837d52012-05-03 18:27:39 +00001106
1107 if (!Label || !isa<SwitchCase>(Label))
1108 continue;
1109
Alexander Kornienkoafed1dd2013-01-30 03:49:44 +00001110 int AnnotatedCnt;
1111
Alexander Kornienko55488792013-01-25 15:49:34 +00001112 if (!FM.checkFallThroughIntoBlock(*B, AnnotatedCnt))
Richard Smith84837d52012-05-03 18:27:39 +00001113 continue;
1114
Alexander Kornienko06caf7d2012-06-02 01:01:07 +00001115 S.Diag(Label->getLocStart(),
Alexis Hunt2178f142012-06-15 21:22:05 +00001116 PerFunction ? diag::warn_unannotated_fallthrough_per_function
1117 : diag::warn_unannotated_fallthrough);
Richard Smith84837d52012-05-03 18:27:39 +00001118
1119 if (!AnnotatedCnt) {
1120 SourceLocation L = Label->getLocStart();
1121 if (L.isMacroID())
1122 continue;
Richard Smith2bf7fdb2013-01-02 11:42:31 +00001123 if (S.getLangOpts().CPlusPlus11) {
Alexander Kornienko55488792013-01-25 15:49:34 +00001124 const Stmt *Term = B->getTerminator();
1125 // Skip empty cases.
1126 while (B->empty() && !Term && B->succ_size() == 1) {
1127 B = *B->succ_begin();
1128 Term = B->getTerminator();
1129 }
1130 if (!(B->empty() && Term && isa<BreakStmt>(Term))) {
Alexander Kornienkoe61e5622012-09-28 22:24:03 +00001131 Preprocessor &PP = S.getPreprocessor();
1132 TokenValue Tokens[] = {
1133 tok::l_square, tok::l_square, PP.getIdentifierInfo("clang"),
1134 tok::coloncolon, PP.getIdentifierInfo("fallthrough"),
1135 tok::r_square, tok::r_square
1136 };
Dmitri Gribenko6743e042012-09-29 11:40:46 +00001137 StringRef AnnotationSpelling = "[[clang::fallthrough]]";
1138 StringRef MacroName = PP.getLastMacroWithSpelling(L, Tokens);
1139 if (!MacroName.empty())
1140 AnnotationSpelling = MacroName;
1141 SmallString<64> TextToInsert(AnnotationSpelling);
1142 TextToInsert += "; ";
Alexander Kornienko246e85d2012-05-26 00:49:15 +00001143 S.Diag(L, diag::note_insert_fallthrough_fixit) <<
Alexander Kornienkoe61e5622012-09-28 22:24:03 +00001144 AnnotationSpelling <<
Dmitri Gribenko6743e042012-09-29 11:40:46 +00001145 FixItHint::CreateInsertion(L, TextToInsert);
Alexander Kornienko246e85d2012-05-26 00:49:15 +00001146 }
Richard Smith84837d52012-05-03 18:27:39 +00001147 }
1148 S.Diag(L, diag::note_insert_break_fixit) <<
1149 FixItHint::CreateInsertion(L, "break; ");
1150 }
1151 }
1152
Aaron Ballmane5195222014-05-15 20:50:47 +00001153 for (const auto *F : FM.getFallthroughStmts())
1154 S.Diag(F->getLocStart(), diag::warn_fallthrough_attr_invalid_placement);
Richard Smith84837d52012-05-03 18:27:39 +00001155}
1156
Jordan Rose25c0ea82012-10-29 17:46:47 +00001157static bool isInLoop(const ASTContext &Ctx, const ParentMap &PM,
1158 const Stmt *S) {
Jordan Rose76831c62012-10-11 16:10:19 +00001159 assert(S);
1160
1161 do {
1162 switch (S->getStmtClass()) {
Jordan Rose76831c62012-10-11 16:10:19 +00001163 case Stmt::ForStmtClass:
1164 case Stmt::WhileStmtClass:
1165 case Stmt::CXXForRangeStmtClass:
1166 case Stmt::ObjCForCollectionStmtClass:
1167 return true;
Jordan Rose25c0ea82012-10-29 17:46:47 +00001168 case Stmt::DoStmtClass: {
1169 const Expr *Cond = cast<DoStmt>(S)->getCond();
1170 llvm::APSInt Val;
1171 if (!Cond->EvaluateAsInt(Val, Ctx))
1172 return true;
1173 return Val.getBoolValue();
1174 }
Jordan Rose76831c62012-10-11 16:10:19 +00001175 default:
1176 break;
1177 }
1178 } while ((S = PM.getParent(S)));
1179
1180 return false;
1181}
1182
Jordan Rosed3934582012-09-28 22:21:30 +00001183static void diagnoseRepeatedUseOfWeak(Sema &S,
1184 const sema::FunctionScopeInfo *CurFn,
Jordan Rose76831c62012-10-11 16:10:19 +00001185 const Decl *D,
1186 const ParentMap &PM) {
Jordan Rosed3934582012-09-28 22:21:30 +00001187 typedef sema::FunctionScopeInfo::WeakObjectProfileTy WeakObjectProfileTy;
1188 typedef sema::FunctionScopeInfo::WeakObjectUseMap WeakObjectUseMap;
1189 typedef sema::FunctionScopeInfo::WeakUseVector WeakUseVector;
Benjamin Kramerbbdd7642014-03-01 14:48:57 +00001190 typedef std::pair<const Stmt *, WeakObjectUseMap::const_iterator>
1191 StmtUsesPair;
Jordan Rosed3934582012-09-28 22:21:30 +00001192
Jordan Rose25c0ea82012-10-29 17:46:47 +00001193 ASTContext &Ctx = S.getASTContext();
1194
Jordan Rosed3934582012-09-28 22:21:30 +00001195 const WeakObjectUseMap &WeakMap = CurFn->getWeakObjectUses();
1196
1197 // Extract all weak objects that are referenced more than once.
1198 SmallVector<StmtUsesPair, 8> UsesByStmt;
1199 for (WeakObjectUseMap::const_iterator I = WeakMap.begin(), E = WeakMap.end();
1200 I != E; ++I) {
1201 const WeakUseVector &Uses = I->second;
Jordan Rosed3934582012-09-28 22:21:30 +00001202
1203 // Find the first read of the weak object.
1204 WeakUseVector::const_iterator UI = Uses.begin(), UE = Uses.end();
1205 for ( ; UI != UE; ++UI) {
1206 if (UI->isUnsafe())
1207 break;
1208 }
1209
1210 // If there were only writes to this object, don't warn.
1211 if (UI == UE)
1212 continue;
1213
Jordan Rose76831c62012-10-11 16:10:19 +00001214 // If there was only one read, followed by any number of writes, and the
Jordan Rose25c0ea82012-10-29 17:46:47 +00001215 // read is not within a loop, don't warn. Additionally, don't warn in a
1216 // loop if the base object is a local variable -- local variables are often
1217 // changed in loops.
Jordan Rose76831c62012-10-11 16:10:19 +00001218 if (UI == Uses.begin()) {
1219 WeakUseVector::const_iterator UI2 = UI;
1220 for (++UI2; UI2 != UE; ++UI2)
1221 if (UI2->isUnsafe())
1222 break;
1223
Jordan Rose25c0ea82012-10-29 17:46:47 +00001224 if (UI2 == UE) {
1225 if (!isInLoop(Ctx, PM, UI->getUseExpr()))
Jordan Rose76831c62012-10-11 16:10:19 +00001226 continue;
Jordan Rose25c0ea82012-10-29 17:46:47 +00001227
1228 const WeakObjectProfileTy &Profile = I->first;
1229 if (!Profile.isExactProfile())
1230 continue;
1231
1232 const NamedDecl *Base = Profile.getBase();
1233 if (!Base)
1234 Base = Profile.getProperty();
1235 assert(Base && "A profile always has a base or property.");
1236
1237 if (const VarDecl *BaseVar = dyn_cast<VarDecl>(Base))
1238 if (BaseVar->hasLocalStorage() && !isa<ParmVarDecl>(Base))
1239 continue;
1240 }
Jordan Rose76831c62012-10-11 16:10:19 +00001241 }
1242
Jordan Rosed3934582012-09-28 22:21:30 +00001243 UsesByStmt.push_back(StmtUsesPair(UI->getUseExpr(), I));
1244 }
1245
1246 if (UsesByStmt.empty())
1247 return;
1248
1249 // Sort by first use so that we emit the warnings in a deterministic order.
Benjamin Kramerbbdd7642014-03-01 14:48:57 +00001250 SourceManager &SM = S.getSourceManager();
Jordan Rosed3934582012-09-28 22:21:30 +00001251 std::sort(UsesByStmt.begin(), UsesByStmt.end(),
Benjamin Kramerbbdd7642014-03-01 14:48:57 +00001252 [&SM](const StmtUsesPair &LHS, const StmtUsesPair &RHS) {
1253 return SM.isBeforeInTranslationUnit(LHS.first->getLocStart(),
1254 RHS.first->getLocStart());
1255 });
Jordan Rosed3934582012-09-28 22:21:30 +00001256
1257 // Classify the current code body for better warning text.
1258 // This enum should stay in sync with the cases in
1259 // warn_arc_repeated_use_of_weak and warn_arc_possible_repeated_use_of_weak.
1260 // FIXME: Should we use a common classification enum and the same set of
1261 // possibilities all throughout Sema?
1262 enum {
1263 Function,
1264 Method,
1265 Block,
1266 Lambda
1267 } FunctionKind;
1268
1269 if (isa<sema::BlockScopeInfo>(CurFn))
1270 FunctionKind = Block;
1271 else if (isa<sema::LambdaScopeInfo>(CurFn))
1272 FunctionKind = Lambda;
1273 else if (isa<ObjCMethodDecl>(D))
1274 FunctionKind = Method;
1275 else
1276 FunctionKind = Function;
1277
1278 // Iterate through the sorted problems and emit warnings for each.
Aaron Ballmane5195222014-05-15 20:50:47 +00001279 for (const auto &P : UsesByStmt) {
1280 const Stmt *FirstRead = P.first;
1281 const WeakObjectProfileTy &Key = P.second->first;
1282 const WeakUseVector &Uses = P.second->second;
Jordan Rosed3934582012-09-28 22:21:30 +00001283
Jordan Rose657b5f42012-09-28 22:21:35 +00001284 // For complicated expressions like 'a.b.c' and 'x.b.c', WeakObjectProfileTy
1285 // may not contain enough information to determine that these are different
1286 // properties. We can only be 100% sure of a repeated use in certain cases,
1287 // and we adjust the diagnostic kind accordingly so that the less certain
1288 // case can be turned off if it is too noisy.
Jordan Rosed3934582012-09-28 22:21:30 +00001289 unsigned DiagKind;
1290 if (Key.isExactProfile())
1291 DiagKind = diag::warn_arc_repeated_use_of_weak;
1292 else
1293 DiagKind = diag::warn_arc_possible_repeated_use_of_weak;
1294
Jordan Rose657b5f42012-09-28 22:21:35 +00001295 // Classify the weak object being accessed for better warning text.
1296 // This enum should stay in sync with the cases in
1297 // warn_arc_repeated_use_of_weak and warn_arc_possible_repeated_use_of_weak.
1298 enum {
1299 Variable,
1300 Property,
1301 ImplicitProperty,
1302 Ivar
1303 } ObjectKind;
1304
1305 const NamedDecl *D = Key.getProperty();
1306 if (isa<VarDecl>(D))
1307 ObjectKind = Variable;
1308 else if (isa<ObjCPropertyDecl>(D))
1309 ObjectKind = Property;
1310 else if (isa<ObjCMethodDecl>(D))
1311 ObjectKind = ImplicitProperty;
1312 else if (isa<ObjCIvarDecl>(D))
1313 ObjectKind = Ivar;
1314 else
1315 llvm_unreachable("Unexpected weak object kind!");
1316
Jordan Rosed3934582012-09-28 22:21:30 +00001317 // Show the first time the object was read.
1318 S.Diag(FirstRead->getLocStart(), DiagKind)
Joerg Sonnenbergerffc6d492013-06-26 21:31:47 +00001319 << int(ObjectKind) << D << int(FunctionKind)
Jordan Rosed3934582012-09-28 22:21:30 +00001320 << FirstRead->getSourceRange();
1321
1322 // Print all the other accesses as notes.
Aaron Ballmane5195222014-05-15 20:50:47 +00001323 for (const auto &Use : Uses) {
1324 if (Use.getUseExpr() == FirstRead)
Jordan Rosed3934582012-09-28 22:21:30 +00001325 continue;
Aaron Ballmane5195222014-05-15 20:50:47 +00001326 S.Diag(Use.getUseExpr()->getLocStart(),
Jordan Rosed3934582012-09-28 22:21:30 +00001327 diag::note_arc_weak_also_accessed_here)
Aaron Ballmane5195222014-05-15 20:50:47 +00001328 << Use.getUseExpr()->getSourceRange();
Jordan Rosed3934582012-09-28 22:21:30 +00001329 }
1330 }
1331}
1332
Jordan Rosed3934582012-09-28 22:21:30 +00001333namespace {
Ted Kremenekb749a6d2011-01-15 02:58:47 +00001334class UninitValsDiagReporter : public UninitVariablesHandler {
1335 Sema &S;
Chris Lattner0e62c1c2011-07-23 10:55:15 +00001336 typedef SmallVector<UninitUse, 2> UsesVec;
Benjamin Kramereb8c4462013-06-29 17:52:13 +00001337 typedef llvm::PointerIntPair<UsesVec *, 1, bool> MappedType;
Enea Zaffanella2f40be72013-02-15 20:09:55 +00001338 // Prefer using MapVector to DenseMap, so that iteration order will be
1339 // the same as insertion order. This is needed to obtain a deterministic
1340 // order of diagnostics when calling flushDiagnostics().
1341 typedef llvm::MapVector<const VarDecl *, MappedType> UsesMap;
George Burgess IV0fc4e8b2015-12-10 19:25:21 +00001342 UsesMap uses;
Ted Kremenek39fa0562011-01-21 19:41:41 +00001343
Ted Kremenekb749a6d2011-01-15 02:58:47 +00001344public:
George Burgess IV0fc4e8b2015-12-10 19:25:21 +00001345 UninitValsDiagReporter(Sema &S) : S(S) {}
Alexander Kornienko34eb2072015-04-11 02:00:23 +00001346 ~UninitValsDiagReporter() override { flushDiagnostics(); }
Ted Kremenek596fa162011-10-13 18:50:06 +00001347
Enea Zaffanella2f40be72013-02-15 20:09:55 +00001348 MappedType &getUses(const VarDecl *vd) {
George Burgess IV0fc4e8b2015-12-10 19:25:21 +00001349 MappedType &V = uses[vd];
Benjamin Kramereb8c4462013-06-29 17:52:13 +00001350 if (!V.getPointer())
1351 V.setPointer(new UsesVec());
Ted Kremenek596fa162011-10-13 18:50:06 +00001352 return V;
1353 }
Craig Toppere14c0f82014-03-12 04:55:44 +00001354
1355 void handleUseOfUninitVariable(const VarDecl *vd,
1356 const UninitUse &use) override {
Benjamin Kramereb8c4462013-06-29 17:52:13 +00001357 getUses(vd).getPointer()->push_back(use);
Ted Kremenek596fa162011-10-13 18:50:06 +00001358 }
1359
Craig Toppere14c0f82014-03-12 04:55:44 +00001360 void handleSelfInit(const VarDecl *vd) override {
Benjamin Kramereb8c4462013-06-29 17:52:13 +00001361 getUses(vd).setInt(true);
Ted Kremenek39fa0562011-01-21 19:41:41 +00001362 }
1363
1364 void flushDiagnostics() {
George Burgess IV0fc4e8b2015-12-10 19:25:21 +00001365 for (const auto &P : uses) {
Aaron Ballmane5195222014-05-15 20:50:47 +00001366 const VarDecl *vd = P.first;
1367 const MappedType &V = P.second;
Ted Kremenekb3dbe282011-02-02 23:35:53 +00001368
Benjamin Kramereb8c4462013-06-29 17:52:13 +00001369 UsesVec *vec = V.getPointer();
1370 bool hasSelfInit = V.getInt();
Ted Kremenek596fa162011-10-13 18:50:06 +00001371
1372 // Specially handle the case where we have uses of an uninitialized
1373 // variable, but the root cause is an idiomatic self-init. We want
1374 // to report the diagnostic at the self-init since that is the root cause.
Matt Beaumont-Gay4b489fa2011-10-19 18:53:03 +00001375 if (!vec->empty() && hasSelfInit && hasAlwaysUninitializedUse(vec))
Richard Smith4323bf82012-05-25 02:17:09 +00001376 DiagnoseUninitializedUse(S, vd,
1377 UninitUse(vd->getInit()->IgnoreParenCasts(),
1378 /* isAlwaysUninit */ true),
Matt Beaumont-Gay4b489fa2011-10-19 18:53:03 +00001379 /* alwaysReportSelfInit */ true);
Ted Kremenek596fa162011-10-13 18:50:06 +00001380 else {
1381 // Sort the uses by their SourceLocations. While not strictly
1382 // guaranteed to produce them in line/column order, this will provide
1383 // a stable ordering.
Benjamin Kramerbbdd7642014-03-01 14:48:57 +00001384 std::sort(vec->begin(), vec->end(),
1385 [](const UninitUse &a, const UninitUse &b) {
1386 // Prefer a more confident report over a less confident one.
1387 if (a.getKind() != b.getKind())
1388 return a.getKind() > b.getKind();
1389 return a.getUser()->getLocStart() < b.getUser()->getLocStart();
1390 });
1391
Aaron Ballmane5195222014-05-15 20:50:47 +00001392 for (const auto &U : *vec) {
Richard Smith4323bf82012-05-25 02:17:09 +00001393 // If we have self-init, downgrade all uses to 'may be uninitialized'.
Aaron Ballmane5195222014-05-15 20:50:47 +00001394 UninitUse Use = hasSelfInit ? UninitUse(U.getUser(), false) : U;
Richard Smith4323bf82012-05-25 02:17:09 +00001395
1396 if (DiagnoseUninitializedUse(S, vd, Use))
Ted Kremenek596fa162011-10-13 18:50:06 +00001397 // Skip further diagnostics for this variable. We try to warn only
1398 // on the first point at which a variable is used uninitialized.
1399 break;
1400 }
Chandler Carruth7a037202011-04-05 18:18:08 +00001401 }
Ted Kremenek596fa162011-10-13 18:50:06 +00001402
1403 // Release the uses vector.
Ted Kremenek39fa0562011-01-21 19:41:41 +00001404 delete vec;
1405 }
George Burgess IV0fc4e8b2015-12-10 19:25:21 +00001406
1407 uses.clear();
Ted Kremenekb749a6d2011-01-15 02:58:47 +00001408 }
Matt Beaumont-Gay4b489fa2011-10-19 18:53:03 +00001409
1410private:
1411 static bool hasAlwaysUninitializedUse(const UsesVec* vec) {
Aaron Ballmane5195222014-05-15 20:50:47 +00001412 return std::any_of(vec->begin(), vec->end(), [](const UninitUse &U) {
1413 return U.getKind() == UninitUse::Always ||
1414 U.getKind() == UninitUse::AfterCall ||
1415 U.getKind() == UninitUse::AfterDecl;
1416 });
Matt Beaumont-Gay4b489fa2011-10-19 18:53:03 +00001417 }
Ted Kremenekb749a6d2011-01-15 02:58:47 +00001418};
Hans Wennborgdcfba332015-10-06 23:40:43 +00001419} // anonymous namespace
Ted Kremenekb749a6d2011-01-15 02:58:47 +00001420
Caitlin Sadowski0b3501c2011-09-09 16:04:02 +00001421namespace clang {
DeLesley Hutchins48a31762013-08-12 21:20:55 +00001422namespace {
Dmitri Gribenkof8579502013-01-12 19:30:44 +00001423typedef SmallVector<PartialDiagnosticAt, 1> OptionalNotes;
Richard Smith92286672012-02-03 04:45:26 +00001424typedef std::pair<PartialDiagnosticAt, OptionalNotes> DelayedDiag;
Benjamin Kramer40b099b2012-03-26 14:05:40 +00001425typedef std::list<DelayedDiag> DiagList;
Caitlin Sadowski0b3501c2011-09-09 16:04:02 +00001426
Caitlin Sadowski0b3501c2011-09-09 16:04:02 +00001427struct SortDiagBySourceLocation {
Benjamin Kramer40b099b2012-03-26 14:05:40 +00001428 SourceManager &SM;
1429 SortDiagBySourceLocation(SourceManager &SM) : SM(SM) {}
Caitlin Sadowski0b3501c2011-09-09 16:04:02 +00001430
1431 bool operator()(const DelayedDiag &left, const DelayedDiag &right) {
1432 // Although this call will be slow, this is only called when outputting
1433 // multiple warnings.
Benjamin Kramer40b099b2012-03-26 14:05:40 +00001434 return SM.isBeforeInTranslationUnit(left.first.first, right.first.first);
Caitlin Sadowski0b3501c2011-09-09 16:04:02 +00001435 }
1436};
Hans Wennborgdcfba332015-10-06 23:40:43 +00001437} // anonymous namespace
1438} // namespace clang
Caitlin Sadowski0b3501c2011-09-09 16:04:02 +00001439
DeLesley Hutchins48a31762013-08-12 21:20:55 +00001440//===----------------------------------------------------------------------===//
1441// -Wthread-safety
1442//===----------------------------------------------------------------------===//
1443namespace clang {
DeLesley Hutchinsea1f8332014-07-28 15:57:27 +00001444namespace threadSafety {
Benjamin Kramer539803c2015-03-19 14:23:45 +00001445namespace {
DeLesley Hutchinsea1f8332014-07-28 15:57:27 +00001446class ThreadSafetyReporter : public clang::threadSafety::ThreadSafetyHandler {
Caitlin Sadowski0b3501c2011-09-09 16:04:02 +00001447 Sema &S;
1448 DiagList Warnings;
Richard Smith92286672012-02-03 04:45:26 +00001449 SourceLocation FunLocation, FunEndLocation;
Caitlin Sadowski0b3501c2011-09-09 16:04:02 +00001450
DeLesley Hutchinseb0ea5f2014-08-14 21:40:15 +00001451 const FunctionDecl *CurrentFunction;
1452 bool Verbose;
1453
Aaron Ballman71291bc2014-08-15 12:38:17 +00001454 OptionalNotes getNotes() const {
DeLesley Hutchinseb0ea5f2014-08-14 21:40:15 +00001455 if (Verbose && CurrentFunction) {
1456 PartialDiagnosticAt FNote(CurrentFunction->getBody()->getLocStart(),
Aaron Ballman71291bc2014-08-15 12:38:17 +00001457 S.PDiag(diag::note_thread_warning_in_fun)
1458 << CurrentFunction->getNameAsString());
DeLesley Hutchinseb0ea5f2014-08-14 21:40:15 +00001459 return OptionalNotes(1, FNote);
1460 }
Aaron Ballman71291bc2014-08-15 12:38:17 +00001461 return OptionalNotes();
DeLesley Hutchinseb0ea5f2014-08-14 21:40:15 +00001462 }
1463
Aaron Ballman71291bc2014-08-15 12:38:17 +00001464 OptionalNotes getNotes(const PartialDiagnosticAt &Note) const {
DeLesley Hutchinseb0ea5f2014-08-14 21:40:15 +00001465 OptionalNotes ONS(1, Note);
1466 if (Verbose && CurrentFunction) {
1467 PartialDiagnosticAt FNote(CurrentFunction->getBody()->getLocStart(),
Aaron Ballman71291bc2014-08-15 12:38:17 +00001468 S.PDiag(diag::note_thread_warning_in_fun)
1469 << CurrentFunction->getNameAsString());
Benjamin Kramer3204b152015-05-29 19:42:19 +00001470 ONS.push_back(std::move(FNote));
DeLesley Hutchinseb0ea5f2014-08-14 21:40:15 +00001471 }
1472 return ONS;
1473 }
1474
DeLesley Hutchinsc60dc2c2014-09-18 23:02:26 +00001475 OptionalNotes getNotes(const PartialDiagnosticAt &Note1,
1476 const PartialDiagnosticAt &Note2) const {
1477 OptionalNotes ONS;
1478 ONS.push_back(Note1);
1479 ONS.push_back(Note2);
1480 if (Verbose && CurrentFunction) {
1481 PartialDiagnosticAt FNote(CurrentFunction->getBody()->getLocStart(),
1482 S.PDiag(diag::note_thread_warning_in_fun)
1483 << CurrentFunction->getNameAsString());
Benjamin Kramer3204b152015-05-29 19:42:19 +00001484 ONS.push_back(std::move(FNote));
DeLesley Hutchinsc60dc2c2014-09-18 23:02:26 +00001485 }
1486 return ONS;
1487 }
1488
Caitlin Sadowski0b3501c2011-09-09 16:04:02 +00001489 // Helper functions
Aaron Ballmane0449042014-04-01 21:43:23 +00001490 void warnLockMismatch(unsigned DiagID, StringRef Kind, Name LockName,
1491 SourceLocation Loc) {
DeLesley Hutchinsc2090512011-10-21 18:10:14 +00001492 // Gracefully handle rare cases when the analysis can't get a more
1493 // precise source location.
1494 if (!Loc.isValid())
1495 Loc = FunLocation;
Aaron Ballmane0449042014-04-01 21:43:23 +00001496 PartialDiagnosticAt Warning(Loc, S.PDiag(DiagID) << Kind << LockName);
Benjamin Kramer3204b152015-05-29 19:42:19 +00001497 Warnings.emplace_back(std::move(Warning), getNotes());
Caitlin Sadowski0b3501c2011-09-09 16:04:02 +00001498 }
1499
1500 public:
Richard Smith92286672012-02-03 04:45:26 +00001501 ThreadSafetyReporter(Sema &S, SourceLocation FL, SourceLocation FEL)
DeLesley Hutchinseb0ea5f2014-08-14 21:40:15 +00001502 : S(S), FunLocation(FL), FunEndLocation(FEL),
1503 CurrentFunction(nullptr), Verbose(false) {}
1504
1505 void setVerbose(bool b) { Verbose = b; }
Caitlin Sadowski0b3501c2011-09-09 16:04:02 +00001506
1507 /// \brief Emit all buffered diagnostics in order of sourcelocation.
1508 /// We need to output diagnostics produced while iterating through
1509 /// the lockset in deterministic order, so this function orders diagnostics
1510 /// and outputs them.
1511 void emitDiagnostics() {
Benjamin Kramer40b099b2012-03-26 14:05:40 +00001512 Warnings.sort(SortDiagBySourceLocation(S.getSourceManager()));
Aaron Ballmane5195222014-05-15 20:50:47 +00001513 for (const auto &Diag : Warnings) {
1514 S.Diag(Diag.first.first, Diag.first.second);
1515 for (const auto &Note : Diag.second)
1516 S.Diag(Note.first, Note.second);
Richard Smith92286672012-02-03 04:45:26 +00001517 }
Caitlin Sadowski0b3501c2011-09-09 16:04:02 +00001518 }
1519
Aaron Ballmane0449042014-04-01 21:43:23 +00001520 void handleInvalidLockExp(StringRef Kind, SourceLocation Loc) override {
1521 PartialDiagnosticAt Warning(Loc, S.PDiag(diag::warn_cannot_resolve_lock)
1522 << Loc);
Benjamin Kramer3204b152015-05-29 19:42:19 +00001523 Warnings.emplace_back(std::move(Warning), getNotes());
Caitlin Sadowskiff2f3f82011-09-09 16:21:55 +00001524 }
DeLesley Hutchinseb0ea5f2014-08-14 21:40:15 +00001525
Aaron Ballmane0449042014-04-01 21:43:23 +00001526 void handleUnmatchedUnlock(StringRef Kind, Name LockName,
1527 SourceLocation Loc) override {
1528 warnLockMismatch(diag::warn_unlock_but_no_lock, Kind, LockName, Loc);
Caitlin Sadowski0b3501c2011-09-09 16:04:02 +00001529 }
DeLesley Hutchinseb0ea5f2014-08-14 21:40:15 +00001530
Aaron Ballmane0449042014-04-01 21:43:23 +00001531 void handleIncorrectUnlockKind(StringRef Kind, Name LockName,
1532 LockKind Expected, LockKind Received,
Aaron Ballmandf115d92014-03-21 14:48:48 +00001533 SourceLocation Loc) override {
1534 if (Loc.isInvalid())
1535 Loc = FunLocation;
1536 PartialDiagnosticAt Warning(Loc, S.PDiag(diag::warn_unlock_kind_mismatch)
Aaron Ballmane0449042014-04-01 21:43:23 +00001537 << Kind << LockName << Received
1538 << Expected);
Benjamin Kramer3204b152015-05-29 19:42:19 +00001539 Warnings.emplace_back(std::move(Warning), getNotes());
Aaron Ballmandf115d92014-03-21 14:48:48 +00001540 }
DeLesley Hutchinseb0ea5f2014-08-14 21:40:15 +00001541
Aaron Ballmane0449042014-04-01 21:43:23 +00001542 void handleDoubleLock(StringRef Kind, Name LockName, SourceLocation Loc) override {
1543 warnLockMismatch(diag::warn_double_lock, Kind, LockName, Loc);
Caitlin Sadowski0b3501c2011-09-09 16:04:02 +00001544 }
1545
Aaron Ballmane0449042014-04-01 21:43:23 +00001546 void handleMutexHeldEndOfScope(StringRef Kind, Name LockName,
1547 SourceLocation LocLocked,
Richard Smith92286672012-02-03 04:45:26 +00001548 SourceLocation LocEndOfScope,
Craig Toppere14c0f82014-03-12 04:55:44 +00001549 LockErrorKind LEK) override {
Caitlin Sadowskiaf9b7c52011-09-15 17:25:19 +00001550 unsigned DiagID = 0;
1551 switch (LEK) {
1552 case LEK_LockedSomePredecessors:
Richard Smith92286672012-02-03 04:45:26 +00001553 DiagID = diag::warn_lock_some_predecessors;
Caitlin Sadowskiaf9b7c52011-09-15 17:25:19 +00001554 break;
1555 case LEK_LockedSomeLoopIterations:
1556 DiagID = diag::warn_expecting_lock_held_on_loop;
1557 break;
1558 case LEK_LockedAtEndOfFunction:
1559 DiagID = diag::warn_no_unlock;
1560 break;
DeLesley Hutchins6e6dbb72012-07-02 22:16:54 +00001561 case LEK_NotLockedAtEndOfFunction:
1562 DiagID = diag::warn_expecting_locked;
1563 break;
Caitlin Sadowskiaf9b7c52011-09-15 17:25:19 +00001564 }
Richard Smith92286672012-02-03 04:45:26 +00001565 if (LocEndOfScope.isInvalid())
1566 LocEndOfScope = FunEndLocation;
1567
Aaron Ballmane0449042014-04-01 21:43:23 +00001568 PartialDiagnosticAt Warning(LocEndOfScope, S.PDiag(DiagID) << Kind
1569 << LockName);
DeLesley Hutchinsfd374bb2013-04-08 20:11:11 +00001570 if (LocLocked.isValid()) {
Aaron Ballmane0449042014-04-01 21:43:23 +00001571 PartialDiagnosticAt Note(LocLocked, S.PDiag(diag::note_locked_here)
1572 << Kind);
Benjamin Kramer3204b152015-05-29 19:42:19 +00001573 Warnings.emplace_back(std::move(Warning), getNotes(Note));
DeLesley Hutchinsfd374bb2013-04-08 20:11:11 +00001574 return;
1575 }
Benjamin Kramer3204b152015-05-29 19:42:19 +00001576 Warnings.emplace_back(std::move(Warning), getNotes());
Caitlin Sadowski0b3501c2011-09-09 16:04:02 +00001577 }
1578
Aaron Ballmane0449042014-04-01 21:43:23 +00001579 void handleExclusiveAndShared(StringRef Kind, Name LockName,
1580 SourceLocation Loc1,
Craig Toppere14c0f82014-03-12 04:55:44 +00001581 SourceLocation Loc2) override {
Aaron Ballmane0449042014-04-01 21:43:23 +00001582 PartialDiagnosticAt Warning(Loc1,
1583 S.PDiag(diag::warn_lock_exclusive_and_shared)
1584 << Kind << LockName);
1585 PartialDiagnosticAt Note(Loc2, S.PDiag(diag::note_lock_exclusive_and_shared)
1586 << Kind << LockName);
Benjamin Kramer3204b152015-05-29 19:42:19 +00001587 Warnings.emplace_back(std::move(Warning), getNotes(Note));
Caitlin Sadowski0b3501c2011-09-09 16:04:02 +00001588 }
1589
Aaron Ballmane0449042014-04-01 21:43:23 +00001590 void handleNoMutexHeld(StringRef Kind, const NamedDecl *D,
1591 ProtectedOperationKind POK, AccessKind AK,
1592 SourceLocation Loc) override {
1593 assert((POK == POK_VarAccess || POK == POK_VarDereference) &&
1594 "Only works for variables");
Caitlin Sadowskie50d8c32011-09-14 20:09:09 +00001595 unsigned DiagID = POK == POK_VarAccess?
1596 diag::warn_variable_requires_any_lock:
1597 diag::warn_var_deref_requires_any_lock;
Richard Smith92286672012-02-03 04:45:26 +00001598 PartialDiagnosticAt Warning(Loc, S.PDiag(DiagID)
DeLesley Hutchinsa15e1b42012-09-19 19:18:29 +00001599 << D->getNameAsString() << getLockKindFromAccessKind(AK));
Benjamin Kramer3204b152015-05-29 19:42:19 +00001600 Warnings.emplace_back(std::move(Warning), getNotes());
Caitlin Sadowski0b3501c2011-09-09 16:04:02 +00001601 }
1602
Aaron Ballmane0449042014-04-01 21:43:23 +00001603 void handleMutexNotHeld(StringRef Kind, const NamedDecl *D,
1604 ProtectedOperationKind POK, Name LockName,
1605 LockKind LK, SourceLocation Loc,
Craig Toppere14c0f82014-03-12 04:55:44 +00001606 Name *PossibleMatch) override {
Caitlin Sadowski427f42e2011-09-13 18:01:58 +00001607 unsigned DiagID = 0;
DeLesley Hutchins5ff16442012-09-10 19:58:23 +00001608 if (PossibleMatch) {
1609 switch (POK) {
1610 case POK_VarAccess:
1611 DiagID = diag::warn_variable_requires_lock_precise;
1612 break;
1613 case POK_VarDereference:
1614 DiagID = diag::warn_var_deref_requires_lock_precise;
1615 break;
1616 case POK_FunctionCall:
1617 DiagID = diag::warn_fun_requires_lock_precise;
1618 break;
DeLesley Hutchinsc60dc2c2014-09-18 23:02:26 +00001619 case POK_PassByRef:
1620 DiagID = diag::warn_guarded_pass_by_reference;
1621 break;
1622 case POK_PtPassByRef:
1623 DiagID = diag::warn_pt_guarded_pass_by_reference;
1624 break;
DeLesley Hutchins5ff16442012-09-10 19:58:23 +00001625 }
Aaron Ballmane0449042014-04-01 21:43:23 +00001626 PartialDiagnosticAt Warning(Loc, S.PDiag(DiagID) << Kind
1627 << D->getNameAsString()
1628 << LockName << LK);
DeLesley Hutchins5ff16442012-09-10 19:58:23 +00001629 PartialDiagnosticAt Note(Loc, S.PDiag(diag::note_found_mutex_near_match)
Aaron Ballmane0449042014-04-01 21:43:23 +00001630 << *PossibleMatch);
DeLesley Hutchinsc60dc2c2014-09-18 23:02:26 +00001631 if (Verbose && POK == POK_VarAccess) {
1632 PartialDiagnosticAt VNote(D->getLocation(),
1633 S.PDiag(diag::note_guarded_by_declared_here)
1634 << D->getNameAsString());
Benjamin Kramer3204b152015-05-29 19:42:19 +00001635 Warnings.emplace_back(std::move(Warning), getNotes(Note, VNote));
DeLesley Hutchinsc60dc2c2014-09-18 23:02:26 +00001636 } else
Benjamin Kramer3204b152015-05-29 19:42:19 +00001637 Warnings.emplace_back(std::move(Warning), getNotes(Note));
DeLesley Hutchins5ff16442012-09-10 19:58:23 +00001638 } else {
1639 switch (POK) {
1640 case POK_VarAccess:
1641 DiagID = diag::warn_variable_requires_lock;
1642 break;
1643 case POK_VarDereference:
1644 DiagID = diag::warn_var_deref_requires_lock;
1645 break;
1646 case POK_FunctionCall:
1647 DiagID = diag::warn_fun_requires_lock;
1648 break;
DeLesley Hutchinsc60dc2c2014-09-18 23:02:26 +00001649 case POK_PassByRef:
1650 DiagID = diag::warn_guarded_pass_by_reference;
1651 break;
1652 case POK_PtPassByRef:
1653 DiagID = diag::warn_pt_guarded_pass_by_reference;
1654 break;
DeLesley Hutchins5ff16442012-09-10 19:58:23 +00001655 }
Aaron Ballmane0449042014-04-01 21:43:23 +00001656 PartialDiagnosticAt Warning(Loc, S.PDiag(DiagID) << Kind
1657 << D->getNameAsString()
1658 << LockName << LK);
DeLesley Hutchinseb0ea5f2014-08-14 21:40:15 +00001659 if (Verbose && POK == POK_VarAccess) {
1660 PartialDiagnosticAt Note(D->getLocation(),
Aaron Ballman71291bc2014-08-15 12:38:17 +00001661 S.PDiag(diag::note_guarded_by_declared_here)
1662 << D->getNameAsString());
Benjamin Kramer3204b152015-05-29 19:42:19 +00001663 Warnings.emplace_back(std::move(Warning), getNotes(Note));
Aaron Ballman71291bc2014-08-15 12:38:17 +00001664 } else
Benjamin Kramer3204b152015-05-29 19:42:19 +00001665 Warnings.emplace_back(std::move(Warning), getNotes());
Caitlin Sadowski0b3501c2011-09-09 16:04:02 +00001666 }
Caitlin Sadowski0b3501c2011-09-09 16:04:02 +00001667 }
1668
Alexander Kornienko34eb2072015-04-11 02:00:23 +00001669 void handleNegativeNotHeld(StringRef Kind, Name LockName, Name Neg,
1670 SourceLocation Loc) override {
DeLesley Hutchins3efd0492014-08-04 22:13:06 +00001671 PartialDiagnosticAt Warning(Loc,
1672 S.PDiag(diag::warn_acquire_requires_negative_cap)
1673 << Kind << LockName << Neg);
Benjamin Kramer3204b152015-05-29 19:42:19 +00001674 Warnings.emplace_back(std::move(Warning), getNotes());
DeLesley Hutchins3efd0492014-08-04 22:13:06 +00001675 }
1676
Aaron Ballmane0449042014-04-01 21:43:23 +00001677 void handleFunExcludesLock(StringRef Kind, Name FunName, Name LockName,
Craig Toppere14c0f82014-03-12 04:55:44 +00001678 SourceLocation Loc) override {
Aaron Ballmane0449042014-04-01 21:43:23 +00001679 PartialDiagnosticAt Warning(Loc, S.PDiag(diag::warn_fun_excludes_mutex)
1680 << Kind << FunName << LockName);
Benjamin Kramer3204b152015-05-29 19:42:19 +00001681 Warnings.emplace_back(std::move(Warning), getNotes());
DeLesley Hutchinseb0ea5f2014-08-14 21:40:15 +00001682 }
1683
Alexander Kornienko34eb2072015-04-11 02:00:23 +00001684 void handleLockAcquiredBefore(StringRef Kind, Name L1Name, Name L2Name,
1685 SourceLocation Loc) override {
DeLesley Hutchinsab1dc2d2015-02-03 22:11:04 +00001686 PartialDiagnosticAt Warning(Loc,
1687 S.PDiag(diag::warn_acquired_before) << Kind << L1Name << L2Name);
Benjamin Kramer3204b152015-05-29 19:42:19 +00001688 Warnings.emplace_back(std::move(Warning), getNotes());
DeLesley Hutchinsab1dc2d2015-02-03 22:11:04 +00001689 }
1690
Alexander Kornienko34eb2072015-04-11 02:00:23 +00001691 void handleBeforeAfterCycle(Name L1Name, SourceLocation Loc) override {
DeLesley Hutchinsab1dc2d2015-02-03 22:11:04 +00001692 PartialDiagnosticAt Warning(Loc,
1693 S.PDiag(diag::warn_acquired_before_after_cycle) << L1Name);
Benjamin Kramer3204b152015-05-29 19:42:19 +00001694 Warnings.emplace_back(std::move(Warning), getNotes());
DeLesley Hutchinsab1dc2d2015-02-03 22:11:04 +00001695 }
1696
DeLesley Hutchinseb0ea5f2014-08-14 21:40:15 +00001697 void enterFunction(const FunctionDecl* FD) override {
1698 CurrentFunction = FD;
1699 }
1700
1701 void leaveFunction(const FunctionDecl* FD) override {
Hans Wennborgdcfba332015-10-06 23:40:43 +00001702 CurrentFunction = nullptr;
Caitlin Sadowski0b3501c2011-09-09 16:04:02 +00001703 }
1704};
Hans Wennborgdcfba332015-10-06 23:40:43 +00001705} // anonymous namespace
Benjamin Kramer539803c2015-03-19 14:23:45 +00001706} // namespace threadSafety
1707} // namespace clang
Caitlin Sadowski0b3501c2011-09-09 16:04:02 +00001708
Ted Kremenekb749a6d2011-01-15 02:58:47 +00001709//===----------------------------------------------------------------------===//
DeLesley Hutchins48a31762013-08-12 21:20:55 +00001710// -Wconsumed
1711//===----------------------------------------------------------------------===//
1712
1713namespace clang {
1714namespace consumed {
1715namespace {
1716class ConsumedWarningsHandler : public ConsumedWarningsHandlerBase {
1717
1718 Sema &S;
1719 DiagList Warnings;
1720
1721public:
DeLesley Hutchinsab1dc2d2015-02-03 22:11:04 +00001722
DeLesley Hutchins48a31762013-08-12 21:20:55 +00001723 ConsumedWarningsHandler(Sema &S) : S(S) {}
Craig Toppere14c0f82014-03-12 04:55:44 +00001724
1725 void emitDiagnostics() override {
DeLesley Hutchins48a31762013-08-12 21:20:55 +00001726 Warnings.sort(SortDiagBySourceLocation(S.getSourceManager()));
Aaron Ballmane5195222014-05-15 20:50:47 +00001727 for (const auto &Diag : Warnings) {
1728 S.Diag(Diag.first.first, Diag.first.second);
1729 for (const auto &Note : Diag.second)
1730 S.Diag(Note.first, Note.second);
DeLesley Hutchins48a31762013-08-12 21:20:55 +00001731 }
1732 }
Craig Toppere14c0f82014-03-12 04:55:44 +00001733
1734 void warnLoopStateMismatch(SourceLocation Loc,
1735 StringRef VariableName) override {
DeLesley Hutchins3277a612013-10-09 18:30:24 +00001736 PartialDiagnosticAt Warning(Loc, S.PDiag(diag::warn_loop_state_mismatch) <<
1737 VariableName);
Benjamin Kramer3204b152015-05-29 19:42:19 +00001738
1739 Warnings.emplace_back(std::move(Warning), OptionalNotes());
DeLesley Hutchins3277a612013-10-09 18:30:24 +00001740 }
1741
DeLesley Hutchins36ea1dd2013-10-17 22:53:04 +00001742 void warnParamReturnTypestateMismatch(SourceLocation Loc,
1743 StringRef VariableName,
1744 StringRef ExpectedState,
Craig Toppere14c0f82014-03-12 04:55:44 +00001745 StringRef ObservedState) override {
DeLesley Hutchins36ea1dd2013-10-17 22:53:04 +00001746
1747 PartialDiagnosticAt Warning(Loc, S.PDiag(
1748 diag::warn_param_return_typestate_mismatch) << VariableName <<
1749 ExpectedState << ObservedState);
Benjamin Kramer3204b152015-05-29 19:42:19 +00001750
1751 Warnings.emplace_back(std::move(Warning), OptionalNotes());
DeLesley Hutchins36ea1dd2013-10-17 22:53:04 +00001752 }
1753
DeLesley Hutchins69391772013-10-17 23:23:53 +00001754 void warnParamTypestateMismatch(SourceLocation Loc, StringRef ExpectedState,
Craig Toppere14c0f82014-03-12 04:55:44 +00001755 StringRef ObservedState) override {
DeLesley Hutchins69391772013-10-17 23:23:53 +00001756
1757 PartialDiagnosticAt Warning(Loc, S.PDiag(
1758 diag::warn_param_typestate_mismatch) << ExpectedState << ObservedState);
Benjamin Kramer3204b152015-05-29 19:42:19 +00001759
1760 Warnings.emplace_back(std::move(Warning), OptionalNotes());
DeLesley Hutchins69391772013-10-17 23:23:53 +00001761 }
1762
DeLesley Hutchinsfc368252013-09-03 20:11:38 +00001763 void warnReturnTypestateForUnconsumableType(SourceLocation Loc,
Craig Toppere14c0f82014-03-12 04:55:44 +00001764 StringRef TypeName) override {
DeLesley Hutchinsfc368252013-09-03 20:11:38 +00001765 PartialDiagnosticAt Warning(Loc, S.PDiag(
1766 diag::warn_return_typestate_for_unconsumable_type) << TypeName);
Benjamin Kramer3204b152015-05-29 19:42:19 +00001767
1768 Warnings.emplace_back(std::move(Warning), OptionalNotes());
DeLesley Hutchinsfc368252013-09-03 20:11:38 +00001769 }
1770
1771 void warnReturnTypestateMismatch(SourceLocation Loc, StringRef ExpectedState,
Craig Toppere14c0f82014-03-12 04:55:44 +00001772 StringRef ObservedState) override {
DeLesley Hutchinsfc368252013-09-03 20:11:38 +00001773
1774 PartialDiagnosticAt Warning(Loc, S.PDiag(
1775 diag::warn_return_typestate_mismatch) << ExpectedState << ObservedState);
Benjamin Kramer3204b152015-05-29 19:42:19 +00001776
1777 Warnings.emplace_back(std::move(Warning), OptionalNotes());
DeLesley Hutchinsfc368252013-09-03 20:11:38 +00001778 }
1779
DeLesley Hutchins210791a2013-10-04 21:28:06 +00001780 void warnUseOfTempInInvalidState(StringRef MethodName, StringRef State,
Craig Toppere14c0f82014-03-12 04:55:44 +00001781 SourceLocation Loc) override {
DeLesley Hutchins48a31762013-08-12 21:20:55 +00001782
1783 PartialDiagnosticAt Warning(Loc, S.PDiag(
DeLesley Hutchins210791a2013-10-04 21:28:06 +00001784 diag::warn_use_of_temp_in_invalid_state) << MethodName << State);
Benjamin Kramer3204b152015-05-29 19:42:19 +00001785
1786 Warnings.emplace_back(std::move(Warning), OptionalNotes());
DeLesley Hutchins48a31762013-08-12 21:20:55 +00001787 }
1788
DeLesley Hutchins210791a2013-10-04 21:28:06 +00001789 void warnUseInInvalidState(StringRef MethodName, StringRef VariableName,
Craig Toppere14c0f82014-03-12 04:55:44 +00001790 StringRef State, SourceLocation Loc) override {
DeLesley Hutchins48a31762013-08-12 21:20:55 +00001791
DeLesley Hutchins210791a2013-10-04 21:28:06 +00001792 PartialDiagnosticAt Warning(Loc, S.PDiag(diag::warn_use_in_invalid_state) <<
1793 MethodName << VariableName << State);
Benjamin Kramer3204b152015-05-29 19:42:19 +00001794
1795 Warnings.emplace_back(std::move(Warning), OptionalNotes());
DeLesley Hutchins48a31762013-08-12 21:20:55 +00001796 }
1797};
Hans Wennborgdcfba332015-10-06 23:40:43 +00001798} // anonymous namespace
1799} // namespace consumed
1800} // namespace clang
DeLesley Hutchins48a31762013-08-12 21:20:55 +00001801
1802//===----------------------------------------------------------------------===//
Ted Kremenek918fe842010-03-20 21:06:02 +00001803// AnalysisBasedWarnings - Worker object used by Sema to execute analysis-based
1804// warnings on a function, method, or block.
1805//===----------------------------------------------------------------------===//
1806
Ted Kremenek0b405322010-03-23 00:13:23 +00001807clang::sema::AnalysisBasedWarnings::Policy::Policy() {
1808 enableCheckFallThrough = 1;
1809 enableCheckUnreachable = 0;
Caitlin Sadowskiafbbd8e2011-08-23 18:46:34 +00001810 enableThreadSafetyAnalysis = 0;
DeLesley Hutchins48a31762013-08-12 21:20:55 +00001811 enableConsumedAnalysis = 0;
Ted Kremenek0b405322010-03-23 00:13:23 +00001812}
1813
Ted Kremenekad8753c2014-03-15 05:47:06 +00001814static unsigned isEnabled(DiagnosticsEngine &D, unsigned diag) {
Alp Tokerd4a3f0e2014-06-15 23:30:39 +00001815 return (unsigned)!D.isIgnored(diag, SourceLocation());
Ted Kremenekad8753c2014-03-15 05:47:06 +00001816}
1817
Chandler Carruthb4836ea2011-07-06 16:21:37 +00001818clang::sema::AnalysisBasedWarnings::AnalysisBasedWarnings(Sema &s)
1819 : S(s),
1820 NumFunctionsAnalyzed(0),
Benjamin Kramer581f48f2011-07-08 20:38:53 +00001821 NumFunctionsWithBadCFGs(0),
Chandler Carruthb4836ea2011-07-06 16:21:37 +00001822 NumCFGBlocks(0),
Benjamin Kramer581f48f2011-07-08 20:38:53 +00001823 MaxCFGBlocksPerFunction(0),
1824 NumUninitAnalysisFunctions(0),
1825 NumUninitAnalysisVariables(0),
1826 MaxUninitAnalysisVariablesPerFunction(0),
1827 NumUninitAnalysisBlockVisits(0),
1828 MaxUninitAnalysisBlockVisitsPerFunction(0) {
Ted Kremenekad8753c2014-03-15 05:47:06 +00001829
1830 using namespace diag;
David Blaikie9c902b52011-09-25 23:23:43 +00001831 DiagnosticsEngine &D = S.getDiagnostics();
Ted Kremenekad8753c2014-03-15 05:47:06 +00001832
1833 DefaultPolicy.enableCheckUnreachable =
1834 isEnabled(D, warn_unreachable) ||
1835 isEnabled(D, warn_unreachable_break) ||
Ted Kremenek14210372014-03-21 06:02:36 +00001836 isEnabled(D, warn_unreachable_return) ||
1837 isEnabled(D, warn_unreachable_loop_increment);
Ted Kremenekad8753c2014-03-15 05:47:06 +00001838
1839 DefaultPolicy.enableThreadSafetyAnalysis =
1840 isEnabled(D, warn_double_lock);
1841
1842 DefaultPolicy.enableConsumedAnalysis =
1843 isEnabled(D, warn_use_in_invalid_state);
Ted Kremenek918fe842010-03-20 21:06:02 +00001844}
1845
Aaron Ballmane5195222014-05-15 20:50:47 +00001846static void flushDiagnostics(Sema &S, const sema::FunctionScopeInfo *fscope) {
1847 for (const auto &D : fscope->PossiblyUnreachableDiags)
Ted Kremenek3427fac2011-02-23 01:52:04 +00001848 S.Diag(D.Loc, D.PD);
Ted Kremenek3427fac2011-02-23 01:52:04 +00001849}
1850
Ted Kremenek0b405322010-03-23 00:13:23 +00001851void clang::sema::
1852AnalysisBasedWarnings::IssueWarnings(sema::AnalysisBasedWarnings::Policy P,
Ted Kremenekcc7f1f82011-02-23 01:51:53 +00001853 sema::FunctionScopeInfo *fscope,
Ted Kremenek1767a272011-02-23 01:51:48 +00001854 const Decl *D, const BlockExpr *blkExpr) {
Ted Kremenekb45ebee2010-03-20 21:11:09 +00001855
Ted Kremenek918fe842010-03-20 21:06:02 +00001856 // We avoid doing analysis-based warnings when there are errors for
1857 // two reasons:
1858 // (1) The CFGs often can't be constructed (if the body is invalid), so
1859 // don't bother trying.
1860 // (2) The code already has problems; running the analysis just takes more
1861 // time.
David Blaikie9c902b52011-09-25 23:23:43 +00001862 DiagnosticsEngine &Diags = S.getDiagnostics();
Ted Kremenekb8021922010-04-30 21:49:25 +00001863
Ted Kremenek0b405322010-03-23 00:13:23 +00001864 // Do not do any analysis for declarations in system headers if we are
1865 // going to just ignore them.
Ted Kremenekb8021922010-04-30 21:49:25 +00001866 if (Diags.getSuppressSystemWarnings() &&
Ted Kremenek0b405322010-03-23 00:13:23 +00001867 S.SourceMgr.isInSystemHeader(D->getLocation()))
1868 return;
1869
John McCall1d570a72010-08-25 05:56:39 +00001870 // For code in dependent contexts, we'll do this at instantiation time.
David Blaikie0f2ae782012-01-24 04:51:48 +00001871 if (cast<DeclContext>(D)->isDependentContext())
1872 return;
Ted Kremenek918fe842010-03-20 21:06:02 +00001873
DeLesley Hutchins8ecd4912012-12-07 22:53:48 +00001874 if (Diags.hasUncompilableErrorOccurred() || Diags.hasFatalErrorOccurred()) {
Ted Kremenek3427fac2011-02-23 01:52:04 +00001875 // Flush out any possibly unreachable diagnostics.
1876 flushDiagnostics(S, fscope);
1877 return;
1878 }
1879
Ted Kremenek918fe842010-03-20 21:06:02 +00001880 const Stmt *Body = D->getBody();
1881 assert(Body);
1882
Ted Kremenekb3a38a92013-10-14 19:11:25 +00001883 // Construct the analysis context with the specified CFG build options.
Craig Topperc3ec1492014-05-26 06:22:03 +00001884 AnalysisDeclContext AC(/* AnalysisDeclContextManager */ nullptr, D);
Ted Kremenek189ecec2011-07-21 05:22:47 +00001885
Ted Kremenek918fe842010-03-20 21:06:02 +00001886 // Don't generate EH edges for CallExprs as we'd like to avoid the n^2
Benjamin Kramer60509af2013-09-09 14:48:42 +00001887 // explosion for destructors that can result and the compile time hit.
Ted Kremenek189ecec2011-07-21 05:22:47 +00001888 AC.getCFGBuildOptions().PruneTriviallyFalseEdges = true;
1889 AC.getCFGBuildOptions().AddEHEdges = false;
1890 AC.getCFGBuildOptions().AddInitializers = true;
1891 AC.getCFGBuildOptions().AddImplicitDtors = true;
Jordan Rose91f78402012-09-05 23:11:06 +00001892 AC.getCFGBuildOptions().AddTemporaryDtors = true;
Jordan Rosec9176072014-01-13 17:59:19 +00001893 AC.getCFGBuildOptions().AddCXXNewAllocator = false;
Enrico Pertosofaed8012015-06-03 10:12:40 +00001894 AC.getCFGBuildOptions().AddCXXDefaultInitExprInCtors = true;
Jordan Rose91f78402012-09-05 23:11:06 +00001895
Ted Kremenek9e100ea2011-07-19 14:18:48 +00001896 // Force that certain expressions appear as CFGElements in the CFG. This
1897 // is used to speed up various analyses.
1898 // FIXME: This isn't the right factoring. This is here for initial
1899 // prototyping, but we need a way for analyses to say what expressions they
1900 // expect to always be CFGElements and then fill in the BuildOptions
1901 // appropriately. This is essentially a layering violation.
DeLesley Hutchins48a31762013-08-12 21:20:55 +00001902 if (P.enableCheckUnreachable || P.enableThreadSafetyAnalysis ||
1903 P.enableConsumedAnalysis) {
DeLesley Hutchinsf7faa6a2011-12-08 20:23:06 +00001904 // Unreachable code analysis and thread safety require a linearized CFG.
Ted Kremenekbd913712011-08-23 23:05:11 +00001905 AC.getCFGBuildOptions().setAllAlwaysAdd();
1906 }
1907 else {
1908 AC.getCFGBuildOptions()
1909 .setAlwaysAdd(Stmt::BinaryOperatorClass)
Richard Smithb21dd022012-07-17 01:27:33 +00001910 .setAlwaysAdd(Stmt::CompoundAssignOperatorClass)
Ted Kremenekbd913712011-08-23 23:05:11 +00001911 .setAlwaysAdd(Stmt::BlockExprClass)
1912 .setAlwaysAdd(Stmt::CStyleCastExprClass)
1913 .setAlwaysAdd(Stmt::DeclRefExprClass)
1914 .setAlwaysAdd(Stmt::ImplicitCastExprClass)
Richard Smith84837d52012-05-03 18:27:39 +00001915 .setAlwaysAdd(Stmt::UnaryOperatorClass)
1916 .setAlwaysAdd(Stmt::AttributedStmtClass);
Ted Kremenekbd913712011-08-23 23:05:11 +00001917 }
Ted Kremenek918fe842010-03-20 21:06:02 +00001918
Richard Trieue9fa2662014-04-15 00:57:50 +00001919 // Install the logical handler for -Wtautological-overlap-compare
1920 std::unique_ptr<LogicalErrorHandler> LEH;
Alp Tokerd4a3f0e2014-06-15 23:30:39 +00001921 if (!Diags.isIgnored(diag::warn_tautological_overlap_comparison,
1922 D->getLocStart())) {
Richard Trieue9fa2662014-04-15 00:57:50 +00001923 LEH.reset(new LogicalErrorHandler(S));
1924 AC.getCFGBuildOptions().Observer = LEH.get();
Richard Trieuf935b562014-04-05 05:17:01 +00001925 }
Ted Kremenekb3a38a92013-10-14 19:11:25 +00001926
Ted Kremenek3427fac2011-02-23 01:52:04 +00001927 // Emit delayed diagnostics.
David Blaikie0f2ae782012-01-24 04:51:48 +00001928 if (!fscope->PossiblyUnreachableDiags.empty()) {
Ted Kremenek3427fac2011-02-23 01:52:04 +00001929 bool analyzed = false;
Ted Kremeneka099c592011-03-10 03:50:34 +00001930
1931 // Register the expressions with the CFGBuilder.
Aaron Ballmane5195222014-05-15 20:50:47 +00001932 for (const auto &D : fscope->PossiblyUnreachableDiags) {
1933 if (D.stmt)
1934 AC.registerForcedBlockExpression(D.stmt);
Ted Kremeneka099c592011-03-10 03:50:34 +00001935 }
1936
1937 if (AC.getCFG()) {
1938 analyzed = true;
Aaron Ballmane5195222014-05-15 20:50:47 +00001939 for (const auto &D : fscope->PossiblyUnreachableDiags) {
Ted Kremeneka099c592011-03-10 03:50:34 +00001940 bool processed = false;
Aaron Ballmane5195222014-05-15 20:50:47 +00001941 if (D.stmt) {
1942 const CFGBlock *block = AC.getBlockForRegisteredExpression(D.stmt);
Eli Friedmane0afc982012-01-21 01:01:51 +00001943 CFGReverseBlockReachabilityAnalysis *cra =
1944 AC.getCFGReachablityAnalysis();
1945 // FIXME: We should be able to assert that block is non-null, but
1946 // the CFG analysis can skip potentially-evaluated expressions in
1947 // edge cases; see test/Sema/vla-2.c.
1948 if (block && cra) {
Ted Kremenek3427fac2011-02-23 01:52:04 +00001949 // Can this block be reached from the entrance?
Ted Kremeneka099c592011-03-10 03:50:34 +00001950 if (cra->isReachable(&AC.getCFG()->getEntry(), block))
Ted Kremenek3427fac2011-02-23 01:52:04 +00001951 S.Diag(D.Loc, D.PD);
Ted Kremeneka099c592011-03-10 03:50:34 +00001952 processed = true;
Ted Kremenek3427fac2011-02-23 01:52:04 +00001953 }
1954 }
Ted Kremeneka099c592011-03-10 03:50:34 +00001955 if (!processed) {
1956 // Emit the warning anyway if we cannot map to a basic block.
1957 S.Diag(D.Loc, D.PD);
1958 }
Ted Kremenek3427fac2011-02-23 01:52:04 +00001959 }
Ted Kremeneka099c592011-03-10 03:50:34 +00001960 }
Ted Kremenek3427fac2011-02-23 01:52:04 +00001961
1962 if (!analyzed)
1963 flushDiagnostics(S, fscope);
1964 }
1965
Ted Kremenek918fe842010-03-20 21:06:02 +00001966 // Warning: check missing 'return'
David Blaikie0f2ae782012-01-24 04:51:48 +00001967 if (P.enableCheckFallThrough) {
Ted Kremenek918fe842010-03-20 21:06:02 +00001968 const CheckFallThroughDiagnostics &CD =
1969 (isa<BlockDecl>(D) ? CheckFallThroughDiagnostics::MakeForBlock()
Douglas Gregorcf11eb72012-02-15 16:20:15 +00001970 : (isa<CXXMethodDecl>(D) &&
1971 cast<CXXMethodDecl>(D)->getOverloadedOperator() == OO_Call &&
1972 cast<CXXMethodDecl>(D)->getParent()->isLambda())
1973 ? CheckFallThroughDiagnostics::MakeForLambda()
1974 : CheckFallThroughDiagnostics::MakeForFunction(D));
Ted Kremenek1767a272011-02-23 01:51:48 +00001975 CheckFallThroughForBody(S, D, Body, blkExpr, CD, AC);
Ted Kremenek918fe842010-03-20 21:06:02 +00001976 }
1977
1978 // Warning: check for unreachable code
Ted Kremenek7f770032011-11-30 21:22:09 +00001979 if (P.enableCheckUnreachable) {
1980 // Only check for unreachable code on non-template instantiations.
1981 // Different template instantiations can effectively change the control-flow
1982 // and it is very difficult to prove that a snippet of code in a template
1983 // is unreachable for all instantiations.
Ted Kremenek85825ae2011-12-01 00:59:17 +00001984 bool isTemplateInstantiation = false;
1985 if (const FunctionDecl *Function = dyn_cast<FunctionDecl>(D))
1986 isTemplateInstantiation = Function->isTemplateInstantiation();
1987 if (!isTemplateInstantiation)
Ted Kremenek7f770032011-11-30 21:22:09 +00001988 CheckUnreachable(S, AC);
1989 }
Caitlin Sadowski0b3501c2011-09-09 16:04:02 +00001990
Caitlin Sadowskiafbbd8e2011-08-23 18:46:34 +00001991 // Check for thread safety violations
David Blaikie0f2ae782012-01-24 04:51:48 +00001992 if (P.enableThreadSafetyAnalysis) {
DeLesley Hutchinsc2090512011-10-21 18:10:14 +00001993 SourceLocation FL = AC.getDecl()->getLocation();
Richard Smith92286672012-02-03 04:45:26 +00001994 SourceLocation FEL = AC.getDecl()->getLocEnd();
DeLesley Hutchinsea1f8332014-07-28 15:57:27 +00001995 threadSafety::ThreadSafetyReporter Reporter(S, FL, FEL);
Alp Tokerd4a3f0e2014-06-15 23:30:39 +00001996 if (!Diags.isIgnored(diag::warn_thread_safety_beta, D->getLocStart()))
DeLesley Hutchins8edae132012-12-05 00:06:15 +00001997 Reporter.setIssueBetaWarnings(true);
DeLesley Hutchinseb0ea5f2014-08-14 21:40:15 +00001998 if (!Diags.isIgnored(diag::warn_thread_safety_verbose, D->getLocStart()))
1999 Reporter.setVerbose(true);
DeLesley Hutchins8edae132012-12-05 00:06:15 +00002000
DeLesley Hutchinsab1dc2d2015-02-03 22:11:04 +00002001 threadSafety::runThreadSafetyAnalysis(AC, Reporter,
2002 &S.ThreadSafetyDeclCache);
Caitlin Sadowski0b3501c2011-09-09 16:04:02 +00002003 Reporter.emitDiagnostics();
2004 }
Caitlin Sadowskiafbbd8e2011-08-23 18:46:34 +00002005
DeLesley Hutchins48a31762013-08-12 21:20:55 +00002006 // Check for violations of consumed properties.
2007 if (P.enableConsumedAnalysis) {
2008 consumed::ConsumedWarningsHandler WarningHandler(S);
Reid Klecknere846dea2013-08-12 23:49:39 +00002009 consumed::ConsumedAnalyzer Analyzer(WarningHandler);
DeLesley Hutchins48a31762013-08-12 21:20:55 +00002010 Analyzer.run(AC);
2011 }
2012
Alp Tokerd4a3f0e2014-06-15 23:30:39 +00002013 if (!Diags.isIgnored(diag::warn_uninit_var, D->getLocStart()) ||
2014 !Diags.isIgnored(diag::warn_sometimes_uninit_var, D->getLocStart()) ||
2015 !Diags.isIgnored(diag::warn_maybe_uninit_var, D->getLocStart())) {
Ted Kremenek2551fbe2011-03-17 05:29:57 +00002016 if (CFG *cfg = AC.getCFG()) {
Ted Kremenekb63931e2011-01-18 21:18:58 +00002017 UninitValsDiagReporter reporter(S);
Fariborz Jahanian8809a9d2011-07-16 18:31:33 +00002018 UninitVariablesAnalysisStats stats;
Benjamin Kramere492cb42011-07-16 20:13:06 +00002019 std::memset(&stats, 0, sizeof(UninitVariablesAnalysisStats));
Ted Kremenekbcf848f2011-01-25 19:13:48 +00002020 runUninitializedVariablesAnalysis(*cast<DeclContext>(D), *cfg, AC,
Chandler Carruthb4836ea2011-07-06 16:21:37 +00002021 reporter, stats);
2022
2023 if (S.CollectStats && stats.NumVariablesAnalyzed > 0) {
2024 ++NumUninitAnalysisFunctions;
2025 NumUninitAnalysisVariables += stats.NumVariablesAnalyzed;
2026 NumUninitAnalysisBlockVisits += stats.NumBlockVisits;
2027 MaxUninitAnalysisVariablesPerFunction =
2028 std::max(MaxUninitAnalysisVariablesPerFunction,
2029 stats.NumVariablesAnalyzed);
2030 MaxUninitAnalysisBlockVisitsPerFunction =
2031 std::max(MaxUninitAnalysisBlockVisitsPerFunction,
2032 stats.NumBlockVisits);
2033 }
Ted Kremenekb749a6d2011-01-15 02:58:47 +00002034 }
2035 }
Chandler Carruthb4836ea2011-07-06 16:21:37 +00002036
Alexander Kornienko06caf7d2012-06-02 01:01:07 +00002037 bool FallThroughDiagFull =
Alp Tokerd4a3f0e2014-06-15 23:30:39 +00002038 !Diags.isIgnored(diag::warn_unannotated_fallthrough, D->getLocStart());
2039 bool FallThroughDiagPerFunction = !Diags.isIgnored(
2040 diag::warn_unannotated_fallthrough_per_function, D->getLocStart());
Alexis Hunt2178f142012-06-15 21:22:05 +00002041 if (FallThroughDiagFull || FallThroughDiagPerFunction) {
Alexander Kornienko06caf7d2012-06-02 01:01:07 +00002042 DiagnoseSwitchLabelsFallthrough(S, AC, !FallThroughDiagFull);
Richard Smith84837d52012-05-03 18:27:39 +00002043 }
2044
John McCall460ce582015-10-22 18:38:17 +00002045 if (S.getLangOpts().ObjCWeak &&
Alp Tokerd4a3f0e2014-06-15 23:30:39 +00002046 !Diags.isIgnored(diag::warn_arc_repeated_use_of_weak, D->getLocStart()))
Jordan Rose76831c62012-10-11 16:10:19 +00002047 diagnoseRepeatedUseOfWeak(S, fscope, D, AC.getParentMap());
Jordan Rosed3934582012-09-28 22:21:30 +00002048
Richard Trieu2f024f42013-12-21 02:33:43 +00002049
2050 // Check for infinite self-recursion in functions
Alp Tokerd4a3f0e2014-06-15 23:30:39 +00002051 if (!Diags.isIgnored(diag::warn_infinite_recursive_function,
2052 D->getLocStart())) {
Richard Trieu2f024f42013-12-21 02:33:43 +00002053 if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) {
2054 checkRecursiveFunction(S, FD, Body, AC);
2055 }
2056 }
2057
Richard Trieue9fa2662014-04-15 00:57:50 +00002058 // If none of the previous checks caused a CFG build, trigger one here
2059 // for -Wtautological-overlap-compare
Alp Tokerd4a3f0e2014-06-15 23:30:39 +00002060 if (!Diags.isIgnored(diag::warn_tautological_overlap_comparison,
Richard Trieue9fa2662014-04-15 00:57:50 +00002061 D->getLocStart())) {
2062 AC.getCFG();
2063 }
2064
Chandler Carruthb4836ea2011-07-06 16:21:37 +00002065 // Collect statistics about the CFG if it was built.
2066 if (S.CollectStats && AC.isCFGBuilt()) {
2067 ++NumFunctionsAnalyzed;
2068 if (CFG *cfg = AC.getCFG()) {
2069 // If we successfully built a CFG for this context, record some more
2070 // detail information about it.
Chandler Carruth50020d92011-07-06 22:21:45 +00002071 NumCFGBlocks += cfg->getNumBlockIDs();
Chandler Carruthb4836ea2011-07-06 16:21:37 +00002072 MaxCFGBlocksPerFunction = std::max(MaxCFGBlocksPerFunction,
Chandler Carruth50020d92011-07-06 22:21:45 +00002073 cfg->getNumBlockIDs());
Chandler Carruthb4836ea2011-07-06 16:21:37 +00002074 } else {
2075 ++NumFunctionsWithBadCFGs;
2076 }
2077 }
2078}
2079
2080void clang::sema::AnalysisBasedWarnings::PrintStats() const {
2081 llvm::errs() << "\n*** Analysis Based Warnings Stats:\n";
2082
2083 unsigned NumCFGsBuilt = NumFunctionsAnalyzed - NumFunctionsWithBadCFGs;
2084 unsigned AvgCFGBlocksPerFunction =
2085 !NumCFGsBuilt ? 0 : NumCFGBlocks/NumCFGsBuilt;
2086 llvm::errs() << NumFunctionsAnalyzed << " functions analyzed ("
2087 << NumFunctionsWithBadCFGs << " w/o CFGs).\n"
2088 << " " << NumCFGBlocks << " CFG blocks built.\n"
2089 << " " << AvgCFGBlocksPerFunction
2090 << " average CFG blocks per function.\n"
2091 << " " << MaxCFGBlocksPerFunction
2092 << " max CFG blocks per function.\n";
2093
2094 unsigned AvgUninitVariablesPerFunction = !NumUninitAnalysisFunctions ? 0
2095 : NumUninitAnalysisVariables/NumUninitAnalysisFunctions;
2096 unsigned AvgUninitBlockVisitsPerFunction = !NumUninitAnalysisFunctions ? 0
2097 : NumUninitAnalysisBlockVisits/NumUninitAnalysisFunctions;
2098 llvm::errs() << NumUninitAnalysisFunctions
2099 << " functions analyzed for uninitialiazed variables\n"
2100 << " " << NumUninitAnalysisVariables << " variables analyzed.\n"
2101 << " " << AvgUninitVariablesPerFunction
2102 << " average variables per function.\n"
2103 << " " << MaxUninitAnalysisVariablesPerFunction
2104 << " max variables per function.\n"
2105 << " " << NumUninitAnalysisBlockVisits << " block visits.\n"
2106 << " " << AvgUninitBlockVisitsPerFunction
2107 << " average block visits per function.\n"
2108 << " " << MaxUninitAnalysisBlockVisitsPerFunction
2109 << " max block visits per function.\n";
Ted Kremenek918fe842010-03-20 21:06:02 +00002110}