RetainCountChecker.cpp revision 0658879cc98e8cb918e2f349a59c901f74f0de11
1//==-- RetainCountChecker.cpp - Checks for leaks and other issues -*- C++ -*--//
2//
3//                     The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10//  This file defines the methods for RetainCountChecker, which implements
11//  a reference count checker for Core Foundation and Cocoa on (Mac OS X).
12//
13//===----------------------------------------------------------------------===//
14
15#include "ClangSACheckers.h"
16#include "clang/AST/DeclObjC.h"
17#include "clang/AST/DeclCXX.h"
18#include "clang/Basic/LangOptions.h"
19#include "clang/Basic/SourceManager.h"
20#include "clang/Analysis/DomainSpecific/CocoaConventions.h"
21#include "clang/StaticAnalyzer/Core/Checker.h"
22#include "clang/StaticAnalyzer/Core/CheckerManager.h"
23#include "clang/StaticAnalyzer/Core/BugReporter/BugType.h"
24#include "clang/StaticAnalyzer/Core/BugReporter/PathDiagnostic.h"
25#include "clang/StaticAnalyzer/Core/PathSensitive/CheckerContext.h"
26#include "clang/StaticAnalyzer/Core/PathSensitive/ExprEngineBuilders.h"
27#include "clang/StaticAnalyzer/Core/PathSensitive/ProgramStateTrait.h"
28#include "clang/StaticAnalyzer/Core/PathSensitive/SymbolManager.h"
29#include "clang/StaticAnalyzer/Core/PathSensitive/ObjCMessage.h"
30#include "llvm/ADT/DenseMap.h"
31#include "llvm/ADT/FoldingSet.h"
32#include "llvm/ADT/ImmutableList.h"
33#include "llvm/ADT/ImmutableMap.h"
34#include "llvm/ADT/STLExtras.h"
35#include "llvm/ADT/StringExtras.h"
36#include <cstdarg>
37
38using namespace clang;
39using namespace ento;
40using llvm::StrInStrNoCase;
41
42namespace {
43/// Wrapper around different kinds of node builder, so that helper functions
44/// can have a common interface.
45class GenericNodeBuilderRefCount {
46  StmtNodeBuilder *SNB;
47  const Stmt *S;
48  const ProgramPointTag *tag;
49  EndOfFunctionNodeBuilder *ENB;
50public:
51  GenericNodeBuilderRefCount(StmtNodeBuilder &snb, const Stmt *s,
52                     const ProgramPointTag *t)
53  : SNB(&snb), S(s), tag(t), ENB(0) {}
54
55  GenericNodeBuilderRefCount(EndOfFunctionNodeBuilder &enb)
56  : SNB(0), S(0), tag(0), ENB(&enb) {}
57
58  ExplodedNode *MakeNode(const ProgramState *state, ExplodedNode *Pred) {
59    if (SNB)
60      return SNB->generateNode(PostStmt(S, Pred->getLocationContext(), tag),
61                               state, Pred);
62
63    assert(ENB);
64    return ENB->generateNode(state, Pred);
65  }
66};
67} // end anonymous namespace
68
69//===----------------------------------------------------------------------===//
70// Primitives used for constructing summaries for function/method calls.
71//===----------------------------------------------------------------------===//
72
73/// ArgEffect is used to summarize a function/method call's effect on a
74/// particular argument.
75enum ArgEffect { DoNothing, Autorelease, Dealloc, DecRef, DecRefMsg,
76                 DecRefBridgedTransfered,
77                 IncRefMsg, IncRef, MakeCollectable, MayEscape,
78                 NewAutoreleasePool, SelfOwn, StopTracking };
79
80namespace llvm {
81template <> struct FoldingSetTrait<ArgEffect> {
82static inline void Profile(const ArgEffect X, FoldingSetNodeID& ID) {
83  ID.AddInteger((unsigned) X);
84}
85};
86} // end llvm namespace
87
88/// ArgEffects summarizes the effects of a function/method call on all of
89/// its arguments.
90typedef llvm::ImmutableMap<unsigned,ArgEffect> ArgEffects;
91
92namespace {
93
94///  RetEffect is used to summarize a function/method call's behavior with
95///  respect to its return value.
96class RetEffect {
97public:
98  enum Kind { NoRet, OwnedSymbol, OwnedAllocatedSymbol,
99              NotOwnedSymbol, GCNotOwnedSymbol, ARCNotOwnedSymbol,
100              OwnedWhenTrackedReceiver };
101
102  enum ObjKind { CF, ObjC, AnyObj };
103
104private:
105  Kind K;
106  ObjKind O;
107
108  RetEffect(Kind k, ObjKind o = AnyObj) : K(k), O(o) {}
109
110public:
111  Kind getKind() const { return K; }
112
113  ObjKind getObjKind() const { return O; }
114
115  bool isOwned() const {
116    return K == OwnedSymbol || K == OwnedAllocatedSymbol ||
117           K == OwnedWhenTrackedReceiver;
118  }
119
120  bool operator==(const RetEffect &Other) const {
121    return K == Other.K && O == Other.O;
122  }
123
124  static RetEffect MakeOwnedWhenTrackedReceiver() {
125    return RetEffect(OwnedWhenTrackedReceiver, ObjC);
126  }
127
128  static RetEffect MakeOwned(ObjKind o, bool isAllocated = false) {
129    return RetEffect(isAllocated ? OwnedAllocatedSymbol : OwnedSymbol, o);
130  }
131  static RetEffect MakeNotOwned(ObjKind o) {
132    return RetEffect(NotOwnedSymbol, o);
133  }
134  static RetEffect MakeGCNotOwned() {
135    return RetEffect(GCNotOwnedSymbol, ObjC);
136  }
137  static RetEffect MakeARCNotOwned() {
138    return RetEffect(ARCNotOwnedSymbol, ObjC);
139  }
140  static RetEffect MakeNoRet() {
141    return RetEffect(NoRet);
142  }
143};
144
145//===----------------------------------------------------------------------===//
146// Reference-counting logic (typestate + counts).
147//===----------------------------------------------------------------------===//
148
149class RefVal {
150public:
151  enum Kind {
152    Owned = 0, // Owning reference.
153    NotOwned,  // Reference is not owned by still valid (not freed).
154    Released,  // Object has been released.
155    ReturnedOwned, // Returned object passes ownership to caller.
156    ReturnedNotOwned, // Return object does not pass ownership to caller.
157    ERROR_START,
158    ErrorDeallocNotOwned, // -dealloc called on non-owned object.
159    ErrorDeallocGC, // Calling -dealloc with GC enabled.
160    ErrorUseAfterRelease, // Object used after released.
161    ErrorReleaseNotOwned, // Release of an object that was not owned.
162    ERROR_LEAK_START,
163    ErrorLeak,  // A memory leak due to excessive reference counts.
164    ErrorLeakReturned, // A memory leak due to the returning method not having
165                       // the correct naming conventions.
166    ErrorGCLeakReturned,
167    ErrorOverAutorelease,
168    ErrorReturnedNotOwned
169  };
170
171private:
172  Kind kind;
173  RetEffect::ObjKind okind;
174  unsigned Cnt;
175  unsigned ACnt;
176  QualType T;
177
178  RefVal(Kind k, RetEffect::ObjKind o, unsigned cnt, unsigned acnt, QualType t)
179  : kind(k), okind(o), Cnt(cnt), ACnt(acnt), T(t) {}
180
181public:
182  Kind getKind() const { return kind; }
183
184  RetEffect::ObjKind getObjKind() const { return okind; }
185
186  unsigned getCount() const { return Cnt; }
187  unsigned getAutoreleaseCount() const { return ACnt; }
188  unsigned getCombinedCounts() const { return Cnt + ACnt; }
189  void clearCounts() { Cnt = 0; ACnt = 0; }
190  void setCount(unsigned i) { Cnt = i; }
191  void setAutoreleaseCount(unsigned i) { ACnt = i; }
192
193  QualType getType() const { return T; }
194
195  bool isOwned() const {
196    return getKind() == Owned;
197  }
198
199  bool isNotOwned() const {
200    return getKind() == NotOwned;
201  }
202
203  bool isReturnedOwned() const {
204    return getKind() == ReturnedOwned;
205  }
206
207  bool isReturnedNotOwned() const {
208    return getKind() == ReturnedNotOwned;
209  }
210
211  static RefVal makeOwned(RetEffect::ObjKind o, QualType t,
212                          unsigned Count = 1) {
213    return RefVal(Owned, o, Count, 0, t);
214  }
215
216  static RefVal makeNotOwned(RetEffect::ObjKind o, QualType t,
217                             unsigned Count = 0) {
218    return RefVal(NotOwned, o, Count, 0, t);
219  }
220
221  // Comparison, profiling, and pretty-printing.
222
223  bool operator==(const RefVal& X) const {
224    return kind == X.kind && Cnt == X.Cnt && T == X.T && ACnt == X.ACnt;
225  }
226
227  RefVal operator-(size_t i) const {
228    return RefVal(getKind(), getObjKind(), getCount() - i,
229                  getAutoreleaseCount(), getType());
230  }
231
232  RefVal operator+(size_t i) const {
233    return RefVal(getKind(), getObjKind(), getCount() + i,
234                  getAutoreleaseCount(), getType());
235  }
236
237  RefVal operator^(Kind k) const {
238    return RefVal(k, getObjKind(), getCount(), getAutoreleaseCount(),
239                  getType());
240  }
241
242  RefVal autorelease() const {
243    return RefVal(getKind(), getObjKind(), getCount(), getAutoreleaseCount()+1,
244                  getType());
245  }
246
247  void Profile(llvm::FoldingSetNodeID& ID) const {
248    ID.AddInteger((unsigned) kind);
249    ID.AddInteger(Cnt);
250    ID.AddInteger(ACnt);
251    ID.Add(T);
252  }
253
254  void print(raw_ostream &Out) const;
255};
256
257void RefVal::print(raw_ostream &Out) const {
258  if (!T.isNull())
259    Out << "Tracked " << T.getAsString() << '/';
260
261  switch (getKind()) {
262    default: llvm_unreachable("Invalid RefVal kind");
263    case Owned: {
264      Out << "Owned";
265      unsigned cnt = getCount();
266      if (cnt) Out << " (+ " << cnt << ")";
267      break;
268    }
269
270    case NotOwned: {
271      Out << "NotOwned";
272      unsigned cnt = getCount();
273      if (cnt) Out << " (+ " << cnt << ")";
274      break;
275    }
276
277    case ReturnedOwned: {
278      Out << "ReturnedOwned";
279      unsigned cnt = getCount();
280      if (cnt) Out << " (+ " << cnt << ")";
281      break;
282    }
283
284    case ReturnedNotOwned: {
285      Out << "ReturnedNotOwned";
286      unsigned cnt = getCount();
287      if (cnt) Out << " (+ " << cnt << ")";
288      break;
289    }
290
291    case Released:
292      Out << "Released";
293      break;
294
295    case ErrorDeallocGC:
296      Out << "-dealloc (GC)";
297      break;
298
299    case ErrorDeallocNotOwned:
300      Out << "-dealloc (not-owned)";
301      break;
302
303    case ErrorLeak:
304      Out << "Leaked";
305      break;
306
307    case ErrorLeakReturned:
308      Out << "Leaked (Bad naming)";
309      break;
310
311    case ErrorGCLeakReturned:
312      Out << "Leaked (GC-ed at return)";
313      break;
314
315    case ErrorUseAfterRelease:
316      Out << "Use-After-Release [ERROR]";
317      break;
318
319    case ErrorReleaseNotOwned:
320      Out << "Release of Not-Owned [ERROR]";
321      break;
322
323    case RefVal::ErrorOverAutorelease:
324      Out << "Over autoreleased";
325      break;
326
327    case RefVal::ErrorReturnedNotOwned:
328      Out << "Non-owned object returned instead of owned";
329      break;
330  }
331
332  if (ACnt) {
333    Out << " [ARC +" << ACnt << ']';
334  }
335}
336} //end anonymous namespace
337
338//===----------------------------------------------------------------------===//
339// RefBindings - State used to track object reference counts.
340//===----------------------------------------------------------------------===//
341
342typedef llvm::ImmutableMap<SymbolRef, RefVal> RefBindings;
343
344namespace clang {
345namespace ento {
346template<>
347struct ProgramStateTrait<RefBindings>
348  : public ProgramStatePartialTrait<RefBindings> {
349  static void *GDMIndex() {
350    static int RefBIndex = 0;
351    return &RefBIndex;
352  }
353};
354}
355}
356
357//===----------------------------------------------------------------------===//
358// Function/Method behavior summaries.
359//===----------------------------------------------------------------------===//
360
361namespace {
362class RetainSummary {
363  /// Args - an ordered vector of (index, ArgEffect) pairs, where index
364  ///  specifies the argument (starting from 0).  This can be sparsely
365  ///  populated; arguments with no entry in Args use 'DefaultArgEffect'.
366  ArgEffects Args;
367
368  /// DefaultArgEffect - The default ArgEffect to apply to arguments that
369  ///  do not have an entry in Args.
370  ArgEffect   DefaultArgEffect;
371
372  /// Receiver - If this summary applies to an Objective-C message expression,
373  ///  this is the effect applied to the state of the receiver.
374  ArgEffect   Receiver;
375
376  /// Ret - The effect on the return value.  Used to indicate if the
377  ///  function/method call returns a new tracked symbol.
378  RetEffect   Ret;
379
380public:
381  RetainSummary(ArgEffects A, RetEffect R, ArgEffect defaultEff,
382                ArgEffect ReceiverEff)
383    : Args(A), DefaultArgEffect(defaultEff), Receiver(ReceiverEff), Ret(R) {}
384
385  /// getArg - Return the argument effect on the argument specified by
386  ///  idx (starting from 0).
387  ArgEffect getArg(unsigned idx) const {
388    if (const ArgEffect *AE = Args.lookup(idx))
389      return *AE;
390
391    return DefaultArgEffect;
392  }
393
394  void addArg(ArgEffects::Factory &af, unsigned idx, ArgEffect e) {
395    Args = af.add(Args, idx, e);
396  }
397
398  /// setDefaultArgEffect - Set the default argument effect.
399  void setDefaultArgEffect(ArgEffect E) {
400    DefaultArgEffect = E;
401  }
402
403  /// getRetEffect - Returns the effect on the return value of the call.
404  RetEffect getRetEffect() const { return Ret; }
405
406  /// setRetEffect - Set the effect of the return value of the call.
407  void setRetEffect(RetEffect E) { Ret = E; }
408
409
410  /// Sets the effect on the receiver of the message.
411  void setReceiverEffect(ArgEffect e) { Receiver = e; }
412
413  /// getReceiverEffect - Returns the effect on the receiver of the call.
414  ///  This is only meaningful if the summary applies to an ObjCMessageExpr*.
415  ArgEffect getReceiverEffect() const { return Receiver; }
416
417  /// Test if two retain summaries are identical. Note that merely equivalent
418  /// summaries are not necessarily identical (for example, if an explicit
419  /// argument effect matches the default effect).
420  bool operator==(const RetainSummary &Other) const {
421    return Args == Other.Args && DefaultArgEffect == Other.DefaultArgEffect &&
422           Receiver == Other.Receiver && Ret == Other.Ret;
423  }
424};
425} // end anonymous namespace
426
427//===----------------------------------------------------------------------===//
428// Data structures for constructing summaries.
429//===----------------------------------------------------------------------===//
430
431namespace {
432class ObjCSummaryKey {
433  IdentifierInfo* II;
434  Selector S;
435public:
436  ObjCSummaryKey(IdentifierInfo* ii, Selector s)
437    : II(ii), S(s) {}
438
439  ObjCSummaryKey(const ObjCInterfaceDecl *d, Selector s)
440    : II(d ? d->getIdentifier() : 0), S(s) {}
441
442  ObjCSummaryKey(const ObjCInterfaceDecl *d, IdentifierInfo *ii, Selector s)
443    : II(d ? d->getIdentifier() : ii), S(s) {}
444
445  ObjCSummaryKey(Selector s)
446    : II(0), S(s) {}
447
448  IdentifierInfo* getIdentifier() const { return II; }
449  Selector getSelector() const { return S; }
450};
451}
452
453namespace llvm {
454template <> struct DenseMapInfo<ObjCSummaryKey> {
455  static inline ObjCSummaryKey getEmptyKey() {
456    return ObjCSummaryKey(DenseMapInfo<IdentifierInfo*>::getEmptyKey(),
457                          DenseMapInfo<Selector>::getEmptyKey());
458  }
459
460  static inline ObjCSummaryKey getTombstoneKey() {
461    return ObjCSummaryKey(DenseMapInfo<IdentifierInfo*>::getTombstoneKey(),
462                          DenseMapInfo<Selector>::getTombstoneKey());
463  }
464
465  static unsigned getHashValue(const ObjCSummaryKey &V) {
466    return (DenseMapInfo<IdentifierInfo*>::getHashValue(V.getIdentifier())
467            & 0x88888888)
468        | (DenseMapInfo<Selector>::getHashValue(V.getSelector())
469            & 0x55555555);
470  }
471
472  static bool isEqual(const ObjCSummaryKey& LHS, const ObjCSummaryKey& RHS) {
473    return DenseMapInfo<IdentifierInfo*>::isEqual(LHS.getIdentifier(),
474                                                  RHS.getIdentifier()) &&
475           DenseMapInfo<Selector>::isEqual(LHS.getSelector(),
476                                           RHS.getSelector());
477  }
478
479};
480template <>
481struct isPodLike<ObjCSummaryKey> { static const bool value = true; };
482} // end llvm namespace
483
484namespace {
485class ObjCSummaryCache {
486  typedef llvm::DenseMap<ObjCSummaryKey, RetainSummary*> MapTy;
487  MapTy M;
488public:
489  ObjCSummaryCache() {}
490
491  RetainSummary* find(const ObjCInterfaceDecl *D, IdentifierInfo *ClsName,
492                Selector S) {
493    // Lookup the method using the decl for the class @interface.  If we
494    // have no decl, lookup using the class name.
495    return D ? find(D, S) : find(ClsName, S);
496  }
497
498  RetainSummary* find(const ObjCInterfaceDecl *D, Selector S) {
499    // Do a lookup with the (D,S) pair.  If we find a match return
500    // the iterator.
501    ObjCSummaryKey K(D, S);
502    MapTy::iterator I = M.find(K);
503
504    if (I != M.end() || !D)
505      return I->second;
506
507    // Walk the super chain.  If we find a hit with a parent, we'll end
508    // up returning that summary.  We actually allow that key (null,S), as
509    // we cache summaries for the null ObjCInterfaceDecl* to allow us to
510    // generate initial summaries without having to worry about NSObject
511    // being declared.
512    // FIXME: We may change this at some point.
513    for (ObjCInterfaceDecl *C=D->getSuperClass() ;; C=C->getSuperClass()) {
514      if ((I = M.find(ObjCSummaryKey(C, S))) != M.end())
515        break;
516
517      if (!C)
518        return NULL;
519    }
520
521    // Cache the summary with original key to make the next lookup faster
522    // and return the iterator.
523    RetainSummary *Summ = I->second;
524    M[K] = Summ;
525    return Summ;
526  }
527
528  RetainSummary* find(IdentifierInfo* II, Selector S) {
529    // FIXME: Class method lookup.  Right now we dont' have a good way
530    // of going between IdentifierInfo* and the class hierarchy.
531    MapTy::iterator I = M.find(ObjCSummaryKey(II, S));
532
533    if (I == M.end())
534      I = M.find(ObjCSummaryKey(S));
535
536    return I == M.end() ? NULL : I->second;
537  }
538
539  RetainSummary*& operator[](ObjCSummaryKey K) {
540    return M[K];
541  }
542
543  RetainSummary*& operator[](Selector S) {
544    return M[ ObjCSummaryKey(S) ];
545  }
546};
547} // end anonymous namespace
548
549//===----------------------------------------------------------------------===//
550// Data structures for managing collections of summaries.
551//===----------------------------------------------------------------------===//
552
553namespace {
554class RetainSummaryManager {
555
556  //==-----------------------------------------------------------------==//
557  //  Typedefs.
558  //==-----------------------------------------------------------------==//
559
560  typedef llvm::DenseMap<const FunctionDecl*, RetainSummary*>
561          FuncSummariesTy;
562
563  typedef ObjCSummaryCache ObjCMethodSummariesTy;
564
565  //==-----------------------------------------------------------------==//
566  //  Data.
567  //==-----------------------------------------------------------------==//
568
569  /// Ctx - The ASTContext object for the analyzed ASTs.
570  ASTContext &Ctx;
571
572  /// GCEnabled - Records whether or not the analyzed code runs in GC mode.
573  const bool GCEnabled;
574
575  /// Records whether or not the analyzed code runs in ARC mode.
576  const bool ARCEnabled;
577
578  /// FuncSummaries - A map from FunctionDecls to summaries.
579  FuncSummariesTy FuncSummaries;
580
581  /// ObjCClassMethodSummaries - A map from selectors (for instance methods)
582  ///  to summaries.
583  ObjCMethodSummariesTy ObjCClassMethodSummaries;
584
585  /// ObjCMethodSummaries - A map from selectors to summaries.
586  ObjCMethodSummariesTy ObjCMethodSummaries;
587
588  /// BPAlloc - A BumpPtrAllocator used for allocating summaries, ArgEffects,
589  ///  and all other data used by the checker.
590  llvm::BumpPtrAllocator BPAlloc;
591
592  /// AF - A factory for ArgEffects objects.
593  ArgEffects::Factory AF;
594
595  /// ScratchArgs - A holding buffer for construct ArgEffects.
596  ArgEffects ScratchArgs;
597
598  /// ObjCAllocRetE - Default return effect for methods returning Objective-C
599  ///  objects.
600  RetEffect ObjCAllocRetE;
601
602  /// ObjCInitRetE - Default return effect for init methods returning
603  ///   Objective-C objects.
604  RetEffect ObjCInitRetE;
605
606  RetainSummary DefaultSummary;
607  RetainSummary* StopSummary;
608
609  //==-----------------------------------------------------------------==//
610  //  Methods.
611  //==-----------------------------------------------------------------==//
612
613  /// getArgEffects - Returns a persistent ArgEffects object based on the
614  ///  data in ScratchArgs.
615  ArgEffects getArgEffects();
616
617  enum UnaryFuncKind { cfretain, cfrelease, cfmakecollectable };
618
619public:
620  RetEffect getObjAllocRetEffect() const { return ObjCAllocRetE; }
621
622  RetainSummary* getUnarySummary(const FunctionType* FT, UnaryFuncKind func);
623
624  RetainSummary* getCFSummaryCreateRule(const FunctionDecl *FD);
625  RetainSummary* getCFSummaryGetRule(const FunctionDecl *FD);
626  RetainSummary* getCFCreateGetRuleSummary(const FunctionDecl *FD,
627                                           StringRef FName);
628
629  RetainSummary* getPersistentSummary(ArgEffects AE, RetEffect RetEff,
630                                      ArgEffect ReceiverEff = DoNothing,
631                                      ArgEffect DefaultEff = MayEscape);
632
633  RetainSummary* getPersistentSummary(RetEffect RE,
634                                      ArgEffect ReceiverEff = DoNothing,
635                                      ArgEffect DefaultEff = MayEscape) {
636    return getPersistentSummary(getArgEffects(), RE, ReceiverEff, DefaultEff);
637  }
638
639  RetainSummary *getPersistentStopSummary() {
640    if (StopSummary)
641      return StopSummary;
642
643    StopSummary = getPersistentSummary(RetEffect::MakeNoRet(),
644                                       StopTracking, StopTracking);
645
646    return StopSummary;
647  }
648
649  RetainSummary *getInitMethodSummary(QualType RetTy);
650
651  void InitializeClassMethodSummaries();
652  void InitializeMethodSummaries();
653private:
654  void addNSObjectClsMethSummary(Selector S, RetainSummary *Summ) {
655    ObjCClassMethodSummaries[S] = Summ;
656  }
657
658  void addNSObjectMethSummary(Selector S, RetainSummary *Summ) {
659    ObjCMethodSummaries[S] = Summ;
660  }
661
662  void addClassMethSummary(const char* Cls, const char* nullaryName,
663                           RetainSummary *Summ) {
664    IdentifierInfo* ClsII = &Ctx.Idents.get(Cls);
665    Selector S = GetNullarySelector(nullaryName, Ctx);
666    ObjCClassMethodSummaries[ObjCSummaryKey(ClsII, S)]  = Summ;
667  }
668
669  void addInstMethSummary(const char* Cls, const char* nullaryName,
670                          RetainSummary *Summ) {
671    IdentifierInfo* ClsII = &Ctx.Idents.get(Cls);
672    Selector S = GetNullarySelector(nullaryName, Ctx);
673    ObjCMethodSummaries[ObjCSummaryKey(ClsII, S)]  = Summ;
674  }
675
676  Selector generateSelector(va_list argp) {
677    SmallVector<IdentifierInfo*, 10> II;
678
679    while (const char* s = va_arg(argp, const char*))
680      II.push_back(&Ctx.Idents.get(s));
681
682    return Ctx.Selectors.getSelector(II.size(), &II[0]);
683  }
684
685  void addMethodSummary(IdentifierInfo *ClsII, ObjCMethodSummariesTy& Summaries,
686                        RetainSummary* Summ, va_list argp) {
687    Selector S = generateSelector(argp);
688    Summaries[ObjCSummaryKey(ClsII, S)] = Summ;
689  }
690
691  void addInstMethSummary(const char* Cls, RetainSummary* Summ, ...) {
692    va_list argp;
693    va_start(argp, Summ);
694    addMethodSummary(&Ctx.Idents.get(Cls), ObjCMethodSummaries, Summ, argp);
695    va_end(argp);
696  }
697
698  void addClsMethSummary(const char* Cls, RetainSummary* Summ, ...) {
699    va_list argp;
700    va_start(argp, Summ);
701    addMethodSummary(&Ctx.Idents.get(Cls),ObjCClassMethodSummaries, Summ, argp);
702    va_end(argp);
703  }
704
705  void addClsMethSummary(IdentifierInfo *II, RetainSummary* Summ, ...) {
706    va_list argp;
707    va_start(argp, Summ);
708    addMethodSummary(II, ObjCClassMethodSummaries, Summ, argp);
709    va_end(argp);
710  }
711
712public:
713
714  RetainSummaryManager(ASTContext &ctx, bool gcenabled, bool usesARC)
715   : Ctx(ctx),
716     GCEnabled(gcenabled),
717     ARCEnabled(usesARC),
718     AF(BPAlloc), ScratchArgs(AF.getEmptyMap()),
719     ObjCAllocRetE(gcenabled
720                    ? RetEffect::MakeGCNotOwned()
721                    : (usesARC ? RetEffect::MakeARCNotOwned()
722                               : RetEffect::MakeOwned(RetEffect::ObjC, true))),
723     ObjCInitRetE(gcenabled
724                    ? RetEffect::MakeGCNotOwned()
725                    : (usesARC ? RetEffect::MakeARCNotOwned()
726                               : RetEffect::MakeOwnedWhenTrackedReceiver())),
727     DefaultSummary(AF.getEmptyMap() /* per-argument effects (none) */,
728                    RetEffect::MakeNoRet() /* return effect */,
729                    MayEscape, /* default argument effect */
730                    DoNothing /* receiver effect */),
731     StopSummary(0) {
732
733    InitializeClassMethodSummaries();
734    InitializeMethodSummaries();
735  }
736
737  RetainSummary* getSummary(const FunctionDecl *FD);
738
739  RetainSummary *getInstanceMethodSummary(const ObjCMessage &msg,
740                                          const ProgramState *state,
741                                          const LocationContext *LC);
742
743  RetainSummary* getInstanceMethodSummary(const ObjCMessage &msg,
744                                          const ObjCInterfaceDecl *ID) {
745    return getInstanceMethodSummary(msg.getSelector(), 0,
746                            ID, msg.getMethodDecl(), msg.getType(Ctx));
747  }
748
749  RetainSummary* getInstanceMethodSummary(Selector S, IdentifierInfo *ClsName,
750                                          const ObjCInterfaceDecl *ID,
751                                          const ObjCMethodDecl *MD,
752                                          QualType RetTy);
753
754  RetainSummary *getClassMethodSummary(Selector S, IdentifierInfo *ClsName,
755                                       const ObjCInterfaceDecl *ID,
756                                       const ObjCMethodDecl *MD,
757                                       QualType RetTy);
758
759  RetainSummary *getClassMethodSummary(const ObjCMessage &msg) {
760    const ObjCInterfaceDecl *Class = 0;
761    if (!msg.isInstanceMessage())
762      Class = msg.getReceiverInterface();
763
764    return getClassMethodSummary(msg.getSelector(),
765                                 Class? Class->getIdentifier() : 0,
766                                 Class,
767                                 msg.getMethodDecl(), msg.getType(Ctx));
768  }
769
770  /// getMethodSummary - This version of getMethodSummary is used to query
771  ///  the summary for the current method being analyzed.
772  RetainSummary *getMethodSummary(const ObjCMethodDecl *MD) {
773    // FIXME: Eventually this should be unneeded.
774    const ObjCInterfaceDecl *ID = MD->getClassInterface();
775    Selector S = MD->getSelector();
776    IdentifierInfo *ClsName = ID->getIdentifier();
777    QualType ResultTy = MD->getResultType();
778
779    if (MD->isInstanceMethod())
780      return getInstanceMethodSummary(S, ClsName, ID, MD, ResultTy);
781    else
782      return getClassMethodSummary(S, ClsName, ID, MD, ResultTy);
783  }
784
785  RetainSummary* getCommonMethodSummary(const ObjCMethodDecl *MD,
786                                        Selector S, QualType RetTy);
787
788  void updateSummaryFromAnnotations(RetainSummary *&Summ,
789                                    const ObjCMethodDecl *MD);
790
791  void updateSummaryFromAnnotations(RetainSummary *&Summ,
792                                    const FunctionDecl *FD);
793
794  bool isGCEnabled() const { return GCEnabled; }
795
796  bool isARCEnabled() const { return ARCEnabled; }
797
798  bool isARCorGCEnabled() const { return GCEnabled || ARCEnabled; }
799
800  RetainSummary *copySummary(RetainSummary *OldSumm) {
801    RetainSummary *Summ = (RetainSummary*) BPAlloc.Allocate<RetainSummary>();
802    new (Summ) RetainSummary(*OldSumm);
803    return Summ;
804  }
805};
806
807// Used to avoid allocating long-term (BPAlloc'd) memory for default retain
808// summaries. If a function or method looks like it has a default summary, but
809// it has annotations, the annotations are added to the stack-based template
810// and then copied into managed memory.
811class RetainSummaryTemplate {
812  RetainSummaryManager &Manager;
813  RetainSummary *&RealSummary;
814  RetainSummary ScratchSummary;
815  bool Accessed;
816public:
817  RetainSummaryTemplate(RetainSummary *&real, const RetainSummary &base,
818                        RetainSummaryManager &manager)
819  : Manager(manager), RealSummary(real), ScratchSummary(base), Accessed(false)
820  {}
821
822  ~RetainSummaryTemplate() {
823    if (!RealSummary && Accessed)
824      RealSummary = Manager.copySummary(&ScratchSummary);
825  }
826
827  RetainSummary &operator*() {
828    Accessed = true;
829    return RealSummary ? *RealSummary : ScratchSummary;
830  }
831
832  RetainSummary *operator->() {
833    Accessed = true;
834    return RealSummary ? RealSummary : &ScratchSummary;
835  }
836};
837
838} // end anonymous namespace
839
840//===----------------------------------------------------------------------===//
841// Implementation of checker data structures.
842//===----------------------------------------------------------------------===//
843
844ArgEffects RetainSummaryManager::getArgEffects() {
845  ArgEffects AE = ScratchArgs;
846  ScratchArgs = AF.getEmptyMap();
847  return AE;
848}
849
850RetainSummary*
851RetainSummaryManager::getPersistentSummary(ArgEffects AE, RetEffect RetEff,
852                                           ArgEffect ReceiverEff,
853                                           ArgEffect DefaultEff) {
854  // Create the summary and return it.
855  RetainSummary *Summ = (RetainSummary*) BPAlloc.Allocate<RetainSummary>();
856  new (Summ) RetainSummary(AE, RetEff, DefaultEff, ReceiverEff);
857  return Summ;
858}
859
860//===----------------------------------------------------------------------===//
861// Summary creation for functions (largely uses of Core Foundation).
862//===----------------------------------------------------------------------===//
863
864static bool isRetain(const FunctionDecl *FD, StringRef FName) {
865  return FName.endswith("Retain");
866}
867
868static bool isRelease(const FunctionDecl *FD, StringRef FName) {
869  return FName.endswith("Release");
870}
871
872static bool isMakeCollectable(const FunctionDecl *FD, StringRef FName) {
873  // FIXME: Remove FunctionDecl parameter.
874  // FIXME: Is it really okay if MakeCollectable isn't a suffix?
875  return FName.find("MakeCollectable") != StringRef::npos;
876}
877
878RetainSummary* RetainSummaryManager::getSummary(const FunctionDecl *FD) {
879  // Look up a summary in our cache of FunctionDecls -> Summaries.
880  FuncSummariesTy::iterator I = FuncSummaries.find(FD);
881  if (I != FuncSummaries.end())
882    return I->second;
883
884  // No summary?  Generate one.
885  RetainSummary *S = 0;
886
887  do {
888    // We generate "stop" summaries for implicitly defined functions.
889    if (FD->isImplicit()) {
890      S = getPersistentStopSummary();
891      break;
892    }
893    // For C++ methods, generate an implicit "stop" summary as well.  We
894    // can relax this once we have a clear policy for C++ methods and
895    // ownership attributes.
896    if (isa<CXXMethodDecl>(FD)) {
897      S = getPersistentStopSummary();
898      break;
899    }
900
901    // [PR 3337] Use 'getAs<FunctionType>' to strip away any typedefs on the
902    // function's type.
903    const FunctionType* FT = FD->getType()->getAs<FunctionType>();
904    const IdentifierInfo *II = FD->getIdentifier();
905    if (!II)
906      break;
907
908    StringRef FName = II->getName();
909
910    // Strip away preceding '_'.  Doing this here will effect all the checks
911    // down below.
912    FName = FName.substr(FName.find_first_not_of('_'));
913
914    // Inspect the result type.
915    QualType RetTy = FT->getResultType();
916
917    // FIXME: This should all be refactored into a chain of "summary lookup"
918    //  filters.
919    assert(ScratchArgs.isEmpty());
920
921    if (FName == "pthread_create") {
922      // Part of: <rdar://problem/7299394>.  This will be addressed
923      // better with IPA.
924      S = getPersistentStopSummary();
925    } else if (FName == "NSMakeCollectable") {
926      // Handle: id NSMakeCollectable(CFTypeRef)
927      S = (RetTy->isObjCIdType())
928          ? getUnarySummary(FT, cfmakecollectable)
929          : getPersistentStopSummary();
930    } else if (FName == "IOBSDNameMatching" ||
931               FName == "IOServiceMatching" ||
932               FName == "IOServiceNameMatching" ||
933               FName == "IORegistryEntryIDMatching" ||
934               FName == "IOOpenFirmwarePathMatching") {
935      // Part of <rdar://problem/6961230>. (IOKit)
936      // This should be addressed using a API table.
937      S = getPersistentSummary(RetEffect::MakeOwned(RetEffect::CF, true),
938                               DoNothing, DoNothing);
939    } else if (FName == "IOServiceGetMatchingService" ||
940               FName == "IOServiceGetMatchingServices") {
941      // FIXES: <rdar://problem/6326900>
942      // This should be addressed using a API table.  This strcmp is also
943      // a little gross, but there is no need to super optimize here.
944      ScratchArgs = AF.add(ScratchArgs, 1, DecRef);
945      S = getPersistentSummary(RetEffect::MakeNoRet(), DoNothing, DoNothing);
946    } else if (FName == "IOServiceAddNotification" ||
947               FName == "IOServiceAddMatchingNotification") {
948      // Part of <rdar://problem/6961230>. (IOKit)
949      // This should be addressed using a API table.
950      ScratchArgs = AF.add(ScratchArgs, 2, DecRef);
951      S = getPersistentSummary(RetEffect::MakeNoRet(), DoNothing, DoNothing);
952    } else if (FName == "CVPixelBufferCreateWithBytes") {
953      // FIXES: <rdar://problem/7283567>
954      // Eventually this can be improved by recognizing that the pixel
955      // buffer passed to CVPixelBufferCreateWithBytes is released via
956      // a callback and doing full IPA to make sure this is done correctly.
957      // FIXME: This function has an out parameter that returns an
958      // allocated object.
959      ScratchArgs = AF.add(ScratchArgs, 7, StopTracking);
960      S = getPersistentSummary(RetEffect::MakeNoRet(), DoNothing, DoNothing);
961    } else if (FName == "CGBitmapContextCreateWithData") {
962      // FIXES: <rdar://problem/7358899>
963      // Eventually this can be improved by recognizing that 'releaseInfo'
964      // passed to CGBitmapContextCreateWithData is released via
965      // a callback and doing full IPA to make sure this is done correctly.
966      ScratchArgs = AF.add(ScratchArgs, 8, StopTracking);
967      S = getPersistentSummary(RetEffect::MakeOwned(RetEffect::CF, true),
968                               DoNothing, DoNothing);
969    } else if (FName == "CVPixelBufferCreateWithPlanarBytes") {
970      // FIXES: <rdar://problem/7283567>
971      // Eventually this can be improved by recognizing that the pixel
972      // buffer passed to CVPixelBufferCreateWithPlanarBytes is released
973      // via a callback and doing full IPA to make sure this is done
974      // correctly.
975      ScratchArgs = AF.add(ScratchArgs, 12, StopTracking);
976      S = getPersistentSummary(RetEffect::MakeNoRet(), DoNothing, DoNothing);
977    }
978
979    // Did we get a summary?
980    if (S)
981      break;
982
983    // Enable this code once the semantics of NSDeallocateObject are resolved
984    // for GC.  <rdar://problem/6619988>
985#if 0
986    // Handle: NSDeallocateObject(id anObject);
987    // This method does allow 'nil' (although we don't check it now).
988    if (strcmp(FName, "NSDeallocateObject") == 0) {
989      return RetTy == Ctx.VoidTy
990        ? getPersistentSummary(RetEffect::MakeNoRet(), DoNothing, Dealloc)
991        : getPersistentStopSummary();
992    }
993#endif
994
995    if (RetTy->isPointerType()) {
996      // For CoreFoundation ('CF') types.
997      if (cocoa::isRefType(RetTy, "CF", FName)) {
998        if (isRetain(FD, FName))
999          S = getUnarySummary(FT, cfretain);
1000        else if (isMakeCollectable(FD, FName))
1001          S = getUnarySummary(FT, cfmakecollectable);
1002        else
1003          S = getCFCreateGetRuleSummary(FD, FName);
1004
1005        break;
1006      }
1007
1008      // For CoreGraphics ('CG') types.
1009      if (cocoa::isRefType(RetTy, "CG", FName)) {
1010        if (isRetain(FD, FName))
1011          S = getUnarySummary(FT, cfretain);
1012        else
1013          S = getCFCreateGetRuleSummary(FD, FName);
1014
1015        break;
1016      }
1017
1018      // For the Disk Arbitration API (DiskArbitration/DADisk.h)
1019      if (cocoa::isRefType(RetTy, "DADisk") ||
1020          cocoa::isRefType(RetTy, "DADissenter") ||
1021          cocoa::isRefType(RetTy, "DASessionRef")) {
1022        S = getCFCreateGetRuleSummary(FD, FName);
1023        break;
1024      }
1025
1026      break;
1027    }
1028
1029    // Check for release functions, the only kind of functions that we care
1030    // about that don't return a pointer type.
1031    if (FName[0] == 'C' && (FName[1] == 'F' || FName[1] == 'G')) {
1032      // Test for 'CGCF'.
1033      FName = FName.substr(FName.startswith("CGCF") ? 4 : 2);
1034
1035      if (isRelease(FD, FName))
1036        S = getUnarySummary(FT, cfrelease);
1037      else {
1038        assert (ScratchArgs.isEmpty());
1039        // Remaining CoreFoundation and CoreGraphics functions.
1040        // We use to assume that they all strictly followed the ownership idiom
1041        // and that ownership cannot be transferred.  While this is technically
1042        // correct, many methods allow a tracked object to escape.  For example:
1043        //
1044        //   CFMutableDictionaryRef x = CFDictionaryCreateMutable(...);
1045        //   CFDictionaryAddValue(y, key, x);
1046        //   CFRelease(x);
1047        //   ... it is okay to use 'x' since 'y' has a reference to it
1048        //
1049        // We handle this and similar cases with the follow heuristic.  If the
1050        // function name contains "InsertValue", "SetValue", "AddValue",
1051        // "AppendValue", or "SetAttribute", then we assume that arguments may
1052        // "escape."  This means that something else holds on to the object,
1053        // allowing it be used even after its local retain count drops to 0.
1054        ArgEffect E = (StrInStrNoCase(FName, "InsertValue") != StringRef::npos||
1055                       StrInStrNoCase(FName, "AddValue") != StringRef::npos ||
1056                       StrInStrNoCase(FName, "SetValue") != StringRef::npos ||
1057                       StrInStrNoCase(FName, "AppendValue") != StringRef::npos||
1058                       StrInStrNoCase(FName, "SetAttribute") != StringRef::npos)
1059                      ? MayEscape : DoNothing;
1060
1061        S = getPersistentSummary(RetEffect::MakeNoRet(), DoNothing, E);
1062      }
1063    }
1064  }
1065  while (0);
1066
1067  // Annotations override defaults.
1068  updateSummaryFromAnnotations(S, FD);
1069
1070  FuncSummaries[FD] = S;
1071  return S;
1072}
1073
1074RetainSummary*
1075RetainSummaryManager::getCFCreateGetRuleSummary(const FunctionDecl *FD,
1076                                                StringRef FName) {
1077  if (coreFoundation::followsCreateRule(FName))
1078    return getCFSummaryCreateRule(FD);
1079
1080  return getCFSummaryGetRule(FD);
1081}
1082
1083RetainSummary*
1084RetainSummaryManager::getUnarySummary(const FunctionType* FT,
1085                                      UnaryFuncKind func) {
1086
1087  // Sanity check that this is *really* a unary function.  This can
1088  // happen if people do weird things.
1089  const FunctionProtoType* FTP = dyn_cast<FunctionProtoType>(FT);
1090  if (!FTP || FTP->getNumArgs() != 1)
1091    return getPersistentStopSummary();
1092
1093  assert (ScratchArgs.isEmpty());
1094
1095  ArgEffect Effect;
1096  switch (func) {
1097    case cfretain: Effect = IncRef; break;
1098    case cfrelease: Effect = DecRef; break;
1099    case cfmakecollectable: Effect = MakeCollectable; break;
1100    default: llvm_unreachable("Not a supported unary function.");
1101  }
1102
1103  ScratchArgs = AF.add(ScratchArgs, 0, Effect);
1104  return getPersistentSummary(RetEffect::MakeNoRet(), DoNothing, DoNothing);
1105}
1106
1107RetainSummary*
1108RetainSummaryManager::getCFSummaryCreateRule(const FunctionDecl *FD) {
1109  assert (ScratchArgs.isEmpty());
1110
1111  return getPersistentSummary(RetEffect::MakeOwned(RetEffect::CF, true));
1112}
1113
1114RetainSummary*
1115RetainSummaryManager::getCFSummaryGetRule(const FunctionDecl *FD) {
1116  assert (ScratchArgs.isEmpty());
1117  return getPersistentSummary(RetEffect::MakeNotOwned(RetEffect::CF),
1118                              DoNothing, DoNothing);
1119}
1120
1121//===----------------------------------------------------------------------===//
1122// Summary creation for Selectors.
1123//===----------------------------------------------------------------------===//
1124
1125RetainSummary*
1126RetainSummaryManager::getInitMethodSummary(QualType RetTy) {
1127  assert(ScratchArgs.isEmpty());
1128  // 'init' methods conceptually return a newly allocated object and claim
1129  // the receiver.
1130  if (cocoa::isCocoaObjectRef(RetTy) ||
1131      coreFoundation::isCFObjectRef(RetTy))
1132    return getPersistentSummary(ObjCInitRetE, DecRefMsg);
1133
1134  return 0;
1135}
1136
1137void
1138RetainSummaryManager::updateSummaryFromAnnotations(RetainSummary *&Summ,
1139                                                   const FunctionDecl *FD) {
1140  if (!FD)
1141    return;
1142
1143  RetainSummaryTemplate Template(Summ, DefaultSummary, *this);
1144
1145  // Effects on the parameters.
1146  unsigned parm_idx = 0;
1147  for (FunctionDecl::param_const_iterator pi = FD->param_begin(),
1148         pe = FD->param_end(); pi != pe; ++pi, ++parm_idx) {
1149    const ParmVarDecl *pd = *pi;
1150    if (pd->getAttr<NSConsumedAttr>()) {
1151      if (!GCEnabled) {
1152        Template->addArg(AF, parm_idx, DecRef);
1153      }
1154    } else if (pd->getAttr<CFConsumedAttr>()) {
1155      Template->addArg(AF, parm_idx, DecRef);
1156    }
1157  }
1158
1159  QualType RetTy = FD->getResultType();
1160
1161  // Determine if there is a special return effect for this method.
1162  if (cocoa::isCocoaObjectRef(RetTy)) {
1163    if (FD->getAttr<NSReturnsRetainedAttr>()) {
1164      Template->setRetEffect(ObjCAllocRetE);
1165    }
1166    else if (FD->getAttr<CFReturnsRetainedAttr>()) {
1167      Template->setRetEffect(RetEffect::MakeOwned(RetEffect::CF, true));
1168    }
1169    else if (FD->getAttr<NSReturnsNotRetainedAttr>()) {
1170      Template->setRetEffect(RetEffect::MakeNotOwned(RetEffect::ObjC));
1171    }
1172    else if (FD->getAttr<CFReturnsNotRetainedAttr>()) {
1173      Template->setRetEffect(RetEffect::MakeNotOwned(RetEffect::CF));
1174    }
1175  } else if (RetTy->getAs<PointerType>()) {
1176    if (FD->getAttr<CFReturnsRetainedAttr>()) {
1177      Template->setRetEffect(RetEffect::MakeOwned(RetEffect::CF, true));
1178    }
1179    else if (FD->getAttr<CFReturnsNotRetainedAttr>()) {
1180      Template->setRetEffect(RetEffect::MakeNotOwned(RetEffect::CF));
1181    }
1182  }
1183}
1184
1185void
1186RetainSummaryManager::updateSummaryFromAnnotations(RetainSummary *&Summ,
1187                                                  const ObjCMethodDecl *MD) {
1188  if (!MD)
1189    return;
1190
1191  RetainSummaryTemplate Template(Summ, DefaultSummary, *this);
1192
1193  bool isTrackedLoc = false;
1194
1195  // Effects on the receiver.
1196  if (MD->getAttr<NSConsumesSelfAttr>()) {
1197    if (!GCEnabled)
1198      Template->setReceiverEffect(DecRefMsg);
1199  }
1200
1201  // Effects on the parameters.
1202  unsigned parm_idx = 0;
1203  for (ObjCMethodDecl::param_iterator pi=MD->param_begin(), pe=MD->param_end();
1204       pi != pe; ++pi, ++parm_idx) {
1205    const ParmVarDecl *pd = *pi;
1206    if (pd->getAttr<NSConsumedAttr>()) {
1207      if (!GCEnabled)
1208        Template->addArg(AF, parm_idx, DecRef);
1209    }
1210    else if(pd->getAttr<CFConsumedAttr>()) {
1211      Template->addArg(AF, parm_idx, DecRef);
1212    }
1213  }
1214
1215  // Determine if there is a special return effect for this method.
1216  if (cocoa::isCocoaObjectRef(MD->getResultType())) {
1217    if (MD->getAttr<NSReturnsRetainedAttr>()) {
1218      Template->setRetEffect(ObjCAllocRetE);
1219      return;
1220    }
1221    if (MD->getAttr<NSReturnsNotRetainedAttr>()) {
1222      Template->setRetEffect(RetEffect::MakeNotOwned(RetEffect::ObjC));
1223      return;
1224    }
1225
1226    isTrackedLoc = true;
1227  } else {
1228    isTrackedLoc = MD->getResultType()->getAs<PointerType>() != NULL;
1229  }
1230
1231  if (isTrackedLoc) {
1232    if (MD->getAttr<CFReturnsRetainedAttr>())
1233      Template->setRetEffect(RetEffect::MakeOwned(RetEffect::CF, true));
1234    else if (MD->getAttr<CFReturnsNotRetainedAttr>())
1235      Template->setRetEffect(RetEffect::MakeNotOwned(RetEffect::CF));
1236  }
1237}
1238
1239RetainSummary*
1240RetainSummaryManager::getCommonMethodSummary(const ObjCMethodDecl *MD,
1241                                             Selector S, QualType RetTy) {
1242
1243  if (MD) {
1244    // Scan the method decl for 'void*' arguments.  These should be treated
1245    // as 'StopTracking' because they are often used with delegates.
1246    // Delegates are a frequent form of false positives with the retain
1247    // count checker.
1248    unsigned i = 0;
1249    for (ObjCMethodDecl::param_iterator I = MD->param_begin(),
1250         E = MD->param_end(); I != E; ++I, ++i)
1251      if (ParmVarDecl *PD = *I) {
1252        QualType Ty = Ctx.getCanonicalType(PD->getType());
1253        if (Ty.getLocalUnqualifiedType() == Ctx.VoidPtrTy)
1254          ScratchArgs = AF.add(ScratchArgs, i, StopTracking);
1255      }
1256  }
1257
1258  // Any special effect for the receiver?
1259  ArgEffect ReceiverEff = DoNothing;
1260
1261  // If one of the arguments in the selector has the keyword 'delegate' we
1262  // should stop tracking the reference count for the receiver.  This is
1263  // because the reference count is quite possibly handled by a delegate
1264  // method.
1265  if (S.isKeywordSelector()) {
1266    const std::string &str = S.getAsString();
1267    assert(!str.empty());
1268    if (StrInStrNoCase(str, "delegate:") != StringRef::npos)
1269      ReceiverEff = StopTracking;
1270  }
1271
1272  // Look for methods that return an owned object.
1273  if (cocoa::isCocoaObjectRef(RetTy)) {
1274    // EXPERIMENTAL: assume the Cocoa conventions for all objects returned
1275    //  by instance methods.
1276    RetEffect E = cocoa::followsFundamentalRule(S, MD)
1277                  ? ObjCAllocRetE : RetEffect::MakeNotOwned(RetEffect::ObjC);
1278
1279    return getPersistentSummary(E, ReceiverEff, MayEscape);
1280  }
1281
1282  // Look for methods that return an owned core foundation object.
1283  if (coreFoundation::isCFObjectRef(RetTy)) {
1284    RetEffect E = cocoa::followsFundamentalRule(S, MD)
1285      ? RetEffect::MakeOwned(RetEffect::CF, true)
1286      : RetEffect::MakeNotOwned(RetEffect::CF);
1287
1288    return getPersistentSummary(E, ReceiverEff, MayEscape);
1289  }
1290
1291  if (ScratchArgs.isEmpty() && ReceiverEff == DoNothing)
1292    return 0;
1293
1294  return getPersistentSummary(RetEffect::MakeNoRet(), ReceiverEff, MayEscape);
1295}
1296
1297RetainSummary*
1298RetainSummaryManager::getInstanceMethodSummary(const ObjCMessage &msg,
1299                                               const ProgramState *state,
1300                                               const LocationContext *LC) {
1301
1302  // We need the type-information of the tracked receiver object
1303  // Retrieve it from the state.
1304  const Expr *Receiver = msg.getInstanceReceiver();
1305  const ObjCInterfaceDecl *ID = 0;
1306
1307  // FIXME: Is this really working as expected?  There are cases where
1308  //  we just use the 'ID' from the message expression.
1309  SVal receiverV;
1310
1311  if (Receiver) {
1312    receiverV = state->getSValAsScalarOrLoc(Receiver);
1313
1314    // FIXME: Eventually replace the use of state->get<RefBindings> with
1315    // a generic API for reasoning about the Objective-C types of symbolic
1316    // objects.
1317    if (SymbolRef Sym = receiverV.getAsLocSymbol())
1318      if (const RefVal *T = state->get<RefBindings>(Sym))
1319        if (const ObjCObjectPointerType* PT =
1320            T->getType()->getAs<ObjCObjectPointerType>())
1321          ID = PT->getInterfaceDecl();
1322
1323    // FIXME: this is a hack.  This may or may not be the actual method
1324    //  that is called.
1325    if (!ID) {
1326      if (const ObjCObjectPointerType *PT =
1327          Receiver->getType()->getAs<ObjCObjectPointerType>())
1328        ID = PT->getInterfaceDecl();
1329    }
1330  } else {
1331    // FIXME: Hack for 'super'.
1332    ID = msg.getReceiverInterface();
1333  }
1334
1335  // FIXME: The receiver could be a reference to a class, meaning that
1336  //  we should use the class method.
1337  return getInstanceMethodSummary(msg, ID);
1338}
1339
1340RetainSummary*
1341RetainSummaryManager::getInstanceMethodSummary(Selector S,
1342                                               IdentifierInfo *ClsName,
1343                                               const ObjCInterfaceDecl *ID,
1344                                               const ObjCMethodDecl *MD,
1345                                               QualType RetTy) {
1346
1347  // Look up a summary in our summary cache.
1348  RetainSummary *Summ = ObjCMethodSummaries.find(ID, ClsName, S);
1349
1350  if (!Summ) {
1351    assert(ScratchArgs.isEmpty());
1352
1353    // "initXXX": pass-through for receiver.
1354    if (cocoa::deriveNamingConvention(S, MD) == cocoa::InitRule)
1355      Summ = getInitMethodSummary(RetTy);
1356    else
1357      Summ = getCommonMethodSummary(MD, S, RetTy);
1358
1359    // Annotations override defaults.
1360    updateSummaryFromAnnotations(Summ, MD);
1361
1362    // Memoize the summary.
1363    ObjCMethodSummaries[ObjCSummaryKey(ID, ClsName, S)] = Summ;
1364  }
1365
1366  return Summ;
1367}
1368
1369RetainSummary*
1370RetainSummaryManager::getClassMethodSummary(Selector S, IdentifierInfo *ClsName,
1371                                            const ObjCInterfaceDecl *ID,
1372                                            const ObjCMethodDecl *MD,
1373                                            QualType RetTy) {
1374
1375  assert(ClsName && "Class name must be specified.");
1376  RetainSummary *Summ = ObjCClassMethodSummaries.find(ID, ClsName, S);
1377
1378  if (!Summ) {
1379    Summ = getCommonMethodSummary(MD, S, RetTy);
1380
1381    // Annotations override defaults.
1382    updateSummaryFromAnnotations(Summ, MD);
1383
1384    // Memoize the summary.
1385    ObjCClassMethodSummaries[ObjCSummaryKey(ID, ClsName, S)] = Summ;
1386  }
1387
1388  return Summ;
1389}
1390
1391void RetainSummaryManager::InitializeClassMethodSummaries() {
1392  assert(ScratchArgs.isEmpty());
1393  // Create the [NSAssertionHandler currentHander] summary.
1394  addClassMethSummary("NSAssertionHandler", "currentHandler",
1395                getPersistentSummary(RetEffect::MakeNotOwned(RetEffect::ObjC)));
1396
1397  // Create the [NSAutoreleasePool addObject:] summary.
1398  ScratchArgs = AF.add(ScratchArgs, 0, Autorelease);
1399  addClassMethSummary("NSAutoreleasePool", "addObject",
1400                      getPersistentSummary(RetEffect::MakeNoRet(),
1401                                           DoNothing, Autorelease));
1402
1403  // Create the summaries for [NSObject performSelector...].  We treat
1404  // these as 'stop tracking' for the arguments because they are often
1405  // used for delegates that can release the object.  When we have better
1406  // inter-procedural analysis we can potentially do something better.  This
1407  // workaround is to remove false positives.
1408  RetainSummary *Summ =
1409    getPersistentSummary(RetEffect::MakeNoRet(), DoNothing, StopTracking);
1410  IdentifierInfo *NSObjectII = &Ctx.Idents.get("NSObject");
1411  addClsMethSummary(NSObjectII, Summ, "performSelector", "withObject",
1412                    "afterDelay", NULL);
1413  addClsMethSummary(NSObjectII, Summ, "performSelector", "withObject",
1414                    "afterDelay", "inModes", NULL);
1415  addClsMethSummary(NSObjectII, Summ, "performSelectorOnMainThread",
1416                    "withObject", "waitUntilDone", NULL);
1417  addClsMethSummary(NSObjectII, Summ, "performSelectorOnMainThread",
1418                    "withObject", "waitUntilDone", "modes", NULL);
1419  addClsMethSummary(NSObjectII, Summ, "performSelector", "onThread",
1420                    "withObject", "waitUntilDone", NULL);
1421  addClsMethSummary(NSObjectII, Summ, "performSelector", "onThread",
1422                    "withObject", "waitUntilDone", "modes", NULL);
1423  addClsMethSummary(NSObjectII, Summ, "performSelectorInBackground",
1424                    "withObject", NULL);
1425}
1426
1427void RetainSummaryManager::InitializeMethodSummaries() {
1428
1429  assert (ScratchArgs.isEmpty());
1430
1431  // Create the "init" selector.  It just acts as a pass-through for the
1432  // receiver.
1433  RetainSummary *InitSumm = getPersistentSummary(ObjCInitRetE, DecRefMsg);
1434  addNSObjectMethSummary(GetNullarySelector("init", Ctx), InitSumm);
1435
1436  // awakeAfterUsingCoder: behaves basically like an 'init' method.  It
1437  // claims the receiver and returns a retained object.
1438  addNSObjectMethSummary(GetUnarySelector("awakeAfterUsingCoder", Ctx),
1439                         InitSumm);
1440
1441  // The next methods are allocators.
1442  RetainSummary *AllocSumm = getPersistentSummary(ObjCAllocRetE);
1443  RetainSummary *CFAllocSumm =
1444    getPersistentSummary(RetEffect::MakeOwned(RetEffect::CF, true));
1445
1446  // Create the "retain" selector.
1447  RetEffect NoRet = RetEffect::MakeNoRet();
1448  RetainSummary *Summ = getPersistentSummary(NoRet, IncRefMsg);
1449  addNSObjectMethSummary(GetNullarySelector("retain", Ctx), Summ);
1450
1451  // Create the "release" selector.
1452  Summ = getPersistentSummary(NoRet, DecRefMsg);
1453  addNSObjectMethSummary(GetNullarySelector("release", Ctx), Summ);
1454
1455  // Create the "drain" selector.
1456  Summ = getPersistentSummary(NoRet, isGCEnabled() ? DoNothing : DecRef);
1457  addNSObjectMethSummary(GetNullarySelector("drain", Ctx), Summ);
1458
1459  // Create the -dealloc summary.
1460  Summ = getPersistentSummary(NoRet, Dealloc);
1461  addNSObjectMethSummary(GetNullarySelector("dealloc", Ctx), Summ);
1462
1463  // Create the "autorelease" selector.
1464  Summ = getPersistentSummary(NoRet, Autorelease);
1465  addNSObjectMethSummary(GetNullarySelector("autorelease", Ctx), Summ);
1466
1467  // Specially handle NSAutoreleasePool.
1468  addInstMethSummary("NSAutoreleasePool", "init",
1469                     getPersistentSummary(NoRet, NewAutoreleasePool));
1470
1471  // For NSWindow, allocated objects are (initially) self-owned.
1472  // FIXME: For now we opt for false negatives with NSWindow, as these objects
1473  //  self-own themselves.  However, they only do this once they are displayed.
1474  //  Thus, we need to track an NSWindow's display status.
1475  //  This is tracked in <rdar://problem/6062711>.
1476  //  See also http://llvm.org/bugs/show_bug.cgi?id=3714.
1477  RetainSummary *NoTrackYet = getPersistentSummary(RetEffect::MakeNoRet(),
1478                                                   StopTracking,
1479                                                   StopTracking);
1480
1481  addClassMethSummary("NSWindow", "alloc", NoTrackYet);
1482
1483#if 0
1484  addInstMethSummary("NSWindow", NoTrackYet, "initWithContentRect",
1485                     "styleMask", "backing", "defer", NULL);
1486
1487  addInstMethSummary("NSWindow", NoTrackYet, "initWithContentRect",
1488                     "styleMask", "backing", "defer", "screen", NULL);
1489#endif
1490
1491  // For NSPanel (which subclasses NSWindow), allocated objects are not
1492  //  self-owned.
1493  // FIXME: For now we don't track NSPanels. object for the same reason
1494  //   as for NSWindow objects.
1495  addClassMethSummary("NSPanel", "alloc", NoTrackYet);
1496
1497#if 0
1498  addInstMethSummary("NSPanel", NoTrackYet, "initWithContentRect",
1499                     "styleMask", "backing", "defer", NULL);
1500
1501  addInstMethSummary("NSPanel", NoTrackYet, "initWithContentRect",
1502                     "styleMask", "backing", "defer", "screen", NULL);
1503#endif
1504
1505  // Don't track allocated autorelease pools yet, as it is okay to prematurely
1506  // exit a method.
1507  addClassMethSummary("NSAutoreleasePool", "alloc", NoTrackYet);
1508
1509  // Create summaries QCRenderer/QCView -createSnapShotImageOfType:
1510  addInstMethSummary("QCRenderer", AllocSumm,
1511                     "createSnapshotImageOfType", NULL);
1512  addInstMethSummary("QCView", AllocSumm,
1513                     "createSnapshotImageOfType", NULL);
1514
1515  // Create summaries for CIContext, 'createCGImage' and
1516  // 'createCGLayerWithSize'.  These objects are CF objects, and are not
1517  // automatically garbage collected.
1518  addInstMethSummary("CIContext", CFAllocSumm,
1519                     "createCGImage", "fromRect", NULL);
1520  addInstMethSummary("CIContext", CFAllocSumm,
1521                     "createCGImage", "fromRect", "format", "colorSpace", NULL);
1522  addInstMethSummary("CIContext", CFAllocSumm, "createCGLayerWithSize",
1523           "info", NULL);
1524}
1525
1526//===----------------------------------------------------------------------===//
1527// AutoreleaseBindings - State used to track objects in autorelease pools.
1528//===----------------------------------------------------------------------===//
1529
1530typedef llvm::ImmutableMap<SymbolRef, unsigned> ARCounts;
1531typedef llvm::ImmutableMap<SymbolRef, ARCounts> ARPoolContents;
1532typedef llvm::ImmutableList<SymbolRef> ARStack;
1533
1534static int AutoRCIndex = 0;
1535static int AutoRBIndex = 0;
1536
1537namespace { class AutoreleasePoolContents {}; }
1538namespace { class AutoreleaseStack {}; }
1539
1540namespace clang {
1541namespace ento {
1542template<> struct ProgramStateTrait<AutoreleaseStack>
1543  : public ProgramStatePartialTrait<ARStack> {
1544  static inline void *GDMIndex() { return &AutoRBIndex; }
1545};
1546
1547template<> struct ProgramStateTrait<AutoreleasePoolContents>
1548  : public ProgramStatePartialTrait<ARPoolContents> {
1549  static inline void *GDMIndex() { return &AutoRCIndex; }
1550};
1551} // end GR namespace
1552} // end clang namespace
1553
1554static SymbolRef GetCurrentAutoreleasePool(const ProgramState *state) {
1555  ARStack stack = state->get<AutoreleaseStack>();
1556  return stack.isEmpty() ? SymbolRef() : stack.getHead();
1557}
1558
1559static const ProgramState *
1560SendAutorelease(const ProgramState *state,
1561                ARCounts::Factory &F,
1562                SymbolRef sym) {
1563  SymbolRef pool = GetCurrentAutoreleasePool(state);
1564  const ARCounts *cnts = state->get<AutoreleasePoolContents>(pool);
1565  ARCounts newCnts(0);
1566
1567  if (cnts) {
1568    const unsigned *cnt = (*cnts).lookup(sym);
1569    newCnts = F.add(*cnts, sym, cnt ? *cnt  + 1 : 1);
1570  }
1571  else
1572    newCnts = F.add(F.getEmptyMap(), sym, 1);
1573
1574  return state->set<AutoreleasePoolContents>(pool, newCnts);
1575}
1576
1577//===----------------------------------------------------------------------===//
1578// Error reporting.
1579//===----------------------------------------------------------------------===//
1580namespace {
1581  typedef llvm::DenseMap<const ExplodedNode *, const RetainSummary *>
1582    SummaryLogTy;
1583
1584  //===-------------===//
1585  // Bug Descriptions. //
1586  //===-------------===//
1587
1588  class CFRefBug : public BugType {
1589  protected:
1590    CFRefBug(StringRef name)
1591    : BugType(name, "Memory (Core Foundation/Objective-C)") {}
1592  public:
1593
1594    // FIXME: Eventually remove.
1595    virtual const char *getDescription() const = 0;
1596
1597    virtual bool isLeak() const { return false; }
1598  };
1599
1600  class UseAfterRelease : public CFRefBug {
1601  public:
1602    UseAfterRelease() : CFRefBug("Use-after-release") {}
1603
1604    const char *getDescription() const {
1605      return "Reference-counted object is used after it is released";
1606    }
1607  };
1608
1609  class BadRelease : public CFRefBug {
1610  public:
1611    BadRelease() : CFRefBug("Bad release") {}
1612
1613    const char *getDescription() const {
1614      return "Incorrect decrement of the reference count of an object that is "
1615             "not owned at this point by the caller";
1616    }
1617  };
1618
1619  class DeallocGC : public CFRefBug {
1620  public:
1621    DeallocGC()
1622    : CFRefBug("-dealloc called while using garbage collection") {}
1623
1624    const char *getDescription() const {
1625      return "-dealloc called while using garbage collection";
1626    }
1627  };
1628
1629  class DeallocNotOwned : public CFRefBug {
1630  public:
1631    DeallocNotOwned()
1632    : CFRefBug("-dealloc sent to non-exclusively owned object") {}
1633
1634    const char *getDescription() const {
1635      return "-dealloc sent to object that may be referenced elsewhere";
1636    }
1637  };
1638
1639  class OverAutorelease : public CFRefBug {
1640  public:
1641    OverAutorelease()
1642    : CFRefBug("Object sent -autorelease too many times") {}
1643
1644    const char *getDescription() const {
1645      return "Object sent -autorelease too many times";
1646    }
1647  };
1648
1649  class ReturnedNotOwnedForOwned : public CFRefBug {
1650  public:
1651    ReturnedNotOwnedForOwned()
1652    : CFRefBug("Method should return an owned object") {}
1653
1654    const char *getDescription() const {
1655      return "Object with a +0 retain count returned to caller where a +1 "
1656             "(owning) retain count is expected";
1657    }
1658  };
1659
1660  class Leak : public CFRefBug {
1661    const bool isReturn;
1662  protected:
1663    Leak(StringRef name, bool isRet)
1664    : CFRefBug(name), isReturn(isRet) {
1665      // Leaks should not be reported if they are post-dominated by a sink.
1666      setSuppressOnSink(true);
1667    }
1668  public:
1669
1670    const char *getDescription() const { return ""; }
1671
1672    bool isLeak() const { return true; }
1673  };
1674
1675  class LeakAtReturn : public Leak {
1676  public:
1677    LeakAtReturn(StringRef name)
1678    : Leak(name, true) {}
1679  };
1680
1681  class LeakWithinFunction : public Leak {
1682  public:
1683    LeakWithinFunction(StringRef name)
1684    : Leak(name, false) {}
1685  };
1686
1687  //===---------===//
1688  // Bug Reports.  //
1689  //===---------===//
1690
1691  class CFRefReportVisitor : public BugReporterVisitor {
1692  protected:
1693    SymbolRef Sym;
1694    const SummaryLogTy &SummaryLog;
1695    bool GCEnabled;
1696
1697  public:
1698    CFRefReportVisitor(SymbolRef sym, bool gcEnabled, const SummaryLogTy &log)
1699       : Sym(sym), SummaryLog(log), GCEnabled(gcEnabled) {}
1700
1701    virtual void Profile(llvm::FoldingSetNodeID &ID) const {
1702      static int x = 0;
1703      ID.AddPointer(&x);
1704      ID.AddPointer(Sym);
1705    }
1706
1707    virtual PathDiagnosticPiece *VisitNode(const ExplodedNode *N,
1708                                           const ExplodedNode *PrevN,
1709                                           BugReporterContext &BRC,
1710                                           BugReport &BR);
1711
1712    virtual PathDiagnosticPiece *getEndPath(BugReporterContext &BRC,
1713                                            const ExplodedNode *N,
1714                                            BugReport &BR);
1715  };
1716
1717  class CFRefLeakReportVisitor : public CFRefReportVisitor {
1718  public:
1719    CFRefLeakReportVisitor(SymbolRef sym, bool GCEnabled,
1720                           const SummaryLogTy &log)
1721       : CFRefReportVisitor(sym, GCEnabled, log) {}
1722
1723    PathDiagnosticPiece *getEndPath(BugReporterContext &BRC,
1724                                    const ExplodedNode *N,
1725                                    BugReport &BR);
1726  };
1727
1728  class CFRefReport : public BugReport {
1729    void addGCModeDescription(const LangOptions &LOpts, bool GCEnabled);
1730
1731  public:
1732    CFRefReport(CFRefBug &D, const LangOptions &LOpts, bool GCEnabled,
1733                const SummaryLogTy &Log, ExplodedNode *n, SymbolRef sym,
1734                bool registerVisitor = true)
1735      : BugReport(D, D.getDescription(), n) {
1736      if (registerVisitor)
1737        addVisitor(new CFRefReportVisitor(sym, GCEnabled, Log));
1738      addGCModeDescription(LOpts, GCEnabled);
1739    }
1740
1741    CFRefReport(CFRefBug &D, const LangOptions &LOpts, bool GCEnabled,
1742                const SummaryLogTy &Log, ExplodedNode *n, SymbolRef sym,
1743                StringRef endText)
1744      : BugReport(D, D.getDescription(), endText, n) {
1745      addVisitor(new CFRefReportVisitor(sym, GCEnabled, Log));
1746      addGCModeDescription(LOpts, GCEnabled);
1747    }
1748
1749    virtual std::pair<ranges_iterator, ranges_iterator> getRanges() {
1750      const CFRefBug& BugTy = static_cast<CFRefBug&>(getBugType());
1751      if (!BugTy.isLeak())
1752        return BugReport::getRanges();
1753      else
1754        return std::make_pair(ranges_iterator(), ranges_iterator());
1755    }
1756  };
1757
1758  class CFRefLeakReport : public CFRefReport {
1759    const MemRegion* AllocBinding;
1760
1761  public:
1762    CFRefLeakReport(CFRefBug &D, const LangOptions &LOpts, bool GCEnabled,
1763                    const SummaryLogTy &Log, ExplodedNode *n, SymbolRef sym,
1764                    ExprEngine &Eng);
1765
1766    PathDiagnosticLocation getLocation(const SourceManager &SM) const {
1767      assert(Location.isValid());
1768      return Location;
1769    }
1770  };
1771} // end anonymous namespace
1772
1773void CFRefReport::addGCModeDescription(const LangOptions &LOpts,
1774                                       bool GCEnabled) {
1775  const char *GCModeDescription = 0;
1776
1777  switch (LOpts.getGC()) {
1778  case LangOptions::GCOnly:
1779    assert(GCEnabled);
1780    GCModeDescription = "Code is compiled to only use garbage collection";
1781    break;
1782
1783  case LangOptions::NonGC:
1784    assert(!GCEnabled);
1785    GCModeDescription = "Code is compiled to use reference counts";
1786    break;
1787
1788  case LangOptions::HybridGC:
1789    if (GCEnabled) {
1790      GCModeDescription = "Code is compiled to use either garbage collection "
1791                          "(GC) or reference counts (non-GC).  The bug occurs "
1792                          "with GC enabled";
1793      break;
1794    } else {
1795      GCModeDescription = "Code is compiled to use either garbage collection "
1796                          "(GC) or reference counts (non-GC).  The bug occurs "
1797                          "in non-GC mode";
1798      break;
1799    }
1800  }
1801
1802  assert(GCModeDescription && "invalid/unknown GC mode");
1803  addExtraText(GCModeDescription);
1804}
1805
1806// FIXME: This should be a method on SmallVector.
1807static inline bool contains(const SmallVectorImpl<ArgEffect>& V,
1808                            ArgEffect X) {
1809  for (SmallVectorImpl<ArgEffect>::const_iterator I=V.begin(), E=V.end();
1810       I!=E; ++I)
1811    if (*I == X) return true;
1812
1813  return false;
1814}
1815
1816PathDiagnosticPiece *CFRefReportVisitor::VisitNode(const ExplodedNode *N,
1817                                                   const ExplodedNode *PrevN,
1818                                                   BugReporterContext &BRC,
1819                                                   BugReport &BR) {
1820
1821  if (!isa<StmtPoint>(N->getLocation()))
1822    return NULL;
1823
1824  // Check if the type state has changed.
1825  const ProgramState *PrevSt = PrevN->getState();
1826  const ProgramState *CurrSt = N->getState();
1827
1828  const RefVal* CurrT = CurrSt->get<RefBindings>(Sym);
1829  if (!CurrT) return NULL;
1830
1831  const RefVal &CurrV = *CurrT;
1832  const RefVal *PrevT = PrevSt->get<RefBindings>(Sym);
1833
1834  // Create a string buffer to constain all the useful things we want
1835  // to tell the user.
1836  std::string sbuf;
1837  llvm::raw_string_ostream os(sbuf);
1838
1839  // This is the allocation site since the previous node had no bindings
1840  // for this symbol.
1841  if (!PrevT) {
1842    const Stmt *S = cast<StmtPoint>(N->getLocation()).getStmt();
1843
1844    if (const CallExpr *CE = dyn_cast<CallExpr>(S)) {
1845      // Get the name of the callee (if it is available).
1846      SVal X = CurrSt->getSValAsScalarOrLoc(CE->getCallee());
1847      if (const FunctionDecl *FD = X.getAsFunctionDecl())
1848        os << "Call to function '" << FD << '\'';
1849      else
1850        os << "function call";
1851    }
1852    else if (isa<ObjCMessageExpr>(S)) {
1853      os << "Method";
1854    } else {
1855      os << "Property";
1856    }
1857
1858    if (CurrV.getObjKind() == RetEffect::CF) {
1859      os << " returns a Core Foundation object with a ";
1860    }
1861    else {
1862      assert (CurrV.getObjKind() == RetEffect::ObjC);
1863      os << " returns an Objective-C object with a ";
1864    }
1865
1866    if (CurrV.isOwned()) {
1867      os << "+1 retain count";
1868
1869      if (GCEnabled) {
1870        assert(CurrV.getObjKind() == RetEffect::CF);
1871        os << ".  "
1872        "Core Foundation objects are not automatically garbage collected.";
1873      }
1874    }
1875    else {
1876      assert (CurrV.isNotOwned());
1877      os << "+0 retain count";
1878    }
1879
1880    PathDiagnosticLocation Pos(S, BRC.getSourceManager(),
1881                                  N->getLocationContext());
1882    return new PathDiagnosticEventPiece(Pos, os.str());
1883  }
1884
1885  // Gather up the effects that were performed on the object at this
1886  // program point
1887  SmallVector<ArgEffect, 2> AEffects;
1888
1889  const ExplodedNode *OrigNode = BRC.getNodeResolver().getOriginalNode(N);
1890  if (const RetainSummary *Summ = SummaryLog.lookup(OrigNode)) {
1891    // We only have summaries attached to nodes after evaluating CallExpr and
1892    // ObjCMessageExprs.
1893    const Stmt *S = cast<StmtPoint>(N->getLocation()).getStmt();
1894
1895    if (const CallExpr *CE = dyn_cast<CallExpr>(S)) {
1896      // Iterate through the parameter expressions and see if the symbol
1897      // was ever passed as an argument.
1898      unsigned i = 0;
1899
1900      for (CallExpr::const_arg_iterator AI=CE->arg_begin(), AE=CE->arg_end();
1901           AI!=AE; ++AI, ++i) {
1902
1903        // Retrieve the value of the argument.  Is it the symbol
1904        // we are interested in?
1905        if (CurrSt->getSValAsScalarOrLoc(*AI).getAsLocSymbol() != Sym)
1906          continue;
1907
1908        // We have an argument.  Get the effect!
1909        AEffects.push_back(Summ->getArg(i));
1910      }
1911    }
1912    else if (const ObjCMessageExpr *ME = dyn_cast<ObjCMessageExpr>(S)) {
1913      if (const Expr *receiver = ME->getInstanceReceiver())
1914        if (CurrSt->getSValAsScalarOrLoc(receiver).getAsLocSymbol() == Sym) {
1915          // The symbol we are tracking is the receiver.
1916          AEffects.push_back(Summ->getReceiverEffect());
1917        }
1918    }
1919  }
1920
1921  do {
1922    // Get the previous type state.
1923    RefVal PrevV = *PrevT;
1924
1925    // Specially handle -dealloc.
1926    if (!GCEnabled && contains(AEffects, Dealloc)) {
1927      // Determine if the object's reference count was pushed to zero.
1928      assert(!(PrevV == CurrV) && "The typestate *must* have changed.");
1929      // We may not have transitioned to 'release' if we hit an error.
1930      // This case is handled elsewhere.
1931      if (CurrV.getKind() == RefVal::Released) {
1932        assert(CurrV.getCombinedCounts() == 0);
1933        os << "Object released by directly sending the '-dealloc' message";
1934        break;
1935      }
1936    }
1937
1938    // Specially handle CFMakeCollectable and friends.
1939    if (contains(AEffects, MakeCollectable)) {
1940      // Get the name of the function.
1941      const Stmt *S = cast<StmtPoint>(N->getLocation()).getStmt();
1942      SVal X = CurrSt->getSValAsScalarOrLoc(cast<CallExpr>(S)->getCallee());
1943      const FunctionDecl *FD = X.getAsFunctionDecl();
1944
1945      if (GCEnabled) {
1946        // Determine if the object's reference count was pushed to zero.
1947        assert(!(PrevV == CurrV) && "The typestate *must* have changed.");
1948
1949        os << "In GC mode a call to '" << FD
1950        <<  "' decrements an object's retain count and registers the "
1951        "object with the garbage collector. ";
1952
1953        if (CurrV.getKind() == RefVal::Released) {
1954          assert(CurrV.getCount() == 0);
1955          os << "Since it now has a 0 retain count the object can be "
1956          "automatically collected by the garbage collector.";
1957        }
1958        else
1959          os << "An object must have a 0 retain count to be garbage collected. "
1960          "After this call its retain count is +" << CurrV.getCount()
1961          << '.';
1962      }
1963      else
1964        os << "When GC is not enabled a call to '" << FD
1965        << "' has no effect on its argument.";
1966
1967      // Nothing more to say.
1968      break;
1969    }
1970
1971    // Determine if the typestate has changed.
1972    if (!(PrevV == CurrV))
1973      switch (CurrV.getKind()) {
1974        case RefVal::Owned:
1975        case RefVal::NotOwned:
1976
1977          if (PrevV.getCount() == CurrV.getCount()) {
1978            // Did an autorelease message get sent?
1979            if (PrevV.getAutoreleaseCount() == CurrV.getAutoreleaseCount())
1980              return 0;
1981
1982            assert(PrevV.getAutoreleaseCount() < CurrV.getAutoreleaseCount());
1983            os << "Object sent -autorelease message";
1984            break;
1985          }
1986
1987          if (PrevV.getCount() > CurrV.getCount())
1988            os << "Reference count decremented.";
1989          else
1990            os << "Reference count incremented.";
1991
1992          if (unsigned Count = CurrV.getCount())
1993            os << " The object now has a +" << Count << " retain count.";
1994
1995          if (PrevV.getKind() == RefVal::Released) {
1996            assert(GCEnabled && CurrV.getCount() > 0);
1997            os << " The object is not eligible for garbage collection until the "
1998            "retain count reaches 0 again.";
1999          }
2000
2001          break;
2002
2003        case RefVal::Released:
2004          os << "Object released.";
2005          break;
2006
2007        case RefVal::ReturnedOwned:
2008          os << "Object returned to caller as an owning reference (single retain "
2009          "count transferred to caller)";
2010          break;
2011
2012        case RefVal::ReturnedNotOwned:
2013          os << "Object returned to caller with a +0 retain count";
2014          break;
2015
2016        default:
2017          return NULL;
2018      }
2019
2020    // Emit any remaining diagnostics for the argument effects (if any).
2021    for (SmallVectorImpl<ArgEffect>::iterator I=AEffects.begin(),
2022         E=AEffects.end(); I != E; ++I) {
2023
2024      // A bunch of things have alternate behavior under GC.
2025      if (GCEnabled)
2026        switch (*I) {
2027          default: break;
2028          case Autorelease:
2029            os << "In GC mode an 'autorelease' has no effect.";
2030            continue;
2031          case IncRefMsg:
2032            os << "In GC mode the 'retain' message has no effect.";
2033            continue;
2034          case DecRefMsg:
2035            os << "In GC mode the 'release' message has no effect.";
2036            continue;
2037        }
2038    }
2039  } while (0);
2040
2041  if (os.str().empty())
2042    return 0; // We have nothing to say!
2043
2044  const Stmt *S = cast<StmtPoint>(N->getLocation()).getStmt();
2045  PathDiagnosticLocation Pos(S, BRC.getSourceManager(),
2046                                N->getLocationContext());
2047  PathDiagnosticPiece *P = new PathDiagnosticEventPiece(Pos, os.str());
2048
2049  // Add the range by scanning the children of the statement for any bindings
2050  // to Sym.
2051  for (Stmt::const_child_iterator I = S->child_begin(), E = S->child_end();
2052       I!=E; ++I)
2053    if (const Expr *Exp = dyn_cast_or_null<Expr>(*I))
2054      if (CurrSt->getSValAsScalarOrLoc(Exp).getAsLocSymbol() == Sym) {
2055        P->addRange(Exp->getSourceRange());
2056        break;
2057      }
2058
2059  return P;
2060}
2061
2062namespace {
2063  class FindUniqueBinding :
2064  public StoreManager::BindingsHandler {
2065    SymbolRef Sym;
2066    const MemRegion* Binding;
2067    bool First;
2068
2069  public:
2070    FindUniqueBinding(SymbolRef sym) : Sym(sym), Binding(0), First(true) {}
2071
2072    bool HandleBinding(StoreManager& SMgr, Store store, const MemRegion* R,
2073                       SVal val) {
2074
2075      SymbolRef SymV = val.getAsSymbol();
2076      if (!SymV || SymV != Sym)
2077        return true;
2078
2079      if (Binding) {
2080        First = false;
2081        return false;
2082      }
2083      else
2084        Binding = R;
2085
2086      return true;
2087    }
2088
2089    operator bool() { return First && Binding; }
2090    const MemRegion* getRegion() { return Binding; }
2091  };
2092}
2093
2094static std::pair<const ExplodedNode*,const MemRegion*>
2095GetAllocationSite(ProgramStateManager& StateMgr, const ExplodedNode *N,
2096                  SymbolRef Sym) {
2097
2098  // Find both first node that referred to the tracked symbol and the
2099  // memory location that value was store to.
2100  const ExplodedNode *Last = N;
2101  const MemRegion* FirstBinding = 0;
2102
2103  while (N) {
2104    const ProgramState *St = N->getState();
2105    RefBindings B = St->get<RefBindings>();
2106
2107    if (!B.lookup(Sym))
2108      break;
2109
2110    FindUniqueBinding FB(Sym);
2111    StateMgr.iterBindings(St, FB);
2112    if (FB) FirstBinding = FB.getRegion();
2113
2114    Last = N;
2115    N = N->pred_empty() ? NULL : *(N->pred_begin());
2116  }
2117
2118  return std::make_pair(Last, FirstBinding);
2119}
2120
2121PathDiagnosticPiece*
2122CFRefReportVisitor::getEndPath(BugReporterContext &BRC,
2123                               const ExplodedNode *EndN,
2124                               BugReport &BR) {
2125  // Tell the BugReporterContext to report cases when the tracked symbol is
2126  // assigned to different variables, etc.
2127  BRC.addNotableSymbol(Sym);
2128  return BugReporterVisitor::getDefaultEndPath(BRC, EndN, BR);
2129}
2130
2131PathDiagnosticPiece*
2132CFRefLeakReportVisitor::getEndPath(BugReporterContext &BRC,
2133                                   const ExplodedNode *EndN,
2134                                   BugReport &BR) {
2135
2136  // Tell the BugReporterContext to report cases when the tracked symbol is
2137  // assigned to different variables, etc.
2138  BRC.addNotableSymbol(Sym);
2139
2140  // We are reporting a leak.  Walk up the graph to get to the first node where
2141  // the symbol appeared, and also get the first VarDecl that tracked object
2142  // is stored to.
2143  const ExplodedNode *AllocNode = 0;
2144  const MemRegion* FirstBinding = 0;
2145
2146  llvm::tie(AllocNode, FirstBinding) =
2147    GetAllocationSite(BRC.getStateManager(), EndN, Sym);
2148
2149  SourceManager& SM = BRC.getSourceManager();
2150
2151  // Compute an actual location for the leak.  Sometimes a leak doesn't
2152  // occur at an actual statement (e.g., transition between blocks; end
2153  // of function) so we need to walk the graph and compute a real location.
2154  const ExplodedNode *LeakN = EndN;
2155  PathDiagnosticLocation L = PathDiagnosticLocation::createEndOfPath(LeakN, SM);
2156
2157  std::string sbuf;
2158  llvm::raw_string_ostream os(sbuf);
2159
2160  os << "Object leaked: ";
2161
2162  if (FirstBinding) {
2163    os << "object allocated and stored into '"
2164       << FirstBinding->getString() << '\'';
2165  }
2166  else
2167    os << "allocated object";
2168
2169  // Get the retain count.
2170  const RefVal* RV = EndN->getState()->get<RefBindings>(Sym);
2171
2172  if (RV->getKind() == RefVal::ErrorLeakReturned) {
2173    // FIXME: Per comments in rdar://6320065, "create" only applies to CF
2174    // objects.  Only "copy", "alloc", "retain" and "new" transfer ownership
2175    // to the caller for NS objects.
2176    const Decl *D = &EndN->getCodeDecl();
2177    if (const ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(D)) {
2178      os << " is returned from a method whose name ('"
2179         << MD->getSelector().getAsString()
2180         << "') does not start with 'copy', 'mutableCopy', 'alloc' or 'new'."
2181            "  This violates the naming convention rules"
2182            " given in the Memory Management Guide for Cocoa";
2183    }
2184    else {
2185      const FunctionDecl *FD = cast<FunctionDecl>(D);
2186      os << " is return from a function whose name ('"
2187         << FD->getNameAsString()
2188         << "') does not contain 'Copy' or 'Create'.  This violates the naming"
2189            " convention rules given the Memory Management Guide for Core"
2190            " Foundation";
2191    }
2192  }
2193  else if (RV->getKind() == RefVal::ErrorGCLeakReturned) {
2194    ObjCMethodDecl &MD = cast<ObjCMethodDecl>(EndN->getCodeDecl());
2195    os << " and returned from method '" << MD.getSelector().getAsString()
2196       << "' is potentially leaked when using garbage collection.  Callers "
2197          "of this method do not expect a returned object with a +1 retain "
2198          "count since they expect the object to be managed by the garbage "
2199          "collector";
2200  }
2201  else
2202    os << " is not referenced later in this execution path and has a retain "
2203          "count of +" << RV->getCount();
2204
2205  return new PathDiagnosticEventPiece(L, os.str());
2206}
2207
2208CFRefLeakReport::CFRefLeakReport(CFRefBug &D, const LangOptions &LOpts,
2209                                 bool GCEnabled, const SummaryLogTy &Log,
2210                                 ExplodedNode *n, SymbolRef sym,
2211                                 ExprEngine &Eng)
2212: CFRefReport(D, LOpts, GCEnabled, Log, n, sym, false) {
2213
2214  // Most bug reports are cached at the location where they occurred.
2215  // With leaks, we want to unique them by the location where they were
2216  // allocated, and only report a single path.  To do this, we need to find
2217  // the allocation site of a piece of tracked memory, which we do via a
2218  // call to GetAllocationSite.  This will walk the ExplodedGraph backwards.
2219  // Note that this is *not* the trimmed graph; we are guaranteed, however,
2220  // that all ancestor nodes that represent the allocation site have the
2221  // same SourceLocation.
2222  const ExplodedNode *AllocNode = 0;
2223
2224  const SourceManager& SMgr = Eng.getContext().getSourceManager();
2225
2226  llvm::tie(AllocNode, AllocBinding) =  // Set AllocBinding.
2227    GetAllocationSite(Eng.getStateManager(), getErrorNode(), sym);
2228
2229  // Get the SourceLocation for the allocation site.
2230  ProgramPoint P = AllocNode->getLocation();
2231  const Stmt *AllocStmt = cast<PostStmt>(P).getStmt();
2232  Location = PathDiagnosticLocation::createBegin(AllocStmt, SMgr,
2233                                                  n->getLocationContext());
2234  // Fill in the description of the bug.
2235  Description.clear();
2236  llvm::raw_string_ostream os(Description);
2237  unsigned AllocLine = SMgr.getExpansionLineNumber(AllocStmt->getLocStart());
2238  os << "Potential leak ";
2239  if (GCEnabled)
2240    os << "(when using garbage collection) ";
2241  os << "of an object allocated on line " << AllocLine;
2242
2243  // FIXME: AllocBinding doesn't get populated for RegionStore yet.
2244  if (AllocBinding)
2245    os << " and stored into '" << AllocBinding->getString() << '\'';
2246
2247  addVisitor(new CFRefLeakReportVisitor(sym, GCEnabled, Log));
2248}
2249
2250//===----------------------------------------------------------------------===//
2251// Main checker logic.
2252//===----------------------------------------------------------------------===//
2253
2254namespace {
2255class RetainCountChecker
2256  : public Checker< check::Bind,
2257                    check::DeadSymbols,
2258                    check::EndAnalysis,
2259                    check::EndPath,
2260                    check::PostStmt<BlockExpr>,
2261                    check::PostStmt<CastExpr>,
2262                    check::PostStmt<CallExpr>,
2263                    check::PostStmt<CXXConstructExpr>,
2264                    check::PostObjCMessage,
2265                    check::PreStmt<ReturnStmt>,
2266                    check::RegionChanges,
2267                    eval::Assume,
2268                    eval::Call > {
2269  mutable llvm::OwningPtr<CFRefBug> useAfterRelease, releaseNotOwned;
2270  mutable llvm::OwningPtr<CFRefBug> deallocGC, deallocNotOwned;
2271  mutable llvm::OwningPtr<CFRefBug> overAutorelease, returnNotOwnedForOwned;
2272  mutable llvm::OwningPtr<CFRefBug> leakWithinFunction, leakAtReturn;
2273  mutable llvm::OwningPtr<CFRefBug> leakWithinFunctionGC, leakAtReturnGC;
2274
2275  typedef llvm::DenseMap<SymbolRef, const SimpleProgramPointTag *> SymbolTagMap;
2276
2277  // This map is only used to ensure proper deletion of any allocated tags.
2278  mutable SymbolTagMap DeadSymbolTags;
2279
2280  mutable llvm::OwningPtr<RetainSummaryManager> Summaries;
2281  mutable llvm::OwningPtr<RetainSummaryManager> SummariesGC;
2282
2283  mutable ARCounts::Factory ARCountFactory;
2284
2285  mutable SummaryLogTy SummaryLog;
2286  mutable bool ShouldResetSummaryLog;
2287
2288public:
2289  RetainCountChecker() : ShouldResetSummaryLog(false) {}
2290
2291  virtual ~RetainCountChecker() {
2292    DeleteContainerSeconds(DeadSymbolTags);
2293  }
2294
2295  void checkEndAnalysis(ExplodedGraph &G, BugReporter &BR,
2296                        ExprEngine &Eng) const {
2297    // FIXME: This is a hack to make sure the summary log gets cleared between
2298    // analyses of different code bodies.
2299    //
2300    // Why is this necessary? Because a checker's lifetime is tied to a
2301    // translation unit, but an ExplodedGraph's lifetime is just a code body.
2302    // Once in a blue moon, a new ExplodedNode will have the same address as an
2303    // old one with an associated summary, and the bug report visitor gets very
2304    // confused. (To make things worse, the summary lifetime is currently also
2305    // tied to a code body, so we get a crash instead of incorrect results.)
2306    //
2307    // Why is this a bad solution? Because if the lifetime of the ExplodedGraph
2308    // changes, things will start going wrong again. Really the lifetime of this
2309    // log needs to be tied to either the specific nodes in it or the entire
2310    // ExplodedGraph, not to a specific part of the code being analyzed.
2311    //
2312    // (Also, having stateful local data means that the same checker can't be
2313    // used from multiple threads, but a lot of checkers have incorrect
2314    // assumptions about that anyway. So that wasn't a priority at the time of
2315    // this fix.)
2316    //
2317    // This happens at the end of analysis, but bug reports are emitted /after/
2318    // this point. So we can't just clear the summary log now. Instead, we mark
2319    // that the next time we access the summary log, it should be cleared.
2320
2321    // If we never reset the summary log during /this/ code body analysis,
2322    // there were no new summaries. There might still have been summaries from
2323    // the /last/ analysis, so clear them out to make sure the bug report
2324    // visitors don't get confused.
2325    if (ShouldResetSummaryLog)
2326      SummaryLog.clear();
2327
2328    ShouldResetSummaryLog = !SummaryLog.empty();
2329  }
2330
2331  CFRefBug *getLeakWithinFunctionBug(const LangOptions &LOpts,
2332                                     bool GCEnabled) const {
2333    if (GCEnabled) {
2334      if (!leakWithinFunctionGC)
2335        leakWithinFunctionGC.reset(new LeakWithinFunction("Leak of object when "
2336                                                          "using garbage "
2337                                                          "collection"));
2338      return leakWithinFunctionGC.get();
2339    } else {
2340      if (!leakWithinFunction) {
2341        if (LOpts.getGC() == LangOptions::HybridGC) {
2342          leakWithinFunction.reset(new LeakWithinFunction("Leak of object when "
2343                                                          "not using garbage "
2344                                                          "collection (GC) in "
2345                                                          "dual GC/non-GC "
2346                                                          "code"));
2347        } else {
2348          leakWithinFunction.reset(new LeakWithinFunction("Leak"));
2349        }
2350      }
2351      return leakWithinFunction.get();
2352    }
2353  }
2354
2355  CFRefBug *getLeakAtReturnBug(const LangOptions &LOpts, bool GCEnabled) const {
2356    if (GCEnabled) {
2357      if (!leakAtReturnGC)
2358        leakAtReturnGC.reset(new LeakAtReturn("Leak of returned object when "
2359                                              "using garbage collection"));
2360      return leakAtReturnGC.get();
2361    } else {
2362      if (!leakAtReturn) {
2363        if (LOpts.getGC() == LangOptions::HybridGC) {
2364          leakAtReturn.reset(new LeakAtReturn("Leak of returned object when "
2365                                              "not using garbage collection "
2366                                              "(GC) in dual GC/non-GC code"));
2367        } else {
2368          leakAtReturn.reset(new LeakAtReturn("Leak of returned object"));
2369        }
2370      }
2371      return leakAtReturn.get();
2372    }
2373  }
2374
2375  RetainSummaryManager &getSummaryManager(ASTContext &Ctx,
2376                                          bool GCEnabled) const {
2377    // FIXME: We don't support ARC being turned on and off during one analysis.
2378    // (nor, for that matter, do we support changing ASTContexts)
2379    bool ARCEnabled = (bool)Ctx.getLangOptions().ObjCAutoRefCount;
2380    if (GCEnabled) {
2381      if (!SummariesGC)
2382        SummariesGC.reset(new RetainSummaryManager(Ctx, true, ARCEnabled));
2383      else
2384        assert(SummariesGC->isARCEnabled() == ARCEnabled);
2385      return *SummariesGC;
2386    } else {
2387      if (!Summaries)
2388        Summaries.reset(new RetainSummaryManager(Ctx, false, ARCEnabled));
2389      else
2390        assert(Summaries->isARCEnabled() == ARCEnabled);
2391      return *Summaries;
2392    }
2393  }
2394
2395  RetainSummaryManager &getSummaryManager(CheckerContext &C) const {
2396    return getSummaryManager(C.getASTContext(), C.isObjCGCEnabled());
2397  }
2398
2399  void printState(raw_ostream &Out, const ProgramState *State,
2400                  const char *NL, const char *Sep) const;
2401
2402  void checkBind(SVal loc, SVal val, CheckerContext &C) const;
2403  void checkPostStmt(const BlockExpr *BE, CheckerContext &C) const;
2404  void checkPostStmt(const CastExpr *CE, CheckerContext &C) const;
2405
2406  void checkPostStmt(const CallExpr *CE, CheckerContext &C) const;
2407  void checkPostStmt(const CXXConstructExpr *CE, CheckerContext &C) const;
2408  void checkPostObjCMessage(const ObjCMessage &Msg, CheckerContext &C) const;
2409  void checkSummary(const RetainSummary &Summ, const CallOrObjCMessage &Call,
2410                    CheckerContext &C) const;
2411
2412  bool evalCall(const CallExpr *CE, CheckerContext &C) const;
2413
2414  const ProgramState *evalAssume(const ProgramState *state, SVal Cond,
2415                                 bool Assumption) const;
2416
2417  const ProgramState *
2418  checkRegionChanges(const ProgramState *state,
2419                     const StoreManager::InvalidatedSymbols *invalidated,
2420                     ArrayRef<const MemRegion *> ExplicitRegions,
2421                     ArrayRef<const MemRegion *> Regions) const;
2422
2423  bool wantsRegionChangeUpdate(const ProgramState *state) const {
2424    return true;
2425  }
2426
2427  void checkPreStmt(const ReturnStmt *S, CheckerContext &C) const;
2428  void checkReturnWithRetEffect(const ReturnStmt *S, CheckerContext &C,
2429                                ExplodedNode *Pred, RetEffect RE, RefVal X,
2430                                SymbolRef Sym, const ProgramState *state) const;
2431
2432  void checkDeadSymbols(SymbolReaper &SymReaper, CheckerContext &C) const;
2433  void checkEndPath(EndOfFunctionNodeBuilder &Builder, ExprEngine &Eng) const;
2434
2435  const ProgramState *updateSymbol(const ProgramState *state, SymbolRef sym,
2436                                   RefVal V, ArgEffect E, RefVal::Kind &hasErr,
2437                                   CheckerContext &C) const;
2438
2439  void processNonLeakError(const ProgramState *St, SourceRange ErrorRange,
2440                           RefVal::Kind ErrorKind, SymbolRef Sym,
2441                           CheckerContext &C) const;
2442
2443  const ProgramPointTag *getDeadSymbolTag(SymbolRef sym) const;
2444
2445  const ProgramState *handleSymbolDeath(const ProgramState *state,
2446                                        SymbolRef sid, RefVal V,
2447                                      SmallVectorImpl<SymbolRef> &Leaked) const;
2448
2449  std::pair<ExplodedNode *, const ProgramState *>
2450  handleAutoreleaseCounts(const ProgramState *state,
2451                          GenericNodeBuilderRefCount Bd, ExplodedNode *Pred,
2452                          ExprEngine &Eng, SymbolRef Sym, RefVal V) const;
2453
2454  ExplodedNode *processLeaks(const ProgramState *state,
2455                             SmallVectorImpl<SymbolRef> &Leaked,
2456                             GenericNodeBuilderRefCount &Builder,
2457                             ExprEngine &Eng,
2458                             ExplodedNode *Pred = 0) const;
2459};
2460} // end anonymous namespace
2461
2462namespace {
2463class StopTrackingCallback : public SymbolVisitor {
2464  const ProgramState *state;
2465public:
2466  StopTrackingCallback(const ProgramState *st) : state(st) {}
2467  const ProgramState *getState() const { return state; }
2468
2469  bool VisitSymbol(SymbolRef sym) {
2470    state = state->remove<RefBindings>(sym);
2471    return true;
2472  }
2473};
2474} // end anonymous namespace
2475
2476//===----------------------------------------------------------------------===//
2477// Handle statements that may have an effect on refcounts.
2478//===----------------------------------------------------------------------===//
2479
2480void RetainCountChecker::checkPostStmt(const BlockExpr *BE,
2481                                       CheckerContext &C) const {
2482
2483  // Scan the BlockDecRefExprs for any object the retain count checker
2484  // may be tracking.
2485  if (!BE->getBlockDecl()->hasCaptures())
2486    return;
2487
2488  const ProgramState *state = C.getState();
2489  const BlockDataRegion *R =
2490    cast<BlockDataRegion>(state->getSVal(BE).getAsRegion());
2491
2492  BlockDataRegion::referenced_vars_iterator I = R->referenced_vars_begin(),
2493                                            E = R->referenced_vars_end();
2494
2495  if (I == E)
2496    return;
2497
2498  // FIXME: For now we invalidate the tracking of all symbols passed to blocks
2499  // via captured variables, even though captured variables result in a copy
2500  // and in implicit increment/decrement of a retain count.
2501  SmallVector<const MemRegion*, 10> Regions;
2502  const LocationContext *LC = C.getPredecessor()->getLocationContext();
2503  MemRegionManager &MemMgr = C.getSValBuilder().getRegionManager();
2504
2505  for ( ; I != E; ++I) {
2506    const VarRegion *VR = *I;
2507    if (VR->getSuperRegion() == R) {
2508      VR = MemMgr.getVarRegion(VR->getDecl(), LC);
2509    }
2510    Regions.push_back(VR);
2511  }
2512
2513  state =
2514    state->scanReachableSymbols<StopTrackingCallback>(Regions.data(),
2515                                    Regions.data() + Regions.size()).getState();
2516  C.addTransition(state);
2517}
2518
2519void RetainCountChecker::checkPostStmt(const CastExpr *CE,
2520                                       CheckerContext &C) const {
2521  const ObjCBridgedCastExpr *BE = dyn_cast<ObjCBridgedCastExpr>(CE);
2522  if (!BE)
2523    return;
2524
2525  ArgEffect AE = IncRef;
2526
2527  switch (BE->getBridgeKind()) {
2528    case clang::OBC_Bridge:
2529      // Do nothing.
2530      return;
2531    case clang::OBC_BridgeRetained:
2532      AE = IncRef;
2533      break;
2534    case clang::OBC_BridgeTransfer:
2535      AE = DecRefBridgedTransfered;
2536      break;
2537  }
2538
2539  const ProgramState *state = C.getState();
2540  SymbolRef Sym = state->getSVal(CE).getAsLocSymbol();
2541  if (!Sym)
2542    return;
2543  const RefVal* T = state->get<RefBindings>(Sym);
2544  if (!T)
2545    return;
2546
2547  RefVal::Kind hasErr = (RefVal::Kind) 0;
2548  state = updateSymbol(state, Sym, *T, AE, hasErr, C);
2549
2550  if (hasErr) {
2551    // FIXME: If we get an error during a bridge cast, should we report it?
2552    // Should we assert that there is no error?
2553    return;
2554  }
2555
2556  C.generateNode(state);
2557}
2558
2559void RetainCountChecker::checkPostStmt(const CallExpr *CE,
2560                                       CheckerContext &C) const {
2561  // Get the callee.
2562  const ProgramState *state = C.getState();
2563  const Expr *Callee = CE->getCallee();
2564  SVal L = state->getSVal(Callee);
2565
2566  RetainSummaryManager &Summaries = getSummaryManager(C);
2567  RetainSummary *Summ = 0;
2568
2569  // FIXME: Better support for blocks.  For now we stop tracking anything
2570  // that is passed to blocks.
2571  // FIXME: Need to handle variables that are "captured" by the block.
2572  if (dyn_cast_or_null<BlockDataRegion>(L.getAsRegion())) {
2573    Summ = Summaries.getPersistentStopSummary();
2574  } else if (const FunctionDecl *FD = L.getAsFunctionDecl()) {
2575    Summ = Summaries.getSummary(FD);
2576  } else if (const CXXMemberCallExpr *me = dyn_cast<CXXMemberCallExpr>(CE)) {
2577    if (const CXXMethodDecl *MD = me->getMethodDecl())
2578      Summ = Summaries.getSummary(MD);
2579  }
2580
2581  // If we didn't get a summary, this function doesn't affect retain counts.
2582  if (!Summ)
2583    return;
2584
2585  checkSummary(*Summ, CallOrObjCMessage(CE, state), C);
2586}
2587
2588void RetainCountChecker::checkPostStmt(const CXXConstructExpr *CE,
2589                                       CheckerContext &C) const {
2590  const CXXConstructorDecl *Ctor = CE->getConstructor();
2591  if (!Ctor)
2592    return;
2593
2594  RetainSummaryManager &Summaries = getSummaryManager(C);
2595  RetainSummary *Summ = Summaries.getSummary(Ctor);
2596
2597  // If we didn't get a summary, this constructor doesn't affect retain counts.
2598  if (!Summ)
2599    return;
2600
2601  const ProgramState *state = C.getState();
2602  checkSummary(*Summ, CallOrObjCMessage(CE, state), C);
2603}
2604
2605void RetainCountChecker::checkPostObjCMessage(const ObjCMessage &Msg,
2606                                              CheckerContext &C) const {
2607  const ProgramState *state = C.getState();
2608  ExplodedNode *Pred = C.getPredecessor();
2609
2610  RetainSummaryManager &Summaries = getSummaryManager(C);
2611
2612  RetainSummary *Summ;
2613  if (Msg.isInstanceMessage()) {
2614    const LocationContext *LC = Pred->getLocationContext();
2615    Summ = Summaries.getInstanceMethodSummary(Msg, state, LC);
2616  } else {
2617    Summ = Summaries.getClassMethodSummary(Msg);
2618  }
2619
2620  // If we didn't get a summary, this message doesn't affect retain counts.
2621  if (!Summ)
2622    return;
2623
2624  checkSummary(*Summ, CallOrObjCMessage(Msg, state), C);
2625}
2626
2627/// GetReturnType - Used to get the return type of a message expression or
2628///  function call with the intention of affixing that type to a tracked symbol.
2629///  While the the return type can be queried directly from RetEx, when
2630///  invoking class methods we augment to the return type to be that of
2631///  a pointer to the class (as opposed it just being id).
2632// FIXME: We may be able to do this with related result types instead.
2633// This function is probably overestimating.
2634static QualType GetReturnType(const Expr *RetE, ASTContext &Ctx) {
2635  QualType RetTy = RetE->getType();
2636  // If RetE is not a message expression just return its type.
2637  // If RetE is a message expression, return its types if it is something
2638  /// more specific than id.
2639  if (const ObjCMessageExpr *ME = dyn_cast<ObjCMessageExpr>(RetE))
2640    if (const ObjCObjectPointerType *PT = RetTy->getAs<ObjCObjectPointerType>())
2641      if (PT->isObjCQualifiedIdType() || PT->isObjCIdType() ||
2642          PT->isObjCClassType()) {
2643        // At this point we know the return type of the message expression is
2644        // id, id<...>, or Class. If we have an ObjCInterfaceDecl, we know this
2645        // is a call to a class method whose type we can resolve.  In such
2646        // cases, promote the return type to XXX* (where XXX is the class).
2647        const ObjCInterfaceDecl *D = ME->getReceiverInterface();
2648        return !D ? RetTy :
2649                    Ctx.getObjCObjectPointerType(Ctx.getObjCInterfaceType(D));
2650      }
2651
2652  return RetTy;
2653}
2654
2655void RetainCountChecker::checkSummary(const RetainSummary &Summ,
2656                                      const CallOrObjCMessage &CallOrMsg,
2657                                      CheckerContext &C) const {
2658  const ProgramState *state = C.getState();
2659
2660  // Evaluate the effect of the arguments.
2661  RefVal::Kind hasErr = (RefVal::Kind) 0;
2662  SourceRange ErrorRange;
2663  SymbolRef ErrorSym = 0;
2664
2665  for (unsigned idx = 0, e = CallOrMsg.getNumArgs(); idx != e; ++idx) {
2666    SVal V = CallOrMsg.getArgSVal(idx);
2667
2668    if (SymbolRef Sym = V.getAsLocSymbol()) {
2669      if (RefBindings::data_type *T = state->get<RefBindings>(Sym)) {
2670        state = updateSymbol(state, Sym, *T, Summ.getArg(idx), hasErr, C);
2671        if (hasErr) {
2672          ErrorRange = CallOrMsg.getArgSourceRange(idx);
2673          ErrorSym = Sym;
2674          break;
2675        }
2676      }
2677    }
2678  }
2679
2680  // Evaluate the effect on the message receiver.
2681  bool ReceiverIsTracked = false;
2682  if (!hasErr && CallOrMsg.isObjCMessage()) {
2683    const LocationContext *LC = C.getPredecessor()->getLocationContext();
2684    SVal Receiver = CallOrMsg.getInstanceMessageReceiver(LC);
2685    if (SymbolRef Sym = Receiver.getAsLocSymbol()) {
2686      if (const RefVal *T = state->get<RefBindings>(Sym)) {
2687        ReceiverIsTracked = true;
2688        state = updateSymbol(state, Sym, *T, Summ.getReceiverEffect(),
2689                             hasErr, C);
2690        if (hasErr) {
2691          ErrorRange = CallOrMsg.getReceiverSourceRange();
2692          ErrorSym = Sym;
2693        }
2694      }
2695    }
2696  }
2697
2698  // Process any errors.
2699  if (hasErr) {
2700    processNonLeakError(state, ErrorRange, hasErr, ErrorSym, C);
2701    return;
2702  }
2703
2704  // Consult the summary for the return value.
2705  RetEffect RE = Summ.getRetEffect();
2706
2707  if (RE.getKind() == RetEffect::OwnedWhenTrackedReceiver) {
2708    if (ReceiverIsTracked)
2709      RE = getSummaryManager(C).getObjAllocRetEffect();
2710    else
2711      RE = RetEffect::MakeNoRet();
2712  }
2713
2714  switch (RE.getKind()) {
2715    default:
2716      llvm_unreachable("Unhandled RetEffect."); break;
2717
2718    case RetEffect::NoRet:
2719      // No work necessary.
2720      break;
2721
2722    case RetEffect::OwnedAllocatedSymbol:
2723    case RetEffect::OwnedSymbol: {
2724      SymbolRef Sym = state->getSVal(CallOrMsg.getOriginExpr()).getAsSymbol();
2725      if (!Sym)
2726        break;
2727
2728      // Use the result type from callOrMsg as it automatically adjusts
2729      // for methods/functions that return references.
2730      QualType ResultTy = CallOrMsg.getResultType(C.getASTContext());
2731      state = state->set<RefBindings>(Sym, RefVal::makeOwned(RE.getObjKind(),
2732                                                             ResultTy));
2733
2734      // FIXME: Add a flag to the checker where allocations are assumed to
2735      // *not* fail. (The code below is out-of-date, though.)
2736#if 0
2737      if (RE.getKind() == RetEffect::OwnedAllocatedSymbol) {
2738        bool isFeasible;
2739        state = state.assume(loc::SymbolVal(Sym), true, isFeasible);
2740        assert(isFeasible && "Cannot assume fresh symbol is non-null.");
2741      }
2742#endif
2743
2744      break;
2745    }
2746
2747    case RetEffect::GCNotOwnedSymbol:
2748    case RetEffect::ARCNotOwnedSymbol:
2749    case RetEffect::NotOwnedSymbol: {
2750      const Expr *Ex = CallOrMsg.getOriginExpr();
2751      SymbolRef Sym = state->getSVal(Ex).getAsSymbol();
2752      if (!Sym)
2753        break;
2754
2755      // Use GetReturnType in order to give [NSFoo alloc] the type NSFoo *.
2756      QualType ResultTy = GetReturnType(Ex, C.getASTContext());
2757      state = state->set<RefBindings>(Sym, RefVal::makeNotOwned(RE.getObjKind(),
2758                                                                ResultTy));
2759      break;
2760    }
2761  }
2762
2763  // This check is actually necessary; otherwise the statement builder thinks
2764  // we've hit a previously-found path.
2765  // Normally addTransition takes care of this, but we want the node pointer.
2766  ExplodedNode *NewNode;
2767  if (state == C.getState()) {
2768    NewNode = C.getPredecessor();
2769  } else {
2770    NewNode = C.generateNode(state);
2771  }
2772
2773  // Annotate the node with summary we used.
2774  if (NewNode) {
2775    // FIXME: This is ugly. See checkEndAnalysis for why it's necessary.
2776    if (ShouldResetSummaryLog) {
2777      SummaryLog.clear();
2778      ShouldResetSummaryLog = false;
2779    }
2780    SummaryLog[NewNode] = &Summ;
2781  }
2782}
2783
2784
2785const ProgramState *
2786RetainCountChecker::updateSymbol(const ProgramState *state, SymbolRef sym,
2787                                 RefVal V, ArgEffect E, RefVal::Kind &hasErr,
2788                                 CheckerContext &C) const {
2789  // In GC mode [... release] and [... retain] do nothing.
2790  // In ARC mode they shouldn't exist at all, but we just ignore them.
2791  bool IgnoreRetainMsg = C.isObjCGCEnabled();
2792  if (!IgnoreRetainMsg)
2793    IgnoreRetainMsg = (bool)C.getASTContext().getLangOptions().ObjCAutoRefCount;
2794
2795  switch (E) {
2796    default: break;
2797    case IncRefMsg: E = IgnoreRetainMsg ? DoNothing : IncRef; break;
2798    case DecRefMsg: E = IgnoreRetainMsg ? DoNothing : DecRef; break;
2799    case MakeCollectable: E = C.isObjCGCEnabled() ? DecRef : DoNothing; break;
2800    case NewAutoreleasePool: E = C.isObjCGCEnabled() ? DoNothing :
2801                                                      NewAutoreleasePool; break;
2802  }
2803
2804  // Handle all use-after-releases.
2805  if (!C.isObjCGCEnabled() && V.getKind() == RefVal::Released) {
2806    V = V ^ RefVal::ErrorUseAfterRelease;
2807    hasErr = V.getKind();
2808    return state->set<RefBindings>(sym, V);
2809  }
2810
2811  switch (E) {
2812    case DecRefMsg:
2813    case IncRefMsg:
2814    case MakeCollectable:
2815      llvm_unreachable("DecRefMsg/IncRefMsg/MakeCollectable already converted");
2816      return state;
2817
2818    case Dealloc:
2819      // Any use of -dealloc in GC is *bad*.
2820      if (C.isObjCGCEnabled()) {
2821        V = V ^ RefVal::ErrorDeallocGC;
2822        hasErr = V.getKind();
2823        break;
2824      }
2825
2826      switch (V.getKind()) {
2827        default:
2828          llvm_unreachable("Invalid RefVal state for an explicit dealloc.");
2829          break;
2830        case RefVal::Owned:
2831          // The object immediately transitions to the released state.
2832          V = V ^ RefVal::Released;
2833          V.clearCounts();
2834          return state->set<RefBindings>(sym, V);
2835        case RefVal::NotOwned:
2836          V = V ^ RefVal::ErrorDeallocNotOwned;
2837          hasErr = V.getKind();
2838          break;
2839      }
2840      break;
2841
2842    case NewAutoreleasePool:
2843      assert(!C.isObjCGCEnabled());
2844      return state->add<AutoreleaseStack>(sym);
2845
2846    case MayEscape:
2847      if (V.getKind() == RefVal::Owned) {
2848        V = V ^ RefVal::NotOwned;
2849        break;
2850      }
2851
2852      // Fall-through.
2853
2854    case DoNothing:
2855      return state;
2856
2857    case Autorelease:
2858      if (C.isObjCGCEnabled())
2859        return state;
2860
2861      // Update the autorelease counts.
2862      state = SendAutorelease(state, ARCountFactory, sym);
2863      V = V.autorelease();
2864      break;
2865
2866    case StopTracking:
2867      return state->remove<RefBindings>(sym);
2868
2869    case IncRef:
2870      switch (V.getKind()) {
2871        default:
2872          llvm_unreachable("Invalid RefVal state for a retain.");
2873          break;
2874        case RefVal::Owned:
2875        case RefVal::NotOwned:
2876          V = V + 1;
2877          break;
2878        case RefVal::Released:
2879          // Non-GC cases are handled above.
2880          assert(C.isObjCGCEnabled());
2881          V = (V ^ RefVal::Owned) + 1;
2882          break;
2883      }
2884      break;
2885
2886    case SelfOwn:
2887      V = V ^ RefVal::NotOwned;
2888      // Fall-through.
2889    case DecRef:
2890    case DecRefBridgedTransfered:
2891      switch (V.getKind()) {
2892        default:
2893          // case 'RefVal::Released' handled above.
2894          llvm_unreachable("Invalid RefVal state for a release.");
2895          break;
2896
2897        case RefVal::Owned:
2898          assert(V.getCount() > 0);
2899          if (V.getCount() == 1)
2900            V = V ^ (E == DecRefBridgedTransfered ?
2901                      RefVal::NotOwned : RefVal::Released);
2902          V = V - 1;
2903          break;
2904
2905        case RefVal::NotOwned:
2906          if (V.getCount() > 0)
2907            V = V - 1;
2908          else {
2909            V = V ^ RefVal::ErrorReleaseNotOwned;
2910            hasErr = V.getKind();
2911          }
2912          break;
2913
2914        case RefVal::Released:
2915          // Non-GC cases are handled above.
2916          assert(C.isObjCGCEnabled());
2917          V = V ^ RefVal::ErrorUseAfterRelease;
2918          hasErr = V.getKind();
2919          break;
2920      }
2921      break;
2922  }
2923  return state->set<RefBindings>(sym, V);
2924}
2925
2926void RetainCountChecker::processNonLeakError(const ProgramState *St,
2927                                             SourceRange ErrorRange,
2928                                             RefVal::Kind ErrorKind,
2929                                             SymbolRef Sym,
2930                                             CheckerContext &C) const {
2931  ExplodedNode *N = C.generateSink(St);
2932  if (!N)
2933    return;
2934
2935  CFRefBug *BT;
2936  switch (ErrorKind) {
2937    default:
2938      llvm_unreachable("Unhandled error.");
2939      return;
2940    case RefVal::ErrorUseAfterRelease:
2941      if (!useAfterRelease)
2942        useAfterRelease.reset(new UseAfterRelease());
2943      BT = &*useAfterRelease;
2944      break;
2945    case RefVal::ErrorReleaseNotOwned:
2946      if (!releaseNotOwned)
2947        releaseNotOwned.reset(new BadRelease());
2948      BT = &*releaseNotOwned;
2949      break;
2950    case RefVal::ErrorDeallocGC:
2951      if (!deallocGC)
2952        deallocGC.reset(new DeallocGC());
2953      BT = &*deallocGC;
2954      break;
2955    case RefVal::ErrorDeallocNotOwned:
2956      if (!deallocNotOwned)
2957        deallocNotOwned.reset(new DeallocNotOwned());
2958      BT = &*deallocNotOwned;
2959      break;
2960  }
2961
2962  assert(BT);
2963  CFRefReport *report = new CFRefReport(*BT, C.getASTContext().getLangOptions(),
2964                                        C.isObjCGCEnabled(), SummaryLog,
2965                                        N, Sym);
2966  report->addRange(ErrorRange);
2967  C.EmitReport(report);
2968}
2969
2970//===----------------------------------------------------------------------===//
2971// Handle the return values of retain-count-related functions.
2972//===----------------------------------------------------------------------===//
2973
2974bool RetainCountChecker::evalCall(const CallExpr *CE, CheckerContext &C) const {
2975  // Get the callee. We're only interested in simple C functions.
2976  const ProgramState *state = C.getState();
2977  const Expr *Callee = CE->getCallee();
2978  SVal L = state->getSVal(Callee);
2979
2980  const FunctionDecl *FD = L.getAsFunctionDecl();
2981  if (!FD)
2982    return false;
2983
2984  IdentifierInfo *II = FD->getIdentifier();
2985  if (!II)
2986    return false;
2987
2988  // For now, we're only handling the functions that return aliases of their
2989  // arguments: CFRetain and CFMakeCollectable (and their families).
2990  // Eventually we should add other functions we can model entirely,
2991  // such as CFRelease, which don't invalidate their arguments or globals.
2992  if (CE->getNumArgs() != 1)
2993    return false;
2994
2995  // Get the name of the function.
2996  StringRef FName = II->getName();
2997  FName = FName.substr(FName.find_first_not_of('_'));
2998
2999  // See if it's one of the specific functions we know how to eval.
3000  bool canEval = false;
3001
3002  QualType ResultTy = FD->getResultType();
3003  if (ResultTy->isObjCIdType()) {
3004    // Handle: id NSMakeCollectable(CFTypeRef)
3005    canEval = II->isStr("NSMakeCollectable");
3006  } else if (ResultTy->isPointerType()) {
3007    // Handle: (CF|CG)Retain
3008    //         CFMakeCollectable
3009    // It's okay to be a little sloppy here (CGMakeCollectable doesn't exist).
3010    if (cocoa::isRefType(ResultTy, "CF", FName) ||
3011        cocoa::isRefType(ResultTy, "CG", FName)) {
3012      canEval = isRetain(FD, FName) || isMakeCollectable(FD, FName);
3013    }
3014  }
3015
3016  if (!canEval)
3017    return false;
3018
3019  // Bind the return value.
3020  SVal RetVal = state->getSVal(CE->getArg(0));
3021  if (RetVal.isUnknown()) {
3022    // If the receiver is unknown, conjure a return value.
3023    SValBuilder &SVB = C.getSValBuilder();
3024    unsigned Count = C.getNodeBuilder().getCurrentBlockCount();
3025    SVal RetVal = SVB.getConjuredSymbolVal(0, CE, ResultTy, Count);
3026  }
3027  state = state->BindExpr(CE, RetVal, false);
3028
3029  // FIXME: This should not be necessary, but otherwise the argument seems to be
3030  // considered alive during the next statement.
3031  if (const MemRegion *ArgRegion = RetVal.getAsRegion()) {
3032    // Save the refcount status of the argument.
3033    SymbolRef Sym = RetVal.getAsLocSymbol();
3034    RefBindings::data_type *Binding = 0;
3035    if (Sym)
3036      Binding = state->get<RefBindings>(Sym);
3037
3038    // Invalidate the argument region.
3039    unsigned Count = C.getNodeBuilder().getCurrentBlockCount();
3040    state = state->invalidateRegions(ArgRegion, CE, Count);
3041
3042    // Restore the refcount status of the argument.
3043    if (Binding)
3044      state = state->set<RefBindings>(Sym, *Binding);
3045  }
3046
3047  C.addTransition(state);
3048  return true;
3049}
3050
3051//===----------------------------------------------------------------------===//
3052// Handle return statements.
3053//===----------------------------------------------------------------------===//
3054
3055void RetainCountChecker::checkPreStmt(const ReturnStmt *S,
3056                                      CheckerContext &C) const {
3057  const Expr *RetE = S->getRetValue();
3058  if (!RetE)
3059    return;
3060
3061  const ProgramState *state = C.getState();
3062  SymbolRef Sym = state->getSValAsScalarOrLoc(RetE).getAsLocSymbol();
3063  if (!Sym)
3064    return;
3065
3066  // Get the reference count binding (if any).
3067  const RefVal *T = state->get<RefBindings>(Sym);
3068  if (!T)
3069    return;
3070
3071  // Change the reference count.
3072  RefVal X = *T;
3073
3074  switch (X.getKind()) {
3075    case RefVal::Owned: {
3076      unsigned cnt = X.getCount();
3077      assert(cnt > 0);
3078      X.setCount(cnt - 1);
3079      X = X ^ RefVal::ReturnedOwned;
3080      break;
3081    }
3082
3083    case RefVal::NotOwned: {
3084      unsigned cnt = X.getCount();
3085      if (cnt) {
3086        X.setCount(cnt - 1);
3087        X = X ^ RefVal::ReturnedOwned;
3088      }
3089      else {
3090        X = X ^ RefVal::ReturnedNotOwned;
3091      }
3092      break;
3093    }
3094
3095    default:
3096      return;
3097  }
3098
3099  // Update the binding.
3100  state = state->set<RefBindings>(Sym, X);
3101  ExplodedNode *Pred = C.generateNode(state);
3102
3103  // At this point we have updated the state properly.
3104  // Everything after this is merely checking to see if the return value has
3105  // been over- or under-retained.
3106
3107  // Did we cache out?
3108  if (!Pred)
3109    return;
3110
3111  // Update the autorelease counts.
3112  static SimpleProgramPointTag
3113         AutoreleaseTag("RetainCountChecker : Autorelease");
3114  GenericNodeBuilderRefCount Bd(C.getNodeBuilder(), S, &AutoreleaseTag);
3115  llvm::tie(Pred, state) = handleAutoreleaseCounts(state, Bd, Pred,
3116                                                   C.getEngine(), Sym, X);
3117
3118  // Did we cache out?
3119  if (!Pred)
3120    return;
3121
3122  // Get the updated binding.
3123  T = state->get<RefBindings>(Sym);
3124  assert(T);
3125  X = *T;
3126
3127  // Consult the summary of the enclosing method.
3128  RetainSummaryManager &Summaries = getSummaryManager(C);
3129  const Decl *CD = &Pred->getCodeDecl();
3130
3131  if (const ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(CD)) {
3132    // Unlike regular functions, /all/ ObjC methods are assumed to always
3133    // follow Cocoa retain-count conventions, not just those with special
3134    // names or attributes.
3135    const RetainSummary *Summ = Summaries.getMethodSummary(MD);
3136    RetEffect RE = Summ ? Summ->getRetEffect() : RetEffect::MakeNoRet();
3137    checkReturnWithRetEffect(S, C, Pred, RE, X, Sym, state);
3138  }
3139
3140  if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(CD)) {
3141    if (!isa<CXXMethodDecl>(FD))
3142      if (const RetainSummary *Summ = Summaries.getSummary(FD))
3143        checkReturnWithRetEffect(S, C, Pred, Summ->getRetEffect(), X,
3144                                 Sym, state);
3145  }
3146}
3147
3148void RetainCountChecker::checkReturnWithRetEffect(const ReturnStmt *S,
3149                                                  CheckerContext &C,
3150                                                  ExplodedNode *Pred,
3151                                                  RetEffect RE, RefVal X,
3152                                                  SymbolRef Sym,
3153                                              const ProgramState *state) const {
3154  // Any leaks or other errors?
3155  if (X.isReturnedOwned() && X.getCount() == 0) {
3156    if (RE.getKind() != RetEffect::NoRet) {
3157      bool hasError = false;
3158      if (C.isObjCGCEnabled() && RE.getObjKind() == RetEffect::ObjC) {
3159        // Things are more complicated with garbage collection.  If the
3160        // returned object is suppose to be an Objective-C object, we have
3161        // a leak (as the caller expects a GC'ed object) because no
3162        // method should return ownership unless it returns a CF object.
3163        hasError = true;
3164        X = X ^ RefVal::ErrorGCLeakReturned;
3165      }
3166      else if (!RE.isOwned()) {
3167        // Either we are using GC and the returned object is a CF type
3168        // or we aren't using GC.  In either case, we expect that the
3169        // enclosing method is expected to return ownership.
3170        hasError = true;
3171        X = X ^ RefVal::ErrorLeakReturned;
3172      }
3173
3174      if (hasError) {
3175        // Generate an error node.
3176        state = state->set<RefBindings>(Sym, X);
3177        StmtNodeBuilder &Builder = C.getNodeBuilder();
3178
3179        static SimpleProgramPointTag
3180               ReturnOwnLeakTag("RetainCountChecker : ReturnsOwnLeak");
3181        ExplodedNode *N = Builder.generateNode(S, state, Pred,
3182                                               &ReturnOwnLeakTag);
3183        if (N) {
3184          const LangOptions &LOpts = C.getASTContext().getLangOptions();
3185          bool GCEnabled = C.isObjCGCEnabled();
3186          CFRefReport *report =
3187            new CFRefLeakReport(*getLeakAtReturnBug(LOpts, GCEnabled),
3188                                LOpts, GCEnabled, SummaryLog,
3189                                N, Sym, C.getEngine());
3190          C.EmitReport(report);
3191        }
3192      }
3193    }
3194  } else if (X.isReturnedNotOwned()) {
3195    if (RE.isOwned()) {
3196      // Trying to return a not owned object to a caller expecting an
3197      // owned object.
3198      state = state->set<RefBindings>(Sym, X ^ RefVal::ErrorReturnedNotOwned);
3199      StmtNodeBuilder &Builder = C.getNodeBuilder();
3200
3201      static SimpleProgramPointTag
3202             ReturnNotOwnedTag("RetainCountChecker : ReturnNotOwnedForOwned");
3203      ExplodedNode *N = Builder.generateNode(S, state, Pred,
3204                                             &ReturnNotOwnedTag);
3205      if (N) {
3206        if (!returnNotOwnedForOwned)
3207          returnNotOwnedForOwned.reset(new ReturnedNotOwnedForOwned());
3208
3209        CFRefReport *report =
3210            new CFRefReport(*returnNotOwnedForOwned,
3211                            C.getASTContext().getLangOptions(),
3212                            C.isObjCGCEnabled(), SummaryLog, N, Sym);
3213        C.EmitReport(report);
3214      }
3215    }
3216  }
3217}
3218
3219//===----------------------------------------------------------------------===//
3220// Check various ways a symbol can be invalidated.
3221//===----------------------------------------------------------------------===//
3222
3223void RetainCountChecker::checkBind(SVal loc, SVal val,
3224                                   CheckerContext &C) const {
3225  // Are we storing to something that causes the value to "escape"?
3226  bool escapes = true;
3227
3228  // A value escapes in three possible cases (this may change):
3229  //
3230  // (1) we are binding to something that is not a memory region.
3231  // (2) we are binding to a memregion that does not have stack storage
3232  // (3) we are binding to a memregion with stack storage that the store
3233  //     does not understand.
3234  const ProgramState *state = C.getState();
3235
3236  if (loc::MemRegionVal *regionLoc = dyn_cast<loc::MemRegionVal>(&loc)) {
3237    escapes = !regionLoc->getRegion()->hasStackStorage();
3238
3239    if (!escapes) {
3240      // To test (3), generate a new state with the binding added.  If it is
3241      // the same state, then it escapes (since the store cannot represent
3242      // the binding).
3243      escapes = (state == (state->bindLoc(*regionLoc, val)));
3244    }
3245  }
3246
3247  // If our store can represent the binding and we aren't storing to something
3248  // that doesn't have local storage then just return and have the simulation
3249  // state continue as is.
3250  if (!escapes)
3251      return;
3252
3253  // Otherwise, find all symbols referenced by 'val' that we are tracking
3254  // and stop tracking them.
3255  state = state->scanReachableSymbols<StopTrackingCallback>(val).getState();
3256  C.addTransition(state);
3257}
3258
3259const ProgramState *RetainCountChecker::evalAssume(const ProgramState *state,
3260                                                   SVal Cond,
3261                                                   bool Assumption) const {
3262
3263  // FIXME: We may add to the interface of evalAssume the list of symbols
3264  //  whose assumptions have changed.  For now we just iterate through the
3265  //  bindings and check if any of the tracked symbols are NULL.  This isn't
3266  //  too bad since the number of symbols we will track in practice are
3267  //  probably small and evalAssume is only called at branches and a few
3268  //  other places.
3269  RefBindings B = state->get<RefBindings>();
3270
3271  if (B.isEmpty())
3272    return state;
3273
3274  bool changed = false;
3275  RefBindings::Factory &RefBFactory = state->get_context<RefBindings>();
3276
3277  for (RefBindings::iterator I = B.begin(), E = B.end(); I != E; ++I) {
3278    // Check if the symbol is null (or equal to any constant).
3279    // If this is the case, stop tracking the symbol.
3280    if (state->getSymVal(I.getKey())) {
3281      changed = true;
3282      B = RefBFactory.remove(B, I.getKey());
3283    }
3284  }
3285
3286  if (changed)
3287    state = state->set<RefBindings>(B);
3288
3289  return state;
3290}
3291
3292const ProgramState *
3293RetainCountChecker::checkRegionChanges(const ProgramState *state,
3294                            const StoreManager::InvalidatedSymbols *invalidated,
3295                                    ArrayRef<const MemRegion *> ExplicitRegions,
3296                                    ArrayRef<const MemRegion *> Regions) const {
3297  if (!invalidated)
3298    return state;
3299
3300  llvm::SmallPtrSet<SymbolRef, 8> WhitelistedSymbols;
3301  for (ArrayRef<const MemRegion *>::iterator I = ExplicitRegions.begin(),
3302       E = ExplicitRegions.end(); I != E; ++I) {
3303    if (const SymbolicRegion *SR = (*I)->StripCasts()->getAs<SymbolicRegion>())
3304      WhitelistedSymbols.insert(SR->getSymbol());
3305  }
3306
3307  for (StoreManager::InvalidatedSymbols::const_iterator I=invalidated->begin(),
3308       E = invalidated->end(); I!=E; ++I) {
3309    SymbolRef sym = *I;
3310    if (WhitelistedSymbols.count(sym))
3311      continue;
3312    // Remove any existing reference-count binding.
3313    state = state->remove<RefBindings>(sym);
3314  }
3315  return state;
3316}
3317
3318//===----------------------------------------------------------------------===//
3319// Handle dead symbols and end-of-path.
3320//===----------------------------------------------------------------------===//
3321
3322std::pair<ExplodedNode *, const ProgramState *>
3323RetainCountChecker::handleAutoreleaseCounts(const ProgramState *state,
3324                                            GenericNodeBuilderRefCount Bd,
3325                                            ExplodedNode *Pred, ExprEngine &Eng,
3326                                            SymbolRef Sym, RefVal V) const {
3327  unsigned ACnt = V.getAutoreleaseCount();
3328
3329  // No autorelease counts?  Nothing to be done.
3330  if (!ACnt)
3331    return std::make_pair(Pred, state);
3332
3333  assert(!Eng.isObjCGCEnabled() && "Autorelease counts in GC mode?");
3334  unsigned Cnt = V.getCount();
3335
3336  // FIXME: Handle sending 'autorelease' to already released object.
3337
3338  if (V.getKind() == RefVal::ReturnedOwned)
3339    ++Cnt;
3340
3341  if (ACnt <= Cnt) {
3342    if (ACnt == Cnt) {
3343      V.clearCounts();
3344      if (V.getKind() == RefVal::ReturnedOwned)
3345        V = V ^ RefVal::ReturnedNotOwned;
3346      else
3347        V = V ^ RefVal::NotOwned;
3348    } else {
3349      V.setCount(Cnt - ACnt);
3350      V.setAutoreleaseCount(0);
3351    }
3352    state = state->set<RefBindings>(Sym, V);
3353    ExplodedNode *N = Bd.MakeNode(state, Pred);
3354    if (N == 0)
3355      state = 0;
3356    return std::make_pair(N, state);
3357  }
3358
3359  // Woah!  More autorelease counts then retain counts left.
3360  // Emit hard error.
3361  V = V ^ RefVal::ErrorOverAutorelease;
3362  state = state->set<RefBindings>(Sym, V);
3363
3364  if (ExplodedNode *N = Bd.MakeNode(state, Pred)) {
3365    N->markAsSink();
3366
3367    llvm::SmallString<128> sbuf;
3368    llvm::raw_svector_ostream os(sbuf);
3369    os << "Object over-autoreleased: object was sent -autorelease ";
3370    if (V.getAutoreleaseCount() > 1)
3371      os << V.getAutoreleaseCount() << " times ";
3372    os << "but the object has a +" << V.getCount() << " retain count";
3373
3374    if (!overAutorelease)
3375      overAutorelease.reset(new OverAutorelease());
3376
3377    const LangOptions &LOpts = Eng.getContext().getLangOptions();
3378    CFRefReport *report =
3379      new CFRefReport(*overAutorelease, LOpts, /* GCEnabled = */ false,
3380                      SummaryLog, N, Sym, os.str());
3381    Eng.getBugReporter().EmitReport(report);
3382  }
3383
3384  return std::make_pair((ExplodedNode *)0, (const ProgramState *)0);
3385}
3386
3387const ProgramState *
3388RetainCountChecker::handleSymbolDeath(const ProgramState *state,
3389                                      SymbolRef sid, RefVal V,
3390                                    SmallVectorImpl<SymbolRef> &Leaked) const {
3391  bool hasLeak = false;
3392  if (V.isOwned())
3393    hasLeak = true;
3394  else if (V.isNotOwned() || V.isReturnedOwned())
3395    hasLeak = (V.getCount() > 0);
3396
3397  if (!hasLeak)
3398    return state->remove<RefBindings>(sid);
3399
3400  Leaked.push_back(sid);
3401  return state->set<RefBindings>(sid, V ^ RefVal::ErrorLeak);
3402}
3403
3404ExplodedNode *
3405RetainCountChecker::processLeaks(const ProgramState *state,
3406                                 SmallVectorImpl<SymbolRef> &Leaked,
3407                                 GenericNodeBuilderRefCount &Builder,
3408                                 ExprEngine &Eng, ExplodedNode *Pred) const {
3409  if (Leaked.empty())
3410    return Pred;
3411
3412  // Generate an intermediate node representing the leak point.
3413  ExplodedNode *N = Builder.MakeNode(state, Pred);
3414
3415  if (N) {
3416    for (SmallVectorImpl<SymbolRef>::iterator
3417         I = Leaked.begin(), E = Leaked.end(); I != E; ++I) {
3418
3419      const LangOptions &LOpts = Eng.getContext().getLangOptions();
3420      bool GCEnabled = Eng.isObjCGCEnabled();
3421      CFRefBug *BT = Pred ? getLeakWithinFunctionBug(LOpts, GCEnabled)
3422                          : getLeakAtReturnBug(LOpts, GCEnabled);
3423      assert(BT && "BugType not initialized.");
3424
3425      CFRefLeakReport *report = new CFRefLeakReport(*BT, LOpts, GCEnabled,
3426                                                    SummaryLog, N, *I, Eng);
3427      Eng.getBugReporter().EmitReport(report);
3428    }
3429  }
3430
3431  return N;
3432}
3433
3434void RetainCountChecker::checkEndPath(EndOfFunctionNodeBuilder &Builder,
3435                                      ExprEngine &Eng) const {
3436  const ProgramState *state = Builder.getState();
3437  GenericNodeBuilderRefCount Bd(Builder);
3438  RefBindings B = state->get<RefBindings>();
3439  ExplodedNode *Pred = Builder.getPredecessor();
3440
3441  for (RefBindings::iterator I = B.begin(), E = B.end(); I != E; ++I) {
3442    llvm::tie(Pred, state) = handleAutoreleaseCounts(state, Bd, Pred, Eng,
3443                                                     I->first, I->second);
3444    if (!state)
3445      return;
3446  }
3447
3448  B = state->get<RefBindings>();
3449  SmallVector<SymbolRef, 10> Leaked;
3450
3451  for (RefBindings::iterator I = B.begin(), E = B.end(); I != E; ++I)
3452    state = handleSymbolDeath(state, I->first, I->second, Leaked);
3453
3454  processLeaks(state, Leaked, Bd, Eng, Pred);
3455}
3456
3457const ProgramPointTag *
3458RetainCountChecker::getDeadSymbolTag(SymbolRef sym) const {
3459  const SimpleProgramPointTag *&tag = DeadSymbolTags[sym];
3460  if (!tag) {
3461    llvm::SmallString<64> buf;
3462    llvm::raw_svector_ostream out(buf);
3463    out << "RetainCountChecker : Dead Symbol : " << sym->getSymbolID();
3464    tag = new SimpleProgramPointTag(out.str());
3465  }
3466  return tag;
3467}
3468
3469void RetainCountChecker::checkDeadSymbols(SymbolReaper &SymReaper,
3470                                          CheckerContext &C) const {
3471  StmtNodeBuilder &Builder = C.getNodeBuilder();
3472  ExprEngine &Eng = C.getEngine();
3473  const Stmt *S = C.getStmt();
3474  ExplodedNode *Pred = C.getPredecessor();
3475
3476  const ProgramState *state = C.getState();
3477  RefBindings B = state->get<RefBindings>();
3478
3479  // Update counts from autorelease pools
3480  for (SymbolReaper::dead_iterator I = SymReaper.dead_begin(),
3481       E = SymReaper.dead_end(); I != E; ++I) {
3482    SymbolRef Sym = *I;
3483    if (const RefVal *T = B.lookup(Sym)){
3484      // Use the symbol as the tag.
3485      // FIXME: This might not be as unique as we would like.
3486      GenericNodeBuilderRefCount Bd(Builder, S, getDeadSymbolTag(Sym));
3487      llvm::tie(Pred, state) = handleAutoreleaseCounts(state, Bd, Pred, Eng,
3488                                                       Sym, *T);
3489      if (!state)
3490        return;
3491    }
3492  }
3493
3494  B = state->get<RefBindings>();
3495  SmallVector<SymbolRef, 10> Leaked;
3496
3497  for (SymbolReaper::dead_iterator I = SymReaper.dead_begin(),
3498       E = SymReaper.dead_end(); I != E; ++I) {
3499    if (const RefVal *T = B.lookup(*I))
3500      state = handleSymbolDeath(state, *I, *T, Leaked);
3501  }
3502
3503  {
3504    GenericNodeBuilderRefCount Bd(Builder, S, this);
3505    Pred = processLeaks(state, Leaked, Bd, Eng, Pred);
3506  }
3507
3508  // Did we cache out?
3509  if (!Pred)
3510    return;
3511
3512  // Now generate a new node that nukes the old bindings.
3513  RefBindings::Factory &F = state->get_context<RefBindings>();
3514
3515  for (SymbolReaper::dead_iterator I = SymReaper.dead_begin(),
3516       E = SymReaper.dead_end(); I != E; ++I)
3517    B = F.remove(B, *I);
3518
3519  state = state->set<RefBindings>(B);
3520  C.generateNode(state, Pred);
3521}
3522
3523//===----------------------------------------------------------------------===//
3524// Debug printing of refcount bindings and autorelease pools.
3525//===----------------------------------------------------------------------===//
3526
3527static void PrintPool(raw_ostream &Out, SymbolRef Sym,
3528                      const ProgramState *State) {
3529  Out << ' ';
3530  if (Sym)
3531    Out << Sym->getSymbolID();
3532  else
3533    Out << "<pool>";
3534  Out << ":{";
3535
3536  // Get the contents of the pool.
3537  if (const ARCounts *Cnts = State->get<AutoreleasePoolContents>(Sym))
3538    for (ARCounts::iterator I = Cnts->begin(), E = Cnts->end(); I != E; ++I)
3539      Out << '(' << I.getKey() << ',' << I.getData() << ')';
3540
3541  Out << '}';
3542}
3543
3544static bool UsesAutorelease(const ProgramState *state) {
3545  // A state uses autorelease if it allocated an autorelease pool or if it has
3546  // objects in the caller's autorelease pool.
3547  return !state->get<AutoreleaseStack>().isEmpty() ||
3548          state->get<AutoreleasePoolContents>(SymbolRef());
3549}
3550
3551void RetainCountChecker::printState(raw_ostream &Out, const ProgramState *State,
3552                                    const char *NL, const char *Sep) const {
3553
3554  RefBindings B = State->get<RefBindings>();
3555
3556  if (!B.isEmpty())
3557    Out << Sep << NL;
3558
3559  for (RefBindings::iterator I = B.begin(), E = B.end(); I != E; ++I) {
3560    Out << I->first << " : ";
3561    I->second.print(Out);
3562    Out << NL;
3563  }
3564
3565  // Print the autorelease stack.
3566  if (UsesAutorelease(State)) {
3567    Out << Sep << NL << "AR pool stack:";
3568    ARStack Stack = State->get<AutoreleaseStack>();
3569
3570    PrintPool(Out, SymbolRef(), State);  // Print the caller's pool.
3571    for (ARStack::iterator I = Stack.begin(), E = Stack.end(); I != E; ++I)
3572      PrintPool(Out, *I, State);
3573
3574    Out << NL;
3575  }
3576}
3577
3578//===----------------------------------------------------------------------===//
3579// Checker registration.
3580//===----------------------------------------------------------------------===//
3581
3582void ento::registerRetainCountChecker(CheckerManager &Mgr) {
3583  Mgr.registerChecker<RetainCountChecker>();
3584}
3585
3586