blob: f2f791957aa320cafa03f318b95e8dbd4db72932 [file] [log] [blame]
Ted Kremeneka0a5ca12011-03-15 03:17:07 +00001//==- UninitializedValues.cpp - Find Uninitialized Values -------*- C++ --*-==//
Ted Kremenekb749a6d2011-01-15 02:58:47 +00002//
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 implements uninitialized values analysis for source-level CFGs.
11//
12//===----------------------------------------------------------------------===//
13
Richard Smith130b8d42012-07-13 23:33:44 +000014#include "clang/AST/ASTContext.h"
Benjamin Kramerea70eb32012-12-01 15:09:41 +000015#include "clang/AST/Attr.h"
Ted Kremenekb749a6d2011-01-15 02:58:47 +000016#include "clang/AST/Decl.h"
Manuel Klimek27ee25f2015-03-03 14:54:25 +000017#include "clang/AST/DeclCXX.h"
Jordan Rosea7f94ce2013-05-15 23:22:55 +000018#include "clang/AST/StmtVisitor.h"
Artyom Skrobov27720762014-09-23 08:34:41 +000019#include "clang/Analysis/Analyses/PostOrderCFGView.h"
Ted Kremeneka0a5ca12011-03-15 03:17:07 +000020#include "clang/Analysis/Analyses/UninitializedValues.h"
Benjamin Kramerea70eb32012-12-01 15:09:41 +000021#include "clang/Analysis/AnalysisContext.h"
22#include "clang/Analysis/CFG.h"
Ted Kremenekedf22ed2012-09-13 00:21:35 +000023#include "clang/Analysis/DomainSpecific/ObjCNoReturn.h"
Benjamin Kramerea70eb32012-12-01 15:09:41 +000024#include "llvm/ADT/DenseMap.h"
25#include "llvm/ADT/Optional.h"
26#include "llvm/ADT/PackedVector.h"
27#include "llvm/ADT/SmallBitVector.h"
28#include "llvm/ADT/SmallVector.h"
Argyrios Kyrtzidis981a9612012-03-01 19:45:56 +000029#include "llvm/Support/SaveAndRestore.h"
Benjamin Kramerea70eb32012-12-01 15:09:41 +000030#include <utility>
Ted Kremenekb749a6d2011-01-15 02:58:47 +000031
32using namespace clang;
33
Richard Smith130b8d42012-07-13 23:33:44 +000034#define DEBUG_LOGGING 0
35
Ted Kremenek93a31382011-01-27 02:29:34 +000036static bool isTrackedVar(const VarDecl *vd, const DeclContext *dc) {
Ted Kremenekc15a4e42011-03-17 03:06:11 +000037 if (vd->isLocalVarDecl() && !vd->hasGlobalStorage() &&
Richard Smithd88b44d2014-06-11 00:31:00 +000038 !vd->isExceptionVariable() && !vd->isInitCapture() &&
Richard Smithc38498f2015-04-27 21:27:54 +000039 !vd->isImplicit() && vd->getDeclContext() == dc) {
Ted Kremenekc15a4e42011-03-17 03:06:11 +000040 QualType ty = vd->getType();
Manuel Klimek27ee25f2015-03-03 14:54:25 +000041 return ty->isScalarType() || ty->isVectorType() || ty->isRecordType();
Ted Kremenekc15a4e42011-03-17 03:06:11 +000042 }
43 return false;
Ted Kremenekcab479f2011-01-18 04:53:25 +000044}
45
Ted Kremenekb749a6d2011-01-15 02:58:47 +000046//------------------------------------------------------------------------====//
Ted Kremeneka895fe92011-03-15 04:57:27 +000047// DeclToIndex: a mapping from Decls we track to value indices.
Ted Kremenekb749a6d2011-01-15 02:58:47 +000048//====------------------------------------------------------------------------//
49
50namespace {
Ted Kremeneka895fe92011-03-15 04:57:27 +000051class DeclToIndex {
Ted Kremenekb749a6d2011-01-15 02:58:47 +000052 llvm::DenseMap<const VarDecl *, unsigned> map;
53public:
Ted Kremeneka895fe92011-03-15 04:57:27 +000054 DeclToIndex() {}
Ted Kremenekb749a6d2011-01-15 02:58:47 +000055
56 /// Compute the actual mapping from declarations to bits.
57 void computeMap(const DeclContext &dc);
58
59 /// Return the number of declarations in the map.
60 unsigned size() const { return map.size(); }
61
62 /// Returns the bit vector index for a given declaration.
David Blaikie05785d12013-02-20 22:23:23 +000063 Optional<unsigned> getValueIndex(const VarDecl *d) const;
Ted Kremenekb749a6d2011-01-15 02:58:47 +000064};
Alexander Kornienkoab9db512015-06-22 23:07:51 +000065}
Ted Kremenekb749a6d2011-01-15 02:58:47 +000066
Ted Kremeneka895fe92011-03-15 04:57:27 +000067void DeclToIndex::computeMap(const DeclContext &dc) {
Ted Kremenekb749a6d2011-01-15 02:58:47 +000068 unsigned count = 0;
69 DeclContext::specific_decl_iterator<VarDecl> I(dc.decls_begin()),
70 E(dc.decls_end());
71 for ( ; I != E; ++I) {
David Blaikie40ed2972012-06-06 20:45:41 +000072 const VarDecl *vd = *I;
Ted Kremenek93a31382011-01-27 02:29:34 +000073 if (isTrackedVar(vd, &dc))
Ted Kremenekb749a6d2011-01-15 02:58:47 +000074 map[vd] = count++;
75 }
76}
77
David Blaikie05785d12013-02-20 22:23:23 +000078Optional<unsigned> DeclToIndex::getValueIndex(const VarDecl *d) const {
Ted Kremenek03325c42011-03-29 01:40:00 +000079 llvm::DenseMap<const VarDecl *, unsigned>::const_iterator I = map.find(d);
Ted Kremenekb749a6d2011-01-15 02:58:47 +000080 if (I == map.end())
David Blaikie7a30dc52013-02-21 01:47:18 +000081 return None;
Ted Kremenekb749a6d2011-01-15 02:58:47 +000082 return I->second;
83}
84
85//------------------------------------------------------------------------====//
86// CFGBlockValues: dataflow values for CFG blocks.
87//====------------------------------------------------------------------------//
88
Ted Kremenekc8c4e5f2011-03-15 04:57:38 +000089// These values are defined in such a way that a merge can be done using
90// a bitwise OR.
91enum Value { Unknown = 0x0, /* 00 */
92 Initialized = 0x1, /* 01 */
93 Uninitialized = 0x2, /* 10 */
94 MayUninitialized = 0x3 /* 11 */ };
95
96static bool isUninitialized(const Value v) {
97 return v >= Uninitialized;
98}
99static bool isAlwaysUninit(const Value v) {
100 return v == Uninitialized;
101}
Ted Kremenekd3def382011-03-15 04:57:29 +0000102
Benjamin Kramer8aef5962011-03-26 12:38:21 +0000103namespace {
Ted Kremenek9b15c962011-03-15 04:57:32 +0000104
Benjamin Kramer5721daa2012-09-28 16:44:29 +0000105typedef llvm::PackedVector<Value, 2, llvm::SmallBitVector> ValueVector;
Ted Kremenekb82ddd62011-01-20 17:37:17 +0000106
Ted Kremenekb749a6d2011-01-15 02:58:47 +0000107class CFGBlockValues {
108 const CFG &cfg;
Benjamin Kramer5721daa2012-09-28 16:44:29 +0000109 SmallVector<ValueVector, 8> vals;
Ted Kremeneka895fe92011-03-15 04:57:27 +0000110 ValueVector scratch;
Ted Kremeneke3ae0a42011-03-15 05:30:12 +0000111 DeclToIndex declToIndex;
Ted Kremenekb749a6d2011-01-15 02:58:47 +0000112public:
113 CFGBlockValues(const CFG &cfg);
Ted Kremenek6080d322012-07-19 04:59:05 +0000114
Ted Kremenek37881932011-04-04 23:29:12 +0000115 unsigned getNumEntries() const { return declToIndex.size(); }
116
Ted Kremenekb749a6d2011-01-15 02:58:47 +0000117 void computeSetOfDeclarations(const DeclContext &dc);
Ted Kremenek6080d322012-07-19 04:59:05 +0000118 ValueVector &getValueVector(const CFGBlock *block) {
Benjamin Kramer5721daa2012-09-28 16:44:29 +0000119 return vals[block->getBlockID()];
Ted Kremenek6080d322012-07-19 04:59:05 +0000120 }
Ted Kremenekb82ddd62011-01-20 17:37:17 +0000121
Richard Smithb721e302012-07-02 23:23:04 +0000122 void setAllScratchValues(Value V);
Ted Kremeneka895fe92011-03-15 04:57:27 +0000123 void mergeIntoScratch(ValueVector const &source, bool isFirst);
124 bool updateValueVectorWithScratch(const CFGBlock *block);
Ted Kremenekb749a6d2011-01-15 02:58:47 +0000125
126 bool hasNoDeclarations() const {
Ted Kremeneke3ae0a42011-03-15 05:30:12 +0000127 return declToIndex.size() == 0;
Ted Kremenekb749a6d2011-01-15 02:58:47 +0000128 }
Ted Kremenek417d5662011-08-20 01:15:28 +0000129
Ted Kremenekb749a6d2011-01-15 02:58:47 +0000130 void resetScratch();
Ted Kremenekb82ddd62011-01-20 17:37:17 +0000131
Ted Kremeneka895fe92011-03-15 04:57:27 +0000132 ValueVector::reference operator[](const VarDecl *vd);
Richard Smith4323bf82012-05-25 02:17:09 +0000133
134 Value getValue(const CFGBlock *block, const CFGBlock *dstBlock,
135 const VarDecl *vd) {
David Blaikie05785d12013-02-20 22:23:23 +0000136 const Optional<unsigned> &idx = declToIndex.getValueIndex(vd);
Richard Smith4323bf82012-05-25 02:17:09 +0000137 assert(idx.hasValue());
Ted Kremenek6080d322012-07-19 04:59:05 +0000138 return getValueVector(block)[idx.getValue()];
Richard Smith4323bf82012-05-25 02:17:09 +0000139 }
Ted Kremenekb749a6d2011-01-15 02:58:47 +0000140};
Benjamin Kramer8aef5962011-03-26 12:38:21 +0000141} // end anonymous namespace
Ted Kremenekb749a6d2011-01-15 02:58:47 +0000142
Ted Kremenek6080d322012-07-19 04:59:05 +0000143CFGBlockValues::CFGBlockValues(const CFG &c) : cfg(c), vals(0) {}
Ted Kremenekb749a6d2011-01-15 02:58:47 +0000144
Ted Kremenekb749a6d2011-01-15 02:58:47 +0000145void CFGBlockValues::computeSetOfDeclarations(const DeclContext &dc) {
Ted Kremeneke3ae0a42011-03-15 05:30:12 +0000146 declToIndex.computeMap(dc);
Ted Kremenek6080d322012-07-19 04:59:05 +0000147 unsigned decls = declToIndex.size();
148 scratch.resize(decls);
149 unsigned n = cfg.getNumBlockIDs();
150 if (!n)
151 return;
152 vals.resize(n);
153 for (unsigned i = 0; i < n; ++i)
Benjamin Kramer5721daa2012-09-28 16:44:29 +0000154 vals[i].resize(decls);
Ted Kremenekb82ddd62011-01-20 17:37:17 +0000155}
156
Richard Smith130b8d42012-07-13 23:33:44 +0000157#if DEBUG_LOGGING
Ted Kremeneka895fe92011-03-15 04:57:27 +0000158static void printVector(const CFGBlock *block, ValueVector &bv,
Ted Kremenekba357292011-02-01 17:43:18 +0000159 unsigned num) {
Ted Kremenekba357292011-02-01 17:43:18 +0000160 llvm::errs() << block->getBlockID() << " :";
161 for (unsigned i = 0; i < bv.size(); ++i) {
162 llvm::errs() << ' ' << bv[i];
163 }
164 llvm::errs() << " : " << num << '\n';
165}
166#endif
Ted Kremenekb749a6d2011-01-15 02:58:47 +0000167
Richard Smithb721e302012-07-02 23:23:04 +0000168void CFGBlockValues::setAllScratchValues(Value V) {
169 for (unsigned I = 0, E = scratch.size(); I != E; ++I)
170 scratch[I] = V;
171}
172
Ted Kremenekf8fd4d42011-10-07 00:42:48 +0000173void CFGBlockValues::mergeIntoScratch(ValueVector const &source,
174 bool isFirst) {
175 if (isFirst)
176 scratch = source;
177 else
178 scratch |= source;
179}
180
Ted Kremeneka895fe92011-03-15 04:57:27 +0000181bool CFGBlockValues::updateValueVectorWithScratch(const CFGBlock *block) {
Ted Kremenek6080d322012-07-19 04:59:05 +0000182 ValueVector &dst = getValueVector(block);
Ted Kremenekb749a6d2011-01-15 02:58:47 +0000183 bool changed = (dst != scratch);
184 if (changed)
185 dst = scratch;
Richard Smith130b8d42012-07-13 23:33:44 +0000186#if DEBUG_LOGGING
Ted Kremenekba357292011-02-01 17:43:18 +0000187 printVector(block, scratch, 0);
188#endif
Ted Kremenekb82ddd62011-01-20 17:37:17 +0000189 return changed;
190}
191
Ted Kremenekb749a6d2011-01-15 02:58:47 +0000192void CFGBlockValues::resetScratch() {
193 scratch.reset();
194}
195
Ted Kremeneka895fe92011-03-15 04:57:27 +0000196ValueVector::reference CFGBlockValues::operator[](const VarDecl *vd) {
David Blaikie05785d12013-02-20 22:23:23 +0000197 const Optional<unsigned> &idx = declToIndex.getValueIndex(vd);
Ted Kremenekb749a6d2011-01-15 02:58:47 +0000198 assert(idx.hasValue());
199 return scratch[idx.getValue()];
200}
201
202//------------------------------------------------------------------------====//
Artyom Skrobov27720762014-09-23 08:34:41 +0000203// Worklist: worklist for dataflow analysis.
204//====------------------------------------------------------------------------//
205
206namespace {
207class DataflowWorklist {
208 PostOrderCFGView::iterator PO_I, PO_E;
209 SmallVector<const CFGBlock *, 20> worklist;
210 llvm::BitVector enqueuedBlocks;
211public:
212 DataflowWorklist(const CFG &cfg, PostOrderCFGView &view)
213 : PO_I(view.begin()), PO_E(view.end()),
214 enqueuedBlocks(cfg.getNumBlockIDs(), true) {
215 // Treat the first block as already analyzed.
216 if (PO_I != PO_E) {
217 assert(*PO_I == &cfg.getEntry());
218 enqueuedBlocks[(*PO_I)->getBlockID()] = false;
219 ++PO_I;
220 }
221 }
222
223 void enqueueSuccessors(const CFGBlock *block);
224 const CFGBlock *dequeue();
225};
Alexander Kornienkoab9db512015-06-22 23:07:51 +0000226}
Artyom Skrobov27720762014-09-23 08:34:41 +0000227
228void DataflowWorklist::enqueueSuccessors(const clang::CFGBlock *block) {
229 for (CFGBlock::const_succ_iterator I = block->succ_begin(),
230 E = block->succ_end(); I != E; ++I) {
231 const CFGBlock *Successor = *I;
232 if (!Successor || enqueuedBlocks[Successor->getBlockID()])
233 continue;
234 worklist.push_back(Successor);
235 enqueuedBlocks[Successor->getBlockID()] = true;
236 }
237}
238
239const CFGBlock *DataflowWorklist::dequeue() {
240 const CFGBlock *B = nullptr;
241
242 // First dequeue from the worklist. This can represent
243 // updates along backedges that we want propagated as quickly as possible.
244 if (!worklist.empty())
245 B = worklist.pop_back_val();
246
247 // Next dequeue from the initial reverse post order. This is the
248 // theoretical ideal in the presence of no back edges.
249 else if (PO_I != PO_E) {
250 B = *PO_I;
251 ++PO_I;
252 }
253 else {
254 return nullptr;
255 }
256
257 assert(enqueuedBlocks[B->getBlockID()] == true);
258 enqueuedBlocks[B->getBlockID()] = false;
259 return B;
260}
261
262//------------------------------------------------------------------------====//
Richard Smith6376d1f2012-07-17 00:06:14 +0000263// Classification of DeclRefExprs as use or initialization.
Ted Kremenekb749a6d2011-01-15 02:58:47 +0000264//====------------------------------------------------------------------------//
265
Ted Kremenekb749a6d2011-01-15 02:58:47 +0000266namespace {
267class FindVarResult {
268 const VarDecl *vd;
269 const DeclRefExpr *dr;
270public:
Richard Smith6376d1f2012-07-17 00:06:14 +0000271 FindVarResult(const VarDecl *vd, const DeclRefExpr *dr) : vd(vd), dr(dr) {}
272
Ted Kremenekb749a6d2011-01-15 02:58:47 +0000273 const DeclRefExpr *getDeclRefExpr() const { return dr; }
274 const VarDecl *getDecl() const { return vd; }
275};
Richard Smith6376d1f2012-07-17 00:06:14 +0000276
277static const Expr *stripCasts(ASTContext &C, const Expr *Ex) {
278 while (Ex) {
279 Ex = Ex->IgnoreParenNoopCasts(C);
280 if (const CastExpr *CE = dyn_cast<CastExpr>(Ex)) {
281 if (CE->getCastKind() == CK_LValueBitCast) {
282 Ex = CE->getSubExpr();
283 continue;
284 }
285 }
286 break;
287 }
288 return Ex;
289}
290
291/// If E is an expression comprising a reference to a single variable, find that
292/// variable.
293static FindVarResult findVar(const Expr *E, const DeclContext *DC) {
294 if (const DeclRefExpr *DRE =
295 dyn_cast<DeclRefExpr>(stripCasts(DC->getParentASTContext(), E)))
296 if (const VarDecl *VD = dyn_cast<VarDecl>(DRE->getDecl()))
297 if (isTrackedVar(VD, DC))
298 return FindVarResult(VD, DRE);
Craig Topper25542942014-05-20 04:30:07 +0000299 return FindVarResult(nullptr, nullptr);
Richard Smith6376d1f2012-07-17 00:06:14 +0000300}
301
302/// \brief Classify each DeclRefExpr as an initialization or a use. Any
303/// DeclRefExpr which isn't explicitly classified will be assumed to have
304/// escaped the analysis and will be treated as an initialization.
305class ClassifyRefs : public StmtVisitor<ClassifyRefs> {
306public:
307 enum Class {
308 Init,
309 Use,
310 SelfInit,
311 Ignore
312 };
313
314private:
315 const DeclContext *DC;
316 llvm::DenseMap<const DeclRefExpr*, Class> Classification;
317
318 bool isTrackedVar(const VarDecl *VD) const {
319 return ::isTrackedVar(VD, DC);
320 }
321
322 void classify(const Expr *E, Class C);
323
324public:
325 ClassifyRefs(AnalysisDeclContext &AC) : DC(cast<DeclContext>(AC.getDecl())) {}
326
327 void VisitDeclStmt(DeclStmt *DS);
328 void VisitUnaryOperator(UnaryOperator *UO);
329 void VisitBinaryOperator(BinaryOperator *BO);
330 void VisitCallExpr(CallExpr *CE);
331 void VisitCastExpr(CastExpr *CE);
332
333 void operator()(Stmt *S) { Visit(S); }
334
335 Class get(const DeclRefExpr *DRE) const {
336 llvm::DenseMap<const DeclRefExpr*, Class>::const_iterator I
337 = Classification.find(DRE);
338 if (I != Classification.end())
339 return I->second;
340
341 const VarDecl *VD = dyn_cast<VarDecl>(DRE->getDecl());
342 if (!VD || !isTrackedVar(VD))
343 return Ignore;
344
345 return Init;
346 }
347};
Alexander Kornienkoab9db512015-06-22 23:07:51 +0000348}
Richard Smith6376d1f2012-07-17 00:06:14 +0000349
350static const DeclRefExpr *getSelfInitExpr(VarDecl *VD) {
Manuel Klimek27ee25f2015-03-03 14:54:25 +0000351 if (VD->getType()->isRecordType()) return nullptr;
Richard Smith6376d1f2012-07-17 00:06:14 +0000352 if (Expr *Init = VD->getInit()) {
353 const DeclRefExpr *DRE
354 = dyn_cast<DeclRefExpr>(stripCasts(VD->getASTContext(), Init));
355 if (DRE && DRE->getDecl() == VD)
356 return DRE;
357 }
Craig Topper25542942014-05-20 04:30:07 +0000358 return nullptr;
Richard Smith6376d1f2012-07-17 00:06:14 +0000359}
360
361void ClassifyRefs::classify(const Expr *E, Class C) {
Ted Kremenek7ba78c62013-01-19 00:25:06 +0000362 // The result of a ?: could also be an lvalue.
363 E = E->IgnoreParens();
364 if (const ConditionalOperator *CO = dyn_cast<ConditionalOperator>(E)) {
Richard Trieuabf6ec42014-08-27 22:15:10 +0000365 classify(CO->getTrueExpr(), C);
Ted Kremenek7ba78c62013-01-19 00:25:06 +0000366 classify(CO->getFalseExpr(), C);
367 return;
368 }
369
Richard Trieuabf6ec42014-08-27 22:15:10 +0000370 if (const BinaryConditionalOperator *BCO =
371 dyn_cast<BinaryConditionalOperator>(E)) {
372 classify(BCO->getFalseExpr(), C);
373 return;
374 }
375
376 if (const OpaqueValueExpr *OVE = dyn_cast<OpaqueValueExpr>(E)) {
377 classify(OVE->getSourceExpr(), C);
378 return;
379 }
380
Manuel Klimek27ee25f2015-03-03 14:54:25 +0000381 if (const MemberExpr *ME = dyn_cast<MemberExpr>(E)) {
382 if (VarDecl *VD = dyn_cast<VarDecl>(ME->getMemberDecl())) {
383 if (!VD->isStaticDataMember())
384 classify(ME->getBase(), C);
385 }
Richard Trieuabf6ec42014-08-27 22:15:10 +0000386 return;
387 }
388
Manuel Klimek27ee25f2015-03-03 14:54:25 +0000389 if (const BinaryOperator *BO = dyn_cast<BinaryOperator>(E)) {
390 switch (BO->getOpcode()) {
391 case BO_PtrMemD:
392 case BO_PtrMemI:
393 classify(BO->getLHS(), C);
394 return;
395 case BO_Comma:
396 classify(BO->getRHS(), C);
397 return;
398 default:
399 return;
400 }
401 }
402
Richard Smith6376d1f2012-07-17 00:06:14 +0000403 FindVarResult Var = findVar(E, DC);
404 if (const DeclRefExpr *DRE = Var.getDeclRefExpr())
405 Classification[DRE] = std::max(Classification[DRE], C);
406}
407
408void ClassifyRefs::VisitDeclStmt(DeclStmt *DS) {
Aaron Ballman535bbcc2014-03-14 17:01:24 +0000409 for (auto *DI : DS->decls()) {
410 VarDecl *VD = dyn_cast<VarDecl>(DI);
Richard Smith6376d1f2012-07-17 00:06:14 +0000411 if (VD && isTrackedVar(VD))
412 if (const DeclRefExpr *DRE = getSelfInitExpr(VD))
413 Classification[DRE] = SelfInit;
414 }
415}
416
417void ClassifyRefs::VisitBinaryOperator(BinaryOperator *BO) {
418 // Ignore the evaluation of a DeclRefExpr on the LHS of an assignment. If this
419 // is not a compound-assignment, we will treat it as initializing the variable
420 // when TransferFunctions visits it. A compound-assignment does not affect
421 // whether a variable is uninitialized, and there's no point counting it as a
422 // use.
Richard Smithb21dd022012-07-17 01:27:33 +0000423 if (BO->isCompoundAssignmentOp())
424 classify(BO->getLHS(), Use);
Manuel Klimek27ee25f2015-03-03 14:54:25 +0000425 else if (BO->getOpcode() == BO_Assign || BO->getOpcode() == BO_Comma)
Richard Smith6376d1f2012-07-17 00:06:14 +0000426 classify(BO->getLHS(), Ignore);
427}
428
429void ClassifyRefs::VisitUnaryOperator(UnaryOperator *UO) {
430 // Increment and decrement are uses despite there being no lvalue-to-rvalue
431 // conversion.
432 if (UO->isIncrementDecrementOp())
433 classify(UO->getSubExpr(), Use);
434}
435
Manuel Klimek27ee25f2015-03-03 14:54:25 +0000436static bool isPointerToConst(const QualType &QT) {
437 return QT->isAnyPointerType() && QT->getPointeeType().isConstQualified();
438}
439
Richard Smith6376d1f2012-07-17 00:06:14 +0000440void ClassifyRefs::VisitCallExpr(CallExpr *CE) {
Richard Trieu11fd0792014-08-26 04:30:55 +0000441 // Classify arguments to std::move as used.
442 if (CE->getNumArgs() == 1) {
443 if (FunctionDecl *FD = CE->getDirectCallee()) {
Richard Trieuc321b932014-11-27 01:29:32 +0000444 if (FD->isInStdNamespace() && FD->getIdentifier() &&
445 FD->getIdentifier()->isStr("move")) {
Manuel Klimek27ee25f2015-03-03 14:54:25 +0000446 // RecordTypes are handled in SemaDeclCXX.cpp.
447 if (!CE->getArg(0)->getType()->isRecordType())
448 classify(CE->getArg(0), Use);
Richard Trieu11fd0792014-08-26 04:30:55 +0000449 return;
450 }
451 }
452 }
453
Manuel Klimek27ee25f2015-03-03 14:54:25 +0000454 // If a value is passed by const pointer or by const reference to a function,
455 // we should not assume that it is initialized by the call, and we
456 // conservatively do not assume that it is used.
Richard Smith6376d1f2012-07-17 00:06:14 +0000457 for (CallExpr::arg_iterator I = CE->arg_begin(), E = CE->arg_end();
Manuel Klimek27ee25f2015-03-03 14:54:25 +0000458 I != E; ++I) {
459 if ((*I)->isGLValue()) {
460 if ((*I)->getType().isConstQualified())
461 classify((*I), Ignore);
462 } else if (isPointerToConst((*I)->getType())) {
463 const Expr *Ex = stripCasts(DC->getParentASTContext(), *I);
464 const UnaryOperator *UO = dyn_cast<UnaryOperator>(Ex);
465 if (UO && UO->getOpcode() == UO_AddrOf)
466 Ex = UO->getSubExpr();
467 classify(Ex, Ignore);
468 }
469 }
Richard Smith6376d1f2012-07-17 00:06:14 +0000470}
471
472void ClassifyRefs::VisitCastExpr(CastExpr *CE) {
473 if (CE->getCastKind() == CK_LValueToRValue)
474 classify(CE->getSubExpr(), Use);
475 else if (CStyleCastExpr *CSE = dyn_cast<CStyleCastExpr>(CE)) {
476 if (CSE->getType()->isVoidType()) {
477 // Squelch any detected load of an uninitialized value if
478 // we cast it to void.
479 // e.g. (void) x;
480 classify(CSE->getSubExpr(), Ignore);
481 }
482 }
483}
484
485//------------------------------------------------------------------------====//
486// Transfer function for uninitialized values analysis.
487//====------------------------------------------------------------------------//
488
489namespace {
Ted Kremenek9e100ea2011-07-19 14:18:48 +0000490class TransferFunctions : public StmtVisitor<TransferFunctions> {
Ted Kremenekb749a6d2011-01-15 02:58:47 +0000491 CFGBlockValues &vals;
492 const CFG &cfg;
Richard Smith4323bf82012-05-25 02:17:09 +0000493 const CFGBlock *block;
Ted Kremenek81ce1c82011-10-24 01:32:45 +0000494 AnalysisDeclContext &ac;
Richard Smith6376d1f2012-07-17 00:06:14 +0000495 const ClassifyRefs &classification;
Ted Kremenekedf22ed2012-09-13 00:21:35 +0000496 ObjCNoReturn objCNoRet;
Ted Kremenek778a6ed2012-11-17 07:18:30 +0000497 UninitVariablesHandler &handler;
Richard Smith6376d1f2012-07-17 00:06:14 +0000498
Ted Kremenekb749a6d2011-01-15 02:58:47 +0000499public:
500 TransferFunctions(CFGBlockValues &vals, const CFG &cfg,
Richard Smith4323bf82012-05-25 02:17:09 +0000501 const CFGBlock *block, AnalysisDeclContext &ac,
Richard Smith6376d1f2012-07-17 00:06:14 +0000502 const ClassifyRefs &classification,
Ted Kremenek778a6ed2012-11-17 07:18:30 +0000503 UninitVariablesHandler &handler)
Richard Smith6376d1f2012-07-17 00:06:14 +0000504 : vals(vals), cfg(cfg), block(block), ac(ac),
Ted Kremenekedf22ed2012-09-13 00:21:35 +0000505 classification(classification), objCNoRet(ac.getASTContext()),
506 handler(handler) {}
Richard Smith6376d1f2012-07-17 00:06:14 +0000507
Richard Smith3d31e8b2012-05-24 23:45:35 +0000508 void reportUse(const Expr *ex, const VarDecl *vd);
Ted Kremenekbcf848f2011-01-25 19:13:48 +0000509
Ted Kremenekedf22ed2012-09-13 00:21:35 +0000510 void VisitBinaryOperator(BinaryOperator *bo);
Ted Kremenekbcf848f2011-01-25 19:13:48 +0000511 void VisitBlockExpr(BlockExpr *be);
Richard Smithb721e302012-07-02 23:23:04 +0000512 void VisitCallExpr(CallExpr *ce);
Ted Kremenekb63931e2011-01-18 21:18:58 +0000513 void VisitDeclRefExpr(DeclRefExpr *dr);
Ted Kremenekedf22ed2012-09-13 00:21:35 +0000514 void VisitDeclStmt(DeclStmt *ds);
515 void VisitObjCForCollectionStmt(ObjCForCollectionStmt *FS);
516 void VisitObjCMessageExpr(ObjCMessageExpr *ME);
Richard Smith4323bf82012-05-25 02:17:09 +0000517
Ted Kremenek93a31382011-01-27 02:29:34 +0000518 bool isTrackedVar(const VarDecl *vd) {
519 return ::isTrackedVar(vd, cast<DeclContext>(ac.getDecl()));
520 }
Richard Smith4323bf82012-05-25 02:17:09 +0000521
Richard Smith6376d1f2012-07-17 00:06:14 +0000522 FindVarResult findVar(const Expr *ex) {
523 return ::findVar(ex, cast<DeclContext>(ac.getDecl()));
524 }
525
Richard Smith4323bf82012-05-25 02:17:09 +0000526 UninitUse getUninitUse(const Expr *ex, const VarDecl *vd, Value v) {
527 UninitUse Use(ex, isAlwaysUninit(v));
528
529 assert(isUninitialized(v));
530 if (Use.getKind() == UninitUse::Always)
531 return Use;
532
533 // If an edge which leads unconditionally to this use did not initialize
534 // the variable, we can say something stronger than 'may be uninitialized':
535 // we can say 'either it's used uninitialized or you have dead code'.
536 //
537 // We track the number of successors of a node which have been visited, and
538 // visit a node once we have visited all of its successors. Only edges where
539 // the variable might still be uninitialized are followed. Since a variable
540 // can't transfer from being initialized to being uninitialized, this will
541 // trace out the subgraph which inevitably leads to the use and does not
542 // initialize the variable. We do not want to skip past loops, since their
543 // non-termination might be correlated with the initialization condition.
544 //
545 // For example:
546 //
547 // void f(bool a, bool b) {
548 // block1: int n;
549 // if (a) {
550 // block2: if (b)
551 // block3: n = 1;
552 // block4: } else if (b) {
553 // block5: while (!a) {
554 // block6: do_work(&a);
555 // n = 2;
556 // }
557 // }
558 // block7: if (a)
559 // block8: g();
560 // block9: return n;
561 // }
562 //
563 // Starting from the maybe-uninitialized use in block 9:
564 // * Block 7 is not visited because we have only visited one of its two
565 // successors.
566 // * Block 8 is visited because we've visited its only successor.
567 // From block 8:
568 // * Block 7 is visited because we've now visited both of its successors.
569 // From block 7:
570 // * Blocks 1, 2, 4, 5, and 6 are not visited because we didn't visit all
571 // of their successors (we didn't visit 4, 3, 5, 6, and 5, respectively).
572 // * Block 3 is not visited because it initializes 'n'.
573 // Now the algorithm terminates, having visited blocks 7 and 8, and having
574 // found the frontier is blocks 2, 4, and 5.
575 //
576 // 'n' is definitely uninitialized for two edges into block 7 (from blocks 2
577 // and 4), so we report that any time either of those edges is taken (in
578 // each case when 'b == false'), 'n' is used uninitialized.
Dmitri Gribenkof8579502013-01-12 19:30:44 +0000579 SmallVector<const CFGBlock*, 32> Queue;
580 SmallVector<unsigned, 32> SuccsVisited(cfg.getNumBlockIDs(), 0);
Richard Smith4323bf82012-05-25 02:17:09 +0000581 Queue.push_back(block);
582 // Specify that we've already visited all successors of the starting block.
583 // This has the dual purpose of ensuring we never add it to the queue, and
584 // of marking it as not being a candidate element of the frontier.
585 SuccsVisited[block->getBlockID()] = block->succ_size();
586 while (!Queue.empty()) {
Robert Wilhelm25284cc2013-08-23 16:11:15 +0000587 const CFGBlock *B = Queue.pop_back_val();
Richard Smithba8071e2013-09-12 18:49:10 +0000588
589 // If the use is always reached from the entry block, make a note of that.
590 if (B == &cfg.getEntry())
591 Use.setUninitAfterCall();
592
Richard Smith4323bf82012-05-25 02:17:09 +0000593 for (CFGBlock::const_pred_iterator I = B->pred_begin(), E = B->pred_end();
594 I != E; ++I) {
595 const CFGBlock *Pred = *I;
Ted Kremenek4b6fee62014-02-27 00:24:00 +0000596 if (!Pred)
597 continue;
598
Richard Smithba8071e2013-09-12 18:49:10 +0000599 Value AtPredExit = vals.getValue(Pred, B, vd);
600 if (AtPredExit == Initialized)
Richard Smith4323bf82012-05-25 02:17:09 +0000601 // This block initializes the variable.
602 continue;
Richard Smithba8071e2013-09-12 18:49:10 +0000603 if (AtPredExit == MayUninitialized &&
Craig Topper25542942014-05-20 04:30:07 +0000604 vals.getValue(B, nullptr, vd) == Uninitialized) {
Richard Smithba8071e2013-09-12 18:49:10 +0000605 // This block declares the variable (uninitialized), and is reachable
606 // from a block that initializes the variable. We can't guarantee to
607 // give an earlier location for the diagnostic (and it appears that
608 // this code is intended to be reachable) so give a diagnostic here
609 // and go no further down this path.
610 Use.setUninitAfterDecl();
611 continue;
612 }
Richard Smith4323bf82012-05-25 02:17:09 +0000613
Richard Smith130b8d42012-07-13 23:33:44 +0000614 unsigned &SV = SuccsVisited[Pred->getBlockID()];
615 if (!SV) {
616 // When visiting the first successor of a block, mark all NULL
617 // successors as having been visited.
618 for (CFGBlock::const_succ_iterator SI = Pred->succ_begin(),
619 SE = Pred->succ_end();
620 SI != SE; ++SI)
621 if (!*SI)
622 ++SV;
623 }
624
625 if (++SV == Pred->succ_size())
Richard Smith4323bf82012-05-25 02:17:09 +0000626 // All paths from this block lead to the use and don't initialize the
627 // variable.
628 Queue.push_back(Pred);
629 }
630 }
631
632 // Scan the frontier, looking for blocks where the variable was
633 // uninitialized.
634 for (CFG::const_iterator BI = cfg.begin(), BE = cfg.end(); BI != BE; ++BI) {
635 const CFGBlock *Block = *BI;
636 unsigned BlockID = Block->getBlockID();
637 const Stmt *Term = Block->getTerminator();
638 if (SuccsVisited[BlockID] && SuccsVisited[BlockID] < Block->succ_size() &&
639 Term) {
640 // This block inevitably leads to the use. If we have an edge from here
641 // to a post-dominator block, and the variable is uninitialized on that
642 // edge, we have found a bug.
643 for (CFGBlock::const_succ_iterator I = Block->succ_begin(),
644 E = Block->succ_end(); I != E; ++I) {
645 const CFGBlock *Succ = *I;
646 if (Succ && SuccsVisited[Succ->getBlockID()] >= Succ->succ_size() &&
647 vals.getValue(Block, Succ, vd) == Uninitialized) {
648 // Switch cases are a special case: report the label to the caller
649 // as the 'terminator', not the switch statement itself. Suppress
650 // situations where no label matched: we can't be sure that's
651 // possible.
652 if (isa<SwitchStmt>(Term)) {
653 const Stmt *Label = Succ->getLabel();
654 if (!Label || !isa<SwitchCase>(Label))
655 // Might not be possible.
656 continue;
657 UninitUse::Branch Branch;
658 Branch.Terminator = Label;
659 Branch.Output = 0; // Ignored.
660 Use.addUninitBranch(Branch);
661 } else {
662 UninitUse::Branch Branch;
663 Branch.Terminator = Term;
664 Branch.Output = I - Block->succ_begin();
665 Use.addUninitBranch(Branch);
666 }
667 }
668 }
669 }
670 }
671
672 return Use;
673 }
Ted Kremenekb749a6d2011-01-15 02:58:47 +0000674};
Alexander Kornienkoab9db512015-06-22 23:07:51 +0000675}
Ted Kremenekb749a6d2011-01-15 02:58:47 +0000676
Richard Smith3d31e8b2012-05-24 23:45:35 +0000677void TransferFunctions::reportUse(const Expr *ex, const VarDecl *vd) {
Richard Smith3d31e8b2012-05-24 23:45:35 +0000678 Value v = vals[vd];
679 if (isUninitialized(v))
Ted Kremenek778a6ed2012-11-17 07:18:30 +0000680 handler.handleUseOfUninitVariable(vd, getUninitUse(ex, vd, v));
Ted Kremenekb749a6d2011-01-15 02:58:47 +0000681}
682
Richard Smith6376d1f2012-07-17 00:06:14 +0000683void TransferFunctions::VisitObjCForCollectionStmt(ObjCForCollectionStmt *FS) {
Ted Kremenek4058d872011-01-27 02:01:31 +0000684 // This represents an initialization of the 'element' value.
Richard Smith6376d1f2012-07-17 00:06:14 +0000685 if (DeclStmt *DS = dyn_cast<DeclStmt>(FS->getElement())) {
686 const VarDecl *VD = cast<VarDecl>(DS->getSingleDecl());
687 if (isTrackedVar(VD))
688 vals[VD] = Initialized;
Ted Kremenek4058d872011-01-27 02:01:31 +0000689 }
Ted Kremenek4058d872011-01-27 02:01:31 +0000690}
691
Ted Kremenekbcf848f2011-01-25 19:13:48 +0000692void TransferFunctions::VisitBlockExpr(BlockExpr *be) {
Ted Kremenek77361762011-03-31 22:32:41 +0000693 const BlockDecl *bd = be->getBlockDecl();
Aaron Ballman9371dd22014-03-14 18:34:04 +0000694 for (const auto &I : bd->captures()) {
695 const VarDecl *vd = I.getVariable();
Ted Kremenek77361762011-03-31 22:32:41 +0000696 if (!isTrackedVar(vd))
697 continue;
Aaron Ballman9371dd22014-03-14 18:34:04 +0000698 if (I.isByRef()) {
Ted Kremenek77361762011-03-31 22:32:41 +0000699 vals[vd] = Initialized;
700 continue;
701 }
Richard Smith3d31e8b2012-05-24 23:45:35 +0000702 reportUse(be, vd);
Ted Kremenekbcf848f2011-01-25 19:13:48 +0000703 }
704}
705
Richard Smithb721e302012-07-02 23:23:04 +0000706void TransferFunctions::VisitCallExpr(CallExpr *ce) {
Ted Kremenek7979ccf2012-09-12 05:53:43 +0000707 if (Decl *Callee = ce->getCalleeDecl()) {
708 if (Callee->hasAttr<ReturnsTwiceAttr>()) {
709 // After a call to a function like setjmp or vfork, any variable which is
710 // initialized anywhere within this function may now be initialized. For
711 // now, just assume such a call initializes all variables. FIXME: Only
712 // mark variables as initialized if they have an initializer which is
713 // reachable from here.
714 vals.setAllScratchValues(Initialized);
715 }
716 else if (Callee->hasAttr<AnalyzerNoReturnAttr>()) {
717 // Functions labeled like "analyzer_noreturn" are often used to denote
718 // "panic" functions that in special debug situations can still return,
719 // but for the most part should not be treated as returning. This is a
720 // useful annotation borrowed from the static analyzer that is useful for
721 // suppressing branch-specific false positives when we call one of these
722 // functions but keep pretending the path continues (when in reality the
723 // user doesn't care).
724 vals.setAllScratchValues(Unknown);
725 }
726 }
Richard Smithb721e302012-07-02 23:23:04 +0000727}
728
Ted Kremenek9e100ea2011-07-19 14:18:48 +0000729void TransferFunctions::VisitDeclRefExpr(DeclRefExpr *dr) {
Richard Smith6376d1f2012-07-17 00:06:14 +0000730 switch (classification.get(dr)) {
731 case ClassifyRefs::Ignore:
732 break;
733 case ClassifyRefs::Use:
734 reportUse(dr, cast<VarDecl>(dr->getDecl()));
735 break;
736 case ClassifyRefs::Init:
737 vals[cast<VarDecl>(dr->getDecl())] = Initialized;
738 break;
739 case ClassifyRefs::SelfInit:
Ted Kremenek778a6ed2012-11-17 07:18:30 +0000740 handler.handleSelfInit(cast<VarDecl>(dr->getDecl()));
Richard Smith6376d1f2012-07-17 00:06:14 +0000741 break;
742 }
Ted Kremenek9e100ea2011-07-19 14:18:48 +0000743}
744
Richard Smith6376d1f2012-07-17 00:06:14 +0000745void TransferFunctions::VisitBinaryOperator(BinaryOperator *BO) {
746 if (BO->getOpcode() == BO_Assign) {
747 FindVarResult Var = findVar(BO->getLHS());
748 if (const VarDecl *VD = Var.getDecl())
749 vals[VD] = Initialized;
750 }
751}
752
753void TransferFunctions::VisitDeclStmt(DeclStmt *DS) {
Aaron Ballman535bbcc2014-03-14 17:01:24 +0000754 for (auto *DI : DS->decls()) {
755 VarDecl *VD = dyn_cast<VarDecl>(DI);
Richard Smith6376d1f2012-07-17 00:06:14 +0000756 if (VD && isTrackedVar(VD)) {
757 if (getSelfInitExpr(VD)) {
758 // If the initializer consists solely of a reference to itself, we
759 // explicitly mark the variable as uninitialized. This allows code
760 // like the following:
761 //
762 // int x = x;
763 //
764 // to deliberately leave a variable uninitialized. Different analysis
765 // clients can detect this pattern and adjust their reporting
766 // appropriately, but we need to continue to analyze subsequent uses
767 // of the variable.
768 vals[VD] = Uninitialized;
769 } else if (VD->getInit()) {
770 // Treat the new variable as initialized.
771 vals[VD] = Initialized;
772 } else {
773 // No initializer: the variable is now uninitialized. This matters
774 // for cases like:
775 // while (...) {
776 // int n;
777 // use(n);
778 // n = 0;
779 // }
780 // FIXME: Mark the variable as uninitialized whenever its scope is
781 // left, since its scope could be re-entered by a jump over the
782 // declaration.
783 vals[VD] = Uninitialized;
Ted Kremenekb63931e2011-01-18 21:18:58 +0000784 }
Ted Kremenekb749a6d2011-01-15 02:58:47 +0000785 }
786 }
787}
788
Ted Kremenekedf22ed2012-09-13 00:21:35 +0000789void TransferFunctions::VisitObjCMessageExpr(ObjCMessageExpr *ME) {
790 // If the Objective-C message expression is an implicit no-return that
791 // is not modeled in the CFG, set the tracked dataflow values to Unknown.
792 if (objCNoRet.isImplicitNoReturn(ME)) {
793 vals.setAllScratchValues(Unknown);
794 }
795}
796
Ted Kremenekb749a6d2011-01-15 02:58:47 +0000797//------------------------------------------------------------------------====//
798// High-level "driver" logic for uninitialized values analysis.
799//====------------------------------------------------------------------------//
800
Ted Kremenekb82ddd62011-01-20 17:37:17 +0000801static bool runOnBlock(const CFGBlock *block, const CFG &cfg,
Ted Kremenek81ce1c82011-10-24 01:32:45 +0000802 AnalysisDeclContext &ac, CFGBlockValues &vals,
Richard Smith6376d1f2012-07-17 00:06:14 +0000803 const ClassifyRefs &classification,
Ted Kremenek352a7082011-04-04 20:30:58 +0000804 llvm::BitVector &wasAnalyzed,
Ted Kremenek778a6ed2012-11-17 07:18:30 +0000805 UninitVariablesHandler &handler) {
Ted Kremenek352a7082011-04-04 20:30:58 +0000806 wasAnalyzed[block->getBlockID()] = true;
Ted Kremenekb749a6d2011-01-15 02:58:47 +0000807 vals.resetScratch();
Ted Kremenek6080d322012-07-19 04:59:05 +0000808 // Merge in values of predecessor blocks.
Ted Kremenekb749a6d2011-01-15 02:58:47 +0000809 bool isFirst = true;
810 for (CFGBlock::const_pred_iterator I = block->pred_begin(),
811 E = block->pred_end(); I != E; ++I) {
Ted Kremenekaed46772011-09-02 19:39:26 +0000812 const CFGBlock *pred = *I;
Ted Kremenek4b6fee62014-02-27 00:24:00 +0000813 if (!pred)
814 continue;
Ted Kremenekaed46772011-09-02 19:39:26 +0000815 if (wasAnalyzed[pred->getBlockID()]) {
Ted Kremenek6080d322012-07-19 04:59:05 +0000816 vals.mergeIntoScratch(vals.getValueVector(pred), isFirst);
Ted Kremenekaed46772011-09-02 19:39:26 +0000817 isFirst = false;
818 }
Ted Kremenekb749a6d2011-01-15 02:58:47 +0000819 }
820 // Apply the transfer function.
Richard Smith6376d1f2012-07-17 00:06:14 +0000821 TransferFunctions tf(vals, cfg, block, ac, classification, handler);
Ted Kremenekb749a6d2011-01-15 02:58:47 +0000822 for (CFGBlock::const_iterator I = block->begin(), E = block->end();
823 I != E; ++I) {
David Blaikie00be69a2013-02-23 00:29:34 +0000824 if (Optional<CFGStmt> cs = I->getAs<CFGStmt>())
825 tf.Visit(const_cast<Stmt*>(cs->getStmt()));
Ted Kremenekb749a6d2011-01-15 02:58:47 +0000826 }
Ted Kremeneka895fe92011-03-15 04:57:27 +0000827 return vals.updateValueVectorWithScratch(block);
Ted Kremenekb749a6d2011-01-15 02:58:47 +0000828}
829
Ted Kremenek778a6ed2012-11-17 07:18:30 +0000830/// PruneBlocksHandler is a special UninitVariablesHandler that is used
831/// to detect when a CFGBlock has any *potential* use of an uninitialized
832/// variable. It is mainly used to prune out work during the final
833/// reporting pass.
834namespace {
835struct PruneBlocksHandler : public UninitVariablesHandler {
836 PruneBlocksHandler(unsigned numBlocks)
837 : hadUse(numBlocks, false), hadAnyUse(false),
838 currentBlock(0) {}
839
Angel Garcia Gomez637d1e62015-10-20 13:23:58 +0000840 ~PruneBlocksHandler() override {}
Ted Kremenek778a6ed2012-11-17 07:18:30 +0000841
842 /// Records if a CFGBlock had a potential use of an uninitialized variable.
843 llvm::BitVector hadUse;
844
845 /// Records if any CFGBlock had a potential use of an uninitialized variable.
846 bool hadAnyUse;
847
848 /// The current block to scribble use information.
849 unsigned currentBlock;
850
Craig Topperb45acb82014-03-14 06:02:07 +0000851 void handleUseOfUninitVariable(const VarDecl *vd,
852 const UninitUse &use) override {
Ted Kremenek778a6ed2012-11-17 07:18:30 +0000853 hadUse[currentBlock] = true;
854 hadAnyUse = true;
855 }
856
857 /// Called when the uninitialized variable analysis detects the
858 /// idiom 'int x = x'. All other uses of 'x' within the initializer
859 /// are handled by handleUseOfUninitVariable.
Craig Topperb45acb82014-03-14 06:02:07 +0000860 void handleSelfInit(const VarDecl *vd) override {
Ted Kremenek778a6ed2012-11-17 07:18:30 +0000861 hadUse[currentBlock] = true;
862 hadAnyUse = true;
863 }
864};
Alexander Kornienkoab9db512015-06-22 23:07:51 +0000865}
Ted Kremenek778a6ed2012-11-17 07:18:30 +0000866
Chandler Carruthb4836ea2011-07-06 16:21:37 +0000867void clang::runUninitializedVariablesAnalysis(
868 const DeclContext &dc,
869 const CFG &cfg,
Ted Kremenek81ce1c82011-10-24 01:32:45 +0000870 AnalysisDeclContext &ac,
Chandler Carruthb4836ea2011-07-06 16:21:37 +0000871 UninitVariablesHandler &handler,
872 UninitVariablesAnalysisStats &stats) {
Ted Kremenekb749a6d2011-01-15 02:58:47 +0000873 CFGBlockValues vals(cfg);
874 vals.computeSetOfDeclarations(dc);
875 if (vals.hasNoDeclarations())
876 return;
Ted Kremenek37881932011-04-04 23:29:12 +0000877
Chandler Carruthb4836ea2011-07-06 16:21:37 +0000878 stats.NumVariablesAnalyzed = vals.getNumEntries();
879
Richard Smith6376d1f2012-07-17 00:06:14 +0000880 // Precompute which expressions are uses and which are initializations.
881 ClassifyRefs classification(ac);
882 cfg.VisitBlockStmts(classification);
883
Ted Kremenek37881932011-04-04 23:29:12 +0000884 // Mark all variables uninitialized at the entry.
885 const CFGBlock &entry = cfg.getEntry();
Ted Kremenek6080d322012-07-19 04:59:05 +0000886 ValueVector &vec = vals.getValueVector(&entry);
887 const unsigned n = vals.getNumEntries();
888 for (unsigned j = 0; j < n ; ++j) {
889 vec[j] = Uninitialized;
Ted Kremenek37881932011-04-04 23:29:12 +0000890 }
891
892 // Proceed with the workist.
Artyom Skrobov27720762014-09-23 08:34:41 +0000893 DataflowWorklist worklist(cfg, *ac.getAnalysis<PostOrderCFGView>());
Ted Kremenek9b15c962011-03-15 04:57:32 +0000894 llvm::BitVector previouslyVisited(cfg.getNumBlockIDs());
Ted Kremenekb749a6d2011-01-15 02:58:47 +0000895 worklist.enqueueSuccessors(&cfg.getEntry());
Ted Kremenek352a7082011-04-04 20:30:58 +0000896 llvm::BitVector wasAnalyzed(cfg.getNumBlockIDs(), false);
Ted Kremenekaed46772011-09-02 19:39:26 +0000897 wasAnalyzed[cfg.getEntry().getBlockID()] = true;
Ted Kremenek778a6ed2012-11-17 07:18:30 +0000898 PruneBlocksHandler PBH(cfg.getNumBlockIDs());
Ted Kremenekb749a6d2011-01-15 02:58:47 +0000899
900 while (const CFGBlock *block = worklist.dequeue()) {
Ted Kremenek778a6ed2012-11-17 07:18:30 +0000901 PBH.currentBlock = block->getBlockID();
902
Ted Kremenekb749a6d2011-01-15 02:58:47 +0000903 // Did the block change?
Richard Smith6376d1f2012-07-17 00:06:14 +0000904 bool changed = runOnBlock(block, cfg, ac, vals,
Ted Kremenek778a6ed2012-11-17 07:18:30 +0000905 classification, wasAnalyzed, PBH);
Chandler Carruthb4836ea2011-07-06 16:21:37 +0000906 ++stats.NumBlockVisits;
Ted Kremenekb749a6d2011-01-15 02:58:47 +0000907 if (changed || !previouslyVisited[block->getBlockID()])
908 worklist.enqueueSuccessors(block);
909 previouslyVisited[block->getBlockID()] = true;
910 }
Ted Kremenek778a6ed2012-11-17 07:18:30 +0000911
912 if (!PBH.hadAnyUse)
913 return;
914
Enea Zaffanella392291f2013-01-11 11:37:08 +0000915 // Run through the blocks one more time, and report uninitialized variables.
Ted Kremenekb749a6d2011-01-15 02:58:47 +0000916 for (CFG::const_iterator BI = cfg.begin(), BE = cfg.end(); BI != BE; ++BI) {
Ted Kremenekaed46772011-09-02 19:39:26 +0000917 const CFGBlock *block = *BI;
Ted Kremenek778a6ed2012-11-17 07:18:30 +0000918 if (PBH.hadUse[block->getBlockID()]) {
919 runOnBlock(block, cfg, ac, vals, classification, wasAnalyzed, handler);
Chandler Carruthb4836ea2011-07-06 16:21:37 +0000920 ++stats.NumBlockVisits;
921 }
Ted Kremenekb749a6d2011-01-15 02:58:47 +0000922 }
923}
924
Angel Garcia Gomez637d1e62015-10-20 13:23:58 +0000925UninitVariablesHandler::~UninitVariablesHandler() {}