1. 0e5ad25 More support for ivars in class extension. by Fariborz Jahanian · 15 years ago
  2. 2576061 Class continuation now has its own property ast for by Fariborz Jahanian · 15 years ago
  3. d050240 Patch to implement rewriting of properties. Fixes radar 7562952. by Fariborz Jahanian · 15 years ago
  4. 3db211b Improve location information for Objective-C category declarations. We by Douglas Gregor · 15 years ago
  5. 18df52b Keep track of the source locations for each protocol reference in by Douglas Gregor · 15 years ago
  6. a93c934 DeclaratorInfo -> TypeSourceInfo. Makes an effort to rename associated variables, by John McCall · 15 years ago
  7. 2dbdd62 Add ObjCClassDecl::getSourceRange(). by Ted Kremenek · 15 years ago
  8. 321c22f Add SourceLocations to ObjCClassDecl for the class identifiers referenced by @class. by Ted Kremenek · 15 years ago
  9. a6f14e1 Property declared in continuation class can only be used to by Fariborz Jahanian · 15 years ago
  10. 0d69b8c - Add/tweak some comments. by Steve Naroff · 15 years ago
  11. b106fc6 tweaked my last patch to 1) preserve the protocol in by Fariborz Jahanian · 15 years ago
  12. 339798e Patch to implement Protocols on class extensions. by Fariborz Jahanian · 15 years ago
  13. d789d3d - Remove Sema::FindMethodInNestedImplementations(). by Steve Naroff · 15 years ago
  14. 1eb4433 Remove tabs, and whitespace cleanups. by Mike Stump · 15 years ago
  15. 3a082d8 Vastly improve PredefinedExpr output, both in Sema and CodeGen. Patch by Sam Weinig! by Anders Carlsson · 15 years ago
  16. a1d5662 Introduce DeclaratorDecl and pass DeclaratorInfo through the Decl/Sema interfaces. by Argyrios Kyrtzidis · 15 years ago
  17. 0fd8904 Patch to warn if a property which is 'assign' by default by Fariborz Jahanian · 15 years ago
  18. e7f9d30 Implement ObjCMethodDecl::getCanonicalDecl(). by Argyrios Kyrtzidis · 15 years ago
  19. 4292073 -Add ObjCCategoryImplDecl::getCategoryClass() which returns the category interface decl. by Argyrios Kyrtzidis · 15 years ago
  20. a853037 Use ObjCImplDecl in place of ObjCCategoryImplDecl/ObjCImplementationDecl. by Argyrios Kyrtzidis · 15 years ago
  21. aecae62 Make ObjCImplDecl inherit from ObjCContainerDecl. by Argyrios Kyrtzidis · 15 years ago
  22. 16f06bb Refactor ObjCImplDecl::getInstanceMethod/getClassMethod into one by Argyrios Kyrtzidis · 15 years ago
  23. aa5420c Refactor ObjCInterfaceDecl::lookupInstanceMethod/lookupClassMethod into one by Argyrios Kyrtzidis · 15 years ago
  24. 094e2bb Refactor ObjCProtocolDecl::lookupInstanceMethod/lookupClassMethod into one by Argyrios Kyrtzidis · 15 years ago
  25. 467c0b1 Refactor ObjCContainerDecl::getInstanceMethod/getClassMethod into one by Argyrios Kyrtzidis · 15 years ago
  26. 98f2cca Disambiguate an if statement. by Duncan Sands · 15 years ago
  27. 57ea6be Implement the virtual getNextRedeclaration() for ObjCMethodDecl. by Argyrios Kyrtzidis · 15 years ago
  28. 1cb35dd Remove the ObjCCategoryImpls vector from Sema class. by Argyrios Kyrtzidis · 15 years ago
  29. 8a1d722 - Introduce ASTContext::getObjCImplementation() and ASTContext::setObjCImplementation() which use a DenseMap to associate by Argyrios Kyrtzidis · 15 years ago
  30. 14108da This patch includes a conceptually simple, but very intrusive/pervasive change. by Steve Naroff · 15 years ago
  31. 17945a0 De-ASTContext-ify DeclContext. by Argyrios Kyrtzidis · 15 years ago
  32. 8019a7b Adds synthesize ivars to DeclContext. by Fariborz Jahanian · 16 years ago
  33. 496b5a8 Use of DeclContext for objc's ivars. No functionality change. More to follow. by Fariborz Jahanian · 16 years ago
  34. cd18762 (Next runtime only) check to see if class implements forwardInvocation method by Fariborz Jahanian · 16 years ago
  35. 8f36aba The ivars in an ObjCImplementationDecl are now stored in the by Douglas Gregor · 16 years ago
  36. 2c2d43c PCH (de-)serialization for ObjCImplDecl. This can't be tested yet. by Douglas Gregor · 16 years ago
  37. 653f1b1 Eliminate the three SmallVectors in ObjCImplDecl (for instance by Douglas Gregor · 16 years ago
  38. a243578 Remove lookupFieldDeclFromIvar from ObjCIvarDecl interface. by Daniel Dunbar · 16 years ago
  39. d4ae6c0 Revert r69771, I missed some (obvious) details. :/ by Daniel Dunbar · 16 years ago
  40. 3b3a458 Mark another TypeForDecl const and make getObjCInterfaceType's argument const. by Daniel Dunbar · 16 years ago
  41. 0c45793 Rework the shadow struct that is layed out for Objective-C classes. by Daniel Dunbar · 16 years ago
  42. 24c8991 Make sure to mark the interface as completed when we see an by Daniel Dunbar · 16 years ago
  43. 53c9d8a Add pch reader/writer support for ObjCMethodDecl. by Steve Naroff · 16 years ago
  44. 60952f9 Remove non-const form of lookupFieldDeclForIvar. by Daniel Dunbar · 16 years ago
  45. 6ab3524 Propagate the ASTContext to various AST traversal and lookup functions. by Douglas Gregor · 16 years ago
  46. d09a456 Fix up lookup rules for properties declared in objc's continuation class. by Fariborz Jahanian · 16 years ago
  47. 22b6e06 Fix a bug in declaration of property in continuation by Fariborz Jahanian · 16 years ago
  48. 99eee36 Nonfragile ivar synthesis with property is in a continuation class. by Fariborz Jahanian · 16 years ago
  49. d13d302 simplify some casting by Chris Lattner · 16 years ago
  50. af3e722 fe support for objc2's nonfragile-abi synthesized ivars. by Fariborz Jahanian · 16 years ago
  51. 91b0b0c Fix <rdar://problem/6619539> incompatible pointer types sending 'XCElementSpacer *', expected 'XCElement *' (not handling protocol signatures correctly?). by Steve Naroff · 16 years ago
  52. 3aa1861 "This patch addresses two FIXME on ObjCCategoryImplDecl: by Chris Lattner · 16 years ago
  53. b558422 Fix ObjCInterfaceDecl::lookupInstanceMethod()/lookupClassMethod() to search in inherited protocols. by Steve Naroff · 16 years ago
  54. 0de21fd Contains the following (related to problems found while investigting <rdar://problem/6497631> Message lookup is sometimes different than gcc's). by Steve Naroff · 16 years ago
  55. 4ee413b allocate and dellocate objc decl list through AST Context instead of by Chris Lattner · 16 years ago
  56. 38af2de add plumbing to get ASTContext& down to allocation/deallocation points in ObjCList, by Chris Lattner · 16 years ago
  57. 11e1e1a newly factored, we can now move the set and destroy methods out of line. by Chris Lattner · 16 years ago
  58. 88cf7a1 rename ObjCList::clear() -> ObjCList::Destroy(). Require that destroy is called by Chris Lattner · 16 years ago
  59. ab35163 rearrange the contents of DeclObjC to be by-class. Fix some 80 column issues by Chris Lattner · 16 years ago
  60. 077e0f0 destroy should forward to base class. by Chris Lattner · 16 years ago
  61. 7a21bd0 move the @implementation ivar list to being an ObjCList, which prevents by Chris Lattner · 16 years ago
  62. cafeb35 remove some slow O(n) methods. by Chris Lattner · 16 years ago
  63. 07fa774 Change ObjCForwardProtocolDecl to use an ObjCList. by Chris Lattner · 16 years ago
  64. 6795605 move the interace list of @class to use ObjCList. by Chris Lattner · 16 years ago
  65. 4a323d9 remove a dead list. by Chris Lattner · 16 years ago
  66. 2073216 switch ObjCMethodDecl's parameter list from being explicitly managed to an ObjCList. by Chris Lattner · 16 years ago
  67. e881483 switch the interface ivar list from being explicitly managed to using ObjCList. by Chris Lattner · 16 years ago
  68. 0b7ebb3 move more objc destruction out of dtors into Destroy. by Chris Lattner · 16 years ago
  69. 411280e move some objc decl destruction out of dtors into Destroy method. by Chris Lattner · 16 years ago
  70. 0c00aac All Decls have a DeclContext now, hooray! Fans of consistency rejoice. by Argyrios Kyrtzidis · 16 years ago
  71. a5afdd0 Remove FindIvarDeclaration. Use lookupInstanceVariable is is functionally by Fariborz Jahanian · 16 years ago
  72. d6eed1c wrap long lines. by Chris Lattner · 16 years ago
  73. 3e97049 Remove many references to ASTContext::getAllocator(), replacing them with calls to the recently added placement new (which uses ASTContext's allocator for memory). Also added ASTContext::Deallocate(). by Steve Naroff · 16 years ago
  74. 4afa39d Remove ScopedDecl, collapsing all of its functionality into Decl, so by Douglas Gregor · 16 years ago
  75. f034e9c Patch to allow @dynamic synthesis of property in a category, by Fariborz Jahanian · 16 years ago
  76. ee49d04 Fix crasher due to use-after-release: DeclContext now owns all ObjCMethodDecls, and shouldn't be released elsewhere. by Ted Kremenek · 16 years ago
  77. d1fa644 Patch to supprt case of readonly property being by Fariborz Jahanian · 16 years ago
  78. 93983f8 Convert property implementation to DeclContext::addDecl(). by Steve Naroff · 16 years ago
  79. 6327e0d A few property related cleanups to ObjCContainerDecl AST. by Steve Naroff · 16 years ago
  80. 2129212 Explicit declaration of property setters over-ride by Fariborz Jahanian · 16 years ago
  81. a66793e This patch removes mergeProperties and does the property lookup by Fariborz Jahanian · 16 years ago
  82. f8d49f6 Provide a new kind of iterator, the specific_decl_iterator, that by Douglas Gregor · 16 years ago
  83. 09c4719 Move property API's up to ObjCContainerDecl (removing a lot of duplicate code). by Steve Naroff · 16 years ago
  84. 84efc04 Fix crash on null deference when searching for readwrite properties in by Daniel Dunbar · 16 years ago
  85. d043410 Addressed the issue in <rdar://problem/6479085>, where we failed to by Douglas Gregor · 16 years ago
  86. 6321c0a Fix ObjCInterfaceDecl::Destroy and ObjCProtocolDecl::Destroy to iterate and destroy all contained ObjCMethodDecls in one sweep. This fixes a use-after-free error found by valgrind. by Ted Kremenek · 16 years ago
  87. 92f863b Removed ObjCContainerDecl::getPropertyMethods()...doesn't belong in the AST. by Steve Naroff · 16 years ago
  88. 3e0a540 Remove redundant method context (now that ObjCMethodDecl isa ScopedDecl). by Steve Naroff · 16 years ago
  89. 0701bbb This is a large/messy diff that unifies the ObjC AST's with DeclContext. by Steve Naroff · 16 years ago
  90. e4f039e ObjC AST cleanups/simplifications (phase 1). by Steve Naroff · 16 years ago
  91. 669e8d3 Fixed a bug showed up the meta-data for protocol by Fariborz Jahanian · 16 years ago
  92. d8df682 Fix http://llvm.org/bugs/show_bug.cgi?id=3189. by Steve Naroff · 16 years ago
  93. a769c00 This patch will build the Records lazily per Steve's comments. by Fariborz Jahanian · 16 years ago
  94. c9ca4a2 Added comment to Steve's patch to clarify the case. by Fariborz Jahanian · 16 years ago
  95. 7d1117d Fix <rdar://problem/6450964> clang on xcode: Assertion failed: (RecordForDecl && "lookupFieldDeclForIvar no storage for class"). by Steve Naroff · 16 years ago
  96. 3281eff Diagnose that ivars in current and super class may not by Fariborz Jahanian · 16 years ago
  97. 9ee92e8 Name of addLayoutToClass is confusing as no layout calculation by Fariborz Jahanian · 16 years ago
  98. fd64bb6 Code gen. for ivar references; including bitfield ivars. by Fariborz Jahanian · 16 years ago
  99. 9fbb609 Removed setRecordForDecl. Added a FIXME. by Fariborz Jahanian · 16 years ago
  100. aaa63a7 Patch for ObjCIvarRefExpr containing the field by Fariborz Jahanian · 16 years ago