1. 572af49 remove the type_info identifier cache. Compared to the cost by Chris Lattner · 16 years ago
  2. 8edea83 compared to the rest of the code in Sema::GetStdNamespace(), by Chris Lattner · 16 years ago
  3. 2bac0f6 remove some other identifiers that are looked up really early and only by Chris Lattner · 16 years ago
  4. 8469265 instead of looking up super at startup time, by Chris Lattner · 16 years ago
  5. 92e62b0 Rename IdentifierInfo::isName to ::isStr. Use a nifty trick by Chris Lattner · 16 years ago
  6. 2682d8b More objc gc stuff. Read/Write barriers for local static/extern, by Fariborz Jahanian · 16 years ago
  7. 106c6eb Implement the rest of C++ [over.call.object], which permits the object by Douglas Gregor · 16 years ago
  8. f9eb905 Support for calling overloaded function call operators (operator()) by Douglas Gregor · 16 years ago
  9. 487a75a Some tweaks suggested by Argiris by Douglas Gregor · 16 years ago
  10. 77407b8 Take care another assert: by Argyrios Kyrtzidis · 16 years ago
  11. 337c6b9 Support overloading of the subscript operator[], including support for by Douglas Gregor · 16 years ago
  12. 5cb93b8 Fix <rdar://problem/6150376> [sema] crash on invalid message send. by Steve Naroff · 16 years ago
  13. 7425373 Added operator overloading for unary operators, post-increment, and by Douglas Gregor · 16 years ago
  14. 0655039 Fix silly code, use IdentifierInfo* instead of std::string in by Daniel Dunbar · 16 years ago
  15. 3c73c41 stop calling II::getName() unnecesarily in sema by Chris Lattner · 16 years ago
  16. 43b628c Allow sending IdentifierInfo*'s into Diagnostics without turning them into strings by Chris Lattner · 16 years ago
  17. 8365223 convert some diags to use numbers instead of strings. by Chris Lattner · 16 years ago
  18. 30bc965 add direct support for signed and unsigned integer arguments to diagnostics. by Chris Lattner · 16 years ago
  19. dcd5ef1 remove one more old-style Diag method. by Chris Lattner · 16 years ago
  20. fa25bbb Switch several more Sema Diag methods over. This simplifies the by Chris Lattner · 16 years ago
  21. 447b69e Built-in equality and relational operators have return type "bool" in C++, by Douglas Gregor · 16 years ago
  22. 96176b3 Partial expansion of C++ operator overloading (for binary operators) by Douglas Gregor · 16 years ago
  23. c9c7c4e start converting Sema over to using its canonical Diag method. by Chris Lattner · 16 years ago
  24. ebf5ddf introduce the one true Diag method for Sema. Next up: kill all the others off. by Chris Lattner · 16 years ago
  25. cfe8bf3 Fix <rdar://problem/6329769> [sema] crash on duplication definition of interface with protocols. by Steve Naroff · 16 years ago
  26. 10c4262 As threatened previously: consolidate name lookup and the creation of by Douglas Gregor · 16 years ago
  27. e94ca9e4 Extend DeclarationName to support C++ overloaded operators, e.g., by Douglas Gregor · 16 years ago
  28. 0a14eee This reworks some of the Diagnostic interfaces a bit to change how diagnostics by Chris Lattner · 16 years ago
  29. 46bbaca Attribute nonnull can be applied to block pointers. by Ted Kremenek · 16 years ago
  30. 2383b7f Change the diagnostics interface to take an array of pointers to by Chris Lattner · 16 years ago
  31. 29a1cfb minor cleanups and tidying, no functionality change. by Chris Lattner · 16 years ago
  32. 858bb6f implement a fixme by making warnings for ++/-- on non-modifiable-lvalues better. by Chris Lattner · 16 years ago
  33. f67bd9f factor some code out into a helper function by Chris Lattner · 16 years ago
  34. a11f42f Implement effects of 'mutable', and a few comments from Chris on its parsing. by Sebastian Redl · 16 years ago
  35. 10bd368 Eliminate all of the placeholder identifiers used for constructors, by Douglas Gregor · 16 years ago
  36. 87d3ef0 Fix <rdar://problem/6333904> [sema] message lookup on super is incorrect by Steve Naroff · 16 years ago
  37. 2def483 Updated IdentifierResolver to deal with DeclarationNames. The names of by Douglas Gregor · 16 years ago
  38. ca354fa Implement rdar://6319320: give a good diagnostic for cases where people by Chris Lattner · 16 years ago
  39. a8069f1 Fix <rdar://problem/6316324> [sema] spurious warning on comparison of qualified id. by Steve Naroff · 16 years ago
  40. d7612e1 Fix <rdar://problem/6320086> parser rejects block capturing ivar. by Steve Naroff · 16 years ago
  41. 43c7bad Some cleanups for C++ operator overloading by Douglas Gregor · 16 years ago
  42. 1adbab6 Simplify error messages for two-parameter overloaded increment/decrement operators by Douglas Gregor · 16 years ago
  43. 2e1cd42 Introduction the DeclarationName class, as a single, general method of by Douglas Gregor · 16 years ago
  44. 6ee7aa1 rename Expr::tryEvaluate to Expr::Evaluate. by Chris Lattner · 16 years ago
  45. 669d5d7 Implement parsing and semantic checking of the 'mutable' keyword. by Sebastian Redl · 16 years ago
  46. b460980 Add a new expression node, CXXOperatorCallExpr, which expresses a by Douglas Gregor · 16 years ago
  47. bf3af05 Some cleanup for the implementation of built-in operator by Douglas Gregor · 16 years ago
  48. 23cd0d9 don't highlight field name, just put a caret on it. by Chris Lattner · 16 years ago
  49. 7d7e672 Don't build identifiers for C++ constructors, destructors, or by Douglas Gregor · 16 years ago
  50. 67027a7 Fix a FIXME by improving a diagnostic, add a testcase for PR3048 by Chris Lattner · 16 years ago
  51. 1d353ba make TryFixInvalidVariablyModifiedType a static function. by Chris Lattner · 16 years ago
  52. 57d5788 Restructure code to encourage fallthrough, no functionality change. by Chris Lattner · 16 years ago
  53. 3ab5543 fix PR3048. I'm going to do some more work before closing it off and by Chris Lattner · 16 years ago
  54. eb8f306 Implement support for operator overloading using candidate operator by Douglas Gregor · 16 years ago
  55. 0518999 Introduce a single AST node SizeOfAlignOfExpr for all sizeof and alignof expressions, both of values and types. by Sebastian Redl · 16 years ago
  56. c42e118 Implement C++ 'typeid' parsing and sema. by Sebastian Redl · 16 years ago
  57. f1d9360 Fix cmake build, patch from Jjgod Jiang. by Daniel Dunbar · 16 years ago
  58. 1f6f54b Fix PR3031 by silencing follow-on errors in invalid declarations. by Chris Lattner · 16 years ago
  59. 904eed3 Basic support for taking the address of an overloaded function by Douglas Gregor · 16 years ago
  60. 25e7087 Remove an out-of-date FIXME by Douglas Gregor · 16 years ago
  61. cb9b977 Allow user-defined conversions during reference binding by Douglas Gregor · 16 years ago
  62. 55c6095 Don't create a typedef for the injected-class-name by Douglas Gregor · 16 years ago
  63. 02bcd4c Some cleanups to the declaration/checking of overloaded operators in C++. Thanks to Sebastian for the review by Douglas Gregor · 16 years ago
  64. 5239304 Introduce ScopedDecl::getLexicalDeclContext() which is different from ScopedDecl::getDeclContext() when there are nested-names. by Argyrios Kyrtzidis · 16 years ago
  65. 0f84a23 When a tag has nested-name ('struct foo::bar'), use not 'CurContext' but the context of the nested-name ('foo::'). by Argyrios Kyrtzidis · 16 years ago
  66. 630c81b Simplify handling of nested-names in tags ('struct foo::bar'). by Argyrios Kyrtzidis · 16 years ago
  67. ef6e647 Implement Sema support for C++ nested-name-specifiers. by Argyrios Kyrtzidis · 16 years ago
  68. eb83ecd Implement support for C++ nested-name-specifiers ('foo::bar::x') in the Parser side. by Argyrios Kyrtzidis · 16 years ago
  69. 37d6de3 Move named cast helpers out of Sema, as Chris requested. This requirse making a few functions public that weren't before. by Sebastian Redl · 16 years ago
  70. e3dc28a Greatly improve static_cast diagnostics by Sebastian Redl · 16 years ago
  71. f1991ea Initial, partially-baked support for implicit user-defined conversions by conversion functions by Douglas Gregor · 16 years ago
  72. c7ed9c6 Changes in preparation for nested-name-specifiers. by Argyrios Kyrtzidis · 16 years ago
  73. 2f1bc52 Parsing, ASTs, and semantic analysis for the declaration of conversion by Douglas Gregor · 16 years ago
  74. 48c2e90 Fix crash caused by this: by Argyrios Kyrtzidis · 16 years ago
  75. eaebc75 Initial, rudimentary implementation of operator overloading for binary by Douglas Gregor · 16 years ago
  76. 1cd1b1e Parsing, ASTs, and semantic analysis for the declaration of overloaded by Douglas Gregor · 16 years ago
  77. d93f0dd Sema-check virtual declarations. Complete dynamic_cast checking. by Sebastian Redl · 16 years ago
  78. 03a6cf9 Improve assert messages. by Sebastian Redl · 16 years ago
  79. 26d85b1 Move named cast sema functions to their own file. by Sebastian Redl · 16 years ago
  80. 42a552f Parsing, representation, and preliminary semantic analysis of destructors. by Douglas Gregor · 16 years ago
  81. 4e84935 A small error message improvement and some comment cleanup for static_cast. by Sebastian Redl · 16 years ago
  82. 64bffa9 Keep track of whether a C++ class is an aggregate. Don't allow initialization of non-aggregates with initializer lists. by Douglas Gregor · 16 years ago
  83. f03d7c7 Implement C++ copy-initialization for declarations. There is now some by Douglas Gregor · 16 years ago
  84. 7ad8390 Initial implementation of parsing, semantic analysis, and AST-building by Douglas Gregor · 16 years ago
  85. 1528145 Make it an error if an Objective-C declaration is not in the global scope. by Anders Carlsson · 16 years ago
  86. f7be944 Some cleanup of the cast checkers. Don't canonicalize types when not needed. Use distinct diagnostics for distinct errors. by Sebastian Redl · 16 years ago
  87. cd9b46e Add a new expression class, ObjCSuperExpr, to handle the Objective-C 'super'. Remove ObjCThis from PredefinedExpr by Douglas Gregor · 16 years ago
  88. 796da18 Create a new expression class, CXXThisExpr, to handle the C++ 'this' primary expression. Remove CXXThis from PredefinedExpr by Douglas Gregor · 16 years ago
  89. eb704f2 Now that we have copy initialization support, use it for checking the default arguments by Douglas Gregor · 16 years ago
  90. 3996f23 Diagnose use of 'this' in a C++ default argument. Thanks to Eli for correcting my bogus assertion about it already being handled by Douglas Gregor · 16 years ago
  91. b2f9e51 Fix <rdar://problem/6339636> clang ObjC rewriter: Assertion failed: FileID-1 < FileIDs.size() && "Invalid FileID!", file c:\cygwin\home\Administrator\llvm\tools\clang\include\clang/Basic/SourceManager.h, line 513 by Steve Naroff · 16 years ago
  92. 30c5436 Check that this cannot be used in a default argument. Happily, it was already implemented by Douglas Gregor · 16 years ago
  93. 18fe568 Implicit support for direct initialization of objects of class type, e.g., by Douglas Gregor · 16 years ago
  94. 225c41e Standard conversion sequences now have a CopyConstructor field, to by Douglas Gregor · 16 years ago
  95. 396b7cd Add implicitly-declared default and copy constructors to C++ classes, by Douglas Gregor · 16 years ago
  96. f1f9b4e Implement C++ DR 106 and C++ DR 540, both of which deal with by Douglas Gregor · 16 years ago
  97. d5a56f0 Source ranges for named cast diagnostics. by Sebastian Redl · 16 years ago
  98. 030ff0c Semantic checking of constructor declarations and classification of default/copy constructors by Douglas Gregor · 16 years ago
  99. 60d62c2 Implement basic support for converting constructors in user-defined by Douglas Gregor · 16 years ago
  100. 0777972 Implement semantic checking of static_cast and dynamic_cast. by Sebastian Redl · 16 years ago