1 //===--- CompilerInstance.cpp ---------------------------------------------===// 2 // 3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 4 // See https://llvm.org/LICENSE.txt for license information. 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 6 // 7 //===----------------------------------------------------------------------===// 8 9 #include "clang/Frontend/CompilerInstance.h" 10 #include "clang/AST/ASTConsumer.h" 11 #include "clang/AST/ASTContext.h" 12 #include "clang/AST/Decl.h" 13 #include "clang/Basic/CharInfo.h" 14 #include "clang/Basic/Diagnostic.h" 15 #include "clang/Basic/FileManager.h" 16 #include "clang/Basic/SourceManager.h" 17 #include "clang/Basic/Stack.h" 18 #include "clang/Basic/TargetInfo.h" 19 #include "clang/Basic/Version.h" 20 #include "clang/Config/config.h" 21 #include "clang/Frontend/ChainedDiagnosticConsumer.h" 22 #include "clang/Frontend/FrontendAction.h" 23 #include "clang/Frontend/FrontendActions.h" 24 #include "clang/Frontend/FrontendDiagnostic.h" 25 #include "clang/Frontend/LogDiagnosticPrinter.h" 26 #include "clang/Frontend/SerializedDiagnosticPrinter.h" 27 #include "clang/Frontend/TextDiagnosticPrinter.h" 28 #include "clang/Frontend/Utils.h" 29 #include "clang/Frontend/VerifyDiagnosticConsumer.h" 30 #include "clang/Lex/HeaderSearch.h" 31 #include "clang/Lex/Preprocessor.h" 32 #include "clang/Lex/PreprocessorOptions.h" 33 #include "clang/Sema/CodeCompleteConsumer.h" 34 #include "clang/Sema/Sema.h" 35 #include "clang/Serialization/ASTReader.h" 36 #include "clang/Serialization/GlobalModuleIndex.h" 37 #include "clang/Serialization/InMemoryModuleCache.h" 38 #include "llvm/ADT/Statistic.h" 39 #include "llvm/Support/BuryPointer.h" 40 #include "llvm/Support/CrashRecoveryContext.h" 41 #include "llvm/Support/Errc.h" 42 #include "llvm/Support/FileSystem.h" 43 #include "llvm/Support/Host.h" 44 #include "llvm/Support/LockFileManager.h" 45 #include "llvm/Support/MemoryBuffer.h" 46 #include "llvm/Support/Path.h" 47 #include "llvm/Support/Program.h" 48 #include "llvm/Support/Signals.h" 49 #include "llvm/Support/TimeProfiler.h" 50 #include "llvm/Support/Timer.h" 51 #include "llvm/Support/raw_ostream.h" 52 #include <sys/stat.h> 53 #include <system_error> 54 #include <time.h> 55 #include <utility> 56 57 using namespace clang; 58 59 CompilerInstance::CompilerInstance( 60 std::shared_ptr<PCHContainerOperations> PCHContainerOps, 61 InMemoryModuleCache *SharedModuleCache) 62 : ModuleLoader(/* BuildingModule = */ SharedModuleCache), 63 Invocation(new CompilerInvocation()), 64 ModuleCache(SharedModuleCache ? SharedModuleCache 65 : new InMemoryModuleCache), 66 ThePCHContainerOperations(std::move(PCHContainerOps)) {} 67 68 CompilerInstance::~CompilerInstance() { 69 assert(OutputFiles.empty() && "Still output files in flight?"); 70 } 71 72 void CompilerInstance::setInvocation( 73 std::shared_ptr<CompilerInvocation> Value) { 74 Invocation = std::move(Value); 75 } 76 77 bool CompilerInstance::shouldBuildGlobalModuleIndex() const { 78 return (BuildGlobalModuleIndex || 79 (ModuleManager && ModuleManager->isGlobalIndexUnavailable() && 80 getFrontendOpts().GenerateGlobalModuleIndex)) && 81 !ModuleBuildFailed; 82 } 83 84 void CompilerInstance::setDiagnostics(DiagnosticsEngine *Value) { 85 Diagnostics = Value; 86 } 87 88 void CompilerInstance::setTarget(TargetInfo *Value) { Target = Value; } 89 void CompilerInstance::setAuxTarget(TargetInfo *Value) { AuxTarget = Value; } 90 91 void CompilerInstance::setFileManager(FileManager *Value) { 92 FileMgr = Value; 93 } 94 95 void CompilerInstance::setSourceManager(SourceManager *Value) { 96 SourceMgr = Value; 97 } 98 99 void CompilerInstance::setPreprocessor(std::shared_ptr<Preprocessor> Value) { 100 PP = std::move(Value); 101 } 102 103 void CompilerInstance::setASTContext(ASTContext *Value) { 104 Context = Value; 105 106 if (Context && Consumer) 107 getASTConsumer().Initialize(getASTContext()); 108 } 109 110 void CompilerInstance::setSema(Sema *S) { 111 TheSema.reset(S); 112 } 113 114 void CompilerInstance::setASTConsumer(std::unique_ptr<ASTConsumer> Value) { 115 Consumer = std::move(Value); 116 117 if (Context && Consumer) 118 getASTConsumer().Initialize(getASTContext()); 119 } 120 121 void CompilerInstance::setCodeCompletionConsumer(CodeCompleteConsumer *Value) { 122 CompletionConsumer.reset(Value); 123 } 124 125 std::unique_ptr<Sema> CompilerInstance::takeSema() { 126 return std::move(TheSema); 127 } 128 129 IntrusiveRefCntPtr<ASTReader> CompilerInstance::getModuleManager() const { 130 return ModuleManager; 131 } 132 void CompilerInstance::setModuleManager(IntrusiveRefCntPtr<ASTReader> Reader) { 133 assert(ModuleCache.get() == &Reader->getModuleManager().getModuleCache() && 134 "Expected ASTReader to use the same PCM cache"); 135 ModuleManager = std::move(Reader); 136 } 137 138 std::shared_ptr<ModuleDependencyCollector> 139 CompilerInstance::getModuleDepCollector() const { 140 return ModuleDepCollector; 141 } 142 143 void CompilerInstance::setModuleDepCollector( 144 std::shared_ptr<ModuleDependencyCollector> Collector) { 145 ModuleDepCollector = std::move(Collector); 146 } 147 148 static void collectHeaderMaps(const HeaderSearch &HS, 149 std::shared_ptr<ModuleDependencyCollector> MDC) { 150 SmallVector<std::string, 4> HeaderMapFileNames; 151 HS.getHeaderMapFileNames(HeaderMapFileNames); 152 for (auto &Name : HeaderMapFileNames) 153 MDC->addFile(Name); 154 } 155 156 static void collectIncludePCH(CompilerInstance &CI, 157 std::shared_ptr<ModuleDependencyCollector> MDC) { 158 const PreprocessorOptions &PPOpts = CI.getPreprocessorOpts(); 159 if (PPOpts.ImplicitPCHInclude.empty()) 160 return; 161 162 StringRef PCHInclude = PPOpts.ImplicitPCHInclude; 163 FileManager &FileMgr = CI.getFileManager(); 164 auto PCHDir = FileMgr.getDirectory(PCHInclude); 165 if (!PCHDir) { 166 MDC->addFile(PCHInclude); 167 return; 168 } 169 170 std::error_code EC; 171 SmallString<128> DirNative; 172 llvm::sys::path::native((*PCHDir)->getName(), DirNative); 173 llvm::vfs::FileSystem &FS = FileMgr.getVirtualFileSystem(); 174 SimpleASTReaderListener Validator(CI.getPreprocessor()); 175 for (llvm::vfs::directory_iterator Dir = FS.dir_begin(DirNative, EC), DirEnd; 176 Dir != DirEnd && !EC; Dir.increment(EC)) { 177 // Check whether this is an AST file. ASTReader::isAcceptableASTFile is not 178 // used here since we're not interested in validating the PCH at this time, 179 // but only to check whether this is a file containing an AST. 180 if (!ASTReader::readASTFileControlBlock( 181 Dir->path(), FileMgr, CI.getPCHContainerReader(), 182 /*FindModuleFileExtensions=*/false, Validator, 183 /*ValidateDiagnosticOptions=*/false)) 184 MDC->addFile(Dir->path()); 185 } 186 } 187 188 static void collectVFSEntries(CompilerInstance &CI, 189 std::shared_ptr<ModuleDependencyCollector> MDC) { 190 if (CI.getHeaderSearchOpts().VFSOverlayFiles.empty()) 191 return; 192 193 // Collect all VFS found. 194 SmallVector<llvm::vfs::YAMLVFSEntry, 16> VFSEntries; 195 for (const std::string &VFSFile : CI.getHeaderSearchOpts().VFSOverlayFiles) { 196 llvm::ErrorOr<std::unique_ptr<llvm::MemoryBuffer>> Buffer = 197 llvm::MemoryBuffer::getFile(VFSFile); 198 if (!Buffer) 199 return; 200 llvm::vfs::collectVFSFromYAML(std::move(Buffer.get()), 201 /*DiagHandler*/ nullptr, VFSFile, VFSEntries); 202 } 203 204 for (auto &E : VFSEntries) 205 MDC->addFile(E.VPath, E.RPath); 206 } 207 208 // Diagnostics 209 static void SetUpDiagnosticLog(DiagnosticOptions *DiagOpts, 210 const CodeGenOptions *CodeGenOpts, 211 DiagnosticsEngine &Diags) { 212 std::error_code EC; 213 std::unique_ptr<raw_ostream> StreamOwner; 214 raw_ostream *OS = &llvm::errs(); 215 if (DiagOpts->DiagnosticLogFile != "-") { 216 // Create the output stream. 217 auto FileOS = llvm::make_unique<llvm::raw_fd_ostream>( 218 DiagOpts->DiagnosticLogFile, EC, 219 llvm::sys::fs::F_Append | llvm::sys::fs::F_Text); 220 if (EC) { 221 Diags.Report(diag::warn_fe_cc_log_diagnostics_failure) 222 << DiagOpts->DiagnosticLogFile << EC.message(); 223 } else { 224 FileOS->SetUnbuffered(); 225 OS = FileOS.get(); 226 StreamOwner = std::move(FileOS); 227 } 228 } 229 230 // Chain in the diagnostic client which will log the diagnostics. 231 auto Logger = llvm::make_unique<LogDiagnosticPrinter>(*OS, DiagOpts, 232 std::move(StreamOwner)); 233 if (CodeGenOpts) 234 Logger->setDwarfDebugFlags(CodeGenOpts->DwarfDebugFlags); 235 if (Diags.ownsClient()) { 236 Diags.setClient( 237 new ChainedDiagnosticConsumer(Diags.takeClient(), std::move(Logger))); 238 } else { 239 Diags.setClient( 240 new ChainedDiagnosticConsumer(Diags.getClient(), std::move(Logger))); 241 } 242 } 243 244 static void SetupSerializedDiagnostics(DiagnosticOptions *DiagOpts, 245 DiagnosticsEngine &Diags, 246 StringRef OutputFile) { 247 auto SerializedConsumer = 248 clang::serialized_diags::create(OutputFile, DiagOpts); 249 250 if (Diags.ownsClient()) { 251 Diags.setClient(new ChainedDiagnosticConsumer( 252 Diags.takeClient(), std::move(SerializedConsumer))); 253 } else { 254 Diags.setClient(new ChainedDiagnosticConsumer( 255 Diags.getClient(), std::move(SerializedConsumer))); 256 } 257 } 258 259 void CompilerInstance::createDiagnostics(DiagnosticConsumer *Client, 260 bool ShouldOwnClient) { 261 Diagnostics = createDiagnostics(&getDiagnosticOpts(), Client, 262 ShouldOwnClient, &getCodeGenOpts()); 263 } 264 265 IntrusiveRefCntPtr<DiagnosticsEngine> 266 CompilerInstance::createDiagnostics(DiagnosticOptions *Opts, 267 DiagnosticConsumer *Client, 268 bool ShouldOwnClient, 269 const CodeGenOptions *CodeGenOpts) { 270 IntrusiveRefCntPtr<DiagnosticIDs> DiagID(new DiagnosticIDs()); 271 IntrusiveRefCntPtr<DiagnosticsEngine> 272 Diags(new DiagnosticsEngine(DiagID, Opts)); 273 274 // Create the diagnostic client for reporting errors or for 275 // implementing -verify. 276 if (Client) { 277 Diags->setClient(Client, ShouldOwnClient); 278 } else 279 Diags->setClient(new TextDiagnosticPrinter(llvm::errs(), Opts)); 280 281 // Chain in -verify checker, if requested. 282 if (Opts->VerifyDiagnostics) 283 Diags->setClient(new VerifyDiagnosticConsumer(*Diags)); 284 285 // Chain in -diagnostic-log-file dumper, if requested. 286 if (!Opts->DiagnosticLogFile.empty()) 287 SetUpDiagnosticLog(Opts, CodeGenOpts, *Diags); 288 289 if (!Opts->DiagnosticSerializationFile.empty()) 290 SetupSerializedDiagnostics(Opts, *Diags, 291 Opts->DiagnosticSerializationFile); 292 293 // Configure our handling of diagnostics. 294 ProcessWarningOptions(*Diags, *Opts); 295 296 return Diags; 297 } 298 299 // File Manager 300 301 FileManager *CompilerInstance::createFileManager( 302 IntrusiveRefCntPtr<llvm::vfs::FileSystem> VFS) { 303 if (!VFS) 304 VFS = FileMgr ? &FileMgr->getVirtualFileSystem() 305 : createVFSFromCompilerInvocation(getInvocation(), 306 getDiagnostics()); 307 assert(VFS && "FileManager has no VFS?"); 308 FileMgr = new FileManager(getFileSystemOpts(), std::move(VFS)); 309 return FileMgr.get(); 310 } 311 312 // Source Manager 313 314 void CompilerInstance::createSourceManager(FileManager &FileMgr) { 315 SourceMgr = new SourceManager(getDiagnostics(), FileMgr); 316 } 317 318 // Initialize the remapping of files to alternative contents, e.g., 319 // those specified through other files. 320 static void InitializeFileRemapping(DiagnosticsEngine &Diags, 321 SourceManager &SourceMgr, 322 FileManager &FileMgr, 323 const PreprocessorOptions &InitOpts) { 324 // Remap files in the source manager (with buffers). 325 for (const auto &RB : InitOpts.RemappedFileBuffers) { 326 // Create the file entry for the file that we're mapping from. 327 const FileEntry *FromFile = 328 FileMgr.getVirtualFile(RB.first, RB.second->getBufferSize(), 0); 329 if (!FromFile) { 330 Diags.Report(diag::err_fe_remap_missing_from_file) << RB.first; 331 if (!InitOpts.RetainRemappedFileBuffers) 332 delete RB.second; 333 continue; 334 } 335 336 // Override the contents of the "from" file with the contents of 337 // the "to" file. 338 SourceMgr.overrideFileContents(FromFile, RB.second, 339 InitOpts.RetainRemappedFileBuffers); 340 } 341 342 // Remap files in the source manager (with other files). 343 for (const auto &RF : InitOpts.RemappedFiles) { 344 // Find the file that we're mapping to. 345 auto ToFile = FileMgr.getFile(RF.second); 346 if (!ToFile) { 347 Diags.Report(diag::err_fe_remap_missing_to_file) << RF.first << RF.second; 348 continue; 349 } 350 351 // Create the file entry for the file that we're mapping from. 352 const FileEntry *FromFile = 353 FileMgr.getVirtualFile(RF.first, (*ToFile)->getSize(), 0); 354 if (!FromFile) { 355 Diags.Report(diag::err_fe_remap_missing_from_file) << RF.first; 356 continue; 357 } 358 359 // Override the contents of the "from" file with the contents of 360 // the "to" file. 361 SourceMgr.overrideFileContents(FromFile, *ToFile); 362 } 363 364 SourceMgr.setOverridenFilesKeepOriginalName( 365 InitOpts.RemappedFilesKeepOriginalName); 366 } 367 368 // Preprocessor 369 370 void CompilerInstance::createPreprocessor(TranslationUnitKind TUKind) { 371 const PreprocessorOptions &PPOpts = getPreprocessorOpts(); 372 373 // The module manager holds a reference to the old preprocessor (if any). 374 ModuleManager.reset(); 375 376 // Create the Preprocessor. 377 HeaderSearch *HeaderInfo = 378 new HeaderSearch(getHeaderSearchOptsPtr(), getSourceManager(), 379 getDiagnostics(), getLangOpts(), &getTarget()); 380 PP = std::make_shared<Preprocessor>(Invocation->getPreprocessorOptsPtr(), 381 getDiagnostics(), getLangOpts(), 382 getSourceManager(), *HeaderInfo, *this, 383 /*IdentifierInfoLookup=*/nullptr, 384 /*OwnsHeaderSearch=*/true, TUKind); 385 getTarget().adjust(getLangOpts()); 386 PP->Initialize(getTarget(), getAuxTarget()); 387 388 if (PPOpts.DetailedRecord) 389 PP->createPreprocessingRecord(); 390 391 // Apply remappings to the source manager. 392 InitializeFileRemapping(PP->getDiagnostics(), PP->getSourceManager(), 393 PP->getFileManager(), PPOpts); 394 395 // Predefine macros and configure the preprocessor. 396 InitializePreprocessor(*PP, PPOpts, getPCHContainerReader(), 397 getFrontendOpts()); 398 399 // Initialize the header search object. In CUDA compilations, we use the aux 400 // triple (the host triple) to initialize our header search, since we need to 401 // find the host headers in order to compile the CUDA code. 402 const llvm::Triple *HeaderSearchTriple = &PP->getTargetInfo().getTriple(); 403 if (PP->getTargetInfo().getTriple().getOS() == llvm::Triple::CUDA && 404 PP->getAuxTargetInfo()) 405 HeaderSearchTriple = &PP->getAuxTargetInfo()->getTriple(); 406 407 ApplyHeaderSearchOptions(PP->getHeaderSearchInfo(), getHeaderSearchOpts(), 408 PP->getLangOpts(), *HeaderSearchTriple); 409 410 PP->setPreprocessedOutput(getPreprocessorOutputOpts().ShowCPP); 411 412 if (PP->getLangOpts().Modules && PP->getLangOpts().ImplicitModules) 413 PP->getHeaderSearchInfo().setModuleCachePath(getSpecificModuleCachePath()); 414 415 // Handle generating dependencies, if requested. 416 const DependencyOutputOptions &DepOpts = getDependencyOutputOpts(); 417 if (!DepOpts.OutputFile.empty()) 418 addDependencyCollector(std::make_shared<DependencyFileGenerator>(DepOpts)); 419 if (!DepOpts.DOTOutputFile.empty()) 420 AttachDependencyGraphGen(*PP, DepOpts.DOTOutputFile, 421 getHeaderSearchOpts().Sysroot); 422 423 // If we don't have a collector, but we are collecting module dependencies, 424 // then we're the top level compiler instance and need to create one. 425 if (!ModuleDepCollector && !DepOpts.ModuleDependencyOutputDir.empty()) { 426 ModuleDepCollector = std::make_shared<ModuleDependencyCollector>( 427 DepOpts.ModuleDependencyOutputDir); 428 } 429 430 // If there is a module dep collector, register with other dep collectors 431 // and also (a) collect header maps and (b) TODO: input vfs overlay files. 432 if (ModuleDepCollector) { 433 addDependencyCollector(ModuleDepCollector); 434 collectHeaderMaps(PP->getHeaderSearchInfo(), ModuleDepCollector); 435 collectIncludePCH(*this, ModuleDepCollector); 436 collectVFSEntries(*this, ModuleDepCollector); 437 } 438 439 for (auto &Listener : DependencyCollectors) 440 Listener->attachToPreprocessor(*PP); 441 442 // Handle generating header include information, if requested. 443 if (DepOpts.ShowHeaderIncludes) 444 AttachHeaderIncludeGen(*PP, DepOpts); 445 if (!DepOpts.HeaderIncludeOutputFile.empty()) { 446 StringRef OutputPath = DepOpts.HeaderIncludeOutputFile; 447 if (OutputPath == "-") 448 OutputPath = ""; 449 AttachHeaderIncludeGen(*PP, DepOpts, 450 /*ShowAllHeaders=*/true, OutputPath, 451 /*ShowDepth=*/false); 452 } 453 454 if (DepOpts.ShowIncludesDest != ShowIncludesDestination::None) { 455 AttachHeaderIncludeGen(*PP, DepOpts, 456 /*ShowAllHeaders=*/true, /*OutputPath=*/"", 457 /*ShowDepth=*/true, /*MSStyle=*/true); 458 } 459 } 460 461 std::string CompilerInstance::getSpecificModuleCachePath() { 462 // Set up the module path, including the hash for the 463 // module-creation options. 464 SmallString<256> SpecificModuleCache(getHeaderSearchOpts().ModuleCachePath); 465 if (!SpecificModuleCache.empty() && !getHeaderSearchOpts().DisableModuleHash) 466 llvm::sys::path::append(SpecificModuleCache, 467 getInvocation().getModuleHash()); 468 return SpecificModuleCache.str(); 469 } 470 471 // ASTContext 472 473 void CompilerInstance::createASTContext() { 474 Preprocessor &PP = getPreprocessor(); 475 auto *Context = new ASTContext(getLangOpts(), PP.getSourceManager(), 476 PP.getIdentifierTable(), PP.getSelectorTable(), 477 PP.getBuiltinInfo()); 478 Context->InitBuiltinTypes(getTarget(), getAuxTarget()); 479 setASTContext(Context); 480 } 481 482 // ExternalASTSource 483 484 void CompilerInstance::createPCHExternalASTSource( 485 StringRef Path, bool DisablePCHValidation, bool AllowPCHWithCompilerErrors, 486 void *DeserializationListener, bool OwnDeserializationListener) { 487 bool Preamble = getPreprocessorOpts().PrecompiledPreambleBytes.first != 0; 488 ModuleManager = createPCHExternalASTSource( 489 Path, getHeaderSearchOpts().Sysroot, DisablePCHValidation, 490 AllowPCHWithCompilerErrors, getPreprocessor(), getModuleCache(), 491 getASTContext(), getPCHContainerReader(), 492 getFrontendOpts().ModuleFileExtensions, DependencyCollectors, 493 DeserializationListener, OwnDeserializationListener, Preamble, 494 getFrontendOpts().UseGlobalModuleIndex); 495 } 496 497 IntrusiveRefCntPtr<ASTReader> CompilerInstance::createPCHExternalASTSource( 498 StringRef Path, StringRef Sysroot, bool DisablePCHValidation, 499 bool AllowPCHWithCompilerErrors, Preprocessor &PP, 500 InMemoryModuleCache &ModuleCache, ASTContext &Context, 501 const PCHContainerReader &PCHContainerRdr, 502 ArrayRef<std::shared_ptr<ModuleFileExtension>> Extensions, 503 ArrayRef<std::shared_ptr<DependencyCollector>> DependencyCollectors, 504 void *DeserializationListener, bool OwnDeserializationListener, 505 bool Preamble, bool UseGlobalModuleIndex) { 506 HeaderSearchOptions &HSOpts = PP.getHeaderSearchInfo().getHeaderSearchOpts(); 507 508 IntrusiveRefCntPtr<ASTReader> Reader(new ASTReader( 509 PP, ModuleCache, &Context, PCHContainerRdr, Extensions, 510 Sysroot.empty() ? "" : Sysroot.data(), DisablePCHValidation, 511 AllowPCHWithCompilerErrors, /*AllowConfigurationMismatch*/ false, 512 HSOpts.ModulesValidateSystemHeaders, UseGlobalModuleIndex)); 513 514 // We need the external source to be set up before we read the AST, because 515 // eagerly-deserialized declarations may use it. 516 Context.setExternalSource(Reader.get()); 517 518 Reader->setDeserializationListener( 519 static_cast<ASTDeserializationListener *>(DeserializationListener), 520 /*TakeOwnership=*/OwnDeserializationListener); 521 522 for (auto &Listener : DependencyCollectors) 523 Listener->attachToASTReader(*Reader); 524 525 switch (Reader->ReadAST(Path, 526 Preamble ? serialization::MK_Preamble 527 : serialization::MK_PCH, 528 SourceLocation(), 529 ASTReader::ARR_None)) { 530 case ASTReader::Success: 531 // Set the predefines buffer as suggested by the PCH reader. Typically, the 532 // predefines buffer will be empty. 533 PP.setPredefines(Reader->getSuggestedPredefines()); 534 return Reader; 535 536 case ASTReader::Failure: 537 // Unrecoverable failure: don't even try to process the input file. 538 break; 539 540 case ASTReader::Missing: 541 case ASTReader::OutOfDate: 542 case ASTReader::VersionMismatch: 543 case ASTReader::ConfigurationMismatch: 544 case ASTReader::HadErrors: 545 // No suitable PCH file could be found. Return an error. 546 break; 547 } 548 549 Context.setExternalSource(nullptr); 550 return nullptr; 551 } 552 553 // Code Completion 554 555 static bool EnableCodeCompletion(Preprocessor &PP, 556 StringRef Filename, 557 unsigned Line, 558 unsigned Column) { 559 // Tell the source manager to chop off the given file at a specific 560 // line and column. 561 auto Entry = PP.getFileManager().getFile(Filename); 562 if (!Entry) { 563 PP.getDiagnostics().Report(diag::err_fe_invalid_code_complete_file) 564 << Filename; 565 return true; 566 } 567 568 // Truncate the named file at the given line/column. 569 PP.SetCodeCompletionPoint(*Entry, Line, Column); 570 return false; 571 } 572 573 void CompilerInstance::createCodeCompletionConsumer() { 574 const ParsedSourceLocation &Loc = getFrontendOpts().CodeCompletionAt; 575 if (!CompletionConsumer) { 576 setCodeCompletionConsumer( 577 createCodeCompletionConsumer(getPreprocessor(), 578 Loc.FileName, Loc.Line, Loc.Column, 579 getFrontendOpts().CodeCompleteOpts, 580 llvm::outs())); 581 if (!CompletionConsumer) 582 return; 583 } else if (EnableCodeCompletion(getPreprocessor(), Loc.FileName, 584 Loc.Line, Loc.Column)) { 585 setCodeCompletionConsumer(nullptr); 586 return; 587 } 588 } 589 590 void CompilerInstance::createFrontendTimer() { 591 FrontendTimerGroup.reset( 592 new llvm::TimerGroup("frontend", "Clang front-end time report")); 593 FrontendTimer.reset( 594 new llvm::Timer("frontend", "Clang front-end timer", 595 *FrontendTimerGroup)); 596 } 597 598 CodeCompleteConsumer * 599 CompilerInstance::createCodeCompletionConsumer(Preprocessor &PP, 600 StringRef Filename, 601 unsigned Line, 602 unsigned Column, 603 const CodeCompleteOptions &Opts, 604 raw_ostream &OS) { 605 if (EnableCodeCompletion(PP, Filename, Line, Column)) 606 return nullptr; 607 608 // Set up the creation routine for code-completion. 609 return new PrintingCodeCompleteConsumer(Opts, OS); 610 } 611 612 void CompilerInstance::createSema(TranslationUnitKind TUKind, 613 CodeCompleteConsumer *CompletionConsumer) { 614 TheSema.reset(new Sema(getPreprocessor(), getASTContext(), getASTConsumer(), 615 TUKind, CompletionConsumer)); 616 // Attach the external sema source if there is any. 617 if (ExternalSemaSrc) { 618 TheSema->addExternalSource(ExternalSemaSrc.get()); 619 ExternalSemaSrc->InitializeSema(*TheSema); 620 } 621 } 622 623 // Output Files 624 625 void CompilerInstance::addOutputFile(OutputFile &&OutFile) { 626 OutputFiles.push_back(std::move(OutFile)); 627 } 628 629 void CompilerInstance::clearOutputFiles(bool EraseFiles) { 630 for (OutputFile &OF : OutputFiles) { 631 if (!OF.TempFilename.empty()) { 632 if (EraseFiles) { 633 llvm::sys::fs::remove(OF.TempFilename); 634 } else { 635 SmallString<128> NewOutFile(OF.Filename); 636 637 // If '-working-directory' was passed, the output filename should be 638 // relative to that. 639 FileMgr->FixupRelativePath(NewOutFile); 640 if (std::error_code ec = 641 llvm::sys::fs::rename(OF.TempFilename, NewOutFile)) { 642 getDiagnostics().Report(diag::err_unable_to_rename_temp) 643 << OF.TempFilename << OF.Filename << ec.message(); 644 645 llvm::sys::fs::remove(OF.TempFilename); 646 } 647 } 648 } else if (!OF.Filename.empty() && EraseFiles) 649 llvm::sys::fs::remove(OF.Filename); 650 } 651 OutputFiles.clear(); 652 if (DeleteBuiltModules) { 653 for (auto &Module : BuiltModules) 654 llvm::sys::fs::remove(Module.second); 655 BuiltModules.clear(); 656 } 657 NonSeekStream.reset(); 658 } 659 660 std::unique_ptr<raw_pwrite_stream> 661 CompilerInstance::createDefaultOutputFile(bool Binary, StringRef InFile, 662 StringRef Extension) { 663 return createOutputFile(getFrontendOpts().OutputFile, Binary, 664 /*RemoveFileOnSignal=*/true, InFile, Extension, 665 /*UseTemporary=*/true); 666 } 667 668 std::unique_ptr<raw_pwrite_stream> CompilerInstance::createNullOutputFile() { 669 return llvm::make_unique<llvm::raw_null_ostream>(); 670 } 671 672 std::unique_ptr<raw_pwrite_stream> 673 CompilerInstance::createOutputFile(StringRef OutputPath, bool Binary, 674 bool RemoveFileOnSignal, StringRef InFile, 675 StringRef Extension, bool UseTemporary, 676 bool CreateMissingDirectories) { 677 std::string OutputPathName, TempPathName; 678 std::error_code EC; 679 std::unique_ptr<raw_pwrite_stream> OS = createOutputFile( 680 OutputPath, EC, Binary, RemoveFileOnSignal, InFile, Extension, 681 UseTemporary, CreateMissingDirectories, &OutputPathName, &TempPathName); 682 if (!OS) { 683 getDiagnostics().Report(diag::err_fe_unable_to_open_output) << OutputPath 684 << EC.message(); 685 return nullptr; 686 } 687 688 // Add the output file -- but don't try to remove "-", since this means we are 689 // using stdin. 690 addOutputFile( 691 OutputFile((OutputPathName != "-") ? OutputPathName : "", TempPathName)); 692 693 return OS; 694 } 695 696 std::unique_ptr<llvm::raw_pwrite_stream> CompilerInstance::createOutputFile( 697 StringRef OutputPath, std::error_code &Error, bool Binary, 698 bool RemoveFileOnSignal, StringRef InFile, StringRef Extension, 699 bool UseTemporary, bool CreateMissingDirectories, 700 std::string *ResultPathName, std::string *TempPathName) { 701 assert((!CreateMissingDirectories || UseTemporary) && 702 "CreateMissingDirectories is only allowed when using temporary files"); 703 704 std::string OutFile, TempFile; 705 if (!OutputPath.empty()) { 706 OutFile = OutputPath; 707 } else if (InFile == "-") { 708 OutFile = "-"; 709 } else if (!Extension.empty()) { 710 SmallString<128> Path(InFile); 711 llvm::sys::path::replace_extension(Path, Extension); 712 OutFile = Path.str(); 713 } else { 714 OutFile = "-"; 715 } 716 717 std::unique_ptr<llvm::raw_fd_ostream> OS; 718 std::string OSFile; 719 720 if (UseTemporary) { 721 if (OutFile == "-") 722 UseTemporary = false; 723 else { 724 llvm::sys::fs::file_status Status; 725 llvm::sys::fs::status(OutputPath, Status); 726 if (llvm::sys::fs::exists(Status)) { 727 // Fail early if we can't write to the final destination. 728 if (!llvm::sys::fs::can_write(OutputPath)) { 729 Error = make_error_code(llvm::errc::operation_not_permitted); 730 return nullptr; 731 } 732 733 // Don't use a temporary if the output is a special file. This handles 734 // things like '-o /dev/null' 735 if (!llvm::sys::fs::is_regular_file(Status)) 736 UseTemporary = false; 737 } 738 } 739 } 740 741 if (UseTemporary) { 742 // Create a temporary file. 743 // Insert -%%%%%%%% before the extension (if any), and because some tools 744 // (noticeable, clang's own GlobalModuleIndex.cpp) glob for build 745 // artifacts, also append .tmp. 746 StringRef OutputExtension = llvm::sys::path::extension(OutFile); 747 SmallString<128> TempPath = 748 StringRef(OutFile).drop_back(OutputExtension.size()); 749 TempPath += "-%%%%%%%%"; 750 TempPath += OutputExtension; 751 TempPath += ".tmp"; 752 int fd; 753 std::error_code EC = 754 llvm::sys::fs::createUniqueFile(TempPath, fd, TempPath); 755 756 if (CreateMissingDirectories && 757 EC == llvm::errc::no_such_file_or_directory) { 758 StringRef Parent = llvm::sys::path::parent_path(OutputPath); 759 EC = llvm::sys::fs::create_directories(Parent); 760 if (!EC) { 761 EC = llvm::sys::fs::createUniqueFile(TempPath, fd, TempPath); 762 } 763 } 764 765 if (!EC) { 766 OS.reset(new llvm::raw_fd_ostream(fd, /*shouldClose=*/true)); 767 OSFile = TempFile = TempPath.str(); 768 } 769 // If we failed to create the temporary, fallback to writing to the file 770 // directly. This handles the corner case where we cannot write to the 771 // directory, but can write to the file. 772 } 773 774 if (!OS) { 775 OSFile = OutFile; 776 OS.reset(new llvm::raw_fd_ostream( 777 OSFile, Error, 778 (Binary ? llvm::sys::fs::F_None : llvm::sys::fs::F_Text))); 779 if (Error) 780 return nullptr; 781 } 782 783 // Make sure the out stream file gets removed if we crash. 784 if (RemoveFileOnSignal) 785 llvm::sys::RemoveFileOnSignal(OSFile); 786 787 if (ResultPathName) 788 *ResultPathName = OutFile; 789 if (TempPathName) 790 *TempPathName = TempFile; 791 792 if (!Binary || OS->supportsSeeking()) 793 return std::move(OS); 794 795 auto B = llvm::make_unique<llvm::buffer_ostream>(*OS); 796 assert(!NonSeekStream); 797 NonSeekStream = std::move(OS); 798 return std::move(B); 799 } 800 801 // Initialization Utilities 802 803 bool CompilerInstance::InitializeSourceManager(const FrontendInputFile &Input){ 804 return InitializeSourceManager( 805 Input, getDiagnostics(), getFileManager(), getSourceManager(), 806 hasPreprocessor() ? &getPreprocessor().getHeaderSearchInfo() : nullptr, 807 getDependencyOutputOpts(), getFrontendOpts()); 808 } 809 810 // static 811 bool CompilerInstance::InitializeSourceManager( 812 const FrontendInputFile &Input, DiagnosticsEngine &Diags, 813 FileManager &FileMgr, SourceManager &SourceMgr, HeaderSearch *HS, 814 DependencyOutputOptions &DepOpts, const FrontendOptions &Opts) { 815 SrcMgr::CharacteristicKind Kind = 816 Input.getKind().getFormat() == InputKind::ModuleMap 817 ? Input.isSystem() ? SrcMgr::C_System_ModuleMap 818 : SrcMgr::C_User_ModuleMap 819 : Input.isSystem() ? SrcMgr::C_System : SrcMgr::C_User; 820 821 if (Input.isBuffer()) { 822 SourceMgr.setMainFileID(SourceMgr.createFileID(SourceManager::Unowned, 823 Input.getBuffer(), Kind)); 824 assert(SourceMgr.getMainFileID().isValid() && 825 "Couldn't establish MainFileID!"); 826 return true; 827 } 828 829 StringRef InputFile = Input.getFile(); 830 831 // Figure out where to get and map in the main file. 832 if (InputFile != "-") { 833 auto FileOrErr = FileMgr.getFile(InputFile, /*OpenFile=*/true); 834 if (!FileOrErr) { 835 Diags.Report(diag::err_fe_error_reading) << InputFile; 836 return false; 837 } 838 auto File = *FileOrErr; 839 840 // The natural SourceManager infrastructure can't currently handle named 841 // pipes, but we would at least like to accept them for the main 842 // file. Detect them here, read them with the volatile flag so FileMgr will 843 // pick up the correct size, and simply override their contents as we do for 844 // STDIN. 845 if (File->isNamedPipe()) { 846 auto MB = FileMgr.getBufferForFile(File, /*isVolatile=*/true); 847 if (MB) { 848 // Create a new virtual file that will have the correct size. 849 File = FileMgr.getVirtualFile(InputFile, (*MB)->getBufferSize(), 0); 850 SourceMgr.overrideFileContents(File, std::move(*MB)); 851 } else { 852 Diags.Report(diag::err_cannot_open_file) << InputFile 853 << MB.getError().message(); 854 return false; 855 } 856 } 857 858 SourceMgr.setMainFileID( 859 SourceMgr.createFileID(File, SourceLocation(), Kind)); 860 } else { 861 llvm::ErrorOr<std::unique_ptr<llvm::MemoryBuffer>> SBOrErr = 862 llvm::MemoryBuffer::getSTDIN(); 863 if (std::error_code EC = SBOrErr.getError()) { 864 Diags.Report(diag::err_fe_error_reading_stdin) << EC.message(); 865 return false; 866 } 867 std::unique_ptr<llvm::MemoryBuffer> SB = std::move(SBOrErr.get()); 868 869 const FileEntry *File = FileMgr.getVirtualFile(SB->getBufferIdentifier(), 870 SB->getBufferSize(), 0); 871 SourceMgr.setMainFileID( 872 SourceMgr.createFileID(File, SourceLocation(), Kind)); 873 SourceMgr.overrideFileContents(File, std::move(SB)); 874 } 875 876 assert(SourceMgr.getMainFileID().isValid() && 877 "Couldn't establish MainFileID!"); 878 return true; 879 } 880 881 // High-Level Operations 882 883 bool CompilerInstance::ExecuteAction(FrontendAction &Act) { 884 assert(hasDiagnostics() && "Diagnostics engine is not initialized!"); 885 assert(!getFrontendOpts().ShowHelp && "Client must handle '-help'!"); 886 assert(!getFrontendOpts().ShowVersion && "Client must handle '-version'!"); 887 888 // FIXME: Take this as an argument, once all the APIs we used have moved to 889 // taking it as an input instead of hard-coding llvm::errs. 890 raw_ostream &OS = llvm::errs(); 891 892 if (!Act.PrepareToExecute(*this)) 893 return false; 894 895 // Create the target instance. 896 setTarget(TargetInfo::CreateTargetInfo(getDiagnostics(), 897 getInvocation().TargetOpts)); 898 if (!hasTarget()) 899 return false; 900 901 // Create TargetInfo for the other side of CUDA and OpenMP compilation. 902 if ((getLangOpts().CUDA || getLangOpts().OpenMPIsDevice) && 903 !getFrontendOpts().AuxTriple.empty()) { 904 auto TO = std::make_shared<TargetOptions>(); 905 TO->Triple = llvm::Triple::normalize(getFrontendOpts().AuxTriple); 906 TO->HostTriple = getTarget().getTriple().str(); 907 setAuxTarget(TargetInfo::CreateTargetInfo(getDiagnostics(), TO)); 908 } 909 910 // Inform the target of the language options. 911 // 912 // FIXME: We shouldn't need to do this, the target should be immutable once 913 // created. This complexity should be lifted elsewhere. 914 getTarget().adjust(getLangOpts()); 915 916 // Adjust target options based on codegen options. 917 getTarget().adjustTargetOptions(getCodeGenOpts(), getTargetOpts()); 918 919 if (auto *Aux = getAuxTarget()) 920 getTarget().setAuxTarget(Aux); 921 922 // rewriter project will change target built-in bool type from its default. 923 if (getFrontendOpts().ProgramAction == frontend::RewriteObjC) 924 getTarget().noSignedCharForObjCBool(); 925 926 // Validate/process some options. 927 if (getHeaderSearchOpts().Verbose) 928 OS << "clang -cc1 version " CLANG_VERSION_STRING 929 << " based upon " << BACKEND_PACKAGE_STRING 930 << " default target " << llvm::sys::getDefaultTargetTriple() << "\n"; 931 932 if (getFrontendOpts().ShowTimers) 933 createFrontendTimer(); 934 935 if (getFrontendOpts().ShowStats || !getFrontendOpts().StatsFile.empty()) 936 llvm::EnableStatistics(false); 937 938 for (const FrontendInputFile &FIF : getFrontendOpts().Inputs) { 939 // Reset the ID tables if we are reusing the SourceManager and parsing 940 // regular files. 941 if (hasSourceManager() && !Act.isModelParsingAction()) 942 getSourceManager().clearIDTables(); 943 944 if (Act.BeginSourceFile(*this, FIF)) { 945 if (llvm::Error Err = Act.Execute()) { 946 consumeError(std::move(Err)); // FIXME this drops errors on the floor. 947 } 948 Act.EndSourceFile(); 949 } 950 } 951 952 // Notify the diagnostic client that all files were processed. 953 getDiagnostics().getClient()->finish(); 954 955 if (getDiagnosticOpts().ShowCarets) { 956 // We can have multiple diagnostics sharing one diagnostic client. 957 // Get the total number of warnings/errors from the client. 958 unsigned NumWarnings = getDiagnostics().getClient()->getNumWarnings(); 959 unsigned NumErrors = getDiagnostics().getClient()->getNumErrors(); 960 961 if (NumWarnings) 962 OS << NumWarnings << " warning" << (NumWarnings == 1 ? "" : "s"); 963 if (NumWarnings && NumErrors) 964 OS << " and "; 965 if (NumErrors) 966 OS << NumErrors << " error" << (NumErrors == 1 ? "" : "s"); 967 if (NumWarnings || NumErrors) { 968 OS << " generated"; 969 if (getLangOpts().CUDA) { 970 if (!getLangOpts().CUDAIsDevice) { 971 OS << " when compiling for host"; 972 } else { 973 OS << " when compiling for " << getTargetOpts().CPU; 974 } 975 } 976 OS << ".\n"; 977 } 978 } 979 980 if (getFrontendOpts().ShowStats) { 981 if (hasFileManager()) { 982 getFileManager().PrintStats(); 983 OS << '\n'; 984 } 985 llvm::PrintStatistics(OS); 986 } 987 StringRef StatsFile = getFrontendOpts().StatsFile; 988 if (!StatsFile.empty()) { 989 std::error_code EC; 990 auto StatS = llvm::make_unique<llvm::raw_fd_ostream>(StatsFile, EC, 991 llvm::sys::fs::F_Text); 992 if (EC) { 993 getDiagnostics().Report(diag::warn_fe_unable_to_open_stats_file) 994 << StatsFile << EC.message(); 995 } else { 996 llvm::PrintStatisticsJSON(*StatS); 997 } 998 } 999 1000 return !getDiagnostics().getClient()->getNumErrors(); 1001 } 1002 1003 /// Determine the appropriate source input kind based on language 1004 /// options. 1005 static InputKind::Language getLanguageFromOptions(const LangOptions &LangOpts) { 1006 if (LangOpts.OpenCL) 1007 return InputKind::OpenCL; 1008 if (LangOpts.CUDA) 1009 return InputKind::CUDA; 1010 if (LangOpts.ObjC) 1011 return LangOpts.CPlusPlus ? InputKind::ObjCXX : InputKind::ObjC; 1012 return LangOpts.CPlusPlus ? InputKind::CXX : InputKind::C; 1013 } 1014 1015 /// Compile a module file for the given module, using the options 1016 /// provided by the importing compiler instance. Returns true if the module 1017 /// was built without errors. 1018 static bool 1019 compileModuleImpl(CompilerInstance &ImportingInstance, SourceLocation ImportLoc, 1020 StringRef ModuleName, FrontendInputFile Input, 1021 StringRef OriginalModuleMapFile, StringRef ModuleFileName, 1022 llvm::function_ref<void(CompilerInstance &)> PreBuildStep = 1023 [](CompilerInstance &) {}, 1024 llvm::function_ref<void(CompilerInstance &)> PostBuildStep = 1025 [](CompilerInstance &) {}) { 1026 llvm::TimeTraceScope TimeScope("Module Compile", ModuleName); 1027 1028 // Construct a compiler invocation for creating this module. 1029 auto Invocation = 1030 std::make_shared<CompilerInvocation>(ImportingInstance.getInvocation()); 1031 1032 PreprocessorOptions &PPOpts = Invocation->getPreprocessorOpts(); 1033 1034 // For any options that aren't intended to affect how a module is built, 1035 // reset them to their default values. 1036 Invocation->getLangOpts()->resetNonModularOptions(); 1037 PPOpts.resetNonModularOptions(); 1038 1039 // Remove any macro definitions that are explicitly ignored by the module. 1040 // They aren't supposed to affect how the module is built anyway. 1041 HeaderSearchOptions &HSOpts = Invocation->getHeaderSearchOpts(); 1042 PPOpts.Macros.erase( 1043 std::remove_if(PPOpts.Macros.begin(), PPOpts.Macros.end(), 1044 [&HSOpts](const std::pair<std::string, bool> &def) { 1045 StringRef MacroDef = def.first; 1046 return HSOpts.ModulesIgnoreMacros.count( 1047 llvm::CachedHashString(MacroDef.split('=').first)) > 0; 1048 }), 1049 PPOpts.Macros.end()); 1050 1051 // If the original compiler invocation had -fmodule-name, pass it through. 1052 Invocation->getLangOpts()->ModuleName = 1053 ImportingInstance.getInvocation().getLangOpts()->ModuleName; 1054 1055 // Note the name of the module we're building. 1056 Invocation->getLangOpts()->CurrentModule = ModuleName; 1057 1058 // Make sure that the failed-module structure has been allocated in 1059 // the importing instance, and propagate the pointer to the newly-created 1060 // instance. 1061 PreprocessorOptions &ImportingPPOpts 1062 = ImportingInstance.getInvocation().getPreprocessorOpts(); 1063 if (!ImportingPPOpts.FailedModules) 1064 ImportingPPOpts.FailedModules = 1065 std::make_shared<PreprocessorOptions::FailedModulesSet>(); 1066 PPOpts.FailedModules = ImportingPPOpts.FailedModules; 1067 1068 // If there is a module map file, build the module using the module map. 1069 // Set up the inputs/outputs so that we build the module from its umbrella 1070 // header. 1071 FrontendOptions &FrontendOpts = Invocation->getFrontendOpts(); 1072 FrontendOpts.OutputFile = ModuleFileName.str(); 1073 FrontendOpts.DisableFree = false; 1074 FrontendOpts.GenerateGlobalModuleIndex = false; 1075 FrontendOpts.BuildingImplicitModule = true; 1076 FrontendOpts.OriginalModuleMap = OriginalModuleMapFile; 1077 // Force implicitly-built modules to hash the content of the module file. 1078 HSOpts.ModulesHashContent = true; 1079 FrontendOpts.Inputs = {Input}; 1080 1081 // Don't free the remapped file buffers; they are owned by our caller. 1082 PPOpts.RetainRemappedFileBuffers = true; 1083 1084 Invocation->getDiagnosticOpts().VerifyDiagnostics = 0; 1085 assert(ImportingInstance.getInvocation().getModuleHash() == 1086 Invocation->getModuleHash() && "Module hash mismatch!"); 1087 1088 // Construct a compiler instance that will be used to actually create the 1089 // module. Since we're sharing an in-memory module cache, 1090 // CompilerInstance::CompilerInstance is responsible for finalizing the 1091 // buffers to prevent use-after-frees. 1092 CompilerInstance Instance(ImportingInstance.getPCHContainerOperations(), 1093 &ImportingInstance.getModuleCache()); 1094 auto &Inv = *Invocation; 1095 Instance.setInvocation(std::move(Invocation)); 1096 1097 Instance.createDiagnostics(new ForwardingDiagnosticConsumer( 1098 ImportingInstance.getDiagnosticClient()), 1099 /*ShouldOwnClient=*/true); 1100 1101 // Note that this module is part of the module build stack, so that we 1102 // can detect cycles in the module graph. 1103 Instance.setFileManager(&ImportingInstance.getFileManager()); 1104 Instance.createSourceManager(Instance.getFileManager()); 1105 SourceManager &SourceMgr = Instance.getSourceManager(); 1106 SourceMgr.setModuleBuildStack( 1107 ImportingInstance.getSourceManager().getModuleBuildStack()); 1108 SourceMgr.pushModuleBuildStack(ModuleName, 1109 FullSourceLoc(ImportLoc, ImportingInstance.getSourceManager())); 1110 1111 // If we're collecting module dependencies, we need to share a collector 1112 // between all of the module CompilerInstances. Other than that, we don't 1113 // want to produce any dependency output from the module build. 1114 Instance.setModuleDepCollector(ImportingInstance.getModuleDepCollector()); 1115 Inv.getDependencyOutputOpts() = DependencyOutputOptions(); 1116 1117 ImportingInstance.getDiagnostics().Report(ImportLoc, 1118 diag::remark_module_build) 1119 << ModuleName << ModuleFileName; 1120 1121 PreBuildStep(Instance); 1122 1123 // Execute the action to actually build the module in-place. Use a separate 1124 // thread so that we get a stack large enough. 1125 llvm::CrashRecoveryContext CRC; 1126 CRC.RunSafelyOnThread( 1127 [&]() { 1128 GenerateModuleFromModuleMapAction Action; 1129 Instance.ExecuteAction(Action); 1130 }, 1131 DesiredStackSize); 1132 1133 PostBuildStep(Instance); 1134 1135 ImportingInstance.getDiagnostics().Report(ImportLoc, 1136 diag::remark_module_build_done) 1137 << ModuleName; 1138 1139 // Delete the temporary module map file. 1140 // FIXME: Even though we're executing under crash protection, it would still 1141 // be nice to do this with RemoveFileOnSignal when we can. However, that 1142 // doesn't make sense for all clients, so clean this up manually. 1143 Instance.clearOutputFiles(/*EraseFiles=*/true); 1144 1145 return !Instance.getDiagnostics().hasErrorOccurred(); 1146 } 1147 1148 static const FileEntry *getPublicModuleMap(const FileEntry *File, 1149 FileManager &FileMgr) { 1150 StringRef Filename = llvm::sys::path::filename(File->getName()); 1151 SmallString<128> PublicFilename(File->getDir()->getName()); 1152 if (Filename == "module_private.map") 1153 llvm::sys::path::append(PublicFilename, "module.map"); 1154 else if (Filename == "module.private.modulemap") 1155 llvm::sys::path::append(PublicFilename, "module.modulemap"); 1156 else 1157 return nullptr; 1158 if (auto FE = FileMgr.getFile(PublicFilename)) 1159 return *FE; 1160 return nullptr; 1161 } 1162 1163 /// Compile a module file for the given module, using the options 1164 /// provided by the importing compiler instance. Returns true if the module 1165 /// was built without errors. 1166 static bool compileModuleImpl(CompilerInstance &ImportingInstance, 1167 SourceLocation ImportLoc, 1168 Module *Module, 1169 StringRef ModuleFileName) { 1170 InputKind IK(getLanguageFromOptions(ImportingInstance.getLangOpts()), 1171 InputKind::ModuleMap); 1172 1173 // Get or create the module map that we'll use to build this module. 1174 ModuleMap &ModMap 1175 = ImportingInstance.getPreprocessor().getHeaderSearchInfo().getModuleMap(); 1176 bool Result; 1177 if (const FileEntry *ModuleMapFile = 1178 ModMap.getContainingModuleMapFile(Module)) { 1179 // Canonicalize compilation to start with the public module map. This is 1180 // vital for submodules declarations in the private module maps to be 1181 // correctly parsed when depending on a top level module in the public one. 1182 if (const FileEntry *PublicMMFile = getPublicModuleMap( 1183 ModuleMapFile, ImportingInstance.getFileManager())) 1184 ModuleMapFile = PublicMMFile; 1185 1186 // Use the module map where this module resides. 1187 Result = compileModuleImpl( 1188 ImportingInstance, ImportLoc, Module->getTopLevelModuleName(), 1189 FrontendInputFile(ModuleMapFile->getName(), IK, +Module->IsSystem), 1190 ModMap.getModuleMapFileForUniquing(Module)->getName(), 1191 ModuleFileName); 1192 } else { 1193 // FIXME: We only need to fake up an input file here as a way of 1194 // transporting the module's directory to the module map parser. We should 1195 // be able to do that more directly, and parse from a memory buffer without 1196 // inventing this file. 1197 SmallString<128> FakeModuleMapFile(Module->Directory->getName()); 1198 llvm::sys::path::append(FakeModuleMapFile, "__inferred_module.map"); 1199 1200 std::string InferredModuleMapContent; 1201 llvm::raw_string_ostream OS(InferredModuleMapContent); 1202 Module->print(OS); 1203 OS.flush(); 1204 1205 Result = compileModuleImpl( 1206 ImportingInstance, ImportLoc, Module->getTopLevelModuleName(), 1207 FrontendInputFile(FakeModuleMapFile, IK, +Module->IsSystem), 1208 ModMap.getModuleMapFileForUniquing(Module)->getName(), 1209 ModuleFileName, 1210 [&](CompilerInstance &Instance) { 1211 std::unique_ptr<llvm::MemoryBuffer> ModuleMapBuffer = 1212 llvm::MemoryBuffer::getMemBuffer(InferredModuleMapContent); 1213 ModuleMapFile = Instance.getFileManager().getVirtualFile( 1214 FakeModuleMapFile, InferredModuleMapContent.size(), 0); 1215 Instance.getSourceManager().overrideFileContents( 1216 ModuleMapFile, std::move(ModuleMapBuffer)); 1217 }); 1218 } 1219 1220 // We've rebuilt a module. If we're allowed to generate or update the global 1221 // module index, record that fact in the importing compiler instance. 1222 if (ImportingInstance.getFrontendOpts().GenerateGlobalModuleIndex) { 1223 ImportingInstance.setBuildGlobalModuleIndex(true); 1224 } 1225 1226 return Result; 1227 } 1228 1229 static bool compileAndLoadModule(CompilerInstance &ImportingInstance, 1230 SourceLocation ImportLoc, 1231 SourceLocation ModuleNameLoc, Module *Module, 1232 StringRef ModuleFileName) { 1233 DiagnosticsEngine &Diags = ImportingInstance.getDiagnostics(); 1234 1235 auto diagnoseBuildFailure = [&] { 1236 Diags.Report(ModuleNameLoc, diag::err_module_not_built) 1237 << Module->Name << SourceRange(ImportLoc, ModuleNameLoc); 1238 }; 1239 1240 // FIXME: have LockFileManager return an error_code so that we can 1241 // avoid the mkdir when the directory already exists. 1242 StringRef Dir = llvm::sys::path::parent_path(ModuleFileName); 1243 llvm::sys::fs::create_directories(Dir); 1244 1245 while (1) { 1246 unsigned ModuleLoadCapabilities = ASTReader::ARR_Missing; 1247 llvm::LockFileManager Locked(ModuleFileName); 1248 switch (Locked) { 1249 case llvm::LockFileManager::LFS_Error: 1250 // ModuleCache takes care of correctness and locks are only necessary for 1251 // performance. Fallback to building the module in case of any lock 1252 // related errors. 1253 Diags.Report(ModuleNameLoc, diag::remark_module_lock_failure) 1254 << Module->Name << Locked.getErrorMessage(); 1255 // Clear out any potential leftover. 1256 Locked.unsafeRemoveLockFile(); 1257 LLVM_FALLTHROUGH; 1258 case llvm::LockFileManager::LFS_Owned: 1259 // We're responsible for building the module ourselves. 1260 if (!compileModuleImpl(ImportingInstance, ModuleNameLoc, Module, 1261 ModuleFileName)) { 1262 diagnoseBuildFailure(); 1263 return false; 1264 } 1265 break; 1266 1267 case llvm::LockFileManager::LFS_Shared: 1268 // Someone else is responsible for building the module. Wait for them to 1269 // finish. 1270 switch (Locked.waitForUnlock()) { 1271 case llvm::LockFileManager::Res_Success: 1272 ModuleLoadCapabilities |= ASTReader::ARR_OutOfDate; 1273 break; 1274 case llvm::LockFileManager::Res_OwnerDied: 1275 continue; // try again to get the lock. 1276 case llvm::LockFileManager::Res_Timeout: 1277 // Since ModuleCache takes care of correctness, we try waiting for 1278 // another process to complete the build so clang does not do it done 1279 // twice. If case of timeout, build it ourselves. 1280 Diags.Report(ModuleNameLoc, diag::remark_module_lock_timeout) 1281 << Module->Name; 1282 // Clear the lock file so that future invocations can make progress. 1283 Locked.unsafeRemoveLockFile(); 1284 continue; 1285 } 1286 break; 1287 } 1288 1289 // Try to read the module file, now that we've compiled it. 1290 ASTReader::ASTReadResult ReadResult = 1291 ImportingInstance.getModuleManager()->ReadAST( 1292 ModuleFileName, serialization::MK_ImplicitModule, ImportLoc, 1293 ModuleLoadCapabilities); 1294 1295 if (ReadResult == ASTReader::OutOfDate && 1296 Locked == llvm::LockFileManager::LFS_Shared) { 1297 // The module may be out of date in the presence of file system races, 1298 // or if one of its imports depends on header search paths that are not 1299 // consistent with this ImportingInstance. Try again... 1300 continue; 1301 } else if (ReadResult == ASTReader::Missing) { 1302 diagnoseBuildFailure(); 1303 } else if (ReadResult != ASTReader::Success && 1304 !Diags.hasErrorOccurred()) { 1305 // The ASTReader didn't diagnose the error, so conservatively report it. 1306 diagnoseBuildFailure(); 1307 } 1308 return ReadResult == ASTReader::Success; 1309 } 1310 } 1311 1312 /// Diagnose differences between the current definition of the given 1313 /// configuration macro and the definition provided on the command line. 1314 static void checkConfigMacro(Preprocessor &PP, StringRef ConfigMacro, 1315 Module *Mod, SourceLocation ImportLoc) { 1316 IdentifierInfo *Id = PP.getIdentifierInfo(ConfigMacro); 1317 SourceManager &SourceMgr = PP.getSourceManager(); 1318 1319 // If this identifier has never had a macro definition, then it could 1320 // not have changed. 1321 if (!Id->hadMacroDefinition()) 1322 return; 1323 auto *LatestLocalMD = PP.getLocalMacroDirectiveHistory(Id); 1324 1325 // Find the macro definition from the command line. 1326 MacroInfo *CmdLineDefinition = nullptr; 1327 for (auto *MD = LatestLocalMD; MD; MD = MD->getPrevious()) { 1328 // We only care about the predefines buffer. 1329 FileID FID = SourceMgr.getFileID(MD->getLocation()); 1330 if (FID.isInvalid() || FID != PP.getPredefinesFileID()) 1331 continue; 1332 if (auto *DMD = dyn_cast<DefMacroDirective>(MD)) 1333 CmdLineDefinition = DMD->getMacroInfo(); 1334 break; 1335 } 1336 1337 auto *CurrentDefinition = PP.getMacroInfo(Id); 1338 if (CurrentDefinition == CmdLineDefinition) { 1339 // Macro matches. Nothing to do. 1340 } else if (!CurrentDefinition) { 1341 // This macro was defined on the command line, then #undef'd later. 1342 // Complain. 1343 PP.Diag(ImportLoc, diag::warn_module_config_macro_undef) 1344 << true << ConfigMacro << Mod->getFullModuleName(); 1345 auto LatestDef = LatestLocalMD->getDefinition(); 1346 assert(LatestDef.isUndefined() && 1347 "predefined macro went away with no #undef?"); 1348 PP.Diag(LatestDef.getUndefLocation(), diag::note_module_def_undef_here) 1349 << true; 1350 return; 1351 } else if (!CmdLineDefinition) { 1352 // There was no definition for this macro in the predefines buffer, 1353 // but there was a local definition. Complain. 1354 PP.Diag(ImportLoc, diag::warn_module_config_macro_undef) 1355 << false << ConfigMacro << Mod->getFullModuleName(); 1356 PP.Diag(CurrentDefinition->getDefinitionLoc(), 1357 diag::note_module_def_undef_here) 1358 << false; 1359 } else if (!CurrentDefinition->isIdenticalTo(*CmdLineDefinition, PP, 1360 /*Syntactically=*/true)) { 1361 // The macro definitions differ. 1362 PP.Diag(ImportLoc, diag::warn_module_config_macro_undef) 1363 << false << ConfigMacro << Mod->getFullModuleName(); 1364 PP.Diag(CurrentDefinition->getDefinitionLoc(), 1365 diag::note_module_def_undef_here) 1366 << false; 1367 } 1368 } 1369 1370 /// Write a new timestamp file with the given path. 1371 static void writeTimestampFile(StringRef TimestampFile) { 1372 std::error_code EC; 1373 llvm::raw_fd_ostream Out(TimestampFile.str(), EC, llvm::sys::fs::F_None); 1374 } 1375 1376 /// Prune the module cache of modules that haven't been accessed in 1377 /// a long time. 1378 static void pruneModuleCache(const HeaderSearchOptions &HSOpts) { 1379 struct stat StatBuf; 1380 llvm::SmallString<128> TimestampFile; 1381 TimestampFile = HSOpts.ModuleCachePath; 1382 assert(!TimestampFile.empty()); 1383 llvm::sys::path::append(TimestampFile, "modules.timestamp"); 1384 1385 // Try to stat() the timestamp file. 1386 if (::stat(TimestampFile.c_str(), &StatBuf)) { 1387 // If the timestamp file wasn't there, create one now. 1388 if (errno == ENOENT) { 1389 writeTimestampFile(TimestampFile); 1390 } 1391 return; 1392 } 1393 1394 // Check whether the time stamp is older than our pruning interval. 1395 // If not, do nothing. 1396 time_t TimeStampModTime = StatBuf.st_mtime; 1397 time_t CurrentTime = time(nullptr); 1398 if (CurrentTime - TimeStampModTime <= time_t(HSOpts.ModuleCachePruneInterval)) 1399 return; 1400 1401 // Write a new timestamp file so that nobody else attempts to prune. 1402 // There is a benign race condition here, if two Clang instances happen to 1403 // notice at the same time that the timestamp is out-of-date. 1404 writeTimestampFile(TimestampFile); 1405 1406 // Walk the entire module cache, looking for unused module files and module 1407 // indices. 1408 std::error_code EC; 1409 SmallString<128> ModuleCachePathNative; 1410 llvm::sys::path::native(HSOpts.ModuleCachePath, ModuleCachePathNative); 1411 for (llvm::sys::fs::directory_iterator Dir(ModuleCachePathNative, EC), DirEnd; 1412 Dir != DirEnd && !EC; Dir.increment(EC)) { 1413 // If we don't have a directory, there's nothing to look into. 1414 if (!llvm::sys::fs::is_directory(Dir->path())) 1415 continue; 1416 1417 // Walk all of the files within this directory. 1418 for (llvm::sys::fs::directory_iterator File(Dir->path(), EC), FileEnd; 1419 File != FileEnd && !EC; File.increment(EC)) { 1420 // We only care about module and global module index files. 1421 StringRef Extension = llvm::sys::path::extension(File->path()); 1422 if (Extension != ".pcm" && Extension != ".timestamp" && 1423 llvm::sys::path::filename(File->path()) != "modules.idx") 1424 continue; 1425 1426 // Look at this file. If we can't stat it, there's nothing interesting 1427 // there. 1428 if (::stat(File->path().c_str(), &StatBuf)) 1429 continue; 1430 1431 // If the file has been used recently enough, leave it there. 1432 time_t FileAccessTime = StatBuf.st_atime; 1433 if (CurrentTime - FileAccessTime <= 1434 time_t(HSOpts.ModuleCachePruneAfter)) { 1435 continue; 1436 } 1437 1438 // Remove the file. 1439 llvm::sys::fs::remove(File->path()); 1440 1441 // Remove the timestamp file. 1442 std::string TimpestampFilename = File->path() + ".timestamp"; 1443 llvm::sys::fs::remove(TimpestampFilename); 1444 } 1445 1446 // If we removed all of the files in the directory, remove the directory 1447 // itself. 1448 if (llvm::sys::fs::directory_iterator(Dir->path(), EC) == 1449 llvm::sys::fs::directory_iterator() && !EC) 1450 llvm::sys::fs::remove(Dir->path()); 1451 } 1452 } 1453 1454 void CompilerInstance::createModuleManager() { 1455 if (!ModuleManager) { 1456 if (!hasASTContext()) 1457 createASTContext(); 1458 1459 // If we're implicitly building modules but not currently recursively 1460 // building a module, check whether we need to prune the module cache. 1461 if (getSourceManager().getModuleBuildStack().empty() && 1462 !getPreprocessor().getHeaderSearchInfo().getModuleCachePath().empty() && 1463 getHeaderSearchOpts().ModuleCachePruneInterval > 0 && 1464 getHeaderSearchOpts().ModuleCachePruneAfter > 0) { 1465 pruneModuleCache(getHeaderSearchOpts()); 1466 } 1467 1468 HeaderSearchOptions &HSOpts = getHeaderSearchOpts(); 1469 std::string Sysroot = HSOpts.Sysroot; 1470 const PreprocessorOptions &PPOpts = getPreprocessorOpts(); 1471 std::unique_ptr<llvm::Timer> ReadTimer; 1472 if (FrontendTimerGroup) 1473 ReadTimer = llvm::make_unique<llvm::Timer>("reading_modules", 1474 "Reading modules", 1475 *FrontendTimerGroup); 1476 ModuleManager = new ASTReader( 1477 getPreprocessor(), getModuleCache(), &getASTContext(), 1478 getPCHContainerReader(), getFrontendOpts().ModuleFileExtensions, 1479 Sysroot.empty() ? "" : Sysroot.c_str(), PPOpts.DisablePCHValidation, 1480 /*AllowASTWithCompilerErrors=*/false, 1481 /*AllowConfigurationMismatch=*/false, 1482 HSOpts.ModulesValidateSystemHeaders, 1483 getFrontendOpts().UseGlobalModuleIndex, std::move(ReadTimer)); 1484 if (hasASTConsumer()) { 1485 ModuleManager->setDeserializationListener( 1486 getASTConsumer().GetASTDeserializationListener()); 1487 getASTContext().setASTMutationListener( 1488 getASTConsumer().GetASTMutationListener()); 1489 } 1490 getASTContext().setExternalSource(ModuleManager); 1491 if (hasSema()) 1492 ModuleManager->InitializeSema(getSema()); 1493 if (hasASTConsumer()) 1494 ModuleManager->StartTranslationUnit(&getASTConsumer()); 1495 1496 for (auto &Listener : DependencyCollectors) 1497 Listener->attachToASTReader(*ModuleManager); 1498 } 1499 } 1500 1501 bool CompilerInstance::loadModuleFile(StringRef FileName) { 1502 llvm::Timer Timer; 1503 if (FrontendTimerGroup) 1504 Timer.init("preloading." + FileName.str(), "Preloading " + FileName.str(), 1505 *FrontendTimerGroup); 1506 llvm::TimeRegion TimeLoading(FrontendTimerGroup ? &Timer : nullptr); 1507 1508 // Helper to recursively read the module names for all modules we're adding. 1509 // We mark these as known and redirect any attempt to load that module to 1510 // the files we were handed. 1511 struct ReadModuleNames : ASTReaderListener { 1512 CompilerInstance &CI; 1513 llvm::SmallVector<IdentifierInfo*, 8> LoadedModules; 1514 1515 ReadModuleNames(CompilerInstance &CI) : CI(CI) {} 1516 1517 void ReadModuleName(StringRef ModuleName) override { 1518 LoadedModules.push_back( 1519 CI.getPreprocessor().getIdentifierInfo(ModuleName)); 1520 } 1521 1522 void registerAll() { 1523 for (auto *II : LoadedModules) { 1524 CI.KnownModules[II] = CI.getPreprocessor() 1525 .getHeaderSearchInfo() 1526 .getModuleMap() 1527 .findModule(II->getName()); 1528 } 1529 LoadedModules.clear(); 1530 } 1531 1532 void markAllUnavailable() { 1533 for (auto *II : LoadedModules) { 1534 if (Module *M = CI.getPreprocessor() 1535 .getHeaderSearchInfo() 1536 .getModuleMap() 1537 .findModule(II->getName())) { 1538 M->HasIncompatibleModuleFile = true; 1539 1540 // Mark module as available if the only reason it was unavailable 1541 // was missing headers. 1542 SmallVector<Module *, 2> Stack; 1543 Stack.push_back(M); 1544 while (!Stack.empty()) { 1545 Module *Current = Stack.pop_back_val(); 1546 if (Current->IsMissingRequirement) continue; 1547 Current->IsAvailable = true; 1548 Stack.insert(Stack.end(), 1549 Current->submodule_begin(), Current->submodule_end()); 1550 } 1551 } 1552 } 1553 LoadedModules.clear(); 1554 } 1555 }; 1556 1557 // If we don't already have an ASTReader, create one now. 1558 if (!ModuleManager) 1559 createModuleManager(); 1560 1561 // If -Wmodule-file-config-mismatch is mapped as an error or worse, allow the 1562 // ASTReader to diagnose it, since it can produce better errors that we can. 1563 bool ConfigMismatchIsRecoverable = 1564 getDiagnostics().getDiagnosticLevel(diag::warn_module_config_mismatch, 1565 SourceLocation()) 1566 <= DiagnosticsEngine::Warning; 1567 1568 auto Listener = llvm::make_unique<ReadModuleNames>(*this); 1569 auto &ListenerRef = *Listener; 1570 ASTReader::ListenerScope ReadModuleNamesListener(*ModuleManager, 1571 std::move(Listener)); 1572 1573 // Try to load the module file. 1574 switch (ModuleManager->ReadAST( 1575 FileName, serialization::MK_ExplicitModule, SourceLocation(), 1576 ConfigMismatchIsRecoverable ? ASTReader::ARR_ConfigurationMismatch : 0)) { 1577 case ASTReader::Success: 1578 // We successfully loaded the module file; remember the set of provided 1579 // modules so that we don't try to load implicit modules for them. 1580 ListenerRef.registerAll(); 1581 return true; 1582 1583 case ASTReader::ConfigurationMismatch: 1584 // Ignore unusable module files. 1585 getDiagnostics().Report(SourceLocation(), diag::warn_module_config_mismatch) 1586 << FileName; 1587 // All modules provided by any files we tried and failed to load are now 1588 // unavailable; includes of those modules should now be handled textually. 1589 ListenerRef.markAllUnavailable(); 1590 return true; 1591 1592 default: 1593 return false; 1594 } 1595 } 1596 1597 ModuleLoadResult 1598 CompilerInstance::loadModule(SourceLocation ImportLoc, 1599 ModuleIdPath Path, 1600 Module::NameVisibilityKind Visibility, 1601 bool IsInclusionDirective) { 1602 // Determine what file we're searching from. 1603 StringRef ModuleName = Path[0].first->getName(); 1604 SourceLocation ModuleNameLoc = Path[0].second; 1605 1606 // If we've already handled this import, just return the cached result. 1607 // This one-element cache is important to eliminate redundant diagnostics 1608 // when both the preprocessor and parser see the same import declaration. 1609 if (ImportLoc.isValid() && LastModuleImportLoc == ImportLoc) { 1610 // Make the named module visible. 1611 if (LastModuleImportResult && ModuleName != getLangOpts().CurrentModule) 1612 ModuleManager->makeModuleVisible(LastModuleImportResult, Visibility, 1613 ImportLoc); 1614 return LastModuleImportResult; 1615 } 1616 1617 clang::Module *Module = nullptr; 1618 1619 // If we don't already have information on this module, load the module now. 1620 llvm::DenseMap<const IdentifierInfo *, clang::Module *>::iterator Known 1621 = KnownModules.find(Path[0].first); 1622 if (Known != KnownModules.end()) { 1623 // Retrieve the cached top-level module. 1624 Module = Known->second; 1625 } else if (ModuleName == getLangOpts().CurrentModule) { 1626 // This is the module we're building. 1627 Module = PP->getHeaderSearchInfo().lookupModule( 1628 ModuleName, /*AllowSearch*/ true, 1629 /*AllowExtraModuleMapSearch*/ !IsInclusionDirective); 1630 /// FIXME: perhaps we should (a) look for a module using the module name 1631 // to file map (PrebuiltModuleFiles) and (b) diagnose if still not found? 1632 //if (Module == nullptr) { 1633 // getDiagnostics().Report(ModuleNameLoc, diag::err_module_not_found) 1634 // << ModuleName; 1635 // ModuleBuildFailed = true; 1636 // return ModuleLoadResult(); 1637 //} 1638 Known = KnownModules.insert(std::make_pair(Path[0].first, Module)).first; 1639 } else { 1640 // Search for a module with the given name. 1641 Module = PP->getHeaderSearchInfo().lookupModule(ModuleName, true, 1642 !IsInclusionDirective); 1643 HeaderSearchOptions &HSOpts = 1644 PP->getHeaderSearchInfo().getHeaderSearchOpts(); 1645 1646 std::string ModuleFileName; 1647 enum ModuleSource { 1648 ModuleNotFound, ModuleCache, PrebuiltModulePath, ModuleBuildPragma 1649 } Source = ModuleNotFound; 1650 1651 // Check to see if the module has been built as part of this compilation 1652 // via a module build pragma. 1653 auto BuiltModuleIt = BuiltModules.find(ModuleName); 1654 if (BuiltModuleIt != BuiltModules.end()) { 1655 ModuleFileName = BuiltModuleIt->second; 1656 Source = ModuleBuildPragma; 1657 } 1658 1659 // Try to load the module from the prebuilt module path. 1660 if (Source == ModuleNotFound && (!HSOpts.PrebuiltModuleFiles.empty() || 1661 !HSOpts.PrebuiltModulePaths.empty())) { 1662 ModuleFileName = 1663 PP->getHeaderSearchInfo().getPrebuiltModuleFileName(ModuleName); 1664 if (!ModuleFileName.empty()) 1665 Source = PrebuiltModulePath; 1666 } 1667 1668 // Try to load the module from the module cache. 1669 if (Source == ModuleNotFound && Module) { 1670 ModuleFileName = PP->getHeaderSearchInfo().getCachedModuleFileName(Module); 1671 Source = ModuleCache; 1672 } 1673 1674 if (Source == ModuleNotFound) { 1675 // We can't find a module, error out here. 1676 getDiagnostics().Report(ModuleNameLoc, diag::err_module_not_found) 1677 << ModuleName << SourceRange(ImportLoc, ModuleNameLoc); 1678 ModuleBuildFailed = true; 1679 return ModuleLoadResult(); 1680 } 1681 1682 if (ModuleFileName.empty()) { 1683 if (Module && Module->HasIncompatibleModuleFile) { 1684 // We tried and failed to load a module file for this module. Fall 1685 // back to textual inclusion for its headers. 1686 return ModuleLoadResult::ConfigMismatch; 1687 } 1688 1689 getDiagnostics().Report(ModuleNameLoc, diag::err_module_build_disabled) 1690 << ModuleName; 1691 ModuleBuildFailed = true; 1692 return ModuleLoadResult(); 1693 } 1694 1695 // If we don't already have an ASTReader, create one now. 1696 if (!ModuleManager) 1697 createModuleManager(); 1698 1699 llvm::Timer Timer; 1700 if (FrontendTimerGroup) 1701 Timer.init("loading." + ModuleFileName, "Loading " + ModuleFileName, 1702 *FrontendTimerGroup); 1703 llvm::TimeRegion TimeLoading(FrontendTimerGroup ? &Timer : nullptr); 1704 llvm::TimeTraceScope TimeScope("Module Load", ModuleName); 1705 1706 // Try to load the module file. If we are not trying to load from the 1707 // module cache, we don't know how to rebuild modules. 1708 unsigned ARRFlags = Source == ModuleCache ? 1709 ASTReader::ARR_OutOfDate | ASTReader::ARR_Missing : 1710 Source == PrebuiltModulePath ? 1711 0 : 1712 ASTReader::ARR_ConfigurationMismatch; 1713 switch (ModuleManager->ReadAST(ModuleFileName, 1714 Source == PrebuiltModulePath 1715 ? serialization::MK_PrebuiltModule 1716 : Source == ModuleBuildPragma 1717 ? serialization::MK_ExplicitModule 1718 : serialization::MK_ImplicitModule, 1719 ImportLoc, ARRFlags)) { 1720 case ASTReader::Success: { 1721 if (Source != ModuleCache && !Module) { 1722 Module = PP->getHeaderSearchInfo().lookupModule(ModuleName, true, 1723 !IsInclusionDirective); 1724 auto ModuleFile = FileMgr->getFile(ModuleFileName); 1725 if (!Module || !Module->getASTFile() || 1726 !ModuleFile || (*ModuleFile != Module->getASTFile())) { 1727 // Error out if Module does not refer to the file in the prebuilt 1728 // module path. 1729 getDiagnostics().Report(ModuleNameLoc, diag::err_module_prebuilt) 1730 << ModuleName; 1731 ModuleBuildFailed = true; 1732 KnownModules[Path[0].first] = nullptr; 1733 return ModuleLoadResult(); 1734 } 1735 } 1736 break; 1737 } 1738 1739 case ASTReader::OutOfDate: 1740 case ASTReader::Missing: { 1741 if (Source != ModuleCache) { 1742 // We don't know the desired configuration for this module and don't 1743 // necessarily even have a module map. Since ReadAST already produces 1744 // diagnostics for these two cases, we simply error out here. 1745 ModuleBuildFailed = true; 1746 KnownModules[Path[0].first] = nullptr; 1747 return ModuleLoadResult(); 1748 } 1749 1750 // The module file is missing or out-of-date. Build it. 1751 assert(Module && "missing module file"); 1752 // Check whether there is a cycle in the module graph. 1753 ModuleBuildStack ModPath = getSourceManager().getModuleBuildStack(); 1754 ModuleBuildStack::iterator Pos = ModPath.begin(), PosEnd = ModPath.end(); 1755 for (; Pos != PosEnd; ++Pos) { 1756 if (Pos->first == ModuleName) 1757 break; 1758 } 1759 1760 if (Pos != PosEnd) { 1761 SmallString<256> CyclePath; 1762 for (; Pos != PosEnd; ++Pos) { 1763 CyclePath += Pos->first; 1764 CyclePath += " -> "; 1765 } 1766 CyclePath += ModuleName; 1767 1768 getDiagnostics().Report(ModuleNameLoc, diag::err_module_cycle) 1769 << ModuleName << CyclePath; 1770 return ModuleLoadResult(); 1771 } 1772 1773 // Check whether we have already attempted to build this module (but 1774 // failed). 1775 if (getPreprocessorOpts().FailedModules && 1776 getPreprocessorOpts().FailedModules->hasAlreadyFailed(ModuleName)) { 1777 getDiagnostics().Report(ModuleNameLoc, diag::err_module_not_built) 1778 << ModuleName 1779 << SourceRange(ImportLoc, ModuleNameLoc); 1780 ModuleBuildFailed = true; 1781 return ModuleLoadResult(); 1782 } 1783 1784 // Try to compile and then load the module. 1785 if (!compileAndLoadModule(*this, ImportLoc, ModuleNameLoc, Module, 1786 ModuleFileName)) { 1787 assert(getDiagnostics().hasErrorOccurred() && 1788 "undiagnosed error in compileAndLoadModule"); 1789 if (getPreprocessorOpts().FailedModules) 1790 getPreprocessorOpts().FailedModules->addFailed(ModuleName); 1791 KnownModules[Path[0].first] = nullptr; 1792 ModuleBuildFailed = true; 1793 return ModuleLoadResult(); 1794 } 1795 1796 // Okay, we've rebuilt and now loaded the module. 1797 break; 1798 } 1799 1800 case ASTReader::ConfigurationMismatch: 1801 if (Source == PrebuiltModulePath) 1802 // FIXME: We shouldn't be setting HadFatalFailure below if we only 1803 // produce a warning here! 1804 getDiagnostics().Report(SourceLocation(), 1805 diag::warn_module_config_mismatch) 1806 << ModuleFileName; 1807 // Fall through to error out. 1808 LLVM_FALLTHROUGH; 1809 case ASTReader::VersionMismatch: 1810 case ASTReader::HadErrors: 1811 ModuleLoader::HadFatalFailure = true; 1812 // FIXME: The ASTReader will already have complained, but can we shoehorn 1813 // that diagnostic information into a more useful form? 1814 KnownModules[Path[0].first] = nullptr; 1815 return ModuleLoadResult(); 1816 1817 case ASTReader::Failure: 1818 ModuleLoader::HadFatalFailure = true; 1819 // Already complained, but note now that we failed. 1820 KnownModules[Path[0].first] = nullptr; 1821 ModuleBuildFailed = true; 1822 return ModuleLoadResult(); 1823 } 1824 1825 // Cache the result of this top-level module lookup for later. 1826 Known = KnownModules.insert(std::make_pair(Path[0].first, Module)).first; 1827 } 1828 1829 // If we never found the module, fail. 1830 if (!Module) 1831 return ModuleLoadResult(); 1832 1833 // Verify that the rest of the module path actually corresponds to 1834 // a submodule. 1835 bool MapPrivateSubModToTopLevel = false; 1836 if (Path.size() > 1) { 1837 for (unsigned I = 1, N = Path.size(); I != N; ++I) { 1838 StringRef Name = Path[I].first->getName(); 1839 clang::Module *Sub = Module->findSubmodule(Name); 1840 1841 // If the user is requesting Foo.Private and it doesn't exist, try to 1842 // match Foo_Private and emit a warning asking for the user to write 1843 // @import Foo_Private instead. FIXME: remove this when existing clients 1844 // migrate off of Foo.Private syntax. 1845 if (!Sub && PP->getLangOpts().ImplicitModules && Name == "Private" && 1846 Module == Module->getTopLevelModule()) { 1847 SmallString<128> PrivateModule(Module->Name); 1848 PrivateModule.append("_Private"); 1849 1850 SmallVector<std::pair<IdentifierInfo *, SourceLocation>, 2> PrivPath; 1851 auto &II = PP->getIdentifierTable().get( 1852 PrivateModule, PP->getIdentifierInfo(Module->Name)->getTokenID()); 1853 PrivPath.push_back(std::make_pair(&II, Path[0].second)); 1854 1855 if (PP->getHeaderSearchInfo().lookupModule(PrivateModule, true, 1856 !IsInclusionDirective)) 1857 Sub = 1858 loadModule(ImportLoc, PrivPath, Visibility, IsInclusionDirective); 1859 if (Sub) { 1860 MapPrivateSubModToTopLevel = true; 1861 if (!getDiagnostics().isIgnored( 1862 diag::warn_no_priv_submodule_use_toplevel, ImportLoc)) { 1863 getDiagnostics().Report(Path[I].second, 1864 diag::warn_no_priv_submodule_use_toplevel) 1865 << Path[I].first << Module->getFullModuleName() << PrivateModule 1866 << SourceRange(Path[0].second, Path[I].second) 1867 << FixItHint::CreateReplacement(SourceRange(Path[0].second), 1868 PrivateModule); 1869 getDiagnostics().Report(Sub->DefinitionLoc, 1870 diag::note_private_top_level_defined); 1871 } 1872 } 1873 } 1874 1875 if (!Sub) { 1876 // Attempt to perform typo correction to find a module name that works. 1877 SmallVector<StringRef, 2> Best; 1878 unsigned BestEditDistance = (std::numeric_limits<unsigned>::max)(); 1879 1880 for (clang::Module::submodule_iterator J = Module->submodule_begin(), 1881 JEnd = Module->submodule_end(); 1882 J != JEnd; ++J) { 1883 unsigned ED = Name.edit_distance((*J)->Name, 1884 /*AllowReplacements=*/true, 1885 BestEditDistance); 1886 if (ED <= BestEditDistance) { 1887 if (ED < BestEditDistance) { 1888 Best.clear(); 1889 BestEditDistance = ED; 1890 } 1891 1892 Best.push_back((*J)->Name); 1893 } 1894 } 1895 1896 // If there was a clear winner, user it. 1897 if (Best.size() == 1) { 1898 getDiagnostics().Report(Path[I].second, 1899 diag::err_no_submodule_suggest) 1900 << Path[I].first << Module->getFullModuleName() << Best[0] 1901 << SourceRange(Path[0].second, Path[I-1].second) 1902 << FixItHint::CreateReplacement(SourceRange(Path[I].second), 1903 Best[0]); 1904 1905 Sub = Module->findSubmodule(Best[0]); 1906 } 1907 } 1908 1909 if (!Sub) { 1910 // No submodule by this name. Complain, and don't look for further 1911 // submodules. 1912 getDiagnostics().Report(Path[I].second, diag::err_no_submodule) 1913 << Path[I].first << Module->getFullModuleName() 1914 << SourceRange(Path[0].second, Path[I-1].second); 1915 break; 1916 } 1917 1918 Module = Sub; 1919 } 1920 } 1921 1922 // Make the named module visible, if it's not already part of the module 1923 // we are parsing. 1924 if (ModuleName != getLangOpts().CurrentModule) { 1925 if (!Module->IsFromModuleFile && !MapPrivateSubModToTopLevel) { 1926 // We have an umbrella header or directory that doesn't actually include 1927 // all of the headers within the directory it covers. Complain about 1928 // this missing submodule and recover by forgetting that we ever saw 1929 // this submodule. 1930 // FIXME: Should we detect this at module load time? It seems fairly 1931 // expensive (and rare). 1932 getDiagnostics().Report(ImportLoc, diag::warn_missing_submodule) 1933 << Module->getFullModuleName() 1934 << SourceRange(Path.front().second, Path.back().second); 1935 1936 return ModuleLoadResult::MissingExpected; 1937 } 1938 1939 // Check whether this module is available. 1940 if (Preprocessor::checkModuleIsAvailable(getLangOpts(), getTarget(), 1941 getDiagnostics(), Module)) { 1942 getDiagnostics().Report(ImportLoc, diag::note_module_import_here) 1943 << SourceRange(Path.front().second, Path.back().second); 1944 LastModuleImportLoc = ImportLoc; 1945 LastModuleImportResult = ModuleLoadResult(); 1946 return ModuleLoadResult(); 1947 } 1948 1949 ModuleManager->makeModuleVisible(Module, Visibility, ImportLoc); 1950 } 1951 1952 // Check for any configuration macros that have changed. 1953 clang::Module *TopModule = Module->getTopLevelModule(); 1954 for (unsigned I = 0, N = TopModule->ConfigMacros.size(); I != N; ++I) { 1955 checkConfigMacro(getPreprocessor(), TopModule->ConfigMacros[I], 1956 Module, ImportLoc); 1957 } 1958 1959 // Resolve any remaining module using export_as for this one. 1960 getPreprocessor() 1961 .getHeaderSearchInfo() 1962 .getModuleMap() 1963 .resolveLinkAsDependencies(TopModule); 1964 1965 LastModuleImportLoc = ImportLoc; 1966 LastModuleImportResult = ModuleLoadResult(Module); 1967 return LastModuleImportResult; 1968 } 1969 1970 void CompilerInstance::loadModuleFromSource(SourceLocation ImportLoc, 1971 StringRef ModuleName, 1972 StringRef Source) { 1973 // Avoid creating filenames with special characters. 1974 SmallString<128> CleanModuleName(ModuleName); 1975 for (auto &C : CleanModuleName) 1976 if (!isAlphanumeric(C)) 1977 C = '_'; 1978 1979 // FIXME: Using a randomized filename here means that our intermediate .pcm 1980 // output is nondeterministic (as .pcm files refer to each other by name). 1981 // Can this affect the output in any way? 1982 SmallString<128> ModuleFileName; 1983 if (std::error_code EC = llvm::sys::fs::createTemporaryFile( 1984 CleanModuleName, "pcm", ModuleFileName)) { 1985 getDiagnostics().Report(ImportLoc, diag::err_fe_unable_to_open_output) 1986 << ModuleFileName << EC.message(); 1987 return; 1988 } 1989 std::string ModuleMapFileName = (CleanModuleName + ".map").str(); 1990 1991 FrontendInputFile Input( 1992 ModuleMapFileName, 1993 InputKind(getLanguageFromOptions(*Invocation->getLangOpts()), 1994 InputKind::ModuleMap, /*Preprocessed*/true)); 1995 1996 std::string NullTerminatedSource(Source.str()); 1997 1998 auto PreBuildStep = [&](CompilerInstance &Other) { 1999 // Create a virtual file containing our desired source. 2000 // FIXME: We shouldn't need to do this. 2001 const FileEntry *ModuleMapFile = Other.getFileManager().getVirtualFile( 2002 ModuleMapFileName, NullTerminatedSource.size(), 0); 2003 Other.getSourceManager().overrideFileContents( 2004 ModuleMapFile, 2005 llvm::MemoryBuffer::getMemBuffer(NullTerminatedSource.c_str())); 2006 2007 Other.BuiltModules = std::move(BuiltModules); 2008 Other.DeleteBuiltModules = false; 2009 }; 2010 2011 auto PostBuildStep = [this](CompilerInstance &Other) { 2012 BuiltModules = std::move(Other.BuiltModules); 2013 }; 2014 2015 // Build the module, inheriting any modules that we've built locally. 2016 if (compileModuleImpl(*this, ImportLoc, ModuleName, Input, StringRef(), 2017 ModuleFileName, PreBuildStep, PostBuildStep)) { 2018 BuiltModules[ModuleName] = ModuleFileName.str(); 2019 llvm::sys::RemoveFileOnSignal(ModuleFileName); 2020 } 2021 } 2022 2023 void CompilerInstance::makeModuleVisible(Module *Mod, 2024 Module::NameVisibilityKind Visibility, 2025 SourceLocation ImportLoc) { 2026 if (!ModuleManager) 2027 createModuleManager(); 2028 if (!ModuleManager) 2029 return; 2030 2031 ModuleManager->makeModuleVisible(Mod, Visibility, ImportLoc); 2032 } 2033 2034 GlobalModuleIndex *CompilerInstance::loadGlobalModuleIndex( 2035 SourceLocation TriggerLoc) { 2036 if (getPreprocessor().getHeaderSearchInfo().getModuleCachePath().empty()) 2037 return nullptr; 2038 if (!ModuleManager) 2039 createModuleManager(); 2040 // Can't do anything if we don't have the module manager. 2041 if (!ModuleManager) 2042 return nullptr; 2043 // Get an existing global index. This loads it if not already 2044 // loaded. 2045 ModuleManager->loadGlobalIndex(); 2046 GlobalModuleIndex *GlobalIndex = ModuleManager->getGlobalIndex(); 2047 // If the global index doesn't exist, create it. 2048 if (!GlobalIndex && shouldBuildGlobalModuleIndex() && hasFileManager() && 2049 hasPreprocessor()) { 2050 llvm::sys::fs::create_directories( 2051 getPreprocessor().getHeaderSearchInfo().getModuleCachePath()); 2052 if (llvm::Error Err = GlobalModuleIndex::writeIndex( 2053 getFileManager(), getPCHContainerReader(), 2054 getPreprocessor().getHeaderSearchInfo().getModuleCachePath())) { 2055 // FIXME this drops the error on the floor. This code is only used for 2056 // typo correction and drops more than just this one source of errors 2057 // (such as the directory creation failure above). It should handle the 2058 // error. 2059 consumeError(std::move(Err)); 2060 return nullptr; 2061 } 2062 ModuleManager->resetForReload(); 2063 ModuleManager->loadGlobalIndex(); 2064 GlobalIndex = ModuleManager->getGlobalIndex(); 2065 } 2066 // For finding modules needing to be imported for fixit messages, 2067 // we need to make the global index cover all modules, so we do that here. 2068 if (!HaveFullGlobalModuleIndex && GlobalIndex && !buildingModule()) { 2069 ModuleMap &MMap = getPreprocessor().getHeaderSearchInfo().getModuleMap(); 2070 bool RecreateIndex = false; 2071 for (ModuleMap::module_iterator I = MMap.module_begin(), 2072 E = MMap.module_end(); I != E; ++I) { 2073 Module *TheModule = I->second; 2074 const FileEntry *Entry = TheModule->getASTFile(); 2075 if (!Entry) { 2076 SmallVector<std::pair<IdentifierInfo *, SourceLocation>, 2> Path; 2077 Path.push_back(std::make_pair( 2078 getPreprocessor().getIdentifierInfo(TheModule->Name), TriggerLoc)); 2079 std::reverse(Path.begin(), Path.end()); 2080 // Load a module as hidden. This also adds it to the global index. 2081 loadModule(TheModule->DefinitionLoc, Path, Module::Hidden, false); 2082 RecreateIndex = true; 2083 } 2084 } 2085 if (RecreateIndex) { 2086 if (llvm::Error Err = GlobalModuleIndex::writeIndex( 2087 getFileManager(), getPCHContainerReader(), 2088 getPreprocessor().getHeaderSearchInfo().getModuleCachePath())) { 2089 // FIXME As above, this drops the error on the floor. 2090 consumeError(std::move(Err)); 2091 return nullptr; 2092 } 2093 ModuleManager->resetForReload(); 2094 ModuleManager->loadGlobalIndex(); 2095 GlobalIndex = ModuleManager->getGlobalIndex(); 2096 } 2097 HaveFullGlobalModuleIndex = true; 2098 } 2099 return GlobalIndex; 2100 } 2101 2102 // Check global module index for missing imports. 2103 bool 2104 CompilerInstance::lookupMissingImports(StringRef Name, 2105 SourceLocation TriggerLoc) { 2106 // Look for the symbol in non-imported modules, but only if an error 2107 // actually occurred. 2108 if (!buildingModule()) { 2109 // Load global module index, or retrieve a previously loaded one. 2110 GlobalModuleIndex *GlobalIndex = loadGlobalModuleIndex( 2111 TriggerLoc); 2112 2113 // Only if we have a global index. 2114 if (GlobalIndex) { 2115 GlobalModuleIndex::HitSet FoundModules; 2116 2117 // Find the modules that reference the identifier. 2118 // Note that this only finds top-level modules. 2119 // We'll let diagnoseTypo find the actual declaration module. 2120 if (GlobalIndex->lookupIdentifier(Name, FoundModules)) 2121 return true; 2122 } 2123 } 2124 2125 return false; 2126 } 2127 void CompilerInstance::resetAndLeakSema() { llvm::BuryPointer(takeSema()); } 2128 2129 void CompilerInstance::setExternalSemaSource( 2130 IntrusiveRefCntPtr<ExternalSemaSource> ESS) { 2131 ExternalSemaSrc = std::move(ESS); 2132 } 2133