aboutsummaryrefslogtreecommitdiff
path: root/lib/Analysis/CheckObjCDealloc.cpp
AgeCommit message (Expand)Author
2010-01-25Split libAnalysis into two libraries: libAnalysis and libChecker.Ted Kremenek
2009-11-29Port BugReporter and BugType to StringRef.Benjamin Kramer
2009-09-25Fix checking for a null pointer constant when the expression itself isDouglas Gregor
2009-09-09Remove tabs, and whitespace cleanups.Mike Stump
2009-08-21Remove 'AnalysisContext::setDecl()', as we the Decl associated with anTed Kremenek
2009-07-16Remove ASTContext::isObjCObjectPointerType().Steve Naroff
2009-06-30De-ASTContext-ify DeclContext.Argyrios Kyrtzidis
2009-06-30Remove the ASTContext parameter from the getBody() methods of Decl and subcla...Argyrios Kyrtzidis
2009-06-30Remove the ASTContext parameter from the attribute-related methods of Decl.Argyrios Kyrtzidis
2009-06-18Move the static DeclAttrs map into ASTContext. Fixes <rdar://problem/6983177>.Douglas Gregor
2009-04-23Eliminate the three SmallVectors in ObjCImplDecl (for instanceDouglas Gregor
2009-04-18FunctionDecl::getBody() is getting an ASTContext argument for use inDouglas Gregor
2009-02-11Per PR 3187, disable the missing -dealloc check for classes that subclass Sen...Ted Kremenek
2008-12-08'self.myIvar = nil' (properties) only releases myIvar when the property has k...Ted Kremenek
2008-11-24Rename NamedDecl::getName() to getNameAsString(). Replace a bunch of Chris Lattner
2008-11-22New AST node to access "implicit" setter/getter using property dor syntax.Fariborz Jahanian
2008-11-04Add a new expression class, ObjCSuperExpr, to handle the Objective-C 'super'....Douglas Gregor
2008-10-30Distinguish between self.X = ... where self.X is a property reference and sel...Ted Kremenek
2008-10-30Patch by Nikita Zhuk:Ted Kremenek
2008-10-29Patch by Nikita Zhuk:Ted Kremenek
2008-08-10rename PreDefinedExpr -> PredefinedExprChris Lattner
2008-07-25Remove call to isSEL and isSEL itself since the call is dead (isObjCObjectPoi...Ted Kremenek
2008-07-25Only warn about missing/incomplete -dealloc implementations when a class cont...Ted Kremenek
2008-07-24Use ASTContext::isObjCObjectPointerType() to check if an ivar is a reference ...Ted Kremenek
2008-07-24Don't issue a missing +dealloc warning for classes that just contain SEL ivars.Ted Kremenek
2008-07-15For the MissingDealloc check, don't treat IBOutlet ivars as being needed to b...Ted Kremenek
2008-07-14Added method "EmitBasicReport" to BugReporter to simplify the emission of sim...Ted Kremenek
2008-07-11Fix comment.Ted Kremenek
2008-07-07Do not emit a "missing -dealloc" warning if a class contains no ivars that ar...Ted Kremenek
2008-07-03Skip the "-dealloc" check if a ObjC class contains no ivars.Ted Kremenek
2008-07-03For the -dealloc checker, check the LangOptions to determine whether or not t...Ted Kremenek
2008-07-03Added static analysis check to see if a subclass of NSObject implements -deal...Ted Kremenek