blob: 2e1ea999017db0c0146ecf8d345626d351c3db6a [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"
NAKAMURA Takumib175d0f2012-04-04 13:59:36 +000025#include "llvm/Support/FileSystem.h"
NAKAMURA Takumi01b8ca52012-04-04 13:59:41 +000026#include "llvm/Support/Host.h"
27#include "llvm/Support/raw_ostream.h"
Manuel Klimekcb971c62012-04-04 12:07:46 +000028
Manuel Klimek3b6e3192012-05-07 09:45:46 +000029// For chdir, see the comment in ClangTool::run for more information.
Manuel Klimeked5ee482012-05-07 10:02:55 +000030#ifdef _WIN32
Manuel Klimek3b6e3192012-05-07 09:45:46 +000031# include <direct.h>
Manuel Klimeked5ee482012-05-07 10:02:55 +000032#else
33# include <unistd.h>
Manuel Klimek3b6e3192012-05-07 09:45:46 +000034#endif
35
Manuel Klimekcb971c62012-04-04 12:07:46 +000036namespace clang {
37namespace tooling {
38
39FrontendActionFactory::~FrontendActionFactory() {}
40
41// FIXME: This file contains structural duplication with other parts of the
42// code that sets up a compiler to run tools on it, and we should refactor
43// it to be based on the same framework.
44
45/// \brief Builds a clang driver initialized for running clang tools.
46static clang::driver::Driver *newDriver(clang::DiagnosticsEngine *Diagnostics,
47 const char *BinaryName) {
48 const std::string DefaultOutputName = "a.out";
49 clang::driver::Driver *CompilerDriver = new clang::driver::Driver(
Alexander Kornienko30c009b2012-06-04 19:02:59 +000050 BinaryName, llvm::sys::getDefaultTargetTriple(),
Rafael Espindola17c874a2012-11-27 16:10:37 +000051 DefaultOutputName, *Diagnostics);
Manuel Klimekcb971c62012-04-04 12:07:46 +000052 CompilerDriver->setTitle("clang_based_tool");
53 return CompilerDriver;
54}
55
56/// \brief Retrieves the clang CC1 specific flags out of the compilation's jobs.
57///
58/// Returns NULL on error.
59static const clang::driver::ArgStringList *getCC1Arguments(
60 clang::DiagnosticsEngine *Diagnostics,
61 clang::driver::Compilation *Compilation) {
62 // We expect to get back exactly one Command job, if we didn't something
63 // failed. Extract that job from the Compilation.
64 const clang::driver::JobList &Jobs = Compilation->getJobs();
65 if (Jobs.size() != 1 || !isa<clang::driver::Command>(*Jobs.begin())) {
66 llvm::SmallString<256> error_msg;
67 llvm::raw_svector_ostream error_stream(error_msg);
68 Compilation->PrintJob(error_stream, Compilation->getJobs(), "; ", true);
69 Diagnostics->Report(clang::diag::err_fe_expected_compiler_job)
70 << error_stream.str();
71 return NULL;
72 }
73
74 // The one job we find should be to invoke clang again.
75 const clang::driver::Command *Cmd =
76 cast<clang::driver::Command>(*Jobs.begin());
77 if (StringRef(Cmd->getCreator().getName()) != "clang") {
78 Diagnostics->Report(clang::diag::err_fe_expected_clang_command);
79 return NULL;
80 }
81
82 return &Cmd->getArguments();
83}
84
85/// \brief Returns a clang build invocation initialized from the CC1 flags.
86static clang::CompilerInvocation *newInvocation(
87 clang::DiagnosticsEngine *Diagnostics,
88 const clang::driver::ArgStringList &CC1Args) {
89 assert(!CC1Args.empty() && "Must at least contain the program name!");
90 clang::CompilerInvocation *Invocation = new clang::CompilerInvocation;
91 clang::CompilerInvocation::CreateFromArgs(
92 *Invocation, CC1Args.data() + 1, CC1Args.data() + CC1Args.size(),
93 *Diagnostics);
94 Invocation->getFrontendOpts().DisableFree = false;
95 return Invocation;
96}
97
98bool runToolOnCode(clang::FrontendAction *ToolAction, const Twine &Code,
99 const Twine &FileName) {
Nico Weber56669882012-08-30 02:02:19 +0000100 return runToolOnCodeWithArgs(
101 ToolAction, Code, std::vector<std::string>(), FileName);
102}
103
104bool runToolOnCodeWithArgs(clang::FrontendAction *ToolAction, const Twine &Code,
105 const std::vector<std::string> &Args,
106 const Twine &FileName) {
Manuel Klimekcb971c62012-04-04 12:07:46 +0000107 SmallString<16> FileNameStorage;
108 StringRef FileNameRef = FileName.toNullTerminatedStringRef(FileNameStorage);
Nico Weber56669882012-08-30 02:02:19 +0000109 std::vector<std::string> Commands;
110 Commands.push_back("clang-tool");
111 Commands.push_back("-fsyntax-only");
112 Commands.insert(Commands.end(), Args.begin(), Args.end());
113 Commands.push_back(FileNameRef.data());
Manuel Klimekcb971c62012-04-04 12:07:46 +0000114 FileManager Files((FileSystemOptions()));
Nico Weber56669882012-08-30 02:02:19 +0000115 ToolInvocation Invocation(Commands, ToolAction, &Files);
Manuel Klimekcb971c62012-04-04 12:07:46 +0000116
117 SmallString<1024> CodeStorage;
118 Invocation.mapVirtualFile(FileNameRef,
119 Code.toNullTerminatedStringRef(CodeStorage));
120 return Invocation.run();
121}
122
Manuel Klimek8fa2fb82012-07-10 13:10:51 +0000123std::string getAbsolutePath(StringRef File) {
124 llvm::SmallString<1024> BaseDirectory;
125 if (const char *PWD = ::getenv("PWD"))
126 BaseDirectory = PWD;
127 else
128 llvm::sys::fs::current_path(BaseDirectory);
NAKAMURA Takumi62d198c2012-05-23 22:24:20 +0000129 SmallString<1024> PathStorage;
Manuel Klimekcb971c62012-04-04 12:07:46 +0000130 if (llvm::sys::path::is_absolute(File)) {
NAKAMURA Takumi62d198c2012-05-23 22:24:20 +0000131 llvm::sys::path::native(File, PathStorage);
132 return PathStorage.str();
Manuel Klimekcb971c62012-04-04 12:07:46 +0000133 }
134 StringRef RelativePath(File);
NAKAMURA Takumi62d198c2012-05-23 22:24:20 +0000135 // FIXME: Should '.\\' be accepted on Win32?
Manuel Klimekcb971c62012-04-04 12:07:46 +0000136 if (RelativePath.startswith("./")) {
137 RelativePath = RelativePath.substr(strlen("./"));
138 }
139 llvm::SmallString<1024> AbsolutePath(BaseDirectory);
140 llvm::sys::path::append(AbsolutePath, RelativePath);
NAKAMURA Takumi62d198c2012-05-23 22:24:20 +0000141 llvm::sys::path::native(Twine(AbsolutePath), PathStorage);
142 return PathStorage.str();
Manuel Klimekcb971c62012-04-04 12:07:46 +0000143}
144
145ToolInvocation::ToolInvocation(
146 ArrayRef<std::string> CommandLine, FrontendAction *ToolAction,
147 FileManager *Files)
148 : CommandLine(CommandLine.vec()), ToolAction(ToolAction), Files(Files) {
149}
150
151void ToolInvocation::mapVirtualFile(StringRef FilePath, StringRef Content) {
NAKAMURA Takumi0ef8db22012-06-02 15:34:21 +0000152 SmallString<1024> PathStorage;
153 llvm::sys::path::native(FilePath, PathStorage);
154 MappedFileContents[PathStorage] = Content;
Manuel Klimekcb971c62012-04-04 12:07:46 +0000155}
156
157bool ToolInvocation::run() {
158 std::vector<const char*> Argv;
159 for (int I = 0, E = CommandLine.size(); I != E; ++I)
160 Argv.push_back(CommandLine[I].c_str());
161 const char *const BinaryName = Argv[0];
Douglas Gregor02c23eb2012-10-23 22:26:28 +0000162 IntrusiveRefCntPtr<DiagnosticOptions> DiagOpts = new DiagnosticOptions();
Manuel Klimekcb971c62012-04-04 12:07:46 +0000163 TextDiagnosticPrinter DiagnosticPrinter(
Douglas Gregor02c23eb2012-10-23 22:26:28 +0000164 llvm::errs(), &*DiagOpts);
165 DiagnosticsEngine Diagnostics(
166 llvm::IntrusiveRefCntPtr<clang::DiagnosticIDs>(new DiagnosticIDs()),
167 &*DiagOpts, &DiagnosticPrinter, false);
Manuel Klimekcb971c62012-04-04 12:07:46 +0000168
169 const llvm::OwningPtr<clang::driver::Driver> Driver(
170 newDriver(&Diagnostics, BinaryName));
171 // Since the input might only be virtual, don't check whether it exists.
172 Driver->setCheckInputsExist(false);
173 const llvm::OwningPtr<clang::driver::Compilation> Compilation(
174 Driver->BuildCompilation(llvm::makeArrayRef(Argv)));
175 const clang::driver::ArgStringList *const CC1Args = getCC1Arguments(
176 &Diagnostics, Compilation.get());
177 if (CC1Args == NULL) {
178 return false;
179 }
180 llvm::OwningPtr<clang::CompilerInvocation> Invocation(
181 newInvocation(&Diagnostics, *CC1Args));
Alexander Kornienko14a19242012-05-31 17:58:43 +0000182 return runInvocation(BinaryName, Compilation.get(), Invocation.take(),
183 *CC1Args);
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,
189 clang::CompilerInvocation *Invocation,
Alexander Kornienko14a19242012-05-31 17:58:43 +0000190 const clang::driver::ArgStringList &CC1Args) {
Manuel Klimekcb971c62012-04-04 12:07:46 +0000191 // Show the invocation, with -v.
192 if (Invocation->getHeaderSearchOpts().Verbose) {
193 llvm::errs() << "clang Invocation:\n";
194 Compilation->PrintJob(llvm::errs(), Compilation->getJobs(), "\n", true);
195 llvm::errs() << "\n";
196 }
197
198 // Create a compiler instance to handle the actual work.
199 clang::CompilerInstance Compiler;
200 Compiler.setInvocation(Invocation);
201 Compiler.setFileManager(Files);
202 // FIXME: What about LangOpts?
203
Alexander Kornienko14a19242012-05-31 17:58:43 +0000204 // ToolAction can have lifetime requirements for Compiler or its members, and
205 // we need to ensure it's deleted earlier than Compiler. So we pass it to an
206 // OwningPtr declared after the Compiler variable.
207 llvm::OwningPtr<FrontendAction> ScopedToolAction(ToolAction.take());
208
Manuel Klimekcb971c62012-04-04 12:07:46 +0000209 // Create the compilers actual diagnostics engine.
210 Compiler.createDiagnostics(CC1Args.size(),
211 const_cast<char**>(CC1Args.data()));
212 if (!Compiler.hasDiagnostics())
213 return false;
214
215 Compiler.createSourceManager(*Files);
216 addFileMappingsTo(Compiler.getSourceManager());
217
Alexander Kornienko14a19242012-05-31 17:58:43 +0000218 const bool Success = Compiler.ExecuteAction(*ScopedToolAction);
Manuel Klimekcb971c62012-04-04 12:07:46 +0000219
220 Compiler.resetAndLeakFileManager();
Manuel Klimek98be8602012-07-31 13:56:54 +0000221 Files->clearStatCaches();
Manuel Klimekcb971c62012-04-04 12:07:46 +0000222 return Success;
223}
224
225void ToolInvocation::addFileMappingsTo(SourceManager &Sources) {
226 for (llvm::StringMap<StringRef>::const_iterator
227 It = MappedFileContents.begin(), End = MappedFileContents.end();
228 It != End; ++It) {
229 // Inject the code as the given file name into the preprocessor options.
230 const llvm::MemoryBuffer *Input =
231 llvm::MemoryBuffer::getMemBuffer(It->getValue());
232 // FIXME: figure out what '0' stands for.
233 const FileEntry *FromFile = Files->getVirtualFile(
234 It->getKey(), Input->getBufferSize(), 0);
Alexander Kornienko240193b2012-05-30 12:10:28 +0000235 Sources.overrideFileContents(FromFile, Input);
Manuel Klimekcb971c62012-04-04 12:07:46 +0000236 }
237}
238
239ClangTool::ClangTool(const CompilationDatabase &Compilations,
240 ArrayRef<std::string> SourcePaths)
Simon Atanasyana01ddc72012-05-09 16:18:30 +0000241 : Files((FileSystemOptions())),
242 ArgsAdjuster(new ClangSyntaxOnlyAdjuster()) {
Manuel Klimekcb971c62012-04-04 12:07:46 +0000243 for (unsigned I = 0, E = SourcePaths.size(); I != E; ++I) {
Manuel Klimek8fa2fb82012-07-10 13:10:51 +0000244 llvm::SmallString<1024> File(getAbsolutePath(SourcePaths[I]));
Manuel Klimekcb971c62012-04-04 12:07:46 +0000245
Manuel Klimek00f3c4f2012-05-07 09:17:48 +0000246 std::vector<CompileCommand> CompileCommandsForFile =
Manuel Klimekcb971c62012-04-04 12:07:46 +0000247 Compilations.getCompileCommands(File.str());
Manuel Klimek00f3c4f2012-05-07 09:17:48 +0000248 if (!CompileCommandsForFile.empty()) {
249 for (int I = 0, E = CompileCommandsForFile.size(); I != E; ++I) {
250 CompileCommands.push_back(std::make_pair(File.str(),
251 CompileCommandsForFile[I]));
Manuel Klimekcb971c62012-04-04 12:07:46 +0000252 }
253 } else {
254 // FIXME: There are two use cases here: doing a fuzzy
255 // "find . -name '*.cc' |xargs tool" match, where as a user I don't care
256 // about the .cc files that were not found, and the use case where I
257 // specify all files I want to run over explicitly, where this should
258 // be an error. We'll want to add an option for this.
259 llvm::outs() << "Skipping " << File << ". Command line not found.\n";
260 }
261 }
262}
263
264void ClangTool::mapVirtualFile(StringRef FilePath, StringRef Content) {
265 MappedFileContents.push_back(std::make_pair(FilePath, Content));
266}
267
Simon Atanasyana01ddc72012-05-09 16:18:30 +0000268void ClangTool::setArgumentsAdjuster(ArgumentsAdjuster *Adjuster) {
269 ArgsAdjuster.reset(Adjuster);
270}
271
Manuel Klimekcb971c62012-04-04 12:07:46 +0000272int ClangTool::run(FrontendActionFactory *ActionFactory) {
Alexander Kornienko30c009b2012-06-04 19:02:59 +0000273 // Exists solely for the purpose of lookup of the resource path.
274 // This just needs to be some symbol in the binary.
275 static int StaticSymbol;
276 // The driver detects the builtin header path based on the path of the
277 // executable.
278 // FIXME: On linux, GetMainExecutable is independent of the value of the
279 // first argument, thus allowing ClangTool and runToolOnCode to just
280 // pass in made-up names here. Make sure this works on other platforms.
281 std::string MainExecutable =
282 llvm::sys::Path::GetMainExecutable("clang_tool", &StaticSymbol).str();
283
Manuel Klimekcb971c62012-04-04 12:07:46 +0000284 bool ProcessingFailed = false;
Manuel Klimek00f3c4f2012-05-07 09:17:48 +0000285 for (unsigned I = 0; I < CompileCommands.size(); ++I) {
286 std::string File = CompileCommands[I].first;
287 // FIXME: chdir is thread hostile; on the other hand, creating the same
288 // behavior as chdir is complex: chdir resolves the path once, thus
289 // guaranteeing that all subsequent relative path operations work
290 // on the same path the original chdir resulted in. This makes a difference
Alexander Kornienko30c009b2012-06-04 19:02:59 +0000291 // for example on network filesystems, where symlinks might be switched
Manuel Klimek00f3c4f2012-05-07 09:17:48 +0000292 // during runtime of the tool. Fixing this depends on having a file system
293 // abstraction that allows openat() style interactions.
294 if (chdir(CompileCommands[I].second.Directory.c_str()))
295 llvm::report_fatal_error("Cannot chdir into \"" +
296 CompileCommands[I].second.Directory + "\n!");
Simon Atanasyana01ddc72012-05-09 16:18:30 +0000297 std::vector<std::string> CommandLine =
298 ArgsAdjuster->Adjust(CompileCommands[I].second.CommandLine);
Alexander Kornienko30c009b2012-06-04 19:02:59 +0000299 assert(!CommandLine.empty());
300 CommandLine[0] = MainExecutable;
Manuel Klimekcb971c62012-04-04 12:07:46 +0000301 llvm::outs() << "Processing: " << File << ".\n";
302 ToolInvocation Invocation(CommandLine, ActionFactory->create(), &Files);
303 for (int I = 0, E = MappedFileContents.size(); I != E; ++I) {
304 Invocation.mapVirtualFile(MappedFileContents[I].first,
305 MappedFileContents[I].second);
306 }
307 if (!Invocation.run()) {
308 llvm::outs() << "Error while processing " << File << ".\n";
309 ProcessingFailed = true;
310 }
311 }
312 return ProcessingFailed ? 1 : 0;
313}
314
315} // end namespace tooling
316} // end namespace clang