clang 24.0.0git
CompilerInstance.cpp
Go to the documentation of this file.
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
12#include "clang/AST/Decl.h"
21#include "clang/Basic/Stack.h"
23#include "clang/Basic/Version.h"
24#include "clang/Config/config.h"
41#include "clang/Sema/Sema.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)
85 ThePCHContainerOperations(std::move(PCHContainerOps)) {
86 assert(this->Invocation && "Invocation must not be null");
87}
88
90 assert(OutputFiles.empty() && "Still output files in flight?");
91}
92
94 return (BuildGlobalModuleIndex ||
95 (TheASTReader && TheASTReader->isGlobalIndexUnavailable() &&
96 getFrontendOpts().GenerateGlobalModuleIndex)) &&
97 !DisableGeneratingGlobalModuleIndex;
98}
99
104
106 OwnedVerboseOutputStream.reset();
107 VerboseOutputStream = &Value;
108}
109
110void CompilerInstance::setVerboseOutputStream(std::unique_ptr<raw_ostream> Value) {
111 OwnedVerboseOutputStream.swap(Value);
112 VerboseOutputStream = OwnedVerboseOutputStream.get();
113}
114
117
119 // Create the target instance.
122 if (!hasTarget())
123 return false;
124
125 if (getLangOpts().SYCLIsDevice && !getTarget().getTriple().isGPU()) {
126 getDiagnostics().Report(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(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();
144 }
145
146 if (!getTarget().hasStrictFP() && !getLangOpts().ExpStrictFP) {
147 if (getLangOpts().RoundingMath) {
148 getDiagnostics().Report(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(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(getLangOpts(), 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.
169
170 if (auto *Aux = getAuxTarget())
171 getTarget().setAuxTarget(Aux);
172
173 return true;
174}
175
177 assert(Value == nullptr ||
178 getVirtualFileSystemPtr() == Value->getVirtualFileSystemPtr());
179 FileMgr = std::move(Value);
180}
181
186
187void CompilerInstance::setPreprocessor(std::shared_ptr<Preprocessor> Value) {
188 PP = std::move(Value);
189}
190
192 assert(Context && "Compiler instance has no AST context!");
193 return Context;
194}
195
198 Context = std::move(Value);
199
200 if (Context && Consumer)
202}
203
205 TheSema.reset(S);
206}
207
208void CompilerInstance::setASTConsumer(std::unique_ptr<ASTConsumer> Value) {
209 Consumer = std::move(Value);
210
211 if (Context && Consumer)
213}
214
218
219std::unique_ptr<Sema> CompilerInstance::takeSema() {
220 return std::move(TheSema);
221}
222
224 return TheASTReader;
225}
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>
234 return ModuleDepCollector;
235}
236
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(HeaderMapFileNames);
246 for (auto &Name : HeaderMapFileNames)
247 MDC->addFile(Name);
248}
249
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;
258 auto PCHDir = FileMgr.getOptionalDirectoryRef(PCHInclude);
259 if (!PCHDir) {
260 MDC->addFile(PCHInclude);
261 return;
262 }
263
264 std::error_code EC;
265 SmallString<128> DirNative;
266 llvm::sys::path::native(PCHDir->getName(), DirNative);
267 llvm::vfs::FileSystem &FS = FileMgr.getVirtualFileSystem();
269 for (llvm::vfs::directory_iterator Dir = FS.dir_begin(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.
275 Dir->path(), FileMgr, CI.getModuleCache(),
277 /*FindModuleFileExtensions=*/false, Validator,
278 /*ValidateDiagnosticOptions=*/false))
279 MDC->addFile(Dir->path());
280 }
281}
282
284 std::shared_ptr<ModuleDependencyCollector> MDC) {
285 // Collect all VFS found.
287 CI.getVirtualFileSystem().visit([&](llvm::vfs::FileSystem &VFS) {
288 if (auto *RedirectingVFS = dyn_cast<llvm::vfs::RedirectingFileSystem>(&VFS))
289 llvm::vfs::collectVFSEntries(*RedirectingVFS, VFSEntries);
290 });
291
292 for (auto &E : VFSEntries)
293 MDC->addFile(E.VPath, E.RPath);
294}
295
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
309 std::move(BaseFS));
310 // FIXME: Should this go into createVFSFromCompilerInvocation?
311 if (getFrontendOpts().ShowStats)
312 VFS =
313 llvm::makeIntrusiveRefCnt<llvm::vfs::TracingFileSystem>(std::move(VFS));
314}
315
316// Diagnostics
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 DiagOpts.DiagnosticLogFile, EC,
327 llvm::sys::fs::OF_Append | llvm::sys::fs::OF_TextWithCRLF);
328 if (EC) {
329 Diags.Report(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>(*OS, DiagOpts,
340 std::move(StreamOwner));
341 if (CodeGenOpts)
342 Logger->setDwarfDebugFlags(CodeGenOpts->DwarfDebugFlags);
343 if (Diags.ownsClient()) {
344 Diags.setClient(
345 new ChainedDiagnosticConsumer(Diags.takeClient(), std::move(Logger)));
346 } else {
347 Diags.setClient(
348 new ChainedDiagnosticConsumer(Diags.getClient(), std::move(Logger)));
349 }
350}
351
353 DiagnosticsEngine &Diags,
354 StringRef OutputFile) {
355 auto SerializedConsumer =
356 clang::serialized_diags::create(OutputFile, DiagOpts);
357
358 if (Diags.ownsClient()) {
360 Diags.takeClient(), std::move(SerializedConsumer)));
361 } else {
363 Diags.getClient(), std::move(SerializedConsumer)));
364 }
365}
366
368 bool ShouldOwnClient) {
370 Client, ShouldOwnClient, &getCodeGenOpts());
371}
372
374 llvm::vfs::FileSystem &VFS, DiagnosticOptions &Opts,
375 DiagnosticConsumer *Client, bool ShouldOwnClient,
376 const CodeGenOptions *CodeGenOpts) {
377 auto Diags = llvm::makeIntrusiveRefCnt<DiagnosticsEngine>(
378 DiagnosticIDs::create(), Opts);
379
380 // Create the diagnostic client for reporting errors or for
381 // implementing -verify.
382 if (Client) {
383 Diags->setClient(Client, ShouldOwnClient);
384 } else if (Opts.getFormat() == DiagnosticOptions::SARIF) {
385 Diags->setClient(new SARIFDiagnosticPrinter(llvm::errs(), Opts));
386 } else
387 Diags->setClient(new TextDiagnosticPrinter(llvm::errs(), Opts));
388
389 // Chain in -verify checker, if requested.
390 if (Opts.VerifyDiagnostics)
391 Diags->setClient(new VerifyDiagnosticConsumer(*Diags));
392
393 // Chain in -diagnostic-log-file dumper, if requested.
394 if (!Opts.DiagnosticLogFile.empty())
395 SetUpDiagnosticLog(Opts, CodeGenOpts, *Diags);
396
397 if (!Opts.DiagnosticSerializationFile.empty())
399
400 // Configure our handling of diagnostics.
401 ProcessWarningOptions(*Diags, Opts, VFS);
402
403 return Diags;
404}
405
406// File Manager
407
409 assert(VFS && "CompilerInstance needs a VFS for creating FileManager");
410 FileMgr = llvm::makeIntrusiveRefCnt<FileManager>(getFileSystemOpts(), VFS);
411}
412
413// Source Manager
414
416 assert(Diagnostics && "DiagnosticsEngine needed for creating SourceManager");
417 assert(FileMgr && "FileManager needed for creating SourceManager");
418 SourceMgr = llvm::makeIntrusiveRefCnt<SourceManager>(getDiagnostics(),
420}
421
422// Initialize the remapping of files to alternative contents, e.g.,
423// those specified through other files.
425 SourceManager &SourceMgr,
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(RB.first, RB.second->getBufferSize(), 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(FromFile, RB.second->getMemBufferRef());
440 else
441 SourceMgr.overrideFileContents(
442 FromFile, 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(RF.second);
449 if (!ToFile) {
450 Diags.Report(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(RF.first, ToFile->getSize(), 0);
457
458 // Override the contents of the "from" file with the contents of
459 // the "to" file.
460 SourceMgr.overrideFileContents(FromFile, *ToFile);
461 }
462
463 SourceMgr.setOverridenFilesKeepOriginalName(
465}
466
467// Preprocessor
468
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 =
479 PP = std::make_shared<Preprocessor>(Invocation->getPreprocessorOpts(),
481 getSourceManager(), *HeaderInfo, *this,
482 /*IdentifierInfoLookup=*/nullptr,
483 /*OwnsHeaderSearch=*/true, TUKind);
485 PP->Initialize(getTarget(), getAuxTarget());
486
487 if (PPOpts.DetailedRecord)
488 PP->createPreprocessingRecord();
489
490 // Apply remappings to the source manager.
491 InitializeFileRemapping(PP->getDiagnostics(), PP->getSourceManager(),
492 PP->getFileManager(), PPOpts);
493
494 // Predefine macros and configure the preprocessor.
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(PP->getHeaderSearchInfo(), getHeaderSearchOpts(),
507 PP->getLangOpts(), *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 getInvocation().computeContextHash());
517 }
518
519 // Handle generating dependencies, if requested.
521 if (!DepOpts.OutputFile.empty())
522 addDependencyCollector(std::make_shared<DependencyFileGenerator>(DepOpts));
523 if (!DepOpts.DOTOutputFile.empty())
525 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>(
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(ModuleDepCollector);
538 collectHeaderMaps(PP->getHeaderSearchInfo(), ModuleDepCollector);
539 collectIncludePCH(*this, ModuleDepCollector);
540 collectVFSEntries(*this, ModuleDepCollector);
541 }
542
543 // Modules need an output manager.
544 if (!hasOutputManager())
546
547 for (auto &Listener : DependencyCollectors)
548 Listener->attachToPreprocessor(*PP);
549
550 // Handle generating header include information, if requested.
551 if (DepOpts.ShowHeaderIncludes)
552 AttachHeaderIncludeGen(*PP, DepOpts);
553 if (!DepOpts.HeaderIncludeOutputFile.empty()) {
554 StringRef OutputPath = DepOpts.HeaderIncludeOutputFile;
555 if (OutputPath == "-")
556 OutputPath = "";
557 AttachHeaderIncludeGen(*PP, DepOpts,
558 /*ShowAllHeaders=*/true, OutputPath,
559 /*ShowDepth=*/false);
560 }
561
563 AttachHeaderIncludeGen(*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(PP->getTextEncoding(),
572 getLangOpts()))
573 PP->getDiagnostics().Report(clang::diag::err_fe_text_encoding_config)
574 << PP->getTextEncoding().getLiteralEncoding();
575}
576
577// ASTContext
578
581 auto Context = llvm::makeIntrusiveRefCnt<ASTContext>(
582 getLangOpts(), PP.getSourceManager(), PP.getIdentifierTable(),
583 PP.getSelectorTable(), PP.getBuiltinInfo(), PP.TUKind);
584 Context->InitBuiltinTypes(getTarget(), 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;
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(ModuleName.str());
604 }
605
606 void registerAll() {
607 ModuleMap &MM = PP.getHeaderSearchInfo().getModuleMap();
608 for (const std::string &LoadedModule : LoadedModules)
609 MM.cacheModuleLoad(*PP.getIdentifierInfo(LoadedModule),
610 MM.findOrLoadModule(LoadedModule));
611 LoadedModules.clear();
612 }
613
614 void markAllUnavailable() {
615 for (const std::string &LoadedModule : LoadedModules) {
617 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(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(Stack, SubmodulesRange);
630 }
631 }
632 }
633 LoadedModules.clear();
634 }
635};
636} // namespace
637
639 StringRef Path, DisableValidationForModuleKind DisableValidation,
640 bool AllowPCHWithCompilerErrors, void *DeserializationListener,
641 bool OwnDeserializationListener) {
643 TheASTReader = createPCHExternalASTSource(
644 Path, getHeaderSearchOpts().Sysroot, DisableValidation,
645 AllowPCHWithCompilerErrors, getPreprocessor(), getModuleCache(),
647 getFrontendOpts().ModuleFileExtensions, DependencyCollectors,
648 DeserializationListener, OwnDeserializationListener, Preamble,
649 getFrontendOpts().UseGlobalModuleIndex);
650}
651
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 PP, ModCache, &Context, PCHContainerRdr, CodeGenOpts, Extensions,
667 Sysroot.empty() ? "" : Sysroot.data(), DisableValidation,
668 AllowPCHWithCompilerErrors, /*AllowConfigurationMismatch*/ false,
671 HSOpts.ValidateASTInputFilesContent, 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 static_cast<ASTDeserializationListener *>(DeserializationListener),
679 /*TakeOwnership=*/OwnDeserializationListener);
680
681 for (auto &Listener : DependencyCollectors)
682 Listener->attachToASTReader(*Reader);
683
684 auto Listener = std::make_unique<ReadModuleNames>(PP);
685 auto &ListenerRef = *Listener;
686 ASTReader::ListenerScope ReadModuleNamesListener(*Reader,
687 std::move(Listener));
688
689 switch (Reader->ReadAST(ModuleFileName::makeExplicit(Path),
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
701 // Unrecoverable failure: don't even try to process the input file.
702 break;
703
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
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(diag::err_fe_invalid_code_complete_file)
729 << Filename;
730 return true;
731 }
732
733 // Truncate the named file at the given line/column.
735 return false;
736}
737
740 if (!CompletionConsumer) {
742 getPreprocessor(), Loc.FileName, Loc.Line, Loc.Column,
743 getFrontendOpts().CodeCompleteOpts, llvm::outs()));
744 return;
746 Loc.Line, Loc.Column)) {
748 return;
749 }
750}
751
753 timerGroup.reset(new llvm::TimerGroup("clang", "Clang time report"));
754 FrontendTimer.reset(new llvm::Timer("frontend", "Front end", *timerGroup));
755}
756
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
772 CodeCompleteConsumer *CompletionConsumer) {
773 TheSema.reset(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(ExternalSemaSrc);
782 ExternalSemaSrc->InitializeSema(*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 currentModule, getLangOpts().APINotesModules,
790 getAPINotesOpts().ModuleSearchPaths);
791 }
792}
793
794// Output Files
795
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 O.keep(),
803 [&](const llvm::vfs::TempFileOutputError &E) {
804 getDiagnostics().Report(diag::err_unable_to_rename_temp)
805 << E.getTempPath() << E.getOutputPath()
806 << E.convertToErrorCode().message();
807 },
808 [&](const llvm::vfs::OutputError &E) {
809 getDiagnostics().Report(diag::err_fe_unable_to_open_output)
810 << E.getOutputPath() << E.convertToErrorCode().message();
811 },
812 [&](const llvm::ErrorInfoBase &EIB) { // Handle any remaining error
813 getDiagnostics().Report(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(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(InFile);
836 llvm::sys::path::replace_extension(*PathStorage, Extension);
837 OutputPath = *PathStorage;
838 }
839 }
840
841 return createOutputFile(OutputPath, Binary, RemoveFileOnSignal,
842 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
854 assert(!OutputMgr && "Already has an output manager");
855 OutputMgr = std::move(NewOutputs);
856}
857
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
869 if (!hasOutputManager())
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) {
878 createOutputFileImpl(OutputPath, Binary, RemoveFileOnSignal, UseTemporary,
879 CreateMissingDirectories, SetOnlyIfDifferent);
880 if (OS)
881 return std::move(*OS);
882 getDiagnostics().Report(diag::err_fe_unable_to_open_output)
883 << OutputPath << errorToErrorCode(OS.takeError()).message();
884 return nullptr;
885}
886
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(OutputPath)) {
900 assert(hasFileManager() &&
901 "File Manager is required to fix up relative path.\n");
902
903 AbsPath.emplace(OutputPath);
905 OutputPath = *AbsPath;
906 }
907
908 using namespace llvm::vfs;
910 OutputPath,
911 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([](llvm::Error E) { consumeError(std::move(E)); });
921 OutputFiles.push_back(std::move(*O));
922 return OutputFiles.back().createProxy();
923}
924
925// Initialization Utilities
926
931
932// static
934 DiagnosticsEngine &Diags,
935 FileManager &FileMgr,
936 SourceManager &SourceMgr) {
942
943 if (Input.isBuffer()) {
944 SourceMgr.setMainFileID(SourceMgr.createFileID(Input.getBuffer(), 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(InputFile, /*OpenFile=*/true);
956 if (!FileOrErr) {
957 auto EC = llvm::errorToErrorCode(FileOrErr.takeError());
958 if (InputFile != "-")
959 Diags.Report(diag::err_fe_error_reading) << InputFile << EC.message();
960 else
961 Diags.Report(diag::err_fe_error_reading_stdin) << EC.message();
962 return false;
963 }
964
965 SourceMgr.setMainFileID(
966 SourceMgr.createFileID(*FileOrErr, SourceLocation(), 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) {
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
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.
1004
1005 raw_ostream &OS = getVerboseOutputStream();
1006
1007 if (!Act.PrepareToExecute(*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)
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(false);
1025
1026 // Sort vectors containing toc data and no toc data variables to facilitate
1027 // binary search later.
1028 llvm::sort(getCodeGenOpts().TocDataVarsUserSpecified);
1029 llvm::sort(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())
1036
1037 ModuleImportResults.clear();
1038
1039 if (Act.BeginSourceFile(*this, FIF)) {
1040 if (llvm::Error Err = Act.Execute()) {
1041 consumeError(std::move(Err)); // FIXME this drops errors on the floor.
1042 }
1043 Act.EndSourceFile();
1044 }
1045 }
1046
1048
1049 if (getFrontendOpts().ShowStats) {
1050 if (hasFileManager()) {
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>(StatsFile, EC, FileFlags);
1064 if (EC) {
1065 getDiagnostics().Report(diag::warn_fe_unable_to_open_stats_file)
1066 << StatsFile << EC.message();
1067 } else {
1068 llvm::PrintStatisticsJSON(*StatS);
1069 }
1070 }
1071
1072 return !getDiagnostics().getClient()->getNumErrors();
1073}
1074
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
1108 // Load any requested plugins.
1109 for (const std::string &Path : getFrontendOpts().Plugins) {
1110 std::string Error;
1111 if (llvm::sys::DynamicLibrary::LoadLibraryPermanently(Path.c_str(), &Error))
1112 getDiagnostics().Report(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(Path)) {
1119 PassPlugins.emplace_back(std::make_unique<llvm::PassPlugin>(*PassPlugin));
1120 } else {
1121 getDiagnostics().Report(diag::err_fe_unable_to_load_plugin)
1122 << Path << toString(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) {
1132 getFrontendOpts().ActionName = Plugin.getName().str();
1133 break;
1134 }
1135 }
1136}
1137
1138/// Determine the appropriate source input kind based on language
1139/// options.
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>(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(PPOpts.Macros,
1167 [&HSOpts](const std::pair<std::string, bool> &def) {
1168 StringRef MacroDef = def.first;
1169 return HSOpts.ModulesIgnoreMacros.contains(
1170 llvm::CachedHashString(MacroDef.split('=').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(HSOpts.UserEntries,
1178 [&HSOpts](const HeaderSearchOptions::Entry &E) {
1179 return HSOpts.ModulesIgnoreSearchPaths.contains(
1180 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 =
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 std::move(Invocation), getPCHContainerOperations(), 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(&ThreadSafeConfig->getDiagConsumer(),
1241 /*ShouldOwnClient=*/false);
1242 } else {
1243 Instance.createDiagnostics(
1244 new ForwardingDiagnosticConsumer(getDiagnosticClient()),
1245 /*ShouldOwnClient=*/true);
1246 }
1247 if (llvm::is_contained(DiagOpts.SystemHeaderWarningsModules, 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, 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(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(ModuleFileName)) {
1311 getDiagnostics().Report(ImportLoc, diag::err_module_rebuild_finalized)
1312 << ModuleName;
1313 return nullptr;
1314 }
1315
1316 getDiagnostics().Report(ImportLoc, 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 [&]() {
1327 << "module_compile_thread: parent=" << ParentTID
1328 << " pcm_compile: " << ModuleFileName;
1329
1330 auto OS = std::make_unique<llvm::raw_svector_ostream>(Buffer);
1331
1332 std::unique_ptr<FrontendAction> Action =
1333 std::make_unique<GenerateModuleFromModuleMapAction>(std::move(OS));
1334
1335 if (auto WrapGenModuleAction = Instance.getGenModuleActionWrapper())
1336 Action = WrapGenModuleAction(Instance.getFrontendOpts(),
1337 std::move(Action));
1338
1339 Instance.ExecuteAction(*Action);
1340 },
1342
1343 getDiagnostics().Report(ImportLoc, diag::remark_module_build_done)
1344 << ModuleName;
1345
1346 // Propagate the statistics to the parent FileManager.
1347 if (!getFrontendOpts().ModulesShareFileManager)
1348 getFileManager().AddStats(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) {
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 std::move(Buffer), Instance.getFrontendOpts().OutputFile);
1380}
1381
1384 StringRef Filename = llvm::sys::path::filename(File.getName());
1385 SmallString<128> PublicFilename(File.getDir().getName());
1386 if (Filename == "module_private.map")
1387 llvm::sys::path::append(PublicFilename, "module.map");
1388 else if (Filename == "module.private.modulemap")
1389 llvm::sys::path::append(PublicFilename, "module.modulemap");
1390 else
1391 return std::nullopt;
1392 return FileMgr.getOptionalFileRef(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
1401
1402 // Get or create the module map that we'll use to build this module.
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(ModuleMapFID);
1413 while (Loc.isValid() && isModuleMap(SourceMgr.getFileCharacteristic(Loc))) {
1414 ModuleMapFID = SourceMgr.getFileID(Loc);
1415 Loc = SourceMgr.getIncludeLoc(ModuleMapFID);
1416 }
1417
1418 OptionalFileEntryRef ModuleMapFile =
1419 SourceMgr.getFileEntryRefForID(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(*ModuleMapFile, 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(ModuleMapFID);
1436 bool IsSystem = isSystem(SLoc.getFile().getFileCharacteristic());
1437
1438 // Use the module map where this module resides.
1439 return cloneForModuleCompileImpl(
1440 ImportLoc, ModuleName,
1441 FrontendInputFile(ModuleMapFilePath, IK, IsSystem),
1443 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(FakeModuleMapFile, "__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 FrontendInputFile(FakeModuleMapFile, IK, +Module->IsSystem),
1461 std::move(ThreadSafeConfig));
1462
1463 std::unique_ptr<llvm::MemoryBuffer> ModuleMapBuffer =
1464 llvm::MemoryBuffer::getMemBufferCopy(InferredModuleMapContent);
1465 FileEntryRef ModuleMapFile = Instance->getFileManager().getVirtualFileRef(
1466 FakeModuleMapFile, InferredModuleMapContent.size(), 0);
1467 Instance->getSourceManager().overrideFileContents(ModuleMapFile,
1468 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,
1478 Module *Module,
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(
1491 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(ModuleNameLoc, 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,
1521 std::unique_ptr<llvm::MemoryBuffer> Buffer;
1522
1523 {
1524 auto Instance = ImportingInstance.cloneForModuleCompile(
1526
1527 Buffer = ImportingInstance.compileModule(ModuleNameLoc,
1529 ModuleFileName, *Instance);
1530
1531 if (!Buffer) {
1532 ImportingInstance.getDiagnostics().Report(ModuleNameLoc,
1533 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 ModuleFileName, *Buffer, Size, ModTime);
1543 if (EC) {
1544 ImportingInstance.getDiagnostics().Report(ModuleNameLoc,
1545 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()
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);
1564 // FIXME: Avoid the copy here by having InMemoryModuleCache accept both the
1565 // owning buffer and the StringRef.
1566 Buffer = llvm::MemoryBuffer::getMemBufferCopy(ExtractedBuffer);
1567
1569 ModuleFileName, std::move(Buffer), Size, ModTime);
1570
1571 return true;
1572}
1573
1574/// The result of `compileModuleBehindLockOrRead()`.
1576 /// We failed to compile the module.
1578 /// We successfully compiled the module and we still need to read it.
1580 /// We failed to read the module file compiled by another instance.
1582 /// We read a module file compiled by another instance.
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.
1591 SourceLocation ImportLoc,
1594 DiagnosticsEngine &Diags = ImportingInstance.getDiagnostics();
1595
1596 Diags.Report(ModuleNameLoc, diag::remark_module_lock)
1597 << ModuleFileName << Module->Name;
1598
1599 auto &ModuleCache = ImportingInstance.getModuleCache();
1600
1601 while (true) {
1602 auto Lock = ModuleCache.getLock(ModuleFileName);
1603 bool Owned;
1604 if (llvm::Error Err = Lock->tryLock().moveInto(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(ModuleNameLoc, diag::remark_module_lock_failure)
1609 << Module->Name << toString(std::move(Err));
1610 if (!compileModuleImpl(ImportingInstance, ImportLoc, ModuleNameLoc,
1614 }
1615 if (Owned) {
1616 // We're responsible for building the module ourselves.
1617 if (!compileModuleImpl(ImportingInstance, ImportLoc, ModuleNameLoc,
1621 }
1622
1623 // Someone else is responsible for building the module. Wait for them to
1624 // finish.
1625 unsigned Timeout =
1627 switch (Lock->waitForUnlockFor(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(ModuleNameLoc, 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, &Missing))
1649 if (!OutOfDate && !Missing)
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,
1666 Module *Module,
1668 if (ImportingInstance.getInvocation()
1672 ImportingInstance, ImportLoc, ModuleNameLoc, Module, ModuleFileName)) {
1675 return false;
1677 return true;
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,
1686 return false;
1687 }
1688
1689 return readASTAfterCompileModule(ImportingInstance, ImportLoc, ModuleNameLoc,
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(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(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(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(MDLoc))
1718 continue;
1719 if (auto *DMD = dyn_cast<DefMacroDirective>(MD))
1720 CmdLineDefinition = DMD->getMacroInfo();
1721 break;
1722 }
1723
1724 auto *CurrentDefinition = PP.getMacroInfo(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(ImportLoc, 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(LatestDef.getUndefLocation(), 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(ImportLoc, diag::warn_module_config_macro_undef)
1742 << false << ConfigMacro << Mod->getFullModuleName();
1743 PP.Diag(CurrentDefinition->getDefinitionLoc(),
1744 diag::note_module_def_undef_here)
1745 << false;
1746 } else if (!CurrentDefinition->isIdenticalTo(*CmdLineDefinition, PP,
1747 /*Syntactically=*/true)) {
1748 // The macro definitions differ.
1749 PP.Diag(ImportLoc, diag::warn_module_config_macro_undef)
1750 << false << ConfigMacro << Mod->getFullModuleName();
1751 PP.Diag(CurrentDefinition->getDefinitionLoc(),
1752 diag::note_module_def_undef_here)
1753 << false;
1754 }
1755}
1756
1758 SourceLocation ImportLoc) {
1759 clang::Module *TopModule = M->getTopLevelModule();
1760 for (const StringRef ConMacro : TopModule->ConfigMacros) {
1761 checkConfigMacro(PP, ConMacro, M, ImportLoc);
1762 }
1763}
1764
1766 if (TheASTReader)
1767 return;
1768
1769 if (!hasASTContext())
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() &&
1776 .getHeaderSearchInfo()
1777 .getSpecificModuleCachePath()
1778 .empty())
1779 ModCache->maybePrune(getHeaderSearchOpts().ModuleCachePath,
1780 getHeaderSearchOpts().ModuleCachePruneInterval,
1781 getHeaderSearchOpts().ModuleCachePruneAfter);
1782
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>("reading_modules",
1791 "Reading modules", *timerGroup);
1792 TheASTReader = llvm::makeIntrusiveRefCnt<ASTReader>(
1795 getFrontendOpts().ModuleFileExtensions,
1796 Sysroot.empty() ? "" : Sysroot.c_str(),
1798 /*AllowASTWithCompilerErrors=*/FEOpts.AllowPCMWithCompilerErrors,
1799 /*AllowConfigurationMismatch=*/false,
1803 +getFrontendOpts().UseGlobalModuleIndex, std::move(ReadTimer));
1804 if (hasASTConsumer()) {
1805 TheASTReader->setDeserializationListener(
1806 getASTConsumer().GetASTDeserializationListener());
1808 getASTConsumer().GetASTMutationListener());
1809 }
1810 getASTContext().setExternalSource(TheASTReader);
1811 if (hasSema())
1812 TheASTReader->InitializeSema(getSema());
1813 if (hasASTConsumer())
1814 TheASTReader->StartTranslationUnit(&getASTConsumer());
1815
1816 for (auto &Listener : DependencyCollectors)
1817 Listener->attachToASTReader(*TheASTReader);
1818}
1819
1822 llvm::Timer Timer;
1823 if (timerGroup)
1824 Timer.init("preloading." + std::string(FileName.str()),
1825 "Preloading " + std::string(FileName.str()), *timerGroup);
1826 llvm::TimeRegion TimeLoading(timerGroup ? &Timer : nullptr);
1827
1828 // If we don't already have an ASTReader, create one now.
1829 if (!TheASTReader)
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(diag::warn_ast_file_config_mismatch,
1836 SourceLocation()) <=
1838
1839 auto Listener = std::make_unique<ReadModuleNames>(*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(
1847 ConfigMismatchIsRecoverable ? ASTReader::ARR_ConfigurationMismatch : 0,
1848 &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
1856 // Ignore unusable module files.
1858 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(ModuleName);
1890 if (BuiltModuleIt != BuiltModules.end()) {
1891 ModuleFilename = ModuleFileName::makeExplicit(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(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(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, true, !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(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(ModuleNameLoc, 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.
1946 }
1947
1948 getDiagnostics().Report(ModuleNameLoc, diag::err_module_build_disabled)
1949 << ModuleName;
1950 return nullptr;
1951 }
1952
1953 // Create an ASTReader on demand.
1954 if (!getASTReader())
1956
1957 // Time how long it takes to load the module.
1958 llvm::Timer Timer;
1959 if (timerGroup)
1960 Timer.init("loading." + std::string(ModuleFilename.str()),
1961 "Loading " + std::string(ModuleFilename.str()), *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
1970 : Source == MS_PrebuiltModulePath
1971 ? 0
1973 switch (getASTReader()->ReadAST(ModuleFilename,
1974 Source == MS_PrebuiltModulePath
1976 : Source == MS_ModuleBuildPragma
1979 ImportLoc, 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, true, !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(ModuleFilename))
1994 return M;
1995
1996 getDiagnostics().Report(ModuleNameLoc, diag::err_module_prebuilt)
1997 << ModuleName;
1998 return ModuleLoadResult();
1999 }
2000
2002 case ASTReader::Missing:
2003 // The most interesting case.
2004 break;
2005
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(SourceLocation(),
2011 diag::warn_ast_file_config_mismatch)
2012 << ModuleFilename;
2013 // Fall through to error out.
2014 [[fallthrough]];
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:
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.
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(ModuleNameLoc, 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(ModuleName)) {
2061 getDiagnostics().Report(ModuleNameLoc, 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(*this, ImportLoc, ModuleNameLoc, M,
2068 ModuleFilename)) {
2069 assert(getDiagnostics().hasErrorOccurred() &&
2070 "undiagnosed error in compileModuleAndReadAST");
2071 FailedModules.insert(ModuleName);
2072 return nullptr;
2073 }
2074
2075 // Okay, we've rebuilt and now loaded the module.
2076 return M;
2077}
2078
2081 ModuleIdPath Path,
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(ImportLoc);
2093 if (CacheIt != ModuleImportResults.end()) {
2094 if (CacheIt->second && ModuleName != getLangOpts().CurrentModule)
2095 TheASTReader->makeModuleVisible(CacheIt->second, 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;
2103 if (auto MaybeModule = MM.getCachedModuleLoad(*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)
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(*Path[0].getIdentifierInfo(), Module);
2124 } else if (getPreprocessorOpts().SingleModuleParseMode) {
2125 // This mimics how findOrCompileModuleAndReadAST() finds the module.
2127 ModuleName, ImportLoc, true, !IsInclusionDirective);
2128 if (Module) {
2129 if (PPCallbacks *PPCb = getPreprocessor().getPPCallbacks())
2130 PPCb->moduleLoadSkipped(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(SubM);
2140 }
2141 }
2142 MM.cacheModuleLoad(*Path[0].getIdentifierInfo(), Module);
2143 } else {
2144 SourceLocation ModuleNameEndLoc = Path.back().getLoc().getLocWithOffset(
2145 Path.back().getIdentifierInfo()->getLength());
2146 ModuleLoadResult Result = findOrCompileModuleAndReadAST(
2147 ModuleName, ImportLoc, SourceRange{ModuleNameLoc, ModuleNameEndLoc},
2148 IsInclusionDirective);
2149 if (!Result.isNormal())
2150 return Result;
2151 if (!Result)
2152 DisableGeneratingGlobalModuleIndex = true;
2153 Module = Result;
2154 MM.cacheModuleLoad(*Path[0].getIdentifierInfo(), 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("_Private");
2176
2178 auto &II = PP->getIdentifierTable().get(
2179 PrivateModule, PP->getIdentifierInfo(Module->Name)->getTokenID());
2180 PrivPath.emplace_back(Path[0].getLoc(), &II);
2181
2183 // If there is a modulemap module or prebuilt module, load it.
2184 if (PP->getHeaderSearchInfo().lookupModule(PrivateModule, ImportLoc, true,
2185 !IsInclusionDirective) ||
2186 selectModuleSource(nullptr, PrivateModule, FileName, BuiltModules,
2187 PP->getHeaderSearchInfo()) != MS_ModuleNotFound)
2188 Sub = loadModule(ImportLoc, PrivPath, Visibility, IsInclusionDirective);
2189 if (Sub) {
2190 MapPrivateSubModToTopLevel = true;
2191 PP->markClangModuleAsAffecting(Module);
2192 if (!getDiagnostics().isIgnored(
2193 diag::warn_no_priv_submodule_use_toplevel, ImportLoc)) {
2194 getDiagnostics().Report(Path[I].getLoc(),
2195 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(SourceRange(Path[0].getLoc()),
2200 PrivateModule);
2201 getDiagnostics().Report(Sub->DefinitionLoc,
2202 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.
2210 unsigned BestEditDistance = (std::numeric_limits<unsigned>::max)();
2211
2212 for (class Module *SubModule : Module->submodules()) {
2213 unsigned ED =
2214 Name.edit_distance(SubModule->Name,
2215 /*AllowReplacements=*/true, BestEditDistance);
2216 if (ED <= BestEditDistance) {
2217 if (ED < BestEditDistance) {
2218 Best.clear();
2219 BestEditDistance = ED;
2220 }
2221
2222 Best.push_back(SubModule->Name);
2223 }
2224 }
2225
2226 // If there was a clear winner, user it.
2227 if (Best.size() == 1) {
2228 getDiagnostics().Report(Path[I].getLoc(),
2229 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(SourceRange(Path[I].getLoc()),
2233 Best[0]);
2234
2235 Sub = Module->findSubmodule(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(Path[I].getLoc(), 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(ImportLoc, diag::warn_missing_submodule)
2263 << SourceRange(Path.front().getLoc(), Path.back().getLoc());
2264
2266 }
2267
2268 // Check whether this module is available.
2270 *Module, getDiagnostics())) {
2271 getDiagnostics().Report(ImportLoc, 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(Module, Visibility, ImportLoc);
2278 }
2279
2280 // Resolve any remaining module using export_as for this one.
2283 .getModuleMap()
2285
2286 ModuleImportResults[ImportLoc] = ModuleLoadResult(Module);
2287 return ModuleLoadResult(Module);
2288}
2289
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))
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?
2303 int FD;
2304 if (std::error_code EC = llvm::sys::fs::createTemporaryFile(
2305 CleanModuleName, "pcm", FD, ModuleFileName)) {
2306 getDiagnostics().Report(ImportLoc, 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(Invocation->getLangOpts()),
2315 InputKind::ModuleMap, /*Preprocessed*/true));
2316
2317 std::string NullTerminatedSource(Source.str());
2318
2319 auto Other = cloneForModuleCompileImpl(ImportLoc, ModuleName, Input,
2320 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 ModuleMapFileName, NullTerminatedSource.size(), 0);
2326 Other->getSourceManager().overrideFileContents(
2327 ModuleMapFile, llvm::MemoryBuffer::getMemBuffer(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, *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(ModuleFileName);
2342 }
2343}
2344
2347 SourceLocation ImportLoc) {
2348 if (!TheASTReader)
2350 if (!TheASTReader)
2351 return;
2352
2353 TheASTReader->makeModuleVisible(Mod, Visibility, ImportLoc);
2354}
2355
2357 SourceLocation TriggerLoc) {
2358 if (getPreprocessor()
2359 .getHeaderSearchInfo()
2360 .getSpecificModuleCachePath()
2361 .empty())
2362 return nullptr;
2363 if (!TheASTReader)
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 getPreprocessor().getHeaderSearchInfo().getSpecificModuleCachePath());
2377 if (llvm::Error Err = GlobalModuleIndex::writeIndex(
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(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()) {
2397
2398 // Load modules that were parsed from module maps but not loaded yet.
2399 MMap.loadAllParsedModules();
2400
2401 bool RecreateIndex = false;
2403 E = MMap.module_end(); I != E; ++I) {
2404 Module *TheModule = I->second;
2405 if (!TheModule->getASTFileKey()) {
2407 Path.emplace_back(TriggerLoc,
2408 getPreprocessor().getIdentifierInfo(TheModule->Name));
2409 std::reverse(Path.begin(), Path.end());
2410 // Load a module as hidden. This also adds it to the global index.
2411 loadModule(TheModule->DefinitionLoc, Path, Module::Hidden, false);
2412 RecreateIndex = true;
2413 }
2414 }
2415 if (RecreateIndex) {
2416 if (llvm::Error Err = GlobalModuleIndex::writeIndex(
2419 .getHeaderSearchInfo()
2420 .getSpecificModuleCachePath())) {
2421 // FIXME As above, this drops the error on the floor.
2422 consumeError(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
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.
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, FoundModules))
2453 return true;
2454 }
2455 }
2456
2457 return false;
2458}
2459void CompilerInstance::resetAndLeakSema() { llvm::BuryPointer(takeSema()); }
2460
2463 ExternalSemaSrc = std::move(ESS);
2464}
Defines the clang::ASTContext interface.
Defines a logger where each line is written atomically to the file.
Defines the Diagnostic-related interfaces.
static void collectVFSEntries(CompilerInstance &CI, std::shared_ptr< ModuleDependencyCollector > MDC)
static bool EnableCodeCompletion(Preprocessor &PP, StringRef Filename, unsigned Line, unsigned Column)
static bool compileModuleAndReadAST(CompilerInstance &ImportingInstance, SourceLocation ImportLoc, SourceLocation ModuleNameLoc, Module *Module, ModuleFileName ModuleFileName)
Compile a module in a separate compiler instance and read the AST, returning true if the module compi...
static void SetupSerializedDiagnostics(DiagnosticOptions &DiagOpts, DiagnosticsEngine &Diags, StringRef OutputFile)
static bool readASTAfterCompileModule(CompilerInstance &ImportingInstance, SourceLocation ImportLoc, SourceLocation ModuleNameLoc, Module *Module, ModuleFileName ModuleFileName, bool *OutOfDate, bool *Missing)
Read the AST right after compiling the module.
static CompileOrReadResult compileModuleBehindLockOrRead(CompilerInstance &ImportingInstance, SourceLocation ImportLoc, SourceLocation ModuleNameLoc, Module *Module, ModuleFileName ModuleFileName)
Attempt to compile the module in a separate compiler instance behind a lock (to avoid building the sa...
static Language getLanguageFromOptions(const LangOptions &LangOpts)
Determine the appropriate source input kind based on language options.
static void checkConfigMacro(Preprocessor &PP, StringRef ConfigMacro, Module *Mod, SourceLocation ImportLoc)
Diagnose differences between the current definition of the given configuration macro and the definiti...
static void collectHeaderMaps(const HeaderSearch &HS, std::shared_ptr< ModuleDependencyCollector > MDC)
CompileOrReadResult
The result of compileModuleBehindLockOrRead().
@ Compiled
We successfully compiled the module and we still need to read it.
@ Read
We read a module file compiled by another instance.
@ FailedToRead
We failed to read the module file compiled by another instance.
@ FailedToCompile
We failed to compile the module.
static void InitializeFileRemapping(DiagnosticsEngine &Diags, SourceManager &SourceMgr, FileManager &FileMgr, const PreprocessorOptions &InitOpts)
static void collectIncludePCH(CompilerInstance &CI, std::shared_ptr< ModuleDependencyCollector > MDC)
static OptionalFileEntryRef getPublicModuleMap(FileEntryRef File, FileManager &FileMgr)
static ModuleSource selectModuleSource(Module *M, StringRef ModuleName, ModuleFileName &ModuleFilename, const std::map< std::string, std::string, std::less<> > &BuiltModules, HeaderSearch &HS)
Select a source for loading the named module and compute the filename to load it from.
static bool compileModuleImpl(CompilerInstance &ImportingInstance, SourceLocation ImportLoc, SourceLocation ModuleNameLoc, Module *Module, ModuleFileName ModuleFileName)
Compile a module in a separate compiler instance.
static void checkConfigMacros(Preprocessor &PP, Module *M, SourceLocation ImportLoc)
static void SetUpDiagnosticLog(DiagnosticOptions &DiagOpts, const CodeGenOptions *CodeGenOpts, DiagnosticsEngine &Diags)
Defines the clang::FileManager interface and associated types.
Defines the clang::FrontendAction interface and various convenience abstract classes (clang::ASTFront...
static void print(llvm::raw_ostream &OS, const T &V, const Context &Ctx, QualType Ty)
static StringRef getTriple(const Command &Job)
Defines the clang::Preprocessor interface.
static std::string toString(const clang::SanitizerSet &Sanitizers)
Produce a string containing comma-separated names of sanitizers in Sanitizers set.
Defines the SourceManager interface.
Defines utilities for dealing with stack allocation and stack space.
Defines version macros and version-related utility functions for Clang.
virtual void Initialize(ASTContext &Context)
Initialize - This is called to initialize the consumer, providing the ASTContext.
Definition ASTConsumer.h:49
Holds long-lived AST nodes (such as types and decls) that can be referred to throughout the semantic ...
Definition ASTContext.h:223
void setASTMutationListener(ASTMutationListener *Listener)
Attach an AST mutation listener to the AST context.
void setExternalSource(IntrusiveRefCntPtr< ExternalASTSource > Source)
Attach an external AST source to the AST context.
Abstract interface for callback invocations by the ASTReader.
Definition ASTReader.h:117
RAII object to temporarily add an AST callback listener.
Definition ASTReader.h:1908
@ ARR_Missing
The client can handle an AST file that cannot load because it is missing.
Definition ASTReader.h:1821
@ ARR_None
The client can't handle any AST loading failures.
Definition ASTReader.h:1817
@ ARR_ConfigurationMismatch
The client can handle an AST file that cannot load because it's compiled configuration doesn't match ...
Definition ASTReader.h:1834
@ ARR_OutOfDate
The client can handle an AST file that cannot load because it is out-of-date relative to its input fi...
Definition ASTReader.h:1825
@ ARR_TreatModuleWithErrorsAsOutOfDate
If a module file is marked with errors treat it as out-of-date so the caller can rebuild it.
Definition ASTReader.h:1838
static bool readASTFileControlBlock(StringRef Filename, FileManager &FileMgr, const ModuleCache &ModCache, const PCHContainerReader &PCHContainerRdr, bool FindModuleFileExtensions, ASTReaderListener &Listener, bool ValidateDiagnosticOptions, unsigned ClientLoadCapabilities=ARR_ConfigurationMismatch|ARR_OutOfDate)
Read the control block for the named AST file.
ASTReadResult
The result of reading the control block of an AST file, which can fail for various reasons.
Definition ASTReader.h:447
@ Success
The control block was read successfully.
Definition ASTReader.h:450
@ ConfigurationMismatch
The AST file was written with a different language/target configuration.
Definition ASTReader.h:467
@ OutOfDate
The AST file is out-of-date relative to its input files, and needs to be regenerated.
Definition ASTReader.h:460
@ Failure
The AST file itself appears corrupted.
Definition ASTReader.h:453
@ VersionMismatch
The AST file was written by a different version of Clang.
Definition ASTReader.h:463
@ HadErrors
The AST file has errors.
Definition ASTReader.h:470
@ Missing
The AST file was missing.
Definition ASTReader.h:456
ChainedDiagnosticConsumer - Chain two diagnostic clients so that diagnostics go to the first client a...
Abstract interface for a consumer of code-completion information.
Options controlling the behavior of code completion.
CodeGenOptions - Track various options which control how the code is optimized and passed to the back...
std::string DwarfDebugFlags
The string to embed in the debug information for the compile unit, if non-empty.
CompilerInstance - Helper class for managing a single instance of the Clang compiler.
bool loadModuleFile(ModuleFileName FileName, serialization::ModuleFile *&LoadedModuleFile)
void createPCHExternalASTSource(StringRef Path, DisableValidationForModuleKind DisableValidation, bool AllowPCHWithCompilerErrors, void *DeserializationListener, bool OwnDeserializationListener)
Create an external AST source to read a PCH file and attach it to the AST context.
DiagnosticConsumer & getDiagnosticClient() const
void createPreprocessor(TranslationUnitKind TUKind)
Create the preprocessor, using the invocation, file, and source managers, and replace any existing on...
bool lookupMissingImports(StringRef Name, SourceLocation TriggerLoc) override
Check global module index for missing imports.
void setOutputManager(IntrusiveRefCntPtr< llvm::vfs::OutputBackend > NewOutputs)
Set the output manager.
void createDiagnostics(DiagnosticConsumer *Client=nullptr, bool ShouldOwnClient=true)
Create the diagnostics engine using the invocation's diagnostic options and replace any existing one ...
std::unique_ptr< raw_pwrite_stream > createDefaultOutputFile(bool Binary=true, StringRef BaseInput="", StringRef Extension="", bool RemoveFileOnSignal=true, bool CreateMissingDirectories=false, bool ForceUseTemporary=false, bool SetOnlyIfDifferent=false)
Create the default output file (from the invocation's options) and add it to the list of tracked outp...
DependencyOutputOptions & getDependencyOutputOpts()
TargetInfo * getAuxTarget() const
const PCHContainerReader & getPCHContainerReader() const
Return the appropriate PCHContainerReader depending on the current CodeGenOptions.
DiagnosticsEngine & getDiagnostics() const
Get the current diagnostics engine.
GlobalModuleIndex * loadGlobalModuleIndex(SourceLocation TriggerLoc) override
Load, create, or return global module.
raw_ostream & getVerboseOutputStream()
Get the current stream for verbose output.
void setExternalSemaSource(IntrusiveRefCntPtr< ExternalSemaSource > ESS)
GenModuleActionWrapperFunc getGenModuleActionWrapper() const
ModuleLoadResult loadModule(SourceLocation ImportLoc, ModuleIdPath Path, Module::NameVisibilityKind Visibility, bool IsInclusionDirective) override
Attempt to load the given module.
FileSystemOptions & getFileSystemOpts()
llvm::Timer & getFrontendTimer() const
bool InitializeSourceManager(const FrontendInputFile &Input)
InitializeSourceManager - Initialize the source manager to set InputFile as the main file.
void createFileManager()
Create the file manager and replace any existing one with it.
FileManager & getFileManager() const
Return the current file manager to the caller.
void setBuildGlobalModuleIndex(bool Build)
Set the flag indicating whether we should (re)build the global module index.
void createOutputManager()
Create an output manager.
std::unique_ptr< Sema > takeSema()
std::unique_ptr< llvm::MemoryBuffer > compileModule(SourceLocation ImportLoc, StringRef ModuleName, StringRef ModuleFileName, CompilerInstance &Instance)
Compile a module file for the given module, using the options provided by the importing compiler inst...
void printDiagnosticStats()
At the end of a compilation, print the number of warnings/errors.
void setASTConsumer(std::unique_ptr< ASTConsumer > Value)
setASTConsumer - Replace the current AST consumer; the compiler instance takes ownership of Value.
PreprocessorOutputOptions & getPreprocessorOutputOpts()
IntrusiveRefCntPtr< FileManager > getFileManagerPtr() const
ModuleCache & getModuleCache() const
IntrusiveRefCntPtr< ASTReader > getASTReader() const
void setTarget(TargetInfo *Value)
Replace the current Target.
void setModuleDepCollector(std::shared_ptr< ModuleDependencyCollector > Collector)
void addDependencyCollector(std::shared_ptr< DependencyCollector > Listener)
void createASTContext()
Create the AST context.
void createModuleFromSource(SourceLocation ImportLoc, StringRef ModuleName, StringRef Source) override
Attempt to create the given module from the specified source buffer.
Preprocessor & getPreprocessor() const
Return the current preprocessor.
ASTContext & getASTContext() const
IntrusiveRefCntPtr< llvm::vfs::FileSystem > getVirtualFileSystemPtr() const
void LoadRequestedPlugins()
Load the list of plugins requested in the FrontendOptions.
TargetOptions & getTargetOpts()
void createVirtualFileSystem(IntrusiveRefCntPtr< llvm::vfs::FileSystem > BaseFS=llvm::vfs::getRealFileSystem(), DiagnosticConsumer *DC=nullptr)
Create a virtual file system instance based on the invocation.
void setASTReader(IntrusiveRefCntPtr< ASTReader > Reader)
FrontendOptions & getFrontendOpts()
std::shared_ptr< ModuleDependencyCollector > getModuleDepCollector() const
void setSema(Sema *S)
Replace the current Sema; the compiler instance takes ownership of S.
std::unique_ptr< CompilerInstance > cloneForModuleCompile(SourceLocation ImportLoc, const Module *Module, StringRef ModuleFileName, std::optional< ThreadSafeCloneConfig > ThreadSafeConfig=std::nullopt)
Creates a new CompilerInstance for compiling a module.
std::unique_ptr< raw_pwrite_stream > createOutputFile(StringRef OutputPath, bool Binary, bool RemoveFileOnSignal, bool UseTemporary, bool CreateMissingDirectories=false, bool SetOnlyIfDifferent=false)
Create a new output file, optionally deriving the output path name, and add it to the list of tracked...
void setSourceManager(llvm::IntrusiveRefCntPtr< SourceManager > Value)
setSourceManager - Replace the current source manager.
void setASTContext(llvm::IntrusiveRefCntPtr< ASTContext > Value)
setASTContext - Replace the current AST context.
HeaderSearchOptions & getHeaderSearchOpts()
void createFrontendTimer()
Create the frontend timer and replace any existing one with it.
void createSourceManager()
Create the source manager and replace any existing one with it.
CompilerInvocation & getInvocation()
void setVerboseOutputStream(raw_ostream &Value)
Replace the current stream for verbose output.
PreprocessorOptions & getPreprocessorOpts()
IntrusiveRefCntPtr< ASTContext > getASTContextPtr() const
ASTConsumer & getASTConsumer() const
void setFileManager(IntrusiveRefCntPtr< FileManager > Value)
Replace the current file manager.
TargetInfo & getTarget() const
llvm::vfs::OutputBackend & getOutputManager()
llvm::vfs::FileSystem & getVirtualFileSystem() const
void createCodeCompletionConsumer()
Create a code completion consumer using the invocation; note that this will cause the source manager ...
void setCodeCompletionConsumer(CodeCompleteConsumer *Value)
setCodeCompletionConsumer - Replace the current code completion consumer; the compiler instance takes...
bool ExecuteAction(FrontendAction &Act)
ExecuteAction - Execute the provided action against the compiler's CompilerInvocation object.
std::shared_ptr< PCHContainerOperations > getPCHContainerOperations() const
void clearOutputFiles(bool EraseFiles)
clearOutputFiles - Clear the output file list.
DiagnosticOptions & getDiagnosticOpts()
llvm::vfs::OutputBackend & getOrCreateOutputManager()
CodeGenOptions & getCodeGenOpts()
SourceManager & getSourceManager() const
Return the current source manager.
void setDiagnostics(llvm::IntrusiveRefCntPtr< DiagnosticsEngine > Value)
setDiagnostics - Replace the current diagnostics engine.
bool shouldBuildGlobalModuleIndex() const
Indicates whether we should (re)build the global module index.
APINotesOptions & getAPINotesOpts()
std::unique_ptr< raw_pwrite_stream > createNullOutputFile()
void setAuxTarget(TargetInfo *Value)
Replace the current AuxTarget.
void makeModuleVisible(Module *Mod, Module::NameVisibilityKind Visibility, SourceLocation ImportLoc) override
Make the given module visible.
void setPreprocessor(std::shared_ptr< Preprocessor > Value)
Replace the current preprocessor.
void createSema(TranslationUnitKind TUKind, CodeCompleteConsumer *CompletionConsumer)
Create the Sema object to be used for parsing.
LangOptions & getLangOpts()
Mutable getters.
FrontendOptions & getFrontendOpts()
std::string computeContextHash() const
Compute the context hash - a string that uniquely identifies compiler settings.
DependencyOutputOptions - Options for controlling the compiler dependency file generation.
ShowIncludesDestination ShowIncludesDest
Destination of cl.exe style /showIncludes info.
std::string DOTOutputFile
The file to write GraphViz-formatted header dependencies to.
std::string ModuleDependencyOutputDir
The directory to copy module dependencies to when collecting them.
std::string OutputFile
The file to write dependency output to.
std::string HeaderIncludeOutputFile
The file to write header include output to.
unsigned ShowHeaderIncludes
Show header inclusions (-H).
Abstract interface, implemented by clients of the front-end, which formats and prints fully processed...
unsigned getNumErrors() const
unsigned getNumWarnings() const
static llvm::IntrusiveRefCntPtr< DiagnosticIDs > create()
Options for controlling the compiler diagnostics engine.
std::string DiagnosticLogFile
The file to log diagnostic output to.
std::vector< std::string > SystemHeaderWarningsModules
The list of -Wsystem-headers-in-module=... options used to override whether -Wsystem-headers is enabl...
std::string DiagnosticSerializationFile
The file to serialize diagnostics to (non-appending).
Concrete class used by the front-end to report problems and issues.
Definition Diagnostic.h:234
DiagnosticBuilder Report(SourceLocation Loc, unsigned DiagID)
Issue the message to the client.
bool hasErrorOccurred() const
Definition Diagnostic.h:893
void setClient(DiagnosticConsumer *client, bool ShouldOwnClient=true)
Set the diagnostic client associated with this diagnostic object.
std::unique_ptr< DiagnosticConsumer > takeClient()
Return the current diagnostic client along with ownership of that client.
Definition Diagnostic.h:633
DiagnosticConsumer * getClient()
Definition Diagnostic.h:625
Level getDiagnosticLevel(unsigned DiagID, SourceLocation Loc) const
Based on the way the client configured the DiagnosticsEngine object, classify the specified diagnosti...
Definition Diagnostic.h:987
bool ownsClient() const
Determine whether this DiagnosticsEngine object own its client.
Definition Diagnostic.h:629
StringRef getName() const
A reference to a FileEntry that includes the name of the file as it was accessed by the FileManager's...
Definition FileEntry.h:57
off_t getSize() const
Definition FileEntry.h:317
StringRef getName() const
The name of this FileEntry.
Definition FileEntry.h:61
StringRef getNameAsRequested() const
The name of this FileEntry, as originally requested without applying any remappings for VFS 'use-exte...
Definition FileEntry.h:68
An opaque identifier used by SourceManager which refers to a source file (MemoryBuffer) along with it...
bool isValid() const
bool isInvalid() const
Implements support for file system lookup, file system caching, and directory search management.
Definition FileManager.h:57
void AddStats(const FileManager &Other)
Import statistics from a child FileManager and add them to this current FileManager.
void PrintStats() const
static bool fixupRelativePath(const FileSystemOptions &FileSystemOpts, SmallVectorImpl< char > &Path)
OptionalFileEntryRef getOptionalFileRef(StringRef Filename, bool OpenFile=false, bool CacheFailure=true, bool IsText=true)
Get a FileEntryRef if it exists, without doing anything on error.
static FixItHint CreateReplacement(CharSourceRange RemoveRange, StringRef Code)
Create a code modification hint that replaces the given source range with the given code string.
Definition Diagnostic.h:142
Abstract base class for actions which can be performed by the frontend.
virtual void EndSourceFile()
Perform any per-file post processing, deallocate per-file objects, and run statistics and output file...
bool PrepareToExecute(CompilerInstance &CI)
Prepare the action to execute on the given compiler instance.
llvm::Error Execute()
Set the source manager's main input file, and run the action.
bool BeginSourceFile(CompilerInstance &CI, const FrontendInputFile &Input)
Prepare the action for processing the input file Input.
virtual bool isModelParsingAction() const
Is this action invoked on a model file?
An input file for the front end.
llvm::MemoryBufferRef getBuffer() const
InputKind getKind() const
StringRef getFile() const
FrontendOptions - Options for controlling the behavior of the frontend.
unsigned BuildingImplicitModule
Whether we are performing an implicit module build.
unsigned AllowPCMWithCompilerErrors
Output (and read) PCM files regardless of compiler errors.
unsigned BuildingImplicitModuleUsesLock
Whether to use a filesystem lock when building implicit modules.
unsigned ModulesShareFileManager
Whether to share the FileManager when building modules.
std::optional< std::string > AuxTargetCPU
Auxiliary target CPU for CUDA/HIP compilation.
std::string StatsFile
Filename to write statistics to.
std::string OutputFile
The output file, if any.
std::string ActionName
The name of the action to run when using a plugin action.
ParsedSourceLocation CodeCompletionAt
If given, enable code completion at the provided location.
std::string OriginalModuleMap
When the input is a module map, the original module map file from which that map was inferred,...
unsigned GenerateGlobalModuleIndex
Whether we can generate the global module index if needed.
unsigned DisableFree
Disable memory freeing on exit.
SmallVector< FrontendInputFile, 0 > Inputs
The input files and their types.
frontend::ActionKind ProgramAction
The frontend action to perform.
std::optional< std::vector< std::string > > AuxTargetFeatures
Auxiliary target features for CUDA/HIP compilation.
unsigned ImplicitModulesLockTimeoutSeconds
The time in seconds to wait on an implicit module lock before timing out.
A global index for a set of module files, providing information about the identifiers within those mo...
llvm::SmallPtrSet< ModuleFile *, 4 > HitSet
A set of module files in which we found a result.
bool lookupIdentifier(llvm::StringRef Name, HitSet &Hits)
Look for all of the module files with information about the given identifier, e.g....
static llvm::Error writeIndex(FileManager &FileMgr, const PCHContainerReader &PCHContainerRdr, llvm::StringRef Path)
Write a global index into the given.
HeaderSearchOptions - Helper class for storing options related to the initialization of the HeaderSea...
unsigned ModulesForceValidateUserHeaders
Whether to force the validation of user input files when a module is loaded (even despite the build s...
std::map< std::string, std::string, std::less<> > PrebuiltModuleFiles
The mapping of module names to prebuilt module files.
std::vector< std::string > PrebuiltModulePaths
The directories used to load prebuilt module files.
unsigned ModulesValidateSystemHeaders
Whether to validate system input files when a module is loaded.
unsigned EnablePrebuiltImplicitModules
Also search for prebuilt implicit modules in the prebuilt module cache path.
std::string Sysroot
If non-empty, the directory to use as a "virtual system root" for include paths.
llvm::SmallSetVector< llvm::CachedHashString, 16 > ModulesIgnoreMacros
The set of macro names that should be ignored by implicitly-built modules.
std::vector< Entry > UserEntries
User specified include entries.
llvm::SmallSetVector< llvm::CachedHashString, 16 > ModulesIgnoreSearchPaths
The set of header search paths that should be ignored by implicitly-built modules.
unsigned ModulesValidateOncePerBuildSession
If true, skip verifying input files used by modules if the module was already verified during this bu...
Encapsulates the information needed to find the file referenced by a #include or #include_next,...
Module * lookupModule(StringRef ModuleName, SourceLocation ImportLoc=SourceLocation(), bool AllowSearch=true, bool AllowExtraModuleMapSearch=false)
Lookup a module Search for a module with the given name.
void getHeaderMapFileNames(SmallVectorImpl< std::string > &Names) const
Get filenames for all registered header maps.
ModuleFileName getPrebuiltModuleFileName(StringRef ModuleName, bool FileMapOnly=false)
Retrieve the name of the prebuilt module file that should be used to load a module with the given nam...
ModuleFileName getPrebuiltImplicitModuleFileName(Module *Module)
Retrieve the name of the prebuilt module file that should be used to load the given module.
ModuleFileName getCachedModuleFileName(Module *Module)
Retrieve the name of the cached module file that should be used to load the given module.
const HeaderSearchOptions & getHeaderSearchOpts() const
Retrieve the header-search options with which this header search was initialized.
ModuleMap & getModuleMap()
Retrieve the module map.
One of these records is kept for each identifier that is lexed.
bool hadMacroDefinition() const
Returns true if this identifier was #defined to some value at any moment.
llvm::MemoryBuffer & addBuiltPCM(llvm::StringRef Filename, std::unique_ptr< llvm::MemoryBuffer > Buffer, off_t Size, time_t ModTime)
Store a just-built PCM under the Filename.
The kind of a file that we've been handed as an input.
Format getFormat() const
@ FPE_Default
Used internally to represent initial unspecified value.
@ FPE_Ignore
Assume that floating-point exceptions are masked.
Keeps track of the various options that can be enabled, which controls the dialect of C or C++ that i...
std::string ModuleName
The module currently being compiled as specified by -fmodule-name.
Encapsulates the data about a macro definition (e.g.
Definition MacroInfo.h:40
The module cache used for compiling modules implicitly.
Definition ModuleCache.h:39
AtomicLineLogger & getLogger()
Definition ModuleCache.h:93
virtual std::error_code write(StringRef Path, llvm::MemoryBufferRef Buffer, off_t &Size, time_t &ModTime)=0
Write the PCM contents to the given path in the module cache.
virtual InMemoryModuleCache & getInMemoryModuleCache()=0
Returns this process's view of the module cache.
virtual void updateModuleTimestamp(StringRef ModuleFilename)=0
Updates the timestamp denoting the last time inputs of the module file were validated.
virtual std::unique_ptr< llvm::AdvisoryLock > getLock(StringRef ModuleFilename)=0
Returns lock for the given module file. The lock is initially unlocked.
Identifies a module file to be loaded.
Definition Module.h:109
bool empty() const
Checks whether the module file name is empty.
Definition Module.h:194
static ModuleFileName makeExplicit(std::string Name)
Creates a file name for an explicit module.
Definition Module.h:142
StringRef str() const
Returns the plain module file name.
Definition Module.h:188
Describes the result of attempting to load a module.
bool buildingModule() const
Returns true if this instance is building a module.
ModuleLoader(bool BuildingModule=false)
llvm::StringMap< Module * >::const_iterator module_iterator
Definition ModuleMap.h:796
module_iterator module_begin() const
Definition ModuleMap.h:798
OptionalFileEntryRef getModuleMapFileForUniquing(const Module *M) const
std::optional< Module * > getCachedModuleLoad(const IdentifierInfo &II)
Return a cached module load.
Definition ModuleMap.h:810
module_iterator module_end() const
Definition ModuleMap.h:799
FileID getContainingModuleMapFileID(const Module *Module) const
Retrieve the module map file containing the definition of the given module.
void resolveLinkAsDependencies(Module *Mod)
Use PendingLinkAsModule information to mark top level link names that are going to be replaced by exp...
Definition ModuleMap.cpp:53
void cacheModuleLoad(const IdentifierInfo &II, Module *M)
Cache a module load. M might be nullptr.
Definition ModuleMap.h:805
void loadAllParsedModules()
Module * findOrLoadModule(StringRef Name)
Describes a module or submodule.
Definition Module.h:340
StringRef getTopLevelModuleName() const
Retrieve the name of the top-level module.
Definition Module.h:950
std::vector< std::string > ConfigMacros
The set of "configuration macros", which are macros that (intentionally) change how this module is bu...
Definition Module.h:728
unsigned IsUnimportable
Whether this module has declared itself unimportable, either because it's missing a requirement from ...
Definition Module.h:561
NameVisibilityKind
Describes the visibility of the various names within a particular module.
Definition Module.h:643
@ Hidden
All of the names in this module are hidden.
Definition Module.h:645
void print(raw_ostream &OS, unsigned Indent=0, bool Dump=false) const
Print the module map for this module to the given stream.
Definition Module.cpp:456
const ModuleFileKey * getASTFileKey() const
The serialized AST file key for this module, if one was created.
Definition Module.h:961
SourceLocation DefinitionLoc
The location of the module definition.
Definition Module.h:346
unsigned IsSystem
Whether this is a "system" module (which assumes that all headers in it are system headers).
Definition Module.h:589
std::string Name
The name of this module.
Definition Module.h:343
llvm::iterator_range< submodule_iterator > submodules()
Definition Module.h:1067
OptionalDirectoryEntryRef Directory
The build directory of this module.
Definition Module.h:394
ModuleRef findSubmodule(StringRef Name) const
Find the submodule with the given name.
Definition Module.cpp:351
unsigned IsFromModuleFile
Whether this module was loaded from a module file.
Definition Module.h:576
unsigned HasIncompatibleModuleFile
Whether we tried and failed to load a module file for this module.
Definition Module.h:565
std::string getFullModuleName(bool AllowStringLiterals=false) const
Retrieve the full name of this module, including the path from its top-level module.
Definition Module.cpp:240
unsigned IsAvailable
Whether this module is available in the current translation unit.
Definition Module.h:572
Module * getTopLevelModule()
Retrieve the top-level module for this (sub)module, which may be this module.
Definition Module.h:940
This abstract interface provides operations for unwrapping containers for serialized ASTs (precompile...
virtual llvm::StringRef ExtractPCH(llvm::MemoryBufferRef Buffer) const =0
Returns the serialized AST inside the PCH container Buffer.
This interface provides a way to observe the actions of the preprocessor as it does its thing.
Definition PPCallbacks.h:37
@ ReplaceAction
Replace the main action.
PreprocessorOptions - This class is used for passing the various options used in preprocessor initial...
std::vector< std::pair< std::string, std::string > > RemappedFiles
The set of file remappings, which take existing files on the system (the first part of each pair) and...
std::pair< unsigned, bool > PrecompiledPreambleBytes
If non-zero, the implicit PCH include is actually a precompiled preamble that covers this number of b...
bool RemappedFilesKeepOriginalName
True if the SourceManager should report the original file name for contents of files that were remapp...
bool RetainRemappedFileBuffers
Whether the compiler instance should retain (i.e., not free) the buffers associated with remapped fil...
bool DetailedRecord
Whether we should maintain a detailed record of all macro definitions and expansions.
std::string ImplicitPCHInclude
The implicit PCH included at the start of the translation unit, or empty.
DisableValidationForModuleKind DisablePCHOrModuleValidation
Whether to disable most of the normal validation performed on precompiled headers and module files.
std::vector< std::pair< std::string, bool > > Macros
std::vector< std::pair< std::string, llvm::MemoryBuffer * > > RemappedFileBuffers
The set of file-to-buffer remappings, which take existing files on the system (the first part of each...
Engages in a tight little dance with the lexer to efficiently preprocess tokens.
const MacroInfo * getMacroInfo(const IdentifierInfo *II) const
MacroDirective * getLocalMacroDirectiveHistory(const IdentifierInfo *II) const
Given an identifier, return the latest non-imported macro directive for that identifier.
bool SetCodeCompletionPoint(FileEntryRef File, unsigned Line, unsigned Column)
Specify the point at which code-completion will be performed.
IdentifierInfo * getIdentifierInfo(StringRef Name) const
Return information about the specified preprocessor identifier token.
SourceManager & getSourceManager() const
static bool checkModuleIsAvailable(const LangOptions &LangOpts, const TargetInfo &TargetInfo, const Module &M, DiagnosticsEngine &Diags)
Check that the given module is available, producing a diagnostic if not.
FileManager & getFileManager() const
FileID getPredefinesFileID() const
Returns the FileID for the preprocessor predefines.
HeaderSearch & getHeaderSearchInfo() const
DiagnosticsEngine & getDiagnostics() const
DiagnosticBuilder Diag(SourceLocation Loc, unsigned DiagID) const
Forwarding function for diagnostics.
A simple code-completion consumer that prints the results it receives in a simple format.
Sema - This implements semantic analysis and AST building for C.
Definition Sema.h:863
ASTReaderListenter implementation to set SuggestedPredefines of ASTReader which is required to use a ...
Definition ASTReader.h:360
Encodes a location in the source.
bool isValid() const
Return true if this is a valid SourceLocation object.
This class handles loading and caching of source files into memory.
ModuleBuildStack getModuleBuildStack() const
Retrieve the module build stack.
A trivial tuple used to represent a source range.
SourceLocation getBegin() const
CharacteristicKind getFileCharacteristic() const
Return whether this is a system header or not.
This is a discriminated union of FileInfo and ExpansionInfo.
const FileInfo & getFile() const
Exposes information about the current target.
Definition TargetInfo.h:226
static TargetInfo * CreateTargetInfo(DiagnosticsEngine &Diags, TargetOptions &Opts)
Construct a target for the given options.
Definition Targets.cpp:840
const llvm::Triple & getTriple() const
Returns the target triple of the primary target.
virtual void setAuxTarget(const TargetInfo *Aux)
void noSignedCharForObjCBool()
Definition TargetInfo.h:938
virtual void adjust(DiagnosticsEngine &Diags, LangOptions &Opts, const TargetInfo *Aux)
Set forced language options.
std::string CPU
If given, the name of the target CPU to generate code for.
static std::error_code setConvertersFromOptions(TextEncoding &TE, const clang::LangOptions &Opts)
VerifyDiagnosticConsumer - Create a diagnostic client which will use markers in the input source to c...
Information about a module that has been loaded by the ASTReader.
Definition ModuleFile.h:158
Defines the clang::TargetInfo interface.
CharacteristicKind
Indicates whether a file or directory holds normal user code, system code, or system code which is im...
@ HeaderSearch
Remove unused header search paths including header maps.
@ OS
Indicates that the tracking object is a descendant of a referenced-counted OSObject,...
@ PluginAction
Run a plugin action,.
@ RewriteObjC
ObjC->C Rewriter.
bool Inv(InterpState &S)
Definition Interp.h:838
@ MK_PCH
File is a PCH file treated as such.
Definition ModuleFile.h:52
@ MK_Preamble
File is a PCH file treated as the preamble.
Definition ModuleFile.h:55
@ MK_ExplicitModule
File is an explicitly-loaded module.
Definition ModuleFile.h:49
@ MK_ImplicitModule
File is an implicitly-loaded module.
Definition ModuleFile.h:46
@ MK_PrebuiltModule
File is from a prebuilt module path.
Definition ModuleFile.h:61
std::unique_ptr< DiagnosticConsumer > create(StringRef OutputFile, DiagnosticOptions &DiagOpts, bool MergeChildRecords=false)
Returns a DiagnosticConsumer that serializes diagnostics to a bitcode file.
Top level wrappers for InstallAPI frontend operations.
CustomizableOptional< FileEntryRef > OptionalFileEntryRef
Definition FileEntry.h:196
ArrayRef< IdentifierLoc > ModuleIdPath
A sequence of identifier/location pairs used to describe a particular module or submodule,...
ArrayRef< std::pair< std::string, FullSourceLoc > > ModuleBuildStack
The stack used when building modules on demand, which is used to provide a link between the source ma...
void ApplyHeaderSearchOptions(HeaderSearch &HS, const HeaderSearchOptions &HSOpts, const LangOptions &Lang, const llvm::Triple &triple)
Apply the header search options to get given HeaderSearch object.
std::shared_ptr< ModuleCache > createCrossProcessModuleCache()
Creates new ModuleCache backed by a file system directory that may be operated on by multiple process...
nullptr
This class represents a compute construct, representing a 'Kind' of ‘parallel’, 'serial',...
void InitializePreprocessor(Preprocessor &PP, const PreprocessorOptions &PPOpts, const PCHContainerReader &PCHContainerRdr, const FrontendOptions &FEOpts, const CodeGenOptions &CodeGenOpts)
InitializePreprocessor - Initialize the preprocessor getting it and the environment ready to process ...
LLVM_READONLY bool isAlphanumeric(unsigned char c)
Return true if this character is an ASCII letter or digit: [a-zA-Z0-9].
Definition CharInfo.h:138
@ Module
Module linkage, which indicates that the entity can be referred to from other translation units withi...
Definition Linkage.h:54
Language
The language for the input, used to select and validate the language standard and possible actions.
@ C
Languages that the frontend can parse and compile.
@ Result
The result type of a method or function.
Definition TypeBase.h:906
IntrusiveRefCntPtr< llvm::vfs::FileSystem > createVFSFromCompilerInvocation(const CompilerInvocation &CI, DiagnosticsEngine &Diags)
constexpr size_t DesiredStackSize
The amount of stack space that Clang would like to be provided with.
Definition Stack.h:26
void noteBottomOfStack(bool ForceSet=false)
Call this once on each thread, as soon after starting the thread as feasible, to note the approximate...
Definition Stack.cpp:20
void ProcessWarningOptions(DiagnosticsEngine &Diags, const DiagnosticOptions &Opts, llvm::vfs::FileSystem &VFS, bool ReportDiags=true)
ProcessWarningOptions - Initialize the diagnostic client and process the warning options specified on...
Definition Warnings.cpp:50
TranslationUnitKind
Describes the kind of translation unit being processed.
void AttachHeaderIncludeGen(Preprocessor &PP, const DependencyOutputOptions &DepOpts, bool ShowAllHeaders=false, StringRef OutputPath={}, bool ShowDepth=true, bool MSStyle=false)
AttachHeaderIncludeGen - Create a header include list generator, and attach it to the given preproces...
DisableValidationForModuleKind
Whether to disable the normal validation performed on precompiled headers and module files when they ...
@ Other
Other implicit parameter.
Definition Decl.h:1774
Visibility
Describes the different kinds of visibility that a declaration may have.
Definition Visibility.h:34
void AttachDependencyGraphGen(Preprocessor &PP, StringRef OutputFile, StringRef SysRoot)
AttachDependencyGraphGen - Create a dependency graph generator, and attach it to the given preprocess...
__packed_splat4 __packed_splat2 __packed_splat8 __packed_splat4 __packed_splat2 uint8_t
A source location that has been parsed on the command line.