Ted Kremenek | a0a5ca1 | 2011-03-15 03:17:07 +0000 | [diff] [blame] | 1 | //==- UninitializedValues.cpp - Find Uninitialized Values -------*- C++ --*-==// |
Ted Kremenek | b749a6d | 2011-01-15 02:58:47 +0000 | [diff] [blame] | 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 implements uninitialized values analysis for source-level CFGs. |
| 11 | // |
| 12 | //===----------------------------------------------------------------------===// |
| 13 | |
Richard Smith | 130b8d4 | 2012-07-13 23:33:44 +0000 | [diff] [blame] | 14 | #include "clang/AST/ASTContext.h" |
Benjamin Kramer | ea70eb3 | 2012-12-01 15:09:41 +0000 | [diff] [blame] | 15 | #include "clang/AST/Attr.h" |
Ted Kremenek | b749a6d | 2011-01-15 02:58:47 +0000 | [diff] [blame] | 16 | #include "clang/AST/Decl.h" |
Jordan Rose | a7f94ce | 2013-05-15 23:22:55 +0000 | [diff] [blame] | 17 | #include "clang/AST/StmtVisitor.h" |
Artyom Skrobov | 2772076 | 2014-09-23 08:34:41 +0000 | [diff] [blame^] | 18 | #include "clang/Analysis/Analyses/PostOrderCFGView.h" |
Ted Kremenek | a0a5ca1 | 2011-03-15 03:17:07 +0000 | [diff] [blame] | 19 | #include "clang/Analysis/Analyses/UninitializedValues.h" |
Benjamin Kramer | ea70eb3 | 2012-12-01 15:09:41 +0000 | [diff] [blame] | 20 | #include "clang/Analysis/AnalysisContext.h" |
| 21 | #include "clang/Analysis/CFG.h" |
Ted Kremenek | edf22ed | 2012-09-13 00:21:35 +0000 | [diff] [blame] | 22 | #include "clang/Analysis/DomainSpecific/ObjCNoReturn.h" |
Benjamin Kramer | ea70eb3 | 2012-12-01 15:09:41 +0000 | [diff] [blame] | 23 | #include "llvm/ADT/DenseMap.h" |
| 24 | #include "llvm/ADT/Optional.h" |
| 25 | #include "llvm/ADT/PackedVector.h" |
| 26 | #include "llvm/ADT/SmallBitVector.h" |
| 27 | #include "llvm/ADT/SmallVector.h" |
Argyrios Kyrtzidis | 981a961 | 2012-03-01 19:45:56 +0000 | [diff] [blame] | 28 | #include "llvm/Support/SaveAndRestore.h" |
Benjamin Kramer | ea70eb3 | 2012-12-01 15:09:41 +0000 | [diff] [blame] | 29 | #include <utility> |
Ted Kremenek | b749a6d | 2011-01-15 02:58:47 +0000 | [diff] [blame] | 30 | |
| 31 | using namespace clang; |
| 32 | |
Richard Smith | 130b8d4 | 2012-07-13 23:33:44 +0000 | [diff] [blame] | 33 | #define DEBUG_LOGGING 0 |
| 34 | |
Ted Kremenek | 93a3138 | 2011-01-27 02:29:34 +0000 | [diff] [blame] | 35 | static bool isTrackedVar(const VarDecl *vd, const DeclContext *dc) { |
Ted Kremenek | c15a4e4 | 2011-03-17 03:06:11 +0000 | [diff] [blame] | 36 | if (vd->isLocalVarDecl() && !vd->hasGlobalStorage() && |
Richard Smith | d88b44d | 2014-06-11 00:31:00 +0000 | [diff] [blame] | 37 | !vd->isExceptionVariable() && !vd->isInitCapture() && |
Ted Kremenek | c15a4e4 | 2011-03-17 03:06:11 +0000 | [diff] [blame] | 38 | vd->getDeclContext() == dc) { |
| 39 | QualType ty = vd->getType(); |
| 40 | return ty->isScalarType() || ty->isVectorType(); |
| 41 | } |
| 42 | return false; |
Ted Kremenek | cab479f | 2011-01-18 04:53:25 +0000 | [diff] [blame] | 43 | } |
| 44 | |
Ted Kremenek | b749a6d | 2011-01-15 02:58:47 +0000 | [diff] [blame] | 45 | //------------------------------------------------------------------------====// |
Ted Kremenek | a895fe9 | 2011-03-15 04:57:27 +0000 | [diff] [blame] | 46 | // DeclToIndex: a mapping from Decls we track to value indices. |
Ted Kremenek | b749a6d | 2011-01-15 02:58:47 +0000 | [diff] [blame] | 47 | //====------------------------------------------------------------------------// |
| 48 | |
| 49 | namespace { |
Ted Kremenek | a895fe9 | 2011-03-15 04:57:27 +0000 | [diff] [blame] | 50 | class DeclToIndex { |
Ted Kremenek | b749a6d | 2011-01-15 02:58:47 +0000 | [diff] [blame] | 51 | llvm::DenseMap<const VarDecl *, unsigned> map; |
| 52 | public: |
Ted Kremenek | a895fe9 | 2011-03-15 04:57:27 +0000 | [diff] [blame] | 53 | DeclToIndex() {} |
Ted Kremenek | b749a6d | 2011-01-15 02:58:47 +0000 | [diff] [blame] | 54 | |
| 55 | /// Compute the actual mapping from declarations to bits. |
| 56 | void computeMap(const DeclContext &dc); |
| 57 | |
| 58 | /// Return the number of declarations in the map. |
| 59 | unsigned size() const { return map.size(); } |
| 60 | |
| 61 | /// Returns the bit vector index for a given declaration. |
David Blaikie | 05785d1 | 2013-02-20 22:23:23 +0000 | [diff] [blame] | 62 | Optional<unsigned> getValueIndex(const VarDecl *d) const; |
Ted Kremenek | b749a6d | 2011-01-15 02:58:47 +0000 | [diff] [blame] | 63 | }; |
| 64 | } |
| 65 | |
Ted Kremenek | a895fe9 | 2011-03-15 04:57:27 +0000 | [diff] [blame] | 66 | void DeclToIndex::computeMap(const DeclContext &dc) { |
Ted Kremenek | b749a6d | 2011-01-15 02:58:47 +0000 | [diff] [blame] | 67 | unsigned count = 0; |
| 68 | DeclContext::specific_decl_iterator<VarDecl> I(dc.decls_begin()), |
| 69 | E(dc.decls_end()); |
| 70 | for ( ; I != E; ++I) { |
David Blaikie | 40ed297 | 2012-06-06 20:45:41 +0000 | [diff] [blame] | 71 | const VarDecl *vd = *I; |
Ted Kremenek | 93a3138 | 2011-01-27 02:29:34 +0000 | [diff] [blame] | 72 | if (isTrackedVar(vd, &dc)) |
Ted Kremenek | b749a6d | 2011-01-15 02:58:47 +0000 | [diff] [blame] | 73 | map[vd] = count++; |
| 74 | } |
| 75 | } |
| 76 | |
David Blaikie | 05785d1 | 2013-02-20 22:23:23 +0000 | [diff] [blame] | 77 | Optional<unsigned> DeclToIndex::getValueIndex(const VarDecl *d) const { |
Ted Kremenek | 03325c4 | 2011-03-29 01:40:00 +0000 | [diff] [blame] | 78 | llvm::DenseMap<const VarDecl *, unsigned>::const_iterator I = map.find(d); |
Ted Kremenek | b749a6d | 2011-01-15 02:58:47 +0000 | [diff] [blame] | 79 | if (I == map.end()) |
David Blaikie | 7a30dc5 | 2013-02-21 01:47:18 +0000 | [diff] [blame] | 80 | return None; |
Ted Kremenek | b749a6d | 2011-01-15 02:58:47 +0000 | [diff] [blame] | 81 | return I->second; |
| 82 | } |
| 83 | |
| 84 | //------------------------------------------------------------------------====// |
| 85 | // CFGBlockValues: dataflow values for CFG blocks. |
| 86 | //====------------------------------------------------------------------------// |
| 87 | |
Ted Kremenek | c8c4e5f | 2011-03-15 04:57:38 +0000 | [diff] [blame] | 88 | // These values are defined in such a way that a merge can be done using |
| 89 | // a bitwise OR. |
| 90 | enum Value { Unknown = 0x0, /* 00 */ |
| 91 | Initialized = 0x1, /* 01 */ |
| 92 | Uninitialized = 0x2, /* 10 */ |
| 93 | MayUninitialized = 0x3 /* 11 */ }; |
| 94 | |
| 95 | static bool isUninitialized(const Value v) { |
| 96 | return v >= Uninitialized; |
| 97 | } |
| 98 | static bool isAlwaysUninit(const Value v) { |
| 99 | return v == Uninitialized; |
| 100 | } |
Ted Kremenek | d3def38 | 2011-03-15 04:57:29 +0000 | [diff] [blame] | 101 | |
Benjamin Kramer | 8aef596 | 2011-03-26 12:38:21 +0000 | [diff] [blame] | 102 | namespace { |
Ted Kremenek | 9b15c96 | 2011-03-15 04:57:32 +0000 | [diff] [blame] | 103 | |
Benjamin Kramer | 5721daa | 2012-09-28 16:44:29 +0000 | [diff] [blame] | 104 | typedef llvm::PackedVector<Value, 2, llvm::SmallBitVector> ValueVector; |
Ted Kremenek | b82ddd6 | 2011-01-20 17:37:17 +0000 | [diff] [blame] | 105 | |
Ted Kremenek | b749a6d | 2011-01-15 02:58:47 +0000 | [diff] [blame] | 106 | class CFGBlockValues { |
| 107 | const CFG &cfg; |
Benjamin Kramer | 5721daa | 2012-09-28 16:44:29 +0000 | [diff] [blame] | 108 | SmallVector<ValueVector, 8> vals; |
Ted Kremenek | a895fe9 | 2011-03-15 04:57:27 +0000 | [diff] [blame] | 109 | ValueVector scratch; |
Ted Kremenek | e3ae0a4 | 2011-03-15 05:30:12 +0000 | [diff] [blame] | 110 | DeclToIndex declToIndex; |
Ted Kremenek | b749a6d | 2011-01-15 02:58:47 +0000 | [diff] [blame] | 111 | public: |
| 112 | CFGBlockValues(const CFG &cfg); |
Ted Kremenek | 6080d32 | 2012-07-19 04:59:05 +0000 | [diff] [blame] | 113 | |
Ted Kremenek | 3788193 | 2011-04-04 23:29:12 +0000 | [diff] [blame] | 114 | unsigned getNumEntries() const { return declToIndex.size(); } |
| 115 | |
Ted Kremenek | b749a6d | 2011-01-15 02:58:47 +0000 | [diff] [blame] | 116 | void computeSetOfDeclarations(const DeclContext &dc); |
Ted Kremenek | 6080d32 | 2012-07-19 04:59:05 +0000 | [diff] [blame] | 117 | ValueVector &getValueVector(const CFGBlock *block) { |
Benjamin Kramer | 5721daa | 2012-09-28 16:44:29 +0000 | [diff] [blame] | 118 | return vals[block->getBlockID()]; |
Ted Kremenek | 6080d32 | 2012-07-19 04:59:05 +0000 | [diff] [blame] | 119 | } |
Ted Kremenek | b82ddd6 | 2011-01-20 17:37:17 +0000 | [diff] [blame] | 120 | |
Richard Smith | b721e30 | 2012-07-02 23:23:04 +0000 | [diff] [blame] | 121 | void setAllScratchValues(Value V); |
Ted Kremenek | a895fe9 | 2011-03-15 04:57:27 +0000 | [diff] [blame] | 122 | void mergeIntoScratch(ValueVector const &source, bool isFirst); |
| 123 | bool updateValueVectorWithScratch(const CFGBlock *block); |
Ted Kremenek | b749a6d | 2011-01-15 02:58:47 +0000 | [diff] [blame] | 124 | |
| 125 | bool hasNoDeclarations() const { |
Ted Kremenek | e3ae0a4 | 2011-03-15 05:30:12 +0000 | [diff] [blame] | 126 | return declToIndex.size() == 0; |
Ted Kremenek | b749a6d | 2011-01-15 02:58:47 +0000 | [diff] [blame] | 127 | } |
Ted Kremenek | 417d566 | 2011-08-20 01:15:28 +0000 | [diff] [blame] | 128 | |
Ted Kremenek | b749a6d | 2011-01-15 02:58:47 +0000 | [diff] [blame] | 129 | void resetScratch(); |
Ted Kremenek | b82ddd6 | 2011-01-20 17:37:17 +0000 | [diff] [blame] | 130 | |
Ted Kremenek | a895fe9 | 2011-03-15 04:57:27 +0000 | [diff] [blame] | 131 | ValueVector::reference operator[](const VarDecl *vd); |
Richard Smith | 4323bf8 | 2012-05-25 02:17:09 +0000 | [diff] [blame] | 132 | |
| 133 | Value getValue(const CFGBlock *block, const CFGBlock *dstBlock, |
| 134 | const VarDecl *vd) { |
David Blaikie | 05785d1 | 2013-02-20 22:23:23 +0000 | [diff] [blame] | 135 | const Optional<unsigned> &idx = declToIndex.getValueIndex(vd); |
Richard Smith | 4323bf8 | 2012-05-25 02:17:09 +0000 | [diff] [blame] | 136 | assert(idx.hasValue()); |
Ted Kremenek | 6080d32 | 2012-07-19 04:59:05 +0000 | [diff] [blame] | 137 | return getValueVector(block)[idx.getValue()]; |
Richard Smith | 4323bf8 | 2012-05-25 02:17:09 +0000 | [diff] [blame] | 138 | } |
Ted Kremenek | b749a6d | 2011-01-15 02:58:47 +0000 | [diff] [blame] | 139 | }; |
Benjamin Kramer | 8aef596 | 2011-03-26 12:38:21 +0000 | [diff] [blame] | 140 | } // end anonymous namespace |
Ted Kremenek | b749a6d | 2011-01-15 02:58:47 +0000 | [diff] [blame] | 141 | |
Ted Kremenek | 6080d32 | 2012-07-19 04:59:05 +0000 | [diff] [blame] | 142 | CFGBlockValues::CFGBlockValues(const CFG &c) : cfg(c), vals(0) {} |
Ted Kremenek | b749a6d | 2011-01-15 02:58:47 +0000 | [diff] [blame] | 143 | |
Ted Kremenek | b749a6d | 2011-01-15 02:58:47 +0000 | [diff] [blame] | 144 | void CFGBlockValues::computeSetOfDeclarations(const DeclContext &dc) { |
Ted Kremenek | e3ae0a4 | 2011-03-15 05:30:12 +0000 | [diff] [blame] | 145 | declToIndex.computeMap(dc); |
Ted Kremenek | 6080d32 | 2012-07-19 04:59:05 +0000 | [diff] [blame] | 146 | unsigned decls = declToIndex.size(); |
| 147 | scratch.resize(decls); |
| 148 | unsigned n = cfg.getNumBlockIDs(); |
| 149 | if (!n) |
| 150 | return; |
| 151 | vals.resize(n); |
| 152 | for (unsigned i = 0; i < n; ++i) |
Benjamin Kramer | 5721daa | 2012-09-28 16:44:29 +0000 | [diff] [blame] | 153 | vals[i].resize(decls); |
Ted Kremenek | b82ddd6 | 2011-01-20 17:37:17 +0000 | [diff] [blame] | 154 | } |
| 155 | |
Richard Smith | 130b8d4 | 2012-07-13 23:33:44 +0000 | [diff] [blame] | 156 | #if DEBUG_LOGGING |
Ted Kremenek | a895fe9 | 2011-03-15 04:57:27 +0000 | [diff] [blame] | 157 | static void printVector(const CFGBlock *block, ValueVector &bv, |
Ted Kremenek | ba35729 | 2011-02-01 17:43:18 +0000 | [diff] [blame] | 158 | unsigned num) { |
Ted Kremenek | ba35729 | 2011-02-01 17:43:18 +0000 | [diff] [blame] | 159 | llvm::errs() << block->getBlockID() << " :"; |
| 160 | for (unsigned i = 0; i < bv.size(); ++i) { |
| 161 | llvm::errs() << ' ' << bv[i]; |
| 162 | } |
| 163 | llvm::errs() << " : " << num << '\n'; |
| 164 | } |
| 165 | #endif |
Ted Kremenek | b749a6d | 2011-01-15 02:58:47 +0000 | [diff] [blame] | 166 | |
Richard Smith | b721e30 | 2012-07-02 23:23:04 +0000 | [diff] [blame] | 167 | void CFGBlockValues::setAllScratchValues(Value V) { |
| 168 | for (unsigned I = 0, E = scratch.size(); I != E; ++I) |
| 169 | scratch[I] = V; |
| 170 | } |
| 171 | |
Ted Kremenek | f8fd4d4 | 2011-10-07 00:42:48 +0000 | [diff] [blame] | 172 | void CFGBlockValues::mergeIntoScratch(ValueVector const &source, |
| 173 | bool isFirst) { |
| 174 | if (isFirst) |
| 175 | scratch = source; |
| 176 | else |
| 177 | scratch |= source; |
| 178 | } |
| 179 | |
Ted Kremenek | a895fe9 | 2011-03-15 04:57:27 +0000 | [diff] [blame] | 180 | bool CFGBlockValues::updateValueVectorWithScratch(const CFGBlock *block) { |
Ted Kremenek | 6080d32 | 2012-07-19 04:59:05 +0000 | [diff] [blame] | 181 | ValueVector &dst = getValueVector(block); |
Ted Kremenek | b749a6d | 2011-01-15 02:58:47 +0000 | [diff] [blame] | 182 | bool changed = (dst != scratch); |
| 183 | if (changed) |
| 184 | dst = scratch; |
Richard Smith | 130b8d4 | 2012-07-13 23:33:44 +0000 | [diff] [blame] | 185 | #if DEBUG_LOGGING |
Ted Kremenek | ba35729 | 2011-02-01 17:43:18 +0000 | [diff] [blame] | 186 | printVector(block, scratch, 0); |
| 187 | #endif |
Ted Kremenek | b82ddd6 | 2011-01-20 17:37:17 +0000 | [diff] [blame] | 188 | return changed; |
| 189 | } |
| 190 | |
Ted Kremenek | b749a6d | 2011-01-15 02:58:47 +0000 | [diff] [blame] | 191 | void CFGBlockValues::resetScratch() { |
| 192 | scratch.reset(); |
| 193 | } |
| 194 | |
Ted Kremenek | a895fe9 | 2011-03-15 04:57:27 +0000 | [diff] [blame] | 195 | ValueVector::reference CFGBlockValues::operator[](const VarDecl *vd) { |
David Blaikie | 05785d1 | 2013-02-20 22:23:23 +0000 | [diff] [blame] | 196 | const Optional<unsigned> &idx = declToIndex.getValueIndex(vd); |
Ted Kremenek | b749a6d | 2011-01-15 02:58:47 +0000 | [diff] [blame] | 197 | assert(idx.hasValue()); |
| 198 | return scratch[idx.getValue()]; |
| 199 | } |
| 200 | |
| 201 | //------------------------------------------------------------------------====// |
Artyom Skrobov | 2772076 | 2014-09-23 08:34:41 +0000 | [diff] [blame^] | 202 | // Worklist: worklist for dataflow analysis. |
| 203 | //====------------------------------------------------------------------------// |
| 204 | |
| 205 | namespace { |
| 206 | class DataflowWorklist { |
| 207 | PostOrderCFGView::iterator PO_I, PO_E; |
| 208 | SmallVector<const CFGBlock *, 20> worklist; |
| 209 | llvm::BitVector enqueuedBlocks; |
| 210 | public: |
| 211 | DataflowWorklist(const CFG &cfg, PostOrderCFGView &view) |
| 212 | : PO_I(view.begin()), PO_E(view.end()), |
| 213 | enqueuedBlocks(cfg.getNumBlockIDs(), true) { |
| 214 | // Treat the first block as already analyzed. |
| 215 | if (PO_I != PO_E) { |
| 216 | assert(*PO_I == &cfg.getEntry()); |
| 217 | enqueuedBlocks[(*PO_I)->getBlockID()] = false; |
| 218 | ++PO_I; |
| 219 | } |
| 220 | } |
| 221 | |
| 222 | void enqueueSuccessors(const CFGBlock *block); |
| 223 | const CFGBlock *dequeue(); |
| 224 | }; |
| 225 | } |
| 226 | |
| 227 | void DataflowWorklist::enqueueSuccessors(const clang::CFGBlock *block) { |
| 228 | for (CFGBlock::const_succ_iterator I = block->succ_begin(), |
| 229 | E = block->succ_end(); I != E; ++I) { |
| 230 | const CFGBlock *Successor = *I; |
| 231 | if (!Successor || enqueuedBlocks[Successor->getBlockID()]) |
| 232 | continue; |
| 233 | worklist.push_back(Successor); |
| 234 | enqueuedBlocks[Successor->getBlockID()] = true; |
| 235 | } |
| 236 | } |
| 237 | |
| 238 | const CFGBlock *DataflowWorklist::dequeue() { |
| 239 | const CFGBlock *B = nullptr; |
| 240 | |
| 241 | // First dequeue from the worklist. This can represent |
| 242 | // updates along backedges that we want propagated as quickly as possible. |
| 243 | if (!worklist.empty()) |
| 244 | B = worklist.pop_back_val(); |
| 245 | |
| 246 | // Next dequeue from the initial reverse post order. This is the |
| 247 | // theoretical ideal in the presence of no back edges. |
| 248 | else if (PO_I != PO_E) { |
| 249 | B = *PO_I; |
| 250 | ++PO_I; |
| 251 | } |
| 252 | else { |
| 253 | return nullptr; |
| 254 | } |
| 255 | |
| 256 | assert(enqueuedBlocks[B->getBlockID()] == true); |
| 257 | enqueuedBlocks[B->getBlockID()] = false; |
| 258 | return B; |
| 259 | } |
| 260 | |
| 261 | //------------------------------------------------------------------------====// |
Richard Smith | 6376d1f | 2012-07-17 00:06:14 +0000 | [diff] [blame] | 262 | // Classification of DeclRefExprs as use or initialization. |
Ted Kremenek | b749a6d | 2011-01-15 02:58:47 +0000 | [diff] [blame] | 263 | //====------------------------------------------------------------------------// |
| 264 | |
Ted Kremenek | b749a6d | 2011-01-15 02:58:47 +0000 | [diff] [blame] | 265 | namespace { |
| 266 | class FindVarResult { |
| 267 | const VarDecl *vd; |
| 268 | const DeclRefExpr *dr; |
| 269 | public: |
Richard Smith | 6376d1f | 2012-07-17 00:06:14 +0000 | [diff] [blame] | 270 | FindVarResult(const VarDecl *vd, const DeclRefExpr *dr) : vd(vd), dr(dr) {} |
| 271 | |
Ted Kremenek | b749a6d | 2011-01-15 02:58:47 +0000 | [diff] [blame] | 272 | const DeclRefExpr *getDeclRefExpr() const { return dr; } |
| 273 | const VarDecl *getDecl() const { return vd; } |
| 274 | }; |
Richard Smith | 6376d1f | 2012-07-17 00:06:14 +0000 | [diff] [blame] | 275 | |
| 276 | static const Expr *stripCasts(ASTContext &C, const Expr *Ex) { |
| 277 | while (Ex) { |
| 278 | Ex = Ex->IgnoreParenNoopCasts(C); |
| 279 | if (const CastExpr *CE = dyn_cast<CastExpr>(Ex)) { |
| 280 | if (CE->getCastKind() == CK_LValueBitCast) { |
| 281 | Ex = CE->getSubExpr(); |
| 282 | continue; |
| 283 | } |
| 284 | } |
| 285 | break; |
| 286 | } |
| 287 | return Ex; |
| 288 | } |
| 289 | |
| 290 | /// If E is an expression comprising a reference to a single variable, find that |
| 291 | /// variable. |
| 292 | static FindVarResult findVar(const Expr *E, const DeclContext *DC) { |
| 293 | if (const DeclRefExpr *DRE = |
| 294 | dyn_cast<DeclRefExpr>(stripCasts(DC->getParentASTContext(), E))) |
| 295 | if (const VarDecl *VD = dyn_cast<VarDecl>(DRE->getDecl())) |
| 296 | if (isTrackedVar(VD, DC)) |
| 297 | return FindVarResult(VD, DRE); |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 298 | return FindVarResult(nullptr, nullptr); |
Richard Smith | 6376d1f | 2012-07-17 00:06:14 +0000 | [diff] [blame] | 299 | } |
| 300 | |
| 301 | /// \brief Classify each DeclRefExpr as an initialization or a use. Any |
| 302 | /// DeclRefExpr which isn't explicitly classified will be assumed to have |
| 303 | /// escaped the analysis and will be treated as an initialization. |
| 304 | class ClassifyRefs : public StmtVisitor<ClassifyRefs> { |
| 305 | public: |
| 306 | enum Class { |
| 307 | Init, |
| 308 | Use, |
| 309 | SelfInit, |
| 310 | Ignore |
| 311 | }; |
| 312 | |
| 313 | private: |
| 314 | const DeclContext *DC; |
| 315 | llvm::DenseMap<const DeclRefExpr*, Class> Classification; |
| 316 | |
| 317 | bool isTrackedVar(const VarDecl *VD) const { |
| 318 | return ::isTrackedVar(VD, DC); |
| 319 | } |
| 320 | |
| 321 | void classify(const Expr *E, Class C); |
| 322 | |
| 323 | public: |
| 324 | ClassifyRefs(AnalysisDeclContext &AC) : DC(cast<DeclContext>(AC.getDecl())) {} |
| 325 | |
| 326 | void VisitDeclStmt(DeclStmt *DS); |
| 327 | void VisitUnaryOperator(UnaryOperator *UO); |
| 328 | void VisitBinaryOperator(BinaryOperator *BO); |
| 329 | void VisitCallExpr(CallExpr *CE); |
| 330 | void VisitCastExpr(CastExpr *CE); |
| 331 | |
| 332 | void operator()(Stmt *S) { Visit(S); } |
| 333 | |
| 334 | Class get(const DeclRefExpr *DRE) const { |
| 335 | llvm::DenseMap<const DeclRefExpr*, Class>::const_iterator I |
| 336 | = Classification.find(DRE); |
| 337 | if (I != Classification.end()) |
| 338 | return I->second; |
| 339 | |
| 340 | const VarDecl *VD = dyn_cast<VarDecl>(DRE->getDecl()); |
| 341 | if (!VD || !isTrackedVar(VD)) |
| 342 | return Ignore; |
| 343 | |
| 344 | return Init; |
| 345 | } |
| 346 | }; |
| 347 | } |
| 348 | |
| 349 | static const DeclRefExpr *getSelfInitExpr(VarDecl *VD) { |
| 350 | if (Expr *Init = VD->getInit()) { |
| 351 | const DeclRefExpr *DRE |
| 352 | = dyn_cast<DeclRefExpr>(stripCasts(VD->getASTContext(), Init)); |
| 353 | if (DRE && DRE->getDecl() == VD) |
| 354 | return DRE; |
| 355 | } |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 356 | return nullptr; |
Richard Smith | 6376d1f | 2012-07-17 00:06:14 +0000 | [diff] [blame] | 357 | } |
| 358 | |
| 359 | void ClassifyRefs::classify(const Expr *E, Class C) { |
Ted Kremenek | 7ba78c6 | 2013-01-19 00:25:06 +0000 | [diff] [blame] | 360 | // The result of a ?: could also be an lvalue. |
| 361 | E = E->IgnoreParens(); |
| 362 | if (const ConditionalOperator *CO = dyn_cast<ConditionalOperator>(E)) { |
Richard Trieu | abf6ec4 | 2014-08-27 22:15:10 +0000 | [diff] [blame] | 363 | classify(CO->getTrueExpr(), C); |
Ted Kremenek | 7ba78c6 | 2013-01-19 00:25:06 +0000 | [diff] [blame] | 364 | classify(CO->getFalseExpr(), C); |
| 365 | return; |
| 366 | } |
| 367 | |
Richard Trieu | abf6ec4 | 2014-08-27 22:15:10 +0000 | [diff] [blame] | 368 | if (const BinaryConditionalOperator *BCO = |
| 369 | dyn_cast<BinaryConditionalOperator>(E)) { |
| 370 | classify(BCO->getFalseExpr(), C); |
| 371 | return; |
| 372 | } |
| 373 | |
| 374 | if (const OpaqueValueExpr *OVE = dyn_cast<OpaqueValueExpr>(E)) { |
| 375 | classify(OVE->getSourceExpr(), C); |
| 376 | return; |
| 377 | } |
| 378 | |
| 379 | if (const BinaryOperator *BO = dyn_cast<BinaryOperator>(E)) { |
| 380 | if (BO->getOpcode() == BO_Comma) |
| 381 | classify(BO->getRHS(), C); |
| 382 | return; |
| 383 | } |
| 384 | |
Richard Smith | 6376d1f | 2012-07-17 00:06:14 +0000 | [diff] [blame] | 385 | FindVarResult Var = findVar(E, DC); |
| 386 | if (const DeclRefExpr *DRE = Var.getDeclRefExpr()) |
| 387 | Classification[DRE] = std::max(Classification[DRE], C); |
| 388 | } |
| 389 | |
| 390 | void ClassifyRefs::VisitDeclStmt(DeclStmt *DS) { |
Aaron Ballman | 535bbcc | 2014-03-14 17:01:24 +0000 | [diff] [blame] | 391 | for (auto *DI : DS->decls()) { |
| 392 | VarDecl *VD = dyn_cast<VarDecl>(DI); |
Richard Smith | 6376d1f | 2012-07-17 00:06:14 +0000 | [diff] [blame] | 393 | if (VD && isTrackedVar(VD)) |
| 394 | if (const DeclRefExpr *DRE = getSelfInitExpr(VD)) |
| 395 | Classification[DRE] = SelfInit; |
| 396 | } |
| 397 | } |
| 398 | |
| 399 | void ClassifyRefs::VisitBinaryOperator(BinaryOperator *BO) { |
| 400 | // Ignore the evaluation of a DeclRefExpr on the LHS of an assignment. If this |
| 401 | // is not a compound-assignment, we will treat it as initializing the variable |
| 402 | // when TransferFunctions visits it. A compound-assignment does not affect |
| 403 | // whether a variable is uninitialized, and there's no point counting it as a |
| 404 | // use. |
Richard Smith | b21dd02 | 2012-07-17 01:27:33 +0000 | [diff] [blame] | 405 | if (BO->isCompoundAssignmentOp()) |
| 406 | classify(BO->getLHS(), Use); |
| 407 | else if (BO->getOpcode() == BO_Assign) |
Richard Smith | 6376d1f | 2012-07-17 00:06:14 +0000 | [diff] [blame] | 408 | classify(BO->getLHS(), Ignore); |
| 409 | } |
| 410 | |
| 411 | void ClassifyRefs::VisitUnaryOperator(UnaryOperator *UO) { |
| 412 | // Increment and decrement are uses despite there being no lvalue-to-rvalue |
| 413 | // conversion. |
| 414 | if (UO->isIncrementDecrementOp()) |
| 415 | classify(UO->getSubExpr(), Use); |
| 416 | } |
| 417 | |
| 418 | void ClassifyRefs::VisitCallExpr(CallExpr *CE) { |
Richard Trieu | 11fd079 | 2014-08-26 04:30:55 +0000 | [diff] [blame] | 419 | // Classify arguments to std::move as used. |
| 420 | if (CE->getNumArgs() == 1) { |
| 421 | if (FunctionDecl *FD = CE->getDirectCallee()) { |
| 422 | if (FD->getIdentifier() && FD->getIdentifier()->isStr("move")) { |
| 423 | classify(CE->getArg(0), Use); |
| 424 | return; |
| 425 | } |
| 426 | } |
| 427 | } |
| 428 | |
Richard Smith | 6376d1f | 2012-07-17 00:06:14 +0000 | [diff] [blame] | 429 | // If a value is passed by const reference to a function, we should not assume |
| 430 | // that it is initialized by the call, and we conservatively do not assume |
| 431 | // that it is used. |
| 432 | for (CallExpr::arg_iterator I = CE->arg_begin(), E = CE->arg_end(); |
| 433 | I != E; ++I) |
| 434 | if ((*I)->getType().isConstQualified() && (*I)->isGLValue()) |
| 435 | classify(*I, Ignore); |
| 436 | } |
| 437 | |
| 438 | void ClassifyRefs::VisitCastExpr(CastExpr *CE) { |
| 439 | if (CE->getCastKind() == CK_LValueToRValue) |
| 440 | classify(CE->getSubExpr(), Use); |
| 441 | else if (CStyleCastExpr *CSE = dyn_cast<CStyleCastExpr>(CE)) { |
| 442 | if (CSE->getType()->isVoidType()) { |
| 443 | // Squelch any detected load of an uninitialized value if |
| 444 | // we cast it to void. |
| 445 | // e.g. (void) x; |
| 446 | classify(CSE->getSubExpr(), Ignore); |
| 447 | } |
| 448 | } |
| 449 | } |
| 450 | |
| 451 | //------------------------------------------------------------------------====// |
| 452 | // Transfer function for uninitialized values analysis. |
| 453 | //====------------------------------------------------------------------------// |
| 454 | |
| 455 | namespace { |
Ted Kremenek | 9e100ea | 2011-07-19 14:18:48 +0000 | [diff] [blame] | 456 | class TransferFunctions : public StmtVisitor<TransferFunctions> { |
Ted Kremenek | b749a6d | 2011-01-15 02:58:47 +0000 | [diff] [blame] | 457 | CFGBlockValues &vals; |
| 458 | const CFG &cfg; |
Richard Smith | 4323bf8 | 2012-05-25 02:17:09 +0000 | [diff] [blame] | 459 | const CFGBlock *block; |
Ted Kremenek | 81ce1c8 | 2011-10-24 01:32:45 +0000 | [diff] [blame] | 460 | AnalysisDeclContext ∾ |
Richard Smith | 6376d1f | 2012-07-17 00:06:14 +0000 | [diff] [blame] | 461 | const ClassifyRefs &classification; |
Ted Kremenek | edf22ed | 2012-09-13 00:21:35 +0000 | [diff] [blame] | 462 | ObjCNoReturn objCNoRet; |
Ted Kremenek | 778a6ed | 2012-11-17 07:18:30 +0000 | [diff] [blame] | 463 | UninitVariablesHandler &handler; |
Richard Smith | 6376d1f | 2012-07-17 00:06:14 +0000 | [diff] [blame] | 464 | |
Ted Kremenek | b749a6d | 2011-01-15 02:58:47 +0000 | [diff] [blame] | 465 | public: |
| 466 | TransferFunctions(CFGBlockValues &vals, const CFG &cfg, |
Richard Smith | 4323bf8 | 2012-05-25 02:17:09 +0000 | [diff] [blame] | 467 | const CFGBlock *block, AnalysisDeclContext &ac, |
Richard Smith | 6376d1f | 2012-07-17 00:06:14 +0000 | [diff] [blame] | 468 | const ClassifyRefs &classification, |
Ted Kremenek | 778a6ed | 2012-11-17 07:18:30 +0000 | [diff] [blame] | 469 | UninitVariablesHandler &handler) |
Richard Smith | 6376d1f | 2012-07-17 00:06:14 +0000 | [diff] [blame] | 470 | : vals(vals), cfg(cfg), block(block), ac(ac), |
Ted Kremenek | edf22ed | 2012-09-13 00:21:35 +0000 | [diff] [blame] | 471 | classification(classification), objCNoRet(ac.getASTContext()), |
| 472 | handler(handler) {} |
Richard Smith | 6376d1f | 2012-07-17 00:06:14 +0000 | [diff] [blame] | 473 | |
Richard Smith | 3d31e8b | 2012-05-24 23:45:35 +0000 | [diff] [blame] | 474 | void reportUse(const Expr *ex, const VarDecl *vd); |
Ted Kremenek | bcf848f | 2011-01-25 19:13:48 +0000 | [diff] [blame] | 475 | |
Ted Kremenek | edf22ed | 2012-09-13 00:21:35 +0000 | [diff] [blame] | 476 | void VisitBinaryOperator(BinaryOperator *bo); |
Ted Kremenek | bcf848f | 2011-01-25 19:13:48 +0000 | [diff] [blame] | 477 | void VisitBlockExpr(BlockExpr *be); |
Richard Smith | b721e30 | 2012-07-02 23:23:04 +0000 | [diff] [blame] | 478 | void VisitCallExpr(CallExpr *ce); |
Ted Kremenek | b63931e | 2011-01-18 21:18:58 +0000 | [diff] [blame] | 479 | void VisitDeclRefExpr(DeclRefExpr *dr); |
Ted Kremenek | edf22ed | 2012-09-13 00:21:35 +0000 | [diff] [blame] | 480 | void VisitDeclStmt(DeclStmt *ds); |
| 481 | void VisitObjCForCollectionStmt(ObjCForCollectionStmt *FS); |
| 482 | void VisitObjCMessageExpr(ObjCMessageExpr *ME); |
Richard Smith | 4323bf8 | 2012-05-25 02:17:09 +0000 | [diff] [blame] | 483 | |
Ted Kremenek | 93a3138 | 2011-01-27 02:29:34 +0000 | [diff] [blame] | 484 | bool isTrackedVar(const VarDecl *vd) { |
| 485 | return ::isTrackedVar(vd, cast<DeclContext>(ac.getDecl())); |
| 486 | } |
Richard Smith | 4323bf8 | 2012-05-25 02:17:09 +0000 | [diff] [blame] | 487 | |
Richard Smith | 6376d1f | 2012-07-17 00:06:14 +0000 | [diff] [blame] | 488 | FindVarResult findVar(const Expr *ex) { |
| 489 | return ::findVar(ex, cast<DeclContext>(ac.getDecl())); |
| 490 | } |
| 491 | |
Richard Smith | 4323bf8 | 2012-05-25 02:17:09 +0000 | [diff] [blame] | 492 | UninitUse getUninitUse(const Expr *ex, const VarDecl *vd, Value v) { |
| 493 | UninitUse Use(ex, isAlwaysUninit(v)); |
| 494 | |
| 495 | assert(isUninitialized(v)); |
| 496 | if (Use.getKind() == UninitUse::Always) |
| 497 | return Use; |
| 498 | |
| 499 | // If an edge which leads unconditionally to this use did not initialize |
| 500 | // the variable, we can say something stronger than 'may be uninitialized': |
| 501 | // we can say 'either it's used uninitialized or you have dead code'. |
| 502 | // |
| 503 | // We track the number of successors of a node which have been visited, and |
| 504 | // visit a node once we have visited all of its successors. Only edges where |
| 505 | // the variable might still be uninitialized are followed. Since a variable |
| 506 | // can't transfer from being initialized to being uninitialized, this will |
| 507 | // trace out the subgraph which inevitably leads to the use and does not |
| 508 | // initialize the variable. We do not want to skip past loops, since their |
| 509 | // non-termination might be correlated with the initialization condition. |
| 510 | // |
| 511 | // For example: |
| 512 | // |
| 513 | // void f(bool a, bool b) { |
| 514 | // block1: int n; |
| 515 | // if (a) { |
| 516 | // block2: if (b) |
| 517 | // block3: n = 1; |
| 518 | // block4: } else if (b) { |
| 519 | // block5: while (!a) { |
| 520 | // block6: do_work(&a); |
| 521 | // n = 2; |
| 522 | // } |
| 523 | // } |
| 524 | // block7: if (a) |
| 525 | // block8: g(); |
| 526 | // block9: return n; |
| 527 | // } |
| 528 | // |
| 529 | // Starting from the maybe-uninitialized use in block 9: |
| 530 | // * Block 7 is not visited because we have only visited one of its two |
| 531 | // successors. |
| 532 | // * Block 8 is visited because we've visited its only successor. |
| 533 | // From block 8: |
| 534 | // * Block 7 is visited because we've now visited both of its successors. |
| 535 | // From block 7: |
| 536 | // * Blocks 1, 2, 4, 5, and 6 are not visited because we didn't visit all |
| 537 | // of their successors (we didn't visit 4, 3, 5, 6, and 5, respectively). |
| 538 | // * Block 3 is not visited because it initializes 'n'. |
| 539 | // Now the algorithm terminates, having visited blocks 7 and 8, and having |
| 540 | // found the frontier is blocks 2, 4, and 5. |
| 541 | // |
| 542 | // 'n' is definitely uninitialized for two edges into block 7 (from blocks 2 |
| 543 | // and 4), so we report that any time either of those edges is taken (in |
| 544 | // each case when 'b == false'), 'n' is used uninitialized. |
Dmitri Gribenko | f857950 | 2013-01-12 19:30:44 +0000 | [diff] [blame] | 545 | SmallVector<const CFGBlock*, 32> Queue; |
| 546 | SmallVector<unsigned, 32> SuccsVisited(cfg.getNumBlockIDs(), 0); |
Richard Smith | 4323bf8 | 2012-05-25 02:17:09 +0000 | [diff] [blame] | 547 | Queue.push_back(block); |
| 548 | // Specify that we've already visited all successors of the starting block. |
| 549 | // This has the dual purpose of ensuring we never add it to the queue, and |
| 550 | // of marking it as not being a candidate element of the frontier. |
| 551 | SuccsVisited[block->getBlockID()] = block->succ_size(); |
| 552 | while (!Queue.empty()) { |
Robert Wilhelm | 25284cc | 2013-08-23 16:11:15 +0000 | [diff] [blame] | 553 | const CFGBlock *B = Queue.pop_back_val(); |
Richard Smith | ba8071e | 2013-09-12 18:49:10 +0000 | [diff] [blame] | 554 | |
| 555 | // If the use is always reached from the entry block, make a note of that. |
| 556 | if (B == &cfg.getEntry()) |
| 557 | Use.setUninitAfterCall(); |
| 558 | |
Richard Smith | 4323bf8 | 2012-05-25 02:17:09 +0000 | [diff] [blame] | 559 | for (CFGBlock::const_pred_iterator I = B->pred_begin(), E = B->pred_end(); |
| 560 | I != E; ++I) { |
| 561 | const CFGBlock *Pred = *I; |
Ted Kremenek | 4b6fee6 | 2014-02-27 00:24:00 +0000 | [diff] [blame] | 562 | if (!Pred) |
| 563 | continue; |
| 564 | |
Richard Smith | ba8071e | 2013-09-12 18:49:10 +0000 | [diff] [blame] | 565 | Value AtPredExit = vals.getValue(Pred, B, vd); |
| 566 | if (AtPredExit == Initialized) |
Richard Smith | 4323bf8 | 2012-05-25 02:17:09 +0000 | [diff] [blame] | 567 | // This block initializes the variable. |
| 568 | continue; |
Richard Smith | ba8071e | 2013-09-12 18:49:10 +0000 | [diff] [blame] | 569 | if (AtPredExit == MayUninitialized && |
Craig Topper | 2554294 | 2014-05-20 04:30:07 +0000 | [diff] [blame] | 570 | vals.getValue(B, nullptr, vd) == Uninitialized) { |
Richard Smith | ba8071e | 2013-09-12 18:49:10 +0000 | [diff] [blame] | 571 | // This block declares the variable (uninitialized), and is reachable |
| 572 | // from a block that initializes the variable. We can't guarantee to |
| 573 | // give an earlier location for the diagnostic (and it appears that |
| 574 | // this code is intended to be reachable) so give a diagnostic here |
| 575 | // and go no further down this path. |
| 576 | Use.setUninitAfterDecl(); |
| 577 | continue; |
| 578 | } |
Richard Smith | 4323bf8 | 2012-05-25 02:17:09 +0000 | [diff] [blame] | 579 | |
Richard Smith | 130b8d4 | 2012-07-13 23:33:44 +0000 | [diff] [blame] | 580 | unsigned &SV = SuccsVisited[Pred->getBlockID()]; |
| 581 | if (!SV) { |
| 582 | // When visiting the first successor of a block, mark all NULL |
| 583 | // successors as having been visited. |
| 584 | for (CFGBlock::const_succ_iterator SI = Pred->succ_begin(), |
| 585 | SE = Pred->succ_end(); |
| 586 | SI != SE; ++SI) |
| 587 | if (!*SI) |
| 588 | ++SV; |
| 589 | } |
| 590 | |
| 591 | if (++SV == Pred->succ_size()) |
Richard Smith | 4323bf8 | 2012-05-25 02:17:09 +0000 | [diff] [blame] | 592 | // All paths from this block lead to the use and don't initialize the |
| 593 | // variable. |
| 594 | Queue.push_back(Pred); |
| 595 | } |
| 596 | } |
| 597 | |
| 598 | // Scan the frontier, looking for blocks where the variable was |
| 599 | // uninitialized. |
| 600 | for (CFG::const_iterator BI = cfg.begin(), BE = cfg.end(); BI != BE; ++BI) { |
| 601 | const CFGBlock *Block = *BI; |
| 602 | unsigned BlockID = Block->getBlockID(); |
| 603 | const Stmt *Term = Block->getTerminator(); |
| 604 | if (SuccsVisited[BlockID] && SuccsVisited[BlockID] < Block->succ_size() && |
| 605 | Term) { |
| 606 | // This block inevitably leads to the use. If we have an edge from here |
| 607 | // to a post-dominator block, and the variable is uninitialized on that |
| 608 | // edge, we have found a bug. |
| 609 | for (CFGBlock::const_succ_iterator I = Block->succ_begin(), |
| 610 | E = Block->succ_end(); I != E; ++I) { |
| 611 | const CFGBlock *Succ = *I; |
| 612 | if (Succ && SuccsVisited[Succ->getBlockID()] >= Succ->succ_size() && |
| 613 | vals.getValue(Block, Succ, vd) == Uninitialized) { |
| 614 | // Switch cases are a special case: report the label to the caller |
| 615 | // as the 'terminator', not the switch statement itself. Suppress |
| 616 | // situations where no label matched: we can't be sure that's |
| 617 | // possible. |
| 618 | if (isa<SwitchStmt>(Term)) { |
| 619 | const Stmt *Label = Succ->getLabel(); |
| 620 | if (!Label || !isa<SwitchCase>(Label)) |
| 621 | // Might not be possible. |
| 622 | continue; |
| 623 | UninitUse::Branch Branch; |
| 624 | Branch.Terminator = Label; |
| 625 | Branch.Output = 0; // Ignored. |
| 626 | Use.addUninitBranch(Branch); |
| 627 | } else { |
| 628 | UninitUse::Branch Branch; |
| 629 | Branch.Terminator = Term; |
| 630 | Branch.Output = I - Block->succ_begin(); |
| 631 | Use.addUninitBranch(Branch); |
| 632 | } |
| 633 | } |
| 634 | } |
| 635 | } |
| 636 | } |
| 637 | |
| 638 | return Use; |
| 639 | } |
Ted Kremenek | b749a6d | 2011-01-15 02:58:47 +0000 | [diff] [blame] | 640 | }; |
| 641 | } |
| 642 | |
Richard Smith | 3d31e8b | 2012-05-24 23:45:35 +0000 | [diff] [blame] | 643 | void TransferFunctions::reportUse(const Expr *ex, const VarDecl *vd) { |
Richard Smith | 3d31e8b | 2012-05-24 23:45:35 +0000 | [diff] [blame] | 644 | Value v = vals[vd]; |
| 645 | if (isUninitialized(v)) |
Ted Kremenek | 778a6ed | 2012-11-17 07:18:30 +0000 | [diff] [blame] | 646 | handler.handleUseOfUninitVariable(vd, getUninitUse(ex, vd, v)); |
Ted Kremenek | b749a6d | 2011-01-15 02:58:47 +0000 | [diff] [blame] | 647 | } |
| 648 | |
Richard Smith | 6376d1f | 2012-07-17 00:06:14 +0000 | [diff] [blame] | 649 | void TransferFunctions::VisitObjCForCollectionStmt(ObjCForCollectionStmt *FS) { |
Ted Kremenek | 4058d87 | 2011-01-27 02:01:31 +0000 | [diff] [blame] | 650 | // This represents an initialization of the 'element' value. |
Richard Smith | 6376d1f | 2012-07-17 00:06:14 +0000 | [diff] [blame] | 651 | if (DeclStmt *DS = dyn_cast<DeclStmt>(FS->getElement())) { |
| 652 | const VarDecl *VD = cast<VarDecl>(DS->getSingleDecl()); |
| 653 | if (isTrackedVar(VD)) |
| 654 | vals[VD] = Initialized; |
Ted Kremenek | 4058d87 | 2011-01-27 02:01:31 +0000 | [diff] [blame] | 655 | } |
Ted Kremenek | 4058d87 | 2011-01-27 02:01:31 +0000 | [diff] [blame] | 656 | } |
| 657 | |
Ted Kremenek | bcf848f | 2011-01-25 19:13:48 +0000 | [diff] [blame] | 658 | void TransferFunctions::VisitBlockExpr(BlockExpr *be) { |
Ted Kremenek | 7736176 | 2011-03-31 22:32:41 +0000 | [diff] [blame] | 659 | const BlockDecl *bd = be->getBlockDecl(); |
Aaron Ballman | 9371dd2 | 2014-03-14 18:34:04 +0000 | [diff] [blame] | 660 | for (const auto &I : bd->captures()) { |
| 661 | const VarDecl *vd = I.getVariable(); |
Ted Kremenek | 7736176 | 2011-03-31 22:32:41 +0000 | [diff] [blame] | 662 | if (!isTrackedVar(vd)) |
| 663 | continue; |
Aaron Ballman | 9371dd2 | 2014-03-14 18:34:04 +0000 | [diff] [blame] | 664 | if (I.isByRef()) { |
Ted Kremenek | 7736176 | 2011-03-31 22:32:41 +0000 | [diff] [blame] | 665 | vals[vd] = Initialized; |
| 666 | continue; |
| 667 | } |
Richard Smith | 3d31e8b | 2012-05-24 23:45:35 +0000 | [diff] [blame] | 668 | reportUse(be, vd); |
Ted Kremenek | bcf848f | 2011-01-25 19:13:48 +0000 | [diff] [blame] | 669 | } |
| 670 | } |
| 671 | |
Richard Smith | b721e30 | 2012-07-02 23:23:04 +0000 | [diff] [blame] | 672 | void TransferFunctions::VisitCallExpr(CallExpr *ce) { |
Ted Kremenek | 7979ccf | 2012-09-12 05:53:43 +0000 | [diff] [blame] | 673 | if (Decl *Callee = ce->getCalleeDecl()) { |
| 674 | if (Callee->hasAttr<ReturnsTwiceAttr>()) { |
| 675 | // After a call to a function like setjmp or vfork, any variable which is |
| 676 | // initialized anywhere within this function may now be initialized. For |
| 677 | // now, just assume such a call initializes all variables. FIXME: Only |
| 678 | // mark variables as initialized if they have an initializer which is |
| 679 | // reachable from here. |
| 680 | vals.setAllScratchValues(Initialized); |
| 681 | } |
| 682 | else if (Callee->hasAttr<AnalyzerNoReturnAttr>()) { |
| 683 | // Functions labeled like "analyzer_noreturn" are often used to denote |
| 684 | // "panic" functions that in special debug situations can still return, |
| 685 | // but for the most part should not be treated as returning. This is a |
| 686 | // useful annotation borrowed from the static analyzer that is useful for |
| 687 | // suppressing branch-specific false positives when we call one of these |
| 688 | // functions but keep pretending the path continues (when in reality the |
| 689 | // user doesn't care). |
| 690 | vals.setAllScratchValues(Unknown); |
| 691 | } |
| 692 | } |
Richard Smith | b721e30 | 2012-07-02 23:23:04 +0000 | [diff] [blame] | 693 | } |
| 694 | |
Ted Kremenek | 9e100ea | 2011-07-19 14:18:48 +0000 | [diff] [blame] | 695 | void TransferFunctions::VisitDeclRefExpr(DeclRefExpr *dr) { |
Richard Smith | 6376d1f | 2012-07-17 00:06:14 +0000 | [diff] [blame] | 696 | switch (classification.get(dr)) { |
| 697 | case ClassifyRefs::Ignore: |
| 698 | break; |
| 699 | case ClassifyRefs::Use: |
| 700 | reportUse(dr, cast<VarDecl>(dr->getDecl())); |
| 701 | break; |
| 702 | case ClassifyRefs::Init: |
| 703 | vals[cast<VarDecl>(dr->getDecl())] = Initialized; |
| 704 | break; |
| 705 | case ClassifyRefs::SelfInit: |
Ted Kremenek | 778a6ed | 2012-11-17 07:18:30 +0000 | [diff] [blame] | 706 | handler.handleSelfInit(cast<VarDecl>(dr->getDecl())); |
Richard Smith | 6376d1f | 2012-07-17 00:06:14 +0000 | [diff] [blame] | 707 | break; |
| 708 | } |
Ted Kremenek | 9e100ea | 2011-07-19 14:18:48 +0000 | [diff] [blame] | 709 | } |
| 710 | |
Richard Smith | 6376d1f | 2012-07-17 00:06:14 +0000 | [diff] [blame] | 711 | void TransferFunctions::VisitBinaryOperator(BinaryOperator *BO) { |
| 712 | if (BO->getOpcode() == BO_Assign) { |
| 713 | FindVarResult Var = findVar(BO->getLHS()); |
| 714 | if (const VarDecl *VD = Var.getDecl()) |
| 715 | vals[VD] = Initialized; |
| 716 | } |
| 717 | } |
| 718 | |
| 719 | void TransferFunctions::VisitDeclStmt(DeclStmt *DS) { |
Aaron Ballman | 535bbcc | 2014-03-14 17:01:24 +0000 | [diff] [blame] | 720 | for (auto *DI : DS->decls()) { |
| 721 | VarDecl *VD = dyn_cast<VarDecl>(DI); |
Richard Smith | 6376d1f | 2012-07-17 00:06:14 +0000 | [diff] [blame] | 722 | if (VD && isTrackedVar(VD)) { |
| 723 | if (getSelfInitExpr(VD)) { |
| 724 | // If the initializer consists solely of a reference to itself, we |
| 725 | // explicitly mark the variable as uninitialized. This allows code |
| 726 | // like the following: |
| 727 | // |
| 728 | // int x = x; |
| 729 | // |
| 730 | // to deliberately leave a variable uninitialized. Different analysis |
| 731 | // clients can detect this pattern and adjust their reporting |
| 732 | // appropriately, but we need to continue to analyze subsequent uses |
| 733 | // of the variable. |
| 734 | vals[VD] = Uninitialized; |
| 735 | } else if (VD->getInit()) { |
| 736 | // Treat the new variable as initialized. |
| 737 | vals[VD] = Initialized; |
| 738 | } else { |
| 739 | // No initializer: the variable is now uninitialized. This matters |
| 740 | // for cases like: |
| 741 | // while (...) { |
| 742 | // int n; |
| 743 | // use(n); |
| 744 | // n = 0; |
| 745 | // } |
| 746 | // FIXME: Mark the variable as uninitialized whenever its scope is |
| 747 | // left, since its scope could be re-entered by a jump over the |
| 748 | // declaration. |
| 749 | vals[VD] = Uninitialized; |
Ted Kremenek | b63931e | 2011-01-18 21:18:58 +0000 | [diff] [blame] | 750 | } |
Ted Kremenek | b749a6d | 2011-01-15 02:58:47 +0000 | [diff] [blame] | 751 | } |
| 752 | } |
| 753 | } |
| 754 | |
Ted Kremenek | edf22ed | 2012-09-13 00:21:35 +0000 | [diff] [blame] | 755 | void TransferFunctions::VisitObjCMessageExpr(ObjCMessageExpr *ME) { |
| 756 | // If the Objective-C message expression is an implicit no-return that |
| 757 | // is not modeled in the CFG, set the tracked dataflow values to Unknown. |
| 758 | if (objCNoRet.isImplicitNoReturn(ME)) { |
| 759 | vals.setAllScratchValues(Unknown); |
| 760 | } |
| 761 | } |
| 762 | |
Ted Kremenek | b749a6d | 2011-01-15 02:58:47 +0000 | [diff] [blame] | 763 | //------------------------------------------------------------------------====// |
| 764 | // High-level "driver" logic for uninitialized values analysis. |
| 765 | //====------------------------------------------------------------------------// |
| 766 | |
Ted Kremenek | b82ddd6 | 2011-01-20 17:37:17 +0000 | [diff] [blame] | 767 | static bool runOnBlock(const CFGBlock *block, const CFG &cfg, |
Ted Kremenek | 81ce1c8 | 2011-10-24 01:32:45 +0000 | [diff] [blame] | 768 | AnalysisDeclContext &ac, CFGBlockValues &vals, |
Richard Smith | 6376d1f | 2012-07-17 00:06:14 +0000 | [diff] [blame] | 769 | const ClassifyRefs &classification, |
Ted Kremenek | 352a708 | 2011-04-04 20:30:58 +0000 | [diff] [blame] | 770 | llvm::BitVector &wasAnalyzed, |
Ted Kremenek | 778a6ed | 2012-11-17 07:18:30 +0000 | [diff] [blame] | 771 | UninitVariablesHandler &handler) { |
Ted Kremenek | 352a708 | 2011-04-04 20:30:58 +0000 | [diff] [blame] | 772 | wasAnalyzed[block->getBlockID()] = true; |
Ted Kremenek | b749a6d | 2011-01-15 02:58:47 +0000 | [diff] [blame] | 773 | vals.resetScratch(); |
Ted Kremenek | 6080d32 | 2012-07-19 04:59:05 +0000 | [diff] [blame] | 774 | // Merge in values of predecessor blocks. |
Ted Kremenek | b749a6d | 2011-01-15 02:58:47 +0000 | [diff] [blame] | 775 | bool isFirst = true; |
| 776 | for (CFGBlock::const_pred_iterator I = block->pred_begin(), |
| 777 | E = block->pred_end(); I != E; ++I) { |
Ted Kremenek | aed4677 | 2011-09-02 19:39:26 +0000 | [diff] [blame] | 778 | const CFGBlock *pred = *I; |
Ted Kremenek | 4b6fee6 | 2014-02-27 00:24:00 +0000 | [diff] [blame] | 779 | if (!pred) |
| 780 | continue; |
Ted Kremenek | aed4677 | 2011-09-02 19:39:26 +0000 | [diff] [blame] | 781 | if (wasAnalyzed[pred->getBlockID()]) { |
Ted Kremenek | 6080d32 | 2012-07-19 04:59:05 +0000 | [diff] [blame] | 782 | vals.mergeIntoScratch(vals.getValueVector(pred), isFirst); |
Ted Kremenek | aed4677 | 2011-09-02 19:39:26 +0000 | [diff] [blame] | 783 | isFirst = false; |
| 784 | } |
Ted Kremenek | b749a6d | 2011-01-15 02:58:47 +0000 | [diff] [blame] | 785 | } |
| 786 | // Apply the transfer function. |
Richard Smith | 6376d1f | 2012-07-17 00:06:14 +0000 | [diff] [blame] | 787 | TransferFunctions tf(vals, cfg, block, ac, classification, handler); |
Ted Kremenek | b749a6d | 2011-01-15 02:58:47 +0000 | [diff] [blame] | 788 | for (CFGBlock::const_iterator I = block->begin(), E = block->end(); |
| 789 | I != E; ++I) { |
David Blaikie | 00be69a | 2013-02-23 00:29:34 +0000 | [diff] [blame] | 790 | if (Optional<CFGStmt> cs = I->getAs<CFGStmt>()) |
| 791 | tf.Visit(const_cast<Stmt*>(cs->getStmt())); |
Ted Kremenek | b749a6d | 2011-01-15 02:58:47 +0000 | [diff] [blame] | 792 | } |
Ted Kremenek | a895fe9 | 2011-03-15 04:57:27 +0000 | [diff] [blame] | 793 | return vals.updateValueVectorWithScratch(block); |
Ted Kremenek | b749a6d | 2011-01-15 02:58:47 +0000 | [diff] [blame] | 794 | } |
| 795 | |
Ted Kremenek | 778a6ed | 2012-11-17 07:18:30 +0000 | [diff] [blame] | 796 | /// PruneBlocksHandler is a special UninitVariablesHandler that is used |
| 797 | /// to detect when a CFGBlock has any *potential* use of an uninitialized |
| 798 | /// variable. It is mainly used to prune out work during the final |
| 799 | /// reporting pass. |
| 800 | namespace { |
| 801 | struct PruneBlocksHandler : public UninitVariablesHandler { |
| 802 | PruneBlocksHandler(unsigned numBlocks) |
| 803 | : hadUse(numBlocks, false), hadAnyUse(false), |
| 804 | currentBlock(0) {} |
| 805 | |
| 806 | virtual ~PruneBlocksHandler() {} |
| 807 | |
| 808 | /// Records if a CFGBlock had a potential use of an uninitialized variable. |
| 809 | llvm::BitVector hadUse; |
| 810 | |
| 811 | /// Records if any CFGBlock had a potential use of an uninitialized variable. |
| 812 | bool hadAnyUse; |
| 813 | |
| 814 | /// The current block to scribble use information. |
| 815 | unsigned currentBlock; |
| 816 | |
Craig Topper | b45acb8 | 2014-03-14 06:02:07 +0000 | [diff] [blame] | 817 | void handleUseOfUninitVariable(const VarDecl *vd, |
| 818 | const UninitUse &use) override { |
Ted Kremenek | 778a6ed | 2012-11-17 07:18:30 +0000 | [diff] [blame] | 819 | hadUse[currentBlock] = true; |
| 820 | hadAnyUse = true; |
| 821 | } |
| 822 | |
| 823 | /// Called when the uninitialized variable analysis detects the |
| 824 | /// idiom 'int x = x'. All other uses of 'x' within the initializer |
| 825 | /// are handled by handleUseOfUninitVariable. |
Craig Topper | b45acb8 | 2014-03-14 06:02:07 +0000 | [diff] [blame] | 826 | void handleSelfInit(const VarDecl *vd) override { |
Ted Kremenek | 778a6ed | 2012-11-17 07:18:30 +0000 | [diff] [blame] | 827 | hadUse[currentBlock] = true; |
| 828 | hadAnyUse = true; |
| 829 | } |
| 830 | }; |
| 831 | } |
| 832 | |
Chandler Carruth | b4836ea | 2011-07-06 16:21:37 +0000 | [diff] [blame] | 833 | void clang::runUninitializedVariablesAnalysis( |
| 834 | const DeclContext &dc, |
| 835 | const CFG &cfg, |
Ted Kremenek | 81ce1c8 | 2011-10-24 01:32:45 +0000 | [diff] [blame] | 836 | AnalysisDeclContext &ac, |
Chandler Carruth | b4836ea | 2011-07-06 16:21:37 +0000 | [diff] [blame] | 837 | UninitVariablesHandler &handler, |
| 838 | UninitVariablesAnalysisStats &stats) { |
Ted Kremenek | b749a6d | 2011-01-15 02:58:47 +0000 | [diff] [blame] | 839 | CFGBlockValues vals(cfg); |
| 840 | vals.computeSetOfDeclarations(dc); |
| 841 | if (vals.hasNoDeclarations()) |
| 842 | return; |
Ted Kremenek | 3788193 | 2011-04-04 23:29:12 +0000 | [diff] [blame] | 843 | |
Chandler Carruth | b4836ea | 2011-07-06 16:21:37 +0000 | [diff] [blame] | 844 | stats.NumVariablesAnalyzed = vals.getNumEntries(); |
| 845 | |
Richard Smith | 6376d1f | 2012-07-17 00:06:14 +0000 | [diff] [blame] | 846 | // Precompute which expressions are uses and which are initializations. |
| 847 | ClassifyRefs classification(ac); |
| 848 | cfg.VisitBlockStmts(classification); |
| 849 | |
Ted Kremenek | 3788193 | 2011-04-04 23:29:12 +0000 | [diff] [blame] | 850 | // Mark all variables uninitialized at the entry. |
| 851 | const CFGBlock &entry = cfg.getEntry(); |
Ted Kremenek | 6080d32 | 2012-07-19 04:59:05 +0000 | [diff] [blame] | 852 | ValueVector &vec = vals.getValueVector(&entry); |
| 853 | const unsigned n = vals.getNumEntries(); |
| 854 | for (unsigned j = 0; j < n ; ++j) { |
| 855 | vec[j] = Uninitialized; |
Ted Kremenek | 3788193 | 2011-04-04 23:29:12 +0000 | [diff] [blame] | 856 | } |
| 857 | |
| 858 | // Proceed with the workist. |
Artyom Skrobov | 2772076 | 2014-09-23 08:34:41 +0000 | [diff] [blame^] | 859 | DataflowWorklist worklist(cfg, *ac.getAnalysis<PostOrderCFGView>()); |
Ted Kremenek | 9b15c96 | 2011-03-15 04:57:32 +0000 | [diff] [blame] | 860 | llvm::BitVector previouslyVisited(cfg.getNumBlockIDs()); |
Ted Kremenek | b749a6d | 2011-01-15 02:58:47 +0000 | [diff] [blame] | 861 | worklist.enqueueSuccessors(&cfg.getEntry()); |
Ted Kremenek | 352a708 | 2011-04-04 20:30:58 +0000 | [diff] [blame] | 862 | llvm::BitVector wasAnalyzed(cfg.getNumBlockIDs(), false); |
Ted Kremenek | aed4677 | 2011-09-02 19:39:26 +0000 | [diff] [blame] | 863 | wasAnalyzed[cfg.getEntry().getBlockID()] = true; |
Ted Kremenek | 778a6ed | 2012-11-17 07:18:30 +0000 | [diff] [blame] | 864 | PruneBlocksHandler PBH(cfg.getNumBlockIDs()); |
Ted Kremenek | b749a6d | 2011-01-15 02:58:47 +0000 | [diff] [blame] | 865 | |
| 866 | while (const CFGBlock *block = worklist.dequeue()) { |
Ted Kremenek | 778a6ed | 2012-11-17 07:18:30 +0000 | [diff] [blame] | 867 | PBH.currentBlock = block->getBlockID(); |
| 868 | |
Ted Kremenek | b749a6d | 2011-01-15 02:58:47 +0000 | [diff] [blame] | 869 | // Did the block change? |
Richard Smith | 6376d1f | 2012-07-17 00:06:14 +0000 | [diff] [blame] | 870 | bool changed = runOnBlock(block, cfg, ac, vals, |
Ted Kremenek | 778a6ed | 2012-11-17 07:18:30 +0000 | [diff] [blame] | 871 | classification, wasAnalyzed, PBH); |
Chandler Carruth | b4836ea | 2011-07-06 16:21:37 +0000 | [diff] [blame] | 872 | ++stats.NumBlockVisits; |
Ted Kremenek | b749a6d | 2011-01-15 02:58:47 +0000 | [diff] [blame] | 873 | if (changed || !previouslyVisited[block->getBlockID()]) |
| 874 | worklist.enqueueSuccessors(block); |
| 875 | previouslyVisited[block->getBlockID()] = true; |
| 876 | } |
Ted Kremenek | 778a6ed | 2012-11-17 07:18:30 +0000 | [diff] [blame] | 877 | |
| 878 | if (!PBH.hadAnyUse) |
| 879 | return; |
| 880 | |
Enea Zaffanella | 392291f | 2013-01-11 11:37:08 +0000 | [diff] [blame] | 881 | // Run through the blocks one more time, and report uninitialized variables. |
Ted Kremenek | b749a6d | 2011-01-15 02:58:47 +0000 | [diff] [blame] | 882 | for (CFG::const_iterator BI = cfg.begin(), BE = cfg.end(); BI != BE; ++BI) { |
Ted Kremenek | aed4677 | 2011-09-02 19:39:26 +0000 | [diff] [blame] | 883 | const CFGBlock *block = *BI; |
Ted Kremenek | 778a6ed | 2012-11-17 07:18:30 +0000 | [diff] [blame] | 884 | if (PBH.hadUse[block->getBlockID()]) { |
| 885 | runOnBlock(block, cfg, ac, vals, classification, wasAnalyzed, handler); |
Chandler Carruth | b4836ea | 2011-07-06 16:21:37 +0000 | [diff] [blame] | 886 | ++stats.NumBlockVisits; |
| 887 | } |
Ted Kremenek | b749a6d | 2011-01-15 02:58:47 +0000 | [diff] [blame] | 888 | } |
| 889 | } |
| 890 | |
| 891 | UninitVariablesHandler::~UninitVariablesHandler() {} |