aboutsummaryrefslogtreecommitdiff
path: root/lib/AST/DeclObjC.cpp
AgeCommit message (Expand)Author
2009-07-28Implement ObjCMethodDecl::getCanonicalDecl().Argyrios Kyrtzidis
2009-07-28-Add ObjCCategoryImplDecl::getCategoryClass() which returns the category inte...Argyrios Kyrtzidis
2009-07-28Use ObjCImplDecl in place of ObjCCategoryImplDecl/ObjCImplementationDecl.Argyrios Kyrtzidis
2009-07-27Make ObjCImplDecl inherit from ObjCContainerDecl.Argyrios Kyrtzidis
2009-07-25Refactor ObjCImplDecl::getInstanceMethod/getClassMethod into oneArgyrios Kyrtzidis
2009-07-25Refactor ObjCInterfaceDecl::lookupInstanceMethod/lookupClassMethod into oneArgyrios Kyrtzidis
2009-07-25Refactor ObjCProtocolDecl::lookupInstanceMethod/lookupClassMethod into oneArgyrios Kyrtzidis
2009-07-25Refactor ObjCContainerDecl::getInstanceMethod/getClassMethod into oneArgyrios Kyrtzidis
2009-07-21Disambiguate an if statement.Duncan Sands
2009-07-21Implement the virtual getNextRedeclaration() for ObjCMethodDecl.Argyrios Kyrtzidis
2009-07-21Remove the ObjCCategoryImpls vector from Sema class.Argyrios Kyrtzidis
2009-07-21- Introduce ASTContext::getObjCImplementation() and ASTContext::setObjCImplem...Argyrios Kyrtzidis
2009-07-10This patch includes a conceptually simple, but very intrusive/pervasive change. Steve Naroff
2009-06-30De-ASTContext-ify DeclContext.Argyrios Kyrtzidis
2009-06-06Adds synthesize ivars to DeclContext.Fariborz Jahanian
2009-06-05Use of DeclContext for objc's ivars. No functionalityFariborz Jahanian
2009-05-22(Next runtime only) check to see if class implements forwardInvocation method Fariborz Jahanian
2009-04-23The ivars in an ObjCImplementationDecl are now stored in theDouglas Gregor
2009-04-23PCH (de-)serialization for ObjCImplDecl. This can't be tested yet.Douglas Gregor
2009-04-23Eliminate the three SmallVectors in ObjCImplDecl (for instanceDouglas Gregor
2009-04-22Remove lookupFieldDeclFromIvar from ObjCIvarDecl interface.Daniel Dunbar
2009-04-22Revert r69771, I missed some (obvious) details. :/Daniel Dunbar
2009-04-22Mark another TypeForDecl const and make getObjCInterfaceType's argument const.Daniel Dunbar
2009-04-22Rework the shadow struct that is layed out for Objective-C classes.Daniel Dunbar
2009-04-21Make sure to mark the interface as completed when we see anDaniel Dunbar
2009-04-20Add pch reader/writer support for ObjCMethodDecl.Steve Naroff
2009-04-20Remove non-const form of lookupFieldDeclForIvar.Daniel Dunbar
2009-04-09Propagate the ASTContext to various AST traversal and lookup functions.Douglas Gregor
2009-04-02Fix up lookup rules for properties declared inFariborz Jahanian
2009-04-01Fix a bug in declaration of property in continuationFariborz Jahanian
2009-04-01Nonfragile ivar synthesis with property is in a continuationFariborz Jahanian
2009-03-31simplify some castingChris Lattner
2009-03-31fe support for objc2's nonfragile-abi synthesized ivars.Fariborz Jahanian
2009-03-01Fix <rdar://problem/6619539> incompatible pointer types sending 'XCElementSpa...Steve Naroff
2009-02-28"This patch addresses two FIXME on ObjCCategoryImplDecl:Chris Lattner
2009-02-26Fix ObjCInterfaceDecl::lookupInstanceMethod()/lookupClassMethod() to search i...Steve Naroff
2009-02-22Contains the following (related to problems found while investigting <rdar://...Steve Naroff
2009-02-20allocate and dellocate objc decl list through AST Context instead ofChris Lattner
2009-02-20add plumbing to get ASTContext& down to allocation/deallocation points in Obj...Chris Lattner
2009-02-20newly factored, we can now move the set and destroy methods out of line.Chris Lattner
2009-02-20rename ObjCList::clear() -> ObjCList::Destroy(). Require that destroy is calledChris Lattner
2009-02-20rearrange the contents of DeclObjC to be by-class. Fix some 80 column issuesChris Lattner
2009-02-20destroy should forward to base class.Chris Lattner
2009-02-20move the @implementation ivar list to being an ObjCList, which preventsChris Lattner
2009-02-20remove some slow O(n) methods.Chris Lattner
2009-02-20Change ObjCForwardProtocolDecl to use an ObjCList.Chris Lattner
2009-02-20move the interace list of @class to use ObjCList.Chris Lattner
2009-02-20remove a dead list.Chris Lattner
2009-02-20switch ObjCMethodDecl's parameter list from being explicitly managed to an Ob...Chris Lattner
2009-02-20switch the interface ivar list from being explicitly managed to using ObjCList.Chris Lattner