1. 01b7c30 Microsoft's __uuidof operator implementation part 1. by Francois Pichet · 15 years ago
  2. ab6677e Provide proper type-source location information for by Douglas Gregor · 15 years ago
  3. 1bb2a93 Improve source-location information for CXXNewExpr, by hanging on to by Douglas Gregor · 15 years ago
  4. e2ca6d4 Eliminate CXXBindReferenceExpr, which was used in a ton of by Douglas Gregor · 15 years ago
  5. f9b949f AST work to support [C++] [IRgen] for ?: with missing LHS by Fariborz Jahanian · 15 years ago
  6. 9996a7f Fix the memory leak of FloatingLiteral/IntegerLiteral. by Argyrios Kyrtzidis · 15 years ago
  7. 5baba9d More incremental progress towards not including Expr.h in Sema.h. by John McCall · 15 years ago
  8. 096832c Regularize the API for accessing explicit template arguments. by John McCall · 15 years ago
  9. 8538e8d Rename pch namespace to serialization. by Sebastian Redl · 15 years ago
  10. 6ab7cd8 Rename the ASTReader header files. by Sebastian Redl · 15 years ago
  11. 904c9c8 Rename the ASTReader implementation files. by Sebastian Redl · 15 years ago[Renamed (99%) from lib/Serialization/PCHReaderStmt.cpp]
  12. 3c7f413 More PCH -> AST renaming. by Sebastian Redl · 15 years ago
  13. 60adf4a Rename PCHStmtReader -> ASTStmtReader. by Sebastian Redl · 15 years ago
  14. c43b54c Rename PCHReader to ASTReader. by Sebastian Redl · 15 years ago
  15. 8572813 Reintroduce the serialization library, with fixed dependencies. by Sebastian Redl · 15 years ago[Renamed (99%) from lib/Frontend/PCHReaderStmt.cpp]
  16. 4557e47 Revert Sebastian's build-breaking patch. by Douglas Gregor · 15 years ago[Renamed (99%) from lib/Serialization/PCHReaderStmt.cpp]
  17. 93c9729 Create a new Serialization module that contains all the PCH code, and will contain all the module code in the future. Update the Makefiles, CMake projects and the Xcode project. I hope I did everything right for Xcode. No functionality change. by Sebastian Redl · 15 years ago[Renamed (99%) from lib/Frontend/PCHReaderStmt.cpp]
  18. 2577743 Added locations and type source info for DeclarationName. by Abramo Bagnara · 15 years ago
  19. 2cad900 Added TypeLocs to VAArgExpr node. by Abramo Bagnara · 15 years ago
  20. 3fcb73d Added TypeLocs to TypesCompatibleExpr node. by Abramo Bagnara · 15 years ago
  21. f871d0c Store inheritance paths after CastExprs instead of inside them. by John McCall · 15 years ago
  22. afbf312 Implement PCH support for offsetof(base-specifier). by Argyrios Kyrtzidis · 15 years ago
  23. 5606220 Add source location information to C++ base specifiers. by Nick Lewycky · 15 years ago
  24. 577d479 Thread bitstream cursors all the way through the AST reading stuff. This way, reading a trivial 2-element chained file actually works. by Sebastian Redl · 15 years ago
  25. 7cb45e3 Support C++ try/catch statements for PCH. by Argyrios Kyrtzidis · 15 years ago
  26. 906082e Update ImplicitCastExpr to be able to represent an XValue. by Sebastian Redl · 15 years ago
  27. 9137a52 First baby steps towards PCHReader being able to keep track of multiple PCH files. WIP by Sebastian Redl · 15 years ago
  28. 4bd4031 Downgrade the "when type is in parentheses, array cannot have dynamic by Douglas Gregor · 15 years ago
  29. 6d00c13 Add PCH support for the remaining C++ exprs. by Argyrios Kyrtzidis · 15 years ago
  30. 663e380 Read/write the C++ parts of DeclRefExpr and MemberExpr for PCH. by Argyrios Kyrtzidis · 15 years ago
  31. ed8abf1 Reinstate the fix for PR7556. A silly use of isTrivial() was by Douglas Gregor · 15 years ago
  32. 8474567 Revert r107828 and r107827, the fix for PR7556, which seems to be by Douglas Gregor · 15 years ago
  33. 016a4a9 Rename CXXZeroInitValueExpr to CXXScalarValueInitExpr, to reflect its by Douglas Gregor · 15 years ago
  34. 0745d0a Read/write CastExpr's CXXBaseSpecifierArray for PCH. by Argyrios Kyrtzidis · 15 years ago
  35. 8a50733 Fix broken PCH support for CXXDefaultArgExpr. by Argyrios Kyrtzidis · 15 years ago
  36. 37bdfe2 Support ParenListExpr for PCH. by Argyrios Kyrtzidis · 15 years ago
  37. d98a2ab When we know that we are at sub-statement reading (which is all of PCHStmtReader) use the "faster" ReadSubStmt. No functionality change. by Argyrios Kyrtzidis · 15 years ago
  38. 919e693 Modify the way sub-statements are stored and retrieved from PCH. by Argyrios Kyrtzidis · 15 years ago
  39. de4bd18 Support CXXPseudoDestructorExpr for PCH. by Argyrios Kyrtzidis · 15 years ago
  40. 12dffcd Support DependentScopeDeclRefExpr for PCH. by Argyrios Kyrtzidis · 15 years ago
  41. 36c76f0 Refactor PCH reading/writing of template arguments passed to expressions. by Argyrios Kyrtzidis · 15 years ago
  42. 17cfded Fix PCH emitting/reading for template arguments that contain expressions. by Argyrios Kyrtzidis · 15 years ago
  43. bd65bb5 Support UnresolvedLookupExpr for PCH. by Argyrios Kyrtzidis · 15 years ago
  44. a77eb08 Support UnresolvedMemberExpr for PCH. by Argyrios Kyrtzidis · 15 years ago
  45. 8dfbd8b Support a couple more C++ Exprs for PCH. by Argyrios Kyrtzidis · 15 years ago
  46. 5e1b7c2 Fix broken de/serialization for a couple of C++ Exprs. by Argyrios Kyrtzidis · 15 years ago
  47. 95fc98c Read/write CXXDeleteExpr from/to PCH. by Argyrios Kyrtzidis · 15 years ago
  48. 43dec6b Alter the internal representation of the condition variable in by Douglas Gregor · 15 years ago
  49. 89f9d3a Added a field to BlockDeclRefExpr for future use. No functionality change yet. by Fariborz Jahanian · 15 years ago
  50. 5077c38 Implement semantic analysis and an AST representation for the named by Douglas Gregor · 15 years ago
  51. 3c9034c Recognize when the named return value optimization applies in a by Douglas Gregor · 15 years ago
  52. d04ed41 Convert CXXTempory[] in CXXExprWithTemporaries to be allocated using ASTContext's allocator. Fixes <rdar://problem/7961605>. by Ted Kremenek · 15 years ago
  53. 5921863 pch'ify CXXNewExpr and CXXZeroInitValueExpr by Chris Lattner · 15 years ago
  54. d259836 pchify CXXTemporary, CXXBindTemporaryExpr, and CXXExprWithTemporaries. by Chris Lattner · 15 years ago
  55. 030854b pch'ify default argument definitions and uses. by Chris Lattner · 15 years ago
  56. 2fbdfcd pch'ify 'this' and 'throw' by Chris Lattner · 15 years ago
  57. 14ab24f pch'ify typeid. by Chris Lattner · 15 years ago
  58. 1817bd4 pchify CXXMemberCallExpr correctly. Before it would serialize by Chris Lattner · 15 years ago
  59. cc8a5d5 Teach __builtin_offsetof to compute the offsets of members of base by Douglas Gregor · 15 years ago
  60. 8ecdb65 Completely reimplement __builtin_offsetof, based on a patch by Roberto Amadini. by Douglas Gregor · 15 years ago
  61. c00d8e1 Make the static type of the exception variable in an Objective-C by Douglas Gregor · 15 years ago
  62. 8f5e3dd Improve the AST representation of Objective-C @try/@catch/@finally by Douglas Gregor · 15 years ago
  63. 04badcf Overhaul the AST representation of Objective-C message send by Douglas Gregor · 15 years ago
  64. 81d3466 Keep proper source location information for the type in an Objective-C by Douglas Gregor · 15 years ago
  65. 709210f Use ASTVector instead of std::vector for the Exprs in InitListExpr. Performance by Ted Kremenek · 15 years ago
  66. c2350e5 Extend ObjCMessageExpr for class method sends with the source location by Douglas Gregor · 15 years ago
  67. ba7bc55 Revert: "Change InitListExpr to allocate the array for holding references" by Ted Kremenek · 15 years ago
  68. 9f9269e Change InitListExpr to allocate the array for holding references by Ted Kremenek · 15 years ago
  69. eb7f961 Roll r95513 back in. by Sam Weinig · 16 years ago
  70. a8ad5d4 Roll out r95513, it seems to have broken self hosting. by Sam Weinig · 16 years ago
  71. 1eb1113 Add PCH support for CXXBoolLiteralExpr and CXXNullPtrLiteralExpr. by Sam Weinig · 16 years ago
  72. ff93dbd Use IdentifierInfo * instead of std::string for the AsmStmt names. by Anders Carlsson · 16 years ago
  73. acb6bcb Even more AsmStmt cleanup. by Anders Carlsson · 16 years ago
  74. fdba9c0 Combine AsmStmt::setOutputsAndInputs and AsmStmt::setClobbers. by Anders Carlsson · 16 years ago
  75. 42f56b5 Preserve type source information in compound literal expressions. by John McCall · 16 years ago
  76. ce757a7 Add PCH support for CXXStaticCastExpr, CXXDynamicCastExpr, CXXReinterpretCastExpr, CXXConstCastExpr and CXXFunctionalCastExpr. by Sam Weinig · 16 years ago
  77. 9d12503 Preserve type source information in explicit cast expressions. by John McCall · 16 years ago
  78. 319d57f Move the allocation of designators in DesignatedInitExpr to the by Douglas Gregor · 16 years ago
  79. 3b11fd3 Remember if the AsmStmt came from Microsoft-style inline assembly code. by Mike Stump · 16 years ago
  80. 16006c9 When value-initializing a class with no user-defined constructors but by Douglas Gregor · 16 years ago
  81. 99a2e60 Switch the C++ new expression over to InitializationSequence, rather by Douglas Gregor · 16 years ago
  82. dbd872f DeclRefExpr stores a ValueDecl internally. by John McCall · 16 years ago
  83. a93c934 DeclaratorInfo -> TypeSourceInfo. Makes an effort to rename associated variables, by John McCall · 16 years ago
  84. dd27a2d Missed change from last commit. by Eli Friedman · 16 years ago
  85. 99e9b4d Eliminate CXXConditionDeclExpr with extreme prejudice. by Douglas Gregor · 16 years ago
  86. 5656e14 Clean up the AST for while loops and fix several problems with by Douglas Gregor · 16 years ago
  87. d3d5301 Explicitly store the condition variable within switch statements, and by Douglas Gregor · 16 years ago
  88. 8cfe5a7 Explicitly track the condition variable within an "if" statement, by Douglas Gregor · 16 years ago
  89. 5ab7517 Preserve type source information in sizeof/alignof expressions, and pass it by John McCall · 16 years ago
  90. a2813ce Eliminate QualifiedDeclRefExpr, which captured the notion of a by Douglas Gregor · 16 years ago
  91. b648023 Add StringLiteral::getString -> StringRef. by Daniel Dunbar · 16 years ago
  92. 39da0b8 Improve handling of initialization by constructor, by ensuring that by Douglas Gregor · 16 years ago
  93. 1eb4433 Remove tabs, and whitespace cleanups. by Mike Stump · 16 years ago
  94. 47e1f7c Source location information for ? and : in a ConditionalOperator, from Enea Zaffanella by Douglas Gregor · 16 years ago
  95. 09105f5 Using "ObjCImplicitSetterGetterRefExpr" instead of "ObjCImplctSetterGetterRefExpr". by Fariborz Jahanian · 16 years ago
  96. d2ae5aa Renamed ClassProp data member of ObjCImplctSetterGetterRefExpr by Fariborz Jahanian · 16 years ago
  97. 154440e Renamed ObjCKVCRefExpr to ObjCImplctSetterGetterRefExpr. by Fariborz Jahanian · 16 years ago
  98. 888376a Transition the PCH support for ShuffleVectorExpr over to ASTContext allocation by Nate Begeman · 16 years ago
  99. 43d9d92 Introduce reference counting for statements and expressions, using it by Douglas Gregor · 16 years ago
  100. cdef2b7 Add a CastKind enum to CastExpr. Right now it's not used for much but it will be :) by Anders Carlsson · 16 years ago