- 65ebd13 [Frontend] Delete -print-decl-contexts by Fangrui Song · 7 years ago
- 47db633 [Frontend] Tidy up -print-decl-contexts conditions by Fangrui Song · 7 years ago
- 6907ce2 Remove trailing space by Fangrui Song · 7 years ago
- 7bcc210 [AST] Fix -ast-print for _Bool when have diagnostics by Joel E. Denny · 7 years ago
- d10d790 Allow the creation of human-friendly ASTDumper to arbitrary output stream by Alexander Kornienko · 7 years ago
- 08d3b39 Handle -ast-dump-all when passed as the only option. by Aaron Ballman · 8 years ago
- 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
- b44b4cb Handle StaticAssertDecl in DeclContextPrinter by Alex Lorenz · 9 years ago
- a186417 Handle VarTemplateDecl in DeclContextPrinter by Alex Lorenz · 9 years ago
- 21c3293 Handle AccessSpecDecl in DeclContextPrinter by Alex Lorenz · 9 years ago
- eebc494 Handle ClassTemplateSpecializationDecl in DeclContextPrinter by Alex Lorenz · 9 years ago
- 009978b Handle EmptyDecl in DeclContextPrinter by Alex Lorenz · 9 years ago
- 1d86ab4 Handle UsingDecl and UsingShadowDecl in DeclContextPrinter by Alex Lorenz · 9 years ago
- 14abc7f Handle FriendDecl in DeclContextPrinter by Alex Lorenz · 9 years ago
- 9670f84 [NFC] Header cleanup by Mehdi Amini · 9 years ago
- 03f8907 Frontend: Simplify ownership model for clang's output streams. by Peter Collingbourne · 9 years ago
- a3debed Use even more ArrayRefs by David Majnemer · 9 years ago
- 59f7792 Use more ArrayRefs by David Majnemer · 9 years ago
- ab9db51 Revert r240270 ("Fixed/added namespace ending comments using clang-tidy"). by Alexander Kornienko · 10 years ago
- 3d9d929 Fixed/added namespace ending comments using clang-tidy. NFC by Alexander Kornienko · 10 years ago
- ebdfc00 Remove some unused includes of llvm/IR headers from parts of Clang that really by Richard Smith · 11 years ago
- 35f986d Modify behavior of -ast-dump-lookups: if -ast-dump is not also provided, dump by Richard Smith · 11 years ago
- 6beb6aa Recommit 213307: unique_ptr-ify ownership of ASTConsumers (reverted in r213325) by David Blaikie · 11 years ago
- 62a56f3 Revert "unique_ptr-ify ownership of ASTConsumers" by David Blaikie · 11 years ago
- a51666a unique_ptr-ify ownership of ASTConsumers by David Blaikie · 11 years ago
- 49a2790 [C++11] Use 'nullptr'. Frontend edition. by Craig Topper · 11 years ago
- 4567053 De-virtualize a method. It's called through template magic and doesn't override anything. by Craig Topper · 12 years ago
- afa7cb3 [C++11] Add 'override' keyword to virtual methods that override their base class. by Craig Topper · 12 years ago
- 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
- 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
- fee2c8d Remove -ast-dump-xml. by Richard Smith · 12 years ago
- 6ea0582 Add -ast-dump-lookups switch to -cc1 to dump DeclContext lookup maps. Test to by Richard Smith · 12 years ago
- a769e07 OpenMP threadprivate directive parsing and semantic analysis by Alexey Bataev · 13 years ago
- 24ebf7c Add streamed versions of getQualifiedNameAsString. by Benjamin Kramer · 13 years ago
- f857950 Remove useless 'llvm::' qualifier from names like StringRef and others that are by Dmitri Gribenko · 13 years ago
- ffd5551 Rewrite #includes for llvm/Foo.h to llvm/IR/Foo.h as appropriate to by Chandler Carruth · 13 years ago
- 3a02247 Sort all of Clang's files under 'lib', and fix up the broken headers uncovered. by Chandler Carruth · 13 years ago
- 3233391 Use color for -ast-dump-filter only when it is supported by Dmitri Gribenko · 13 years ago
- 0360d1e Fix for -ast-dump-filter by Alexander Kornienko · 13 years ago
- 2018618 Fixed crash and added a test and a minor output problem by Alexander Kornienko · 13 years ago
- 1fb908f Fix base type of ASTDeclNodeLister. by Michael Han · 13 years ago
- 4de0359 Added -ast-list option to dump filterable AST decl node names. by Alexander Kornienko · 13 years ago
- 3db68ee Added -ast-dump-filter option to clang -cc1. by Alexander Kornienko · 13 years ago
- 841dd88 Change ASTConsumer::HandleTopLevelDecl to return true for the parser to continue by Argyrios Kyrtzidis · 14 years ago
- b89514a Change operator<< for raw_ostream and NamedDecl to take a reference instead of a pointer. by Benjamin Kramer · 14 years ago
- f937c02 Rename TagDecl::isDefinition -> isCompleteDefinition by John McCall · 14 years ago
- c0b0728 When 'bool' is not a built-in type but is defined as a macro, print by Douglas Gregor · 14 years ago
- 83d382b Switch assert(0/false) llvm_unreachable. by David Blaikie · 14 years ago
- 82398f9 Add template instantiations to the output of -ast-dump. by Richard Trieu · 14 years ago
- 0e62c1c remove unneeded llvm:: namespace qualifiers on some core types now that LLVM.h imports by Chris Lattner · 14 years ago
- 4a8ea10 Modify some deleted function methods to better reflect reality: by Alexis Hunt · 14 years ago
- dda56e4 Support for C++11 (non-template) alias declarations. by Richard Smith · 14 years ago
- cfee35b Remove the AST printer (-ast-print-xml), which is too incomplete and by Douglas Gregor · 15 years ago
- d12b480 handle labeldecls. by Chris Lattner · 15 years ago
- 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
- 48e2d9e Add IndirectField case in DeclContextPrinter::PrintDeclContext. Fix PR8832. by Francois Pichet · 15 years ago
- 8aaf499 Merge System into Support. by Michael J. Spencer · 15 years ago
- 9b66c4b Add -cc1 -ast-dump-xml, an excessively detailed XML dump of the internals by John McCall · 15 years ago
- 1e1de05 Send AST dumping/printing to stdout instead of stderr. by Argyrios Kyrtzidis · 15 years ago
- 46f556d Simplify code. FunctionDecl and ObjCMethodDecl have some common interfaces. by Argyrios Kyrtzidis · 15 years ago
- c1b1729 Break Frontend's dependency on Rewrite, Checker and CodeGen in shared library configuration by Daniel Dunbar · 15 years ago
- b11416d Add raw_ostream operators to NamedDecl for convenience. Switch over all users of getNameAsString on a stream. by Benjamin Kramer · 15 years ago
- 8ee6760 Fronted: Kill overly specialized RecordLayoutDumper, just make -dump-record-layouts a bit that Sema honors. by Daniel Dunbar · 15 years ago
- aa423af AST: Move C++ record layout dumping to ASTContext::DumpRecordLayout. by Daniel Dunbar · 15 years ago
- 0a5a221 Eliminate the ASTContext parameter from RecordDecl::getDefinition() by Douglas Gregor · 16 years ago
- 00c6046 Add a missing case for DeclContext printer. by Zhongxing Xu · 16 years ago
- c6f59b1 Better coverage for -dump-record-layouts and -print-decl-contexts. by Eli Friedman · 16 years ago
- 897bc03 Small compatibility fix for -print-decl-contexts. by Eli Friedman · 16 years ago
- f680e7d Kill a few more random stderr uses. by Daniel Dunbar · 16 years ago
- 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
- 856bbea Remove OriginalTypeParmDecl; the original type is the one specified by John McCall · 16 years ago
- 294616a Don't try to dump invalid decls or forward decls. by Anders Carlsson · 16 years ago
- 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
- 6d2b6f4 Improve the record layout dumper. by Anders Carlsson · 16 years ago
- d934010 Add a -dump-record-layouts argument to clang-cc. by Anders Carlsson · 16 years ago
- e2350a3 Eliminate FunctionDecl::getBodyIfAvailable by Douglas Gregor · 16 years ago
- 11289f4 Remove tabs, and whitespace cleanups. by Mike Stump · 16 years ago
- db71492 Fix build of clang with gcc-4.4: #include <cstdio> was missing. by Torok Edwin · 16 years ago
- 89b422c Replace cerr with errs(). by Benjamin Kramer · 16 years ago
- 5df79c6 remove dead code. by Zhongxing Xu · 16 years ago
- cfbfe78 De-ASTContext-ify DeclContext. by Argyrios Kyrtzidis · 16 years ago
- 8a803cc Remove the ASTContext parameter from the printing related methods of Decl. by Argyrios Kyrtzidis · 16 years ago
- c4b766b Move CXXMethodDecl::OutOfLineDefinition into Decl::OutOfLine. by Argyrios Kyrtzidis · 16 years ago
- 278f52e Refactor and clean up the AST printer, so that it uses a DeclVisitor, by Douglas Gregor · 16 years ago
- 7de5966 Create a new PrintingPolicy class, which we pass down through the AST by Douglas Gregor · 16 years ago
- 7f5601e5 AST XML dump, from Olaf Krzikalla! by Douglas Gregor · 16 years ago
- 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]
- 8f1d33e A couple of tweaks to make -ast-print produce code that's closer to by Eli Friedman · 16 years ago
- 32887f0 Add a new -ast-dump-full option that traverses the translation unit by Douglas Gregor · 16 years ago
- 0dedefe minor cleanups to ast-dump, use getBody(context). by Chris Lattner · 16 years ago
- 29bd76f Eliminate the three SmallVectors in ObjCImplDecl (for instance by Douglas Gregor · 16 years ago
- 48db39d Remove the serialization code that predates precompiled by Douglas Gregor · 16 years ago
- 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
- e3dcb2d FunctionDecl::getBody() is getting an ASTContext argument for use in by Douglas Gregor · 16 years ago
- f0b575f Add PCH support for ImplicitCastExprs. This is the first expression by Douglas Gregor · 16 years ago
- bcced4e Propagate the ASTContext to various AST traversal and lookup functions. by Douglas Gregor · 16 years ago
- 01a5beb Apply a patch which adds 'OriginalParmVar' to the DeclContextPrinter by Jon by Zhongxing Xu · 16 years ago
- 5bbb3c8 Push DeclGroup much farther throughout the compiler. Now the various by Chris Lattner · 17 years ago
- c0c3dff reduce indentation, no functionality change. by Chris Lattner · 17 years ago
- a5adead push more ASTContext goodness out through interfaces that use TranslationUnit by Chris Lattner · 17 years ago