1. 9aeed32 Anonymous namespaces, sema + codegen. A lot of semantics are still broken, by John McCall · 15 years ago
  2. dd4a3b0 Improved representation and support for friend class templates. Angst about same. by John McCall · 15 years ago
  3. e942bbe When performing unqualified name lookup into a DeclContext, also look into by Douglas Gregor · 15 years ago
  4. 1eb4433 Remove tabs, and whitespace cleanups. by Mike Stump · 15 years ago
  5. d7eff68 Ensure that the tag decls of friend decls aren't added to the friending class's by John McCall · 15 years ago
  6. ab88d97 Fix bug 4784 and allow friend declarations to properly extend by John McCall · 15 years ago
  7. 35eda44 Add a workaround for decls that come from friend decls pointing to undeclared classes. by Anders Carlsson · 15 years ago
  8. 5fee110 For consistency, just make friend declarations AS_public. by John McCall · 15 years ago
  9. 54f70e1 Don't assert that friend declarations must have access specifiers for now. by Anders Carlsson · 15 years ago
  10. 02cace7 Omnibus friend decl refactoring. Instead of cloning AST classes for friend by John McCall · 15 years ago
  11. 665b49c Check in UnresolvedUsingDecl. by Anders Carlsson · 15 years ago
  12. 6dd38da When checking whether one declaration context encloses another, make sure to look at the primary contexts. Thanks to Eli for the test case by Douglas Gregor · 15 years ago
  13. c48fbdf Add a FriendClassDecl type for holding declarations of friend types in by John McCall · 15 years ago
  14. 3f9a8a6 Argument-dependent lookup for friend declarations. Add a new decl type, by John McCall · 15 years ago
  15. 6217b80 Change uses of: by Ted Kremenek · 15 years ago
  16. 35366a6 Per offline discussion with Steve Naroff, add back Type::getAsXXXType() methods by Ted Kremenek · 15 years ago
  17. 5cad1f7 Replaced Type::getAsLValueReferenceType(), Type::getAsRValueReferenceType(), Type::getAsMemberPointerType(), Type::getAsTagType(), and Type::getAsRecordType() with their Type::getAs<XXX> equivalents. by Ted Kremenek · 15 years ago
  18. 17945a0 De-ASTContext-ify DeclContext. by Argyrios Kyrtzidis · 15 years ago
  19. 6fb0aee Remove the ASTContext parameter from the getBody() methods of Decl and subclasses. by Argyrios Kyrtzidis · 15 years ago
  20. 9b34669 Decl::getTranslationUnitDecl() should return itself when the Decl is a TranslationUnitDecl. by Argyrios Kyrtzidis · 15 years ago
  21. 40b598e Remove the ASTContext parameter from the attribute-related methods of Decl. by Argyrios Kyrtzidis · 15 years ago
  22. 3708b3d -Keep a reference to the ASTContext inside the TranslationUnitDecl. by Argyrios Kyrtzidis · 15 years ago
  23. 58badb7 See through UsingDecls in more places. by Anders Carlsson · 15 years ago
  24. e53060f Improved semantic analysis and AST respresentation for function templates. by Douglas Gregor · 15 years ago
  25. 9cfbe48 Parsing and AST support for using declarations, from John Thompson! by Douglas Gregor · 15 years ago
  26. 68584ed Move the static DeclAttrs map into ASTContext. Fixes <rdar://problem/6983177>. by Douglas Gregor · 15 years ago
  27. 67e3320 Improvements to TemplateArgumentListBuilder to make it work better with parameter packs. by Anders Carlsson · 15 years ago
  28. c8ab256 Initial infrastructure for class template partial specialization. Here by Douglas Gregor · 15 years ago
  29. 1c02101 Get rid of CXXTempVarDecl. by Anders Carlsson · 15 years ago
  30. bc22163 Introduced DeclContext::isDependentContext, which determines whether a by Douglas Gregor · 15 years ago
  31. b0156ea A couple more small changes which are probably required for Cygwin by Eli Friedman · 15 years ago
  32. d3a413d Implement function-try-blocks. However, there's a very subtle bug that I can't track down. by Sebastian Redl · 15 years ago
  33. 9a55d3e CXXTempVarDecls aren't looked up. Fixes tests. by Anders Carlsson · 15 years ago
  34. 8fc463a Eliminate Sema::ObjCImplementations, relying instead on name lookup. What's good for uniformity is good for PCH (or is it the other way around?). by Douglas Gregor · 15 years ago
  35. 8038d51 Various minor fixes to PCH reading and writing, with general by Douglas Gregor · 15 years ago
  36. 2cf2634 Implementation of pre-compiled headers (PCH) based on lazy by Douglas Gregor · 15 years ago
  37. 6ab3524 Propagate the ASTContext to various AST traversal and lookup functions. by Douglas Gregor · 15 years ago
  38. c36c540 Simple DeclContext's internal representation by always storing a by Douglas Gregor · 15 years ago
  39. a27e5fe improve compatibility with VC+, patch by John Thompson! by Chris Lattner · 15 years ago
  40. 5c27f2b Allow us to ask for the access specifier of a translation unit by Douglas Gregor · 15 years ago
  41. c2ee10d Move the internal DeclContext data structures into a separate header. by Douglas Gregor · 15 years ago
  42. 5648a8a change another PointerIntPair into a PointerUnion. by Chris Lattner · 15 years ago
  43. ee219fd switch DeclBase::DeclCtx to the new happy and type-safe by Chris Lattner · 15 years ago
  44. 0eda3b3 adjust to llvm mainline changes. by Chris Lattner · 15 years ago
  45. faf0e87 Let getIdentifierNamespaceForKind know about aliases and have it treat them just like namespace decls. by Anders Carlsson · 15 years ago
  46. 244a67d rename NextDeclInScope to NextDeclInContext, since the pointer by Chris Lattner · 15 years ago
  47. 769dbdf minor cleanups: make getIdentifierNamespace() be a single load by Chris Lattner · 15 years ago
  48. 0cf2b19 reduce # const_casts, no functionality change. by Chris Lattner · 15 years ago
  49. 10d8379 change Decl::DeclCtx to use a PointerIntPair instead of hand bitmangling. by Chris Lattner · 15 years ago
  50. 1329c27 Tighten the setAccess assert. We now allow AS_none if the decl contex is not a C++ record decl. by Anders Carlsson · 15 years ago
  51. 81abbdd partially inline getAttrs() to speed up PR3810 (and lots of by Chris Lattner · 15 years ago
  52. 49f28ca rename PrettyStackTraceDecl -> PrettyStackTraceActionsDecl. by Chris Lattner · 15 years ago
  53. cc58147 add an a Attr::Destroy method and force clients to go through it. As part of by Chris Lattner · 15 years ago
  54. 3daed52 improve compatibility with GCC 4.4, patch by Michel Salim (PR3697) by Chris Lattner · 15 years ago
  55. fc705b8 Make the type associated with a ClassTemplateSpecializationDecl be a by Douglas Gregor · 15 years ago
  56. 6510079 Use RecordFirst/RecordLast range checks in DeclContext by Douglas Gregor · 15 years ago
  57. 88b7094 Perform additional semantic checking of class template by Douglas Gregor · 15 years ago
  58. 01011d4 Add copy assignment operator, caught by doug. by Chris Lattner · 16 years ago
  59. 67762a3 optimize the 'StoredDeclsMap' for the common case where there is by Chris Lattner · 16 years ago
  60. bdc3d00 make the redeclaration case faster for the common instance of a redeclaration by Chris Lattner · 16 years ago
  61. 7f0be13 80 cols by Chris Lattner · 16 years ago
  62. 9194250 slight code simplifications. by Chris Lattner · 16 years ago
  63. f823288 only do one DenseMap lookup instead of two (one to find out if there is by Chris Lattner · 16 years ago
  64. ba1bd5c minor simplification. by Chris Lattner · 16 years ago
  65. bd6c800 use early exit to reduce indentation. by Chris Lattner · 16 years ago
  66. cc63668 Implement basic parsing and semantic analysis for explicit by Douglas Gregor · 16 years ago
  67. 305ec42 Move DeclContext::getParent and getLexicalParent in-line. by Argyrios Kyrtzidis · 16 years ago
  68. 8c7250b Currently all DeclContexts are Decls as well; use cast<Decl> instead of dyn_cast. by Argyrios Kyrtzidis · 16 years ago
  69. 3d7641e DeclContext had its "casting machinery" inside the class definition so that if a new declaration context Decl appeared, the necessary changes by Argyrios Kyrtzidis · 16 years ago
  70. 1ad4dd7 Make DeclContexts maintenance a bit easier. by Argyrios Kyrtzidis · 16 years ago
  71. aaba5e3 Basic representation of C++ class templates, from Andrew Sutton. by Douglas Gregor · 16 years ago
  72. 2a3009a Semantic analysis, ASTs, and unqualified name lookup support for C++ by Douglas Gregor · 16 years ago
  73. 64650af Add a macro-based enumeration of all of the Decl nodes (like we do by Douglas Gregor · 16 years ago
  74. 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
  75. 0a47393 Allocate expresssions through ASTContext (still more work to do). by Steve Naroff · 16 years ago
  76. 40f4e69 Rename DeclContext::insert to DeclContext::makeDeclVisibleInContext and document both it and DeclContext::addDecl properly by Douglas Gregor · 16 years ago
  77. 00ad0ef Remove the TopLevelDecls from TranslationUnit, since all of those decls are owned by the ASTContext's TranslationUnitDecl. There are definitely some leaking Decls now that I'll tackle tomorrow by Douglas Gregor · 16 years ago
  78. 4afa39d Remove ScopedDecl, collapsing all of its functionality into Decl, so by Douglas Gregor · 16 years ago
  79. 0b7a158 Teach DeclContext how to find the primary declaration for any TagDecl by Douglas Gregor · 16 years ago
  80. 4c92fea Fix a subtle bug in DeclContext::DestroyDecls(). by Steve Naroff · 16 years ago
  81. a0fc55f Turn off some Destroy calls that are currenly causing double-destruction of ScopedDecls. We will re-enable this later, when we have time to fully solve the ownership issue. by Douglas Gregor · 16 years ago
  82. 482b77d Cleanup DeclContext::addDecl and DeclContext::insert interface, from Piotr Rak by Douglas Gregor · 16 years ago
  83. 6037fcb Replace DeclContext's vector of ScopedDecl pointers with a linked list by Douglas Gregor · 16 years ago
  84. a8cc8ce Make sure that ScopedDecls passed to DeclContext::addDecl are added into their lexical context by Douglas Gregor · 16 years ago
  85. 09c4719 Move property API's up to ObjCContainerDecl (removing a lot of duplicate code). by Steve Naroff · 16 years ago
  86. 72de667 Unify the code for defining tags in C and C++, so that we always by Douglas Gregor · 16 years ago
  87. 0701bbb This is a large/messy diff that unifies the ObjC AST's with DeclContext. by Steve Naroff · 16 years ago
  88. 17a9b9e When determining whether a variable is a file-scoped variable, check by Douglas Gregor · 16 years ago
  89. bcbffc4 Initial implementation of anonymous unions (and, as a GNU extension, by Douglas Gregor · 16 years ago
  90. ce35607 Allow Objective-C entities to be declared within a transparent context by Douglas Gregor · 16 years ago
  91. 4f3b8f8 Minor tweaks to the transparent declcontext patch by Douglas Gregor · 16 years ago
  92. 074149e Introduce support for "transparent" DeclContexts, which are by Douglas Gregor · 16 years ago
  93. 6ed40e3 Don't push OverloadedFunctionDecls onto the chain of declarations by Douglas Gregor · 16 years ago
  94. 3fc749d Don't explicitly represent OverloadedFunctionDecls within by Douglas Gregor · 16 years ago
  95. 4f5420d Add case for the new AST node. by Fariborz Jahanian · 16 years ago
  96. 0874bd3 Don't double-destroy constructors defined out-of-line. This is a by Douglas Gregor · 16 years ago
  97. e267ff3 Address some comments on the name lookup/DeclContext patch from Chris by Douglas Gregor · 16 years ago
  98. 44b4321 Unifies the name-lookup mechanisms used in various parts of the AST by Douglas Gregor · 16 years ago
  99. 72c3f31 Representation of template type parameters and non-type template by Douglas Gregor · 16 years ago
  100. d40910b -Add several ObjC types to Decl::getDeclKindName(), a useful debug hook. by Steve Naroff · 16 years ago