1. 98cd599 Initial step toward supporting qualification conversions (C++ 4.4). by Douglas Gregor · 16 years ago
  2. 8e9bebd Preliminary support for function overloading by Douglas Gregor · 16 years ago
  3. fe6b0dc Fix <rdar://problem/6261178> clang-on-xcode: [sema] multiple method warning is over enthusiastic. by Steve Naroff · 16 years ago
  4. 3957907 Downgrade incompatibilities with objc qualified types (e.g. id <P>) to warnings. by Steve Naroff · 16 years ago
  5. 4cde927 Add Sema implementation of #pragma pack stack. by Daniel Dunbar · 16 years ago
  6. 090276f Final phase of converting BlockDecls over to DeclContext. This is unfortunately a largish/complex diff, however it was necessry to pass all the current block tests. by Steve Naroff · 16 years ago
  7. 1c90bfc Instantiate the BlockDecl in ActOnBlockStart() so we can use it as a DeclContext. by Steve Naroff · 16 years ago
  8. 73a0d88 Implement support for C++ direct initializers in declarations, e.g. "int x(1);". by Argyrios Kyrtzidis · 16 years ago
  9. 1bfe1c2 Pass postfix attributes to ActOnFields. by Daniel Dunbar · 16 years ago
  10. de45428 Add support for format string checking of object-size checking by Daniel Dunbar · 16 years ago
  11. 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
  12. e84a864 Fix <rdar://problem/6252129> implementation of method in category doesn't effectively declare it for methods below. by Steve Naroff · 16 years ago
  13. 246e70f Parser support for prefix __attribute__ on @protocol. by Daniel Dunbar · 16 years ago
  14. 95e61fb Implement type checking of Objective-C property attributes. by Daniel Dunbar · 16 years ago
  15. 33ae3af Remove unused slot/reference and update Sema::ActOnIdentifierExpr(). by Steve Naroff · 16 years ago
  16. 17dab4f Remove support for BlockExprExpr. For example... by Steve Naroff · 16 years ago
  17. 77a5223 Give string literals const element typesin C++, and cope with the deprecated C++ conversion from a string literal to a pointer-to-non-const-character by Douglas Gregor · 16 years ago
  18. 91e19b2 Fix two bugs exposed by array passing assert: by Daniel Dunbar · 16 years ago
  19. 637cebb Refactor common Obj-C message send checking code into by Daniel Dunbar · 16 years ago
  20. 5921093 Implement Sema support for the 'condition' part of C++ selection-statements and iteration-statements (if/switch/while/for). by Argyrios Kyrtzidis · 16 years ago
  21. 15a12d0 Add Sema::isDeclInScope which wraps IdentifierResolver::isDeclInScope. by Argyrios Kyrtzidis · 16 years ago
  22. 2b255c4 Tweak implementation for allowing ObjC builtin type redefinitions. by Steve Naroff · 16 years ago
  23. 4b7c983 Change struct forward declarations and definitions to use unique RecordDecls, as opposed to creating a single RecordDecl and reusing it. by Ted Kremenek · 16 years ago
  24. 7ad1b1f Prevent invalid warnings about incomplete implementations for methods by Daniel Dunbar · 16 years ago
  25. bfdcae6 Fix a handful of typos (closure->block) to avoid confusion. by Steve Naroff · 16 years ago
  26. 1c7d067 Add type checking for blocks. by Steve Naroff · 16 years ago
  27. d5f8a4f Add __builtin_object_size support. by Daniel Dunbar · 16 years ago
  28. 4eb206b Add semantic analysis for "blocks". by Steve Naroff · 16 years ago
  29. 451318c Move implicit Obj-C param creation into ObjCMethodDecl. by Daniel Dunbar · 16 years ago
  30. a88b509 Pass SourceRanges by reference to the various Diag methods. by Argyrios Kyrtzidis · 16 years ago
  31. 9299f3f make sure that ParseAST invokes the action for end of translation unit. by Chris Lattner · 16 years ago
  32. 06f5485 minor cleanup, remove finalize method. by Chris Lattner · 16 years ago
  33. 987a14b Add support for C++'s "type-specifier ( expression-list )" expression: by Argyrios Kyrtzidis · 16 years ago
  34. 58d5ebb Fix subtle bug introduced in r54852. by Daniel Dunbar · 16 years ago
  35. 6c2dc4d Move the type checking that Sema::ActOnCastExpr does into a new Sema::CheckCastTypes function so that it can be reused. by Argyrios Kyrtzidis · 16 years ago
  36. 662e8b5 Change Parser & Sema to use interned "super" for comparions. by Daniel Dunbar · 16 years ago
  37. c4a1dea More #include cleaning by Daniel Dunbar · 16 years ago
  38. 12bc692 Minor #include cleaning by Daniel Dunbar · 16 years ago
  39. d4d46cd Cleanup from yesterday...make isTentativeDefinition() a static helper function (no need for it to be part of the Sema API). by Steve Naroff · 16 years ago
  40. d9f6910 rename PreDefinedExpr -> PredefinedExpr by Chris Lattner · 16 years ago
  41. 5b7f0c8 Passing right brace location to ActOnFinishCXXClassDef is redundant, since it gets passed to ActOnFinishCXXMemberSpecification too. by Argyrios Kyrtzidis · 16 years ago
  42. ff9eb1f Fix issues with C "tentative" definitions. by Steve Naroff · 16 years ago
  43. 914701e Move AsmLabel into Declarator instead of just a parameter to ActOnDeclarator. by Daniel Dunbar · 16 years ago
  44. a80f874 Add more Parser/Sema support for GCC asm-label extension. by Daniel Dunbar · 16 years ago
  45. 39caa08 Wherever a type is used/returned from the Action module, use TypeTy instead of DeclTy or void. by Argyrios Kyrtzidis · 16 years ago
  46. 06036d3 Pull protocol resolution of out ActOnStartClassInterface, this is also the by Chris Lattner · 16 years ago
  47. 6bd6d0b refactor protocol resolution out of ActOnStartCategoryInterface by Chris Lattner · 16 years ago
  48. e13b959 pull protocol resolution out into ActOnStartProtocolInterface. by Chris Lattner · 16 years ago
  49. eacc392 simplify some code. by Chris Lattner · 16 years ago
  50. bb280a4 make sizeof/alignof diagnostics highlight their operand with a sourcerange. by Chris Lattner · 16 years ago
  51. b6ccaac Move isObjCObjectPointerType() from Sema to ASTContext. by Ted Kremenek · 16 years ago
  52. 4493f79 Implement nans, prefetch, and trap builtins. by Daniel Dunbar · 16 years ago
  53. 7caeabd minor cleanup to the actions interface to pass around SmallVectorImpl instead by Chris Lattner · 16 years ago
  54. b49b572 improve comments yet again, now I know what this does :) by Chris Lattner · 16 years ago
  55. be2341d http://llvm.org/bugs/show_bug.cgi?id=2523 by Nate Begeman · 16 years ago
  56. 0795232 Add Sema support for C++ classes. by Argyrios Kyrtzidis · 16 years ago
  57. c9b346d make type attribute processing static instead of methods on Sema. by Chris Lattner · 16 years ago
  58. 803d080 make the rest of the decl attribute processing methods be by Chris Lattner · 16 years ago
  59. 0b2f4da make most of Sema public. Sema is a class private to the Sema library by Chris Lattner · 16 years ago
  60. e5c5ee1 Make ProcessDeclAttributes walk the declarator structure pulling by Chris Lattner · 16 years ago
  61. 3ff30c8 move some code from all callers of ProcessDeclAttributes into by Chris Lattner · 16 years ago
  62. f2e4bd5 more attribute refactoring/renaming, no functionality change. by Chris Lattner · 16 years ago
  63. 065c5a8 more cleanups, refactor HandleVectorTypeAttribute by Chris Lattner · 16 years ago
  64. 545dd34 adjust the prototypes of a bunch of decl processing methods to take by Chris Lattner · 16 years ago
  65. 53d0ea5 Replace CurFunctionDecl and CurMethodDecl with methods getCurFunctionDecl() and getCurMethodDecl() that return the appropriate Decl through CurContext. by Argyrios Kyrtzidis · 16 years ago
  66. fbf1347 the 'mode' attribute is a decl attribute, not a type attribute. Move it to by Chris Lattner · 16 years ago
  67. 985abd9 Make Declarator::getDeclSpec() return a const reference to avoid by Chris Lattner · 16 years ago
  68. fca0ddd fix a bug handling type attributes in the declspec. declspec processing by Chris Lattner · 16 years ago
  69. 4cc18a4 Add parsing support for C++ classes. by Argyrios Kyrtzidis · 16 years ago
  70. 5a6ddbf add parser and sema support for the funny ObjC '@defs' thing. by Chris Lattner · 16 years ago
  71. 4111024 Change self/_cmd to be instances of ImplicitParamDecl instead of ParmVarDecl. by Chris Lattner · 16 years ago
  72. 7ff22b2 Introduce preliminary support for NSString format-string checking. by Ted Kremenek · 16 years ago
  73. d4cbda6 implement the alias attirbute (in both Sema and Codegen) by Nuno Lopes · 16 years ago
  74. e6f058f Clean up dead code from SemaInit landing. by Eli Friedman · 16 years ago
  75. 1b76ada Re-fix r51907 in a way which doesn't affect valid code. This essentially by Eli Friedman · 16 years ago
  76. 3c0eb16 Implementation of gcc mode attribute; this is significant because by Eli Friedman · 16 years ago
  77. c594b32 Perform stricter/more accurate checking for C99 constant expressions by Eli Friedman · 16 years ago
  78. 6cfda23 Add __builtin_frame_address and __builtin_return_address gcc builtins to by Eli Friedman · 16 years ago
  79. b85f707 Various fixes; solves (almost) all of the test regressions that would be by Eli Friedman · 16 years ago
  80. d38617c Implementation of __builtin_shufflevector, a portable builtin capable of by Eli Friedman · 16 years ago
  81. 6d6eb57 Diagnose attempts to use C++ default arguments outside of a function declaration by Douglas Gregor · 16 years ago
  82. 5251e13 Patch to refactor setter/getter names of property attributes into Selector by Fariborz Jahanian · 16 years ago
  83. a647caa Several fixes to SemaInit.cpp. It's still not enabled (since it fails a few tests). Expect to enable it very soon. by Steve Naroff · 16 years ago
  84. 46b55e5 percolate @optional/@required protocols down to ASTs for by Fariborz Jahanian · 16 years ago
  85. aebf0cb This patch is about merging ObjC2's properties declared in class by Fariborz Jahanian · 16 years ago
  86. 0cca749 Replace Sema::CheckInitializerListTypes() with a helper class (InitListChecker) that synthesizes implicit InitListExpr's when appropriate (see InitListExpr comments in Expr.h for more details). I also moved the code to SemaInit.cpp, to help reduce clutter in SemaDecl.cpp. by Steve Naroff · 16 years ago
  87. 02edb98 More ObjC2 property semantics work. Work in progress. by Fariborz Jahanian · 16 years ago
  88. 2d1c5d3 Parsing of namespaces: by Argyrios Kyrtzidis · 16 years ago
  89. 27ae6c6 initial support for recognizing __transparent_union__ attributes by Nuno Lopes · 16 years ago
  90. b5e0224 Patch to diagnose inconsistancies between properties declared in current and by Fariborz Jahanian · 16 years ago
  91. 9fdf9c6 "This patch renames by Chris Lattner · 16 years ago
  92. f009795 Clean up handling of function redeclarations by Douglas Gregor · 16 years ago
  93. 213541a OCUVector -> ExtVector, shorthand for extended vector, per feedback from Chris. by Nate Begeman · 16 years ago
  94. f624f81 Initial work for property implementation declarations. by Fariborz Jahanian · 16 years ago
  95. 1de1e74 New AST representation for each objc2's property declaration. by Fariborz Jahanian · 16 years ago
  96. e37ac4f This patch adds very basic support for parsing and type-checking class by Douglas Gregor · 16 years ago
  97. 87f3ff0 Added PushOnScopeChains method to Sema, that adds a decl to both the IdResolver and the Scope. by Argyrios Kyrtzidis · 16 years ago
  98. dae1a1a AST generation for objc2's property declarations. by Fariborz Jahanian · 16 years ago
  99. 45bc03f Minor changes per Chris L's review. by Fariborz Jahanian · 16 years ago
  100. 7f925cc Switch sema to maintaining its own scope chain information for variable by Chris Lattner · 16 years ago