blob: 905a99e161eeff27b1cf3c492db7f77123007d45 [file] [log] [blame]
Tom Carec4b5bd82010-07-23 23:04:53 +00001//==- UnreachableCodeChecker.cpp - Generalized dead code checker -*- 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// This file implements a generalized unreachable code checker using a
10// path-sensitive analysis. We mark any path visited, and then walk the CFG as a
11// post-analysis to determine what was never visited.
12//
Jordy Rose5e04bdd2010-07-27 03:39:53 +000013// A similar flow-sensitive only check exists in Analysis/ReachableCode.cpp
Tom Carec4b5bd82010-07-23 23:04:53 +000014//===----------------------------------------------------------------------===//
15
Argyrios Kyrtzidisa0decc92011-02-15 21:25:03 +000016#include "ClangSACheckers.h"
Argyrios Kyrtzidisec8605f2011-03-01 01:16:21 +000017#include "clang/StaticAnalyzer/Core/Checker.h"
Argyrios Kyrtzidis695fb502011-02-17 21:39:17 +000018#include "clang/StaticAnalyzer/Core/CheckerManager.h"
Argyrios Kyrtzidis30726c62011-02-23 07:19:23 +000019#include "clang/StaticAnalyzer/Core/PathSensitive/CheckerContext.h"
Ted Kremenek9b663712011-02-10 01:03:03 +000020#include "clang/StaticAnalyzer/Core/PathSensitive/ExplodedGraph.h"
21#include "clang/StaticAnalyzer/Core/PathSensitive/SVals.h"
22#include "clang/StaticAnalyzer/Core/PathSensitive/CheckerHelpers.h"
23#include "clang/StaticAnalyzer/Core/BugReporter/BugReporter.h"
Argyrios Kyrtzidis30726c62011-02-23 07:19:23 +000024#include "clang/AST/ParentMap.h"
25#include "clang/Basic/Builtins.h"
26#include "clang/Basic/SourceManager.h"
Tom Carec4b5bd82010-07-23 23:04:53 +000027#include "llvm/ADT/SmallPtrSet.h"
28
29// The number of CFGBlock pointers we want to reserve memory for. This is used
30// once for each function we analyze.
31#define DEFAULT_CFGBLOCKS 256
32
33using namespace clang;
Ted Kremenek9ef65372010-12-23 07:20:52 +000034using namespace ento;
Tom Carec4b5bd82010-07-23 23:04:53 +000035
36namespace {
Argyrios Kyrtzidisec8605f2011-03-01 01:16:21 +000037class UnreachableCodeChecker : public Checker<check::EndAnalysis> {
Tom Carec4b5bd82010-07-23 23:04:53 +000038public:
Argyrios Kyrtzidis30726c62011-02-23 07:19:23 +000039 void checkEndAnalysis(ExplodedGraph &G, BugReporter &B,
40 ExprEngine &Eng) const;
Tom Carec4b5bd82010-07-23 23:04:53 +000041private:
Argyrios Kyrtzidis30726c62011-02-23 07:19:23 +000042 typedef llvm::SmallSet<unsigned, DEFAULT_CFGBLOCKS> CFGBlocksSet;
43
Tom Caref8906792010-08-03 21:24:13 +000044 static inline const Stmt *getUnreachableStmt(const CFGBlock *CB);
Argyrios Kyrtzidis30726c62011-02-23 07:19:23 +000045 static void FindUnreachableEntryPoints(const CFGBlock *CB,
46 CFGBlocksSet &reachable,
47 CFGBlocksSet &visited);
Tom Care7bce3a12010-07-27 23:30:21 +000048 static bool isInvalidPath(const CFGBlock *CB, const ParentMap &PM);
Tom Care505a5062010-08-12 23:01:06 +000049 static inline bool isEmptyCFGBlock(const CFGBlock *CB);
Tom Carec4b5bd82010-07-23 23:04:53 +000050};
51}
52
Argyrios Kyrtzidis30726c62011-02-23 07:19:23 +000053void UnreachableCodeChecker::checkEndAnalysis(ExplodedGraph &G,
Tom Carec4b5bd82010-07-23 23:04:53 +000054 BugReporter &B,
Argyrios Kyrtzidis30726c62011-02-23 07:19:23 +000055 ExprEngine &Eng) const {
56 CFGBlocksSet reachable, visited;
57
Tom Carebc42c532010-08-03 01:55:07 +000058 if (Eng.hasWorkRemaining())
Tom Carec4b5bd82010-07-23 23:04:53 +000059 return;
60
61 CFG *C = 0;
Tom Care7bce3a12010-07-27 23:30:21 +000062 ParentMap *PM = 0;
Tom Carec4b5bd82010-07-23 23:04:53 +000063 // Iterate over ExplodedGraph
Tom Care505a5062010-08-12 23:01:06 +000064 for (ExplodedGraph::node_iterator I = G.nodes_begin(), E = G.nodes_end();
65 I != E; ++I) {
Tom Carec4b5bd82010-07-23 23:04:53 +000066 const ProgramPoint &P = I->getLocation();
Tom Care7bce3a12010-07-27 23:30:21 +000067 const LocationContext *LC = P.getLocationContext();
Tom Carec4b5bd82010-07-23 23:04:53 +000068
69 // Save the CFG if we don't have it already
70 if (!C)
Tom Caref8906792010-08-03 21:24:13 +000071 C = LC->getAnalysisContext()->getUnoptimizedCFG();
Tom Care7bce3a12010-07-27 23:30:21 +000072 if (!PM)
73 PM = &LC->getParentMap();
Tom Carec4b5bd82010-07-23 23:04:53 +000074
75 if (const BlockEntrance *BE = dyn_cast<BlockEntrance>(&P)) {
76 const CFGBlock *CB = BE->getBlock();
Tom Caref8906792010-08-03 21:24:13 +000077 reachable.insert(CB->getBlockID());
Tom Carec4b5bd82010-07-23 23:04:53 +000078 }
79 }
80
Tom Care7bce3a12010-07-27 23:30:21 +000081 // Bail out if we didn't get the CFG or the ParentMap.
82 if (!C || !PM)
Tom Carec4b5bd82010-07-23 23:04:53 +000083 return;
84
Jordy Rose5e04bdd2010-07-27 03:39:53 +000085 ASTContext &Ctx = B.getContext();
86
Tom Carec4b5bd82010-07-23 23:04:53 +000087 // Find CFGBlocks that were not covered by any node
Tom Care4895b9c2010-10-06 23:02:25 +000088 for (CFG::const_iterator I = C->begin(), E = C->end(); I != E; ++I) {
Tom Carec4b5bd82010-07-23 23:04:53 +000089 const CFGBlock *CB = *I;
90 // Check if the block is unreachable
Tom Caref8906792010-08-03 21:24:13 +000091 if (reachable.count(CB->getBlockID()))
Tom Care7bce3a12010-07-27 23:30:21 +000092 continue;
Tom Carec4b5bd82010-07-23 23:04:53 +000093
Tom Care505a5062010-08-12 23:01:06 +000094 // Check if the block is empty (an artificial block)
95 if (isEmptyCFGBlock(CB))
96 continue;
97
Tom Care7bce3a12010-07-27 23:30:21 +000098 // Find the entry points for this block
Tom Care4895b9c2010-10-06 23:02:25 +000099 if (!visited.count(CB->getBlockID()))
Argyrios Kyrtzidis30726c62011-02-23 07:19:23 +0000100 FindUnreachableEntryPoints(CB, reachable, visited);
Jordy Rose5e04bdd2010-07-27 03:39:53 +0000101
Tom Care7bce3a12010-07-27 23:30:21 +0000102 // This block may have been pruned; check if we still want to report it
Tom Caref8906792010-08-03 21:24:13 +0000103 if (reachable.count(CB->getBlockID()))
Tom Care7bce3a12010-07-27 23:30:21 +0000104 continue;
105
106 // Check for false positives
107 if (CB->size() > 0 && isInvalidPath(CB, *PM))
108 continue;
109
Tom Care7bce3a12010-07-27 23:30:21 +0000110 // Special case for __builtin_unreachable.
111 // FIXME: This should be extended to include other unreachable markers,
112 // such as llvm_unreachable.
113 if (!CB->empty()) {
Zhongxing Xub36cd3e2010-09-16 01:25:47 +0000114 CFGElement First = CB->front();
Ted Kremenek3c0349e2011-03-01 03:15:10 +0000115 if (const CFGStmt *S = First.getAs<CFGStmt>()) {
116 if (const CallExpr *CE = dyn_cast<CallExpr>(S->getStmt())) {
Zhongxing Xub36cd3e2010-09-16 01:25:47 +0000117 if (CE->isBuiltinCall(Ctx) == Builtin::BI__builtin_unreachable)
118 continue;
119 }
Jordy Rose5e04bdd2010-07-27 03:39:53 +0000120 }
Tom Carec4b5bd82010-07-23 23:04:53 +0000121 }
Tom Care7bce3a12010-07-27 23:30:21 +0000122
Tom Caref8906792010-08-03 21:24:13 +0000123 // We found a block that wasn't covered - find the statement to report
124 SourceRange SR;
125 SourceLocation SL;
126 if (const Stmt *S = getUnreachableStmt(CB)) {
127 SR = S->getSourceRange();
128 SL = S->getLocStart();
129 if (SR.isInvalid() || SL.isInvalid())
130 continue;
131 }
132 else
133 continue;
134
135 // Check if the SourceLocation is in a system header
136 const SourceManager &SM = B.getSourceManager();
137 if (SM.isInSystemHeader(SL) || SM.isInExternCSystemHeader(SL))
138 continue;
139
140 B.EmitBasicReport("Unreachable code", "Dead code", "This statement is never"
141 " executed", SL, SR);
Tom Carec4b5bd82010-07-23 23:04:53 +0000142 }
143}
144
145// Recursively finds the entry point(s) for this dead CFGBlock.
Argyrios Kyrtzidis30726c62011-02-23 07:19:23 +0000146void UnreachableCodeChecker::FindUnreachableEntryPoints(const CFGBlock *CB,
147 CFGBlocksSet &reachable,
148 CFGBlocksSet &visited) {
Tom Caref8906792010-08-03 21:24:13 +0000149 visited.insert(CB->getBlockID());
Tom Carec4b5bd82010-07-23 23:04:53 +0000150
Tom Care4895b9c2010-10-06 23:02:25 +0000151 for (CFGBlock::const_pred_iterator I = CB->pred_begin(), E = CB->pred_end();
152 I != E; ++I) {
Tom Care06009182010-08-05 17:53:44 +0000153 if (!reachable.count((*I)->getBlockID())) {
Tom Care4895b9c2010-10-06 23:02:25 +0000154 // If we find an unreachable predecessor, mark this block as reachable so
155 // we don't report this block
156 reachable.insert(CB->getBlockID());
Tom Care06009182010-08-05 17:53:44 +0000157 if (!visited.count((*I)->getBlockID()))
Tom Care4895b9c2010-10-06 23:02:25 +0000158 // If we haven't previously visited the unreachable predecessor, recurse
Argyrios Kyrtzidis30726c62011-02-23 07:19:23 +0000159 FindUnreachableEntryPoints(*I, reachable, visited);
Tom Carec4b5bd82010-07-23 23:04:53 +0000160 }
161 }
Tom Carec4b5bd82010-07-23 23:04:53 +0000162}
163
Tom Caref8906792010-08-03 21:24:13 +0000164// Find the Stmt* in a CFGBlock for reporting a warning
165const Stmt *UnreachableCodeChecker::getUnreachableStmt(const CFGBlock *CB) {
Zhongxing Xub36cd3e2010-09-16 01:25:47 +0000166 for (CFGBlock::const_iterator I = CB->begin(), E = CB->end(); I != E; ++I) {
Ted Kremenek3c0349e2011-03-01 03:15:10 +0000167 if (const CFGStmt *S = I->getAs<CFGStmt>())
168 return S->getStmt();
Zhongxing Xub36cd3e2010-09-16 01:25:47 +0000169 }
170 if (const Stmt *S = CB->getTerminator())
Tom Caref8906792010-08-03 21:24:13 +0000171 return S;
Tom Carec4b5bd82010-07-23 23:04:53 +0000172 else
Tom Caref8906792010-08-03 21:24:13 +0000173 return 0;
Tom Carec4b5bd82010-07-23 23:04:53 +0000174}
Tom Care7bce3a12010-07-27 23:30:21 +0000175
Tom Caref8906792010-08-03 21:24:13 +0000176// Determines if the path to this CFGBlock contained an element that infers this
177// block is a false positive. We assume that FindUnreachableEntryPoints has
178// already marked only the entry points to any dead code, so we need only to
179// find the condition that led to this block (the predecessor of this block.)
180// There will never be more than one predecessor.
Tom Care7bce3a12010-07-27 23:30:21 +0000181bool UnreachableCodeChecker::isInvalidPath(const CFGBlock *CB,
182 const ParentMap &PM) {
Tom Careaaca0112010-08-27 22:37:31 +0000183 // We only expect a predecessor size of 0 or 1. If it is >1, then an external
184 // condition has broken our assumption (for example, a sink being placed by
185 // another check). In these cases, we choose not to report.
186 if (CB->pred_size() > 1)
187 return true;
Tom Care7bce3a12010-07-27 23:30:21 +0000188
Tom Caref8906792010-08-03 21:24:13 +0000189 // If there are no predecessors, then this block is trivially unreachable
190 if (CB->pred_size() == 0)
191 return false;
192
193 const CFGBlock *pred = *CB->pred_begin();
194
195 // Get the predecessor block's terminator conditon
196 const Stmt *cond = pred->getTerminatorCondition();
Tom Care505a5062010-08-12 23:01:06 +0000197
198 //assert(cond && "CFGBlock's predecessor has a terminator condition");
199 // The previous assertion is invalid in some cases (eg do/while). Leaving
200 // reporting of these situations on at the moment to help triage these cases.
201 if (!cond)
202 return false;
Tom Caref8906792010-08-03 21:24:13 +0000203
204 // Run each of the checks on the conditions
205 if (containsMacro(cond) || containsEnum(cond)
206 || containsStaticLocal(cond) || containsBuiltinOffsetOf(cond)
207 || containsStmt<SizeOfAlignOfExpr>(cond))
208 return true;
Tom Care7bce3a12010-07-27 23:30:21 +0000209
210 return false;
211}
Tom Care505a5062010-08-12 23:01:06 +0000212
213// Returns true if the given CFGBlock is empty
214bool UnreachableCodeChecker::isEmptyCFGBlock(const CFGBlock *CB) {
215 return CB->getLabel() == 0 // No labels
216 && CB->size() == 0 // No statements
217 && CB->getTerminator() == 0; // No terminator
218}
Argyrios Kyrtzidis30726c62011-02-23 07:19:23 +0000219
220void ento::registerUnreachableCodeChecker(CheckerManager &mgr) {
221 mgr.registerChecker<UnreachableCodeChecker>();
222}