1. bceb755 In Sema::MaybeBindToTemporary, create a CXXBindTemporaryExpr for an by Peter Collingbourne · 13 years ago
  2. 80ee6e8 There's no good reason to track temporaries in ExprWithCleanups, by John McCall · 13 years ago
  3. 7cc58b4 Added a flag to identify resolved overloaded function references. by Abramo Bagnara · 13 years ago
  4. a48e676 Re-arrange and bitfieldify data members of CXXConstructExpr to save a by Douglas Gregor · 13 years ago
  5. b0c3e09 Rename ExplicitTemplateArgumentList -> ASTTemplateArgumentListInfo, no functionality change. by Argyrios Kyrtzidis · 13 years ago
  6. 032c869 Teach CXXUnresolvedConstructExpr when it should be an by Douglas Gregor · 13 years ago
  7. 561f812 Introduce the notion of instantiation dependence into Clang's AST. A by Douglas Gregor · 13 years ago
  8. 864c041 Make yet another placeholder type, this one marking that an expression is a bound by John McCall · 13 years ago
  9. ad762fc Add support for C++0x's range-based for loops, as specified by the C++11 draft standard (N3291). by Richard Smith · 13 years ago
  10. 0fee330 Add CXXDynamicCastExpr::isAlwaysNull() which will be replacing the cast kind I added. by Anders Carlsson · 13 years ago
  11. d765061 Apply a bug-fix patch from Marcin Kowalczyk to the source locations for by Chandler Carruth · 13 years ago
  12. b277159 Begin reworking static analyzer support for C++ method calls. The current logic was divorced by Ted Kremenek · 13 years ago
  13. 8026f6d Instead of storing an ASTContext* in FunctionProtoTypes with computed noexcept specifiers, unique FunctionProtoTypes with a ContextualFoldingSet, as suggested by John McCall. by Sebastian Redl · 13 years ago
  14. 60618fa Propagate the new exception information to FunctionProtoType. by Sebastian Redl · 13 years ago
  15. c2f3e7f The conditional needs to be pushed before the branch. Make the test less by John McCall · 13 years ago
  16. 75e8504 Fix the source range for a member access expression that includes a by Douglas Gregor · 13 years ago
  17. 4c9be89 Push nested-name-specifier source location information into by Douglas Gregor · 13 years ago
  18. 7c3179c Push nested-name-specifier source location information into by Douglas Gregor · 13 years ago
  19. 00cf3cc Push nested-name-specifier source location information into by Douglas Gregor · 13 years ago
  20. f3db29f Push nested-name-specifier source-location information into by Douglas Gregor · 13 years ago
  21. 2882eca Pseudo-revirtualize CallExpr::getSourceRange by making it follow the by John McCall · 13 years ago
  22. 63c00d7 Remove vtables from the Stmt hierarchy; this was pretty easy as by John McCall · 13 years ago
  23. def0354 Implement proper (de-)serialization for explicit template argument by Douglas Gregor · 13 years ago
  24. 6ec278d Do a proper recursive lookup when deciding whether a class's usual by John McCall · 13 years ago
  25. f4c7371 Change QualType::getTypePtr() to return a const pointer, then change a by John McCall · 13 years ago
  26. c7793c7 Introduce a new expression kind, SubstNonTypeTemplateParmPackExpr, by Douglas Gregor · 14 years ago
  27. 1d5d0b9 Add the location of the right parenthesis of a C++ named cast by Douglas Gregor · 14 years ago
  28. ee8aff0 Implement the sizeof...(pack) expression to compute the length of a by Douglas Gregor · 14 years ago
  29. be230c3 Implement support for pack expansions whose pattern is a non-type by Douglas Gregor · 14 years ago
  30. bebbe0d Variadic templates: extend the Expr class with a bit that specifies by Douglas Gregor · 14 years ago
  31. e23cf43 Restore r121752 without modification. by John McCall · 14 years ago
  32. 5bfe232 Pull out r121752 in case it's causing the selfhost breakage. by John McCall · 14 years ago
  33. 0e88aa7 Factor out most of the extra state in a FunctionProtoType into a separate by John McCall · 14 years ago
  34. 6ad6f28 Type traits intrinsic implementation: __is_base_of(T, U) by Francois Pichet · 14 years ago
  35. 4765fa0 Rename CXXExprWithTemporaries -> ExprWithCleanups; there's no theoretical by John McCall · 14 years ago
  36. 0943168 Add an assertion, fix a whole bunch of bugs, comment the assertion by John McCall · 14 years ago
  37. f89e55a Calculate the value kind of an expression when it's created and by John McCall · 14 years ago
  38. a437ad3 Have CXXDeleteExpr::getDestroyedType return the actual destroyed type by Craig Silverstein · 14 years ago
  39. 40749ee Improve source-location information for CXXConstructExpr nodes, by by Douglas Gregor · 14 years ago
  40. b8e3923 Fixes an assertion violation when bind to temporary by Fariborz Jahanian · 14 years ago
  41. 3248854 Rename alignof -> alignOf to avoid irritating C++'0x compilers, PR8423 by Chris Lattner · 14 years ago
  42. 007a9b1 Add helper for extracting the CXXRecordDecl for the implicit argument to by Chandler Carruth · 14 years ago
  43. 428edaf Improve the tracking of source locations for parentheses in constructor calls. by Chandler Carruth · 14 years ago
  44. c87fa06 Had the wrong type for ArgType. :-( Fixed. by Craig Silverstein · 14 years ago
  45. 0fa0b78 The type-to-delete may not be a pointer if it's a dependent type. by Craig Silverstein · 14 years ago
  46. 5833b0b When marking the declarations in a default argument expression as by Douglas Gregor · 14 years ago
  47. 0dfd848 Eagerly evaluate type traits in Sema instead of lazily in AST. They actually need Sema access to be correct, fixes coming up. by Sebastian Redl · 14 years ago
  48. 2e15622 Define and implement CXXNoexceptExpr. Create it in Sema. by Sebastian Redl · 14 years ago
  49. 3d37c0a Add proper type-source information to UnaryTypeTraitExpr, including by Douglas Gregor · 14 years ago
  50. 01b7c30 Microsoft's __uuidof operator implementation part 1. by Francois Pichet · 14 years ago
  51. ab6677e Provide proper type-source location information for by Douglas Gregor · 14 years ago
  52. 1bb2a93 Improve source-location information for CXXNewExpr, by hanging on to by Douglas Gregor · 14 years ago
  53. d4b25cb Implement __has_virtual_destructor. Patch by Steven Watanabe. by Sebastian Redl · 14 years ago
  54. e2ca6d4 Eliminate CXXBindReferenceExpr, which was used in a ton of by Douglas Gregor · 14 years ago
  55. c238f09 Implement the __has_nothrow trait family, by Steven Watanabe. by Sebastian Redl · 14 years ago
  56. 096832c Regularize the API for accessing explicit template arguments. by John McCall · 14 years ago
  57. 2577743 Added locations and type source info for DeclarationName. by Abramo Bagnara · 14 years ago
  58. f871d0c Store inheritance paths after CastExprs instead of inside them. by John McCall · 14 years ago
  59. 7cb6bd7 Remove a bunch of trivial destructors by Douglas Gregor · 14 years ago
  60. ff331c1 Remove the vast majority of the Destroy methods from the AST library, by Douglas Gregor · 14 years ago
  61. 4bd4031 Downgrade the "when type is in parentheses, array cannot have dynamic by Douglas Gregor · 14 years ago
  62. 6d00c13 Add PCH support for the remaining C++ exprs. by Argyrios Kyrtzidis · 14 years ago
  63. ed8abf1 Reinstate the fix for PR7556. A silly use of isTrivial() was by Douglas Gregor · 14 years ago
  64. 8474567 Revert r107828 and r107827, the fix for PR7556, which seems to be by Douglas Gregor · 14 years ago
  65. 016a4a9 Rename CXXZeroInitValueExpr to CXXScalarValueInitExpr, to reflect its by Douglas Gregor · 14 years ago
  66. 12dffcd Support DependentScopeDeclRefExpr for PCH. by Argyrios Kyrtzidis · 14 years ago
  67. bd65bb5 Support UnresolvedLookupExpr for PCH. by Argyrios Kyrtzidis · 14 years ago
  68. a77eb08 Support UnresolvedMemberExpr for PCH. by Argyrios Kyrtzidis · 14 years ago
  69. 8dfbd8b Support a couple more C++ Exprs for PCH. by Argyrios Kyrtzidis · 14 years ago
  70. 928e6fc Move OverloadExpr over to a ASTContext-allocated pointer for its by Douglas Gregor · 14 years ago
  71. 5a84dec Provide the overloaded functions for UnresolvedLookupExpr and by Douglas Gregor · 14 years ago
  72. bd054db Renamed misleading getSourceRange -> getLocalSourceRange and getFullSourceRange -> getSourceRange for TypeLoc. by Abramo Bagnara · 14 years ago
  73. d04ed41 Convert CXXTempory[] in CXXExprWithTemporaries to be allocated using ASTContext's allocator. Fixes <rdar://problem/7961605>. by Ted Kremenek · 14 years ago
  74. 90556d4 Fix refacto in r103387, noticed by Christopher Jefferson. by Daniel Dunbar · 14 years ago
  75. 5921863 pch'ify CXXNewExpr and CXXZeroInitValueExpr by Chris Lattner · 14 years ago
  76. aff32cb fix refactor-o by Chris Lattner · 14 years ago
  77. d259836 pchify CXXTemporary, CXXBindTemporaryExpr, and CXXExprWithTemporaries. by Chris Lattner · 14 years ago
  78. fcaeef2 Change CXXConstructExpr::Create to take a ConstructionKind. by Anders Carlsson · 14 years ago
  79. 72e96fd Add an enum to CXXConstructExpr so we can determine if the construction expression constructs a non-virtual or virtual base. by Anders Carlsson · 14 years ago
  80. 1c63b9c When explicitly building a temporary object (CXXTemporaryObjectExpr), by Douglas Gregor · 14 years ago
  81. c96be1e During template instantiation, set the naming class of by Douglas Gregor · 14 years ago
  82. 57fdc8a Improve source-location information in a C++ typeid (type) expression by Douglas Gregor · 14 years ago
  83. e9ee23e Use the naming class from the overloaded lookup when access-checking an by John McCall · 14 years ago
  84. a2e7dd2 Use CXXPseudoDestructorExpr as the stored representation for dependent by Douglas Gregor · 14 years ago
  85. 26d4ac9 Retain complete source information for the type after the '~' in a by Douglas Gregor · 14 years ago
  86. ad7fe86 Fix leak in CXXNewExpr where the SubExprs array would get allocated directly using 'new[]' instead of the allocator associated with ASTContext. by Ted Kremenek · 14 years ago
  87. 7bb12da Extract a common base class between UnresolvedLookupExpr and by John McCall · 14 years ago
  88. 9db7dbb Rework base and member initialization in constructors, with several by Douglas Gregor · 14 years ago
  89. eb60edf Add an CXXBindReferenceExpr (not used just yet). by Anders Carlsson · 14 years ago
  90. c373d48 Implement access control for overloaded functions. Suppress access control by John McCall · 14 years ago
  91. eec51cf Give UnresolvedSet the ability to store access specifiers for each declaration. by John McCall · 14 years ago
  92. 036aed1 When we see a CXXDefaultArgExpr during template instantiation, rebuild by Douglas Gregor · 15 years ago
  93. 65222e8 When using a default function argument for a function template (or by Douglas Gregor · 15 years ago
  94. e383768 Fix CXXConstructExpr::getSourceRange() to not include the source ranges of CXXDefaultArgExprs when computing its range (since these expressions have no source range, and using them will make the encompassing range invalid). by Ted Kremenek · 15 years ago
  95. 16006c9 When value-initializing a class with no user-defined constructors but by Douglas Gregor · 15 years ago
  96. 99a2e60 Switch the C++ new expression over to InitializationSequence, rather by Douglas Gregor · 15 years ago
  97. 0ece491 ShouldDestroyTemporaries? I don't think so. by Anders Carlsson · 15 years ago
  98. ccf4350 Introduce the notion of literal types, as specified in C++0x. by Sebastian Redl · 15 years ago
  99. aa81e16 Rework how we support C++ implicit member accesses. If we can resolve an by John McCall · 15 years ago
  100. 129e2df Eliminate the use of OverloadedFunctionDecl in member expressions. by John McCall · 15 years ago