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