1. a865005 Apart from storing/retrieving the previous redeclaration from PCH, also store/retrieve the most recent by Argyrios Kyrtzidis · 14 years ago
  2. 4ac7c0b Change the name to something less terrible; suggestion by Doug. No functionality change. by Argyrios Kyrtzidis · 14 years ago
  3. 90e99a8 Merge PCHWriterDecl.cpp's isRequiredDecl and CodeGenModule::MayDeferGeneration into a new function, by Argyrios Kyrtzidis · 14 years ago
  4. 8a798a7 Store latest redeclaration for each redeclarable template declaration by Peter Collingbourne · 14 years ago
  5. 9eabeba Refactor redeclarable template declarations by Peter Collingbourne · 14 years ago
  6. a6d6af3 Revert r109546, it broke linux build. by Argyrios Kyrtzidis · 14 years ago
  7. ee94e2d Merge PCHWriterDecl.cpp's isRequiredDecl and CodeGenModule::MayDeferGeneration into a new function, by Argyrios Kyrtzidis · 14 years ago
  8. 90176d1 Always deserialize from PCH file scoped variables with non trivial constructor/destructor. by Argyrios Kyrtzidis · 14 years ago
  9. 681d723 - Fix recording of offsets of types in dependent PCHs. by Sebastian Redl · 14 years ago
  10. f2f0f03 Make declarations in the dependent PCH visible, for C at least. by Sebastian Redl · 14 years ago
  11. 3fe1041 atch for implementation of objective-c's -Wselector by Fariborz Jahanian · 14 years ago
  12. 0d39689 Read/write C++0x static_assert for PCH. by Argyrios Kyrtzidis · 14 years ago
  13. 554e6aa Read/write FriendTemplateDecl for PCH. by Argyrios Kyrtzidis · 14 years ago
  14. 2c853e4 Hide FunctionTemplateDecl's specializations folding set as implementation detail and introduce by Argyrios Kyrtzidis · 14 years ago
  15. bc5ab7c Whether the specialization should be added to template's folding set when read from PCH, by Argyrios Kyrtzidis · 14 years ago
  16. ac0021b Added PCH/ASTImporter code for ObjCIvarDecl's field. by Fariborz Jahanian · 14 years ago
  17. ecf966e Reorganize how ClassTemplate[Partial]SpecializationDecls are read/written to avoid the by Argyrios Kyrtzidis · 14 years ago
  18. bfcc92c Support TemplateTemplateParmDecl for PCH. by Argyrios Kyrtzidis · 14 years ago
  19. 057d9af Read/write function template specializations for PCH, properly this time. by Argyrios Kyrtzidis · 14 years ago
  20. 0f47bb9 Allow a CXXRecordDecl to get a DefinitionData pointer even when its owner is still initializing. by Argyrios Kyrtzidis · 14 years ago
  21. 7422827 Read/write instantiated-from-member of EnumDecl for PCH. by Argyrios Kyrtzidis · 14 years ago
  22. c8f9af2 Read/write the identifier namespace in PCH for decls that may modify it. by Argyrios Kyrtzidis · 14 years ago
  23. 7b081c8 Read/write some source location for PCH. by Argyrios Kyrtzidis · 14 years ago
  24. c91e9f4 Read/write more information of ASTContext for PCH. Overriden methods and instantiated-from information. by Argyrios Kyrtzidis · 14 years ago
  25. 691d77f Write/read ParmVarDecl's UninstantiatedDefaultArg for PCH. by Argyrios Kyrtzidis · 14 years ago
  26. 9421adc Read/write specialization info of static data members for PCH. by Argyrios Kyrtzidis · 14 years ago
  27. 1827403 Lazily declare default constructors. We now delay the construction of by Douglas Gregor · 14 years ago
  28. 2258431 Lazily declare implicit copy constructors. by Douglas Gregor · 14 years ago
  29. 0745d0a Read/write CastExpr's CXXBaseSpecifierArray for PCH. by Argyrios Kyrtzidis · 14 years ago
  30. a376d10 Lazily declare copy-assignment operators. by Douglas Gregor · 14 years ago
  31. 4923aa2 Lazily declare the implicitly-declared destructor in a C++ class. by Douglas Gregor · 14 years ago
  32. 9146832 Handle CXXConstructorDecl, CXXDestructorDecl, and CXXConversionDecl for PCH. by Argyrios Kyrtzidis · 14 years ago
  33. 5efb06f Fix reading FunctionDecls from PCH. by Argyrios Kyrtzidis · 14 years ago
  34. 7d53048 Fix reading ClassTemplateDecl's ClassTemplateSpecializationDecls and ClassTemplatePartialSpecializationDecls. by Argyrios Kyrtzidis · 14 years ago
  35. 37ffed3 Fully read/write CXXRecordDecl for PCH. by Argyrios Kyrtzidis · 14 years ago
  36. d8a0c6f Generally types expect an initialized TypeDecl; its safer and less complicated to delay PCH reading the type of a TypeDecl. by Argyrios Kyrtzidis · 14 years ago
  37. 8f4eae9 Fix PCH support for UnresolvedUsingTypenameDecl and UnresolvedUsingValueDecl. by Argyrios Kyrtzidis · 14 years ago
  38. 6764334 Support C++ friend declarations for PCH. by Argyrios Kyrtzidis · 14 years ago
  39. dc767e3 Fix various bugs in recent commits for C++ PCH. by Argyrios Kyrtzidis · 14 years ago
  40. b24e199 Support NonTypeTemplateParmDecl for PCH. by Argyrios Kyrtzidis · 14 years ago
  41. a56b049 Add forgotten breaks in case statements. by Argyrios Kyrtzidis · 14 years ago
  42. dd41c14 Support C++ class template specializations and partial specializations for PCH. by Argyrios Kyrtzidis · 14 years ago
  43. 80aa1cd Patch to provide separate ASTs for multiple ObjC class extension by Fariborz Jahanian · 14 years ago
  44. f511ba6 Support emitting/reading function templates to/from PCH. by Argyrios Kyrtzidis · 14 years ago
  45. b01a552 Support PCH emitting/reading of using declarations. by Argyrios Kyrtzidis · 14 years ago
  46. 28d16d7 Include a hack to allow loading of templated CXXRecordDecls and test template reading from PCH. by Argyrios Kyrtzidis · 14 years ago
  47. 90b715e Initial support for writing templates to PCH. by Argyrios Kyrtzidis · 14 years ago
  48. c070cc6 Given Decl::isUsed() a flag indicating when to consider the "used" by Douglas Gregor · 14 years ago
  49. 6206d53 Added AccessSpecDecl node. by Abramo Bagnara · 14 years ago
  50. 83a230c Remember type source information for Objective C property declarations. by John McCall · 14 years ago
  51. 82dc009 Restructure how we interpret block-literal declarators. Correctly handle by John McCall · 14 years ago
  52. 5250f27 Hack in some really terrible C++ record PCH support that I need right now. by John McCall · 14 years ago
  53. 9a55591 Convert DeclNodes to use TableGen. by Sean Hunt · 14 years ago
  54. 2b7baf0 Roll back r104941. by John McCall · 14 years ago
  55. 1d0a585 Add a new attribute on records, __attribute__((adl_invisible)), and define by John McCall · 14 years ago
  56. 5077c38 Implement semantic analysis and an AST representation for the named by Douglas Gregor · 14 years ago
  57. 030854b pch'ify default argument definitions and uses. by Chris Lattner · 14 years ago
  58. 6ad9ac0 add PCH support for a bunch of C++ Decls, patch by Andrew Sutton! by Chris Lattner · 14 years ago
  59. 1b5a618 Remember the number of positive and negative bits used by the enumerators of by John McCall · 14 years ago
  60. 17cb326 This patch deals with Sema Part of Setter/Getter synthesis by Fariborz Jahanian · 14 years ago
  61. 324b54d Diagnose unused exception parameters under a different warning group by Douglas Gregor · 14 years ago
  62. e4498c6 More of Sema to implement initialization of ivar of c++ object types. by Fariborz Jahanian · 14 years ago
  63. 16573fa Keep track of the actual storage specifier written on a variable or by Douglas Gregor · 14 years ago
  64. 7732cc9 Implement method type encoding in the presense by Fariborz Jahanian · 15 years ago
  65. 83e7a78 rename llvm::llvm_report_error -> llvm::report_fatal_error by Chris Lattner · 15 years ago
  66. b621766 Remember declaration scope qualifiers in the AST. Imposes no memory overhead by John McCall · 15 years ago
  67. bf73b35 Remember whether a ParmVarDecl was spelled with a default argument or by John McCall · 15 years ago
  68. 4bc1cb6 Keep track of type source information in the return type of an by Douglas Gregor · 15 years ago
  69. 0cef483 Implement PCH support for C++ namespaces. by Douglas Gregor · 15 years ago
  70. b37b648 Improve representation of tag declarations first declared or defined by Douglas Gregor · 15 years ago
  71. 591bd3c Keep track of whether a tag was defined in a declarator vs. being by Douglas Gregor · 15 years ago
  72. d050240 Patch to implement rewriting of properties. Fixes radar 7562952. by Fariborz Jahanian · 15 years ago
  73. 3db211b Improve location information for Objective-C category declarations. We by Douglas Gregor · 15 years ago
  74. 18df52b Keep track of the source locations for each protocol reference in by Douglas Gregor · 15 years ago
  75. 782f2f5 Change ObjCContainerDecl to contain the entire range for the '@end' by Ted Kremenek · 15 years ago
  76. 842aef8 First pass at implementing C++ enum semantics: calculate (and store) an by John McCall · 15 years ago
  77. a93c934 DeclaratorInfo -> TypeSourceInfo. Makes an effort to rename associated variables, by John McCall · 15 years ago
  78. 3367198 Use llvm_report_error instead of fprintf + assert + exit. by Daniel Dunbar · 15 years ago
  79. 321c22f Add SourceLocations to ObjCClassDecl for the class identifiers referenced by @class. by Ted Kremenek · 15 years ago
  80. 0130f3c Rename FunctionDecl::isInline/setInline to by Douglas Gregor · 15 years ago
  81. ba6a9bd Preserve type source information in TypedefDecls. Preserve it across by John McCall · 15 years ago
  82. 58e4677 Remove OriginalTypeParmDecl; the original type is the one specified by John McCall · 15 years ago
  83. 61d60ee Merge the "types" and "declarations" blocks in the precompiled header by Douglas Gregor · 15 years ago
  84. a1ee0c5 Factor out routines to encode/decode DeclaratorInfos and move them into the by John McCall · 15 years ago
  85. 7d1d49d Keep track of whether declararions were loaded from a precompiled by Douglas Gregor · 15 years ago
  86. 34a0447 Better living through metaprogramming. Create a base class which abstracts by John McCall · 15 years ago
  87. 0c41180 Pull TypeLocVisitor into its own header file. by Argyrios Kyrtzidis · 15 years ago
  88. eb66759 Introduce ObjCInterfaceLoc which provides type source information for ObjC interfaces. by Argyrios Kyrtzidis · 15 years ago
  89. f352bdd Introduce ObjCProtocolListLoc for keeping source location information for protocol references. by Argyrios Kyrtzidis · 15 years ago
  90. 7f8b57a Update PCH serialization of FunctionDecl flags. by Daniel Dunbar · 15 years ago
  91. e24d38f PCH: When writing PCH files, tweak the predicate function deciding whether to mark a decl as "external" to be closer to reality. by Daniel Dunbar · 15 years ago
  92. 1fc09a9 Rework the way we determine whether an externally visible symbol is by Douglas Gregor · 15 years ago
  93. 1eb4433 Remove tabs, and whitespace cleanups. by Mike Stump · 15 years ago
  94. f42e4a6 Fix build of clang with gcc-4.4: #include <cstdio> was missing. by Torok Edwin · 15 years ago
  95. a5d8200 Remove TypeSpecStartLocation from VarDecl/FunctionDecl/FieldDecl, and use DeclaratorInfo to get this information. by Argyrios Kyrtzidis · 15 years ago
  96. d4a7e54 Store/load type source info from/to PCH files. by Argyrios Kyrtzidis · 15 years ago
  97. 8e9e9ef Make tag declarations redeclarable. This change has three purposes: by Douglas Gregor · 15 years ago
  98. aecae62 Make ObjCImplDecl inherit from ObjCContainerDecl. by Argyrios Kyrtzidis · 15 years ago
  99. 741dd9a Add the location of the tag keyword into TagDecl. From Enea by Douglas Gregor · 15 years ago
  100. 75f1af0 Reuse VarDecl::Init to store the default argument of a ParmVarDecl, by Douglas Gregor · 15 years ago