1. 5dc266a remove another old Diag method. by Chris Lattner · 16 years ago
  2. d3a94e2 remove another old-school Diag method. by Chris Lattner · 16 years ago
  3. 3c73c41 stop calling II::getName() unnecesarily in sema by Chris Lattner · 16 years ago
  4. dcd5ef1 remove one more old-style Diag method. by Chris Lattner · 16 years ago
  5. fa25bbb Switch several more Sema Diag methods over. This simplifies the by Chris Lattner · 16 years ago
  6. c9c7c4e start converting Sema over to using its canonical Diag method. by Chris Lattner · 16 years ago
  7. cfe8bf3 Fix <rdar://problem/6329769> [sema] crash on duplication definition of interface with protocols. by Steve Naroff · 16 years ago
  8. 2e1cd42 Introduction the DeclarationName class, as a single, general method of by Douglas Gregor · 16 years ago
  9. 1528145 Make it an error if an Objective-C declaration is not in the global scope. by Anders Carlsson · 16 years ago
  10. 6f5f41c Fix typo. by Steve Naroff · 16 years ago
  11. fe6b0dc Fix <rdar://problem/6261178> clang-on-xcode: [sema] multiple method warning is over enthusiastic. by Steve Naroff · 16 years ago
  12. 4fa4ab6 Fix <rdar://problem/6239726> Parser rejects: type of property 'list' does not match type of ivar by Steve Naroff · 16 years ago
  13. 037cda5 Fix <rdar://problem/6191148> [sema] Objective-C method lookup (at global scope) fails to handle overloaded selectors properly. by Steve Naroff · 16 years ago
  14. 3ce52d6 Improved fix for <rdar://problem/6247781> Parser rejecting properly mismatched properties. by Steve Naroff · 16 years ago
  15. fbbe0ac Fix <rdar://problem/6247781> Parser rejecting properly mismatched properties. by Steve Naroff · 16 years ago
  16. 5e0a74f Fix <rdar://problem/6253149> property declaration doesn't declare getter and setter. by Steve Naroff · 16 years ago
  17. e84a864 Fix <rdar://problem/6252129> implementation of method in category doesn't effectively declare it for methods below. by Steve Naroff · 16 years ago
  18. 246e70f Parser support for prefix __attribute__ on @protocol. by Daniel Dunbar · 16 years ago
  19. 3568249 Sema support for format and noreturn attributes on Objective-C methods. by Daniel Dunbar · 16 years ago
  20. 95e61fb Implement type checking of Objective-C property attributes. by Daniel Dunbar · 16 years ago
  21. 7ad1b1f Prevent invalid warnings about incomplete implementations for methods by Daniel Dunbar · 16 years ago
  22. b20ef3e Add synthesized property methods to protocols and categories in Sema. by Daniel Dunbar · 16 years ago
  23. 451318c Move implicit Obj-C param creation into ObjCMethodDecl. by Daniel Dunbar · 16 years ago
  24. 9f0afd4 Rename ObjCPropertyImplDecl::PropertyImplKind (consistency) by Daniel Dunbar · 16 years ago
  25. f641492 Fix attributes on Obj-C interfaces & methods. by Daniel Dunbar · 16 years ago
  26. f11b508 Sema::ActOnStartProtocolInterface(): Make sure the protocol decl has a valid start location. by Steve Naroff · 16 years ago
  27. acc5f3e More #include cleaning by Daniel Dunbar · 16 years ago
  28. 12bc692 Minor #include cleaning by Daniel Dunbar · 16 years ago
  29. 1b63eef remove two uses of getCanonicalType I missed. by Chris Lattner · 16 years ago
  30. b77792e change more instances of QualType::getCanonicalType to call by Chris Lattner · 16 years ago
  31. 717250a remove a helper method. by Chris Lattner · 16 years ago
  32. 06036d3 Pull protocol resolution of out ActOnStartClassInterface, this is also the by Chris Lattner · 16 years ago
  33. 6bd6d0b refactor protocol resolution out of ActOnStartCategoryInterface by Chris Lattner · 16 years ago
  34. e13b959 pull protocol resolution out into ActOnStartProtocolInterface. by Chris Lattner · 16 years ago
  35. eacc392 simplify some code. by Chris Lattner · 16 years ago
  36. e281c86 remove duplicate error message. by Chris Lattner · 16 years ago
  37. 394f3f4 Move fix in r54013 from the parser to sema. by Steve Naroff · 16 years ago
  38. 7caeabd minor cleanup to the actions interface to pass around SmallVectorImpl instead by Chris Lattner · 16 years ago
  39. 780f329 move two more lists of protocols over to use ObjCList<ObjCProtocolDecl>, by Chris Lattner · 16 years ago
  40. 964c27c add forward definition protocols to the protocol list for a class. by Chris Lattner · 16 years ago
  41. 919d87d references to completely undeclared protocols should be errors. by Chris Lattner · 16 years ago
  42. 3db6cae introduce a new ObjCList templated class and start moving by Chris Lattner · 16 years ago
  43. f7b2c98 rename setReferencedProtocolList -> addReferencedProtocols to by Chris Lattner · 16 years ago
  44. e8f0d30 Change 'MDecl' to 'MD' to fix redefinition compiler error in MSVC++. by Argyrios Kyrtzidis · 16 years ago
  45. b752f28 Switch initialization of the protocol list for an interface decl to use by Chris Lattner · 16 years ago
  46. fe5042e Fix warnings by Seo Sanghyeon · 16 years ago
  47. 53d0ea5 Replace CurFunctionDecl and CurMethodDecl with methods getCurFunctionDecl() and getCurMethodDecl() that return the appropriate Decl through CurContext. by Argyrios Kyrtzidis · 16 years ago
  48. 72fd336 The assert at Sema::ObjCActOnStartOfMethodDef should check CurMethodDecl instead of CurFunctionDecl. by Argyrios Kyrtzidis · 16 years ago
  49. 4111024 Change self/_cmd to be instances of ImplicitParamDecl instead of ParmVarDecl. by Chris Lattner · 16 years ago
  50. c733388 Second half of "fix" for <rdar://problem/5986085> clang on xcode: error: redefinition of 'XCElementToggler' as different kind of symbol by Steve Naroff · 16 years ago
  51. d100c80 Fixed a recent test regression from last night (r51976). by Steve Naroff · 16 years ago
  52. e2af8b1 Fix <rdar://problem/5986833> clang on xcode: incompatible type returning 'void', expected 'int'. by Steve Naroff · 16 years ago
  53. 74199b6 Fix trivial crasher and downgrade an error to warning (to match GCC). by Steve Naroff · 16 years ago
  54. 8442b5c Make sure the source location for @property points the the @-sign (not the decl spec). by Steve Naroff · 16 years ago
  55. 4607034 Synthesized getter/setter method declarations need not have by Fariborz Jahanian · 16 years ago
  56. 33de3f0 This patch introduces declaration of getter methods for ObjC2's by Fariborz Jahanian · 16 years ago
  57. 5251e13 Patch to refactor setter/getter names of property attributes into Selector by Fariborz Jahanian · 16 years ago
  58. 46b55e5 percolate @optional/@required protocols down to ASTs for by Fariborz Jahanian · 16 years ago
  59. aebf0cb This patch is about merging ObjC2's properties declared in class by Fariborz Jahanian · 16 years ago
  60. 3435096 Patch to match and issue diagnostics on property type mismatch. by Fariborz Jahanian · 16 years ago
  61. 02edb98 More ObjC2 property semantics work. Work in progress. by Fariborz Jahanian · 16 years ago
  62. 642e38b Use PushOnScopeChains to introduce a decl into scope. by Argyrios Kyrtzidis · 16 years ago
  63. b5e0224 Patch to diagnose inconsistancies between properties declared in current and by Fariborz Jahanian · 16 years ago
  64. 628b96f Patch to build AST for property implementation declarations and by Fariborz Jahanian · 16 years ago
  65. 6cdf16d More semantics checks of properties. Property implementation can implicitly use by Fariborz Jahanian · 16 years ago
  66. c35b9e4 Support for @dynamic AST build. by Fariborz Jahanian · 16 years ago
  67. 559c0c4 Continuation of work on ObjC2's properties. by Fariborz Jahanian · 16 years ago
  68. 5833b90 Fixed a bug in categories and properties. by Fariborz Jahanian · 16 years ago
  69. f624f81 Initial work for property implementation declarations. by Fariborz Jahanian · 16 years ago
  70. 3dd4ba4 Added property decl support for protocols. by Fariborz Jahanian · 16 years ago
  71. 7e7e387 This patch adds support for declaraing properties in categories, by Fariborz Jahanian · 16 years ago
  72. 1de1e74 New AST representation for each objc2's property declaration. by Fariborz Jahanian · 16 years ago
  73. dae1a1a AST generation for objc2's property declarations. by Fariborz Jahanian · 16 years ago
  74. d6a07aa Add class and super class location info to ObjCInterfaceDecl... by Steve Naroff · 16 years ago
  75. 7f925cc Switch sema to maintaining its own scope chain information for variable by Chris Lattner · 16 years ago
  76. 8123a95 Several improvements from Doug Gregor related to default by Chris Lattner · 16 years ago
  77. 0442108 Add support for C++ default arguments, and rework Parse-Sema by Chris Lattner · 16 years ago
  78. 8bcfc5b remove the Decl::getCanonicalType() method. by Chris Lattner · 16 years ago
  79. b048c98 This patch contains these changes: by Chris Lattner · 16 years ago
  80. 0ed844b Introduce ContextDecl, patch by Argiris Kirtzidis! by Chris Lattner · 16 years ago
  81. 3110251 Change ObjCInterfaceDecl to inherit from NamedDecl (not TypeDecl). While ObjCInterfaceDecl is arguably a TypeDecl, it isn't a ScopedDecl. Since TypeDecl's are scoped, it makes sense to simply treat them as NamedDecl's. I could have fiddled a bit more with the hierarchy (in terms of creating a non-scoped TypeDecl), however this probably isn't worth the effort. by Steve Naroff · 16 years ago
  82. b327ce0 by Steve Naroff · 16 years ago
  83. e8043c3 Fairly large "cleaup" related to changing ObjCCompatibleAliasDecl superclass (to inherit from NamedDecl, instead of ScopedDecl). by Steve Naroff · 16 years ago
  84. f4af515 clean up property memory allocation to move it into the ast classes by Chris Lattner · 16 years ago
  85. 55d13b4 make property addition work list all other "add" methods. Do by Chris Lattner · 16 years ago
  86. f8d17a5 add the last two Create methods for decls, woo! by Chris Lattner · 16 years ago
  87. 75c9cae add two more Create methods. by Chris Lattner · 16 years ago
  88. 68c82cf simplify the way ObjCCategoryDecl's get their referenced protocols list by Chris Lattner · 16 years ago
  89. 61f9d41 Add create methods for ObjCCategoryDecl, ObjCForwardProtocolDecl, ObjCClassDecl. by Chris Lattner · 16 years ago
  90. c858105 minor cleanups, make getNumInstanceMethods always return unsigned. by Chris Lattner · 16 years ago
  91. 439e71f fix a crasher where an invalid program that multiply defined by Chris Lattner · 16 years ago
  92. cca59d7 Give ObjCProtocolDecl a Create method. by Chris Lattner · 16 years ago
  93. 0e77ba0 Add create methods for ObjCIvarDecl and ObjCInterfaceDecl by Chris Lattner · 16 years ago
  94. 58cce3b Make the parameter count of ObjCMethodDecl unsigned, you by Chris Lattner · 16 years ago
  95. b06fa3b remove some dead arguments to ObjCMethodDecl. by Chris Lattner · 16 years ago
  96. 6c4ae5d Give ObjCMethodDecl a Create method. by Chris Lattner · 16 years ago
  97. bda0b62 Make a major restructuring of the clang tree: introduce a top-level by Chris Lattner · 16 years ago[Renamed from Sema/SemaDeclObjC.cpp]
  98. c63e660 move the ASTContext argument to be first in the argument list of by Chris Lattner · 16 years ago
  99. 9e151e1 switch the VarDecl allocation model to go through ASTContext. by Chris Lattner · 16 years ago
  100. da323ad Fix http://llvm.org/bugs/show_bug.cgi?id=2106. by Steve Naroff · 16 years ago