Skip to content
This repository was archived by the owner on Nov 1, 2021. It is now read-only.

Commit 171af64

Browse files
committed
Added -ast-list option to dump filterable AST decl node names.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@161040 91177308-0d34-0410-b5e6-96231b3b80d8
1 parent ff104a1 commit 171af64

8 files changed

+51
-1
lines changed

include/clang/Driver/CC1Options.td

+4-1
Original file line numberDiff line numberDiff line change
@@ -289,7 +289,8 @@ def version : Flag<"-version">,
289289
def ast_dump_filter : Separate<"-ast-dump-filter">,
290290
MetaVarName<"<dump_filter>">,
291291
HelpText<"Use with -ast-dump or -ast-print to dump/print only AST declaration"
292-
" nodes having a certain substring in a qualified name.">;
292+
" nodes having a certain substring in a qualified name. Use"
293+
" -ast-list to list all filterable declaration node names.">;
293294

294295
let Group = Action_Group in {
295296

@@ -314,6 +315,8 @@ def emit_html : Flag<"-emit-html">,
314315
HelpText<"Output input source as HTML">;
315316
def ast_print : Flag<"-ast-print">,
316317
HelpText<"Build ASTs and then pretty-print them">;
318+
def ast_list : Flag<"-ast-list">,
319+
HelpText<"Build ASTs and print the list of declaration node qualified names">;
317320
def ast_dump : Flag<"-ast-dump">,
318321
HelpText<"Build ASTs and then debug dump them">;
319322
def ast_dump_xml : Flag<"-ast-dump-xml">,

include/clang/Frontend/ASTConsumers.h

+4
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,10 @@ ASTConsumer *CreateASTPrinter(raw_ostream *OS, StringRef FilterString);
3939
// intended for debugging.
4040
ASTConsumer *CreateASTDumper(StringRef FilterString);
4141

42+
// AST Decl node lister: prints qualified names of all filterable AST Decl
43+
// nodes.
44+
ASTConsumer *CreateASTDeclNodeLister();
45+
4246
// AST XML-dumper: dumps out the AST to stderr in a very detailed XML
4347
// format; this is intended for particularly intense debugging.
4448
ASTConsumer *CreateASTDumperXML(raw_ostream &OS);

include/clang/Frontend/FrontendActions.h

+6
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,12 @@ class ASTDumpAction : public ASTFrontendAction {
5050
StringRef InFile);
5151
};
5252

53+
class ASTDeclListAction : public ASTFrontendAction {
54+
protected:
55+
virtual ASTConsumer *CreateASTConsumer(CompilerInstance &CI,
56+
StringRef InFile);
57+
};
58+
5359
class ASTDumpXMLAction : public ASTFrontendAction {
5460
protected:
5561
virtual ASTConsumer *CreateASTConsumer(CompilerInstance &CI,

include/clang/Frontend/FrontendOptions.h

+1
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ namespace clang {
2020

2121
namespace frontend {
2222
enum ActionKind {
23+
ASTDeclList, ///< Parse ASTs and list Decl nodes.
2324
ASTDump, ///< Parse ASTs and dump them.
2425
ASTDumpXML, ///< Parse ASTs and dump them in XML.
2526
ASTPrint, ///< Parse ASTs and print them.

lib/Frontend/ASTConsumers.cpp

+27
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,29 @@ namespace {
8686
bool Dump;
8787
std::string FilterString;
8888
};
89+
90+
class ASTDeclNodeLister : public ASTConsumer,
91+
public RecursiveASTVisitor<ASTDeclNodeLister> {
92+
typedef RecursiveASTVisitor<ASTPrinter> base;
93+
94+
public:
95+
ASTDeclNodeLister(raw_ostream *Out = NULL)
96+
: Out(Out ? *Out : llvm::outs()) {}
97+
98+
virtual void HandleTranslationUnit(ASTContext &Context) {
99+
TraverseDecl(Context.getTranslationUnitDecl());
100+
}
101+
102+
bool shouldWalkTypesOfTypeLocs() const { return false; }
103+
104+
virtual bool VisitNamedDecl(NamedDecl *D) {
105+
Out << D->getQualifiedNameAsString() << "\n";
106+
return true;
107+
}
108+
109+
private:
110+
raw_ostream &Out;
111+
};
89112
} // end anonymous namespace
90113

91114
ASTConsumer *clang::CreateASTPrinter(raw_ostream *Out,
@@ -97,6 +120,10 @@ ASTConsumer *clang::CreateASTDumper(StringRef FilterString) {
97120
return new ASTPrinter(0, /*Dump=*/ true, FilterString);
98121
}
99122

123+
ASTConsumer *clang::CreateASTDeclNodeLister() {
124+
return new ASTDeclNodeLister(0);
125+
}
126+
100127
//===----------------------------------------------------------------------===//
101128
/// ASTViewer - AST Visualization
102129

lib/Frontend/CompilerInvocation.cpp

+3
Original file line numberDiff line numberDiff line change
@@ -434,6 +434,7 @@ static const char *getActionName(frontend::ActionKind Kind) {
434434
case frontend::PluginAction:
435435
llvm_unreachable("Invalid kind!");
436436

437+
case frontend::ASTDeclList: return "-ast-list";
437438
case frontend::ASTDump: return "-ast-dump";
438439
case frontend::ASTDumpXML: return "-ast-dump-xml";
439440
case frontend::ASTPrint: return "-ast-print";
@@ -1438,6 +1439,8 @@ static InputKind ParseFrontendArgs(FrontendOptions &Opts, ArgList &Args,
14381439
switch (A->getOption().getID()) {
14391440
default:
14401441
llvm_unreachable("Invalid option in group!");
1442+
case OPT_ast_list:
1443+
Opts.ProgramAction = frontend::ASTDeclList; break;
14411444
case OPT_ast_dump:
14421445
Opts.ProgramAction = frontend::ASTDump; break;
14431446
case OPT_ast_dump_xml:

lib/Frontend/FrontendActions.cpp

+5
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,11 @@ ASTConsumer *ASTDumpAction::CreateASTConsumer(CompilerInstance &CI,
5656
return CreateASTDumper(CI.getFrontendOpts().ASTDumpFilter);
5757
}
5858

59+
ASTConsumer *ASTDeclListAction::CreateASTConsumer(CompilerInstance &CI,
60+
StringRef InFile) {
61+
return CreateASTDeclNodeLister();
62+
}
63+
5964
ASTConsumer *ASTDumpXMLAction::CreateASTConsumer(CompilerInstance &CI,
6065
StringRef InFile) {
6166
raw_ostream *OS;

lib/FrontendTool/ExecuteCompilerInvocation.cpp

+1
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ static FrontendAction *CreateFrontendBaseAction(CompilerInstance &CI) {
3232
using namespace clang::frontend;
3333

3434
switch (CI.getFrontendOpts().ProgramAction) {
35+
case ASTDeclList: return new ASTDeclListAction();
3536
case ASTDump: return new ASTDumpAction();
3637
case ASTDumpXML: return new ASTDumpXMLAction();
3738
case ASTPrint: return new ASTPrintAction();

0 commit comments

Comments
 (0)