1. 65ebd13 [Frontend] Delete -print-decl-contexts by Fangrui Song · 7 years ago
  2. 47db633 [Frontend] Tidy up -print-decl-contexts conditions by Fangrui Song · 7 years ago
  3. 6907ce2 Remove trailing space by Fangrui Song · 7 years ago
  4. 7bcc210 [AST] Fix -ast-print for _Bool when have diagnostics by Joel E. Denny · 7 years ago
  5. d10d790 Allow the creation of human-friendly ASTDumper to arbitrary output stream by Alexander Kornienko · 7 years ago
  6. 08d3b39 Handle -ast-dump-all when passed as the only option. by Aaron Ballman · 8 years ago
  7. 3a36ac1 Add -cc1 flag -ast-dump-all to perform an AST dump including entities that haven't yet been deserialized. by Richard Smith · 9 years ago
  8. b44b4cb Handle StaticAssertDecl in DeclContextPrinter by Alex Lorenz · 9 years ago
  9. a186417 Handle VarTemplateDecl in DeclContextPrinter by Alex Lorenz · 9 years ago
  10. 21c3293 Handle AccessSpecDecl in DeclContextPrinter by Alex Lorenz · 9 years ago
  11. eebc494 Handle ClassTemplateSpecializationDecl in DeclContextPrinter by Alex Lorenz · 9 years ago
  12. 009978b Handle EmptyDecl in DeclContextPrinter by Alex Lorenz · 9 years ago
  13. 1d86ab4 Handle UsingDecl and UsingShadowDecl in DeclContextPrinter by Alex Lorenz · 9 years ago
  14. 14abc7f Handle FriendDecl in DeclContextPrinter by Alex Lorenz · 9 years ago
  15. 9670f84 [NFC] Header cleanup by Mehdi Amini · 9 years ago
  16. 03f8907 Frontend: Simplify ownership model for clang's output streams. by Peter Collingbourne · 9 years ago
  17. a3debed Use even more ArrayRefs by David Majnemer · 9 years ago
  18. 59f7792 Use more ArrayRefs by David Majnemer · 9 years ago
  19. ab9db51 Revert r240270 ("Fixed/added namespace ending comments using clang-tidy"). by Alexander Kornienko · 10 years ago
  20. 3d9d929 Fixed/added namespace ending comments using clang-tidy. NFC by Alexander Kornienko · 10 years ago
  21. ebdfc00 Remove some unused includes of llvm/IR headers from parts of Clang that really by Richard Smith · 11 years ago
  22. 35f986d Modify behavior of -ast-dump-lookups: if -ast-dump is not also provided, dump by Richard Smith · 11 years ago
  23. 6beb6aa Recommit 213307: unique_ptr-ify ownership of ASTConsumers (reverted in r213325) by David Blaikie · 11 years ago
  24. 62a56f3 Revert "unique_ptr-ify ownership of ASTConsumers" by David Blaikie · 11 years ago
  25. a51666a unique_ptr-ify ownership of ASTConsumers by David Blaikie · 11 years ago
  26. 49a2790 [C++11] Use 'nullptr'. Frontend edition. by Craig Topper · 11 years ago
  27. 4567053 De-virtualize a method. It's called through template magic and doesn't override anything. by Craig Topper · 12 years ago
  28. afa7cb3 [C++11] Add 'override' keyword to virtual methods that override their base class. by Craig Topper · 12 years ago
  29. 629afae [C++11] Replacing DeclBase iterators decls_begin() and decls_end() with iterator_range decls(). The same is true for the noload versions of these APIs. Updating all of the usages of the iterators with range-based for loops. by Aaron Ballman · 12 years ago
  30. f6bf62e [C++11] Replacing FunctionDecl iterators param_begin() and param_end() with iterator_range params(). Updating all of the usages of the iterators with range-based for loops. by Aaron Ballman · 12 years ago
  31. fee2c8d Remove -ast-dump-xml. by Richard Smith · 12 years ago
  32. 6ea0582 Add -ast-dump-lookups switch to -cc1 to dump DeclContext lookup maps. Test to by Richard Smith · 12 years ago
  33. a769e07 OpenMP threadprivate directive parsing and semantic analysis by Alexey Bataev · 13 years ago
  34. 24ebf7c Add streamed versions of getQualifiedNameAsString. by Benjamin Kramer · 13 years ago
  35. f857950 Remove useless 'llvm::' qualifier from names like StringRef and others that are by Dmitri Gribenko · 13 years ago
  36. ffd5551 Rewrite #includes for llvm/Foo.h to llvm/IR/Foo.h as appropriate to by Chandler Carruth · 13 years ago
  37. 3a02247 Sort all of Clang's files under 'lib', and fix up the broken headers uncovered. by Chandler Carruth · 13 years ago
  38. 3233391 Use color for -ast-dump-filter only when it is supported by Dmitri Gribenko · 13 years ago
  39. 0360d1e Fix for -ast-dump-filter by Alexander Kornienko · 13 years ago
  40. 2018618 Fixed crash and added a test and a minor output problem by Alexander Kornienko · 13 years ago
  41. 1fb908f Fix base type of ASTDeclNodeLister. by Michael Han · 13 years ago
  42. 4de0359 Added -ast-list option to dump filterable AST decl node names. by Alexander Kornienko · 13 years ago
  43. 3db68ee Added -ast-dump-filter option to clang -cc1. by Alexander Kornienko · 13 years ago
  44. 841dd88 Change ASTConsumer::HandleTopLevelDecl to return true for the parser to continue by Argyrios Kyrtzidis · 14 years ago
  45. b89514a Change operator<< for raw_ostream and NamedDecl to take a reference instead of a pointer. by Benjamin Kramer · 14 years ago
  46. f937c02 Rename TagDecl::isDefinition -> isCompleteDefinition by John McCall · 14 years ago
  47. c0b0728 When 'bool' is not a built-in type but is defined as a macro, print by Douglas Gregor · 14 years ago
  48. 83d382b Switch assert(0/false) llvm_unreachable. by David Blaikie · 14 years ago
  49. 82398f9 Add template instantiations to the output of -ast-dump. by Richard Trieu · 14 years ago
  50. 0e62c1c remove unneeded llvm:: namespace qualifiers on some core types now that LLVM.h imports by Chris Lattner · 14 years ago
  51. 4a8ea10 Modify some deleted function methods to better reflect reality: by Alexis Hunt · 14 years ago
  52. dda56e4 Support for C++11 (non-template) alias declarations. by Richard Smith · 14 years ago
  53. cfee35b Remove the AST printer (-ast-print-xml), which is too incomplete and by Douglas Gregor · 15 years ago
  54. d12b480 handle labeldecls. by Chris Lattner · 15 years ago
  55. d6f8124 Eliminate the internal command-line option for viewing inheritance in C++ classes, since it's only really worked for the trivial cases anyway due to lame pseudo-parsing of the class name. The viewInheritance() function is still available for use in the debugger, where this is far more useful by Douglas Gregor · 15 years ago
  56. 48e2d9e Add IndirectField case in DeclContextPrinter::PrintDeclContext. Fix PR8832. by Francois Pichet · 15 years ago
  57. 8aaf499 Merge System into Support. by Michael J. Spencer · 15 years ago
  58. 9b66c4b Add -cc1 -ast-dump-xml, an excessively detailed XML dump of the internals by John McCall · 15 years ago
  59. 1e1de05 Send AST dumping/printing to stdout instead of stderr. by Argyrios Kyrtzidis · 15 years ago
  60. 46f556d Simplify code. FunctionDecl and ObjCMethodDecl have some common interfaces. by Argyrios Kyrtzidis · 15 years ago
  61. c1b1729 Break Frontend's dependency on Rewrite, Checker and CodeGen in shared library configuration by Daniel Dunbar · 15 years ago
  62. b11416d Add raw_ostream operators to NamedDecl for convenience. Switch over all users of getNameAsString on a stream. by Benjamin Kramer · 15 years ago
  63. 8ee6760 Fronted: Kill overly specialized RecordLayoutDumper, just make -dump-record-layouts a bit that Sema honors. by Daniel Dunbar · 15 years ago
  64. aa423af AST: Move C++ record layout dumping to ASTContext::DumpRecordLayout. by Daniel Dunbar · 15 years ago
  65. 0a5a221 Eliminate the ASTContext parameter from RecordDecl::getDefinition() by Douglas Gregor · 16 years ago
  66. 00c6046 Add a missing case for DeclContext printer. by Zhongxing Xu · 16 years ago
  67. c6f59b1 Better coverage for -dump-record-layouts and -print-decl-contexts. by Eli Friedman · 16 years ago
  68. 897bc03 Small compatibility fix for -print-decl-contexts. by Eli Friedman · 16 years ago
  69. f680e7d Kill a few more random stderr uses. by Daniel Dunbar · 16 years ago
  70. 1054fae Audit the code for places where it is assumed that every base specifier refers to a RecordType. Add assertions or conditions as appropriate. This fixes another crash in the Apache stdlib vector. by Sebastian Redl · 16 years ago
  71. 856bbea Remove OriginalTypeParmDecl; the original type is the one specified by John McCall · 16 years ago
  72. 294616a Don't try to dump invalid decls or forward decls. by Anders Carlsson · 16 years ago
  73. e188310 Who would have thought that empty classes were so tricky? Handle cases where an empty virtual base class needs to be moved aside because it conflicts with the first field. by Anders Carlsson · 16 years ago
  74. 6d2b6f4 Improve the record layout dumper. by Anders Carlsson · 16 years ago
  75. d934010 Add a -dump-record-layouts argument to clang-cc. by Anders Carlsson · 16 years ago
  76. e2350a3 Eliminate FunctionDecl::getBodyIfAvailable by Douglas Gregor · 16 years ago
  77. 11289f4 Remove tabs, and whitespace cleanups. by Mike Stump · 16 years ago
  78. db71492 Fix build of clang with gcc-4.4: #include <cstdio> was missing. by Torok Edwin · 16 years ago
  79. 89b422c Replace cerr with errs(). by Benjamin Kramer · 16 years ago
  80. 5df79c6 remove dead code. by Zhongxing Xu · 16 years ago
  81. cfbfe78 De-ASTContext-ify DeclContext. by Argyrios Kyrtzidis · 16 years ago
  82. 8a803cc Remove the ASTContext parameter from the printing related methods of Decl. by Argyrios Kyrtzidis · 16 years ago
  83. c4b766b Move CXXMethodDecl::OutOfLineDefinition into Decl::OutOfLine. by Argyrios Kyrtzidis · 16 years ago
  84. 278f52e Refactor and clean up the AST printer, so that it uses a DeclVisitor, by Douglas Gregor · 16 years ago
  85. 7de5966 Create a new PrintingPolicy class, which we pass down through the AST by Douglas Gregor · 16 years ago
  86. 7f5601e5 AST XML dump, from Olaf Krzikalla! by Douglas Gregor · 16 years ago
  87. 9f30fc3 Move ASTConsumers.h to include/clang/Frontend, and move the associated by Eli Friedman · 16 years ago[Renamed (99%) from clang/tools/clang-cc/ASTConsumers.cpp]
  88. 8f1d33e A couple of tweaks to make -ast-print produce code that's closer to by Eli Friedman · 16 years ago
  89. 32887f0 Add a new -ast-dump-full option that traverses the translation unit by Douglas Gregor · 16 years ago
  90. 0dedefe minor cleanups to ast-dump, use getBody(context). by Chris Lattner · 16 years ago
  91. 29bd76f Eliminate the three SmallVectors in ObjCImplDecl (for instance by Douglas Gregor · 16 years ago
  92. 48db39d Remove the serialization code that predates precompiled by Douglas Gregor · 16 years ago
  93. 426662b Add pch reader/writer support for most of DeclObjC.h. Very close to reading/writing all ObjC AST nodes that we will encounter in header files (still a few FIXME's). by Steve Naroff · 16 years ago
  94. e3dcb2d FunctionDecl::getBody() is getting an ASTContext argument for use in by Douglas Gregor · 16 years ago
  95. f0b575f Add PCH support for ImplicitCastExprs. This is the first expression by Douglas Gregor · 16 years ago
  96. bcced4e Propagate the ASTContext to various AST traversal and lookup functions. by Douglas Gregor · 16 years ago
  97. 01a5beb Apply a patch which adds 'OriginalParmVar' to the DeclContextPrinter by Jon by Zhongxing Xu · 16 years ago
  98. 5bbb3c8 Push DeclGroup much farther throughout the compiler. Now the various by Chris Lattner · 17 years ago
  99. c0c3dff reduce indentation, no functionality change. by Chris Lattner · 17 years ago
  100. a5adead push more ASTContext goodness out through interfaces that use TranslationUnit by Chris Lattner · 17 years ago