blob: 52855f657f64c2bf8a447591a9c5a0cae3b66d47 [file] [log] [blame]
Manuel Klimekcb971c62012-04-04 12:07:46 +00001//===--- Tooling.cpp - Running clang standalone tools ---------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This file implements functions to run clang tools standalone instead
11// of running them as a plugin.
12//
13//===----------------------------------------------------------------------===//
14
15#include "clang/Tooling/Tooling.h"
Manuel Klimekcb971c62012-04-04 12:07:46 +000016#include "clang/Driver/Compilation.h"
17#include "clang/Driver/Driver.h"
18#include "clang/Driver/Tool.h"
19#include "clang/Frontend/CompilerInstance.h"
Manuel Klimekcb971c62012-04-04 12:07:46 +000020#include "clang/Frontend/FrontendDiagnostic.h"
21#include "clang/Frontend/TextDiagnosticPrinter.h"
Chandler Carruth55fc8732012-12-04 09:13:33 +000022#include "clang/Tooling/ArgumentsAdjusters.h"
23#include "clang/Tooling/CompilationDatabase.h"
NAKAMURA Takumi01b8ca52012-04-04 13:59:41 +000024#include "llvm/ADT/STLExtras.h"
Edwin Vanead7e1602013-03-15 20:14:01 +000025#include "llvm/Support/Debug.h"
NAKAMURA Takumib175d0f2012-04-04 13:59:36 +000026#include "llvm/Support/FileSystem.h"
NAKAMURA Takumi01b8ca52012-04-04 13:59:41 +000027#include "llvm/Support/Host.h"
28#include "llvm/Support/raw_ostream.h"
Manuel Klimekcb971c62012-04-04 12:07:46 +000029
Manuel Klimek3b6e3192012-05-07 09:45:46 +000030// For chdir, see the comment in ClangTool::run for more information.
Manuel Klimeked5ee482012-05-07 10:02:55 +000031#ifdef _WIN32
Manuel Klimek3b6e3192012-05-07 09:45:46 +000032# include <direct.h>
Manuel Klimeked5ee482012-05-07 10:02:55 +000033#else
34# include <unistd.h>
Manuel Klimek3b6e3192012-05-07 09:45:46 +000035#endif
36
Manuel Klimekcb971c62012-04-04 12:07:46 +000037namespace clang {
38namespace tooling {
39
40FrontendActionFactory::~FrontendActionFactory() {}
41
42// FIXME: This file contains structural duplication with other parts of the
43// code that sets up a compiler to run tools on it, and we should refactor
44// it to be based on the same framework.
45
46/// \brief Builds a clang driver initialized for running clang tools.
47static clang::driver::Driver *newDriver(clang::DiagnosticsEngine *Diagnostics,
48 const char *BinaryName) {
49 const std::string DefaultOutputName = "a.out";
50 clang::driver::Driver *CompilerDriver = new clang::driver::Driver(
Alexander Kornienko30c009b2012-06-04 19:02:59 +000051 BinaryName, llvm::sys::getDefaultTargetTriple(),
Rafael Espindola17c874a2012-11-27 16:10:37 +000052 DefaultOutputName, *Diagnostics);
Manuel Klimekcb971c62012-04-04 12:07:46 +000053 CompilerDriver->setTitle("clang_based_tool");
54 return CompilerDriver;
55}
56
57/// \brief Retrieves the clang CC1 specific flags out of the compilation's jobs.
58///
59/// Returns NULL on error.
60static const clang::driver::ArgStringList *getCC1Arguments(
61 clang::DiagnosticsEngine *Diagnostics,
62 clang::driver::Compilation *Compilation) {
63 // We expect to get back exactly one Command job, if we didn't something
64 // failed. Extract that job from the Compilation.
65 const clang::driver::JobList &Jobs = Compilation->getJobs();
66 if (Jobs.size() != 1 || !isa<clang::driver::Command>(*Jobs.begin())) {
Dmitri Gribenkocfa88f82013-01-12 19:30:44 +000067 SmallString<256> error_msg;
Manuel Klimekcb971c62012-04-04 12:07:46 +000068 llvm::raw_svector_ostream error_stream(error_msg);
69 Compilation->PrintJob(error_stream, Compilation->getJobs(), "; ", true);
70 Diagnostics->Report(clang::diag::err_fe_expected_compiler_job)
71 << error_stream.str();
72 return NULL;
73 }
74
75 // The one job we find should be to invoke clang again.
76 const clang::driver::Command *Cmd =
77 cast<clang::driver::Command>(*Jobs.begin());
78 if (StringRef(Cmd->getCreator().getName()) != "clang") {
79 Diagnostics->Report(clang::diag::err_fe_expected_clang_command);
80 return NULL;
81 }
82
83 return &Cmd->getArguments();
84}
85
86/// \brief Returns a clang build invocation initialized from the CC1 flags.
87static clang::CompilerInvocation *newInvocation(
88 clang::DiagnosticsEngine *Diagnostics,
89 const clang::driver::ArgStringList &CC1Args) {
90 assert(!CC1Args.empty() && "Must at least contain the program name!");
91 clang::CompilerInvocation *Invocation = new clang::CompilerInvocation;
92 clang::CompilerInvocation::CreateFromArgs(
93 *Invocation, CC1Args.data() + 1, CC1Args.data() + CC1Args.size(),
94 *Diagnostics);
95 Invocation->getFrontendOpts().DisableFree = false;
96 return Invocation;
97}
98
99bool runToolOnCode(clang::FrontendAction *ToolAction, const Twine &Code,
100 const Twine &FileName) {
Nico Weber56669882012-08-30 02:02:19 +0000101 return runToolOnCodeWithArgs(
102 ToolAction, Code, std::vector<std::string>(), FileName);
103}
104
105bool runToolOnCodeWithArgs(clang::FrontendAction *ToolAction, const Twine &Code,
106 const std::vector<std::string> &Args,
107 const Twine &FileName) {
Manuel Klimekcb971c62012-04-04 12:07:46 +0000108 SmallString<16> FileNameStorage;
109 StringRef FileNameRef = FileName.toNullTerminatedStringRef(FileNameStorage);
Nico Weber56669882012-08-30 02:02:19 +0000110 std::vector<std::string> Commands;
111 Commands.push_back("clang-tool");
112 Commands.push_back("-fsyntax-only");
113 Commands.insert(Commands.end(), Args.begin(), Args.end());
114 Commands.push_back(FileNameRef.data());
Manuel Klimekcb971c62012-04-04 12:07:46 +0000115 FileManager Files((FileSystemOptions()));
Nico Weber56669882012-08-30 02:02:19 +0000116 ToolInvocation Invocation(Commands, ToolAction, &Files);
Manuel Klimekcb971c62012-04-04 12:07:46 +0000117
118 SmallString<1024> CodeStorage;
119 Invocation.mapVirtualFile(FileNameRef,
120 Code.toNullTerminatedStringRef(CodeStorage));
121 return Invocation.run();
122}
123
Manuel Klimek8fa2fb82012-07-10 13:10:51 +0000124std::string getAbsolutePath(StringRef File) {
Dmitri Gribenkocfa88f82013-01-12 19:30:44 +0000125 SmallString<1024> BaseDirectory;
Manuel Klimek8fa2fb82012-07-10 13:10:51 +0000126 if (const char *PWD = ::getenv("PWD"))
127 BaseDirectory = PWD;
128 else
129 llvm::sys::fs::current_path(BaseDirectory);
NAKAMURA Takumi62d198c2012-05-23 22:24:20 +0000130 SmallString<1024> PathStorage;
Manuel Klimekcb971c62012-04-04 12:07:46 +0000131 if (llvm::sys::path::is_absolute(File)) {
NAKAMURA Takumi62d198c2012-05-23 22:24:20 +0000132 llvm::sys::path::native(File, PathStorage);
133 return PathStorage.str();
Manuel Klimekcb971c62012-04-04 12:07:46 +0000134 }
135 StringRef RelativePath(File);
NAKAMURA Takumi62d198c2012-05-23 22:24:20 +0000136 // FIXME: Should '.\\' be accepted on Win32?
Manuel Klimekcb971c62012-04-04 12:07:46 +0000137 if (RelativePath.startswith("./")) {
138 RelativePath = RelativePath.substr(strlen("./"));
139 }
Dmitri Gribenkocfa88f82013-01-12 19:30:44 +0000140 SmallString<1024> AbsolutePath(BaseDirectory);
Manuel Klimekcb971c62012-04-04 12:07:46 +0000141 llvm::sys::path::append(AbsolutePath, RelativePath);
NAKAMURA Takumi62d198c2012-05-23 22:24:20 +0000142 llvm::sys::path::native(Twine(AbsolutePath), PathStorage);
143 return PathStorage.str();
Manuel Klimekcb971c62012-04-04 12:07:46 +0000144}
145
146ToolInvocation::ToolInvocation(
147 ArrayRef<std::string> CommandLine, FrontendAction *ToolAction,
148 FileManager *Files)
149 : CommandLine(CommandLine.vec()), ToolAction(ToolAction), Files(Files) {
150}
151
152void ToolInvocation::mapVirtualFile(StringRef FilePath, StringRef Content) {
NAKAMURA Takumi0ef8db22012-06-02 15:34:21 +0000153 SmallString<1024> PathStorage;
154 llvm::sys::path::native(FilePath, PathStorage);
155 MappedFileContents[PathStorage] = Content;
Manuel Klimekcb971c62012-04-04 12:07:46 +0000156}
157
158bool ToolInvocation::run() {
159 std::vector<const char*> Argv;
160 for (int I = 0, E = CommandLine.size(); I != E; ++I)
161 Argv.push_back(CommandLine[I].c_str());
162 const char *const BinaryName = Argv[0];
Douglas Gregor02c23eb2012-10-23 22:26:28 +0000163 IntrusiveRefCntPtr<DiagnosticOptions> DiagOpts = new DiagnosticOptions();
Manuel Klimekcb971c62012-04-04 12:07:46 +0000164 TextDiagnosticPrinter DiagnosticPrinter(
Douglas Gregor02c23eb2012-10-23 22:26:28 +0000165 llvm::errs(), &*DiagOpts);
166 DiagnosticsEngine Diagnostics(
Dmitri Gribenkocfa88f82013-01-12 19:30:44 +0000167 IntrusiveRefCntPtr<clang::DiagnosticIDs>(new DiagnosticIDs()),
Douglas Gregor02c23eb2012-10-23 22:26:28 +0000168 &*DiagOpts, &DiagnosticPrinter, false);
Manuel Klimekcb971c62012-04-04 12:07:46 +0000169
Dmitri Gribenkocfa88f82013-01-12 19:30:44 +0000170 const OwningPtr<clang::driver::Driver> Driver(
Manuel Klimekcb971c62012-04-04 12:07:46 +0000171 newDriver(&Diagnostics, BinaryName));
172 // Since the input might only be virtual, don't check whether it exists.
173 Driver->setCheckInputsExist(false);
Dmitri Gribenkocfa88f82013-01-12 19:30:44 +0000174 const OwningPtr<clang::driver::Compilation> Compilation(
Manuel Klimekcb971c62012-04-04 12:07:46 +0000175 Driver->BuildCompilation(llvm::makeArrayRef(Argv)));
176 const clang::driver::ArgStringList *const CC1Args = getCC1Arguments(
177 &Diagnostics, Compilation.get());
178 if (CC1Args == NULL) {
179 return false;
180 }
Dmitri Gribenkocfa88f82013-01-12 19:30:44 +0000181 OwningPtr<clang::CompilerInvocation> Invocation(
Manuel Klimekcb971c62012-04-04 12:07:46 +0000182 newInvocation(&Diagnostics, *CC1Args));
Sean Silvad47afb92013-01-20 01:58:28 +0000183 return runInvocation(BinaryName, Compilation.get(), Invocation.take());
Manuel Klimekcb971c62012-04-04 12:07:46 +0000184}
185
Manuel Klimekcb971c62012-04-04 12:07:46 +0000186bool ToolInvocation::runInvocation(
187 const char *BinaryName,
188 clang::driver::Compilation *Compilation,
Sean Silvad47afb92013-01-20 01:58:28 +0000189 clang::CompilerInvocation *Invocation) {
Manuel Klimekcb971c62012-04-04 12:07:46 +0000190 // Show the invocation, with -v.
191 if (Invocation->getHeaderSearchOpts().Verbose) {
192 llvm::errs() << "clang Invocation:\n";
193 Compilation->PrintJob(llvm::errs(), Compilation->getJobs(), "\n", true);
194 llvm::errs() << "\n";
195 }
196
197 // Create a compiler instance to handle the actual work.
198 clang::CompilerInstance Compiler;
199 Compiler.setInvocation(Invocation);
200 Compiler.setFileManager(Files);
201 // FIXME: What about LangOpts?
202
Alexander Kornienko14a19242012-05-31 17:58:43 +0000203 // ToolAction can have lifetime requirements for Compiler or its members, and
204 // we need to ensure it's deleted earlier than Compiler. So we pass it to an
205 // OwningPtr declared after the Compiler variable.
Dmitri Gribenkocfa88f82013-01-12 19:30:44 +0000206 OwningPtr<FrontendAction> ScopedToolAction(ToolAction.take());
Alexander Kornienko14a19242012-05-31 17:58:43 +0000207
Manuel Klimekcb971c62012-04-04 12:07:46 +0000208 // Create the compilers actual diagnostics engine.
Sean Silvad47afb92013-01-20 01:58:28 +0000209 Compiler.createDiagnostics();
Manuel Klimekcb971c62012-04-04 12:07:46 +0000210 if (!Compiler.hasDiagnostics())
211 return false;
212
213 Compiler.createSourceManager(*Files);
214 addFileMappingsTo(Compiler.getSourceManager());
215
Alexander Kornienko14a19242012-05-31 17:58:43 +0000216 const bool Success = Compiler.ExecuteAction(*ScopedToolAction);
Manuel Klimekcb971c62012-04-04 12:07:46 +0000217
218 Compiler.resetAndLeakFileManager();
Manuel Klimek98be8602012-07-31 13:56:54 +0000219 Files->clearStatCaches();
Manuel Klimekcb971c62012-04-04 12:07:46 +0000220 return Success;
221}
222
223void ToolInvocation::addFileMappingsTo(SourceManager &Sources) {
224 for (llvm::StringMap<StringRef>::const_iterator
225 It = MappedFileContents.begin(), End = MappedFileContents.end();
226 It != End; ++It) {
227 // Inject the code as the given file name into the preprocessor options.
228 const llvm::MemoryBuffer *Input =
229 llvm::MemoryBuffer::getMemBuffer(It->getValue());
230 // FIXME: figure out what '0' stands for.
231 const FileEntry *FromFile = Files->getVirtualFile(
232 It->getKey(), Input->getBufferSize(), 0);
Alexander Kornienko240193b2012-05-30 12:10:28 +0000233 Sources.overrideFileContents(FromFile, Input);
Manuel Klimekcb971c62012-04-04 12:07:46 +0000234 }
235}
236
237ClangTool::ClangTool(const CompilationDatabase &Compilations,
238 ArrayRef<std::string> SourcePaths)
Simon Atanasyana01ddc72012-05-09 16:18:30 +0000239 : Files((FileSystemOptions())),
240 ArgsAdjuster(new ClangSyntaxOnlyAdjuster()) {
Manuel Klimekcb971c62012-04-04 12:07:46 +0000241 for (unsigned I = 0, E = SourcePaths.size(); I != E; ++I) {
Dmitri Gribenkocfa88f82013-01-12 19:30:44 +0000242 SmallString<1024> File(getAbsolutePath(SourcePaths[I]));
Manuel Klimekcb971c62012-04-04 12:07:46 +0000243
Manuel Klimek00f3c4f2012-05-07 09:17:48 +0000244 std::vector<CompileCommand> CompileCommandsForFile =
Manuel Klimekcb971c62012-04-04 12:07:46 +0000245 Compilations.getCompileCommands(File.str());
Manuel Klimek00f3c4f2012-05-07 09:17:48 +0000246 if (!CompileCommandsForFile.empty()) {
247 for (int I = 0, E = CompileCommandsForFile.size(); I != E; ++I) {
248 CompileCommands.push_back(std::make_pair(File.str(),
249 CompileCommandsForFile[I]));
Manuel Klimekcb971c62012-04-04 12:07:46 +0000250 }
251 } else {
252 // FIXME: There are two use cases here: doing a fuzzy
253 // "find . -name '*.cc' |xargs tool" match, where as a user I don't care
254 // about the .cc files that were not found, and the use case where I
255 // specify all files I want to run over explicitly, where this should
256 // be an error. We'll want to add an option for this.
257 llvm::outs() << "Skipping " << File << ". Command line not found.\n";
258 }
259 }
260}
261
262void ClangTool::mapVirtualFile(StringRef FilePath, StringRef Content) {
263 MappedFileContents.push_back(std::make_pair(FilePath, Content));
264}
265
Simon Atanasyana01ddc72012-05-09 16:18:30 +0000266void ClangTool::setArgumentsAdjuster(ArgumentsAdjuster *Adjuster) {
267 ArgsAdjuster.reset(Adjuster);
268}
269
Manuel Klimekcb971c62012-04-04 12:07:46 +0000270int ClangTool::run(FrontendActionFactory *ActionFactory) {
Alexander Kornienko30c009b2012-06-04 19:02:59 +0000271 // Exists solely for the purpose of lookup of the resource path.
272 // This just needs to be some symbol in the binary.
273 static int StaticSymbol;
274 // The driver detects the builtin header path based on the path of the
275 // executable.
276 // FIXME: On linux, GetMainExecutable is independent of the value of the
277 // first argument, thus allowing ClangTool and runToolOnCode to just
278 // pass in made-up names here. Make sure this works on other platforms.
279 std::string MainExecutable =
280 llvm::sys::Path::GetMainExecutable("clang_tool", &StaticSymbol).str();
281
Manuel Klimekcb971c62012-04-04 12:07:46 +0000282 bool ProcessingFailed = false;
Manuel Klimek00f3c4f2012-05-07 09:17:48 +0000283 for (unsigned I = 0; I < CompileCommands.size(); ++I) {
284 std::string File = CompileCommands[I].first;
285 // FIXME: chdir is thread hostile; on the other hand, creating the same
286 // behavior as chdir is complex: chdir resolves the path once, thus
287 // guaranteeing that all subsequent relative path operations work
288 // on the same path the original chdir resulted in. This makes a difference
Alexander Kornienko30c009b2012-06-04 19:02:59 +0000289 // for example on network filesystems, where symlinks might be switched
Manuel Klimek00f3c4f2012-05-07 09:17:48 +0000290 // during runtime of the tool. Fixing this depends on having a file system
291 // abstraction that allows openat() style interactions.
292 if (chdir(CompileCommands[I].second.Directory.c_str()))
293 llvm::report_fatal_error("Cannot chdir into \"" +
294 CompileCommands[I].second.Directory + "\n!");
Simon Atanasyana01ddc72012-05-09 16:18:30 +0000295 std::vector<std::string> CommandLine =
296 ArgsAdjuster->Adjust(CompileCommands[I].second.CommandLine);
Alexander Kornienko30c009b2012-06-04 19:02:59 +0000297 assert(!CommandLine.empty());
298 CommandLine[0] = MainExecutable;
Edwin Vanead7e1602013-03-15 20:14:01 +0000299 // FIXME: We need a callback mechanism for the tool writer to output a
300 // customized message for each file.
301 DEBUG({
302 llvm::dbgs() << "Processing: " << File << ".\n";
303 });
Manuel Klimekcb971c62012-04-04 12:07:46 +0000304 ToolInvocation Invocation(CommandLine, ActionFactory->create(), &Files);
305 for (int I = 0, E = MappedFileContents.size(); I != E; ++I) {
306 Invocation.mapVirtualFile(MappedFileContents[I].first,
307 MappedFileContents[I].second);
308 }
309 if (!Invocation.run()) {
Edwin Vanead7e1602013-03-15 20:14:01 +0000310 // FIXME: Diagnostics should be used instead.
311 llvm::errs() << "Error while processing " << File << ".\n";
Manuel Klimekcb971c62012-04-04 12:07:46 +0000312 ProcessingFailed = true;
313 }
314 }
315 return ProcessingFailed ? 1 : 0;
316}
317
318} // end namespace tooling
319} // end namespace clang