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