Jordy Rose | 31ae259 | 2012-05-16 16:01:07 +0000 | [diff] [blame] | 1 | //==- ExprInspectionChecker.cpp - Used for regression tests ------*- 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 | #include "ClangSACheckers.h" |
Gabor Horvath | 3bd24f9 | 2017-10-30 12:02:23 +0000 | [diff] [blame] | 11 | #include "clang/StaticAnalyzer/Checkers/SValExplainer.h" |
Jordy Rose | 31ae259 | 2012-05-16 16:01:07 +0000 | [diff] [blame] | 12 | #include "clang/StaticAnalyzer/Core/BugReporter/BugType.h" |
Chandler Carruth | 3a02247 | 2012-12-04 09:13:33 +0000 | [diff] [blame] | 13 | #include "clang/StaticAnalyzer/Core/Checker.h" |
Gabor Horvath | 3bd24f9 | 2017-10-30 12:02:23 +0000 | [diff] [blame] | 14 | #include "clang/StaticAnalyzer/Core/IssueHash.h" |
Jordy Rose | 31ae259 | 2012-05-16 16:01:07 +0000 | [diff] [blame] | 15 | #include "clang/StaticAnalyzer/Core/PathSensitive/CheckerContext.h" |
Benjamin Kramer | d7d2b1f | 2012-12-01 16:35:25 +0000 | [diff] [blame] | 16 | #include "llvm/ADT/StringSwitch.h" |
Pavel Labath | d570a61 | 2017-01-16 15:57:07 +0000 | [diff] [blame] | 17 | #include "llvm/Support/ScopedPrinter.h" |
Jordy Rose | 31ae259 | 2012-05-16 16:01:07 +0000 | [diff] [blame] | 18 | |
| 19 | using namespace clang; |
| 20 | using namespace ento; |
| 21 | |
| 22 | namespace { |
Artem Dergachev | 30ed546 | 2016-11-30 17:57:18 +0000 | [diff] [blame] | 23 | class ExprInspectionChecker : public Checker<eval::Call, check::DeadSymbols, |
| 24 | check::EndAnalysis> { |
Ahmed Charles | b898432 | 2014-03-07 20:03:18 +0000 | [diff] [blame] | 25 | mutable std::unique_ptr<BugType> BT; |
Jordan Rose | 13937b1 | 2012-08-10 22:26:29 +0000 | [diff] [blame] | 26 | |
Artem Dergachev | 30ed546 | 2016-11-30 17:57:18 +0000 | [diff] [blame] | 27 | // These stats are per-analysis, not per-branch, hence they shouldn't |
| 28 | // stay inside the program state. |
| 29 | struct ReachedStat { |
| 30 | ExplodedNode *ExampleNode; |
| 31 | unsigned NumTimesReached; |
| 32 | }; |
| 33 | mutable llvm::DenseMap<const CallExpr *, ReachedStat> ReachedStats; |
| 34 | |
Jordan Rose | 13937b1 | 2012-08-10 22:26:29 +0000 | [diff] [blame] | 35 | void analyzerEval(const CallExpr *CE, CheckerContext &C) const; |
| 36 | void analyzerCheckInlined(const CallExpr *CE, CheckerContext &C) const; |
Jordan Rose | 9db2d9a | 2013-10-03 16:57:03 +0000 | [diff] [blame] | 37 | void analyzerWarnIfReached(const CallExpr *CE, CheckerContext &C) const; |
Artem Dergachev | 30ed546 | 2016-11-30 17:57:18 +0000 | [diff] [blame] | 38 | void analyzerNumTimesReached(const CallExpr *CE, CheckerContext &C) const; |
Jordan Rose | e9c5722 | 2013-07-19 00:59:08 +0000 | [diff] [blame] | 39 | void analyzerCrash(const CallExpr *CE, CheckerContext &C) const; |
Artem Dergachev | 733e71b | 2015-12-10 09:28:06 +0000 | [diff] [blame] | 40 | void analyzerWarnOnDeadSymbol(const CallExpr *CE, CheckerContext &C) const; |
Artem Dergachev | 30ed546 | 2016-11-30 17:57:18 +0000 | [diff] [blame] | 41 | void analyzerDump(const CallExpr *CE, CheckerContext &C) const; |
Artem Dergachev | 895242f | 2016-01-15 15:22:05 +0000 | [diff] [blame] | 42 | void analyzerExplain(const CallExpr *CE, CheckerContext &C) const; |
Artem Dergachev | 30ed546 | 2016-11-30 17:57:18 +0000 | [diff] [blame] | 43 | void analyzerPrintState(const CallExpr *CE, CheckerContext &C) const; |
Artem Dergachev | 895242f | 2016-01-15 15:22:05 +0000 | [diff] [blame] | 44 | void analyzerGetExtent(const CallExpr *CE, CheckerContext &C) const; |
Gabor Horvath | 3bd24f9 | 2017-10-30 12:02:23 +0000 | [diff] [blame] | 45 | void analyzerHashDump(const CallExpr *CE, CheckerContext &C) const; |
Jordan Rose | 13937b1 | 2012-08-10 22:26:29 +0000 | [diff] [blame] | 46 | |
| 47 | typedef void (ExprInspectionChecker::*FnCheck)(const CallExpr *, |
| 48 | CheckerContext &C) const; |
| 49 | |
Artem Dergachev | 30ed546 | 2016-11-30 17:57:18 +0000 | [diff] [blame] | 50 | ExplodedNode *reportBug(llvm::StringRef Msg, CheckerContext &C) const; |
| 51 | ExplodedNode *reportBug(llvm::StringRef Msg, BugReporter &BR, |
| 52 | ExplodedNode *N) const; |
Artem Dergachev | 895242f | 2016-01-15 15:22:05 +0000 | [diff] [blame] | 53 | |
Jordy Rose | 31ae259 | 2012-05-16 16:01:07 +0000 | [diff] [blame] | 54 | public: |
| 55 | bool evalCall(const CallExpr *CE, CheckerContext &C) const; |
Artem Dergachev | 733e71b | 2015-12-10 09:28:06 +0000 | [diff] [blame] | 56 | void checkDeadSymbols(SymbolReaper &SymReaper, CheckerContext &C) const; |
Artem Dergachev | 30ed546 | 2016-11-30 17:57:18 +0000 | [diff] [blame] | 57 | void checkEndAnalysis(ExplodedGraph &G, BugReporter &BR, |
| 58 | ExprEngine &Eng) const; |
Jordy Rose | 31ae259 | 2012-05-16 16:01:07 +0000 | [diff] [blame] | 59 | }; |
Alexander Kornienko | ab9db51 | 2015-06-22 23:07:51 +0000 | [diff] [blame] | 60 | } |
Jordy Rose | 31ae259 | 2012-05-16 16:01:07 +0000 | [diff] [blame] | 61 | |
Artem Dergachev | 895242f | 2016-01-15 15:22:05 +0000 | [diff] [blame] | 62 | REGISTER_SET_WITH_PROGRAMSTATE(MarkedSymbols, SymbolRef) |
Artem Dergachev | 733e71b | 2015-12-10 09:28:06 +0000 | [diff] [blame] | 63 | |
Jordy Rose | 31ae259 | 2012-05-16 16:01:07 +0000 | [diff] [blame] | 64 | bool ExprInspectionChecker::evalCall(const CallExpr *CE, |
Jordan Rose | 13937b1 | 2012-08-10 22:26:29 +0000 | [diff] [blame] | 65 | CheckerContext &C) const { |
Jordy Rose | 31ae259 | 2012-05-16 16:01:07 +0000 | [diff] [blame] | 66 | // These checks should have no effect on the surrounding environment |
Jordan Rose | 13937b1 | 2012-08-10 22:26:29 +0000 | [diff] [blame] | 67 | // (globals should not be invalidated, etc), hence the use of evalCall. |
| 68 | FnCheck Handler = llvm::StringSwitch<FnCheck>(C.getCalleeName(CE)) |
| 69 | .Case("clang_analyzer_eval", &ExprInspectionChecker::analyzerEval) |
| 70 | .Case("clang_analyzer_checkInlined", |
| 71 | &ExprInspectionChecker::analyzerCheckInlined) |
Jordan Rose | e9c5722 | 2013-07-19 00:59:08 +0000 | [diff] [blame] | 72 | .Case("clang_analyzer_crash", &ExprInspectionChecker::analyzerCrash) |
Artem Dergachev | 733e71b | 2015-12-10 09:28:06 +0000 | [diff] [blame] | 73 | .Case("clang_analyzer_warnIfReached", |
| 74 | &ExprInspectionChecker::analyzerWarnIfReached) |
| 75 | .Case("clang_analyzer_warnOnDeadSymbol", |
| 76 | &ExprInspectionChecker::analyzerWarnOnDeadSymbol) |
Anna Zaks | 37faed9 | 2017-03-09 00:01:10 +0000 | [diff] [blame] | 77 | .StartsWith("clang_analyzer_explain", &ExprInspectionChecker::analyzerExplain) |
| 78 | .StartsWith("clang_analyzer_dump", &ExprInspectionChecker::analyzerDump) |
Artem Dergachev | 895242f | 2016-01-15 15:22:05 +0000 | [diff] [blame] | 79 | .Case("clang_analyzer_getExtent", &ExprInspectionChecker::analyzerGetExtent) |
Artem Dergachev | 30ed546 | 2016-11-30 17:57:18 +0000 | [diff] [blame] | 80 | .Case("clang_analyzer_printState", |
| 81 | &ExprInspectionChecker::analyzerPrintState) |
| 82 | .Case("clang_analyzer_numTimesReached", |
| 83 | &ExprInspectionChecker::analyzerNumTimesReached) |
Gabor Horvath | 3bd24f9 | 2017-10-30 12:02:23 +0000 | [diff] [blame] | 84 | .Case("clang_analyzer_hashDump", &ExprInspectionChecker::analyzerHashDump) |
Craig Topper | 0dbb783 | 2014-05-27 02:45:47 +0000 | [diff] [blame] | 85 | .Default(nullptr); |
Jordan Rose | 13937b1 | 2012-08-10 22:26:29 +0000 | [diff] [blame] | 86 | |
| 87 | if (!Handler) |
| 88 | return false; |
| 89 | |
| 90 | (this->*Handler)(CE, C); |
| 91 | return true; |
| 92 | } |
| 93 | |
| 94 | static const char *getArgumentValueString(const CallExpr *CE, |
| 95 | CheckerContext &C) { |
| 96 | if (CE->getNumArgs() == 0) |
| 97 | return "Missing assertion argument"; |
| 98 | |
| 99 | ExplodedNode *N = C.getPredecessor(); |
| 100 | const LocationContext *LC = N->getLocationContext(); |
| 101 | ProgramStateRef State = N->getState(); |
| 102 | |
| 103 | const Expr *Assertion = CE->getArg(0); |
| 104 | SVal AssertionVal = State->getSVal(Assertion, LC); |
| 105 | |
| 106 | if (AssertionVal.isUndef()) |
| 107 | return "UNDEFINED"; |
| 108 | |
| 109 | ProgramStateRef StTrue, StFalse; |
Benjamin Kramer | 867ea1d | 2014-03-02 13:01:17 +0000 | [diff] [blame] | 110 | std::tie(StTrue, StFalse) = |
David Blaikie | 2fdacbc | 2013-02-20 05:52:05 +0000 | [diff] [blame] | 111 | State->assume(AssertionVal.castAs<DefinedOrUnknownSVal>()); |
Jordan Rose | 13937b1 | 2012-08-10 22:26:29 +0000 | [diff] [blame] | 112 | |
| 113 | if (StTrue) { |
| 114 | if (StFalse) |
| 115 | return "UNKNOWN"; |
| 116 | else |
| 117 | return "TRUE"; |
| 118 | } else { |
| 119 | if (StFalse) |
| 120 | return "FALSE"; |
| 121 | else |
| 122 | llvm_unreachable("Invalid constraint; neither true or false."); |
| 123 | } |
| 124 | } |
| 125 | |
Artem Dergachev | 30ed546 | 2016-11-30 17:57:18 +0000 | [diff] [blame] | 126 | ExplodedNode *ExprInspectionChecker::reportBug(llvm::StringRef Msg, |
| 127 | CheckerContext &C) const { |
| 128 | ExplodedNode *N = C.generateNonFatalErrorNode(); |
| 129 | reportBug(Msg, C.getBugReporter(), N); |
| 130 | return N; |
| 131 | } |
| 132 | |
| 133 | ExplodedNode *ExprInspectionChecker::reportBug(llvm::StringRef Msg, |
| 134 | BugReporter &BR, |
| 135 | ExplodedNode *N) const { |
| 136 | if (!N) |
| 137 | return nullptr; |
| 138 | |
Artem Dergachev | 895242f | 2016-01-15 15:22:05 +0000 | [diff] [blame] | 139 | if (!BT) |
| 140 | BT.reset(new BugType(this, "Checking analyzer assumptions", "debug")); |
| 141 | |
Artem Dergachev | 30ed546 | 2016-11-30 17:57:18 +0000 | [diff] [blame] | 142 | BR.emitReport(llvm::make_unique<BugReport>(*BT, Msg, N)); |
| 143 | return N; |
Artem Dergachev | 895242f | 2016-01-15 15:22:05 +0000 | [diff] [blame] | 144 | } |
| 145 | |
Jordan Rose | 13937b1 | 2012-08-10 22:26:29 +0000 | [diff] [blame] | 146 | void ExprInspectionChecker::analyzerEval(const CallExpr *CE, |
| 147 | CheckerContext &C) const { |
Devin Coughlin | e39bd40 | 2015-09-16 22:03:05 +0000 | [diff] [blame] | 148 | const LocationContext *LC = C.getPredecessor()->getLocationContext(); |
Jordy Rose | 31ae259 | 2012-05-16 16:01:07 +0000 | [diff] [blame] | 149 | |
Jordy Rose | 31ae259 | 2012-05-16 16:01:07 +0000 | [diff] [blame] | 150 | // A specific instantiation of an inlined function may have more constrained |
| 151 | // values than can generally be assumed. Skip the check. |
Craig Topper | 0dbb783 | 2014-05-27 02:45:47 +0000 | [diff] [blame] | 152 | if (LC->getCurrentStackFrame()->getParent() != nullptr) |
Jordan Rose | 13937b1 | 2012-08-10 22:26:29 +0000 | [diff] [blame] | 153 | return; |
Jordy Rose | 31ae259 | 2012-05-16 16:01:07 +0000 | [diff] [blame] | 154 | |
Artem Dergachev | 895242f | 2016-01-15 15:22:05 +0000 | [diff] [blame] | 155 | reportBug(getArgumentValueString(CE, C), C); |
Jordan Rose | 13937b1 | 2012-08-10 22:26:29 +0000 | [diff] [blame] | 156 | } |
Jordy Rose | 31ae259 | 2012-05-16 16:01:07 +0000 | [diff] [blame] | 157 | |
Jordan Rose | 9db2d9a | 2013-10-03 16:57:03 +0000 | [diff] [blame] | 158 | void ExprInspectionChecker::analyzerWarnIfReached(const CallExpr *CE, |
| 159 | CheckerContext &C) const { |
Artem Dergachev | 895242f | 2016-01-15 15:22:05 +0000 | [diff] [blame] | 160 | reportBug("REACHABLE", C); |
Jordan Rose | 9db2d9a | 2013-10-03 16:57:03 +0000 | [diff] [blame] | 161 | } |
| 162 | |
Artem Dergachev | 30ed546 | 2016-11-30 17:57:18 +0000 | [diff] [blame] | 163 | void ExprInspectionChecker::analyzerNumTimesReached(const CallExpr *CE, |
| 164 | CheckerContext &C) const { |
| 165 | ++ReachedStats[CE].NumTimesReached; |
| 166 | if (!ReachedStats[CE].ExampleNode) { |
| 167 | // Later, in checkEndAnalysis, we'd throw a report against it. |
| 168 | ReachedStats[CE].ExampleNode = C.generateNonFatalErrorNode(); |
| 169 | } |
| 170 | } |
| 171 | |
Jordan Rose | 13937b1 | 2012-08-10 22:26:29 +0000 | [diff] [blame] | 172 | void ExprInspectionChecker::analyzerCheckInlined(const CallExpr *CE, |
| 173 | CheckerContext &C) const { |
Devin Coughlin | e39bd40 | 2015-09-16 22:03:05 +0000 | [diff] [blame] | 174 | const LocationContext *LC = C.getPredecessor()->getLocationContext(); |
Jordan Rose | 13937b1 | 2012-08-10 22:26:29 +0000 | [diff] [blame] | 175 | |
| 176 | // An inlined function could conceivably also be analyzed as a top-level |
| 177 | // function. We ignore this case and only emit a message (TRUE or FALSE) |
| 178 | // when we are analyzing it as an inlined function. This means that |
| 179 | // clang_analyzer_checkInlined(true) should always print TRUE, but |
| 180 | // clang_analyzer_checkInlined(false) should never actually print anything. |
Craig Topper | 0dbb783 | 2014-05-27 02:45:47 +0000 | [diff] [blame] | 181 | if (LC->getCurrentStackFrame()->getParent() == nullptr) |
Jordan Rose | 13937b1 | 2012-08-10 22:26:29 +0000 | [diff] [blame] | 182 | return; |
| 183 | |
Artem Dergachev | 895242f | 2016-01-15 15:22:05 +0000 | [diff] [blame] | 184 | reportBug(getArgumentValueString(CE, C), C); |
| 185 | } |
Jordan Rose | 13937b1 | 2012-08-10 22:26:29 +0000 | [diff] [blame] | 186 | |
Artem Dergachev | 895242f | 2016-01-15 15:22:05 +0000 | [diff] [blame] | 187 | void ExprInspectionChecker::analyzerExplain(const CallExpr *CE, |
| 188 | CheckerContext &C) const { |
Artem Dergachev | 30ed546 | 2016-11-30 17:57:18 +0000 | [diff] [blame] | 189 | if (CE->getNumArgs() == 0) { |
Artem Dergachev | 895242f | 2016-01-15 15:22:05 +0000 | [diff] [blame] | 190 | reportBug("Missing argument for explaining", C); |
Artem Dergachev | 30ed546 | 2016-11-30 17:57:18 +0000 | [diff] [blame] | 191 | return; |
| 192 | } |
Artem Dergachev | 895242f | 2016-01-15 15:22:05 +0000 | [diff] [blame] | 193 | |
| 194 | SVal V = C.getSVal(CE->getArg(0)); |
| 195 | SValExplainer Ex(C.getASTContext()); |
| 196 | reportBug(Ex.Visit(V), C); |
| 197 | } |
| 198 | |
Artem Dergachev | 30ed546 | 2016-11-30 17:57:18 +0000 | [diff] [blame] | 199 | void ExprInspectionChecker::analyzerDump(const CallExpr *CE, |
| 200 | CheckerContext &C) const { |
| 201 | if (CE->getNumArgs() == 0) { |
| 202 | reportBug("Missing argument for dumping", C); |
| 203 | return; |
| 204 | } |
| 205 | |
| 206 | SVal V = C.getSVal(CE->getArg(0)); |
| 207 | |
| 208 | llvm::SmallString<32> Str; |
| 209 | llvm::raw_svector_ostream OS(Str); |
| 210 | V.dumpToStream(OS); |
| 211 | reportBug(OS.str(), C); |
| 212 | } |
| 213 | |
Artem Dergachev | 895242f | 2016-01-15 15:22:05 +0000 | [diff] [blame] | 214 | void ExprInspectionChecker::analyzerGetExtent(const CallExpr *CE, |
| 215 | CheckerContext &C) const { |
Artem Dergachev | 30ed546 | 2016-11-30 17:57:18 +0000 | [diff] [blame] | 216 | if (CE->getNumArgs() == 0) { |
Artem Dergachev | 895242f | 2016-01-15 15:22:05 +0000 | [diff] [blame] | 217 | reportBug("Missing region for obtaining extent", C); |
Artem Dergachev | 30ed546 | 2016-11-30 17:57:18 +0000 | [diff] [blame] | 218 | return; |
| 219 | } |
Artem Dergachev | 895242f | 2016-01-15 15:22:05 +0000 | [diff] [blame] | 220 | |
| 221 | auto MR = dyn_cast_or_null<SubRegion>(C.getSVal(CE->getArg(0)).getAsRegion()); |
Artem Dergachev | 30ed546 | 2016-11-30 17:57:18 +0000 | [diff] [blame] | 222 | if (!MR) { |
Artem Dergachev | 895242f | 2016-01-15 15:22:05 +0000 | [diff] [blame] | 223 | reportBug("Obtaining extent of a non-region", C); |
Artem Dergachev | 30ed546 | 2016-11-30 17:57:18 +0000 | [diff] [blame] | 224 | return; |
| 225 | } |
Artem Dergachev | 895242f | 2016-01-15 15:22:05 +0000 | [diff] [blame] | 226 | |
| 227 | ProgramStateRef State = C.getState(); |
| 228 | State = State->BindExpr(CE, C.getLocationContext(), |
| 229 | MR->getExtent(C.getSValBuilder())); |
| 230 | C.addTransition(State); |
Jordy Rose | 31ae259 | 2012-05-16 16:01:07 +0000 | [diff] [blame] | 231 | } |
| 232 | |
Artem Dergachev | 30ed546 | 2016-11-30 17:57:18 +0000 | [diff] [blame] | 233 | void ExprInspectionChecker::analyzerPrintState(const CallExpr *CE, |
| 234 | CheckerContext &C) const { |
| 235 | C.getState()->dump(); |
| 236 | } |
| 237 | |
Artem Dergachev | 733e71b | 2015-12-10 09:28:06 +0000 | [diff] [blame] | 238 | void ExprInspectionChecker::analyzerWarnOnDeadSymbol(const CallExpr *CE, |
| 239 | CheckerContext &C) const { |
| 240 | if (CE->getNumArgs() == 0) |
| 241 | return; |
| 242 | SVal Val = C.getSVal(CE->getArg(0)); |
| 243 | SymbolRef Sym = Val.getAsSymbol(); |
| 244 | if (!Sym) |
| 245 | return; |
| 246 | |
| 247 | ProgramStateRef State = C.getState(); |
| 248 | State = State->add<MarkedSymbols>(Sym); |
| 249 | C.addTransition(State); |
| 250 | } |
| 251 | |
| 252 | void ExprInspectionChecker::checkDeadSymbols(SymbolReaper &SymReaper, |
| 253 | CheckerContext &C) const { |
| 254 | ProgramStateRef State = C.getState(); |
| 255 | const MarkedSymbolsTy &Syms = State->get<MarkedSymbols>(); |
Artem Dergachev | 30ed546 | 2016-11-30 17:57:18 +0000 | [diff] [blame] | 256 | ExplodedNode *N = C.getPredecessor(); |
Artem Dergachev | 733e71b | 2015-12-10 09:28:06 +0000 | [diff] [blame] | 257 | for (auto I = Syms.begin(), E = Syms.end(); I != E; ++I) { |
Artem Dergachev | 895242f | 2016-01-15 15:22:05 +0000 | [diff] [blame] | 258 | SymbolRef Sym = *I; |
Artem Dergachev | 733e71b | 2015-12-10 09:28:06 +0000 | [diff] [blame] | 259 | if (!SymReaper.isDead(Sym)) |
| 260 | continue; |
| 261 | |
Artem Dergachev | 30ed546 | 2016-11-30 17:57:18 +0000 | [diff] [blame] | 262 | // The non-fatal error node should be the same for all reports. |
| 263 | if (ExplodedNode *BugNode = reportBug("SYMBOL DEAD", C)) |
| 264 | N = BugNode; |
Artem Dergachev | 895242f | 2016-01-15 15:22:05 +0000 | [diff] [blame] | 265 | State = State->remove<MarkedSymbols>(Sym); |
Artem Dergachev | 733e71b | 2015-12-10 09:28:06 +0000 | [diff] [blame] | 266 | } |
Artem Dergachev | 30ed546 | 2016-11-30 17:57:18 +0000 | [diff] [blame] | 267 | C.addTransition(State, N); |
| 268 | } |
| 269 | |
| 270 | void ExprInspectionChecker::checkEndAnalysis(ExplodedGraph &G, BugReporter &BR, |
| 271 | ExprEngine &Eng) const { |
| 272 | for (auto Item: ReachedStats) { |
| 273 | unsigned NumTimesReached = Item.second.NumTimesReached; |
| 274 | ExplodedNode *N = Item.second.ExampleNode; |
| 275 | |
Pavel Labath | d570a61 | 2017-01-16 15:57:07 +0000 | [diff] [blame] | 276 | reportBug(llvm::to_string(NumTimesReached), BR, N); |
Artem Dergachev | 30ed546 | 2016-11-30 17:57:18 +0000 | [diff] [blame] | 277 | } |
Peter Szecsi | 657ac14 | 2017-07-25 19:23:23 +0000 | [diff] [blame] | 278 | ReachedStats.clear(); |
Artem Dergachev | 733e71b | 2015-12-10 09:28:06 +0000 | [diff] [blame] | 279 | } |
| 280 | |
Jordan Rose | e9c5722 | 2013-07-19 00:59:08 +0000 | [diff] [blame] | 281 | void ExprInspectionChecker::analyzerCrash(const CallExpr *CE, |
| 282 | CheckerContext &C) const { |
| 283 | LLVM_BUILTIN_TRAP; |
| 284 | } |
| 285 | |
Gabor Horvath | 3bd24f9 | 2017-10-30 12:02:23 +0000 | [diff] [blame] | 286 | void ExprInspectionChecker::analyzerHashDump(const CallExpr *CE, |
| 287 | CheckerContext &C) const { |
| 288 | const LangOptions &Opts = C.getLangOpts(); |
| 289 | const SourceManager &SM = C.getSourceManager(); |
| 290 | FullSourceLoc FL(CE->getArg(0)->getLocStart(), SM); |
| 291 | std::string HashContent = |
| 292 | GetIssueString(SM, FL, getCheckName().getName(), "Category", |
| 293 | C.getLocationContext()->getDecl(), Opts); |
| 294 | |
| 295 | reportBug(HashContent, C); |
| 296 | } |
| 297 | |
Jordy Rose | 31ae259 | 2012-05-16 16:01:07 +0000 | [diff] [blame] | 298 | void ento::registerExprInspectionChecker(CheckerManager &Mgr) { |
| 299 | Mgr.registerChecker<ExprInspectionChecker>(); |
| 300 | } |