Age | Commit message (Expand) | Author |
2012-01-01 | Eliminate the ForwardDecl/InitiallyForwardDecl bits from ObjCProtocolDecl. Th... | Douglas Gregor |
2012-01-01 | Eliminate ObjCForwardProtocolDecl, which is redundant now that | Douglas Gregor |
2012-01-01 | Wire up redeclaration chains for Objective-C protocols, so that both | Douglas Gregor |
2012-01-01 | Introduce the core infrastructure needed to model redeclaration chains | Douglas Gregor |
2012-01-01 | Move the data that corresponds to the definition of a protocol into a | Douglas Gregor |
2011-12-27 | Eliminate ObjCClassDecl, which is redundant now that ObjCInterfaceDecl | Douglas Gregor |
2011-12-23 | objective-c: Use class definition AST in several situations when | Fariborz Jahanian |
2011-12-20 | Unweaken vtables as per http://llvm.org/docs/CodingStandards.html#ll_virtual_... | David Blaikie |
2011-12-16 | Make sure we're always setting the previous declaration of an ObjCInterfaceDecl | Douglas Gregor |
2011-12-16 | If there is a definition of an ObjCInterfaceDecl, make it the Decl returned f... | Douglas Gregor |
2011-12-16 | Fix chaining of ObjCInterfaceDecl redeclarations | Douglas Gregor |
2011-12-15 | Keep track of all declarations of an Objective-C class (both forward | Douglas Gregor |
2011-12-15 | Extend ObjCInterfaceDecl::DefinitionData to contain a pointer to the | Douglas Gregor |
2011-12-15 | Introduce the core infrastructure needed to model a complete | Douglas Gregor |
2011-12-15 | Move the definition-specific data of ObjCInterfaceDecl into a | Douglas Gregor |
2011-12-14 | Eliminate the vistigial ObjCClassDecl::ObjCClassRef, and inline its | Douglas Gregor |
2011-12-09 | Save category name loc in ObjCCategoryImplDecl, patch by Jason Haslam! | Argyrios Kyrtzidis |
2011-11-15 | Use Decl's isImplicit field to indicate whether an ObjCInterfaceDecl is 'Impl... | Argyrios Kyrtzidis |
2011-11-14 | ARC: make assignment to 'self' within class methods illegal. Fixes <rdar://p... | Ted Kremenek |
2011-11-12 | [PCH] When completing an objc forward reference, do not serialize the chain o... | Argyrios Kyrtzidis |
2011-10-25 | Relax restriction of assigning to 'self' in ARC when a method is attributed w... | Ted Kremenek |
2011-10-19 | Don't forget to complete the objc interface before asking for information, | Argyrios Kyrtzidis |
2011-10-17 | Have ObjCMethodDecl::getCanonicalDecl take into account redeclared methods. | Argyrios Kyrtzidis |
2011-10-17 | Keep track when a ObjC interface/protocol was initially created as a forward ... | Argyrios Kyrtzidis |
2011-10-14 | [PCH] Serialize info about redeclared objc methods. | Argyrios Kyrtzidis |
2011-10-14 | Really protect from infinite loop when there are objc method redeclarations. | Argyrios Kyrtzidis |
2011-10-14 | Keep track of objc method redeclarations in the same interface. | Argyrios Kyrtzidis |
2011-10-04 | Improve location fidelity of objc decls. | Argyrios Kyrtzidis |
2011-10-03 | Allow getting all source locations of selector identifiers in a ObjCMethodDecl. | Argyrios Kyrtzidis |
2011-10-03 | Pass from the parser the locations of selector identifiers when creating | Argyrios Kyrtzidis |
2011-10-03 | Don't keep NumSelectorArgs in the ObjCMethodDecl, the number can be derived f... | Argyrios Kyrtzidis |
2011-09-23 | Removing a bunch of dead returns/breaks after llvm_unreachables. | David Blaikie |
2011-09-23 | Switch assert(0/false) llvm_unreachable. | David Blaikie |
2011-09-01 | Support importing of ObjC categories from modules. | Argyrios Kyrtzidis |
2011-08-30 | Remove a few mutating ObjCCategoryDecl methods. | Argyrios Kyrtzidis |
2011-08-28 | Warn on missing [super finalize] calls. | Nico Weber |
2011-08-27 | objective-c: Treat top-level objective-c declarations | Fariborz Jahanian |
2011-08-17 | Fix else style. No functionality change intended. | Chad Rosier |
2011-08-17 | Mark objc methods that are implicitly declared for properties (not user-decla... | Argyrios Kyrtzidis |
2011-07-23 | remove unneeded llvm:: namespace qualifiers on some core types now that LLVM.... | Chris Lattner |
2011-07-22 | Move this ObjCImplementationDecl member function into libAST | John McCall |
2011-07-05 | objc-arc: enforce performSelector rules in rejecting retaining selectors | Fariborz Jahanian |
2011-06-17 | Objective-C fast enumeration loop variables are not retained in ARC, but | John McCall |
2011-06-15 | Automatic Reference Counting. | John McCall |
2011-06-11 | Implement Objective-C Related Result Type semantics. | Douglas Gregor |
2011-03-08 | Fixed source range for all DeclaratorDecl's. | Abramo Bagnara |
2011-03-02 | Work around a misdesigned GCC warning. | John McCall |
2011-03-02 | Provide an attribute, objc_method_family, to allow the inferred family | John McCall |
2011-03-02 | Move some of the logic about classifying Objective-C methods into | John McCall |
2010-12-03 | Diagnose when accessing property in a class method and | Fariborz Jahanian |