blob: e3dcb92378618b7148f49c387c3996831530d5f9 [file] [log] [blame]
DeLesley Hutchins48a31762013-08-12 21:20:55 +00001//===- Consumed.cpp --------------------------------------------*- C++ --*-===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// A intra-procedural analysis for checking consumed properties. This is based,
11// in part, on research on linear types.
12//
13//===----------------------------------------------------------------------===//
14
15#include "clang/AST/ASTContext.h"
16#include "clang/AST/Attr.h"
17#include "clang/AST/DeclCXX.h"
18#include "clang/AST/ExprCXX.h"
19#include "clang/AST/RecursiveASTVisitor.h"
DeLesley Hutchins48a31762013-08-12 21:20:55 +000020#include "clang/AST/StmtCXX.h"
Chandler Carruth5553d0d2014-01-07 11:51:46 +000021#include "clang/AST/StmtVisitor.h"
DeLesley Hutchins48a31762013-08-12 21:20:55 +000022#include "clang/AST/Type.h"
Chandler Carruth5553d0d2014-01-07 11:51:46 +000023#include "clang/Analysis/Analyses/Consumed.h"
DeLesley Hutchins48a31762013-08-12 21:20:55 +000024#include "clang/Analysis/Analyses/PostOrderCFGView.h"
25#include "clang/Analysis/AnalysisContext.h"
26#include "clang/Analysis/CFG.h"
DeLesley Hutchins48a31762013-08-12 21:20:55 +000027#include "clang/Basic/OperatorKinds.h"
28#include "clang/Basic/SourceLocation.h"
DeLesley Hutchins48a31762013-08-12 21:20:55 +000029#include "llvm/ADT/DenseMap.h"
30#include "llvm/ADT/SmallVector.h"
DeLesley Hutchins5533ec52013-08-29 17:26:57 +000031#include "llvm/Support/Compiler.h"
DeLesley Hutchins48a31762013-08-12 21:20:55 +000032#include "llvm/Support/raw_ostream.h"
Ahmed Charlesdfca6f92014-03-09 11:36:40 +000033#include <memory>
DeLesley Hutchins48a31762013-08-12 21:20:55 +000034
DeLesley Hutchins68cc3f12013-11-16 00:22:43 +000035// TODO: Adjust states of args to constructors in the same way that arguments to
36// function calls are handled.
37// TODO: Use information from tests in for- and while-loop conditional.
DeLesley Hutchinsfc368252013-09-03 20:11:38 +000038// TODO: Add notes about the actual and expected state for
DeLesley Hutchins5533ec52013-08-29 17:26:57 +000039// TODO: Correctly identify unreachable blocks when chaining boolean operators.
DeLesley Hutchins210791a2013-10-04 21:28:06 +000040// TODO: Adjust the parser and AttributesList class to support lists of
41// identifiers.
DeLesley Hutchins5533ec52013-08-29 17:26:57 +000042// TODO: Warn about unreachable code.
43// TODO: Switch to using a bitmap to track unreachable blocks.
DeLesley Hutchins5533ec52013-08-29 17:26:57 +000044// TODO: Handle variable definitions, e.g. bool valid = x.isValid();
45// if (valid) ...; (Deferred)
DeLesley Hutchins48a31762013-08-12 21:20:55 +000046// TODO: Take notes on state transitions to provide better warning messages.
47// (Deferred)
48// TODO: Test nested conditionals: A) Checking the same value multiple times,
49// and 2) Checking different values. (Deferred)
DeLesley Hutchins48a31762013-08-12 21:20:55 +000050
51using namespace clang;
52using namespace consumed;
53
54// Key method definition
55ConsumedWarningsHandlerBase::~ConsumedWarningsHandlerBase() {}
56
DeLesley Hutchins65013202013-10-17 18:19:31 +000057static SourceLocation getFirstStmtLoc(const CFGBlock *Block) {
58 // Find the source location of the first statement in the block, if the block
59 // is not empty.
Aaron Ballman35897d92014-04-28 14:56:59 +000060 for (const auto &B : *Block)
61 if (Optional<CFGStmt> CS = B.getAs<CFGStmt>())
DeLesley Hutchins65013202013-10-17 18:19:31 +000062 return CS->getStmt()->getLocStart();
DeLesley Hutchins65013202013-10-17 18:19:31 +000063
64 // Block is empty.
65 // If we have one successor, return the first statement in that block
66 if (Block->succ_size() == 1 && *Block->succ_begin())
67 return getFirstStmtLoc(*Block->succ_begin());
68
69 return SourceLocation();
70}
71
DeLesley Hutchinsfbdee4e2013-10-11 21:55:33 +000072static SourceLocation getLastStmtLoc(const CFGBlock *Block) {
DeLesley Hutchins3277a612013-10-09 18:30:24 +000073 // Find the source location of the last statement in the block, if the block
74 // is not empty.
DeLesley Hutchinsfbdee4e2013-10-11 21:55:33 +000075 if (const Stmt *StmtNode = Block->getTerminator()) {
DeLesley Hutchins3277a612013-10-09 18:30:24 +000076 return StmtNode->getLocStart();
77 } else {
DeLesley Hutchinsfbdee4e2013-10-11 21:55:33 +000078 for (CFGBlock::const_reverse_iterator BI = Block->rbegin(),
79 BE = Block->rend(); BI != BE; ++BI) {
DeLesley Hutchins3277a612013-10-09 18:30:24 +000080 if (Optional<CFGStmt> CS = BI->getAs<CFGStmt>())
81 return CS->getStmt()->getLocStart();
82 }
83 }
DeLesley Hutchins65013202013-10-17 18:19:31 +000084
85 // If we have one successor, return the first statement in that block
86 SourceLocation Loc;
87 if (Block->succ_size() == 1 && *Block->succ_begin())
88 Loc = getFirstStmtLoc(*Block->succ_begin());
89 if (Loc.isValid())
90 return Loc;
DeLesley Hutchins36ea1dd2013-10-17 22:53:04 +000091
DeLesley Hutchins65013202013-10-17 18:19:31 +000092 // If we have one predecessor, return the last statement in that block
93 if (Block->pred_size() == 1 && *Block->pred_begin())
94 return getLastStmtLoc(*Block->pred_begin());
95
96 return Loc;
DeLesley Hutchins3277a612013-10-09 18:30:24 +000097}
98
DeLesley Hutchins5533ec52013-08-29 17:26:57 +000099static ConsumedState invertConsumedUnconsumed(ConsumedState State) {
100 switch (State) {
101 case CS_Unconsumed:
102 return CS_Consumed;
103 case CS_Consumed:
104 return CS_Unconsumed;
105 case CS_None:
106 return CS_None;
107 case CS_Unknown:
108 return CS_Unknown;
109 }
110 llvm_unreachable("invalid enum");
111}
112
DeLesley Hutchins210791a2013-10-04 21:28:06 +0000113static bool isCallableInState(const CallableWhenAttr *CWAttr,
114 ConsumedState State) {
115
Aaron Ballmana82eaa72014-05-02 13:35:42 +0000116 for (const auto &S : CWAttr->callableStates()) {
DeLesley Hutchins210791a2013-10-04 21:28:06 +0000117 ConsumedState MappedAttrState = CS_None;
Aaron Ballmana82eaa72014-05-02 13:35:42 +0000118
119 switch (S) {
DeLesley Hutchins210791a2013-10-04 21:28:06 +0000120 case CallableWhenAttr::Unknown:
121 MappedAttrState = CS_Unknown;
122 break;
123
124 case CallableWhenAttr::Unconsumed:
125 MappedAttrState = CS_Unconsumed;
126 break;
127
128 case CallableWhenAttr::Consumed:
129 MappedAttrState = CS_Consumed;
130 break;
131 }
132
133 if (MappedAttrState == State)
134 return true;
135 }
136
137 return false;
138}
139
DeLesley Hutchinsf28bbec2014-01-14 00:36:53 +0000140
DeLesley Hutchins5a715c42013-08-30 22:56:34 +0000141static bool isConsumableType(const QualType &QT) {
Chris Wailes93edffa2013-10-31 15:38:12 +0000142 if (QT->isPointerType() || QT->isReferenceType())
143 return false;
144
DeLesley Hutchins5a715c42013-08-30 22:56:34 +0000145 if (const CXXRecordDecl *RD = QT->getAsCXXRecordDecl())
146 return RD->hasAttr<ConsumableAttr>();
Chris Wailes93edffa2013-10-31 15:38:12 +0000147
148 return false;
DeLesley Hutchins5a715c42013-08-30 22:56:34 +0000149}
150
DeLesley Hutchinsf28bbec2014-01-14 00:36:53 +0000151static bool isAutoCastType(const QualType &QT) {
152 if (QT->isPointerType() || QT->isReferenceType())
153 return false;
154
155 if (const CXXRecordDecl *RD = QT->getAsCXXRecordDecl())
156 return RD->hasAttr<ConsumableAutoCastAttr>();
157
158 return false;
159}
160
161static bool isSetOnReadPtrType(const QualType &QT) {
162 if (const CXXRecordDecl *RD = QT->getPointeeCXXRecordDecl())
163 return RD->hasAttr<ConsumableSetOnReadAttr>();
164 return false;
165}
166
167
DeLesley Hutchins5533ec52013-08-29 17:26:57 +0000168static bool isKnownState(ConsumedState State) {
169 switch (State) {
170 case CS_Unconsumed:
171 case CS_Consumed:
172 return true;
173 case CS_None:
174 case CS_Unknown:
175 return false;
176 }
Aaron Ballmana21f4b82013-08-29 20:36:09 +0000177 llvm_unreachable("invalid enum");
DeLesley Hutchins5533ec52013-08-29 17:26:57 +0000178}
179
DeLesley Hutchins80a38422014-01-16 23:07:16 +0000180static bool isRValueRef(QualType ParamType) {
181 return ParamType->isRValueReferenceType();
DeLesley Hutchins0bd25892013-10-18 19:25:18 +0000182}
183
DeLesley Hutchinsc2ecf0d2013-08-22 20:44:47 +0000184static bool isTestingFunction(const FunctionDecl *FunDecl) {
Chris Wailes9385f9f2013-10-29 20:28:41 +0000185 return FunDecl->hasAttr<TestTypestateAttr>();
DeLesley Hutchinsc2ecf0d2013-08-22 20:44:47 +0000186}
187
DeLesley Hutchinsf28bbec2014-01-14 00:36:53 +0000188static bool isPointerOrRef(QualType ParamType) {
189 return ParamType->isPointerType() || ParamType->isReferenceType();
DeLesley Hutchins0bd25892013-10-18 19:25:18 +0000190}
191
David Blaikie16f76d22013-09-06 01:28:43 +0000192static ConsumedState mapConsumableAttrState(const QualType QT) {
193 assert(isConsumableType(QT));
194
195 const ConsumableAttr *CAttr =
196 QT->getAsCXXRecordDecl()->getAttr<ConsumableAttr>();
197
198 switch (CAttr->getDefaultState()) {
199 case ConsumableAttr::Unknown:
200 return CS_Unknown;
201 case ConsumableAttr::Unconsumed:
202 return CS_Unconsumed;
203 case ConsumableAttr::Consumed:
204 return CS_Consumed;
205 }
206 llvm_unreachable("invalid enum");
207}
208
DeLesley Hutchins69391772013-10-17 23:23:53 +0000209static ConsumedState
210mapParamTypestateAttrState(const ParamTypestateAttr *PTAttr) {
211 switch (PTAttr->getParamState()) {
212 case ParamTypestateAttr::Unknown:
DeLesley Hutchins33a29342013-10-11 23:03:26 +0000213 return CS_Unknown;
DeLesley Hutchins69391772013-10-17 23:23:53 +0000214 case ParamTypestateAttr::Unconsumed:
DeLesley Hutchins33a29342013-10-11 23:03:26 +0000215 return CS_Unconsumed;
DeLesley Hutchins69391772013-10-17 23:23:53 +0000216 case ParamTypestateAttr::Consumed:
DeLesley Hutchins33a29342013-10-11 23:03:26 +0000217 return CS_Consumed;
218 }
219 llvm_unreachable("invalid_enum");
220}
221
Eric Christopherde156242013-09-03 20:43:00 +0000222static ConsumedState
223mapReturnTypestateAttrState(const ReturnTypestateAttr *RTSAttr) {
DeLesley Hutchinsfc368252013-09-03 20:11:38 +0000224 switch (RTSAttr->getState()) {
225 case ReturnTypestateAttr::Unknown:
226 return CS_Unknown;
227 case ReturnTypestateAttr::Unconsumed:
228 return CS_Unconsumed;
229 case ReturnTypestateAttr::Consumed:
230 return CS_Consumed;
231 }
Eric Christopherde156242013-09-03 20:43:00 +0000232 llvm_unreachable("invalid enum");
DeLesley Hutchinsfc368252013-09-03 20:11:38 +0000233}
234
DeLesley Hutchins69391772013-10-17 23:23:53 +0000235static ConsumedState mapSetTypestateAttrState(const SetTypestateAttr *STAttr) {
236 switch (STAttr->getNewState()) {
237 case SetTypestateAttr::Unknown:
238 return CS_Unknown;
239 case SetTypestateAttr::Unconsumed:
240 return CS_Unconsumed;
241 case SetTypestateAttr::Consumed:
242 return CS_Consumed;
243 }
244 llvm_unreachable("invalid_enum");
245}
246
DeLesley Hutchins48a31762013-08-12 21:20:55 +0000247static StringRef stateToString(ConsumedState State) {
248 switch (State) {
249 case consumed::CS_None:
250 return "none";
251
252 case consumed::CS_Unknown:
253 return "unknown";
254
255 case consumed::CS_Unconsumed:
256 return "unconsumed";
257
258 case consumed::CS_Consumed:
259 return "consumed";
260 }
Reid Kleckner6454d0a2013-08-13 00:11:59 +0000261 llvm_unreachable("invalid enum");
DeLesley Hutchins48a31762013-08-12 21:20:55 +0000262}
263
DeLesley Hutchins8d41d992013-10-11 22:30:48 +0000264static ConsumedState testsFor(const FunctionDecl *FunDecl) {
265 assert(isTestingFunction(FunDecl));
Chris Wailes9385f9f2013-10-29 20:28:41 +0000266 switch (FunDecl->getAttr<TestTypestateAttr>()->getTestState()) {
267 case TestTypestateAttr::Unconsumed:
DeLesley Hutchins8d41d992013-10-11 22:30:48 +0000268 return CS_Unconsumed;
Chris Wailes9385f9f2013-10-29 20:28:41 +0000269 case TestTypestateAttr::Consumed:
DeLesley Hutchins8d41d992013-10-11 22:30:48 +0000270 return CS_Consumed;
271 }
272 llvm_unreachable("invalid enum");
273}
274
DeLesley Hutchins48a31762013-08-12 21:20:55 +0000275namespace {
DeLesley Hutchins5533ec52013-08-29 17:26:57 +0000276struct VarTestResult {
277 const VarDecl *Var;
278 ConsumedState TestsFor;
279};
280} // end anonymous::VarTestResult
281
282namespace clang {
283namespace consumed {
284
285enum EffectiveOp {
286 EO_And,
287 EO_Or
288};
289
290class PropagationInfo {
291 enum {
292 IT_None,
293 IT_State,
DeLesley Hutchins68cc3f12013-11-16 00:22:43 +0000294 IT_VarTest,
DeLesley Hutchins5533ec52013-08-29 17:26:57 +0000295 IT_BinTest,
DeLesley Hutchins68cc3f12013-11-16 00:22:43 +0000296 IT_Var,
297 IT_Tmp
DeLesley Hutchins5533ec52013-08-29 17:26:57 +0000298 } InfoType;
Eric Christopherf8a1baa2013-08-29 18:00:58 +0000299
300 struct BinTestTy {
301 const BinaryOperator *Source;
302 EffectiveOp EOp;
303 VarTestResult LTest;
304 VarTestResult RTest;
305 };
DeLesley Hutchins48a31762013-08-12 21:20:55 +0000306
DeLesley Hutchins5533ec52013-08-29 17:26:57 +0000307 union {
DeLesley Hutchins48a31762013-08-12 21:20:55 +0000308 ConsumedState State;
DeLesley Hutchins68cc3f12013-11-16 00:22:43 +0000309 VarTestResult VarTest;
DeLesley Hutchins48a31762013-08-12 21:20:55 +0000310 const VarDecl *Var;
DeLesley Hutchins68cc3f12013-11-16 00:22:43 +0000311 const CXXBindTemporaryExpr *Tmp;
Eric Christopherf8a1baa2013-08-29 18:00:58 +0000312 BinTestTy BinTest;
DeLesley Hutchins48a31762013-08-12 21:20:55 +0000313 };
314
DeLesley Hutchins5533ec52013-08-29 17:26:57 +0000315public:
316 PropagationInfo() : InfoType(IT_None) {}
DeLesley Hutchins48a31762013-08-12 21:20:55 +0000317
DeLesley Hutchins68cc3f12013-11-16 00:22:43 +0000318 PropagationInfo(const VarTestResult &VarTest)
319 : InfoType(IT_VarTest), VarTest(VarTest) {}
320
DeLesley Hutchins5533ec52013-08-29 17:26:57 +0000321 PropagationInfo(const VarDecl *Var, ConsumedState TestsFor)
DeLesley Hutchins68cc3f12013-11-16 00:22:43 +0000322 : InfoType(IT_VarTest) {
DeLesley Hutchins48a31762013-08-12 21:20:55 +0000323
DeLesley Hutchins68cc3f12013-11-16 00:22:43 +0000324 VarTest.Var = Var;
325 VarTest.TestsFor = TestsFor;
DeLesley Hutchins5533ec52013-08-29 17:26:57 +0000326 }
327
328 PropagationInfo(const BinaryOperator *Source, EffectiveOp EOp,
329 const VarTestResult &LTest, const VarTestResult &RTest)
330 : InfoType(IT_BinTest) {
331
332 BinTest.Source = Source;
333 BinTest.EOp = EOp;
334 BinTest.LTest = LTest;
335 BinTest.RTest = RTest;
336 }
337
338 PropagationInfo(const BinaryOperator *Source, EffectiveOp EOp,
339 const VarDecl *LVar, ConsumedState LTestsFor,
340 const VarDecl *RVar, ConsumedState RTestsFor)
341 : InfoType(IT_BinTest) {
342
343 BinTest.Source = Source;
344 BinTest.EOp = EOp;
345 BinTest.LTest.Var = LVar;
346 BinTest.LTest.TestsFor = LTestsFor;
347 BinTest.RTest.Var = RVar;
348 BinTest.RTest.TestsFor = RTestsFor;
349 }
350
DeLesley Hutchins68cc3f12013-11-16 00:22:43 +0000351 PropagationInfo(ConsumedState State)
352 : InfoType(IT_State), State(State) {}
DeLesley Hutchins210791a2013-10-04 21:28:06 +0000353
DeLesley Hutchins5533ec52013-08-29 17:26:57 +0000354 PropagationInfo(const VarDecl *Var) : InfoType(IT_Var), Var(Var) {}
DeLesley Hutchins68cc3f12013-11-16 00:22:43 +0000355 PropagationInfo(const CXXBindTemporaryExpr *Tmp)
356 : InfoType(IT_Tmp), Tmp(Tmp) {}
DeLesley Hutchins5533ec52013-08-29 17:26:57 +0000357
358 const ConsumedState & getState() const {
359 assert(InfoType == IT_State);
360 return State;
361 }
362
DeLesley Hutchins68cc3f12013-11-16 00:22:43 +0000363 const VarTestResult & getVarTest() const {
364 assert(InfoType == IT_VarTest);
365 return VarTest;
DeLesley Hutchins5533ec52013-08-29 17:26:57 +0000366 }
367
368 const VarTestResult & getLTest() const {
369 assert(InfoType == IT_BinTest);
370 return BinTest.LTest;
371 }
372
373 const VarTestResult & getRTest() const {
374 assert(InfoType == IT_BinTest);
375 return BinTest.RTest;
376 }
377
378 const VarDecl * getVar() const {
379 assert(InfoType == IT_Var);
380 return Var;
381 }
382
DeLesley Hutchins68cc3f12013-11-16 00:22:43 +0000383 const CXXBindTemporaryExpr * getTmp() const {
384 assert(InfoType == IT_Tmp);
385 return Tmp;
386 }
387
388 ConsumedState getAsState(const ConsumedStateMap *StateMap) const {
389 assert(isVar() || isTmp() || isState());
390
391 if (isVar())
392 return StateMap->getState(Var);
393 else if (isTmp())
394 return StateMap->getState(Tmp);
395 else if (isState())
396 return State;
397 else
398 return CS_None;
399 }
400
DeLesley Hutchins5533ec52013-08-29 17:26:57 +0000401 EffectiveOp testEffectiveOp() const {
402 assert(InfoType == IT_BinTest);
403 return BinTest.EOp;
404 }
405
406 const BinaryOperator * testSourceNode() const {
407 assert(InfoType == IT_BinTest);
408 return BinTest.Source;
409 }
410
DeLesley Hutchins68cc3f12013-11-16 00:22:43 +0000411 inline bool isValid() const { return InfoType != IT_None; }
412 inline bool isState() const { return InfoType == IT_State; }
413 inline bool isVarTest() const { return InfoType == IT_VarTest; }
414 inline bool isBinTest() const { return InfoType == IT_BinTest; }
415 inline bool isVar() const { return InfoType == IT_Var; }
416 inline bool isTmp() const { return InfoType == IT_Tmp; }
417
418 bool isTest() const {
419 return InfoType == IT_VarTest || InfoType == IT_BinTest;
420 }
421
422 bool isPointerToValue() const {
423 return InfoType == IT_Var || InfoType == IT_Tmp;
424 }
DeLesley Hutchins5533ec52013-08-29 17:26:57 +0000425
426 PropagationInfo invertTest() const {
DeLesley Hutchins68cc3f12013-11-16 00:22:43 +0000427 assert(InfoType == IT_VarTest || InfoType == IT_BinTest);
DeLesley Hutchins5533ec52013-08-29 17:26:57 +0000428
DeLesley Hutchins68cc3f12013-11-16 00:22:43 +0000429 if (InfoType == IT_VarTest) {
430 return PropagationInfo(VarTest.Var,
431 invertConsumedUnconsumed(VarTest.TestsFor));
DeLesley Hutchins5533ec52013-08-29 17:26:57 +0000432
433 } else if (InfoType == IT_BinTest) {
434 return PropagationInfo(BinTest.Source,
435 BinTest.EOp == EO_And ? EO_Or : EO_And,
436 BinTest.LTest.Var, invertConsumedUnconsumed(BinTest.LTest.TestsFor),
437 BinTest.RTest.Var, invertConsumedUnconsumed(BinTest.RTest.TestsFor));
438 } else {
439 return PropagationInfo();
DeLesley Hutchins48a31762013-08-12 21:20:55 +0000440 }
DeLesley Hutchins5533ec52013-08-29 17:26:57 +0000441 }
442};
443
DeLesley Hutchins68cc3f12013-11-16 00:22:43 +0000444static inline void
445setStateForVarOrTmp(ConsumedStateMap *StateMap, const PropagationInfo &PInfo,
446 ConsumedState State) {
447
448 assert(PInfo.isVar() || PInfo.isTmp());
449
450 if (PInfo.isVar())
451 StateMap->setState(PInfo.getVar(), State);
452 else
453 StateMap->setState(PInfo.getTmp(), State);
454}
455
DeLesley Hutchins5533ec52013-08-29 17:26:57 +0000456class ConsumedStmtVisitor : public ConstStmtVisitor<ConsumedStmtVisitor> {
DeLesley Hutchins48a31762013-08-12 21:20:55 +0000457
458 typedef llvm::DenseMap<const Stmt *, PropagationInfo> MapType;
459 typedef std::pair<const Stmt *, PropagationInfo> PairType;
460 typedef MapType::iterator InfoEntry;
DeLesley Hutchins5533ec52013-08-29 17:26:57 +0000461 typedef MapType::const_iterator ConstInfoEntry;
462
Reid Klecknere846dea2013-08-12 23:49:39 +0000463 AnalysisDeclContext &AC;
DeLesley Hutchins48a31762013-08-12 21:20:55 +0000464 ConsumedAnalyzer &Analyzer;
465 ConsumedStateMap *StateMap;
466 MapType PropagationMap;
DeLesley Hutchinsf28bbec2014-01-14 00:36:53 +0000467
DeLesley Hutchinsd7fa5bd2014-03-20 20:39:20 +0000468 InfoEntry findInfo(const Expr *E) {
469 return PropagationMap.find(E->IgnoreParens());
470 }
471 ConstInfoEntry findInfo(const Expr *E) const {
472 return PropagationMap.find(E->IgnoreParens());
473 }
474 void insertInfo(const Expr *E, const PropagationInfo &PI) {
475 PropagationMap.insert(PairType(E->IgnoreParens(), PI));
476 }
477
478 void forwardInfo(const Expr *From, const Expr *To);
479 void copyInfo(const Expr *From, const Expr *To, ConsumedState CS);
480 ConsumedState getInfo(const Expr *From);
481 void setInfo(const Expr *To, ConsumedState NS);
482 void propagateReturnType(const Expr *Call, const FunctionDecl *Fun);
DeLesley Hutchins81218662013-10-18 23:11:49 +0000483
DeLesley Hutchins48a31762013-08-12 21:20:55 +0000484public:
DeLesley Hutchinsfbdee4e2013-10-11 21:55:33 +0000485 void checkCallability(const PropagationInfo &PInfo,
486 const FunctionDecl *FunDecl,
487 SourceLocation BlameLoc);
DeLesley Hutchinsf28bbec2014-01-14 00:36:53 +0000488 bool handleCall(const CallExpr *Call, const Expr *ObjArg,
489 const FunctionDecl *FunD);
DeLesley Hutchins48a31762013-08-12 21:20:55 +0000490
491 void VisitBinaryOperator(const BinaryOperator *BinOp);
492 void VisitCallExpr(const CallExpr *Call);
493 void VisitCastExpr(const CastExpr *Cast);
DeLesley Hutchinsfbdee4e2013-10-11 21:55:33 +0000494 void VisitCXXBindTemporaryExpr(const CXXBindTemporaryExpr *Temp);
DeLesley Hutchins48a31762013-08-12 21:20:55 +0000495 void VisitCXXConstructExpr(const CXXConstructExpr *Call);
496 void VisitCXXMemberCallExpr(const CXXMemberCallExpr *Call);
497 void VisitCXXOperatorCallExpr(const CXXOperatorCallExpr *Call);
498 void VisitDeclRefExpr(const DeclRefExpr *DeclRef);
499 void VisitDeclStmt(const DeclStmt *DelcS);
500 void VisitMaterializeTemporaryExpr(const MaterializeTemporaryExpr *Temp);
501 void VisitMemberExpr(const MemberExpr *MExpr);
DeLesley Hutchinsb570c132013-08-29 22:36:05 +0000502 void VisitParmVarDecl(const ParmVarDecl *Param);
DeLesley Hutchinsfc368252013-09-03 20:11:38 +0000503 void VisitReturnStmt(const ReturnStmt *Ret);
DeLesley Hutchins48a31762013-08-12 21:20:55 +0000504 void VisitUnaryOperator(const UnaryOperator *UOp);
505 void VisitVarDecl(const VarDecl *Var);
Reid Klecknere846dea2013-08-12 23:49:39 +0000506
DeLesley Hutchinsb570c132013-08-29 22:36:05 +0000507 ConsumedStmtVisitor(AnalysisDeclContext &AC, ConsumedAnalyzer &Analyzer,
508 ConsumedStateMap *StateMap)
509 : AC(AC), Analyzer(Analyzer), StateMap(StateMap) {}
DeLesley Hutchins5533ec52013-08-29 17:26:57 +0000510
DeLesley Hutchinsd7fa5bd2014-03-20 20:39:20 +0000511 PropagationInfo getInfo(const Expr *StmtNode) const {
512 ConstInfoEntry Entry = findInfo(StmtNode);
DeLesley Hutchins5533ec52013-08-29 17:26:57 +0000513
514 if (Entry != PropagationMap.end())
515 return Entry->second;
516 else
517 return PropagationInfo();
518 }
519
520 void reset(ConsumedStateMap *NewStateMap) {
521 StateMap = NewStateMap;
DeLesley Hutchins48a31762013-08-12 21:20:55 +0000522 }
523};
524
DeLesley Hutchinsf28bbec2014-01-14 00:36:53 +0000525
DeLesley Hutchinsd7fa5bd2014-03-20 20:39:20 +0000526void ConsumedStmtVisitor::forwardInfo(const Expr *From, const Expr *To) {
527 InfoEntry Entry = findInfo(From);
DeLesley Hutchinsf28bbec2014-01-14 00:36:53 +0000528 if (Entry != PropagationMap.end())
DeLesley Hutchinsd7fa5bd2014-03-20 20:39:20 +0000529 insertInfo(To, Entry->second);
DeLesley Hutchinsf28bbec2014-01-14 00:36:53 +0000530}
531
532
533// Create a new state for To, which is initialized to the state of From.
534// If NS is not CS_None, sets the state of From to NS.
DeLesley Hutchinsd7fa5bd2014-03-20 20:39:20 +0000535void ConsumedStmtVisitor::copyInfo(const Expr *From, const Expr *To,
DeLesley Hutchinsf28bbec2014-01-14 00:36:53 +0000536 ConsumedState NS) {
DeLesley Hutchinsd7fa5bd2014-03-20 20:39:20 +0000537 InfoEntry Entry = findInfo(From);
DeLesley Hutchinsf28bbec2014-01-14 00:36:53 +0000538 if (Entry != PropagationMap.end()) {
539 PropagationInfo& PInfo = Entry->second;
540 ConsumedState CS = PInfo.getAsState(StateMap);
541 if (CS != CS_None)
DeLesley Hutchinsd7fa5bd2014-03-20 20:39:20 +0000542 insertInfo(To, PropagationInfo(CS));
DeLesley Hutchinsf28bbec2014-01-14 00:36:53 +0000543 if (NS != CS_None && PInfo.isPointerToValue())
544 setStateForVarOrTmp(StateMap, PInfo, NS);
545 }
546}
547
548
549// Get the ConsumedState for From
DeLesley Hutchinsd7fa5bd2014-03-20 20:39:20 +0000550ConsumedState ConsumedStmtVisitor::getInfo(const Expr *From) {
551 InfoEntry Entry = findInfo(From);
DeLesley Hutchinsf28bbec2014-01-14 00:36:53 +0000552 if (Entry != PropagationMap.end()) {
553 PropagationInfo& PInfo = Entry->second;
554 return PInfo.getAsState(StateMap);
555 }
556 return CS_None;
557}
558
559
560// If we already have info for To then update it, otherwise create a new entry.
DeLesley Hutchinsd7fa5bd2014-03-20 20:39:20 +0000561void ConsumedStmtVisitor::setInfo(const Expr *To, ConsumedState NS) {
562 InfoEntry Entry = findInfo(To);
DeLesley Hutchinsf28bbec2014-01-14 00:36:53 +0000563 if (Entry != PropagationMap.end()) {
564 PropagationInfo& PInfo = Entry->second;
565 if (PInfo.isPointerToValue())
566 setStateForVarOrTmp(StateMap, PInfo, NS);
567 } else if (NS != CS_None) {
DeLesley Hutchinsd7fa5bd2014-03-20 20:39:20 +0000568 insertInfo(To, PropagationInfo(NS));
DeLesley Hutchinsf28bbec2014-01-14 00:36:53 +0000569 }
570}
571
572
573
DeLesley Hutchins2445b122013-08-26 20:34:59 +0000574void ConsumedStmtVisitor::checkCallability(const PropagationInfo &PInfo,
DeLesley Hutchinsc2ecf0d2013-08-22 20:44:47 +0000575 const FunctionDecl *FunDecl,
DeLesley Hutchinsfbdee4e2013-10-11 21:55:33 +0000576 SourceLocation BlameLoc) {
DeLesley Hutchins68cc3f12013-11-16 00:22:43 +0000577 assert(!PInfo.isTest());
DeLesley Hutchinsf28bbec2014-01-14 00:36:53 +0000578
DeLesley Hutchins210791a2013-10-04 21:28:06 +0000579 const CallableWhenAttr *CWAttr = FunDecl->getAttr<CallableWhenAttr>();
Aaron Ballmanb06f2ef2013-12-19 02:58:51 +0000580 if (!CWAttr)
581 return;
DeLesley Hutchinsf28bbec2014-01-14 00:36:53 +0000582
DeLesley Hutchins5533ec52013-08-29 17:26:57 +0000583 if (PInfo.isVar()) {
DeLesley Hutchins68cc3f12013-11-16 00:22:43 +0000584 ConsumedState VarState = StateMap->getState(PInfo.getVar());
DeLesley Hutchinsf28bbec2014-01-14 00:36:53 +0000585
DeLesley Hutchins68cc3f12013-11-16 00:22:43 +0000586 if (VarState == CS_None || isCallableInState(CWAttr, VarState))
DeLesley Hutchins210791a2013-10-04 21:28:06 +0000587 return;
DeLesley Hutchinsf28bbec2014-01-14 00:36:53 +0000588
DeLesley Hutchins210791a2013-10-04 21:28:06 +0000589 Analyzer.WarningsHandler.warnUseInInvalidState(
DeLesley Hutchins68cc3f12013-11-16 00:22:43 +0000590 FunDecl->getNameAsString(), PInfo.getVar()->getNameAsString(),
DeLesley Hutchinsfbdee4e2013-10-11 21:55:33 +0000591 stateToString(VarState), BlameLoc);
DeLesley Hutchinsf28bbec2014-01-14 00:36:53 +0000592
DeLesley Hutchins68cc3f12013-11-16 00:22:43 +0000593 } else {
594 ConsumedState TmpState = PInfo.getAsState(StateMap);
DeLesley Hutchinsf28bbec2014-01-14 00:36:53 +0000595
DeLesley Hutchins68cc3f12013-11-16 00:22:43 +0000596 if (TmpState == CS_None || isCallableInState(CWAttr, TmpState))
DeLesley Hutchins210791a2013-10-04 21:28:06 +0000597 return;
DeLesley Hutchinsf28bbec2014-01-14 00:36:53 +0000598
DeLesley Hutchins210791a2013-10-04 21:28:06 +0000599 Analyzer.WarningsHandler.warnUseOfTempInInvalidState(
DeLesley Hutchins68cc3f12013-11-16 00:22:43 +0000600 FunDecl->getNameAsString(), stateToString(TmpState), BlameLoc);
DeLesley Hutchinsc2ecf0d2013-08-22 20:44:47 +0000601 }
602}
603
DeLesley Hutchinsf28bbec2014-01-14 00:36:53 +0000604
605// Factors out common behavior for function, method, and operator calls.
606// Check parameters and set parameter state if necessary.
607// Returns true if the state of ObjArg is set, or false otherwise.
608bool ConsumedStmtVisitor::handleCall(const CallExpr *Call, const Expr *ObjArg,
609 const FunctionDecl *FunD) {
610 unsigned Offset = 0;
DeLesley Hutchins80a38422014-01-16 23:07:16 +0000611 if (isa<CXXOperatorCallExpr>(Call) && isa<CXXMethodDecl>(FunD))
612 Offset = 1; // first argument is 'this'
DeLesley Hutchinsf28bbec2014-01-14 00:36:53 +0000613
614 // check explicit parameters
615 for (unsigned Index = Offset; Index < Call->getNumArgs(); ++Index) {
616 // Skip variable argument lists.
617 if (Index - Offset >= FunD->getNumParams())
618 break;
619
620 const ParmVarDecl *Param = FunD->getParamDecl(Index - Offset);
621 QualType ParamType = Param->getType();
622
DeLesley Hutchinsd7fa5bd2014-03-20 20:39:20 +0000623 InfoEntry Entry = findInfo(Call->getArg(Index));
DeLesley Hutchinsf28bbec2014-01-14 00:36:53 +0000624
625 if (Entry == PropagationMap.end() || Entry->second.isTest())
626 continue;
627 PropagationInfo PInfo = Entry->second;
628
629 // Check that the parameter is in the correct state.
630 if (ParamTypestateAttr *PTA = Param->getAttr<ParamTypestateAttr>()) {
631 ConsumedState ParamState = PInfo.getAsState(StateMap);
632 ConsumedState ExpectedState = mapParamTypestateAttrState(PTA);
633
634 if (ParamState != ExpectedState)
635 Analyzer.WarningsHandler.warnParamTypestateMismatch(
636 Call->getArg(Index)->getExprLoc(),
637 stateToString(ExpectedState), stateToString(ParamState));
638 }
639
640 if (!(Entry->second.isVar() || Entry->second.isTmp()))
641 continue;
642
643 // Adjust state on the caller side.
DeLesley Hutchins80a38422014-01-16 23:07:16 +0000644 if (isRValueRef(ParamType))
DeLesley Hutchinsf28bbec2014-01-14 00:36:53 +0000645 setStateForVarOrTmp(StateMap, PInfo, consumed::CS_Consumed);
646 else if (ReturnTypestateAttr *RT = Param->getAttr<ReturnTypestateAttr>())
647 setStateForVarOrTmp(StateMap, PInfo, mapReturnTypestateAttrState(RT));
DeLesley Hutchins80a38422014-01-16 23:07:16 +0000648 else if (isPointerOrRef(ParamType) &&
649 (!ParamType->getPointeeType().isConstQualified() ||
650 isSetOnReadPtrType(ParamType)))
651 setStateForVarOrTmp(StateMap, PInfo, consumed::CS_Unknown);
DeLesley Hutchinsf28bbec2014-01-14 00:36:53 +0000652 }
653
654 if (!ObjArg)
655 return false;
656
657 // check implicit 'self' parameter, if present
DeLesley Hutchinsd7fa5bd2014-03-20 20:39:20 +0000658 InfoEntry Entry = findInfo(ObjArg);
DeLesley Hutchinsf28bbec2014-01-14 00:36:53 +0000659 if (Entry != PropagationMap.end()) {
660 PropagationInfo PInfo = Entry->second;
661 checkCallability(PInfo, FunD, Call->getExprLoc());
662
663 if (SetTypestateAttr *STA = FunD->getAttr<SetTypestateAttr>()) {
664 if (PInfo.isVar()) {
665 StateMap->setState(PInfo.getVar(), mapSetTypestateAttrState(STA));
666 return true;
667 }
668 else if (PInfo.isTmp()) {
669 StateMap->setState(PInfo.getTmp(), mapSetTypestateAttrState(STA));
670 return true;
671 }
672 }
673 else if (isTestingFunction(FunD) && PInfo.isVar()) {
674 PropagationMap.insert(PairType(Call,
675 PropagationInfo(PInfo.getVar(), testsFor(FunD))));
676 }
677 }
678 return false;
DeLesley Hutchins5533ec52013-08-29 17:26:57 +0000679}
680
DeLesley Hutchins48a31762013-08-12 21:20:55 +0000681
DeLesley Hutchinsd7fa5bd2014-03-20 20:39:20 +0000682void ConsumedStmtVisitor::propagateReturnType(const Expr *Call,
DeLesley Hutchinsf28bbec2014-01-14 00:36:53 +0000683 const FunctionDecl *Fun) {
684 QualType RetType = Fun->getCallResultType();
685 if (RetType->isReferenceType())
686 RetType = RetType->getPointeeType();
687
688 if (isConsumableType(RetType)) {
DeLesley Hutchinsfc368252013-09-03 20:11:38 +0000689 ConsumedState ReturnState;
Aaron Ballmanb06f2ef2013-12-19 02:58:51 +0000690 if (ReturnTypestateAttr *RTA = Fun->getAttr<ReturnTypestateAttr>())
691 ReturnState = mapReturnTypestateAttrState(RTA);
DeLesley Hutchinsfc368252013-09-03 20:11:38 +0000692 else
DeLesley Hutchinsf28bbec2014-01-14 00:36:53 +0000693 ReturnState = mapConsumableAttrState(RetType);
DeLesley Hutchinsfc368252013-09-03 20:11:38 +0000694
DeLesley Hutchins68cc3f12013-11-16 00:22:43 +0000695 PropagationMap.insert(PairType(Call, PropagationInfo(ReturnState)));
DeLesley Hutchins5533ec52013-08-29 17:26:57 +0000696 }
697}
698
DeLesley Hutchinsf28bbec2014-01-14 00:36:53 +0000699
DeLesley Hutchins48a31762013-08-12 21:20:55 +0000700void ConsumedStmtVisitor::VisitBinaryOperator(const BinaryOperator *BinOp) {
701 switch (BinOp->getOpcode()) {
DeLesley Hutchins5533ec52013-08-29 17:26:57 +0000702 case BO_LAnd:
703 case BO_LOr : {
DeLesley Hutchinsd7fa5bd2014-03-20 20:39:20 +0000704 InfoEntry LEntry = findInfo(BinOp->getLHS()),
705 REntry = findInfo(BinOp->getRHS());
DeLesley Hutchins5533ec52013-08-29 17:26:57 +0000706
707 VarTestResult LTest, RTest;
708
DeLesley Hutchins68cc3f12013-11-16 00:22:43 +0000709 if (LEntry != PropagationMap.end() && LEntry->second.isVarTest()) {
710 LTest = LEntry->second.getVarTest();
DeLesley Hutchins5533ec52013-08-29 17:26:57 +0000711
712 } else {
713 LTest.Var = NULL;
714 LTest.TestsFor = CS_None;
715 }
716
DeLesley Hutchins68cc3f12013-11-16 00:22:43 +0000717 if (REntry != PropagationMap.end() && REntry->second.isVarTest()) {
718 RTest = REntry->second.getVarTest();
DeLesley Hutchins5533ec52013-08-29 17:26:57 +0000719
720 } else {
721 RTest.Var = NULL;
722 RTest.TestsFor = CS_None;
723 }
724
725 if (!(LTest.Var == NULL && RTest.Var == NULL))
726 PropagationMap.insert(PairType(BinOp, PropagationInfo(BinOp,
727 static_cast<EffectiveOp>(BinOp->getOpcode() == BO_LOr), LTest, RTest)));
728
729 break;
730 }
731
DeLesley Hutchins48a31762013-08-12 21:20:55 +0000732 case BO_PtrMemD:
733 case BO_PtrMemI:
734 forwardInfo(BinOp->getLHS(), BinOp);
735 break;
736
737 default:
738 break;
739 }
740}
741
Richard Trieuc6896912013-12-17 00:40:40 +0000742static bool isStdNamespace(const DeclContext *DC) {
743 if (!DC->isNamespace()) return false;
744 while (DC->getParent()->isNamespace())
745 DC = DC->getParent();
746 const NamespaceDecl *ND = dyn_cast<NamespaceDecl>(DC);
747
748 return ND && ND->getName() == "std" &&
749 ND->getDeclContext()->isTranslationUnit();
750}
751
DeLesley Hutchins48a31762013-08-12 21:20:55 +0000752void ConsumedStmtVisitor::VisitCallExpr(const CallExpr *Call) {
DeLesley Hutchinsf28bbec2014-01-14 00:36:53 +0000753 const FunctionDecl *FunDecl = Call->getDirectCallee();
754 if (!FunDecl)
755 return;
756
757 // Special case for the std::move function.
758 // TODO: Make this more specific. (Deferred)
759 if (Call->getNumArgs() == 1 &&
760 FunDecl->getNameAsString() == "move" &&
761 isStdNamespace(FunDecl->getDeclContext())) {
762 copyInfo(Call->getArg(0), Call, CS_Consumed);
763 return;
DeLesley Hutchins48a31762013-08-12 21:20:55 +0000764 }
DeLesley Hutchinsf28bbec2014-01-14 00:36:53 +0000765
766 handleCall(Call, 0, FunDecl);
767 propagateReturnType(Call, FunDecl);
DeLesley Hutchins48a31762013-08-12 21:20:55 +0000768}
769
770void ConsumedStmtVisitor::VisitCastExpr(const CastExpr *Cast) {
DeLesley Hutchins5533ec52013-08-29 17:26:57 +0000771 forwardInfo(Cast->getSubExpr(), Cast);
DeLesley Hutchins48a31762013-08-12 21:20:55 +0000772}
773
DeLesley Hutchinsfbdee4e2013-10-11 21:55:33 +0000774void ConsumedStmtVisitor::VisitCXXBindTemporaryExpr(
775 const CXXBindTemporaryExpr *Temp) {
776
DeLesley Hutchinsd7fa5bd2014-03-20 20:39:20 +0000777 InfoEntry Entry = findInfo(Temp->getSubExpr());
DeLesley Hutchins68cc3f12013-11-16 00:22:43 +0000778
779 if (Entry != PropagationMap.end() && !Entry->second.isTest()) {
780 StateMap->setState(Temp, Entry->second.getAsState(StateMap));
781 PropagationMap.insert(PairType(Temp, PropagationInfo(Temp)));
782 }
DeLesley Hutchinsfbdee4e2013-10-11 21:55:33 +0000783}
784
DeLesley Hutchins48a31762013-08-12 21:20:55 +0000785void ConsumedStmtVisitor::VisitCXXConstructExpr(const CXXConstructExpr *Call) {
786 CXXConstructorDecl *Constructor = Call->getConstructor();
Reid Klecknere846dea2013-08-12 23:49:39 +0000787
788 ASTContext &CurrContext = AC.getASTContext();
DeLesley Hutchins48a31762013-08-12 21:20:55 +0000789 QualType ThisType = Constructor->getThisType(CurrContext)->getPointeeType();
790
DeLesley Hutchins11a66c12013-10-18 18:36:21 +0000791 if (!isConsumableType(ThisType))
792 return;
793
794 // FIXME: What should happen if someone annotates the move constructor?
Aaron Ballmanb06f2ef2013-12-19 02:58:51 +0000795 if (ReturnTypestateAttr *RTA = Constructor->getAttr<ReturnTypestateAttr>()) {
796 // TODO: Adjust state of args appropriately.
797 ConsumedState RetState = mapReturnTypestateAttrState(RTA);
DeLesley Hutchinsf28bbec2014-01-14 00:36:53 +0000798 PropagationMap.insert(PairType(Call, PropagationInfo(RetState)));
799 } else if (Constructor->isDefaultConstructor()) {
DeLesley Hutchins11a66c12013-10-18 18:36:21 +0000800 PropagationMap.insert(PairType(Call,
DeLesley Hutchins68cc3f12013-11-16 00:22:43 +0000801 PropagationInfo(consumed::CS_Consumed)));
DeLesley Hutchinsf28bbec2014-01-14 00:36:53 +0000802 } else if (Constructor->isMoveConstructor()) {
803 copyInfo(Call->getArg(0), Call, CS_Consumed);
DeLesley Hutchins11a66c12013-10-18 18:36:21 +0000804 } else if (Constructor->isCopyConstructor()) {
DeLesley Hutchinsf28bbec2014-01-14 00:36:53 +0000805 // Copy state from arg. If setStateOnRead then set arg to CS_Unknown.
806 ConsumedState NS =
807 isSetOnReadPtrType(Constructor->getThisType(CurrContext)) ?
808 CS_Unknown : CS_None;
809 copyInfo(Call->getArg(0), Call, NS);
DeLesley Hutchins11a66c12013-10-18 18:36:21 +0000810 } else {
DeLesley Hutchins68cc3f12013-11-16 00:22:43 +0000811 // TODO: Adjust state of args appropriately.
DeLesley Hutchins11a66c12013-10-18 18:36:21 +0000812 ConsumedState RetState = mapConsumableAttrState(ThisType);
DeLesley Hutchins68cc3f12013-11-16 00:22:43 +0000813 PropagationMap.insert(PairType(Call, PropagationInfo(RetState)));
DeLesley Hutchins48a31762013-08-12 21:20:55 +0000814 }
815}
816
DeLesley Hutchinsf28bbec2014-01-14 00:36:53 +0000817
DeLesley Hutchins48a31762013-08-12 21:20:55 +0000818void ConsumedStmtVisitor::VisitCXXMemberCallExpr(
DeLesley Hutchinsf28bbec2014-01-14 00:36:53 +0000819 const CXXMemberCallExpr *Call) {
820 CXXMethodDecl* MD = Call->getMethodDecl();
821 if (!MD)
822 return;
823
824 handleCall(Call, Call->getImplicitObjectArgument(), MD);
825 propagateReturnType(Call, MD);
DeLesley Hutchins48a31762013-08-12 21:20:55 +0000826}
827
DeLesley Hutchinsf28bbec2014-01-14 00:36:53 +0000828
DeLesley Hutchins48a31762013-08-12 21:20:55 +0000829void ConsumedStmtVisitor::VisitCXXOperatorCallExpr(
DeLesley Hutchinsf28bbec2014-01-14 00:36:53 +0000830 const CXXOperatorCallExpr *Call) {
831
DeLesley Hutchins48a31762013-08-12 21:20:55 +0000832 const FunctionDecl *FunDecl =
833 dyn_cast_or_null<FunctionDecl>(Call->getDirectCallee());
DeLesley Hutchins48a31762013-08-12 21:20:55 +0000834 if (!FunDecl) return;
DeLesley Hutchinsf28bbec2014-01-14 00:36:53 +0000835
836 if (Call->getOperator() == OO_Equal) {
837 ConsumedState CS = getInfo(Call->getArg(1));
838 if (!handleCall(Call, Call->getArg(0), FunDecl))
839 setInfo(Call->getArg(0), CS);
840 return;
DeLesley Hutchins48a31762013-08-12 21:20:55 +0000841 }
DeLesley Hutchinsf28bbec2014-01-14 00:36:53 +0000842
843 if (const CXXMemberCallExpr *MCall = dyn_cast<CXXMemberCallExpr>(Call))
844 handleCall(MCall, MCall->getImplicitObjectArgument(), FunDecl);
845 else
846 handleCall(Call, Call->getArg(0), FunDecl);
847
848 propagateReturnType(Call, FunDecl);
DeLesley Hutchins48a31762013-08-12 21:20:55 +0000849}
850
851void ConsumedStmtVisitor::VisitDeclRefExpr(const DeclRefExpr *DeclRef) {
852 if (const VarDecl *Var = dyn_cast_or_null<VarDecl>(DeclRef->getDecl()))
853 if (StateMap->getState(Var) != consumed::CS_None)
854 PropagationMap.insert(PairType(DeclRef, PropagationInfo(Var)));
855}
856
857void ConsumedStmtVisitor::VisitDeclStmt(const DeclStmt *DeclS) {
Aaron Ballman535bbcc2014-03-14 17:01:24 +0000858 for (const auto *DI : DeclS->decls())
859 if (isa<VarDecl>(DI))
860 VisitVarDecl(cast<VarDecl>(DI));
DeLesley Hutchins48a31762013-08-12 21:20:55 +0000861
862 if (DeclS->isSingleDecl())
863 if (const VarDecl *Var = dyn_cast_or_null<VarDecl>(DeclS->getSingleDecl()))
864 PropagationMap.insert(PairType(DeclS, PropagationInfo(Var)));
865}
866
867void ConsumedStmtVisitor::VisitMaterializeTemporaryExpr(
868 const MaterializeTemporaryExpr *Temp) {
869
Chris Wailes44930882013-10-24 14:28:17 +0000870 forwardInfo(Temp->GetTemporaryExpr(), Temp);
DeLesley Hutchins48a31762013-08-12 21:20:55 +0000871}
872
873void ConsumedStmtVisitor::VisitMemberExpr(const MemberExpr *MExpr) {
874 forwardInfo(MExpr->getBase(), MExpr);
875}
876
DeLesley Hutchinsb570c132013-08-29 22:36:05 +0000877
878void ConsumedStmtVisitor::VisitParmVarDecl(const ParmVarDecl *Param) {
David Blaikie16f76d22013-09-06 01:28:43 +0000879 QualType ParamType = Param->getType();
880 ConsumedState ParamState = consumed::CS_None;
DeLesley Hutchins69391772013-10-17 23:23:53 +0000881
Aaron Ballmanb06f2ef2013-12-19 02:58:51 +0000882 if (const ParamTypestateAttr *PTA = Param->getAttr<ParamTypestateAttr>())
883 ParamState = mapParamTypestateAttrState(PTA);
884 else if (isConsumableType(ParamType))
885 ParamState = mapConsumableAttrState(ParamType);
DeLesley Hutchins80a38422014-01-16 23:07:16 +0000886 else if (isRValueRef(ParamType) &&
887 isConsumableType(ParamType->getPointeeType()))
Aaron Ballmanb06f2ef2013-12-19 02:58:51 +0000888 ParamState = mapConsumableAttrState(ParamType->getPointeeType());
889 else if (ParamType->isReferenceType() &&
DeLesley Hutchins80a38422014-01-16 23:07:16 +0000890 isConsumableType(ParamType->getPointeeType()))
David Blaikie16f76d22013-09-06 01:28:43 +0000891 ParamState = consumed::CS_Unknown;
DeLesley Hutchins69391772013-10-17 23:23:53 +0000892
893 if (ParamState != CS_None)
David Blaikie16f76d22013-09-06 01:28:43 +0000894 StateMap->setState(Param, ParamState);
DeLesley Hutchinsb570c132013-08-29 22:36:05 +0000895}
896
DeLesley Hutchinsfc368252013-09-03 20:11:38 +0000897void ConsumedStmtVisitor::VisitReturnStmt(const ReturnStmt *Ret) {
DeLesley Hutchins36ea1dd2013-10-17 22:53:04 +0000898 ConsumedState ExpectedState = Analyzer.getExpectedReturnState();
899
900 if (ExpectedState != CS_None) {
DeLesley Hutchinsd7fa5bd2014-03-20 20:39:20 +0000901 InfoEntry Entry = findInfo(Ret->getRetValue());
DeLesley Hutchinsfc368252013-09-03 20:11:38 +0000902
903 if (Entry != PropagationMap.end()) {
DeLesley Hutchins68cc3f12013-11-16 00:22:43 +0000904 ConsumedState RetState = Entry->second.getAsState(StateMap);
DeLesley Hutchinsfc368252013-09-03 20:11:38 +0000905
906 if (RetState != ExpectedState)
907 Analyzer.WarningsHandler.warnReturnTypestateMismatch(
908 Ret->getReturnLoc(), stateToString(ExpectedState),
909 stateToString(RetState));
910 }
911 }
DeLesley Hutchins36ea1dd2013-10-17 22:53:04 +0000912
913 StateMap->checkParamsForReturnTypestate(Ret->getLocStart(),
914 Analyzer.WarningsHandler);
DeLesley Hutchinsfc368252013-09-03 20:11:38 +0000915}
916
DeLesley Hutchins48a31762013-08-12 21:20:55 +0000917void ConsumedStmtVisitor::VisitUnaryOperator(const UnaryOperator *UOp) {
DeLesley Hutchinsd7fa5bd2014-03-20 20:39:20 +0000918 InfoEntry Entry = findInfo(UOp->getSubExpr());
DeLesley Hutchins5533ec52013-08-29 17:26:57 +0000919 if (Entry == PropagationMap.end()) return;
920
921 switch (UOp->getOpcode()) {
922 case UO_AddrOf:
923 PropagationMap.insert(PairType(UOp, Entry->second));
924 break;
925
926 case UO_LNot:
DeLesley Hutchins68cc3f12013-11-16 00:22:43 +0000927 if (Entry->second.isTest())
DeLesley Hutchins5533ec52013-08-29 17:26:57 +0000928 PropagationMap.insert(PairType(UOp, Entry->second.invertTest()));
929 break;
930
931 default:
932 break;
DeLesley Hutchins48a31762013-08-12 21:20:55 +0000933 }
934}
935
DeLesley Hutchins210791a2013-10-04 21:28:06 +0000936// TODO: See if I need to check for reference types here.
DeLesley Hutchins48a31762013-08-12 21:20:55 +0000937void ConsumedStmtVisitor::VisitVarDecl(const VarDecl *Var) {
DeLesley Hutchins5a715c42013-08-30 22:56:34 +0000938 if (isConsumableType(Var->getType())) {
DeLesley Hutchinsb570c132013-08-29 22:36:05 +0000939 if (Var->hasInit()) {
DeLesley Hutchinsd7fa5bd2014-03-20 20:39:20 +0000940 MapType::iterator VIT = findInfo(Var->getInit()->IgnoreImplicit());
DeLesley Hutchins81218662013-10-18 23:11:49 +0000941 if (VIT != PropagationMap.end()) {
942 PropagationInfo PInfo = VIT->second;
DeLesley Hutchins68cc3f12013-11-16 00:22:43 +0000943 ConsumedState St = PInfo.getAsState(StateMap);
944
DeLesley Hutchins81218662013-10-18 23:11:49 +0000945 if (St != consumed::CS_None) {
946 StateMap->setState(Var, St);
947 return;
948 }
949 }
DeLesley Hutchinsb570c132013-08-29 22:36:05 +0000950 }
DeLesley Hutchins81218662013-10-18 23:11:49 +0000951 // Otherwise
952 StateMap->setState(Var, consumed::CS_Unknown);
DeLesley Hutchins48a31762013-08-12 21:20:55 +0000953 }
954}
DeLesley Hutchins5533ec52013-08-29 17:26:57 +0000955}} // end clang::consumed::ConsumedStmtVisitor
DeLesley Hutchins48a31762013-08-12 21:20:55 +0000956
957namespace clang {
958namespace consumed {
959
DeLesley Hutchins5533ec52013-08-29 17:26:57 +0000960void splitVarStateForIf(const IfStmt * IfNode, const VarTestResult &Test,
961 ConsumedStateMap *ThenStates,
962 ConsumedStateMap *ElseStates) {
963
964 ConsumedState VarState = ThenStates->getState(Test.Var);
965
966 if (VarState == CS_Unknown) {
967 ThenStates->setState(Test.Var, Test.TestsFor);
DeLesley Hutchins210791a2013-10-04 21:28:06 +0000968 ElseStates->setState(Test.Var, invertConsumedUnconsumed(Test.TestsFor));
DeLesley Hutchins5533ec52013-08-29 17:26:57 +0000969
970 } else if (VarState == invertConsumedUnconsumed(Test.TestsFor)) {
971 ThenStates->markUnreachable();
972
DeLesley Hutchins210791a2013-10-04 21:28:06 +0000973 } else if (VarState == Test.TestsFor) {
DeLesley Hutchins5533ec52013-08-29 17:26:57 +0000974 ElseStates->markUnreachable();
975 }
976}
977
978void splitVarStateForIfBinOp(const PropagationInfo &PInfo,
979 ConsumedStateMap *ThenStates, ConsumedStateMap *ElseStates) {
980
981 const VarTestResult &LTest = PInfo.getLTest(),
982 &RTest = PInfo.getRTest();
983
984 ConsumedState LState = LTest.Var ? ThenStates->getState(LTest.Var) : CS_None,
985 RState = RTest.Var ? ThenStates->getState(RTest.Var) : CS_None;
986
987 if (LTest.Var) {
988 if (PInfo.testEffectiveOp() == EO_And) {
989 if (LState == CS_Unknown) {
990 ThenStates->setState(LTest.Var, LTest.TestsFor);
991
992 } else if (LState == invertConsumedUnconsumed(LTest.TestsFor)) {
993 ThenStates->markUnreachable();
994
995 } else if (LState == LTest.TestsFor && isKnownState(RState)) {
DeLesley Hutchins210791a2013-10-04 21:28:06 +0000996 if (RState == RTest.TestsFor)
997 ElseStates->markUnreachable();
998 else
DeLesley Hutchins5533ec52013-08-29 17:26:57 +0000999 ThenStates->markUnreachable();
DeLesley Hutchins5533ec52013-08-29 17:26:57 +00001000 }
1001
1002 } else {
DeLesley Hutchins210791a2013-10-04 21:28:06 +00001003 if (LState == CS_Unknown) {
DeLesley Hutchins5533ec52013-08-29 17:26:57 +00001004 ElseStates->setState(LTest.Var,
1005 invertConsumedUnconsumed(LTest.TestsFor));
1006
DeLesley Hutchins210791a2013-10-04 21:28:06 +00001007 } else if (LState == LTest.TestsFor) {
DeLesley Hutchins5533ec52013-08-29 17:26:57 +00001008 ElseStates->markUnreachable();
1009
1010 } else if (LState == invertConsumedUnconsumed(LTest.TestsFor) &&
1011 isKnownState(RState)) {
1012
DeLesley Hutchins210791a2013-10-04 21:28:06 +00001013 if (RState == RTest.TestsFor)
1014 ElseStates->markUnreachable();
1015 else
DeLesley Hutchins5533ec52013-08-29 17:26:57 +00001016 ThenStates->markUnreachable();
DeLesley Hutchins5533ec52013-08-29 17:26:57 +00001017 }
1018 }
1019 }
1020
1021 if (RTest.Var) {
1022 if (PInfo.testEffectiveOp() == EO_And) {
1023 if (RState == CS_Unknown)
1024 ThenStates->setState(RTest.Var, RTest.TestsFor);
1025 else if (RState == invertConsumedUnconsumed(RTest.TestsFor))
1026 ThenStates->markUnreachable();
1027
DeLesley Hutchins210791a2013-10-04 21:28:06 +00001028 } else {
DeLesley Hutchins5533ec52013-08-29 17:26:57 +00001029 if (RState == CS_Unknown)
1030 ElseStates->setState(RTest.Var,
1031 invertConsumedUnconsumed(RTest.TestsFor));
1032 else if (RState == RTest.TestsFor)
1033 ElseStates->markUnreachable();
1034 }
1035 }
1036}
1037
DeLesley Hutchins3277a612013-10-09 18:30:24 +00001038bool ConsumedBlockInfo::allBackEdgesVisited(const CFGBlock *CurrBlock,
1039 const CFGBlock *TargetBlock) {
1040
1041 assert(CurrBlock && "Block pointer must not be NULL");
1042 assert(TargetBlock && "TargetBlock pointer must not be NULL");
1043
1044 unsigned int CurrBlockOrder = VisitOrder[CurrBlock->getBlockID()];
1045 for (CFGBlock::const_pred_iterator PI = TargetBlock->pred_begin(),
1046 PE = TargetBlock->pred_end(); PI != PE; ++PI) {
1047 if (*PI && CurrBlockOrder < VisitOrder[(*PI)->getBlockID()] )
1048 return false;
1049 }
1050 return true;
1051}
1052
DeLesley Hutchins48a31762013-08-12 21:20:55 +00001053void ConsumedBlockInfo::addInfo(const CFGBlock *Block,
1054 ConsumedStateMap *StateMap,
1055 bool &AlreadyOwned) {
1056
DeLesley Hutchins3277a612013-10-09 18:30:24 +00001057 assert(Block && "Block pointer must not be NULL");
DeLesley Hutchins48a31762013-08-12 21:20:55 +00001058
1059 ConsumedStateMap *Entry = StateMapsArray[Block->getBlockID()];
1060
1061 if (Entry) {
1062 Entry->intersect(StateMap);
1063
1064 } else if (AlreadyOwned) {
1065 StateMapsArray[Block->getBlockID()] = new ConsumedStateMap(*StateMap);
1066
1067 } else {
1068 StateMapsArray[Block->getBlockID()] = StateMap;
1069 AlreadyOwned = true;
1070 }
1071}
1072
1073void ConsumedBlockInfo::addInfo(const CFGBlock *Block,
1074 ConsumedStateMap *StateMap) {
1075
DeLesley Hutchins3277a612013-10-09 18:30:24 +00001076 assert(Block != NULL && "Block pointer must not be NULL");
DeLesley Hutchins48a31762013-08-12 21:20:55 +00001077
1078 ConsumedStateMap *Entry = StateMapsArray[Block->getBlockID()];
1079
1080 if (Entry) {
1081 Entry->intersect(StateMap);
1082 delete StateMap;
1083
1084 } else {
1085 StateMapsArray[Block->getBlockID()] = StateMap;
1086 }
1087}
1088
DeLesley Hutchins3277a612013-10-09 18:30:24 +00001089ConsumedStateMap* ConsumedBlockInfo::borrowInfo(const CFGBlock *Block) {
1090 assert(Block && "Block pointer must not be NULL");
1091 assert(StateMapsArray[Block->getBlockID()] && "Block has no block info");
1092
DeLesley Hutchins48a31762013-08-12 21:20:55 +00001093 return StateMapsArray[Block->getBlockID()];
1094}
1095
DeLesley Hutchins3277a612013-10-09 18:30:24 +00001096void ConsumedBlockInfo::discardInfo(const CFGBlock *Block) {
1097 unsigned int BlockID = Block->getBlockID();
1098 delete StateMapsArray[BlockID];
1099 StateMapsArray[BlockID] = NULL;
DeLesley Hutchins48a31762013-08-12 21:20:55 +00001100}
1101
DeLesley Hutchins3277a612013-10-09 18:30:24 +00001102ConsumedStateMap* ConsumedBlockInfo::getInfo(const CFGBlock *Block) {
1103 assert(Block && "Block pointer must not be NULL");
1104
1105 ConsumedStateMap *StateMap = StateMapsArray[Block->getBlockID()];
1106 if (isBackEdgeTarget(Block)) {
1107 return new ConsumedStateMap(*StateMap);
1108 } else {
1109 StateMapsArray[Block->getBlockID()] = NULL;
1110 return StateMap;
1111 }
1112}
1113
1114bool ConsumedBlockInfo::isBackEdge(const CFGBlock *From, const CFGBlock *To) {
1115 assert(From && "From block must not be NULL");
1116 assert(To && "From block must not be NULL");
1117
1118 return VisitOrder[From->getBlockID()] > VisitOrder[To->getBlockID()];
1119}
1120
1121bool ConsumedBlockInfo::isBackEdgeTarget(const CFGBlock *Block) {
1122 assert(Block != NULL && "Block pointer must not be NULL");
1123
1124 // Anything with less than two predecessors can't be the target of a back
1125 // edge.
1126 if (Block->pred_size() < 2)
1127 return false;
1128
1129 unsigned int BlockVisitOrder = VisitOrder[Block->getBlockID()];
1130 for (CFGBlock::const_pred_iterator PI = Block->pred_begin(),
1131 PE = Block->pred_end(); PI != PE; ++PI) {
1132 if (*PI && BlockVisitOrder < VisitOrder[(*PI)->getBlockID()])
1133 return true;
1134 }
1135 return false;
1136}
1137
DeLesley Hutchins36ea1dd2013-10-17 22:53:04 +00001138void ConsumedStateMap::checkParamsForReturnTypestate(SourceLocation BlameLoc,
1139 ConsumedWarningsHandlerBase &WarningsHandler) const {
1140
Aaron Ballman35897d92014-04-28 14:56:59 +00001141 for (const auto &DM : VarMap) {
1142 if (isa<ParmVarDecl>(DM.first)) {
1143 const ParmVarDecl *Param = cast<ParmVarDecl>(DM.first);
Aaron Ballmanb06f2ef2013-12-19 02:58:51 +00001144 const ReturnTypestateAttr *RTA = Param->getAttr<ReturnTypestateAttr>();
DeLesley Hutchins36ea1dd2013-10-17 22:53:04 +00001145
Aaron Ballmanb06f2ef2013-12-19 02:58:51 +00001146 if (!RTA)
1147 continue;
DeLesley Hutchins36ea1dd2013-10-17 22:53:04 +00001148
Aaron Ballmanb06f2ef2013-12-19 02:58:51 +00001149 ConsumedState ExpectedState = mapReturnTypestateAttrState(RTA);
Aaron Ballman35897d92014-04-28 14:56:59 +00001150 if (DM.second != ExpectedState)
DeLesley Hutchins36ea1dd2013-10-17 22:53:04 +00001151 WarningsHandler.warnParamReturnTypestateMismatch(BlameLoc,
1152 Param->getNameAsString(), stateToString(ExpectedState),
Aaron Ballman35897d92014-04-28 14:56:59 +00001153 stateToString(DM.second));
DeLesley Hutchins36ea1dd2013-10-17 22:53:04 +00001154 }
1155 }
1156}
1157
DeLesley Hutchins68cc3f12013-11-16 00:22:43 +00001158void ConsumedStateMap::clearTemporaries() {
1159 TmpMap.clear();
1160}
1161
DeLesley Hutchins3277a612013-10-09 18:30:24 +00001162ConsumedState ConsumedStateMap::getState(const VarDecl *Var) const {
DeLesley Hutchins68cc3f12013-11-16 00:22:43 +00001163 VarMapType::const_iterator Entry = VarMap.find(Var);
DeLesley Hutchins48a31762013-08-12 21:20:55 +00001164
DeLesley Hutchins68cc3f12013-11-16 00:22:43 +00001165 if (Entry != VarMap.end())
DeLesley Hutchins48a31762013-08-12 21:20:55 +00001166 return Entry->second;
1167
DeLesley Hutchins68cc3f12013-11-16 00:22:43 +00001168 return CS_None;
1169}
1170
1171ConsumedState
1172ConsumedStateMap::getState(const CXXBindTemporaryExpr *Tmp) const {
1173 TmpMapType::const_iterator Entry = TmpMap.find(Tmp);
1174
1175 if (Entry != TmpMap.end())
1176 return Entry->second;
1177
1178 return CS_None;
DeLesley Hutchins48a31762013-08-12 21:20:55 +00001179}
1180
1181void ConsumedStateMap::intersect(const ConsumedStateMap *Other) {
1182 ConsumedState LocalState;
1183
DeLesley Hutchins5533ec52013-08-29 17:26:57 +00001184 if (this->From && this->From == Other->From && !Other->Reachable) {
1185 this->markUnreachable();
1186 return;
1187 }
1188
Aaron Ballman35897d92014-04-28 14:56:59 +00001189 for (const auto &DM : Other->VarMap) {
1190 LocalState = this->getState(DM.first);
DeLesley Hutchins48a31762013-08-12 21:20:55 +00001191
DeLesley Hutchins5533ec52013-08-29 17:26:57 +00001192 if (LocalState == CS_None)
1193 continue;
1194
Aaron Ballman35897d92014-04-28 14:56:59 +00001195 if (LocalState != DM.second)
1196 VarMap[DM.first] = CS_Unknown;
DeLesley Hutchins48a31762013-08-12 21:20:55 +00001197 }
1198}
1199
DeLesley Hutchins3277a612013-10-09 18:30:24 +00001200void ConsumedStateMap::intersectAtLoopHead(const CFGBlock *LoopHead,
1201 const CFGBlock *LoopBack, const ConsumedStateMap *LoopBackStates,
1202 ConsumedWarningsHandlerBase &WarningsHandler) {
1203
1204 ConsumedState LocalState;
DeLesley Hutchinsfbdee4e2013-10-11 21:55:33 +00001205 SourceLocation BlameLoc = getLastStmtLoc(LoopBack);
DeLesley Hutchins3277a612013-10-09 18:30:24 +00001206
Aaron Ballman35897d92014-04-28 14:56:59 +00001207 for (const auto &DM : LoopBackStates->VarMap) {
1208 LocalState = this->getState(DM.first);
DeLesley Hutchins3277a612013-10-09 18:30:24 +00001209
1210 if (LocalState == CS_None)
1211 continue;
1212
Aaron Ballman35897d92014-04-28 14:56:59 +00001213 if (LocalState != DM.second) {
1214 VarMap[DM.first] = CS_Unknown;
Aaron Ballmanfe46e622014-04-28 13:01:32 +00001215 WarningsHandler.warnLoopStateMismatch(BlameLoc,
Aaron Ballman35897d92014-04-28 14:56:59 +00001216 DM.first->getNameAsString());
DeLesley Hutchins3277a612013-10-09 18:30:24 +00001217 }
1218 }
1219}
1220
DeLesley Hutchins5533ec52013-08-29 17:26:57 +00001221void ConsumedStateMap::markUnreachable() {
1222 this->Reachable = false;
DeLesley Hutchins68cc3f12013-11-16 00:22:43 +00001223 VarMap.clear();
1224 TmpMap.clear();
DeLesley Hutchins5533ec52013-08-29 17:26:57 +00001225}
1226
DeLesley Hutchins48a31762013-08-12 21:20:55 +00001227void ConsumedStateMap::setState(const VarDecl *Var, ConsumedState State) {
DeLesley Hutchins68cc3f12013-11-16 00:22:43 +00001228 VarMap[Var] = State;
1229}
1230
1231void ConsumedStateMap::setState(const CXXBindTemporaryExpr *Tmp,
1232 ConsumedState State) {
1233 TmpMap[Tmp] = State;
DeLesley Hutchins48a31762013-08-12 21:20:55 +00001234}
1235
Manuel Klimekb33bded2014-05-08 11:50:00 +00001236void ConsumedStateMap::remove(const CXXBindTemporaryExpr *Tmp) {
1237 TmpMap.erase(Tmp);
DeLesley Hutchinsc2ecf0d2013-08-22 20:44:47 +00001238}
DeLesley Hutchins48a31762013-08-12 21:20:55 +00001239
DeLesley Hutchins3277a612013-10-09 18:30:24 +00001240bool ConsumedStateMap::operator!=(const ConsumedStateMap *Other) const {
Aaron Ballman35897d92014-04-28 14:56:59 +00001241 for (const auto &DM : Other->VarMap)
1242 if (this->getState(DM.first) != DM.second)
Aaron Ballmanfe46e622014-04-28 13:01:32 +00001243 return true;
DeLesley Hutchins3277a612013-10-09 18:30:24 +00001244 return false;
1245}
1246
David Blaikie16f76d22013-09-06 01:28:43 +00001247void ConsumedAnalyzer::determineExpectedReturnState(AnalysisDeclContext &AC,
1248 const FunctionDecl *D) {
1249 QualType ReturnType;
1250 if (const CXXConstructorDecl *Constructor = dyn_cast<CXXConstructorDecl>(D)) {
1251 ASTContext &CurrContext = AC.getASTContext();
1252 ReturnType = Constructor->getThisType(CurrContext)->getPointeeType();
1253 } else
1254 ReturnType = D->getCallResultType();
1255
Aaron Ballmanb06f2ef2013-12-19 02:58:51 +00001256 if (const ReturnTypestateAttr *RTSAttr = D->getAttr<ReturnTypestateAttr>()) {
David Blaikie16f76d22013-09-06 01:28:43 +00001257 const CXXRecordDecl *RD = ReturnType->getAsCXXRecordDecl();
1258 if (!RD || !RD->hasAttr<ConsumableAttr>()) {
1259 // FIXME: This should be removed when template instantiation propagates
1260 // attributes at template specialization definition, not
1261 // declaration. When it is removed the test needs to be enabled
1262 // in SemaDeclAttr.cpp.
1263 WarningsHandler.warnReturnTypestateForUnconsumableType(
1264 RTSAttr->getLocation(), ReturnType.getAsString());
1265 ExpectedReturnState = CS_None;
1266 } else
1267 ExpectedReturnState = mapReturnTypestateAttrState(RTSAttr);
DeLesley Hutchinsf28bbec2014-01-14 00:36:53 +00001268 } else if (isConsumableType(ReturnType)) {
1269 if (isAutoCastType(ReturnType)) // We can auto-cast the state to the
1270 ExpectedReturnState = CS_None; // expected state.
1271 else
1272 ExpectedReturnState = mapConsumableAttrState(ReturnType);
1273 }
David Blaikie16f76d22013-09-06 01:28:43 +00001274 else
1275 ExpectedReturnState = CS_None;
1276}
1277
DeLesley Hutchins5533ec52013-08-29 17:26:57 +00001278bool ConsumedAnalyzer::splitState(const CFGBlock *CurrBlock,
1279 const ConsumedStmtVisitor &Visitor) {
Ahmed Charlesb8984322014-03-07 20:03:18 +00001280
1281 std::unique_ptr<ConsumedStateMap> FalseStates(
1282 new ConsumedStateMap(*CurrStates));
DeLesley Hutchins5533ec52013-08-29 17:26:57 +00001283 PropagationInfo PInfo;
DeLesley Hutchins48a31762013-08-12 21:20:55 +00001284
DeLesley Hutchins5533ec52013-08-29 17:26:57 +00001285 if (const IfStmt *IfNode =
1286 dyn_cast_or_null<IfStmt>(CurrBlock->getTerminator().getStmt())) {
DeLesley Hutchins48a31762013-08-12 21:20:55 +00001287
DeLesley Hutchinsd7fa5bd2014-03-20 20:39:20 +00001288 const Expr *Cond = IfNode->getCond();
DeLesley Hutchins48a31762013-08-12 21:20:55 +00001289
DeLesley Hutchins5533ec52013-08-29 17:26:57 +00001290 PInfo = Visitor.getInfo(Cond);
1291 if (!PInfo.isValid() && isa<BinaryOperator>(Cond))
1292 PInfo = Visitor.getInfo(cast<BinaryOperator>(Cond)->getRHS());
1293
DeLesley Hutchins68cc3f12013-11-16 00:22:43 +00001294 if (PInfo.isVarTest()) {
DeLesley Hutchins5533ec52013-08-29 17:26:57 +00001295 CurrStates->setSource(Cond);
1296 FalseStates->setSource(Cond);
DeLesley Hutchins68cc3f12013-11-16 00:22:43 +00001297 splitVarStateForIf(IfNode, PInfo.getVarTest(), CurrStates,
Chris Wailes2dc8c422013-10-25 15:33:28 +00001298 FalseStates.get());
DeLesley Hutchins5533ec52013-08-29 17:26:57 +00001299
1300 } else if (PInfo.isBinTest()) {
1301 CurrStates->setSource(PInfo.testSourceNode());
1302 FalseStates->setSource(PInfo.testSourceNode());
Chris Wailes2dc8c422013-10-25 15:33:28 +00001303 splitVarStateForIfBinOp(PInfo, CurrStates, FalseStates.get());
DeLesley Hutchins48a31762013-08-12 21:20:55 +00001304
1305 } else {
DeLesley Hutchins5533ec52013-08-29 17:26:57 +00001306 return false;
DeLesley Hutchins48a31762013-08-12 21:20:55 +00001307 }
DeLesley Hutchins48a31762013-08-12 21:20:55 +00001308
DeLesley Hutchins5533ec52013-08-29 17:26:57 +00001309 } else if (const BinaryOperator *BinOp =
1310 dyn_cast_or_null<BinaryOperator>(CurrBlock->getTerminator().getStmt())) {
1311
1312 PInfo = Visitor.getInfo(BinOp->getLHS());
DeLesley Hutchins68cc3f12013-11-16 00:22:43 +00001313 if (!PInfo.isVarTest()) {
DeLesley Hutchins5533ec52013-08-29 17:26:57 +00001314 if ((BinOp = dyn_cast_or_null<BinaryOperator>(BinOp->getLHS()))) {
1315 PInfo = Visitor.getInfo(BinOp->getRHS());
1316
DeLesley Hutchins68cc3f12013-11-16 00:22:43 +00001317 if (!PInfo.isVarTest())
DeLesley Hutchins5533ec52013-08-29 17:26:57 +00001318 return false;
DeLesley Hutchins5533ec52013-08-29 17:26:57 +00001319
1320 } else {
DeLesley Hutchins5533ec52013-08-29 17:26:57 +00001321 return false;
1322 }
1323 }
1324
1325 CurrStates->setSource(BinOp);
1326 FalseStates->setSource(BinOp);
1327
DeLesley Hutchins68cc3f12013-11-16 00:22:43 +00001328 const VarTestResult &Test = PInfo.getVarTest();
DeLesley Hutchins5533ec52013-08-29 17:26:57 +00001329 ConsumedState VarState = CurrStates->getState(Test.Var);
1330
1331 if (BinOp->getOpcode() == BO_LAnd) {
1332 if (VarState == CS_Unknown)
1333 CurrStates->setState(Test.Var, Test.TestsFor);
1334 else if (VarState == invertConsumedUnconsumed(Test.TestsFor))
1335 CurrStates->markUnreachable();
1336
1337 } else if (BinOp->getOpcode() == BO_LOr) {
1338 if (VarState == CS_Unknown)
1339 FalseStates->setState(Test.Var,
1340 invertConsumedUnconsumed(Test.TestsFor));
1341 else if (VarState == Test.TestsFor)
1342 FalseStates->markUnreachable();
1343 }
1344
1345 } else {
DeLesley Hutchins5533ec52013-08-29 17:26:57 +00001346 return false;
1347 }
1348
DeLesley Hutchins48a31762013-08-12 21:20:55 +00001349 CFGBlock::const_succ_iterator SI = CurrBlock->succ_begin();
1350
DeLesley Hutchins5533ec52013-08-29 17:26:57 +00001351 if (*SI)
1352 BlockInfo.addInfo(*SI, CurrStates);
1353 else
1354 delete CurrStates;
1355
1356 if (*++SI)
Ahmed Charles9a16beb2014-03-07 19:33:25 +00001357 BlockInfo.addInfo(*SI, FalseStates.release());
1358
DeLesley Hutchins5533ec52013-08-29 17:26:57 +00001359 CurrStates = NULL;
1360 return true;
DeLesley Hutchins48a31762013-08-12 21:20:55 +00001361}
1362
1363void ConsumedAnalyzer::run(AnalysisDeclContext &AC) {
1364 const FunctionDecl *D = dyn_cast_or_null<FunctionDecl>(AC.getDecl());
DeLesley Hutchins85c07d92013-09-10 23:10:10 +00001365 if (!D)
1366 return;
DeLesley Hutchins48a31762013-08-12 21:20:55 +00001367
DeLesley Hutchins85c07d92013-09-10 23:10:10 +00001368 CFG *CFGraph = AC.getCFG();
1369 if (!CFGraph)
1370 return;
DeLesley Hutchins65013202013-10-17 18:19:31 +00001371
David Blaikie16f76d22013-09-06 01:28:43 +00001372 determineExpectedReturnState(AC, D);
DeLesley Hutchins3277a612013-10-09 18:30:24 +00001373
DeLesley Hutchins48a31762013-08-12 21:20:55 +00001374 PostOrderCFGView *SortedGraph = AC.getAnalysis<PostOrderCFGView>();
DeLesley Hutchins3277a612013-10-09 18:30:24 +00001375 // AC.getCFG()->viewCFG(LangOptions());
1376
1377 BlockInfo = ConsumedBlockInfo(CFGraph->getNumBlockIDs(), SortedGraph);
DeLesley Hutchins48a31762013-08-12 21:20:55 +00001378
1379 CurrStates = new ConsumedStateMap();
DeLesley Hutchinsb570c132013-08-29 22:36:05 +00001380 ConsumedStmtVisitor Visitor(AC, *this, CurrStates);
1381
1382 // Add all trackable parameters to the state map.
Aaron Ballmanfe46e622014-04-28 13:01:32 +00001383 for (const auto *PI : D->params())
Aaron Ballmanf6bf62e2014-03-07 15:12:56 +00001384 Visitor.VisitParmVarDecl(PI);
DeLesley Hutchins48a31762013-08-12 21:20:55 +00001385
1386 // Visit all of the function's basic blocks.
Aaron Ballmanfe46e622014-04-28 13:01:32 +00001387 for (const auto *CurrBlock : *SortedGraph) {
DeLesley Hutchins48a31762013-08-12 21:20:55 +00001388 if (CurrStates == NULL)
1389 CurrStates = BlockInfo.getInfo(CurrBlock);
DeLesley Hutchins5533ec52013-08-29 17:26:57 +00001390
1391 if (!CurrStates) {
1392 continue;
1393
1394 } else if (!CurrStates->isReachable()) {
1395 delete CurrStates;
1396 CurrStates = NULL;
1397 continue;
1398 }
1399
1400 Visitor.reset(CurrStates);
1401
DeLesley Hutchins48a31762013-08-12 21:20:55 +00001402 // Visit all of the basic block's statements.
Aaron Ballman35897d92014-04-28 14:56:59 +00001403 for (const auto &B : *CurrBlock) {
1404 switch (B.getKind()) {
DeLesley Hutchinsc2ecf0d2013-08-22 20:44:47 +00001405 case CFGElement::Statement:
Aaron Ballman35897d92014-04-28 14:56:59 +00001406 Visitor.Visit(B.castAs<CFGStmt>().getStmt());
DeLesley Hutchinsc2ecf0d2013-08-22 20:44:47 +00001407 break;
DeLesley Hutchinsfbdee4e2013-10-11 21:55:33 +00001408
1409 case CFGElement::TemporaryDtor: {
Aaron Ballman35897d92014-04-28 14:56:59 +00001410 const CFGTemporaryDtor &DTor = B.castAs<CFGTemporaryDtor>();
DeLesley Hutchinsfbdee4e2013-10-11 21:55:33 +00001411 const CXXBindTemporaryExpr *BTE = DTor.getBindTemporaryExpr();
DeLesley Hutchinsfbdee4e2013-10-11 21:55:33 +00001412
DeLesley Hutchins68cc3f12013-11-16 00:22:43 +00001413 Visitor.checkCallability(PropagationInfo(BTE),
1414 DTor.getDestructorDecl(AC.getASTContext()),
1415 BTE->getExprLoc());
Manuel Klimekb33bded2014-05-08 11:50:00 +00001416 CurrStates->remove(BTE);
DeLesley Hutchinsfbdee4e2013-10-11 21:55:33 +00001417 break;
1418 }
1419
1420 case CFGElement::AutomaticObjectDtor: {
Aaron Ballman35897d92014-04-28 14:56:59 +00001421 const CFGAutomaticObjDtor &DTor = B.castAs<CFGAutomaticObjDtor>();
DeLesley Hutchins68cc3f12013-11-16 00:22:43 +00001422 SourceLocation Loc = DTor.getTriggerStmt()->getLocEnd();
DeLesley Hutchinsfbdee4e2013-10-11 21:55:33 +00001423 const VarDecl *Var = DTor.getVarDecl();
DeLesley Hutchinsfbdee4e2013-10-11 21:55:33 +00001424
DeLesley Hutchins68cc3f12013-11-16 00:22:43 +00001425 Visitor.checkCallability(PropagationInfo(Var),
1426 DTor.getDestructorDecl(AC.getASTContext()),
1427 Loc);
DeLesley Hutchinsfbdee4e2013-10-11 21:55:33 +00001428 break;
1429 }
1430
DeLesley Hutchinsc2ecf0d2013-08-22 20:44:47 +00001431 default:
1432 break;
1433 }
DeLesley Hutchins48a31762013-08-12 21:20:55 +00001434 }
1435
DeLesley Hutchins5533ec52013-08-29 17:26:57 +00001436 // TODO: Handle other forms of branching with precision, including while-
1437 // and for-loops. (Deferred)
1438 if (!splitState(CurrBlock, Visitor)) {
1439 CurrStates->setSource(NULL);
DeLesley Hutchins48a31762013-08-12 21:20:55 +00001440
DeLesley Hutchins3277a612013-10-09 18:30:24 +00001441 if (CurrBlock->succ_size() > 1 ||
1442 (CurrBlock->succ_size() == 1 &&
1443 (*CurrBlock->succ_begin())->pred_size() > 1)) {
DeLesley Hutchins48a31762013-08-12 21:20:55 +00001444
DeLesley Hutchins5533ec52013-08-29 17:26:57 +00001445 bool OwnershipTaken = false;
1446
1447 for (CFGBlock::const_succ_iterator SI = CurrBlock->succ_begin(),
1448 SE = CurrBlock->succ_end(); SI != SE; ++SI) {
1449
DeLesley Hutchins3277a612013-10-09 18:30:24 +00001450 if (*SI == NULL) continue;
1451
1452 if (BlockInfo.isBackEdge(CurrBlock, *SI)) {
1453 BlockInfo.borrowInfo(*SI)->intersectAtLoopHead(*SI, CurrBlock,
1454 CurrStates,
1455 WarningsHandler);
1456
1457 if (BlockInfo.allBackEdgesVisited(*SI, CurrBlock))
1458 BlockInfo.discardInfo(*SI);
1459 } else {
1460 BlockInfo.addInfo(*SI, CurrStates, OwnershipTaken);
1461 }
DeLesley Hutchins5533ec52013-08-29 17:26:57 +00001462 }
1463
1464 if (!OwnershipTaken)
1465 delete CurrStates;
1466
1467 CurrStates = NULL;
DeLesley Hutchins48a31762013-08-12 21:20:55 +00001468 }
DeLesley Hutchins48a31762013-08-12 21:20:55 +00001469 }
DeLesley Hutchins36ea1dd2013-10-17 22:53:04 +00001470
1471 if (CurrBlock == &AC.getCFG()->getExit() &&
1472 D->getCallResultType()->isVoidType())
1473 CurrStates->checkParamsForReturnTypestate(D->getLocation(),
1474 WarningsHandler);
DeLesley Hutchins48a31762013-08-12 21:20:55 +00001475 } // End of block iterator.
1476
1477 // Delete the last existing state map.
1478 delete CurrStates;
1479
1480 WarningsHandler.emitDiagnostics();
1481}
DeLesley Hutchins48a31762013-08-12 21:20:55 +00001482}} // end namespace clang::consumed