aboutsummaryrefslogtreecommitdiff
path: root/AST/Decl.cpp
AgeCommit message (Expand)Author
2008-03-15Make a major restructuring of the clang tree: introduce a top-levelChris Lattner
2008-03-15move the ASTContext argument to be first in the argument list of Chris Lattner
2008-03-15Switch over functiondecl. This makes it obvious that the ASTContextChris Lattner
2008-03-15switch the VarDecl allocation model to go through ASTContext.Chris Lattner
2008-03-15start switching decls over to using an allocator controlled by ASTContext. Chris Lattner
2008-03-15various minor cleanups.Chris Lattner
2008-02-25convert tabs to spaces, patch by Mike Stump!Chris Lattner
2008-02-16More comments from Chris.Anders Carlsson
2008-02-15Store attributes in a global hash map instead.Anders Carlsson
2008-02-15Get rid of AttributeList in the AST and use the new Attr class insteadAnders Carlsson
2008-02-08Put back the top-level asm code; all tests pass now.Anders Carlsson
2008-02-08Back out 46855 for now, it causes test failures on Darwin.Anders Carlsson
2008-02-07Handle top-level asm declarations.Anders Carlsson
2008-01-23Missing ObjC stuff. Patch by Mike Stump.Fariborz Jahanian
2008-01-17Renamed getSynthesizedSelectorSize to getSynthesizedMethodSize. Compute metho...Fariborz Jahanian
2008-01-17Computed length of a __func__ identifier used in an objective-c method correc...Fariborz Jahanian
2008-01-12Add first pieces of support for parsing and representing Chris Lattner
2008-01-07Substituted all instances of the string "Objc" for "ObjC". This fixesTed Kremenek
2007-12-29Don't attribute in file headers anymore. See llvmdev for theChris Lattner
2007-12-20Patch to do type-checking for objctive-c's object types.Fariborz Jahanian
2007-12-19Various tweaks to the get/lookup instance/class method API's.Steve Naroff
2007-12-14- Remove getInstanceMethods/getClassMethods API on ObjcInterfaceDecl, ObjcPro...Steve Naroff
2007-12-12fix typoChris Lattner
2007-12-12more cleanups changing things like getInstanceVariables to iterators.Chris Lattner
2007-12-12resolve some fixmes and clean up some code by eliminating the get*Vars apis t...Chris Lattner
2007-12-12start cleaning up interfaces for objc bits and pieces by switching to anChris Lattner
2007-12-07Implemented when static typing is combined with protocols and use as receiverFariborz Jahanian
2007-12-06Fix a bug handling typedefs of functions, patch by Nuno Lopes!Chris Lattner
2007-12-01simplify some code, add support for functions without a protoChris Lattner
2007-11-12Add category method definitions incrementally, removing a FIXME (like we do f...Steve Naroff
2007-11-12- Minor cleanup to yesterday's changes to Sema::ObjcActOnStartOfMethodDef();Steve Naroff
2007-11-11This is the last 5% of the solution to teaching Sema::ActOnInstanceMessage() ...Steve Naroff
2007-11-11Teach Sema::ActOnInstanceMessage() about private methods. That is, methods de...Steve Naroff
2007-11-06Patch for objc2's property ASTs, as well as pretty-priting the ASTs.Fariborz Jahanian
2007-10-30- Add location info to category/protocol AST'sSteve Naroff
2007-10-30More support for rewriting ObjC intefaces. Still some edge cases to handle...Steve Naroff
2007-10-29This commit contains lot's of small tweaks to how we pass around and store So...Steve Naroff
2007-10-14- Teach ObjcInterfaceDecl::lookupInstance/ClassMethod to look through protocols.Steve Naroff
2007-10-14Add category lookup (removing a couple FIXME's).Steve Naroff
2007-10-11This patch implementa objective-c's @compatibilty-alias declaration.Fariborz Jahanian
2007-10-08Rename FileVariable -> FileVar for consistency with its class name, Chris Lattner
2007-10-07move IdentifierTable.h from liblex to libbasic.Chris Lattner
2007-10-06introduce a new NamedDecl class, switch a couple of things over to using it.Chris Lattner
2007-10-04More tab removal activity.Fariborz Jahanian
2007-10-04Fixed tabs in couple of sources.Fariborz Jahanian
2007-10-02Unified such names as protocol references, instance methods and class methodsFariborz Jahanian
2007-10-02- Add ObjcInterfaceDecl::lookupInstanceMethod(), lookupClassMethod().Steve Naroff
2007-10-02This patch introduces the ObjcCategoryImplDecl class and does the checking re...Fariborz Jahanian
2007-10-01Move ObjC decls to DeclObjC.h, a new AST header.Steve Naroff
2007-10-01Took care of clatter's suggestions, dated.Fariborz Jahanian