1. 5e9392b Implement support for the __is_final type trait, to determine whether by Douglas Gregor · 13 years ago
  2. 381c066 Per an offline conversation with John McCall, have StmtPrinter actually print out the source expression for OpaqueValueExpr. by Ted Kremenek · 13 years ago
  3. 11cbe2a Add support for printing integer literals of type short, unsigned short, by Richard Trieu · 13 years ago
  4. 4b9c2d2 Change the AST representation of operations on Objective-C by John McCall · 13 years ago
  5. ba0513d Implement support for dependent Microsoft __if_exists/__if_not_exists by Douglas Gregor · 13 years ago
  6. b8989f2 Change operator<< for raw_ostream and NamedDecl to take a reference instead of a pointer. by Benjamin Kramer · 13 years ago
  7. 9e3c20b Silence some -Wuninitialized false positives with gcc. by Eli Friedman · 13 years ago
  8. 276b061 Initial implementation of __atomic_* (everything except __atomic_is_lock_free). by Eli Friedman · 13 years ago
  9. b390921 Use APFloat::toString to print APFloats more precisely in the AST printer. Patch by Olaf Krzikalla. by Eli Friedman · 13 years ago
  10. b219cfc Switch assert(0/false) llvm_unreachable. by David Blaikie · 13 years ago
  11. 5cee119 Add support for C++0x unicode string and character literals, from Craig Topper! by Douglas Gregor · 13 years ago
  12. 5f9e272 remove unneeded llvm:: namespace qualifiers on some core types now that LLVM.h imports by Chris Lattner · 13 years ago
  13. 91a5755 Create a new expression node, SubstNonTypeTemplateParmExpr, by John McCall · 13 years ago
  14. 03e8003 Introduce a new AST node describing reference binding to temporaries. by Douglas Gregor · 13 years ago
  15. f85e193 Automatic Reference Counting. by John McCall · 13 years ago
  16. 61eee0c Add support for builtin astype: by Tanya Lattner · 13 years ago
  17. feb375d Implement the __is_trivially_copyable type trait by Sean Hunt · 13 years ago
  18. 023df37 Rename "hasTrivialConstructor" to "hasTrivialDefaultConstructor" and by Sean Hunt · 13 years ago
  19. a280bc8 Remove a few more bogus returns when the switch covers all the enumerators. by Chandler Carruth · 13 years ago
  20. e194710 Remove another default and a *completely* bogus return from a switch by Chandler Carruth · 13 years ago
  21. 98fa94d Remove the type traits UTT_IsLvalueExpr and UTT_IsRvalueExpr. by Chandler Carruth · 13 years ago
  22. 28bbe4b Parsing/AST support for Structured Exception Handling by John Wiegley · 13 years ago
  23. 21ff2e5 Implementation of Embarcadero array type traits by John Wiegley · 13 years ago
  24. 20c0da7 t/clang/type-traits by John Wiegley · 13 years ago
  25. 5526220 t/clang/expr-traits by John Wiegley · 13 years ago
  26. b7e9589 Implement basic __is_trivial type-trait support, enough to close PR9472. by Chandler Carruth · 13 years ago
  27. f111d93 C1X: implement generic selections by Peter Collingbourne · 13 years ago
  28. 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
  29. f4e3cfb Add support for the OpenCL vec_step operator, by generalising and by Peter Collingbourne · 13 years ago
  30. 813d834 Selector::getIdentifierInfoForSlot() can return NULL values, a fact by Douglas Gregor · 13 years ago
  31. 56ca35d Change the representation of GNU ?: expressions to use a different expression by John McCall · 13 years ago
  32. e08ce65 AST, Sema, Serialization: add CUDAKernelCallExpr and related semantic actions by Peter Collingbourne · 13 years ago
  33. 63c00d7 Remove vtables from the Stmt hierarchy; this was pretty easy as by John McCall · 13 years ago
  34. d64e237 StmtPrinter: factor out arg printing code to PrintCallArgs by Peter Collingbourne · 13 years ago
  35. 9f36113 Implement the Microsoft __is_convertible_to type trait, modeling the by Douglas Gregor · 13 years ago
  36. d0fb3ad Improve the printing of C++ construction expressions, from Yuri Gribov! by Douglas Gregor · 13 years ago
  37. 274f83c Check whether DependentScopeDeclRefExpr's NestedNameSpecifier exists before accessing it, both for consistency (see StmtPrinter::VisitDeclRefExpr()) and for other use cases of dependent types. by Axel Naumann · 13 years ago
  38. c7793c7 Introduce a new expression kind, SubstNonTypeTemplateParmPackExpr, by Douglas Gregor · 14 years ago
  39. ee8aff0 Implement the sizeof...(pack) expression to compute the length of a by Douglas Gregor · 14 years ago
  40. be230c3 Implement support for pack expansions whose pattern is a non-type by Douglas Gregor · 14 years ago
  41. f187237 Remove the TypesCompatibleExprClass AST node. Merge its functionality into BinaryTypeTraitExpr. by Francois Pichet · 14 years ago
  42. 38c2b73 Fix enumerator not handled in switch warnings. by Francois Pichet · 14 years ago
  43. 6ad6f28 Type traits intrinsic implementation: __is_base_of(T, U) by Francois Pichet · 14 years ago
  44. 4765fa0 Rename CXXExprWithTemporaries -> ExprWithCleanups; there's no theoretical by John McCall · 14 years ago
  45. 12f78a6 Simplify the ASTs by consolidating ObjCImplicitGetterSetterExpr and ObjCPropertyRefExpr by John McCall · 14 years ago
  46. 7cd7d1a Add a new expression kind, OpaqueValueExpr, which is useful for by John McCall · 14 years ago
  47. 61e3828 Update to use 'LLVM_*' macro names for attributes. by Chandler Carruth · 14 years ago
  48. 8ac2d44 Eliminate usage of ObjCSuperExpr used for by Fariborz Jahanian · 14 years ago
  49. 2e15622 Define and implement CXXNoexceptExpr. Create it in Sema. by Sebastian Redl · 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. e2ca6d4 Eliminate CXXBindReferenceExpr, which was used in a ton of by Douglas Gregor · 14 years ago
  53. 6cf7502 Revert my user-defined literal commits - r1124{58,60,67} pending by Sean Hunt · 14 years ago
  54. 0016d51 Implement C++0x user-defined string literals. by Sean Hunt · 14 years ago
  55. 2de56d1 GCC didn't care for my attempt at API compatibility, so brute-force everything by John McCall · 14 years ago
  56. 096832c Regularize the API for accessing explicit template arguments. by John McCall · 14 years ago
  57. 4087f27 StringRef'ication of lots stuff, patch by Peter Davies! by Daniel Dunbar · 14 years ago
  58. 2f4eaef Convert all uses of StringLiteral::getStrData() to StringLiteral::getString() by Benjamin Kramer · 14 years ago
  59. 78e4cc7 Some refactoring on StmtPrinter to avoid unused function warnings. by Argyrios Kyrtzidis · 14 years ago
  60. de7e662 Zap unused UnaryOperator::OffsetOf. by Eli Friedman · 14 years ago
  61. 2577743 Added locations and type source info for DeclarationName. by Abramo Bagnara · 14 years ago
  62. 9668033 Revert the dump functions to send output to llvm::errs(), matching the LLVM convention; suggestion by Daniel. by Argyrios Kyrtzidis · 14 years ago
  63. bc1e146 Send AST dumping/printing to stdout instead of stderr. by Argyrios Kyrtzidis · 14 years ago
  64. ed8abf1 Reinstate the fix for PR7556. A silly use of isTrivial() was by Douglas Gregor · 14 years ago
  65. 8474567 Revert r107828 and r107827, the fix for PR7556, which seems to be by Douglas Gregor · 14 years ago
  66. 016a4a9 Rename CXXZeroInitValueExpr to CXXScalarValueInitExpr, to reflect its by Douglas Gregor · 14 years ago
  67. 6cb5b5f AST: Propogate printing policy to types in a bunch more places. by Daniel Dunbar · 14 years ago
  68. 03e80e4 Nasty rewriter bug which turns out to have an easy fix in by Fariborz Jahanian · 14 years ago
  69. 4bfe196 Reapplying patch to change StmtNodes.def to StmtNodes.td, this time by Sean Hunt · 14 years ago
  70. c302113 Revert r103072; I accidentally ended up deleting a bunch of trailing by Sean Hunt · 14 years ago
  71. 9d90d62 Change StmtNodes.def to StmtNodes.td in anticipation of a rewrite of attributes by Sean Hunt · 14 years ago
  72. cc8a5d5 Teach __builtin_offsetof to compute the offsets of members of base by Douglas Gregor · 14 years ago
  73. 8ecdb65 Completely reimplement __builtin_offsetof, based on a patch by Roberto Amadini. by Douglas Gregor · 14 years ago
  74. 8f5e3dd Improve the AST representation of Objective-C @try/@catch/@finally by Douglas Gregor · 14 years ago
  75. 04badcf Overhaul the AST representation of Objective-C message send by Douglas Gregor · 14 years ago
  76. 900fc63 Add raw_ostream operators to NamedDecl for convenience. Switch over all users of getNameAsString on a stream. by Benjamin Kramer · 14 years ago
  77. a2e7dd2 Use CXXPseudoDestructorExpr as the stored representation for dependent by Douglas Gregor · 14 years ago
  78. eb60edf Add an CXXBindReferenceExpr (not used just yet). by Anders Carlsson · 14 years ago
  79. c75da51 Fixes a rewrite bug rewriting a block call argument which has a trvial by Fariborz Jahanian · 15 years ago
  80. 97fd83a Fix a problem related to rewrite of anonymous unions. (fixes radar 6948022) by Fariborz Jahanian · 15 years ago
  81. aa81e16 Rework how we support C++ implicit member accesses. If we can resolve an by John McCall · 15 years ago
  82. 129e2df Eliminate the use of OverloadedFunctionDecl in member expressions. by John McCall · 15 years ago
  83. 770b4a8 Remove VISIBILITY_HIDDEN from lib/AST. by Benjamin Kramer · 15 years ago
  84. 99e9b4d Eliminate CXXConditionDeclExpr with extreme prejudice. by Douglas Gregor · 15 years ago
  85. f7a1a74 Rip out TemplateIdRefExpr and make UnresolvedLookupExpr and by John McCall · 15 years ago
  86. ba13543 "Incremental" progress on using expressions, by which I mean totally ripping by John McCall · 15 years ago
  87. 865d447 Draw a brighter line between "unresolved" expressions, where we have done the by John McCall · 15 years ago
  88. a2813ce Eliminate QualifiedDeclRefExpr, which captured the notion of a by Douglas Gregor · 15 years ago
  89. bdfe48a While writing source-location entries to a PCH file, go through an by Douglas Gregor · 15 years ago
  90. 183700f Change all the Type::getAsFoo() methods to specializations of Type::getAs(). by John McCall · 15 years ago
  91. 1eb4433 Remove tabs, and whitespace cleanups. by Mike Stump · 15 years ago
  92. 3b6afbb Initial stab at implement dependent member references to member by Douglas Gregor · 15 years ago
  93. a71d819 Implement AST, semantics, and CodeGen for C++ pseudo-destructor by Douglas Gregor · 15 years ago
  94. a38c687 Improved handling for dependent, qualified member access expressions, e.g., by Douglas Gregor · 15 years ago
  95. c4bf26f Preliminary AST representation and semantic analysis for by Douglas Gregor · 15 years ago
  96. 83f6faf Eliminate CXXAdornedMemberExpr entirely. Instead, optionally allocate by Douglas Gregor · 15 years ago
  97. 0979c80 Rename CXXQualifiedMemberExpr -> CXXAdornedMemberExpr, since we will by Douglas Gregor · 15 years ago
  98. bd4c4ae When a member reference expression includes a qualifier on the member by Douglas Gregor · 15 years ago
  99. 6cb7c1a Replace cerr with errs(). by Benjamin Kramer · 15 years ago
  100. 09105f5 Using "ObjCImplicitSetterGetterRefExpr" instead of "ObjCImplctSetterGetterRefExpr". by Fariborz Jahanian · 15 years ago