24#include "clang/Config/config.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"
77CompilerInstance::CompilerInstance(
78 std::shared_ptr<CompilerInvocation> Invocation,
79 std::shared_ptr<PCHContainerOperations> PCHContainerOps,
80 std::shared_ptr<ModuleCache> ModCache)
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");
90 assert(OutputFiles.empty() &&
"Still output files in flight?");
94 return (BuildGlobalModuleIndex ||
95 (TheASTReader && TheASTReader->isGlobalIndexUnavailable() &&
97 !DisableGeneratingGlobalModuleIndex;
102 Diagnostics = std::move(
Value);
106 OwnedVerboseOutputStream.reset();
107 VerboseOutputStream = &
Value;
111 OwnedVerboseOutputStream.swap(
Value);
112 VerboseOutputStream = OwnedVerboseOutputStream.get();
136 auto &TO = AuxTargetOpts = std::make_unique<TargetOptions>();
177 assert(
Value ==
nullptr ||
179 FileMgr = std::move(
Value);
184 SourceMgr = std::move(
Value);
188 PP = std::move(
Value);
193 Context = std::move(
Value);
195 if (Context && Consumer)
204 Consumer = std::move(
Value);
206 if (Context && Consumer)
211 CompletionConsumer.reset(
Value);
215 return std::move(TheSema);
222 assert(ModCache.get() == &Reader->getModuleManager().getModuleCache() &&
223 "Expected ASTReader to use the same PCM cache");
224 TheASTReader = std::move(Reader);
227std::shared_ptr<ModuleDependencyCollector>
229 return ModuleDepCollector;
233 std::shared_ptr<ModuleDependencyCollector> Collector) {
234 ModuleDepCollector = std::move(Collector);
238 std::shared_ptr<ModuleDependencyCollector> MDC) {
241 for (
auto &Name : HeaderMapFileNames)
246 std::shared_ptr<ModuleDependencyCollector> MDC) {
253 auto PCHDir =
FileMgr.getOptionalDirectoryRef(PCHInclude);
255 MDC->addFile(PCHInclude);
261 llvm::sys::path::native(PCHDir->getName(), DirNative);
262 llvm::vfs::FileSystem &FS =
FileMgr.getVirtualFileSystem();
264 for (llvm::vfs::directory_iterator Dir = FS.dir_begin(DirNative, EC), DirEnd;
265 Dir != DirEnd && !EC; Dir.increment(EC)) {
274 MDC->addFile(Dir->path());
279 std::shared_ptr<ModuleDependencyCollector> MDC) {
283 if (
auto *RedirectingVFS = dyn_cast<llvm::vfs::RedirectingFileSystem>(&VFS))
284 llvm::vfs::collectVFSEntries(*RedirectingVFS, VFSEntries);
287 for (
auto &E : VFSEntries)
288 MDC->addFile(E.VPath, E.RPath);
293 bool ShouldOwnClient =
false;
296 ShouldOwnClient =
true;
308 llvm::makeIntrusiveRefCnt<llvm::vfs::TracingFileSystem>(std::move(VFS));
316 std::unique_ptr<raw_ostream> StreamOwner;
317 raw_ostream *OS = &llvm::errs();
320 auto FileOS = std::make_unique<llvm::raw_fd_ostream>(
322 llvm::sys::fs::OF_Append | llvm::sys::fs::OF_TextWithCRLF);
324 Diags.
Report(diag::warn_fe_cc_log_diagnostics_failure)
327 FileOS->SetUnbuffered();
329 StreamOwner = std::move(FileOS);
334 auto Logger = std::make_unique<LogDiagnosticPrinter>(*OS, DiagOpts,
335 std::move(StreamOwner));
349 StringRef OutputFile) {
350 auto SerializedConsumer =
355 Diags.
takeClient(), std::move(SerializedConsumer)));
358 Diags.
getClient(), std::move(SerializedConsumer)));
363 bool ShouldOwnClient) {
372 auto Diags = llvm::makeIntrusiveRefCnt<DiagnosticsEngine>(
378 Diags->setClient(Client, ShouldOwnClient);
385 if (Opts.VerifyDiagnostics)
404 assert(VFS &&
"CompilerInstance needs a VFS for creating FileManager");
411 assert(Diagnostics &&
"DiagnosticsEngine needed for creating SourceManager");
412 assert(FileMgr &&
"FileManager needed for creating SourceManager");
413 SourceMgr = llvm::makeIntrusiveRefCnt<SourceManager>(
getDiagnostics(),
427 FileMgr.getVirtualFileRef(RB.first, RB.second->getBufferSize(), 0);
434 SourceMgr.overrideFileContents(FromFile, RB.second->getMemBufferRef());
436 SourceMgr.overrideFileContents(
437 FromFile, std::unique_ptr<llvm::MemoryBuffer>(RB.second));
445 Diags.
Report(diag::err_fe_remap_missing_to_file) << RF.first << RF.second;
455 SourceMgr.overrideFileContents(FromFile, *ToFile);
458 SourceMgr.setOverridenFilesKeepOriginalName(
468 TheASTReader.reset();
474 PP = std::make_shared<Preprocessor>(Invocation->getPreprocessorOpts(),
483 PP->createPreprocessingRecord();
487 PP->getFileManager(), PPOpts);
496 const llvm::Triple *HeaderSearchTriple = &PP->getTargetInfo().getTriple();
497 if (PP->getTargetInfo().getTriple().getOS() == llvm::Triple::CUDA &&
498 PP->getAuxTargetInfo())
499 HeaderSearchTriple = &PP->getAuxTargetInfo()->getTriple();
502 PP->getLangOpts(), *HeaderSearchTriple);
506 if (PP->getLangOpts().Modules && PP->getLangOpts().ImplicitModules) {
510 PP->getHeaderSearchInfo().initializeModuleCachePath(
525 ModuleDepCollector = std::make_shared<ModuleDependencyCollector>(
531 if (ModuleDepCollector) {
542 for (
auto &Listener : DependencyCollectors)
543 Listener->attachToPreprocessor(*PP);
550 if (OutputPath ==
"-")
563 if (GetDependencyDirectives)
564 PP->setDependencyDirectivesGetter(*GetDependencyDirectives);
568 PP->getDiagnostics().Report(clang::diag::err_fe_text_encoding_config)
569 << PP->getTextEncoding().getLiteralEncoding();
576 auto Context = llvm::makeIntrusiveRefCnt<ASTContext>(
577 getLangOpts(), PP.getSourceManager(), PP.getIdentifierTable(),
578 PP.getSelectorTable(), PP.getBuiltinInfo(), PP.TUKind);
595 void ReadModuleName(StringRef ModuleName)
override {
598 LoadedModules.push_back(ModuleName.str());
603 for (
const std::string &LoadedModule : LoadedModules)
606 LoadedModules.clear();
609 void markAllUnavailable() {
610 for (
const std::string &LoadedModule : LoadedModules) {
613 M->HasIncompatibleModuleFile =
true;
617 SmallVector<Module *, 2> Stack;
619 while (!Stack.empty()) {
620 Module *Current = Stack.pop_back_val();
624 llvm::append_range(Stack, SubmodulesRange);
628 LoadedModules.clear();
635 bool AllowPCHWithCompilerErrors,
void *DeserializationListener,
636 bool OwnDeserializationListener) {
643 DeserializationListener, OwnDeserializationListener,
Preamble,
648 StringRef Path, StringRef Sysroot,
653 ArrayRef<std::shared_ptr<ModuleFileExtension>> Extensions,
654 ArrayRef<std::shared_ptr<DependencyCollector>> DependencyCollectors,
655 void *DeserializationListener,
bool OwnDeserializationListener,
656 bool Preamble,
bool UseGlobalModuleIndex) {
658 PP.getHeaderSearchInfo().getHeaderSearchOpts();
660 auto Reader = llvm::makeIntrusiveRefCnt<ASTReader>(
661 PP, ModCache, &Context, PCHContainerRdr, CodeGenOpts, Extensions,
662 Sysroot.empty() ?
"" : Sysroot.data(), DisableValidation,
663 AllowPCHWithCompilerErrors,
false,
670 Context.setExternalSource(Reader);
672 Reader->setDeserializationListener(
674 OwnDeserializationListener);
676 for (
auto &Listener : DependencyCollectors)
677 Listener->attachToASTReader(*Reader);
679 auto Listener = std::make_unique<ReadModuleNames>(PP);
680 auto &ListenerRef = *Listener;
682 std::move(Listener));
691 PP.setPredefines(Reader->getSuggestedPredefines());
692 ListenerRef.registerAll();
708 ListenerRef.markAllUnavailable();
709 Context.setExternalSource(
nullptr);
735 if (!CompletionConsumer) {
748 timerGroup.reset(
new llvm::TimerGroup(
"clang",
"Clang time report"));
749 FrontendTimer.reset(
new llvm::Timer(
"frontend",
"Front end", *timerGroup));
769 TUKind, CompletionConsumer));
775 if (ExternalSemaSrc) {
776 TheSema->addExternalSource(ExternalSemaSrc);
777 ExternalSemaSrc->InitializeSema(*TheSema);
783 (void)TheSema->APINotes.loadCurrentModuleAPINotes(
795 for (
auto &O : OutputFiles)
796 llvm::handleAllErrors(
798 [&](
const llvm::vfs::TempFileOutputError &E) {
799 getDiagnostics().Report(diag::err_unable_to_rename_temp)
800 << E.getTempPath() << E.getOutputPath()
801 << E.convertToErrorCode().message();
803 [&](
const llvm::vfs::OutputError &E) {
804 getDiagnostics().Report(diag::err_fe_unable_to_open_output)
805 << E.getOutputPath() << E.convertToErrorCode().message();
807 [&](
const llvm::ErrorInfoBase &EIB) {
808 getDiagnostics().Report(diag::err_fe_unable_to_open_output)
809 << O.getPath() << EIB.message();
813 if (DeleteBuiltModules) {
814 for (
auto &
Module : BuiltModules)
815 llvm::sys::fs::remove(
Module.second);
816 BuiltModules.clear();
821 bool Binary, StringRef InFile, StringRef Extension,
bool RemoveFileOnSignal,
822 bool CreateMissingDirectories,
bool ForceUseTemporary,
823 bool SetOnlyIfDifferent) {
825 std::optional<SmallString<128>> PathStorage;
826 if (OutputPath.empty()) {
827 if (InFile ==
"-" || Extension.empty()) {
830 PathStorage.emplace(InFile);
831 llvm::sys::path::replace_extension(*PathStorage, Extension);
832 OutputPath = *PathStorage;
838 CreateMissingDirectories, SetOnlyIfDifferent);
842 return std::make_unique<llvm::raw_null_ostream>();
849 assert(!OutputMgr &&
"Already has an output manager");
850 OutputMgr = std::move(NewOutputs);
854 assert(!OutputMgr &&
"Already has an output manager");
855 OutputMgr = llvm::makeIntrusiveRefCnt<llvm::vfs::OnDiskOutputBackend>();
870 StringRef OutputPath,
bool Binary,
bool RemoveFileOnSignal,
871 bool UseTemporary,
bool CreateMissingDirectories,
bool SetOnlyIfDifferent) {
873 createOutputFileImpl(OutputPath,
Binary, RemoveFileOnSignal, UseTemporary,
874 CreateMissingDirectories, SetOnlyIfDifferent);
876 return std::move(*OS);
878 << OutputPath << errorToErrorCode(OS.takeError()).message();
883CompilerInstance::createOutputFileImpl(StringRef OutputPath,
bool Binary,
884 bool RemoveFileOnSignal,
886 bool CreateMissingDirectories,
887 bool SetOnlyIfDifferent) {
888 assert((!CreateMissingDirectories || UseTemporary) &&
889 "CreateMissingDirectories is only allowed when using temporary files");
893 std::optional<SmallString<128>> AbsPath;
894 if (OutputPath !=
"-" && !llvm::sys::path::is_absolute(OutputPath)) {
896 "File Manager is required to fix up relative path.\n");
898 AbsPath.emplace(OutputPath);
900 OutputPath = *AbsPath;
908 .setDiscardOnSignal(RemoveFileOnSignal)
909 .setAtomicWrite(UseTemporary)
910 .setImplyCreateDirectories(UseTemporary && CreateMissingDirectories)
911 .setOnlyIfDifferent(SetOnlyIfDifferent));
913 return O.takeError();
915 O->discardOnDestroy([](llvm::Error E) { consumeError(std::move(E)); });
916 OutputFiles.push_back(std::move(*O));
917 return OutputFiles.back().createProxy();
939 SourceMgr.setMainFileID(SourceMgr.createFileID(Input.
getBuffer(), Kind));
940 assert(SourceMgr.getMainFileID().isValid() &&
941 "Couldn't establish MainFileID!");
945 StringRef InputFile = Input.
getFile();
948 auto FileOrErr = InputFile ==
"-"
950 : FileMgr.getFileRef(InputFile,
true);
952 auto EC = llvm::errorToErrorCode(FileOrErr.takeError());
953 if (InputFile !=
"-")
954 Diags.
Report(diag::err_fe_error_reading) << InputFile << EC.message();
956 Diags.
Report(diag::err_fe_error_reading_stdin) << EC.message();
960 SourceMgr.setMainFileID(
963 assert(SourceMgr.getMainFileID().isValid() &&
964 "Couldn't establish MainFileID!");
970void CompilerInstance::PrepareForExecution() {
987 assert(
hasDiagnostics() &&
"Diagnostics engine is not initialized!");
989 assert(!
getFrontendOpts().ShowVersion &&
"Client must handle '-version'!");
991 llvm::TimeTraceScope TimeScope(
"ExecuteCompiler");
993 PrepareForExecution();
1014 OS <<
"clang -cc1 version " CLANG_VERSION_STRING <<
" based upon LLVM "
1015 << LLVM_VERSION_STRING <<
" default target "
1016 << llvm::sys::getDefaultTargetTriple() <<
"\n";
1019 llvm::EnableStatistics(
false);
1032 ModuleImportResults.clear();
1035 if (llvm::Error Err = Act.
Execute()) {
1036 consumeError(std::move(Err));
1049 llvm::PrintStatistics(OS);
1052 if (!StatsFile.empty()) {
1053 llvm::sys::fs::OpenFlags FileFlags = llvm::sys::fs::OF_TextWithCRLF;
1055 FileFlags |= llvm::sys::fs::OF_Append;
1058 std::make_unique<llvm::raw_fd_ostream>(StatsFile, EC, FileFlags);
1061 << StatsFile << EC.message();
1063 llvm::PrintStatisticsJSON(*StatS);
1082 OS << NumWarnings <<
" warning" << (NumWarnings == 1 ?
"" :
"s");
1083 if (NumWarnings && NumErrors)
1086 OS << NumErrors <<
" error" << (NumErrors == 1 ?
"" :
"s");
1087 if (NumWarnings || NumErrors) {
1091 OS <<
" when compiling for host";
1093 OS <<
" when compiling for "
1106 if (llvm::sys::DynamicLibrary::LoadLibraryPermanently(Path.c_str(), &
Error))
1113 if (
auto PassPlugin = llvm::PassPlugin::Load(Path)) {
1114 PassPlugins.emplace_back(std::make_unique<llvm::PassPlugin>(*PassPlugin));
1117 << Path <<
toString(PassPlugin.takeError());
1122 for (
const FrontendPluginRegistry::entry &Plugin :
1123 FrontendPluginRegistry::entries()) {
1124 std::unique_ptr<PluginASTAction> P(Plugin.instantiate());
1136 if (LangOpts.OpenCL)
1145std::unique_ptr<CompilerInstance> CompilerInstance::cloneForModuleCompileImpl(
1148 std::optional<ThreadSafeCloneConfig> ThreadSafeConfig) {
1150 auto Invocation = std::make_shared<CompilerInvocation>(
getInvocation());
1152 PreprocessorOptions &PPOpts = Invocation->getPreprocessorOpts();
1156 Invocation->resetNonModularOptions();
1160 HeaderSearchOptions &HSOpts = Invocation->getHeaderSearchOpts();
1161 llvm::erase_if(PPOpts.
Macros,
1162 [&HSOpts](
const std::pair<std::string, bool> &def) {
1163 StringRef MacroDef = def.first;
1164 return HSOpts.ModulesIgnoreMacros.contains(
1165 llvm::CachedHashString(MacroDef.split(
'=').first));
1169 Invocation->getLangOpts().ModuleName =
1173 Invocation->getLangOpts().CurrentModule = std::string(ModuleName);
1178 FrontendOptions &FrontendOpts = Invocation->getFrontendOpts();
1179 FrontendOpts.
OutputFile = ModuleFileName.str();
1186 FrontendOpts.
Inputs = {std::move(Input)};
1191 DiagnosticOptions &DiagOpts = Invocation->getDiagnosticOpts();
1193 DiagOpts.VerifyDiagnostics = 0;
1196 "Module hash mismatch!");
1198 std::shared_ptr<ModuleCache> ModCache;
1199 if (ThreadSafeConfig) {
1200 ModCache = ThreadSafeConfig->getModuleCache();
1202 ModCache = this->ModCache;
1206 auto InstancePtr = std::make_unique<CompilerInstance>(
1208 auto &Instance = *InstancePtr;
1210 auto &
Inv = Instance.getInvocation();
1212 if (ThreadSafeConfig) {
1213 Instance.setVirtualFileSystem(ThreadSafeConfig->getVFS());
1214 Instance.createFileManager();
1220 Instance.createFileManager();
1223 if (ThreadSafeConfig) {
1224 Instance.createDiagnostics(&ThreadSafeConfig->getDiagConsumer(),
1227 Instance.createDiagnostics(
1232 Instance.getDiagnostics().setSuppressSystemWarnings(
false);
1234 Instance.createSourceManager();
1235 SourceManager &SourceMgr = Instance.getSourceManager();
1237 if (ThreadSafeConfig) {
1243 SourceMgr.pushModuleBuildStack(
1248 Instance.FailedModules = FailedModules;
1253 if (GetDependencyDirectives)
1254 Instance.GetDependencyDirectives =
1255 GetDependencyDirectives->cloneFor(Instance.getFileManager());
1257 if (ThreadSafeConfig) {
1258 Instance.setModuleDepCollector(ThreadSafeConfig->getModuleDepCollector());
1265 Inv.getDependencyOutputOpts() = DependencyOutputOptions();
1271class PrettyStackTraceBuildModule :
public llvm::PrettyStackTraceEntry {
1272 StringRef ModuleName;
1273 StringRef ModuleFileName;
1276 PrettyStackTraceBuildModule(StringRef ModuleName, StringRef ModuleFileName)
1277 : ModuleName(ModuleName), ModuleFileName(ModuleFileName) {}
1278 void print(raw_ostream &OS)
const override {
1279 OS <<
"Building module '" << ModuleName <<
"' as '" << ModuleFileName
1285std::unique_ptr<llvm::MemoryBuffer>
1288 CompilerInstance &Instance) {
1289 PrettyStackTraceBuildModule CrashInfo(ModuleName,
ModuleFileName);
1290 llvm::TimeTraceScope TimeScope(
"Module Compile", ModuleName);
1307 uint64_t ParentTID = llvm::get_threadid();
1308 bool Crashed = !llvm::CrashRecoveryContext().RunSafelyOnNewStack(
1311 <<
"module_compile_thread: parent=" << ParentTID
1314 auto OS = std::make_unique<llvm::raw_svector_ostream>(Buffer);
1316 std::unique_ptr<FrontendAction> Action =
1317 std::make_unique<GenerateModuleFromModuleMapAction>(std::move(OS));
1319 if (
auto WrapGenModuleAction = Instance.getGenModuleActionWrapper())
1320 Action = WrapGenModuleAction(Instance.getFrontendOpts(),
1323 Instance.ExecuteAction(*Action);
1335 FailedModules = std::move(Instance.FailedModules);
1340 Instance.setSema(
nullptr);
1341 Instance.setASTConsumer(
nullptr);
1344 Instance.clearOutputFiles(
true);
1358 if (Instance.getDiagnostics().hasErrorOccurred() &&
1359 !Instance.getFrontendOpts().AllowPCMWithCompilerErrors)
1362 return std::make_unique<llvm::SmallVectorMemoryBuffer>(
1363 std::move(Buffer), Instance.getFrontendOpts().OutputFile);
1368 StringRef Filename = llvm::sys::path::filename(
File.getName());
1370 if (Filename ==
"module_private.map")
1371 llvm::sys::path::append(PublicFilename,
"module.map");
1372 else if (Filename ==
"module.private.modulemap")
1373 llvm::sys::path::append(PublicFilename,
"module.modulemap");
1375 return std::nullopt;
1376 return FileMgr.getOptionalFileRef(PublicFilename);
1381 std::optional<ThreadSafeCloneConfig> ThreadSafeConfig) {
1397 while (Loc.
isValid() && isModuleMap(SourceMgr.getFileCharacteristic(Loc))) {
1398 ModuleMapFID = SourceMgr.getFileID(Loc);
1399 Loc = SourceMgr.getIncludeLoc(ModuleMapFID);
1403 SourceMgr.getFileEntryRefForID(ModuleMapFID);
1404 assert(ModuleMapFile &&
"Top-level module map with no FileID");
1411 ModuleMapFile = PublicMMFile;
1423 return cloneForModuleCompileImpl(
1424 ImportLoc, ModuleName,
1427 std::move(ThreadSafeConfig));
1435 llvm::sys::path::append(FakeModuleMapFile,
"__inferred_module.map");
1437 std::string InferredModuleMapContent;
1438 llvm::raw_string_ostream OS(InferredModuleMapContent);
1441 auto Instance = cloneForModuleCompileImpl(
1442 ImportLoc, ModuleName,
1445 std::move(ThreadSafeConfig));
1447 std::unique_ptr<llvm::MemoryBuffer> ModuleMapBuffer =
1448 llvm::MemoryBuffer::getMemBufferCopy(InferredModuleMapContent);
1449 FileEntryRef ModuleMapFile = Instance->getFileManager().getVirtualFileRef(
1450 FakeModuleMapFile, InferredModuleMapContent.size(), 0);
1451 Instance->getSourceManager().overrideFileContents(ModuleMapFile,
1452 std::move(ModuleMapBuffer));
1464 bool *OutOfDate,
bool *Missing) {
1475 ModuleLoadCapabilities);
1505 std::unique_ptr<llvm::MemoryBuffer> Buffer;
1517 diag::err_module_not_built)
1529 diag::err_module_not_written)
1547 StringRef ExtractedBuffer = Rdr.
ExtractPCH(*Buffer);
1550 Buffer = llvm::MemoryBuffer::getMemBufferCopy(ExtractedBuffer);
1588 if (llvm::Error Err = Lock->tryLock().moveInto(Owned)) {
1611 switch (Lock->waitForUnlockFor(std::chrono::seconds(Timeout))) {
1612 case llvm::WaitForUnlockResult::Success:
1614 case llvm::WaitForUnlockResult::OwnerDied:
1616 case llvm::WaitForUnlockResult::Timeout:
1623 Lock->unsafeUnlock();
1628 bool OutOfDate =
false;
1629 bool Missing =
false;
1633 if (!OutOfDate && !Missing)
1693 for (
auto *MD = LatestLocalMD; MD; MD = MD->getPrevious()) {
1695 FileID FID = SourceMgr.getFileID(MDLoc);
1701 !SourceMgr.isWrittenInCommandLineFile(MDLoc))
1703 if (
auto *DMD = dyn_cast<DefMacroDirective>(MD))
1704 CmdLineDefinition = DMD->getMacroInfo();
1709 if (CurrentDefinition == CmdLineDefinition) {
1711 }
else if (!CurrentDefinition) {
1714 PP.
Diag(ImportLoc, diag::warn_module_config_macro_undef)
1716 auto LatestDef = LatestLocalMD->getDefinition();
1717 assert(LatestDef.isUndefined() &&
1718 "predefined macro went away with no #undef?");
1719 PP.
Diag(LatestDef.getUndefLocation(), diag::note_module_def_undef_here)
1722 }
else if (!CmdLineDefinition) {
1725 PP.
Diag(ImportLoc, diag::warn_module_config_macro_undef)
1727 PP.
Diag(CurrentDefinition->getDefinitionLoc(),
1728 diag::note_module_def_undef_here)
1730 }
else if (!CurrentDefinition->isIdenticalTo(*CmdLineDefinition, PP,
1733 PP.
Diag(ImportLoc, diag::warn_module_config_macro_undef)
1735 PP.
Diag(CurrentDefinition->getDefinitionLoc(),
1736 diag::note_module_def_undef_here)
1744 for (
const StringRef ConMacro : TopModule->
ConfigMacros) {
1760 .getHeaderSearchInfo()
1761 .getSpecificModuleCachePath()
1768 std::string Sysroot = HSOpts.
Sysroot;
1771 std::unique_ptr<llvm::Timer> ReadTimer;
1774 ReadTimer = std::make_unique<llvm::Timer>(
"reading_modules",
1775 "Reading modules", *timerGroup);
1776 TheASTReader = llvm::makeIntrusiveRefCnt<ASTReader>(
1780 Sysroot.empty() ?
"" : Sysroot.c_str(),
1789 TheASTReader->setDeserializationListener(
1796 TheASTReader->InitializeSema(
getSema());
1800 for (
auto &Listener : DependencyCollectors)
1801 Listener->attachToASTReader(*TheASTReader);
1808 Timer.init(
"preloading." + std::string(
FileName.str()),
1809 "Preloading " + std::string(
FileName.str()), *timerGroup);
1810 llvm::TimeRegion TimeLoading(timerGroup ? &Timer :
nullptr);
1818 bool ConfigMismatchIsRecoverable =
1823 auto Listener = std::make_unique<ReadModuleNames>(*PP);
1824 auto &ListenerRef = *Listener;
1826 std::move(Listener));
1829 switch (TheASTReader->ReadAST(
1832 &LoadedModuleFile)) {
1836 ListenerRef.registerAll();
1842 diag::warn_ast_file_config_mismatch)
1846 ListenerRef.markAllUnavailable();
1858 MS_PrebuiltModulePath,
1859 MS_ModuleBuildPragma
1867 const std::map<std::string, std::string, std::less<>> &BuiltModules,
1869 assert(ModuleFilename.
empty() &&
"Already has a module source?");
1873 auto BuiltModuleIt = BuiltModules.find(ModuleName);
1874 if (BuiltModuleIt != BuiltModules.end()) {
1876 return MS_ModuleBuildPragma;
1886 if (!ModuleFilename.
empty())
1887 return MS_PrebuiltModulePath;
1893 return MS_ModuleCache;
1896 return MS_ModuleNotFound;
1901 bool IsInclusionDirective) {
1905 HS.
lookupModule(ModuleName, ImportLoc,
true, !IsInclusionDirective);
1915 ModuleFileName ModuleFilename;
1916 ModuleSource Source =
1918 SourceLocation ModuleNameLoc = ModuleNameRange.
getBegin();
1919 if (Source == MS_ModuleNotFound) {
1922 << ModuleName << ModuleNameRange;
1925 if (ModuleFilename.
empty()) {
1944 Timer.init(
"loading." + std::string(ModuleFilename.
str()),
1945 "Loading " + std::string(ModuleFilename.
str()), *timerGroup);
1946 llvm::TimeRegion TimeLoading(timerGroup ? &Timer :
nullptr);
1947 llvm::TimeTraceScope TimeScope(
"Module Load", ModuleName);
1951 unsigned ARRFlags = Source == MS_ModuleCache
1954 : Source == MS_PrebuiltModulePath
1958 Source == MS_PrebuiltModulePath
1960 : Source == MS_ModuleBuildPragma
1963 ImportLoc, ARRFlags)) {
1967 assert(Source != MS_ModuleCache &&
1968 "missing module, but file loaded from cache");
1972 M = HS.
lookupModule(ModuleName, ImportLoc,
true, !IsInclusionDirective);
1977 getASTReader()->getModuleManager().makeKey(ModuleFilename))
1982 return ModuleLoadResult();
1991 if (Source == MS_PrebuiltModulePath)
1995 diag::warn_ast_file_config_mismatch)
2004 return ModuleLoadResult();
2008 return ModuleLoadResult();
2012 if (Source != MS_ModuleCache) {
2016 return ModuleLoadResult();
2020 assert(M &&
"missing module, but trying to compile for cache");
2024 ModuleBuildStack::iterator Pos = ModPath.begin(), PosEnd = ModPath.end();
2025 for (; Pos != PosEnd; ++Pos) {
2026 if (Pos->first == ModuleName)
2030 if (Pos != PosEnd) {
2031 SmallString<256> CyclePath;
2032 for (; Pos != PosEnd; ++Pos) {
2033 CyclePath += Pos->first;
2034 CyclePath +=
" -> ";
2036 CyclePath += ModuleName;
2039 << ModuleName << CyclePath;
2044 if (FailedModules.contains(ModuleName)) {
2046 << ModuleName << SourceRange(ImportLoc, ModuleNameLoc);
2054 "undiagnosed error in compileModuleAndReadAST");
2055 FailedModules.insert(ModuleName);
2067 bool IsInclusionDirective) {
2069 StringRef ModuleName = Path[0].getIdentifierInfo()->getName();
2076 auto CacheIt = ModuleImportResults.find(ImportLoc);
2077 if (CacheIt != ModuleImportResults.end()) {
2078 if (CacheIt->second && ModuleName !=
getLangOpts().CurrentModule)
2079 TheASTReader->makeModuleVisible(CacheIt->second,
Visibility, ImportLoc);
2080 return CacheIt->second;
2095 }
else if (ModuleName ==
getLangOpts().CurrentModule) {
2097 Module = PP->getHeaderSearchInfo().lookupModule(
2098 ModuleName, ImportLoc,
true,
2099 !IsInclusionDirective);
2111 ModuleName, ImportLoc,
true, !IsInclusionDirective);
2114 PPCb->moduleLoadSkipped(
Module);
2117 std::vector<clang::Module *> Worklist{
Module};
2118 while (!Worklist.empty()) {
2120 Worklist.pop_back();
2123 Worklist.push_back(SubM);
2128 SourceLocation ModuleNameEndLoc = Path.back().getLoc().getLocWithOffset(
2129 Path.back().getIdentifierInfo()->getLength());
2132 IsInclusionDirective);
2136 DisableGeneratingGlobalModuleIndex =
true;
2148 bool MapPrivateSubModToTopLevel =
false;
2149 for (
unsigned I = 1, N = Path.size(); I != N; ++I) {
2150 StringRef Name = Path[I].getIdentifierInfo()->getName();
2159 PrivateModule.append(
"_Private");
2162 auto &II = PP->getIdentifierTable().get(
2163 PrivateModule, PP->getIdentifierInfo(
Module->
Name)->getTokenID());
2164 PrivPath.emplace_back(Path[0].getLoc(), &II);
2168 if (PP->getHeaderSearchInfo().lookupModule(PrivateModule, ImportLoc,
true,
2169 !IsInclusionDirective) ||
2171 PP->getHeaderSearchInfo()) != MS_ModuleNotFound)
2174 MapPrivateSubModToTopLevel =
true;
2175 PP->markClangModuleAsAffecting(
Module);
2177 diag::warn_no_priv_submodule_use_toplevel, ImportLoc)) {
2179 diag::warn_no_priv_submodule_use_toplevel)
2182 <<
SourceRange(Path[0].getLoc(), Path[I].getLoc())
2186 diag::note_private_top_level_defined);
2194 unsigned BestEditDistance = (std::numeric_limits<unsigned>::max)();
2198 Name.edit_distance(SubModule->Name,
2199 true, BestEditDistance);
2200 if (ED <= BestEditDistance) {
2201 if (ED < BestEditDistance) {
2203 BestEditDistance = ED;
2206 Best.push_back(SubModule->Name);
2211 if (Best.size() == 1) {
2213 diag::err_no_submodule_suggest)
2215 << Best[0] <<
SourceRange(Path[0].getLoc(), Path[I - 1].getLoc())
2228 <<
SourceRange(Path[0].getLoc(), Path[I - 1].getLoc());
2247 <<
SourceRange(Path.front().getLoc(), Path.back().getLoc());
2256 <<
SourceRange(Path.front().getLoc(), Path.back().getLoc());
2275 StringRef ModuleName,
2279 for (
auto &
C : CleanModuleName)
2288 if (std::error_code EC = llvm::sys::fs::createTemporaryFile(
2294 std::string ModuleMapFileName = (CleanModuleName +
".map").str();
2301 std::string NullTerminatedSource(Source.str());
2303 auto Other = cloneForModuleCompileImpl(ImportLoc, ModuleName, Input,
2309 ModuleMapFileName, NullTerminatedSource.size(), 0);
2310 Other->getSourceManager().overrideFileContents(
2311 ModuleMapFile, llvm::MemoryBuffer::getMemBuffer(NullTerminatedSource));
2313 Other->BuiltModules = std::move(BuiltModules);
2314 Other->DeleteBuiltModules =
false;
2317 std::unique_ptr<llvm::MemoryBuffer> Buffer =
2319 BuiltModules = std::move(
Other->BuiltModules);
2322 llvm::raw_fd_ostream OS(FD,
true);
2323 BuiltModules[std::string(ModuleName)] = std::string(
ModuleFileName);
2324 OS << Buffer->getBuffer();
2337 TheASTReader->makeModuleVisible(Mod,
Visibility, ImportLoc);
2343 .getHeaderSearchInfo()
2344 .getSpecificModuleCachePath()
2354 TheASTReader->loadGlobalIndex();
2359 llvm::sys::fs::create_directories(
2360 getPreprocessor().getHeaderSearchInfo().getSpecificModuleCachePath());
2364 .getHeaderSearchInfo()
2365 .getSpecificModuleCachePath())) {
2370 consumeError(std::move(Err));
2373 TheASTReader->resetForReload();
2374 TheASTReader->loadGlobalIndex();
2375 GlobalIndex = TheASTReader->getGlobalIndex();
2379 if (!HaveFullGlobalModuleIndex && GlobalIndex && !
buildingModule()) {
2385 bool RecreateIndex =
false;
2388 Module *TheModule = I->second;
2391 Path.emplace_back(TriggerLoc,
2393 std::reverse(Path.begin(), Path.end());
2396 RecreateIndex =
true;
2399 if (RecreateIndex) {
2403 .getHeaderSearchInfo()
2404 .getSpecificModuleCachePath())) {
2406 consumeError(std::move(Err));
2409 TheASTReader->resetForReload();
2410 TheASTReader->loadGlobalIndex();
2411 GlobalIndex = TheASTReader->getGlobalIndex();
2413 HaveFullGlobalModuleIndex =
true;
2447 ExternalSemaSrc = std::move(ESS);
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.
Holds long-lived AST nodes (such as types and decls) that can be referred to throughout the semantic ...
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.
RAII object to temporarily add an AST callback listener.
@ ARR_Missing
The client can handle an AST file that cannot load because it is missing.
@ ARR_None
The client can't handle any AST loading failures.
@ ARR_ConfigurationMismatch
The client can handle an AST file that cannot load because it's compiled configuration doesn't match ...
@ ARR_OutOfDate
The client can handle an AST file that cannot load because it is out-of-date relative to its input fi...
@ ARR_TreatModuleWithErrorsAsOutOfDate
If a module file is marked with errors treat it as out-of-date so the caller can rebuild it.
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.
@ Success
The control block was read successfully.
@ ConfigurationMismatch
The AST file was written with a different language/target configuration.
@ OutOfDate
The AST file is out-of-date relative to its input files, and needs to be regenerated.
@ Failure
The AST file itself appears corrupted.
@ VersionMismatch
The AST file was written by a different version of Clang.
@ HadErrors
The AST file has errors.
@ Missing
The AST file was missing.
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 hasOutputManager() const
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
~CompilerInstance() override
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()
bool hasFileManager() const
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.
bool hasASTContext() const
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
bool hasDiagnostics() 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()
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()
LangOptions & getLangOpts()
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.
bool hasSourceManager() const
bool hasASTConsumer() const
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.
bool hasPreprocessor() const
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.
DiagnosticBuilder Report(SourceLocation Loc, unsigned DiagID)
Issue the message to the client.
bool hasErrorOccurred() const
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.
DiagnosticConsumer * getClient()
Level getDiagnosticLevel(unsigned DiagID, SourceLocation Loc) const
Based on the way the client configured the DiagnosticsEngine object, classify the specified diagnosti...
bool ownsClient() const
Determine whether this DiagnosticsEngine object own its client.
StringRef getName() const
A reference to a FileEntry that includes the name of the file as it was accessed by the FileManager's...
StringRef getName() const
The name of this FileEntry.
StringRef getNameAsRequested() const
The name of this FileEntry, as originally requested without applying any remappings for VFS 'use-exte...
An opaque identifier used by SourceManager which refers to a source file (MemoryBuffer) along with it...
Implements support for file system lookup, file system caching, and directory search management.
void AddStats(const FileManager &Other)
Import statistics from a child FileManager and add them to this current FileManager.
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.
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?
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.
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.
@ 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.
The module cache used for compiling modules implicitly.
AtomicLineLogger & getLogger()
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.
bool empty() const
Checks whether the module file name is empty.
static ModuleFileName makeExplicit(std::string Name)
Creates a file name for an explicit module.
StringRef str() const
Returns the plain module file name.
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
module_iterator module_begin() const
OptionalFileEntryRef getModuleMapFileForUniquing(const Module *M) const
std::optional< Module * > getCachedModuleLoad(const IdentifierInfo &II)
Return a cached module load.
module_iterator module_end() const
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...
void cacheModuleLoad(const IdentifierInfo &II, Module *M)
Cache a module load. M might be nullptr.
void loadAllParsedModules()
Module * findOrLoadModule(StringRef Name)
Describes a module or submodule.
StringRef getTopLevelModuleName() const
Retrieve the name of the top-level module.
std::vector< std::string > ConfigMacros
The set of "configuration macros", which are macros that (intentionally) change how this module is bu...
unsigned IsUnimportable
Whether this module has declared itself unimportable, either because it's missing a requirement from ...
NameVisibilityKind
Describes the visibility of the various names within a particular module.
@ Hidden
All of the names in this module are hidden.
void print(raw_ostream &OS, unsigned Indent=0, bool Dump=false) const
Print the module map for this module to the given stream.
const ModuleFileKey * getASTFileKey() const
The serialized AST file key for this module, if one was created.
SourceLocation DefinitionLoc
The location of the module definition.
unsigned IsSystem
Whether this is a "system" module (which assumes that all headers in it are system headers).
std::string Name
The name of this module.
llvm::iterator_range< submodule_iterator > submodules()
OptionalDirectoryEntryRef Directory
The build directory of this module.
ModuleRef findSubmodule(StringRef Name) const
Find the submodule with the given name.
unsigned IsFromModuleFile
Whether this module was loaded from a module file.
unsigned HasIncompatibleModuleFile
Whether we tried and failed to load a module file for this module.
std::string getFullModuleName(bool AllowStringLiterals=false) const
Retrieve the full name of this module, including the path from its top-level module.
unsigned IsAvailable
Whether this module is available in the current translation unit.
Module * getTopLevelModule()
Retrieve the top-level module for this (sub)module, which may be this module.
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.
@ 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.
ASTReaderListenter implementation to set SuggestedPredefines of ASTReader which is required to use a ...
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.
static TargetInfo * CreateTargetInfo(DiagnosticsEngine &Diags, TargetOptions &Opts)
Construct a target for the given options.
const llvm::Triple & getTriple() const
Returns the target triple of the primary target.
virtual void setAuxTarget(const TargetInfo *Aux)
void noSignedCharForObjCBool()
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.
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.
@ MK_PCH
File is a PCH file treated as such.
@ MK_Preamble
File is a PCH file treated as the preamble.
@ MK_ExplicitModule
File is an explicitly-loaded module.
@ MK_ImplicitModule
File is an implicitly-loaded module.
@ MK_PrebuiltModule
File is from a prebuilt module path.
std::unique_ptr< DiagnosticConsumer > create(StringRef OutputFile, DiagnosticOptions &DiagOpts, bool MergeChildRecords=false)
Returns a DiagnosticConsumer that serializes diagnostics to a bitcode file.
The JSON file list parser is used to communicate input to InstallAPI.
CustomizableOptional< FileEntryRef > OptionalFileEntryRef
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].
@ Module
Module linkage, which indicates that the entity can be referred to from other translation units withi...
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.
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.
void noteBottomOfStack(bool ForceSet=false)
Call this once on each thread, as soon after starting the thread as feasible, to note the approximate...
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...
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.
Visibility
Describes the different kinds of visibility that a declaration may have.
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.