blob: 0c130fe833bf92b09e9714d61114d7b4d5fd901a [file] [log] [blame]
Jordy Rose75e680e2011-09-02 06:44:22 +00001//==-- RetainCountChecker.cpp - Checks for leaks and other issues -*- C++ -*--//
Ted Kremenekea6507f2008-03-06 00:08:09 +00002//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
Jordy Rose75e680e2011-09-02 06:44:22 +000010// This file defines the methods for RetainCountChecker, which implements
11// a reference count checker for Core Foundation and Cocoa on (Mac OS X).
Ted Kremenekea6507f2008-03-06 00:08:09 +000012//
13//===----------------------------------------------------------------------===//
14
Jordy Rose75e680e2011-09-02 06:44:22 +000015#include "ClangSACheckers.h"
Chandler Carruth5553d0d2014-01-07 11:51:46 +000016#include "AllocationDiagnostics.h"
Jordan Rose0675c872014-04-09 01:39:22 +000017#include "SelectorExtras.h"
Benjamin Kramerea70eb32012-12-01 15:09:41 +000018#include "clang/AST/Attr.h"
Ted Kremenek98a24e32011-03-30 17:41:19 +000019#include "clang/AST/DeclCXX.h"
Benjamin Kramerea70eb32012-12-01 15:09:41 +000020#include "clang/AST/DeclObjC.h"
21#include "clang/AST/ParentMap.h"
22#include "clang/Analysis/DomainSpecific/CocoaConventions.h"
Ted Kremenek2b36f3f2010-02-18 00:05:58 +000023#include "clang/Basic/LangOptions.h"
24#include "clang/Basic/SourceManager.h"
Chandler Carruth5553d0d2014-01-07 11:51:46 +000025#include "clang/StaticAnalyzer/Checkers/ObjCRetainCount.h"
Ted Kremenekf8cbac42011-02-10 01:03:03 +000026#include "clang/StaticAnalyzer/Core/BugReporter/BugType.h"
27#include "clang/StaticAnalyzer/Core/BugReporter/PathDiagnostic.h"
Chandler Carruth3a022472012-12-04 09:13:33 +000028#include "clang/StaticAnalyzer/Core/Checker.h"
29#include "clang/StaticAnalyzer/Core/CheckerManager.h"
Jordan Rose4f7df9b2012-07-26 21:39:41 +000030#include "clang/StaticAnalyzer/Core/PathSensitive/CallEvent.h"
Jordy Rose75e680e2011-09-02 06:44:22 +000031#include "clang/StaticAnalyzer/Core/PathSensitive/CheckerContext.h"
Ted Kremenek001fd5b2011-08-15 22:09:50 +000032#include "clang/StaticAnalyzer/Core/PathSensitive/ProgramStateTrait.h"
Ted Kremenekf8cbac42011-02-10 01:03:03 +000033#include "clang/StaticAnalyzer/Core/PathSensitive/SymbolManager.h"
Ted Kremenek819e9b62008-03-11 06:39:11 +000034#include "llvm/ADT/DenseMap.h"
35#include "llvm/ADT/FoldingSet.h"
Ted Kremenek0747e7e2008-10-21 15:53:15 +000036#include "llvm/ADT/ImmutableList.h"
Ted Kremenek2b36f3f2010-02-18 00:05:58 +000037#include "llvm/ADT/ImmutableMap.h"
Ted Kremenekc812b232008-05-16 18:33:44 +000038#include "llvm/ADT/STLExtras.h"
Benjamin Kramerea70eb32012-12-01 15:09:41 +000039#include "llvm/ADT/SmallString.h"
Ted Kremenek2b36f3f2010-02-18 00:05:58 +000040#include "llvm/ADT/StringExtras.h"
Chris Lattner0e62c1c2011-07-23 10:55:15 +000041#include <cstdarg>
Ted Kremenekea6507f2008-03-06 00:08:09 +000042
43using namespace clang;
Ted Kremenek98857c92010-12-23 07:20:52 +000044using namespace ento;
Ted Kremenek243c0852013-08-14 23:41:46 +000045using namespace objc_retain;
Ted Kremenekdb1832d2010-01-27 06:13:48 +000046using llvm::StrInStrNoCase;
Ted Kremenek2855a932008-11-05 16:54:44 +000047
Ted Kremenekc8bef6a2008-04-09 23:49:11 +000048//===----------------------------------------------------------------------===//
Ted Kremenek243c0852013-08-14 23:41:46 +000049// Adapters for FoldingSet.
Ted Kremenekc8bef6a2008-04-09 23:49:11 +000050//===----------------------------------------------------------------------===//
51
Ted Kremenek819e9b62008-03-11 06:39:11 +000052namespace llvm {
Ted Kremenek7d79a5f2009-05-03 05:20:50 +000053template <> struct FoldingSetTrait<ArgEffect> {
Ted Kremenek243c0852013-08-14 23:41:46 +000054static inline void Profile(const ArgEffect X, FoldingSetNodeID &ID) {
Ted Kremenek7d79a5f2009-05-03 05:20:50 +000055 ID.AddInteger((unsigned) X);
56}
Ted Kremenek3185c9c2008-06-25 21:21:56 +000057};
Ted Kremenek243c0852013-08-14 23:41:46 +000058template <> struct FoldingSetTrait<RetEffect> {
59 static inline void Profile(const RetEffect &X, FoldingSetNodeID &ID) {
60 ID.AddInteger((unsigned) X.getKind());
61 ID.AddInteger((unsigned) X.getObjKind());
62}
63};
Ted Kremenek819e9b62008-03-11 06:39:11 +000064} // end llvm namespace
65
Ted Kremenek243c0852013-08-14 23:41:46 +000066//===----------------------------------------------------------------------===//
67// Reference-counting logic (typestate + counts).
68//===----------------------------------------------------------------------===//
69
Ted Kremenek7d79a5f2009-05-03 05:20:50 +000070/// ArgEffects summarizes the effects of a function/method call on all of
71/// its arguments.
72typedef llvm::ImmutableMap<unsigned,ArgEffect> ArgEffects;
73
Ted Kremenek819e9b62008-03-11 06:39:11 +000074namespace {
Kovarththanan Rajaratnam65c65662009-11-28 06:07:30 +000075class RefVal {
Ted Kremeneka2968e52009-11-13 01:54:21 +000076public:
77 enum Kind {
78 Owned = 0, // Owning reference.
79 NotOwned, // Reference is not owned by still valid (not freed).
80 Released, // Object has been released.
81 ReturnedOwned, // Returned object passes ownership to caller.
82 ReturnedNotOwned, // Return object does not pass ownership to caller.
83 ERROR_START,
84 ErrorDeallocNotOwned, // -dealloc called on non-owned object.
85 ErrorDeallocGC, // Calling -dealloc with GC enabled.
86 ErrorUseAfterRelease, // Object used after released.
87 ErrorReleaseNotOwned, // Release of an object that was not owned.
88 ERROR_LEAK_START,
89 ErrorLeak, // A memory leak due to excessive reference counts.
90 ErrorLeakReturned, // A memory leak due to the returning method not having
91 // the correct naming conventions.
92 ErrorGCLeakReturned,
93 ErrorOverAutorelease,
94 ErrorReturnedNotOwned
95 };
Ted Kremenekbd862712010-07-01 20:16:50 +000096
Ted Kremeneka2968e52009-11-13 01:54:21 +000097private:
Jordan Roseb3ad07e2014-03-25 17:10:58 +000098 /// The number of outstanding retains.
Ted Kremeneka2968e52009-11-13 01:54:21 +000099 unsigned Cnt;
Jordan Roseb3ad07e2014-03-25 17:10:58 +0000100 /// The number of outstanding autoreleases.
Ted Kremeneka2968e52009-11-13 01:54:21 +0000101 unsigned ACnt;
Jordan Roseb3ad07e2014-03-25 17:10:58 +0000102 /// The (static) type of the object at the time we started tracking it.
Ted Kremeneka2968e52009-11-13 01:54:21 +0000103 QualType T;
Ted Kremenekbd862712010-07-01 20:16:50 +0000104
Jordan Roseb3ad07e2014-03-25 17:10:58 +0000105 /// The current state of the object.
106 ///
107 /// See the RefVal::Kind enum for possible values.
108 unsigned RawKind : 5;
109
110 /// The kind of object being tracked (CF or ObjC), if known.
111 ///
112 /// See the RetEffect::ObjKind enum for possible values.
113 unsigned RawObjectKind : 2;
114
115 /// True if the current state and/or retain count may turn out to not be the
116 /// best possible approximation of the reference counting state.
117 ///
118 /// If true, the checker may decide to throw away ("override") this state
119 /// in favor of something else when it sees the object being used in new ways.
120 ///
121 /// This setting should not be propagated to state derived from this state.
122 /// Once we start deriving new states, it would be inconsistent to override
123 /// them.
124 unsigned IsOverridable : 1;
125
126 RefVal(Kind k, RetEffect::ObjKind o, unsigned cnt, unsigned acnt, QualType t,
127 bool Overridable = false)
128 : Cnt(cnt), ACnt(acnt), T(t), RawKind(static_cast<unsigned>(k)),
129 RawObjectKind(static_cast<unsigned>(o)), IsOverridable(Overridable) {
130 assert(getKind() == k && "not enough bits for the kind");
131 assert(getObjKind() == o && "not enough bits for the object kind");
132 }
Ted Kremenekbd862712010-07-01 20:16:50 +0000133
Ted Kremeneka2968e52009-11-13 01:54:21 +0000134public:
Jordan Roseb3ad07e2014-03-25 17:10:58 +0000135 Kind getKind() const { return static_cast<Kind>(RawKind); }
Ted Kremenekbd862712010-07-01 20:16:50 +0000136
Jordan Roseb3ad07e2014-03-25 17:10:58 +0000137 RetEffect::ObjKind getObjKind() const {
138 return static_cast<RetEffect::ObjKind>(RawObjectKind);
139 }
Ted Kremenekbd862712010-07-01 20:16:50 +0000140
Ted Kremeneka2968e52009-11-13 01:54:21 +0000141 unsigned getCount() const { return Cnt; }
142 unsigned getAutoreleaseCount() const { return ACnt; }
143 unsigned getCombinedCounts() const { return Cnt + ACnt; }
Jordan Roseb3ad07e2014-03-25 17:10:58 +0000144 void clearCounts() {
145 Cnt = 0;
146 ACnt = 0;
147 IsOverridable = false;
148 }
149 void setCount(unsigned i) {
150 Cnt = i;
151 IsOverridable = false;
152 }
153 void setAutoreleaseCount(unsigned i) {
154 ACnt = i;
155 IsOverridable = false;
156 }
Ted Kremenekbd862712010-07-01 20:16:50 +0000157
Ted Kremeneka2968e52009-11-13 01:54:21 +0000158 QualType getType() const { return T; }
Ted Kremenekbd862712010-07-01 20:16:50 +0000159
Jordan Roseb3ad07e2014-03-25 17:10:58 +0000160 bool isOverridable() const { return IsOverridable; }
161
Ted Kremeneka2968e52009-11-13 01:54:21 +0000162 bool isOwned() const {
163 return getKind() == Owned;
164 }
Ted Kremenekbd862712010-07-01 20:16:50 +0000165
Ted Kremeneka2968e52009-11-13 01:54:21 +0000166 bool isNotOwned() const {
167 return getKind() == NotOwned;
168 }
Ted Kremenekbd862712010-07-01 20:16:50 +0000169
Ted Kremeneka2968e52009-11-13 01:54:21 +0000170 bool isReturnedOwned() const {
171 return getKind() == ReturnedOwned;
172 }
Ted Kremenekbd862712010-07-01 20:16:50 +0000173
Ted Kremeneka2968e52009-11-13 01:54:21 +0000174 bool isReturnedNotOwned() const {
175 return getKind() == ReturnedNotOwned;
176 }
Ted Kremenekbd862712010-07-01 20:16:50 +0000177
Jordan Roseb3ad07e2014-03-25 17:10:58 +0000178 /// Create a state for an object whose lifetime is the responsibility of the
179 /// current function, at least partially.
180 ///
181 /// Most commonly, this is an owned object with a retain count of +1.
Ted Kremeneka2968e52009-11-13 01:54:21 +0000182 static RefVal makeOwned(RetEffect::ObjKind o, QualType t,
183 unsigned Count = 1) {
184 return RefVal(Owned, o, Count, 0, t);
185 }
Ted Kremenekbd862712010-07-01 20:16:50 +0000186
Jordan Roseb3ad07e2014-03-25 17:10:58 +0000187 /// Create a state for an object whose lifetime is not the responsibility of
188 /// the current function.
189 ///
190 /// Most commonly, this is an unowned object with a retain count of +0.
Ted Kremeneka2968e52009-11-13 01:54:21 +0000191 static RefVal makeNotOwned(RetEffect::ObjKind o, QualType t,
192 unsigned Count = 0) {
193 return RefVal(NotOwned, o, Count, 0, t);
194 }
Ted Kremenekbd862712010-07-01 20:16:50 +0000195
Jordan Roseb3ad07e2014-03-25 17:10:58 +0000196 /// Create an "overridable" state for an unowned object at +0.
197 ///
198 /// An overridable state is one that provides a good approximation of the
199 /// reference counting state now, but which may be discarded later if the
200 /// checker sees the object being used in new ways.
201 static RefVal makeOverridableNotOwned(RetEffect::ObjKind o, QualType t) {
202 return RefVal(NotOwned, o, 0, 0, t, /*Overridable=*/true);
Ted Kremeneka2968e52009-11-13 01:54:21 +0000203 }
Ted Kremenekbd862712010-07-01 20:16:50 +0000204
Ted Kremeneka2968e52009-11-13 01:54:21 +0000205 RefVal operator-(size_t i) const {
206 return RefVal(getKind(), getObjKind(), getCount() - i,
207 getAutoreleaseCount(), getType());
208 }
Ted Kremenekbd862712010-07-01 20:16:50 +0000209
Ted Kremeneka2968e52009-11-13 01:54:21 +0000210 RefVal operator+(size_t i) const {
211 return RefVal(getKind(), getObjKind(), getCount() + i,
212 getAutoreleaseCount(), getType());
213 }
Ted Kremenekbd862712010-07-01 20:16:50 +0000214
Ted Kremeneka2968e52009-11-13 01:54:21 +0000215 RefVal operator^(Kind k) const {
216 return RefVal(k, getObjKind(), getCount(), getAutoreleaseCount(),
217 getType());
218 }
Ted Kremenekbd862712010-07-01 20:16:50 +0000219
Ted Kremeneka2968e52009-11-13 01:54:21 +0000220 RefVal autorelease() const {
221 return RefVal(getKind(), getObjKind(), getCount(), getAutoreleaseCount()+1,
222 getType());
223 }
Ted Kremenekbd862712010-07-01 20:16:50 +0000224
Jordan Roseb3ad07e2014-03-25 17:10:58 +0000225 // Comparison, profiling, and pretty-printing.
226
227 bool hasSameState(const RefVal &X) const {
228 return getKind() == X.getKind() && Cnt == X.Cnt && ACnt == X.ACnt;
229 }
230
231 bool operator==(const RefVal& X) const {
232 return T == X.T && hasSameState(X) && getObjKind() == X.getObjKind() &&
233 IsOverridable == X.IsOverridable;
234 }
235
Ted Kremeneka2968e52009-11-13 01:54:21 +0000236 void Profile(llvm::FoldingSetNodeID& ID) const {
Jordan Roseb3ad07e2014-03-25 17:10:58 +0000237 ID.Add(T);
238 ID.AddInteger(RawKind);
Ted Kremeneka2968e52009-11-13 01:54:21 +0000239 ID.AddInteger(Cnt);
240 ID.AddInteger(ACnt);
Jordan Roseb3ad07e2014-03-25 17:10:58 +0000241 ID.AddInteger(RawObjectKind);
242 ID.AddBoolean(IsOverridable);
Ted Kremeneka2968e52009-11-13 01:54:21 +0000243 }
Ted Kremenekbd862712010-07-01 20:16:50 +0000244
Ted Kremenek5ef32db2011-08-12 23:37:29 +0000245 void print(raw_ostream &Out) const;
Ted Kremeneka2968e52009-11-13 01:54:21 +0000246};
247
Ted Kremenek5ef32db2011-08-12 23:37:29 +0000248void RefVal::print(raw_ostream &Out) const {
Ted Kremeneka2968e52009-11-13 01:54:21 +0000249 if (!T.isNull())
Jordy Rose58a20d32011-08-28 19:11:56 +0000250 Out << "Tracked " << T.getAsString() << '/';
Ted Kremenekbd862712010-07-01 20:16:50 +0000251
Jordan Roseb3ad07e2014-03-25 17:10:58 +0000252 if (isOverridable())
253 Out << "(overridable) ";
254
Ted Kremeneka2968e52009-11-13 01:54:21 +0000255 switch (getKind()) {
Jordy Rose75e680e2011-09-02 06:44:22 +0000256 default: llvm_unreachable("Invalid RefVal kind");
Ted Kremeneka2968e52009-11-13 01:54:21 +0000257 case Owned: {
258 Out << "Owned";
259 unsigned cnt = getCount();
260 if (cnt) Out << " (+ " << cnt << ")";
261 break;
262 }
Ted Kremenekbd862712010-07-01 20:16:50 +0000263
Ted Kremeneka2968e52009-11-13 01:54:21 +0000264 case NotOwned: {
265 Out << "NotOwned";
266 unsigned cnt = getCount();
267 if (cnt) Out << " (+ " << cnt << ")";
268 break;
269 }
Ted Kremenekbd862712010-07-01 20:16:50 +0000270
Ted Kremeneka2968e52009-11-13 01:54:21 +0000271 case ReturnedOwned: {
272 Out << "ReturnedOwned";
273 unsigned cnt = getCount();
274 if (cnt) Out << " (+ " << cnt << ")";
275 break;
276 }
Ted Kremenekbd862712010-07-01 20:16:50 +0000277
Ted Kremeneka2968e52009-11-13 01:54:21 +0000278 case ReturnedNotOwned: {
279 Out << "ReturnedNotOwned";
280 unsigned cnt = getCount();
281 if (cnt) Out << " (+ " << cnt << ")";
282 break;
283 }
Ted Kremenekbd862712010-07-01 20:16:50 +0000284
Ted Kremeneka2968e52009-11-13 01:54:21 +0000285 case Released:
286 Out << "Released";
287 break;
Ted Kremenekbd862712010-07-01 20:16:50 +0000288
Ted Kremeneka2968e52009-11-13 01:54:21 +0000289 case ErrorDeallocGC:
290 Out << "-dealloc (GC)";
291 break;
Ted Kremenekbd862712010-07-01 20:16:50 +0000292
Ted Kremeneka2968e52009-11-13 01:54:21 +0000293 case ErrorDeallocNotOwned:
294 Out << "-dealloc (not-owned)";
295 break;
Ted Kremenekbd862712010-07-01 20:16:50 +0000296
Ted Kremeneka2968e52009-11-13 01:54:21 +0000297 case ErrorLeak:
298 Out << "Leaked";
299 break;
Ted Kremenekbd862712010-07-01 20:16:50 +0000300
Ted Kremeneka2968e52009-11-13 01:54:21 +0000301 case ErrorLeakReturned:
302 Out << "Leaked (Bad naming)";
303 break;
Ted Kremenekbd862712010-07-01 20:16:50 +0000304
Ted Kremeneka2968e52009-11-13 01:54:21 +0000305 case ErrorGCLeakReturned:
306 Out << "Leaked (GC-ed at return)";
307 break;
Ted Kremenekbd862712010-07-01 20:16:50 +0000308
Ted Kremeneka2968e52009-11-13 01:54:21 +0000309 case ErrorUseAfterRelease:
310 Out << "Use-After-Release [ERROR]";
311 break;
Ted Kremenekbd862712010-07-01 20:16:50 +0000312
Ted Kremeneka2968e52009-11-13 01:54:21 +0000313 case ErrorReleaseNotOwned:
314 Out << "Release of Not-Owned [ERROR]";
315 break;
Ted Kremenekbd862712010-07-01 20:16:50 +0000316
Ted Kremeneka2968e52009-11-13 01:54:21 +0000317 case RefVal::ErrorOverAutorelease:
Jordan Rose7467f062013-04-23 01:42:25 +0000318 Out << "Over-autoreleased";
Ted Kremeneka2968e52009-11-13 01:54:21 +0000319 break;
Ted Kremenekbd862712010-07-01 20:16:50 +0000320
Ted Kremeneka2968e52009-11-13 01:54:21 +0000321 case RefVal::ErrorReturnedNotOwned:
322 Out << "Non-owned object returned instead of owned";
323 break;
324 }
Ted Kremenekbd862712010-07-01 20:16:50 +0000325
Ted Kremeneka2968e52009-11-13 01:54:21 +0000326 if (ACnt) {
327 Out << " [ARC +" << ACnt << ']';
328 }
329}
330} //end anonymous namespace
331
332//===----------------------------------------------------------------------===//
333// RefBindings - State used to track object reference counts.
334//===----------------------------------------------------------------------===//
335
Jordan Rose0c153cb2012-11-02 01:54:06 +0000336REGISTER_MAP_WITH_PROGRAMSTATE(RefBindings, SymbolRef, RefVal)
Ted Kremeneka2968e52009-11-13 01:54:21 +0000337
Anna Zaksf5788c72012-08-14 00:36:15 +0000338static inline const RefVal *getRefBinding(ProgramStateRef State,
339 SymbolRef Sym) {
340 return State->get<RefBindings>(Sym);
341}
342
343static inline ProgramStateRef setRefBinding(ProgramStateRef State,
344 SymbolRef Sym, RefVal Val) {
345 return State->set<RefBindings>(Sym, Val);
346}
347
348static ProgramStateRef removeRefBinding(ProgramStateRef State, SymbolRef Sym) {
349 return State->remove<RefBindings>(Sym);
350}
351
Ted Kremeneka2968e52009-11-13 01:54:21 +0000352//===----------------------------------------------------------------------===//
Jordy Rose75e680e2011-09-02 06:44:22 +0000353// Function/Method behavior summaries.
Ted Kremeneka2968e52009-11-13 01:54:21 +0000354//===----------------------------------------------------------------------===//
355
356namespace {
Kovarththanan Rajaratnam65c65662009-11-28 06:07:30 +0000357class RetainSummary {
Jordy Rose61c974b2012-03-18 01:26:10 +0000358 /// Args - a map of (index, ArgEffect) pairs, where index
Ted Kremenekcb2e6362008-05-06 15:44:25 +0000359 /// specifies the argument (starting from 0). This can be sparsely
360 /// populated; arguments with no entry in Args use 'DefaultArgEffect'.
Ted Kremenek7d79a5f2009-05-03 05:20:50 +0000361 ArgEffects Args;
Mike Stump11289f42009-09-09 15:08:12 +0000362
Ted Kremenekcb2e6362008-05-06 15:44:25 +0000363 /// DefaultArgEffect - The default ArgEffect to apply to arguments that
364 /// do not have an entry in Args.
Ted Kremeneke8300e52012-01-04 00:35:45 +0000365 ArgEffect DefaultArgEffect;
Mike Stump11289f42009-09-09 15:08:12 +0000366
Ted Kremenek3185c9c2008-06-25 21:21:56 +0000367 /// Receiver - If this summary applies to an Objective-C message expression,
368 /// this is the effect applied to the state of the receiver.
Ted Kremeneke8300e52012-01-04 00:35:45 +0000369 ArgEffect Receiver;
Mike Stump11289f42009-09-09 15:08:12 +0000370
Ted Kremenek3185c9c2008-06-25 21:21:56 +0000371 /// Ret - The effect on the return value. Used to indicate if the
Jordy Rose898a1482011-08-21 21:58:18 +0000372 /// function/method call returns a new tracked symbol.
Ted Kremeneke8300e52012-01-04 00:35:45 +0000373 RetEffect Ret;
Mike Stump11289f42009-09-09 15:08:12 +0000374
Ted Kremenek819e9b62008-03-11 06:39:11 +0000375public:
Ted Kremenek7d79a5f2009-05-03 05:20:50 +0000376 RetainSummary(ArgEffects A, RetEffect R, ArgEffect defaultEff,
Jordy Rose5a3c9ff2011-08-20 20:55:40 +0000377 ArgEffect ReceiverEff)
378 : Args(A), DefaultArgEffect(defaultEff), Receiver(ReceiverEff), Ret(R) {}
Mike Stump11289f42009-09-09 15:08:12 +0000379
Ted Kremenek3185c9c2008-06-25 21:21:56 +0000380 /// getArg - Return the argument effect on the argument specified by
381 /// idx (starting from 0).
Ted Kremenekbf9d8042008-03-11 17:48:22 +0000382 ArgEffect getArg(unsigned idx) const {
Ted Kremenek7d79a5f2009-05-03 05:20:50 +0000383 if (const ArgEffect *AE = Args.lookup(idx))
384 return *AE;
Mike Stump11289f42009-09-09 15:08:12 +0000385
Ted Kremenekcb2e6362008-05-06 15:44:25 +0000386 return DefaultArgEffect;
Ted Kremenekbf9d8042008-03-11 17:48:22 +0000387 }
Ted Kremenek71c080f2013-08-14 23:41:49 +0000388
Ted Kremenekafe348e2011-01-27 18:43:03 +0000389 void addArg(ArgEffects::Factory &af, unsigned idx, ArgEffect e) {
390 Args = af.add(Args, idx, e);
391 }
Mike Stump11289f42009-09-09 15:08:12 +0000392
Ted Kremenek1d9a2672009-05-04 05:31:22 +0000393 /// setDefaultArgEffect - Set the default argument effect.
394 void setDefaultArgEffect(ArgEffect E) {
395 DefaultArgEffect = E;
396 }
Mike Stump11289f42009-09-09 15:08:12 +0000397
Ted Kremenek3185c9c2008-06-25 21:21:56 +0000398 /// getRetEffect - Returns the effect on the return value of the call.
Ted Kremenek7d79a5f2009-05-03 05:20:50 +0000399 RetEffect getRetEffect() const { return Ret; }
Mike Stump11289f42009-09-09 15:08:12 +0000400
Ted Kremenek1d9a2672009-05-04 05:31:22 +0000401 /// setRetEffect - Set the effect of the return value of the call.
402 void setRetEffect(RetEffect E) { Ret = E; }
Mike Stump11289f42009-09-09 15:08:12 +0000403
Ted Kremenek0e898382011-01-27 06:54:14 +0000404
405 /// Sets the effect on the receiver of the message.
406 void setReceiverEffect(ArgEffect e) { Receiver = e; }
407
Ted Kremenek3185c9c2008-06-25 21:21:56 +0000408 /// getReceiverEffect - Returns the effect on the receiver of the call.
409 /// This is only meaningful if the summary applies to an ObjCMessageExpr*.
Ted Kremenek7d79a5f2009-05-03 05:20:50 +0000410 ArgEffect getReceiverEffect() const { return Receiver; }
Jordy Rose212e4592011-08-23 04:27:15 +0000411
412 /// Test if two retain summaries are identical. Note that merely equivalent
413 /// summaries are not necessarily identical (for example, if an explicit
414 /// argument effect matches the default effect).
415 bool operator==(const RetainSummary &Other) const {
416 return Args == Other.Args && DefaultArgEffect == Other.DefaultArgEffect &&
417 Receiver == Other.Receiver && Ret == Other.Ret;
418 }
Jordy Rose61c974b2012-03-18 01:26:10 +0000419
420 /// Profile this summary for inclusion in a FoldingSet.
421 void Profile(llvm::FoldingSetNodeID& ID) const {
422 ID.Add(Args);
423 ID.Add(DefaultArgEffect);
424 ID.Add(Receiver);
425 ID.Add(Ret);
426 }
427
428 /// A retain summary is simple if it has no ArgEffects other than the default.
429 bool isSimple() const {
430 return Args.isEmpty();
431 }
Jordan Roseeec15392012-07-02 19:27:43 +0000432
433private:
434 ArgEffects getArgEffects() const { return Args; }
435 ArgEffect getDefaultArgEffect() const { return DefaultArgEffect; }
436
437 friend class RetainSummaryManager;
Ted Kremenek819e9b62008-03-11 06:39:11 +0000438};
Ted Kremenek0cfc1612008-06-23 23:30:29 +0000439} // end anonymous namespace
Ted Kremenek819e9b62008-03-11 06:39:11 +0000440
Ted Kremenek3185c9c2008-06-25 21:21:56 +0000441//===----------------------------------------------------------------------===//
442// Data structures for constructing summaries.
443//===----------------------------------------------------------------------===//
Ted Kremenekb1d13292008-06-24 03:49:48 +0000444
Ted Kremenek3185c9c2008-06-25 21:21:56 +0000445namespace {
Kovarththanan Rajaratnam65c65662009-11-28 06:07:30 +0000446class ObjCSummaryKey {
Ted Kremenek3185c9c2008-06-25 21:21:56 +0000447 IdentifierInfo* II;
448 Selector S;
Mike Stump11289f42009-09-09 15:08:12 +0000449public:
Ted Kremenek3185c9c2008-06-25 21:21:56 +0000450 ObjCSummaryKey(IdentifierInfo* ii, Selector s)
451 : II(ii), S(s) {}
452
Ted Kremenek5ef32db2011-08-12 23:37:29 +0000453 ObjCSummaryKey(const ObjCInterfaceDecl *d, Selector s)
Craig Topper0dbb7832014-05-27 02:45:47 +0000454 : II(d ? d->getIdentifier() : nullptr), S(s) {}
Ted Kremenek5801f652009-05-13 18:16:01 +0000455
Ted Kremenek3185c9c2008-06-25 21:21:56 +0000456 ObjCSummaryKey(Selector s)
Craig Topper0dbb7832014-05-27 02:45:47 +0000457 : II(nullptr), S(s) {}
Mike Stump11289f42009-09-09 15:08:12 +0000458
Ted Kremeneke8300e52012-01-04 00:35:45 +0000459 IdentifierInfo *getIdentifier() const { return II; }
Ted Kremenek3185c9c2008-06-25 21:21:56 +0000460 Selector getSelector() const { return S; }
461};
Ted Kremenek0cfc1612008-06-23 23:30:29 +0000462}
463
464namespace llvm {
Ted Kremenek3185c9c2008-06-25 21:21:56 +0000465template <> struct DenseMapInfo<ObjCSummaryKey> {
466 static inline ObjCSummaryKey getEmptyKey() {
467 return ObjCSummaryKey(DenseMapInfo<IdentifierInfo*>::getEmptyKey(),
468 DenseMapInfo<Selector>::getEmptyKey());
469 }
Mike Stump11289f42009-09-09 15:08:12 +0000470
Ted Kremenek3185c9c2008-06-25 21:21:56 +0000471 static inline ObjCSummaryKey getTombstoneKey() {
472 return ObjCSummaryKey(DenseMapInfo<IdentifierInfo*>::getTombstoneKey(),
Mike Stump11289f42009-09-09 15:08:12 +0000473 DenseMapInfo<Selector>::getTombstoneKey());
Ted Kremenek3185c9c2008-06-25 21:21:56 +0000474 }
Mike Stump11289f42009-09-09 15:08:12 +0000475
Ted Kremenek3185c9c2008-06-25 21:21:56 +0000476 static unsigned getHashValue(const ObjCSummaryKey &V) {
Benjamin Kramer69b5a602012-05-27 13:28:44 +0000477 typedef std::pair<IdentifierInfo*, Selector> PairTy;
478 return DenseMapInfo<PairTy>::getHashValue(PairTy(V.getIdentifier(),
479 V.getSelector()));
Ted Kremenek3185c9c2008-06-25 21:21:56 +0000480 }
Mike Stump11289f42009-09-09 15:08:12 +0000481
Ted Kremenek3185c9c2008-06-25 21:21:56 +0000482 static bool isEqual(const ObjCSummaryKey& LHS, const ObjCSummaryKey& RHS) {
Benjamin Kramer69b5a602012-05-27 13:28:44 +0000483 return LHS.getIdentifier() == RHS.getIdentifier() &&
484 LHS.getSelector() == RHS.getSelector();
Ted Kremenek3185c9c2008-06-25 21:21:56 +0000485 }
Mike Stump11289f42009-09-09 15:08:12 +0000486
Ted Kremenek3185c9c2008-06-25 21:21:56 +0000487};
Ted Kremenek0cfc1612008-06-23 23:30:29 +0000488} // end llvm namespace
Mike Stump11289f42009-09-09 15:08:12 +0000489
Ted Kremenek0cfc1612008-06-23 23:30:29 +0000490namespace {
Kovarththanan Rajaratnam65c65662009-11-28 06:07:30 +0000491class ObjCSummaryCache {
Ted Kremenekf3e3f662011-10-05 23:54:29 +0000492 typedef llvm::DenseMap<ObjCSummaryKey, const RetainSummary *> MapTy;
Ted Kremenek3185c9c2008-06-25 21:21:56 +0000493 MapTy M;
494public:
495 ObjCSummaryCache() {}
Mike Stump11289f42009-09-09 15:08:12 +0000496
Ted Kremenekf3e3f662011-10-05 23:54:29 +0000497 const RetainSummary * find(const ObjCInterfaceDecl *D, Selector S) {
Ted Kremenek3185c9c2008-06-25 21:21:56 +0000498 // Do a lookup with the (D,S) pair. If we find a match return
499 // the iterator.
500 ObjCSummaryKey K(D, S);
501 MapTy::iterator I = M.find(K);
Mike Stump11289f42009-09-09 15:08:12 +0000502
Jordan Roseeec15392012-07-02 19:27:43 +0000503 if (I != M.end())
Ted Kremenek8be51382009-07-21 23:27:57 +0000504 return I->second;
Jordan Roseeec15392012-07-02 19:27:43 +0000505 if (!D)
Craig Topper0dbb7832014-05-27 02:45:47 +0000506 return nullptr;
Mike Stump11289f42009-09-09 15:08:12 +0000507
Ted Kremenek3185c9c2008-06-25 21:21:56 +0000508 // Walk the super chain. If we find a hit with a parent, we'll end
509 // up returning that summary. We actually allow that key (null,S), as
510 // we cache summaries for the null ObjCInterfaceDecl* to allow us to
511 // generate initial summaries without having to worry about NSObject
512 // being declared.
513 // FIXME: We may change this at some point.
Ted Kremenek5ef32db2011-08-12 23:37:29 +0000514 for (ObjCInterfaceDecl *C=D->getSuperClass() ;; C=C->getSuperClass()) {
Ted Kremenek3185c9c2008-06-25 21:21:56 +0000515 if ((I = M.find(ObjCSummaryKey(C, S))) != M.end())
516 break;
Mike Stump11289f42009-09-09 15:08:12 +0000517
Ted Kremenek3185c9c2008-06-25 21:21:56 +0000518 if (!C)
Craig Topper0dbb7832014-05-27 02:45:47 +0000519 return nullptr;
Ted Kremenek3185c9c2008-06-25 21:21:56 +0000520 }
Mike Stump11289f42009-09-09 15:08:12 +0000521
522 // Cache the summary with original key to make the next lookup faster
Ted Kremenek3185c9c2008-06-25 21:21:56 +0000523 // and return the iterator.
Ted Kremenekf3e3f662011-10-05 23:54:29 +0000524 const RetainSummary *Summ = I->second;
Ted Kremenek8be51382009-07-21 23:27:57 +0000525 M[K] = Summ;
526 return Summ;
Ted Kremenek3185c9c2008-06-25 21:21:56 +0000527 }
Mike Stump11289f42009-09-09 15:08:12 +0000528
Ted Kremeneke8300e52012-01-04 00:35:45 +0000529 const RetainSummary *find(IdentifierInfo* II, Selector S) {
Ted Kremenek3185c9c2008-06-25 21:21:56 +0000530 // FIXME: Class method lookup. Right now we dont' have a good way
531 // of going between IdentifierInfo* and the class hierarchy.
Ted Kremenek8be51382009-07-21 23:27:57 +0000532 MapTy::iterator I = M.find(ObjCSummaryKey(II, S));
Mike Stump11289f42009-09-09 15:08:12 +0000533
Ted Kremenek8be51382009-07-21 23:27:57 +0000534 if (I == M.end())
535 I = M.find(ObjCSummaryKey(S));
Mike Stump11289f42009-09-09 15:08:12 +0000536
Craig Topper0dbb7832014-05-27 02:45:47 +0000537 return I == M.end() ? nullptr : I->second;
Ted Kremenek3185c9c2008-06-25 21:21:56 +0000538 }
Mike Stump11289f42009-09-09 15:08:12 +0000539
Ted Kremenekf3e3f662011-10-05 23:54:29 +0000540 const RetainSummary *& operator[](ObjCSummaryKey K) {
Ted Kremenek3185c9c2008-06-25 21:21:56 +0000541 return M[K];
542 }
Mike Stump11289f42009-09-09 15:08:12 +0000543
Ted Kremenekf3e3f662011-10-05 23:54:29 +0000544 const RetainSummary *& operator[](Selector S) {
Ted Kremenek3185c9c2008-06-25 21:21:56 +0000545 return M[ ObjCSummaryKey(S) ];
546 }
Mike Stump11289f42009-09-09 15:08:12 +0000547};
Ted Kremenek3185c9c2008-06-25 21:21:56 +0000548} // end anonymous namespace
549
550//===----------------------------------------------------------------------===//
551// Data structures for managing collections of summaries.
552//===----------------------------------------------------------------------===//
553
554namespace {
Kovarththanan Rajaratnam65c65662009-11-28 06:07:30 +0000555class RetainSummaryManager {
Ted Kremenek00daccd2008-05-05 22:11:16 +0000556
557 //==-----------------------------------------------------------------==//
558 // Typedefs.
559 //==-----------------------------------------------------------------==//
Mike Stump11289f42009-09-09 15:08:12 +0000560
Ted Kremenekf3e3f662011-10-05 23:54:29 +0000561 typedef llvm::DenseMap<const FunctionDecl*, const RetainSummary *>
Ted Kremenek00daccd2008-05-05 22:11:16 +0000562 FuncSummariesTy;
Mike Stump11289f42009-09-09 15:08:12 +0000563
Ted Kremenek0cfc1612008-06-23 23:30:29 +0000564 typedef ObjCSummaryCache ObjCMethodSummariesTy;
Mike Stump11289f42009-09-09 15:08:12 +0000565
Jordy Rose61c974b2012-03-18 01:26:10 +0000566 typedef llvm::FoldingSetNodeWrapper<RetainSummary> CachedSummaryNode;
567
Ted Kremenek00daccd2008-05-05 22:11:16 +0000568 //==-----------------------------------------------------------------==//
569 // Data.
570 //==-----------------------------------------------------------------==//
Mike Stump11289f42009-09-09 15:08:12 +0000571
Ted Kremenek3185c9c2008-06-25 21:21:56 +0000572 /// Ctx - The ASTContext object for the analyzed ASTs.
Ted Kremenek5ef32db2011-08-12 23:37:29 +0000573 ASTContext &Ctx;
Ted Kremenekab54e512008-07-01 17:21:27 +0000574
Ted Kremenek3185c9c2008-06-25 21:21:56 +0000575 /// GCEnabled - Records whether or not the analyzed code runs in GC mode.
Ted Kremenek4b7ca772008-04-29 05:33:51 +0000576 const bool GCEnabled;
Mike Stump11289f42009-09-09 15:08:12 +0000577
John McCall31168b02011-06-15 23:02:42 +0000578 /// Records whether or not the analyzed code runs in ARC mode.
579 const bool ARCEnabled;
580
Ted Kremenek3185c9c2008-06-25 21:21:56 +0000581 /// FuncSummaries - A map from FunctionDecls to summaries.
Mike Stump11289f42009-09-09 15:08:12 +0000582 FuncSummariesTy FuncSummaries;
583
Ted Kremenek3185c9c2008-06-25 21:21:56 +0000584 /// ObjCClassMethodSummaries - A map from selectors (for instance methods)
585 /// to summaries.
Ted Kremenekea736c52008-06-23 22:21:20 +0000586 ObjCMethodSummariesTy ObjCClassMethodSummaries;
Ted Kremenek00daccd2008-05-05 22:11:16 +0000587
Ted Kremenek3185c9c2008-06-25 21:21:56 +0000588 /// ObjCMethodSummaries - A map from selectors to summaries.
Ted Kremenekea736c52008-06-23 22:21:20 +0000589 ObjCMethodSummariesTy ObjCMethodSummaries;
Ted Kremenek00daccd2008-05-05 22:11:16 +0000590
Ted Kremenek3185c9c2008-06-25 21:21:56 +0000591 /// BPAlloc - A BumpPtrAllocator used for allocating summaries, ArgEffects,
592 /// and all other data used by the checker.
Ted Kremenek00daccd2008-05-05 22:11:16 +0000593 llvm::BumpPtrAllocator BPAlloc;
Mike Stump11289f42009-09-09 15:08:12 +0000594
Ted Kremenek7d79a5f2009-05-03 05:20:50 +0000595 /// AF - A factory for ArgEffects objects.
Mike Stump11289f42009-09-09 15:08:12 +0000596 ArgEffects::Factory AF;
597
Ted Kremenek3185c9c2008-06-25 21:21:56 +0000598 /// ScratchArgs - A holding buffer for construct ArgEffects.
Ted Kremeneke8300e52012-01-04 00:35:45 +0000599 ArgEffects ScratchArgs;
Mike Stump11289f42009-09-09 15:08:12 +0000600
Ted Kremenek9157fbb2009-05-07 23:40:42 +0000601 /// ObjCAllocRetE - Default return effect for methods returning Objective-C
602 /// objects.
603 RetEffect ObjCAllocRetE;
Ted Kremeneka03705c2009-06-05 23:18:01 +0000604
Mike Stump11289f42009-09-09 15:08:12 +0000605 /// ObjCInitRetE - Default return effect for init methods returning
Ted Kremenek815fbb62009-08-20 05:13:36 +0000606 /// Objective-C objects.
Ted Kremeneka03705c2009-06-05 23:18:01 +0000607 RetEffect ObjCInitRetE;
Mike Stump11289f42009-09-09 15:08:12 +0000608
Jordy Rose61c974b2012-03-18 01:26:10 +0000609 /// SimpleSummaries - Used for uniquing summaries that don't have special
610 /// effects.
611 llvm::FoldingSet<CachedSummaryNode> SimpleSummaries;
Mike Stump11289f42009-09-09 15:08:12 +0000612
Ted Kremenek00daccd2008-05-05 22:11:16 +0000613 //==-----------------------------------------------------------------==//
614 // Methods.
615 //==-----------------------------------------------------------------==//
Mike Stump11289f42009-09-09 15:08:12 +0000616
Ted Kremenek3185c9c2008-06-25 21:21:56 +0000617 /// getArgEffects - Returns a persistent ArgEffects object based on the
618 /// data in ScratchArgs.
Ted Kremenek7d79a5f2009-05-03 05:20:50 +0000619 ArgEffects getArgEffects();
Ted Kremenek819e9b62008-03-11 06:39:11 +0000620
Jordan Rose77411322013-10-07 17:16:52 +0000621 enum UnaryFuncKind { cfretain, cfrelease, cfautorelease, cfmakecollectable };
Ted Kremenekf3e3f662011-10-05 23:54:29 +0000622
Ted Kremeneke8300e52012-01-04 00:35:45 +0000623 const RetainSummary *getUnarySummary(const FunctionType* FT,
Ted Kremenekf3e3f662011-10-05 23:54:29 +0000624 UnaryFuncKind func);
Mike Stump11289f42009-09-09 15:08:12 +0000625
Ted Kremeneke8300e52012-01-04 00:35:45 +0000626 const RetainSummary *getCFSummaryCreateRule(const FunctionDecl *FD);
627 const RetainSummary *getCFSummaryGetRule(const FunctionDecl *FD);
628 const RetainSummary *getCFCreateGetRuleSummary(const FunctionDecl *FD);
Mike Stump11289f42009-09-09 15:08:12 +0000629
Jordy Rose61c974b2012-03-18 01:26:10 +0000630 const RetainSummary *getPersistentSummary(const RetainSummary &OldSumm);
Ted Kremenek3700b762008-10-29 04:07:07 +0000631
Jordy Rose61c974b2012-03-18 01:26:10 +0000632 const RetainSummary *getPersistentSummary(RetEffect RetEff,
Ted Kremenekf3e3f662011-10-05 23:54:29 +0000633 ArgEffect ReceiverEff = DoNothing,
634 ArgEffect DefaultEff = MayEscape) {
Jordy Rose61c974b2012-03-18 01:26:10 +0000635 RetainSummary Summ(getArgEffects(), RetEff, DefaultEff, ReceiverEff);
636 return getPersistentSummary(Summ);
637 }
638
Ted Kremenekececf9f2012-05-08 00:12:09 +0000639 const RetainSummary *getDoNothingSummary() {
640 return getPersistentSummary(RetEffect::MakeNoRet(), DoNothing, DoNothing);
641 }
642
Jordy Rose61c974b2012-03-18 01:26:10 +0000643 const RetainSummary *getDefaultSummary() {
644 return getPersistentSummary(RetEffect::MakeNoRet(),
645 DoNothing, MayEscape);
Ted Kremenek0806f912008-05-06 00:30:21 +0000646 }
Mike Stump11289f42009-09-09 15:08:12 +0000647
Ted Kremenekf3e3f662011-10-05 23:54:29 +0000648 const RetainSummary *getPersistentStopSummary() {
Jordy Rose61c974b2012-03-18 01:26:10 +0000649 return getPersistentSummary(RetEffect::MakeNoRet(),
650 StopTracking, StopTracking);
Mike Stump11289f42009-09-09 15:08:12 +0000651 }
Ted Kremenek015c3562008-05-06 04:20:12 +0000652
Ted Kremenekea736c52008-06-23 22:21:20 +0000653 void InitializeClassMethodSummaries();
654 void InitializeMethodSummaries();
Ted Kremenekcc3d1882008-10-23 01:56:15 +0000655private:
Ted Kremenekf3e3f662011-10-05 23:54:29 +0000656 void addNSObjectClsMethSummary(Selector S, const RetainSummary *Summ) {
Ted Kremenek3185c9c2008-06-25 21:21:56 +0000657 ObjCClassMethodSummaries[S] = Summ;
658 }
Mike Stump11289f42009-09-09 15:08:12 +0000659
Ted Kremenekf3e3f662011-10-05 23:54:29 +0000660 void addNSObjectMethSummary(Selector S, const RetainSummary *Summ) {
Ted Kremenek3185c9c2008-06-25 21:21:56 +0000661 ObjCMethodSummaries[S] = Summ;
662 }
Ted Kremenek00dfe302009-03-04 23:30:42 +0000663
Ted Kremeneke8a5ba82012-02-18 21:37:48 +0000664 void addClassMethSummary(const char* Cls, const char* name,
665 const RetainSummary *Summ, bool isNullary = true) {
Ted Kremenek00dfe302009-03-04 23:30:42 +0000666 IdentifierInfo* ClsII = &Ctx.Idents.get(Cls);
Ted Kremeneke8a5ba82012-02-18 21:37:48 +0000667 Selector S = isNullary ? GetNullarySelector(name, Ctx)
668 : GetUnarySelector(name, Ctx);
Ted Kremenek00dfe302009-03-04 23:30:42 +0000669 ObjCClassMethodSummaries[ObjCSummaryKey(ClsII, S)] = Summ;
670 }
Mike Stump11289f42009-09-09 15:08:12 +0000671
Ted Kremenekdce78462009-02-25 02:54:57 +0000672 void addInstMethSummary(const char* Cls, const char* nullaryName,
Ted Kremenekf3e3f662011-10-05 23:54:29 +0000673 const RetainSummary *Summ) {
Ted Kremenekdce78462009-02-25 02:54:57 +0000674 IdentifierInfo* ClsII = &Ctx.Idents.get(Cls);
675 Selector S = GetNullarySelector(nullaryName, Ctx);
676 ObjCMethodSummaries[ObjCSummaryKey(ClsII, S)] = Summ;
677 }
Mike Stump11289f42009-09-09 15:08:12 +0000678
Jordan Rose0675c872014-04-09 01:39:22 +0000679 void addMethodSummary(IdentifierInfo *ClsII, ObjCMethodSummariesTy &Summaries,
680 const RetainSummary *Summ, va_list argp) {
681 Selector S = getKeywordSelector(Ctx, argp);
Ted Kremenek8a5ad392009-04-24 17:50:11 +0000682 Summaries[ObjCSummaryKey(ClsII, S)] = Summ;
Ted Kremenek3b2294c2008-07-18 17:24:20 +0000683 }
Mike Stump11289f42009-09-09 15:08:12 +0000684
Ted Kremenekf3e3f662011-10-05 23:54:29 +0000685 void addInstMethSummary(const char* Cls, const RetainSummary * Summ, ...) {
Ted Kremenek3f13f592008-08-12 18:48:50 +0000686 va_list argp;
687 va_start(argp, Summ);
Ted Kremenek8a5ad392009-04-24 17:50:11 +0000688 addMethodSummary(&Ctx.Idents.get(Cls), ObjCMethodSummaries, Summ, argp);
Mike Stump11289f42009-09-09 15:08:12 +0000689 va_end(argp);
Ted Kremenek3f13f592008-08-12 18:48:50 +0000690 }
Mike Stump11289f42009-09-09 15:08:12 +0000691
Ted Kremenekf3e3f662011-10-05 23:54:29 +0000692 void addClsMethSummary(const char* Cls, const RetainSummary * Summ, ...) {
Ted Kremenek8a5ad392009-04-24 17:50:11 +0000693 va_list argp;
694 va_start(argp, Summ);
695 addMethodSummary(&Ctx.Idents.get(Cls),ObjCClassMethodSummaries, Summ, argp);
696 va_end(argp);
697 }
Mike Stump11289f42009-09-09 15:08:12 +0000698
Ted Kremenekf3e3f662011-10-05 23:54:29 +0000699 void addClsMethSummary(IdentifierInfo *II, const RetainSummary * Summ, ...) {
Ted Kremenek8a5ad392009-04-24 17:50:11 +0000700 va_list argp;
701 va_start(argp, Summ);
702 addMethodSummary(II, ObjCClassMethodSummaries, Summ, argp);
703 va_end(argp);
704 }
705
Ted Kremenek819e9b62008-03-11 06:39:11 +0000706public:
Mike Stump11289f42009-09-09 15:08:12 +0000707
Ted Kremenek5ef32db2011-08-12 23:37:29 +0000708 RetainSummaryManager(ASTContext &ctx, bool gcenabled, bool usesARC)
Ted Kremenekab54e512008-07-01 17:21:27 +0000709 : Ctx(ctx),
John McCall31168b02011-06-15 23:02:42 +0000710 GCEnabled(gcenabled),
711 ARCEnabled(usesARC),
712 AF(BPAlloc), ScratchArgs(AF.getEmptyMap()),
713 ObjCAllocRetE(gcenabled
714 ? RetEffect::MakeGCNotOwned()
Jordan Rose6ad4cb42014-01-07 21:39:41 +0000715 : (usesARC ? RetEffect::MakeNotOwned(RetEffect::ObjC)
John McCall31168b02011-06-15 23:02:42 +0000716 : RetEffect::MakeOwned(RetEffect::ObjC, true))),
717 ObjCInitRetE(gcenabled
718 ? RetEffect::MakeGCNotOwned()
Jordan Rose6ad4cb42014-01-07 21:39:41 +0000719 : (usesARC ? RetEffect::MakeNotOwned(RetEffect::ObjC)
Jordy Rose61c974b2012-03-18 01:26:10 +0000720 : RetEffect::MakeOwnedWhenTrackedReceiver())) {
Ted Kremenek3185c9c2008-06-25 21:21:56 +0000721 InitializeClassMethodSummaries();
722 InitializeMethodSummaries();
723 }
Mike Stump11289f42009-09-09 15:08:12 +0000724
Jordan Roseeec15392012-07-02 19:27:43 +0000725 const RetainSummary *getSummary(const CallEvent &Call,
Craig Topper0dbb7832014-05-27 02:45:47 +0000726 ProgramStateRef State = nullptr);
Mike Stump11289f42009-09-09 15:08:12 +0000727
Jordan Roseeec15392012-07-02 19:27:43 +0000728 const RetainSummary *getFunctionSummary(const FunctionDecl *FD);
729
730 const RetainSummary *getMethodSummary(Selector S, const ObjCInterfaceDecl *ID,
Jordy Rose35e71c72012-03-17 21:13:07 +0000731 const ObjCMethodDecl *MD,
732 QualType RetTy,
733 ObjCMethodSummariesTy &CachedSummaries);
734
Jordan Rose6bad4902012-07-02 19:27:56 +0000735 const RetainSummary *getInstanceMethodSummary(const ObjCMethodCall &M,
Jordan Roseeec15392012-07-02 19:27:43 +0000736 ProgramStateRef State);
Ted Kremenekbd862712010-07-01 20:16:50 +0000737
Jordan Rose6bad4902012-07-02 19:27:56 +0000738 const RetainSummary *getClassMethodSummary(const ObjCMethodCall &M) {
Jordan Roseeec15392012-07-02 19:27:43 +0000739 assert(!M.isInstanceMessage());
740 const ObjCInterfaceDecl *Class = M.getReceiverInterface();
Mike Stump11289f42009-09-09 15:08:12 +0000741
Jordan Roseeec15392012-07-02 19:27:43 +0000742 return getMethodSummary(M.getSelector(), Class, M.getDecl(),
743 M.getResultType(), ObjCClassMethodSummaries);
Ted Kremenek7686ffa2009-04-29 00:42:39 +0000744 }
Ted Kremenek99fe1692009-04-29 17:17:48 +0000745
746 /// getMethodSummary - This version of getMethodSummary is used to query
747 /// the summary for the current method being analyzed.
Ted Kremenekf3e3f662011-10-05 23:54:29 +0000748 const RetainSummary *getMethodSummary(const ObjCMethodDecl *MD) {
Ted Kremenek223a7d52009-04-29 23:03:22 +0000749 const ObjCInterfaceDecl *ID = MD->getClassInterface();
Ted Kremenekb2a143f2009-04-30 05:41:14 +0000750 Selector S = MD->getSelector();
Alp Toker314cc812014-01-25 16:55:45 +0000751 QualType ResultTy = MD->getReturnType();
Mike Stump11289f42009-09-09 15:08:12 +0000752
Jordy Rose35e71c72012-03-17 21:13:07 +0000753 ObjCMethodSummariesTy *CachedSummaries;
Ted Kremenek99fe1692009-04-29 17:17:48 +0000754 if (MD->isInstanceMethod())
Jordy Rose35e71c72012-03-17 21:13:07 +0000755 CachedSummaries = &ObjCMethodSummaries;
Ted Kremenek99fe1692009-04-29 17:17:48 +0000756 else
Jordy Rose35e71c72012-03-17 21:13:07 +0000757 CachedSummaries = &ObjCClassMethodSummaries;
758
Jordan Roseeec15392012-07-02 19:27:43 +0000759 return getMethodSummary(S, ID, MD, ResultTy, *CachedSummaries);
Ted Kremenek99fe1692009-04-29 17:17:48 +0000760 }
Mike Stump11289f42009-09-09 15:08:12 +0000761
Jordy Rose35e71c72012-03-17 21:13:07 +0000762 const RetainSummary *getStandardMethodSummary(const ObjCMethodDecl *MD,
Jordan Roseeec15392012-07-02 19:27:43 +0000763 Selector S, QualType RetTy);
Ted Kremenek223a7d52009-04-29 23:03:22 +0000764
Jordan Rose39032472013-04-04 22:31:48 +0000765 /// Determine if there is a special return effect for this function or method.
766 Optional<RetEffect> getRetEffectFromAnnotations(QualType RetTy,
767 const Decl *D);
768
Ted Kremenekf3e3f662011-10-05 23:54:29 +0000769 void updateSummaryFromAnnotations(const RetainSummary *&Summ,
Ted Kremenekc2de7272009-05-09 02:58:13 +0000770 const ObjCMethodDecl *MD);
771
Ted Kremenekf3e3f662011-10-05 23:54:29 +0000772 void updateSummaryFromAnnotations(const RetainSummary *&Summ,
Ted Kremenekc2de7272009-05-09 02:58:13 +0000773 const FunctionDecl *FD);
774
Jordan Roseeec15392012-07-02 19:27:43 +0000775 void updateSummaryForCall(const RetainSummary *&Summ,
776 const CallEvent &Call);
777
Ted Kremenek00daccd2008-05-05 22:11:16 +0000778 bool isGCEnabled() const { return GCEnabled; }
Mike Stump11289f42009-09-09 15:08:12 +0000779
John McCall31168b02011-06-15 23:02:42 +0000780 bool isARCEnabled() const { return ARCEnabled; }
781
782 bool isARCorGCEnabled() const { return GCEnabled || ARCEnabled; }
Jordan Roseeec15392012-07-02 19:27:43 +0000783
784 RetEffect getObjAllocRetEffect() const { return ObjCAllocRetE; }
785
786 friend class RetainSummaryTemplate;
Ted Kremenek819e9b62008-03-11 06:39:11 +0000787};
Mike Stump11289f42009-09-09 15:08:12 +0000788
Jordy Rose14de7c52011-08-24 09:02:37 +0000789// Used to avoid allocating long-term (BPAlloc'd) memory for default retain
790// summaries. If a function or method looks like it has a default summary, but
791// it has annotations, the annotations are added to the stack-based template
792// and then copied into managed memory.
793class RetainSummaryTemplate {
794 RetainSummaryManager &Manager;
Ted Kremenekf3e3f662011-10-05 23:54:29 +0000795 const RetainSummary *&RealSummary;
Jordy Rose14de7c52011-08-24 09:02:37 +0000796 RetainSummary ScratchSummary;
797 bool Accessed;
798public:
Jordan Roseeec15392012-07-02 19:27:43 +0000799 RetainSummaryTemplate(const RetainSummary *&real, RetainSummaryManager &mgr)
800 : Manager(mgr), RealSummary(real), ScratchSummary(*real), Accessed(false) {}
Jordy Rose14de7c52011-08-24 09:02:37 +0000801
802 ~RetainSummaryTemplate() {
Ted Kremenekf3e3f662011-10-05 23:54:29 +0000803 if (Accessed)
Jordy Rose61c974b2012-03-18 01:26:10 +0000804 RealSummary = Manager.getPersistentSummary(ScratchSummary);
Jordy Rose14de7c52011-08-24 09:02:37 +0000805 }
806
807 RetainSummary &operator*() {
808 Accessed = true;
Ted Kremenekf3e3f662011-10-05 23:54:29 +0000809 return ScratchSummary;
Jordy Rose14de7c52011-08-24 09:02:37 +0000810 }
811
812 RetainSummary *operator->() {
813 Accessed = true;
Ted Kremenekf3e3f662011-10-05 23:54:29 +0000814 return &ScratchSummary;
Jordy Rose14de7c52011-08-24 09:02:37 +0000815 }
816};
817
Ted Kremenek819e9b62008-03-11 06:39:11 +0000818} // end anonymous namespace
819
820//===----------------------------------------------------------------------===//
821// Implementation of checker data structures.
822//===----------------------------------------------------------------------===//
823
Ted Kremenek7d79a5f2009-05-03 05:20:50 +0000824ArgEffects RetainSummaryManager::getArgEffects() {
825 ArgEffects AE = ScratchArgs;
Ted Kremenekb3b56c62010-11-24 00:54:37 +0000826 ScratchArgs = AF.getEmptyMap();
Ted Kremenek7d79a5f2009-05-03 05:20:50 +0000827 return AE;
Ted Kremenek68d73d12008-03-12 01:21:45 +0000828}
829
Ted Kremenekf3e3f662011-10-05 23:54:29 +0000830const RetainSummary *
Jordy Rose61c974b2012-03-18 01:26:10 +0000831RetainSummaryManager::getPersistentSummary(const RetainSummary &OldSumm) {
832 // Unique "simple" summaries -- those without ArgEffects.
833 if (OldSumm.isSimple()) {
834 llvm::FoldingSetNodeID ID;
835 OldSumm.Profile(ID);
836
837 void *Pos;
838 CachedSummaryNode *N = SimpleSummaries.FindNodeOrInsertPos(ID, Pos);
839
840 if (!N) {
841 N = (CachedSummaryNode *) BPAlloc.Allocate<CachedSummaryNode>();
842 new (N) CachedSummaryNode(OldSumm);
843 SimpleSummaries.InsertNode(N, Pos);
844 }
845
846 return &N->getValue();
847 }
848
Ted Kremenekf3e3f662011-10-05 23:54:29 +0000849 RetainSummary *Summ = (RetainSummary *) BPAlloc.Allocate<RetainSummary>();
Jordy Rose61c974b2012-03-18 01:26:10 +0000850 new (Summ) RetainSummary(OldSumm);
Ted Kremenek68d73d12008-03-12 01:21:45 +0000851 return Summ;
852}
853
Ted Kremenek00daccd2008-05-05 22:11:16 +0000854//===----------------------------------------------------------------------===//
855// Summary creation for functions (largely uses of Core Foundation).
856//===----------------------------------------------------------------------===//
Ted Kremenek68d73d12008-03-12 01:21:45 +0000857
Ted Kremenek5ef32db2011-08-12 23:37:29 +0000858static bool isRetain(const FunctionDecl *FD, StringRef FName) {
Benjamin Kramereaabbd82010-02-08 18:38:55 +0000859 return FName.endswith("Retain");
Ted Kremenek7e904222009-01-12 21:45:02 +0000860}
861
Ted Kremenek5ef32db2011-08-12 23:37:29 +0000862static bool isRelease(const FunctionDecl *FD, StringRef FName) {
Benjamin Kramereaabbd82010-02-08 18:38:55 +0000863 return FName.endswith("Release");
Ted Kremenek7e904222009-01-12 21:45:02 +0000864}
865
Jordan Rose77411322013-10-07 17:16:52 +0000866static bool isAutorelease(const FunctionDecl *FD, StringRef FName) {
867 return FName.endswith("Autorelease");
868}
869
Jordy Rose898a1482011-08-21 21:58:18 +0000870static bool isMakeCollectable(const FunctionDecl *FD, StringRef FName) {
871 // FIXME: Remove FunctionDecl parameter.
872 // FIXME: Is it really okay if MakeCollectable isn't a suffix?
873 return FName.find("MakeCollectable") != StringRef::npos;
874}
875
Anna Zaks25612732012-08-29 23:23:43 +0000876static ArgEffect getStopTrackingHardEquivalent(ArgEffect E) {
Jordan Roseeec15392012-07-02 19:27:43 +0000877 switch (E) {
878 case DoNothing:
879 case Autorelease:
Benjamin Kramer2501f142013-10-20 11:47:15 +0000880 case DecRefBridgedTransferred:
Jordan Roseeec15392012-07-02 19:27:43 +0000881 case IncRef:
882 case IncRefMsg:
883 case MakeCollectable:
884 case MayEscape:
Jordan Roseeec15392012-07-02 19:27:43 +0000885 case StopTracking:
Anna Zaks25612732012-08-29 23:23:43 +0000886 case StopTrackingHard:
887 return StopTrackingHard;
Jordan Roseeec15392012-07-02 19:27:43 +0000888 case DecRef:
Anna Zaks25612732012-08-29 23:23:43 +0000889 case DecRefAndStopTrackingHard:
890 return DecRefAndStopTrackingHard;
Jordan Roseeec15392012-07-02 19:27:43 +0000891 case DecRefMsg:
Anna Zaks25612732012-08-29 23:23:43 +0000892 case DecRefMsgAndStopTrackingHard:
893 return DecRefMsgAndStopTrackingHard;
Jordan Roseeec15392012-07-02 19:27:43 +0000894 case Dealloc:
895 return Dealloc;
896 }
897
898 llvm_unreachable("Unknown ArgEffect kind");
899}
900
901void RetainSummaryManager::updateSummaryForCall(const RetainSummary *&S,
902 const CallEvent &Call) {
903 if (Call.hasNonZeroCallbackArg()) {
Anna Zaks25612732012-08-29 23:23:43 +0000904 ArgEffect RecEffect =
905 getStopTrackingHardEquivalent(S->getReceiverEffect());
906 ArgEffect DefEffect =
907 getStopTrackingHardEquivalent(S->getDefaultArgEffect());
Jordan Roseeec15392012-07-02 19:27:43 +0000908
909 ArgEffects CustomArgEffects = S->getArgEffects();
910 for (ArgEffects::iterator I = CustomArgEffects.begin(),
911 E = CustomArgEffects.end();
912 I != E; ++I) {
Anna Zaks25612732012-08-29 23:23:43 +0000913 ArgEffect Translated = getStopTrackingHardEquivalent(I->second);
Jordan Roseeec15392012-07-02 19:27:43 +0000914 if (Translated != DefEffect)
915 ScratchArgs = AF.add(ScratchArgs, I->first, Translated);
916 }
917
Anna Zaks25612732012-08-29 23:23:43 +0000918 RetEffect RE = RetEffect::MakeNoRetHard();
Jordan Roseeec15392012-07-02 19:27:43 +0000919
920 // Special cases where the callback argument CANNOT free the return value.
921 // This can generally only happen if we know that the callback will only be
922 // called when the return value is already being deallocated.
Jordan Rose2a833ca2014-01-15 17:25:15 +0000923 if (const SimpleFunctionCall *FC = dyn_cast<SimpleFunctionCall>(&Call)) {
Jordan Roseccf192e2012-09-01 17:39:13 +0000924 if (IdentifierInfo *Name = FC->getDecl()->getIdentifier()) {
925 // When the CGBitmapContext is deallocated, the callback here will free
926 // the associated data buffer.
Jordan Rosed65f1c82012-08-31 18:19:18 +0000927 if (Name->isStr("CGBitmapContextCreateWithData"))
928 RE = S->getRetEffect();
Jordan Roseccf192e2012-09-01 17:39:13 +0000929 }
Jordan Roseeec15392012-07-02 19:27:43 +0000930 }
931
932 S = getPersistentSummary(RE, RecEffect, DefEffect);
933 }
Anna Zaks3d5d3d32012-08-24 00:06:12 +0000934
935 // Special case '[super init];' and '[self init];'
936 //
937 // Even though calling '[super init]' without assigning the result to self
938 // and checking if the parent returns 'nil' is a bad pattern, it is common.
939 // Additionally, our Self Init checker already warns about it. To avoid
940 // overwhelming the user with messages from both checkers, we model the case
941 // of '[super init]' in cases when it is not consumed by another expression
942 // as if the call preserves the value of 'self'; essentially, assuming it can
943 // never fail and return 'nil'.
944 // Note, we don't want to just stop tracking the value since we want the
945 // RetainCount checker to report leaks and use-after-free if SelfInit checker
946 // is turned off.
947 if (const ObjCMethodCall *MC = dyn_cast<ObjCMethodCall>(&Call)) {
948 if (MC->getMethodFamily() == OMF_init && MC->isReceiverSelfOrSuper()) {
949
950 // Check if the message is not consumed, we know it will not be used in
951 // an assignment, ex: "self = [super init]".
952 const Expr *ME = MC->getOriginExpr();
953 const LocationContext *LCtx = MC->getLocationContext();
954 ParentMap &PM = LCtx->getAnalysisDeclContext()->getParentMap();
955 if (!PM.isConsumedExpr(ME)) {
956 RetainSummaryTemplate ModifiableSummaryTemplate(S, *this);
957 ModifiableSummaryTemplate->setReceiverEffect(DoNothing);
958 ModifiableSummaryTemplate->setRetEffect(RetEffect::MakeNoRet());
959 }
960 }
961
962 }
Jordan Roseeec15392012-07-02 19:27:43 +0000963}
964
Anna Zaksf4c5ea52012-05-04 22:18:39 +0000965const RetainSummary *
Jordan Roseeec15392012-07-02 19:27:43 +0000966RetainSummaryManager::getSummary(const CallEvent &Call,
967 ProgramStateRef State) {
968 const RetainSummary *Summ;
969 switch (Call.getKind()) {
970 case CE_Function:
Jordan Rose2a833ca2014-01-15 17:25:15 +0000971 Summ = getFunctionSummary(cast<SimpleFunctionCall>(Call).getDecl());
Jordan Roseeec15392012-07-02 19:27:43 +0000972 break;
973 case CE_CXXMember:
Jordan Rose017591a2012-07-03 22:55:57 +0000974 case CE_CXXMemberOperator:
Jordan Roseeec15392012-07-02 19:27:43 +0000975 case CE_Block:
976 case CE_CXXConstructor:
Jordan Rose4ee71b82012-07-10 22:07:47 +0000977 case CE_CXXDestructor:
Jordan Rosea4ee0642012-07-02 22:21:47 +0000978 case CE_CXXAllocator:
Jordan Roseeec15392012-07-02 19:27:43 +0000979 // FIXME: These calls are currently unsupported.
980 return getPersistentStopSummary();
Jordan Rose627b0462012-07-18 21:59:51 +0000981 case CE_ObjCMessage: {
Jordan Rose6bad4902012-07-02 19:27:56 +0000982 const ObjCMethodCall &Msg = cast<ObjCMethodCall>(Call);
Jordan Roseeec15392012-07-02 19:27:43 +0000983 if (Msg.isInstanceMessage())
984 Summ = getInstanceMethodSummary(Msg, State);
985 else
986 Summ = getClassMethodSummary(Msg);
987 break;
988 }
989 }
990
991 updateSummaryForCall(Summ, Call);
992
993 assert(Summ && "Unknown call type?");
994 return Summ;
995}
996
997const RetainSummary *
998RetainSummaryManager::getFunctionSummary(const FunctionDecl *FD) {
999 // If we don't know what function we're calling, use our default summary.
1000 if (!FD)
1001 return getDefaultSummary();
1002
Ted Kremenekf7141592008-04-24 17:22:33 +00001003 // Look up a summary in our cache of FunctionDecls -> Summaries.
Ted Kremenek00daccd2008-05-05 22:11:16 +00001004 FuncSummariesTy::iterator I = FuncSummaries.find(FD);
Ted Kremenek00daccd2008-05-05 22:11:16 +00001005 if (I != FuncSummaries.end())
Ted Kremenekf7141592008-04-24 17:22:33 +00001006 return I->second;
1007
Ted Kremenekdf76e6d2009-05-04 15:34:07 +00001008 // No summary? Generate one.
Craig Topper0dbb7832014-05-27 02:45:47 +00001009 const RetainSummary *S = nullptr;
Jordan Rose1c715602012-08-06 21:28:02 +00001010 bool AllowAnnotations = true;
Mike Stump11289f42009-09-09 15:08:12 +00001011
Ted Kremenekfa89e2f2008-07-15 16:50:12 +00001012 do {
Ted Kremenek7e904222009-01-12 21:45:02 +00001013 // We generate "stop" summaries for implicitly defined functions.
1014 if (FD->isImplicit()) {
1015 S = getPersistentStopSummary();
1016 break;
Ted Kremenekfa89e2f2008-07-15 16:50:12 +00001017 }
Mike Stump11289f42009-09-09 15:08:12 +00001018
John McCall9dd450b2009-09-21 23:43:11 +00001019 // [PR 3337] Use 'getAs<FunctionType>' to strip away any typedefs on the
Ted Kremenek86afde32009-01-16 18:40:33 +00001020 // function's type.
John McCall9dd450b2009-09-21 23:43:11 +00001021 const FunctionType* FT = FD->getType()->getAs<FunctionType>();
Ted Kremenek9bcc2642009-12-16 06:06:43 +00001022 const IdentifierInfo *II = FD->getIdentifier();
1023 if (!II)
1024 break;
Benjamin Kramereaabbd82010-02-08 18:38:55 +00001025
1026 StringRef FName = II->getName();
Mike Stump11289f42009-09-09 15:08:12 +00001027
Ted Kremenek5f968932009-03-05 22:11:14 +00001028 // Strip away preceding '_'. Doing this here will effect all the checks
1029 // down below.
Benjamin Kramereaabbd82010-02-08 18:38:55 +00001030 FName = FName.substr(FName.find_first_not_of('_'));
Mike Stump11289f42009-09-09 15:08:12 +00001031
Ted Kremenek7e904222009-01-12 21:45:02 +00001032 // Inspect the result type.
Alp Toker314cc812014-01-25 16:55:45 +00001033 QualType RetTy = FT->getReturnType();
Mike Stump11289f42009-09-09 15:08:12 +00001034
Ted Kremenek7e904222009-01-12 21:45:02 +00001035 // FIXME: This should all be refactored into a chain of "summary lookup"
1036 // filters.
Ted Kremenekb4ec3fc2009-10-14 00:27:24 +00001037 assert(ScratchArgs.isEmpty());
Ted Kremenek3092e9c2009-06-15 20:36:07 +00001038
Ted Kremenek01d152f2012-04-26 04:32:23 +00001039 if (FName == "pthread_create" || FName == "pthread_setspecific") {
1040 // Part of: <rdar://problem/7299394> and <rdar://problem/11282706>.
1041 // This will be addressed better with IPA.
Benjamin Kramereaabbd82010-02-08 18:38:55 +00001042 S = getPersistentStopSummary();
1043 } else if (FName == "NSMakeCollectable") {
1044 // Handle: id NSMakeCollectable(CFTypeRef)
1045 S = (RetTy->isObjCIdType())
1046 ? getUnarySummary(FT, cfmakecollectable)
1047 : getPersistentStopSummary();
Jordan Rose1c715602012-08-06 21:28:02 +00001048 // The headers on OS X 10.8 use cf_consumed/ns_returns_retained,
1049 // but we can fully model NSMakeCollectable ourselves.
1050 AllowAnnotations = false;
Ted Kremenekc008db92012-09-06 23:47:02 +00001051 } else if (FName == "CFPlugInInstanceCreate") {
1052 S = getPersistentSummary(RetEffect::MakeNoRet());
Benjamin Kramereaabbd82010-02-08 18:38:55 +00001053 } else if (FName == "IOBSDNameMatching" ||
1054 FName == "IOServiceMatching" ||
1055 FName == "IOServiceNameMatching" ||
Ted Kremenek555560c2012-05-01 05:28:27 +00001056 FName == "IORegistryEntrySearchCFProperty" ||
Benjamin Kramereaabbd82010-02-08 18:38:55 +00001057 FName == "IORegistryEntryIDMatching" ||
1058 FName == "IOOpenFirmwarePathMatching") {
1059 // Part of <rdar://problem/6961230>. (IOKit)
1060 // This should be addressed using a API table.
1061 S = getPersistentSummary(RetEffect::MakeOwned(RetEffect::CF, true),
1062 DoNothing, DoNothing);
1063 } else if (FName == "IOServiceGetMatchingService" ||
1064 FName == "IOServiceGetMatchingServices") {
1065 // FIXES: <rdar://problem/6326900>
1066 // This should be addressed using a API table. This strcmp is also
1067 // a little gross, but there is no need to super optimize here.
Ted Kremenekb3b56c62010-11-24 00:54:37 +00001068 ScratchArgs = AF.add(ScratchArgs, 1, DecRef);
Benjamin Kramereaabbd82010-02-08 18:38:55 +00001069 S = getPersistentSummary(RetEffect::MakeNoRet(), DoNothing, DoNothing);
1070 } else if (FName == "IOServiceAddNotification" ||
1071 FName == "IOServiceAddMatchingNotification") {
1072 // Part of <rdar://problem/6961230>. (IOKit)
1073 // This should be addressed using a API table.
Ted Kremenekb3b56c62010-11-24 00:54:37 +00001074 ScratchArgs = AF.add(ScratchArgs, 2, DecRef);
Benjamin Kramereaabbd82010-02-08 18:38:55 +00001075 S = getPersistentSummary(RetEffect::MakeNoRet(), DoNothing, DoNothing);
1076 } else if (FName == "CVPixelBufferCreateWithBytes") {
1077 // FIXES: <rdar://problem/7283567>
1078 // Eventually this can be improved by recognizing that the pixel
1079 // buffer passed to CVPixelBufferCreateWithBytes is released via
1080 // a callback and doing full IPA to make sure this is done correctly.
1081 // FIXME: This function has an out parameter that returns an
1082 // allocated object.
Ted Kremenekb3b56c62010-11-24 00:54:37 +00001083 ScratchArgs = AF.add(ScratchArgs, 7, StopTracking);
Benjamin Kramereaabbd82010-02-08 18:38:55 +00001084 S = getPersistentSummary(RetEffect::MakeNoRet(), DoNothing, DoNothing);
1085 } else if (FName == "CGBitmapContextCreateWithData") {
1086 // FIXES: <rdar://problem/7358899>
1087 // Eventually this can be improved by recognizing that 'releaseInfo'
1088 // passed to CGBitmapContextCreateWithData is released via
1089 // a callback and doing full IPA to make sure this is done correctly.
Ted Kremenekb3b56c62010-11-24 00:54:37 +00001090 ScratchArgs = AF.add(ScratchArgs, 8, StopTracking);
Benjamin Kramereaabbd82010-02-08 18:38:55 +00001091 S = getPersistentSummary(RetEffect::MakeOwned(RetEffect::CF, true),
1092 DoNothing, DoNothing);
1093 } else if (FName == "CVPixelBufferCreateWithPlanarBytes") {
1094 // FIXES: <rdar://problem/7283567>
1095 // Eventually this can be improved by recognizing that the pixel
1096 // buffer passed to CVPixelBufferCreateWithPlanarBytes is released
1097 // via a callback and doing full IPA to make sure this is done
1098 // correctly.
Ted Kremenekb3b56c62010-11-24 00:54:37 +00001099 ScratchArgs = AF.add(ScratchArgs, 12, StopTracking);
Benjamin Kramereaabbd82010-02-08 18:38:55 +00001100 S = getPersistentSummary(RetEffect::MakeNoRet(), DoNothing, DoNothing);
Jordan Roseb1479182013-05-02 01:51:40 +00001101 } else if (FName == "dispatch_set_context" ||
1102 FName == "xpc_connection_set_context") {
Ted Kremenek40c13432012-03-22 06:29:41 +00001103 // <rdar://problem/11059275> - The analyzer currently doesn't have
1104 // a good way to reason about the finalizer function for libdispatch.
1105 // If we pass a context object that is memory managed, stop tracking it.
Jordan Roseb1479182013-05-02 01:51:40 +00001106 // <rdar://problem/13783514> - Same problem, but for XPC.
Ted Kremenek40c13432012-03-22 06:29:41 +00001107 // FIXME: this hack should possibly go away once we can handle
Jordan Roseb1479182013-05-02 01:51:40 +00001108 // libdispatch and XPC finalizers.
Ted Kremenek40c13432012-03-22 06:29:41 +00001109 ScratchArgs = AF.add(ScratchArgs, 1, StopTracking);
1110 S = getPersistentSummary(RetEffect::MakeNoRet(), DoNothing, DoNothing);
Ted Kremenekececf9f2012-05-08 00:12:09 +00001111 } else if (FName.startswith("NSLog")) {
1112 S = getDoNothingSummary();
Anna Zaks90ab9bf2012-03-30 05:48:16 +00001113 } else if (FName.startswith("NS") &&
1114 (FName.find("Insert") != StringRef::npos)) {
1115 // Whitelist NSXXInsertXX, for example NSMapInsertIfAbsent, since they can
1116 // be deallocated by NSMapRemove. (radar://11152419)
1117 ScratchArgs = AF.add(ScratchArgs, 1, StopTracking);
1118 ScratchArgs = AF.add(ScratchArgs, 2, StopTracking);
1119 S = getPersistentSummary(RetEffect::MakeNoRet(), DoNothing, DoNothing);
Ted Kremenekea675cf2009-06-11 18:17:24 +00001120 }
Mike Stump11289f42009-09-09 15:08:12 +00001121
Ted Kremenekea675cf2009-06-11 18:17:24 +00001122 // Did we get a summary?
1123 if (S)
1124 break;
Ted Kremenek211094d2009-03-17 22:43:44 +00001125
Jordan Rose85707b22013-03-04 23:21:32 +00001126 if (RetTy->isPointerType()) {
Ted Kremenek7e904222009-01-12 21:45:02 +00001127 // For CoreFoundation ('CF') types.
Ted Kremeneke9918352010-01-27 18:00:17 +00001128 if (cocoa::isRefType(RetTy, "CF", FName)) {
Jordan Rose77411322013-10-07 17:16:52 +00001129 if (isRetain(FD, FName)) {
Ted Kremenek7e904222009-01-12 21:45:02 +00001130 S = getUnarySummary(FT, cfretain);
Jordan Rose77411322013-10-07 17:16:52 +00001131 } else if (isAutorelease(FD, FName)) {
1132 S = getUnarySummary(FT, cfautorelease);
1133 // The headers use cf_consumed, but we can fully model CFAutorelease
1134 // ourselves.
1135 AllowAnnotations = false;
1136 } else if (isMakeCollectable(FD, FName)) {
Ted Kremenek7e904222009-01-12 21:45:02 +00001137 S = getUnarySummary(FT, cfmakecollectable);
Jordan Rose77411322013-10-07 17:16:52 +00001138 AllowAnnotations = false;
1139 } else {
John McCall525f0552011-10-01 00:48:56 +00001140 S = getCFCreateGetRuleSummary(FD);
Jordan Rose77411322013-10-07 17:16:52 +00001141 }
Ted Kremenek7e904222009-01-12 21:45:02 +00001142
1143 break;
1144 }
1145
1146 // For CoreGraphics ('CG') types.
Ted Kremeneke9918352010-01-27 18:00:17 +00001147 if (cocoa::isRefType(RetTy, "CG", FName)) {
Ted Kremenek7e904222009-01-12 21:45:02 +00001148 if (isRetain(FD, FName))
1149 S = getUnarySummary(FT, cfretain);
1150 else
John McCall525f0552011-10-01 00:48:56 +00001151 S = getCFCreateGetRuleSummary(FD);
Ted Kremenek7e904222009-01-12 21:45:02 +00001152
1153 break;
1154 }
1155
1156 // For the Disk Arbitration API (DiskArbitration/DADisk.h)
Ted Kremeneke9918352010-01-27 18:00:17 +00001157 if (cocoa::isRefType(RetTy, "DADisk") ||
1158 cocoa::isRefType(RetTy, "DADissenter") ||
1159 cocoa::isRefType(RetTy, "DASessionRef")) {
John McCall525f0552011-10-01 00:48:56 +00001160 S = getCFCreateGetRuleSummary(FD);
Ted Kremenek7e904222009-01-12 21:45:02 +00001161 break;
1162 }
Mike Stump11289f42009-09-09 15:08:12 +00001163
Aaron Ballman9ead1242013-12-19 02:39:40 +00001164 if (FD->hasAttr<CFAuditedTransferAttr>()) {
Jordan Rose85707b22013-03-04 23:21:32 +00001165 S = getCFCreateGetRuleSummary(FD);
1166 break;
1167 }
1168
Ted Kremenek7e904222009-01-12 21:45:02 +00001169 break;
1170 }
1171
1172 // Check for release functions, the only kind of functions that we care
1173 // about that don't return a pointer type.
1174 if (FName[0] == 'C' && (FName[1] == 'F' || FName[1] == 'G')) {
Ted Kremenekac5ab792010-02-08 16:45:01 +00001175 // Test for 'CGCF'.
Benjamin Kramereaabbd82010-02-08 18:38:55 +00001176 FName = FName.substr(FName.startswith("CGCF") ? 4 : 2);
Ted Kremenekac5ab792010-02-08 16:45:01 +00001177
Ted Kremenek5f968932009-03-05 22:11:14 +00001178 if (isRelease(FD, FName))
Ted Kremenek7e904222009-01-12 21:45:02 +00001179 S = getUnarySummary(FT, cfrelease);
1180 else {
Ted Kremenek7d79a5f2009-05-03 05:20:50 +00001181 assert (ScratchArgs.isEmpty());
Ted Kremeneked90de42009-01-29 22:45:13 +00001182 // Remaining CoreFoundation and CoreGraphics functions.
1183 // We use to assume that they all strictly followed the ownership idiom
1184 // and that ownership cannot be transferred. While this is technically
1185 // correct, many methods allow a tracked object to escape. For example:
1186 //
Mike Stump11289f42009-09-09 15:08:12 +00001187 // CFMutableDictionaryRef x = CFDictionaryCreateMutable(...);
Ted Kremeneked90de42009-01-29 22:45:13 +00001188 // CFDictionaryAddValue(y, key, x);
Mike Stump11289f42009-09-09 15:08:12 +00001189 // CFRelease(x);
Ted Kremeneked90de42009-01-29 22:45:13 +00001190 // ... it is okay to use 'x' since 'y' has a reference to it
1191 //
1192 // We handle this and similar cases with the follow heuristic. If the
Ted Kremenekd982f002009-08-20 00:57:22 +00001193 // function name contains "InsertValue", "SetValue", "AddValue",
1194 // "AppendValue", or "SetAttribute", then we assume that arguments may
1195 // "escape." This means that something else holds on to the object,
1196 // allowing it be used even after its local retain count drops to 0.
Benjamin Kramer0129bd72010-01-11 19:46:28 +00001197 ArgEffect E = (StrInStrNoCase(FName, "InsertValue") != StringRef::npos||
1198 StrInStrNoCase(FName, "AddValue") != StringRef::npos ||
1199 StrInStrNoCase(FName, "SetValue") != StringRef::npos ||
1200 StrInStrNoCase(FName, "AppendValue") != StringRef::npos||
Benjamin Kramer37808312010-01-11 20:15:06 +00001201 StrInStrNoCase(FName, "SetAttribute") != StringRef::npos)
Ted Kremeneked90de42009-01-29 22:45:13 +00001202 ? MayEscape : DoNothing;
Mike Stump11289f42009-09-09 15:08:12 +00001203
Ted Kremeneked90de42009-01-29 22:45:13 +00001204 S = getPersistentSummary(RetEffect::MakeNoRet(), DoNothing, E);
Ted Kremenek7e904222009-01-12 21:45:02 +00001205 }
1206 }
Ted Kremenekfa89e2f2008-07-15 16:50:12 +00001207 }
1208 while (0);
Mike Stump11289f42009-09-09 15:08:12 +00001209
Jordan Roseeec15392012-07-02 19:27:43 +00001210 // If we got all the way here without any luck, use a default summary.
1211 if (!S)
1212 S = getDefaultSummary();
1213
Ted Kremenekc2de7272009-05-09 02:58:13 +00001214 // Annotations override defaults.
Jordan Rose1c715602012-08-06 21:28:02 +00001215 if (AllowAnnotations)
1216 updateSummaryFromAnnotations(S, FD);
Mike Stump11289f42009-09-09 15:08:12 +00001217
Ted Kremenek00daccd2008-05-05 22:11:16 +00001218 FuncSummaries[FD] = S;
Mike Stump11289f42009-09-09 15:08:12 +00001219 return S;
Ted Kremenekea6507f2008-03-06 00:08:09 +00001220}
1221
Ted Kremenekf3e3f662011-10-05 23:54:29 +00001222const RetainSummary *
John McCall525f0552011-10-01 00:48:56 +00001223RetainSummaryManager::getCFCreateGetRuleSummary(const FunctionDecl *FD) {
1224 if (coreFoundation::followsCreateRule(FD))
Ted Kremenek875db812008-05-05 16:51:50 +00001225 return getCFSummaryCreateRule(FD);
Mike Stump11289f42009-09-09 15:08:12 +00001226
Ted Kremenek8e2c9b02011-05-25 06:19:45 +00001227 return getCFSummaryGetRule(FD);
Ted Kremenek875db812008-05-05 16:51:50 +00001228}
1229
Ted Kremenekf3e3f662011-10-05 23:54:29 +00001230const RetainSummary *
Ted Kremenek82157a12009-02-23 16:51:39 +00001231RetainSummaryManager::getUnarySummary(const FunctionType* FT,
1232 UnaryFuncKind func) {
1233
Ted Kremenek7e904222009-01-12 21:45:02 +00001234 // Sanity check that this is *really* a unary function. This can
1235 // happen if people do weird things.
Douglas Gregordeaad8c2009-02-26 23:50:07 +00001236 const FunctionProtoType* FTP = dyn_cast<FunctionProtoType>(FT);
Alp Toker9cacbab2014-01-20 20:26:09 +00001237 if (!FTP || FTP->getNumParams() != 1)
Ted Kremenek7e904222009-01-12 21:45:02 +00001238 return getPersistentStopSummary();
Mike Stump11289f42009-09-09 15:08:12 +00001239
Ted Kremenek7d79a5f2009-05-03 05:20:50 +00001240 assert (ScratchArgs.isEmpty());
Mike Stump11289f42009-09-09 15:08:12 +00001241
Jordy Rose898a1482011-08-21 21:58:18 +00001242 ArgEffect Effect;
Ted Kremenek4b7ca772008-04-29 05:33:51 +00001243 switch (func) {
Jordan Rose77411322013-10-07 17:16:52 +00001244 case cfretain: Effect = IncRef; break;
1245 case cfrelease: Effect = DecRef; break;
1246 case cfautorelease: Effect = Autorelease; break;
1247 case cfmakecollectable: Effect = MakeCollectable; break;
Ted Kremenek4b772092008-04-10 23:44:06 +00001248 }
Jordy Rose898a1482011-08-21 21:58:18 +00001249
1250 ScratchArgs = AF.add(ScratchArgs, 0, Effect);
1251 return getPersistentSummary(RetEffect::MakeNoRet(), DoNothing, DoNothing);
Ted Kremenek68d73d12008-03-12 01:21:45 +00001252}
1253
Ted Kremenekf3e3f662011-10-05 23:54:29 +00001254const RetainSummary *
Ted Kremenek5ef32db2011-08-12 23:37:29 +00001255RetainSummaryManager::getCFSummaryCreateRule(const FunctionDecl *FD) {
Ted Kremenek7d79a5f2009-05-03 05:20:50 +00001256 assert (ScratchArgs.isEmpty());
Mike Stump11289f42009-09-09 15:08:12 +00001257
Ted Kremenekaeb115f2009-01-28 05:56:51 +00001258 return getPersistentSummary(RetEffect::MakeOwned(RetEffect::CF, true));
Ted Kremenek68d73d12008-03-12 01:21:45 +00001259}
1260
Ted Kremenekf3e3f662011-10-05 23:54:29 +00001261const RetainSummary *
Ted Kremenek5ef32db2011-08-12 23:37:29 +00001262RetainSummaryManager::getCFSummaryGetRule(const FunctionDecl *FD) {
Mike Stump11289f42009-09-09 15:08:12 +00001263 assert (ScratchArgs.isEmpty());
Ted Kremenekaeb115f2009-01-28 05:56:51 +00001264 return getPersistentSummary(RetEffect::MakeNotOwned(RetEffect::CF),
1265 DoNothing, DoNothing);
Ted Kremenek68d73d12008-03-12 01:21:45 +00001266}
1267
Ted Kremenek819e9b62008-03-11 06:39:11 +00001268//===----------------------------------------------------------------------===//
Ted Kremenek00daccd2008-05-05 22:11:16 +00001269// Summary creation for Selectors.
1270//===----------------------------------------------------------------------===//
1271
Jordan Rose39032472013-04-04 22:31:48 +00001272Optional<RetEffect>
1273RetainSummaryManager::getRetEffectFromAnnotations(QualType RetTy,
1274 const Decl *D) {
1275 if (cocoa::isCocoaObjectRef(RetTy)) {
Aaron Ballman9ead1242013-12-19 02:39:40 +00001276 if (D->hasAttr<NSReturnsRetainedAttr>())
Jordan Rose39032472013-04-04 22:31:48 +00001277 return ObjCAllocRetE;
1278
Aaron Ballman9ead1242013-12-19 02:39:40 +00001279 if (D->hasAttr<NSReturnsNotRetainedAttr>() ||
1280 D->hasAttr<NSReturnsAutoreleasedAttr>())
Jordan Rose39032472013-04-04 22:31:48 +00001281 return RetEffect::MakeNotOwned(RetEffect::ObjC);
1282
1283 } else if (!RetTy->isPointerType()) {
1284 return None;
1285 }
1286
Aaron Ballman9ead1242013-12-19 02:39:40 +00001287 if (D->hasAttr<CFReturnsRetainedAttr>())
Jordan Rose39032472013-04-04 22:31:48 +00001288 return RetEffect::MakeOwned(RetEffect::CF, true);
1289
Aaron Ballman9ead1242013-12-19 02:39:40 +00001290 if (D->hasAttr<CFReturnsNotRetainedAttr>())
Jordan Rose39032472013-04-04 22:31:48 +00001291 return RetEffect::MakeNotOwned(RetEffect::CF);
1292
1293 return None;
1294}
1295
Ted Kremenekc2de7272009-05-09 02:58:13 +00001296void
Ted Kremenekf3e3f662011-10-05 23:54:29 +00001297RetainSummaryManager::updateSummaryFromAnnotations(const RetainSummary *&Summ,
Ted Kremenekc2de7272009-05-09 02:58:13 +00001298 const FunctionDecl *FD) {
1299 if (!FD)
1300 return;
1301
Jordan Roseeec15392012-07-02 19:27:43 +00001302 assert(Summ && "Must have a summary to add annotations to.");
1303 RetainSummaryTemplate Template(Summ, *this);
Jordy Rose212e4592011-08-23 04:27:15 +00001304
Ted Kremenekafe348e2011-01-27 18:43:03 +00001305 // Effects on the parameters.
1306 unsigned parm_idx = 0;
1307 for (FunctionDecl::param_const_iterator pi = FD->param_begin(),
John McCall3337ca52011-04-06 09:02:12 +00001308 pe = FD->param_end(); pi != pe; ++pi, ++parm_idx) {
Ted Kremenekafe348e2011-01-27 18:43:03 +00001309 const ParmVarDecl *pd = *pi;
Aaron Ballman9ead1242013-12-19 02:39:40 +00001310 if (pd->hasAttr<NSConsumedAttr>())
Jordan Rose39032472013-04-04 22:31:48 +00001311 Template->addArg(AF, parm_idx, DecRefMsg);
Aaron Ballman9ead1242013-12-19 02:39:40 +00001312 else if (pd->hasAttr<CFConsumedAttr>())
Jordy Rose14de7c52011-08-24 09:02:37 +00001313 Template->addArg(AF, parm_idx, DecRef);
Ted Kremenekafe348e2011-01-27 18:43:03 +00001314 }
Alp Toker314cc812014-01-25 16:55:45 +00001315
1316 QualType RetTy = FD->getReturnType();
Jordan Rose39032472013-04-04 22:31:48 +00001317 if (Optional<RetEffect> RetE = getRetEffectFromAnnotations(RetTy, FD))
1318 Template->setRetEffect(*RetE);
Ted Kremenekc2de7272009-05-09 02:58:13 +00001319}
1320
1321void
Ted Kremenekf3e3f662011-10-05 23:54:29 +00001322RetainSummaryManager::updateSummaryFromAnnotations(const RetainSummary *&Summ,
1323 const ObjCMethodDecl *MD) {
Ted Kremenekc2de7272009-05-09 02:58:13 +00001324 if (!MD)
1325 return;
1326
Jordan Roseeec15392012-07-02 19:27:43 +00001327 assert(Summ && "Must have a valid summary to add annotations to");
1328 RetainSummaryTemplate Template(Summ, *this);
Mike Stump11289f42009-09-09 15:08:12 +00001329
Ted Kremenek0e898382011-01-27 06:54:14 +00001330 // Effects on the receiver.
Aaron Ballman9ead1242013-12-19 02:39:40 +00001331 if (MD->hasAttr<NSConsumesSelfAttr>())
Jordan Rose39032472013-04-04 22:31:48 +00001332 Template->setReceiverEffect(DecRefMsg);
Ted Kremenekafe348e2011-01-27 18:43:03 +00001333
1334 // Effects on the parameters.
1335 unsigned parm_idx = 0;
Argyrios Kyrtzidisb8c3aaf2011-10-03 06:37:04 +00001336 for (ObjCMethodDecl::param_const_iterator
1337 pi=MD->param_begin(), pe=MD->param_end();
Ted Kremenekafe348e2011-01-27 18:43:03 +00001338 pi != pe; ++pi, ++parm_idx) {
1339 const ParmVarDecl *pd = *pi;
Aaron Ballman9ead1242013-12-19 02:39:40 +00001340 if (pd->hasAttr<NSConsumedAttr>())
Jordan Rose39032472013-04-04 22:31:48 +00001341 Template->addArg(AF, parm_idx, DecRefMsg);
Aaron Ballman9ead1242013-12-19 02:39:40 +00001342 else if (pd->hasAttr<CFConsumedAttr>()) {
Jordy Rose14de7c52011-08-24 09:02:37 +00001343 Template->addArg(AF, parm_idx, DecRef);
Ted Kremenekafe348e2011-01-27 18:43:03 +00001344 }
Ted Kremenek0e898382011-01-27 06:54:14 +00001345 }
Alp Toker314cc812014-01-25 16:55:45 +00001346
1347 QualType RetTy = MD->getReturnType();
Jordan Rose39032472013-04-04 22:31:48 +00001348 if (Optional<RetEffect> RetE = getRetEffectFromAnnotations(RetTy, MD))
1349 Template->setRetEffect(*RetE);
Ted Kremenekc2de7272009-05-09 02:58:13 +00001350}
1351
Ted Kremenekf3e3f662011-10-05 23:54:29 +00001352const RetainSummary *
Jordy Rose35e71c72012-03-17 21:13:07 +00001353RetainSummaryManager::getStandardMethodSummary(const ObjCMethodDecl *MD,
1354 Selector S, QualType RetTy) {
Jordy Rose70638832012-03-17 19:53:04 +00001355 // Any special effects?
Ted Kremenek6a966b22009-04-24 21:56:17 +00001356 ArgEffect ReceiverEff = DoNothing;
Jordy Rose70638832012-03-17 19:53:04 +00001357 RetEffect ResultEff = RetEffect::MakeNoRet();
1358
1359 // Check the method family, and apply any default annotations.
1360 switch (MD ? MD->getMethodFamily() : S.getMethodFamily()) {
1361 case OMF_None:
1362 case OMF_performSelector:
1363 // Assume all Objective-C methods follow Cocoa Memory Management rules.
1364 // FIXME: Does the non-threaded performSelector family really belong here?
1365 // The selector could be, say, @selector(copy).
1366 if (cocoa::isCocoaObjectRef(RetTy))
1367 ResultEff = RetEffect::MakeNotOwned(RetEffect::ObjC);
1368 else if (coreFoundation::isCFObjectRef(RetTy)) {
1369 // ObjCMethodDecl currently doesn't consider CF objects as valid return
1370 // values for alloc, new, copy, or mutableCopy, so we have to
1371 // double-check with the selector. This is ugly, but there aren't that
1372 // many Objective-C methods that return CF objects, right?
1373 if (MD) {
1374 switch (S.getMethodFamily()) {
1375 case OMF_alloc:
1376 case OMF_new:
1377 case OMF_copy:
1378 case OMF_mutableCopy:
1379 ResultEff = RetEffect::MakeOwned(RetEffect::CF, true);
1380 break;
1381 default:
1382 ResultEff = RetEffect::MakeNotOwned(RetEffect::CF);
1383 break;
1384 }
1385 } else {
1386 ResultEff = RetEffect::MakeNotOwned(RetEffect::CF);
1387 }
1388 }
1389 break;
1390 case OMF_init:
1391 ResultEff = ObjCInitRetE;
1392 ReceiverEff = DecRefMsg;
1393 break;
1394 case OMF_alloc:
1395 case OMF_new:
1396 case OMF_copy:
1397 case OMF_mutableCopy:
1398 if (cocoa::isCocoaObjectRef(RetTy))
1399 ResultEff = ObjCAllocRetE;
1400 else if (coreFoundation::isCFObjectRef(RetTy))
1401 ResultEff = RetEffect::MakeOwned(RetEffect::CF, true);
1402 break;
1403 case OMF_autorelease:
1404 ReceiverEff = Autorelease;
1405 break;
1406 case OMF_retain:
1407 ReceiverEff = IncRefMsg;
1408 break;
1409 case OMF_release:
1410 ReceiverEff = DecRefMsg;
1411 break;
1412 case OMF_dealloc:
1413 ReceiverEff = Dealloc;
1414 break;
1415 case OMF_self:
1416 // -self is handled specially by the ExprEngine to propagate the receiver.
1417 break;
1418 case OMF_retainCount:
1419 case OMF_finalize:
1420 // These methods don't return objects.
1421 break;
1422 }
Mike Stump11289f42009-09-09 15:08:12 +00001423
Ted Kremenek6a966b22009-04-24 21:56:17 +00001424 // If one of the arguments in the selector has the keyword 'delegate' we
1425 // should stop tracking the reference count for the receiver. This is
1426 // because the reference count is quite possibly handled by a delegate
1427 // method.
1428 if (S.isKeywordSelector()) {
Jordan Rose95dfae82012-06-15 18:19:52 +00001429 for (unsigned i = 0, e = S.getNumArgs(); i != e; ++i) {
1430 StringRef Slot = S.getNameForSlot(i);
1431 if (Slot.substr(Slot.size() - 8).equals_lower("delegate")) {
1432 if (ResultEff == ObjCInitRetE)
Anna Zaks25612732012-08-29 23:23:43 +00001433 ResultEff = RetEffect::MakeNoRetHard();
Jordan Rose95dfae82012-06-15 18:19:52 +00001434 else
Anna Zaks25612732012-08-29 23:23:43 +00001435 ReceiverEff = StopTrackingHard;
Jordan Rose95dfae82012-06-15 18:19:52 +00001436 }
1437 }
Ted Kremenek6a966b22009-04-24 21:56:17 +00001438 }
Mike Stump11289f42009-09-09 15:08:12 +00001439
Jordy Rose70638832012-03-17 19:53:04 +00001440 if (ScratchArgs.isEmpty() && ReceiverEff == DoNothing &&
1441 ResultEff.getKind() == RetEffect::NoRet)
Ted Kremenekf3e3f662011-10-05 23:54:29 +00001442 return getDefaultSummary();
Mike Stump11289f42009-09-09 15:08:12 +00001443
Jordy Rose70638832012-03-17 19:53:04 +00001444 return getPersistentSummary(ResultEff, ReceiverEff, MayEscape);
Ted Kremenek60746a02009-04-23 23:08:22 +00001445}
1446
Ted Kremenekf3e3f662011-10-05 23:54:29 +00001447const RetainSummary *
Jordan Rose6bad4902012-07-02 19:27:56 +00001448RetainSummaryManager::getInstanceMethodSummary(const ObjCMethodCall &Msg,
Jordan Roseeec15392012-07-02 19:27:43 +00001449 ProgramStateRef State) {
Craig Topper0dbb7832014-05-27 02:45:47 +00001450 const ObjCInterfaceDecl *ReceiverClass = nullptr;
Ted Kremeneka2968e52009-11-13 01:54:21 +00001451
Jordan Roseeec15392012-07-02 19:27:43 +00001452 // We do better tracking of the type of the object than the core ExprEngine.
1453 // See if we have its type in our private state.
1454 // FIXME: Eventually replace the use of state->get<RefBindings> with
1455 // a generic API for reasoning about the Objective-C types of symbolic
1456 // objects.
1457 SVal ReceiverV = Msg.getReceiverSVal();
1458 if (SymbolRef Sym = ReceiverV.getAsLocSymbol())
Anna Zaksf5788c72012-08-14 00:36:15 +00001459 if (const RefVal *T = getRefBinding(State, Sym))
Douglas Gregor9a129192010-04-21 00:45:42 +00001460 if (const ObjCObjectPointerType *PT =
Jordan Roseeec15392012-07-02 19:27:43 +00001461 T->getType()->getAs<ObjCObjectPointerType>())
1462 ReceiverClass = PT->getInterfaceDecl();
1463
1464 // If we don't know what kind of object this is, fall back to its static type.
1465 if (!ReceiverClass)
1466 ReceiverClass = Msg.getReceiverInterface();
Douglas Gregor9a129192010-04-21 00:45:42 +00001467
Ted Kremeneka2968e52009-11-13 01:54:21 +00001468 // FIXME: The receiver could be a reference to a class, meaning that
1469 // we should use the class method.
Jordan Roseeec15392012-07-02 19:27:43 +00001470 // id x = [NSObject class];
1471 // [x performSelector:... withObject:... afterDelay:...];
1472 Selector S = Msg.getSelector();
1473 const ObjCMethodDecl *Method = Msg.getDecl();
1474 if (!Method && ReceiverClass)
1475 Method = ReceiverClass->getInstanceMethod(S);
1476
1477 return getMethodSummary(S, ReceiverClass, Method, Msg.getResultType(),
1478 ObjCMethodSummaries);
Ted Kremeneka2968e52009-11-13 01:54:21 +00001479}
1480
Ted Kremenekf3e3f662011-10-05 23:54:29 +00001481const RetainSummary *
Jordan Roseeec15392012-07-02 19:27:43 +00001482RetainSummaryManager::getMethodSummary(Selector S, const ObjCInterfaceDecl *ID,
Jordy Rose35e71c72012-03-17 21:13:07 +00001483 const ObjCMethodDecl *MD, QualType RetTy,
1484 ObjCMethodSummariesTy &CachedSummaries) {
Ted Kremenekcb2e6362008-05-06 15:44:25 +00001485
Ted Kremenek0b50fb12009-04-29 05:04:30 +00001486 // Look up a summary in our summary cache.
Jordan Roseeec15392012-07-02 19:27:43 +00001487 const RetainSummary *Summ = CachedSummaries.find(ID, S);
Mike Stump11289f42009-09-09 15:08:12 +00001488
Ted Kremenek8be51382009-07-21 23:27:57 +00001489 if (!Summ) {
Jordy Rose35e71c72012-03-17 21:13:07 +00001490 Summ = getStandardMethodSummary(MD, S, RetTy);
Mike Stump11289f42009-09-09 15:08:12 +00001491
Ted Kremenek8be51382009-07-21 23:27:57 +00001492 // Annotations override defaults.
Jordy Rose212e4592011-08-23 04:27:15 +00001493 updateSummaryFromAnnotations(Summ, MD);
Mike Stump11289f42009-09-09 15:08:12 +00001494
Ted Kremenek8be51382009-07-21 23:27:57 +00001495 // Memoize the summary.
Jordan Roseeec15392012-07-02 19:27:43 +00001496 CachedSummaries[ObjCSummaryKey(ID, S)] = Summ;
Ted Kremenek8be51382009-07-21 23:27:57 +00001497 }
Mike Stump11289f42009-09-09 15:08:12 +00001498
Ted Kremenekf27110f2009-04-23 19:11:35 +00001499 return Summ;
Ted Kremenek767d0742008-05-06 21:26:51 +00001500}
1501
Mike Stump11289f42009-09-09 15:08:12 +00001502void RetainSummaryManager::InitializeClassMethodSummaries() {
Ted Kremenek9157fbb2009-05-07 23:40:42 +00001503 assert(ScratchArgs.isEmpty());
Mike Stump11289f42009-09-09 15:08:12 +00001504 // Create the [NSAssertionHandler currentHander] summary.
Ted Kremenek55adb822009-10-15 22:25:12 +00001505 addClassMethSummary("NSAssertionHandler", "currentHandler",
Ted Kremenekaeb115f2009-01-28 05:56:51 +00001506 getPersistentSummary(RetEffect::MakeNotOwned(RetEffect::ObjC)));
Mike Stump11289f42009-09-09 15:08:12 +00001507
Ted Kremenek0747e7e2008-10-21 15:53:15 +00001508 // Create the [NSAutoreleasePool addObject:] summary.
Ted Kremenekb3b56c62010-11-24 00:54:37 +00001509 ScratchArgs = AF.add(ScratchArgs, 0, Autorelease);
Ted Kremenek55adb822009-10-15 22:25:12 +00001510 addClassMethSummary("NSAutoreleasePool", "addObject",
1511 getPersistentSummary(RetEffect::MakeNoRet(),
1512 DoNothing, Autorelease));
Ted Kremenek0806f912008-05-06 00:30:21 +00001513}
1514
Ted Kremenekea736c52008-06-23 22:21:20 +00001515void RetainSummaryManager::InitializeMethodSummaries() {
Mike Stump11289f42009-09-09 15:08:12 +00001516
1517 assert (ScratchArgs.isEmpty());
1518
Ted Kremenek767d0742008-05-06 21:26:51 +00001519 // Create the "init" selector. It just acts as a pass-through for the
1520 // receiver.
Ted Kremenekf3e3f662011-10-05 23:54:29 +00001521 const RetainSummary *InitSumm = getPersistentSummary(ObjCInitRetE, DecRefMsg);
Ted Kremenek815fbb62009-08-20 05:13:36 +00001522 addNSObjectMethSummary(GetNullarySelector("init", Ctx), InitSumm);
1523
1524 // awakeAfterUsingCoder: behaves basically like an 'init' method. It
1525 // claims the receiver and returns a retained object.
1526 addNSObjectMethSummary(GetUnarySelector("awakeAfterUsingCoder", Ctx),
1527 InitSumm);
Mike Stump11289f42009-09-09 15:08:12 +00001528
Ted Kremenek767d0742008-05-06 21:26:51 +00001529 // The next methods are allocators.
Ted Kremenekf3e3f662011-10-05 23:54:29 +00001530 const RetainSummary *AllocSumm = getPersistentSummary(ObjCAllocRetE);
1531 const RetainSummary *CFAllocSumm =
Ted Kremenek52ac2b52009-08-28 19:52:12 +00001532 getPersistentSummary(RetEffect::MakeOwned(RetEffect::CF, true));
Mike Stump11289f42009-09-09 15:08:12 +00001533
Ted Kremenekb0862dc2008-05-06 02:26:56 +00001534 // Create the "retain" selector.
Jordy Rose3f7f75682011-08-21 19:41:36 +00001535 RetEffect NoRet = RetEffect::MakeNoRet();
Ted Kremenekf3e3f662011-10-05 23:54:29 +00001536 const RetainSummary *Summ = getPersistentSummary(NoRet, IncRefMsg);
Ted Kremenek3185c9c2008-06-25 21:21:56 +00001537 addNSObjectMethSummary(GetNullarySelector("retain", Ctx), Summ);
Mike Stump11289f42009-09-09 15:08:12 +00001538
Ted Kremenekb0862dc2008-05-06 02:26:56 +00001539 // Create the "release" selector.
Jordy Rose3f7f75682011-08-21 19:41:36 +00001540 Summ = getPersistentSummary(NoRet, DecRefMsg);
Ted Kremenek3185c9c2008-06-25 21:21:56 +00001541 addNSObjectMethSummary(GetNullarySelector("release", Ctx), Summ);
Mike Stump11289f42009-09-09 15:08:12 +00001542
Ted Kremenekea072e32009-03-17 19:42:23 +00001543 // Create the -dealloc summary.
Jordy Rose3f7f75682011-08-21 19:41:36 +00001544 Summ = getPersistentSummary(NoRet, Dealloc);
Ted Kremenekea072e32009-03-17 19:42:23 +00001545 addNSObjectMethSummary(GetNullarySelector("dealloc", Ctx), Summ);
Ted Kremenekb0862dc2008-05-06 02:26:56 +00001546
1547 // Create the "autorelease" selector.
Jordy Rose3f7f75682011-08-21 19:41:36 +00001548 Summ = getPersistentSummary(NoRet, Autorelease);
Ted Kremenek3185c9c2008-06-25 21:21:56 +00001549 addNSObjectMethSummary(GetNullarySelector("autorelease", Ctx), Summ);
Mike Stump11289f42009-09-09 15:08:12 +00001550
Mike Stump11289f42009-09-09 15:08:12 +00001551 // For NSWindow, allocated objects are (initially) self-owned.
Ted Kremeneke73f2822009-02-23 02:51:29 +00001552 // FIXME: For now we opt for false negatives with NSWindow, as these objects
1553 // self-own themselves. However, they only do this once they are displayed.
1554 // Thus, we need to track an NSWindow's display status.
1555 // This is tracked in <rdar://problem/6062711>.
Ted Kremenek00dfe302009-03-04 23:30:42 +00001556 // See also http://llvm.org/bugs/show_bug.cgi?id=3714.
Ted Kremenekf3e3f662011-10-05 23:54:29 +00001557 const RetainSummary *NoTrackYet = getPersistentSummary(RetEffect::MakeNoRet(),
Ted Kremenek1272f702009-05-12 20:06:54 +00001558 StopTracking,
1559 StopTracking);
Mike Stump11289f42009-09-09 15:08:12 +00001560
Ted Kremenek751e7e32009-04-03 19:02:51 +00001561 addClassMethSummary("NSWindow", "alloc", NoTrackYet);
1562
Ted Kremenek3f13f592008-08-12 18:48:50 +00001563 // For NSPanel (which subclasses NSWindow), allocated objects are not
1564 // self-owned.
Ted Kremenek751e7e32009-04-03 19:02:51 +00001565 // FIXME: For now we don't track NSPanels. object for the same reason
1566 // as for NSWindow objects.
1567 addClassMethSummary("NSPanel", "alloc", NoTrackYet);
Mike Stump11289f42009-09-09 15:08:12 +00001568
Ted Kremenek9b12e722014-01-03 01:19:28 +00001569 // For NSNull, objects returned by +null are singletons that ignore
1570 // retain/release semantics. Just don't track them.
1571 // <rdar://problem/12858915>
1572 addClassMethSummary("NSNull", "null", NoTrackYet);
1573
Jordan Rose95bf3b02013-01-31 22:06:02 +00001574 // Don't track allocated autorelease pools, as it is okay to prematurely
Ted Kremenek501ba032009-05-18 23:14:34 +00001575 // exit a method.
1576 addClassMethSummary("NSAutoreleasePool", "alloc", NoTrackYet);
Ted Kremeneke8a5ba82012-02-18 21:37:48 +00001577 addClassMethSummary("NSAutoreleasePool", "allocWithZone", NoTrackYet, false);
Jordan Rose95bf3b02013-01-31 22:06:02 +00001578 addClassMethSummary("NSAutoreleasePool", "new", NoTrackYet);
Ted Kremenek3185c9c2008-06-25 21:21:56 +00001579
Ted Kremenek10369122009-05-20 22:39:57 +00001580 // Create summaries QCRenderer/QCView -createSnapShotImageOfType:
1581 addInstMethSummary("QCRenderer", AllocSumm,
1582 "createSnapshotImageOfType", NULL);
1583 addInstMethSummary("QCView", AllocSumm,
1584 "createSnapshotImageOfType", NULL);
1585
Ted Kremenek96aa1462009-06-15 20:58:58 +00001586 // Create summaries for CIContext, 'createCGImage' and
Ted Kremenek52ac2b52009-08-28 19:52:12 +00001587 // 'createCGLayerWithSize'. These objects are CF objects, and are not
1588 // automatically garbage collected.
1589 addInstMethSummary("CIContext", CFAllocSumm,
Ted Kremenek10369122009-05-20 22:39:57 +00001590 "createCGImage", "fromRect", NULL);
Ted Kremenek52ac2b52009-08-28 19:52:12 +00001591 addInstMethSummary("CIContext", CFAllocSumm,
Mike Stump11289f42009-09-09 15:08:12 +00001592 "createCGImage", "fromRect", "format", "colorSpace", NULL);
Ted Kremenek52ac2b52009-08-28 19:52:12 +00001593 addInstMethSummary("CIContext", CFAllocSumm, "createCGLayerWithSize",
Ted Kremenek96aa1462009-06-15 20:58:58 +00001594 "info", NULL);
Ted Kremenekbe7c56e2008-05-06 00:38:54 +00001595}
1596
Ted Kremenek00daccd2008-05-05 22:11:16 +00001597//===----------------------------------------------------------------------===//
Ted Kremenek6bd78702009-04-29 18:50:19 +00001598// Error reporting.
1599//===----------------------------------------------------------------------===//
Ted Kremenek6bd78702009-04-29 18:50:19 +00001600namespace {
Jordy Rose20d4e682011-08-23 20:55:48 +00001601 typedef llvm::DenseMap<const ExplodedNode *, const RetainSummary *>
1602 SummaryLogTy;
1603
Ted Kremenek6bd78702009-04-29 18:50:19 +00001604 //===-------------===//
1605 // Bug Descriptions. //
Mike Stump11289f42009-09-09 15:08:12 +00001606 //===-------------===//
1607
Kovarththanan Rajaratnam65c65662009-11-28 06:07:30 +00001608 class CFRefBug : public BugType {
Ted Kremenek6bd78702009-04-29 18:50:19 +00001609 protected:
Alexander Kornienko4aca9b12014-02-11 21:49:21 +00001610 CFRefBug(const CheckerBase *checker, StringRef name)
1611 : BugType(checker, name, categories::MemoryCoreFoundationObjectiveC) {}
1612
Ted Kremenek6bd78702009-04-29 18:50:19 +00001613 public:
Mike Stump11289f42009-09-09 15:08:12 +00001614
Ted Kremenek6bd78702009-04-29 18:50:19 +00001615 // FIXME: Eventually remove.
Jordy Rose7a534982011-08-24 05:47:39 +00001616 virtual const char *getDescription() const = 0;
Mike Stump11289f42009-09-09 15:08:12 +00001617
Ted Kremenek6bd78702009-04-29 18:50:19 +00001618 virtual bool isLeak() const { return false; }
1619 };
Mike Stump11289f42009-09-09 15:08:12 +00001620
Kovarththanan Rajaratnam65c65662009-11-28 06:07:30 +00001621 class UseAfterRelease : public CFRefBug {
Ted Kremenek6bd78702009-04-29 18:50:19 +00001622 public:
Alexander Kornienko4aca9b12014-02-11 21:49:21 +00001623 UseAfterRelease(const CheckerBase *checker)
1624 : CFRefBug(checker, "Use-after-release") {}
Mike Stump11289f42009-09-09 15:08:12 +00001625
Craig Topperfb6b25b2014-03-15 04:29:04 +00001626 const char *getDescription() const override {
Ted Kremenek6bd78702009-04-29 18:50:19 +00001627 return "Reference-counted object is used after it is released";
Mike Stump11289f42009-09-09 15:08:12 +00001628 }
Ted Kremenek6bd78702009-04-29 18:50:19 +00001629 };
Mike Stump11289f42009-09-09 15:08:12 +00001630
Kovarththanan Rajaratnam65c65662009-11-28 06:07:30 +00001631 class BadRelease : public CFRefBug {
Ted Kremenek6bd78702009-04-29 18:50:19 +00001632 public:
Alexander Kornienko4aca9b12014-02-11 21:49:21 +00001633 BadRelease(const CheckerBase *checker) : CFRefBug(checker, "Bad release") {}
Mike Stump11289f42009-09-09 15:08:12 +00001634
Craig Topperfb6b25b2014-03-15 04:29:04 +00001635 const char *getDescription() const override {
Ted Kremenek5c22e112009-10-01 17:31:50 +00001636 return "Incorrect decrement of the reference count of an object that is "
1637 "not owned at this point by the caller";
Ted Kremenek6bd78702009-04-29 18:50:19 +00001638 }
1639 };
Mike Stump11289f42009-09-09 15:08:12 +00001640
Kovarththanan Rajaratnam65c65662009-11-28 06:07:30 +00001641 class DeallocGC : public CFRefBug {
Ted Kremenek6bd78702009-04-29 18:50:19 +00001642 public:
Alexander Kornienko4aca9b12014-02-11 21:49:21 +00001643 DeallocGC(const CheckerBase *checker)
1644 : CFRefBug(checker, "-dealloc called while using garbage collection") {}
Mike Stump11289f42009-09-09 15:08:12 +00001645
Craig Topperfb6b25b2014-03-15 04:29:04 +00001646 const char *getDescription() const override {
Ted Kremenekd35272f2009-05-09 00:10:05 +00001647 return "-dealloc called while using garbage collection";
Ted Kremenek6bd78702009-04-29 18:50:19 +00001648 }
1649 };
Mike Stump11289f42009-09-09 15:08:12 +00001650
Kovarththanan Rajaratnam65c65662009-11-28 06:07:30 +00001651 class DeallocNotOwned : public CFRefBug {
Ted Kremenek6bd78702009-04-29 18:50:19 +00001652 public:
Alexander Kornienko4aca9b12014-02-11 21:49:21 +00001653 DeallocNotOwned(const CheckerBase *checker)
1654 : CFRefBug(checker, "-dealloc sent to non-exclusively owned object") {}
Mike Stump11289f42009-09-09 15:08:12 +00001655
Craig Topperfb6b25b2014-03-15 04:29:04 +00001656 const char *getDescription() const override {
Ted Kremenek6bd78702009-04-29 18:50:19 +00001657 return "-dealloc sent to object that may be referenced elsewhere";
1658 }
Mike Stump11289f42009-09-09 15:08:12 +00001659 };
1660
Kovarththanan Rajaratnam65c65662009-11-28 06:07:30 +00001661 class OverAutorelease : public CFRefBug {
Ted Kremenekd35272f2009-05-09 00:10:05 +00001662 public:
Alexander Kornienko4aca9b12014-02-11 21:49:21 +00001663 OverAutorelease(const CheckerBase *checker)
1664 : CFRefBug(checker, "Object autoreleased too many times") {}
Mike Stump11289f42009-09-09 15:08:12 +00001665
Craig Topperfb6b25b2014-03-15 04:29:04 +00001666 const char *getDescription() const override {
Jordan Rose7467f062013-04-23 01:42:25 +00001667 return "Object autoreleased too many times";
Ted Kremenekd35272f2009-05-09 00:10:05 +00001668 }
1669 };
Mike Stump11289f42009-09-09 15:08:12 +00001670
Kovarththanan Rajaratnam65c65662009-11-28 06:07:30 +00001671 class ReturnedNotOwnedForOwned : public CFRefBug {
Ted Kremenekdee56e32009-05-10 06:25:57 +00001672 public:
Alexander Kornienko4aca9b12014-02-11 21:49:21 +00001673 ReturnedNotOwnedForOwned(const CheckerBase *checker)
1674 : CFRefBug(checker, "Method should return an owned object") {}
Mike Stump11289f42009-09-09 15:08:12 +00001675
Craig Topperfb6b25b2014-03-15 04:29:04 +00001676 const char *getDescription() const override {
Jordy Rose43426f82011-07-15 22:17:54 +00001677 return "Object with a +0 retain count returned to caller where a +1 "
Ted Kremenekdee56e32009-05-10 06:25:57 +00001678 "(owning) retain count is expected";
1679 }
1680 };
Mike Stump11289f42009-09-09 15:08:12 +00001681
Kovarththanan Rajaratnam65c65662009-11-28 06:07:30 +00001682 class Leak : public CFRefBug {
Benjamin Kramerd1d76b22012-06-06 17:32:50 +00001683 public:
Alexander Kornienko4aca9b12014-02-11 21:49:21 +00001684 Leak(const CheckerBase *checker, StringRef name) : CFRefBug(checker, name) {
Jordy Rose15484da2011-08-25 01:14:38 +00001685 // Leaks should not be reported if they are post-dominated by a sink.
1686 setSuppressOnSink(true);
1687 }
Mike Stump11289f42009-09-09 15:08:12 +00001688
Craig Topperfb6b25b2014-03-15 04:29:04 +00001689 const char *getDescription() const override { return ""; }
Mike Stump11289f42009-09-09 15:08:12 +00001690
Craig Topperfb6b25b2014-03-15 04:29:04 +00001691 bool isLeak() const override { return true; }
Ted Kremenek6bd78702009-04-29 18:50:19 +00001692 };
Mike Stump11289f42009-09-09 15:08:12 +00001693
Ted Kremenek6bd78702009-04-29 18:50:19 +00001694 //===---------===//
1695 // Bug Reports. //
1696 //===---------===//
Mike Stump11289f42009-09-09 15:08:12 +00001697
Jordy Rosef78877e2012-03-24 02:45:35 +00001698 class CFRefReportVisitor : public BugReporterVisitorImpl<CFRefReportVisitor> {
Anna Zaks88255cc2011-08-20 01:27:22 +00001699 protected:
Anna Zaks071a89c2011-08-19 23:21:56 +00001700 SymbolRef Sym;
Jordy Rose20d4e682011-08-23 20:55:48 +00001701 const SummaryLogTy &SummaryLog;
Jordy Rose7a534982011-08-24 05:47:39 +00001702 bool GCEnabled;
Anna Zaks88255cc2011-08-20 01:27:22 +00001703
Anna Zaks071a89c2011-08-19 23:21:56 +00001704 public:
Jordy Rose7a534982011-08-24 05:47:39 +00001705 CFRefReportVisitor(SymbolRef sym, bool gcEnabled, const SummaryLogTy &log)
1706 : Sym(sym), SummaryLog(log), GCEnabled(gcEnabled) {}
Anna Zaks071a89c2011-08-19 23:21:56 +00001707
Craig Topperfb6b25b2014-03-15 04:29:04 +00001708 void Profile(llvm::FoldingSetNodeID &ID) const override {
Anna Zaks071a89c2011-08-19 23:21:56 +00001709 static int x = 0;
1710 ID.AddPointer(&x);
1711 ID.AddPointer(Sym);
1712 }
1713
Craig Topperfb6b25b2014-03-15 04:29:04 +00001714 PathDiagnosticPiece *VisitNode(const ExplodedNode *N,
1715 const ExplodedNode *PrevN,
1716 BugReporterContext &BRC,
1717 BugReport &BR) override;
Anna Zaks88255cc2011-08-20 01:27:22 +00001718
Craig Topperfb6b25b2014-03-15 04:29:04 +00001719 PathDiagnosticPiece *getEndPath(BugReporterContext &BRC,
1720 const ExplodedNode *N,
1721 BugReport &BR) override;
Anna Zaks88255cc2011-08-20 01:27:22 +00001722 };
1723
1724 class CFRefLeakReportVisitor : public CFRefReportVisitor {
1725 public:
Jordy Rose7a534982011-08-24 05:47:39 +00001726 CFRefLeakReportVisitor(SymbolRef sym, bool GCEnabled,
Jordy Rose20d4e682011-08-23 20:55:48 +00001727 const SummaryLogTy &log)
Jordy Rose7a534982011-08-24 05:47:39 +00001728 : CFRefReportVisitor(sym, GCEnabled, log) {}
Anna Zaks88255cc2011-08-20 01:27:22 +00001729
1730 PathDiagnosticPiece *getEndPath(BugReporterContext &BRC,
1731 const ExplodedNode *N,
Craig Topperfb6b25b2014-03-15 04:29:04 +00001732 BugReport &BR) override;
Jordy Rosef78877e2012-03-24 02:45:35 +00001733
Craig Topperfb6b25b2014-03-15 04:29:04 +00001734 BugReporterVisitor *clone() const override {
Jordy Rosef78877e2012-03-24 02:45:35 +00001735 // The curiously-recurring template pattern only works for one level of
1736 // subclassing. Rather than make a new template base for
1737 // CFRefReportVisitor, we simply override clone() to do the right thing.
1738 // This could be trouble someday if BugReporterVisitorImpl is ever
1739 // used for something else besides a convenient implementation of clone().
1740 return new CFRefLeakReportVisitor(*this);
1741 }
Anna Zaks071a89c2011-08-19 23:21:56 +00001742 };
1743
Anna Zaks3a6bdf82011-08-17 23:00:25 +00001744 class CFRefReport : public BugReport {
Jordy Rose184bd142011-08-24 22:39:09 +00001745 void addGCModeDescription(const LangOptions &LOpts, bool GCEnabled);
Jordy Rose7a534982011-08-24 05:47:39 +00001746
Ted Kremenek6bd78702009-04-29 18:50:19 +00001747 public:
Jordy Rose184bd142011-08-24 22:39:09 +00001748 CFRefReport(CFRefBug &D, const LangOptions &LOpts, bool GCEnabled,
1749 const SummaryLogTy &Log, ExplodedNode *n, SymbolRef sym,
1750 bool registerVisitor = true)
Anna Zaks752de142011-08-22 18:54:07 +00001751 : BugReport(D, D.getDescription(), n) {
Anna Zaks88255cc2011-08-20 01:27:22 +00001752 if (registerVisitor)
Jordy Rose184bd142011-08-24 22:39:09 +00001753 addVisitor(new CFRefReportVisitor(sym, GCEnabled, Log));
1754 addGCModeDescription(LOpts, GCEnabled);
Anna Zaks071a89c2011-08-19 23:21:56 +00001755 }
Ted Kremenek3978f792009-05-10 05:11:21 +00001756
Jordy Rose184bd142011-08-24 22:39:09 +00001757 CFRefReport(CFRefBug &D, const LangOptions &LOpts, bool GCEnabled,
1758 const SummaryLogTy &Log, ExplodedNode *n, SymbolRef sym,
1759 StringRef endText)
Anna Zaks752de142011-08-22 18:54:07 +00001760 : BugReport(D, D.getDescription(), endText, n) {
Jordy Rose184bd142011-08-24 22:39:09 +00001761 addVisitor(new CFRefReportVisitor(sym, GCEnabled, Log));
1762 addGCModeDescription(LOpts, GCEnabled);
Anna Zaks071a89c2011-08-19 23:21:56 +00001763 }
Mike Stump11289f42009-09-09 15:08:12 +00001764
Craig Topperfb6b25b2014-03-15 04:29:04 +00001765 std::pair<ranges_iterator, ranges_iterator> getRanges() override {
Anna Zaks752de142011-08-22 18:54:07 +00001766 const CFRefBug& BugTy = static_cast<CFRefBug&>(getBugType());
1767 if (!BugTy.isLeak())
Anna Zaks3a6bdf82011-08-17 23:00:25 +00001768 return BugReport::getRanges();
Ted Kremenek6bd78702009-04-29 18:50:19 +00001769 else
Argyrios Kyrtzidisd22d8ff2010-12-04 01:12:15 +00001770 return std::make_pair(ranges_iterator(), ranges_iterator());
Ted Kremenek6bd78702009-04-29 18:50:19 +00001771 }
Ted Kremenek6bd78702009-04-29 18:50:19 +00001772 };
Ted Kremenek3978f792009-05-10 05:11:21 +00001773
Kovarththanan Rajaratnam65c65662009-11-28 06:07:30 +00001774 class CFRefLeakReport : public CFRefReport {
Ted Kremenek6bd78702009-04-29 18:50:19 +00001775 const MemRegion* AllocBinding;
1776 public:
Jordy Rose184bd142011-08-24 22:39:09 +00001777 CFRefLeakReport(CFRefBug &D, const LangOptions &LOpts, bool GCEnabled,
1778 const SummaryLogTy &Log, ExplodedNode *n, SymbolRef sym,
Ted Kremenek8671acb2013-04-16 21:44:22 +00001779 CheckerContext &Ctx,
1780 bool IncludeAllocationLine);
Mike Stump11289f42009-09-09 15:08:12 +00001781
Craig Topperfb6b25b2014-03-15 04:29:04 +00001782 PathDiagnosticLocation getLocation(const SourceManager &SM) const override {
Anna Zaksc29bed32011-09-20 21:38:35 +00001783 assert(Location.isValid());
1784 return Location;
1785 }
Mike Stump11289f42009-09-09 15:08:12 +00001786 };
Ted Kremenek6bd78702009-04-29 18:50:19 +00001787} // end anonymous namespace
1788
Jordy Rose184bd142011-08-24 22:39:09 +00001789void CFRefReport::addGCModeDescription(const LangOptions &LOpts,
1790 bool GCEnabled) {
Craig Topper0dbb7832014-05-27 02:45:47 +00001791 const char *GCModeDescription = nullptr;
Mike Stump11289f42009-09-09 15:08:12 +00001792
Douglas Gregor79a91412011-09-13 17:21:33 +00001793 switch (LOpts.getGC()) {
Anna Zaks76c3fb62011-08-22 20:31:28 +00001794 case LangOptions::GCOnly:
Jordy Rose184bd142011-08-24 22:39:09 +00001795 assert(GCEnabled);
Jordy Rose7a534982011-08-24 05:47:39 +00001796 GCModeDescription = "Code is compiled to only use garbage collection";
1797 break;
Mike Stump11289f42009-09-09 15:08:12 +00001798
Anna Zaks76c3fb62011-08-22 20:31:28 +00001799 case LangOptions::NonGC:
Jordy Rose184bd142011-08-24 22:39:09 +00001800 assert(!GCEnabled);
Jordy Rose7a534982011-08-24 05:47:39 +00001801 GCModeDescription = "Code is compiled to use reference counts";
1802 break;
Mike Stump11289f42009-09-09 15:08:12 +00001803
Anna Zaks76c3fb62011-08-22 20:31:28 +00001804 case LangOptions::HybridGC:
Jordy Rose184bd142011-08-24 22:39:09 +00001805 if (GCEnabled) {
Jordy Rose7a534982011-08-24 05:47:39 +00001806 GCModeDescription = "Code is compiled to use either garbage collection "
1807 "(GC) or reference counts (non-GC). The bug occurs "
1808 "with GC enabled";
1809 break;
1810 } else {
1811 GCModeDescription = "Code is compiled to use either garbage collection "
1812 "(GC) or reference counts (non-GC). The bug occurs "
1813 "in non-GC mode";
1814 break;
Anna Zaks76c3fb62011-08-22 20:31:28 +00001815 }
Ted Kremenek6bd78702009-04-29 18:50:19 +00001816 }
Jordy Rose7a534982011-08-24 05:47:39 +00001817
Jordy Rose9ff02992011-08-24 20:38:42 +00001818 assert(GCModeDescription && "invalid/unknown GC mode");
Jordy Rose7a534982011-08-24 05:47:39 +00001819 addExtraText(GCModeDescription);
Ted Kremenek6bd78702009-04-29 18:50:19 +00001820}
1821
Jordy Rose6393f822012-05-12 05:10:43 +00001822static bool isNumericLiteralExpression(const Expr *E) {
1823 // FIXME: This set of cases was copied from SemaExprObjC.
1824 return isa<IntegerLiteral>(E) ||
1825 isa<CharacterLiteral>(E) ||
1826 isa<FloatingLiteral>(E) ||
1827 isa<ObjCBoolLiteralExpr>(E) ||
1828 isa<CXXBoolLiteralExpr>(E);
1829}
1830
Anna Zaks071a89c2011-08-19 23:21:56 +00001831PathDiagnosticPiece *CFRefReportVisitor::VisitNode(const ExplodedNode *N,
1832 const ExplodedNode *PrevN,
1833 BugReporterContext &BRC,
1834 BugReport &BR) {
Jordan Rose681cce92012-07-10 22:07:42 +00001835 // FIXME: We will eventually need to handle non-statement-based events
1836 // (__attribute__((cleanup))).
David Blaikie87396b92013-02-21 22:23:56 +00001837 if (!N->getLocation().getAs<StmtPoint>())
Craig Topper0dbb7832014-05-27 02:45:47 +00001838 return nullptr;
Mike Stump11289f42009-09-09 15:08:12 +00001839
Ted Kremenekbb8d5462009-05-06 21:39:49 +00001840 // Check if the type state has changed.
Ted Kremenek49b1e382012-01-26 21:29:00 +00001841 ProgramStateRef PrevSt = PrevN->getState();
1842 ProgramStateRef CurrSt = N->getState();
Ted Kremenek632e3b72012-01-06 22:09:28 +00001843 const LocationContext *LCtx = N->getLocationContext();
Mike Stump11289f42009-09-09 15:08:12 +00001844
Anna Zaksf5788c72012-08-14 00:36:15 +00001845 const RefVal* CurrT = getRefBinding(CurrSt, Sym);
Craig Topper0dbb7832014-05-27 02:45:47 +00001846 if (!CurrT) return nullptr;
Mike Stump11289f42009-09-09 15:08:12 +00001847
Ted Kremenekd93c6e32009-06-18 01:23:53 +00001848 const RefVal &CurrV = *CurrT;
Anna Zaksf5788c72012-08-14 00:36:15 +00001849 const RefVal *PrevT = getRefBinding(PrevSt, Sym);
Mike Stump11289f42009-09-09 15:08:12 +00001850
Ted Kremenek6bd78702009-04-29 18:50:19 +00001851 // Create a string buffer to constain all the useful things we want
1852 // to tell the user.
1853 std::string sbuf;
1854 llvm::raw_string_ostream os(sbuf);
Mike Stump11289f42009-09-09 15:08:12 +00001855
Ted Kremenek6bd78702009-04-29 18:50:19 +00001856 // This is the allocation site since the previous node had no bindings
1857 // for this symbol.
1858 if (!PrevT) {
David Blaikie87396b92013-02-21 22:23:56 +00001859 const Stmt *S = N->getLocation().castAs<StmtPoint>().getStmt();
Mike Stump11289f42009-09-09 15:08:12 +00001860
Ted Kremenek415287d2012-03-06 20:06:12 +00001861 if (isa<ObjCArrayLiteral>(S)) {
1862 os << "NSArray literal is an object with a +0 retain count";
Mike Stump11289f42009-09-09 15:08:12 +00001863 }
Ted Kremenek415287d2012-03-06 20:06:12 +00001864 else if (isa<ObjCDictionaryLiteral>(S)) {
1865 os << "NSDictionary literal is an object with a +0 retain count";
Ted Kremenek6bd78702009-04-29 18:50:19 +00001866 }
Jordy Rose6393f822012-05-12 05:10:43 +00001867 else if (const ObjCBoxedExpr *BL = dyn_cast<ObjCBoxedExpr>(S)) {
1868 if (isNumericLiteralExpression(BL->getSubExpr()))
1869 os << "NSNumber literal is an object with a +0 retain count";
1870 else {
Craig Topper0dbb7832014-05-27 02:45:47 +00001871 const ObjCInterfaceDecl *BoxClass = nullptr;
Jordy Rose6393f822012-05-12 05:10:43 +00001872 if (const ObjCMethodDecl *Method = BL->getBoxingMethod())
1873 BoxClass = Method->getClassInterface();
1874
1875 // We should always be able to find the boxing class interface,
1876 // but consider this future-proofing.
1877 if (BoxClass)
1878 os << *BoxClass << " b";
1879 else
1880 os << "B";
1881
1882 os << "oxed expression produces an object with a +0 retain count";
1883 }
1884 }
Ted Kremenek415287d2012-03-06 20:06:12 +00001885 else {
1886 if (const CallExpr *CE = dyn_cast<CallExpr>(S)) {
1887 // Get the name of the callee (if it is available).
1888 SVal X = CurrSt->getSValAsScalarOrLoc(CE->getCallee(), LCtx);
1889 if (const FunctionDecl *FD = X.getAsFunctionDecl())
1890 os << "Call to function '" << *FD << '\'';
1891 else
1892 os << "function call";
Ted Kremenek6bd78702009-04-29 18:50:19 +00001893 }
Ted Kremenek415287d2012-03-06 20:06:12 +00001894 else {
Jordan Rose627b0462012-07-18 21:59:51 +00001895 assert(isa<ObjCMessageExpr>(S));
Jordan Rosefcd016e2012-07-30 20:22:09 +00001896 CallEventManager &Mgr = CurrSt->getStateManager().getCallEventManager();
1897 CallEventRef<ObjCMethodCall> Call
1898 = Mgr.getObjCMethodCall(cast<ObjCMessageExpr>(S), CurrSt, LCtx);
1899
1900 switch (Call->getMessageKind()) {
Jordan Rose627b0462012-07-18 21:59:51 +00001901 case OCM_Message:
1902 os << "Method";
1903 break;
1904 case OCM_PropertyAccess:
1905 os << "Property";
1906 break;
1907 case OCM_Subscript:
1908 os << "Subscript";
1909 break;
1910 }
Ted Kremenek415287d2012-03-06 20:06:12 +00001911 }
1912
1913 if (CurrV.getObjKind() == RetEffect::CF) {
1914 os << " returns a Core Foundation object with a ";
1915 }
1916 else {
1917 assert (CurrV.getObjKind() == RetEffect::ObjC);
1918 os << " returns an Objective-C object with a ";
1919 }
1920
1921 if (CurrV.isOwned()) {
1922 os << "+1 retain count";
1923
1924 if (GCEnabled) {
1925 assert(CurrV.getObjKind() == RetEffect::CF);
1926 os << ". "
1927 "Core Foundation objects are not automatically garbage collected.";
1928 }
1929 }
1930 else {
1931 assert (CurrV.isNotOwned());
1932 os << "+0 retain count";
1933 }
Ted Kremenek6bd78702009-04-29 18:50:19 +00001934 }
Mike Stump11289f42009-09-09 15:08:12 +00001935
Anna Zaks3a769bd2011-09-15 01:08:34 +00001936 PathDiagnosticLocation Pos(S, BRC.getSourceManager(),
1937 N->getLocationContext());
Ted Kremenek6bd78702009-04-29 18:50:19 +00001938 return new PathDiagnosticEventPiece(Pos, os.str());
1939 }
Mike Stump11289f42009-09-09 15:08:12 +00001940
Ted Kremenek6bd78702009-04-29 18:50:19 +00001941 // Gather up the effects that were performed on the object at this
1942 // program point
Chris Lattner0e62c1c2011-07-23 10:55:15 +00001943 SmallVector<ArgEffect, 2> AEffects;
Mike Stump11289f42009-09-09 15:08:12 +00001944
Jordy Rose20d4e682011-08-23 20:55:48 +00001945 const ExplodedNode *OrigNode = BRC.getNodeResolver().getOriginalNode(N);
1946 if (const RetainSummary *Summ = SummaryLog.lookup(OrigNode)) {
Ted Kremenek6bd78702009-04-29 18:50:19 +00001947 // We only have summaries attached to nodes after evaluating CallExpr and
1948 // ObjCMessageExprs.
David Blaikie87396b92013-02-21 22:23:56 +00001949 const Stmt *S = N->getLocation().castAs<StmtPoint>().getStmt();
Mike Stump11289f42009-09-09 15:08:12 +00001950
Ted Kremenekbfd28fd2009-07-22 22:35:28 +00001951 if (const CallExpr *CE = dyn_cast<CallExpr>(S)) {
Ted Kremenek6bd78702009-04-29 18:50:19 +00001952 // Iterate through the parameter expressions and see if the symbol
1953 // was ever passed as an argument.
1954 unsigned i = 0;
Mike Stump11289f42009-09-09 15:08:12 +00001955
Ted Kremenekbfd28fd2009-07-22 22:35:28 +00001956 for (CallExpr::const_arg_iterator AI=CE->arg_begin(), AE=CE->arg_end();
Ted Kremenek6bd78702009-04-29 18:50:19 +00001957 AI!=AE; ++AI, ++i) {
Mike Stump11289f42009-09-09 15:08:12 +00001958
Ted Kremenek6bd78702009-04-29 18:50:19 +00001959 // Retrieve the value of the argument. Is it the symbol
1960 // we are interested in?
Ted Kremenek632e3b72012-01-06 22:09:28 +00001961 if (CurrSt->getSValAsScalarOrLoc(*AI, LCtx).getAsLocSymbol() != Sym)
Ted Kremenek6bd78702009-04-29 18:50:19 +00001962 continue;
Mike Stump11289f42009-09-09 15:08:12 +00001963
Ted Kremenek6bd78702009-04-29 18:50:19 +00001964 // We have an argument. Get the effect!
1965 AEffects.push_back(Summ->getArg(i));
1966 }
1967 }
Mike Stump11289f42009-09-09 15:08:12 +00001968 else if (const ObjCMessageExpr *ME = dyn_cast<ObjCMessageExpr>(S)) {
Douglas Gregor9a129192010-04-21 00:45:42 +00001969 if (const Expr *receiver = ME->getInstanceReceiver())
Ted Kremenek632e3b72012-01-06 22:09:28 +00001970 if (CurrSt->getSValAsScalarOrLoc(receiver, LCtx)
1971 .getAsLocSymbol() == Sym) {
Ted Kremenek6bd78702009-04-29 18:50:19 +00001972 // The symbol we are tracking is the receiver.
1973 AEffects.push_back(Summ->getReceiverEffect());
1974 }
1975 }
1976 }
Mike Stump11289f42009-09-09 15:08:12 +00001977
Ted Kremenek6bd78702009-04-29 18:50:19 +00001978 do {
1979 // Get the previous type state.
1980 RefVal PrevV = *PrevT;
Mike Stump11289f42009-09-09 15:08:12 +00001981
Ted Kremenek6bd78702009-04-29 18:50:19 +00001982 // Specially handle -dealloc.
Benjamin Kramerab3838a2013-08-16 21:57:14 +00001983 if (!GCEnabled && std::find(AEffects.begin(), AEffects.end(), Dealloc) !=
1984 AEffects.end()) {
Ted Kremenek6bd78702009-04-29 18:50:19 +00001985 // Determine if the object's reference count was pushed to zero.
Jordan Roseb3ad07e2014-03-25 17:10:58 +00001986 assert(!PrevV.hasSameState(CurrV) && "The state should have changed.");
Ted Kremenek6bd78702009-04-29 18:50:19 +00001987 // We may not have transitioned to 'release' if we hit an error.
1988 // This case is handled elsewhere.
1989 if (CurrV.getKind() == RefVal::Released) {
Ted Kremenek3a0516b2009-05-08 20:01:42 +00001990 assert(CurrV.getCombinedCounts() == 0);
Ted Kremenek6bd78702009-04-29 18:50:19 +00001991 os << "Object released by directly sending the '-dealloc' message";
1992 break;
1993 }
1994 }
Mike Stump11289f42009-09-09 15:08:12 +00001995
Ted Kremenek6bd78702009-04-29 18:50:19 +00001996 // Specially handle CFMakeCollectable and friends.
Benjamin Kramerab3838a2013-08-16 21:57:14 +00001997 if (std::find(AEffects.begin(), AEffects.end(), MakeCollectable) !=
1998 AEffects.end()) {
Ted Kremenek6bd78702009-04-29 18:50:19 +00001999 // Get the name of the function.
David Blaikie87396b92013-02-21 22:23:56 +00002000 const Stmt *S = N->getLocation().castAs<StmtPoint>().getStmt();
Ted Kremenek632e3b72012-01-06 22:09:28 +00002001 SVal X =
2002 CurrSt->getSValAsScalarOrLoc(cast<CallExpr>(S)->getCallee(), LCtx);
Ted Kremenek5ef32db2011-08-12 23:37:29 +00002003 const FunctionDecl *FD = X.getAsFunctionDecl();
Mike Stump11289f42009-09-09 15:08:12 +00002004
Jordy Rose7a534982011-08-24 05:47:39 +00002005 if (GCEnabled) {
Ted Kremenek6bd78702009-04-29 18:50:19 +00002006 // Determine if the object's reference count was pushed to zero.
Jordan Roseb3ad07e2014-03-25 17:10:58 +00002007 assert(!PrevV.hasSameState(CurrV) && "The state should have changed.");
Mike Stump11289f42009-09-09 15:08:12 +00002008
Benjamin Kramerb89514a2011-10-14 18:45:37 +00002009 os << "In GC mode a call to '" << *FD
Ted Kremenek6bd78702009-04-29 18:50:19 +00002010 << "' decrements an object's retain count and registers the "
2011 "object with the garbage collector. ";
Mike Stump11289f42009-09-09 15:08:12 +00002012
Ted Kremenek6bd78702009-04-29 18:50:19 +00002013 if (CurrV.getKind() == RefVal::Released) {
2014 assert(CurrV.getCount() == 0);
2015 os << "Since it now has a 0 retain count the object can be "
2016 "automatically collected by the garbage collector.";
2017 }
2018 else
2019 os << "An object must have a 0 retain count to be garbage collected. "
2020 "After this call its retain count is +" << CurrV.getCount()
2021 << '.';
2022 }
Mike Stump11289f42009-09-09 15:08:12 +00002023 else
Benjamin Kramerb89514a2011-10-14 18:45:37 +00002024 os << "When GC is not enabled a call to '" << *FD
Ted Kremenek6bd78702009-04-29 18:50:19 +00002025 << "' has no effect on its argument.";
Mike Stump11289f42009-09-09 15:08:12 +00002026
Ted Kremenek6bd78702009-04-29 18:50:19 +00002027 // Nothing more to say.
2028 break;
2029 }
Mike Stump11289f42009-09-09 15:08:12 +00002030
2031 // Determine if the typestate has changed.
Jordan Roseb3ad07e2014-03-25 17:10:58 +00002032 if (!PrevV.hasSameState(CurrV))
Ted Kremenek6bd78702009-04-29 18:50:19 +00002033 switch (CurrV.getKind()) {
2034 case RefVal::Owned:
2035 case RefVal::NotOwned:
Mike Stump11289f42009-09-09 15:08:12 +00002036
Ted Kremenek3a0516b2009-05-08 20:01:42 +00002037 if (PrevV.getCount() == CurrV.getCount()) {
2038 // Did an autorelease message get sent?
2039 if (PrevV.getAutoreleaseCount() == CurrV.getAutoreleaseCount())
Craig Topper0dbb7832014-05-27 02:45:47 +00002040 return nullptr;
Mike Stump11289f42009-09-09 15:08:12 +00002041
Zhongxing Xu08a2ede2009-05-12 10:10:00 +00002042 assert(PrevV.getAutoreleaseCount() < CurrV.getAutoreleaseCount());
Jordan Rose7467f062013-04-23 01:42:25 +00002043 os << "Object autoreleased";
Ted Kremenek3a0516b2009-05-08 20:01:42 +00002044 break;
2045 }
Mike Stump11289f42009-09-09 15:08:12 +00002046
Ted Kremenek6bd78702009-04-29 18:50:19 +00002047 if (PrevV.getCount() > CurrV.getCount())
2048 os << "Reference count decremented.";
2049 else
2050 os << "Reference count incremented.";
Mike Stump11289f42009-09-09 15:08:12 +00002051
Ted Kremenek6bd78702009-04-29 18:50:19 +00002052 if (unsigned Count = CurrV.getCount())
2053 os << " The object now has a +" << Count << " retain count.";
Mike Stump11289f42009-09-09 15:08:12 +00002054
Ted Kremenek6bd78702009-04-29 18:50:19 +00002055 if (PrevV.getKind() == RefVal::Released) {
Jordy Rose7a534982011-08-24 05:47:39 +00002056 assert(GCEnabled && CurrV.getCount() > 0);
Jordy Rose78373e52012-03-17 05:49:15 +00002057 os << " The object is not eligible for garbage collection until "
2058 "the retain count reaches 0 again.";
Ted Kremenek6bd78702009-04-29 18:50:19 +00002059 }
Mike Stump11289f42009-09-09 15:08:12 +00002060
Ted Kremenek6bd78702009-04-29 18:50:19 +00002061 break;
Mike Stump11289f42009-09-09 15:08:12 +00002062
Ted Kremenek6bd78702009-04-29 18:50:19 +00002063 case RefVal::Released:
2064 os << "Object released.";
2065 break;
Mike Stump11289f42009-09-09 15:08:12 +00002066
Ted Kremenek6bd78702009-04-29 18:50:19 +00002067 case RefVal::ReturnedOwned:
Jordy Rose78373e52012-03-17 05:49:15 +00002068 // Autoreleases can be applied after marking a node ReturnedOwned.
2069 if (CurrV.getAutoreleaseCount())
Craig Topper0dbb7832014-05-27 02:45:47 +00002070 return nullptr;
Jordy Rose78373e52012-03-17 05:49:15 +00002071
2072 os << "Object returned to caller as an owning reference (single "
2073 "retain count transferred to caller)";
Ted Kremenek6bd78702009-04-29 18:50:19 +00002074 break;
Mike Stump11289f42009-09-09 15:08:12 +00002075
Ted Kremenek6bd78702009-04-29 18:50:19 +00002076 case RefVal::ReturnedNotOwned:
Ted Kremenekf2301982011-05-26 18:45:44 +00002077 os << "Object returned to caller with a +0 retain count";
Ted Kremenek6bd78702009-04-29 18:50:19 +00002078 break;
Mike Stump11289f42009-09-09 15:08:12 +00002079
Ted Kremenek6bd78702009-04-29 18:50:19 +00002080 default:
Craig Topper0dbb7832014-05-27 02:45:47 +00002081 return nullptr;
Ted Kremenek6bd78702009-04-29 18:50:19 +00002082 }
Mike Stump11289f42009-09-09 15:08:12 +00002083
Ted Kremenek6bd78702009-04-29 18:50:19 +00002084 // Emit any remaining diagnostics for the argument effects (if any).
Chris Lattner0e62c1c2011-07-23 10:55:15 +00002085 for (SmallVectorImpl<ArgEffect>::iterator I=AEffects.begin(),
Ted Kremenek6bd78702009-04-29 18:50:19 +00002086 E=AEffects.end(); I != E; ++I) {
Mike Stump11289f42009-09-09 15:08:12 +00002087
Ted Kremenek6bd78702009-04-29 18:50:19 +00002088 // A bunch of things have alternate behavior under GC.
Jordy Rose7a534982011-08-24 05:47:39 +00002089 if (GCEnabled)
Ted Kremenek6bd78702009-04-29 18:50:19 +00002090 switch (*I) {
2091 default: break;
2092 case Autorelease:
2093 os << "In GC mode an 'autorelease' has no effect.";
2094 continue;
2095 case IncRefMsg:
2096 os << "In GC mode the 'retain' message has no effect.";
2097 continue;
2098 case DecRefMsg:
2099 os << "In GC mode the 'release' message has no effect.";
2100 continue;
2101 }
2102 }
Mike Stump11289f42009-09-09 15:08:12 +00002103 } while (0);
2104
Ted Kremenek6bd78702009-04-29 18:50:19 +00002105 if (os.str().empty())
Craig Topper0dbb7832014-05-27 02:45:47 +00002106 return nullptr; // We have nothing to say!
Ted Kremenek051a03d2009-05-13 07:12:33 +00002107
David Blaikie87396b92013-02-21 22:23:56 +00002108 const Stmt *S = N->getLocation().castAs<StmtPoint>().getStmt();
Anna Zaks3a769bd2011-09-15 01:08:34 +00002109 PathDiagnosticLocation Pos(S, BRC.getSourceManager(),
2110 N->getLocationContext());
Ted Kremenek5ef32db2011-08-12 23:37:29 +00002111 PathDiagnosticPiece *P = new PathDiagnosticEventPiece(Pos, os.str());
Mike Stump11289f42009-09-09 15:08:12 +00002112
Ted Kremenek6bd78702009-04-29 18:50:19 +00002113 // Add the range by scanning the children of the statement for any bindings
2114 // to Sym.
Mike Stump11289f42009-09-09 15:08:12 +00002115 for (Stmt::const_child_iterator I = S->child_begin(), E = S->child_end();
Ted Kremenekbfd28fd2009-07-22 22:35:28 +00002116 I!=E; ++I)
Ted Kremenek5ef32db2011-08-12 23:37:29 +00002117 if (const Expr *Exp = dyn_cast_or_null<Expr>(*I))
Ted Kremenek632e3b72012-01-06 22:09:28 +00002118 if (CurrSt->getSValAsScalarOrLoc(Exp, LCtx).getAsLocSymbol() == Sym) {
Ted Kremenek6bd78702009-04-29 18:50:19 +00002119 P->addRange(Exp->getSourceRange());
2120 break;
2121 }
Mike Stump11289f42009-09-09 15:08:12 +00002122
Ted Kremenek6bd78702009-04-29 18:50:19 +00002123 return P;
2124}
2125
Anna Zaks75de3232012-02-28 22:39:22 +00002126// Find the first node in the current function context that referred to the
2127// tracked symbol and the memory location that value was stored to. Note, the
2128// value is only reported if the allocation occurred in the same function as
Anna Zakse51362e2013-04-10 21:42:06 +00002129// the leak. The function can also return a location context, which should be
2130// treated as interesting.
2131struct AllocationInfo {
2132 const ExplodedNode* N;
Anna Zaks3f303be2013-04-10 22:56:30 +00002133 const MemRegion *R;
Anna Zakse51362e2013-04-10 21:42:06 +00002134 const LocationContext *InterestingMethodContext;
Anna Zaks3f303be2013-04-10 22:56:30 +00002135 AllocationInfo(const ExplodedNode *InN,
2136 const MemRegion *InR,
Anna Zakse51362e2013-04-10 21:42:06 +00002137 const LocationContext *InInterestingMethodContext) :
2138 N(InN), R(InR), InterestingMethodContext(InInterestingMethodContext) {}
2139};
2140
2141static AllocationInfo
Ted Kremenek001fd5b2011-08-15 22:09:50 +00002142GetAllocationSite(ProgramStateManager& StateMgr, const ExplodedNode *N,
Ted Kremenek6bd78702009-04-29 18:50:19 +00002143 SymbolRef Sym) {
Anna Zakse51362e2013-04-10 21:42:06 +00002144 const ExplodedNode *AllocationNode = N;
2145 const ExplodedNode *AllocationNodeInCurrentContext = N;
Craig Topper0dbb7832014-05-27 02:45:47 +00002146 const MemRegion *FirstBinding = nullptr;
Anna Zaks75de3232012-02-28 22:39:22 +00002147 const LocationContext *LeakContext = N->getLocationContext();
Mike Stump11289f42009-09-09 15:08:12 +00002148
Anna Zakse51362e2013-04-10 21:42:06 +00002149 // The location context of the init method called on the leaked object, if
2150 // available.
Craig Topper0dbb7832014-05-27 02:45:47 +00002151 const LocationContext *InitMethodContext = nullptr;
Anna Zakse51362e2013-04-10 21:42:06 +00002152
Ted Kremenek6bd78702009-04-29 18:50:19 +00002153 while (N) {
Ted Kremenek49b1e382012-01-26 21:29:00 +00002154 ProgramStateRef St = N->getState();
Anna Zakse51362e2013-04-10 21:42:06 +00002155 const LocationContext *NContext = N->getLocationContext();
Mike Stump11289f42009-09-09 15:08:12 +00002156
Anna Zaksf5788c72012-08-14 00:36:15 +00002157 if (!getRefBinding(St, Sym))
Ted Kremenek6bd78702009-04-29 18:50:19 +00002158 break;
Mike Stump11289f42009-09-09 15:08:12 +00002159
Anna Zaks6797d6e2012-03-21 19:45:01 +00002160 StoreManager::FindUniqueBinding FB(Sym);
Mike Stump11289f42009-09-09 15:08:12 +00002161 StateMgr.iterBindings(St, FB);
Anna Zakse51362e2013-04-10 21:42:06 +00002162
Anna Zaks7c19abe2013-04-10 21:42:02 +00002163 if (FB) {
2164 const MemRegion *R = FB.getRegion();
Anna Zaks07804ef2013-04-10 22:56:33 +00002165 const VarRegion *VR = R->getBaseRegion()->getAs<VarRegion>();
Anna Zaks7c19abe2013-04-10 21:42:02 +00002166 // Do not show local variables belonging to a function other than
2167 // where the error is reported.
2168 if (!VR || VR->getStackFrame() == LeakContext->getCurrentStackFrame())
Anna Zakse51362e2013-04-10 21:42:06 +00002169 FirstBinding = R;
Anna Zaks7c19abe2013-04-10 21:42:02 +00002170 }
Mike Stump11289f42009-09-09 15:08:12 +00002171
Anna Zakse51362e2013-04-10 21:42:06 +00002172 // AllocationNode is the last node in which the symbol was tracked.
2173 AllocationNode = N;
2174
2175 // AllocationNodeInCurrentContext, is the last node in the current context
2176 // in which the symbol was tracked.
2177 if (NContext == LeakContext)
2178 AllocationNodeInCurrentContext = N;
2179
Anna Zaks3f303be2013-04-10 22:56:30 +00002180 // Find the last init that was called on the given symbol and store the
2181 // init method's location context.
2182 if (!InitMethodContext)
2183 if (Optional<CallEnter> CEP = N->getLocation().getAs<CallEnter>()) {
2184 const Stmt *CE = CEP->getCallExpr();
Anna Zaks99394bb2013-04-25 00:41:32 +00002185 if (const ObjCMessageExpr *ME = dyn_cast_or_null<ObjCMessageExpr>(CE)) {
Anna Zaks3f303be2013-04-10 22:56:30 +00002186 const Stmt *RecExpr = ME->getInstanceReceiver();
2187 if (RecExpr) {
2188 SVal RecV = St->getSVal(RecExpr, NContext);
2189 if (ME->getMethodFamily() == OMF_init && RecV.getAsSymbol() == Sym)
2190 InitMethodContext = CEP->getCalleeContext();
2191 }
2192 }
Anna Zakse51362e2013-04-10 21:42:06 +00002193 }
Anna Zaks75de3232012-02-28 22:39:22 +00002194
Craig Topper0dbb7832014-05-27 02:45:47 +00002195 N = N->pred_empty() ? nullptr : *(N->pred_begin());
Ted Kremenek6bd78702009-04-29 18:50:19 +00002196 }
Mike Stump11289f42009-09-09 15:08:12 +00002197
Anna Zakse51362e2013-04-10 21:42:06 +00002198 // If we are reporting a leak of the object that was allocated with alloc,
Anna Zaks3f303be2013-04-10 22:56:30 +00002199 // mark its init method as interesting.
Craig Topper0dbb7832014-05-27 02:45:47 +00002200 const LocationContext *InterestingMethodContext = nullptr;
Anna Zakse51362e2013-04-10 21:42:06 +00002201 if (InitMethodContext) {
2202 const ProgramPoint AllocPP = AllocationNode->getLocation();
2203 if (Optional<StmtPoint> SP = AllocPP.getAs<StmtPoint>())
2204 if (const ObjCMessageExpr *ME = SP->getStmtAs<ObjCMessageExpr>())
2205 if (ME->getMethodFamily() == OMF_alloc)
2206 InterestingMethodContext = InitMethodContext;
2207 }
2208
Anna Zaks75de3232012-02-28 22:39:22 +00002209 // If allocation happened in a function different from the leak node context,
2210 // do not report the binding.
Ted Kremenekb045b012012-10-12 22:56:40 +00002211 assert(N && "Could not find allocation node");
Anna Zaks75de3232012-02-28 22:39:22 +00002212 if (N->getLocationContext() != LeakContext) {
Craig Topper0dbb7832014-05-27 02:45:47 +00002213 FirstBinding = nullptr;
Anna Zaks75de3232012-02-28 22:39:22 +00002214 }
2215
Anna Zakse51362e2013-04-10 21:42:06 +00002216 return AllocationInfo(AllocationNodeInCurrentContext,
2217 FirstBinding,
2218 InterestingMethodContext);
Ted Kremenek6bd78702009-04-29 18:50:19 +00002219}
2220
2221PathDiagnosticPiece*
Anna Zaks88255cc2011-08-20 01:27:22 +00002222CFRefReportVisitor::getEndPath(BugReporterContext &BRC,
2223 const ExplodedNode *EndN,
2224 BugReport &BR) {
Ted Kremenek1e809b42012-03-09 01:13:14 +00002225 BR.markInteresting(Sym);
Anna Zaks88255cc2011-08-20 01:27:22 +00002226 return BugReporterVisitor::getDefaultEndPath(BRC, EndN, BR);
Ted Kremenek6bd78702009-04-29 18:50:19 +00002227}
2228
2229PathDiagnosticPiece*
Anna Zaks88255cc2011-08-20 01:27:22 +00002230CFRefLeakReportVisitor::getEndPath(BugReporterContext &BRC,
2231 const ExplodedNode *EndN,
2232 BugReport &BR) {
Mike Stump11289f42009-09-09 15:08:12 +00002233
Ted Kremenekbb8d5462009-05-06 21:39:49 +00002234 // Tell the BugReporterContext to report cases when the tracked symbol is
Ted Kremenek6bd78702009-04-29 18:50:19 +00002235 // assigned to different variables, etc.
Ted Kremenek1e809b42012-03-09 01:13:14 +00002236 BR.markInteresting(Sym);
Mike Stump11289f42009-09-09 15:08:12 +00002237
Ted Kremenek6bd78702009-04-29 18:50:19 +00002238 // We are reporting a leak. Walk up the graph to get to the first node where
2239 // the symbol appeared, and also get the first VarDecl that tracked object
2240 // is stored to.
Anna Zakse51362e2013-04-10 21:42:06 +00002241 AllocationInfo AllocI =
Ted Kremenek8c8fb482009-05-08 23:32:51 +00002242 GetAllocationSite(BRC.getStateManager(), EndN, Sym);
Mike Stump11289f42009-09-09 15:08:12 +00002243
Anna Zakse51362e2013-04-10 21:42:06 +00002244 const MemRegion* FirstBinding = AllocI.R;
2245 BR.markInteresting(AllocI.InterestingMethodContext);
2246
Anna Zaks921f0492011-09-15 18:56:07 +00002247 SourceManager& SM = BRC.getSourceManager();
Mike Stump11289f42009-09-09 15:08:12 +00002248
Ted Kremenek6bd78702009-04-29 18:50:19 +00002249 // Compute an actual location for the leak. Sometimes a leak doesn't
2250 // occur at an actual statement (e.g., transition between blocks; end
2251 // of function) so we need to walk the graph and compute a real location.
Ted Kremenek5ef32db2011-08-12 23:37:29 +00002252 const ExplodedNode *LeakN = EndN;
Anna Zaks921f0492011-09-15 18:56:07 +00002253 PathDiagnosticLocation L = PathDiagnosticLocation::createEndOfPath(LeakN, SM);
Mike Stump11289f42009-09-09 15:08:12 +00002254
Ted Kremenek6bd78702009-04-29 18:50:19 +00002255 std::string sbuf;
2256 llvm::raw_string_ostream os(sbuf);
Mike Stump11289f42009-09-09 15:08:12 +00002257
Ted Kremenekf2301982011-05-26 18:45:44 +00002258 os << "Object leaked: ";
Mike Stump11289f42009-09-09 15:08:12 +00002259
Ted Kremenekf2301982011-05-26 18:45:44 +00002260 if (FirstBinding) {
2261 os << "object allocated and stored into '"
2262 << FirstBinding->getString() << '\'';
2263 }
2264 else
2265 os << "allocated object";
Mike Stump11289f42009-09-09 15:08:12 +00002266
Ted Kremenek6bd78702009-04-29 18:50:19 +00002267 // Get the retain count.
Anna Zaksf5788c72012-08-14 00:36:15 +00002268 const RefVal* RV = getRefBinding(EndN->getState(), Sym);
Ted Kremenekb045b012012-10-12 22:56:40 +00002269 assert(RV);
Mike Stump11289f42009-09-09 15:08:12 +00002270
Ted Kremenek6bd78702009-04-29 18:50:19 +00002271 if (RV->getKind() == RefVal::ErrorLeakReturned) {
2272 // FIXME: Per comments in rdar://6320065, "create" only applies to CF
Jordy Rose43426f82011-07-15 22:17:54 +00002273 // objects. Only "copy", "alloc", "retain" and "new" transfer ownership
Ted Kremenek6bd78702009-04-29 18:50:19 +00002274 // to the caller for NS objects.
Ted Kremenek8e2c9b02011-05-25 06:19:45 +00002275 const Decl *D = &EndN->getCodeDecl();
Ted Kremenek2a786952012-09-06 23:03:07 +00002276
2277 os << (isa<ObjCMethodDecl>(D) ? " is returned from a method "
2278 : " is returned from a function ");
2279
Aaron Ballman9ead1242013-12-19 02:39:40 +00002280 if (D->hasAttr<CFReturnsNotRetainedAttr>())
Ted Kremenek2a786952012-09-06 23:03:07 +00002281 os << "that is annotated as CF_RETURNS_NOT_RETAINED";
Aaron Ballman9ead1242013-12-19 02:39:40 +00002282 else if (D->hasAttr<NSReturnsNotRetainedAttr>())
Ted Kremenek2a786952012-09-06 23:03:07 +00002283 os << "that is annotated as NS_RETURNS_NOT_RETAINED";
Ted Kremenek8e2c9b02011-05-25 06:19:45 +00002284 else {
Ted Kremenek2a786952012-09-06 23:03:07 +00002285 if (const ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(D)) {
2286 os << "whose name ('" << MD->getSelector().getAsString()
2287 << "') does not start with 'copy', 'mutableCopy', 'alloc' or 'new'."
2288 " This violates the naming convention rules"
2289 " given in the Memory Management Guide for Cocoa";
2290 }
2291 else {
2292 const FunctionDecl *FD = cast<FunctionDecl>(D);
2293 os << "whose name ('" << *FD
2294 << "') does not contain 'Copy' or 'Create'. This violates the naming"
2295 " convention rules given in the Memory Management Guide for Core"
2296 " Foundation";
2297 }
2298 }
Ted Kremenek6bd78702009-04-29 18:50:19 +00002299 }
Ted Kremenekdee56e32009-05-10 06:25:57 +00002300 else if (RV->getKind() == RefVal::ErrorGCLeakReturned) {
David Blaikie3cbec0f2013-02-21 22:37:44 +00002301 const ObjCMethodDecl &MD = cast<ObjCMethodDecl>(EndN->getCodeDecl());
Ted Kremenekdee56e32009-05-10 06:25:57 +00002302 os << " and returned from method '" << MD.getSelector().getAsString()
Ted Kremenek1f8e4342009-05-10 16:52:15 +00002303 << "' is potentially leaked when using garbage collection. Callers "
2304 "of this method do not expect a returned object with a +1 retain "
2305 "count since they expect the object to be managed by the garbage "
2306 "collector";
Ted Kremenekdee56e32009-05-10 06:25:57 +00002307 }
Ted Kremenek6bd78702009-04-29 18:50:19 +00002308 else
Ted Kremenek4f63ac72010-10-15 22:50:23 +00002309 os << " is not referenced later in this execution path and has a retain "
Ted Kremenekf2301982011-05-26 18:45:44 +00002310 "count of +" << RV->getCount();
Mike Stump11289f42009-09-09 15:08:12 +00002311
Ted Kremenek6bd78702009-04-29 18:50:19 +00002312 return new PathDiagnosticEventPiece(L, os.str());
2313}
2314
Jordy Rose184bd142011-08-24 22:39:09 +00002315CFRefLeakReport::CFRefLeakReport(CFRefBug &D, const LangOptions &LOpts,
2316 bool GCEnabled, const SummaryLogTy &Log,
2317 ExplodedNode *n, SymbolRef sym,
Ted Kremenek8671acb2013-04-16 21:44:22 +00002318 CheckerContext &Ctx,
2319 bool IncludeAllocationLine)
2320 : CFRefReport(D, LOpts, GCEnabled, Log, n, sym, false) {
Mike Stump11289f42009-09-09 15:08:12 +00002321
Chris Lattner57540c52011-04-15 05:22:18 +00002322 // Most bug reports are cached at the location where they occurred.
Ted Kremenek6bd78702009-04-29 18:50:19 +00002323 // With leaks, we want to unique them by the location where they were
2324 // allocated, and only report a single path. To do this, we need to find
2325 // the allocation site of a piece of tracked memory, which we do via a
2326 // call to GetAllocationSite. This will walk the ExplodedGraph backwards.
2327 // Note that this is *not* the trimmed graph; we are guaranteed, however,
2328 // that all ancestor nodes that represent the allocation site have the
2329 // same SourceLocation.
Craig Topper0dbb7832014-05-27 02:45:47 +00002330 const ExplodedNode *AllocNode = nullptr;
Mike Stump11289f42009-09-09 15:08:12 +00002331
Anna Zaks58734db2011-10-25 19:57:11 +00002332 const SourceManager& SMgr = Ctx.getSourceManager();
Anna Zaksc29bed32011-09-20 21:38:35 +00002333
Anna Zakse51362e2013-04-10 21:42:06 +00002334 AllocationInfo AllocI =
Anna Zaks58734db2011-10-25 19:57:11 +00002335 GetAllocationSite(Ctx.getStateManager(), getErrorNode(), sym);
Mike Stump11289f42009-09-09 15:08:12 +00002336
Anna Zakse51362e2013-04-10 21:42:06 +00002337 AllocNode = AllocI.N;
2338 AllocBinding = AllocI.R;
2339 markInteresting(AllocI.InterestingMethodContext);
2340
Ted Kremenek6bd78702009-04-29 18:50:19 +00002341 // Get the SourceLocation for the allocation site.
Jordan Rosefbe6dba2012-07-10 22:07:52 +00002342 // FIXME: This will crash the analyzer if an allocation comes from an
2343 // implicit call. (Currently there are no such allocations in Cocoa, though.)
2344 const Stmt *AllocStmt;
Ted Kremenek6bd78702009-04-29 18:50:19 +00002345 ProgramPoint P = AllocNode->getLocation();
David Blaikie87396b92013-02-21 22:23:56 +00002346 if (Optional<CallExitEnd> Exit = P.getAs<CallExitEnd>())
Jordan Rosefbe6dba2012-07-10 22:07:52 +00002347 AllocStmt = Exit->getCalleeContext()->getCallSite();
2348 else
David Blaikie87396b92013-02-21 22:23:56 +00002349 AllocStmt = P.castAs<PostStmt>().getStmt();
Jordan Rosefbe6dba2012-07-10 22:07:52 +00002350 assert(AllocStmt && "All allocations must come from explicit calls");
Anna Zaks40402872013-04-23 23:57:50 +00002351
2352 PathDiagnosticLocation AllocLocation =
2353 PathDiagnosticLocation::createBegin(AllocStmt, SMgr,
2354 AllocNode->getLocationContext());
2355 Location = AllocLocation;
2356
2357 // Set uniqieing info, which will be used for unique the bug reports. The
2358 // leaks should be uniqued on the allocation site.
2359 UniqueingLocation = AllocLocation;
2360 UniqueingDecl = AllocNode->getLocationContext()->getDecl();
2361
Ted Kremenek6bd78702009-04-29 18:50:19 +00002362 // Fill in the description of the bug.
2363 Description.clear();
2364 llvm::raw_string_ostream os(Description);
Ted Kremenekf1e76672009-05-02 19:05:19 +00002365 os << "Potential leak ";
Jordy Rose184bd142011-08-24 22:39:09 +00002366 if (GCEnabled)
Ted Kremenekf1e76672009-05-02 19:05:19 +00002367 os << "(when using garbage collection) ";
Anna Zaks16f38312012-02-28 21:49:08 +00002368 os << "of an object";
Mike Stump11289f42009-09-09 15:08:12 +00002369
Ted Kremenek8671acb2013-04-16 21:44:22 +00002370 if (AllocBinding) {
Anna Zaks16f38312012-02-28 21:49:08 +00002371 os << " stored into '" << AllocBinding->getString() << '\'';
Ted Kremenek8671acb2013-04-16 21:44:22 +00002372 if (IncludeAllocationLine) {
2373 FullSourceLoc SL(AllocStmt->getLocStart(), Ctx.getSourceManager());
2374 os << " (allocated on line " << SL.getSpellingLineNumber() << ")";
2375 }
2376 }
Anna Zaks071a89c2011-08-19 23:21:56 +00002377
Jordy Rose184bd142011-08-24 22:39:09 +00002378 addVisitor(new CFRefLeakReportVisitor(sym, GCEnabled, Log));
Ted Kremenek6bd78702009-04-29 18:50:19 +00002379}
2380
2381//===----------------------------------------------------------------------===//
2382// Main checker logic.
2383//===----------------------------------------------------------------------===//
2384
Ted Kremenek70a87882009-11-25 22:17:44 +00002385namespace {
Jordy Rose75e680e2011-09-02 06:44:22 +00002386class RetainCountChecker
Jordy Rose5df640d2011-08-24 18:56:32 +00002387 : public Checker< check::Bind,
Jordy Rose78612762011-08-23 19:01:07 +00002388 check::DeadSymbols,
Jordy Rose5df640d2011-08-24 18:56:32 +00002389 check::EndAnalysis,
Anna Zaks3fdcc0b2013-01-03 00:25:29 +00002390 check::EndFunction,
Jordy Rose217eb902011-08-17 21:27:39 +00002391 check::PostStmt<BlockExpr>,
John McCall31168b02011-06-15 23:02:42 +00002392 check::PostStmt<CastExpr>,
Ted Kremenek415287d2012-03-06 20:06:12 +00002393 check::PostStmt<ObjCArrayLiteral>,
2394 check::PostStmt<ObjCDictionaryLiteral>,
Jordy Rose6393f822012-05-12 05:10:43 +00002395 check::PostStmt<ObjCBoxedExpr>,
Jordan Roseb3ad07e2014-03-25 17:10:58 +00002396 check::PostStmt<ObjCIvarRefExpr>,
Jordan Rose682b3162012-07-02 19:28:21 +00002397 check::PostCall,
Jordy Rose298cc4d2011-08-23 19:43:16 +00002398 check::PreStmt<ReturnStmt>,
Jordy Rose217eb902011-08-17 21:27:39 +00002399 check::RegionChanges,
Jordy Rose898a1482011-08-21 21:58:18 +00002400 eval::Assume,
2401 eval::Call > {
Ahmed Charlesb8984322014-03-07 20:03:18 +00002402 mutable std::unique_ptr<CFRefBug> useAfterRelease, releaseNotOwned;
2403 mutable std::unique_ptr<CFRefBug> deallocGC, deallocNotOwned;
2404 mutable std::unique_ptr<CFRefBug> overAutorelease, returnNotOwnedForOwned;
2405 mutable std::unique_ptr<CFRefBug> leakWithinFunction, leakAtReturn;
2406 mutable std::unique_ptr<CFRefBug> leakWithinFunctionGC, leakAtReturnGC;
Jordy Rose78612762011-08-23 19:01:07 +00002407
Anton Yartsev6a619222014-02-17 18:25:34 +00002408 typedef llvm::DenseMap<SymbolRef, const CheckerProgramPointTag *> SymbolTagMap;
Jordy Rose78612762011-08-23 19:01:07 +00002409
2410 // This map is only used to ensure proper deletion of any allocated tags.
2411 mutable SymbolTagMap DeadSymbolTags;
2412
Ahmed Charlesb8984322014-03-07 20:03:18 +00002413 mutable std::unique_ptr<RetainSummaryManager> Summaries;
2414 mutable std::unique_ptr<RetainSummaryManager> SummariesGC;
Jordy Rose5df640d2011-08-24 18:56:32 +00002415 mutable SummaryLogTy SummaryLog;
2416 mutable bool ShouldResetSummaryLog;
2417
Ted Kremenek8671acb2013-04-16 21:44:22 +00002418 /// Optional setting to indicate if leak reports should include
2419 /// the allocation line.
2420 mutable bool IncludeAllocationLine;
2421
Jordy Rosea8f99ba2011-08-20 21:17:59 +00002422public:
Ted Kremenek8671acb2013-04-16 21:44:22 +00002423 RetainCountChecker(AnalyzerOptions &AO)
2424 : ShouldResetSummaryLog(false),
2425 IncludeAllocationLine(shouldIncludeAllocationSiteInLeakDiagnostics(AO)) {}
Jordy Rose78612762011-08-23 19:01:07 +00002426
Jordy Rose75e680e2011-09-02 06:44:22 +00002427 virtual ~RetainCountChecker() {
Jordy Rose78612762011-08-23 19:01:07 +00002428 DeleteContainerSeconds(DeadSymbolTags);
2429 }
2430
Jordy Rose5df640d2011-08-24 18:56:32 +00002431 void checkEndAnalysis(ExplodedGraph &G, BugReporter &BR,
2432 ExprEngine &Eng) const {
2433 // FIXME: This is a hack to make sure the summary log gets cleared between
2434 // analyses of different code bodies.
2435 //
2436 // Why is this necessary? Because a checker's lifetime is tied to a
2437 // translation unit, but an ExplodedGraph's lifetime is just a code body.
2438 // Once in a blue moon, a new ExplodedNode will have the same address as an
2439 // old one with an associated summary, and the bug report visitor gets very
2440 // confused. (To make things worse, the summary lifetime is currently also
2441 // tied to a code body, so we get a crash instead of incorrect results.)
Jordy Rose95589f12011-08-24 09:27:24 +00002442 //
2443 // Why is this a bad solution? Because if the lifetime of the ExplodedGraph
2444 // changes, things will start going wrong again. Really the lifetime of this
2445 // log needs to be tied to either the specific nodes in it or the entire
2446 // ExplodedGraph, not to a specific part of the code being analyzed.
2447 //
Jordy Rose5df640d2011-08-24 18:56:32 +00002448 // (Also, having stateful local data means that the same checker can't be
2449 // used from multiple threads, but a lot of checkers have incorrect
2450 // assumptions about that anyway. So that wasn't a priority at the time of
2451 // this fix.)
Jordy Rose95589f12011-08-24 09:27:24 +00002452 //
Jordy Rose5df640d2011-08-24 18:56:32 +00002453 // This happens at the end of analysis, but bug reports are emitted /after/
2454 // this point. So we can't just clear the summary log now. Instead, we mark
2455 // that the next time we access the summary log, it should be cleared.
2456
2457 // If we never reset the summary log during /this/ code body analysis,
2458 // there were no new summaries. There might still have been summaries from
2459 // the /last/ analysis, so clear them out to make sure the bug report
2460 // visitors don't get confused.
2461 if (ShouldResetSummaryLog)
2462 SummaryLog.clear();
2463
2464 ShouldResetSummaryLog = !SummaryLog.empty();
Jordy Rose95589f12011-08-24 09:27:24 +00002465 }
2466
Jordy Rosec49ec532011-09-02 05:55:19 +00002467 CFRefBug *getLeakWithinFunctionBug(const LangOptions &LOpts,
2468 bool GCEnabled) const {
2469 if (GCEnabled) {
Jordy Rose15484da2011-08-25 01:14:38 +00002470 if (!leakWithinFunctionGC)
Alexander Kornienko4aca9b12014-02-11 21:49:21 +00002471 leakWithinFunctionGC.reset(new Leak(this, "Leak of object when using "
2472 "garbage collection"));
Jordy Rosec49ec532011-09-02 05:55:19 +00002473 return leakWithinFunctionGC.get();
Jordy Rose15484da2011-08-25 01:14:38 +00002474 } else {
2475 if (!leakWithinFunction) {
Douglas Gregor79a91412011-09-13 17:21:33 +00002476 if (LOpts.getGC() == LangOptions::HybridGC) {
Alexander Kornienko4aca9b12014-02-11 21:49:21 +00002477 leakWithinFunction.reset(new Leak(this,
2478 "Leak of object when not using "
Benjamin Kramerd1d76b22012-06-06 17:32:50 +00002479 "garbage collection (GC) in "
2480 "dual GC/non-GC code"));
Jordy Rose15484da2011-08-25 01:14:38 +00002481 } else {
Alexander Kornienko4aca9b12014-02-11 21:49:21 +00002482 leakWithinFunction.reset(new Leak(this, "Leak"));
Jordy Rose15484da2011-08-25 01:14:38 +00002483 }
2484 }
Jordy Rosec49ec532011-09-02 05:55:19 +00002485 return leakWithinFunction.get();
Jordy Rose15484da2011-08-25 01:14:38 +00002486 }
2487 }
2488
Jordy Rosec49ec532011-09-02 05:55:19 +00002489 CFRefBug *getLeakAtReturnBug(const LangOptions &LOpts, bool GCEnabled) const {
2490 if (GCEnabled) {
Jordy Rose15484da2011-08-25 01:14:38 +00002491 if (!leakAtReturnGC)
Alexander Kornienko4aca9b12014-02-11 21:49:21 +00002492 leakAtReturnGC.reset(new Leak(this,
2493 "Leak of returned object when using "
Benjamin Kramerd1d76b22012-06-06 17:32:50 +00002494 "garbage collection"));
Jordy Rosec49ec532011-09-02 05:55:19 +00002495 return leakAtReturnGC.get();
Jordy Rose15484da2011-08-25 01:14:38 +00002496 } else {
2497 if (!leakAtReturn) {
Douglas Gregor79a91412011-09-13 17:21:33 +00002498 if (LOpts.getGC() == LangOptions::HybridGC) {
Alexander Kornienko4aca9b12014-02-11 21:49:21 +00002499 leakAtReturn.reset(new Leak(this,
2500 "Leak of returned object when not using "
Benjamin Kramerd1d76b22012-06-06 17:32:50 +00002501 "garbage collection (GC) in dual "
2502 "GC/non-GC code"));
Jordy Rose15484da2011-08-25 01:14:38 +00002503 } else {
Alexander Kornienko4aca9b12014-02-11 21:49:21 +00002504 leakAtReturn.reset(new Leak(this, "Leak of returned object"));
Jordy Rose15484da2011-08-25 01:14:38 +00002505 }
2506 }
Jordy Rosec49ec532011-09-02 05:55:19 +00002507 return leakAtReturn.get();
Jordy Rose15484da2011-08-25 01:14:38 +00002508 }
2509 }
2510
Jordy Rosec49ec532011-09-02 05:55:19 +00002511 RetainSummaryManager &getSummaryManager(ASTContext &Ctx,
2512 bool GCEnabled) const {
2513 // FIXME: We don't support ARC being turned on and off during one analysis.
2514 // (nor, for that matter, do we support changing ASTContexts)
David Blaikiebbafb8a2012-03-11 07:00:24 +00002515 bool ARCEnabled = (bool)Ctx.getLangOpts().ObjCAutoRefCount;
Jordy Rosec49ec532011-09-02 05:55:19 +00002516 if (GCEnabled) {
2517 if (!SummariesGC)
Jordy Rose8b289a22011-08-25 00:10:37 +00002518 SummariesGC.reset(new RetainSummaryManager(Ctx, true, ARCEnabled));
Jordy Rosec49ec532011-09-02 05:55:19 +00002519 else
2520 assert(SummariesGC->isARCEnabled() == ARCEnabled);
Jordy Rose8b289a22011-08-25 00:10:37 +00002521 return *SummariesGC;
2522 } else {
Jordy Rosec49ec532011-09-02 05:55:19 +00002523 if (!Summaries)
Jordy Rose8b289a22011-08-25 00:10:37 +00002524 Summaries.reset(new RetainSummaryManager(Ctx, false, ARCEnabled));
Jordy Rosec49ec532011-09-02 05:55:19 +00002525 else
2526 assert(Summaries->isARCEnabled() == ARCEnabled);
Jordy Rose8b289a22011-08-25 00:10:37 +00002527 return *Summaries;
2528 }
2529 }
2530
Jordy Rosec49ec532011-09-02 05:55:19 +00002531 RetainSummaryManager &getSummaryManager(CheckerContext &C) const {
2532 return getSummaryManager(C.getASTContext(), C.isObjCGCEnabled());
2533 }
2534
Ted Kremenek49b1e382012-01-26 21:29:00 +00002535 void printState(raw_ostream &Out, ProgramStateRef State,
Craig Topperfb6b25b2014-03-15 04:29:04 +00002536 const char *NL, const char *Sep) const override;
Jordy Rose58a20d32011-08-28 19:11:56 +00002537
Anna Zaks3e0f4152011-10-06 00:43:15 +00002538 void checkBind(SVal loc, SVal val, const Stmt *S, CheckerContext &C) const;
Jordy Rose5c252ef2011-08-20 21:16:58 +00002539 void checkPostStmt(const BlockExpr *BE, CheckerContext &C) const;
2540 void checkPostStmt(const CastExpr *CE, CheckerContext &C) const;
John McCall31168b02011-06-15 23:02:42 +00002541
Ted Kremenek415287d2012-03-06 20:06:12 +00002542 void checkPostStmt(const ObjCArrayLiteral *AL, CheckerContext &C) const;
2543 void checkPostStmt(const ObjCDictionaryLiteral *DL, CheckerContext &C) const;
Jordy Rose6393f822012-05-12 05:10:43 +00002544 void checkPostStmt(const ObjCBoxedExpr *BE, CheckerContext &C) const;
2545
Jordan Roseb3ad07e2014-03-25 17:10:58 +00002546 void checkPostStmt(const ObjCIvarRefExpr *IRE, CheckerContext &C) const;
2547
Jordan Rose682b3162012-07-02 19:28:21 +00002548 void checkPostCall(const CallEvent &Call, CheckerContext &C) const;
Ted Kremenek415287d2012-03-06 20:06:12 +00002549
Jordan Roseeec15392012-07-02 19:27:43 +00002550 void checkSummary(const RetainSummary &Summ, const CallEvent &Call,
Jordy Rosed188d662011-08-28 05:16:28 +00002551 CheckerContext &C) const;
Jordy Rose5b31d7a2011-08-22 23:48:23 +00002552
Anna Zaks25612732012-08-29 23:23:43 +00002553 void processSummaryOfInlined(const RetainSummary &Summ,
2554 const CallEvent &Call,
2555 CheckerContext &C) const;
2556
Jordy Rose898a1482011-08-21 21:58:18 +00002557 bool evalCall(const CallExpr *CE, CheckerContext &C) const;
2558
Ted Kremenek49b1e382012-01-26 21:29:00 +00002559 ProgramStateRef evalAssume(ProgramStateRef state, SVal Cond,
Jordy Rose5c252ef2011-08-20 21:16:58 +00002560 bool Assumption) const;
Jordy Rose217eb902011-08-17 21:27:39 +00002561
Ted Kremenek49b1e382012-01-26 21:29:00 +00002562 ProgramStateRef
2563 checkRegionChanges(ProgramStateRef state,
Anna Zaksdc154152012-12-20 00:38:25 +00002564 const InvalidatedSymbols *invalidated,
Jordy Rose1fad6632011-08-27 22:51:26 +00002565 ArrayRef<const MemRegion *> ExplicitRegions,
Anna Zaks3d348342012-02-14 21:55:24 +00002566 ArrayRef<const MemRegion *> Regions,
Jordan Rose742920c2012-07-02 19:27:35 +00002567 const CallEvent *Call) const;
Jordy Rose5c252ef2011-08-20 21:16:58 +00002568
Ted Kremenek49b1e382012-01-26 21:29:00 +00002569 bool wantsRegionChangeUpdate(ProgramStateRef state) const {
Jordy Rosea8f99ba2011-08-20 21:17:59 +00002570 return true;
Jordy Rose5c252ef2011-08-20 21:16:58 +00002571 }
Jordy Rose5b31d7a2011-08-22 23:48:23 +00002572
Jordy Rose298cc4d2011-08-23 19:43:16 +00002573 void checkPreStmt(const ReturnStmt *S, CheckerContext &C) const;
2574 void checkReturnWithRetEffect(const ReturnStmt *S, CheckerContext &C,
2575 ExplodedNode *Pred, RetEffect RE, RefVal X,
Ted Kremenek49b1e382012-01-26 21:29:00 +00002576 SymbolRef Sym, ProgramStateRef state) const;
Jordy Rose298cc4d2011-08-23 19:43:16 +00002577
Jordy Rose78612762011-08-23 19:01:07 +00002578 void checkDeadSymbols(SymbolReaper &SymReaper, CheckerContext &C) const;
Anna Zaks3fdcc0b2013-01-03 00:25:29 +00002579 void checkEndFunction(CheckerContext &C) const;
Jordy Rose78612762011-08-23 19:01:07 +00002580
Ted Kremenek49b1e382012-01-26 21:29:00 +00002581 ProgramStateRef updateSymbol(ProgramStateRef state, SymbolRef sym,
Anna Zaks25612732012-08-29 23:23:43 +00002582 RefVal V, ArgEffect E, RefVal::Kind &hasErr,
2583 CheckerContext &C) const;
Jordy Rosebf77e512011-08-23 20:27:16 +00002584
Ted Kremenek49b1e382012-01-26 21:29:00 +00002585 void processNonLeakError(ProgramStateRef St, SourceRange ErrorRange,
Jordy Rose5b31d7a2011-08-22 23:48:23 +00002586 RefVal::Kind ErrorKind, SymbolRef Sym,
2587 CheckerContext &C) const;
Ted Kremenek415287d2012-03-06 20:06:12 +00002588
2589 void processObjCLiterals(CheckerContext &C, const Expr *Ex) const;
Jordy Rose5b31d7a2011-08-22 23:48:23 +00002590
Jordy Rose78612762011-08-23 19:01:07 +00002591 const ProgramPointTag *getDeadSymbolTag(SymbolRef sym) const;
2592
Ted Kremenek49b1e382012-01-26 21:29:00 +00002593 ProgramStateRef handleSymbolDeath(ProgramStateRef state,
Anna Zaksf5788c72012-08-14 00:36:15 +00002594 SymbolRef sid, RefVal V,
2595 SmallVectorImpl<SymbolRef> &Leaked) const;
Jordy Rose78612762011-08-23 19:01:07 +00002596
Jordan Roseff03c1d2012-12-06 18:58:18 +00002597 ProgramStateRef
Jordan Rose9f61f8a2012-08-18 00:30:16 +00002598 handleAutoreleaseCounts(ProgramStateRef state, ExplodedNode *Pred,
2599 const ProgramPointTag *Tag, CheckerContext &Ctx,
2600 SymbolRef Sym, RefVal V) const;
Jordy Rose6763e382011-08-23 20:07:14 +00002601
Ted Kremenek49b1e382012-01-26 21:29:00 +00002602 ExplodedNode *processLeaks(ProgramStateRef state,
Jordy Rose78612762011-08-23 19:01:07 +00002603 SmallVectorImpl<SymbolRef> &Leaked,
Anna Zaks58734db2011-10-25 19:57:11 +00002604 CheckerContext &Ctx,
Craig Topper0dbb7832014-05-27 02:45:47 +00002605 ExplodedNode *Pred = nullptr) const;
Ted Kremenek70a87882009-11-25 22:17:44 +00002606};
2607} // end anonymous namespace
2608
Jordy Rose217eb902011-08-17 21:27:39 +00002609namespace {
2610class StopTrackingCallback : public SymbolVisitor {
Ted Kremenek49b1e382012-01-26 21:29:00 +00002611 ProgramStateRef state;
Jordy Rose217eb902011-08-17 21:27:39 +00002612public:
Ted Kremenek49b1e382012-01-26 21:29:00 +00002613 StopTrackingCallback(ProgramStateRef st) : state(st) {}
2614 ProgramStateRef getState() const { return state; }
Jordy Rose217eb902011-08-17 21:27:39 +00002615
Craig Topperfb6b25b2014-03-15 04:29:04 +00002616 bool VisitSymbol(SymbolRef sym) override {
Jordy Rose217eb902011-08-17 21:27:39 +00002617 state = state->remove<RefBindings>(sym);
2618 return true;
2619 }
2620};
2621} // end anonymous namespace
2622
Jordy Rose75e680e2011-09-02 06:44:22 +00002623//===----------------------------------------------------------------------===//
2624// Handle statements that may have an effect on refcounts.
2625//===----------------------------------------------------------------------===//
Jordy Rose217eb902011-08-17 21:27:39 +00002626
Jordy Rose75e680e2011-09-02 06:44:22 +00002627void RetainCountChecker::checkPostStmt(const BlockExpr *BE,
2628 CheckerContext &C) const {
Jordy Rose217eb902011-08-17 21:27:39 +00002629
Jordy Rose75e680e2011-09-02 06:44:22 +00002630 // Scan the BlockDecRefExprs for any object the retain count checker
Ted Kremenekbd862712010-07-01 20:16:50 +00002631 // may be tracking.
John McCallc63de662011-02-02 13:00:07 +00002632 if (!BE->getBlockDecl()->hasCaptures())
Ted Kremenekf89dcda2009-11-26 02:38:19 +00002633 return;
Ted Kremenekbd862712010-07-01 20:16:50 +00002634
Ted Kremenek49b1e382012-01-26 21:29:00 +00002635 ProgramStateRef state = C.getState();
Ted Kremenekf89dcda2009-11-26 02:38:19 +00002636 const BlockDataRegion *R =
Ted Kremenek632e3b72012-01-06 22:09:28 +00002637 cast<BlockDataRegion>(state->getSVal(BE,
2638 C.getLocationContext()).getAsRegion());
Ted Kremenekbd862712010-07-01 20:16:50 +00002639
Ted Kremenekf89dcda2009-11-26 02:38:19 +00002640 BlockDataRegion::referenced_vars_iterator I = R->referenced_vars_begin(),
2641 E = R->referenced_vars_end();
Ted Kremenekbd862712010-07-01 20:16:50 +00002642
Ted Kremenekf89dcda2009-11-26 02:38:19 +00002643 if (I == E)
2644 return;
Ted Kremenekbd862712010-07-01 20:16:50 +00002645
Ted Kremenek04af9f22009-12-07 22:05:27 +00002646 // FIXME: For now we invalidate the tracking of all symbols passed to blocks
2647 // via captured variables, even though captured variables result in a copy
2648 // and in implicit increment/decrement of a retain count.
Chris Lattner0e62c1c2011-07-23 10:55:15 +00002649 SmallVector<const MemRegion*, 10> Regions;
Anna Zaksc9abbe22011-10-26 21:06:44 +00002650 const LocationContext *LC = C.getLocationContext();
Ted Kremenek90af9092010-12-02 07:49:45 +00002651 MemRegionManager &MemMgr = C.getSValBuilder().getRegionManager();
Ted Kremenekbd862712010-07-01 20:16:50 +00002652
Ted Kremenek04af9f22009-12-07 22:05:27 +00002653 for ( ; I != E; ++I) {
Ted Kremenekbcf90532012-12-06 07:17:20 +00002654 const VarRegion *VR = I.getCapturedRegion();
Ted Kremenek04af9f22009-12-07 22:05:27 +00002655 if (VR->getSuperRegion() == R) {
2656 VR = MemMgr.getVarRegion(VR->getDecl(), LC);
2657 }
2658 Regions.push_back(VR);
2659 }
Ted Kremenekbd862712010-07-01 20:16:50 +00002660
Ted Kremenek04af9f22009-12-07 22:05:27 +00002661 state =
2662 state->scanReachableSymbols<StopTrackingCallback>(Regions.data(),
2663 Regions.data() + Regions.size()).getState();
Anna Zaksda4c8d62011-10-26 21:06:34 +00002664 C.addTransition(state);
Ted Kremenekf89dcda2009-11-26 02:38:19 +00002665}
2666
Jordy Rose75e680e2011-09-02 06:44:22 +00002667void RetainCountChecker::checkPostStmt(const CastExpr *CE,
2668 CheckerContext &C) const {
John McCall31168b02011-06-15 23:02:42 +00002669 const ObjCBridgedCastExpr *BE = dyn_cast<ObjCBridgedCastExpr>(CE);
2670 if (!BE)
2671 return;
2672
John McCall640767f2011-06-17 06:50:50 +00002673 ArgEffect AE = IncRef;
John McCall31168b02011-06-15 23:02:42 +00002674
2675 switch (BE->getBridgeKind()) {
2676 case clang::OBC_Bridge:
2677 // Do nothing.
2678 return;
2679 case clang::OBC_BridgeRetained:
2680 AE = IncRef;
2681 break;
2682 case clang::OBC_BridgeTransfer:
Benjamin Kramer1d5d6342013-10-20 11:53:20 +00002683 AE = DecRefBridgedTransferred;
John McCall31168b02011-06-15 23:02:42 +00002684 break;
2685 }
2686
Ted Kremenek49b1e382012-01-26 21:29:00 +00002687 ProgramStateRef state = C.getState();
Ted Kremenek632e3b72012-01-06 22:09:28 +00002688 SymbolRef Sym = state->getSVal(CE, C.getLocationContext()).getAsLocSymbol();
John McCall31168b02011-06-15 23:02:42 +00002689 if (!Sym)
2690 return;
Anna Zaksf5788c72012-08-14 00:36:15 +00002691 const RefVal* T = getRefBinding(state, Sym);
John McCall31168b02011-06-15 23:02:42 +00002692 if (!T)
2693 return;
2694
John McCall31168b02011-06-15 23:02:42 +00002695 RefVal::Kind hasErr = (RefVal::Kind) 0;
Jordy Rosec49ec532011-09-02 05:55:19 +00002696 state = updateSymbol(state, Sym, *T, AE, hasErr, C);
John McCall31168b02011-06-15 23:02:42 +00002697
2698 if (hasErr) {
Jordy Rosebf77e512011-08-23 20:27:16 +00002699 // FIXME: If we get an error during a bridge cast, should we report it?
2700 // Should we assert that there is no error?
John McCall31168b02011-06-15 23:02:42 +00002701 return;
2702 }
2703
Anna Zaksda4c8d62011-10-26 21:06:34 +00002704 C.addTransition(state);
John McCall31168b02011-06-15 23:02:42 +00002705}
2706
Ted Kremenek415287d2012-03-06 20:06:12 +00002707void RetainCountChecker::processObjCLiterals(CheckerContext &C,
2708 const Expr *Ex) const {
2709 ProgramStateRef state = C.getState();
2710 const ExplodedNode *pred = C.getPredecessor();
2711 for (Stmt::const_child_iterator it = Ex->child_begin(), et = Ex->child_end() ;
2712 it != et ; ++it) {
2713 const Stmt *child = *it;
2714 SVal V = state->getSVal(child, pred->getLocationContext());
2715 if (SymbolRef sym = V.getAsSymbol())
Anna Zaksf5788c72012-08-14 00:36:15 +00002716 if (const RefVal* T = getRefBinding(state, sym)) {
Ted Kremenek415287d2012-03-06 20:06:12 +00002717 RefVal::Kind hasErr = (RefVal::Kind) 0;
2718 state = updateSymbol(state, sym, *T, MayEscape, hasErr, C);
2719 if (hasErr) {
2720 processNonLeakError(state, child->getSourceRange(), hasErr, sym, C);
2721 return;
2722 }
2723 }
2724 }
2725
2726 // Return the object as autoreleased.
2727 // RetEffect RE = RetEffect::MakeNotOwned(RetEffect::ObjC);
2728 if (SymbolRef sym =
2729 state->getSVal(Ex, pred->getLocationContext()).getAsSymbol()) {
2730 QualType ResultTy = Ex->getType();
Anna Zaksf5788c72012-08-14 00:36:15 +00002731 state = setRefBinding(state, sym,
2732 RefVal::makeNotOwned(RetEffect::ObjC, ResultTy));
Ted Kremenek415287d2012-03-06 20:06:12 +00002733 }
2734
2735 C.addTransition(state);
2736}
2737
2738void RetainCountChecker::checkPostStmt(const ObjCArrayLiteral *AL,
2739 CheckerContext &C) const {
2740 // Apply the 'MayEscape' to all values.
2741 processObjCLiterals(C, AL);
2742}
2743
2744void RetainCountChecker::checkPostStmt(const ObjCDictionaryLiteral *DL,
2745 CheckerContext &C) const {
2746 // Apply the 'MayEscape' to all keys and values.
2747 processObjCLiterals(C, DL);
2748}
2749
Jordy Rose6393f822012-05-12 05:10:43 +00002750void RetainCountChecker::checkPostStmt(const ObjCBoxedExpr *Ex,
2751 CheckerContext &C) const {
2752 const ExplodedNode *Pred = C.getPredecessor();
2753 const LocationContext *LCtx = Pred->getLocationContext();
2754 ProgramStateRef State = Pred->getState();
2755
2756 if (SymbolRef Sym = State->getSVal(Ex, LCtx).getAsSymbol()) {
2757 QualType ResultTy = Ex->getType();
Anna Zaksf5788c72012-08-14 00:36:15 +00002758 State = setRefBinding(State, Sym,
2759 RefVal::makeNotOwned(RetEffect::ObjC, ResultTy));
Jordy Rose6393f822012-05-12 05:10:43 +00002760 }
2761
2762 C.addTransition(State);
2763}
2764
Jordan Roseb3ad07e2014-03-25 17:10:58 +00002765void RetainCountChecker::checkPostStmt(const ObjCIvarRefExpr *IRE,
2766 CheckerContext &C) const {
2767 ProgramStateRef State = C.getState();
2768 // If an instance variable was previously accessed through a property,
2769 // it may have a synthesized refcount of +0. Override right now that we're
2770 // doing direct access.
2771 if (Optional<Loc> IVarLoc = C.getSVal(IRE).getAs<Loc>())
2772 if (SymbolRef Sym = State->getSVal(*IVarLoc).getAsSymbol())
2773 if (const RefVal *RV = getRefBinding(State, Sym))
2774 if (RV->isOverridable())
2775 State = removeRefBinding(State, Sym);
2776 C.addTransition(State);
2777}
2778
Jordan Rose682b3162012-07-02 19:28:21 +00002779void RetainCountChecker::checkPostCall(const CallEvent &Call,
2780 CheckerContext &C) const {
Jordan Rose682b3162012-07-02 19:28:21 +00002781 RetainSummaryManager &Summaries = getSummaryManager(C);
2782 const RetainSummary *Summ = Summaries.getSummary(Call, C.getState());
Anna Zaks25612732012-08-29 23:23:43 +00002783
2784 if (C.wasInlined) {
2785 processSummaryOfInlined(*Summ, Call, C);
2786 return;
2787 }
Jordan Rose682b3162012-07-02 19:28:21 +00002788 checkSummary(*Summ, Call, C);
Jordy Rose5b31d7a2011-08-22 23:48:23 +00002789}
2790
Jordy Rose75e680e2011-09-02 06:44:22 +00002791/// GetReturnType - Used to get the return type of a message expression or
2792/// function call with the intention of affixing that type to a tracked symbol.
Sylvestre Ledru830885c2012-07-23 08:59:39 +00002793/// While the return type can be queried directly from RetEx, when
Jordy Rose75e680e2011-09-02 06:44:22 +00002794/// invoking class methods we augment to the return type to be that of
2795/// a pointer to the class (as opposed it just being id).
2796// FIXME: We may be able to do this with related result types instead.
2797// This function is probably overestimating.
2798static QualType GetReturnType(const Expr *RetE, ASTContext &Ctx) {
2799 QualType RetTy = RetE->getType();
2800 // If RetE is not a message expression just return its type.
2801 // If RetE is a message expression, return its types if it is something
2802 /// more specific than id.
2803 if (const ObjCMessageExpr *ME = dyn_cast<ObjCMessageExpr>(RetE))
2804 if (const ObjCObjectPointerType *PT = RetTy->getAs<ObjCObjectPointerType>())
2805 if (PT->isObjCQualifiedIdType() || PT->isObjCIdType() ||
2806 PT->isObjCClassType()) {
2807 // At this point we know the return type of the message expression is
2808 // id, id<...>, or Class. If we have an ObjCInterfaceDecl, we know this
2809 // is a call to a class method whose type we can resolve. In such
2810 // cases, promote the return type to XXX* (where XXX is the class).
2811 const ObjCInterfaceDecl *D = ME->getReceiverInterface();
2812 return !D ? RetTy :
2813 Ctx.getObjCObjectPointerType(Ctx.getObjCInterfaceType(D));
2814 }
2815
2816 return RetTy;
2817}
2818
Jordan Rose1a866cd2014-01-10 20:06:06 +00002819static bool wasSynthesizedProperty(const ObjCMethodCall *Call,
2820 ExplodedNode *N) {
2821 if (!Call || !Call->getDecl()->isPropertyAccessor())
2822 return false;
2823
2824 CallExitEnd PP = N->getLocation().castAs<CallExitEnd>();
2825 const StackFrameContext *Frame = PP.getCalleeContext();
2826 return Frame->getAnalysisDeclContext()->isBodyAutosynthesized();
2827}
2828
Anna Zaks25612732012-08-29 23:23:43 +00002829// We don't always get the exact modeling of the function with regards to the
2830// retain count checker even when the function is inlined. For example, we need
2831// to stop tracking the symbols which were marked with StopTrackingHard.
2832void RetainCountChecker::processSummaryOfInlined(const RetainSummary &Summ,
2833 const CallEvent &CallOrMsg,
2834 CheckerContext &C) const {
2835 ProgramStateRef state = C.getState();
2836
2837 // Evaluate the effect of the arguments.
2838 for (unsigned idx = 0, e = CallOrMsg.getNumArgs(); idx != e; ++idx) {
2839 if (Summ.getArg(idx) == StopTrackingHard) {
2840 SVal V = CallOrMsg.getArgSVal(idx);
2841 if (SymbolRef Sym = V.getAsLocSymbol()) {
2842 state = removeRefBinding(state, Sym);
2843 }
2844 }
2845 }
2846
2847 // Evaluate the effect on the message receiver.
2848 const ObjCMethodCall *MsgInvocation = dyn_cast<ObjCMethodCall>(&CallOrMsg);
2849 if (MsgInvocation) {
2850 if (SymbolRef Sym = MsgInvocation->getReceiverSVal().getAsLocSymbol()) {
2851 if (Summ.getReceiverEffect() == StopTrackingHard) {
2852 state = removeRefBinding(state, Sym);
2853 }
2854 }
2855 }
2856
2857 // Consult the summary for the return value.
2858 RetEffect RE = Summ.getRetEffect();
2859 if (RE.getKind() == RetEffect::NoRetHard) {
Jordan Rose829c3832012-11-02 23:49:29 +00002860 SymbolRef Sym = CallOrMsg.getReturnValue().getAsSymbol();
Anna Zaks25612732012-08-29 23:23:43 +00002861 if (Sym)
2862 state = removeRefBinding(state, Sym);
Jordan Rose1a866cd2014-01-10 20:06:06 +00002863 } else if (RE.getKind() == RetEffect::NotOwnedSymbol) {
2864 if (wasSynthesizedProperty(MsgInvocation, C.getPredecessor())) {
Jordan Roseb3ad07e2014-03-25 17:10:58 +00002865 // Believe the summary if we synthesized the body of a property getter
2866 // and the return value is currently untracked. If the corresponding
2867 // instance variable is later accessed directly, however, we're going to
2868 // want to override this state, so that the owning object can perform
2869 // reference counting operations on its own ivars.
Jordan Rose1a866cd2014-01-10 20:06:06 +00002870 SymbolRef Sym = CallOrMsg.getReturnValue().getAsSymbol();
2871 if (Sym && !getRefBinding(state, Sym))
Jordan Roseb3ad07e2014-03-25 17:10:58 +00002872 state = setRefBinding(state, Sym,
2873 RefVal::makeOverridableNotOwned(RE.getObjKind(),
2874 Sym->getType()));
Jordan Rose1a866cd2014-01-10 20:06:06 +00002875 }
Anna Zaks25612732012-08-29 23:23:43 +00002876 }
2877
2878 C.addTransition(state);
2879}
2880
Jordy Rose75e680e2011-09-02 06:44:22 +00002881void RetainCountChecker::checkSummary(const RetainSummary &Summ,
Jordan Roseeec15392012-07-02 19:27:43 +00002882 const CallEvent &CallOrMsg,
Jordy Rose75e680e2011-09-02 06:44:22 +00002883 CheckerContext &C) const {
Ted Kremenek49b1e382012-01-26 21:29:00 +00002884 ProgramStateRef state = C.getState();
Jordy Rose5b31d7a2011-08-22 23:48:23 +00002885
2886 // Evaluate the effect of the arguments.
2887 RefVal::Kind hasErr = (RefVal::Kind) 0;
2888 SourceRange ErrorRange;
Craig Topper0dbb7832014-05-27 02:45:47 +00002889 SymbolRef ErrorSym = nullptr;
Jordy Rose5b31d7a2011-08-22 23:48:23 +00002890
2891 for (unsigned idx = 0, e = CallOrMsg.getNumArgs(); idx != e; ++idx) {
Jordy Rose1fad6632011-08-27 22:51:26 +00002892 SVal V = CallOrMsg.getArgSVal(idx);
Jordy Rose5b31d7a2011-08-22 23:48:23 +00002893
2894 if (SymbolRef Sym = V.getAsLocSymbol()) {
Anna Zaksf5788c72012-08-14 00:36:15 +00002895 if (const RefVal *T = getRefBinding(state, Sym)) {
Jordy Rosec49ec532011-09-02 05:55:19 +00002896 state = updateSymbol(state, Sym, *T, Summ.getArg(idx), hasErr, C);
Jordy Rose5b31d7a2011-08-22 23:48:23 +00002897 if (hasErr) {
2898 ErrorRange = CallOrMsg.getArgSourceRange(idx);
2899 ErrorSym = Sym;
2900 break;
2901 }
2902 }
2903 }
2904 }
2905
2906 // Evaluate the effect on the message receiver.
2907 bool ReceiverIsTracked = false;
Jordan Roseeec15392012-07-02 19:27:43 +00002908 if (!hasErr) {
Jordan Rose6bad4902012-07-02 19:27:56 +00002909 const ObjCMethodCall *MsgInvocation = dyn_cast<ObjCMethodCall>(&CallOrMsg);
Jordan Roseeec15392012-07-02 19:27:43 +00002910 if (MsgInvocation) {
2911 if (SymbolRef Sym = MsgInvocation->getReceiverSVal().getAsLocSymbol()) {
Anna Zaksf5788c72012-08-14 00:36:15 +00002912 if (const RefVal *T = getRefBinding(state, Sym)) {
Jordan Roseeec15392012-07-02 19:27:43 +00002913 ReceiverIsTracked = true;
2914 state = updateSymbol(state, Sym, *T, Summ.getReceiverEffect(),
Anna Zaks25612732012-08-29 23:23:43 +00002915 hasErr, C);
Jordan Roseeec15392012-07-02 19:27:43 +00002916 if (hasErr) {
Jordan Rose627b0462012-07-18 21:59:51 +00002917 ErrorRange = MsgInvocation->getOriginExpr()->getReceiverRange();
Jordan Roseeec15392012-07-02 19:27:43 +00002918 ErrorSym = Sym;
2919 }
Jordy Rose5b31d7a2011-08-22 23:48:23 +00002920 }
2921 }
2922 }
2923 }
2924
2925 // Process any errors.
2926 if (hasErr) {
2927 processNonLeakError(state, ErrorRange, hasErr, ErrorSym, C);
2928 return;
2929 }
2930
2931 // Consult the summary for the return value.
2932 RetEffect RE = Summ.getRetEffect();
2933
2934 if (RE.getKind() == RetEffect::OwnedWhenTrackedReceiver) {
Jordy Rose8b289a22011-08-25 00:10:37 +00002935 if (ReceiverIsTracked)
Jordy Rosec49ec532011-09-02 05:55:19 +00002936 RE = getSummaryManager(C).getObjAllocRetEffect();
Jordy Rose8b289a22011-08-25 00:10:37 +00002937 else
Jordy Rose5b31d7a2011-08-22 23:48:23 +00002938 RE = RetEffect::MakeNoRet();
2939 }
2940
2941 switch (RE.getKind()) {
2942 default:
David Blaikie8a40f702012-01-17 06:56:22 +00002943 llvm_unreachable("Unhandled RetEffect.");
Jordy Rose5b31d7a2011-08-22 23:48:23 +00002944
2945 case RetEffect::NoRet:
Anna Zaks25612732012-08-29 23:23:43 +00002946 case RetEffect::NoRetHard:
Jordy Rose5b31d7a2011-08-22 23:48:23 +00002947 // No work necessary.
2948 break;
2949
2950 case RetEffect::OwnedAllocatedSymbol:
2951 case RetEffect::OwnedSymbol: {
Jordan Rose829c3832012-11-02 23:49:29 +00002952 SymbolRef Sym = CallOrMsg.getReturnValue().getAsSymbol();
Jordy Rose5b31d7a2011-08-22 23:48:23 +00002953 if (!Sym)
2954 break;
2955
Jordan Roseeec15392012-07-02 19:27:43 +00002956 // Use the result type from the CallEvent as it automatically adjusts
Jordy Rose5b31d7a2011-08-22 23:48:23 +00002957 // for methods/functions that return references.
Jordan Roseeec15392012-07-02 19:27:43 +00002958 QualType ResultTy = CallOrMsg.getResultType();
Anna Zaksf5788c72012-08-14 00:36:15 +00002959 state = setRefBinding(state, Sym, RefVal::makeOwned(RE.getObjKind(),
2960 ResultTy));
Jordy Rose5b31d7a2011-08-22 23:48:23 +00002961
2962 // FIXME: Add a flag to the checker where allocations are assumed to
Anna Zaks21487f72012-08-14 15:39:13 +00002963 // *not* fail.
Jordy Rose5b31d7a2011-08-22 23:48:23 +00002964 break;
2965 }
2966
2967 case RetEffect::GCNotOwnedSymbol:
Jordy Rose5b31d7a2011-08-22 23:48:23 +00002968 case RetEffect::NotOwnedSymbol: {
2969 const Expr *Ex = CallOrMsg.getOriginExpr();
Jordan Rose829c3832012-11-02 23:49:29 +00002970 SymbolRef Sym = CallOrMsg.getReturnValue().getAsSymbol();
Jordy Rose5b31d7a2011-08-22 23:48:23 +00002971 if (!Sym)
2972 break;
Ted Kremenekbe400842012-10-12 22:56:45 +00002973 assert(Ex);
Jordy Rose5b31d7a2011-08-22 23:48:23 +00002974 // Use GetReturnType in order to give [NSFoo alloc] the type NSFoo *.
2975 QualType ResultTy = GetReturnType(Ex, C.getASTContext());
Anna Zaksf5788c72012-08-14 00:36:15 +00002976 state = setRefBinding(state, Sym, RefVal::makeNotOwned(RE.getObjKind(),
2977 ResultTy));
Jordy Rose5b31d7a2011-08-22 23:48:23 +00002978 break;
2979 }
2980 }
2981
2982 // This check is actually necessary; otherwise the statement builder thinks
2983 // we've hit a previously-found path.
2984 // Normally addTransition takes care of this, but we want the node pointer.
2985 ExplodedNode *NewNode;
2986 if (state == C.getState()) {
2987 NewNode = C.getPredecessor();
2988 } else {
Anna Zaksda4c8d62011-10-26 21:06:34 +00002989 NewNode = C.addTransition(state);
Jordy Rose5b31d7a2011-08-22 23:48:23 +00002990 }
2991
Jordy Rose5df640d2011-08-24 18:56:32 +00002992 // Annotate the node with summary we used.
2993 if (NewNode) {
2994 // FIXME: This is ugly. See checkEndAnalysis for why it's necessary.
2995 if (ShouldResetSummaryLog) {
2996 SummaryLog.clear();
2997 ShouldResetSummaryLog = false;
2998 }
Jordy Rose20d4e682011-08-23 20:55:48 +00002999 SummaryLog[NewNode] = &Summ;
Jordy Rose5df640d2011-08-24 18:56:32 +00003000 }
Jordy Rose5b31d7a2011-08-22 23:48:23 +00003001}
3002
Jordy Rosebf77e512011-08-23 20:27:16 +00003003
Ted Kremenek49b1e382012-01-26 21:29:00 +00003004ProgramStateRef
3005RetainCountChecker::updateSymbol(ProgramStateRef state, SymbolRef sym,
Jordy Rose75e680e2011-09-02 06:44:22 +00003006 RefVal V, ArgEffect E, RefVal::Kind &hasErr,
3007 CheckerContext &C) const {
Jordy Rosebf77e512011-08-23 20:27:16 +00003008 // In GC mode [... release] and [... retain] do nothing.
Jordy Rose75e680e2011-09-02 06:44:22 +00003009 // In ARC mode they shouldn't exist at all, but we just ignore them.
Jordy Rosec49ec532011-09-02 05:55:19 +00003010 bool IgnoreRetainMsg = C.isObjCGCEnabled();
3011 if (!IgnoreRetainMsg)
David Blaikiebbafb8a2012-03-11 07:00:24 +00003012 IgnoreRetainMsg = (bool)C.getASTContext().getLangOpts().ObjCAutoRefCount;
Jordy Rosec49ec532011-09-02 05:55:19 +00003013
Jordy Rosebf77e512011-08-23 20:27:16 +00003014 switch (E) {
Jordan Roseeec15392012-07-02 19:27:43 +00003015 default:
3016 break;
3017 case IncRefMsg:
3018 E = IgnoreRetainMsg ? DoNothing : IncRef;
3019 break;
3020 case DecRefMsg:
3021 E = IgnoreRetainMsg ? DoNothing : DecRef;
3022 break;
Anna Zaks25612732012-08-29 23:23:43 +00003023 case DecRefMsgAndStopTrackingHard:
3024 E = IgnoreRetainMsg ? StopTracking : DecRefAndStopTrackingHard;
Jordan Roseeec15392012-07-02 19:27:43 +00003025 break;
3026 case MakeCollectable:
3027 E = C.isObjCGCEnabled() ? DecRef : DoNothing;
3028 break;
Jordy Rosebf77e512011-08-23 20:27:16 +00003029 }
3030
3031 // Handle all use-after-releases.
Jordy Rosec49ec532011-09-02 05:55:19 +00003032 if (!C.isObjCGCEnabled() && V.getKind() == RefVal::Released) {
Jordy Rosebf77e512011-08-23 20:27:16 +00003033 V = V ^ RefVal::ErrorUseAfterRelease;
3034 hasErr = V.getKind();
Anna Zaksf5788c72012-08-14 00:36:15 +00003035 return setRefBinding(state, sym, V);
Jordy Rosebf77e512011-08-23 20:27:16 +00003036 }
3037
3038 switch (E) {
3039 case DecRefMsg:
3040 case IncRefMsg:
3041 case MakeCollectable:
Anna Zaks25612732012-08-29 23:23:43 +00003042 case DecRefMsgAndStopTrackingHard:
Jordy Rosebf77e512011-08-23 20:27:16 +00003043 llvm_unreachable("DecRefMsg/IncRefMsg/MakeCollectable already converted");
Jordy Rosebf77e512011-08-23 20:27:16 +00003044
3045 case Dealloc:
3046 // Any use of -dealloc in GC is *bad*.
Jordy Rosec49ec532011-09-02 05:55:19 +00003047 if (C.isObjCGCEnabled()) {
Jordy Rosebf77e512011-08-23 20:27:16 +00003048 V = V ^ RefVal::ErrorDeallocGC;
3049 hasErr = V.getKind();
3050 break;
3051 }
3052
3053 switch (V.getKind()) {
3054 default:
3055 llvm_unreachable("Invalid RefVal state for an explicit dealloc.");
Jordy Rosebf77e512011-08-23 20:27:16 +00003056 case RefVal::Owned:
3057 // The object immediately transitions to the released state.
3058 V = V ^ RefVal::Released;
3059 V.clearCounts();
Anna Zaksf5788c72012-08-14 00:36:15 +00003060 return setRefBinding(state, sym, V);
Jordy Rosebf77e512011-08-23 20:27:16 +00003061 case RefVal::NotOwned:
3062 V = V ^ RefVal::ErrorDeallocNotOwned;
3063 hasErr = V.getKind();
3064 break;
3065 }
3066 break;
3067
Jordy Rosebf77e512011-08-23 20:27:16 +00003068 case MayEscape:
3069 if (V.getKind() == RefVal::Owned) {
3070 V = V ^ RefVal::NotOwned;
3071 break;
3072 }
3073
3074 // Fall-through.
3075
Jordy Rosebf77e512011-08-23 20:27:16 +00003076 case DoNothing:
3077 return state;
3078
3079 case Autorelease:
Jordy Rosec49ec532011-09-02 05:55:19 +00003080 if (C.isObjCGCEnabled())
Jordy Rosebf77e512011-08-23 20:27:16 +00003081 return state;
Jordy Rosebf77e512011-08-23 20:27:16 +00003082 // Update the autorelease counts.
Jordy Rosebf77e512011-08-23 20:27:16 +00003083 V = V.autorelease();
3084 break;
3085
3086 case StopTracking:
Anna Zaks25612732012-08-29 23:23:43 +00003087 case StopTrackingHard:
Anna Zaksf5788c72012-08-14 00:36:15 +00003088 return removeRefBinding(state, sym);
Jordy Rosebf77e512011-08-23 20:27:16 +00003089
3090 case IncRef:
3091 switch (V.getKind()) {
3092 default:
3093 llvm_unreachable("Invalid RefVal state for a retain.");
Jordy Rosebf77e512011-08-23 20:27:16 +00003094 case RefVal::Owned:
3095 case RefVal::NotOwned:
3096 V = V + 1;
3097 break;
3098 case RefVal::Released:
3099 // Non-GC cases are handled above.
Jordy Rosec49ec532011-09-02 05:55:19 +00003100 assert(C.isObjCGCEnabled());
Jordy Rosebf77e512011-08-23 20:27:16 +00003101 V = (V ^ RefVal::Owned) + 1;
3102 break;
3103 }
3104 break;
3105
Jordy Rosebf77e512011-08-23 20:27:16 +00003106 case DecRef:
Benjamin Kramer1d5d6342013-10-20 11:53:20 +00003107 case DecRefBridgedTransferred:
Anna Zaks25612732012-08-29 23:23:43 +00003108 case DecRefAndStopTrackingHard:
Jordy Rosebf77e512011-08-23 20:27:16 +00003109 switch (V.getKind()) {
3110 default:
3111 // case 'RefVal::Released' handled above.
3112 llvm_unreachable("Invalid RefVal state for a release.");
Jordy Rosebf77e512011-08-23 20:27:16 +00003113
3114 case RefVal::Owned:
3115 assert(V.getCount() > 0);
3116 if (V.getCount() == 1)
Benjamin Kramer1d5d6342013-10-20 11:53:20 +00003117 V = V ^ (E == DecRefBridgedTransferred ? RefVal::NotOwned
3118 : RefVal::Released);
Anna Zaks25612732012-08-29 23:23:43 +00003119 else if (E == DecRefAndStopTrackingHard)
Anna Zaksf5788c72012-08-14 00:36:15 +00003120 return removeRefBinding(state, sym);
Jordan Roseeec15392012-07-02 19:27:43 +00003121
Jordy Rosebf77e512011-08-23 20:27:16 +00003122 V = V - 1;
3123 break;
3124
3125 case RefVal::NotOwned:
Jordan Roseeec15392012-07-02 19:27:43 +00003126 if (V.getCount() > 0) {
Anna Zaks25612732012-08-29 23:23:43 +00003127 if (E == DecRefAndStopTrackingHard)
Anna Zaksf5788c72012-08-14 00:36:15 +00003128 return removeRefBinding(state, sym);
Jordy Rosebf77e512011-08-23 20:27:16 +00003129 V = V - 1;
Jordan Roseeec15392012-07-02 19:27:43 +00003130 } else {
Jordy Rosebf77e512011-08-23 20:27:16 +00003131 V = V ^ RefVal::ErrorReleaseNotOwned;
3132 hasErr = V.getKind();
3133 }
3134 break;
3135
3136 case RefVal::Released:
3137 // Non-GC cases are handled above.
Jordy Rosec49ec532011-09-02 05:55:19 +00003138 assert(C.isObjCGCEnabled());
Jordy Rosebf77e512011-08-23 20:27:16 +00003139 V = V ^ RefVal::ErrorUseAfterRelease;
3140 hasErr = V.getKind();
3141 break;
3142 }
3143 break;
3144 }
Anna Zaksf5788c72012-08-14 00:36:15 +00003145 return setRefBinding(state, sym, V);
Jordy Rosebf77e512011-08-23 20:27:16 +00003146}
3147
Ted Kremenek49b1e382012-01-26 21:29:00 +00003148void RetainCountChecker::processNonLeakError(ProgramStateRef St,
Jordy Rose75e680e2011-09-02 06:44:22 +00003149 SourceRange ErrorRange,
3150 RefVal::Kind ErrorKind,
3151 SymbolRef Sym,
3152 CheckerContext &C) const {
Jordy Rose5b31d7a2011-08-22 23:48:23 +00003153 ExplodedNode *N = C.generateSink(St);
3154 if (!N)
3155 return;
3156
Jordy Rose5b31d7a2011-08-22 23:48:23 +00003157 CFRefBug *BT;
3158 switch (ErrorKind) {
3159 default:
3160 llvm_unreachable("Unhandled error.");
Jordy Rose5b31d7a2011-08-22 23:48:23 +00003161 case RefVal::ErrorUseAfterRelease:
Jordy Rose4ba0ba42011-08-25 00:34:03 +00003162 if (!useAfterRelease)
Alexander Kornienko4aca9b12014-02-11 21:49:21 +00003163 useAfterRelease.reset(new UseAfterRelease(this));
Jordy Rose4ba0ba42011-08-25 00:34:03 +00003164 BT = &*useAfterRelease;
Jordy Rose5b31d7a2011-08-22 23:48:23 +00003165 break;
3166 case RefVal::ErrorReleaseNotOwned:
Jordy Rose4ba0ba42011-08-25 00:34:03 +00003167 if (!releaseNotOwned)
Alexander Kornienko4aca9b12014-02-11 21:49:21 +00003168 releaseNotOwned.reset(new BadRelease(this));
Jordy Rose4ba0ba42011-08-25 00:34:03 +00003169 BT = &*releaseNotOwned;
Jordy Rose5b31d7a2011-08-22 23:48:23 +00003170 break;
3171 case RefVal::ErrorDeallocGC:
Jordy Rose4ba0ba42011-08-25 00:34:03 +00003172 if (!deallocGC)
Alexander Kornienko4aca9b12014-02-11 21:49:21 +00003173 deallocGC.reset(new DeallocGC(this));
Jordy Rose4ba0ba42011-08-25 00:34:03 +00003174 BT = &*deallocGC;
Jordy Rose5b31d7a2011-08-22 23:48:23 +00003175 break;
3176 case RefVal::ErrorDeallocNotOwned:
Jordy Rose4ba0ba42011-08-25 00:34:03 +00003177 if (!deallocNotOwned)
Alexander Kornienko4aca9b12014-02-11 21:49:21 +00003178 deallocNotOwned.reset(new DeallocNotOwned(this));
Jordy Rose4ba0ba42011-08-25 00:34:03 +00003179 BT = &*deallocNotOwned;
Jordy Rose5b31d7a2011-08-22 23:48:23 +00003180 break;
3181 }
3182
Jordy Rose4ba0ba42011-08-25 00:34:03 +00003183 assert(BT);
David Blaikiebbafb8a2012-03-11 07:00:24 +00003184 CFRefReport *report = new CFRefReport(*BT, C.getASTContext().getLangOpts(),
Jordy Rosec49ec532011-09-02 05:55:19 +00003185 C.isObjCGCEnabled(), SummaryLog,
3186 N, Sym);
Jordy Rose5b31d7a2011-08-22 23:48:23 +00003187 report->addRange(ErrorRange);
Jordan Rosee10d5a72012-11-02 01:53:40 +00003188 C.emitReport(report);
Jordy Rose5b31d7a2011-08-22 23:48:23 +00003189}
3190
Jordy Rose75e680e2011-09-02 06:44:22 +00003191//===----------------------------------------------------------------------===//
3192// Handle the return values of retain-count-related functions.
3193//===----------------------------------------------------------------------===//
3194
3195bool RetainCountChecker::evalCall(const CallExpr *CE, CheckerContext &C) const {
Jordy Rose898a1482011-08-21 21:58:18 +00003196 // Get the callee. We're only interested in simple C functions.
Ted Kremenek49b1e382012-01-26 21:29:00 +00003197 ProgramStateRef state = C.getState();
Anna Zaksc6aa5312011-12-01 05:57:37 +00003198 const FunctionDecl *FD = C.getCalleeDecl(CE);
Jordy Rose898a1482011-08-21 21:58:18 +00003199 if (!FD)
3200 return false;
3201
3202 IdentifierInfo *II = FD->getIdentifier();
3203 if (!II)
3204 return false;
3205
3206 // For now, we're only handling the functions that return aliases of their
3207 // arguments: CFRetain and CFMakeCollectable (and their families).
3208 // Eventually we should add other functions we can model entirely,
3209 // such as CFRelease, which don't invalidate their arguments or globals.
3210 if (CE->getNumArgs() != 1)
3211 return false;
3212
3213 // Get the name of the function.
3214 StringRef FName = II->getName();
3215 FName = FName.substr(FName.find_first_not_of('_'));
3216
3217 // See if it's one of the specific functions we know how to eval.
3218 bool canEval = false;
3219
Anna Zaksc6aa5312011-12-01 05:57:37 +00003220 QualType ResultTy = CE->getCallReturnType();
Jordy Rose898a1482011-08-21 21:58:18 +00003221 if (ResultTy->isObjCIdType()) {
3222 // Handle: id NSMakeCollectable(CFTypeRef)
3223 canEval = II->isStr("NSMakeCollectable");
3224 } else if (ResultTy->isPointerType()) {
3225 // Handle: (CF|CG)Retain
Jordan Rose77411322013-10-07 17:16:52 +00003226 // CFAutorelease
Jordy Rose898a1482011-08-21 21:58:18 +00003227 // CFMakeCollectable
3228 // It's okay to be a little sloppy here (CGMakeCollectable doesn't exist).
3229 if (cocoa::isRefType(ResultTy, "CF", FName) ||
3230 cocoa::isRefType(ResultTy, "CG", FName)) {
Jordan Rose77411322013-10-07 17:16:52 +00003231 canEval = isRetain(FD, FName) || isAutorelease(FD, FName) ||
3232 isMakeCollectable(FD, FName);
Jordy Rose898a1482011-08-21 21:58:18 +00003233 }
3234 }
3235
3236 if (!canEval)
3237 return false;
3238
3239 // Bind the return value.
Ted Kremenek632e3b72012-01-06 22:09:28 +00003240 const LocationContext *LCtx = C.getLocationContext();
3241 SVal RetVal = state->getSVal(CE->getArg(0), LCtx);
Jordy Rose898a1482011-08-21 21:58:18 +00003242 if (RetVal.isUnknown()) {
3243 // If the receiver is unknown, conjure a return value.
3244 SValBuilder &SVB = C.getSValBuilder();
Craig Topper0dbb7832014-05-27 02:45:47 +00003245 RetVal = SVB.conjureSymbolVal(nullptr, CE, LCtx, ResultTy, C.blockCount());
Jordy Rose898a1482011-08-21 21:58:18 +00003246 }
Ted Kremenek632e3b72012-01-06 22:09:28 +00003247 state = state->BindExpr(CE, LCtx, RetVal, false);
Jordy Rose898a1482011-08-21 21:58:18 +00003248
Jordy Rose5b31d7a2011-08-22 23:48:23 +00003249 // FIXME: This should not be necessary, but otherwise the argument seems to be
3250 // considered alive during the next statement.
3251 if (const MemRegion *ArgRegion = RetVal.getAsRegion()) {
3252 // Save the refcount status of the argument.
3253 SymbolRef Sym = RetVal.getAsLocSymbol();
Craig Topper0dbb7832014-05-27 02:45:47 +00003254 const RefVal *Binding = nullptr;
Jordy Rose5b31d7a2011-08-22 23:48:23 +00003255 if (Sym)
Anna Zaksf5788c72012-08-14 00:36:15 +00003256 Binding = getRefBinding(state, Sym);
Jordy Rose898a1482011-08-21 21:58:18 +00003257
Jordy Rose5b31d7a2011-08-22 23:48:23 +00003258 // Invalidate the argument region.
Anna Zaksdc154152012-12-20 00:38:25 +00003259 state = state->invalidateRegions(ArgRegion, CE, C.blockCount(), LCtx,
Anna Zaks0c34c1a2013-01-16 01:35:54 +00003260 /*CausesPointerEscape*/ false);
Jordy Rose898a1482011-08-21 21:58:18 +00003261
Jordy Rose5b31d7a2011-08-22 23:48:23 +00003262 // Restore the refcount status of the argument.
3263 if (Binding)
Anna Zaksf5788c72012-08-14 00:36:15 +00003264 state = setRefBinding(state, Sym, *Binding);
Jordy Rose5b31d7a2011-08-22 23:48:23 +00003265 }
3266
Anna Zaksda4c8d62011-10-26 21:06:34 +00003267 C.addTransition(state);
Jordy Rose898a1482011-08-21 21:58:18 +00003268 return true;
3269}
3270
Jordy Rose75e680e2011-09-02 06:44:22 +00003271//===----------------------------------------------------------------------===//
3272// Handle return statements.
3273//===----------------------------------------------------------------------===//
Jordy Rose298cc4d2011-08-23 19:43:16 +00003274
Jordy Rose75e680e2011-09-02 06:44:22 +00003275void RetainCountChecker::checkPreStmt(const ReturnStmt *S,
3276 CheckerContext &C) const {
Ted Kremenekef31f372012-02-25 02:09:09 +00003277
3278 // Only adjust the reference count if this is the top-level call frame,
3279 // and not the result of inlining. In the future, we should do
3280 // better checking even for inlined calls, and see if they match
3281 // with their expected semantics (e.g., the method should return a retained
3282 // object, etc.).
Anna Zaks44dc91b2012-11-03 02:54:16 +00003283 if (!C.inTopFrame())
Ted Kremenekef31f372012-02-25 02:09:09 +00003284 return;
3285
Jordy Rose298cc4d2011-08-23 19:43:16 +00003286 const Expr *RetE = S->getRetValue();
3287 if (!RetE)
3288 return;
3289
Ted Kremenek49b1e382012-01-26 21:29:00 +00003290 ProgramStateRef state = C.getState();
Ted Kremenek632e3b72012-01-06 22:09:28 +00003291 SymbolRef Sym =
3292 state->getSValAsScalarOrLoc(RetE, C.getLocationContext()).getAsLocSymbol();
Jordy Rose298cc4d2011-08-23 19:43:16 +00003293 if (!Sym)
3294 return;
3295
3296 // Get the reference count binding (if any).
Anna Zaksf5788c72012-08-14 00:36:15 +00003297 const RefVal *T = getRefBinding(state, Sym);
Jordy Rose298cc4d2011-08-23 19:43:16 +00003298 if (!T)
3299 return;
3300
3301 // Change the reference count.
3302 RefVal X = *T;
3303
3304 switch (X.getKind()) {
3305 case RefVal::Owned: {
3306 unsigned cnt = X.getCount();
3307 assert(cnt > 0);
3308 X.setCount(cnt - 1);
3309 X = X ^ RefVal::ReturnedOwned;
3310 break;
3311 }
3312
3313 case RefVal::NotOwned: {
3314 unsigned cnt = X.getCount();
3315 if (cnt) {
3316 X.setCount(cnt - 1);
3317 X = X ^ RefVal::ReturnedOwned;
3318 }
3319 else {
3320 X = X ^ RefVal::ReturnedNotOwned;
3321 }
3322 break;
3323 }
3324
3325 default:
3326 return;
3327 }
3328
3329 // Update the binding.
Anna Zaksf5788c72012-08-14 00:36:15 +00003330 state = setRefBinding(state, Sym, X);
Anna Zaksda4c8d62011-10-26 21:06:34 +00003331 ExplodedNode *Pred = C.addTransition(state);
Jordy Rose298cc4d2011-08-23 19:43:16 +00003332
3333 // At this point we have updated the state properly.
3334 // Everything after this is merely checking to see if the return value has
3335 // been over- or under-retained.
3336
3337 // Did we cache out?
3338 if (!Pred)
3339 return;
3340
Jordy Rose298cc4d2011-08-23 19:43:16 +00003341 // Update the autorelease counts.
Anton Yartsev6a619222014-02-17 18:25:34 +00003342 static CheckerProgramPointTag AutoreleaseTag(this, "Autorelease");
Jordan Roseff03c1d2012-12-06 18:58:18 +00003343 state = handleAutoreleaseCounts(state, Pred, &AutoreleaseTag, C, Sym, X);
Jordy Rose298cc4d2011-08-23 19:43:16 +00003344
3345 // Did we cache out?
Jordan Roseff03c1d2012-12-06 18:58:18 +00003346 if (!state)
Jordy Rose298cc4d2011-08-23 19:43:16 +00003347 return;
3348
3349 // Get the updated binding.
Anna Zaksf5788c72012-08-14 00:36:15 +00003350 T = getRefBinding(state, Sym);
Jordy Rose298cc4d2011-08-23 19:43:16 +00003351 assert(T);
3352 X = *T;
3353
3354 // Consult the summary of the enclosing method.
Jordy Rosec49ec532011-09-02 05:55:19 +00003355 RetainSummaryManager &Summaries = getSummaryManager(C);
Jordy Rose298cc4d2011-08-23 19:43:16 +00003356 const Decl *CD = &Pred->getCodeDecl();
Jordan Roseeec15392012-07-02 19:27:43 +00003357 RetEffect RE = RetEffect::MakeNoRet();
Jordy Rose298cc4d2011-08-23 19:43:16 +00003358
Jordan Roseeec15392012-07-02 19:27:43 +00003359 // FIXME: What is the convention for blocks? Is there one?
Jordy Rose298cc4d2011-08-23 19:43:16 +00003360 if (const ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(CD)) {
Jordy Rose8b289a22011-08-25 00:10:37 +00003361 const RetainSummary *Summ = Summaries.getMethodSummary(MD);
Jordan Roseeec15392012-07-02 19:27:43 +00003362 RE = Summ->getRetEffect();
3363 } else if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(CD)) {
3364 if (!isa<CXXMethodDecl>(FD)) {
3365 const RetainSummary *Summ = Summaries.getFunctionSummary(FD);
3366 RE = Summ->getRetEffect();
3367 }
Jordy Rose298cc4d2011-08-23 19:43:16 +00003368 }
3369
Jordan Roseeec15392012-07-02 19:27:43 +00003370 checkReturnWithRetEffect(S, C, Pred, RE, X, Sym, state);
Jordy Rose298cc4d2011-08-23 19:43:16 +00003371}
3372
Jordy Rose75e680e2011-09-02 06:44:22 +00003373void RetainCountChecker::checkReturnWithRetEffect(const ReturnStmt *S,
3374 CheckerContext &C,
3375 ExplodedNode *Pred,
3376 RetEffect RE, RefVal X,
3377 SymbolRef Sym,
Ted Kremenek49b1e382012-01-26 21:29:00 +00003378 ProgramStateRef state) const {
Jordy Rose298cc4d2011-08-23 19:43:16 +00003379 // Any leaks or other errors?
3380 if (X.isReturnedOwned() && X.getCount() == 0) {
3381 if (RE.getKind() != RetEffect::NoRet) {
3382 bool hasError = false;
Jordy Rosec49ec532011-09-02 05:55:19 +00003383 if (C.isObjCGCEnabled() && RE.getObjKind() == RetEffect::ObjC) {
Jordy Rose298cc4d2011-08-23 19:43:16 +00003384 // Things are more complicated with garbage collection. If the
3385 // returned object is suppose to be an Objective-C object, we have
3386 // a leak (as the caller expects a GC'ed object) because no
3387 // method should return ownership unless it returns a CF object.
3388 hasError = true;
3389 X = X ^ RefVal::ErrorGCLeakReturned;
3390 }
3391 else if (!RE.isOwned()) {
3392 // Either we are using GC and the returned object is a CF type
3393 // or we aren't using GC. In either case, we expect that the
3394 // enclosing method is expected to return ownership.
3395 hasError = true;
3396 X = X ^ RefVal::ErrorLeakReturned;
3397 }
3398
3399 if (hasError) {
3400 // Generate an error node.
Anna Zaksf5788c72012-08-14 00:36:15 +00003401 state = setRefBinding(state, Sym, X);
Jordy Rose298cc4d2011-08-23 19:43:16 +00003402
Anton Yartsev6a619222014-02-17 18:25:34 +00003403 static CheckerProgramPointTag ReturnOwnLeakTag(this, "ReturnsOwnLeak");
Anna Zaksda4c8d62011-10-26 21:06:34 +00003404 ExplodedNode *N = C.addTransition(state, Pred, &ReturnOwnLeakTag);
Jordy Rose298cc4d2011-08-23 19:43:16 +00003405 if (N) {
David Blaikiebbafb8a2012-03-11 07:00:24 +00003406 const LangOptions &LOpts = C.getASTContext().getLangOpts();
Jordy Rosec49ec532011-09-02 05:55:19 +00003407 bool GCEnabled = C.isObjCGCEnabled();
Jordy Rose298cc4d2011-08-23 19:43:16 +00003408 CFRefReport *report =
Jordy Rosec49ec532011-09-02 05:55:19 +00003409 new CFRefLeakReport(*getLeakAtReturnBug(LOpts, GCEnabled),
3410 LOpts, GCEnabled, SummaryLog,
Ted Kremenek8671acb2013-04-16 21:44:22 +00003411 N, Sym, C, IncludeAllocationLine);
3412
Jordan Rosee10d5a72012-11-02 01:53:40 +00003413 C.emitReport(report);
Jordy Rose298cc4d2011-08-23 19:43:16 +00003414 }
3415 }
3416 }
3417 } else if (X.isReturnedNotOwned()) {
3418 if (RE.isOwned()) {
3419 // Trying to return a not owned object to a caller expecting an
3420 // owned object.
Anna Zaksf5788c72012-08-14 00:36:15 +00003421 state = setRefBinding(state, Sym, X ^ RefVal::ErrorReturnedNotOwned);
Jordy Rose298cc4d2011-08-23 19:43:16 +00003422
Anton Yartsev6a619222014-02-17 18:25:34 +00003423 static CheckerProgramPointTag ReturnNotOwnedTag(this,
3424 "ReturnNotOwnedForOwned");
Anna Zaksda4c8d62011-10-26 21:06:34 +00003425 ExplodedNode *N = C.addTransition(state, Pred, &ReturnNotOwnedTag);
Jordy Rose298cc4d2011-08-23 19:43:16 +00003426 if (N) {
Jordy Rose4ba0ba42011-08-25 00:34:03 +00003427 if (!returnNotOwnedForOwned)
Alexander Kornienko4aca9b12014-02-11 21:49:21 +00003428 returnNotOwnedForOwned.reset(new ReturnedNotOwnedForOwned(this));
Jordy Rose4ba0ba42011-08-25 00:34:03 +00003429
Jordy Rose298cc4d2011-08-23 19:43:16 +00003430 CFRefReport *report =
Jordy Rose4ba0ba42011-08-25 00:34:03 +00003431 new CFRefReport(*returnNotOwnedForOwned,
David Blaikiebbafb8a2012-03-11 07:00:24 +00003432 C.getASTContext().getLangOpts(),
Jordy Rosec49ec532011-09-02 05:55:19 +00003433 C.isObjCGCEnabled(), SummaryLog, N, Sym);
Jordan Rosee10d5a72012-11-02 01:53:40 +00003434 C.emitReport(report);
Jordy Rose298cc4d2011-08-23 19:43:16 +00003435 }
3436 }
3437 }
3438}
3439
Jordy Rose6763e382011-08-23 20:07:14 +00003440//===----------------------------------------------------------------------===//
Jordy Rose75e680e2011-09-02 06:44:22 +00003441// Check various ways a symbol can be invalidated.
3442//===----------------------------------------------------------------------===//
3443
Anna Zaks3e0f4152011-10-06 00:43:15 +00003444void RetainCountChecker::checkBind(SVal loc, SVal val, const Stmt *S,
Jordy Rose75e680e2011-09-02 06:44:22 +00003445 CheckerContext &C) const {
3446 // Are we storing to something that causes the value to "escape"?
3447 bool escapes = true;
3448
3449 // A value escapes in three possible cases (this may change):
3450 //
3451 // (1) we are binding to something that is not a memory region.
3452 // (2) we are binding to a memregion that does not have stack storage
3453 // (3) we are binding to a memregion with stack storage that the store
3454 // does not understand.
Ted Kremenek49b1e382012-01-26 21:29:00 +00003455 ProgramStateRef state = C.getState();
Jordy Rose75e680e2011-09-02 06:44:22 +00003456
David Blaikie05785d12013-02-20 22:23:23 +00003457 if (Optional<loc::MemRegionVal> regionLoc = loc.getAs<loc::MemRegionVal>()) {
Jordy Rose75e680e2011-09-02 06:44:22 +00003458 escapes = !regionLoc->getRegion()->hasStackStorage();
3459
3460 if (!escapes) {
3461 // To test (3), generate a new state with the binding added. If it is
3462 // the same state, then it escapes (since the store cannot represent
3463 // the binding).
Anna Zaks70de7722012-05-02 00:15:40 +00003464 // Do this only if we know that the store is not supposed to generate the
3465 // same state.
3466 SVal StoredVal = state->getSVal(regionLoc->getRegion());
3467 if (StoredVal != val)
3468 escapes = (state == (state->bindLoc(*regionLoc, val)));
Jordy Rose75e680e2011-09-02 06:44:22 +00003469 }
Ted Kremeneke9a5bcf2012-03-27 01:12:45 +00003470 if (!escapes) {
3471 // Case 4: We do not currently model what happens when a symbol is
3472 // assigned to a struct field, so be conservative here and let the symbol
3473 // go. TODO: This could definitely be improved upon.
3474 escapes = !isa<VarRegion>(regionLoc->getRegion());
3475 }
Jordy Rose75e680e2011-09-02 06:44:22 +00003476 }
3477
Anna Zaksfb050942013-09-17 00:53:28 +00003478 // If we are storing the value into an auto function scope variable annotated
3479 // with (__attribute__((cleanup))), stop tracking the value to avoid leak
3480 // false positives.
3481 if (const VarRegion *LVR = dyn_cast_or_null<VarRegion>(loc.getAsRegion())) {
3482 const VarDecl *VD = LVR->getDecl();
Aaron Ballman9ead1242013-12-19 02:39:40 +00003483 if (VD->hasAttr<CleanupAttr>()) {
Anna Zaksfb050942013-09-17 00:53:28 +00003484 escapes = true;
3485 }
3486 }
3487
Jordy Rose75e680e2011-09-02 06:44:22 +00003488 // If our store can represent the binding and we aren't storing to something
3489 // that doesn't have local storage then just return and have the simulation
3490 // state continue as is.
3491 if (!escapes)
3492 return;
3493
3494 // Otherwise, find all symbols referenced by 'val' that we are tracking
3495 // and stop tracking them.
3496 state = state->scanReachableSymbols<StopTrackingCallback>(val).getState();
Anna Zaksda4c8d62011-10-26 21:06:34 +00003497 C.addTransition(state);
Jordy Rose75e680e2011-09-02 06:44:22 +00003498}
3499
Ted Kremenek49b1e382012-01-26 21:29:00 +00003500ProgramStateRef RetainCountChecker::evalAssume(ProgramStateRef state,
Jordy Rose75e680e2011-09-02 06:44:22 +00003501 SVal Cond,
3502 bool Assumption) const {
3503
3504 // FIXME: We may add to the interface of evalAssume the list of symbols
3505 // whose assumptions have changed. For now we just iterate through the
3506 // bindings and check if any of the tracked symbols are NULL. This isn't
3507 // too bad since the number of symbols we will track in practice are
3508 // probably small and evalAssume is only called at branches and a few
3509 // other places.
Jordan Rose0c153cb2012-11-02 01:54:06 +00003510 RefBindingsTy B = state->get<RefBindings>();
Jordy Rose75e680e2011-09-02 06:44:22 +00003511
3512 if (B.isEmpty())
3513 return state;
3514
3515 bool changed = false;
Jordan Rose0c153cb2012-11-02 01:54:06 +00003516 RefBindingsTy::Factory &RefBFactory = state->get_context<RefBindings>();
Jordy Rose75e680e2011-09-02 06:44:22 +00003517
Jordan Rose0c153cb2012-11-02 01:54:06 +00003518 for (RefBindingsTy::iterator I = B.begin(), E = B.end(); I != E; ++I) {
Ted Kremenek244e1d72012-09-07 22:31:01 +00003519 // Check if the symbol is null stop tracking the symbol.
Jordan Rose14fe9f32012-11-01 00:18:27 +00003520 ConstraintManager &CMgr = state->getConstraintManager();
3521 ConditionTruthVal AllocFailed = CMgr.isNull(state, I.getKey());
3522 if (AllocFailed.isConstrainedTrue()) {
Jordy Rose75e680e2011-09-02 06:44:22 +00003523 changed = true;
3524 B = RefBFactory.remove(B, I.getKey());
3525 }
3526 }
3527
3528 if (changed)
3529 state = state->set<RefBindings>(B);
3530
3531 return state;
3532}
3533
Ted Kremenek49b1e382012-01-26 21:29:00 +00003534ProgramStateRef
3535RetainCountChecker::checkRegionChanges(ProgramStateRef state,
Anna Zaksdc154152012-12-20 00:38:25 +00003536 const InvalidatedSymbols *invalidated,
Jordy Rose75e680e2011-09-02 06:44:22 +00003537 ArrayRef<const MemRegion *> ExplicitRegions,
Anna Zaks3d348342012-02-14 21:55:24 +00003538 ArrayRef<const MemRegion *> Regions,
Jordan Rose742920c2012-07-02 19:27:35 +00003539 const CallEvent *Call) const {
Jordy Rose75e680e2011-09-02 06:44:22 +00003540 if (!invalidated)
3541 return state;
3542
3543 llvm::SmallPtrSet<SymbolRef, 8> WhitelistedSymbols;
3544 for (ArrayRef<const MemRegion *>::iterator I = ExplicitRegions.begin(),
3545 E = ExplicitRegions.end(); I != E; ++I) {
3546 if (const SymbolicRegion *SR = (*I)->StripCasts()->getAs<SymbolicRegion>())
3547 WhitelistedSymbols.insert(SR->getSymbol());
3548 }
3549
Anna Zaksdc154152012-12-20 00:38:25 +00003550 for (InvalidatedSymbols::const_iterator I=invalidated->begin(),
Jordy Rose75e680e2011-09-02 06:44:22 +00003551 E = invalidated->end(); I!=E; ++I) {
3552 SymbolRef sym = *I;
3553 if (WhitelistedSymbols.count(sym))
3554 continue;
3555 // Remove any existing reference-count binding.
Anna Zaksf5788c72012-08-14 00:36:15 +00003556 state = removeRefBinding(state, sym);
Jordy Rose75e680e2011-09-02 06:44:22 +00003557 }
3558 return state;
3559}
3560
3561//===----------------------------------------------------------------------===//
Jordy Rose6763e382011-08-23 20:07:14 +00003562// Handle dead symbols and end-of-path.
3563//===----------------------------------------------------------------------===//
3564
Jordan Roseff03c1d2012-12-06 18:58:18 +00003565ProgramStateRef
3566RetainCountChecker::handleAutoreleaseCounts(ProgramStateRef state,
Anna Zaks58734db2011-10-25 19:57:11 +00003567 ExplodedNode *Pred,
Jordan Rose9f61f8a2012-08-18 00:30:16 +00003568 const ProgramPointTag *Tag,
Anna Zaks58734db2011-10-25 19:57:11 +00003569 CheckerContext &Ctx,
Jordy Rose75e680e2011-09-02 06:44:22 +00003570 SymbolRef Sym, RefVal V) const {
Jordy Rose6763e382011-08-23 20:07:14 +00003571 unsigned ACnt = V.getAutoreleaseCount();
3572
3573 // No autorelease counts? Nothing to be done.
3574 if (!ACnt)
Jordan Roseff03c1d2012-12-06 18:58:18 +00003575 return state;
Jordy Rose6763e382011-08-23 20:07:14 +00003576
Anna Zaks58734db2011-10-25 19:57:11 +00003577 assert(!Ctx.isObjCGCEnabled() && "Autorelease counts in GC mode?");
Jordy Rose6763e382011-08-23 20:07:14 +00003578 unsigned Cnt = V.getCount();
3579
3580 // FIXME: Handle sending 'autorelease' to already released object.
3581
3582 if (V.getKind() == RefVal::ReturnedOwned)
3583 ++Cnt;
3584
3585 if (ACnt <= Cnt) {
3586 if (ACnt == Cnt) {
3587 V.clearCounts();
3588 if (V.getKind() == RefVal::ReturnedOwned)
3589 V = V ^ RefVal::ReturnedNotOwned;
3590 else
3591 V = V ^ RefVal::NotOwned;
3592 } else {
Anna Zaksa8bcc652013-01-31 22:36:17 +00003593 V.setCount(V.getCount() - ACnt);
Jordy Rose6763e382011-08-23 20:07:14 +00003594 V.setAutoreleaseCount(0);
3595 }
Jordan Roseff03c1d2012-12-06 18:58:18 +00003596 return setRefBinding(state, Sym, V);
Jordy Rose6763e382011-08-23 20:07:14 +00003597 }
3598
3599 // Woah! More autorelease counts then retain counts left.
3600 // Emit hard error.
3601 V = V ^ RefVal::ErrorOverAutorelease;
Anna Zaksf5788c72012-08-14 00:36:15 +00003602 state = setRefBinding(state, Sym, V);
Jordy Rose6763e382011-08-23 20:07:14 +00003603
Jordan Rose4b4613c2012-08-20 18:43:42 +00003604 ExplodedNode *N = Ctx.generateSink(state, Pred, Tag);
Jordan Rose9f61f8a2012-08-18 00:30:16 +00003605 if (N) {
Dylan Noblesmith2c1dd272012-02-05 02:13:05 +00003606 SmallString<128> sbuf;
Jordy Rose6763e382011-08-23 20:07:14 +00003607 llvm::raw_svector_ostream os(sbuf);
Jordan Rose7467f062013-04-23 01:42:25 +00003608 os << "Object was autoreleased ";
Jordy Rose6763e382011-08-23 20:07:14 +00003609 if (V.getAutoreleaseCount() > 1)
Jordan Rose7467f062013-04-23 01:42:25 +00003610 os << V.getAutoreleaseCount() << " times but the object ";
3611 else
3612 os << "but ";
3613 os << "has a +" << V.getCount() << " retain count";
Jordy Rose6763e382011-08-23 20:07:14 +00003614
Jordy Rose4ba0ba42011-08-25 00:34:03 +00003615 if (!overAutorelease)
Alexander Kornienko4aca9b12014-02-11 21:49:21 +00003616 overAutorelease.reset(new OverAutorelease(this));
Jordy Rose4ba0ba42011-08-25 00:34:03 +00003617
David Blaikiebbafb8a2012-03-11 07:00:24 +00003618 const LangOptions &LOpts = Ctx.getASTContext().getLangOpts();
Jordy Rose6763e382011-08-23 20:07:14 +00003619 CFRefReport *report =
Jordy Rose4ba0ba42011-08-25 00:34:03 +00003620 new CFRefReport(*overAutorelease, LOpts, /* GCEnabled = */ false,
3621 SummaryLog, N, Sym, os.str());
Jordan Rosee10d5a72012-11-02 01:53:40 +00003622 Ctx.emitReport(report);
Jordy Rose6763e382011-08-23 20:07:14 +00003623 }
3624
Craig Topper0dbb7832014-05-27 02:45:47 +00003625 return nullptr;
Jordy Rose6763e382011-08-23 20:07:14 +00003626}
Jordy Rose78612762011-08-23 19:01:07 +00003627
Ted Kremenek49b1e382012-01-26 21:29:00 +00003628ProgramStateRef
3629RetainCountChecker::handleSymbolDeath(ProgramStateRef state,
Jordy Rose75e680e2011-09-02 06:44:22 +00003630 SymbolRef sid, RefVal V,
Jordy Rose78612762011-08-23 19:01:07 +00003631 SmallVectorImpl<SymbolRef> &Leaked) const {
Jordy Rose03a8f9e2011-08-24 04:48:19 +00003632 bool hasLeak = false;
Jordy Rose78612762011-08-23 19:01:07 +00003633 if (V.isOwned())
3634 hasLeak = true;
3635 else if (V.isNotOwned() || V.isReturnedOwned())
3636 hasLeak = (V.getCount() > 0);
3637
3638 if (!hasLeak)
Anna Zaksf5788c72012-08-14 00:36:15 +00003639 return removeRefBinding(state, sid);
Jordy Rose78612762011-08-23 19:01:07 +00003640
3641 Leaked.push_back(sid);
Anna Zaksf5788c72012-08-14 00:36:15 +00003642 return setRefBinding(state, sid, V ^ RefVal::ErrorLeak);
Jordy Rose78612762011-08-23 19:01:07 +00003643}
3644
3645ExplodedNode *
Ted Kremenek49b1e382012-01-26 21:29:00 +00003646RetainCountChecker::processLeaks(ProgramStateRef state,
Jordy Rose75e680e2011-09-02 06:44:22 +00003647 SmallVectorImpl<SymbolRef> &Leaked,
Anna Zaks58734db2011-10-25 19:57:11 +00003648 CheckerContext &Ctx,
3649 ExplodedNode *Pred) const {
Jordy Rose78612762011-08-23 19:01:07 +00003650 // Generate an intermediate node representing the leak point.
Jordan Rose9f61f8a2012-08-18 00:30:16 +00003651 ExplodedNode *N = Ctx.addTransition(state, Pred);
Jordy Rose78612762011-08-23 19:01:07 +00003652
3653 if (N) {
3654 for (SmallVectorImpl<SymbolRef>::iterator
3655 I = Leaked.begin(), E = Leaked.end(); I != E; ++I) {
3656
David Blaikiebbafb8a2012-03-11 07:00:24 +00003657 const LangOptions &LOpts = Ctx.getASTContext().getLangOpts();
Anna Zaks58734db2011-10-25 19:57:11 +00003658 bool GCEnabled = Ctx.isObjCGCEnabled();
Jordy Rosec49ec532011-09-02 05:55:19 +00003659 CFRefBug *BT = Pred ? getLeakWithinFunctionBug(LOpts, GCEnabled)
3660 : getLeakAtReturnBug(LOpts, GCEnabled);
Jordy Rose78612762011-08-23 19:01:07 +00003661 assert(BT && "BugType not initialized.");
Jordy Rose184bd142011-08-24 22:39:09 +00003662
Jordy Rosec49ec532011-09-02 05:55:19 +00003663 CFRefLeakReport *report = new CFRefLeakReport(*BT, LOpts, GCEnabled,
Ted Kremenek8671acb2013-04-16 21:44:22 +00003664 SummaryLog, N, *I, Ctx,
3665 IncludeAllocationLine);
Jordan Rosee10d5a72012-11-02 01:53:40 +00003666 Ctx.emitReport(report);
Jordy Rose78612762011-08-23 19:01:07 +00003667 }
3668 }
3669
3670 return N;
3671}
3672
Anna Zaks3fdcc0b2013-01-03 00:25:29 +00003673void RetainCountChecker::checkEndFunction(CheckerContext &Ctx) const {
Ted Kremenek49b1e382012-01-26 21:29:00 +00003674 ProgramStateRef state = Ctx.getState();
Jordan Rose0c153cb2012-11-02 01:54:06 +00003675 RefBindingsTy B = state->get<RefBindings>();
Anna Zaks3eae3342011-10-25 19:56:48 +00003676 ExplodedNode *Pred = Ctx.getPredecessor();
Jordy Rose78612762011-08-23 19:01:07 +00003677
Jordan Rose7699e4a2013-08-01 22:16:36 +00003678 // Don't process anything within synthesized bodies.
3679 const LocationContext *LCtx = Pred->getLocationContext();
3680 if (LCtx->getAnalysisDeclContext()->isBodyAutosynthesized()) {
3681 assert(LCtx->getParent());
3682 return;
3683 }
3684
Jordan Rose0c153cb2012-11-02 01:54:06 +00003685 for (RefBindingsTy::iterator I = B.begin(), E = B.end(); I != E; ++I) {
Craig Topper0dbb7832014-05-27 02:45:47 +00003686 state = handleAutoreleaseCounts(state, Pred, /*Tag=*/nullptr, Ctx,
Jordan Roseff03c1d2012-12-06 18:58:18 +00003687 I->first, I->second);
Jordy Rose6763e382011-08-23 20:07:14 +00003688 if (!state)
Jordy Rose78612762011-08-23 19:01:07 +00003689 return;
3690 }
3691
Ted Kremeneka2bbac32012-02-07 00:24:33 +00003692 // If the current LocationContext has a parent, don't check for leaks.
3693 // We will do that later.
Anna Zaksf5788c72012-08-14 00:36:15 +00003694 // FIXME: we should instead check for imbalances of the retain/releases,
Ted Kremeneka2bbac32012-02-07 00:24:33 +00003695 // and suggest annotations.
Jordan Rose7699e4a2013-08-01 22:16:36 +00003696 if (LCtx->getParent())
Ted Kremeneka2bbac32012-02-07 00:24:33 +00003697 return;
3698
Jordy Rose78612762011-08-23 19:01:07 +00003699 B = state->get<RefBindings>();
3700 SmallVector<SymbolRef, 10> Leaked;
3701
Jordan Rose0c153cb2012-11-02 01:54:06 +00003702 for (RefBindingsTy::iterator I = B.begin(), E = B.end(); I != E; ++I)
Jordy Rose6763e382011-08-23 20:07:14 +00003703 state = handleSymbolDeath(state, I->first, I->second, Leaked);
Jordy Rose78612762011-08-23 19:01:07 +00003704
Jordan Rose9f61f8a2012-08-18 00:30:16 +00003705 processLeaks(state, Leaked, Ctx, Pred);
Jordy Rose78612762011-08-23 19:01:07 +00003706}
3707
3708const ProgramPointTag *
Jordy Rose75e680e2011-09-02 06:44:22 +00003709RetainCountChecker::getDeadSymbolTag(SymbolRef sym) const {
Anton Yartsev6a619222014-02-17 18:25:34 +00003710 const CheckerProgramPointTag *&tag = DeadSymbolTags[sym];
Jordy Rose78612762011-08-23 19:01:07 +00003711 if (!tag) {
Dylan Noblesmith2c1dd272012-02-05 02:13:05 +00003712 SmallString<64> buf;
Jordy Rose78612762011-08-23 19:01:07 +00003713 llvm::raw_svector_ostream out(buf);
Anton Yartsev6a619222014-02-17 18:25:34 +00003714 out << "Dead Symbol : ";
Anna Zaks22351652011-12-05 18:58:11 +00003715 sym->dumpToStream(out);
Anton Yartsev6a619222014-02-17 18:25:34 +00003716 tag = new CheckerProgramPointTag(this, out.str());
Jordy Rose78612762011-08-23 19:01:07 +00003717 }
3718 return tag;
3719}
3720
Jordy Rose75e680e2011-09-02 06:44:22 +00003721void RetainCountChecker::checkDeadSymbols(SymbolReaper &SymReaper,
3722 CheckerContext &C) const {
Jordy Rose78612762011-08-23 19:01:07 +00003723 ExplodedNode *Pred = C.getPredecessor();
3724
Ted Kremenek49b1e382012-01-26 21:29:00 +00003725 ProgramStateRef state = C.getState();
Jordan Rose0c153cb2012-11-02 01:54:06 +00003726 RefBindingsTy B = state->get<RefBindings>();
Jordan Roseff03c1d2012-12-06 18:58:18 +00003727 SmallVector<SymbolRef, 10> Leaked;
Jordy Rose78612762011-08-23 19:01:07 +00003728
3729 // Update counts from autorelease pools
3730 for (SymbolReaper::dead_iterator I = SymReaper.dead_begin(),
3731 E = SymReaper.dead_end(); I != E; ++I) {
3732 SymbolRef Sym = *I;
3733 if (const RefVal *T = B.lookup(Sym)){
3734 // Use the symbol as the tag.
3735 // FIXME: This might not be as unique as we would like.
Jordan Rose9f61f8a2012-08-18 00:30:16 +00003736 const ProgramPointTag *Tag = getDeadSymbolTag(Sym);
Jordan Roseff03c1d2012-12-06 18:58:18 +00003737 state = handleAutoreleaseCounts(state, Pred, Tag, C, Sym, *T);
Jordy Rose6763e382011-08-23 20:07:14 +00003738 if (!state)
Jordy Rose78612762011-08-23 19:01:07 +00003739 return;
Jordan Roseff03c1d2012-12-06 18:58:18 +00003740
3741 // Fetch the new reference count from the state, and use it to handle
3742 // this symbol.
3743 state = handleSymbolDeath(state, *I, *getRefBinding(state, Sym), Leaked);
Jordy Rose78612762011-08-23 19:01:07 +00003744 }
3745 }
3746
Jordan Roseff03c1d2012-12-06 18:58:18 +00003747 if (Leaked.empty()) {
3748 C.addTransition(state);
3749 return;
Jordy Rose78612762011-08-23 19:01:07 +00003750 }
3751
Jordan Rose9f61f8a2012-08-18 00:30:16 +00003752 Pred = processLeaks(state, Leaked, C, Pred);
Jordy Rose78612762011-08-23 19:01:07 +00003753
3754 // Did we cache out?
3755 if (!Pred)
3756 return;
3757
3758 // Now generate a new node that nukes the old bindings.
Jordan Roseff03c1d2012-12-06 18:58:18 +00003759 // The only bindings left at this point are the leaked symbols.
Jordan Rose0c153cb2012-11-02 01:54:06 +00003760 RefBindingsTy::Factory &F = state->get_context<RefBindings>();
Jordan Roseff03c1d2012-12-06 18:58:18 +00003761 B = state->get<RefBindings>();
Jordy Rose78612762011-08-23 19:01:07 +00003762
Jordan Roseff03c1d2012-12-06 18:58:18 +00003763 for (SmallVectorImpl<SymbolRef>::iterator I = Leaked.begin(),
3764 E = Leaked.end();
3765 I != E; ++I)
Jordy Rose78612762011-08-23 19:01:07 +00003766 B = F.remove(B, *I);
3767
3768 state = state->set<RefBindings>(B);
Anna Zaksda4c8d62011-10-26 21:06:34 +00003769 C.addTransition(state, Pred);
Jordy Rose78612762011-08-23 19:01:07 +00003770}
3771
Ted Kremenek49b1e382012-01-26 21:29:00 +00003772void RetainCountChecker::printState(raw_ostream &Out, ProgramStateRef State,
Jordy Rose75e680e2011-09-02 06:44:22 +00003773 const char *NL, const char *Sep) const {
Jordy Rose58a20d32011-08-28 19:11:56 +00003774
Jordan Rose0c153cb2012-11-02 01:54:06 +00003775 RefBindingsTy B = State->get<RefBindings>();
Jordy Rose58a20d32011-08-28 19:11:56 +00003776
Ted Kremenekdb70b522013-03-28 18:43:18 +00003777 if (B.isEmpty())
3778 return;
3779
3780 Out << Sep << NL;
Jordy Rose58a20d32011-08-28 19:11:56 +00003781
Jordan Rose0c153cb2012-11-02 01:54:06 +00003782 for (RefBindingsTy::iterator I = B.begin(), E = B.end(); I != E; ++I) {
Jordy Rose58a20d32011-08-28 19:11:56 +00003783 Out << I->first << " : ";
3784 I->second.print(Out);
3785 Out << NL;
3786 }
Jordy Rose58a20d32011-08-28 19:11:56 +00003787}
3788
3789//===----------------------------------------------------------------------===//
Jordy Rose75e680e2011-09-02 06:44:22 +00003790// Checker registration.
Ted Kremenek819e9b62008-03-11 06:39:11 +00003791//===----------------------------------------------------------------------===//
3792
Jordy Rosec49ec532011-09-02 05:55:19 +00003793void ento::registerRetainCountChecker(CheckerManager &Mgr) {
Ted Kremenek8671acb2013-04-16 21:44:22 +00003794 Mgr.registerChecker<RetainCountChecker>(Mgr.getAnalyzerOptions());
Jordy Rosec49ec532011-09-02 05:55:19 +00003795}
3796
Ted Kremenek71c080f2013-08-14 23:41:49 +00003797//===----------------------------------------------------------------------===//
3798// Implementation of the CallEffects API.
3799//===----------------------------------------------------------------------===//
3800
3801namespace clang { namespace ento { namespace objc_retain {
3802
3803// This is a bit gross, but it allows us to populate CallEffects without
3804// creating a bunch of accessors. This kind is very localized, so the
3805// damage of this macro is limited.
3806#define createCallEffect(D, KIND)\
3807 ASTContext &Ctx = D->getASTContext();\
3808 LangOptions L = Ctx.getLangOpts();\
3809 RetainSummaryManager M(Ctx, L.GCOnly, L.ObjCAutoRefCount);\
3810 const RetainSummary *S = M.get ## KIND ## Summary(D);\
3811 CallEffects CE(S->getRetEffect());\
3812 CE.Receiver = S->getReceiverEffect();\
Ted Kremeneke19529b2013-08-16 23:14:22 +00003813 unsigned N = D->param_size();\
Ted Kremenek71c080f2013-08-14 23:41:49 +00003814 for (unsigned i = 0; i < N; ++i) {\
3815 CE.Args.push_back(S->getArg(i));\
3816 }
3817
3818CallEffects CallEffects::getEffect(const ObjCMethodDecl *MD) {
3819 createCallEffect(MD, Method);
3820 return CE;
3821}
3822
3823CallEffects CallEffects::getEffect(const FunctionDecl *FD) {
3824 createCallEffect(FD, Function);
3825 return CE;
3826}
3827
3828#undef createCallEffect
3829
3830}}}