summaryrefslogtreecommitdiffstats
path: root/lib/Frontend/ASTConsumers.cpp
Commit message (Expand)AuthorAgeFilesLines
* Change ASTConsumer::HandleTopLevelDecl to return true for the parser to continueArgyrios Kyrtzidis2011-11-181-1/+2
* Change operator<< for raw_ostream and NamedDecl to take a reference instead o...Benjamin Kramer2011-10-141-24/+24
* Rename TagDecl::isDefinition -> isCompleteDefinitionJohn McCall2011-10-071-3/+3
* When 'bool' is not a built-in type but is defined as a macro, printDouglas Gregor2011-09-271-1/+1
* Switch assert(0/false) llvm_unreachable.David Blaikie2011-09-231-2/+2
* Add template instantiations to the output of -ast-dump.Richard Trieu2011-07-281-1/+2
* remove unneeded llvm:: namespace qualifiers on some core types now that LLVM....Chris Lattner2011-07-231-7/+7
* Modify some deleted function methods to better reflect reality:Sean Hunt2011-05-061-1/+1
* Support for C++11 (non-template) alias declarations.Richard Smith2011-04-151-2/+3
* Remove the AST printer (-ast-print-xml), which is too incomplete andDouglas Gregor2011-03-071-34/+0
* handle labeldecls.Chris Lattner2011-02-181-1/+6
* Eliminate the internal command-line option for viewing inheritance in C++ cla...Douglas Gregor2011-02-171-28/+0
* Add IndirectField case in DeclContextPrinter::PrintDeclContext.Francois Pichet2010-12-211-0/+5
* Merge System into Support.Michael J. Spencer2010-11-291-1/+1
* Add -cc1 -ast-dump-xml, an excessively detailed XML dump of the internalsJohn McCall2010-11-241-0/+20
* Send AST dumping/printing to stdout instead of stderr.Argyrios Kyrtzidis2010-08-031-1/+1
* Simplify code. FunctionDecl and ObjCMethodDecl have some common interfaces.Argyrios Kyrtzidis2010-07-071-15/+4
* Break Frontend's dependency on Rewrite, Checker and CodeGen in shared library...Daniel Dunbar2010-06-151-2/+0
* Add raw_ostream operators to NamedDecl for convenience. Switch over all users...Benjamin Kramer2010-04-171-23/+23
* Fronted: Kill overly specialized RecordLayoutDumper, just make -dump-record-l...Daniel Dunbar2010-04-081-32/+0
* AST: Move C++ record layout dumping to ASTContext::DumpRecordLayout.Daniel Dunbar2010-04-081-121/+8
* Eliminate the ASTContext parameter from RecordDecl::getDefinition()Douglas Gregor2010-02-111-1/+1
* Add a missing case for DeclContext printer.Zhongxing Xu2010-01-201-0/+5
* Better coverage for -dump-record-layouts and -print-decl-contexts.Eli Friedman2010-01-031-0/+13
* Small compatibility fix for -print-decl-contexts.Eli Friedman2009-12-081-0/+5
* Kill a few more random stderr uses.Daniel Dunbar2009-12-031-3/+1
* Audit the code for places where it is assumed that every base specifier refer...Sebastian Redl2009-10-251-0/+2
* Remove OriginalTypeParmDecl; the original type is the one specifiedJohn McCall2009-10-231-5/+0
* Don't try to dump invalid decls or forward decls.Anders Carlsson2009-09-261-0/+6
* Who would have thought that empty classes were so tricky? Handle cases where ...Anders Carlsson2009-09-251-0/+3
* Improve the record layout dumper.Anders Carlsson2009-09-241-2/+87
* Add a -dump-record-layouts argument to clang-cc.Anders Carlsson2009-09-241-0/+50
* Eliminate FunctionDecl::getBodyIfAvailableDouglas Gregor2009-09-121-2/+2
* Remove tabs, and whitespace cleanups.Mike Stump2009-09-091-26/+24
* Fix build of clang with gcc-4.4: #include <cstdio> was missing.Torok Edwin2009-08-241-0/+2
* Replace cerr with errs().Benjamin Kramer2009-08-231-5/+4
* remove dead code.Zhongxing Xu2009-06-301-2/+0
* De-ASTContext-ify DeclContext.Argyrios Kyrtzidis2009-06-301-4/+3
* Remove the ASTContext parameter from the printing related methods of Decl.Argyrios Kyrtzidis2009-06-301-3/+3
* Move CXXMethodDecl::OutOfLineDefinition into Decl::OutOfLine.Argyrios Kyrtzidis2009-06-171-4/+4
* Refactor and clean up the AST printer, so that it uses a DeclVisitor,Douglas Gregor2009-05-301-637/+16
* Create a new PrintingPolicy class, which we pass down through the ASTDouglas Gregor2009-05-291-11/+15
* AST XML dump, from Olaf Krzikalla!Douglas Gregor2009-05-211-0/+36
* Move ASTConsumers.h to include/clang/Frontend, and move the associated Eli Friedman2009-05-181-0/+1032