1. 4216ee1 AST dumping: dump template instantiations only once by Dmitri Gribenko · 12 years ago
  2. e252a89 Remove const_casts by making spec_begin()/spec_end() const by Dmitri Gribenko · 12 years ago
  3. 4a19052 AST dumping: indicate the previous declaration for a redeclaration, and by Richard Smith · 12 years ago
  4. ae54121 Use const visitors in ASTDumper. by Alexander Kornienko · 12 years ago
  5. 95f97bf Fix -Wcovered-switch-default and -Wunused-private-field warnings. by Richard Smith · 12 years ago
  6. e8d4119 Add indents to AST dumping and removed parenthesis from AST nodes. by Richard Trieu · 12 years ago
  7. 7ba443a Highlight various parts of the AST dump with color. Colors are controlled by by Richard Trieu · 12 years ago
  8. 51ccafd Resolved merge error with r172323 (llvm::X -> X) by Alexander Kornienko · 12 years ago
  9. acd356e Dump comments in -ast-dump. http://llvm-reviews.chandlerc.com/D269 by Alexander Kornienko · 12 years ago
  10. cfa88f8 Remove useless 'llvm::' qualifier from names like StringRef and others that are by Dmitri Gribenko · 12 years ago
  11. c3cd2b0 Implement Attr dumping for -ast-dump. http://llvm-reviews.chandlerc.com/D234 by Alexander Kornienko · 12 years ago
  12. c939453 Minor coding style issue: NULL -> 0 by Alexander Kornienko · 12 years ago
  13. ad7bb36 ASTDumper coding style fixes. http://llvm-reviews.chandlerc.com/D226 by Alexander Kornienko · 12 years ago
  14. d538ed9 Implement AST dumper for Decls. http://llvm-reviews.chandlerc.com/D52 by Alexander Kornienko · 12 years ago
  15. 40b66a00 Rename StmtDumper to ASTDumper. Patch contributed by Philip Craig! by Alexander Kornienko · 12 years ago[Renamed (85%) from lib/AST/StmtDumper.cpp]
  16. 21c8b19 StmtDumper coding style changes by Alexander Kornienko · 12 years ago
  17. d5bc359 Rename StmtDumper::DumpSubTree() to dumpStmt() by Alexander Kornienko · 12 years ago
  18. 55fc873 Sort all of Clang's files under 'lib', and fix up the broken headers uncovered. by Chandler Carruth · 12 years ago
  19. 95f6190 StmtDumper: remove incomplete support for limiting the maximum dump depth. by Dmitri Gribenko · 12 years ago
  20. cb7b45e Create helper functions in StmtDumper for outputting the indentation, newlines, and brackets. by Manuel Klimek · 12 years ago
  21. 31ba613 Dont cast away const needlessly. Found by gcc48 -Wcast-qual. by Roman Divacky · 12 years ago
  22. 478851c Drop the ASTContext.h include from Stmt.h and fix up transitive users. by Benjamin Kramer · 12 years ago
  23. f70a886 Add support for the C11 _Alignof keyword. by Jordan Rose · 12 years ago
  24. 28ad063 Support L__FUNCTION__ in microsoft mode, PR11789 by Nico Weber · 12 years ago
  25. 8ab09da Moved the StringLiteral printing code from StmtPrinter into the StringLiteral by Richard Trieu · 12 years ago
  26. 36faadd When AST-dumping the ObjCBoxedExpr node, also print out what selector it chose. by Argyrios Kyrtzidis · 12 years ago
  27. b085d89 Add info to ObjCPropertyRefExpr to indicate whether the dot syntax property by Argyrios Kyrtzidis · 13 years ago
  28. 4e4d084 Unify naming of LangOptions variable/get function across the Clang stack (Lex to AST). by David Blaikie · 13 years ago
  29. 89da8cf Fix the dumping of BlockExprs. by John McCall · 13 years ago
  30. ebcb57a Add clang support for new Objective-C literal syntax for NSDictionary, NSArray, by Ted Kremenek · 13 years ago
  31. ac1303e Generate an AST for the conversion from a lambda closure type to a by Douglas Gregor · 13 years ago
  32. a59d20b Print NamedDecls directly to a raw_ostream where possible. by Benjamin Kramer · 13 years ago
  33. 80ee6e8 There's no good reason to track temporaries in ExprWithCleanups, by John McCall · 13 years ago
  34. 4b9c2d2 Change the AST representation of operations on Objective-C by John McCall · 13 years ago
  35. 49cf884 In the AST dump, add a space between the type and value for CharacterLiteral. by Richard Trieu · 13 years ago
  36. b8989f2 Change operator<< for raw_ostream and NamedDecl to take a reference instead of a pointer. by Benjamin Kramer · 13 years ago
  37. b219cfc Switch assert(0/false) llvm_unreachable. by David Blaikie · 13 years ago
  38. cc2fca2 Make StmtDumper::VisitCXXFunctionalCastExpr dump the attached cast kind. Fix the cast kind for a cast from floating-point to enum type. (The difference isn't actually visible, but that's just because IRGen is overly forgiving.) Per report by Enea Zaffanella on cfe-dev. by Eli Friedman · 13 years ago
  39. 5cee119 Add support for C++0x unicode string and character literals, from Craig Topper! by Douglas Gregor · 13 years ago
  40. 5f9e272 remove unneeded llvm:: namespace qualifiers on some core types now that LLVM.h imports by Chris Lattner · 13 years ago
  41. 3aa8140 Add an optional field attached to a DeclRefExpr which points back to the by Chandler Carruth · 13 years ago
  42. 162e1c1 Support for C++11 (non-template) alias declarations. by Richard Smith · 14 years ago
  43. 28ac87e Support for printing/dumping static asserts by Peter Collingbourne · 14 years ago
  44. f4e3cfb Add support for the OpenCL vec_step operator, by generalising and by Peter Collingbourne · 14 years ago
  45. dc35571 Update UsingDecl, UnresolvedUsingTypenameDecl, and by Douglas Gregor · 14 years ago
  46. 4ae493c implement basic support for __label__. I wouldn't be shocked if there are by Chris Lattner · 14 years ago
  47. 56ca35d Change the representation of GNU ?: expressions to use a different expression by John McCall · 14 years ago
  48. 7502c1d Give some convenient idiomatic accessors to Stmt::child_range and by John McCall · 14 years ago
  49. 6b5a61b A few more tweaks to the blocks AST representation: by John McCall · 14 years ago
  50. 99130e5 Complain on missing property getter method only by Fariborz Jahanian · 14 years ago
  51. 49f4e1c It's kindof silly that ExtQuals has an ASTContext&, and we can use that by John McCall · 14 years ago
  52. f187237 Remove the TypesCompatibleExprClass AST node. Merge its functionality into BinaryTypeTraitExpr. by Francois Pichet · 14 years ago
  53. 4765fa0 Rename CXXExprWithTemporaries -> ExprWithCleanups; there's no theoretical by John McCall · 14 years ago
  54. 12f78a6 Simplify the ASTs by consolidating ObjCImplicitGetterSetterExpr and ObjCPropertyRefExpr by John McCall · 14 years ago
  55. f89e55a Calculate the value kind of an expression when it's created and by John McCall · 14 years ago
  56. cb7b1e1 Make sure to always check the result of by Douglas Gregor · 14 years ago
  57. 8ac2d44 Eliminate usage of ObjCSuperExpr used for by Fariborz Jahanian · 14 years ago
  58. f9b949f AST work to support [C++] [IRgen] for ?: with missing LHS by Fariborz Jahanian · 14 years ago
  59. d931b08 De-memberify the VarDecl and FunctionDecl StorageClass enums. by John McCall · 14 years ago
  60. 5baba9d More incremental progress towards not including Expr.h in Sema.h. by John McCall · 14 years ago
  61. 2f4eaef Convert all uses of StringLiteral::getStrData() to StringLiteral::getString() by Benjamin Kramer · 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. f8cf0b0 Note that a CXXConstructExpr is zeroing when dumping it. by John McCall · 14 years ago
  64. f871d0c Store inheritance paths after CastExprs instead of inside them. by John McCall · 14 years ago
  65. bc1e146 Send AST dumping/printing to stdout instead of stderr. by Argyrios Kyrtzidis · 14 years ago
  66. 906082e Update ImplicitCastExpr to be able to represent an XValue. by Sebastian Redl · 14 years ago
  67. a46325e make -ast-dump print something like this for declstmts: by Chris Lattner · 14 years ago
  68. 0ca4359 Let StmtDumper.cpp handle using declarations. by Sebastian Redl · 14 years ago
  69. c00d8e1 Make the static type of the exception variable in an Objective-C by Douglas Gregor · 14 years ago
  70. 5cf86ba Actually produce base paths for CastExprs of kind CK_DerivedToBase. by Anders Carlsson · 14 years ago
  71. 8f5e3dd Improve the AST representation of Objective-C @try/@catch/@finally by Douglas Gregor · 14 years ago
  72. 04badcf Overhaul the AST representation of Objective-C message send by Douglas Gregor · 14 years ago
  73. 900fc63 Add raw_ostream operators to NamedDecl for convenience. Switch over all users of getNameAsString on a stream. by Benjamin Kramer · 15 years ago
  74. d4bbdfe Dump the constructor type for a CXXConstructExpr. by John McCall · 15 years ago
  75. 9d5f35e StmtDumper::VisitUnresolvedLookupExpr by John McCall · 15 years ago
  76. 806c12e Convert StmtDumper to raw_ostream. I forget why. by Daniel Dunbar · 15 years ago
  77. 770b4a8 Remove VISIBILITY_HIDDEN from lib/AST. by Benjamin Kramer · 15 years ago
  78. 0e489ea When dumping implicit cast exprs, print out whether the cast is an lvalue cast or not. by Anders Carlsson · 15 years ago
  79. e013d68 Move clients to use IdentifierInfo::getNameStart() instead of getName() by Daniel Dunbar · 15 years ago
  80. 0953e76 Refactor the representation of qualifiers to bring ExtQualType out of the by John McCall · 15 years ago
  81. 1eb4433 Remove tabs, and whitespace cleanups. by Mike Stump · 15 years ago
  82. f8ec55a Add CastExpr::getCastKindName and use it in the StmtDumper. by Anders Carlsson · 15 years ago
  83. b633c4e Add a CK_FunctionToPointerDecay cast kind. by Anders Carlsson · 15 years ago
  84. 7fe5d72 path to ir-gen 12.3.1 Conversion by constructor by Fariborz Jahanian · 15 years ago
  85. be3289d More work for conversion functions. by Mike Stump · 15 years ago
  86. 27a5b9b Add CK_NullToMemberPointer and CK_BaseToDerivedMemberPointer cast kinds. Make -ast-dump print out the cast kinds of cast expressions. by Anders Carlsson · 15 years ago
  87. 09105f5 Using "ObjCImplicitSetterGetterRefExpr" instead of "ObjCImplctSetterGetterRefExpr". by Fariborz Jahanian · 15 years ago
  88. 154440e Renamed ObjCKVCRefExpr to ObjCImplctSetterGetterRefExpr. by Fariborz Jahanian · 15 years ago
  89. 0e67f9d Fix spacing by Anders Carlsson · 15 years ago
  90. 0eca1b6 Add some information about temporaries to the statement dumper. by Anders Carlsson · 15 years ago
  91. e4f2142 Key decisions about 'bool' vs '_Bool' to be based on a new flag in langoptions. by Chris Lattner · 15 years ago
  92. d249e1d1f Create a new PrintingPolicy class, which we pass down through the AST by Douglas Gregor · 15 years ago
  93. 5466c7b Audit __private_extern__ handling. by Daniel Dunbar · 16 years ago
  94. f279725 simplify by Chris Lattner · 16 years ago
  95. ab3a852 Change compound assignment operators to keep track of both the promoted by Eli Friedman · 16 years ago
  96. 2a3009a Semantic analysis, ASTs, and unqualified name lookup support for C++ by Douglas Gregor · 16 years ago
  97. b9c3f96 Introduce a new PresumedLoc class to represent the concept of a location by Chris Lattner · 16 years ago
  98. 4afa39d Remove ScopedDecl, collapsing all of its functionality into Decl, so by Douglas Gregor · 16 years ago
  99. df7c17a Change some terminology in SourceLocation: instead of referring to by Chris Lattner · 16 years ago
  100. 61366e9 Correct the order in which we cope with end-of-class-definition by Douglas Gregor · 16 years ago