aboutsummaryrefslogtreecommitdiff
path: root/lib/Frontend/ASTConsumers.cpp
AgeCommit message (Expand)Author
2011-11-18Change ASTConsumer::HandleTopLevelDecl to return true for the parser to continueArgyrios Kyrtzidis
2011-10-14Change operator<< for raw_ostream and NamedDecl to take a reference instead o...Benjamin Kramer
2011-10-07Rename TagDecl::isDefinition -> isCompleteDefinitionJohn McCall
2011-09-27When 'bool' is not a built-in type but is defined as a macro, printDouglas Gregor
2011-09-23Switch assert(0/false) llvm_unreachable.David Blaikie
2011-07-28Add template instantiations to the output of -ast-dump.Richard Trieu
2011-07-23remove unneeded llvm:: namespace qualifiers on some core types now that LLVM....Chris Lattner
2011-05-06Modify some deleted function methods to better reflect reality:Sean Hunt
2011-04-15Support for C++11 (non-template) alias declarations.Richard Smith
2011-03-07Remove the AST printer (-ast-print-xml), which is too incomplete andDouglas Gregor
2011-02-18handle labeldecls.Chris Lattner
2011-02-17Eliminate the internal command-line option for viewing inheritance in C++ cla...Douglas Gregor
2010-12-21Add IndirectField case in DeclContextPrinter::PrintDeclContext.Francois Pichet
2010-11-29Merge System into Support.Michael J. Spencer
2010-11-24Add -cc1 -ast-dump-xml, an excessively detailed XML dump of the internalsJohn McCall
2010-08-03Send AST dumping/printing to stdout instead of stderr.Argyrios Kyrtzidis
2010-07-07Simplify code. FunctionDecl and ObjCMethodDecl have some common interfaces.Argyrios Kyrtzidis
2010-06-15Break Frontend's dependency on Rewrite, Checker and CodeGen in shared library...Daniel Dunbar
2010-04-17Add raw_ostream operators to NamedDecl for convenience. Switch over all users...Benjamin Kramer
2010-04-08Fronted: Kill overly specialized RecordLayoutDumper, just make -dump-record-l...Daniel Dunbar
2010-04-08AST: Move C++ record layout dumping to ASTContext::DumpRecordLayout.Daniel Dunbar
2010-02-11Eliminate the ASTContext parameter from RecordDecl::getDefinition()Douglas Gregor
2010-01-20Add a missing case for DeclContext printer.Zhongxing Xu
2010-01-03Better coverage for -dump-record-layouts and -print-decl-contexts.Eli Friedman
2009-12-08Small compatibility fix for -print-decl-contexts.Eli Friedman
2009-12-03Kill a few more random stderr uses.Daniel Dunbar
2009-10-25Audit the code for places where it is assumed that every base specifier refer...Sebastian Redl
2009-10-23Remove OriginalTypeParmDecl; the original type is the one specifiedJohn McCall
2009-09-26Don't try to dump invalid decls or forward decls.Anders Carlsson
2009-09-25Who would have thought that empty classes were so tricky? Handle cases where ...Anders Carlsson
2009-09-24Improve the record layout dumper.Anders Carlsson
2009-09-24Add a -dump-record-layouts argument to clang-cc.Anders Carlsson
2009-09-12Eliminate FunctionDecl::getBodyIfAvailableDouglas Gregor
2009-09-09Remove tabs, and whitespace cleanups.Mike Stump
2009-08-24Fix build of clang with gcc-4.4: #include <cstdio> was missing.Torok Edwin
2009-08-23Replace cerr with errs().Benjamin Kramer
2009-06-30remove dead code.Zhongxing Xu
2009-06-30De-ASTContext-ify DeclContext.Argyrios Kyrtzidis
2009-06-30Remove the ASTContext parameter from the printing related methods of Decl.Argyrios Kyrtzidis
2009-06-17Move CXXMethodDecl::OutOfLineDefinition into Decl::OutOfLine.Argyrios Kyrtzidis
2009-05-30Refactor and clean up the AST printer, so that it uses a DeclVisitor,Douglas Gregor
2009-05-29Create a new PrintingPolicy class, which we pass down through the ASTDouglas Gregor
2009-05-21AST XML dump, from Olaf Krzikalla!Douglas Gregor
2009-05-18Move ASTConsumers.h to include/clang/Frontend, and move the associated Eli Friedman