Chris Lattner | bda0b62 | 2008-03-15 23:59:48 +0000 | [diff] [blame] | 1 | // CFRefCount.cpp - Transfer functions for tracking simple values -*- C++ -*--// |
Ted Kremenek | 2fff37e | 2008-03-06 00:08:09 +0000 | [diff] [blame] | 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
| 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
| 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
Gabor Greif | 843e934 | 2008-03-06 10:40:09 +0000 | [diff] [blame] | 10 | // This file defines the methods for CFRefCount, which implements |
Ted Kremenek | 2fff37e | 2008-03-06 00:08:09 +0000 | [diff] [blame] | 11 | // a reference count checker for Core Foundation (Mac OS X). |
| 12 | // |
| 13 | //===----------------------------------------------------------------------===// |
| 14 | |
Ted Kremenek | 6b3a0f7 | 2008-03-11 06:39:11 +0000 | [diff] [blame] | 15 | #include "GRSimpleVals.h" |
Ted Kremenek | 072192b | 2008-04-30 23:47:44 +0000 | [diff] [blame] | 16 | #include "clang/Basic/LangOptions.h" |
Ted Kremenek | c9fa2f7 | 2008-05-01 23:13:35 +0000 | [diff] [blame] | 17 | #include "clang/Basic/SourceManager.h" |
Ted Kremenek | 41573eb | 2009-02-14 01:43:44 +0000 | [diff] [blame] | 18 | #include "clang/Analysis/PathSensitive/GRExprEngineBuilders.h" |
Ted Kremenek | b9d17f9 | 2008-08-17 03:20:02 +0000 | [diff] [blame] | 19 | #include "clang/Analysis/PathSensitive/GRStateTrait.h" |
Ted Kremenek | 4dc41cc | 2008-03-31 18:26:32 +0000 | [diff] [blame] | 20 | #include "clang/Analysis/PathDiagnostic.h" |
Ted Kremenek | 2fff37e | 2008-03-06 00:08:09 +0000 | [diff] [blame] | 21 | #include "clang/Analysis/LocalCheckers.h" |
Ted Kremenek | fa34b33 | 2008-04-09 01:10:13 +0000 | [diff] [blame] | 22 | #include "clang/Analysis/PathDiagnostic.h" |
| 23 | #include "clang/Analysis/PathSensitive/BugReporter.h" |
Ted Kremenek | 5216ad7 | 2009-02-14 03:16:10 +0000 | [diff] [blame] | 24 | #include "clang/Analysis/PathSensitive/SymbolManager.h" |
Daniel Dunbar | c4a1dea | 2008-08-11 05:35:13 +0000 | [diff] [blame] | 25 | #include "clang/AST/DeclObjC.h" |
Ted Kremenek | 6b3a0f7 | 2008-03-11 06:39:11 +0000 | [diff] [blame] | 26 | #include "llvm/ADT/DenseMap.h" |
| 27 | #include "llvm/ADT/FoldingSet.h" |
| 28 | #include "llvm/ADT/ImmutableMap.h" |
Ted Kremenek | 6d34893 | 2008-10-21 15:53:15 +0000 | [diff] [blame] | 29 | #include "llvm/ADT/ImmutableList.h" |
Ted Kremenek | 900a2d7 | 2008-05-07 18:36:45 +0000 | [diff] [blame] | 30 | #include "llvm/ADT/StringExtras.h" |
Ted Kremenek | fa34b33 | 2008-04-09 01:10:13 +0000 | [diff] [blame] | 31 | #include "llvm/Support/Compiler.h" |
Ted Kremenek | 6ed9afc | 2008-05-16 18:33:44 +0000 | [diff] [blame] | 32 | #include "llvm/ADT/STLExtras.h" |
Ted Kremenek | f394804 | 2008-03-11 19:44:10 +0000 | [diff] [blame] | 33 | #include <ostream> |
Ted Kremenek | 9853045 | 2008-08-12 20:41:56 +0000 | [diff] [blame] | 34 | #include <stdarg.h> |
Ted Kremenek | 2fff37e | 2008-03-06 00:08:09 +0000 | [diff] [blame] | 35 | |
| 36 | using namespace clang; |
Ted Kremenek | 5c74d50 | 2008-10-24 21:18:08 +0000 | [diff] [blame] | 37 | |
| 38 | //===----------------------------------------------------------------------===// |
| 39 | // Utility functions. |
| 40 | //===----------------------------------------------------------------------===// |
| 41 | |
Ted Kremenek | 5c74d50 | 2008-10-24 21:18:08 +0000 | [diff] [blame] | 42 | // The "fundamental rule" for naming conventions of methods: |
| 43 | // (url broken into two lines) |
| 44 | // http://developer.apple.com/documentation/Cocoa/Conceptual/ |
| 45 | // MemoryMgmt/Tasks/MemoryManagementRules.html |
| 46 | // |
| 47 | // "You take ownership of an object if you create it using a method whose name |
| 48 | // begins with “alloc” or “new” or contains “copy” (for example, alloc, |
| 49 | // newObject, or mutableCopy), or if you send it a retain message. You are |
| 50 | // responsible for relinquishing ownership of objects you own using release |
| 51 | // or autorelease. Any other time you receive an object, you must |
| 52 | // not release it." |
| 53 | // |
Ted Kremenek | b80976c | 2009-02-21 05:13:43 +0000 | [diff] [blame] | 54 | |
| 55 | using llvm::CStrInCStrNoCase; |
Ted Kremenek | 39868cd | 2009-02-21 18:26:02 +0000 | [diff] [blame] | 56 | using llvm::StringsEqualNoCase; |
Ted Kremenek | b80976c | 2009-02-21 05:13:43 +0000 | [diff] [blame] | 57 | |
| 58 | enum NamingConvention { NoConvention, CreateRule, InitRule }; |
| 59 | |
| 60 | static inline bool isWordEnd(char ch, char prev, char next) { |
| 61 | return ch == '\0' |
| 62 | || (islower(prev) && isupper(ch)) // xxxC |
| 63 | || (isupper(prev) && isupper(ch) && islower(next)) // XXCreate |
| 64 | || !isalpha(ch); |
| 65 | } |
| 66 | |
| 67 | static inline const char* parseWord(const char* s) { |
| 68 | char ch = *s, prev = '\0'; |
| 69 | assert(ch != '\0'); |
| 70 | char next = *(s+1); |
| 71 | while (!isWordEnd(ch, prev, next)) { |
| 72 | prev = ch; |
| 73 | ch = next; |
| 74 | next = *((++s)+1); |
| 75 | } |
| 76 | return s; |
| 77 | } |
| 78 | |
| 79 | static NamingConvention deriveNamingConvention(const char* s) { |
| 80 | // A method/function name may contain a prefix. We don't know it is there, |
| 81 | // however, until we encounter the first '_'. |
| 82 | bool InPossiblePrefix = true; |
| 83 | bool AtBeginning = true; |
| 84 | NamingConvention C = NoConvention; |
| 85 | |
| 86 | while (*s != '\0') { |
| 87 | // Skip '_'. |
| 88 | if (*s == '_') { |
| 89 | if (InPossiblePrefix) { |
| 90 | InPossiblePrefix = false; |
| 91 | AtBeginning = true; |
| 92 | // Discard whatever 'convention' we |
| 93 | // had already derived since it occurs |
| 94 | // in the prefix. |
| 95 | C = NoConvention; |
| 96 | } |
| 97 | ++s; |
| 98 | continue; |
| 99 | } |
| 100 | |
| 101 | // Skip numbers, ':', etc. |
| 102 | if (!isalpha(*s)) { |
| 103 | ++s; |
| 104 | continue; |
| 105 | } |
| 106 | |
| 107 | const char *wordEnd = parseWord(s); |
| 108 | assert(wordEnd > s); |
| 109 | unsigned len = wordEnd - s; |
| 110 | |
| 111 | switch (len) { |
| 112 | default: |
| 113 | break; |
| 114 | case 3: |
| 115 | // Methods starting with 'new' follow the create rule. |
Ted Kremenek | 39868cd | 2009-02-21 18:26:02 +0000 | [diff] [blame] | 116 | if (AtBeginning && StringsEqualNoCase("new", s, len)) |
Ted Kremenek | b80976c | 2009-02-21 05:13:43 +0000 | [diff] [blame] | 117 | C = CreateRule; |
| 118 | break; |
| 119 | case 4: |
| 120 | // Methods starting with 'alloc' or contain 'copy' follow the |
| 121 | // create rule |
Ted Kremenek | 8be2a67 | 2009-03-13 20:27:06 +0000 | [diff] [blame] | 122 | if (C == NoConvention && StringsEqualNoCase("copy", s, len)) |
Ted Kremenek | b80976c | 2009-02-21 05:13:43 +0000 | [diff] [blame] | 123 | C = CreateRule; |
| 124 | else // Methods starting with 'init' follow the init rule. |
Ted Kremenek | 39868cd | 2009-02-21 18:26:02 +0000 | [diff] [blame] | 125 | if (AtBeginning && StringsEqualNoCase("init", s, len)) |
Ted Kremenek | 8be2a67 | 2009-03-13 20:27:06 +0000 | [diff] [blame] | 126 | C = InitRule; |
| 127 | break; |
| 128 | case 5: |
| 129 | if (AtBeginning && StringsEqualNoCase("alloc", s, len)) |
| 130 | C = CreateRule; |
Ted Kremenek | b80976c | 2009-02-21 05:13:43 +0000 | [diff] [blame] | 131 | break; |
| 132 | } |
| 133 | |
| 134 | // If we aren't in the prefix and have a derived convention then just |
| 135 | // return it now. |
| 136 | if (!InPossiblePrefix && C != NoConvention) |
| 137 | return C; |
| 138 | |
| 139 | AtBeginning = false; |
| 140 | s = wordEnd; |
| 141 | } |
| 142 | |
| 143 | // We will get here if there wasn't more than one word |
| 144 | // after the prefix. |
| 145 | return C; |
| 146 | } |
| 147 | |
Ted Kremenek | 5c74d50 | 2008-10-24 21:18:08 +0000 | [diff] [blame] | 148 | static bool followsFundamentalRule(const char* s) { |
Ted Kremenek | b80976c | 2009-02-21 05:13:43 +0000 | [diff] [blame] | 149 | return deriveNamingConvention(s) == CreateRule; |
Ted Kremenek | 4c79e55 | 2008-11-05 16:54:44 +0000 | [diff] [blame] | 150 | } |
| 151 | |
| 152 | static bool followsReturnRule(const char* s) { |
Ted Kremenek | b80976c | 2009-02-21 05:13:43 +0000 | [diff] [blame] | 153 | NamingConvention C = deriveNamingConvention(s); |
| 154 | return C == CreateRule || C == InitRule; |
Ted Kremenek | 4c79e55 | 2008-11-05 16:54:44 +0000 | [diff] [blame] | 155 | } |
Ted Kremenek | 5c74d50 | 2008-10-24 21:18:08 +0000 | [diff] [blame] | 156 | |
Ted Kremenek | 05cbe1a | 2008-04-09 23:49:11 +0000 | [diff] [blame] | 157 | //===----------------------------------------------------------------------===// |
Ted Kremenek | 553cf18 | 2008-06-25 21:21:56 +0000 | [diff] [blame] | 158 | // Selector creation functions. |
Ted Kremenek | 4fd8897 | 2008-04-17 18:12:53 +0000 | [diff] [blame] | 159 | //===----------------------------------------------------------------------===// |
| 160 | |
Ted Kremenek | b83e02e | 2008-05-01 18:31:44 +0000 | [diff] [blame] | 161 | static inline Selector GetNullarySelector(const char* name, ASTContext& Ctx) { |
Ted Kremenek | 4fd8897 | 2008-04-17 18:12:53 +0000 | [diff] [blame] | 162 | IdentifierInfo* II = &Ctx.Idents.get(name); |
| 163 | return Ctx.Selectors.getSelector(0, &II); |
| 164 | } |
| 165 | |
Ted Kremenek | 9c32d08 | 2008-05-06 00:30:21 +0000 | [diff] [blame] | 166 | static inline Selector GetUnarySelector(const char* name, ASTContext& Ctx) { |
| 167 | IdentifierInfo* II = &Ctx.Idents.get(name); |
| 168 | return Ctx.Selectors.getSelector(1, &II); |
| 169 | } |
| 170 | |
Ted Kremenek | 553cf18 | 2008-06-25 21:21:56 +0000 | [diff] [blame] | 171 | //===----------------------------------------------------------------------===// |
| 172 | // Type querying functions. |
| 173 | //===----------------------------------------------------------------------===// |
| 174 | |
Ted Kremenek | 1261938 | 2009-01-12 21:45:02 +0000 | [diff] [blame] | 175 | static bool hasPrefix(const char* s, const char* prefix) { |
| 176 | if (!prefix) |
| 177 | return true; |
Ted Kremenek | 0fcbf8e | 2008-05-07 20:06:41 +0000 | [diff] [blame] | 178 | |
Ted Kremenek | 1261938 | 2009-01-12 21:45:02 +0000 | [diff] [blame] | 179 | char c = *s; |
| 180 | char cP = *prefix; |
Ted Kremenek | 0fcbf8e | 2008-05-07 20:06:41 +0000 | [diff] [blame] | 181 | |
Ted Kremenek | 1261938 | 2009-01-12 21:45:02 +0000 | [diff] [blame] | 182 | while (c != '\0' && cP != '\0') { |
| 183 | if (c != cP) break; |
| 184 | c = *(++s); |
| 185 | cP = *(++prefix); |
| 186 | } |
Ted Kremenek | 0fcbf8e | 2008-05-07 20:06:41 +0000 | [diff] [blame] | 187 | |
Ted Kremenek | 1261938 | 2009-01-12 21:45:02 +0000 | [diff] [blame] | 188 | return cP == '\0'; |
Ted Kremenek | 0fcbf8e | 2008-05-07 20:06:41 +0000 | [diff] [blame] | 189 | } |
| 190 | |
Ted Kremenek | 1261938 | 2009-01-12 21:45:02 +0000 | [diff] [blame] | 191 | static bool hasSuffix(const char* s, const char* suffix) { |
| 192 | const char* loc = strstr(s, suffix); |
| 193 | return loc && strcmp(suffix, loc) == 0; |
| 194 | } |
| 195 | |
| 196 | static bool isRefType(QualType RetTy, const char* prefix, |
| 197 | ASTContext* Ctx = 0, const char* name = 0) { |
Ted Kremenek | 37d785b | 2008-07-15 16:50:12 +0000 | [diff] [blame] | 198 | |
Ted Kremenek | 1261938 | 2009-01-12 21:45:02 +0000 | [diff] [blame] | 199 | if (TypedefType* TD = dyn_cast<TypedefType>(RetTy.getTypePtr())) { |
| 200 | const char* TDName = TD->getDecl()->getIdentifier()->getName(); |
| 201 | return hasPrefix(TDName, prefix) && hasSuffix(TDName, "Ref"); |
| 202 | } |
| 203 | |
| 204 | if (!Ctx || !name) |
Ted Kremenek | 37d785b | 2008-07-15 16:50:12 +0000 | [diff] [blame] | 205 | return false; |
Ted Kremenek | 1261938 | 2009-01-12 21:45:02 +0000 | [diff] [blame] | 206 | |
| 207 | // Is the type void*? |
| 208 | const PointerType* PT = RetTy->getAsPointerType(); |
| 209 | if (!(PT->getPointeeType().getUnqualifiedType() == Ctx->VoidTy)) |
Ted Kremenek | 37d785b | 2008-07-15 16:50:12 +0000 | [diff] [blame] | 210 | return false; |
Ted Kremenek | 1261938 | 2009-01-12 21:45:02 +0000 | [diff] [blame] | 211 | |
| 212 | // Does the name start with the prefix? |
| 213 | return hasPrefix(name, prefix); |
Ted Kremenek | 37d785b | 2008-07-15 16:50:12 +0000 | [diff] [blame] | 214 | } |
| 215 | |
Ted Kremenek | 4fd8897 | 2008-04-17 18:12:53 +0000 | [diff] [blame] | 216 | //===----------------------------------------------------------------------===// |
Ted Kremenek | 553cf18 | 2008-06-25 21:21:56 +0000 | [diff] [blame] | 217 | // Primitives used for constructing summaries for function/method calls. |
Ted Kremenek | 05cbe1a | 2008-04-09 23:49:11 +0000 | [diff] [blame] | 218 | //===----------------------------------------------------------------------===// |
| 219 | |
Ted Kremenek | 553cf18 | 2008-06-25 21:21:56 +0000 | [diff] [blame] | 220 | namespace { |
| 221 | /// ArgEffect is used to summarize a function/method call's effect on a |
| 222 | /// particular argument. |
Ted Kremenek | f95e9fc | 2009-03-17 19:42:23 +0000 | [diff] [blame] | 223 | enum ArgEffect { Autorelease, Dealloc, DecRef, DecRefMsg, DoNothing, |
| 224 | DoNothingByRef, IncRefMsg, IncRef, MakeCollectable, MayEscape, |
| 225 | NewAutoreleasePool, SelfOwn, StopTracking }; |
Ted Kremenek | 553cf18 | 2008-06-25 21:21:56 +0000 | [diff] [blame] | 226 | |
| 227 | /// ArgEffects summarizes the effects of a function/method call on all of |
| 228 | /// its arguments. |
| 229 | typedef std::vector<std::pair<unsigned,ArgEffect> > ArgEffects; |
Ted Kremenek | 6b3a0f7 | 2008-03-11 06:39:11 +0000 | [diff] [blame] | 230 | } |
Ted Kremenek | 2fff37e | 2008-03-06 00:08:09 +0000 | [diff] [blame] | 231 | |
Ted Kremenek | 6b3a0f7 | 2008-03-11 06:39:11 +0000 | [diff] [blame] | 232 | namespace llvm { |
Ted Kremenek | 553cf18 | 2008-06-25 21:21:56 +0000 | [diff] [blame] | 233 | template <> struct FoldingSetTrait<ArgEffects> { |
| 234 | static void Profile(const ArgEffects& X, FoldingSetNodeID& ID) { |
| 235 | for (ArgEffects::const_iterator I = X.begin(), E = X.end(); I!= E; ++I) { |
| 236 | ID.AddInteger(I->first); |
| 237 | ID.AddInteger((unsigned) I->second); |
| 238 | } |
| 239 | } |
| 240 | }; |
Ted Kremenek | 6b3a0f7 | 2008-03-11 06:39:11 +0000 | [diff] [blame] | 241 | } // end llvm namespace |
| 242 | |
| 243 | namespace { |
Ted Kremenek | 553cf18 | 2008-06-25 21:21:56 +0000 | [diff] [blame] | 244 | |
| 245 | /// RetEffect is used to summarize a function/method call's behavior with |
| 246 | /// respect to its return value. |
| 247 | class VISIBILITY_HIDDEN RetEffect { |
Ted Kremenek | 6b3a0f7 | 2008-03-11 06:39:11 +0000 | [diff] [blame] | 248 | public: |
Ted Kremenek | a734470 | 2008-06-23 18:02:52 +0000 | [diff] [blame] | 249 | enum Kind { NoRet, Alias, OwnedSymbol, OwnedAllocatedSymbol, |
| 250 | NotOwnedSymbol, ReceiverAlias }; |
Ted Kremenek | 2d1652e | 2009-01-28 05:56:51 +0000 | [diff] [blame] | 251 | |
| 252 | enum ObjKind { CF, ObjC, AnyObj }; |
| 253 | |
Ted Kremenek | 6b3a0f7 | 2008-03-11 06:39:11 +0000 | [diff] [blame] | 254 | private: |
Ted Kremenek | 2d1652e | 2009-01-28 05:56:51 +0000 | [diff] [blame] | 255 | Kind K; |
| 256 | ObjKind O; |
| 257 | unsigned index; |
| 258 | |
| 259 | RetEffect(Kind k, unsigned idx = 0) : K(k), O(AnyObj), index(idx) {} |
| 260 | RetEffect(Kind k, ObjKind o) : K(k), O(o), index(0) {} |
Ted Kremenek | 2fff37e | 2008-03-06 00:08:09 +0000 | [diff] [blame] | 261 | |
Ted Kremenek | 6b3a0f7 | 2008-03-11 06:39:11 +0000 | [diff] [blame] | 262 | public: |
Ted Kremenek | 2d1652e | 2009-01-28 05:56:51 +0000 | [diff] [blame] | 263 | Kind getKind() const { return K; } |
| 264 | |
| 265 | ObjKind getObjKind() const { return O; } |
Ted Kremenek | 553cf18 | 2008-06-25 21:21:56 +0000 | [diff] [blame] | 266 | |
| 267 | unsigned getIndex() const { |
Ted Kremenek | 6b3a0f7 | 2008-03-11 06:39:11 +0000 | [diff] [blame] | 268 | assert(getKind() == Alias); |
Ted Kremenek | 2d1652e | 2009-01-28 05:56:51 +0000 | [diff] [blame] | 269 | return index; |
Ted Kremenek | 6b3a0f7 | 2008-03-11 06:39:11 +0000 | [diff] [blame] | 270 | } |
Ted Kremenek | 2fff37e | 2008-03-06 00:08:09 +0000 | [diff] [blame] | 271 | |
Ted Kremenek | 553cf18 | 2008-06-25 21:21:56 +0000 | [diff] [blame] | 272 | static RetEffect MakeAlias(unsigned Idx) { |
| 273 | return RetEffect(Alias, Idx); |
| 274 | } |
| 275 | static RetEffect MakeReceiverAlias() { |
| 276 | return RetEffect(ReceiverAlias); |
| 277 | } |
Ted Kremenek | 2d1652e | 2009-01-28 05:56:51 +0000 | [diff] [blame] | 278 | static RetEffect MakeOwned(ObjKind o, bool isAllocated = false) { |
| 279 | return RetEffect(isAllocated ? OwnedAllocatedSymbol : OwnedSymbol, o); |
Ted Kremenek | 553cf18 | 2008-06-25 21:21:56 +0000 | [diff] [blame] | 280 | } |
Ted Kremenek | 2d1652e | 2009-01-28 05:56:51 +0000 | [diff] [blame] | 281 | static RetEffect MakeNotOwned(ObjKind o) { |
| 282 | return RetEffect(NotOwnedSymbol, o); |
Ted Kremenek | 553cf18 | 2008-06-25 21:21:56 +0000 | [diff] [blame] | 283 | } |
| 284 | static RetEffect MakeNoRet() { |
| 285 | return RetEffect(NoRet); |
Ted Kremenek | a734470 | 2008-06-23 18:02:52 +0000 | [diff] [blame] | 286 | } |
Ted Kremenek | 2fff37e | 2008-03-06 00:08:09 +0000 | [diff] [blame] | 287 | |
Ted Kremenek | 553cf18 | 2008-06-25 21:21:56 +0000 | [diff] [blame] | 288 | void Profile(llvm::FoldingSetNodeID& ID) const { |
Ted Kremenek | 2d1652e | 2009-01-28 05:56:51 +0000 | [diff] [blame] | 289 | ID.AddInteger((unsigned)K); |
| 290 | ID.AddInteger((unsigned)O); |
| 291 | ID.AddInteger(index); |
Ted Kremenek | 553cf18 | 2008-06-25 21:21:56 +0000 | [diff] [blame] | 292 | } |
Ted Kremenek | 6b3a0f7 | 2008-03-11 06:39:11 +0000 | [diff] [blame] | 293 | }; |
Ted Kremenek | 6b3a0f7 | 2008-03-11 06:39:11 +0000 | [diff] [blame] | 294 | |
Ted Kremenek | 553cf18 | 2008-06-25 21:21:56 +0000 | [diff] [blame] | 295 | |
| 296 | class VISIBILITY_HIDDEN RetainSummary : public llvm::FoldingSetNode { |
Ted Kremenek | 1bffd74 | 2008-05-06 15:44:25 +0000 | [diff] [blame] | 297 | /// Args - an ordered vector of (index, ArgEffect) pairs, where index |
| 298 | /// specifies the argument (starting from 0). This can be sparsely |
| 299 | /// populated; arguments with no entry in Args use 'DefaultArgEffect'. |
Ted Kremenek | 6b3a0f7 | 2008-03-11 06:39:11 +0000 | [diff] [blame] | 300 | ArgEffects* Args; |
Ted Kremenek | 1bffd74 | 2008-05-06 15:44:25 +0000 | [diff] [blame] | 301 | |
| 302 | /// DefaultArgEffect - The default ArgEffect to apply to arguments that |
| 303 | /// do not have an entry in Args. |
| 304 | ArgEffect DefaultArgEffect; |
| 305 | |
Ted Kremenek | 553cf18 | 2008-06-25 21:21:56 +0000 | [diff] [blame] | 306 | /// Receiver - If this summary applies to an Objective-C message expression, |
| 307 | /// this is the effect applied to the state of the receiver. |
Ted Kremenek | 3c0cea3 | 2008-05-06 02:26:56 +0000 | [diff] [blame] | 308 | ArgEffect Receiver; |
Ted Kremenek | 553cf18 | 2008-06-25 21:21:56 +0000 | [diff] [blame] | 309 | |
| 310 | /// Ret - The effect on the return value. Used to indicate if the |
| 311 | /// function/method call returns a new tracked symbol, returns an |
| 312 | /// alias of one of the arguments in the call, and so on. |
Ted Kremenek | 6b3a0f7 | 2008-03-11 06:39:11 +0000 | [diff] [blame] | 313 | RetEffect Ret; |
Ted Kremenek | 553cf18 | 2008-06-25 21:21:56 +0000 | [diff] [blame] | 314 | |
Ted Kremenek | 70a733e | 2008-07-18 17:24:20 +0000 | [diff] [blame] | 315 | /// EndPath - Indicates that execution of this method/function should |
| 316 | /// terminate the simulation of a path. |
| 317 | bool EndPath; |
| 318 | |
Ted Kremenek | 6b3a0f7 | 2008-03-11 06:39:11 +0000 | [diff] [blame] | 319 | public: |
| 320 | |
Ted Kremenek | 1bffd74 | 2008-05-06 15:44:25 +0000 | [diff] [blame] | 321 | RetainSummary(ArgEffects* A, RetEffect R, ArgEffect defaultEff, |
Ted Kremenek | 70a733e | 2008-07-18 17:24:20 +0000 | [diff] [blame] | 322 | ArgEffect ReceiverEff, bool endpath = false) |
| 323 | : Args(A), DefaultArgEffect(defaultEff), Receiver(ReceiverEff), Ret(R), |
| 324 | EndPath(endpath) {} |
Ted Kremenek | 6b3a0f7 | 2008-03-11 06:39:11 +0000 | [diff] [blame] | 325 | |
Ted Kremenek | 553cf18 | 2008-06-25 21:21:56 +0000 | [diff] [blame] | 326 | /// getArg - Return the argument effect on the argument specified by |
| 327 | /// idx (starting from 0). |
Ted Kremenek | 1ac08d6 | 2008-03-11 17:48:22 +0000 | [diff] [blame] | 328 | ArgEffect getArg(unsigned idx) const { |
Ted Kremenek | 1bffd74 | 2008-05-06 15:44:25 +0000 | [diff] [blame] | 329 | |
Ted Kremenek | 891d5cc | 2008-04-24 17:22:33 +0000 | [diff] [blame] | 330 | if (!Args) |
Ted Kremenek | 1bffd74 | 2008-05-06 15:44:25 +0000 | [diff] [blame] | 331 | return DefaultArgEffect; |
Ted Kremenek | 891d5cc | 2008-04-24 17:22:33 +0000 | [diff] [blame] | 332 | |
| 333 | // If Args is present, it is likely to contain only 1 element. |
| 334 | // Just do a linear search. Do it from the back because functions with |
| 335 | // large numbers of arguments will be tail heavy with respect to which |
Ted Kremenek | 553cf18 | 2008-06-25 21:21:56 +0000 | [diff] [blame] | 336 | // argument they actually modify with respect to the reference count. |
Ted Kremenek | 891d5cc | 2008-04-24 17:22:33 +0000 | [diff] [blame] | 337 | for (ArgEffects::reverse_iterator I=Args->rbegin(), E=Args->rend(); |
| 338 | I!=E; ++I) { |
| 339 | |
| 340 | if (idx > I->first) |
Ted Kremenek | 1bffd74 | 2008-05-06 15:44:25 +0000 | [diff] [blame] | 341 | return DefaultArgEffect; |
Ted Kremenek | 891d5cc | 2008-04-24 17:22:33 +0000 | [diff] [blame] | 342 | |
| 343 | if (idx == I->first) |
| 344 | return I->second; |
| 345 | } |
| 346 | |
Ted Kremenek | 1bffd74 | 2008-05-06 15:44:25 +0000 | [diff] [blame] | 347 | return DefaultArgEffect; |
Ted Kremenek | 1ac08d6 | 2008-03-11 17:48:22 +0000 | [diff] [blame] | 348 | } |
| 349 | |
Ted Kremenek | 553cf18 | 2008-06-25 21:21:56 +0000 | [diff] [blame] | 350 | /// getRetEffect - Returns the effect on the return value of the call. |
Ted Kremenek | 3c0cea3 | 2008-05-06 02:26:56 +0000 | [diff] [blame] | 351 | RetEffect getRetEffect() const { |
Ted Kremenek | 00a3a5f | 2008-03-12 01:21:45 +0000 | [diff] [blame] | 352 | return Ret; |
| 353 | } |
| 354 | |
Ted Kremenek | 70a733e | 2008-07-18 17:24:20 +0000 | [diff] [blame] | 355 | /// isEndPath - Returns true if executing the given method/function should |
| 356 | /// terminate the path. |
| 357 | bool isEndPath() const { return EndPath; } |
| 358 | |
Ted Kremenek | 553cf18 | 2008-06-25 21:21:56 +0000 | [diff] [blame] | 359 | /// getReceiverEffect - Returns the effect on the receiver of the call. |
| 360 | /// This is only meaningful if the summary applies to an ObjCMessageExpr*. |
Ted Kremenek | 3c0cea3 | 2008-05-06 02:26:56 +0000 | [diff] [blame] | 361 | ArgEffect getReceiverEffect() const { |
| 362 | return Receiver; |
| 363 | } |
| 364 | |
Ted Kremenek | 5549976 | 2008-06-17 02:43:46 +0000 | [diff] [blame] | 365 | typedef ArgEffects::const_iterator ExprIterator; |
Ted Kremenek | 6b3a0f7 | 2008-03-11 06:39:11 +0000 | [diff] [blame] | 366 | |
Ted Kremenek | 5549976 | 2008-06-17 02:43:46 +0000 | [diff] [blame] | 367 | ExprIterator begin_args() const { return Args->begin(); } |
| 368 | ExprIterator end_args() const { return Args->end(); } |
Ted Kremenek | 6b3a0f7 | 2008-03-11 06:39:11 +0000 | [diff] [blame] | 369 | |
Ted Kremenek | 3c0cea3 | 2008-05-06 02:26:56 +0000 | [diff] [blame] | 370 | static void Profile(llvm::FoldingSetNodeID& ID, ArgEffects* A, |
Ted Kremenek | 1bffd74 | 2008-05-06 15:44:25 +0000 | [diff] [blame] | 371 | RetEffect RetEff, ArgEffect DefaultEff, |
Ted Kremenek | 2d1086c | 2008-07-18 17:39:56 +0000 | [diff] [blame] | 372 | ArgEffect ReceiverEff, bool EndPath) { |
Ted Kremenek | 6b3a0f7 | 2008-03-11 06:39:11 +0000 | [diff] [blame] | 373 | ID.AddPointer(A); |
Ted Kremenek | 3c0cea3 | 2008-05-06 02:26:56 +0000 | [diff] [blame] | 374 | ID.Add(RetEff); |
Ted Kremenek | 1bffd74 | 2008-05-06 15:44:25 +0000 | [diff] [blame] | 375 | ID.AddInteger((unsigned) DefaultEff); |
Ted Kremenek | 3c0cea3 | 2008-05-06 02:26:56 +0000 | [diff] [blame] | 376 | ID.AddInteger((unsigned) ReceiverEff); |
Ted Kremenek | 2d1086c | 2008-07-18 17:39:56 +0000 | [diff] [blame] | 377 | ID.AddInteger((unsigned) EndPath); |
Ted Kremenek | 6b3a0f7 | 2008-03-11 06:39:11 +0000 | [diff] [blame] | 378 | } |
| 379 | |
| 380 | void Profile(llvm::FoldingSetNodeID& ID) const { |
Ted Kremenek | 2d1086c | 2008-07-18 17:39:56 +0000 | [diff] [blame] | 381 | Profile(ID, Args, Ret, DefaultArgEffect, Receiver, EndPath); |
Ted Kremenek | 6b3a0f7 | 2008-03-11 06:39:11 +0000 | [diff] [blame] | 382 | } |
| 383 | }; |
Ted Kremenek | 4f22a78 | 2008-06-23 23:30:29 +0000 | [diff] [blame] | 384 | } // end anonymous namespace |
Ted Kremenek | 6b3a0f7 | 2008-03-11 06:39:11 +0000 | [diff] [blame] | 385 | |
Ted Kremenek | 553cf18 | 2008-06-25 21:21:56 +0000 | [diff] [blame] | 386 | //===----------------------------------------------------------------------===// |
| 387 | // Data structures for constructing summaries. |
| 388 | //===----------------------------------------------------------------------===// |
Ted Kremenek | 53301ba | 2008-06-24 03:49:48 +0000 | [diff] [blame] | 389 | |
Ted Kremenek | 553cf18 | 2008-06-25 21:21:56 +0000 | [diff] [blame] | 390 | namespace { |
| 391 | class VISIBILITY_HIDDEN ObjCSummaryKey { |
| 392 | IdentifierInfo* II; |
| 393 | Selector S; |
| 394 | public: |
| 395 | ObjCSummaryKey(IdentifierInfo* ii, Selector s) |
| 396 | : II(ii), S(s) {} |
| 397 | |
| 398 | ObjCSummaryKey(ObjCInterfaceDecl* d, Selector s) |
| 399 | : II(d ? d->getIdentifier() : 0), S(s) {} |
| 400 | |
| 401 | ObjCSummaryKey(Selector s) |
| 402 | : II(0), S(s) {} |
| 403 | |
| 404 | IdentifierInfo* getIdentifier() const { return II; } |
| 405 | Selector getSelector() const { return S; } |
| 406 | }; |
Ted Kremenek | 4f22a78 | 2008-06-23 23:30:29 +0000 | [diff] [blame] | 407 | } |
| 408 | |
| 409 | namespace llvm { |
Ted Kremenek | 553cf18 | 2008-06-25 21:21:56 +0000 | [diff] [blame] | 410 | template <> struct DenseMapInfo<ObjCSummaryKey> { |
| 411 | static inline ObjCSummaryKey getEmptyKey() { |
| 412 | return ObjCSummaryKey(DenseMapInfo<IdentifierInfo*>::getEmptyKey(), |
| 413 | DenseMapInfo<Selector>::getEmptyKey()); |
| 414 | } |
Ted Kremenek | 4f22a78 | 2008-06-23 23:30:29 +0000 | [diff] [blame] | 415 | |
Ted Kremenek | 553cf18 | 2008-06-25 21:21:56 +0000 | [diff] [blame] | 416 | static inline ObjCSummaryKey getTombstoneKey() { |
| 417 | return ObjCSummaryKey(DenseMapInfo<IdentifierInfo*>::getTombstoneKey(), |
| 418 | DenseMapInfo<Selector>::getTombstoneKey()); |
| 419 | } |
| 420 | |
| 421 | static unsigned getHashValue(const ObjCSummaryKey &V) { |
| 422 | return (DenseMapInfo<IdentifierInfo*>::getHashValue(V.getIdentifier()) |
| 423 | & 0x88888888) |
| 424 | | (DenseMapInfo<Selector>::getHashValue(V.getSelector()) |
| 425 | & 0x55555555); |
| 426 | } |
| 427 | |
| 428 | static bool isEqual(const ObjCSummaryKey& LHS, const ObjCSummaryKey& RHS) { |
| 429 | return DenseMapInfo<IdentifierInfo*>::isEqual(LHS.getIdentifier(), |
| 430 | RHS.getIdentifier()) && |
| 431 | DenseMapInfo<Selector>::isEqual(LHS.getSelector(), |
| 432 | RHS.getSelector()); |
| 433 | } |
| 434 | |
| 435 | static bool isPod() { |
| 436 | return DenseMapInfo<ObjCInterfaceDecl*>::isPod() && |
| 437 | DenseMapInfo<Selector>::isPod(); |
| 438 | } |
| 439 | }; |
Ted Kremenek | 4f22a78 | 2008-06-23 23:30:29 +0000 | [diff] [blame] | 440 | } // end llvm namespace |
Ted Kremenek | 6b3a0f7 | 2008-03-11 06:39:11 +0000 | [diff] [blame] | 441 | |
Ted Kremenek | 4f22a78 | 2008-06-23 23:30:29 +0000 | [diff] [blame] | 442 | namespace { |
Ted Kremenek | 553cf18 | 2008-06-25 21:21:56 +0000 | [diff] [blame] | 443 | class VISIBILITY_HIDDEN ObjCSummaryCache { |
| 444 | typedef llvm::DenseMap<ObjCSummaryKey, RetainSummary*> MapTy; |
| 445 | MapTy M; |
| 446 | public: |
| 447 | ObjCSummaryCache() {} |
| 448 | |
| 449 | typedef MapTy::iterator iterator; |
| 450 | |
| 451 | iterator find(ObjCInterfaceDecl* D, Selector S) { |
| 452 | |
| 453 | // Do a lookup with the (D,S) pair. If we find a match return |
| 454 | // the iterator. |
| 455 | ObjCSummaryKey K(D, S); |
| 456 | MapTy::iterator I = M.find(K); |
| 457 | |
| 458 | if (I != M.end() || !D) |
| 459 | return I; |
| 460 | |
| 461 | // Walk the super chain. If we find a hit with a parent, we'll end |
| 462 | // up returning that summary. We actually allow that key (null,S), as |
| 463 | // we cache summaries for the null ObjCInterfaceDecl* to allow us to |
| 464 | // generate initial summaries without having to worry about NSObject |
| 465 | // being declared. |
| 466 | // FIXME: We may change this at some point. |
| 467 | for (ObjCInterfaceDecl* C=D->getSuperClass() ;; C=C->getSuperClass()) { |
| 468 | if ((I = M.find(ObjCSummaryKey(C, S))) != M.end()) |
| 469 | break; |
| 470 | |
| 471 | if (!C) |
| 472 | return I; |
| 473 | } |
| 474 | |
| 475 | // Cache the summary with original key to make the next lookup faster |
| 476 | // and return the iterator. |
| 477 | M[K] = I->second; |
| 478 | return I; |
| 479 | } |
| 480 | |
Ted Kremenek | 9853045 | 2008-08-12 20:41:56 +0000 | [diff] [blame] | 481 | |
Ted Kremenek | 553cf18 | 2008-06-25 21:21:56 +0000 | [diff] [blame] | 482 | iterator find(Expr* Receiver, Selector S) { |
| 483 | return find(getReceiverDecl(Receiver), S); |
| 484 | } |
| 485 | |
| 486 | iterator find(IdentifierInfo* II, Selector S) { |
| 487 | // FIXME: Class method lookup. Right now we dont' have a good way |
| 488 | // of going between IdentifierInfo* and the class hierarchy. |
| 489 | iterator I = M.find(ObjCSummaryKey(II, S)); |
| 490 | return I == M.end() ? M.find(ObjCSummaryKey(S)) : I; |
| 491 | } |
| 492 | |
| 493 | ObjCInterfaceDecl* getReceiverDecl(Expr* E) { |
| 494 | |
| 495 | const PointerType* PT = E->getType()->getAsPointerType(); |
| 496 | if (!PT) return 0; |
| 497 | |
| 498 | ObjCInterfaceType* OI = dyn_cast<ObjCInterfaceType>(PT->getPointeeType()); |
| 499 | if (!OI) return 0; |
| 500 | |
| 501 | return OI ? OI->getDecl() : 0; |
| 502 | } |
| 503 | |
| 504 | iterator end() { return M.end(); } |
| 505 | |
| 506 | RetainSummary*& operator[](ObjCMessageExpr* ME) { |
| 507 | |
| 508 | Selector S = ME->getSelector(); |
| 509 | |
| 510 | if (Expr* Receiver = ME->getReceiver()) { |
| 511 | ObjCInterfaceDecl* OD = getReceiverDecl(Receiver); |
| 512 | return OD ? M[ObjCSummaryKey(OD->getIdentifier(), S)] : M[S]; |
| 513 | } |
| 514 | |
| 515 | return M[ObjCSummaryKey(ME->getClassName(), S)]; |
| 516 | } |
| 517 | |
| 518 | RetainSummary*& operator[](ObjCSummaryKey K) { |
| 519 | return M[K]; |
| 520 | } |
| 521 | |
| 522 | RetainSummary*& operator[](Selector S) { |
| 523 | return M[ ObjCSummaryKey(S) ]; |
| 524 | } |
| 525 | }; |
| 526 | } // end anonymous namespace |
| 527 | |
| 528 | //===----------------------------------------------------------------------===// |
| 529 | // Data structures for managing collections of summaries. |
| 530 | //===----------------------------------------------------------------------===// |
| 531 | |
| 532 | namespace { |
| 533 | class VISIBILITY_HIDDEN RetainSummaryManager { |
Ted Kremenek | d3dbcf4 | 2008-05-05 22:11:16 +0000 | [diff] [blame] | 534 | |
| 535 | //==-----------------------------------------------------------------==// |
| 536 | // Typedefs. |
| 537 | //==-----------------------------------------------------------------==// |
Ted Kremenek | 6b3a0f7 | 2008-03-11 06:39:11 +0000 | [diff] [blame] | 538 | |
Ted Kremenek | d3dbcf4 | 2008-05-05 22:11:16 +0000 | [diff] [blame] | 539 | typedef llvm::FoldingSet<llvm::FoldingSetNodeWrapper<ArgEffects> > |
| 540 | ArgEffectsSetTy; |
| 541 | |
| 542 | typedef llvm::FoldingSet<RetainSummary> |
| 543 | SummarySetTy; |
| 544 | |
| 545 | typedef llvm::DenseMap<FunctionDecl*, RetainSummary*> |
| 546 | FuncSummariesTy; |
| 547 | |
Ted Kremenek | 4f22a78 | 2008-06-23 23:30:29 +0000 | [diff] [blame] | 548 | typedef ObjCSummaryCache ObjCMethodSummariesTy; |
Ted Kremenek | d3dbcf4 | 2008-05-05 22:11:16 +0000 | [diff] [blame] | 549 | |
| 550 | //==-----------------------------------------------------------------==// |
| 551 | // Data. |
| 552 | //==-----------------------------------------------------------------==// |
| 553 | |
Ted Kremenek | 553cf18 | 2008-06-25 21:21:56 +0000 | [diff] [blame] | 554 | /// Ctx - The ASTContext object for the analyzed ASTs. |
Ted Kremenek | 377e230 | 2008-04-29 05:33:51 +0000 | [diff] [blame] | 555 | ASTContext& Ctx; |
Ted Kremenek | 179064e | 2008-07-01 17:21:27 +0000 | [diff] [blame] | 556 | |
Ted Kremenek | 070a825 | 2008-07-09 18:11:16 +0000 | [diff] [blame] | 557 | /// CFDictionaryCreateII - An IdentifierInfo* representing the indentifier |
| 558 | /// "CFDictionaryCreate". |
| 559 | IdentifierInfo* CFDictionaryCreateII; |
| 560 | |
Ted Kremenek | 553cf18 | 2008-06-25 21:21:56 +0000 | [diff] [blame] | 561 | /// GCEnabled - Records whether or not the analyzed code runs in GC mode. |
Ted Kremenek | 377e230 | 2008-04-29 05:33:51 +0000 | [diff] [blame] | 562 | const bool GCEnabled; |
| 563 | |
Ted Kremenek | 553cf18 | 2008-06-25 21:21:56 +0000 | [diff] [blame] | 564 | /// SummarySet - A FoldingSet of uniqued summaries. |
Ted Kremenek | 3ea0b6a | 2008-04-10 22:58:08 +0000 | [diff] [blame] | 565 | SummarySetTy SummarySet; |
Ted Kremenek | 00a3a5f | 2008-03-12 01:21:45 +0000 | [diff] [blame] | 566 | |
Ted Kremenek | 553cf18 | 2008-06-25 21:21:56 +0000 | [diff] [blame] | 567 | /// FuncSummaries - A map from FunctionDecls to summaries. |
Ted Kremenek | d3dbcf4 | 2008-05-05 22:11:16 +0000 | [diff] [blame] | 568 | FuncSummariesTy FuncSummaries; |
| 569 | |
Ted Kremenek | 553cf18 | 2008-06-25 21:21:56 +0000 | [diff] [blame] | 570 | /// ObjCClassMethodSummaries - A map from selectors (for instance methods) |
| 571 | /// to summaries. |
Ted Kremenek | 1f180c3 | 2008-06-23 22:21:20 +0000 | [diff] [blame] | 572 | ObjCMethodSummariesTy ObjCClassMethodSummaries; |
Ted Kremenek | d3dbcf4 | 2008-05-05 22:11:16 +0000 | [diff] [blame] | 573 | |
Ted Kremenek | 553cf18 | 2008-06-25 21:21:56 +0000 | [diff] [blame] | 574 | /// ObjCMethodSummaries - A map from selectors to summaries. |
Ted Kremenek | 1f180c3 | 2008-06-23 22:21:20 +0000 | [diff] [blame] | 575 | ObjCMethodSummariesTy ObjCMethodSummaries; |
Ted Kremenek | d3dbcf4 | 2008-05-05 22:11:16 +0000 | [diff] [blame] | 576 | |
Ted Kremenek | 553cf18 | 2008-06-25 21:21:56 +0000 | [diff] [blame] | 577 | /// ArgEffectsSet - A FoldingSet of uniqued ArgEffects. |
Ted Kremenek | d3dbcf4 | 2008-05-05 22:11:16 +0000 | [diff] [blame] | 578 | ArgEffectsSetTy ArgEffectsSet; |
| 579 | |
Ted Kremenek | 553cf18 | 2008-06-25 21:21:56 +0000 | [diff] [blame] | 580 | /// BPAlloc - A BumpPtrAllocator used for allocating summaries, ArgEffects, |
| 581 | /// and all other data used by the checker. |
Ted Kremenek | d3dbcf4 | 2008-05-05 22:11:16 +0000 | [diff] [blame] | 582 | llvm::BumpPtrAllocator BPAlloc; |
| 583 | |
Ted Kremenek | 553cf18 | 2008-06-25 21:21:56 +0000 | [diff] [blame] | 584 | /// ScratchArgs - A holding buffer for construct ArgEffects. |
Ted Kremenek | d3dbcf4 | 2008-05-05 22:11:16 +0000 | [diff] [blame] | 585 | ArgEffects ScratchArgs; |
| 586 | |
Ted Kremenek | 432af59 | 2008-05-06 18:11:36 +0000 | [diff] [blame] | 587 | RetainSummary* StopSummary; |
| 588 | |
Ted Kremenek | d3dbcf4 | 2008-05-05 22:11:16 +0000 | [diff] [blame] | 589 | //==-----------------------------------------------------------------==// |
| 590 | // Methods. |
| 591 | //==-----------------------------------------------------------------==// |
| 592 | |
Ted Kremenek | 553cf18 | 2008-06-25 21:21:56 +0000 | [diff] [blame] | 593 | /// getArgEffects - Returns a persistent ArgEffects object based on the |
| 594 | /// data in ScratchArgs. |
Ted Kremenek | 00a3a5f | 2008-03-12 01:21:45 +0000 | [diff] [blame] | 595 | ArgEffects* getArgEffects(); |
Ted Kremenek | 6b3a0f7 | 2008-03-11 06:39:11 +0000 | [diff] [blame] | 596 | |
Ted Kremenek | 86ad3bc | 2008-05-05 16:51:50 +0000 | [diff] [blame] | 597 | enum UnaryFuncKind { cfretain, cfrelease, cfmakecollectable }; |
Ted Kremenek | 896cd9d | 2008-10-23 01:56:15 +0000 | [diff] [blame] | 598 | |
| 599 | public: |
Ted Kremenek | 6ad315a | 2009-02-23 16:51:39 +0000 | [diff] [blame] | 600 | RetainSummary* getUnarySummary(const FunctionType* FT, UnaryFuncKind func); |
Ted Kremenek | 00a3a5f | 2008-03-12 01:21:45 +0000 | [diff] [blame] | 601 | |
Ted Kremenek | d3dbcf4 | 2008-05-05 22:11:16 +0000 | [diff] [blame] | 602 | RetainSummary* getCFSummaryCreateRule(FunctionDecl* FD); |
| 603 | RetainSummary* getCFSummaryGetRule(FunctionDecl* FD); |
Ted Kremenek | 1261938 | 2009-01-12 21:45:02 +0000 | [diff] [blame] | 604 | RetainSummary* getCFCreateGetRuleSummary(FunctionDecl* FD, const char* FName); |
Ted Kremenek | 00a3a5f | 2008-03-12 01:21:45 +0000 | [diff] [blame] | 605 | |
Ted Kremenek | 3c0cea3 | 2008-05-06 02:26:56 +0000 | [diff] [blame] | 606 | RetainSummary* getPersistentSummary(ArgEffects* AE, RetEffect RetEff, |
Ted Kremenek | 1bffd74 | 2008-05-06 15:44:25 +0000 | [diff] [blame] | 607 | ArgEffect ReceiverEff = DoNothing, |
Ted Kremenek | 70a733e | 2008-07-18 17:24:20 +0000 | [diff] [blame] | 608 | ArgEffect DefaultEff = MayEscape, |
| 609 | bool isEndPath = false); |
Ted Kremenek | 706522f | 2008-10-29 04:07:07 +0000 | [diff] [blame] | 610 | |
Ted Kremenek | 3c0cea3 | 2008-05-06 02:26:56 +0000 | [diff] [blame] | 611 | RetainSummary* getPersistentSummary(RetEffect RE, |
Ted Kremenek | 1bffd74 | 2008-05-06 15:44:25 +0000 | [diff] [blame] | 612 | ArgEffect ReceiverEff = DoNothing, |
Ted Kremenek | 3eabf1c | 2008-05-22 17:31:13 +0000 | [diff] [blame] | 613 | ArgEffect DefaultEff = MayEscape) { |
Ted Kremenek | 1bffd74 | 2008-05-06 15:44:25 +0000 | [diff] [blame] | 614 | return getPersistentSummary(getArgEffects(), RE, ReceiverEff, DefaultEff); |
Ted Kremenek | 9c32d08 | 2008-05-06 00:30:21 +0000 | [diff] [blame] | 615 | } |
Ted Kremenek | 46e49ee | 2008-05-05 23:55:01 +0000 | [diff] [blame] | 616 | |
Ted Kremenek | 1bffd74 | 2008-05-06 15:44:25 +0000 | [diff] [blame] | 617 | RetainSummary* getPersistentStopSummary() { |
Ted Kremenek | 432af59 | 2008-05-06 18:11:36 +0000 | [diff] [blame] | 618 | if (StopSummary) |
| 619 | return StopSummary; |
| 620 | |
| 621 | StopSummary = getPersistentSummary(RetEffect::MakeNoRet(), |
| 622 | StopTracking, StopTracking); |
Ted Kremenek | 706522f | 2008-10-29 04:07:07 +0000 | [diff] [blame] | 623 | |
Ted Kremenek | 432af59 | 2008-05-06 18:11:36 +0000 | [diff] [blame] | 624 | return StopSummary; |
Ted Kremenek | 1bffd74 | 2008-05-06 15:44:25 +0000 | [diff] [blame] | 625 | } |
Ted Kremenek | b309525 | 2008-05-06 04:20:12 +0000 | [diff] [blame] | 626 | |
Ted Kremenek | 553cf18 | 2008-06-25 21:21:56 +0000 | [diff] [blame] | 627 | RetainSummary* getInitMethodSummary(ObjCMessageExpr* ME); |
Ted Kremenek | 46e49ee | 2008-05-05 23:55:01 +0000 | [diff] [blame] | 628 | |
Ted Kremenek | 1f180c3 | 2008-06-23 22:21:20 +0000 | [diff] [blame] | 629 | void InitializeClassMethodSummaries(); |
| 630 | void InitializeMethodSummaries(); |
Ted Kremenek | 896cd9d | 2008-10-23 01:56:15 +0000 | [diff] [blame] | 631 | |
Ted Kremenek | 234a4c2 | 2009-01-07 00:39:56 +0000 | [diff] [blame] | 632 | bool isTrackedObjectType(QualType T); |
| 633 | |
Ted Kremenek | 896cd9d | 2008-10-23 01:56:15 +0000 | [diff] [blame] | 634 | private: |
| 635 | |
Ted Kremenek | 70a733e | 2008-07-18 17:24:20 +0000 | [diff] [blame] | 636 | void addClsMethSummary(IdentifierInfo* ClsII, Selector S, |
| 637 | RetainSummary* Summ) { |
| 638 | ObjCClassMethodSummaries[ObjCSummaryKey(ClsII, S)] = Summ; |
| 639 | } |
| 640 | |
Ted Kremenek | 553cf18 | 2008-06-25 21:21:56 +0000 | [diff] [blame] | 641 | void addNSObjectClsMethSummary(Selector S, RetainSummary *Summ) { |
| 642 | ObjCClassMethodSummaries[S] = Summ; |
| 643 | } |
| 644 | |
| 645 | void addNSObjectMethSummary(Selector S, RetainSummary *Summ) { |
| 646 | ObjCMethodSummaries[S] = Summ; |
| 647 | } |
Ted Kremenek | 3aa7ecd | 2009-03-04 23:30:42 +0000 | [diff] [blame] | 648 | |
| 649 | void addClassMethSummary(const char* Cls, const char* nullaryName, |
| 650 | RetainSummary *Summ) { |
| 651 | IdentifierInfo* ClsII = &Ctx.Idents.get(Cls); |
| 652 | Selector S = GetNullarySelector(nullaryName, Ctx); |
| 653 | ObjCClassMethodSummaries[ObjCSummaryKey(ClsII, S)] = Summ; |
| 654 | } |
Ted Kremenek | 553cf18 | 2008-06-25 21:21:56 +0000 | [diff] [blame] | 655 | |
Ted Kremenek | 6c4becb | 2009-02-25 02:54:57 +0000 | [diff] [blame] | 656 | void addInstMethSummary(const char* Cls, const char* nullaryName, |
| 657 | RetainSummary *Summ) { |
| 658 | IdentifierInfo* ClsII = &Ctx.Idents.get(Cls); |
| 659 | Selector S = GetNullarySelector(nullaryName, Ctx); |
| 660 | ObjCMethodSummaries[ObjCSummaryKey(ClsII, S)] = Summ; |
| 661 | } |
| 662 | |
Ted Kremenek | af9dc27 | 2008-08-12 18:48:50 +0000 | [diff] [blame] | 663 | void addInstMethSummary(const char* Cls, RetainSummary* Summ, va_list argp) { |
Ted Kremenek | 70a733e | 2008-07-18 17:24:20 +0000 | [diff] [blame] | 664 | |
Ted Kremenek | 9e476de | 2008-08-12 18:30:56 +0000 | [diff] [blame] | 665 | IdentifierInfo* ClsII = &Ctx.Idents.get(Cls); |
| 666 | llvm::SmallVector<IdentifierInfo*, 10> II; |
| 667 | |
| 668 | while (const char* s = va_arg(argp, const char*)) |
| 669 | II.push_back(&Ctx.Idents.get(s)); |
| 670 | |
| 671 | Selector S = Ctx.Selectors.getSelector(II.size(), &II[0]); |
Ted Kremenek | 70a733e | 2008-07-18 17:24:20 +0000 | [diff] [blame] | 672 | ObjCMethodSummaries[ObjCSummaryKey(ClsII, S)] = Summ; |
| 673 | } |
Ted Kremenek | af9dc27 | 2008-08-12 18:48:50 +0000 | [diff] [blame] | 674 | |
| 675 | void addInstMethSummary(const char* Cls, RetainSummary* Summ, ...) { |
| 676 | va_list argp; |
| 677 | va_start(argp, Summ); |
| 678 | addInstMethSummary(Cls, Summ, argp); |
| 679 | va_end(argp); |
| 680 | } |
Ted Kremenek | 9e476de | 2008-08-12 18:30:56 +0000 | [diff] [blame] | 681 | |
| 682 | void addPanicSummary(const char* Cls, ...) { |
| 683 | RetainSummary* Summ = getPersistentSummary(0, RetEffect::MakeNoRet(), |
| 684 | DoNothing, DoNothing, true); |
| 685 | va_list argp; |
| 686 | va_start (argp, Cls); |
Ted Kremenek | af9dc27 | 2008-08-12 18:48:50 +0000 | [diff] [blame] | 687 | addInstMethSummary(Cls, Summ, argp); |
Ted Kremenek | 9e476de | 2008-08-12 18:30:56 +0000 | [diff] [blame] | 688 | va_end(argp); |
| 689 | } |
Ted Kremenek | 70a733e | 2008-07-18 17:24:20 +0000 | [diff] [blame] | 690 | |
Ted Kremenek | 6b3a0f7 | 2008-03-11 06:39:11 +0000 | [diff] [blame] | 691 | public: |
Ted Kremenek | d3dbcf4 | 2008-05-05 22:11:16 +0000 | [diff] [blame] | 692 | |
| 693 | RetainSummaryManager(ASTContext& ctx, bool gcenabled) |
Ted Kremenek | 179064e | 2008-07-01 17:21:27 +0000 | [diff] [blame] | 694 | : Ctx(ctx), |
Ted Kremenek | 070a825 | 2008-07-09 18:11:16 +0000 | [diff] [blame] | 695 | CFDictionaryCreateII(&ctx.Idents.get("CFDictionaryCreate")), |
Ted Kremenek | 553cf18 | 2008-06-25 21:21:56 +0000 | [diff] [blame] | 696 | GCEnabled(gcenabled), StopSummary(0) { |
| 697 | |
| 698 | InitializeClassMethodSummaries(); |
| 699 | InitializeMethodSummaries(); |
| 700 | } |
Ted Kremenek | 377e230 | 2008-04-29 05:33:51 +0000 | [diff] [blame] | 701 | |
Ted Kremenek | d3dbcf4 | 2008-05-05 22:11:16 +0000 | [diff] [blame] | 702 | ~RetainSummaryManager(); |
Ted Kremenek | 6b3a0f7 | 2008-03-11 06:39:11 +0000 | [diff] [blame] | 703 | |
Ted Kremenek | ab59227 | 2008-06-24 03:56:45 +0000 | [diff] [blame] | 704 | RetainSummary* getSummary(FunctionDecl* FD); |
Ted Kremenek | 553cf18 | 2008-06-25 21:21:56 +0000 | [diff] [blame] | 705 | RetainSummary* getMethodSummary(ObjCMessageExpr* ME, ObjCInterfaceDecl* ID); |
Ted Kremenek | 1f180c3 | 2008-06-23 22:21:20 +0000 | [diff] [blame] | 706 | RetainSummary* getClassMethodSummary(IdentifierInfo* ClsName, Selector S); |
Ted Kremenek | b309525 | 2008-05-06 04:20:12 +0000 | [diff] [blame] | 707 | |
Ted Kremenek | d3dbcf4 | 2008-05-05 22:11:16 +0000 | [diff] [blame] | 708 | bool isGCEnabled() const { return GCEnabled; } |
Ted Kremenek | 6b3a0f7 | 2008-03-11 06:39:11 +0000 | [diff] [blame] | 709 | }; |
| 710 | |
| 711 | } // end anonymous namespace |
| 712 | |
| 713 | //===----------------------------------------------------------------------===// |
| 714 | // Implementation of checker data structures. |
| 715 | //===----------------------------------------------------------------------===// |
| 716 | |
Ted Kremenek | d3dbcf4 | 2008-05-05 22:11:16 +0000 | [diff] [blame] | 717 | RetainSummaryManager::~RetainSummaryManager() { |
Ted Kremenek | 6b3a0f7 | 2008-03-11 06:39:11 +0000 | [diff] [blame] | 718 | |
| 719 | // FIXME: The ArgEffects could eventually be allocated from BPAlloc, |
| 720 | // mitigating the need to do explicit cleanup of the |
| 721 | // Argument-Effect summaries. |
| 722 | |
Ted Kremenek | 46e49ee | 2008-05-05 23:55:01 +0000 | [diff] [blame] | 723 | for (ArgEffectsSetTy::iterator I = ArgEffectsSet.begin(), |
| 724 | E = ArgEffectsSet.end(); I!=E; ++I) |
Ted Kremenek | 6b3a0f7 | 2008-03-11 06:39:11 +0000 | [diff] [blame] | 725 | I->getValue().~ArgEffects(); |
Ted Kremenek | 2fff37e | 2008-03-06 00:08:09 +0000 | [diff] [blame] | 726 | } |
Ted Kremenek | 6b3a0f7 | 2008-03-11 06:39:11 +0000 | [diff] [blame] | 727 | |
Ted Kremenek | d3dbcf4 | 2008-05-05 22:11:16 +0000 | [diff] [blame] | 728 | ArgEffects* RetainSummaryManager::getArgEffects() { |
Ted Kremenek | 00a3a5f | 2008-03-12 01:21:45 +0000 | [diff] [blame] | 729 | |
Ted Kremenek | 891d5cc | 2008-04-24 17:22:33 +0000 | [diff] [blame] | 730 | if (ScratchArgs.empty()) |
| 731 | return NULL; |
| 732 | |
| 733 | // Compute a profile for a non-empty ScratchArgs. |
Ted Kremenek | 00a3a5f | 2008-03-12 01:21:45 +0000 | [diff] [blame] | 734 | llvm::FoldingSetNodeID profile; |
| 735 | profile.Add(ScratchArgs); |
| 736 | void* InsertPos; |
| 737 | |
Ted Kremenek | 891d5cc | 2008-04-24 17:22:33 +0000 | [diff] [blame] | 738 | // Look up the uniqued copy, or create a new one. |
Ted Kremenek | 00a3a5f | 2008-03-12 01:21:45 +0000 | [diff] [blame] | 739 | llvm::FoldingSetNodeWrapper<ArgEffects>* E = |
Ted Kremenek | d3dbcf4 | 2008-05-05 22:11:16 +0000 | [diff] [blame] | 740 | ArgEffectsSet.FindNodeOrInsertPos(profile, InsertPos); |
Ted Kremenek | 00a3a5f | 2008-03-12 01:21:45 +0000 | [diff] [blame] | 741 | |
Ted Kremenek | 891d5cc | 2008-04-24 17:22:33 +0000 | [diff] [blame] | 742 | if (E) { |
Ted Kremenek | 00a3a5f | 2008-03-12 01:21:45 +0000 | [diff] [blame] | 743 | ScratchArgs.clear(); |
| 744 | return &E->getValue(); |
| 745 | } |
| 746 | |
| 747 | E = (llvm::FoldingSetNodeWrapper<ArgEffects>*) |
Ted Kremenek | 553cf18 | 2008-06-25 21:21:56 +0000 | [diff] [blame] | 748 | BPAlloc.Allocate<llvm::FoldingSetNodeWrapper<ArgEffects> >(); |
Ted Kremenek | 00a3a5f | 2008-03-12 01:21:45 +0000 | [diff] [blame] | 749 | |
| 750 | new (E) llvm::FoldingSetNodeWrapper<ArgEffects>(ScratchArgs); |
Ted Kremenek | d3dbcf4 | 2008-05-05 22:11:16 +0000 | [diff] [blame] | 751 | ArgEffectsSet.InsertNode(E, InsertPos); |
Ted Kremenek | 00a3a5f | 2008-03-12 01:21:45 +0000 | [diff] [blame] | 752 | |
| 753 | ScratchArgs.clear(); |
| 754 | return &E->getValue(); |
| 755 | } |
| 756 | |
Ted Kremenek | 3c0cea3 | 2008-05-06 02:26:56 +0000 | [diff] [blame] | 757 | RetainSummary* |
| 758 | RetainSummaryManager::getPersistentSummary(ArgEffects* AE, RetEffect RetEff, |
Ted Kremenek | 1bffd74 | 2008-05-06 15:44:25 +0000 | [diff] [blame] | 759 | ArgEffect ReceiverEff, |
Ted Kremenek | 70a733e | 2008-07-18 17:24:20 +0000 | [diff] [blame] | 760 | ArgEffect DefaultEff, |
| 761 | bool isEndPath) { |
Ted Kremenek | 00a3a5f | 2008-03-12 01:21:45 +0000 | [diff] [blame] | 762 | |
Ted Kremenek | 891d5cc | 2008-04-24 17:22:33 +0000 | [diff] [blame] | 763 | // Generate a profile for the summary. |
Ted Kremenek | 00a3a5f | 2008-03-12 01:21:45 +0000 | [diff] [blame] | 764 | llvm::FoldingSetNodeID profile; |
Ted Kremenek | 2d1086c | 2008-07-18 17:39:56 +0000 | [diff] [blame] | 765 | RetainSummary::Profile(profile, AE, RetEff, DefaultEff, ReceiverEff, |
| 766 | isEndPath); |
Ted Kremenek | 00a3a5f | 2008-03-12 01:21:45 +0000 | [diff] [blame] | 767 | |
Ted Kremenek | 891d5cc | 2008-04-24 17:22:33 +0000 | [diff] [blame] | 768 | // Look up the uniqued summary, or create one if it doesn't exist. |
| 769 | void* InsertPos; |
Ted Kremenek | d3dbcf4 | 2008-05-05 22:11:16 +0000 | [diff] [blame] | 770 | RetainSummary* Summ = SummarySet.FindNodeOrInsertPos(profile, InsertPos); |
Ted Kremenek | 00a3a5f | 2008-03-12 01:21:45 +0000 | [diff] [blame] | 771 | |
| 772 | if (Summ) |
| 773 | return Summ; |
| 774 | |
Ted Kremenek | 891d5cc | 2008-04-24 17:22:33 +0000 | [diff] [blame] | 775 | // Create the summary and return it. |
Ted Kremenek | d3dbcf4 | 2008-05-05 22:11:16 +0000 | [diff] [blame] | 776 | Summ = (RetainSummary*) BPAlloc.Allocate<RetainSummary>(); |
Ted Kremenek | 70a733e | 2008-07-18 17:24:20 +0000 | [diff] [blame] | 777 | new (Summ) RetainSummary(AE, RetEff, DefaultEff, ReceiverEff, isEndPath); |
Ted Kremenek | 00a3a5f | 2008-03-12 01:21:45 +0000 | [diff] [blame] | 778 | SummarySet.InsertNode(Summ, InsertPos); |
| 779 | |
| 780 | return Summ; |
| 781 | } |
| 782 | |
Ted Kremenek | d3dbcf4 | 2008-05-05 22:11:16 +0000 | [diff] [blame] | 783 | //===----------------------------------------------------------------------===// |
Ted Kremenek | 234a4c2 | 2009-01-07 00:39:56 +0000 | [diff] [blame] | 784 | // Predicates. |
| 785 | //===----------------------------------------------------------------------===// |
| 786 | |
| 787 | bool RetainSummaryManager::isTrackedObjectType(QualType T) { |
| 788 | if (!Ctx.isObjCObjectPointerType(T)) |
| 789 | return false; |
| 790 | |
| 791 | // Does it subclass NSObject? |
| 792 | ObjCInterfaceType* OT = dyn_cast<ObjCInterfaceType>(T.getTypePtr()); |
| 793 | |
| 794 | // We assume that id<..>, id, and "Class" all represent tracked objects. |
| 795 | if (!OT) |
| 796 | return true; |
| 797 | |
| 798 | // Does the object type subclass NSObject? |
| 799 | // FIXME: We can memoize here if this gets too expensive. |
| 800 | IdentifierInfo* NSObjectII = &Ctx.Idents.get("NSObject"); |
| 801 | ObjCInterfaceDecl* ID = OT->getDecl(); |
| 802 | |
| 803 | for ( ; ID ; ID = ID->getSuperClass()) |
| 804 | if (ID->getIdentifier() == NSObjectII) |
| 805 | return true; |
| 806 | |
| 807 | return false; |
| 808 | } |
| 809 | |
| 810 | //===----------------------------------------------------------------------===// |
Ted Kremenek | d3dbcf4 | 2008-05-05 22:11:16 +0000 | [diff] [blame] | 811 | // Summary creation for functions (largely uses of Core Foundation). |
| 812 | //===----------------------------------------------------------------------===// |
Ted Kremenek | 00a3a5f | 2008-03-12 01:21:45 +0000 | [diff] [blame] | 813 | |
Ted Kremenek | 1261938 | 2009-01-12 21:45:02 +0000 | [diff] [blame] | 814 | static bool isRetain(FunctionDecl* FD, const char* FName) { |
| 815 | const char* loc = strstr(FName, "Retain"); |
| 816 | return loc && loc[sizeof("Retain")-1] == '\0'; |
| 817 | } |
| 818 | |
| 819 | static bool isRelease(FunctionDecl* FD, const char* FName) { |
| 820 | const char* loc = strstr(FName, "Release"); |
| 821 | return loc && loc[sizeof("Release")-1] == '\0'; |
| 822 | } |
| 823 | |
Ted Kremenek | ab59227 | 2008-06-24 03:56:45 +0000 | [diff] [blame] | 824 | RetainSummary* RetainSummaryManager::getSummary(FunctionDecl* FD) { |
Ted Kremenek | 00a3a5f | 2008-03-12 01:21:45 +0000 | [diff] [blame] | 825 | |
| 826 | SourceLocation Loc = FD->getLocation(); |
| 827 | |
| 828 | if (!Loc.isFileID()) |
| 829 | return NULL; |
Ted Kremenek | 2fff37e | 2008-03-06 00:08:09 +0000 | [diff] [blame] | 830 | |
Ted Kremenek | 891d5cc | 2008-04-24 17:22:33 +0000 | [diff] [blame] | 831 | // Look up a summary in our cache of FunctionDecls -> Summaries. |
Ted Kremenek | d3dbcf4 | 2008-05-05 22:11:16 +0000 | [diff] [blame] | 832 | FuncSummariesTy::iterator I = FuncSummaries.find(FD); |
Ted Kremenek | 891d5cc | 2008-04-24 17:22:33 +0000 | [diff] [blame] | 833 | |
Ted Kremenek | d3dbcf4 | 2008-05-05 22:11:16 +0000 | [diff] [blame] | 834 | if (I != FuncSummaries.end()) |
Ted Kremenek | 891d5cc | 2008-04-24 17:22:33 +0000 | [diff] [blame] | 835 | return I->second; |
| 836 | |
| 837 | // No summary. Generate one. |
Ted Kremenek | 1261938 | 2009-01-12 21:45:02 +0000 | [diff] [blame] | 838 | RetainSummary *S = 0; |
Ted Kremenek | 86ad3bc | 2008-05-05 16:51:50 +0000 | [diff] [blame] | 839 | |
Ted Kremenek | 37d785b | 2008-07-15 16:50:12 +0000 | [diff] [blame] | 840 | do { |
Ted Kremenek | 1261938 | 2009-01-12 21:45:02 +0000 | [diff] [blame] | 841 | // We generate "stop" summaries for implicitly defined functions. |
| 842 | if (FD->isImplicit()) { |
| 843 | S = getPersistentStopSummary(); |
| 844 | break; |
Ted Kremenek | 37d785b | 2008-07-15 16:50:12 +0000 | [diff] [blame] | 845 | } |
Ted Kremenek | 6ca3191 | 2008-11-04 00:36:12 +0000 | [diff] [blame] | 846 | |
Ted Kremenek | 6ad315a | 2009-02-23 16:51:39 +0000 | [diff] [blame] | 847 | // [PR 3337] Use 'getAsFunctionType' to strip away any typedefs on the |
Ted Kremenek | 9989065 | 2009-01-16 18:40:33 +0000 | [diff] [blame] | 848 | // function's type. |
Ted Kremenek | 6ad315a | 2009-02-23 16:51:39 +0000 | [diff] [blame] | 849 | const FunctionType* FT = FD->getType()->getAsFunctionType(); |
Ted Kremenek | 1261938 | 2009-01-12 21:45:02 +0000 | [diff] [blame] | 850 | const char* FName = FD->getIdentifier()->getName(); |
| 851 | |
Ted Kremenek | bf0a4dd | 2009-03-05 22:11:14 +0000 | [diff] [blame] | 852 | // Strip away preceding '_'. Doing this here will effect all the checks |
| 853 | // down below. |
| 854 | while (*FName == '_') ++FName; |
| 855 | |
Ted Kremenek | 1261938 | 2009-01-12 21:45:02 +0000 | [diff] [blame] | 856 | // Inspect the result type. |
| 857 | QualType RetTy = FT->getResultType(); |
| 858 | |
| 859 | // FIXME: This should all be refactored into a chain of "summary lookup" |
| 860 | // filters. |
| 861 | if (strcmp(FName, "IOServiceGetMatchingServices") == 0) { |
| 862 | // FIXES: <rdar://problem/6326900> |
| 863 | // This should be addressed using a API table. This strcmp is also |
| 864 | // a little gross, but there is no need to super optimize here. |
| 865 | assert (ScratchArgs.empty()); |
| 866 | ScratchArgs.push_back(std::make_pair(1, DecRef)); |
| 867 | S = getPersistentSummary(RetEffect::MakeNoRet(), DoNothing, DoNothing); |
| 868 | break; |
Ted Kremenek | 64e859a | 2008-10-22 20:54:52 +0000 | [diff] [blame] | 869 | } |
Ted Kremenek | 6199190 | 2009-03-17 22:43:44 +0000 | [diff] [blame] | 870 | |
| 871 | // Enable this code once the semantics of NSDeallocateObject are resolved |
| 872 | // for GC. <rdar://problem/6619988> |
| 873 | #if 0 |
| 874 | // Handle: NSDeallocateObject(id anObject); |
| 875 | // This method does allow 'nil' (although we don't check it now). |
| 876 | if (strcmp(FName, "NSDeallocateObject") == 0) { |
| 877 | return RetTy == Ctx.VoidTy |
| 878 | ? getPersistentSummary(RetEffect::MakeNoRet(), DoNothing, Dealloc) |
| 879 | : getPersistentStopSummary(); |
| 880 | } |
| 881 | #endif |
Ted Kremenek | 1261938 | 2009-01-12 21:45:02 +0000 | [diff] [blame] | 882 | |
| 883 | // Handle: id NSMakeCollectable(CFTypeRef) |
| 884 | if (strcmp(FName, "NSMakeCollectable") == 0) { |
| 885 | S = (RetTy == Ctx.getObjCIdType()) |
| 886 | ? getUnarySummary(FT, cfmakecollectable) |
| 887 | : getPersistentStopSummary(); |
| 888 | |
| 889 | break; |
| 890 | } |
| 891 | |
| 892 | if (RetTy->isPointerType()) { |
| 893 | // For CoreFoundation ('CF') types. |
| 894 | if (isRefType(RetTy, "CF", &Ctx, FName)) { |
| 895 | if (isRetain(FD, FName)) |
| 896 | S = getUnarySummary(FT, cfretain); |
| 897 | else if (strstr(FName, "MakeCollectable")) |
| 898 | S = getUnarySummary(FT, cfmakecollectable); |
| 899 | else |
| 900 | S = getCFCreateGetRuleSummary(FD, FName); |
| 901 | |
| 902 | break; |
| 903 | } |
| 904 | |
| 905 | // For CoreGraphics ('CG') types. |
| 906 | if (isRefType(RetTy, "CG", &Ctx, FName)) { |
| 907 | if (isRetain(FD, FName)) |
| 908 | S = getUnarySummary(FT, cfretain); |
| 909 | else |
| 910 | S = getCFCreateGetRuleSummary(FD, FName); |
| 911 | |
| 912 | break; |
| 913 | } |
| 914 | |
| 915 | // For the Disk Arbitration API (DiskArbitration/DADisk.h) |
| 916 | if (isRefType(RetTy, "DADisk") || |
| 917 | isRefType(RetTy, "DADissenter") || |
| 918 | isRefType(RetTy, "DASessionRef")) { |
| 919 | S = getCFCreateGetRuleSummary(FD, FName); |
| 920 | break; |
| 921 | } |
| 922 | |
| 923 | break; |
| 924 | } |
| 925 | |
| 926 | // Check for release functions, the only kind of functions that we care |
| 927 | // about that don't return a pointer type. |
| 928 | if (FName[0] == 'C' && (FName[1] == 'F' || FName[1] == 'G')) { |
Ted Kremenek | bf0a4dd | 2009-03-05 22:11:14 +0000 | [diff] [blame] | 929 | // Test for 'CGCF'. |
| 930 | if (FName[1] == 'G' && FName[2] == 'C' && FName[3] == 'F') |
| 931 | FName += 4; |
| 932 | else |
| 933 | FName += 2; |
| 934 | |
| 935 | if (isRelease(FD, FName)) |
Ted Kremenek | 1261938 | 2009-01-12 21:45:02 +0000 | [diff] [blame] | 936 | S = getUnarySummary(FT, cfrelease); |
| 937 | else { |
Ted Kremenek | 6818928 | 2009-01-29 22:45:13 +0000 | [diff] [blame] | 938 | assert (ScratchArgs.empty()); |
| 939 | // Remaining CoreFoundation and CoreGraphics functions. |
| 940 | // We use to assume that they all strictly followed the ownership idiom |
| 941 | // and that ownership cannot be transferred. While this is technically |
| 942 | // correct, many methods allow a tracked object to escape. For example: |
| 943 | // |
| 944 | // CFMutableDictionaryRef x = CFDictionaryCreateMutable(...); |
| 945 | // CFDictionaryAddValue(y, key, x); |
| 946 | // CFRelease(x); |
| 947 | // ... it is okay to use 'x' since 'y' has a reference to it |
| 948 | // |
| 949 | // We handle this and similar cases with the follow heuristic. If the |
| 950 | // function name contains "InsertValue", "SetValue" or "AddValue" then |
| 951 | // we assume that arguments may "escape." |
| 952 | // |
| 953 | ArgEffect E = (CStrInCStrNoCase(FName, "InsertValue") || |
| 954 | CStrInCStrNoCase(FName, "AddValue") || |
Ted Kremenek | a92206e | 2009-02-05 22:34:53 +0000 | [diff] [blame] | 955 | CStrInCStrNoCase(FName, "SetValue") || |
| 956 | CStrInCStrNoCase(FName, "AppendValue")) |
Ted Kremenek | 6818928 | 2009-01-29 22:45:13 +0000 | [diff] [blame] | 957 | ? MayEscape : DoNothing; |
| 958 | |
| 959 | S = getPersistentSummary(RetEffect::MakeNoRet(), DoNothing, E); |
Ted Kremenek | 1261938 | 2009-01-12 21:45:02 +0000 | [diff] [blame] | 960 | } |
| 961 | } |
Ted Kremenek | 37d785b | 2008-07-15 16:50:12 +0000 | [diff] [blame] | 962 | } |
| 963 | while (0); |
Ted Kremenek | 891d5cc | 2008-04-24 17:22:33 +0000 | [diff] [blame] | 964 | |
Ted Kremenek | d3dbcf4 | 2008-05-05 22:11:16 +0000 | [diff] [blame] | 965 | FuncSummaries[FD] = S; |
Ted Kremenek | 86ad3bc | 2008-05-05 16:51:50 +0000 | [diff] [blame] | 966 | return S; |
Ted Kremenek | 2fff37e | 2008-03-06 00:08:09 +0000 | [diff] [blame] | 967 | } |
| 968 | |
Ted Kremenek | 37d785b | 2008-07-15 16:50:12 +0000 | [diff] [blame] | 969 | RetainSummary* |
| 970 | RetainSummaryManager::getCFCreateGetRuleSummary(FunctionDecl* FD, |
| 971 | const char* FName) { |
| 972 | |
Ted Kremenek | 86ad3bc | 2008-05-05 16:51:50 +0000 | [diff] [blame] | 973 | if (strstr(FName, "Create") || strstr(FName, "Copy")) |
| 974 | return getCFSummaryCreateRule(FD); |
Ted Kremenek | 37d785b | 2008-07-15 16:50:12 +0000 | [diff] [blame] | 975 | |
Ted Kremenek | 86ad3bc | 2008-05-05 16:51:50 +0000 | [diff] [blame] | 976 | if (strstr(FName, "Get")) |
| 977 | return getCFSummaryGetRule(FD); |
| 978 | |
| 979 | return 0; |
| 980 | } |
| 981 | |
Ted Kremenek | d3dbcf4 | 2008-05-05 22:11:16 +0000 | [diff] [blame] | 982 | RetainSummary* |
Ted Kremenek | 6ad315a | 2009-02-23 16:51:39 +0000 | [diff] [blame] | 983 | RetainSummaryManager::getUnarySummary(const FunctionType* FT, |
| 984 | UnaryFuncKind func) { |
| 985 | |
Ted Kremenek | 1261938 | 2009-01-12 21:45:02 +0000 | [diff] [blame] | 986 | // Sanity check that this is *really* a unary function. This can |
| 987 | // happen if people do weird things. |
Douglas Gregor | 72564e7 | 2009-02-26 23:50:07 +0000 | [diff] [blame] | 988 | const FunctionProtoType* FTP = dyn_cast<FunctionProtoType>(FT); |
Ted Kremenek | 1261938 | 2009-01-12 21:45:02 +0000 | [diff] [blame] | 989 | if (!FTP || FTP->getNumArgs() != 1) |
| 990 | return getPersistentStopSummary(); |
Ted Kremenek | d3dbcf4 | 2008-05-05 22:11:16 +0000 | [diff] [blame] | 991 | |
Ted Kremenek | 00a3a5f | 2008-03-12 01:21:45 +0000 | [diff] [blame] | 992 | assert (ScratchArgs.empty()); |
Ted Kremenek | 00a3a5f | 2008-03-12 01:21:45 +0000 | [diff] [blame] | 993 | |
Ted Kremenek | 377e230 | 2008-04-29 05:33:51 +0000 | [diff] [blame] | 994 | switch (func) { |
Ted Kremenek | 1261938 | 2009-01-12 21:45:02 +0000 | [diff] [blame] | 995 | case cfretain: { |
Ted Kremenek | 377e230 | 2008-04-29 05:33:51 +0000 | [diff] [blame] | 996 | ScratchArgs.push_back(std::make_pair(0, IncRef)); |
Ted Kremenek | 3eabf1c | 2008-05-22 17:31:13 +0000 | [diff] [blame] | 997 | return getPersistentSummary(RetEffect::MakeAlias(0), |
| 998 | DoNothing, DoNothing); |
Ted Kremenek | 377e230 | 2008-04-29 05:33:51 +0000 | [diff] [blame] | 999 | } |
| 1000 | |
| 1001 | case cfrelease: { |
Ted Kremenek | 377e230 | 2008-04-29 05:33:51 +0000 | [diff] [blame] | 1002 | ScratchArgs.push_back(std::make_pair(0, DecRef)); |
Ted Kremenek | 3eabf1c | 2008-05-22 17:31:13 +0000 | [diff] [blame] | 1003 | return getPersistentSummary(RetEffect::MakeNoRet(), |
| 1004 | DoNothing, DoNothing); |
Ted Kremenek | 377e230 | 2008-04-29 05:33:51 +0000 | [diff] [blame] | 1005 | } |
| 1006 | |
| 1007 | case cfmakecollectable: { |
Ted Kremenek | 2701900 | 2009-02-18 21:57:45 +0000 | [diff] [blame] | 1008 | ScratchArgs.push_back(std::make_pair(0, MakeCollectable)); |
| 1009 | return getPersistentSummary(RetEffect::MakeAlias(0),DoNothing, DoNothing); |
Ted Kremenek | 377e230 | 2008-04-29 05:33:51 +0000 | [diff] [blame] | 1010 | } |
| 1011 | |
| 1012 | default: |
Ted Kremenek | 86ad3bc | 2008-05-05 16:51:50 +0000 | [diff] [blame] | 1013 | assert (false && "Not a supported unary function."); |
Ted Kremenek | 9853045 | 2008-08-12 20:41:56 +0000 | [diff] [blame] | 1014 | return 0; |
Ted Kremenek | 940b1d8 | 2008-04-10 23:44:06 +0000 | [diff] [blame] | 1015 | } |
Ted Kremenek | 00a3a5f | 2008-03-12 01:21:45 +0000 | [diff] [blame] | 1016 | } |
| 1017 | |
Ted Kremenek | d3dbcf4 | 2008-05-05 22:11:16 +0000 | [diff] [blame] | 1018 | RetainSummary* RetainSummaryManager::getCFSummaryCreateRule(FunctionDecl* FD) { |
Ted Kremenek | 891d5cc | 2008-04-24 17:22:33 +0000 | [diff] [blame] | 1019 | assert (ScratchArgs.empty()); |
Ted Kremenek | 070a825 | 2008-07-09 18:11:16 +0000 | [diff] [blame] | 1020 | |
| 1021 | if (FD->getIdentifier() == CFDictionaryCreateII) { |
| 1022 | ScratchArgs.push_back(std::make_pair(1, DoNothingByRef)); |
| 1023 | ScratchArgs.push_back(std::make_pair(2, DoNothingByRef)); |
| 1024 | } |
| 1025 | |
Ted Kremenek | 2d1652e | 2009-01-28 05:56:51 +0000 | [diff] [blame] | 1026 | return getPersistentSummary(RetEffect::MakeOwned(RetEffect::CF, true)); |
Ted Kremenek | 00a3a5f | 2008-03-12 01:21:45 +0000 | [diff] [blame] | 1027 | } |
| 1028 | |
Ted Kremenek | d3dbcf4 | 2008-05-05 22:11:16 +0000 | [diff] [blame] | 1029 | RetainSummary* RetainSummaryManager::getCFSummaryGetRule(FunctionDecl* FD) { |
Ted Kremenek | 891d5cc | 2008-04-24 17:22:33 +0000 | [diff] [blame] | 1030 | assert (ScratchArgs.empty()); |
Ted Kremenek | 2d1652e | 2009-01-28 05:56:51 +0000 | [diff] [blame] | 1031 | return getPersistentSummary(RetEffect::MakeNotOwned(RetEffect::CF), |
| 1032 | DoNothing, DoNothing); |
Ted Kremenek | 00a3a5f | 2008-03-12 01:21:45 +0000 | [diff] [blame] | 1033 | } |
| 1034 | |
Ted Kremenek | 6b3a0f7 | 2008-03-11 06:39:11 +0000 | [diff] [blame] | 1035 | //===----------------------------------------------------------------------===// |
Ted Kremenek | d3dbcf4 | 2008-05-05 22:11:16 +0000 | [diff] [blame] | 1036 | // Summary creation for Selectors. |
| 1037 | //===----------------------------------------------------------------------===// |
| 1038 | |
Ted Kremenek | 1bffd74 | 2008-05-06 15:44:25 +0000 | [diff] [blame] | 1039 | RetainSummary* |
Ted Kremenek | 553cf18 | 2008-06-25 21:21:56 +0000 | [diff] [blame] | 1040 | RetainSummaryManager::getInitMethodSummary(ObjCMessageExpr* ME) { |
Ted Kremenek | 46e49ee | 2008-05-05 23:55:01 +0000 | [diff] [blame] | 1041 | assert(ScratchArgs.empty()); |
| 1042 | |
Ted Kremenek | c3cf7b2 | 2009-02-20 00:05:35 +0000 | [diff] [blame] | 1043 | // 'init' methods only return an alias if the return type is a location type. |
| 1044 | QualType T = ME->getType(); |
Ted Kremenek | 46e49ee | 2008-05-05 23:55:01 +0000 | [diff] [blame] | 1045 | RetainSummary* Summ = |
Ted Kremenek | c3cf7b2 | 2009-02-20 00:05:35 +0000 | [diff] [blame] | 1046 | getPersistentSummary(Loc::IsLocType(T) ? RetEffect::MakeReceiverAlias() |
| 1047 | : RetEffect::MakeNoRet()); |
Ted Kremenek | 46e49ee | 2008-05-05 23:55:01 +0000 | [diff] [blame] | 1048 | |
Ted Kremenek | 553cf18 | 2008-06-25 21:21:56 +0000 | [diff] [blame] | 1049 | ObjCMethodSummaries[ME] = Summ; |
Ted Kremenek | 46e49ee | 2008-05-05 23:55:01 +0000 | [diff] [blame] | 1050 | return Summ; |
| 1051 | } |
Ted Kremenek | d3dbcf4 | 2008-05-05 22:11:16 +0000 | [diff] [blame] | 1052 | |
Ted Kremenek | 553cf18 | 2008-06-25 21:21:56 +0000 | [diff] [blame] | 1053 | |
Ted Kremenek | 1bffd74 | 2008-05-06 15:44:25 +0000 | [diff] [blame] | 1054 | RetainSummary* |
Ted Kremenek | 553cf18 | 2008-06-25 21:21:56 +0000 | [diff] [blame] | 1055 | RetainSummaryManager::getMethodSummary(ObjCMessageExpr* ME, |
| 1056 | ObjCInterfaceDecl* ID) { |
Ted Kremenek | 1bffd74 | 2008-05-06 15:44:25 +0000 | [diff] [blame] | 1057 | |
| 1058 | Selector S = ME->getSelector(); |
Ted Kremenek | 46e49ee | 2008-05-05 23:55:01 +0000 | [diff] [blame] | 1059 | |
Ted Kremenek | 553cf18 | 2008-06-25 21:21:56 +0000 | [diff] [blame] | 1060 | // Look up a summary in our summary cache. |
| 1061 | ObjCMethodSummariesTy::iterator I = ObjCMethodSummaries.find(ID, S); |
Ted Kremenek | 46e49ee | 2008-05-05 23:55:01 +0000 | [diff] [blame] | 1062 | |
Ted Kremenek | 1f180c3 | 2008-06-23 22:21:20 +0000 | [diff] [blame] | 1063 | if (I != ObjCMethodSummaries.end()) |
Ted Kremenek | 46e49ee | 2008-05-05 23:55:01 +0000 | [diff] [blame] | 1064 | return I->second; |
Ted Kremenek | 46e49ee | 2008-05-05 23:55:01 +0000 | [diff] [blame] | 1065 | |
Ted Kremenek | 234a4c2 | 2009-01-07 00:39:56 +0000 | [diff] [blame] | 1066 | // "initXXX": pass-through for receiver. |
Ted Kremenek | 46e49ee | 2008-05-05 23:55:01 +0000 | [diff] [blame] | 1067 | const char* s = S.getIdentifierInfoForSlot(0)->getName(); |
Ted Kremenek | a4b695a | 2008-05-07 03:45:05 +0000 | [diff] [blame] | 1068 | assert (ScratchArgs.empty()); |
Ted Kremenek | aee9e57 | 2008-05-06 06:09:09 +0000 | [diff] [blame] | 1069 | |
Ted Kremenek | b80976c | 2009-02-21 05:13:43 +0000 | [diff] [blame] | 1070 | if (deriveNamingConvention(s) == InitRule) |
Ted Kremenek | 234a4c2 | 2009-01-07 00:39:56 +0000 | [diff] [blame] | 1071 | return getInitMethodSummary(ME); |
Ted Kremenek | 1bffd74 | 2008-05-06 15:44:25 +0000 | [diff] [blame] | 1072 | |
Ted Kremenek | 234a4c2 | 2009-01-07 00:39:56 +0000 | [diff] [blame] | 1073 | // Look for methods that return an owned object. |
| 1074 | if (!isTrackedObjectType(Ctx.getCanonicalType(ME->getType()))) |
Ted Kremenek | 84060db | 2008-05-07 04:25:59 +0000 | [diff] [blame] | 1075 | return 0; |
Ted Kremenek | a4b695a | 2008-05-07 03:45:05 +0000 | [diff] [blame] | 1076 | |
Ted Kremenek | 234a4c2 | 2009-01-07 00:39:56 +0000 | [diff] [blame] | 1077 | if (followsFundamentalRule(s)) { |
| 1078 | RetEffect E = isGCEnabled() ? RetEffect::MakeNoRet() |
Ted Kremenek | 2d1652e | 2009-01-28 05:56:51 +0000 | [diff] [blame] | 1079 | : RetEffect::MakeOwned(RetEffect::ObjC, true); |
Ted Kremenek | a4b695a | 2008-05-07 03:45:05 +0000 | [diff] [blame] | 1080 | RetainSummary* Summ = getPersistentSummary(E); |
Ted Kremenek | 553cf18 | 2008-06-25 21:21:56 +0000 | [diff] [blame] | 1081 | ObjCMethodSummaries[ME] = Summ; |
Ted Kremenek | 1bffd74 | 2008-05-06 15:44:25 +0000 | [diff] [blame] | 1082 | return Summ; |
| 1083 | } |
Ted Kremenek | 1bffd74 | 2008-05-06 15:44:25 +0000 | [diff] [blame] | 1084 | |
Ted Kremenek | 46e49ee | 2008-05-05 23:55:01 +0000 | [diff] [blame] | 1085 | return 0; |
| 1086 | } |
| 1087 | |
Ted Kremenek | c839560 | 2008-05-06 21:26:51 +0000 | [diff] [blame] | 1088 | RetainSummary* |
Ted Kremenek | 1f180c3 | 2008-06-23 22:21:20 +0000 | [diff] [blame] | 1089 | RetainSummaryManager::getClassMethodSummary(IdentifierInfo* ClsName, |
| 1090 | Selector S) { |
Ted Kremenek | c839560 | 2008-05-06 21:26:51 +0000 | [diff] [blame] | 1091 | |
Ted Kremenek | 553cf18 | 2008-06-25 21:21:56 +0000 | [diff] [blame] | 1092 | // FIXME: Eventually we should properly do class method summaries, but |
| 1093 | // it requires us being able to walk the type hierarchy. Unfortunately, |
| 1094 | // we cannot do this with just an IdentifierInfo* for the class name. |
| 1095 | |
Ted Kremenek | c839560 | 2008-05-06 21:26:51 +0000 | [diff] [blame] | 1096 | // Look up a summary in our cache of Selectors -> Summaries. |
Ted Kremenek | 553cf18 | 2008-06-25 21:21:56 +0000 | [diff] [blame] | 1097 | ObjCMethodSummariesTy::iterator I = ObjCClassMethodSummaries.find(ClsName, S); |
Ted Kremenek | c839560 | 2008-05-06 21:26:51 +0000 | [diff] [blame] | 1098 | |
Ted Kremenek | 1f180c3 | 2008-06-23 22:21:20 +0000 | [diff] [blame] | 1099 | if (I != ObjCClassMethodSummaries.end()) |
Ted Kremenek | c839560 | 2008-05-06 21:26:51 +0000 | [diff] [blame] | 1100 | return I->second; |
| 1101 | |
Ted Kremenek | a22cc2f | 2008-05-06 23:07:13 +0000 | [diff] [blame] | 1102 | return 0; |
Ted Kremenek | c839560 | 2008-05-06 21:26:51 +0000 | [diff] [blame] | 1103 | } |
| 1104 | |
Ted Kremenek | 1f180c3 | 2008-06-23 22:21:20 +0000 | [diff] [blame] | 1105 | void RetainSummaryManager::InitializeClassMethodSummaries() { |
Ted Kremenek | 9c32d08 | 2008-05-06 00:30:21 +0000 | [diff] [blame] | 1106 | |
| 1107 | assert (ScratchArgs.empty()); |
| 1108 | |
Ted Kremenek | a734470 | 2008-06-23 18:02:52 +0000 | [diff] [blame] | 1109 | RetEffect E = isGCEnabled() ? RetEffect::MakeNoRet() |
Ted Kremenek | 2d1652e | 2009-01-28 05:56:51 +0000 | [diff] [blame] | 1110 | : RetEffect::MakeOwned(RetEffect::ObjC, true); |
Ted Kremenek | a734470 | 2008-06-23 18:02:52 +0000 | [diff] [blame] | 1111 | |
Ted Kremenek | 9c32d08 | 2008-05-06 00:30:21 +0000 | [diff] [blame] | 1112 | RetainSummary* Summ = getPersistentSummary(E); |
| 1113 | |
Ted Kremenek | 553cf18 | 2008-06-25 21:21:56 +0000 | [diff] [blame] | 1114 | // Create the summaries for "alloc", "new", and "allocWithZone:" for |
| 1115 | // NSObject and its derivatives. |
| 1116 | addNSObjectClsMethSummary(GetNullarySelector("alloc", Ctx), Summ); |
| 1117 | addNSObjectClsMethSummary(GetNullarySelector("new", Ctx), Summ); |
| 1118 | addNSObjectClsMethSummary(GetUnarySelector("allocWithZone", Ctx), Summ); |
Ted Kremenek | 70a733e | 2008-07-18 17:24:20 +0000 | [diff] [blame] | 1119 | |
| 1120 | // Create the [NSAssertionHandler currentHander] summary. |
Ted Kremenek | 9e476de | 2008-08-12 18:30:56 +0000 | [diff] [blame] | 1121 | addClsMethSummary(&Ctx.Idents.get("NSAssertionHandler"), |
Ted Kremenek | 2d1652e | 2009-01-28 05:56:51 +0000 | [diff] [blame] | 1122 | GetNullarySelector("currentHandler", Ctx), |
| 1123 | getPersistentSummary(RetEffect::MakeNotOwned(RetEffect::ObjC))); |
Ted Kremenek | 6d34893 | 2008-10-21 15:53:15 +0000 | [diff] [blame] | 1124 | |
| 1125 | // Create the [NSAutoreleasePool addObject:] summary. |
Ted Kremenek | abf4397 | 2009-01-28 21:44:40 +0000 | [diff] [blame] | 1126 | ScratchArgs.push_back(std::make_pair(0, Autorelease)); |
| 1127 | addClsMethSummary(&Ctx.Idents.get("NSAutoreleasePool"), |
| 1128 | GetUnarySelector("addObject", Ctx), |
| 1129 | getPersistentSummary(RetEffect::MakeNoRet(), |
Ted Kremenek | 022a3c4 | 2009-02-23 02:31:16 +0000 | [diff] [blame] | 1130 | DoNothing, Autorelease)); |
Ted Kremenek | 9c32d08 | 2008-05-06 00:30:21 +0000 | [diff] [blame] | 1131 | } |
| 1132 | |
Ted Kremenek | 1f180c3 | 2008-06-23 22:21:20 +0000 | [diff] [blame] | 1133 | void RetainSummaryManager::InitializeMethodSummaries() { |
Ted Kremenek | b3c3c28 | 2008-05-06 00:38:54 +0000 | [diff] [blame] | 1134 | |
| 1135 | assert (ScratchArgs.empty()); |
| 1136 | |
Ted Kremenek | c839560 | 2008-05-06 21:26:51 +0000 | [diff] [blame] | 1137 | // Create the "init" selector. It just acts as a pass-through for the |
| 1138 | // receiver. |
Ted Kremenek | 4634735 | 2009-02-23 16:54:00 +0000 | [diff] [blame] | 1139 | RetainSummary* InitSumm = |
| 1140 | getPersistentSummary(RetEffect::MakeReceiverAlias()); |
Ted Kremenek | 179064e | 2008-07-01 17:21:27 +0000 | [diff] [blame] | 1141 | addNSObjectMethSummary(GetNullarySelector("init", Ctx), InitSumm); |
Ted Kremenek | c839560 | 2008-05-06 21:26:51 +0000 | [diff] [blame] | 1142 | |
| 1143 | // The next methods are allocators. |
Ted Kremenek | a734470 | 2008-06-23 18:02:52 +0000 | [diff] [blame] | 1144 | RetEffect E = isGCEnabled() ? RetEffect::MakeNoRet() |
Ted Kremenek | 2d1652e | 2009-01-28 05:56:51 +0000 | [diff] [blame] | 1145 | : RetEffect::MakeOwned(RetEffect::ObjC, true); |
Ted Kremenek | a734470 | 2008-06-23 18:02:52 +0000 | [diff] [blame] | 1146 | |
Ted Kremenek | 179064e | 2008-07-01 17:21:27 +0000 | [diff] [blame] | 1147 | RetainSummary* Summ = getPersistentSummary(E); |
Ted Kremenek | c839560 | 2008-05-06 21:26:51 +0000 | [diff] [blame] | 1148 | |
| 1149 | // Create the "copy" selector. |
Ted Kremenek | 9853045 | 2008-08-12 20:41:56 +0000 | [diff] [blame] | 1150 | addNSObjectMethSummary(GetNullarySelector("copy", Ctx), Summ); |
| 1151 | |
Ted Kremenek | b3c3c28 | 2008-05-06 00:38:54 +0000 | [diff] [blame] | 1152 | // Create the "mutableCopy" selector. |
Ted Kremenek | 553cf18 | 2008-06-25 21:21:56 +0000 | [diff] [blame] | 1153 | addNSObjectMethSummary(GetNullarySelector("mutableCopy", Ctx), Summ); |
Ted Kremenek | 9853045 | 2008-08-12 20:41:56 +0000 | [diff] [blame] | 1154 | |
Ted Kremenek | 3c0cea3 | 2008-05-06 02:26:56 +0000 | [diff] [blame] | 1155 | // Create the "retain" selector. |
| 1156 | E = RetEffect::MakeReceiverAlias(); |
Ted Kremenek | 1c512f5 | 2009-02-18 18:54:33 +0000 | [diff] [blame] | 1157 | Summ = getPersistentSummary(E, IncRefMsg); |
Ted Kremenek | 553cf18 | 2008-06-25 21:21:56 +0000 | [diff] [blame] | 1158 | addNSObjectMethSummary(GetNullarySelector("retain", Ctx), Summ); |
Ted Kremenek | 3c0cea3 | 2008-05-06 02:26:56 +0000 | [diff] [blame] | 1159 | |
| 1160 | // Create the "release" selector. |
Ted Kremenek | 1c512f5 | 2009-02-18 18:54:33 +0000 | [diff] [blame] | 1161 | Summ = getPersistentSummary(E, DecRefMsg); |
Ted Kremenek | 553cf18 | 2008-06-25 21:21:56 +0000 | [diff] [blame] | 1162 | addNSObjectMethSummary(GetNullarySelector("release", Ctx), Summ); |
Ted Kremenek | 299e815 | 2008-05-07 21:17:39 +0000 | [diff] [blame] | 1163 | |
| 1164 | // Create the "drain" selector. |
| 1165 | Summ = getPersistentSummary(E, isGCEnabled() ? DoNothing : DecRef); |
Ted Kremenek | 553cf18 | 2008-06-25 21:21:56 +0000 | [diff] [blame] | 1166 | addNSObjectMethSummary(GetNullarySelector("drain", Ctx), Summ); |
Ted Kremenek | f95e9fc | 2009-03-17 19:42:23 +0000 | [diff] [blame] | 1167 | |
| 1168 | // Create the -dealloc summary. |
| 1169 | Summ = getPersistentSummary(RetEffect::MakeNoRet(), Dealloc); |
| 1170 | addNSObjectMethSummary(GetNullarySelector("dealloc", Ctx), Summ); |
Ted Kremenek | 3c0cea3 | 2008-05-06 02:26:56 +0000 | [diff] [blame] | 1171 | |
| 1172 | // Create the "autorelease" selector. |
Ted Kremenek | abf4397 | 2009-01-28 21:44:40 +0000 | [diff] [blame] | 1173 | Summ = getPersistentSummary(E, Autorelease); |
Ted Kremenek | 553cf18 | 2008-06-25 21:21:56 +0000 | [diff] [blame] | 1174 | addNSObjectMethSummary(GetNullarySelector("autorelease", Ctx), Summ); |
Ted Kremenek | 9853045 | 2008-08-12 20:41:56 +0000 | [diff] [blame] | 1175 | |
Ted Kremenek | f9a8e2e | 2009-02-23 17:45:03 +0000 | [diff] [blame] | 1176 | // Specially handle NSAutoreleasePool. |
Ted Kremenek | 6c4becb | 2009-02-25 02:54:57 +0000 | [diff] [blame] | 1177 | addInstMethSummary("NSAutoreleasePool", "init", |
Ted Kremenek | f9a8e2e | 2009-02-23 17:45:03 +0000 | [diff] [blame] | 1178 | getPersistentSummary(RetEffect::MakeReceiverAlias(), |
Ted Kremenek | 6c4becb | 2009-02-25 02:54:57 +0000 | [diff] [blame] | 1179 | NewAutoreleasePool)); |
Ted Kremenek | f9a8e2e | 2009-02-23 17:45:03 +0000 | [diff] [blame] | 1180 | |
Ted Kremenek | af9dc27 | 2008-08-12 18:48:50 +0000 | [diff] [blame] | 1181 | // For NSWindow, allocated objects are (initially) self-owned. |
Ted Kremenek | 89e202d | 2009-02-23 02:51:29 +0000 | [diff] [blame] | 1182 | // FIXME: For now we opt for false negatives with NSWindow, as these objects |
| 1183 | // self-own themselves. However, they only do this once they are displayed. |
| 1184 | // Thus, we need to track an NSWindow's display status. |
| 1185 | // This is tracked in <rdar://problem/6062711>. |
Ted Kremenek | 3aa7ecd | 2009-03-04 23:30:42 +0000 | [diff] [blame] | 1186 | // See also http://llvm.org/bugs/show_bug.cgi?id=3714. |
| 1187 | addClassMethSummary("NSWindow", "alloc", |
| 1188 | getPersistentSummary(RetEffect::MakeNoRet())); |
| 1189 | |
| 1190 | #if 0 |
Ted Kremenek | 179064e | 2008-07-01 17:21:27 +0000 | [diff] [blame] | 1191 | RetainSummary *NSWindowSumm = |
Ted Kremenek | 89e202d | 2009-02-23 02:51:29 +0000 | [diff] [blame] | 1192 | getPersistentSummary(RetEffect::MakeReceiverAlias(), StopTracking); |
Ted Kremenek | af9dc27 | 2008-08-12 18:48:50 +0000 | [diff] [blame] | 1193 | |
| 1194 | addInstMethSummary("NSWindow", NSWindowSumm, "initWithContentRect", |
| 1195 | "styleMask", "backing", "defer", NULL); |
| 1196 | |
| 1197 | addInstMethSummary("NSWindow", NSWindowSumm, "initWithContentRect", |
| 1198 | "styleMask", "backing", "defer", "screen", NULL); |
Ted Kremenek | 3aa7ecd | 2009-03-04 23:30:42 +0000 | [diff] [blame] | 1199 | #endif |
Ted Kremenek | af9dc27 | 2008-08-12 18:48:50 +0000 | [diff] [blame] | 1200 | |
| 1201 | // For NSPanel (which subclasses NSWindow), allocated objects are not |
| 1202 | // self-owned. |
| 1203 | addInstMethSummary("NSPanel", InitSumm, "initWithContentRect", |
| 1204 | "styleMask", "backing", "defer", NULL); |
| 1205 | |
| 1206 | addInstMethSummary("NSPanel", InitSumm, "initWithContentRect", |
| 1207 | "styleMask", "backing", "defer", "screen", NULL); |
Ted Kremenek | 553cf18 | 2008-06-25 21:21:56 +0000 | [diff] [blame] | 1208 | |
Ted Kremenek | 70a733e | 2008-07-18 17:24:20 +0000 | [diff] [blame] | 1209 | // Create NSAssertionHandler summaries. |
Ted Kremenek | 9e476de | 2008-08-12 18:30:56 +0000 | [diff] [blame] | 1210 | addPanicSummary("NSAssertionHandler", "handleFailureInFunction", "file", |
| 1211 | "lineNumber", "description", NULL); |
Ted Kremenek | 70a733e | 2008-07-18 17:24:20 +0000 | [diff] [blame] | 1212 | |
Ted Kremenek | 9e476de | 2008-08-12 18:30:56 +0000 | [diff] [blame] | 1213 | addPanicSummary("NSAssertionHandler", "handleFailureInMethod", "object", |
| 1214 | "file", "lineNumber", "description", NULL); |
Ted Kremenek | b3c3c28 | 2008-05-06 00:38:54 +0000 | [diff] [blame] | 1215 | } |
| 1216 | |
Ted Kremenek | d3dbcf4 | 2008-05-05 22:11:16 +0000 | [diff] [blame] | 1217 | //===----------------------------------------------------------------------===// |
Ted Kremenek | 1392261 | 2008-04-16 20:40:59 +0000 | [diff] [blame] | 1218 | // Reference-counting logic (typestate + counts). |
Ted Kremenek | 6b3a0f7 | 2008-03-11 06:39:11 +0000 | [diff] [blame] | 1219 | //===----------------------------------------------------------------------===// |
| 1220 | |
Ted Kremenek | 6b3a0f7 | 2008-03-11 06:39:11 +0000 | [diff] [blame] | 1221 | namespace { |
| 1222 | |
Ted Kremenek | 05cbe1a | 2008-04-09 23:49:11 +0000 | [diff] [blame] | 1223 | class VISIBILITY_HIDDEN RefVal { |
Ted Kremenek | 4fd8897 | 2008-04-17 18:12:53 +0000 | [diff] [blame] | 1224 | public: |
Ted Kremenek | 4fd8897 | 2008-04-17 18:12:53 +0000 | [diff] [blame] | 1225 | enum Kind { |
| 1226 | Owned = 0, // Owning reference. |
| 1227 | NotOwned, // Reference is not owned by still valid (not freed). |
| 1228 | Released, // Object has been released. |
| 1229 | ReturnedOwned, // Returned object passes ownership to caller. |
| 1230 | ReturnedNotOwned, // Return object does not pass ownership to caller. |
Ted Kremenek | f95e9fc | 2009-03-17 19:42:23 +0000 | [diff] [blame] | 1231 | ERROR_START, |
| 1232 | ErrorDeallocNotOwned, // -dealloc called on non-owned object. |
| 1233 | ErrorDeallocGC, // Calling -dealloc with GC enabled. |
Ted Kremenek | 4fd8897 | 2008-04-17 18:12:53 +0000 | [diff] [blame] | 1234 | ErrorUseAfterRelease, // Object used after released. |
| 1235 | ErrorReleaseNotOwned, // Release of an object that was not owned. |
Ted Kremenek | f95e9fc | 2009-03-17 19:42:23 +0000 | [diff] [blame] | 1236 | ERROR_LEAK_START, |
Ted Kremenek | 3ad2cc8 | 2008-10-22 23:56:21 +0000 | [diff] [blame] | 1237 | ErrorLeak, // A memory leak due to excessive reference counts. |
| 1238 | ErrorLeakReturned // A memory leak due to the returning method not having |
| 1239 | // the correct naming conventions. |
Ted Kremenek | 4fd8897 | 2008-04-17 18:12:53 +0000 | [diff] [blame] | 1240 | }; |
Ted Kremenek | 2d1652e | 2009-01-28 05:56:51 +0000 | [diff] [blame] | 1241 | |
| 1242 | private: |
Ted Kremenek | 4fd8897 | 2008-04-17 18:12:53 +0000 | [diff] [blame] | 1243 | Kind kind; |
Ted Kremenek | 2d1652e | 2009-01-28 05:56:51 +0000 | [diff] [blame] | 1244 | RetEffect::ObjKind okind; |
Ted Kremenek | 4fd8897 | 2008-04-17 18:12:53 +0000 | [diff] [blame] | 1245 | unsigned Cnt; |
Ted Kremenek | 553cf18 | 2008-06-25 21:21:56 +0000 | [diff] [blame] | 1246 | QualType T; |
| 1247 | |
Ted Kremenek | 2d1652e | 2009-01-28 05:56:51 +0000 | [diff] [blame] | 1248 | RefVal(Kind k, RetEffect::ObjKind o, unsigned cnt, QualType t) |
| 1249 | : kind(k), okind(o), Cnt(cnt), T(t) {} |
Ted Kremenek | 1ac08d6 | 2008-03-11 17:48:22 +0000 | [diff] [blame] | 1250 | |
Ted Kremenek | 2d1652e | 2009-01-28 05:56:51 +0000 | [diff] [blame] | 1251 | RefVal(Kind k, unsigned cnt = 0) |
| 1252 | : kind(k), okind(RetEffect::AnyObj), Cnt(cnt) {} |
| 1253 | |
| 1254 | public: |
Ted Kremenek | 4fd8897 | 2008-04-17 18:12:53 +0000 | [diff] [blame] | 1255 | Kind getKind() const { return kind; } |
Ted Kremenek | 2d1652e | 2009-01-28 05:56:51 +0000 | [diff] [blame] | 1256 | |
| 1257 | RetEffect::ObjKind getObjKind() const { return okind; } |
Ted Kremenek | 1ac08d6 | 2008-03-11 17:48:22 +0000 | [diff] [blame] | 1258 | |
Ted Kremenek | f95e9fc | 2009-03-17 19:42:23 +0000 | [diff] [blame] | 1259 | unsigned getCount() const { return Cnt; } |
| 1260 | void clearCounts() { Cnt = 0; } |
| 1261 | |
Ted Kremenek | 553cf18 | 2008-06-25 21:21:56 +0000 | [diff] [blame] | 1262 | QualType getType() const { return T; } |
Ted Kremenek | 4fd8897 | 2008-04-17 18:12:53 +0000 | [diff] [blame] | 1263 | |
| 1264 | // Useful predicates. |
Ted Kremenek | 1ac08d6 | 2008-03-11 17:48:22 +0000 | [diff] [blame] | 1265 | |
Ted Kremenek | f95e9fc | 2009-03-17 19:42:23 +0000 | [diff] [blame] | 1266 | static bool isError(Kind k) { return k >= ERROR_START; } |
Ted Kremenek | 73c750b | 2008-03-11 18:14:09 +0000 | [diff] [blame] | 1267 | |
Ted Kremenek | f95e9fc | 2009-03-17 19:42:23 +0000 | [diff] [blame] | 1268 | static bool isLeak(Kind k) { return k >= ERROR_LEAK_START; } |
Ted Kremenek | db86371 | 2008-04-16 22:32:20 +0000 | [diff] [blame] | 1269 | |
Ted Kremenek | e7bd9c2 | 2008-04-11 22:25:11 +0000 | [diff] [blame] | 1270 | bool isOwned() const { |
| 1271 | return getKind() == Owned; |
| 1272 | } |
| 1273 | |
Ted Kremenek | db86371 | 2008-04-16 22:32:20 +0000 | [diff] [blame] | 1274 | bool isNotOwned() const { |
| 1275 | return getKind() == NotOwned; |
| 1276 | } |
| 1277 | |
Ted Kremenek | 4fd8897 | 2008-04-17 18:12:53 +0000 | [diff] [blame] | 1278 | bool isReturnedOwned() const { |
| 1279 | return getKind() == ReturnedOwned; |
| 1280 | } |
| 1281 | |
| 1282 | bool isReturnedNotOwned() const { |
| 1283 | return getKind() == ReturnedNotOwned; |
| 1284 | } |
| 1285 | |
| 1286 | bool isNonLeakError() const { |
| 1287 | Kind k = getKind(); |
| 1288 | return isError(k) && !isLeak(k); |
| 1289 | } |
| 1290 | |
Ted Kremenek | 2d1652e | 2009-01-28 05:56:51 +0000 | [diff] [blame] | 1291 | static RefVal makeOwned(RetEffect::ObjKind o, QualType t, |
| 1292 | unsigned Count = 1) { |
| 1293 | return RefVal(Owned, o, Count, t); |
Ted Kremenek | 61b9f87 | 2008-04-10 23:09:18 +0000 | [diff] [blame] | 1294 | } |
| 1295 | |
Ted Kremenek | 2d1652e | 2009-01-28 05:56:51 +0000 | [diff] [blame] | 1296 | static RefVal makeNotOwned(RetEffect::ObjKind o, QualType t, |
| 1297 | unsigned Count = 0) { |
| 1298 | return RefVal(NotOwned, o, Count, t); |
Ted Kremenek | 61b9f87 | 2008-04-10 23:09:18 +0000 | [diff] [blame] | 1299 | } |
Ted Kremenek | 4fd8897 | 2008-04-17 18:12:53 +0000 | [diff] [blame] | 1300 | |
| 1301 | static RefVal makeReturnedOwned(unsigned Count) { |
| 1302 | return RefVal(ReturnedOwned, Count); |
| 1303 | } |
| 1304 | |
| 1305 | static RefVal makeReturnedNotOwned() { |
| 1306 | return RefVal(ReturnedNotOwned); |
| 1307 | } |
| 1308 | |
Ted Kremenek | 4fd8897 | 2008-04-17 18:12:53 +0000 | [diff] [blame] | 1309 | // Comparison, profiling, and pretty-printing. |
Ted Kremenek | 1ac08d6 | 2008-03-11 17:48:22 +0000 | [diff] [blame] | 1310 | |
Ted Kremenek | 4fd8897 | 2008-04-17 18:12:53 +0000 | [diff] [blame] | 1311 | bool operator==(const RefVal& X) const { |
Ted Kremenek | 553cf18 | 2008-06-25 21:21:56 +0000 | [diff] [blame] | 1312 | return kind == X.kind && Cnt == X.Cnt && T == X.T; |
Ted Kremenek | 4fd8897 | 2008-04-17 18:12:53 +0000 | [diff] [blame] | 1313 | } |
Ted Kremenek | f394804 | 2008-03-11 19:44:10 +0000 | [diff] [blame] | 1314 | |
Ted Kremenek | 553cf18 | 2008-06-25 21:21:56 +0000 | [diff] [blame] | 1315 | RefVal operator-(size_t i) const { |
Ted Kremenek | 2d1652e | 2009-01-28 05:56:51 +0000 | [diff] [blame] | 1316 | return RefVal(getKind(), getObjKind(), getCount() - i, getType()); |
Ted Kremenek | 553cf18 | 2008-06-25 21:21:56 +0000 | [diff] [blame] | 1317 | } |
| 1318 | |
| 1319 | RefVal operator+(size_t i) const { |
Ted Kremenek | 2d1652e | 2009-01-28 05:56:51 +0000 | [diff] [blame] | 1320 | return RefVal(getKind(), getObjKind(), getCount() + i, getType()); |
Ted Kremenek | 553cf18 | 2008-06-25 21:21:56 +0000 | [diff] [blame] | 1321 | } |
| 1322 | |
| 1323 | RefVal operator^(Kind k) const { |
Ted Kremenek | 2d1652e | 2009-01-28 05:56:51 +0000 | [diff] [blame] | 1324 | return RefVal(k, getObjKind(), getCount(), getType()); |
Ted Kremenek | 553cf18 | 2008-06-25 21:21:56 +0000 | [diff] [blame] | 1325 | } |
Ted Kremenek | f95e9fc | 2009-03-17 19:42:23 +0000 | [diff] [blame] | 1326 | |
Ted Kremenek | 4fd8897 | 2008-04-17 18:12:53 +0000 | [diff] [blame] | 1327 | void Profile(llvm::FoldingSetNodeID& ID) const { |
| 1328 | ID.AddInteger((unsigned) kind); |
| 1329 | ID.AddInteger(Cnt); |
Ted Kremenek | 553cf18 | 2008-06-25 21:21:56 +0000 | [diff] [blame] | 1330 | ID.Add(T); |
Ted Kremenek | 4fd8897 | 2008-04-17 18:12:53 +0000 | [diff] [blame] | 1331 | } |
| 1332 | |
Ted Kremenek | f394804 | 2008-03-11 19:44:10 +0000 | [diff] [blame] | 1333 | void print(std::ostream& Out) const; |
Ted Kremenek | 1ac08d6 | 2008-03-11 17:48:22 +0000 | [diff] [blame] | 1334 | }; |
Ted Kremenek | f394804 | 2008-03-11 19:44:10 +0000 | [diff] [blame] | 1335 | |
| 1336 | void RefVal::print(std::ostream& Out) const { |
Ted Kremenek | 553cf18 | 2008-06-25 21:21:56 +0000 | [diff] [blame] | 1337 | if (!T.isNull()) |
| 1338 | Out << "Tracked Type:" << T.getAsString() << '\n'; |
| 1339 | |
Ted Kremenek | f394804 | 2008-03-11 19:44:10 +0000 | [diff] [blame] | 1340 | switch (getKind()) { |
| 1341 | default: assert(false); |
Ted Kremenek | 61b9f87 | 2008-04-10 23:09:18 +0000 | [diff] [blame] | 1342 | case Owned: { |
| 1343 | Out << "Owned"; |
| 1344 | unsigned cnt = getCount(); |
| 1345 | if (cnt) Out << " (+ " << cnt << ")"; |
Ted Kremenek | f394804 | 2008-03-11 19:44:10 +0000 | [diff] [blame] | 1346 | break; |
Ted Kremenek | 61b9f87 | 2008-04-10 23:09:18 +0000 | [diff] [blame] | 1347 | } |
Ted Kremenek | f394804 | 2008-03-11 19:44:10 +0000 | [diff] [blame] | 1348 | |
Ted Kremenek | 61b9f87 | 2008-04-10 23:09:18 +0000 | [diff] [blame] | 1349 | case NotOwned: { |
Ted Kremenek | 4fd8897 | 2008-04-17 18:12:53 +0000 | [diff] [blame] | 1350 | Out << "NotOwned"; |
Ted Kremenek | 61b9f87 | 2008-04-10 23:09:18 +0000 | [diff] [blame] | 1351 | unsigned cnt = getCount(); |
| 1352 | if (cnt) Out << " (+ " << cnt << ")"; |
Ted Kremenek | f394804 | 2008-03-11 19:44:10 +0000 | [diff] [blame] | 1353 | break; |
Ted Kremenek | 61b9f87 | 2008-04-10 23:09:18 +0000 | [diff] [blame] | 1354 | } |
Ted Kremenek | f394804 | 2008-03-11 19:44:10 +0000 | [diff] [blame] | 1355 | |
Ted Kremenek | 4fd8897 | 2008-04-17 18:12:53 +0000 | [diff] [blame] | 1356 | case ReturnedOwned: { |
| 1357 | Out << "ReturnedOwned"; |
| 1358 | unsigned cnt = getCount(); |
| 1359 | if (cnt) Out << " (+ " << cnt << ")"; |
| 1360 | break; |
| 1361 | } |
| 1362 | |
| 1363 | case ReturnedNotOwned: { |
| 1364 | Out << "ReturnedNotOwned"; |
| 1365 | unsigned cnt = getCount(); |
| 1366 | if (cnt) Out << " (+ " << cnt << ")"; |
| 1367 | break; |
| 1368 | } |
| 1369 | |
Ted Kremenek | f394804 | 2008-03-11 19:44:10 +0000 | [diff] [blame] | 1370 | case Released: |
| 1371 | Out << "Released"; |
| 1372 | break; |
Ted Kremenek | f95e9fc | 2009-03-17 19:42:23 +0000 | [diff] [blame] | 1373 | |
| 1374 | case ErrorDeallocGC: |
| 1375 | Out << "-dealloc (GC)"; |
| 1376 | break; |
| 1377 | |
| 1378 | case ErrorDeallocNotOwned: |
| 1379 | Out << "-dealloc (not-owned)"; |
| 1380 | break; |
Ted Kremenek | f394804 | 2008-03-11 19:44:10 +0000 | [diff] [blame] | 1381 | |
Ted Kremenek | db86371 | 2008-04-16 22:32:20 +0000 | [diff] [blame] | 1382 | case ErrorLeak: |
| 1383 | Out << "Leaked"; |
| 1384 | break; |
| 1385 | |
Ted Kremenek | 3ad2cc8 | 2008-10-22 23:56:21 +0000 | [diff] [blame] | 1386 | case ErrorLeakReturned: |
| 1387 | Out << "Leaked (Bad naming)"; |
| 1388 | break; |
| 1389 | |
Ted Kremenek | f394804 | 2008-03-11 19:44:10 +0000 | [diff] [blame] | 1390 | case ErrorUseAfterRelease: |
| 1391 | Out << "Use-After-Release [ERROR]"; |
| 1392 | break; |
| 1393 | |
| 1394 | case ErrorReleaseNotOwned: |
| 1395 | Out << "Release of Not-Owned [ERROR]"; |
| 1396 | break; |
| 1397 | } |
| 1398 | } |
Ted Kremenek | 1ac08d6 | 2008-03-11 17:48:22 +0000 | [diff] [blame] | 1399 | |
Ted Kremenek | 72cd17f | 2008-08-14 21:16:54 +0000 | [diff] [blame] | 1400 | } // end anonymous namespace |
| 1401 | |
| 1402 | //===----------------------------------------------------------------------===// |
| 1403 | // RefBindings - State used to track object reference counts. |
| 1404 | //===----------------------------------------------------------------------===// |
| 1405 | |
Ted Kremenek | 2dabd43 | 2008-12-05 02:27:51 +0000 | [diff] [blame] | 1406 | typedef llvm::ImmutableMap<SymbolRef, RefVal> RefBindings; |
Ted Kremenek | 72cd17f | 2008-08-14 21:16:54 +0000 | [diff] [blame] | 1407 | static int RefBIndex = 0; |
Ted Kremenek | 33b6f63 | 2009-02-19 23:47:02 +0000 | [diff] [blame] | 1408 | static std::pair<const void*, const void*> LeakProgramPointTag(&RefBIndex, 0); |
Ted Kremenek | 72cd17f | 2008-08-14 21:16:54 +0000 | [diff] [blame] | 1409 | |
| 1410 | namespace clang { |
Ted Kremenek | b9d17f9 | 2008-08-17 03:20:02 +0000 | [diff] [blame] | 1411 | template<> |
| 1412 | struct GRStateTrait<RefBindings> : public GRStatePartialTrait<RefBindings> { |
| 1413 | static inline void* GDMIndex() { return &RefBIndex; } |
| 1414 | }; |
| 1415 | } |
Ted Kremenek | 6d34893 | 2008-10-21 15:53:15 +0000 | [diff] [blame] | 1416 | |
| 1417 | //===----------------------------------------------------------------------===// |
Ted Kremenek | 4d3957d | 2009-02-24 19:15:11 +0000 | [diff] [blame] | 1418 | // AutoreleaseBindings - State used to track objects in autorelease pools. |
Ted Kremenek | 6d34893 | 2008-10-21 15:53:15 +0000 | [diff] [blame] | 1419 | //===----------------------------------------------------------------------===// |
| 1420 | |
Ted Kremenek | 4d3957d | 2009-02-24 19:15:11 +0000 | [diff] [blame] | 1421 | typedef llvm::ImmutableMap<SymbolRef, unsigned> ARCounts; |
| 1422 | typedef llvm::ImmutableMap<SymbolRef, ARCounts> ARPoolContents; |
| 1423 | typedef llvm::ImmutableList<SymbolRef> ARStack; |
Ted Kremenek | f9a8e2e | 2009-02-23 17:45:03 +0000 | [diff] [blame] | 1424 | |
Ted Kremenek | 4d3957d | 2009-02-24 19:15:11 +0000 | [diff] [blame] | 1425 | static int AutoRCIndex = 0; |
Ted Kremenek | 6d34893 | 2008-10-21 15:53:15 +0000 | [diff] [blame] | 1426 | static int AutoRBIndex = 0; |
| 1427 | |
Ted Kremenek | 4d3957d | 2009-02-24 19:15:11 +0000 | [diff] [blame] | 1428 | namespace { class VISIBILITY_HIDDEN AutoreleasePoolContents {}; } |
Ted Kremenek | 6c4becb | 2009-02-25 02:54:57 +0000 | [diff] [blame] | 1429 | namespace { class VISIBILITY_HIDDEN AutoreleaseStack {}; } |
Ted Kremenek | 4d3957d | 2009-02-24 19:15:11 +0000 | [diff] [blame] | 1430 | |
Ted Kremenek | 6d34893 | 2008-10-21 15:53:15 +0000 | [diff] [blame] | 1431 | namespace clang { |
Ted Kremenek | 6c4becb | 2009-02-25 02:54:57 +0000 | [diff] [blame] | 1432 | template<> struct GRStateTrait<AutoreleaseStack> |
Ted Kremenek | 4d3957d | 2009-02-24 19:15:11 +0000 | [diff] [blame] | 1433 | : public GRStatePartialTrait<ARStack> { |
| 1434 | static inline void* GDMIndex() { return &AutoRBIndex; } |
| 1435 | }; |
| 1436 | |
| 1437 | template<> struct GRStateTrait<AutoreleasePoolContents> |
| 1438 | : public GRStatePartialTrait<ARPoolContents> { |
| 1439 | static inline void* GDMIndex() { return &AutoRCIndex; } |
| 1440 | }; |
| 1441 | } // end clang namespace |
Ted Kremenek | 6d34893 | 2008-10-21 15:53:15 +0000 | [diff] [blame] | 1442 | |
Ted Kremenek | 1392261 | 2008-04-16 20:40:59 +0000 | [diff] [blame] | 1443 | //===----------------------------------------------------------------------===// |
| 1444 | // Transfer functions. |
| 1445 | //===----------------------------------------------------------------------===// |
| 1446 | |
Ted Kremenek | 72cd17f | 2008-08-14 21:16:54 +0000 | [diff] [blame] | 1447 | namespace { |
| 1448 | |
Ted Kremenek | 05cbe1a | 2008-04-09 23:49:11 +0000 | [diff] [blame] | 1449 | class VISIBILITY_HIDDEN CFRefCount : public GRSimpleVals { |
Ted Kremenek | 8dd5646 | 2008-04-18 03:39:05 +0000 | [diff] [blame] | 1450 | public: |
Ted Kremenek | ae6814e | 2008-08-13 21:24:49 +0000 | [diff] [blame] | 1451 | class BindingsPrinter : public GRState::Printer { |
Ted Kremenek | f394804 | 2008-03-11 19:44:10 +0000 | [diff] [blame] | 1452 | public: |
Ted Kremenek | ae6814e | 2008-08-13 21:24:49 +0000 | [diff] [blame] | 1453 | virtual void Print(std::ostream& Out, const GRState* state, |
| 1454 | const char* nl, const char* sep); |
Ted Kremenek | f394804 | 2008-03-11 19:44:10 +0000 | [diff] [blame] | 1455 | }; |
Ted Kremenek | 8dd5646 | 2008-04-18 03:39:05 +0000 | [diff] [blame] | 1456 | |
| 1457 | private: |
Ted Kremenek | fe9e543 | 2009-02-18 03:48:14 +0000 | [diff] [blame] | 1458 | typedef llvm::DenseMap<const GRExprEngine::NodeTy*, const RetainSummary*> |
| 1459 | SummaryLogTy; |
| 1460 | |
Ted Kremenek | d3dbcf4 | 2008-05-05 22:11:16 +0000 | [diff] [blame] | 1461 | RetainSummaryManager Summaries; |
Ted Kremenek | fe9e543 | 2009-02-18 03:48:14 +0000 | [diff] [blame] | 1462 | SummaryLogTy SummaryLog; |
Ted Kremenek | d3dbcf4 | 2008-05-05 22:11:16 +0000 | [diff] [blame] | 1463 | const LangOptions& LOpts; |
Ted Kremenek | 4d3957d | 2009-02-24 19:15:11 +0000 | [diff] [blame] | 1464 | ARCounts::Factory ARCountFactory; |
Ted Kremenek | b9d17f9 | 2008-08-17 03:20:02 +0000 | [diff] [blame] | 1465 | |
Ted Kremenek | cf70177 | 2009-02-05 06:50:21 +0000 | [diff] [blame] | 1466 | BugType *useAfterRelease, *releaseNotOwned; |
Ted Kremenek | f95e9fc | 2009-03-17 19:42:23 +0000 | [diff] [blame] | 1467 | BugType *deallocGC, *deallocNotOwned; |
Ted Kremenek | cf70177 | 2009-02-05 06:50:21 +0000 | [diff] [blame] | 1468 | BugType *leakWithinFunction, *leakAtReturn; |
| 1469 | BugReporter *BR; |
Ted Kremenek | 6b3a0f7 | 2008-03-11 06:39:11 +0000 | [diff] [blame] | 1470 | |
Ted Kremenek | 4d3957d | 2009-02-24 19:15:11 +0000 | [diff] [blame] | 1471 | GRStateRef Update(GRStateRef state, SymbolRef sym, RefVal V, ArgEffect E, |
| 1472 | RefVal::Kind& hasErr); |
| 1473 | |
Ted Kremenek | 4adc81e | 2008-08-13 04:27:00 +0000 | [diff] [blame] | 1474 | void ProcessNonLeakError(ExplodedNodeSet<GRState>& Dst, |
| 1475 | GRStmtNodeBuilder<GRState>& Builder, |
Ted Kremenek | db86371 | 2008-04-16 22:32:20 +0000 | [diff] [blame] | 1476 | Expr* NodeExpr, Expr* ErrorExpr, |
Ted Kremenek | 4adc81e | 2008-08-13 04:27:00 +0000 | [diff] [blame] | 1477 | ExplodedNode<GRState>* Pred, |
| 1478 | const GRState* St, |
Ted Kremenek | 2dabd43 | 2008-12-05 02:27:51 +0000 | [diff] [blame] | 1479 | RefVal::Kind hasErr, SymbolRef Sym); |
Ted Kremenek | db86371 | 2008-04-16 22:32:20 +0000 | [diff] [blame] | 1480 | |
Ted Kremenek | f9790ae | 2008-10-24 20:32:50 +0000 | [diff] [blame] | 1481 | std::pair<GRStateRef, bool> |
| 1482 | HandleSymbolDeath(GRStateManager& VMgr, const GRState* St, |
Ted Kremenek | 2dabd43 | 2008-12-05 02:27:51 +0000 | [diff] [blame] | 1483 | const Decl* CD, SymbolRef sid, RefVal V, bool& hasLeak); |
Ted Kremenek | db86371 | 2008-04-16 22:32:20 +0000 | [diff] [blame] | 1484 | |
Ted Kremenek | 4d3957d | 2009-02-24 19:15:11 +0000 | [diff] [blame] | 1485 | public: |
Ted Kremenek | 78d4624 | 2008-07-22 16:21:24 +0000 | [diff] [blame] | 1486 | CFRefCount(ASTContext& Ctx, bool gcenabled, const LangOptions& lopts) |
Ted Kremenek | 377e230 | 2008-04-29 05:33:51 +0000 | [diff] [blame] | 1487 | : Summaries(Ctx, gcenabled), |
Ted Kremenek | f95e9fc | 2009-03-17 19:42:23 +0000 | [diff] [blame] | 1488 | LOpts(lopts), useAfterRelease(0), releaseNotOwned(0), |
| 1489 | deallocGC(0), deallocNotOwned(0), |
Ted Kremenek | cf70177 | 2009-02-05 06:50:21 +0000 | [diff] [blame] | 1490 | leakWithinFunction(0), leakAtReturn(0), BR(0) {} |
Ted Kremenek | 9ed18e6 | 2008-04-16 04:28:53 +0000 | [diff] [blame] | 1491 | |
Ted Kremenek | cf70177 | 2009-02-05 06:50:21 +0000 | [diff] [blame] | 1492 | virtual ~CFRefCount() {} |
Ted Kremenek | 05cbe1a | 2008-04-09 23:49:11 +0000 | [diff] [blame] | 1493 | |
Ted Kremenek | cf118d4 | 2009-02-04 23:49:09 +0000 | [diff] [blame] | 1494 | void RegisterChecks(BugReporter &BR); |
Ted Kremenek | f394804 | 2008-03-11 19:44:10 +0000 | [diff] [blame] | 1495 | |
Ted Kremenek | 1c72ef0 | 2008-08-16 00:49:49 +0000 | [diff] [blame] | 1496 | virtual void RegisterPrinters(std::vector<GRState::Printer*>& Printers) { |
| 1497 | Printers.push_back(new BindingsPrinter()); |
Ted Kremenek | f394804 | 2008-03-11 19:44:10 +0000 | [diff] [blame] | 1498 | } |
Ted Kremenek | 6b3a0f7 | 2008-03-11 06:39:11 +0000 | [diff] [blame] | 1499 | |
Ted Kremenek | d3dbcf4 | 2008-05-05 22:11:16 +0000 | [diff] [blame] | 1500 | bool isGCEnabled() const { return Summaries.isGCEnabled(); } |
Ted Kremenek | 072192b | 2008-04-30 23:47:44 +0000 | [diff] [blame] | 1501 | const LangOptions& getLangOptions() const { return LOpts; } |
| 1502 | |
Ted Kremenek | fe9e543 | 2009-02-18 03:48:14 +0000 | [diff] [blame] | 1503 | const RetainSummary *getSummaryOfNode(const ExplodedNode<GRState> *N) const { |
| 1504 | SummaryLogTy::const_iterator I = SummaryLog.find(N); |
| 1505 | return I == SummaryLog.end() ? 0 : I->second; |
| 1506 | } |
| 1507 | |
Ted Kremenek | 6b3a0f7 | 2008-03-11 06:39:11 +0000 | [diff] [blame] | 1508 | // Calls. |
Ted Kremenek | d3dbcf4 | 2008-05-05 22:11:16 +0000 | [diff] [blame] | 1509 | |
Ted Kremenek | 4adc81e | 2008-08-13 04:27:00 +0000 | [diff] [blame] | 1510 | void EvalSummary(ExplodedNodeSet<GRState>& Dst, |
Ted Kremenek | d3dbcf4 | 2008-05-05 22:11:16 +0000 | [diff] [blame] | 1511 | GRExprEngine& Eng, |
Ted Kremenek | 4adc81e | 2008-08-13 04:27:00 +0000 | [diff] [blame] | 1512 | GRStmtNodeBuilder<GRState>& Builder, |
Ted Kremenek | d3dbcf4 | 2008-05-05 22:11:16 +0000 | [diff] [blame] | 1513 | Expr* Ex, |
| 1514 | Expr* Receiver, |
| 1515 | RetainSummary* Summ, |
Ted Kremenek | 5549976 | 2008-06-17 02:43:46 +0000 | [diff] [blame] | 1516 | ExprIterator arg_beg, ExprIterator arg_end, |
Ted Kremenek | 4adc81e | 2008-08-13 04:27:00 +0000 | [diff] [blame] | 1517 | ExplodedNode<GRState>* Pred); |
Ted Kremenek | d3dbcf4 | 2008-05-05 22:11:16 +0000 | [diff] [blame] | 1518 | |
Ted Kremenek | 4adc81e | 2008-08-13 04:27:00 +0000 | [diff] [blame] | 1519 | virtual void EvalCall(ExplodedNodeSet<GRState>& Dst, |
Ted Kremenek | 199e1a0 | 2008-03-12 21:06:49 +0000 | [diff] [blame] | 1520 | GRExprEngine& Eng, |
Ted Kremenek | 4adc81e | 2008-08-13 04:27:00 +0000 | [diff] [blame] | 1521 | GRStmtNodeBuilder<GRState>& Builder, |
Zhongxing Xu | 1c96b24 | 2008-10-17 05:57:07 +0000 | [diff] [blame] | 1522 | CallExpr* CE, SVal L, |
Ted Kremenek | 4adc81e | 2008-08-13 04:27:00 +0000 | [diff] [blame] | 1523 | ExplodedNode<GRState>* Pred); |
Ted Kremenek | fa34b33 | 2008-04-09 01:10:13 +0000 | [diff] [blame] | 1524 | |
Ted Kremenek | d3dbcf4 | 2008-05-05 22:11:16 +0000 | [diff] [blame] | 1525 | |
Ted Kremenek | 4adc81e | 2008-08-13 04:27:00 +0000 | [diff] [blame] | 1526 | virtual void EvalObjCMessageExpr(ExplodedNodeSet<GRState>& Dst, |
Ted Kremenek | 8534820 | 2008-04-15 23:44:31 +0000 | [diff] [blame] | 1527 | GRExprEngine& Engine, |
Ted Kremenek | 4adc81e | 2008-08-13 04:27:00 +0000 | [diff] [blame] | 1528 | GRStmtNodeBuilder<GRState>& Builder, |
Ted Kremenek | 8534820 | 2008-04-15 23:44:31 +0000 | [diff] [blame] | 1529 | ObjCMessageExpr* ME, |
Ted Kremenek | 4adc81e | 2008-08-13 04:27:00 +0000 | [diff] [blame] | 1530 | ExplodedNode<GRState>* Pred); |
Ted Kremenek | 8534820 | 2008-04-15 23:44:31 +0000 | [diff] [blame] | 1531 | |
Ted Kremenek | 4adc81e | 2008-08-13 04:27:00 +0000 | [diff] [blame] | 1532 | bool EvalObjCMessageExprAux(ExplodedNodeSet<GRState>& Dst, |
Ted Kremenek | 8534820 | 2008-04-15 23:44:31 +0000 | [diff] [blame] | 1533 | GRExprEngine& Engine, |
Ted Kremenek | 4adc81e | 2008-08-13 04:27:00 +0000 | [diff] [blame] | 1534 | GRStmtNodeBuilder<GRState>& Builder, |
Ted Kremenek | 8534820 | 2008-04-15 23:44:31 +0000 | [diff] [blame] | 1535 | ObjCMessageExpr* ME, |
Ted Kremenek | 4adc81e | 2008-08-13 04:27:00 +0000 | [diff] [blame] | 1536 | ExplodedNode<GRState>* Pred); |
Ted Kremenek | 8534820 | 2008-04-15 23:44:31 +0000 | [diff] [blame] | 1537 | |
Ted Kremenek | 41573eb | 2009-02-14 01:43:44 +0000 | [diff] [blame] | 1538 | // Stores. |
| 1539 | virtual void EvalBind(GRStmtNodeBuilderRef& B, SVal location, SVal val); |
| 1540 | |
Ted Kremenek | e7bd9c2 | 2008-04-11 22:25:11 +0000 | [diff] [blame] | 1541 | // End-of-path. |
| 1542 | |
| 1543 | virtual void EvalEndPath(GRExprEngine& Engine, |
Ted Kremenek | 4adc81e | 2008-08-13 04:27:00 +0000 | [diff] [blame] | 1544 | GREndPathNodeBuilder<GRState>& Builder); |
Ted Kremenek | e7bd9c2 | 2008-04-11 22:25:11 +0000 | [diff] [blame] | 1545 | |
Ted Kremenek | 4adc81e | 2008-08-13 04:27:00 +0000 | [diff] [blame] | 1546 | virtual void EvalDeadSymbols(ExplodedNodeSet<GRState>& Dst, |
Ted Kremenek | 652adc6 | 2008-04-24 23:57:27 +0000 | [diff] [blame] | 1547 | GRExprEngine& Engine, |
Ted Kremenek | 4adc81e | 2008-08-13 04:27:00 +0000 | [diff] [blame] | 1548 | GRStmtNodeBuilder<GRState>& Builder, |
| 1549 | ExplodedNode<GRState>* Pred, |
Ted Kremenek | 241677a | 2009-01-21 22:26:05 +0000 | [diff] [blame] | 1550 | Stmt* S, const GRState* state, |
| 1551 | SymbolReaper& SymReaper); |
| 1552 | |
Ted Kremenek | 4fd8897 | 2008-04-17 18:12:53 +0000 | [diff] [blame] | 1553 | // Return statements. |
| 1554 | |
Ted Kremenek | 4adc81e | 2008-08-13 04:27:00 +0000 | [diff] [blame] | 1555 | virtual void EvalReturn(ExplodedNodeSet<GRState>& Dst, |
Ted Kremenek | 4fd8897 | 2008-04-17 18:12:53 +0000 | [diff] [blame] | 1556 | GRExprEngine& Engine, |
Ted Kremenek | 4adc81e | 2008-08-13 04:27:00 +0000 | [diff] [blame] | 1557 | GRStmtNodeBuilder<GRState>& Builder, |
Ted Kremenek | 4fd8897 | 2008-04-17 18:12:53 +0000 | [diff] [blame] | 1558 | ReturnStmt* S, |
Ted Kremenek | 4adc81e | 2008-08-13 04:27:00 +0000 | [diff] [blame] | 1559 | ExplodedNode<GRState>* Pred); |
Ted Kremenek | cb61292 | 2008-04-18 19:23:43 +0000 | [diff] [blame] | 1560 | |
| 1561 | // Assumptions. |
| 1562 | |
Ted Kremenek | 4adc81e | 2008-08-13 04:27:00 +0000 | [diff] [blame] | 1563 | virtual const GRState* EvalAssume(GRStateManager& VMgr, |
Zhongxing Xu | 1c96b24 | 2008-10-17 05:57:07 +0000 | [diff] [blame] | 1564 | const GRState* St, SVal Cond, |
Ted Kremenek | 4323a57 | 2008-07-10 22:03:41 +0000 | [diff] [blame] | 1565 | bool Assumption, bool& isFeasible); |
Ted Kremenek | 6b3a0f7 | 2008-03-11 06:39:11 +0000 | [diff] [blame] | 1566 | }; |
| 1567 | |
| 1568 | } // end anonymous namespace |
| 1569 | |
Ted Kremenek | 8dd5646 | 2008-04-18 03:39:05 +0000 | [diff] [blame] | 1570 | |
Ted Kremenek | ae6814e | 2008-08-13 21:24:49 +0000 | [diff] [blame] | 1571 | void CFRefCount::BindingsPrinter::Print(std::ostream& Out, const GRState* state, |
| 1572 | const char* nl, const char* sep) { |
| 1573 | |
Ted Kremenek | 72cd17f | 2008-08-14 21:16:54 +0000 | [diff] [blame] | 1574 | RefBindings B = state->get<RefBindings>(); |
Ted Kremenek | f394804 | 2008-03-11 19:44:10 +0000 | [diff] [blame] | 1575 | |
Ted Kremenek | ae6814e | 2008-08-13 21:24:49 +0000 | [diff] [blame] | 1576 | if (!B.isEmpty()) |
Ted Kremenek | f394804 | 2008-03-11 19:44:10 +0000 | [diff] [blame] | 1577 | Out << sep << nl; |
| 1578 | |
| 1579 | for (RefBindings::iterator I=B.begin(), E=B.end(); I!=E; ++I) { |
| 1580 | Out << (*I).first << " : "; |
| 1581 | (*I).second.print(Out); |
| 1582 | Out << nl; |
| 1583 | } |
Ted Kremenek | 6c4becb | 2009-02-25 02:54:57 +0000 | [diff] [blame] | 1584 | |
| 1585 | // Print the autorelease stack. |
| 1586 | ARStack stack = state->get<AutoreleaseStack>(); |
| 1587 | if (!stack.isEmpty()) { |
| 1588 | Out << sep << nl << "AR pool stack:"; |
| 1589 | |
| 1590 | for (ARStack::iterator I=stack.begin(), E=stack.end(); I!=E; ++I) |
| 1591 | Out << ' ' << (*I); |
| 1592 | |
| 1593 | Out << nl; |
| 1594 | } |
Ted Kremenek | f394804 | 2008-03-11 19:44:10 +0000 | [diff] [blame] | 1595 | } |
| 1596 | |
Ted Kremenek | d3dbcf4 | 2008-05-05 22:11:16 +0000 | [diff] [blame] | 1597 | static inline ArgEffect GetArgE(RetainSummary* Summ, unsigned idx) { |
Ted Kremenek | 3eabf1c | 2008-05-22 17:31:13 +0000 | [diff] [blame] | 1598 | return Summ ? Summ->getArg(idx) : MayEscape; |
Ted Kremenek | f9561e5 | 2008-04-11 20:23:24 +0000 | [diff] [blame] | 1599 | } |
| 1600 | |
Ted Kremenek | 3c0cea3 | 2008-05-06 02:26:56 +0000 | [diff] [blame] | 1601 | static inline RetEffect GetRetEffect(RetainSummary* Summ) { |
| 1602 | return Summ ? Summ->getRetEffect() : RetEffect::MakeNoRet(); |
Ted Kremenek | f9561e5 | 2008-04-11 20:23:24 +0000 | [diff] [blame] | 1603 | } |
| 1604 | |
Ted Kremenek | 1499389 | 2008-05-06 02:41:27 +0000 | [diff] [blame] | 1605 | static inline ArgEffect GetReceiverE(RetainSummary* Summ) { |
| 1606 | return Summ ? Summ->getReceiverEffect() : DoNothing; |
| 1607 | } |
| 1608 | |
Ted Kremenek | 70a733e | 2008-07-18 17:24:20 +0000 | [diff] [blame] | 1609 | static inline bool IsEndPath(RetainSummary* Summ) { |
| 1610 | return Summ ? Summ->isEndPath() : false; |
| 1611 | } |
| 1612 | |
Ted Kremenek | 9ed18e6 | 2008-04-16 04:28:53 +0000 | [diff] [blame] | 1613 | |
Ted Kremenek | 553cf18 | 2008-06-25 21:21:56 +0000 | [diff] [blame] | 1614 | /// GetReturnType - Used to get the return type of a message expression or |
| 1615 | /// function call with the intention of affixing that type to a tracked symbol. |
| 1616 | /// While the the return type can be queried directly from RetEx, when |
| 1617 | /// invoking class methods we augment to the return type to be that of |
| 1618 | /// a pointer to the class (as opposed it just being id). |
| 1619 | static QualType GetReturnType(Expr* RetE, ASTContext& Ctx) { |
| 1620 | |
| 1621 | QualType RetTy = RetE->getType(); |
| 1622 | |
| 1623 | // FIXME: We aren't handling id<...>. |
Chris Lattner | 8b51fd7 | 2008-07-26 22:36:27 +0000 | [diff] [blame] | 1624 | const PointerType* PT = RetTy->getAsPointerType(); |
Ted Kremenek | 553cf18 | 2008-06-25 21:21:56 +0000 | [diff] [blame] | 1625 | if (!PT) |
| 1626 | return RetTy; |
| 1627 | |
| 1628 | // If RetEx is not a message expression just return its type. |
| 1629 | // If RetEx is a message expression, return its types if it is something |
| 1630 | /// more specific than id. |
| 1631 | |
| 1632 | ObjCMessageExpr* ME = dyn_cast<ObjCMessageExpr>(RetE); |
| 1633 | |
Steve Naroff | 389bf46 | 2009-02-12 17:52:19 +0000 | [diff] [blame] | 1634 | if (!ME || !Ctx.isObjCIdStructType(PT->getPointeeType())) |
Ted Kremenek | 553cf18 | 2008-06-25 21:21:56 +0000 | [diff] [blame] | 1635 | return RetTy; |
| 1636 | |
| 1637 | ObjCInterfaceDecl* D = ME->getClassInfo().first; |
| 1638 | |
| 1639 | // At this point we know the return type of the message expression is id. |
| 1640 | // If we have an ObjCInterceDecl, we know this is a call to a class method |
| 1641 | // whose type we can resolve. In such cases, promote the return type to |
| 1642 | // Class*. |
| 1643 | return !D ? RetTy : Ctx.getPointerType(Ctx.getObjCInterfaceType(D)); |
| 1644 | } |
| 1645 | |
| 1646 | |
Ted Kremenek | 4adc81e | 2008-08-13 04:27:00 +0000 | [diff] [blame] | 1647 | void CFRefCount::EvalSummary(ExplodedNodeSet<GRState>& Dst, |
Ted Kremenek | d3dbcf4 | 2008-05-05 22:11:16 +0000 | [diff] [blame] | 1648 | GRExprEngine& Eng, |
Ted Kremenek | 4adc81e | 2008-08-13 04:27:00 +0000 | [diff] [blame] | 1649 | GRStmtNodeBuilder<GRState>& Builder, |
Ted Kremenek | d3dbcf4 | 2008-05-05 22:11:16 +0000 | [diff] [blame] | 1650 | Expr* Ex, |
| 1651 | Expr* Receiver, |
| 1652 | RetainSummary* Summ, |
Ted Kremenek | 5549976 | 2008-06-17 02:43:46 +0000 | [diff] [blame] | 1653 | ExprIterator arg_beg, ExprIterator arg_end, |
Ted Kremenek | 4adc81e | 2008-08-13 04:27:00 +0000 | [diff] [blame] | 1654 | ExplodedNode<GRState>* Pred) { |
Ted Kremenek | 00a3a5f | 2008-03-12 01:21:45 +0000 | [diff] [blame] | 1655 | |
Ted Kremenek | 6b3a0f7 | 2008-03-11 06:39:11 +0000 | [diff] [blame] | 1656 | // Get the state. |
Ted Kremenek | 72cd17f | 2008-08-14 21:16:54 +0000 | [diff] [blame] | 1657 | GRStateRef state(Builder.GetState(Pred), Eng.getStateManager()); |
Ted Kremenek | f9790ae | 2008-10-24 20:32:50 +0000 | [diff] [blame] | 1658 | ASTContext& Ctx = Eng.getStateManager().getContext(); |
Ted Kremenek | 1499389 | 2008-05-06 02:41:27 +0000 | [diff] [blame] | 1659 | |
| 1660 | // Evaluate the effect of the arguments. |
Ted Kremenek | 9ed18e6 | 2008-04-16 04:28:53 +0000 | [diff] [blame] | 1661 | RefVal::Kind hasErr = (RefVal::Kind) 0; |
Ted Kremenek | 00a3a5f | 2008-03-12 01:21:45 +0000 | [diff] [blame] | 1662 | unsigned idx = 0; |
Ted Kremenek | bcf50ad | 2008-04-11 18:40:51 +0000 | [diff] [blame] | 1663 | Expr* ErrorExpr = NULL; |
Ted Kremenek | 2dabd43 | 2008-12-05 02:27:51 +0000 | [diff] [blame] | 1664 | SymbolRef ErrorSym = 0; |
Ted Kremenek | bcf50ad | 2008-04-11 18:40:51 +0000 | [diff] [blame] | 1665 | |
Ted Kremenek | 72cd17f | 2008-08-14 21:16:54 +0000 | [diff] [blame] | 1666 | for (ExprIterator I = arg_beg; I != arg_end; ++I, ++idx) { |
Ted Kremenek | 3f4d5ab | 2009-03-04 00:13:50 +0000 | [diff] [blame] | 1667 | SVal V = state.GetSValAsScalarOrLoc(*I); |
Ted Kremenek | 94c9698 | 2009-03-03 22:06:47 +0000 | [diff] [blame] | 1668 | SymbolRef Sym = V.getAsLocSymbol(); |
Ted Kremenek | 3f4d5ab | 2009-03-04 00:13:50 +0000 | [diff] [blame] | 1669 | |
Ted Kremenek | 94c9698 | 2009-03-03 22:06:47 +0000 | [diff] [blame] | 1670 | if (Sym.isValid()) |
Ted Kremenek | 4d3957d | 2009-02-24 19:15:11 +0000 | [diff] [blame] | 1671 | if (RefBindings::data_type* T = state.get<RefBindings>(Sym)) { |
| 1672 | state = Update(state, Sym, *T, GetArgE(Summ, idx), hasErr); |
| 1673 | if (hasErr) { |
Ted Kremenek | bcf50ad | 2008-04-11 18:40:51 +0000 | [diff] [blame] | 1674 | ErrorExpr = *I; |
Ted Kremenek | e8fdc83 | 2008-07-07 16:21:19 +0000 | [diff] [blame] | 1675 | ErrorSym = Sym; |
Ted Kremenek | bcf50ad | 2008-04-11 18:40:51 +0000 | [diff] [blame] | 1676 | break; |
Ted Kremenek | 94c9698 | 2009-03-03 22:06:47 +0000 | [diff] [blame] | 1677 | } |
| 1678 | continue; |
Ted Kremenek | 4d3957d | 2009-02-24 19:15:11 +0000 | [diff] [blame] | 1679 | } |
Ted Kremenek | 070a825 | 2008-07-09 18:11:16 +0000 | [diff] [blame] | 1680 | |
Ted Kremenek | 94c9698 | 2009-03-03 22:06:47 +0000 | [diff] [blame] | 1681 | if (isa<Loc>(V)) { |
| 1682 | if (loc::MemRegionVal* MR = dyn_cast<loc::MemRegionVal>(&V)) { |
Ted Kremenek | 070a825 | 2008-07-09 18:11:16 +0000 | [diff] [blame] | 1683 | if (GetArgE(Summ, idx) == DoNothingByRef) |
| 1684 | continue; |
| 1685 | |
| 1686 | // Invalidate the value of the variable passed by reference. |
Ted Kremenek | 8c5633e | 2008-07-03 23:26:32 +0000 | [diff] [blame] | 1687 | |
| 1688 | // FIXME: Either this logic should also be replicated in GRSimpleVals |
| 1689 | // or should be pulled into a separate "constraint engine." |
Ted Kremenek | 070a825 | 2008-07-09 18:11:16 +0000 | [diff] [blame] | 1690 | |
Ted Kremenek | 8c5633e | 2008-07-03 23:26:32 +0000 | [diff] [blame] | 1691 | // FIXME: We can have collisions on the conjured symbol if the |
| 1692 | // expression *I also creates conjured symbols. We probably want |
| 1693 | // to identify conjured symbols by an expression pair: the enclosing |
| 1694 | // expression (the context) and the expression itself. This should |
Ted Kremenek | 070a825 | 2008-07-09 18:11:16 +0000 | [diff] [blame] | 1695 | // disambiguate conjured symbols. |
Ted Kremenek | 9e24049 | 2008-10-04 05:50:14 +0000 | [diff] [blame] | 1696 | |
Ted Kremenek | 993f1c7 | 2008-10-17 20:28:54 +0000 | [diff] [blame] | 1697 | const TypedRegion* R = dyn_cast<TypedRegion>(MR->getRegion()); |
Ted Kremenek | 90b3236 | 2008-12-17 19:42:34 +0000 | [diff] [blame] | 1698 | |
Ted Kremenek | 0312c0e | 2009-03-01 05:44:08 +0000 | [diff] [blame] | 1699 | // Blast through TypedViewRegions to get the original region type. |
Ted Kremenek | 90b3236 | 2008-12-17 19:42:34 +0000 | [diff] [blame] | 1700 | while (R) { |
Ted Kremenek | 0312c0e | 2009-03-01 05:44:08 +0000 | [diff] [blame] | 1701 | const TypedViewRegion* ATR = dyn_cast<TypedViewRegion>(R); |
Ted Kremenek | 90b3236 | 2008-12-17 19:42:34 +0000 | [diff] [blame] | 1702 | if (!ATR) break; |
| 1703 | R = dyn_cast<TypedRegion>(ATR->getSuperRegion()); |
| 1704 | } |
| 1705 | |
Ted Kremenek | d104a09 | 2009-03-04 22:56:43 +0000 | [diff] [blame] | 1706 | if (R) { |
Ted Kremenek | 40e86d9 | 2008-12-18 23:34:57 +0000 | [diff] [blame] | 1707 | // Is the invalidated variable something that we were tracking? |
Ted Kremenek | 3f4d5ab | 2009-03-04 00:13:50 +0000 | [diff] [blame] | 1708 | SymbolRef Sym = state.GetSValAsScalarOrLoc(R).getAsLocSymbol(); |
Ted Kremenek | 40e86d9 | 2008-12-18 23:34:57 +0000 | [diff] [blame] | 1709 | |
Ted Kremenek | d104a09 | 2009-03-04 22:56:43 +0000 | [diff] [blame] | 1710 | // Remove any existing reference-count binding. |
| 1711 | if (Sym.isValid()) state = state.remove<RefBindings>(Sym); |
Ted Kremenek | 9e24049 | 2008-10-04 05:50:14 +0000 | [diff] [blame] | 1712 | |
Ted Kremenek | d104a09 | 2009-03-04 22:56:43 +0000 | [diff] [blame] | 1713 | if (R->isBoundable(Ctx)) { |
| 1714 | // Set the value of the variable to be a conjured symbol. |
| 1715 | unsigned Count = Builder.getCurrentBlockCount(); |
| 1716 | QualType T = R->getRValueType(Ctx); |
| 1717 | |
| 1718 | if (Loc::IsLocType(T) || (T->isIntegerType() && T->isScalarType())) { |
| 1719 | SymbolRef NewSym = |
| 1720 | Eng.getSymbolManager().getConjuredSymbol(*I, T, Count); |
| 1721 | |
| 1722 | state = state.BindLoc(Loc::MakeVal(R), |
| 1723 | Loc::IsLocType(T) |
| 1724 | ? cast<SVal>(loc::SymbolVal(NewSym)) |
| 1725 | : cast<SVal>(nonloc::SymbolVal(NewSym))); |
| 1726 | } |
| 1727 | else if (const RecordType *RT = T->getAsStructureType()) { |
| 1728 | // Handle structs in a not so awesome way. Here we just |
| 1729 | // eagerly bind new symbols to the fields. In reality we |
| 1730 | // should have the store manager handle this. The idea is just |
| 1731 | // to prototype some basic functionality here. All of this logic |
| 1732 | // should one day soon just go away. |
| 1733 | const RecordDecl *RD = RT->getDecl()->getDefinition(Ctx); |
| 1734 | |
| 1735 | // No record definition. There is nothing we can do. |
| 1736 | if (!RD) |
| 1737 | continue; |
| 1738 | |
| 1739 | MemRegionManager &MRMgr = state.getManager().getRegionManager(); |
| 1740 | |
| 1741 | // Iterate through the fields and construct new symbols. |
| 1742 | for (RecordDecl::field_iterator FI=RD->field_begin(), |
| 1743 | FE=RD->field_end(); FI!=FE; ++FI) { |
| 1744 | |
| 1745 | // For now just handle scalar fields. |
| 1746 | FieldDecl *FD = *FI; |
| 1747 | QualType FT = FD->getType(); |
| 1748 | |
| 1749 | if (Loc::IsLocType(FT) || |
| 1750 | (FT->isIntegerType() && FT->isScalarType())) { |
| 1751 | |
| 1752 | // Tag the symbol with the field decl so that we generate |
| 1753 | // a unique symbol. |
| 1754 | SymbolRef NewSym = |
| 1755 | Eng.getSymbolManager().getConjuredSymbol(*I, FT, Count, FD); |
| 1756 | |
| 1757 | // Create a region. |
| 1758 | // FIXME: How do we handle 'typedefs' in TypeViewRegions? |
| 1759 | // e.g.: |
| 1760 | // typedef struct *s foo; |
| 1761 | // |
| 1762 | // ((foo) x)->f vs. x->f |
| 1763 | // |
| 1764 | // The cast will add a ViewTypeRegion. Probably RegionStore |
| 1765 | // needs to reason about typedefs explicitly when binding |
| 1766 | // fields and elements. |
| 1767 | // |
| 1768 | const FieldRegion* FR = MRMgr.getFieldRegion(FD, R); |
| 1769 | |
| 1770 | state = state.BindLoc(Loc::MakeVal(FR), |
| 1771 | Loc::IsLocType(FT) |
| 1772 | ? cast<SVal>(loc::SymbolVal(NewSym)) |
| 1773 | : cast<SVal>(nonloc::SymbolVal(NewSym))); |
| 1774 | } |
| 1775 | } |
| 1776 | } |
| 1777 | else { |
| 1778 | // Just blast away other values. |
| 1779 | state = state.BindLoc(*MR, UnknownVal()); |
| 1780 | } |
Ted Kremenek | fd30194 | 2008-10-17 22:23:12 +0000 | [diff] [blame] | 1781 | } |
Ted Kremenek | 9e24049 | 2008-10-04 05:50:14 +0000 | [diff] [blame] | 1782 | } |
| 1783 | else |
Ted Kremenek | a441b7e | 2008-11-12 19:22:09 +0000 | [diff] [blame] | 1784 | state = state.BindLoc(*MR, UnknownVal()); |
Ted Kremenek | 8c5633e | 2008-07-03 23:26:32 +0000 | [diff] [blame] | 1785 | } |
| 1786 | else { |
| 1787 | // Nuke all other arguments passed by reference. |
Zhongxing Xu | 1c96b24 | 2008-10-17 05:57:07 +0000 | [diff] [blame] | 1788 | state = state.Unbind(cast<Loc>(V)); |
Ted Kremenek | 8c5633e | 2008-07-03 23:26:32 +0000 | [diff] [blame] | 1789 | } |
Ted Kremenek | b887355 | 2008-04-11 20:51:02 +0000 | [diff] [blame] | 1790 | } |
Zhongxing Xu | 1c96b24 | 2008-10-17 05:57:07 +0000 | [diff] [blame] | 1791 | else if (isa<nonloc::LocAsInteger>(V)) |
| 1792 | state = state.Unbind(cast<nonloc::LocAsInteger>(V).getLoc()); |
Ted Kremenek | d3dbcf4 | 2008-05-05 22:11:16 +0000 | [diff] [blame] | 1793 | } |
Ted Kremenek | 9ed18e6 | 2008-04-16 04:28:53 +0000 | [diff] [blame] | 1794 | |
Ted Kremenek | 553cf18 | 2008-06-25 21:21:56 +0000 | [diff] [blame] | 1795 | // Evaluate the effect on the message receiver. |
Ted Kremenek | 1499389 | 2008-05-06 02:41:27 +0000 | [diff] [blame] | 1796 | if (!ErrorExpr && Receiver) { |
Ted Kremenek | 3f4d5ab | 2009-03-04 00:13:50 +0000 | [diff] [blame] | 1797 | SymbolRef Sym = state.GetSValAsScalarOrLoc(Receiver).getAsLocSymbol(); |
Ted Kremenek | 94c9698 | 2009-03-03 22:06:47 +0000 | [diff] [blame] | 1798 | if (Sym.isValid()) { |
Ted Kremenek | 4d3957d | 2009-02-24 19:15:11 +0000 | [diff] [blame] | 1799 | if (const RefVal* T = state.get<RefBindings>(Sym)) { |
| 1800 | state = Update(state, Sym, *T, GetReceiverE(Summ), hasErr); |
| 1801 | if (hasErr) { |
Ted Kremenek | 1499389 | 2008-05-06 02:41:27 +0000 | [diff] [blame] | 1802 | ErrorExpr = Receiver; |
Ted Kremenek | e8fdc83 | 2008-07-07 16:21:19 +0000 | [diff] [blame] | 1803 | ErrorSym = Sym; |
Ted Kremenek | 1499389 | 2008-05-06 02:41:27 +0000 | [diff] [blame] | 1804 | } |
Ted Kremenek | 4d3957d | 2009-02-24 19:15:11 +0000 | [diff] [blame] | 1805 | } |
Ted Kremenek | 1499389 | 2008-05-06 02:41:27 +0000 | [diff] [blame] | 1806 | } |
| 1807 | } |
Ted Kremenek | d3dbcf4 | 2008-05-05 22:11:16 +0000 | [diff] [blame] | 1808 | |
Ted Kremenek | 553cf18 | 2008-06-25 21:21:56 +0000 | [diff] [blame] | 1809 | // Process any errors. |
Ted Kremenek | 9ed18e6 | 2008-04-16 04:28:53 +0000 | [diff] [blame] | 1810 | if (hasErr) { |
Ted Kremenek | 72cd17f | 2008-08-14 21:16:54 +0000 | [diff] [blame] | 1811 | ProcessNonLeakError(Dst, Builder, Ex, ErrorExpr, Pred, state, |
Ted Kremenek | 8dd5646 | 2008-04-18 03:39:05 +0000 | [diff] [blame] | 1812 | hasErr, ErrorSym); |
Ted Kremenek | 00a3a5f | 2008-03-12 01:21:45 +0000 | [diff] [blame] | 1813 | return; |
Ted Kremenek | 1ac08d6 | 2008-03-11 17:48:22 +0000 | [diff] [blame] | 1814 | } |
Ted Kremenek | d3dbcf4 | 2008-05-05 22:11:16 +0000 | [diff] [blame] | 1815 | |
Ted Kremenek | 70a733e | 2008-07-18 17:24:20 +0000 | [diff] [blame] | 1816 | // Consult the summary for the return value. |
Ted Kremenek | 3c0cea3 | 2008-05-06 02:26:56 +0000 | [diff] [blame] | 1817 | RetEffect RE = GetRetEffect(Summ); |
Ted Kremenek | 00a3a5f | 2008-03-12 01:21:45 +0000 | [diff] [blame] | 1818 | |
| 1819 | switch (RE.getKind()) { |
| 1820 | default: |
| 1821 | assert (false && "Unhandled RetEffect."); break; |
Ted Kremenek | d3dbcf4 | 2008-05-05 22:11:16 +0000 | [diff] [blame] | 1822 | |
Ted Kremenek | fd30194 | 2008-10-17 22:23:12 +0000 | [diff] [blame] | 1823 | case RetEffect::NoRet: { |
Ted Kremenek | d3dbcf4 | 2008-05-05 22:11:16 +0000 | [diff] [blame] | 1824 | |
Ted Kremenek | f9561e5 | 2008-04-11 20:23:24 +0000 | [diff] [blame] | 1825 | // Make up a symbol for the return value (not reference counted). |
Ted Kremenek | b887355 | 2008-04-11 20:51:02 +0000 | [diff] [blame] | 1826 | // FIXME: This is basically copy-and-paste from GRSimpleVals. We |
| 1827 | // should compose behavior, not copy it. |
Ted Kremenek | f9561e5 | 2008-04-11 20:23:24 +0000 | [diff] [blame] | 1828 | |
Ted Kremenek | fd30194 | 2008-10-17 22:23:12 +0000 | [diff] [blame] | 1829 | // FIXME: We eventually should handle structs and other compound types |
| 1830 | // that are returned by value. |
| 1831 | |
| 1832 | QualType T = Ex->getType(); |
| 1833 | |
Ted Kremenek | 062e2f9 | 2008-11-13 06:10:40 +0000 | [diff] [blame] | 1834 | if (Loc::IsLocType(T) || (T->isIntegerType() && T->isScalarType())) { |
Ted Kremenek | f9561e5 | 2008-04-11 20:23:24 +0000 | [diff] [blame] | 1835 | unsigned Count = Builder.getCurrentBlockCount(); |
Ted Kremenek | 2dabd43 | 2008-12-05 02:27:51 +0000 | [diff] [blame] | 1836 | SymbolRef Sym = Eng.getSymbolManager().getConjuredSymbol(Ex, Count); |
Ted Kremenek | f9561e5 | 2008-04-11 20:23:24 +0000 | [diff] [blame] | 1837 | |
Ted Kremenek | c3cf7b2 | 2009-02-20 00:05:35 +0000 | [diff] [blame] | 1838 | SVal X = Loc::IsLocType(T) |
Zhongxing Xu | 1c96b24 | 2008-10-17 05:57:07 +0000 | [diff] [blame] | 1839 | ? cast<SVal>(loc::SymbolVal(Sym)) |
| 1840 | : cast<SVal>(nonloc::SymbolVal(Sym)); |
Ted Kremenek | f9561e5 | 2008-04-11 20:23:24 +0000 | [diff] [blame] | 1841 | |
Ted Kremenek | a441b7e | 2008-11-12 19:22:09 +0000 | [diff] [blame] | 1842 | state = state.BindExpr(Ex, X, false); |
Ted Kremenek | f9561e5 | 2008-04-11 20:23:24 +0000 | [diff] [blame] | 1843 | } |
| 1844 | |
Ted Kremenek | 940b1d8 | 2008-04-10 23:44:06 +0000 | [diff] [blame] | 1845 | break; |
Ted Kremenek | fd30194 | 2008-10-17 22:23:12 +0000 | [diff] [blame] | 1846 | } |
Ted Kremenek | 940b1d8 | 2008-04-10 23:44:06 +0000 | [diff] [blame] | 1847 | |
Ted Kremenek | 00a3a5f | 2008-03-12 01:21:45 +0000 | [diff] [blame] | 1848 | case RetEffect::Alias: { |
Ted Kremenek | 553cf18 | 2008-06-25 21:21:56 +0000 | [diff] [blame] | 1849 | unsigned idx = RE.getIndex(); |
Ted Kremenek | 5549976 | 2008-06-17 02:43:46 +0000 | [diff] [blame] | 1850 | assert (arg_end >= arg_beg); |
Ted Kremenek | d3dbcf4 | 2008-05-05 22:11:16 +0000 | [diff] [blame] | 1851 | assert (idx < (unsigned) (arg_end - arg_beg)); |
Ted Kremenek | 3f4d5ab | 2009-03-04 00:13:50 +0000 | [diff] [blame] | 1852 | SVal V = state.GetSValAsScalarOrLoc(*(arg_beg+idx)); |
Ted Kremenek | a441b7e | 2008-11-12 19:22:09 +0000 | [diff] [blame] | 1853 | state = state.BindExpr(Ex, V, false); |
Ted Kremenek | 00a3a5f | 2008-03-12 01:21:45 +0000 | [diff] [blame] | 1854 | break; |
| 1855 | } |
| 1856 | |
Ted Kremenek | 1499389 | 2008-05-06 02:41:27 +0000 | [diff] [blame] | 1857 | case RetEffect::ReceiverAlias: { |
| 1858 | assert (Receiver); |
Ted Kremenek | 3f4d5ab | 2009-03-04 00:13:50 +0000 | [diff] [blame] | 1859 | SVal V = state.GetSValAsScalarOrLoc(Receiver); |
Ted Kremenek | a441b7e | 2008-11-12 19:22:09 +0000 | [diff] [blame] | 1860 | state = state.BindExpr(Ex, V, false); |
Ted Kremenek | 1499389 | 2008-05-06 02:41:27 +0000 | [diff] [blame] | 1861 | break; |
| 1862 | } |
| 1863 | |
Ted Kremenek | a734470 | 2008-06-23 18:02:52 +0000 | [diff] [blame] | 1864 | case RetEffect::OwnedAllocatedSymbol: |
Ted Kremenek | 00a3a5f | 2008-03-12 01:21:45 +0000 | [diff] [blame] | 1865 | case RetEffect::OwnedSymbol: { |
| 1866 | unsigned Count = Builder.getCurrentBlockCount(); |
Ted Kremenek | 2dabd43 | 2008-12-05 02:27:51 +0000 | [diff] [blame] | 1867 | SymbolRef Sym = Eng.getSymbolManager().getConjuredSymbol(Ex, Count); |
Ted Kremenek | 2d1652e | 2009-01-28 05:56:51 +0000 | [diff] [blame] | 1868 | QualType RetT = GetReturnType(Ex, Eng.getContext()); |
| 1869 | state = |
| 1870 | state.set<RefBindings>(Sym, RefVal::makeOwned(RE.getObjKind(), RetT)); |
Ted Kremenek | a441b7e | 2008-11-12 19:22:09 +0000 | [diff] [blame] | 1871 | state = state.BindExpr(Ex, loc::SymbolVal(Sym), false); |
Ted Kremenek | 72cd17f | 2008-08-14 21:16:54 +0000 | [diff] [blame] | 1872 | |
Ted Kremenek | 25d01ba | 2009-03-09 22:46:49 +0000 | [diff] [blame] | 1873 | |
| 1874 | // FIXME: Add a flag to the checker where allocations are assumed to |
| 1875 | // *not fail. |
| 1876 | #if 0 |
Ted Kremenek | b2bf7cd | 2009-01-28 22:27:59 +0000 | [diff] [blame] | 1877 | if (RE.getKind() == RetEffect::OwnedAllocatedSymbol) { |
| 1878 | bool isFeasible; |
| 1879 | state = state.Assume(loc::SymbolVal(Sym), true, isFeasible); |
| 1880 | assert(isFeasible && "Cannot assume fresh symbol is non-null."); |
| 1881 | } |
Ted Kremenek | 25d01ba | 2009-03-09 22:46:49 +0000 | [diff] [blame] | 1882 | #endif |
Ted Kremenek | a734470 | 2008-06-23 18:02:52 +0000 | [diff] [blame] | 1883 | |
Ted Kremenek | 00a3a5f | 2008-03-12 01:21:45 +0000 | [diff] [blame] | 1884 | break; |
| 1885 | } |
| 1886 | |
| 1887 | case RetEffect::NotOwnedSymbol: { |
| 1888 | unsigned Count = Builder.getCurrentBlockCount(); |
Ted Kremenek | 2dabd43 | 2008-12-05 02:27:51 +0000 | [diff] [blame] | 1889 | SymbolRef Sym = Eng.getSymbolManager().getConjuredSymbol(Ex, Count); |
Ted Kremenek | 553cf18 | 2008-06-25 21:21:56 +0000 | [diff] [blame] | 1890 | QualType RetT = GetReturnType(Ex, Eng.getContext()); |
Ted Kremenek | 00a3a5f | 2008-03-12 01:21:45 +0000 | [diff] [blame] | 1891 | |
Ted Kremenek | 2d1652e | 2009-01-28 05:56:51 +0000 | [diff] [blame] | 1892 | state = |
| 1893 | state.set<RefBindings>(Sym, RefVal::makeNotOwned(RE.getObjKind(),RetT)); |
Ted Kremenek | a441b7e | 2008-11-12 19:22:09 +0000 | [diff] [blame] | 1894 | state = state.BindExpr(Ex, loc::SymbolVal(Sym), false); |
Ted Kremenek | 00a3a5f | 2008-03-12 01:21:45 +0000 | [diff] [blame] | 1895 | break; |
| 1896 | } |
| 1897 | } |
Ted Kremenek | d3dbcf4 | 2008-05-05 22:11:16 +0000 | [diff] [blame] | 1898 | |
Ted Kremenek | f5b34b1 | 2009-02-18 02:00:25 +0000 | [diff] [blame] | 1899 | // Generate a sink node if we are at the end of a path. |
| 1900 | GRExprEngine::NodeTy *NewNode = |
| 1901 | IsEndPath(Summ) ? Builder.MakeSinkNode(Dst, Ex, Pred, state) |
| 1902 | : Builder.MakeNode(Dst, Ex, Pred, state); |
| 1903 | |
| 1904 | // Annotate the edge with summary we used. |
| 1905 | // FIXME: This assumes that we always use the same summary when generating |
| 1906 | // this node. |
| 1907 | if (NewNode) SummaryLog[NewNode] = Summ; |
Ted Kremenek | d3dbcf4 | 2008-05-05 22:11:16 +0000 | [diff] [blame] | 1908 | } |
| 1909 | |
| 1910 | |
Ted Kremenek | 4adc81e | 2008-08-13 04:27:00 +0000 | [diff] [blame] | 1911 | void CFRefCount::EvalCall(ExplodedNodeSet<GRState>& Dst, |
Ted Kremenek | d3dbcf4 | 2008-05-05 22:11:16 +0000 | [diff] [blame] | 1912 | GRExprEngine& Eng, |
Ted Kremenek | 4adc81e | 2008-08-13 04:27:00 +0000 | [diff] [blame] | 1913 | GRStmtNodeBuilder<GRState>& Builder, |
Zhongxing Xu | 1c96b24 | 2008-10-17 05:57:07 +0000 | [diff] [blame] | 1914 | CallExpr* CE, SVal L, |
Ted Kremenek | 4adc81e | 2008-08-13 04:27:00 +0000 | [diff] [blame] | 1915 | ExplodedNode<GRState>* Pred) { |
Ted Kremenek | d3dbcf4 | 2008-05-05 22:11:16 +0000 | [diff] [blame] | 1916 | |
Zhongxing Xu | 1c96b24 | 2008-10-17 05:57:07 +0000 | [diff] [blame] | 1917 | RetainSummary* Summ = !isa<loc::FuncVal>(L) ? 0 |
| 1918 | : Summaries.getSummary(cast<loc::FuncVal>(L).getDecl()); |
Ted Kremenek | d3dbcf4 | 2008-05-05 22:11:16 +0000 | [diff] [blame] | 1919 | |
| 1920 | EvalSummary(Dst, Eng, Builder, CE, 0, Summ, |
| 1921 | CE->arg_begin(), CE->arg_end(), Pred); |
Ted Kremenek | 2fff37e | 2008-03-06 00:08:09 +0000 | [diff] [blame] | 1922 | } |
Ted Kremenek | 6b3a0f7 | 2008-03-11 06:39:11 +0000 | [diff] [blame] | 1923 | |
Ted Kremenek | 4adc81e | 2008-08-13 04:27:00 +0000 | [diff] [blame] | 1924 | void CFRefCount::EvalObjCMessageExpr(ExplodedNodeSet<GRState>& Dst, |
Ted Kremenek | 8534820 | 2008-04-15 23:44:31 +0000 | [diff] [blame] | 1925 | GRExprEngine& Eng, |
Ted Kremenek | 4adc81e | 2008-08-13 04:27:00 +0000 | [diff] [blame] | 1926 | GRStmtNodeBuilder<GRState>& Builder, |
Ted Kremenek | 8534820 | 2008-04-15 23:44:31 +0000 | [diff] [blame] | 1927 | ObjCMessageExpr* ME, |
Ted Kremenek | 4adc81e | 2008-08-13 04:27:00 +0000 | [diff] [blame] | 1928 | ExplodedNode<GRState>* Pred) { |
Ted Kremenek | b309525 | 2008-05-06 04:20:12 +0000 | [diff] [blame] | 1929 | RetainSummary* Summ; |
Ted Kremenek | 9040c65 | 2008-05-01 21:31:50 +0000 | [diff] [blame] | 1930 | |
Ted Kremenek | 553cf18 | 2008-06-25 21:21:56 +0000 | [diff] [blame] | 1931 | if (Expr* Receiver = ME->getReceiver()) { |
| 1932 | // We need the type-information of the tracked receiver object |
| 1933 | // Retrieve it from the state. |
| 1934 | ObjCInterfaceDecl* ID = 0; |
| 1935 | |
| 1936 | // FIXME: Wouldn't it be great if this code could be reduced? It's just |
| 1937 | // a chain of lookups. |
Ted Kremenek | 4adc81e | 2008-08-13 04:27:00 +0000 | [diff] [blame] | 1938 | const GRState* St = Builder.GetState(Pred); |
Ted Kremenek | 3f4d5ab | 2009-03-04 00:13:50 +0000 | [diff] [blame] | 1939 | SVal V = Eng.getStateManager().GetSValAsScalarOrLoc(St, Receiver); |
Ted Kremenek | 553cf18 | 2008-06-25 21:21:56 +0000 | [diff] [blame] | 1940 | |
Ted Kremenek | 94c9698 | 2009-03-03 22:06:47 +0000 | [diff] [blame] | 1941 | SymbolRef Sym = V.getAsLocSymbol(); |
| 1942 | if (Sym.isValid()) { |
Ted Kremenek | 72cd17f | 2008-08-14 21:16:54 +0000 | [diff] [blame] | 1943 | if (const RefVal* T = St->get<RefBindings>(Sym)) { |
Ted Kremenek | e8fdc83 | 2008-07-07 16:21:19 +0000 | [diff] [blame] | 1944 | QualType Ty = T->getType(); |
Ted Kremenek | 553cf18 | 2008-06-25 21:21:56 +0000 | [diff] [blame] | 1945 | |
| 1946 | if (const PointerType* PT = Ty->getAsPointerType()) { |
| 1947 | QualType PointeeTy = PT->getPointeeType(); |
| 1948 | |
| 1949 | if (ObjCInterfaceType* IT = dyn_cast<ObjCInterfaceType>(PointeeTy)) |
| 1950 | ID = IT->getDecl(); |
| 1951 | } |
| 1952 | } |
| 1953 | } |
| 1954 | |
| 1955 | Summ = Summaries.getMethodSummary(ME, ID); |
Ted Kremenek | f9790ae | 2008-10-24 20:32:50 +0000 | [diff] [blame] | 1956 | |
Ted Kremenek | 896cd9d | 2008-10-23 01:56:15 +0000 | [diff] [blame] | 1957 | // Special-case: are we sending a mesage to "self"? |
| 1958 | // This is a hack. When we have full-IP this should be removed. |
| 1959 | if (!Summ) { |
| 1960 | ObjCMethodDecl* MD = |
| 1961 | dyn_cast<ObjCMethodDecl>(&Eng.getGraph().getCodeDecl()); |
| 1962 | |
| 1963 | if (MD) { |
| 1964 | if (Expr* Receiver = ME->getReceiver()) { |
Ted Kremenek | 3f4d5ab | 2009-03-04 00:13:50 +0000 | [diff] [blame] | 1965 | SVal X = Eng.getStateManager().GetSValAsScalarOrLoc(St, Receiver); |
Ted Kremenek | 896cd9d | 2008-10-23 01:56:15 +0000 | [diff] [blame] | 1966 | if (loc::MemRegionVal* L = dyn_cast<loc::MemRegionVal>(&X)) |
Ted Kremenek | f9790ae | 2008-10-24 20:32:50 +0000 | [diff] [blame] | 1967 | if (L->getRegion() == Eng.getStateManager().getSelfRegion(St)) { |
| 1968 | // Create a summmary where all of the arguments "StopTracking". |
| 1969 | Summ = Summaries.getPersistentSummary(RetEffect::MakeNoRet(), |
| 1970 | DoNothing, |
| 1971 | StopTracking); |
| 1972 | } |
Ted Kremenek | 896cd9d | 2008-10-23 01:56:15 +0000 | [diff] [blame] | 1973 | } |
| 1974 | } |
| 1975 | } |
Ted Kremenek | 553cf18 | 2008-06-25 21:21:56 +0000 | [diff] [blame] | 1976 | } |
Ted Kremenek | 9ed18e6 | 2008-04-16 04:28:53 +0000 | [diff] [blame] | 1977 | else |
Ted Kremenek | 1f180c3 | 2008-06-23 22:21:20 +0000 | [diff] [blame] | 1978 | Summ = Summaries.getClassMethodSummary(ME->getClassName(), |
| 1979 | ME->getSelector()); |
Ted Kremenek | 9ed18e6 | 2008-04-16 04:28:53 +0000 | [diff] [blame] | 1980 | |
Ted Kremenek | b309525 | 2008-05-06 04:20:12 +0000 | [diff] [blame] | 1981 | EvalSummary(Dst, Eng, Builder, ME, ME->getReceiver(), Summ, |
| 1982 | ME->arg_begin(), ME->arg_end(), Pred); |
Ted Kremenek | 8534820 | 2008-04-15 23:44:31 +0000 | [diff] [blame] | 1983 | } |
Ted Kremenek | 5216ad7 | 2009-02-14 03:16:10 +0000 | [diff] [blame] | 1984 | |
| 1985 | namespace { |
| 1986 | class VISIBILITY_HIDDEN StopTrackingCallback : public SymbolVisitor { |
| 1987 | GRStateRef state; |
| 1988 | public: |
| 1989 | StopTrackingCallback(GRStateRef st) : state(st) {} |
| 1990 | GRStateRef getState() { return state; } |
| 1991 | |
| 1992 | bool VisitSymbol(SymbolRef sym) { |
| 1993 | state = state.remove<RefBindings>(sym); |
| 1994 | return true; |
| 1995 | } |
Ted Kremenek | b309525 | 2008-05-06 04:20:12 +0000 | [diff] [blame] | 1996 | |
Ted Kremenek | 5216ad7 | 2009-02-14 03:16:10 +0000 | [diff] [blame] | 1997 | const GRState* getState() const { return state.getState(); } |
| 1998 | }; |
| 1999 | } // end anonymous namespace |
| 2000 | |
| 2001 | |
Ted Kremenek | 41573eb | 2009-02-14 01:43:44 +0000 | [diff] [blame] | 2002 | void CFRefCount::EvalBind(GRStmtNodeBuilderRef& B, SVal location, SVal val) { |
Ted Kremenek | 41573eb | 2009-02-14 01:43:44 +0000 | [diff] [blame] | 2003 | // Are we storing to something that causes the value to "escape"? |
Ted Kremenek | 1392261 | 2008-04-16 20:40:59 +0000 | [diff] [blame] | 2004 | bool escapes = false; |
| 2005 | |
Ted Kremenek | a496d16 | 2008-10-18 03:49:51 +0000 | [diff] [blame] | 2006 | // A value escapes in three possible cases (this may change): |
| 2007 | // |
| 2008 | // (1) we are binding to something that is not a memory region. |
| 2009 | // (2) we are binding to a memregion that does not have stack storage |
| 2010 | // (3) we are binding to a memregion with stack storage that the store |
Ted Kremenek | 41573eb | 2009-02-14 01:43:44 +0000 | [diff] [blame] | 2011 | // does not understand. |
Ted Kremenek | 41573eb | 2009-02-14 01:43:44 +0000 | [diff] [blame] | 2012 | GRStateRef state = B.getState(); |
Ted Kremenek | a496d16 | 2008-10-18 03:49:51 +0000 | [diff] [blame] | 2013 | |
Ted Kremenek | 41573eb | 2009-02-14 01:43:44 +0000 | [diff] [blame] | 2014 | if (!isa<loc::MemRegionVal>(location)) |
Ted Kremenek | 1392261 | 2008-04-16 20:40:59 +0000 | [diff] [blame] | 2015 | escapes = true; |
Ted Kremenek | 9e24049 | 2008-10-04 05:50:14 +0000 | [diff] [blame] | 2016 | else { |
Ted Kremenek | 41573eb | 2009-02-14 01:43:44 +0000 | [diff] [blame] | 2017 | const MemRegion* R = cast<loc::MemRegionVal>(location).getRegion(); |
| 2018 | escapes = !B.getStateManager().hasStackStorage(R); |
Ted Kremenek | a496d16 | 2008-10-18 03:49:51 +0000 | [diff] [blame] | 2019 | |
| 2020 | if (!escapes) { |
| 2021 | // To test (3), generate a new state with the binding removed. If it is |
| 2022 | // the same state, then it escapes (since the store cannot represent |
| 2023 | // the binding). |
Ted Kremenek | 41573eb | 2009-02-14 01:43:44 +0000 | [diff] [blame] | 2024 | escapes = (state == (state.BindLoc(cast<Loc>(location), UnknownVal()))); |
Ted Kremenek | a496d16 | 2008-10-18 03:49:51 +0000 | [diff] [blame] | 2025 | } |
Ted Kremenek | 9e24049 | 2008-10-04 05:50:14 +0000 | [diff] [blame] | 2026 | } |
Ted Kremenek | 41573eb | 2009-02-14 01:43:44 +0000 | [diff] [blame] | 2027 | |
Ted Kremenek | 5216ad7 | 2009-02-14 03:16:10 +0000 | [diff] [blame] | 2028 | // If our store can represent the binding and we aren't storing to something |
| 2029 | // that doesn't have local storage then just return and have the simulation |
| 2030 | // state continue as is. |
| 2031 | if (!escapes) |
| 2032 | return; |
Ted Kremenek | a496d16 | 2008-10-18 03:49:51 +0000 | [diff] [blame] | 2033 | |
Ted Kremenek | 5216ad7 | 2009-02-14 03:16:10 +0000 | [diff] [blame] | 2034 | // Otherwise, find all symbols referenced by 'val' that we are tracking |
| 2035 | // and stop tracking them. |
| 2036 | B.MakeNode(state.scanReachableSymbols<StopTrackingCallback>(val).getState()); |
Ted Kremenek | db86371 | 2008-04-16 22:32:20 +0000 | [diff] [blame] | 2037 | } |
| 2038 | |
Ted Kremenek | f9790ae | 2008-10-24 20:32:50 +0000 | [diff] [blame] | 2039 | std::pair<GRStateRef,bool> |
| 2040 | CFRefCount::HandleSymbolDeath(GRStateManager& VMgr, |
| 2041 | const GRState* St, const Decl* CD, |
Ted Kremenek | 2dabd43 | 2008-12-05 02:27:51 +0000 | [diff] [blame] | 2042 | SymbolRef sid, |
Ted Kremenek | f9790ae | 2008-10-24 20:32:50 +0000 | [diff] [blame] | 2043 | RefVal V, bool& hasLeak) { |
Ted Kremenek | db86371 | 2008-04-16 22:32:20 +0000 | [diff] [blame] | 2044 | |
Ted Kremenek | 72cd17f | 2008-08-14 21:16:54 +0000 | [diff] [blame] | 2045 | GRStateRef state(St, VMgr); |
Sanjiv Gupta | 31fc07d | 2008-10-31 09:52:39 +0000 | [diff] [blame] | 2046 | assert ((!V.isReturnedOwned() || CD) && |
Ted Kremenek | 3ad2cc8 | 2008-10-22 23:56:21 +0000 | [diff] [blame] | 2047 | "CodeDecl must be available for reporting ReturnOwned errors."); |
Ted Kremenek | 896cd9d | 2008-10-23 01:56:15 +0000 | [diff] [blame] | 2048 | |
Ted Kremenek | 3ad2cc8 | 2008-10-22 23:56:21 +0000 | [diff] [blame] | 2049 | if (V.isReturnedOwned() && V.getCount() == 0) |
| 2050 | if (const ObjCMethodDecl* MD = dyn_cast<ObjCMethodDecl>(CD)) { |
Chris Lattner | 077bf5e | 2008-11-24 03:33:13 +0000 | [diff] [blame] | 2051 | std::string s = MD->getSelector().getAsString(); |
Ted Kremenek | 4c79e55 | 2008-11-05 16:54:44 +0000 | [diff] [blame] | 2052 | if (!followsReturnRule(s.c_str())) { |
Ted Kremenek | 3ad2cc8 | 2008-10-22 23:56:21 +0000 | [diff] [blame] | 2053 | hasLeak = true; |
Ted Kremenek | f9790ae | 2008-10-24 20:32:50 +0000 | [diff] [blame] | 2054 | state = state.set<RefBindings>(sid, V ^ RefVal::ErrorLeakReturned); |
| 2055 | return std::make_pair(state, true); |
Ted Kremenek | 3ad2cc8 | 2008-10-22 23:56:21 +0000 | [diff] [blame] | 2056 | } |
| 2057 | } |
Ted Kremenek | 896cd9d | 2008-10-23 01:56:15 +0000 | [diff] [blame] | 2058 | |
Ted Kremenek | 3ad2cc8 | 2008-10-22 23:56:21 +0000 | [diff] [blame] | 2059 | // All other cases. |
| 2060 | |
| 2061 | hasLeak = V.isOwned() || |
| 2062 | ((V.isNotOwned() || V.isReturnedOwned()) && V.getCount() > 0); |
Ted Kremenek | 72cd17f | 2008-08-14 21:16:54 +0000 | [diff] [blame] | 2063 | |
Ted Kremenek | db86371 | 2008-04-16 22:32:20 +0000 | [diff] [blame] | 2064 | if (!hasLeak) |
Ted Kremenek | f9790ae | 2008-10-24 20:32:50 +0000 | [diff] [blame] | 2065 | return std::make_pair(state.remove<RefBindings>(sid), false); |
Ted Kremenek | db86371 | 2008-04-16 22:32:20 +0000 | [diff] [blame] | 2066 | |
Ted Kremenek | f9790ae | 2008-10-24 20:32:50 +0000 | [diff] [blame] | 2067 | return std::make_pair(state.set<RefBindings>(sid, V ^ RefVal::ErrorLeak), |
| 2068 | false); |
Ted Kremenek | db86371 | 2008-04-16 22:32:20 +0000 | [diff] [blame] | 2069 | } |
| 2070 | |
Ted Kremenek | 652adc6 | 2008-04-24 23:57:27 +0000 | [diff] [blame] | 2071 | |
Ted Kremenek | e7bd9c2 | 2008-04-11 22:25:11 +0000 | [diff] [blame] | 2072 | |
Ted Kremenek | 652adc6 | 2008-04-24 23:57:27 +0000 | [diff] [blame] | 2073 | // Dead symbols. |
| 2074 | |
Ted Kremenek | cf70177 | 2009-02-05 06:50:21 +0000 | [diff] [blame] | 2075 | |
Ted Kremenek | 652adc6 | 2008-04-24 23:57:27 +0000 | [diff] [blame] | 2076 | |
Ted Kremenek | 4fd8897 | 2008-04-17 18:12:53 +0000 | [diff] [blame] | 2077 | // Return statements. |
| 2078 | |
Ted Kremenek | 4adc81e | 2008-08-13 04:27:00 +0000 | [diff] [blame] | 2079 | void CFRefCount::EvalReturn(ExplodedNodeSet<GRState>& Dst, |
Ted Kremenek | 4fd8897 | 2008-04-17 18:12:53 +0000 | [diff] [blame] | 2080 | GRExprEngine& Eng, |
Ted Kremenek | 4adc81e | 2008-08-13 04:27:00 +0000 | [diff] [blame] | 2081 | GRStmtNodeBuilder<GRState>& Builder, |
Ted Kremenek | 4fd8897 | 2008-04-17 18:12:53 +0000 | [diff] [blame] | 2082 | ReturnStmt* S, |
Ted Kremenek | 4adc81e | 2008-08-13 04:27:00 +0000 | [diff] [blame] | 2083 | ExplodedNode<GRState>* Pred) { |
Ted Kremenek | 4fd8897 | 2008-04-17 18:12:53 +0000 | [diff] [blame] | 2084 | |
| 2085 | Expr* RetE = S->getRetValue(); |
Ted Kremenek | 94c9698 | 2009-03-03 22:06:47 +0000 | [diff] [blame] | 2086 | if (!RetE) |
Ted Kremenek | 4fd8897 | 2008-04-17 18:12:53 +0000 | [diff] [blame] | 2087 | return; |
| 2088 | |
Ted Kremenek | 94c9698 | 2009-03-03 22:06:47 +0000 | [diff] [blame] | 2089 | GRStateRef state(Builder.GetState(Pred), Eng.getStateManager()); |
Ted Kremenek | 3f4d5ab | 2009-03-04 00:13:50 +0000 | [diff] [blame] | 2090 | SymbolRef Sym = state.GetSValAsScalarOrLoc(RetE).getAsLocSymbol(); |
Ted Kremenek | 94c9698 | 2009-03-03 22:06:47 +0000 | [diff] [blame] | 2091 | |
| 2092 | if (!Sym.isValid()) |
| 2093 | return; |
| 2094 | |
Ted Kremenek | 4fd8897 | 2008-04-17 18:12:53 +0000 | [diff] [blame] | 2095 | // Get the reference count binding (if any). |
Ted Kremenek | 72cd17f | 2008-08-14 21:16:54 +0000 | [diff] [blame] | 2096 | const RefVal* T = state.get<RefBindings>(Sym); |
Ted Kremenek | 4fd8897 | 2008-04-17 18:12:53 +0000 | [diff] [blame] | 2097 | |
| 2098 | if (!T) |
| 2099 | return; |
| 2100 | |
Ted Kremenek | 72cd17f | 2008-08-14 21:16:54 +0000 | [diff] [blame] | 2101 | // Change the reference count. |
Ted Kremenek | e8fdc83 | 2008-07-07 16:21:19 +0000 | [diff] [blame] | 2102 | RefVal X = *T; |
Ted Kremenek | 4fd8897 | 2008-04-17 18:12:53 +0000 | [diff] [blame] | 2103 | |
Ted Kremenek | 72cd17f | 2008-08-14 21:16:54 +0000 | [diff] [blame] | 2104 | switch (X.getKind()) { |
Ted Kremenek | 4fd8897 | 2008-04-17 18:12:53 +0000 | [diff] [blame] | 2105 | case RefVal::Owned: { |
| 2106 | unsigned cnt = X.getCount(); |
Ted Kremenek | 3eabf1c | 2008-05-22 17:31:13 +0000 | [diff] [blame] | 2107 | assert (cnt > 0); |
| 2108 | X = RefVal::makeReturnedOwned(cnt - 1); |
Ted Kremenek | 4fd8897 | 2008-04-17 18:12:53 +0000 | [diff] [blame] | 2109 | break; |
| 2110 | } |
| 2111 | |
| 2112 | case RefVal::NotOwned: { |
| 2113 | unsigned cnt = X.getCount(); |
| 2114 | X = cnt ? RefVal::makeReturnedOwned(cnt - 1) |
| 2115 | : RefVal::makeReturnedNotOwned(); |
| 2116 | break; |
| 2117 | } |
| 2118 | |
| 2119 | default: |
Ted Kremenek | 4fd8897 | 2008-04-17 18:12:53 +0000 | [diff] [blame] | 2120 | return; |
| 2121 | } |
| 2122 | |
| 2123 | // Update the binding. |
Ted Kremenek | b9d17f9 | 2008-08-17 03:20:02 +0000 | [diff] [blame] | 2124 | state = state.set<RefBindings>(Sym, X); |
Ted Kremenek | 72cd17f | 2008-08-14 21:16:54 +0000 | [diff] [blame] | 2125 | Builder.MakeNode(Dst, S, Pred, state); |
Ted Kremenek | 4fd8897 | 2008-04-17 18:12:53 +0000 | [diff] [blame] | 2126 | } |
| 2127 | |
Ted Kremenek | cb61292 | 2008-04-18 19:23:43 +0000 | [diff] [blame] | 2128 | // Assumptions. |
| 2129 | |
Ted Kremenek | 4adc81e | 2008-08-13 04:27:00 +0000 | [diff] [blame] | 2130 | const GRState* CFRefCount::EvalAssume(GRStateManager& VMgr, |
| 2131 | const GRState* St, |
Zhongxing Xu | 1c96b24 | 2008-10-17 05:57:07 +0000 | [diff] [blame] | 2132 | SVal Cond, bool Assumption, |
Ted Kremenek | 4323a57 | 2008-07-10 22:03:41 +0000 | [diff] [blame] | 2133 | bool& isFeasible) { |
Ted Kremenek | cb61292 | 2008-04-18 19:23:43 +0000 | [diff] [blame] | 2134 | |
| 2135 | // FIXME: We may add to the interface of EvalAssume the list of symbols |
| 2136 | // whose assumptions have changed. For now we just iterate through the |
| 2137 | // bindings and check if any of the tracked symbols are NULL. This isn't |
| 2138 | // too bad since the number of symbols we will track in practice are |
| 2139 | // probably small and EvalAssume is only called at branches and a few |
| 2140 | // other places. |
Ted Kremenek | 72cd17f | 2008-08-14 21:16:54 +0000 | [diff] [blame] | 2141 | RefBindings B = St->get<RefBindings>(); |
Ted Kremenek | cb61292 | 2008-04-18 19:23:43 +0000 | [diff] [blame] | 2142 | |
| 2143 | if (B.isEmpty()) |
| 2144 | return St; |
| 2145 | |
| 2146 | bool changed = false; |
Ted Kremenek | b9d17f9 | 2008-08-17 03:20:02 +0000 | [diff] [blame] | 2147 | |
| 2148 | GRStateRef state(St, VMgr); |
| 2149 | RefBindings::Factory& RefBFactory = state.get_context<RefBindings>(); |
Ted Kremenek | cb61292 | 2008-04-18 19:23:43 +0000 | [diff] [blame] | 2150 | |
| 2151 | for (RefBindings::iterator I=B.begin(), E=B.end(); I!=E; ++I) { |
Ted Kremenek | cb61292 | 2008-04-18 19:23:43 +0000 | [diff] [blame] | 2152 | // Check if the symbol is null (or equal to any constant). |
| 2153 | // If this is the case, stop tracking the symbol. |
Zhongxing Xu | 39cfed3 | 2008-08-29 14:52:36 +0000 | [diff] [blame] | 2154 | if (VMgr.getSymVal(St, I.getKey())) { |
Ted Kremenek | cb61292 | 2008-04-18 19:23:43 +0000 | [diff] [blame] | 2155 | changed = true; |
| 2156 | B = RefBFactory.Remove(B, I.getKey()); |
| 2157 | } |
| 2158 | } |
| 2159 | |
Ted Kremenek | b9d17f9 | 2008-08-17 03:20:02 +0000 | [diff] [blame] | 2160 | if (changed) |
| 2161 | state = state.set<RefBindings>(B); |
Ted Kremenek | cb61292 | 2008-04-18 19:23:43 +0000 | [diff] [blame] | 2162 | |
Ted Kremenek | 72cd17f | 2008-08-14 21:16:54 +0000 | [diff] [blame] | 2163 | return state; |
Ted Kremenek | cb61292 | 2008-04-18 19:23:43 +0000 | [diff] [blame] | 2164 | } |
Ted Kremenek | 6b3a0f7 | 2008-03-11 06:39:11 +0000 | [diff] [blame] | 2165 | |
Ted Kremenek | 4d3957d | 2009-02-24 19:15:11 +0000 | [diff] [blame] | 2166 | GRStateRef CFRefCount::Update(GRStateRef state, SymbolRef sym, |
| 2167 | RefVal V, ArgEffect E, |
| 2168 | RefVal::Kind& hasErr) { |
Ted Kremenek | 1c512f5 | 2009-02-18 18:54:33 +0000 | [diff] [blame] | 2169 | |
| 2170 | // In GC mode [... release] and [... retain] do nothing. |
| 2171 | switch (E) { |
| 2172 | default: break; |
| 2173 | case IncRefMsg: E = isGCEnabled() ? DoNothing : IncRef; break; |
| 2174 | case DecRefMsg: E = isGCEnabled() ? DoNothing : DecRef; break; |
Ted Kremenek | 2701900 | 2009-02-18 21:57:45 +0000 | [diff] [blame] | 2175 | case MakeCollectable: E = isGCEnabled() ? DecRef : DoNothing; break; |
Ted Kremenek | f9a8e2e | 2009-02-23 17:45:03 +0000 | [diff] [blame] | 2176 | case NewAutoreleasePool: E = isGCEnabled() ? DoNothing : |
| 2177 | NewAutoreleasePool; break; |
Ted Kremenek | 1c512f5 | 2009-02-18 18:54:33 +0000 | [diff] [blame] | 2178 | } |
Ted Kremenek | 6b3a0f7 | 2008-03-11 06:39:11 +0000 | [diff] [blame] | 2179 | |
Ted Kremenek | f95e9fc | 2009-03-17 19:42:23 +0000 | [diff] [blame] | 2180 | // Handle all use-after-releases. |
| 2181 | if (!isGCEnabled() && V.getKind() == RefVal::Released) { |
| 2182 | V = V ^ RefVal::ErrorUseAfterRelease; |
| 2183 | hasErr = V.getKind(); |
| 2184 | return state.set<RefBindings>(sym, V); |
| 2185 | } |
| 2186 | |
Ted Kremenek | 1ac08d6 | 2008-03-11 17:48:22 +0000 | [diff] [blame] | 2187 | switch (E) { |
| 2188 | default: |
| 2189 | assert (false && "Unhandled CFRef transition."); |
Ted Kremenek | f95e9fc | 2009-03-17 19:42:23 +0000 | [diff] [blame] | 2190 | |
| 2191 | case Dealloc: |
| 2192 | // Any use of -dealloc in GC is *bad*. |
| 2193 | if (isGCEnabled()) { |
| 2194 | V = V ^ RefVal::ErrorDeallocGC; |
| 2195 | hasErr = V.getKind(); |
| 2196 | break; |
| 2197 | } |
| 2198 | |
| 2199 | switch (V.getKind()) { |
| 2200 | default: |
| 2201 | assert(false && "Invalid case."); |
| 2202 | case RefVal::Owned: |
| 2203 | // The object immediately transitions to the released state. |
| 2204 | V = V ^ RefVal::Released; |
| 2205 | V.clearCounts(); |
| 2206 | return state.set<RefBindings>(sym, V); |
| 2207 | case RefVal::NotOwned: |
| 2208 | V = V ^ RefVal::ErrorDeallocNotOwned; |
| 2209 | hasErr = V.getKind(); |
| 2210 | break; |
| 2211 | } |
| 2212 | break; |
Ted Kremenek | 3eabf1c | 2008-05-22 17:31:13 +0000 | [diff] [blame] | 2213 | |
Ted Kremenek | 3579073 | 2009-02-25 23:11:49 +0000 | [diff] [blame] | 2214 | case NewAutoreleasePool: |
| 2215 | assert(!isGCEnabled()); |
| 2216 | return state.add<AutoreleaseStack>(sym); |
| 2217 | |
Ted Kremenek | 3eabf1c | 2008-05-22 17:31:13 +0000 | [diff] [blame] | 2218 | case MayEscape: |
| 2219 | if (V.getKind() == RefVal::Owned) { |
Ted Kremenek | 553cf18 | 2008-06-25 21:21:56 +0000 | [diff] [blame] | 2220 | V = V ^ RefVal::NotOwned; |
Ted Kremenek | 3eabf1c | 2008-05-22 17:31:13 +0000 | [diff] [blame] | 2221 | break; |
| 2222 | } |
Ted Kremenek | f95e9fc | 2009-03-17 19:42:23 +0000 | [diff] [blame] | 2223 | |
Ted Kremenek | 3eabf1c | 2008-05-22 17:31:13 +0000 | [diff] [blame] | 2224 | // Fall-through. |
Ted Kremenek | 6c4becb | 2009-02-25 02:54:57 +0000 | [diff] [blame] | 2225 | |
Ted Kremenek | 070a825 | 2008-07-09 18:11:16 +0000 | [diff] [blame] | 2226 | case DoNothingByRef: |
Ted Kremenek | 1ac08d6 | 2008-03-11 17:48:22 +0000 | [diff] [blame] | 2227 | case DoNothing: |
Ted Kremenek | 4d3957d | 2009-02-24 19:15:11 +0000 | [diff] [blame] | 2228 | return state; |
Ted Kremenek | e19f449 | 2008-06-30 16:57:41 +0000 | [diff] [blame] | 2229 | |
Ted Kremenek | abf4397 | 2009-01-28 21:44:40 +0000 | [diff] [blame] | 2230 | case Autorelease: |
Ted Kremenek | f95e9fc | 2009-03-17 19:42:23 +0000 | [diff] [blame] | 2231 | if (isGCEnabled()) |
| 2232 | return state; |
| 2233 | |
| 2234 | // Fall-through. |
| 2235 | |
Ted Kremenek | 1499389 | 2008-05-06 02:41:27 +0000 | [diff] [blame] | 2236 | case StopTracking: |
Ted Kremenek | 4d3957d | 2009-02-24 19:15:11 +0000 | [diff] [blame] | 2237 | return state.remove<RefBindings>(sym); |
Ted Kremenek | 9e476de | 2008-08-12 18:30:56 +0000 | [diff] [blame] | 2238 | |
Ted Kremenek | 1ac08d6 | 2008-03-11 17:48:22 +0000 | [diff] [blame] | 2239 | case IncRef: |
| 2240 | switch (V.getKind()) { |
| 2241 | default: |
| 2242 | assert(false); |
| 2243 | |
| 2244 | case RefVal::Owned: |
Ted Kremenek | 1ac08d6 | 2008-03-11 17:48:22 +0000 | [diff] [blame] | 2245 | case RefVal::NotOwned: |
Ted Kremenek | 553cf18 | 2008-06-25 21:21:56 +0000 | [diff] [blame] | 2246 | V = V + 1; |
Ted Kremenek | 9e476de | 2008-08-12 18:30:56 +0000 | [diff] [blame] | 2247 | break; |
Ted Kremenek | 1ac08d6 | 2008-03-11 17:48:22 +0000 | [diff] [blame] | 2248 | case RefVal::Released: |
Ted Kremenek | f95e9fc | 2009-03-17 19:42:23 +0000 | [diff] [blame] | 2249 | // Non-GC cases are handled above. |
| 2250 | assert(isGCEnabled()); |
| 2251 | V = (V ^ RefVal::Owned) + 1; |
Ted Kremenek | 1ac08d6 | 2008-03-11 17:48:22 +0000 | [diff] [blame] | 2252 | break; |
Ted Kremenek | 9e476de | 2008-08-12 18:30:56 +0000 | [diff] [blame] | 2253 | } |
Ted Kremenek | 940b1d8 | 2008-04-10 23:44:06 +0000 | [diff] [blame] | 2254 | break; |
| 2255 | |
Ted Kremenek | 553cf18 | 2008-06-25 21:21:56 +0000 | [diff] [blame] | 2256 | case SelfOwn: |
| 2257 | V = V ^ RefVal::NotOwned; |
Ted Kremenek | 1c512f5 | 2009-02-18 18:54:33 +0000 | [diff] [blame] | 2258 | // Fall-through. |
Ted Kremenek | 1ac08d6 | 2008-03-11 17:48:22 +0000 | [diff] [blame] | 2259 | case DecRef: |
| 2260 | switch (V.getKind()) { |
| 2261 | default: |
Ted Kremenek | f95e9fc | 2009-03-17 19:42:23 +0000 | [diff] [blame] | 2262 | // case 'RefVal::Released' handled above. |
Ted Kremenek | 1ac08d6 | 2008-03-11 17:48:22 +0000 | [diff] [blame] | 2263 | assert (false); |
Ted Kremenek | 9e476de | 2008-08-12 18:30:56 +0000 | [diff] [blame] | 2264 | |
Ted Kremenek | 553cf18 | 2008-06-25 21:21:56 +0000 | [diff] [blame] | 2265 | case RefVal::Owned: |
Ted Kremenek | bb8c5aa | 2009-02-18 22:57:22 +0000 | [diff] [blame] | 2266 | assert(V.getCount() > 0); |
| 2267 | if (V.getCount() == 1) V = V ^ RefVal::Released; |
| 2268 | V = V - 1; |
Ted Kremenek | 1ac08d6 | 2008-03-11 17:48:22 +0000 | [diff] [blame] | 2269 | break; |
Ted Kremenek | 1ac08d6 | 2008-03-11 17:48:22 +0000 | [diff] [blame] | 2270 | |
Ted Kremenek | 553cf18 | 2008-06-25 21:21:56 +0000 | [diff] [blame] | 2271 | case RefVal::NotOwned: |
| 2272 | if (V.getCount() > 0) |
| 2273 | V = V - 1; |
Ted Kremenek | 61b9f87 | 2008-04-10 23:09:18 +0000 | [diff] [blame] | 2274 | else { |
Ted Kremenek | 553cf18 | 2008-06-25 21:21:56 +0000 | [diff] [blame] | 2275 | V = V ^ RefVal::ErrorReleaseNotOwned; |
Ted Kremenek | 9ed18e6 | 2008-04-16 04:28:53 +0000 | [diff] [blame] | 2276 | hasErr = V.getKind(); |
Ted Kremenek | 9e476de | 2008-08-12 18:30:56 +0000 | [diff] [blame] | 2277 | } |
Ted Kremenek | 1ac08d6 | 2008-03-11 17:48:22 +0000 | [diff] [blame] | 2278 | break; |
Ted Kremenek | f95e9fc | 2009-03-17 19:42:23 +0000 | [diff] [blame] | 2279 | |
Ted Kremenek | 1ac08d6 | 2008-03-11 17:48:22 +0000 | [diff] [blame] | 2280 | case RefVal::Released: |
Ted Kremenek | f95e9fc | 2009-03-17 19:42:23 +0000 | [diff] [blame] | 2281 | // Non-GC cases are handled above. |
| 2282 | assert(isGCEnabled()); |
Ted Kremenek | 553cf18 | 2008-06-25 21:21:56 +0000 | [diff] [blame] | 2283 | V = V ^ RefVal::ErrorUseAfterRelease; |
Ted Kremenek | 9ed18e6 | 2008-04-16 04:28:53 +0000 | [diff] [blame] | 2284 | hasErr = V.getKind(); |
Ted Kremenek | f95e9fc | 2009-03-17 19:42:23 +0000 | [diff] [blame] | 2285 | break; |
Ted Kremenek | 9e476de | 2008-08-12 18:30:56 +0000 | [diff] [blame] | 2286 | } |
Ted Kremenek | 940b1d8 | 2008-04-10 23:44:06 +0000 | [diff] [blame] | 2287 | break; |
Ted Kremenek | 1ac08d6 | 2008-03-11 17:48:22 +0000 | [diff] [blame] | 2288 | } |
Ted Kremenek | 4d3957d | 2009-02-24 19:15:11 +0000 | [diff] [blame] | 2289 | return state.set<RefBindings>(sym, V); |
Ted Kremenek | 6b3a0f7 | 2008-03-11 06:39:11 +0000 | [diff] [blame] | 2290 | } |
| 2291 | |
Ted Kremenek | fa34b33 | 2008-04-09 01:10:13 +0000 | [diff] [blame] | 2292 | //===----------------------------------------------------------------------===// |
Ted Kremenek | 05cbe1a | 2008-04-09 23:49:11 +0000 | [diff] [blame] | 2293 | // Error reporting. |
Ted Kremenek | fa34b33 | 2008-04-09 01:10:13 +0000 | [diff] [blame] | 2294 | //===----------------------------------------------------------------------===// |
| 2295 | |
Ted Kremenek | 8dd5646 | 2008-04-18 03:39:05 +0000 | [diff] [blame] | 2296 | namespace { |
| 2297 | |
| 2298 | //===-------------===// |
| 2299 | // Bug Descriptions. // |
| 2300 | //===-------------===// |
| 2301 | |
Ted Kremenek | cf118d4 | 2009-02-04 23:49:09 +0000 | [diff] [blame] | 2302 | class VISIBILITY_HIDDEN CFRefBug : public BugType { |
Ted Kremenek | 8dd5646 | 2008-04-18 03:39:05 +0000 | [diff] [blame] | 2303 | protected: |
| 2304 | CFRefCount& TF; |
Ted Kremenek | cf118d4 | 2009-02-04 23:49:09 +0000 | [diff] [blame] | 2305 | |
| 2306 | CFRefBug(CFRefCount* tf, const char* name) |
| 2307 | : BugType(name, "Memory (Core Foundation/Objective-C)"), TF(*tf) {} |
Ted Kremenek | 8dd5646 | 2008-04-18 03:39:05 +0000 | [diff] [blame] | 2308 | public: |
Ted Kremenek | 072192b | 2008-04-30 23:47:44 +0000 | [diff] [blame] | 2309 | |
Ted Kremenek | bb77e9b | 2008-05-01 22:50:36 +0000 | [diff] [blame] | 2310 | CFRefCount& getTF() { return TF; } |
Ted Kremenek | 789deac | 2008-05-05 23:16:31 +0000 | [diff] [blame] | 2311 | const CFRefCount& getTF() const { return TF; } |
| 2312 | |
Ted Kremenek | cf118d4 | 2009-02-04 23:49:09 +0000 | [diff] [blame] | 2313 | // FIXME: Eventually remove. |
| 2314 | virtual const char* getDescription() const = 0; |
| 2315 | |
Ted Kremenek | c9fa2f7 | 2008-05-01 23:13:35 +0000 | [diff] [blame] | 2316 | virtual bool isLeak() const { return false; } |
Ted Kremenek | 8dd5646 | 2008-04-18 03:39:05 +0000 | [diff] [blame] | 2317 | }; |
| 2318 | |
| 2319 | class VISIBILITY_HIDDEN UseAfterRelease : public CFRefBug { |
| 2320 | public: |
Ted Kremenek | cf118d4 | 2009-02-04 23:49:09 +0000 | [diff] [blame] | 2321 | UseAfterRelease(CFRefCount* tf) |
| 2322 | : CFRefBug(tf, "use-after-release") {} |
Ted Kremenek | 8dd5646 | 2008-04-18 03:39:05 +0000 | [diff] [blame] | 2323 | |
Ted Kremenek | cf118d4 | 2009-02-04 23:49:09 +0000 | [diff] [blame] | 2324 | const char* getDescription() const { |
Ted Kremenek | e198116 | 2009-02-26 21:04:07 +0000 | [diff] [blame] | 2325 | return "Reference-counted object is used after it is released"; |
Ted Kremenek | cf70177 | 2009-02-05 06:50:21 +0000 | [diff] [blame] | 2326 | } |
Ted Kremenek | 8dd5646 | 2008-04-18 03:39:05 +0000 | [diff] [blame] | 2327 | }; |
| 2328 | |
| 2329 | class VISIBILITY_HIDDEN BadRelease : public CFRefBug { |
| 2330 | public: |
Ted Kremenek | cf118d4 | 2009-02-04 23:49:09 +0000 | [diff] [blame] | 2331 | BadRelease(CFRefCount* tf) : CFRefBug(tf, "bad release") {} |
| 2332 | |
| 2333 | const char* getDescription() const { |
Ted Kremenek | 8dd5646 | 2008-04-18 03:39:05 +0000 | [diff] [blame] | 2334 | return "Incorrect decrement of the reference count of a " |
Ted Kremenek | e198116 | 2009-02-26 21:04:07 +0000 | [diff] [blame] | 2335 | "Core Foundation object (" |
| 2336 | "the object is not owned at this point by the caller)"; |
Ted Kremenek | 8dd5646 | 2008-04-18 03:39:05 +0000 | [diff] [blame] | 2337 | } |
Ted Kremenek | 8dd5646 | 2008-04-18 03:39:05 +0000 | [diff] [blame] | 2338 | }; |
| 2339 | |
Ted Kremenek | f95e9fc | 2009-03-17 19:42:23 +0000 | [diff] [blame] | 2340 | class VISIBILITY_HIDDEN DeallocGC : public CFRefBug { |
| 2341 | public: |
| 2342 | DeallocGC(CFRefCount *tf) : CFRefBug(tf, |
| 2343 | "-dealloc called while using GC") {} |
| 2344 | |
| 2345 | const char *getDescription() const { |
| 2346 | return "-dealloc called while using GC"; |
| 2347 | } |
| 2348 | }; |
| 2349 | |
| 2350 | class VISIBILITY_HIDDEN DeallocNotOwned : public CFRefBug { |
| 2351 | public: |
| 2352 | DeallocNotOwned(CFRefCount *tf) : CFRefBug(tf, |
| 2353 | "-dealloc sent to non-exclusively owned object") {} |
| 2354 | |
| 2355 | const char *getDescription() const { |
| 2356 | return "-dealloc sent to object that may be referenced elsewhere"; |
| 2357 | } |
| 2358 | }; |
| 2359 | |
Ted Kremenek | 8dd5646 | 2008-04-18 03:39:05 +0000 | [diff] [blame] | 2360 | class VISIBILITY_HIDDEN Leak : public CFRefBug { |
Ted Kremenek | cf118d4 | 2009-02-04 23:49:09 +0000 | [diff] [blame] | 2361 | const bool isReturn; |
| 2362 | protected: |
| 2363 | Leak(CFRefCount* tf, const char* name, bool isRet) |
| 2364 | : CFRefBug(tf, name), isReturn(isRet) {} |
Ted Kremenek | 8dd5646 | 2008-04-18 03:39:05 +0000 | [diff] [blame] | 2365 | public: |
Ted Kremenek | 8dd5646 | 2008-04-18 03:39:05 +0000 | [diff] [blame] | 2366 | |
Ted Kremenek | d305721 | 2009-02-07 22:38:00 +0000 | [diff] [blame] | 2367 | const char* getDescription() const { return ""; } |
Ted Kremenek | 3148eb4 | 2009-01-24 00:55:43 +0000 | [diff] [blame] | 2368 | |
Ted Kremenek | e45e57f | 2009-02-05 00:38:00 +0000 | [diff] [blame] | 2369 | bool isLeak() const { return true; } |
Ted Kremenek | 8dd5646 | 2008-04-18 03:39:05 +0000 | [diff] [blame] | 2370 | }; |
Ted Kremenek | cf118d4 | 2009-02-04 23:49:09 +0000 | [diff] [blame] | 2371 | |
| 2372 | class VISIBILITY_HIDDEN LeakAtReturn : public Leak { |
| 2373 | public: |
| 2374 | LeakAtReturn(CFRefCount* tf, const char* name) |
| 2375 | : Leak(tf, name, true) {} |
| 2376 | }; |
| 2377 | |
| 2378 | class VISIBILITY_HIDDEN LeakWithinFunction : public Leak { |
| 2379 | public: |
| 2380 | LeakWithinFunction(CFRefCount* tf, const char* name) |
| 2381 | : Leak(tf, name, false) {} |
| 2382 | }; |
Ted Kremenek | 8dd5646 | 2008-04-18 03:39:05 +0000 | [diff] [blame] | 2383 | |
| 2384 | //===---------===// |
| 2385 | // Bug Reports. // |
| 2386 | //===---------===// |
| 2387 | |
| 2388 | class VISIBILITY_HIDDEN CFRefReport : public RangedBugReport { |
Ted Kremenek | 66d9706 | 2009-02-07 22:04:05 +0000 | [diff] [blame] | 2389 | protected: |
Ted Kremenek | 2dabd43 | 2008-12-05 02:27:51 +0000 | [diff] [blame] | 2390 | SymbolRef Sym; |
Ted Kremenek | fe9e543 | 2009-02-18 03:48:14 +0000 | [diff] [blame] | 2391 | const CFRefCount &TF; |
Ted Kremenek | 8dd5646 | 2008-04-18 03:39:05 +0000 | [diff] [blame] | 2392 | public: |
Ted Kremenek | fe9e543 | 2009-02-18 03:48:14 +0000 | [diff] [blame] | 2393 | CFRefReport(CFRefBug& D, const CFRefCount &tf, |
| 2394 | ExplodedNode<GRState> *n, SymbolRef sym) |
| 2395 | : RangedBugReport(D, D.getDescription(), n), Sym(sym), TF(tf) {} |
Ted Kremenek | 8dd5646 | 2008-04-18 03:39:05 +0000 | [diff] [blame] | 2396 | |
| 2397 | virtual ~CFRefReport() {} |
| 2398 | |
Ted Kremenek | bb77e9b | 2008-05-01 22:50:36 +0000 | [diff] [blame] | 2399 | CFRefBug& getBugType() { |
| 2400 | return (CFRefBug&) RangedBugReport::getBugType(); |
| 2401 | } |
| 2402 | const CFRefBug& getBugType() const { |
| 2403 | return (const CFRefBug&) RangedBugReport::getBugType(); |
| 2404 | } |
| 2405 | |
| 2406 | virtual void getRanges(BugReporter& BR, const SourceRange*& beg, |
| 2407 | const SourceRange*& end) { |
| 2408 | |
Ted Kremenek | e92c1b2 | 2008-05-02 20:53:50 +0000 | [diff] [blame] | 2409 | if (!getBugType().isLeak()) |
Ted Kremenek | bb77e9b | 2008-05-01 22:50:36 +0000 | [diff] [blame] | 2410 | RangedBugReport::getRanges(BR, beg, end); |
Ted Kremenek | 9e476de | 2008-08-12 18:30:56 +0000 | [diff] [blame] | 2411 | else |
| 2412 | beg = end = 0; |
Ted Kremenek | bb77e9b | 2008-05-01 22:50:36 +0000 | [diff] [blame] | 2413 | } |
| 2414 | |
Ted Kremenek | 2dabd43 | 2008-12-05 02:27:51 +0000 | [diff] [blame] | 2415 | SymbolRef getSymbol() const { return Sym; } |
Ted Kremenek | 6ed9afc | 2008-05-16 18:33:44 +0000 | [diff] [blame] | 2416 | |
Ted Kremenek | 3148eb4 | 2009-01-24 00:55:43 +0000 | [diff] [blame] | 2417 | PathDiagnosticPiece* getEndPath(BugReporter& BR, |
| 2418 | const ExplodedNode<GRState>* N); |
Ted Kremenek | c9fa2f7 | 2008-05-01 23:13:35 +0000 | [diff] [blame] | 2419 | |
Ted Kremenek | 3148eb4 | 2009-01-24 00:55:43 +0000 | [diff] [blame] | 2420 | std::pair<const char**,const char**> getExtraDescriptiveText(); |
Ted Kremenek | 8dd5646 | 2008-04-18 03:39:05 +0000 | [diff] [blame] | 2421 | |
Ted Kremenek | 3148eb4 | 2009-01-24 00:55:43 +0000 | [diff] [blame] | 2422 | PathDiagnosticPiece* VisitNode(const ExplodedNode<GRState>* N, |
| 2423 | const ExplodedNode<GRState>* PrevN, |
| 2424 | const ExplodedGraph<GRState>& G, |
Ted Kremenek | fe9e543 | 2009-02-18 03:48:14 +0000 | [diff] [blame] | 2425 | BugReporter& BR, |
| 2426 | NodeResolver& NR); |
Ted Kremenek | 8dd5646 | 2008-04-18 03:39:05 +0000 | [diff] [blame] | 2427 | }; |
| 2428 | |
Ted Kremenek | cf118d4 | 2009-02-04 23:49:09 +0000 | [diff] [blame] | 2429 | class VISIBILITY_HIDDEN CFRefLeakReport : public CFRefReport { |
Ted Kremenek | e469fa0 | 2009-02-07 22:19:59 +0000 | [diff] [blame] | 2430 | SourceLocation AllocSite; |
| 2431 | const MemRegion* AllocBinding; |
Ted Kremenek | cf118d4 | 2009-02-04 23:49:09 +0000 | [diff] [blame] | 2432 | public: |
Ted Kremenek | fe9e543 | 2009-02-18 03:48:14 +0000 | [diff] [blame] | 2433 | CFRefLeakReport(CFRefBug& D, const CFRefCount &tf, |
| 2434 | ExplodedNode<GRState> *n, SymbolRef sym, |
Ted Kremenek | d305721 | 2009-02-07 22:38:00 +0000 | [diff] [blame] | 2435 | GRExprEngine& Eng); |
Ted Kremenek | 66d9706 | 2009-02-07 22:04:05 +0000 | [diff] [blame] | 2436 | |
| 2437 | PathDiagnosticPiece* getEndPath(BugReporter& BR, |
| 2438 | const ExplodedNode<GRState>* N); |
| 2439 | |
Ted Kremenek | e469fa0 | 2009-02-07 22:19:59 +0000 | [diff] [blame] | 2440 | SourceLocation getLocation() const { return AllocSite; } |
Ted Kremenek | cf118d4 | 2009-02-04 23:49:09 +0000 | [diff] [blame] | 2441 | }; |
Ted Kremenek | 8dd5646 | 2008-04-18 03:39:05 +0000 | [diff] [blame] | 2442 | } // end anonymous namespace |
| 2443 | |
Ted Kremenek | cf118d4 | 2009-02-04 23:49:09 +0000 | [diff] [blame] | 2444 | void CFRefCount::RegisterChecks(BugReporter& BR) { |
Ted Kremenek | cf70177 | 2009-02-05 06:50:21 +0000 | [diff] [blame] | 2445 | useAfterRelease = new UseAfterRelease(this); |
| 2446 | BR.Register(useAfterRelease); |
| 2447 | |
| 2448 | releaseNotOwned = new BadRelease(this); |
| 2449 | BR.Register(releaseNotOwned); |
Ted Kremenek | cf118d4 | 2009-02-04 23:49:09 +0000 | [diff] [blame] | 2450 | |
Ted Kremenek | f95e9fc | 2009-03-17 19:42:23 +0000 | [diff] [blame] | 2451 | deallocGC = new DeallocGC(this); |
| 2452 | BR.Register(deallocGC); |
| 2453 | |
| 2454 | deallocNotOwned = new DeallocNotOwned(this); |
| 2455 | BR.Register(deallocNotOwned); |
| 2456 | |
Ted Kremenek | cf118d4 | 2009-02-04 23:49:09 +0000 | [diff] [blame] | 2457 | // First register "return" leaks. |
| 2458 | const char* name = 0; |
| 2459 | |
| 2460 | if (isGCEnabled()) |
Ted Kremenek | d3ad531 | 2009-03-11 23:43:16 +0000 | [diff] [blame] | 2461 | name = "leak of returned object (GC)"; |
Ted Kremenek | cf118d4 | 2009-02-04 23:49:09 +0000 | [diff] [blame] | 2462 | else if (getLangOptions().getGCMode() == LangOptions::HybridGC) |
| 2463 | name = "[naming convention] leak of returned object (hybrid MM, " |
| 2464 | "non-GC)"; |
| 2465 | else { |
| 2466 | assert(getLangOptions().getGCMode() == LangOptions::NonGC); |
Ted Kremenek | d3ad531 | 2009-03-11 23:43:16 +0000 | [diff] [blame] | 2467 | name = "leak of returned object"; |
Ted Kremenek | cf118d4 | 2009-02-04 23:49:09 +0000 | [diff] [blame] | 2468 | } |
| 2469 | |
Ted Kremenek | cf70177 | 2009-02-05 06:50:21 +0000 | [diff] [blame] | 2470 | leakAtReturn = new LeakAtReturn(this, name); |
| 2471 | BR.Register(leakAtReturn); |
Ted Kremenek | 8dd5646 | 2008-04-18 03:39:05 +0000 | [diff] [blame] | 2472 | |
Ted Kremenek | cf118d4 | 2009-02-04 23:49:09 +0000 | [diff] [blame] | 2473 | // Second, register leaks within a function/method. |
| 2474 | if (isGCEnabled()) |
| 2475 | name = "leak (GC)"; |
| 2476 | else if (getLangOptions().getGCMode() == LangOptions::HybridGC) |
| 2477 | name = "leak (hybrid MM, non-GC)"; |
| 2478 | else { |
| 2479 | assert(getLangOptions().getGCMode() == LangOptions::NonGC); |
| 2480 | name = "leak"; |
| 2481 | } |
| 2482 | |
Ted Kremenek | cf70177 | 2009-02-05 06:50:21 +0000 | [diff] [blame] | 2483 | leakWithinFunction = new LeakWithinFunction(this, name); |
| 2484 | BR.Register(leakWithinFunction); |
| 2485 | |
| 2486 | // Save the reference to the BugReporter. |
| 2487 | this->BR = &BR; |
Ted Kremenek | cf118d4 | 2009-02-04 23:49:09 +0000 | [diff] [blame] | 2488 | } |
Ted Kremenek | 072192b | 2008-04-30 23:47:44 +0000 | [diff] [blame] | 2489 | |
| 2490 | static const char* Msgs[] = { |
Ted Kremenek | e198116 | 2009-02-26 21:04:07 +0000 | [diff] [blame] | 2491 | // GC only |
| 2492 | "Code is compiled to only use garbage collection", |
| 2493 | // No GC. |
Ted Kremenek | 452c31e | 2009-03-05 00:12:45 +0000 | [diff] [blame] | 2494 | "Code is compiled to use reference counts", |
Ted Kremenek | e198116 | 2009-02-26 21:04:07 +0000 | [diff] [blame] | 2495 | // Hybrid, with GC. |
| 2496 | "Code is compiled to use either garbage collection (GC) or reference counts" |
| 2497 | " (non-GC). The bug occurs with GC enabled", |
| 2498 | // Hybrid, without GC |
| 2499 | "Code is compiled to use either garbage collection (GC) or reference counts" |
| 2500 | " (non-GC). The bug occurs in non-GC mode" |
Ted Kremenek | 072192b | 2008-04-30 23:47:44 +0000 | [diff] [blame] | 2501 | }; |
| 2502 | |
| 2503 | std::pair<const char**,const char**> CFRefReport::getExtraDescriptiveText() { |
| 2504 | CFRefCount& TF = static_cast<CFRefBug&>(getBugType()).getTF(); |
| 2505 | |
| 2506 | switch (TF.getLangOptions().getGCMode()) { |
| 2507 | default: |
| 2508 | assert(false); |
Ted Kremenek | 31593ac | 2008-05-01 04:02:04 +0000 | [diff] [blame] | 2509 | |
| 2510 | case LangOptions::GCOnly: |
| 2511 | assert (TF.isGCEnabled()); |
Ted Kremenek | 9e476de | 2008-08-12 18:30:56 +0000 | [diff] [blame] | 2512 | return std::make_pair(&Msgs[0], &Msgs[0]+1); |
| 2513 | |
Ted Kremenek | 072192b | 2008-04-30 23:47:44 +0000 | [diff] [blame] | 2514 | case LangOptions::NonGC: |
| 2515 | assert (!TF.isGCEnabled()); |
Ted Kremenek | 072192b | 2008-04-30 23:47:44 +0000 | [diff] [blame] | 2516 | return std::make_pair(&Msgs[1], &Msgs[1]+1); |
| 2517 | |
| 2518 | case LangOptions::HybridGC: |
| 2519 | if (TF.isGCEnabled()) |
| 2520 | return std::make_pair(&Msgs[2], &Msgs[2]+1); |
| 2521 | else |
| 2522 | return std::make_pair(&Msgs[3], &Msgs[3]+1); |
| 2523 | } |
| 2524 | } |
| 2525 | |
Ted Kremenek | 2701900 | 2009-02-18 21:57:45 +0000 | [diff] [blame] | 2526 | static inline bool contains(const llvm::SmallVectorImpl<ArgEffect>& V, |
| 2527 | ArgEffect X) { |
| 2528 | for (llvm::SmallVectorImpl<ArgEffect>::const_iterator I=V.begin(), E=V.end(); |
| 2529 | I!=E; ++I) |
| 2530 | if (*I == X) return true; |
| 2531 | |
| 2532 | return false; |
| 2533 | } |
| 2534 | |
Ted Kremenek | 3148eb4 | 2009-01-24 00:55:43 +0000 | [diff] [blame] | 2535 | PathDiagnosticPiece* CFRefReport::VisitNode(const ExplodedNode<GRState>* N, |
| 2536 | const ExplodedNode<GRState>* PrevN, |
| 2537 | const ExplodedGraph<GRState>& G, |
Ted Kremenek | fe9e543 | 2009-02-18 03:48:14 +0000 | [diff] [blame] | 2538 | BugReporter& BR, |
| 2539 | NodeResolver& NR) { |
Ted Kremenek | 8dd5646 | 2008-04-18 03:39:05 +0000 | [diff] [blame] | 2540 | |
Ted Kremenek | 611a15a | 2009-01-28 05:29:13 +0000 | [diff] [blame] | 2541 | // Check if the type state has changed. |
| 2542 | GRStateManager &StMgr = cast<GRBugReporter>(BR).getStateManager(); |
| 2543 | GRStateRef PrevSt(PrevN->getState(), StMgr); |
| 2544 | GRStateRef CurrSt(N->getState(), StMgr); |
Ted Kremenek | 2098280 | 2009-01-28 05:06:46 +0000 | [diff] [blame] | 2545 | |
Ted Kremenek | 611a15a | 2009-01-28 05:29:13 +0000 | [diff] [blame] | 2546 | const RefVal* CurrT = CurrSt.get<RefBindings>(Sym); |
| 2547 | if (!CurrT) return NULL; |
| 2548 | |
| 2549 | const RefVal& CurrV = *CurrT; |
| 2550 | const RefVal* PrevT = PrevSt.get<RefBindings>(Sym); |
Ted Kremenek | ce48e00 | 2008-05-05 17:53:17 +0000 | [diff] [blame] | 2551 | |
Ted Kremenek | 2701900 | 2009-02-18 21:57:45 +0000 | [diff] [blame] | 2552 | // Create a string buffer to constain all the useful things we want |
| 2553 | // to tell the user. |
| 2554 | std::string sbuf; |
| 2555 | llvm::raw_string_ostream os(sbuf); |
| 2556 | |
Ted Kremenek | fe9e543 | 2009-02-18 03:48:14 +0000 | [diff] [blame] | 2557 | // This is the allocation site since the previous node had no bindings |
| 2558 | // for this symbol. |
Ted Kremenek | 2cf943a | 2008-04-18 04:55:01 +0000 | [diff] [blame] | 2559 | if (!PrevT) { |
Ted Kremenek | ce48e00 | 2008-05-05 17:53:17 +0000 | [diff] [blame] | 2560 | Stmt* S = cast<PostStmt>(N->getLocation()).getStmt(); |
| 2561 | |
Ted Kremenek | 5c1cd52 | 2009-01-28 05:15:02 +0000 | [diff] [blame] | 2562 | if (CallExpr *CE = dyn_cast<CallExpr>(S)) { |
| 2563 | // Get the name of the callee (if it is available). |
Ted Kremenek | 3f4d5ab | 2009-03-04 00:13:50 +0000 | [diff] [blame] | 2564 | SVal X = CurrSt.GetSValAsScalarOrLoc(CE->getCallee()); |
Ted Kremenek | 5c1cd52 | 2009-01-28 05:15:02 +0000 | [diff] [blame] | 2565 | if (loc::FuncVal* FV = dyn_cast<loc::FuncVal>(&X)) |
| 2566 | os << "Call to function '" << FV->getDecl()->getNameAsString() <<'\''; |
| 2567 | else |
Ted Kremenek | a102c0c | 2009-01-28 06:01:42 +0000 | [diff] [blame] | 2568 | os << "function call"; |
Ted Kremenek | 5c1cd52 | 2009-01-28 05:15:02 +0000 | [diff] [blame] | 2569 | } |
| 2570 | else { |
| 2571 | assert (isa<ObjCMessageExpr>(S)); |
Ted Kremenek | a102c0c | 2009-01-28 06:01:42 +0000 | [diff] [blame] | 2572 | os << "Method"; |
Ted Kremenek | ce48e00 | 2008-05-05 17:53:17 +0000 | [diff] [blame] | 2573 | } |
Ted Kremenek | 5c1cd52 | 2009-01-28 05:15:02 +0000 | [diff] [blame] | 2574 | |
Ted Kremenek | 961b61d | 2009-01-28 06:06:36 +0000 | [diff] [blame] | 2575 | if (CurrV.getObjKind() == RetEffect::CF) { |
| 2576 | os << " returns a Core Foundation object with a "; |
| 2577 | } |
| 2578 | else { |
| 2579 | assert (CurrV.getObjKind() == RetEffect::ObjC); |
| 2580 | os << " returns an Objective-C object with a "; |
| 2581 | } |
Ted Kremenek | a102c0c | 2009-01-28 06:01:42 +0000 | [diff] [blame] | 2582 | |
Ted Kremenek | 23b8eaa | 2009-01-28 06:25:48 +0000 | [diff] [blame] | 2583 | if (CurrV.isOwned()) { |
| 2584 | os << "+1 retain count (owning reference)."; |
| 2585 | |
| 2586 | if (static_cast<CFRefBug&>(getBugType()).getTF().isGCEnabled()) { |
| 2587 | assert(CurrV.getObjKind() == RetEffect::CF); |
| 2588 | os << " " |
| 2589 | "Core Foundation objects are not automatically garbage collected."; |
| 2590 | } |
| 2591 | } |
Ted Kremenek | 2cf943a | 2008-04-18 04:55:01 +0000 | [diff] [blame] | 2592 | else { |
| 2593 | assert (CurrV.isNotOwned()); |
Ted Kremenek | 5c1cd52 | 2009-01-28 05:15:02 +0000 | [diff] [blame] | 2594 | os << "+0 retain count (non-owning reference)."; |
Ted Kremenek | 2cf943a | 2008-04-18 04:55:01 +0000 | [diff] [blame] | 2595 | } |
Ted Kremenek | ce48e00 | 2008-05-05 17:53:17 +0000 | [diff] [blame] | 2596 | |
Ted Kremenek | 2cf943a | 2008-04-18 04:55:01 +0000 | [diff] [blame] | 2597 | FullSourceLoc Pos(S->getLocStart(), BR.getContext().getSourceManager()); |
Ted Kremenek | 1fbfd5b | 2009-03-06 23:58:11 +0000 | [diff] [blame] | 2598 | PathDiagnosticPiece* P = new PathDiagnosticEventPiece(Pos, os.str()); |
Ted Kremenek | 2cf943a | 2008-04-18 04:55:01 +0000 | [diff] [blame] | 2599 | |
| 2600 | if (Expr* Exp = dyn_cast<Expr>(S)) |
| 2601 | P->addRange(Exp->getSourceRange()); |
| 2602 | |
| 2603 | return P; |
| 2604 | } |
Ted Kremenek | 2cf943a | 2008-04-18 04:55:01 +0000 | [diff] [blame] | 2605 | |
Ted Kremenek | 2701900 | 2009-02-18 21:57:45 +0000 | [diff] [blame] | 2606 | // Gather up the effects that were performed on the object at this |
| 2607 | // program point |
| 2608 | llvm::SmallVector<ArgEffect, 2> AEffects; |
| 2609 | |
Ted Kremenek | fe9e543 | 2009-02-18 03:48:14 +0000 | [diff] [blame] | 2610 | if (const RetainSummary *Summ = TF.getSummaryOfNode(NR.getOriginalNode(N))) { |
| 2611 | // We only have summaries attached to nodes after evaluating CallExpr and |
| 2612 | // ObjCMessageExprs. |
| 2613 | Stmt* S = cast<PostStmt>(N->getLocation()).getStmt(); |
| 2614 | |
Ted Kremenek | fe9e543 | 2009-02-18 03:48:14 +0000 | [diff] [blame] | 2615 | if (CallExpr *CE = dyn_cast<CallExpr>(S)) { |
| 2616 | // Iterate through the parameter expressions and see if the symbol |
| 2617 | // was ever passed as an argument. |
| 2618 | unsigned i = 0; |
| 2619 | |
| 2620 | for (CallExpr::arg_iterator AI=CE->arg_begin(), AE=CE->arg_end(); |
| 2621 | AI!=AE; ++AI, ++i) { |
Ted Kremenek | 2701900 | 2009-02-18 21:57:45 +0000 | [diff] [blame] | 2622 | |
Ted Kremenek | 94c9698 | 2009-03-03 22:06:47 +0000 | [diff] [blame] | 2623 | // Retrieve the value of the argument. Is it the symbol |
| 2624 | // we are interested in? |
Ted Kremenek | 3f4d5ab | 2009-03-04 00:13:50 +0000 | [diff] [blame] | 2625 | if (CurrSt.GetSValAsScalarOrLoc(*AI).getAsLocSymbol() != Sym) |
Ted Kremenek | fe9e543 | 2009-02-18 03:48:14 +0000 | [diff] [blame] | 2626 | continue; |
Ted Kremenek | 94c9698 | 2009-03-03 22:06:47 +0000 | [diff] [blame] | 2627 | |
Ted Kremenek | fe9e543 | 2009-02-18 03:48:14 +0000 | [diff] [blame] | 2628 | // We have an argument. Get the effect! |
| 2629 | AEffects.push_back(Summ->getArg(i)); |
Ted Kremenek | 79c140b | 2008-04-18 05:32:44 +0000 | [diff] [blame] | 2630 | } |
Ted Kremenek | fe9e543 | 2009-02-18 03:48:14 +0000 | [diff] [blame] | 2631 | } |
| 2632 | else if (ObjCMessageExpr *ME = dyn_cast<ObjCMessageExpr>(S)) { |
Ted Kremenek | 94c9698 | 2009-03-03 22:06:47 +0000 | [diff] [blame] | 2633 | if (Expr *receiver = ME->getReceiver()) |
Ted Kremenek | 3f4d5ab | 2009-03-04 00:13:50 +0000 | [diff] [blame] | 2634 | if (CurrSt.GetSValAsScalarOrLoc(receiver).getAsLocSymbol() == Sym) { |
Ted Kremenek | 2701900 | 2009-02-18 21:57:45 +0000 | [diff] [blame] | 2635 | // The symbol we are tracking is the receiver. |
| 2636 | AEffects.push_back(Summ->getReceiverEffect()); |
| 2637 | } |
Ted Kremenek | fe9e543 | 2009-02-18 03:48:14 +0000 | [diff] [blame] | 2638 | } |
Ted Kremenek | 2cf943a | 2008-04-18 04:55:01 +0000 | [diff] [blame] | 2639 | } |
Ted Kremenek | fe9e543 | 2009-02-18 03:48:14 +0000 | [diff] [blame] | 2640 | |
Ted Kremenek | 2701900 | 2009-02-18 21:57:45 +0000 | [diff] [blame] | 2641 | do { |
| 2642 | // Get the previous type state. |
| 2643 | RefVal PrevV = *PrevT; |
Ted Kremenek | f95e9fc | 2009-03-17 19:42:23 +0000 | [diff] [blame] | 2644 | |
| 2645 | // Specially handle -dealloc. |
| 2646 | if (!TF.isGCEnabled() && contains(AEffects, Dealloc)) { |
| 2647 | // Determine if the object's reference count was pushed to zero. |
| 2648 | assert(!(PrevV == CurrV) && "The typestate *must* have changed."); |
| 2649 | // We may not have transitioned to 'release' if we hit an error. |
| 2650 | // This case is handled elsewhere. |
| 2651 | if (CurrV.getKind() == RefVal::Released) { |
| 2652 | assert(CurrV.getCount() == 0); |
| 2653 | os << "Object released by directly sending the '-dealloc' message"; |
| 2654 | break; |
| 2655 | } |
| 2656 | } |
Ted Kremenek | 2701900 | 2009-02-18 21:57:45 +0000 | [diff] [blame] | 2657 | |
| 2658 | // Specially handle CFMakeCollectable and friends. |
| 2659 | if (contains(AEffects, MakeCollectable)) { |
| 2660 | // Get the name of the function. |
| 2661 | Stmt* S = cast<PostStmt>(N->getLocation()).getStmt(); |
| 2662 | loc::FuncVal FV = |
Ted Kremenek | 3f4d5ab | 2009-03-04 00:13:50 +0000 | [diff] [blame] | 2663 | cast<loc::FuncVal>(CurrSt.GetSValAsScalarOrLoc(cast<CallExpr>(S)->getCallee())); |
Ted Kremenek | 2701900 | 2009-02-18 21:57:45 +0000 | [diff] [blame] | 2664 | const std::string& FName = FV.getDecl()->getNameAsString(); |
| 2665 | |
| 2666 | if (TF.isGCEnabled()) { |
| 2667 | // Determine if the object's reference count was pushed to zero. |
| 2668 | assert(!(PrevV == CurrV) && "The typestate *must* have changed."); |
| 2669 | |
| 2670 | os << "In GC mode a call to '" << FName |
| 2671 | << "' decrements an object's retain count and registers the " |
| 2672 | "object with the garbage collector. "; |
| 2673 | |
Ted Kremenek | bb8c5aa | 2009-02-18 22:57:22 +0000 | [diff] [blame] | 2674 | if (CurrV.getKind() == RefVal::Released) { |
| 2675 | assert(CurrV.getCount() == 0); |
| 2676 | os << "Since it now has a 0 retain count the object can be " |
Ted Kremenek | 2701900 | 2009-02-18 21:57:45 +0000 | [diff] [blame] | 2677 | "automatically collected by the garbage collector."; |
Ted Kremenek | bb8c5aa | 2009-02-18 22:57:22 +0000 | [diff] [blame] | 2678 | } |
Ted Kremenek | 2701900 | 2009-02-18 21:57:45 +0000 | [diff] [blame] | 2679 | else |
| 2680 | os << "An object must have a 0 retain count to be garbage collected. " |
| 2681 | "After this call its retain count is +" << CurrV.getCount() |
| 2682 | << '.'; |
| 2683 | } |
| 2684 | else |
| 2685 | os << "When GC is not enabled a call to '" << FName |
| 2686 | << "' has no effect on its argument."; |
| 2687 | |
| 2688 | // Nothing more to say. |
| 2689 | break; |
| 2690 | } |
| 2691 | |
| 2692 | // Determine if the typestate has changed. |
| 2693 | if (!(PrevV == CurrV)) |
| 2694 | switch (CurrV.getKind()) { |
Ted Kremenek | fe9e543 | 2009-02-18 03:48:14 +0000 | [diff] [blame] | 2695 | case RefVal::Owned: |
| 2696 | case RefVal::NotOwned: |
| 2697 | |
| 2698 | if (PrevV.getCount() == CurrV.getCount()) |
| 2699 | return 0; |
| 2700 | |
| 2701 | if (PrevV.getCount() > CurrV.getCount()) |
| 2702 | os << "Reference count decremented."; |
| 2703 | else |
| 2704 | os << "Reference count incremented."; |
Ted Kremenek | bb8c5aa | 2009-02-18 22:57:22 +0000 | [diff] [blame] | 2705 | |
Ted Kremenek | e198116 | 2009-02-26 21:04:07 +0000 | [diff] [blame] | 2706 | if (unsigned Count = CurrV.getCount()) |
| 2707 | os << " The object now has a +" << Count << " retain count."; |
Ted Kremenek | bb8c5aa | 2009-02-18 22:57:22 +0000 | [diff] [blame] | 2708 | |
| 2709 | if (PrevV.getKind() == RefVal::Released) { |
| 2710 | assert(TF.isGCEnabled() && CurrV.getCount() > 0); |
| 2711 | os << " The object is not eligible for garbage collection until the " |
| 2712 | "retain count reaches 0 again."; |
| 2713 | } |
| 2714 | |
Ted Kremenek | fe9e543 | 2009-02-18 03:48:14 +0000 | [diff] [blame] | 2715 | break; |
| 2716 | |
| 2717 | case RefVal::Released: |
| 2718 | os << "Object released."; |
| 2719 | break; |
| 2720 | |
| 2721 | case RefVal::ReturnedOwned: |
| 2722 | os << "Object returned to caller as an owning reference (single retain " |
| 2723 | "count transferred to caller)."; |
| 2724 | break; |
| 2725 | |
| 2726 | case RefVal::ReturnedNotOwned: |
| 2727 | os << "Object returned to caller with a +0 (non-owning) retain count."; |
| 2728 | break; |
| 2729 | |
| 2730 | default: |
| 2731 | return NULL; |
Ted Kremenek | 2701900 | 2009-02-18 21:57:45 +0000 | [diff] [blame] | 2732 | } |
| 2733 | |
| 2734 | // Emit any remaining diagnostics for the argument effects (if any). |
| 2735 | for (llvm::SmallVectorImpl<ArgEffect>::iterator I=AEffects.begin(), |
| 2736 | E=AEffects.end(); I != E; ++I) { |
| 2737 | |
| 2738 | // A bunch of things have alternate behavior under GC. |
| 2739 | if (TF.isGCEnabled()) |
| 2740 | switch (*I) { |
| 2741 | default: break; |
| 2742 | case Autorelease: |
| 2743 | os << "In GC mode an 'autorelease' has no effect."; |
| 2744 | continue; |
| 2745 | case IncRefMsg: |
| 2746 | os << "In GC mode the 'retain' message has no effect."; |
| 2747 | continue; |
| 2748 | case DecRefMsg: |
| 2749 | os << "In GC mode the 'release' message has no effect."; |
| 2750 | continue; |
| 2751 | } |
Ted Kremenek | fe9e543 | 2009-02-18 03:48:14 +0000 | [diff] [blame] | 2752 | } |
Ted Kremenek | 2701900 | 2009-02-18 21:57:45 +0000 | [diff] [blame] | 2753 | } while(0); |
Ted Kremenek | fe9e543 | 2009-02-18 03:48:14 +0000 | [diff] [blame] | 2754 | |
| 2755 | if (os.str().empty()) |
| 2756 | return 0; // We have nothing to say! |
Ted Kremenek | 2cf943a | 2008-04-18 04:55:01 +0000 | [diff] [blame] | 2757 | |
| 2758 | Stmt* S = cast<PostStmt>(N->getLocation()).getStmt(); |
| 2759 | FullSourceLoc Pos(S->getLocStart(), BR.getContext().getSourceManager()); |
Ted Kremenek | 1fbfd5b | 2009-03-06 23:58:11 +0000 | [diff] [blame] | 2760 | PathDiagnosticPiece* P = new PathDiagnosticEventPiece(Pos, os.str()); |
Ted Kremenek | 2cf943a | 2008-04-18 04:55:01 +0000 | [diff] [blame] | 2761 | |
| 2762 | // Add the range by scanning the children of the statement for any bindings |
| 2763 | // to Sym. |
Ted Kremenek | 2cf943a | 2008-04-18 04:55:01 +0000 | [diff] [blame] | 2764 | for (Stmt::child_iterator I = S->child_begin(), E = S->child_end(); I!=E; ++I) |
Ted Kremenek | 94c9698 | 2009-03-03 22:06:47 +0000 | [diff] [blame] | 2765 | if (Expr* Exp = dyn_cast_or_null<Expr>(*I)) |
Ted Kremenek | 3f4d5ab | 2009-03-04 00:13:50 +0000 | [diff] [blame] | 2766 | if (CurrSt.GetSValAsScalarOrLoc(Exp).getAsLocSymbol() == Sym) { |
Ted Kremenek | 94c9698 | 2009-03-03 22:06:47 +0000 | [diff] [blame] | 2767 | P->addRange(Exp->getSourceRange()); |
| 2768 | break; |
| 2769 | } |
Ted Kremenek | 2cf943a | 2008-04-18 04:55:01 +0000 | [diff] [blame] | 2770 | |
| 2771 | return P; |
Ted Kremenek | 8dd5646 | 2008-04-18 03:39:05 +0000 | [diff] [blame] | 2772 | } |
| 2773 | |
Ted Kremenek | 9e24049 | 2008-10-04 05:50:14 +0000 | [diff] [blame] | 2774 | namespace { |
| 2775 | class VISIBILITY_HIDDEN FindUniqueBinding : |
| 2776 | public StoreManager::BindingsHandler { |
Ted Kremenek | 2dabd43 | 2008-12-05 02:27:51 +0000 | [diff] [blame] | 2777 | SymbolRef Sym; |
Ted Kremenek | be91224 | 2009-03-05 16:31:07 +0000 | [diff] [blame] | 2778 | const MemRegion* Binding; |
Ted Kremenek | 9e24049 | 2008-10-04 05:50:14 +0000 | [diff] [blame] | 2779 | bool First; |
| 2780 | |
| 2781 | public: |
Ted Kremenek | 2dabd43 | 2008-12-05 02:27:51 +0000 | [diff] [blame] | 2782 | FindUniqueBinding(SymbolRef sym) : Sym(sym), Binding(0), First(true) {} |
Ted Kremenek | 9e24049 | 2008-10-04 05:50:14 +0000 | [diff] [blame] | 2783 | |
Ted Kremenek | be91224 | 2009-03-05 16:31:07 +0000 | [diff] [blame] | 2784 | bool HandleBinding(StoreManager& SMgr, Store store, const MemRegion* R, |
| 2785 | SVal val) { |
Ted Kremenek | 94c9698 | 2009-03-03 22:06:47 +0000 | [diff] [blame] | 2786 | SymbolRef SymV = val.getAsSymbol(); |
| 2787 | |
| 2788 | if (!SymV.isValid() || SymV != Sym) |
Ted Kremenek | 9e24049 | 2008-10-04 05:50:14 +0000 | [diff] [blame] | 2789 | return true; |
Ted Kremenek | 94c9698 | 2009-03-03 22:06:47 +0000 | [diff] [blame] | 2790 | |
Ted Kremenek | 9e24049 | 2008-10-04 05:50:14 +0000 | [diff] [blame] | 2791 | if (Binding) { |
| 2792 | First = false; |
| 2793 | return false; |
| 2794 | } |
| 2795 | else |
| 2796 | Binding = R; |
| 2797 | |
| 2798 | return true; |
| 2799 | } |
| 2800 | |
| 2801 | operator bool() { return First && Binding; } |
Ted Kremenek | be91224 | 2009-03-05 16:31:07 +0000 | [diff] [blame] | 2802 | const MemRegion* getRegion() { return Binding; } |
Ted Kremenek | 9e24049 | 2008-10-04 05:50:14 +0000 | [diff] [blame] | 2803 | }; |
| 2804 | } |
| 2805 | |
Ted Kremenek | 3148eb4 | 2009-01-24 00:55:43 +0000 | [diff] [blame] | 2806 | static std::pair<const ExplodedNode<GRState>*,const MemRegion*> |
Ted Kremenek | e469fa0 | 2009-02-07 22:19:59 +0000 | [diff] [blame] | 2807 | GetAllocationSite(GRStateManager& StateMgr, const ExplodedNode<GRState>* N, |
Ted Kremenek | 2dabd43 | 2008-12-05 02:27:51 +0000 | [diff] [blame] | 2808 | SymbolRef Sym) { |
Ted Kremenek | 6ed9afc | 2008-05-16 18:33:44 +0000 | [diff] [blame] | 2809 | |
Ted Kremenek | 2bc39c6 | 2008-08-29 00:47:32 +0000 | [diff] [blame] | 2810 | // Find both first node that referred to the tracked symbol and the |
| 2811 | // memory location that value was store to. |
Ted Kremenek | 3148eb4 | 2009-01-24 00:55:43 +0000 | [diff] [blame] | 2812 | const ExplodedNode<GRState>* Last = N; |
| 2813 | const MemRegion* FirstBinding = 0; |
Ted Kremenek | 6ed9afc | 2008-05-16 18:33:44 +0000 | [diff] [blame] | 2814 | |
| 2815 | while (N) { |
Ted Kremenek | 4adc81e | 2008-08-13 04:27:00 +0000 | [diff] [blame] | 2816 | const GRState* St = N->getState(); |
Ted Kremenek | 72cd17f | 2008-08-14 21:16:54 +0000 | [diff] [blame] | 2817 | RefBindings B = St->get<RefBindings>(); |
Ted Kremenek | 6ed9afc | 2008-05-16 18:33:44 +0000 | [diff] [blame] | 2818 | |
Ted Kremenek | e8fdc83 | 2008-07-07 16:21:19 +0000 | [diff] [blame] | 2819 | if (!B.lookup(Sym)) |
Ted Kremenek | 6ed9afc | 2008-05-16 18:33:44 +0000 | [diff] [blame] | 2820 | break; |
Ted Kremenek | 2bc39c6 | 2008-08-29 00:47:32 +0000 | [diff] [blame] | 2821 | |
Ted Kremenek | e469fa0 | 2009-02-07 22:19:59 +0000 | [diff] [blame] | 2822 | FindUniqueBinding FB(Sym); |
| 2823 | StateMgr.iterBindings(St, FB); |
| 2824 | if (FB) FirstBinding = FB.getRegion(); |
Ted Kremenek | 6ed9afc | 2008-05-16 18:33:44 +0000 | [diff] [blame] | 2825 | |
Ted Kremenek | 6ed9afc | 2008-05-16 18:33:44 +0000 | [diff] [blame] | 2826 | Last = N; |
| 2827 | N = N->pred_empty() ? NULL : *(N->pred_begin()); |
| 2828 | } |
| 2829 | |
Ted Kremenek | 2bc39c6 | 2008-08-29 00:47:32 +0000 | [diff] [blame] | 2830 | return std::make_pair(Last, FirstBinding); |
Ted Kremenek | 6ed9afc | 2008-05-16 18:33:44 +0000 | [diff] [blame] | 2831 | } |
Ted Kremenek | a22cc2f | 2008-05-06 23:07:13 +0000 | [diff] [blame] | 2832 | |
Ted Kremenek | 3148eb4 | 2009-01-24 00:55:43 +0000 | [diff] [blame] | 2833 | PathDiagnosticPiece* |
| 2834 | CFRefReport::getEndPath(BugReporter& br, const ExplodedNode<GRState>* EndN) { |
Ted Kremenek | 1aa44c7 | 2008-05-22 23:45:19 +0000 | [diff] [blame] | 2835 | // Tell the BugReporter to report cases when the tracked symbol is |
| 2836 | // assigned to different variables, etc. |
Ted Kremenek | f95e9fc | 2009-03-17 19:42:23 +0000 | [diff] [blame] | 2837 | GRBugReporter& BR = cast<GRBugReporter>(br); |
Ted Kremenek | c095997 | 2008-07-02 21:24:01 +0000 | [diff] [blame] | 2838 | cast<GRBugReporter>(BR).addNotableSymbol(Sym); |
Ted Kremenek | 66d9706 | 2009-02-07 22:04:05 +0000 | [diff] [blame] | 2839 | return RangedBugReport::getEndPath(BR, EndN); |
| 2840 | } |
| 2841 | |
| 2842 | PathDiagnosticPiece* |
| 2843 | CFRefLeakReport::getEndPath(BugReporter& br, const ExplodedNode<GRState>* EndN){ |
| 2844 | |
| 2845 | GRBugReporter& BR = cast<GRBugReporter>(br); |
| 2846 | // Tell the BugReporter to report cases when the tracked symbol is |
| 2847 | // assigned to different variables, etc. |
| 2848 | cast<GRBugReporter>(BR).addNotableSymbol(Sym); |
| 2849 | |
| 2850 | // We are reporting a leak. Walk up the graph to get to the first node where |
| 2851 | // the symbol appeared, and also get the first VarDecl that tracked object |
Ted Kremenek | 6ed9afc | 2008-05-16 18:33:44 +0000 | [diff] [blame] | 2852 | // is stored to. |
Ted Kremenek | 3148eb4 | 2009-01-24 00:55:43 +0000 | [diff] [blame] | 2853 | const ExplodedNode<GRState>* AllocNode = 0; |
| 2854 | const MemRegion* FirstBinding = 0; |
Ted Kremenek | 2bc39c6 | 2008-08-29 00:47:32 +0000 | [diff] [blame] | 2855 | |
| 2856 | llvm::tie(AllocNode, FirstBinding) = |
Ted Kremenek | e469fa0 | 2009-02-07 22:19:59 +0000 | [diff] [blame] | 2857 | GetAllocationSite(BR.getStateManager(), EndN, Sym); |
Ted Kremenek | c9fa2f7 | 2008-05-01 23:13:35 +0000 | [diff] [blame] | 2858 | |
Ted Kremenek | 6ed9afc | 2008-05-16 18:33:44 +0000 | [diff] [blame] | 2859 | // Get the allocate site. |
| 2860 | assert (AllocNode); |
| 2861 | Stmt* FirstStmt = cast<PostStmt>(AllocNode->getLocation()).getStmt(); |
Ted Kremenek | c9fa2f7 | 2008-05-01 23:13:35 +0000 | [diff] [blame] | 2862 | |
Ted Kremenek | e28565b | 2008-05-05 18:50:19 +0000 | [diff] [blame] | 2863 | SourceManager& SMgr = BR.getContext().getSourceManager(); |
Chris Lattner | f7cf85b | 2009-01-16 07:36:28 +0000 | [diff] [blame] | 2864 | unsigned AllocLine =SMgr.getInstantiationLineNumber(FirstStmt->getLocStart()); |
Ted Kremenek | c9fa2f7 | 2008-05-01 23:13:35 +0000 | [diff] [blame] | 2865 | |
Ted Kremenek | d559792 | 2009-02-18 23:28:26 +0000 | [diff] [blame] | 2866 | // Get the leak site. We want to find the last place where the symbol |
| 2867 | // was used in an expression. |
| 2868 | const ExplodedNode<GRState>* LeakN = EndN; |
| 2869 | Stmt *S = 0; |
Ted Kremenek | e28565b | 2008-05-05 18:50:19 +0000 | [diff] [blame] | 2870 | |
Ted Kremenek | d559792 | 2009-02-18 23:28:26 +0000 | [diff] [blame] | 2871 | while (LeakN) { |
Ted Kremenek | 4094b34 | 2009-02-24 23:30:57 +0000 | [diff] [blame] | 2872 | bool atBranch = false; |
Ted Kremenek | d559792 | 2009-02-18 23:28:26 +0000 | [diff] [blame] | 2873 | ProgramPoint P = LeakN->getLocation(); |
Ted Kremenek | d559792 | 2009-02-18 23:28:26 +0000 | [diff] [blame] | 2874 | |
| 2875 | if (const PostStmt *PS = dyn_cast<PostStmt>(&P)) |
| 2876 | S = PS->getStmt(); |
Ted Kremenek | 4094b34 | 2009-02-24 23:30:57 +0000 | [diff] [blame] | 2877 | else if (const BlockEdge *BE = dyn_cast<BlockEdge>(&P)) { |
| 2878 | // FIXME: What we really want is to set LeakN to be the node |
| 2879 | // for the BlockEntrance for the branch we took and have BugReporter |
| 2880 | // do the right thing. |
Ted Kremenek | d559792 | 2009-02-18 23:28:26 +0000 | [diff] [blame] | 2881 | S = BE->getSrc()->getTerminator(); |
Ted Kremenek | 6431a26 | 2009-02-24 23:34:17 +0000 | [diff] [blame] | 2882 | atBranch = (S != 0); |
Ted Kremenek | 4094b34 | 2009-02-24 23:30:57 +0000 | [diff] [blame] | 2883 | } |
Ted Kremenek | d559792 | 2009-02-18 23:28:26 +0000 | [diff] [blame] | 2884 | |
| 2885 | if (S) { |
| 2886 | // Scan 'S' for uses of Sym. |
| 2887 | GRStateRef state(LeakN->getState(), BR.getStateManager()); |
| 2888 | bool foundSymbol = false; |
Ted Kremenek | b1dbf15 | 2009-02-19 18:18:48 +0000 | [diff] [blame] | 2889 | |
| 2890 | // First check if 'S' itself binds to the symbol. |
Ted Kremenek | 94c9698 | 2009-03-03 22:06:47 +0000 | [diff] [blame] | 2891 | if (Expr *Ex = dyn_cast<Expr>(S)) |
Ted Kremenek | 3f4d5ab | 2009-03-04 00:13:50 +0000 | [diff] [blame] | 2892 | if (state.GetSValAsScalarOrLoc(Ex).getAsLocSymbol() == Sym) |
Ted Kremenek | b1dbf15 | 2009-02-19 18:18:48 +0000 | [diff] [blame] | 2893 | foundSymbol = true; |
Ted Kremenek | b1dbf15 | 2009-02-19 18:18:48 +0000 | [diff] [blame] | 2894 | |
| 2895 | if (!foundSymbol) |
| 2896 | for (Stmt::child_iterator I=S->child_begin(), E=S->child_end(); |
| 2897 | I!=E; ++I) |
| 2898 | if (Expr *Ex = dyn_cast_or_null<Expr>(*I)) { |
Ted Kremenek | 3f4d5ab | 2009-03-04 00:13:50 +0000 | [diff] [blame] | 2899 | SVal X = state.GetSValAsScalarOrLoc(Ex); |
Ted Kremenek | 94c9698 | 2009-03-03 22:06:47 +0000 | [diff] [blame] | 2900 | if (X.getAsLocSymbol() == Sym) { |
Ted Kremenek | b1dbf15 | 2009-02-19 18:18:48 +0000 | [diff] [blame] | 2901 | foundSymbol = true; |
| 2902 | break; |
| 2903 | } |
Ted Kremenek | d559792 | 2009-02-18 23:28:26 +0000 | [diff] [blame] | 2904 | } |
Ted Kremenek | b1dbf15 | 2009-02-19 18:18:48 +0000 | [diff] [blame] | 2905 | |
Ted Kremenek | d559792 | 2009-02-18 23:28:26 +0000 | [diff] [blame] | 2906 | if (foundSymbol) |
| 2907 | break; |
| 2908 | } |
| 2909 | |
Ted Kremenek | 4094b34 | 2009-02-24 23:30:57 +0000 | [diff] [blame] | 2910 | // Don't traverse any higher than the branch. |
| 2911 | if (atBranch) |
| 2912 | break; |
| 2913 | |
Ted Kremenek | d559792 | 2009-02-18 23:28:26 +0000 | [diff] [blame] | 2914 | LeakN = LeakN->pred_empty() ? 0 : *(LeakN->pred_begin()); |
| 2915 | } |
| 2916 | |
| 2917 | assert(LeakN && S && "No leak site found."); |
Ted Kremenek | e28565b | 2008-05-05 18:50:19 +0000 | [diff] [blame] | 2918 | |
Ted Kremenek | e28565b | 2008-05-05 18:50:19 +0000 | [diff] [blame] | 2919 | // Generate the diagnostic. |
Ted Kremenek | 572b278 | 2009-02-18 22:59:04 +0000 | [diff] [blame] | 2920 | FullSourceLoc L(S->getLocStart(), SMgr); |
Ted Kremenek | c9e3d86 | 2009-02-07 21:59:45 +0000 | [diff] [blame] | 2921 | std::string sbuf; |
| 2922 | llvm::raw_string_ostream os(sbuf); |
Ted Kremenek | e92c1b2 | 2008-05-02 20:53:50 +0000 | [diff] [blame] | 2923 | |
Ted Kremenek | e28565b | 2008-05-05 18:50:19 +0000 | [diff] [blame] | 2924 | os << "Object allocated on line " << AllocLine; |
Ted Kremenek | e92c1b2 | 2008-05-02 20:53:50 +0000 | [diff] [blame] | 2925 | |
Ted Kremenek | 2bc39c6 | 2008-08-29 00:47:32 +0000 | [diff] [blame] | 2926 | if (FirstBinding) |
Ted Kremenek | 9e24049 | 2008-10-04 05:50:14 +0000 | [diff] [blame] | 2927 | os << " and stored into '" << FirstBinding->getString() << '\''; |
| 2928 | |
Ted Kremenek | 3ad2cc8 | 2008-10-22 23:56:21 +0000 | [diff] [blame] | 2929 | // Get the retain count. |
| 2930 | const RefVal* RV = EndN->getState()->get<RefBindings>(Sym); |
| 2931 | |
| 2932 | if (RV->getKind() == RefVal::ErrorLeakReturned) { |
Ted Kremenek | 04f9d46 | 2008-12-02 01:26:07 +0000 | [diff] [blame] | 2933 | // FIXME: Per comments in rdar://6320065, "create" only applies to CF |
| 2934 | // ojbects. Only "copy", "alloc", "retain" and "new" transfer ownership |
| 2935 | // to the caller for NS objects. |
Ted Kremenek | 3ad2cc8 | 2008-10-22 23:56:21 +0000 | [diff] [blame] | 2936 | ObjCMethodDecl& MD = cast<ObjCMethodDecl>(BR.getGraph().getCodeDecl()); |
| 2937 | os << " is returned from a method whose name ('" |
Chris Lattner | 077bf5e | 2008-11-24 03:33:13 +0000 | [diff] [blame] | 2938 | << MD.getSelector().getAsString() |
Ted Kremenek | 234a4c2 | 2009-01-07 00:39:56 +0000 | [diff] [blame] | 2939 | << "') does not contain 'copy' or otherwise starts with" |
Ted Kremenek | 9d1d570 | 2008-10-24 21:22:44 +0000 | [diff] [blame] | 2940 | " 'new' or 'alloc'. This violates the naming convention rules given" |
Ted Kremenek | 3ad2cc8 | 2008-10-22 23:56:21 +0000 | [diff] [blame] | 2941 | " in the Memory Management Guide for Cocoa (object leaked)."; |
| 2942 | } |
| 2943 | else |
Ted Kremenek | 9d1d570 | 2008-10-24 21:22:44 +0000 | [diff] [blame] | 2944 | os << " is no longer referenced after this point and has a retain count of" |
| 2945 | " +" |
Ted Kremenek | 3ad2cc8 | 2008-10-22 23:56:21 +0000 | [diff] [blame] | 2946 | << RV->getCount() << " (object leaked)."; |
Ted Kremenek | c9fa2f7 | 2008-05-01 23:13:35 +0000 | [diff] [blame] | 2947 | |
Ted Kremenek | 1fbfd5b | 2009-03-06 23:58:11 +0000 | [diff] [blame] | 2948 | return new PathDiagnosticEventPiece(L, os.str()); |
Ted Kremenek | c9fa2f7 | 2008-05-01 23:13:35 +0000 | [diff] [blame] | 2949 | } |
| 2950 | |
Ted Kremenek | 989d519 | 2008-04-17 23:43:50 +0000 | [diff] [blame] | 2951 | |
Ted Kremenek | fe9e543 | 2009-02-18 03:48:14 +0000 | [diff] [blame] | 2952 | CFRefLeakReport::CFRefLeakReport(CFRefBug& D, const CFRefCount &tf, |
| 2953 | ExplodedNode<GRState> *n, |
Ted Kremenek | d305721 | 2009-02-07 22:38:00 +0000 | [diff] [blame] | 2954 | SymbolRef sym, GRExprEngine& Eng) |
Ted Kremenek | fe9e543 | 2009-02-18 03:48:14 +0000 | [diff] [blame] | 2955 | : CFRefReport(D, tf, n, sym) |
Ted Kremenek | e469fa0 | 2009-02-07 22:19:59 +0000 | [diff] [blame] | 2956 | { |
| 2957 | |
Ted Kremenek | 6ed9afc | 2008-05-16 18:33:44 +0000 | [diff] [blame] | 2958 | // Most bug reports are cached at the location where they occured. |
| 2959 | // With leaks, we want to unique them by the location where they were |
Ted Kremenek | e469fa0 | 2009-02-07 22:19:59 +0000 | [diff] [blame] | 2960 | // allocated, and only report a single path. To do this, we need to find |
| 2961 | // the allocation site of a piece of tracked memory, which we do via a |
| 2962 | // call to GetAllocationSite. This will walk the ExplodedGraph backwards. |
| 2963 | // Note that this is *not* the trimmed graph; we are guaranteed, however, |
| 2964 | // that all ancestor nodes that represent the allocation site have the |
| 2965 | // same SourceLocation. |
| 2966 | const ExplodedNode<GRState>* AllocNode = 0; |
| 2967 | |
| 2968 | llvm::tie(AllocNode, AllocBinding) = // Set AllocBinding. |
Ted Kremenek | d305721 | 2009-02-07 22:38:00 +0000 | [diff] [blame] | 2969 | GetAllocationSite(Eng.getStateManager(), getEndNode(), getSymbol()); |
Ted Kremenek | e469fa0 | 2009-02-07 22:19:59 +0000 | [diff] [blame] | 2970 | |
Ted Kremenek | e469fa0 | 2009-02-07 22:19:59 +0000 | [diff] [blame] | 2971 | // Get the SourceLocation for the allocation site. |
Ted Kremenek | d305721 | 2009-02-07 22:38:00 +0000 | [diff] [blame] | 2972 | ProgramPoint P = AllocNode->getLocation(); |
Ted Kremenek | e469fa0 | 2009-02-07 22:19:59 +0000 | [diff] [blame] | 2973 | AllocSite = cast<PostStmt>(P).getStmt()->getLocStart(); |
Ted Kremenek | d305721 | 2009-02-07 22:38:00 +0000 | [diff] [blame] | 2974 | |
| 2975 | // Fill in the description of the bug. |
| 2976 | Description.clear(); |
| 2977 | llvm::raw_string_ostream os(Description); |
| 2978 | SourceManager& SMgr = Eng.getContext().getSourceManager(); |
| 2979 | unsigned AllocLine = SMgr.getInstantiationLineNumber(AllocSite); |
Ted Kremenek | c5c6000 | 2009-02-07 22:54:59 +0000 | [diff] [blame] | 2980 | os << "Potential leak of object allocated on line " << AllocLine; |
| 2981 | |
| 2982 | // FIXME: AllocBinding doesn't get populated for RegionStore yet. |
| 2983 | if (AllocBinding) |
| 2984 | os << " and store into '" << AllocBinding->getString() << '\''; |
Ted Kremenek | 6ed9afc | 2008-05-16 18:33:44 +0000 | [diff] [blame] | 2985 | } |
| 2986 | |
Ted Kremenek | 6b3a0f7 | 2008-03-11 06:39:11 +0000 | [diff] [blame] | 2987 | //===----------------------------------------------------------------------===// |
Ted Kremenek | cf70177 | 2009-02-05 06:50:21 +0000 | [diff] [blame] | 2988 | // Handle dead symbols and end-of-path. |
| 2989 | //===----------------------------------------------------------------------===// |
| 2990 | |
| 2991 | void CFRefCount::EvalEndPath(GRExprEngine& Eng, |
| 2992 | GREndPathNodeBuilder<GRState>& Builder) { |
| 2993 | |
| 2994 | const GRState* St = Builder.getState(); |
| 2995 | RefBindings B = St->get<RefBindings>(); |
| 2996 | |
| 2997 | llvm::SmallVector<std::pair<SymbolRef, bool>, 10> Leaked; |
| 2998 | const Decl* CodeDecl = &Eng.getGraph().getCodeDecl(); |
| 2999 | |
| 3000 | for (RefBindings::iterator I = B.begin(), E = B.end(); I != E; ++I) { |
| 3001 | bool hasLeak = false; |
| 3002 | |
| 3003 | std::pair<GRStateRef, bool> X = |
Ted Kremenek | 94c9698 | 2009-03-03 22:06:47 +0000 | [diff] [blame] | 3004 | HandleSymbolDeath(Eng.getStateManager(), St, CodeDecl, |
| 3005 | (*I).first, (*I).second, hasLeak); |
Ted Kremenek | cf70177 | 2009-02-05 06:50:21 +0000 | [diff] [blame] | 3006 | |
| 3007 | St = X.first; |
| 3008 | if (hasLeak) Leaked.push_back(std::make_pair((*I).first, X.second)); |
| 3009 | } |
| 3010 | |
| 3011 | if (Leaked.empty()) |
| 3012 | return; |
| 3013 | |
| 3014 | ExplodedNode<GRState>* N = Builder.MakeNode(St); |
| 3015 | |
| 3016 | if (!N) |
| 3017 | return; |
| 3018 | |
| 3019 | for (llvm::SmallVector<std::pair<SymbolRef,bool>, 10>::iterator |
| 3020 | I = Leaked.begin(), E = Leaked.end(); I != E; ++I) { |
| 3021 | |
| 3022 | CFRefBug *BT = static_cast<CFRefBug*>(I->second ? leakAtReturn |
| 3023 | : leakWithinFunction); |
| 3024 | assert(BT && "BugType not initialized."); |
Ted Kremenek | fe9e543 | 2009-02-18 03:48:14 +0000 | [diff] [blame] | 3025 | CFRefLeakReport* report = new CFRefLeakReport(*BT, *this, N, I->first, Eng); |
Ted Kremenek | cf70177 | 2009-02-05 06:50:21 +0000 | [diff] [blame] | 3026 | BR->EmitReport(report); |
| 3027 | } |
| 3028 | } |
| 3029 | |
| 3030 | void CFRefCount::EvalDeadSymbols(ExplodedNodeSet<GRState>& Dst, |
| 3031 | GRExprEngine& Eng, |
| 3032 | GRStmtNodeBuilder<GRState>& Builder, |
| 3033 | ExplodedNode<GRState>* Pred, |
| 3034 | Stmt* S, |
| 3035 | const GRState* St, |
| 3036 | SymbolReaper& SymReaper) { |
| 3037 | |
Ted Kremenek | 33b6f63 | 2009-02-19 23:47:02 +0000 | [diff] [blame] | 3038 | // FIXME: a lot of copy-and-paste from EvalEndPath. Refactor. |
Ted Kremenek | cf70177 | 2009-02-05 06:50:21 +0000 | [diff] [blame] | 3039 | RefBindings B = St->get<RefBindings>(); |
| 3040 | llvm::SmallVector<std::pair<SymbolRef,bool>, 10> Leaked; |
| 3041 | |
| 3042 | for (SymbolReaper::dead_iterator I = SymReaper.dead_begin(), |
| 3043 | E = SymReaper.dead_end(); I != E; ++I) { |
| 3044 | |
| 3045 | const RefVal* T = B.lookup(*I); |
| 3046 | if (!T) continue; |
| 3047 | |
| 3048 | bool hasLeak = false; |
| 3049 | |
| 3050 | std::pair<GRStateRef, bool> X |
Ted Kremenek | 33b6f63 | 2009-02-19 23:47:02 +0000 | [diff] [blame] | 3051 | = HandleSymbolDeath(Eng.getStateManager(), St, 0, *I, *T, hasLeak); |
Ted Kremenek | cf70177 | 2009-02-05 06:50:21 +0000 | [diff] [blame] | 3052 | |
| 3053 | St = X.first; |
| 3054 | |
| 3055 | if (hasLeak) |
| 3056 | Leaked.push_back(std::make_pair(*I,X.second)); |
| 3057 | } |
| 3058 | |
Ted Kremenek | 33b6f63 | 2009-02-19 23:47:02 +0000 | [diff] [blame] | 3059 | if (!Leaked.empty()) { |
| 3060 | // Create a new intermediate node representing the leak point. We |
| 3061 | // use a special program point that represents this checker-specific |
| 3062 | // transition. We use the address of RefBIndex as a unique tag for this |
| 3063 | // checker. We will create another node (if we don't cache out) that |
| 3064 | // removes the retain-count bindings from the state. |
| 3065 | // NOTE: We use 'generateNode' so that it does interplay with the |
| 3066 | // auto-transition logic. |
| 3067 | ExplodedNode<GRState>* N = |
| 3068 | Builder.generateNode(PostStmtCustom(S, &LeakProgramPointTag), St, Pred); |
Ted Kremenek | cf70177 | 2009-02-05 06:50:21 +0000 | [diff] [blame] | 3069 | |
Ted Kremenek | 33b6f63 | 2009-02-19 23:47:02 +0000 | [diff] [blame] | 3070 | if (!N) |
| 3071 | return; |
| 3072 | |
| 3073 | // Generate the bug reports. |
| 3074 | for (llvm::SmallVectorImpl<std::pair<SymbolRef,bool> >::iterator |
| 3075 | I = Leaked.begin(), E = Leaked.end(); I != E; ++I) { |
| 3076 | |
| 3077 | CFRefBug *BT = static_cast<CFRefBug*>(I->second ? leakAtReturn |
| 3078 | : leakWithinFunction); |
| 3079 | assert(BT && "BugType not initialized."); |
Ted Kremenek | 4634735 | 2009-02-23 16:54:00 +0000 | [diff] [blame] | 3080 | CFRefLeakReport* report = new CFRefLeakReport(*BT, *this, N, |
| 3081 | I->first, Eng); |
Ted Kremenek | 33b6f63 | 2009-02-19 23:47:02 +0000 | [diff] [blame] | 3082 | BR->EmitReport(report); |
| 3083 | } |
Ted Kremenek | cf70177 | 2009-02-05 06:50:21 +0000 | [diff] [blame] | 3084 | |
Ted Kremenek | 33b6f63 | 2009-02-19 23:47:02 +0000 | [diff] [blame] | 3085 | Pred = N; |
Ted Kremenek | cf70177 | 2009-02-05 06:50:21 +0000 | [diff] [blame] | 3086 | } |
Ted Kremenek | 33b6f63 | 2009-02-19 23:47:02 +0000 | [diff] [blame] | 3087 | |
| 3088 | // Now generate a new node that nukes the old bindings. |
| 3089 | GRStateRef state(St, Eng.getStateManager()); |
| 3090 | RefBindings::Factory& F = state.get_context<RefBindings>(); |
| 3091 | |
| 3092 | for (SymbolReaper::dead_iterator I = SymReaper.dead_begin(), |
| 3093 | E = SymReaper.dead_end(); I!=E; ++I) |
| 3094 | B = F.Remove(B, *I); |
| 3095 | |
| 3096 | state = state.set<RefBindings>(B); |
| 3097 | Builder.MakeNode(Dst, S, Pred, state); |
Ted Kremenek | cf70177 | 2009-02-05 06:50:21 +0000 | [diff] [blame] | 3098 | } |
| 3099 | |
| 3100 | void CFRefCount::ProcessNonLeakError(ExplodedNodeSet<GRState>& Dst, |
| 3101 | GRStmtNodeBuilder<GRState>& Builder, |
| 3102 | Expr* NodeExpr, Expr* ErrorExpr, |
| 3103 | ExplodedNode<GRState>* Pred, |
| 3104 | const GRState* St, |
| 3105 | RefVal::Kind hasErr, SymbolRef Sym) { |
| 3106 | Builder.BuildSinks = true; |
| 3107 | GRExprEngine::NodeTy* N = Builder.MakeNode(Dst, NodeExpr, Pred, St); |
| 3108 | |
| 3109 | if (!N) return; |
| 3110 | |
| 3111 | CFRefBug *BT = 0; |
| 3112 | |
Ted Kremenek | f95e9fc | 2009-03-17 19:42:23 +0000 | [diff] [blame] | 3113 | switch (hasErr) { |
| 3114 | default: |
| 3115 | assert(false && "Unhandled error."); |
| 3116 | return; |
| 3117 | case RefVal::ErrorUseAfterRelease: |
| 3118 | BT = static_cast<CFRefBug*>(useAfterRelease); |
| 3119 | break; |
| 3120 | case RefVal::ErrorReleaseNotOwned: |
| 3121 | BT = static_cast<CFRefBug*>(releaseNotOwned); |
| 3122 | break; |
| 3123 | case RefVal::ErrorDeallocGC: |
| 3124 | BT = static_cast<CFRefBug*>(deallocGC); |
| 3125 | break; |
| 3126 | case RefVal::ErrorDeallocNotOwned: |
| 3127 | BT = static_cast<CFRefBug*>(deallocNotOwned); |
| 3128 | break; |
Ted Kremenek | cf70177 | 2009-02-05 06:50:21 +0000 | [diff] [blame] | 3129 | } |
| 3130 | |
Ted Kremenek | fe9e543 | 2009-02-18 03:48:14 +0000 | [diff] [blame] | 3131 | CFRefReport *report = new CFRefReport(*BT, *this, N, Sym); |
Ted Kremenek | cf70177 | 2009-02-05 06:50:21 +0000 | [diff] [blame] | 3132 | report->addRange(ErrorExpr->getSourceRange()); |
| 3133 | BR->EmitReport(report); |
| 3134 | } |
| 3135 | |
| 3136 | //===----------------------------------------------------------------------===// |
Ted Kremenek | d71ed26 | 2008-04-10 22:16:52 +0000 | [diff] [blame] | 3137 | // Transfer function creation for external clients. |
Ted Kremenek | 6b3a0f7 | 2008-03-11 06:39:11 +0000 | [diff] [blame] | 3138 | //===----------------------------------------------------------------------===// |
| 3139 | |
Ted Kremenek | 072192b | 2008-04-30 23:47:44 +0000 | [diff] [blame] | 3140 | GRTransferFuncs* clang::MakeCFRefCountTF(ASTContext& Ctx, bool GCEnabled, |
| 3141 | const LangOptions& lopts) { |
Ted Kremenek | 78d4624 | 2008-07-22 16:21:24 +0000 | [diff] [blame] | 3142 | return new CFRefCount(Ctx, GCEnabled, lopts); |
Ted Kremenek | 3ea0b6a | 2008-04-10 22:58:08 +0000 | [diff] [blame] | 3143 | } |