Ted Kremenek | dbdbaaf | 2010-03-20 21:06:02 +0000 | [diff] [blame] | 1 | //=- 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 Gregor | e737f50 | 2010-08-12 20:07:10 +0000 | [diff] [blame] | 16 | #include "clang/Sema/AnalysisBasedWarnings.h" |
John McCall | 2d88708 | 2010-08-25 22:03:47 +0000 | [diff] [blame] | 17 | #include "clang/Sema/SemaInternal.h" |
Ted Kremenek | 351ba91 | 2011-02-23 01:52:04 +0000 | [diff] [blame] | 18 | #include "clang/Sema/ScopeInfo.h" |
Ted Kremenek | d068aab | 2010-03-20 21:11:09 +0000 | [diff] [blame] | 19 | #include "clang/Basic/SourceManager.h" |
Caitlin Sadowski | 75f23ae | 2011-09-09 16:04:02 +0000 | [diff] [blame] | 20 | #include "clang/Basic/SourceLocation.h" |
Ted Kremenek | fbb178a | 2011-01-21 19:41:46 +0000 | [diff] [blame] | 21 | #include "clang/Lex/Preprocessor.h" |
John McCall | 7cd088e | 2010-08-24 07:21:54 +0000 | [diff] [blame] | 22 | #include "clang/AST/DeclObjC.h" |
John McCall | 384aff8 | 2010-08-25 07:42:41 +0000 | [diff] [blame] | 23 | #include "clang/AST/DeclCXX.h" |
Ted Kremenek | dbdbaaf | 2010-03-20 21:06:02 +0000 | [diff] [blame] | 24 | #include "clang/AST/ExprObjC.h" |
| 25 | #include "clang/AST/ExprCXX.h" |
| 26 | #include "clang/AST/StmtObjC.h" |
| 27 | #include "clang/AST/StmtCXX.h" |
Ted Kremenek | 6f41715 | 2011-04-04 20:56:00 +0000 | [diff] [blame] | 28 | #include "clang/AST/EvaluatedExprVisitor.h" |
Caitlin Sadowski | 3ac1fbc | 2011-08-23 18:46:34 +0000 | [diff] [blame] | 29 | #include "clang/AST/StmtVisitor.h" |
Ted Kremenek | dbdbaaf | 2010-03-20 21:06:02 +0000 | [diff] [blame] | 30 | #include "clang/Analysis/AnalysisContext.h" |
| 31 | #include "clang/Analysis/CFG.h" |
| 32 | #include "clang/Analysis/Analyses/ReachableCode.h" |
Ted Kremenek | 351ba91 | 2011-02-23 01:52:04 +0000 | [diff] [blame] | 33 | #include "clang/Analysis/Analyses/CFGReachabilityAnalysis.h" |
Caitlin Sadowski | 402aa06 | 2011-09-09 16:11:56 +0000 | [diff] [blame] | 34 | #include "clang/Analysis/Analyses/ThreadSafety.h" |
Ted Kremenek | 351ba91 | 2011-02-23 01:52:04 +0000 | [diff] [blame] | 35 | #include "clang/Analysis/CFGStmtMap.h" |
Ted Kremenek | 6f34213 | 2011-03-15 03:17:07 +0000 | [diff] [blame] | 36 | #include "clang/Analysis/Analyses/UninitializedValues.h" |
Ted Kremenek | dbdbaaf | 2010-03-20 21:06:02 +0000 | [diff] [blame] | 37 | #include "llvm/ADT/BitVector.h" |
Caitlin Sadowski | 3ac1fbc | 2011-08-23 18:46:34 +0000 | [diff] [blame] | 38 | #include "llvm/ADT/FoldingSet.h" |
| 39 | #include "llvm/ADT/ImmutableMap.h" |
| 40 | #include "llvm/ADT/PostOrderIterator.h" |
| 41 | #include "llvm/ADT/SmallVector.h" |
Caitlin Sadowski | 75f23ae | 2011-09-09 16:04:02 +0000 | [diff] [blame] | 42 | #include "llvm/ADT/StringRef.h" |
Ted Kremenek | dbdbaaf | 2010-03-20 21:06:02 +0000 | [diff] [blame] | 43 | #include "llvm/Support/Casting.h" |
Caitlin Sadowski | 3ac1fbc | 2011-08-23 18:46:34 +0000 | [diff] [blame] | 44 | #include <algorithm> |
| 45 | #include <vector> |
Ted Kremenek | dbdbaaf | 2010-03-20 21:06:02 +0000 | [diff] [blame] | 46 | |
| 47 | using namespace clang; |
| 48 | |
| 49 | //===----------------------------------------------------------------------===// |
| 50 | // Unreachable code analysis. |
| 51 | //===----------------------------------------------------------------------===// |
| 52 | |
| 53 | namespace { |
| 54 | class UnreachableCodeHandler : public reachable_code::Callback { |
| 55 | Sema &S; |
| 56 | public: |
| 57 | UnreachableCodeHandler(Sema &s) : S(s) {} |
| 58 | |
| 59 | void HandleUnreachable(SourceLocation L, SourceRange R1, SourceRange R2) { |
| 60 | S.Diag(L, diag::warn_unreachable) << R1 << R2; |
| 61 | } |
| 62 | }; |
| 63 | } |
| 64 | |
| 65 | /// CheckUnreachable - Check for unreachable code. |
Ted Kremenek | 1d26f48 | 2011-10-24 01:32:45 +0000 | [diff] [blame] | 66 | static void CheckUnreachable(Sema &S, AnalysisDeclContext &AC) { |
Ted Kremenek | dbdbaaf | 2010-03-20 21:06:02 +0000 | [diff] [blame] | 67 | UnreachableCodeHandler UC(S); |
| 68 | reachable_code::FindUnreachableCode(AC, UC); |
| 69 | } |
| 70 | |
| 71 | //===----------------------------------------------------------------------===// |
| 72 | // Check for missing return value. |
| 73 | //===----------------------------------------------------------------------===// |
| 74 | |
John McCall | 16565aa | 2010-05-16 09:34:11 +0000 | [diff] [blame] | 75 | enum ControlFlowKind { |
| 76 | UnknownFallThrough, |
| 77 | NeverFallThrough, |
| 78 | MaybeFallThrough, |
| 79 | AlwaysFallThrough, |
| 80 | NeverFallThroughOrReturn |
| 81 | }; |
Ted Kremenek | dbdbaaf | 2010-03-20 21:06:02 +0000 | [diff] [blame] | 82 | |
| 83 | /// CheckFallThrough - Check that we don't fall off the end of a |
| 84 | /// Statement that should return a value. |
| 85 | /// |
| 86 | /// \returns AlwaysFallThrough iff we always fall off the end of the statement, |
| 87 | /// MaybeFallThrough iff we might or might not fall off the end, |
| 88 | /// NeverFallThroughOrReturn iff we never fall off the end of the statement or |
| 89 | /// return. We assume NeverFallThrough iff we never fall off the end of the |
| 90 | /// statement but we may return. We assume that functions not marked noreturn |
| 91 | /// will return. |
Ted Kremenek | 1d26f48 | 2011-10-24 01:32:45 +0000 | [diff] [blame] | 92 | static ControlFlowKind CheckFallThrough(AnalysisDeclContext &AC) { |
Ted Kremenek | dbdbaaf | 2010-03-20 21:06:02 +0000 | [diff] [blame] | 93 | CFG *cfg = AC.getCFG(); |
John McCall | 16565aa | 2010-05-16 09:34:11 +0000 | [diff] [blame] | 94 | if (cfg == 0) return UnknownFallThrough; |
Ted Kremenek | dbdbaaf | 2010-03-20 21:06:02 +0000 | [diff] [blame] | 95 | |
| 96 | // The CFG leaves in dead things, and we don't want the dead code paths to |
| 97 | // confuse us, so we mark all live things first. |
Ted Kremenek | dbdbaaf | 2010-03-20 21:06:02 +0000 | [diff] [blame] | 98 | llvm::BitVector live(cfg->getNumBlockIDs()); |
Ted Kremenek | 0f3b4ca | 2011-08-23 23:05:11 +0000 | [diff] [blame] | 99 | unsigned count = reachable_code::ScanReachableFromBlock(&cfg->getEntry(), |
Ted Kremenek | dbdbaaf | 2010-03-20 21:06:02 +0000 | [diff] [blame] | 100 | live); |
| 101 | |
| 102 | bool AddEHEdges = AC.getAddEHEdges(); |
| 103 | if (!AddEHEdges && count != cfg->getNumBlockIDs()) |
| 104 | // When there are things remaining dead, and we didn't add EH edges |
| 105 | // from CallExprs to the catch clauses, we have to go back and |
| 106 | // mark them as live. |
| 107 | for (CFG::iterator I = cfg->begin(), E = cfg->end(); I != E; ++I) { |
| 108 | CFGBlock &b = **I; |
| 109 | if (!live[b.getBlockID()]) { |
| 110 | if (b.pred_begin() == b.pred_end()) { |
| 111 | if (b.getTerminator() && isa<CXXTryStmt>(b.getTerminator())) |
| 112 | // When not adding EH edges from calls, catch clauses |
| 113 | // can otherwise seem dead. Avoid noting them as dead. |
Ted Kremenek | 0f3b4ca | 2011-08-23 23:05:11 +0000 | [diff] [blame] | 114 | count += reachable_code::ScanReachableFromBlock(&b, live); |
Ted Kremenek | dbdbaaf | 2010-03-20 21:06:02 +0000 | [diff] [blame] | 115 | continue; |
| 116 | } |
| 117 | } |
| 118 | } |
| 119 | |
| 120 | // Now we know what is live, we check the live precessors of the exit block |
| 121 | // and look for fall through paths, being careful to ignore normal returns, |
| 122 | // and exceptional paths. |
| 123 | bool HasLiveReturn = false; |
| 124 | bool HasFakeEdge = false; |
| 125 | bool HasPlainEdge = false; |
| 126 | bool HasAbnormalEdge = false; |
Ted Kremenek | 90b828a | 2010-09-09 00:06:07 +0000 | [diff] [blame] | 127 | |
| 128 | // Ignore default cases that aren't likely to be reachable because all |
| 129 | // enums in a switch(X) have explicit case statements. |
| 130 | CFGBlock::FilterOptions FO; |
| 131 | FO.IgnoreDefaultsWithCoveredEnums = 1; |
| 132 | |
| 133 | for (CFGBlock::filtered_pred_iterator |
| 134 | I = cfg->getExit().filtered_pred_start_end(FO); I.hasMore(); ++I) { |
| 135 | const CFGBlock& B = **I; |
Ted Kremenek | dbdbaaf | 2010-03-20 21:06:02 +0000 | [diff] [blame] | 136 | if (!live[B.getBlockID()]) |
| 137 | continue; |
Ted Kremenek | 5811f59 | 2011-01-26 04:49:52 +0000 | [diff] [blame] | 138 | |
Chandler Carruth | e05ee6d | 2011-09-13 09:53:58 +0000 | [diff] [blame] | 139 | // Skip blocks which contain an element marked as no-return. They don't |
| 140 | // represent actually viable edges into the exit block, so mark them as |
| 141 | // abnormal. |
| 142 | if (B.hasNoReturnElement()) { |
| 143 | HasAbnormalEdge = true; |
| 144 | continue; |
| 145 | } |
| 146 | |
Ted Kremenek | 5811f59 | 2011-01-26 04:49:52 +0000 | [diff] [blame] | 147 | // Destructors can appear after the 'return' in the CFG. This is |
| 148 | // normal. We need to look pass the destructors for the return |
| 149 | // statement (if it exists). |
| 150 | CFGBlock::const_reverse_iterator ri = B.rbegin(), re = B.rend(); |
Ted Kremenek | c9f8f5a | 2011-03-02 20:32:29 +0000 | [diff] [blame] | 151 | |
Chandler Carruth | e05ee6d | 2011-09-13 09:53:58 +0000 | [diff] [blame] | 152 | for ( ; ri != re ; ++ri) |
| 153 | if (isa<CFGStmt>(*ri)) |
Ted Kremenek | 5811f59 | 2011-01-26 04:49:52 +0000 | [diff] [blame] | 154 | break; |
Chandler Carruth | e05ee6d | 2011-09-13 09:53:58 +0000 | [diff] [blame] | 155 | |
Ted Kremenek | 5811f59 | 2011-01-26 04:49:52 +0000 | [diff] [blame] | 156 | // No more CFGElements in the block? |
| 157 | if (ri == re) { |
Ted Kremenek | dbdbaaf | 2010-03-20 21:06:02 +0000 | [diff] [blame] | 158 | if (B.getTerminator() && isa<CXXTryStmt>(B.getTerminator())) { |
| 159 | HasAbnormalEdge = true; |
| 160 | continue; |
| 161 | } |
Ted Kremenek | dbdbaaf | 2010-03-20 21:06:02 +0000 | [diff] [blame] | 162 | // A labeled empty statement, or the entry block... |
| 163 | HasPlainEdge = true; |
| 164 | continue; |
| 165 | } |
Ted Kremenek | f39e6a3 | 2011-01-25 22:50:47 +0000 | [diff] [blame] | 166 | |
Ted Kremenek | 5811f59 | 2011-01-26 04:49:52 +0000 | [diff] [blame] | 167 | CFGStmt CS = cast<CFGStmt>(*ri); |
Ted Kremenek | f1d10d9 | 2011-08-23 23:05:04 +0000 | [diff] [blame] | 168 | const Stmt *S = CS.getStmt(); |
Ted Kremenek | dbdbaaf | 2010-03-20 21:06:02 +0000 | [diff] [blame] | 169 | if (isa<ReturnStmt>(S)) { |
| 170 | HasLiveReturn = true; |
| 171 | continue; |
| 172 | } |
| 173 | if (isa<ObjCAtThrowStmt>(S)) { |
| 174 | HasFakeEdge = true; |
| 175 | continue; |
| 176 | } |
| 177 | if (isa<CXXThrowExpr>(S)) { |
| 178 | HasFakeEdge = true; |
| 179 | continue; |
| 180 | } |
| 181 | if (const AsmStmt *AS = dyn_cast<AsmStmt>(S)) { |
| 182 | if (AS->isMSAsm()) { |
| 183 | HasFakeEdge = true; |
| 184 | HasLiveReturn = true; |
| 185 | continue; |
| 186 | } |
| 187 | } |
| 188 | if (isa<CXXTryStmt>(S)) { |
| 189 | HasAbnormalEdge = true; |
| 190 | continue; |
| 191 | } |
Chandler Carruth | e05ee6d | 2011-09-13 09:53:58 +0000 | [diff] [blame] | 192 | if (std::find(B.succ_begin(), B.succ_end(), &cfg->getExit()) |
| 193 | == B.succ_end()) { |
| 194 | HasAbnormalEdge = true; |
| 195 | continue; |
Ted Kremenek | dbdbaaf | 2010-03-20 21:06:02 +0000 | [diff] [blame] | 196 | } |
Chandler Carruth | e05ee6d | 2011-09-13 09:53:58 +0000 | [diff] [blame] | 197 | |
| 198 | HasPlainEdge = true; |
Ted Kremenek | dbdbaaf | 2010-03-20 21:06:02 +0000 | [diff] [blame] | 199 | } |
| 200 | if (!HasPlainEdge) { |
| 201 | if (HasLiveReturn) |
| 202 | return NeverFallThrough; |
| 203 | return NeverFallThroughOrReturn; |
| 204 | } |
| 205 | if (HasAbnormalEdge || HasFakeEdge || HasLiveReturn) |
| 206 | return MaybeFallThrough; |
| 207 | // This says AlwaysFallThrough for calls to functions that are not marked |
| 208 | // noreturn, that don't return. If people would like this warning to be more |
| 209 | // accurate, such functions should be marked as noreturn. |
| 210 | return AlwaysFallThrough; |
| 211 | } |
| 212 | |
Dan Gohman | 3c46e8d | 2010-07-26 21:25:24 +0000 | [diff] [blame] | 213 | namespace { |
| 214 | |
Ted Kremenek | dbdbaaf | 2010-03-20 21:06:02 +0000 | [diff] [blame] | 215 | struct CheckFallThroughDiagnostics { |
| 216 | unsigned diag_MaybeFallThrough_HasNoReturn; |
| 217 | unsigned diag_MaybeFallThrough_ReturnsNonVoid; |
| 218 | unsigned diag_AlwaysFallThrough_HasNoReturn; |
| 219 | unsigned diag_AlwaysFallThrough_ReturnsNonVoid; |
| 220 | unsigned diag_NeverFallThroughOrReturn; |
| 221 | bool funMode; |
Argyrios Kyrtzidis | 0827408 | 2010-12-15 18:44:22 +0000 | [diff] [blame] | 222 | SourceLocation FuncLoc; |
Ted Kremenek | d064fdc | 2010-03-23 00:13:23 +0000 | [diff] [blame] | 223 | |
Douglas Gregor | ca7eaee | 2010-04-16 23:28:44 +0000 | [diff] [blame] | 224 | static CheckFallThroughDiagnostics MakeForFunction(const Decl *Func) { |
Ted Kremenek | dbdbaaf | 2010-03-20 21:06:02 +0000 | [diff] [blame] | 225 | CheckFallThroughDiagnostics D; |
Argyrios Kyrtzidis | 0827408 | 2010-12-15 18:44:22 +0000 | [diff] [blame] | 226 | D.FuncLoc = Func->getLocation(); |
Ted Kremenek | dbdbaaf | 2010-03-20 21:06:02 +0000 | [diff] [blame] | 227 | D.diag_MaybeFallThrough_HasNoReturn = |
| 228 | diag::warn_falloff_noreturn_function; |
| 229 | D.diag_MaybeFallThrough_ReturnsNonVoid = |
| 230 | diag::warn_maybe_falloff_nonvoid_function; |
| 231 | D.diag_AlwaysFallThrough_HasNoReturn = |
| 232 | diag::warn_falloff_noreturn_function; |
| 233 | D.diag_AlwaysFallThrough_ReturnsNonVoid = |
| 234 | diag::warn_falloff_nonvoid_function; |
Douglas Gregor | ca7eaee | 2010-04-16 23:28:44 +0000 | [diff] [blame] | 235 | |
| 236 | // Don't suggest that virtual functions be marked "noreturn", since they |
| 237 | // might be overridden by non-noreturn functions. |
| 238 | bool isVirtualMethod = false; |
| 239 | if (const CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(Func)) |
| 240 | isVirtualMethod = Method->isVirtual(); |
| 241 | |
Douglas Gregor | fcdd2cb | 2011-10-10 18:15:57 +0000 | [diff] [blame] | 242 | // Don't suggest that template instantiations be marked "noreturn" |
| 243 | bool isTemplateInstantiation = false; |
Ted Kremenek | 75df4ee | 2011-12-01 00:59:17 +0000 | [diff] [blame] | 244 | if (const FunctionDecl *Function = dyn_cast<FunctionDecl>(Func)) |
| 245 | isTemplateInstantiation = Function->isTemplateInstantiation(); |
Douglas Gregor | fcdd2cb | 2011-10-10 18:15:57 +0000 | [diff] [blame] | 246 | |
| 247 | if (!isVirtualMethod && !isTemplateInstantiation) |
Douglas Gregor | ca7eaee | 2010-04-16 23:28:44 +0000 | [diff] [blame] | 248 | D.diag_NeverFallThroughOrReturn = |
| 249 | diag::warn_suggest_noreturn_function; |
| 250 | else |
| 251 | D.diag_NeverFallThroughOrReturn = 0; |
| 252 | |
Ted Kremenek | dbdbaaf | 2010-03-20 21:06:02 +0000 | [diff] [blame] | 253 | D.funMode = true; |
| 254 | return D; |
| 255 | } |
Ted Kremenek | d064fdc | 2010-03-23 00:13:23 +0000 | [diff] [blame] | 256 | |
Ted Kremenek | dbdbaaf | 2010-03-20 21:06:02 +0000 | [diff] [blame] | 257 | static CheckFallThroughDiagnostics MakeForBlock() { |
| 258 | CheckFallThroughDiagnostics D; |
| 259 | D.diag_MaybeFallThrough_HasNoReturn = |
| 260 | diag::err_noreturn_block_has_return_expr; |
| 261 | D.diag_MaybeFallThrough_ReturnsNonVoid = |
| 262 | diag::err_maybe_falloff_nonvoid_block; |
| 263 | D.diag_AlwaysFallThrough_HasNoReturn = |
| 264 | diag::err_noreturn_block_has_return_expr; |
| 265 | D.diag_AlwaysFallThrough_ReturnsNonVoid = |
| 266 | diag::err_falloff_nonvoid_block; |
| 267 | D.diag_NeverFallThroughOrReturn = |
| 268 | diag::warn_suggest_noreturn_block; |
| 269 | D.funMode = false; |
| 270 | return D; |
| 271 | } |
Ted Kremenek | d064fdc | 2010-03-23 00:13:23 +0000 | [diff] [blame] | 272 | |
David Blaikie | d6471f7 | 2011-09-25 23:23:43 +0000 | [diff] [blame] | 273 | bool checkDiagnostics(DiagnosticsEngine &D, bool ReturnsVoid, |
Ted Kremenek | dbdbaaf | 2010-03-20 21:06:02 +0000 | [diff] [blame] | 274 | bool HasNoReturn) const { |
| 275 | if (funMode) { |
Argyrios Kyrtzidis | 0827408 | 2010-12-15 18:44:22 +0000 | [diff] [blame] | 276 | return (ReturnsVoid || |
| 277 | D.getDiagnosticLevel(diag::warn_maybe_falloff_nonvoid_function, |
David Blaikie | d6471f7 | 2011-09-25 23:23:43 +0000 | [diff] [blame] | 278 | FuncLoc) == DiagnosticsEngine::Ignored) |
Argyrios Kyrtzidis | 0827408 | 2010-12-15 18:44:22 +0000 | [diff] [blame] | 279 | && (!HasNoReturn || |
| 280 | D.getDiagnosticLevel(diag::warn_noreturn_function_has_return_expr, |
David Blaikie | d6471f7 | 2011-09-25 23:23:43 +0000 | [diff] [blame] | 281 | FuncLoc) == DiagnosticsEngine::Ignored) |
Argyrios Kyrtzidis | 0827408 | 2010-12-15 18:44:22 +0000 | [diff] [blame] | 282 | && (!ReturnsVoid || |
| 283 | D.getDiagnosticLevel(diag::warn_suggest_noreturn_block, FuncLoc) |
David Blaikie | d6471f7 | 2011-09-25 23:23:43 +0000 | [diff] [blame] | 284 | == DiagnosticsEngine::Ignored); |
Ted Kremenek | dbdbaaf | 2010-03-20 21:06:02 +0000 | [diff] [blame] | 285 | } |
Ted Kremenek | d064fdc | 2010-03-23 00:13:23 +0000 | [diff] [blame] | 286 | |
Ted Kremenek | dbdbaaf | 2010-03-20 21:06:02 +0000 | [diff] [blame] | 287 | // For blocks. |
| 288 | return ReturnsVoid && !HasNoReturn |
Argyrios Kyrtzidis | 0827408 | 2010-12-15 18:44:22 +0000 | [diff] [blame] | 289 | && (!ReturnsVoid || |
| 290 | D.getDiagnosticLevel(diag::warn_suggest_noreturn_block, FuncLoc) |
David Blaikie | d6471f7 | 2011-09-25 23:23:43 +0000 | [diff] [blame] | 291 | == DiagnosticsEngine::Ignored); |
Ted Kremenek | dbdbaaf | 2010-03-20 21:06:02 +0000 | [diff] [blame] | 292 | } |
| 293 | }; |
| 294 | |
Dan Gohman | 3c46e8d | 2010-07-26 21:25:24 +0000 | [diff] [blame] | 295 | } |
| 296 | |
Ted Kremenek | dbdbaaf | 2010-03-20 21:06:02 +0000 | [diff] [blame] | 297 | /// CheckFallThroughForFunctionDef - Check that we don't fall off the end of a |
| 298 | /// function that should return a value. Check that we don't fall off the end |
| 299 | /// of a noreturn function. We assume that functions and blocks not marked |
| 300 | /// noreturn will return. |
| 301 | static void CheckFallThroughForBody(Sema &S, const Decl *D, const Stmt *Body, |
Ted Kremenek | 3ed6fc0 | 2011-02-23 01:51:48 +0000 | [diff] [blame] | 302 | const BlockExpr *blkExpr, |
Ted Kremenek | dbdbaaf | 2010-03-20 21:06:02 +0000 | [diff] [blame] | 303 | const CheckFallThroughDiagnostics& CD, |
Ted Kremenek | 1d26f48 | 2011-10-24 01:32:45 +0000 | [diff] [blame] | 304 | AnalysisDeclContext &AC) { |
Ted Kremenek | dbdbaaf | 2010-03-20 21:06:02 +0000 | [diff] [blame] | 305 | |
| 306 | bool ReturnsVoid = false; |
| 307 | bool HasNoReturn = false; |
| 308 | |
| 309 | if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) { |
| 310 | ReturnsVoid = FD->getResultType()->isVoidType(); |
| 311 | HasNoReturn = FD->hasAttr<NoReturnAttr>() || |
Rafael Espindola | 264ba48 | 2010-03-30 20:24:48 +0000 | [diff] [blame] | 312 | FD->getType()->getAs<FunctionType>()->getNoReturnAttr(); |
Ted Kremenek | dbdbaaf | 2010-03-20 21:06:02 +0000 | [diff] [blame] | 313 | } |
| 314 | else if (const ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(D)) { |
| 315 | ReturnsVoid = MD->getResultType()->isVoidType(); |
| 316 | HasNoReturn = MD->hasAttr<NoReturnAttr>(); |
| 317 | } |
| 318 | else if (isa<BlockDecl>(D)) { |
Ted Kremenek | 3ed6fc0 | 2011-02-23 01:51:48 +0000 | [diff] [blame] | 319 | QualType BlockTy = blkExpr->getType(); |
Ted Kremenek | d064fdc | 2010-03-23 00:13:23 +0000 | [diff] [blame] | 320 | if (const FunctionType *FT = |
Ted Kremenek | dbdbaaf | 2010-03-20 21:06:02 +0000 | [diff] [blame] | 321 | BlockTy->getPointeeType()->getAs<FunctionType>()) { |
| 322 | if (FT->getResultType()->isVoidType()) |
| 323 | ReturnsVoid = true; |
| 324 | if (FT->getNoReturnAttr()) |
| 325 | HasNoReturn = true; |
| 326 | } |
| 327 | } |
| 328 | |
David Blaikie | d6471f7 | 2011-09-25 23:23:43 +0000 | [diff] [blame] | 329 | DiagnosticsEngine &Diags = S.getDiagnostics(); |
Ted Kremenek | dbdbaaf | 2010-03-20 21:06:02 +0000 | [diff] [blame] | 330 | |
| 331 | // Short circuit for compilation speed. |
| 332 | if (CD.checkDiagnostics(Diags, ReturnsVoid, HasNoReturn)) |
| 333 | return; |
Ted Kremenek | d064fdc | 2010-03-23 00:13:23 +0000 | [diff] [blame] | 334 | |
Ted Kremenek | dbdbaaf | 2010-03-20 21:06:02 +0000 | [diff] [blame] | 335 | // FIXME: Function try block |
| 336 | if (const CompoundStmt *Compound = dyn_cast<CompoundStmt>(Body)) { |
| 337 | switch (CheckFallThrough(AC)) { |
John McCall | 16565aa | 2010-05-16 09:34:11 +0000 | [diff] [blame] | 338 | case UnknownFallThrough: |
| 339 | break; |
| 340 | |
Ted Kremenek | dbdbaaf | 2010-03-20 21:06:02 +0000 | [diff] [blame] | 341 | case MaybeFallThrough: |
| 342 | if (HasNoReturn) |
| 343 | S.Diag(Compound->getRBracLoc(), |
| 344 | CD.diag_MaybeFallThrough_HasNoReturn); |
| 345 | else if (!ReturnsVoid) |
| 346 | S.Diag(Compound->getRBracLoc(), |
| 347 | CD.diag_MaybeFallThrough_ReturnsNonVoid); |
| 348 | break; |
| 349 | case AlwaysFallThrough: |
| 350 | if (HasNoReturn) |
| 351 | S.Diag(Compound->getRBracLoc(), |
| 352 | CD.diag_AlwaysFallThrough_HasNoReturn); |
| 353 | else if (!ReturnsVoid) |
| 354 | S.Diag(Compound->getRBracLoc(), |
| 355 | CD.diag_AlwaysFallThrough_ReturnsNonVoid); |
| 356 | break; |
| 357 | case NeverFallThroughOrReturn: |
Chandler Carruth | b0656ec | 2011-08-31 09:01:53 +0000 | [diff] [blame] | 358 | if (ReturnsVoid && !HasNoReturn && CD.diag_NeverFallThroughOrReturn) { |
| 359 | if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) { |
| 360 | S.Diag(Compound->getLBracLoc(), CD.diag_NeverFallThroughOrReturn) |
Douglas Gregor | b332109 | 2011-09-10 00:56:20 +0000 | [diff] [blame] | 361 | << 0 << FD; |
| 362 | } else if (const ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(D)) { |
| 363 | S.Diag(Compound->getLBracLoc(), CD.diag_NeverFallThroughOrReturn) |
| 364 | << 1 << MD; |
Chandler Carruth | b0656ec | 2011-08-31 09:01:53 +0000 | [diff] [blame] | 365 | } else { |
| 366 | S.Diag(Compound->getLBracLoc(), CD.diag_NeverFallThroughOrReturn); |
| 367 | } |
| 368 | } |
Ted Kremenek | dbdbaaf | 2010-03-20 21:06:02 +0000 | [diff] [blame] | 369 | break; |
| 370 | case NeverFallThrough: |
| 371 | break; |
| 372 | } |
| 373 | } |
| 374 | } |
| 375 | |
| 376 | //===----------------------------------------------------------------------===// |
Ted Kremenek | 610068c | 2011-01-15 02:58:47 +0000 | [diff] [blame] | 377 | // -Wuninitialized |
| 378 | //===----------------------------------------------------------------------===// |
| 379 | |
Ted Kremenek | 6f41715 | 2011-04-04 20:56:00 +0000 | [diff] [blame] | 380 | namespace { |
Chandler Carruth | 9f64946 | 2011-04-05 06:48:00 +0000 | [diff] [blame] | 381 | /// ContainsReference - A visitor class to search for references to |
| 382 | /// a particular declaration (the needle) within any evaluated component of an |
| 383 | /// expression (recursively). |
Ted Kremenek | 6f41715 | 2011-04-04 20:56:00 +0000 | [diff] [blame] | 384 | class ContainsReference : public EvaluatedExprVisitor<ContainsReference> { |
Chandler Carruth | 9f64946 | 2011-04-05 06:48:00 +0000 | [diff] [blame] | 385 | bool FoundReference; |
| 386 | const DeclRefExpr *Needle; |
| 387 | |
Ted Kremenek | 6f41715 | 2011-04-04 20:56:00 +0000 | [diff] [blame] | 388 | public: |
Chandler Carruth | 9f64946 | 2011-04-05 06:48:00 +0000 | [diff] [blame] | 389 | ContainsReference(ASTContext &Context, const DeclRefExpr *Needle) |
| 390 | : EvaluatedExprVisitor<ContainsReference>(Context), |
| 391 | FoundReference(false), Needle(Needle) {} |
| 392 | |
| 393 | void VisitExpr(Expr *E) { |
Ted Kremenek | 6f41715 | 2011-04-04 20:56:00 +0000 | [diff] [blame] | 394 | // Stop evaluating if we already have a reference. |
Chandler Carruth | 9f64946 | 2011-04-05 06:48:00 +0000 | [diff] [blame] | 395 | if (FoundReference) |
Ted Kremenek | 6f41715 | 2011-04-04 20:56:00 +0000 | [diff] [blame] | 396 | return; |
Chandler Carruth | 9f64946 | 2011-04-05 06:48:00 +0000 | [diff] [blame] | 397 | |
| 398 | EvaluatedExprVisitor<ContainsReference>::VisitExpr(E); |
Ted Kremenek | 6f41715 | 2011-04-04 20:56:00 +0000 | [diff] [blame] | 399 | } |
Chandler Carruth | 9f64946 | 2011-04-05 06:48:00 +0000 | [diff] [blame] | 400 | |
| 401 | void VisitDeclRefExpr(DeclRefExpr *E) { |
| 402 | if (E == Needle) |
| 403 | FoundReference = true; |
| 404 | else |
| 405 | EvaluatedExprVisitor<ContainsReference>::VisitDeclRefExpr(E); |
Ted Kremenek | 6f41715 | 2011-04-04 20:56:00 +0000 | [diff] [blame] | 406 | } |
Chandler Carruth | 9f64946 | 2011-04-05 06:48:00 +0000 | [diff] [blame] | 407 | |
| 408 | bool doesContainReference() const { return FoundReference; } |
Ted Kremenek | 6f41715 | 2011-04-04 20:56:00 +0000 | [diff] [blame] | 409 | }; |
| 410 | } |
| 411 | |
David Blaikie | 4f4f349 | 2011-09-10 05:35:08 +0000 | [diff] [blame] | 412 | static bool SuggestInitializationFixit(Sema &S, const VarDecl *VD) { |
| 413 | // Don't issue a fixit if there is already an initializer. |
| 414 | if (VD->getInit()) |
| 415 | return false; |
| 416 | |
| 417 | // Suggest possible initialization (if any). |
David Blaikie | 4f4f349 | 2011-09-10 05:35:08 +0000 | [diff] [blame] | 418 | QualType VariableTy = VD->getType().getCanonicalType(); |
Richard Smith | 7984de3 | 2012-01-12 23:53:29 +0000 | [diff] [blame] | 419 | const char *Init = S.getFixItZeroInitializerForType(VariableTy); |
| 420 | if (!Init) |
David Blaikie | 4f4f349 | 2011-09-10 05:35:08 +0000 | [diff] [blame] | 421 | return false; |
David Blaikie | 4f4f349 | 2011-09-10 05:35:08 +0000 | [diff] [blame] | 422 | |
Richard Smith | 7984de3 | 2012-01-12 23:53:29 +0000 | [diff] [blame] | 423 | SourceLocation Loc = S.PP.getLocForEndOfToken(VD->getLocEnd()); |
| 424 | S.Diag(Loc, diag::note_var_fixit_add_initialization) << VD->getDeclName() |
| 425 | << FixItHint::CreateInsertion(Loc, Init); |
| 426 | return true; |
David Blaikie | 4f4f349 | 2011-09-10 05:35:08 +0000 | [diff] [blame] | 427 | } |
| 428 | |
Chandler Carruth | 262d50e | 2011-04-05 18:27:05 +0000 | [diff] [blame] | 429 | /// DiagnoseUninitializedUse -- Helper function for diagnosing uses of an |
| 430 | /// uninitialized variable. This manages the different forms of diagnostic |
| 431 | /// emitted for particular types of uses. Returns true if the use was diagnosed |
| 432 | /// as a warning. If a pariticular use is one we omit warnings for, returns |
| 433 | /// false. |
| 434 | static bool DiagnoseUninitializedUse(Sema &S, const VarDecl *VD, |
Ted Kremenek | 9e76172 | 2011-10-13 18:50:06 +0000 | [diff] [blame] | 435 | const Expr *E, bool isAlwaysUninit, |
| 436 | bool alwaysReportSelfInit = false) { |
Chandler Carruth | 4c4983b | 2011-04-05 18:18:05 +0000 | [diff] [blame] | 437 | bool isSelfInit = false; |
| 438 | |
| 439 | if (const DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(E)) { |
| 440 | if (isAlwaysUninit) { |
| 441 | // Inspect the initializer of the variable declaration which is |
| 442 | // being referenced prior to its initialization. We emit |
| 443 | // specialized diagnostics for self-initialization, and we |
| 444 | // specifically avoid warning about self references which take the |
| 445 | // form of: |
| 446 | // |
| 447 | // int x = x; |
| 448 | // |
| 449 | // This is used to indicate to GCC that 'x' is intentionally left |
| 450 | // uninitialized. Proven code paths which access 'x' in |
| 451 | // an uninitialized state after this will still warn. |
| 452 | // |
| 453 | // TODO: Should we suppress maybe-uninitialized warnings for |
| 454 | // variables initialized in this way? |
| 455 | if (const Expr *Initializer = VD->getInit()) { |
Ted Kremenek | 9e76172 | 2011-10-13 18:50:06 +0000 | [diff] [blame] | 456 | if (!alwaysReportSelfInit && DRE == Initializer->IgnoreParenImpCasts()) |
Chandler Carruth | 262d50e | 2011-04-05 18:27:05 +0000 | [diff] [blame] | 457 | return false; |
Chandler Carruth | 4c4983b | 2011-04-05 18:18:05 +0000 | [diff] [blame] | 458 | |
| 459 | ContainsReference CR(S.Context, DRE); |
| 460 | CR.Visit(const_cast<Expr*>(Initializer)); |
| 461 | isSelfInit = CR.doesContainReference(); |
| 462 | } |
| 463 | if (isSelfInit) { |
| 464 | S.Diag(DRE->getLocStart(), |
| 465 | diag::warn_uninit_self_reference_in_init) |
| 466 | << VD->getDeclName() << VD->getLocation() << DRE->getSourceRange(); |
| 467 | } else { |
| 468 | S.Diag(DRE->getLocStart(), diag::warn_uninit_var) |
| 469 | << VD->getDeclName() << DRE->getSourceRange(); |
| 470 | } |
| 471 | } else { |
| 472 | S.Diag(DRE->getLocStart(), diag::warn_maybe_uninit_var) |
| 473 | << VD->getDeclName() << DRE->getSourceRange(); |
| 474 | } |
| 475 | } else { |
| 476 | const BlockExpr *BE = cast<BlockExpr>(E); |
| 477 | S.Diag(BE->getLocStart(), |
| 478 | isAlwaysUninit ? diag::warn_uninit_var_captured_by_block |
| 479 | : diag::warn_maybe_uninit_var_captured_by_block) |
| 480 | << VD->getDeclName(); |
| 481 | } |
| 482 | |
| 483 | // Report where the variable was declared when the use wasn't within |
David Blaikie | 4f4f349 | 2011-09-10 05:35:08 +0000 | [diff] [blame] | 484 | // the initializer of that declaration & we didn't already suggest |
| 485 | // an initialization fixit. |
| 486 | if (!isSelfInit && !SuggestInitializationFixit(S, VD)) |
Chandler Carruth | 4c4983b | 2011-04-05 18:18:05 +0000 | [diff] [blame] | 487 | S.Diag(VD->getLocStart(), diag::note_uninit_var_def) |
| 488 | << VD->getDeclName(); |
| 489 | |
Chandler Carruth | 262d50e | 2011-04-05 18:27:05 +0000 | [diff] [blame] | 490 | return true; |
Chandler Carruth | 64fb959 | 2011-04-05 18:18:08 +0000 | [diff] [blame] | 491 | } |
| 492 | |
Ted Kremenek | f7bafc7 | 2011-03-15 04:57:38 +0000 | [diff] [blame] | 493 | typedef std::pair<const Expr*, bool> UninitUse; |
| 494 | |
Ted Kremenek | 610068c | 2011-01-15 02:58:47 +0000 | [diff] [blame] | 495 | namespace { |
Ted Kremenek | 94b1b4d | 2011-01-21 19:41:41 +0000 | [diff] [blame] | 496 | struct SLocSort { |
Ted Kremenek | f7bafc7 | 2011-03-15 04:57:38 +0000 | [diff] [blame] | 497 | bool operator()(const UninitUse &a, const UninitUse &b) { |
| 498 | SourceLocation aLoc = a.first->getLocStart(); |
| 499 | SourceLocation bLoc = b.first->getLocStart(); |
Ted Kremenek | 94b1b4d | 2011-01-21 19:41:41 +0000 | [diff] [blame] | 500 | return aLoc.getRawEncoding() < bLoc.getRawEncoding(); |
| 501 | } |
| 502 | }; |
| 503 | |
Ted Kremenek | 610068c | 2011-01-15 02:58:47 +0000 | [diff] [blame] | 504 | class UninitValsDiagReporter : public UninitVariablesHandler { |
| 505 | Sema &S; |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 506 | typedef SmallVector<UninitUse, 2> UsesVec; |
Ted Kremenek | 9e76172 | 2011-10-13 18:50:06 +0000 | [diff] [blame] | 507 | typedef llvm::DenseMap<const VarDecl *, std::pair<UsesVec*, bool> > UsesMap; |
Ted Kremenek | 94b1b4d | 2011-01-21 19:41:41 +0000 | [diff] [blame] | 508 | UsesMap *uses; |
| 509 | |
Ted Kremenek | 610068c | 2011-01-15 02:58:47 +0000 | [diff] [blame] | 510 | public: |
Ted Kremenek | 94b1b4d | 2011-01-21 19:41:41 +0000 | [diff] [blame] | 511 | UninitValsDiagReporter(Sema &S) : S(S), uses(0) {} |
| 512 | ~UninitValsDiagReporter() { |
| 513 | flushDiagnostics(); |
| 514 | } |
Ted Kremenek | 9e76172 | 2011-10-13 18:50:06 +0000 | [diff] [blame] | 515 | |
| 516 | std::pair<UsesVec*, bool> &getUses(const VarDecl *vd) { |
Ted Kremenek | 94b1b4d | 2011-01-21 19:41:41 +0000 | [diff] [blame] | 517 | if (!uses) |
| 518 | uses = new UsesMap(); |
Ted Kremenek | 9e76172 | 2011-10-13 18:50:06 +0000 | [diff] [blame] | 519 | |
| 520 | UsesMap::mapped_type &V = (*uses)[vd]; |
| 521 | UsesVec *&vec = V.first; |
Ted Kremenek | 94b1b4d | 2011-01-21 19:41:41 +0000 | [diff] [blame] | 522 | if (!vec) |
| 523 | vec = new UsesVec(); |
| 524 | |
Ted Kremenek | 9e76172 | 2011-10-13 18:50:06 +0000 | [diff] [blame] | 525 | return V; |
| 526 | } |
| 527 | |
| 528 | void handleUseOfUninitVariable(const Expr *ex, const VarDecl *vd, |
| 529 | bool isAlwaysUninit) { |
| 530 | getUses(vd).first->push_back(std::make_pair(ex, isAlwaysUninit)); |
| 531 | } |
| 532 | |
| 533 | void handleSelfInit(const VarDecl *vd) { |
| 534 | getUses(vd).second = true; |
Ted Kremenek | 94b1b4d | 2011-01-21 19:41:41 +0000 | [diff] [blame] | 535 | } |
| 536 | |
| 537 | void flushDiagnostics() { |
| 538 | if (!uses) |
| 539 | return; |
Ted Kremenek | 609e317 | 2011-02-02 23:35:53 +0000 | [diff] [blame] | 540 | |
Ted Kremenek | 94b1b4d | 2011-01-21 19:41:41 +0000 | [diff] [blame] | 541 | for (UsesMap::iterator i = uses->begin(), e = uses->end(); i != e; ++i) { |
| 542 | const VarDecl *vd = i->first; |
Ted Kremenek | 9e76172 | 2011-10-13 18:50:06 +0000 | [diff] [blame] | 543 | const UsesMap::mapped_type &V = i->second; |
Ted Kremenek | 609e317 | 2011-02-02 23:35:53 +0000 | [diff] [blame] | 544 | |
Ted Kremenek | 9e76172 | 2011-10-13 18:50:06 +0000 | [diff] [blame] | 545 | UsesVec *vec = V.first; |
| 546 | bool hasSelfInit = V.second; |
| 547 | |
| 548 | // Specially handle the case where we have uses of an uninitialized |
| 549 | // variable, but the root cause is an idiomatic self-init. We want |
| 550 | // to report the diagnostic at the self-init since that is the root cause. |
Matt Beaumont-Gay | 0d38181 | 2011-10-19 18:53:03 +0000 | [diff] [blame] | 551 | if (!vec->empty() && hasSelfInit && hasAlwaysUninitializedUse(vec)) |
Ted Kremenek | 9e76172 | 2011-10-13 18:50:06 +0000 | [diff] [blame] | 552 | DiagnoseUninitializedUse(S, vd, vd->getInit()->IgnoreParenCasts(), |
Matt Beaumont-Gay | 0d38181 | 2011-10-19 18:53:03 +0000 | [diff] [blame] | 553 | /* isAlwaysUninit */ true, |
| 554 | /* alwaysReportSelfInit */ true); |
Ted Kremenek | 9e76172 | 2011-10-13 18:50:06 +0000 | [diff] [blame] | 555 | else { |
| 556 | // Sort the uses by their SourceLocations. While not strictly |
| 557 | // guaranteed to produce them in line/column order, this will provide |
| 558 | // a stable ordering. |
| 559 | std::sort(vec->begin(), vec->end(), SLocSort()); |
| 560 | |
| 561 | for (UsesVec::iterator vi = vec->begin(), ve = vec->end(); vi != ve; |
| 562 | ++vi) { |
| 563 | if (DiagnoseUninitializedUse(S, vd, vi->first, |
| 564 | /*isAlwaysUninit=*/vi->second)) |
| 565 | // Skip further diagnostics for this variable. We try to warn only |
| 566 | // on the first point at which a variable is used uninitialized. |
| 567 | break; |
| 568 | } |
Chandler Carruth | 64fb959 | 2011-04-05 18:18:08 +0000 | [diff] [blame] | 569 | } |
Ted Kremenek | 9e76172 | 2011-10-13 18:50:06 +0000 | [diff] [blame] | 570 | |
| 571 | // Release the uses vector. |
Ted Kremenek | 94b1b4d | 2011-01-21 19:41:41 +0000 | [diff] [blame] | 572 | delete vec; |
| 573 | } |
| 574 | delete uses; |
Ted Kremenek | 610068c | 2011-01-15 02:58:47 +0000 | [diff] [blame] | 575 | } |
Matt Beaumont-Gay | 0d38181 | 2011-10-19 18:53:03 +0000 | [diff] [blame] | 576 | |
| 577 | private: |
| 578 | static bool hasAlwaysUninitializedUse(const UsesVec* vec) { |
| 579 | for (UsesVec::const_iterator i = vec->begin(), e = vec->end(); i != e; ++i) { |
| 580 | if (i->second) { |
| 581 | return true; |
| 582 | } |
| 583 | } |
| 584 | return false; |
| 585 | } |
Ted Kremenek | 610068c | 2011-01-15 02:58:47 +0000 | [diff] [blame] | 586 | }; |
| 587 | } |
| 588 | |
Caitlin Sadowski | 3ac1fbc | 2011-08-23 18:46:34 +0000 | [diff] [blame] | 589 | |
| 590 | //===----------------------------------------------------------------------===// |
| 591 | // -Wthread-safety |
| 592 | //===----------------------------------------------------------------------===// |
Caitlin Sadowski | 75f23ae | 2011-09-09 16:04:02 +0000 | [diff] [blame] | 593 | namespace clang { |
| 594 | namespace thread_safety { |
| 595 | typedef std::pair<SourceLocation, PartialDiagnostic> DelayedDiag; |
| 596 | typedef llvm::SmallVector<DelayedDiag, 4> DiagList; |
| 597 | |
Caitlin Sadowski | 75f23ae | 2011-09-09 16:04:02 +0000 | [diff] [blame] | 598 | struct SortDiagBySourceLocation { |
| 599 | Sema &S; |
| 600 | SortDiagBySourceLocation(Sema &S) : S(S) {} |
| 601 | |
| 602 | bool operator()(const DelayedDiag &left, const DelayedDiag &right) { |
| 603 | // Although this call will be slow, this is only called when outputting |
| 604 | // multiple warnings. |
| 605 | return S.getSourceManager().isBeforeInTranslationUnit(left.first, |
| 606 | right.first); |
| 607 | } |
| 608 | }; |
| 609 | |
David Blaikie | 99ba9e3 | 2011-12-20 02:48:34 +0000 | [diff] [blame] | 610 | namespace { |
Caitlin Sadowski | 75f23ae | 2011-09-09 16:04:02 +0000 | [diff] [blame] | 611 | class ThreadSafetyReporter : public clang::thread_safety::ThreadSafetyHandler { |
| 612 | Sema &S; |
| 613 | DiagList Warnings; |
DeLesley Hutchins | f1ac637 | 2011-10-21 18:10:14 +0000 | [diff] [blame] | 614 | SourceLocation FunLocation; |
Caitlin Sadowski | 75f23ae | 2011-09-09 16:04:02 +0000 | [diff] [blame] | 615 | |
| 616 | // Helper functions |
| 617 | void warnLockMismatch(unsigned DiagID, Name LockName, SourceLocation Loc) { |
DeLesley Hutchins | f1ac637 | 2011-10-21 18:10:14 +0000 | [diff] [blame] | 618 | // Gracefully handle rare cases when the analysis can't get a more |
| 619 | // precise source location. |
| 620 | if (!Loc.isValid()) |
| 621 | Loc = FunLocation; |
Caitlin Sadowski | 75f23ae | 2011-09-09 16:04:02 +0000 | [diff] [blame] | 622 | PartialDiagnostic Warning = S.PDiag(DiagID) << LockName; |
| 623 | Warnings.push_back(DelayedDiag(Loc, Warning)); |
| 624 | } |
| 625 | |
| 626 | public: |
DeLesley Hutchins | f1ac637 | 2011-10-21 18:10:14 +0000 | [diff] [blame] | 627 | ThreadSafetyReporter(Sema &S, SourceLocation FL) |
| 628 | : S(S), FunLocation(FL) {} |
Caitlin Sadowski | 75f23ae | 2011-09-09 16:04:02 +0000 | [diff] [blame] | 629 | |
| 630 | /// \brief Emit all buffered diagnostics in order of sourcelocation. |
| 631 | /// We need to output diagnostics produced while iterating through |
| 632 | /// the lockset in deterministic order, so this function orders diagnostics |
| 633 | /// and outputs them. |
| 634 | void emitDiagnostics() { |
| 635 | SortDiagBySourceLocation SortDiagBySL(S); |
| 636 | sort(Warnings.begin(), Warnings.end(), SortDiagBySL); |
| 637 | for (DiagList::iterator I = Warnings.begin(), E = Warnings.end(); |
| 638 | I != E; ++I) |
| 639 | S.Diag(I->first, I->second); |
| 640 | } |
| 641 | |
Caitlin Sadowski | 99107eb | 2011-09-09 16:21:55 +0000 | [diff] [blame] | 642 | void handleInvalidLockExp(SourceLocation Loc) { |
| 643 | PartialDiagnostic Warning = S.PDiag(diag::warn_cannot_resolve_lock) << Loc; |
| 644 | Warnings.push_back(DelayedDiag(Loc, Warning)); |
| 645 | } |
Caitlin Sadowski | 75f23ae | 2011-09-09 16:04:02 +0000 | [diff] [blame] | 646 | void handleUnmatchedUnlock(Name LockName, SourceLocation Loc) { |
| 647 | warnLockMismatch(diag::warn_unlock_but_no_lock, LockName, Loc); |
| 648 | } |
| 649 | |
| 650 | void handleDoubleLock(Name LockName, SourceLocation Loc) { |
| 651 | warnLockMismatch(diag::warn_double_lock, LockName, Loc); |
| 652 | } |
| 653 | |
Caitlin Sadowski | 4e4bc75 | 2011-09-15 17:25:19 +0000 | [diff] [blame] | 654 | void handleMutexHeldEndOfScope(Name LockName, SourceLocation Loc, |
| 655 | LockErrorKind LEK){ |
| 656 | unsigned DiagID = 0; |
| 657 | switch (LEK) { |
| 658 | case LEK_LockedSomePredecessors: |
| 659 | DiagID = diag::warn_lock_at_end_of_scope; |
| 660 | break; |
| 661 | case LEK_LockedSomeLoopIterations: |
| 662 | DiagID = diag::warn_expecting_lock_held_on_loop; |
| 663 | break; |
| 664 | case LEK_LockedAtEndOfFunction: |
| 665 | DiagID = diag::warn_no_unlock; |
| 666 | break; |
| 667 | } |
| 668 | warnLockMismatch(DiagID, LockName, Loc); |
Caitlin Sadowski | 75f23ae | 2011-09-09 16:04:02 +0000 | [diff] [blame] | 669 | } |
| 670 | |
Caitlin Sadowski | 75f23ae | 2011-09-09 16:04:02 +0000 | [diff] [blame] | 671 | |
| 672 | void handleExclusiveAndShared(Name LockName, SourceLocation Loc1, |
| 673 | SourceLocation Loc2) { |
| 674 | PartialDiagnostic Warning = |
| 675 | S.PDiag(diag::warn_lock_exclusive_and_shared) << LockName; |
| 676 | PartialDiagnostic Note = |
| 677 | S.PDiag(diag::note_lock_exclusive_and_shared) << LockName; |
| 678 | Warnings.push_back(DelayedDiag(Loc1, Warning)); |
| 679 | Warnings.push_back(DelayedDiag(Loc2, Note)); |
| 680 | } |
| 681 | |
| 682 | void handleNoMutexHeld(const NamedDecl *D, ProtectedOperationKind POK, |
| 683 | AccessKind AK, SourceLocation Loc) { |
Caitlin Sadowski | df8327c | 2011-09-14 20:09:09 +0000 | [diff] [blame] | 684 | assert((POK == POK_VarAccess || POK == POK_VarDereference) |
| 685 | && "Only works for variables"); |
| 686 | unsigned DiagID = POK == POK_VarAccess? |
| 687 | diag::warn_variable_requires_any_lock: |
| 688 | diag::warn_var_deref_requires_any_lock; |
| 689 | PartialDiagnostic Warning = S.PDiag(DiagID) |
| 690 | << D->getName() << getLockKindFromAccessKind(AK); |
| 691 | Warnings.push_back(DelayedDiag(Loc, Warning)); |
Caitlin Sadowski | 75f23ae | 2011-09-09 16:04:02 +0000 | [diff] [blame] | 692 | } |
| 693 | |
| 694 | void handleMutexNotHeld(const NamedDecl *D, ProtectedOperationKind POK, |
| 695 | Name LockName, LockKind LK, SourceLocation Loc) { |
Caitlin Sadowski | e87158d | 2011-09-13 18:01:58 +0000 | [diff] [blame] | 696 | unsigned DiagID = 0; |
Caitlin Sadowski | 75f23ae | 2011-09-09 16:04:02 +0000 | [diff] [blame] | 697 | switch (POK) { |
| 698 | case POK_VarAccess: |
| 699 | DiagID = diag::warn_variable_requires_lock; |
| 700 | break; |
| 701 | case POK_VarDereference: |
| 702 | DiagID = diag::warn_var_deref_requires_lock; |
| 703 | break; |
| 704 | case POK_FunctionCall: |
| 705 | DiagID = diag::warn_fun_requires_lock; |
| 706 | break; |
| 707 | } |
| 708 | PartialDiagnostic Warning = S.PDiag(DiagID) |
Caitlin Sadowski | df8327c | 2011-09-14 20:09:09 +0000 | [diff] [blame] | 709 | << D->getName() << LockName << LK; |
Caitlin Sadowski | 75f23ae | 2011-09-09 16:04:02 +0000 | [diff] [blame] | 710 | Warnings.push_back(DelayedDiag(Loc, Warning)); |
| 711 | } |
| 712 | |
| 713 | void handleFunExcludesLock(Name FunName, Name LockName, SourceLocation Loc) { |
| 714 | PartialDiagnostic Warning = |
| 715 | S.PDiag(diag::warn_fun_excludes_mutex) << FunName << LockName; |
| 716 | Warnings.push_back(DelayedDiag(Loc, Warning)); |
| 717 | } |
| 718 | }; |
| 719 | } |
| 720 | } |
David Blaikie | 99ba9e3 | 2011-12-20 02:48:34 +0000 | [diff] [blame] | 721 | } |
Caitlin Sadowski | 75f23ae | 2011-09-09 16:04:02 +0000 | [diff] [blame] | 722 | |
Ted Kremenek | 610068c | 2011-01-15 02:58:47 +0000 | [diff] [blame] | 723 | //===----------------------------------------------------------------------===// |
Ted Kremenek | dbdbaaf | 2010-03-20 21:06:02 +0000 | [diff] [blame] | 724 | // AnalysisBasedWarnings - Worker object used by Sema to execute analysis-based |
| 725 | // warnings on a function, method, or block. |
| 726 | //===----------------------------------------------------------------------===// |
| 727 | |
Ted Kremenek | d064fdc | 2010-03-23 00:13:23 +0000 | [diff] [blame] | 728 | clang::sema::AnalysisBasedWarnings::Policy::Policy() { |
| 729 | enableCheckFallThrough = 1; |
| 730 | enableCheckUnreachable = 0; |
Caitlin Sadowski | 3ac1fbc | 2011-08-23 18:46:34 +0000 | [diff] [blame] | 731 | enableThreadSafetyAnalysis = 0; |
Ted Kremenek | d064fdc | 2010-03-23 00:13:23 +0000 | [diff] [blame] | 732 | } |
| 733 | |
Chandler Carruth | 5d98994 | 2011-07-06 16:21:37 +0000 | [diff] [blame] | 734 | clang::sema::AnalysisBasedWarnings::AnalysisBasedWarnings(Sema &s) |
| 735 | : S(s), |
| 736 | NumFunctionsAnalyzed(0), |
Benjamin Kramer | 54cf341 | 2011-07-08 20:38:53 +0000 | [diff] [blame] | 737 | NumFunctionsWithBadCFGs(0), |
Chandler Carruth | 5d98994 | 2011-07-06 16:21:37 +0000 | [diff] [blame] | 738 | NumCFGBlocks(0), |
Benjamin Kramer | 54cf341 | 2011-07-08 20:38:53 +0000 | [diff] [blame] | 739 | MaxCFGBlocksPerFunction(0), |
| 740 | NumUninitAnalysisFunctions(0), |
| 741 | NumUninitAnalysisVariables(0), |
| 742 | MaxUninitAnalysisVariablesPerFunction(0), |
| 743 | NumUninitAnalysisBlockVisits(0), |
| 744 | MaxUninitAnalysisBlockVisitsPerFunction(0) { |
David Blaikie | d6471f7 | 2011-09-25 23:23:43 +0000 | [diff] [blame] | 745 | DiagnosticsEngine &D = S.getDiagnostics(); |
Ted Kremenek | d064fdc | 2010-03-23 00:13:23 +0000 | [diff] [blame] | 746 | DefaultPolicy.enableCheckUnreachable = (unsigned) |
Argyrios Kyrtzidis | 0827408 | 2010-12-15 18:44:22 +0000 | [diff] [blame] | 747 | (D.getDiagnosticLevel(diag::warn_unreachable, SourceLocation()) != |
David Blaikie | d6471f7 | 2011-09-25 23:23:43 +0000 | [diff] [blame] | 748 | DiagnosticsEngine::Ignored); |
Caitlin Sadowski | 3ac1fbc | 2011-08-23 18:46:34 +0000 | [diff] [blame] | 749 | DefaultPolicy.enableThreadSafetyAnalysis = (unsigned) |
| 750 | (D.getDiagnosticLevel(diag::warn_double_lock, SourceLocation()) != |
David Blaikie | d6471f7 | 2011-09-25 23:23:43 +0000 | [diff] [blame] | 751 | DiagnosticsEngine::Ignored); |
Caitlin Sadowski | 3ac1fbc | 2011-08-23 18:46:34 +0000 | [diff] [blame] | 752 | |
Ted Kremenek | dbdbaaf | 2010-03-20 21:06:02 +0000 | [diff] [blame] | 753 | } |
| 754 | |
Ted Kremenek | 351ba91 | 2011-02-23 01:52:04 +0000 | [diff] [blame] | 755 | static void flushDiagnostics(Sema &S, sema::FunctionScopeInfo *fscope) { |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 756 | for (SmallVectorImpl<sema::PossiblyUnreachableDiag>::iterator |
Ted Kremenek | 351ba91 | 2011-02-23 01:52:04 +0000 | [diff] [blame] | 757 | i = fscope->PossiblyUnreachableDiags.begin(), |
| 758 | e = fscope->PossiblyUnreachableDiags.end(); |
| 759 | i != e; ++i) { |
| 760 | const sema::PossiblyUnreachableDiag &D = *i; |
| 761 | S.Diag(D.Loc, D.PD); |
| 762 | } |
| 763 | } |
| 764 | |
Ted Kremenek | d064fdc | 2010-03-23 00:13:23 +0000 | [diff] [blame] | 765 | void clang::sema:: |
| 766 | AnalysisBasedWarnings::IssueWarnings(sema::AnalysisBasedWarnings::Policy P, |
Ted Kremenek | 283a358 | 2011-02-23 01:51:53 +0000 | [diff] [blame] | 767 | sema::FunctionScopeInfo *fscope, |
Ted Kremenek | 3ed6fc0 | 2011-02-23 01:51:48 +0000 | [diff] [blame] | 768 | const Decl *D, const BlockExpr *blkExpr) { |
Ted Kremenek | d068aab | 2010-03-20 21:11:09 +0000 | [diff] [blame] | 769 | |
Ted Kremenek | dbdbaaf | 2010-03-20 21:06:02 +0000 | [diff] [blame] | 770 | // We avoid doing analysis-based warnings when there are errors for |
| 771 | // two reasons: |
| 772 | // (1) The CFGs often can't be constructed (if the body is invalid), so |
| 773 | // don't bother trying. |
| 774 | // (2) The code already has problems; running the analysis just takes more |
| 775 | // time. |
David Blaikie | d6471f7 | 2011-09-25 23:23:43 +0000 | [diff] [blame] | 776 | DiagnosticsEngine &Diags = S.getDiagnostics(); |
Ted Kremenek | 99e8192 | 2010-04-30 21:49:25 +0000 | [diff] [blame] | 777 | |
Ted Kremenek | d064fdc | 2010-03-23 00:13:23 +0000 | [diff] [blame] | 778 | // Do not do any analysis for declarations in system headers if we are |
| 779 | // going to just ignore them. |
Ted Kremenek | 99e8192 | 2010-04-30 21:49:25 +0000 | [diff] [blame] | 780 | if (Diags.getSuppressSystemWarnings() && |
Ted Kremenek | d064fdc | 2010-03-23 00:13:23 +0000 | [diff] [blame] | 781 | S.SourceMgr.isInSystemHeader(D->getLocation())) |
| 782 | return; |
| 783 | |
John McCall | e0054f6 | 2010-08-25 05:56:39 +0000 | [diff] [blame] | 784 | // For code in dependent contexts, we'll do this at instantiation time. |
| 785 | if (cast<DeclContext>(D)->isDependentContext()) |
| 786 | return; |
Ted Kremenek | dbdbaaf | 2010-03-20 21:06:02 +0000 | [diff] [blame] | 787 | |
Ted Kremenek | 351ba91 | 2011-02-23 01:52:04 +0000 | [diff] [blame] | 788 | if (Diags.hasErrorOccurred() || Diags.hasFatalErrorOccurred()) { |
| 789 | // Flush out any possibly unreachable diagnostics. |
| 790 | flushDiagnostics(S, fscope); |
| 791 | return; |
| 792 | } |
| 793 | |
Ted Kremenek | dbdbaaf | 2010-03-20 21:06:02 +0000 | [diff] [blame] | 794 | const Stmt *Body = D->getBody(); |
| 795 | assert(Body); |
| 796 | |
Ted Kremenek | 1d26f48 | 2011-10-24 01:32:45 +0000 | [diff] [blame] | 797 | AnalysisDeclContext AC(/* AnalysisDeclContextManager */ 0, D, 0); |
Ted Kremenek | bc5cb8a | 2011-07-21 05:22:47 +0000 | [diff] [blame] | 798 | |
Ted Kremenek | dbdbaaf | 2010-03-20 21:06:02 +0000 | [diff] [blame] | 799 | // Don't generate EH edges for CallExprs as we'd like to avoid the n^2 |
| 800 | // explosion for destrutors that can result and the compile time hit. |
Ted Kremenek | bc5cb8a | 2011-07-21 05:22:47 +0000 | [diff] [blame] | 801 | AC.getCFGBuildOptions().PruneTriviallyFalseEdges = true; |
| 802 | AC.getCFGBuildOptions().AddEHEdges = false; |
| 803 | AC.getCFGBuildOptions().AddInitializers = true; |
| 804 | AC.getCFGBuildOptions().AddImplicitDtors = true; |
Ted Kremenek | 0c8e5a0 | 2011-07-19 14:18:48 +0000 | [diff] [blame] | 805 | |
| 806 | // Force that certain expressions appear as CFGElements in the CFG. This |
| 807 | // is used to speed up various analyses. |
| 808 | // FIXME: This isn't the right factoring. This is here for initial |
| 809 | // prototyping, but we need a way for analyses to say what expressions they |
| 810 | // expect to always be CFGElements and then fill in the BuildOptions |
| 811 | // appropriately. This is essentially a layering violation. |
DeLesley Hutchins | 1fa3c06 | 2011-12-08 20:23:06 +0000 | [diff] [blame] | 812 | if (P.enableCheckUnreachable || P.enableThreadSafetyAnalysis) { |
| 813 | // Unreachable code analysis and thread safety require a linearized CFG. |
Ted Kremenek | 0f3b4ca | 2011-08-23 23:05:11 +0000 | [diff] [blame] | 814 | AC.getCFGBuildOptions().setAllAlwaysAdd(); |
| 815 | } |
| 816 | else { |
| 817 | AC.getCFGBuildOptions() |
| 818 | .setAlwaysAdd(Stmt::BinaryOperatorClass) |
| 819 | .setAlwaysAdd(Stmt::BlockExprClass) |
| 820 | .setAlwaysAdd(Stmt::CStyleCastExprClass) |
| 821 | .setAlwaysAdd(Stmt::DeclRefExprClass) |
| 822 | .setAlwaysAdd(Stmt::ImplicitCastExprClass) |
| 823 | .setAlwaysAdd(Stmt::UnaryOperatorClass); |
| 824 | } |
Ted Kremenek | dbdbaaf | 2010-03-20 21:06:02 +0000 | [diff] [blame] | 825 | |
Ted Kremenek | bc5cb8a | 2011-07-21 05:22:47 +0000 | [diff] [blame] | 826 | // Construct the analysis context with the specified CFG build options. |
| 827 | |
Ted Kremenek | 351ba91 | 2011-02-23 01:52:04 +0000 | [diff] [blame] | 828 | // Emit delayed diagnostics. |
| 829 | if (!fscope->PossiblyUnreachableDiags.empty()) { |
| 830 | bool analyzed = false; |
Ted Kremenek | 0d28d36 | 2011-03-10 03:50:34 +0000 | [diff] [blame] | 831 | |
| 832 | // Register the expressions with the CFGBuilder. |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 833 | for (SmallVectorImpl<sema::PossiblyUnreachableDiag>::iterator |
Ted Kremenek | 0d28d36 | 2011-03-10 03:50:34 +0000 | [diff] [blame] | 834 | i = fscope->PossiblyUnreachableDiags.begin(), |
| 835 | e = fscope->PossiblyUnreachableDiags.end(); |
| 836 | i != e; ++i) { |
| 837 | if (const Stmt *stmt = i->stmt) |
| 838 | AC.registerForcedBlockExpression(stmt); |
| 839 | } |
| 840 | |
| 841 | if (AC.getCFG()) { |
| 842 | analyzed = true; |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 843 | for (SmallVectorImpl<sema::PossiblyUnreachableDiag>::iterator |
Ted Kremenek | 0d28d36 | 2011-03-10 03:50:34 +0000 | [diff] [blame] | 844 | i = fscope->PossiblyUnreachableDiags.begin(), |
| 845 | e = fscope->PossiblyUnreachableDiags.end(); |
| 846 | i != e; ++i) |
| 847 | { |
| 848 | const sema::PossiblyUnreachableDiag &D = *i; |
| 849 | bool processed = false; |
| 850 | if (const Stmt *stmt = i->stmt) { |
| 851 | const CFGBlock *block = AC.getBlockForRegisteredExpression(stmt); |
Eli Friedman | 71b8fb5 | 2012-01-21 01:01:51 +0000 | [diff] [blame] | 852 | CFGReverseBlockReachabilityAnalysis *cra = |
| 853 | AC.getCFGReachablityAnalysis(); |
| 854 | // FIXME: We should be able to assert that block is non-null, but |
| 855 | // the CFG analysis can skip potentially-evaluated expressions in |
| 856 | // edge cases; see test/Sema/vla-2.c. |
| 857 | if (block && cra) { |
Ted Kremenek | 351ba91 | 2011-02-23 01:52:04 +0000 | [diff] [blame] | 858 | // Can this block be reached from the entrance? |
Ted Kremenek | 0d28d36 | 2011-03-10 03:50:34 +0000 | [diff] [blame] | 859 | if (cra->isReachable(&AC.getCFG()->getEntry(), block)) |
Ted Kremenek | 351ba91 | 2011-02-23 01:52:04 +0000 | [diff] [blame] | 860 | S.Diag(D.Loc, D.PD); |
Ted Kremenek | 0d28d36 | 2011-03-10 03:50:34 +0000 | [diff] [blame] | 861 | processed = true; |
Ted Kremenek | 351ba91 | 2011-02-23 01:52:04 +0000 | [diff] [blame] | 862 | } |
| 863 | } |
Ted Kremenek | 0d28d36 | 2011-03-10 03:50:34 +0000 | [diff] [blame] | 864 | if (!processed) { |
| 865 | // Emit the warning anyway if we cannot map to a basic block. |
| 866 | S.Diag(D.Loc, D.PD); |
| 867 | } |
Ted Kremenek | 351ba91 | 2011-02-23 01:52:04 +0000 | [diff] [blame] | 868 | } |
Ted Kremenek | 0d28d36 | 2011-03-10 03:50:34 +0000 | [diff] [blame] | 869 | } |
Ted Kremenek | 351ba91 | 2011-02-23 01:52:04 +0000 | [diff] [blame] | 870 | |
| 871 | if (!analyzed) |
| 872 | flushDiagnostics(S, fscope); |
| 873 | } |
| 874 | |
| 875 | |
Ted Kremenek | dbdbaaf | 2010-03-20 21:06:02 +0000 | [diff] [blame] | 876 | // Warning: check missing 'return' |
Ted Kremenek | d064fdc | 2010-03-23 00:13:23 +0000 | [diff] [blame] | 877 | if (P.enableCheckFallThrough) { |
Ted Kremenek | dbdbaaf | 2010-03-20 21:06:02 +0000 | [diff] [blame] | 878 | const CheckFallThroughDiagnostics &CD = |
| 879 | (isa<BlockDecl>(D) ? CheckFallThroughDiagnostics::MakeForBlock() |
Douglas Gregor | ca7eaee | 2010-04-16 23:28:44 +0000 | [diff] [blame] | 880 | : CheckFallThroughDiagnostics::MakeForFunction(D)); |
Ted Kremenek | 3ed6fc0 | 2011-02-23 01:51:48 +0000 | [diff] [blame] | 881 | CheckFallThroughForBody(S, D, Body, blkExpr, CD, AC); |
Ted Kremenek | dbdbaaf | 2010-03-20 21:06:02 +0000 | [diff] [blame] | 882 | } |
| 883 | |
| 884 | // Warning: check for unreachable code |
Ted Kremenek | 5dfee06 | 2011-11-30 21:22:09 +0000 | [diff] [blame] | 885 | if (P.enableCheckUnreachable) { |
| 886 | // Only check for unreachable code on non-template instantiations. |
| 887 | // Different template instantiations can effectively change the control-flow |
| 888 | // and it is very difficult to prove that a snippet of code in a template |
| 889 | // is unreachable for all instantiations. |
Ted Kremenek | 75df4ee | 2011-12-01 00:59:17 +0000 | [diff] [blame] | 890 | bool isTemplateInstantiation = false; |
| 891 | if (const FunctionDecl *Function = dyn_cast<FunctionDecl>(D)) |
| 892 | isTemplateInstantiation = Function->isTemplateInstantiation(); |
| 893 | if (!isTemplateInstantiation) |
Ted Kremenek | 5dfee06 | 2011-11-30 21:22:09 +0000 | [diff] [blame] | 894 | CheckUnreachable(S, AC); |
| 895 | } |
Caitlin Sadowski | 75f23ae | 2011-09-09 16:04:02 +0000 | [diff] [blame] | 896 | |
Caitlin Sadowski | 3ac1fbc | 2011-08-23 18:46:34 +0000 | [diff] [blame] | 897 | // Check for thread safety violations |
Caitlin Sadowski | 75f23ae | 2011-09-09 16:04:02 +0000 | [diff] [blame] | 898 | if (P.enableThreadSafetyAnalysis) { |
DeLesley Hutchins | f1ac637 | 2011-10-21 18:10:14 +0000 | [diff] [blame] | 899 | SourceLocation FL = AC.getDecl()->getLocation(); |
| 900 | thread_safety::ThreadSafetyReporter Reporter(S, FL); |
Caitlin Sadowski | 75f23ae | 2011-09-09 16:04:02 +0000 | [diff] [blame] | 901 | thread_safety::runThreadSafetyAnalysis(AC, Reporter); |
| 902 | Reporter.emitDiagnostics(); |
| 903 | } |
Caitlin Sadowski | 3ac1fbc | 2011-08-23 18:46:34 +0000 | [diff] [blame] | 904 | |
Ted Kremenek | a8c17a5 | 2011-01-25 19:13:48 +0000 | [diff] [blame] | 905 | if (Diags.getDiagnosticLevel(diag::warn_uninit_var, D->getLocStart()) |
David Blaikie | d6471f7 | 2011-09-25 23:23:43 +0000 | [diff] [blame] | 906 | != DiagnosticsEngine::Ignored || |
Ted Kremenek | 76709bf | 2011-03-15 05:22:28 +0000 | [diff] [blame] | 907 | Diags.getDiagnosticLevel(diag::warn_maybe_uninit_var, D->getLocStart()) |
David Blaikie | d6471f7 | 2011-09-25 23:23:43 +0000 | [diff] [blame] | 908 | != DiagnosticsEngine::Ignored) { |
Ted Kremenek | c5e43c1 | 2011-03-17 05:29:57 +0000 | [diff] [blame] | 909 | if (CFG *cfg = AC.getCFG()) { |
Ted Kremenek | c21fed3 | 2011-01-18 21:18:58 +0000 | [diff] [blame] | 910 | UninitValsDiagReporter reporter(S); |
Fariborz Jahanian | 57080fb | 2011-07-16 18:31:33 +0000 | [diff] [blame] | 911 | UninitVariablesAnalysisStats stats; |
Benjamin Kramer | 12efd57 | 2011-07-16 20:13:06 +0000 | [diff] [blame] | 912 | std::memset(&stats, 0, sizeof(UninitVariablesAnalysisStats)); |
Ted Kremenek | a8c17a5 | 2011-01-25 19:13:48 +0000 | [diff] [blame] | 913 | runUninitializedVariablesAnalysis(*cast<DeclContext>(D), *cfg, AC, |
Chandler Carruth | 5d98994 | 2011-07-06 16:21:37 +0000 | [diff] [blame] | 914 | reporter, stats); |
| 915 | |
| 916 | if (S.CollectStats && stats.NumVariablesAnalyzed > 0) { |
| 917 | ++NumUninitAnalysisFunctions; |
| 918 | NumUninitAnalysisVariables += stats.NumVariablesAnalyzed; |
| 919 | NumUninitAnalysisBlockVisits += stats.NumBlockVisits; |
| 920 | MaxUninitAnalysisVariablesPerFunction = |
| 921 | std::max(MaxUninitAnalysisVariablesPerFunction, |
| 922 | stats.NumVariablesAnalyzed); |
| 923 | MaxUninitAnalysisBlockVisitsPerFunction = |
| 924 | std::max(MaxUninitAnalysisBlockVisitsPerFunction, |
| 925 | stats.NumBlockVisits); |
| 926 | } |
Ted Kremenek | 610068c | 2011-01-15 02:58:47 +0000 | [diff] [blame] | 927 | } |
| 928 | } |
Chandler Carruth | 5d98994 | 2011-07-06 16:21:37 +0000 | [diff] [blame] | 929 | |
| 930 | // Collect statistics about the CFG if it was built. |
| 931 | if (S.CollectStats && AC.isCFGBuilt()) { |
| 932 | ++NumFunctionsAnalyzed; |
| 933 | if (CFG *cfg = AC.getCFG()) { |
| 934 | // If we successfully built a CFG for this context, record some more |
| 935 | // detail information about it. |
Chandler Carruth | 3ea4c49 | 2011-07-06 22:21:45 +0000 | [diff] [blame] | 936 | NumCFGBlocks += cfg->getNumBlockIDs(); |
Chandler Carruth | 5d98994 | 2011-07-06 16:21:37 +0000 | [diff] [blame] | 937 | MaxCFGBlocksPerFunction = std::max(MaxCFGBlocksPerFunction, |
Chandler Carruth | 3ea4c49 | 2011-07-06 22:21:45 +0000 | [diff] [blame] | 938 | cfg->getNumBlockIDs()); |
Chandler Carruth | 5d98994 | 2011-07-06 16:21:37 +0000 | [diff] [blame] | 939 | } else { |
| 940 | ++NumFunctionsWithBadCFGs; |
| 941 | } |
| 942 | } |
| 943 | } |
| 944 | |
| 945 | void clang::sema::AnalysisBasedWarnings::PrintStats() const { |
| 946 | llvm::errs() << "\n*** Analysis Based Warnings Stats:\n"; |
| 947 | |
| 948 | unsigned NumCFGsBuilt = NumFunctionsAnalyzed - NumFunctionsWithBadCFGs; |
| 949 | unsigned AvgCFGBlocksPerFunction = |
| 950 | !NumCFGsBuilt ? 0 : NumCFGBlocks/NumCFGsBuilt; |
| 951 | llvm::errs() << NumFunctionsAnalyzed << " functions analyzed (" |
| 952 | << NumFunctionsWithBadCFGs << " w/o CFGs).\n" |
| 953 | << " " << NumCFGBlocks << " CFG blocks built.\n" |
| 954 | << " " << AvgCFGBlocksPerFunction |
| 955 | << " average CFG blocks per function.\n" |
| 956 | << " " << MaxCFGBlocksPerFunction |
| 957 | << " max CFG blocks per function.\n"; |
| 958 | |
| 959 | unsigned AvgUninitVariablesPerFunction = !NumUninitAnalysisFunctions ? 0 |
| 960 | : NumUninitAnalysisVariables/NumUninitAnalysisFunctions; |
| 961 | unsigned AvgUninitBlockVisitsPerFunction = !NumUninitAnalysisFunctions ? 0 |
| 962 | : NumUninitAnalysisBlockVisits/NumUninitAnalysisFunctions; |
| 963 | llvm::errs() << NumUninitAnalysisFunctions |
| 964 | << " functions analyzed for uninitialiazed variables\n" |
| 965 | << " " << NumUninitAnalysisVariables << " variables analyzed.\n" |
| 966 | << " " << AvgUninitVariablesPerFunction |
| 967 | << " average variables per function.\n" |
| 968 | << " " << MaxUninitAnalysisVariablesPerFunction |
| 969 | << " max variables per function.\n" |
| 970 | << " " << NumUninitAnalysisBlockVisits << " block visits.\n" |
| 971 | << " " << AvgUninitBlockVisitsPerFunction |
| 972 | << " average block visits per function.\n" |
| 973 | << " " << MaxUninitAnalysisBlockVisitsPerFunction |
| 974 | << " max block visits per function.\n"; |
Ted Kremenek | dbdbaaf | 2010-03-20 21:06:02 +0000 | [diff] [blame] | 975 | } |