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