blob: bf256cd9fa454cc4ebeae7705213eb4b42d45cd6 [file] [log] [blame]
Anna Zaks31f69cc2012-09-29 00:20:38 +00001//=- IvarInvalidationChecker.cpp - -*- C++ -------------------------------*-==//
Anna Zaks5bf5c2e2012-09-26 18:55:16 +00002//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This checker implements annotation driven invalidation checking. If a class
11// contains a method annotated with 'objc_instance_variable_invalidator',
12// - (void) foo
13// __attribute__((annotate("objc_instance_variable_invalidator")));
14// all the "ivalidatable" instance variables of this class should be
15// invalidated. We call an instance variable ivalidatable if it is an object of
Anna Zaks31f69cc2012-09-29 00:20:38 +000016// a class which contains an invalidation method. There could be multiple
17// methods annotated with such annotations per class, either one can be used
18// to invalidate the ivar. An ivar or property are considered to be
19// invalidated if they are being assigned 'nil' or an invalidation method has
20// been called on them. An invalidation method should either invalidate all
21// the ivars or call another invalidation method (on self).
Anna Zaks5bf5c2e2012-09-26 18:55:16 +000022//
23//===----------------------------------------------------------------------===//
24
25#include "ClangSACheckers.h"
26#include "clang/StaticAnalyzer/Core/Checker.h"
27#include "clang/StaticAnalyzer/Core/BugReporter/BugReporter.h"
28#include "clang/StaticAnalyzer/Core/PathSensitive/AnalysisManager.h"
29#include "clang/AST/DeclObjC.h"
30#include "clang/AST/StmtVisitor.h"
31#include "llvm/ADT/DenseMap.h"
32#include "llvm/ADT/SmallString.h"
33
34using namespace clang;
35using namespace ento;
36
37namespace {
38class IvarInvalidationChecker :
39 public Checker<check::ASTDecl<ObjCMethodDecl> > {
40
Anna Zaks31f69cc2012-09-29 00:20:38 +000041 typedef llvm::DenseSet<const ObjCMethodDecl*> MethodSet;
Anna Zaks5bf5c2e2012-09-26 18:55:16 +000042 typedef llvm::DenseMap<const ObjCMethodDecl*,
43 const ObjCIvarDecl*> MethToIvarMapTy;
44 typedef llvm::DenseMap<const ObjCPropertyDecl*,
45 const ObjCIvarDecl*> PropToIvarMapTy;
Anna Zaks377945c2012-09-27 21:57:14 +000046 typedef llvm::DenseMap<const ObjCIvarDecl*,
47 const ObjCPropertyDecl*> IvarToPropMapTy;
Anna Zaks5bf5c2e2012-09-26 18:55:16 +000048
Anna Zaks31f69cc2012-09-29 00:20:38 +000049
50 struct IvarInfo {
51 /// Has the ivar been invalidated?
52 bool IsInvalidated;
53
54 /// The methods which can be used to invalidate the ivar.
55 MethodSet InvalidationMethods;
56
57 IvarInfo() : IsInvalidated(false) {}
58 void addInvalidationMethod(const ObjCMethodDecl *MD) {
59 InvalidationMethods.insert(MD);
60 }
61
62 bool needsInvalidation() const {
63 return !InvalidationMethods.empty();
64 }
65
66 void markInvalidated() {
67 IsInvalidated = true;
68 }
69
70 bool markInvalidated(const ObjCMethodDecl *MD) {
71 if (IsInvalidated)
72 return true;
73 for (MethodSet::iterator I = InvalidationMethods.begin(),
74 E = InvalidationMethods.end(); I != E; ++I) {
75 if (*I == MD) {
76 IsInvalidated = true;
77 return true;
78 }
79 }
80 return false;
81 }
82
83 bool isInvalidated() const {
84 return IsInvalidated;
85 }
86 };
87
88 typedef llvm::DenseMap<const ObjCIvarDecl*, IvarInfo> IvarSet;
89
Anna Zaks5bf5c2e2012-09-26 18:55:16 +000090 /// Statement visitor, which walks the method body and flags the ivars
91 /// referenced in it (either directly or via property).
92 class MethodCrawler : public ConstStmtVisitor<MethodCrawler> {
Anna Zaks5bf5c2e2012-09-26 18:55:16 +000093 /// The set of Ivars which need to be invalidated.
94 IvarSet &IVars;
95
Anna Zaks31f69cc2012-09-29 00:20:38 +000096 /// Flag is set as the result of a message send to another
97 /// invalidation method.
98 bool &CalledAnotherInvalidationMethod;
Anna Zaks5bf5c2e2012-09-26 18:55:16 +000099
Anna Zaks31f69cc2012-09-29 00:20:38 +0000100 /// Property setter to ivar mapping.
101 const MethToIvarMapTy &PropertySetterToIvarMap;
102
103 /// Property getter to ivar mapping.
104 const MethToIvarMapTy &PropertyGetterToIvarMap;
105
106 /// Property to ivar mapping.
107 const PropToIvarMapTy &PropertyToIvarMap;
108
109 /// The invalidation method being currently processed.
110 const ObjCMethodDecl *InvalidationMethod;
111
Anna Zaksb9733ac2012-10-01 20:33:58 +0000112 ASTContext &Ctx;
113
114 /// Peel off parens, casts, OpaqueValueExpr, and PseudoObjectExpr.
Anna Zaks31f69cc2012-09-29 00:20:38 +0000115 const Expr *peel(const Expr *E) const;
116
117 /// Does this expression represent zero: '0'?
118 bool isZero(const Expr *E) const;
119
120 /// Mark the given ivar as invalidated.
121 void markInvalidated(const ObjCIvarDecl *Iv);
122
123 /// Checks if IvarRef refers to the tracked IVar, if yes, marks it as
124 /// invalidated.
125 void checkObjCIvarRefExpr(const ObjCIvarRefExpr *IvarRef);
126
127 /// Checks if ObjCPropertyRefExpr refers to the tracked IVar, if yes, marks
128 /// it as invalidated.
129 void checkObjCPropertyRefExpr(const ObjCPropertyRefExpr *PA);
130
131 /// Checks if ObjCMessageExpr refers to (is a getter for) the tracked IVar,
132 /// if yes, marks it as invalidated.
133 void checkObjCMessageExpr(const ObjCMessageExpr *ME);
134
135 /// Checks if the Expr refers to an ivar, if yes, marks it as invalidated.
136 void check(const Expr *E);
Anna Zaks5bf5c2e2012-09-26 18:55:16 +0000137
138 public:
Anna Zaksbbff82f2012-10-01 20:34:04 +0000139 MethodCrawler(IvarSet &InIVars,
Anna Zaks31f69cc2012-09-29 00:20:38 +0000140 bool &InCalledAnotherInvalidationMethod,
141 const MethToIvarMapTy &InPropertySetterToIvarMap,
142 const MethToIvarMapTy &InPropertyGetterToIvarMap,
Anna Zaksb9733ac2012-10-01 20:33:58 +0000143 const PropToIvarMapTy &InPropertyToIvarMap,
144 ASTContext &InCtx)
Anna Zaksbbff82f2012-10-01 20:34:04 +0000145 : IVars(InIVars),
Anna Zaks31f69cc2012-09-29 00:20:38 +0000146 CalledAnotherInvalidationMethod(InCalledAnotherInvalidationMethod),
147 PropertySetterToIvarMap(InPropertySetterToIvarMap),
148 PropertyGetterToIvarMap(InPropertyGetterToIvarMap),
149 PropertyToIvarMap(InPropertyToIvarMap),
Anna Zaksb9733ac2012-10-01 20:33:58 +0000150 InvalidationMethod(0),
151 Ctx(InCtx) {}
Anna Zaks5bf5c2e2012-09-26 18:55:16 +0000152
153 void VisitStmt(const Stmt *S) { VisitChildren(S); }
154
Anna Zaks31f69cc2012-09-29 00:20:38 +0000155 void VisitBinaryOperator(const BinaryOperator *BO);
Anna Zaks5bf5c2e2012-09-26 18:55:16 +0000156
157 void VisitObjCMessageExpr(const ObjCMessageExpr *ME);
158
Anna Zaks5bf5c2e2012-09-26 18:55:16 +0000159 void VisitChildren(const Stmt *S) {
Anna Zaks31f69cc2012-09-29 00:20:38 +0000160 for (Stmt::const_child_range I = S->children(); I; ++I) {
Anna Zaks5bf5c2e2012-09-26 18:55:16 +0000161 if (*I)
Anna Zaksb087bbf2012-09-27 19:45:08 +0000162 this->Visit(*I);
Anna Zaks31f69cc2012-09-29 00:20:38 +0000163 if (CalledAnotherInvalidationMethod)
164 return;
165 }
Anna Zaks5bf5c2e2012-09-26 18:55:16 +0000166 }
167 };
168
169 /// Check if the any of the methods inside the interface are annotated with
Anna Zaks31f69cc2012-09-29 00:20:38 +0000170 /// the invalidation annotation, update the IvarInfo accordingly.
171 static void containsInvalidationMethod(const ObjCContainerDecl *D,
172 IvarInfo &Out);
Anna Zaks377945c2012-09-27 21:57:14 +0000173
174 /// Check if ivar should be tracked and add to TrackedIvars if positive.
175 /// Returns true if ivar should be tracked.
176 static bool trackIvar(const ObjCIvarDecl *Iv, IvarSet &TrackedIvars);
Anna Zaks5bf5c2e2012-09-26 18:55:16 +0000177
178 /// Given the property declaration, and the list of tracked ivars, finds
179 /// the ivar backing the property when possible. Returns '0' when no such
180 /// ivar could be found.
181 static const ObjCIvarDecl *findPropertyBackingIvar(
182 const ObjCPropertyDecl *Prop,
183 const ObjCInterfaceDecl *InterfaceD,
Anna Zaks377945c2012-09-27 21:57:14 +0000184 IvarSet &TrackedIvars);
Anna Zaks5bf5c2e2012-09-26 18:55:16 +0000185
186public:
187 void checkASTDecl(const ObjCMethodDecl *D, AnalysisManager& Mgr,
188 BugReporter &BR) const;
189
Anna Zaksb087bbf2012-09-27 19:45:08 +0000190 // TODO: We are currently ignoring the ivars coming from class extensions.
Anna Zaks5bf5c2e2012-09-26 18:55:16 +0000191};
192
Anna Zaks31f69cc2012-09-29 00:20:38 +0000193static bool isInvalidationMethod(const ObjCMethodDecl *M) {
Anna Zaksb087bbf2012-09-27 19:45:08 +0000194 for (specific_attr_iterator<AnnotateAttr>
195 AI = M->specific_attr_begin<AnnotateAttr>(),
196 AE = M->specific_attr_end<AnnotateAttr>(); AI != AE; ++AI) {
197 const AnnotateAttr *Ann = *AI;
198 if (Ann->getAnnotation() == "objc_instance_variable_invalidator")
199 return true;
200 }
Anna Zaks5bf5c2e2012-09-26 18:55:16 +0000201 return false;
202}
203
Anna Zaks31f69cc2012-09-29 00:20:38 +0000204void IvarInvalidationChecker::containsInvalidationMethod(
205 const ObjCContainerDecl *D, IvarInfo &OutInfo) {
Anna Zaks5bf5c2e2012-09-26 18:55:16 +0000206
207 // TODO: Cache the results.
208
209 if (!D)
Anna Zaks31f69cc2012-09-29 00:20:38 +0000210 return;
Anna Zaks5bf5c2e2012-09-26 18:55:16 +0000211
212 // Check all methods.
213 for (ObjCContainerDecl::method_iterator
214 I = D->meth_begin(),
215 E = D->meth_end(); I != E; ++I) {
216 const ObjCMethodDecl *MDI = *I;
217 if (isInvalidationMethod(MDI))
Anna Zaks31f69cc2012-09-29 00:20:38 +0000218 OutInfo.addInvalidationMethod(
219 cast<ObjCMethodDecl>(MDI->getCanonicalDecl()));
Anna Zaks5bf5c2e2012-09-26 18:55:16 +0000220 }
221
222 // If interface, check all parent protocols and super.
223 // TODO: Visit all categories in case the invalidation method is declared in
224 // a category.
225 if (const ObjCInterfaceDecl *InterfaceD = dyn_cast<ObjCInterfaceDecl>(D)) {
226 for (ObjCInterfaceDecl::protocol_iterator
227 I = InterfaceD->protocol_begin(),
228 E = InterfaceD->protocol_end(); I != E; ++I) {
Anna Zaks31f69cc2012-09-29 00:20:38 +0000229 containsInvalidationMethod(*I, OutInfo);
Anna Zaks5bf5c2e2012-09-26 18:55:16 +0000230 }
Anna Zaks31f69cc2012-09-29 00:20:38 +0000231 containsInvalidationMethod(InterfaceD->getSuperClass(), OutInfo);
232 return;
Anna Zaks5bf5c2e2012-09-26 18:55:16 +0000233 }
234
235 // If protocol, check all parent protocols.
236 if (const ObjCProtocolDecl *ProtD = dyn_cast<ObjCProtocolDecl>(D)) {
237 for (ObjCInterfaceDecl::protocol_iterator
238 I = ProtD->protocol_begin(),
239 E = ProtD->protocol_end(); I != E; ++I) {
Anna Zaks31f69cc2012-09-29 00:20:38 +0000240 containsInvalidationMethod(*I, OutInfo);
Anna Zaks5bf5c2e2012-09-26 18:55:16 +0000241 }
Anna Zaks31f69cc2012-09-29 00:20:38 +0000242 return;
Anna Zaks5bf5c2e2012-09-26 18:55:16 +0000243 }
244
245 llvm_unreachable("One of the casts above should have succeeded.");
246}
247
Anna Zaks377945c2012-09-27 21:57:14 +0000248bool IvarInvalidationChecker::trackIvar(const ObjCIvarDecl *Iv,
249 IvarSet &TrackedIvars) {
250 QualType IvQTy = Iv->getType();
251 const ObjCObjectPointerType *IvTy = IvQTy->getAs<ObjCObjectPointerType>();
252 if (!IvTy)
253 return false;
254 const ObjCInterfaceDecl *IvInterf = IvTy->getInterfaceDecl();
Anna Zaks31f69cc2012-09-29 00:20:38 +0000255
256 IvarInfo Info;
257 containsInvalidationMethod(IvInterf, Info);
258 if (Info.needsInvalidation()) {
259 TrackedIvars[cast<ObjCIvarDecl>(Iv->getCanonicalDecl())] = Info;
Anna Zaks377945c2012-09-27 21:57:14 +0000260 return true;
261 }
262 return false;
263}
264
Anna Zaks5bf5c2e2012-09-26 18:55:16 +0000265const ObjCIvarDecl *IvarInvalidationChecker::findPropertyBackingIvar(
266 const ObjCPropertyDecl *Prop,
267 const ObjCInterfaceDecl *InterfaceD,
Anna Zaks377945c2012-09-27 21:57:14 +0000268 IvarSet &TrackedIvars) {
Anna Zaks5bf5c2e2012-09-26 18:55:16 +0000269 const ObjCIvarDecl *IvarD = 0;
270
271 // Lookup for the synthesized case.
272 IvarD = Prop->getPropertyIvarDecl();
Anna Zaks377945c2012-09-27 21:57:14 +0000273 if (IvarD) {
274 if (TrackedIvars.count(IvarD)) {
275 return IvarD;
276 }
277 // If the ivar is synthesized we still want to track it.
278 if (trackIvar(IvarD, TrackedIvars))
279 return IvarD;
280 }
Anna Zaks5bf5c2e2012-09-26 18:55:16 +0000281
282 // Lookup IVars named "_PropName"or "PropName" among the tracked Ivars.
283 StringRef PropName = Prop->getIdentifier()->getName();
284 for (IvarSet::const_iterator I = TrackedIvars.begin(),
285 E = TrackedIvars.end(); I != E; ++I) {
286 const ObjCIvarDecl *Iv = I->first;
287 StringRef IvarName = Iv->getName();
288
289 if (IvarName == PropName)
290 return Iv;
291
292 SmallString<128> PropNameWithUnderscore;
293 {
294 llvm::raw_svector_ostream os(PropNameWithUnderscore);
295 os << '_' << PropName;
296 }
297 if (IvarName == PropNameWithUnderscore.str())
298 return Iv;
299 }
300
301 // Note, this is a possible source of false positives. We could look at the
302 // getter implementation to find the ivar when its name is not derived from
303 // the property name.
304 return 0;
305}
306
307void IvarInvalidationChecker::checkASTDecl(const ObjCMethodDecl *D,
308 AnalysisManager& Mgr,
309 BugReporter &BR) const {
310 // We are only interested in checking the cleanup methods.
311 if (!D->hasBody() || !isInvalidationMethod(D))
312 return;
313
314 // Collect all ivars that need cleanup.
315 IvarSet Ivars;
316 const ObjCInterfaceDecl *InterfaceD = D->getClassInterface();
Anna Zakse0c50fa2012-10-16 19:36:37 +0000317
318 // Collect ivars declared in this class, its extensions and its implementation
319 ObjCInterfaceDecl *IDecl = const_cast<ObjCInterfaceDecl *>(InterfaceD);
320 for (const ObjCIvarDecl *Iv = IDecl->all_declared_ivar_begin(); Iv;
321 Iv= Iv->getNextIvar())
Anna Zaks377945c2012-09-27 21:57:14 +0000322 trackIvar(Iv, Ivars);
Anna Zaks5bf5c2e2012-09-26 18:55:16 +0000323
Anna Zaks377945c2012-09-27 21:57:14 +0000324 // Construct Property/Property Accessor to Ivar maps to assist checking if an
Anna Zaks5bf5c2e2012-09-26 18:55:16 +0000325 // ivar which is backing a property has been reset.
Anna Zaks31f69cc2012-09-29 00:20:38 +0000326 MethToIvarMapTy PropSetterToIvarMap;
327 MethToIvarMapTy PropGetterToIvarMap;
Anna Zaks5bf5c2e2012-09-26 18:55:16 +0000328 PropToIvarMapTy PropertyToIvarMap;
Anna Zaks377945c2012-09-27 21:57:14 +0000329 IvarToPropMapTy IvarToPopertyMap;
Anna Zaksc3c26b72012-10-18 19:17:57 +0000330
331 ObjCInterfaceDecl::PropertyMap PropMap;
332 InterfaceD->collectPropertiesToImplement(PropMap);
333
334 for (ObjCInterfaceDecl::PropertyMap::iterator
335 I = PropMap.begin(), E = PropMap.end(); I != E; ++I) {
336 const ObjCPropertyDecl *PD = I->second;
Anna Zaks5bf5c2e2012-09-26 18:55:16 +0000337
338 const ObjCIvarDecl *ID = findPropertyBackingIvar(PD, InterfaceD, Ivars);
339 if (!ID) {
340 continue;
341 }
Anna Zaks5bf5c2e2012-09-26 18:55:16 +0000342
343 // Store the mappings.
344 PD = cast<ObjCPropertyDecl>(PD->getCanonicalDecl());
Anna Zaks5bf5c2e2012-09-26 18:55:16 +0000345 PropertyToIvarMap[PD] = ID;
Anna Zaks377945c2012-09-27 21:57:14 +0000346 IvarToPopertyMap[ID] = PD;
347
348 // Find the setter and the getter.
349 const ObjCMethodDecl *SetterD = PD->getSetterMethodDecl();
350 if (SetterD) {
351 SetterD = cast<ObjCMethodDecl>(SetterD->getCanonicalDecl());
Anna Zaks31f69cc2012-09-29 00:20:38 +0000352 PropSetterToIvarMap[SetterD] = ID;
Anna Zaks377945c2012-09-27 21:57:14 +0000353 }
354
355 const ObjCMethodDecl *GetterD = PD->getGetterMethodDecl();
356 if (GetterD) {
357 GetterD = cast<ObjCMethodDecl>(GetterD->getCanonicalDecl());
Anna Zaks31f69cc2012-09-29 00:20:38 +0000358 PropGetterToIvarMap[GetterD] = ID;
Anna Zaks377945c2012-09-27 21:57:14 +0000359 }
Anna Zaks5bf5c2e2012-09-26 18:55:16 +0000360 }
361
362
Anna Zaks31f69cc2012-09-29 00:20:38 +0000363 // Check which ivars have been invalidated in the method body.
364 bool CalledAnotherInvalidationMethod = false;
Anna Zaksbbff82f2012-10-01 20:34:04 +0000365 MethodCrawler(Ivars,
Anna Zaks31f69cc2012-09-29 00:20:38 +0000366 CalledAnotherInvalidationMethod,
367 PropSetterToIvarMap,
368 PropGetterToIvarMap,
Anna Zaksb9733ac2012-10-01 20:33:58 +0000369 PropertyToIvarMap,
370 BR.getContext()).VisitStmt(D->getBody());
Anna Zaks31f69cc2012-09-29 00:20:38 +0000371
372 if (CalledAnotherInvalidationMethod)
373 return;
Anna Zaks5bf5c2e2012-09-26 18:55:16 +0000374
375 // Warn on the ivars that were not accessed by the method.
376 for (IvarSet::const_iterator I = Ivars.begin(), E = Ivars.end(); I != E; ++I){
Anna Zaks31f69cc2012-09-29 00:20:38 +0000377 if (!I->second.isInvalidated()) {
Anna Zaks5bf5c2e2012-09-26 18:55:16 +0000378 const ObjCIvarDecl *IvarDecl = I->first;
379
380 PathDiagnosticLocation IvarDecLocation =
Anna Zaksb087bbf2012-09-27 19:45:08 +0000381 PathDiagnosticLocation::createEnd(D->getBody(), BR.getSourceManager(),
382 Mgr.getAnalysisDeclContext(D));
Anna Zaks5bf5c2e2012-09-26 18:55:16 +0000383
384 SmallString<128> sbuf;
385 llvm::raw_svector_ostream os(sbuf);
Anna Zaks377945c2012-09-27 21:57:14 +0000386
387 // Construct the warning message.
388 if (IvarDecl->getSynthesize()) {
389 const ObjCPropertyDecl *PD = IvarToPopertyMap[IvarDecl];
390 assert(PD &&
391 "Do we synthesize ivars for something other than properties?");
Anna Zaksc3c26b72012-10-18 19:17:57 +0000392 os << "Property "<< PD->getName() <<
393 " needs to be invalidated or set to nil";
Anna Zaks377945c2012-09-27 21:57:14 +0000394 } else {
395 os << "Instance variable "<< IvarDecl->getName()
Anna Zaks51431dc2012-10-15 22:48:17 +0000396 << " needs to be invalidated or set to nil";
Anna Zaks377945c2012-09-27 21:57:14 +0000397 }
Anna Zaks5bf5c2e2012-09-26 18:55:16 +0000398
Anna Zaksb087bbf2012-09-27 19:45:08 +0000399 BR.EmitBasicReport(D,
Anna Zaks5bf5c2e2012-09-26 18:55:16 +0000400 "Incomplete invalidation",
401 categories::CoreFoundationObjectiveC, os.str(),
402 IvarDecLocation);
403 }
404 }
405}
406
Anna Zaks31f69cc2012-09-29 00:20:38 +0000407void IvarInvalidationChecker::MethodCrawler::markInvalidated(
408 const ObjCIvarDecl *Iv) {
409 IvarSet::iterator I = IVars.find(Iv);
410 if (I != IVars.end()) {
411 // If InvalidationMethod is present, we are processing the message send and
412 // should ensure we are invalidating with the appropriate method,
413 // otherwise, we are processing setting to 'nil'.
414 if (InvalidationMethod)
415 I->second.markInvalidated(InvalidationMethod);
416 else
417 I->second.markInvalidated();
418 }
Anna Zaks5bf5c2e2012-09-26 18:55:16 +0000419}
420
Anna Zaks31f69cc2012-09-29 00:20:38 +0000421const Expr *IvarInvalidationChecker::MethodCrawler::peel(const Expr *E) const {
422 E = E->IgnoreParenCasts();
423 if (const PseudoObjectExpr *POE = dyn_cast<PseudoObjectExpr>(E))
424 E = POE->getSyntacticForm()->IgnoreParenCasts();
425 if (const OpaqueValueExpr *OVE = dyn_cast<OpaqueValueExpr>(E))
426 E = OVE->getSourceExpr()->IgnoreParenCasts();
427 return E;
428}
Anna Zaks5bf5c2e2012-09-26 18:55:16 +0000429
Anna Zaks31f69cc2012-09-29 00:20:38 +0000430void IvarInvalidationChecker::MethodCrawler::checkObjCIvarRefExpr(
431 const ObjCIvarRefExpr *IvarRef) {
432 if (const Decl *D = IvarRef->getDecl())
433 markInvalidated(cast<ObjCIvarDecl>(D->getCanonicalDecl()));
434}
435
436void IvarInvalidationChecker::MethodCrawler::checkObjCMessageExpr(
Anna Zaks5bf5c2e2012-09-26 18:55:16 +0000437 const ObjCMessageExpr *ME) {
438 const ObjCMethodDecl *MD = ME->getMethodDecl();
439 if (MD) {
440 MD = cast<ObjCMethodDecl>(MD->getCanonicalDecl());
Anna Zaks31f69cc2012-09-29 00:20:38 +0000441 MethToIvarMapTy::const_iterator IvI = PropertyGetterToIvarMap.find(MD);
442 if (IvI != PropertyGetterToIvarMap.end())
443 markInvalidated(IvI->second);
Anna Zaks5bf5c2e2012-09-26 18:55:16 +0000444 }
Anna Zaks5bf5c2e2012-09-26 18:55:16 +0000445}
446
Anna Zaks31f69cc2012-09-29 00:20:38 +0000447void IvarInvalidationChecker::MethodCrawler::checkObjCPropertyRefExpr(
Anna Zaks5bf5c2e2012-09-26 18:55:16 +0000448 const ObjCPropertyRefExpr *PA) {
449
450 if (PA->isExplicitProperty()) {
451 const ObjCPropertyDecl *PD = PA->getExplicitProperty();
452 if (PD) {
453 PD = cast<ObjCPropertyDecl>(PD->getCanonicalDecl());
Anna Zaks31f69cc2012-09-29 00:20:38 +0000454 PropToIvarMapTy::const_iterator IvI = PropertyToIvarMap.find(PD);
455 if (IvI != PropertyToIvarMap.end())
456 markInvalidated(IvI->second);
Anna Zaks5bf5c2e2012-09-26 18:55:16 +0000457 return;
458 }
459 }
460
461 if (PA->isImplicitProperty()) {
462 const ObjCMethodDecl *MD = PA->getImplicitPropertySetter();
463 if (MD) {
464 MD = cast<ObjCMethodDecl>(MD->getCanonicalDecl());
Anna Zaks31f69cc2012-09-29 00:20:38 +0000465 MethToIvarMapTy::const_iterator IvI =PropertyGetterToIvarMap.find(MD);
466 if (IvI != PropertyGetterToIvarMap.end())
467 markInvalidated(IvI->second);
Anna Zaks5bf5c2e2012-09-26 18:55:16 +0000468 return;
469 }
470 }
Anna Zaks31f69cc2012-09-29 00:20:38 +0000471}
472
473bool IvarInvalidationChecker::MethodCrawler::isZero(const Expr *E) const {
474 E = peel(E);
Anna Zaks31f69cc2012-09-29 00:20:38 +0000475
Anna Zaksb9733ac2012-10-01 20:33:58 +0000476 return (E->isNullPointerConstant(Ctx, Expr::NPC_ValueDependentIsNotNull)
477 != Expr::NPCK_NotNull);
Anna Zaks31f69cc2012-09-29 00:20:38 +0000478}
479
480void IvarInvalidationChecker::MethodCrawler::check(const Expr *E) {
481 E = peel(E);
482
Anna Zaks31f69cc2012-09-29 00:20:38 +0000483 if (const ObjCIvarRefExpr *IvarRef = dyn_cast<ObjCIvarRefExpr>(E)) {
484 checkObjCIvarRefExpr(IvarRef);
485 return;
486 }
487
488 if (const ObjCPropertyRefExpr *PropRef = dyn_cast<ObjCPropertyRefExpr>(E)) {
489 checkObjCPropertyRefExpr(PropRef);
490 return;
491 }
492
493 if (const ObjCMessageExpr *MsgExpr = dyn_cast<ObjCMessageExpr>(E)) {
494 checkObjCMessageExpr(MsgExpr);
495 return;
496 }
497}
498
499void IvarInvalidationChecker::MethodCrawler::VisitBinaryOperator(
500 const BinaryOperator *BO) {
Anna Zaksb9733ac2012-10-01 20:33:58 +0000501 VisitStmt(BO);
502
503 if (BO->getOpcode() != BO_Assign)
Anna Zaks31f69cc2012-09-29 00:20:38 +0000504 return;
505
506 // Do we assign zero?
507 if (!isZero(BO->getRHS()))
508 return;
509
510 // Check the variable we are assigning to.
511 check(BO->getLHS());
Anna Zaks31f69cc2012-09-29 00:20:38 +0000512}
513
514void IvarInvalidationChecker::MethodCrawler::VisitObjCMessageExpr(
515 const ObjCMessageExpr *ME) {
516 const ObjCMethodDecl *MD = ME->getMethodDecl();
517 const Expr *Receiver = ME->getInstanceReceiver();
518
519 // Stop if we are calling '[self invalidate]'.
520 if (Receiver && isInvalidationMethod(MD))
Anna Zaksbbff82f2012-10-01 20:34:04 +0000521 if (Receiver->isObjCSelfExpr()) {
522 CalledAnotherInvalidationMethod = true;
523 return;
Anna Zaks31f69cc2012-09-29 00:20:38 +0000524 }
525
526 // Check if we call a setter and set the property to 'nil'.
527 if (MD && (ME->getNumArgs() == 1) && isZero(ME->getArg(0))) {
528 MD = cast<ObjCMethodDecl>(MD->getCanonicalDecl());
529 MethToIvarMapTy::const_iterator IvI = PropertySetterToIvarMap.find(MD);
530 if (IvI != PropertySetterToIvarMap.end()) {
531 markInvalidated(IvI->second);
532 return;
533 }
534 }
535
536 // Check if we call the 'invalidation' routine on the ivar.
537 if (Receiver) {
538 InvalidationMethod = MD;
539 check(Receiver->IgnoreParenCasts());
540 InvalidationMethod = 0;
541 }
542
543 VisitStmt(ME);
Anna Zaks5bf5c2e2012-09-26 18:55:16 +0000544}
545}
546
547// Register the checker.
548void ento::registerIvarInvalidationChecker(CheckerManager &mgr) {
549 mgr.registerChecker<IvarInvalidationChecker>();
550}