Skip to content

Commit 10f6994

Browse files
committed
[pp-trace] Modernize the code
Use InitLLVM and WithColor Delete PPTraceConsumer, add the callback in PPTraceAction Migrae to tooling::createExecutorFromCommandLineArgs Don't specialize empty OutputFileName llvm-svn: 356849
1 parent 88f4054 commit 10f6994

10 files changed

+64
-124
lines changed

clang-tools-extra/pp-trace/PPTrace.cpp

+53-113
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@
3434
#include "clang/Frontend/FrontendActions.h"
3535
#include "clang/Lex/Preprocessor.h"
3636
#include "clang/Tooling/CompilationDatabase.h"
37+
#include "clang/Tooling/Execution.h"
3738
#include "clang/Tooling/Tooling.h"
3839
#include "llvm/Option/Arg.h"
3940
#include "llvm/Option/ArgList.h"
@@ -42,6 +43,7 @@
4243
#include "llvm/Support/CommandLine.h"
4344
#include "llvm/Support/FileSystem.h"
4445
#include "llvm/Support/GlobPattern.h"
46+
#include "llvm/Support/InitLLVM.h"
4547
#include "llvm/Support/MemoryBuffer.h"
4648
#include "llvm/Support/Path.h"
4749
#include "llvm/Support/ToolOutputFile.h"
@@ -56,108 +58,79 @@ using namespace clang;
5658
using namespace clang::tooling;
5759
using namespace llvm;
5860

59-
// Options:
60-
61-
// Collect the source files.
62-
static cl::list<std::string> SourcePaths(cl::Positional,
63-
cl::desc("<source0> [... <sourceN>]"),
64-
cl::OneOrMore);
61+
static cl::OptionCategory Cat("pp-trace options");
6562

6663
static cl::opt<std::string> Callbacks(
6764
"callbacks", cl::init("*"),
6865
cl::desc("Comma-separated list of globs describing the list of callbacks "
6966
"to output. Globs are processed in order of appearance. Globs "
7067
"with the '-' prefix remove callbacks from the set. e.g. "
71-
"'*,-Macro*'."));
68+
"'*,-Macro*'."),
69+
cl::cat(Cat));
7270

73-
// Option to specify the trace output file name.
7471
static cl::opt<std::string> OutputFileName(
75-
"output", cl::init(""),
76-
cl::desc("Output trace to the given file name or '-' for stdout."));
77-
78-
// Collect all other arguments, which will be passed to the front end.
79-
static cl::list<std::string>
80-
CC1Arguments(cl::ConsumeAfter,
81-
cl::desc("<arguments to be passed to front end>..."));
72+
"output", cl::init("-"),
73+
cl::desc("Output trace to the given file name or '-' for stdout."),
74+
cl::cat(Cat));
8275

83-
// Frontend action stuff:
76+
LLVM_ATTRIBUTE_NORETURN static void error(Twine Message) {
77+
WithColor::error() << Message << '\n';
78+
exit(1);
79+
}
8480

8581
namespace {
86-
// Consumer is responsible for setting up the callbacks.
87-
class PPTraceConsumer : public ASTConsumer {
88-
public:
89-
PPTraceConsumer(const FilterType &Filters,
90-
std::vector<CallbackCall> &CallbackCalls, Preprocessor &PP) {
91-
// PP takes ownership.
92-
PP.addPPCallbacks(
93-
llvm::make_unique<PPCallbacksTracker>(Filters, CallbackCalls, PP));
94-
}
95-
};
9682

97-
class PPTraceAction : public SyntaxOnlyAction {
83+
class PPTraceAction : public ASTFrontendAction {
9884
public:
99-
PPTraceAction(const FilterType &Filters,
100-
std::vector<CallbackCall> &CallbackCalls)
101-
: Filters(Filters), CallbackCalls(CallbackCalls) {}
85+
PPTraceAction(const FilterType &Filters, raw_ostream &OS)
86+
: Filters(Filters), OS(OS) {}
10287

10388
protected:
10489
std::unique_ptr<clang::ASTConsumer>
10590
CreateASTConsumer(CompilerInstance &CI, StringRef InFile) override {
106-
return llvm::make_unique<PPTraceConsumer>(Filters, CallbackCalls,
107-
CI.getPreprocessor());
91+
Preprocessor &PP = CI.getPreprocessor();
92+
PP.addPPCallbacks(
93+
make_unique<PPCallbacksTracker>(Filters, CallbackCalls, PP));
94+
return make_unique<ASTConsumer>();
95+
}
96+
97+
void EndSourceFileAction() override {
98+
OS << "---\n";
99+
for (const CallbackCall &Callback : CallbackCalls) {
100+
OS << "- Callback: " << Callback.Name << "\n";
101+
for (const Argument &Arg : Callback.Arguments)
102+
OS << " " << Arg.Name << ": " << Arg.Value << "\n";
103+
}
104+
OS << "...\n";
105+
106+
CallbackCalls.clear();
108107
}
109108

110109
private:
111110
const FilterType &Filters;
112-
std::vector<CallbackCall> &CallbackCalls;
111+
raw_ostream &OS;
112+
std::vector<CallbackCall> CallbackCalls;
113113
};
114114

115115
class PPTraceFrontendActionFactory : public FrontendActionFactory {
116116
public:
117-
PPTraceFrontendActionFactory(const FilterType &Filters,
118-
std::vector<CallbackCall> &CallbackCalls)
119-
: Filters(Filters), CallbackCalls(CallbackCalls) {}
117+
PPTraceFrontendActionFactory(const FilterType &Filters, raw_ostream &OS)
118+
: Filters(Filters), OS(OS) {}
120119

121-
PPTraceAction *create() override {
122-
return new PPTraceAction(Filters, CallbackCalls);
123-
}
120+
PPTraceAction *create() override { return new PPTraceAction(Filters, OS); }
124121

125122
private:
126123
const FilterType &Filters;
127-
std::vector<CallbackCall> &CallbackCalls;
124+
raw_ostream &OS;
128125
};
129126
} // namespace
130127

131-
// Output the trace given its data structure and a stream.
132-
static int outputPPTrace(std::vector<CallbackCall> &CallbackCalls,
133-
llvm::raw_ostream &OS) {
134-
// Mark start of document.
135-
OS << "---\n";
136-
137-
for (std::vector<CallbackCall>::const_iterator I = CallbackCalls.begin(),
138-
E = CallbackCalls.end();
139-
I != E; ++I) {
140-
const CallbackCall &Callback = *I;
141-
OS << "- Callback: " << Callback.Name << "\n";
142-
143-
for (auto AI = Callback.Arguments.begin(), AE = Callback.Arguments.end();
144-
AI != AE; ++AI) {
145-
const Argument &Arg = *AI;
146-
OS << " " << Arg.Name << ": " << Arg.Value << "\n";
147-
}
148-
}
149-
150-
// Mark end of document.
151-
OS << "...\n";
152-
153-
return 0;
154-
}
155-
156-
// Program entry point.
157-
int main(int Argc, const char **Argv) {
128+
int main(int argc, const char **argv) {
129+
InitLLVM X(argc, argv);
158130

159-
// Parse command line.
160-
cl::ParseCommandLineOptions(Argc, Argv, "pp-trace.\n");
131+
auto Exec = tooling::createExecutorFromCommandLineArgs(argc, argv, Cat);
132+
if (!Exec)
133+
error(toString(Exec.takeError()));
161134

162135
// Parse the IgnoreCallbacks list into strings.
163136
SmallVector<StringRef, 32> Patterns;
@@ -169,51 +142,18 @@ int main(int Argc, const char **Argv) {
169142
bool Enabled = !Pattern.consume_front("-");
170143
if (Expected<GlobPattern> Pat = GlobPattern::create(Pattern))
171144
Filters.emplace_back(std::move(*Pat), Enabled);
172-
else {
173-
WithColor::error(llvm::errs(), "pp-trace")
174-
<< toString(Pat.takeError()) << '\n';
175-
return 1;
176-
}
145+
else
146+
error(toString(Pat.takeError()));
177147
}
178148

179-
// Create the compilation database.
180-
SmallString<256> PathBuf;
181-
sys::fs::current_path(PathBuf);
182-
std::unique_ptr<CompilationDatabase> Compilations;
183-
Compilations.reset(
184-
new FixedCompilationDatabase(Twine(PathBuf), CC1Arguments));
149+
std::error_code EC;
150+
llvm::ToolOutputFile Out(OutputFileName, EC, llvm::sys::fs::F_Text);
151+
if (EC)
152+
error(EC.message());
185153

186-
// Store the callback trace information here.
187-
std::vector<CallbackCall> CallbackCalls;
188-
189-
// Create the tool and run the compilation.
190-
ClangTool Tool(*Compilations, SourcePaths);
191-
PPTraceFrontendActionFactory Factory(Filters, CallbackCalls);
192-
int HadErrors = Tool.run(&Factory);
193-
194-
// If we had errors, exit early.
195-
if (HadErrors)
196-
return HadErrors;
197-
198-
// Do the output.
199-
if (!OutputFileName.size()) {
200-
HadErrors = outputPPTrace(CallbackCalls, llvm::outs());
201-
} else {
202-
// Set up output file.
203-
std::error_code EC;
204-
llvm::ToolOutputFile Out(OutputFileName, EC, llvm::sys::fs::F_Text);
205-
if (EC) {
206-
llvm::errs() << "pp-trace: error creating " << OutputFileName << ":"
207-
<< EC.message() << "\n";
208-
return 1;
209-
}
210-
211-
HadErrors = outputPPTrace(CallbackCalls, Out.os());
212-
213-
// Tell ToolOutputFile that we want to keep the file.
214-
if (HadErrors == 0)
215-
Out.keep();
216-
}
217-
218-
return HadErrors;
154+
if (Error Err = Exec->get()->execute(
155+
make_unique<PPTraceFrontendActionFactory>(Filters, Out.os())))
156+
error(toString(std::move(Err)));
157+
Out.keep();
158+
return 0;
219159
}

clang-tools-extra/test/pp-trace/pp-trace-conditional.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// RUN: pp-trace -callbacks '*,-FileChanged' %s -undef -target x86_64 -std=c++11 | FileCheck --strict-whitespace %s
1+
// RUN: pp-trace -callbacks '*,-FileChanged' %s -- -undef -target x86_64 -std=c++11 | FileCheck --strict-whitespace %s
22

33
#if 1
44
#endif

clang-tools-extra/test/pp-trace/pp-trace-filter.cpp

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
// RUN: pp-trace -callbacks 'File*,Macro*,-MacroUndefined' %s | FileCheck %s
2-
// RUN: pp-trace -callbacks ' File* , Macro* , -MacroUndefined ' %s | FileCheck %s
3-
// RUN: not pp-trace -callbacks '[' %s 2>&1 | FileCheck --check-prefix=INVALID %s
1+
// RUN: pp-trace -callbacks 'File*,Macro*,-MacroUndefined' %s -- | FileCheck %s
2+
// RUN: pp-trace -callbacks ' File* , Macro* , -MacroUndefined ' %s -- | FileCheck %s
3+
// RUN: not pp-trace -callbacks '[' %s -- 2>&1 | FileCheck --check-prefix=INVALID %s
44

55
#define M 1
66
int i = M;

clang-tools-extra/test/pp-trace/pp-trace-ident.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// RUN: pp-trace -callbacks '*,-FileChanged,-MacroDefined' %s -undef -target x86_64 -std=c++11 | FileCheck --strict-whitespace %s
1+
// RUN: pp-trace -callbacks '*,-FileChanged,-MacroDefined' %s -- -undef -target x86_64 -std=c++11 | FileCheck --strict-whitespace %s
22

33
#ident "$Id$"
44

clang-tools-extra/test/pp-trace/pp-trace-include.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// RUN: pp-trace %s -undef -target x86_64 -std=c++11 | FileCheck --strict-whitespace %s
1+
// RUN: pp-trace %s -- -undef -target x86_64 -std=c++11 | FileCheck --strict-whitespace %s
22

33
#include "Inputs/Level1A.h"
44
#include "Inputs/Level1B.h"

clang-tools-extra/test/pp-trace/pp-trace-macro.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// RUN: pp-trace -callbacks '*,-FileChanged' %s -undef -target x86_64 -std=c++11 | FileCheck --strict-whitespace %s
1+
// RUN: pp-trace -callbacks '*,-FileChanged' %s -- -undef -target x86_64 -std=c++11 | FileCheck --strict-whitespace %s
22

33
#define MACRO 1
44
int i = MACRO;

clang-tools-extra/test/pp-trace/pp-trace-modules.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// RUN: rm -rf %t
2-
// RUN: pp-trace -callbacks '*,-FileChanged,-MacroDefined' %s -x objective-c++ -undef -target x86_64 -std=c++11 -fmodules -fcxx-modules -fmodules-cache-path=%t -I%S -I%S/Input | FileCheck --strict-whitespace %s
2+
// RUN: pp-trace -callbacks '*,-FileChanged,-MacroDefined' %s -- -x objective-c++ -undef -target x86_64 -std=c++11 -fmodules -fcxx-modules -fmodules-cache-path=%t -I%S -I%S/Input | FileCheck --strict-whitespace %s
33

44
// CHECK: ---
55

clang-tools-extra/test/pp-trace/pp-trace-pragma-general.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// RUN: pp-trace -callbacks '*,-FileChanged,-MacroDefined' %s | FileCheck --strict-whitespace %s
1+
// RUN: pp-trace -callbacks '*,-FileChanged,-MacroDefined' %s -- | FileCheck --strict-whitespace %s
22

33
#pragma clang diagnostic push
44
#pragma clang diagnostic pop

clang-tools-extra/test/pp-trace/pp-trace-pragma-ms.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// RUN: pp-trace -callbacks '*,-FileChanged,-MacroDefined' %s -target x86_64-unknown-windows-msvc -fms-extensions -w | FileCheck --strict-whitespace %s
1+
// RUN: pp-trace -callbacks '*,-FileChanged,-MacroDefined' %s -- -target x86_64-unknown-windows-msvc -fms-extensions -w | FileCheck --strict-whitespace %s
22

33
#pragma comment(compiler, "compiler comment")
44
#pragma comment(exestr, "exestr comment")

clang-tools-extra/test/pp-trace/pp-trace-pragma-opencl.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// RUN: pp-trace -callbacks '*,-FileChanged,-MacroDefined' %s -x cl | FileCheck --strict-whitespace %s
1+
// RUN: pp-trace -callbacks '*,-FileChanged,-MacroDefined' %s -- -x cl | FileCheck --strict-whitespace %s
22

33
#pragma OPENCL EXTENSION all : disable
44
#pragma OPENCL EXTENSION cl_khr_int64_base_atomics : disable

0 commit comments

Comments
 (0)