1. 2a3009a Semantic analysis, ASTs, and unqualified name lookup support for C++ by Douglas Gregor · 17 years ago
  2. 64650af Add a macro-based enumeration of all of the Decl nodes (like we do by Douglas Gregor · 17 years ago
  3. 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 · 17 years ago
  4. ddf32da Static Analyzer: When generating plists for errors reports, generate one plist file per translation unit that contains all of the diagnostics. by Ted Kremenek · 17 years ago
  5. 4afa39d Remove ScopedDecl, collapsing all of its functionality into Decl, so by Douglas Gregor · 17 years ago
  6. 6037fcb Replace DeclContext's vector of ScopedDecl pointers with a linked list by Douglas Gregor · 17 years ago
  7. bcbffc4 Initial implementation of anonymous unions (and, as a GNU extension, by Douglas Gregor · 17 years ago
  8. 074149e Introduce support for "transparent" DeclContexts, which are by Douglas Gregor · 17 years ago
  9. 6b54bd1 Fix an uninitialized-variable warning by Douglas Gregor · 17 years ago
  10. 4306d3c Finish up saving original parameter type and by Fariborz Jahanian · 17 years ago
  11. 73da9e4 introducing ParmVarWithOriginalTypeDecl class to by Fariborz Jahanian · 17 years ago
  12. f44515a Make linkage-specifications hold on to all of their declarations by Douglas Gregor · 17 years ago
  13. 44b4321 Unifies the name-lookup mechanisms used in various parts of the AST by Douglas Gregor · 17 years ago
  14. 72c3f31 Representation of template type parameters and non-type template by Douglas Gregor · 17 years ago
  15. e94ca9e4 Extend DeclarationName to support C++ overloaded operators, e.g., by Douglas Gregor · 17 years ago
  16. 2e1cd42 Introduction the DeclarationName class, as a single, general method of by Douglas Gregor · 17 years ago
  17. b0b847e Use ReadPtr, not ReadUIntPtr through a reinterpret_cast. by Argyrios Kyrtzidis · 17 years ago
  18. 5239304 Introduce ScopedDecl::getLexicalDeclContext() which is different from ScopedDecl::getDeclContext() when there are nested-names. by Argyrios Kyrtzidis · 17 years ago
  19. dc5ddbf Properly deserialize ParamInfo of FunctionDecl. by Argyrios Kyrtzidis · 17 years ago
  20. 8e9bebd Preliminary support for function overloading by Douglas Gregor · 17 years ago
  21. 35bc082 Simplify handling of struct/union/class tags. by Argyrios Kyrtzidis · 17 years ago
  22. 33d34a6 silence some release-assert warnings. by Chris Lattner · 17 years ago
  23. 56ee689 - Add BlockDecl AST node. - Modify BlockExpr to reference the BlockDecl. by Steve Naroff · 17 years ago
  24. df042e6 Remove "NextDecl" from RecordDecl. This change touches many files that where RecordDecl or CXXRecordDecl was constructed, always with an argument of 'NULL' for the previous declaration. by Ted Kremenek · 17 years ago
  25. 6812a73 RecordDecl serialization: by Ted Kremenek · 17 years ago
  26. 7643536 -Add DeclChain member to DeclContext. by Argyrios Kyrtzidis · 17 years ago
  27. d3bb44f Added new C++ AST Decl subclasses. by Argyrios Kyrtzidis · 17 years ago
  28. 3bbc198 When serializing FunctionDecl, serialize out a reference to the previous declaration. by Ted Kremenek · 17 years ago
  29. adbb619 Unbreak build. by Ted Kremenek · 17 years ago
  30. 81edea8 Grammar cleanup in comment. Remove redundant assignment. by Ted Kremenek · 17 years ago
  31. 9f3e89a When reading in the DeclCtx during deserialization, register the DeclCtx of the by Ted Kremenek · 17 years ago
  32. 2d1c5d3 Parsing of namespaces: by Argyrios Kyrtzidis · 17 years ago
  33. 9fdf9c6 "This patch renames by Chris Lattner · 17 years ago
  34. ef17782 Addition of TranslationUnitDecl to the AST: by Argyrios Kyrtzidis · 17 years ago
  35. 248a753 Remove FileVarDecl and BlockVarDecl. They are replaced by VarDecl::isBlockVarDecl() and VarDecl::isFileVarDecl(). by Steve Naroff · 17 years ago
  36. f3c63ae Use the ASTContext allocator when creating deserialized Decl objects. by Sam Bishop · 17 years ago
  37. 0442108 Add support for C++ default arguments, and rework Parse-Sema by Chris Lattner · 17 years ago
  38. e2563ca Pass the ASTContext object around when deserializing Decl and Stmt objects, so by Sam Bishop · 17 years ago
  39. b048c98 This patch contains these changes: by Chris Lattner · 17 years ago
  40. b6e64c5 Rename ScopedDecl::getContext() -> getContextDecl(). Two motivations: by Steve Naroff · 17 years ago
  41. 0ed844b Introduce ContextDecl, patch by Argiris Kirtzidis! by Chris Lattner · 17 years ago
  42. 8e25d86 switch the rest of the C decl classes to do their by Chris Lattner · 17 years ago
  43. bda0b62 Make a major restructuring of the clang tree: introduce a top-level by Chris Lattner · 17 years ago[Renamed from AST/DeclSerialization.cpp]
  44. a98e58d Switch over functiondecl. This makes it obvious that the ASTContext by Chris Lattner · 17 years ago
  45. 843e934 fix typos by Gabor Greif · 17 years ago
  46. dfab6cb Put back the top-level asm code; all tests pass now. by Anders Carlsson · 18 years ago
  47. 3f9424f Back out 46855 for now, it causes test failures on Darwin. by Anders Carlsson · 18 years ago
  48. 61900f0 Handle top-level asm declarations. by Anders Carlsson · 18 years ago
  49. c6fdc34 Add first pieces of support for parsing and representing by Chris Lattner · 18 years ago
  50. a526c5c Substituted all instances of the string "Objc" for "ObjC". This fixes by Ted Kremenek · 18 years ago
  51. 0bc735f Don't attribute in file headers anymore. See llvmdev for the by Chris Lattner · 18 years ago
  52. 137bd91 Updated serialization of ParmVarDecl to serialize out objcDeclQualifier. by Ted Kremenek · 18 years ago
  53. de7b4cd Moved ObjcDeclQualifier to ParmVarDecl from VarDecl. by Fariborz Jahanian · 18 years ago
  54. da25685 Fixed bug in the serialization of FunctionDecls. We would incorrectly by Ted Kremenek · 18 years ago
  55. 049b168 Fixed bug in serialization of EnumConstantDecl where we improperly by Ted Kremenek · 18 years ago
  56. 21d50e1 Added QualType::ReadBackpatch to allow QualType initialization with by Ted Kremenek · 18 years ago
  57. 5f670ed Added serialization of Union decls. by Ted Kremenek · 18 years ago
  58. 583e008 Implemented serialization of EnumDecl and EnumConstantDecl. by Ted Kremenek · 18 years ago
  59. f9d56c8 Implemented serialization of FieldDecls. by Ted Kremenek · 18 years ago
  60. aad48b6 Implemented serialization of RecordDecls. Changed serialization of TagType to by Ted Kremenek · 18 years ago
  61. d437f23 Fixed bug in FunctionDecl serialization where we crashed when the by Ted Kremenek · 18 years ago
  62. 928fd7f Restructured serialization code for decls to make it cleaner, easier to by Ted Kremenek · 18 years ago
  63. 2ebc89f Misc. serialization changes to ASTContext and Decls. Serialization by Ted Kremenek · 18 years ago
  64. f7bf411 Implemented serialization of TypedefDecls. by Ted Kremenek · 18 years ago
  65. 8af8fe3 Added skeleton for dispatch of Decl serialization. by Ted Kremenek · 18 years ago
  66. 0497331 Added most of the boilerplate code for Decl serialization. Still a few by Ted Kremenek · 18 years ago
  67. beb7713 Simplified Serialization code for SourceLocation and SourceRange, and by Ted Kremenek · 18 years ago
  68. 2f1f8cb Added skeleton for Decl serialization. by Ted Kremenek · 18 years ago