1. 11f21a0 More improvements to abstract type checking. Handle arrays correctly, and make sure to check parameter types before they decay. by Anders Carlsson · 15 years ago
  2. b9bbe49 It's an error to try to allocate an abstract object using new. by Anders Carlsson · 15 years ago
  3. f2e21e5 Disallow catching exceptions by rvalue reference. by Sebastian Redl · 15 years ago
  4. dfe292d Fix build from r67476 and address the easy part of Doug's comments on rvalue refs. by Sebastian Redl · 15 years ago
  5. 4681ebd Disallow abstract types where appropriate. by Anders Carlsson · 15 years ago
  6. 67e4dd2 Keep track of whether a class is abstract or not. This is currently only used for the __is_abstract type trait. by Anders Carlsson · 15 years ago
  7. e4e5b05 Introduce a representation for types that we referred to via a by Douglas Gregor · 15 years ago
  8. ca5e77f The scope representation can now be either a DeclContext pointer or a by Douglas Gregor · 15 years ago
  9. 7c80bd6 Almost complete implementation of rvalue references. One bug, and a few unclear areas. Maybe Doug can shed some light on some of the fixmes. by Sebastian Redl · 15 years ago
  10. 94b15fb Handle static_asserts when instantiating structs. by Anders Carlsson · 15 years ago
  11. f53597f Convert a bunch of actions to smart pointers, and also bring PrintParserCallbacks a bit more in line with reality. by Sebastian Redl · 15 years ago
  12. 77d8142 Make sure to release the expressions. by Anders Carlsson · 15 years ago
  13. c308241 Handle dependent types/exprs in static_assert expressions. by Anders Carlsson · 15 years ago
  14. fb31176 More static_assert work. Check that the assert expr is valid and show an error if it's false. Create the declaration and add it to the current context. by Anders Carlsson · 15 years ago
  15. 063daf6 Refactor the way we handle operator overloading and template by Douglas Gregor · 15 years ago
  16. 021c3b3 Move most of the checking from ActOnCXXMemberDeclarator to other, more general routines. This is a step toward separating the checking logic from Declarators, which in turn is required for template instantiation. by Douglas Gregor · 15 years ago
  17. 4dd55f5 Make sure that we set the access specifier for an instantiated FieldDecl, and that the aggregate and POD flags for an instantiated class template are updated based on instantiation of a FieldDecl by Douglas Gregor · 15 years ago
  18. ff7fea8 Eliminate CXXClassMemberWrapper by Douglas Gregor · 15 years ago
  19. 2d2e9cf Eliminate CXXClassVarDecl. It doesn't add anything by Douglas Gregor · 15 years ago
  20. 3cf538d Implement basic template instantiation for fields. Reshuffle checking by Douglas Gregor · 15 years ago
  21. 26dce44 Limit the template instantiation depth to some user-configurable value by Douglas Gregor · 15 years ago
  22. 40808ce Implement template instantiation for ClassTemplateSpecializationTypes, by Douglas Gregor · 15 years ago
  23. 86447ec Rename DiagnoseIncompleteType to RequireCompleteType, and update the documentation to reflect the fact that we can instantiate templates here by Douglas Gregor · 15 years ago
  24. 6f8ce14 more minor simplifications. by Chris Lattner · 15 years ago
  25. 8b963ef refactor C++ bitfield checking a bit (haha) by Chris Lattner · 15 years ago
  26. 2479366 fix PR3607 and a fixme, by checking bitfield constraints more consistently. by Chris Lattner · 15 years ago
  27. 2943aed Implement the basics of implicit instantiation of class templates, in by Douglas Gregor · 15 years ago
  28. 72564e7 Create a new TypeNodes.def file that enumerates all of the types, by Douglas Gregor · 15 years ago
  29. 48f3bb9 Downgrade complaints about calling unavailable functions to a warning by Douglas Gregor · 15 years ago
  30. 4330d65 remove "; candidates are/is:" from various ambiguity diagnostics. by Chris Lattner · 15 years ago
  31. cda9c67 Adopt a more principled approach to invalid declarations: by Douglas Gregor · 15 years ago
  32. 1a51b4a Make Sema::getTypeName return the opaque pointer of a QualType rather by Douglas Gregor · 15 years ago
  33. 8189cde Overhaul of Stmt allocation: by Ted Kremenek · 15 years ago
  34. aaba5e3 Basic representation of C++ class templates, from Andrew Sutton. by Douglas Gregor · 15 years ago
  35. 47b9a1c Some name-lookup-related fixes, from Piotr Rak! by Douglas Gregor · 15 years ago
  36. b696ea3 Diagnose ambiguities in getTypeName. Fixes http://llvm.org/bugs/show_bug.cgi?id=3475 by Douglas Gregor · 15 years ago
  37. 2a3009a Semantic analysis, ASTs, and unqualified name lookup support for C++ by Douglas Gregor · 15 years ago
  38. 87fd703 Check value-initializations that occur when an initializer list by Douglas Gregor · 15 years ago
  39. 734d986 Improve our handling of the second step in a user-defined conversion by Douglas Gregor · 15 years ago
  40. 4c921ae Eliminated LookupCriteria, whose creation was causing a bottleneck for by Douglas Gregor · 15 years ago
  41. 500d329 move library-specific diagnostic headers into library private dirs. Reduce by Chris Lattner · 15 years ago
  42. 3e8ffd2 Refactor Sema::LookupDecl() into 2 functions: LookupDeclInScope() and LookupDeclInContext(). by Steve Naroff · 15 years ago
  43. b43a50f Name change (isTypeName->getTypeName). by Steve Naroff · 15 years ago
  44. 939837f Remove 'enableLazyBuiltinCreation' argument to Sema::LookupDecl(). It is unused. by Steve Naroff · 15 years ago
  45. 20c6b3b Split the single monolithic DiagnosticKinds.def file into one by Chris Lattner · 15 years ago
  46. 1833a83 Fix a crash Anders' was seeing due to free'ing an invalid pointer by Chris Lattner · 15 years ago
  47. 4afa39d Remove ScopedDecl, collapsing all of its functionality into Decl, so by Douglas Gregor · 15 years ago
  48. 4ec339f Centralize error reporting of improper uses of incomplete types in the by Douglas Gregor · 15 years ago
  49. eb11cd0 Refactor name lookup. by Douglas Gregor · 15 years ago
  50. 09f41cf Introduce support for C++0x explicit conversion operators (N2437) by Douglas Gregor · 15 years ago
  51. fc76761 FunctionDecl::setParams() now uses the allocator associated with ASTContext to allocate the array of ParmVarDecl*'s. by Ted Kremenek · 15 years ago
  52. 482b77d Cleanup DeclContext::addDecl and DeclContext::insert interface, from Piotr Rak by Douglas Gregor · 15 years ago
  53. c9b580a Add some comments to the virtual work. Thanks to Doug Gregor for the review. by Sebastian Redl · 15 years ago
  54. 9ba73ad Very basic support for pure virtual functions. by Sebastian Redl · 15 years ago
  55. 72de667 Unify the code for defining tags in C and C++, so that we always by Douglas Gregor · 15 years ago
  56. 0701bbb This is a large/messy diff that unifies the ObjC AST's with DeclContext. by Steve Naroff · 15 years ago
  57. 6b3945f Finished semantic analysis of anonymous unions in C++. by Douglas Gregor · 15 years ago
  58. ead013e it is ok to insert empty source ranges into diagnostics, declare variable in an if. by Chris Lattner · 15 years ago
  59. 64b45f7 PODness and Type Traits by Sebastian Redl · 15 years ago
  60. 074149e Introduce support for "transparent" DeclContexts, which are by Douglas Gregor · 15 years ago
  61. f780abc Parser support for C++ using directives, from Piotr Rak by Douglas Gregor · 16 years ago
  62. 70316a0 Add support for out-of-line definitions of conversion functions and member operators by Douglas Gregor · 16 years ago
  63. 61366e9 Correct the order in which we cope with end-of-class-definition by Douglas Gregor · 16 years ago
  64. 3fc749d Don't explicitly represent OverloadedFunctionDecls within by Douglas Gregor · 16 years ago
  65. 8351da0 Full AST support and better Sema support for C++ try-catch. by Sebastian Redl · 16 years ago
  66. 4b07b29 Partial AST and Sema support for C++ try-catch. by Sebastian Redl · 16 years ago
  67. 45920e8 Allow downcasts of pointers to Objective-C interfaces, with a by Douglas Gregor · 16 years ago
  68. 510ffae Make the injected-class-name of a C++ class a separate RecordDecl from the class itself, with a different scope. This eliminates some ownership issues, so that the RecordDecl only lives in a single context by Douglas Gregor · 16 years ago
  69. cc98eac Move the other Sema::ActOnLinkageSpec to SemaDeclCXX. by Chris Lattner · 16 years ago
  70. 5a003a4 Move Sema::ActOnLinkageSpec to SemaDeclCXX. by Chris Lattner · 16 years ago
  71. 72b505b Delay parsing of default arguments of member functions until the class by Douglas Gregor · 16 years ago
  72. 9e7d9de Place constructors and destructors into the DeclContext of the class, by Douglas Gregor · 16 years ago
  73. 0874bd3 Don't double-destroy constructors defined out-of-line. This is a by Douglas Gregor · 16 years ago
  74. 798d119 Some utilities for using the smart pointers in Actions, especially Sema. Convert a few functions. by Sebastian Redl · 16 years ago
  75. 9d35097 Enable out-of-line definitions of C++ constructors and destructors by Douglas Gregor · 16 years ago
  76. e267ff3 Address some comments on the name lookup/DeclContext patch from Chris by Douglas Gregor · 16 years ago
  77. 44b4321 Unifies the name-lookup mechanisms used in various parts of the AST by Douglas Gregor · 16 years ago
  78. a75023d Simplify some diagnostics. by Anders Carlsson · 16 years ago
  79. d162584 Change a whole lot of diagnostics to take QualType's directly by Chris Lattner · 16 years ago
  80. d9d22dd Rename NamedDecl::getName() to getNameAsString(). Replace a bunch of by Chris Lattner · 16 years ago
  81. 5f4a682 Make all the 'redefinition' diagnostics more consistent, and make the by Chris Lattner · 16 years ago
  82. 08631c5 Convert IdentifierInfo's to be printed the same as DeclarationNames by Chris Lattner · 16 years ago
  83. e4c452c Implement a %plural modifier for complex plural forms in diagnostics. Use it in the overload diagnostics. by Sebastian Redl · 16 years ago
  84. 416e46f merge 3 more diagnostics into 1. by Chris Lattner · 16 years ago
  85. af7ae4e Add the concept of "modifiers" to the clang diagnostic format by Chris Lattner · 16 years ago
  86. 621b393 Don't print canonical types in overloading-related diagnostics by Douglas Gregor · 16 years ago
  87. f3a41af remove the last old-fashioned Diag method. Transition complete! by Chris Lattner · 16 years ago
  88. 5dc266a remove another old Diag method. by Chris Lattner · 16 years ago
  89. d3a94e2 remove another old-school Diag method. by Chris Lattner · 16 years ago
  90. 3c73c41 stop calling II::getName() unnecesarily in sema by Chris Lattner · 16 years ago
  91. 43b628c Allow sending IdentifierInfo*'s into Diagnostics without turning them into strings by Chris Lattner · 16 years ago
  92. 8365223 convert some diags to use numbers instead of strings. by Chris Lattner · 16 years ago
  93. dcd5ef1 remove one more old-style Diag method. by Chris Lattner · 16 years ago
  94. fa25bbb Switch several more Sema Diag methods over. This simplifies the by Chris Lattner · 16 years ago
  95. c9c7c4e start converting Sema over to using its canonical Diag method. by Chris Lattner · 16 years ago
  96. a11f42f Implement effects of 'mutable', and a few comments from Chris on its parsing. by Sebastian Redl · 16 years ago
  97. 10bd368 Eliminate all of the placeholder identifiers used for constructors, by Douglas Gregor · 16 years ago
  98. 43c7bad Some cleanups for C++ operator overloading by Douglas Gregor · 16 years ago
  99. 1adbab6 Simplify error messages for two-parameter overloaded increment/decrement operators by Douglas Gregor · 16 years ago
  100. 2e1cd42 Introduction the DeclarationName class, as a single, general method of by Douglas Gregor · 16 years ago