1 //===- 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" 16 #include "clang/Basic/Diagnostic.h" 17 #include "clang/Basic/DiagnosticIDs.h" 18 #include "clang/Basic/DiagnosticOptions.h" 19 #include "clang/Basic/FileManager.h" 20 #include "clang/Basic/FileSystemOptions.h" 21 #include "clang/Basic/LLVM.h" 22 #include "clang/Basic/VirtualFileSystem.h" 23 #include "clang/Driver/Compilation.h" 24 #include "clang/Driver/Driver.h" 25 #include "clang/Driver/Job.h" 26 #include "clang/Driver/Options.h" 27 #include "clang/Driver/Tool.h" 28 #include "clang/Driver/ToolChain.h" 29 #include "clang/Frontend/ASTUnit.h" 30 #include "clang/Frontend/CompilerInstance.h" 31 #include "clang/Frontend/CompilerInvocation.h" 32 #include "clang/Frontend/FrontendDiagnostic.h" 33 #include "clang/Frontend/FrontendOptions.h" 34 #include "clang/Frontend/TextDiagnosticPrinter.h" 35 #include "clang/Lex/HeaderSearchOptions.h" 36 #include "clang/Lex/PreprocessorOptions.h" 37 #include "clang/Tooling/ArgumentsAdjusters.h" 38 #include "clang/Tooling/CompilationDatabase.h" 39 #include "llvm/ADT/ArrayRef.h" 40 #include "llvm/ADT/IntrusiveRefCntPtr.h" 41 #include "llvm/ADT/SmallString.h" 42 #include "llvm/ADT/StringRef.h" 43 #include "llvm/ADT/Twine.h" 44 #include "llvm/Option/ArgList.h" 45 #include "llvm/Option/OptTable.h" 46 #include "llvm/Option/Option.h" 47 #include "llvm/Support/Casting.h" 48 #include "llvm/Support/Debug.h" 49 #include "llvm/Support/ErrorHandling.h" 50 #include "llvm/Support/FileSystem.h" 51 #include "llvm/Support/Host.h" 52 #include "llvm/Support/MemoryBuffer.h" 53 #include "llvm/Support/Path.h" 54 #include "llvm/Support/raw_ostream.h" 55 #include <cassert> 56 #include <cstring> 57 #include <memory> 58 #include <string> 59 #include <system_error> 60 #include <utility> 61 #include <vector> 62 63 #define DEBUG_TYPE "clang-tooling" 64 65 using namespace clang; 66 using namespace tooling; 67 68 ToolAction::~ToolAction() = default; 69 70 FrontendActionFactory::~FrontendActionFactory() = default; 71 72 // FIXME: This file contains structural duplication with other parts of the 73 // code that sets up a compiler to run tools on it, and we should refactor 74 // it to be based on the same framework. 75 76 /// Builds a clang driver initialized for running clang tools. 77 static driver::Driver *newDriver( 78 DiagnosticsEngine *Diagnostics, const char *BinaryName, 79 IntrusiveRefCntPtr<vfs::FileSystem> VFS) { 80 driver::Driver *CompilerDriver = 81 new driver::Driver(BinaryName, llvm::sys::getDefaultTargetTriple(), 82 *Diagnostics, std::move(VFS)); 83 CompilerDriver->setTitle("clang_based_tool"); 84 return CompilerDriver; 85 } 86 87 /// Retrieves the clang CC1 specific flags out of the compilation's jobs. 88 /// 89 /// Returns nullptr on error. 90 static const llvm::opt::ArgStringList *getCC1Arguments( 91 DiagnosticsEngine *Diagnostics, driver::Compilation *Compilation) { 92 // We expect to get back exactly one Command job, if we didn't something 93 // failed. Extract that job from the Compilation. 94 const driver::JobList &Jobs = Compilation->getJobs(); 95 if (Jobs.size() != 1 || !isa<driver::Command>(*Jobs.begin())) { 96 SmallString<256> error_msg; 97 llvm::raw_svector_ostream error_stream(error_msg); 98 Jobs.Print(error_stream, "; ", true); 99 Diagnostics->Report(diag::err_fe_expected_compiler_job) 100 << error_stream.str(); 101 return nullptr; 102 } 103 104 // The one job we find should be to invoke clang again. 105 const auto &Cmd = cast<driver::Command>(*Jobs.begin()); 106 if (StringRef(Cmd.getCreator().getName()) != "clang") { 107 Diagnostics->Report(diag::err_fe_expected_clang_command); 108 return nullptr; 109 } 110 111 return &Cmd.getArguments(); 112 } 113 114 namespace clang { 115 namespace tooling { 116 117 /// Returns a clang build invocation initialized from the CC1 flags. 118 CompilerInvocation *newInvocation( 119 DiagnosticsEngine *Diagnostics, const llvm::opt::ArgStringList &CC1Args) { 120 assert(!CC1Args.empty() && "Must at least contain the program name!"); 121 CompilerInvocation *Invocation = new CompilerInvocation; 122 CompilerInvocation::CreateFromArgs( 123 *Invocation, CC1Args.data() + 1, CC1Args.data() + CC1Args.size(), 124 *Diagnostics); 125 Invocation->getFrontendOpts().DisableFree = false; 126 Invocation->getCodeGenOpts().DisableFree = false; 127 return Invocation; 128 } 129 130 bool runToolOnCode(FrontendAction *ToolAction, const Twine &Code, 131 const Twine &FileName, 132 std::shared_ptr<PCHContainerOperations> PCHContainerOps) { 133 return runToolOnCodeWithArgs(ToolAction, Code, std::vector<std::string>(), 134 FileName, "clang-tool", 135 std::move(PCHContainerOps)); 136 } 137 138 } // namespace tooling 139 } // namespace clang 140 141 static std::vector<std::string> 142 getSyntaxOnlyToolArgs(const Twine &ToolName, 143 const std::vector<std::string> &ExtraArgs, 144 StringRef FileName) { 145 std::vector<std::string> Args; 146 Args.push_back(ToolName.str()); 147 Args.push_back("-fsyntax-only"); 148 Args.insert(Args.end(), ExtraArgs.begin(), ExtraArgs.end()); 149 Args.push_back(FileName.str()); 150 return Args; 151 } 152 153 namespace clang { 154 namespace tooling { 155 156 bool runToolOnCodeWithArgs( 157 FrontendAction *ToolAction, const Twine &Code, 158 llvm::IntrusiveRefCntPtr<vfs::FileSystem> VFS, 159 const std::vector<std::string> &Args, const Twine &FileName, 160 const Twine &ToolName, 161 std::shared_ptr<PCHContainerOperations> PCHContainerOps) { 162 SmallString<16> FileNameStorage; 163 StringRef FileNameRef = FileName.toNullTerminatedStringRef(FileNameStorage); 164 165 llvm::IntrusiveRefCntPtr<FileManager> Files( 166 new FileManager(FileSystemOptions(), VFS)); 167 ArgumentsAdjuster Adjuster = getClangStripDependencyFileAdjuster(); 168 ToolInvocation Invocation( 169 getSyntaxOnlyToolArgs(ToolName, Adjuster(Args, FileNameRef), FileNameRef), 170 ToolAction, Files.get(), 171 std::move(PCHContainerOps)); 172 return Invocation.run(); 173 } 174 175 bool runToolOnCodeWithArgs( 176 FrontendAction *ToolAction, const Twine &Code, 177 const std::vector<std::string> &Args, const Twine &FileName, 178 const Twine &ToolName, 179 std::shared_ptr<PCHContainerOperations> PCHContainerOps, 180 const FileContentMappings &VirtualMappedFiles) { 181 llvm::IntrusiveRefCntPtr<vfs::OverlayFileSystem> OverlayFileSystem( 182 new vfs::OverlayFileSystem(vfs::getRealFileSystem())); 183 llvm::IntrusiveRefCntPtr<vfs::InMemoryFileSystem> InMemoryFileSystem( 184 new vfs::InMemoryFileSystem); 185 OverlayFileSystem->pushOverlay(InMemoryFileSystem); 186 187 SmallString<1024> CodeStorage; 188 InMemoryFileSystem->addFile(FileName, 0, 189 llvm::MemoryBuffer::getMemBuffer( 190 Code.toNullTerminatedStringRef(CodeStorage))); 191 192 for (auto &FilenameWithContent : VirtualMappedFiles) { 193 InMemoryFileSystem->addFile( 194 FilenameWithContent.first, 0, 195 llvm::MemoryBuffer::getMemBuffer(FilenameWithContent.second)); 196 } 197 198 return runToolOnCodeWithArgs(ToolAction, Code, OverlayFileSystem, Args, 199 FileName, ToolName); 200 } 201 202 std::string getAbsolutePath(StringRef File) { 203 StringRef RelativePath(File); 204 // FIXME: Should '.\\' be accepted on Win32? 205 if (RelativePath.startswith("./")) { 206 RelativePath = RelativePath.substr(strlen("./")); 207 } 208 209 SmallString<1024> AbsolutePath = RelativePath; 210 std::error_code EC = llvm::sys::fs::make_absolute(AbsolutePath); 211 assert(!EC); 212 (void)EC; 213 llvm::sys::path::native(AbsolutePath); 214 return AbsolutePath.str(); 215 } 216 217 void addTargetAndModeForProgramName(std::vector<std::string> &CommandLine, 218 StringRef InvokedAs) { 219 if (!CommandLine.empty() && !InvokedAs.empty()) { 220 bool AlreadyHasTarget = false; 221 bool AlreadyHasMode = false; 222 // Skip CommandLine[0]. 223 for (auto Token = ++CommandLine.begin(); Token != CommandLine.end(); 224 ++Token) { 225 StringRef TokenRef(*Token); 226 AlreadyHasTarget |= 227 (TokenRef == "-target" || TokenRef.startswith("-target=")); 228 AlreadyHasMode |= (TokenRef == "--driver-mode" || 229 TokenRef.startswith("--driver-mode=")); 230 } 231 auto TargetMode = 232 driver::ToolChain::getTargetAndModeFromProgramName(InvokedAs); 233 if (!AlreadyHasMode && TargetMode.DriverMode) { 234 CommandLine.insert(++CommandLine.begin(), TargetMode.DriverMode); 235 } 236 if (!AlreadyHasTarget && TargetMode.TargetIsValid) { 237 CommandLine.insert(++CommandLine.begin(), {"-target", 238 TargetMode.TargetPrefix}); 239 } 240 } 241 } 242 243 } // namespace tooling 244 } // namespace clang 245 246 namespace { 247 248 class SingleFrontendActionFactory : public FrontendActionFactory { 249 FrontendAction *Action; 250 251 public: 252 SingleFrontendActionFactory(FrontendAction *Action) : Action(Action) {} 253 254 FrontendAction *create() override { return Action; } 255 }; 256 257 } // namespace 258 259 ToolInvocation::ToolInvocation( 260 std::vector<std::string> CommandLine, ToolAction *Action, 261 FileManager *Files, std::shared_ptr<PCHContainerOperations> PCHContainerOps) 262 : CommandLine(std::move(CommandLine)), Action(Action), OwnsAction(false), 263 Files(Files), PCHContainerOps(std::move(PCHContainerOps)) {} 264 265 ToolInvocation::ToolInvocation( 266 std::vector<std::string> CommandLine, FrontendAction *FAction, 267 FileManager *Files, std::shared_ptr<PCHContainerOperations> PCHContainerOps) 268 : CommandLine(std::move(CommandLine)), 269 Action(new SingleFrontendActionFactory(FAction)), OwnsAction(true), 270 Files(Files), PCHContainerOps(std::move(PCHContainerOps)) {} 271 272 ToolInvocation::~ToolInvocation() { 273 if (OwnsAction) 274 delete Action; 275 } 276 277 void ToolInvocation::mapVirtualFile(StringRef FilePath, StringRef Content) { 278 SmallString<1024> PathStorage; 279 llvm::sys::path::native(FilePath, PathStorage); 280 MappedFileContents[PathStorage] = Content; 281 } 282 283 bool ToolInvocation::run() { 284 std::vector<const char*> Argv; 285 for (const std::string &Str : CommandLine) 286 Argv.push_back(Str.c_str()); 287 const char *const BinaryName = Argv[0]; 288 IntrusiveRefCntPtr<DiagnosticOptions> DiagOpts = new DiagnosticOptions(); 289 unsigned MissingArgIndex, MissingArgCount; 290 std::unique_ptr<llvm::opt::OptTable> Opts = driver::createDriverOptTable(); 291 llvm::opt::InputArgList ParsedArgs = Opts->ParseArgs( 292 ArrayRef<const char *>(Argv).slice(1), MissingArgIndex, MissingArgCount); 293 ParseDiagnosticArgs(*DiagOpts, ParsedArgs); 294 TextDiagnosticPrinter DiagnosticPrinter( 295 llvm::errs(), &*DiagOpts); 296 DiagnosticsEngine Diagnostics( 297 IntrusiveRefCntPtr<DiagnosticIDs>(new DiagnosticIDs()), &*DiagOpts, 298 DiagConsumer ? DiagConsumer : &DiagnosticPrinter, false); 299 300 const std::unique_ptr<driver::Driver> Driver( 301 newDriver(&Diagnostics, BinaryName, Files->getVirtualFileSystem())); 302 // Since the input might only be virtual, don't check whether it exists. 303 Driver->setCheckInputsExist(false); 304 const std::unique_ptr<driver::Compilation> Compilation( 305 Driver->BuildCompilation(llvm::makeArrayRef(Argv))); 306 if (!Compilation) 307 return false; 308 const llvm::opt::ArgStringList *const CC1Args = getCC1Arguments( 309 &Diagnostics, Compilation.get()); 310 if (!CC1Args) 311 return false; 312 std::unique_ptr<CompilerInvocation> Invocation( 313 newInvocation(&Diagnostics, *CC1Args)); 314 // FIXME: remove this when all users have migrated! 315 for (const auto &It : MappedFileContents) { 316 // Inject the code as the given file name into the preprocessor options. 317 std::unique_ptr<llvm::MemoryBuffer> Input = 318 llvm::MemoryBuffer::getMemBuffer(It.getValue()); 319 Invocation->getPreprocessorOpts().addRemappedFile(It.getKey(), 320 Input.release()); 321 } 322 return runInvocation(BinaryName, Compilation.get(), std::move(Invocation), 323 std::move(PCHContainerOps)); 324 } 325 326 bool ToolInvocation::runInvocation( 327 const char *BinaryName, driver::Compilation *Compilation, 328 std::shared_ptr<CompilerInvocation> Invocation, 329 std::shared_ptr<PCHContainerOperations> PCHContainerOps) { 330 // Show the invocation, with -v. 331 if (Invocation->getHeaderSearchOpts().Verbose) { 332 llvm::errs() << "clang Invocation:\n"; 333 Compilation->getJobs().Print(llvm::errs(), "\n", true); 334 llvm::errs() << "\n"; 335 } 336 337 return Action->runInvocation(std::move(Invocation), Files, 338 std::move(PCHContainerOps), DiagConsumer); 339 } 340 341 bool FrontendActionFactory::runInvocation( 342 std::shared_ptr<CompilerInvocation> Invocation, FileManager *Files, 343 std::shared_ptr<PCHContainerOperations> PCHContainerOps, 344 DiagnosticConsumer *DiagConsumer) { 345 // Create a compiler instance to handle the actual work. 346 CompilerInstance Compiler(std::move(PCHContainerOps)); 347 Compiler.setInvocation(std::move(Invocation)); 348 Compiler.setFileManager(Files); 349 350 // The FrontendAction can have lifetime requirements for Compiler or its 351 // members, and we need to ensure it's deleted earlier than Compiler. So we 352 // pass it to an std::unique_ptr declared after the Compiler variable. 353 std::unique_ptr<FrontendAction> ScopedToolAction(create()); 354 355 // Create the compiler's actual diagnostics engine. 356 Compiler.createDiagnostics(DiagConsumer, /*ShouldOwnClient=*/false); 357 if (!Compiler.hasDiagnostics()) 358 return false; 359 360 Compiler.createSourceManager(*Files); 361 362 const bool Success = Compiler.ExecuteAction(*ScopedToolAction); 363 364 Files->clearStatCaches(); 365 return Success; 366 } 367 368 ClangTool::ClangTool(const CompilationDatabase &Compilations, 369 ArrayRef<std::string> SourcePaths, 370 std::shared_ptr<PCHContainerOperations> PCHContainerOps, 371 IntrusiveRefCntPtr<vfs::FileSystem> BaseFS) 372 : Compilations(Compilations), SourcePaths(SourcePaths), 373 PCHContainerOps(std::move(PCHContainerOps)), 374 OverlayFileSystem(new vfs::OverlayFileSystem(std::move(BaseFS))), 375 InMemoryFileSystem(new vfs::InMemoryFileSystem), 376 Files(new FileManager(FileSystemOptions(), OverlayFileSystem)) { 377 OverlayFileSystem->pushOverlay(InMemoryFileSystem); 378 appendArgumentsAdjuster(getClangStripOutputAdjuster()); 379 appendArgumentsAdjuster(getClangSyntaxOnlyAdjuster()); 380 appendArgumentsAdjuster(getClangStripDependencyFileAdjuster()); 381 } 382 383 ClangTool::~ClangTool() = default; 384 385 void ClangTool::mapVirtualFile(StringRef FilePath, StringRef Content) { 386 MappedFileContents.push_back(std::make_pair(FilePath, Content)); 387 } 388 389 void ClangTool::appendArgumentsAdjuster(ArgumentsAdjuster Adjuster) { 390 ArgsAdjuster = combineAdjusters(std::move(ArgsAdjuster), std::move(Adjuster)); 391 } 392 393 void ClangTool::clearArgumentsAdjusters() { 394 ArgsAdjuster = nullptr; 395 } 396 397 static void injectResourceDir(CommandLineArguments &Args, const char *Argv0, 398 void *MainAddr) { 399 // Allow users to override the resource dir. 400 for (StringRef Arg : Args) 401 if (Arg.startswith("-resource-dir")) 402 return; 403 404 // If there's no override in place add our resource dir. 405 Args.push_back("-resource-dir=" + 406 CompilerInvocation::GetResourcesPath(Argv0, MainAddr)); 407 } 408 409 int ClangTool::run(ToolAction *Action) { 410 // Exists solely for the purpose of lookup of the resource path. 411 // This just needs to be some symbol in the binary. 412 static int StaticSymbol; 413 414 std::string InitialDirectory; 415 if (llvm::ErrorOr<std::string> CWD = 416 OverlayFileSystem->getCurrentWorkingDirectory()) { 417 InitialDirectory = std::move(*CWD); 418 } else { 419 llvm::report_fatal_error("Cannot detect current path: " + 420 Twine(CWD.getError().message())); 421 } 422 423 // First insert all absolute paths into the in-memory VFS. These are global 424 // for all compile commands. 425 if (SeenWorkingDirectories.insert("/").second) 426 for (const auto &MappedFile : MappedFileContents) 427 if (llvm::sys::path::is_absolute(MappedFile.first)) 428 InMemoryFileSystem->addFile( 429 MappedFile.first, 0, 430 llvm::MemoryBuffer::getMemBuffer(MappedFile.second)); 431 432 bool ProcessingFailed = false; 433 bool FileSkipped = false; 434 for (const auto &SourcePath : SourcePaths) { 435 std::string File(getAbsolutePath(SourcePath)); 436 437 // Currently implementations of CompilationDatabase::getCompileCommands can 438 // change the state of the file system (e.g. prepare generated headers), so 439 // this method needs to run right before we invoke the tool, as the next 440 // file may require a different (incompatible) state of the file system. 441 // 442 // FIXME: Make the compilation database interface more explicit about the 443 // requirements to the order of invocation of its members. 444 std::vector<CompileCommand> CompileCommandsForFile = 445 Compilations.getCompileCommands(File); 446 if (CompileCommandsForFile.empty()) { 447 llvm::errs() << "Skipping " << File << ". Compile command not found.\n"; 448 FileSkipped = true; 449 continue; 450 } 451 for (CompileCommand &CompileCommand : CompileCommandsForFile) { 452 // FIXME: chdir is thread hostile; on the other hand, creating the same 453 // behavior as chdir is complex: chdir resolves the path once, thus 454 // guaranteeing that all subsequent relative path operations work 455 // on the same path the original chdir resulted in. This makes a 456 // difference for example on network filesystems, where symlinks might be 457 // switched during runtime of the tool. Fixing this depends on having a 458 // file system abstraction that allows openat() style interactions. 459 if (OverlayFileSystem->setCurrentWorkingDirectory( 460 CompileCommand.Directory)) 461 llvm::report_fatal_error("Cannot chdir into \"" + 462 Twine(CompileCommand.Directory) + "\n!"); 463 464 // Now fill the in-memory VFS with the relative file mappings so it will 465 // have the correct relative paths. We never remove mappings but that 466 // should be fine. 467 if (SeenWorkingDirectories.insert(CompileCommand.Directory).second) 468 for (const auto &MappedFile : MappedFileContents) 469 if (!llvm::sys::path::is_absolute(MappedFile.first)) 470 InMemoryFileSystem->addFile( 471 MappedFile.first, 0, 472 llvm::MemoryBuffer::getMemBuffer(MappedFile.second)); 473 474 std::vector<std::string> CommandLine = CompileCommand.CommandLine; 475 if (ArgsAdjuster) 476 CommandLine = ArgsAdjuster(CommandLine, CompileCommand.Filename); 477 assert(!CommandLine.empty()); 478 479 // Add the resource dir based on the binary of this tool. argv[0] in the 480 // compilation database may refer to a different compiler and we want to 481 // pick up the very same standard library that compiler is using. The 482 // builtin headers in the resource dir need to match the exact clang 483 // version the tool is using. 484 // FIXME: On linux, GetMainExecutable is independent of the value of the 485 // first argument, thus allowing ClangTool and runToolOnCode to just 486 // pass in made-up names here. Make sure this works on other platforms. 487 injectResourceDir(CommandLine, "clang_tool", &StaticSymbol); 488 489 // FIXME: We need a callback mechanism for the tool writer to output a 490 // customized message for each file. 491 LLVM_DEBUG({ llvm::dbgs() << "Processing: " << File << ".\n"; }); 492 ToolInvocation Invocation(std::move(CommandLine), Action, Files.get(), 493 PCHContainerOps); 494 Invocation.setDiagnosticConsumer(DiagConsumer); 495 496 if (!Invocation.run()) { 497 // FIXME: Diagnostics should be used instead. 498 llvm::errs() << "Error while processing " << File << ".\n"; 499 ProcessingFailed = true; 500 } 501 // Return to the initial directory to correctly resolve next file by 502 // relative path. 503 if (OverlayFileSystem->setCurrentWorkingDirectory(InitialDirectory.c_str())) 504 llvm::report_fatal_error("Cannot chdir into \"" + 505 Twine(InitialDirectory) + "\n!"); 506 } 507 } 508 return ProcessingFailed ? 1 : (FileSkipped ? 2 : 0); 509 } 510 511 namespace { 512 513 class ASTBuilderAction : public ToolAction { 514 std::vector<std::unique_ptr<ASTUnit>> &ASTs; 515 516 public: 517 ASTBuilderAction(std::vector<std::unique_ptr<ASTUnit>> &ASTs) : ASTs(ASTs) {} 518 519 bool runInvocation(std::shared_ptr<CompilerInvocation> Invocation, 520 FileManager *Files, 521 std::shared_ptr<PCHContainerOperations> PCHContainerOps, 522 DiagnosticConsumer *DiagConsumer) override { 523 std::unique_ptr<ASTUnit> AST = ASTUnit::LoadFromCompilerInvocation( 524 Invocation, std::move(PCHContainerOps), 525 CompilerInstance::createDiagnostics(&Invocation->getDiagnosticOpts(), 526 DiagConsumer, 527 /*ShouldOwnClient=*/false), 528 Files); 529 if (!AST) 530 return false; 531 532 ASTs.push_back(std::move(AST)); 533 return true; 534 } 535 }; 536 537 } // namespace 538 539 int ClangTool::buildASTs(std::vector<std::unique_ptr<ASTUnit>> &ASTs) { 540 ASTBuilderAction Action(ASTs); 541 return run(&Action); 542 } 543 544 namespace clang { 545 namespace tooling { 546 547 std::unique_ptr<ASTUnit> 548 buildASTFromCode(const Twine &Code, const Twine &FileName, 549 std::shared_ptr<PCHContainerOperations> PCHContainerOps) { 550 return buildASTFromCodeWithArgs(Code, std::vector<std::string>(), FileName, 551 "clang-tool", std::move(PCHContainerOps)); 552 } 553 554 std::unique_ptr<ASTUnit> buildASTFromCodeWithArgs( 555 const Twine &Code, const std::vector<std::string> &Args, 556 const Twine &FileName, const Twine &ToolName, 557 std::shared_ptr<PCHContainerOperations> PCHContainerOps, 558 ArgumentsAdjuster Adjuster) { 559 SmallString<16> FileNameStorage; 560 StringRef FileNameRef = FileName.toNullTerminatedStringRef(FileNameStorage); 561 562 std::vector<std::unique_ptr<ASTUnit>> ASTs; 563 ASTBuilderAction Action(ASTs); 564 llvm::IntrusiveRefCntPtr<vfs::OverlayFileSystem> OverlayFileSystem( 565 new vfs::OverlayFileSystem(vfs::getRealFileSystem())); 566 llvm::IntrusiveRefCntPtr<vfs::InMemoryFileSystem> InMemoryFileSystem( 567 new vfs::InMemoryFileSystem); 568 OverlayFileSystem->pushOverlay(InMemoryFileSystem); 569 llvm::IntrusiveRefCntPtr<FileManager> Files( 570 new FileManager(FileSystemOptions(), OverlayFileSystem)); 571 572 ToolInvocation Invocation( 573 getSyntaxOnlyToolArgs(ToolName, Adjuster(Args, FileNameRef), FileNameRef), 574 &Action, Files.get(), std::move(PCHContainerOps)); 575 576 SmallString<1024> CodeStorage; 577 InMemoryFileSystem->addFile(FileNameRef, 0, 578 llvm::MemoryBuffer::getMemBuffer( 579 Code.toNullTerminatedStringRef(CodeStorage))); 580 if (!Invocation.run()) 581 return nullptr; 582 583 assert(ASTs.size() == 1); 584 return std::move(ASTs[0]); 585 } 586 587 } // namespace tooling 588 } // namespace clang 589