22#include "clang/Config/config.h"
42#include "llvm/ADT/STLExtras.h"
43#include "llvm/ADT/ScopeExit.h"
44#include "llvm/ADT/Statistic.h"
45#include "llvm/Config/llvm-config.h"
46#include "llvm/Support/BuryPointer.h"
47#include "llvm/Support/CrashRecoveryContext.h"
48#include "llvm/Support/Errc.h"
49#include "llvm/Support/FileSystem.h"
50#include "llvm/Support/LockFileManager.h"
51#include "llvm/Support/MemoryBuffer.h"
52#include "llvm/Support/Path.h"
53#include "llvm/Support/Program.h"
54#include "llvm/Support/Signals.h"
55#include "llvm/Support/TimeProfiler.h"
56#include "llvm/Support/Timer.h"
57#include "llvm/Support/raw_ostream.h"
58#include "llvm/TargetParser/Host.h"
65CompilerInstance::CompilerInstance(
66 std::shared_ptr<PCHContainerOperations> PCHContainerOps,
70 ModuleCache(SharedModuleCache ? SharedModuleCache
72 ThePCHContainerOperations(
std::move(PCHContainerOps)) {}
75 assert(OutputFiles.empty() &&
"Still output files in flight?");
79 std::shared_ptr<CompilerInvocation>
Value) {
80 Invocation = std::move(
Value);
84 return (BuildGlobalModuleIndex ||
85 (TheASTReader && TheASTReader->isGlobalIndexUnavailable() &&
87 !DisableGeneratingGlobalModuleIndex;
95 OwnedVerboseOutputStream.reset();
96 VerboseOutputStream = &
Value;
100 OwnedVerboseOutputStream.swap(
Value);
101 VerboseOutputStream = OwnedVerboseOutputStream.get();
120 auto TO = std::make_shared<TargetOptions>();
173 PP = std::move(
Value);
179 if (Context && Consumer)
188 Consumer = std::move(
Value);
190 if (Context && Consumer)
195 CompletionConsumer.reset(
Value);
199 return std::move(TheSema);
206 assert(ModuleCache.get() == &Reader->getModuleManager().getModuleCache() &&
207 "Expected ASTReader to use the same PCM cache");
208 TheASTReader = std::move(Reader);
211std::shared_ptr<ModuleDependencyCollector>
213 return ModuleDepCollector;
217 std::shared_ptr<ModuleDependencyCollector> Collector) {
218 ModuleDepCollector = std::move(Collector);
222 std::shared_ptr<ModuleDependencyCollector> MDC) {
225 for (
auto &Name : HeaderMapFileNames)
230 std::shared_ptr<ModuleDependencyCollector> MDC) {
239 MDC->addFile(PCHInclude);
245 llvm::sys::path::native(PCHDir->getName(), DirNative);
248 for (llvm::vfs::directory_iterator Dir = FS.dir_begin(DirNative, EC), DirEnd;
249 Dir != DirEnd && !EC; Dir.increment(EC)) {
258 MDC->addFile(Dir->path());
263 std::shared_ptr<ModuleDependencyCollector> MDC) {
270 llvm::ErrorOr<std::unique_ptr<llvm::MemoryBuffer>> Buffer =
271 llvm::MemoryBuffer::getFile(VFSFile);
274 llvm::vfs::collectVFSFromYAML(std::move(Buffer.get()),
275 nullptr, VFSFile, VFSEntries);
278 for (
auto &
E : VFSEntries)
279 MDC->addFile(
E.VPath,
E.RPath);
287 std::unique_ptr<raw_ostream> StreamOwner;
288 raw_ostream *OS = &llvm::errs();
291 auto FileOS = std::make_unique<llvm::raw_fd_ostream>(
293 llvm::sys::fs::OF_Append | llvm::sys::fs::OF_TextWithCRLF);
295 Diags.
Report(diag::warn_fe_cc_log_diagnostics_failure)
298 FileOS->SetUnbuffered();
300 StreamOwner = std::move(FileOS);
305 auto Logger = std::make_unique<LogDiagnosticPrinter>(*OS, DiagOpts,
306 std::move(StreamOwner));
320 StringRef OutputFile) {
321 auto SerializedConsumer =
326 Diags.
takeClient(), std::move(SerializedConsumer)));
329 Diags.
getClient(), std::move(SerializedConsumer)));
334 bool ShouldOwnClient) {
342 bool ShouldOwnClient,
351 Diags->setClient(Client, ShouldOwnClient);
358 if (Opts->VerifyDiagnostics)
380 VFS = FileMgr ? &FileMgr->getVirtualFileSystem()
383 assert(VFS &&
"FileManager has no VFS?");
385 return FileMgr.get();
414 FromFile, std::unique_ptr<llvm::MemoryBuffer>(RB.second));
422 Diags.
Report(diag::err_fe_remap_missing_to_file) << RF.first << RF.second;
430 Diags.
Report(diag::err_fe_remap_missing_from_file) << RF.first;
449 TheASTReader.reset();
455 PP = std::make_shared<Preprocessor>(Invocation->getPreprocessorOptsPtr(),
464 PP->createPreprocessingRecord();
468 PP->getFileManager(), PPOpts);
477 const llvm::Triple *HeaderSearchTriple = &PP->getTargetInfo().getTriple();
478 if (PP->getTargetInfo().getTriple().getOS() == llvm::Triple::CUDA &&
479 PP->getAuxTargetInfo())
480 HeaderSearchTriple = &PP->getAuxTargetInfo()->getTriple();
483 PP->getLangOpts(), *HeaderSearchTriple);
487 if (PP->getLangOpts().Modules && PP->getLangOpts().ImplicitModules) {
489 PP->getHeaderSearchInfo().setModuleHash(ModuleHash);
490 PP->getHeaderSearchInfo().setModuleCachePath(
505 ModuleDepCollector = std::make_shared<ModuleDependencyCollector>(
511 if (ModuleDepCollector) {
518 for (
auto &Listener : DependencyCollectors)
519 Listener->attachToPreprocessor(*PP);
526 if (OutputPath ==
"-")
544 llvm::sys::path::append(SpecificModuleCache, ModuleHash);
545 return std::string(SpecificModuleCache);
571 void ReadModuleName(StringRef ModuleName)
override {
574 LoadedModules.push_back(ModuleName.str());
579 for (
const std::string &LoadedModule : LoadedModules)
582 LoadedModules.clear();
585 void markAllUnavailable() {
586 for (
const std::string &LoadedModule : LoadedModules) {
589 M->HasIncompatibleModuleFile =
true;
595 while (!Stack.empty()) {
596 Module *Current = Stack.pop_back_val();
597 if (Current->IsUnimportable)
continue;
598 Current->IsAvailable =
true;
599 auto SubmodulesRange = Current->submodules();
600 Stack.insert(Stack.end(), SubmodulesRange.begin(),
601 SubmodulesRange.end());
605 LoadedModules.clear();
612 bool AllowPCHWithCompilerErrors,
void *DeserializationListener,
613 bool OwnDeserializationListener) {
620 DeserializationListener, OwnDeserializationListener,
Preamble,
625 StringRef
Path, StringRef Sysroot,
630 ArrayRef<std::shared_ptr<ModuleFileExtension>> Extensions,
631 ArrayRef<std::shared_ptr<DependencyCollector>> DependencyCollectors,
632 void *DeserializationListener,
bool OwnDeserializationListener,
633 bool Preamble,
bool UseGlobalModuleIndex) {
637 PP, ModuleCache, &Context, PCHContainerRdr, Extensions,
638 Sysroot.empty() ?
"" : Sysroot.data(), DisableValidation,
639 AllowPCHWithCompilerErrors,
false,
641 UseGlobalModuleIndex));
647 Reader->setDeserializationListener(
649 OwnDeserializationListener);
651 for (
auto &Listener : DependencyCollectors)
652 Listener->attachToASTReader(*Reader);
654 auto Listener = std::make_unique<ReadModuleNames>(PP);
655 auto &ListenerRef = *Listener;
657 std::move(Listener));
659 switch (Reader->ReadAST(
Path,
668 ListenerRef.registerAll();
684 ListenerRef.markAllUnavailable();
711 if (!CompletionConsumer) {
724 FrontendTimerGroup.reset(
725 new llvm::TimerGroup(
"frontend",
"Clang front-end time report"));
727 new llvm::Timer(
"frontend",
"Clang front-end timer",
728 *FrontendTimerGroup));
748 TUKind, CompletionConsumer));
754 if (ExternalSemaSrc) {
755 TheSema->addExternalSource(ExternalSemaSrc.get());
756 ExternalSemaSrc->InitializeSema(*TheSema);
762 (void)TheSema->APINotes.loadCurrentModuleAPINotes(
774 for (OutputFile &OF : OutputFiles) {
777 consumeError(OF.File->discard());
778 if (!OF.Filename.empty())
779 llvm::sys::fs::remove(OF.Filename);
786 if (OF.File->TmpName.empty()) {
787 consumeError(OF.File->discard());
791 llvm::Error
E = OF.File->keep(OF.Filename);
796 << OF.File->TmpName << OF.Filename << std::move(
E);
798 llvm::sys::fs::remove(OF.File->TmpName);
801 if (DeleteBuiltModules) {
802 for (
auto &
Module : BuiltModules)
803 llvm::sys::fs::remove(
Module.second);
804 BuiltModules.clear();
809 bool Binary, StringRef InFile, StringRef Extension,
bool RemoveFileOnSignal,
810 bool CreateMissingDirectories,
bool ForceUseTemporary) {
812 std::optional<SmallString<128>> PathStorage;
813 if (OutputPath.empty()) {
814 if (InFile ==
"-" || Extension.empty()) {
817 PathStorage.emplace(InFile);
818 llvm::sys::path::replace_extension(*PathStorage, Extension);
819 OutputPath = *PathStorage;
825 CreateMissingDirectories);
829 return std::make_unique<llvm::raw_null_ostream>();
832std::unique_ptr<raw_pwrite_stream>
834 bool RemoveFileOnSignal,
bool UseTemporary,
835 bool CreateMissingDirectories) {
837 createOutputFileImpl(OutputPath, Binary, RemoveFileOnSignal, UseTemporary,
838 CreateMissingDirectories);
840 return std::move(*OS);
842 << OutputPath << errorToErrorCode(OS.takeError()).message();
847CompilerInstance::createOutputFileImpl(StringRef OutputPath,
bool Binary,
848 bool RemoveFileOnSignal,
850 bool CreateMissingDirectories) {
851 assert((!CreateMissingDirectories || UseTemporary) &&
852 "CreateMissingDirectories is only allowed when using temporary files");
856 std::optional<SmallString<128>> AbsPath;
857 if (OutputPath !=
"-" && !llvm::sys::path::is_absolute(OutputPath)) {
859 "File Manager is required to fix up relative path.\n");
861 AbsPath.emplace(OutputPath);
862 FileMgr->FixupRelativePath(*AbsPath);
863 OutputPath = *AbsPath;
866 std::unique_ptr<llvm::raw_fd_ostream> OS;
867 std::optional<StringRef> OSFile;
870 if (OutputPath ==
"-")
871 UseTemporary =
false;
873 llvm::sys::fs::file_status Status;
874 llvm::sys::fs::status(OutputPath, Status);
875 if (llvm::sys::fs::exists(Status)) {
877 if (!llvm::sys::fs::can_write(OutputPath))
878 return llvm::errorCodeToError(
883 if (!llvm::sys::fs::is_regular_file(Status))
884 UseTemporary =
false;
889 std::optional<llvm::sys::fs::TempFile> Temp;
895 StringRef OutputExtension = llvm::sys::path::extension(OutputPath);
897 StringRef(OutputPath).drop_back(OutputExtension.size());
898 TempPath +=
"-%%%%%%%%";
899 TempPath += OutputExtension;
901 llvm::sys::fs::OpenFlags BinaryFlags =
902 Binary ? llvm::sys::fs::OF_None : llvm::sys::fs::OF_Text;
904 llvm::sys::fs::TempFile::create(
905 TempPath, llvm::sys::fs::all_read | llvm::sys::fs::all_write,
908 llvm::Error
E = handleErrors(
909 ExpectedFile.takeError(), [&](
const llvm::ECError &
E) -> llvm::Error {
910 std::error_code EC = E.convertToErrorCode();
911 if (CreateMissingDirectories &&
912 EC == llvm::errc::no_such_file_or_directory) {
913 StringRef Parent = llvm::sys::path::parent_path(OutputPath);
914 EC = llvm::sys::fs::create_directories(Parent);
916 ExpectedFile = llvm::sys::fs::TempFile::create(
917 TempPath, llvm::sys::fs::all_read | llvm::sys::fs::all_write,
920 return llvm::errorCodeToError(
921 llvm::errc::no_such_file_or_directory);
924 return llvm::errorCodeToError(EC);
928 consumeError(std::move(
E));
930 Temp = std::move(ExpectedFile.get());
931 OS.reset(
new llvm::raw_fd_ostream(Temp->FD,
false));
932 OSFile = Temp->TmpName;
942 OS.reset(
new llvm::raw_fd_ostream(
944 (Binary ? llvm::sys::fs::OF_None : llvm::sys::fs::OF_TextWithCRLF)));
946 return llvm::errorCodeToError(EC);
951 OutputFiles.emplace_back(((OutputPath !=
"-") ? OutputPath :
"").str(),
954 if (!Binary || OS->supportsSeeking())
955 return std::move(OS);
957 return std::make_unique<llvm::buffer_unique_ostream>(std::move(OS));
981 "Couldn't establish MainFileID!");
985 StringRef InputFile = Input.
getFile();
988 auto FileOrErr = InputFile ==
"-"
992 auto EC = llvm::errorToErrorCode(FileOrErr.takeError());
993 if (InputFile !=
"-")
994 Diags.
Report(diag::err_fe_error_reading) << InputFile << EC.message();
996 Diags.
Report(diag::err_fe_error_reading_stdin) << EC.message();
1004 "Couldn't establish MainFileID!");
1011 assert(
hasDiagnostics() &&
"Diagnostics engine is not initialized!");
1013 assert(!
getFrontendOpts().ShowVersion &&
"Client must handle '-version'!");
1020 auto FinishDiagnosticClient = llvm::make_scope_exit([&]() {
1039 OS <<
"clang -cc1 version " CLANG_VERSION_STRING <<
" based upon LLVM "
1040 << LLVM_VERSION_STRING <<
" default target "
1041 << llvm::sys::getDefaultTargetTriple() <<
"\n";
1047 llvm::EnableStatistics(
false);
1061 if (llvm::Error Err = Act.
Execute()) {
1062 consumeError(std::move(Err));
1075 llvm::PrintStatistics(OS);
1078 if (!StatsFile.empty()) {
1079 llvm::sys::fs::OpenFlags FileFlags = llvm::sys::fs::OF_TextWithCRLF;
1081 FileFlags |= llvm::sys::fs::OF_Append;
1084 std::make_unique<llvm::raw_fd_ostream>(StatsFile, EC, FileFlags);
1087 << StatsFile << EC.message();
1089 llvm::PrintStatisticsJSON(*StatS);
1108 OS << NumWarnings <<
" warning" << (NumWarnings == 1 ?
"" :
"s");
1109 if (NumWarnings && NumErrors)
1112 OS << NumErrors <<
" error" << (NumErrors == 1 ?
"" :
"s");
1113 if (NumWarnings || NumErrors) {
1117 OS <<
" when compiling for host";
1130 if (llvm::sys::DynamicLibrary::LoadLibraryPermanently(
Path.c_str(), &Error))
1136 for (
const FrontendPluginRegistry::entry &Plugin :
1137 FrontendPluginRegistry::entries()) {
1138 std::unique_ptr<PluginASTAction>
P(Plugin.instantiate());
1150 if (LangOpts.OpenCL)
1165 StringRef OriginalModuleMapFile, StringRef ModuleFileName,
1170 llvm::TimeTraceScope TimeScope(
"Module Compile", ModuleName);
1176 ImportLoc, diag::err_module_rebuild_finalized)
1183 std::make_shared<CompilerInvocation>(ImportingInstance.
getInvocation());
1194 llvm::erase_if(PPOpts.
Macros,
1195 [&HSOpts](
const std::pair<std::string, bool> &def) {
1196 StringRef MacroDef = def.first;
1197 return HSOpts.ModulesIgnoreMacros.contains(
1198 llvm::CachedHashString(MacroDef.split(
'=').first));
1202 Invocation->getLangOpts().ModuleName =
1206 Invocation->getLangOpts().CurrentModule = std::string(ModuleName);
1212 FrontendOpts.
OutputFile = ModuleFileName.str();
1219 FrontendOpts.
Inputs = {Input};
1226 DiagOpts.VerifyDiagnostics = 0;
1228 Invocation->getModuleHash() &&
"Module hash mismatch!");
1236 auto &
Inv = *Invocation;
1237 Instance.setInvocation(std::move(Invocation));
1244 Instance.getDiagnostics().setSuppressSystemWarnings(
false);
1251 Instance.createSourceManager(Instance.getFileManager());
1275 diag::remark_module_build)
1276 << ModuleName << ModuleFileName;
1278 PreBuildStep(Instance);
1282 bool Crashed = !llvm::CrashRecoveryContext().RunSafelyOnThread(
1285 Instance.ExecuteAction(Action);
1289 PostBuildStep(Instance);
1292 diag::remark_module_build_done)
1302 Instance.setSema(
nullptr);
1303 Instance.setASTConsumer(
nullptr);
1306 Instance.clearOutputFiles(
true);
1311 return !Instance.getDiagnostics().hasErrorOccurred() ||
1312 Instance.getFrontendOpts().AllowPCMWithCompilerErrors;
1317 StringRef
Filename = llvm::sys::path::filename(
File.getName());
1319 if (
Filename ==
"module_private.map")
1320 llvm::sys::path::append(PublicFilename,
"module.map");
1321 else if (
Filename ==
"module.private.modulemap")
1322 llvm::sys::path::append(PublicFilename,
"module.modulemap");
1324 return std::nullopt;
1333 StringRef ModuleFileName) {
1356 assert(ModuleMapFile &&
"Top-level module map with no FileID");
1363 ModuleMapFile = PublicMMFile;
1378 llvm::sys::path::append(FakeModuleMapFile,
"__inferred_module.map");
1380 std::string InferredModuleMapContent;
1381 llvm::raw_string_ostream OS(InferredModuleMapContent);
1391 std::unique_ptr<llvm::MemoryBuffer> ModuleMapBuffer =
1392 llvm::MemoryBuffer::getMemBuffer(InferredModuleMapContent);
1393 FileEntryRef ModuleMapFile = Instance.getFileManager().getVirtualFileRef(
1394 FakeModuleMapFile, InferredModuleMapContent.size(), 0);
1395 Instance.getSourceManager().overrideFileContents(
1396 ModuleMapFile, std::move(ModuleMapBuffer));
1425 ModuleLoadCapabilities);
1437 Diags.
Report(ModuleNameLoc, diag::err_module_not_built)
1449 StringRef ModuleFileName) {
1453 diag::err_module_not_built)
1476 Diags.
Report(ModuleNameLoc, diag::remark_module_lock)
1481 StringRef Dir = llvm::sys::path::parent_path(ModuleFileName);
1482 llvm::sys::fs::create_directories(Dir);
1485 llvm::LockFileManager Locked(ModuleFileName);
1487 case llvm::LockFileManager::LFS_Error:
1491 Diags.
Report(ModuleNameLoc, diag::remark_module_lock_failure)
1494 Locked.unsafeRemoveLockFile();
1496 case llvm::LockFileManager::LFS_Owned:
1499 ModuleNameLoc,
Module, ModuleFileName);
1501 case llvm::LockFileManager::LFS_Shared:
1507 switch (Locked.waitForUnlock()) {
1508 case llvm::LockFileManager::Res_Success:
1510 case llvm::LockFileManager::Res_OwnerDied:
1512 case llvm::LockFileManager::Res_Timeout:
1516 Diags.
Report(ModuleNameLoc, diag::remark_module_lock_timeout)
1519 Locked.unsafeRemoveLockFile();
1524 bool OutOfDate =
false;
1526 Module, ModuleFileName, &OutOfDate))
1565 if (!
Id->hadMacroDefinition())
1571 for (
auto *MD = LatestLocalMD; MD; MD = MD->getPrevious()) {
1576 if (
auto *DMD = dyn_cast<DefMacroDirective>(MD))
1577 CmdLineDefinition = DMD->getMacroInfo();
1582 if (CurrentDefinition == CmdLineDefinition) {
1584 }
else if (!CurrentDefinition) {
1587 PP.
Diag(ImportLoc, diag::warn_module_config_macro_undef)
1589 auto LatestDef = LatestLocalMD->getDefinition();
1590 assert(LatestDef.isUndefined() &&
1591 "predefined macro went away with no #undef?");
1592 PP.
Diag(LatestDef.getUndefLocation(), diag::note_module_def_undef_here)
1595 }
else if (!CmdLineDefinition) {
1598 PP.
Diag(ImportLoc, diag::warn_module_config_macro_undef)
1600 PP.
Diag(CurrentDefinition->getDefinitionLoc(),
1601 diag::note_module_def_undef_here)
1603 }
else if (!CurrentDefinition->isIdenticalTo(*CmdLineDefinition, PP,
1606 PP.
Diag(ImportLoc, diag::warn_module_config_macro_undef)
1608 PP.
Diag(CurrentDefinition->getDefinitionLoc(),
1609 diag::note_module_def_undef_here)
1617 for (
const StringRef ConMacro : TopModule->
ConfigMacros) {
1625 llvm::raw_fd_ostream Out(TimestampFile.str(), EC, llvm::sys::fs::OF_None);
1631 llvm::sys::fs::file_status StatBuf;
1634 assert(!TimestampFile.empty());
1635 llvm::sys::path::append(TimestampFile,
"modules.timestamp");
1638 if (std::error_code EC = llvm::sys::fs::status(TimestampFile, StatBuf)) {
1640 if (EC == std::errc::no_such_file_or_directory) {
1648 time_t TimeStampModTime =
1649 llvm::sys::toTimeT(StatBuf.getLastModificationTime());
1650 time_t CurrentTime = time(
nullptr);
1663 llvm::sys::path::native(HSOpts.
ModuleCachePath, ModuleCachePathNative);
1664 for (llvm::sys::fs::directory_iterator Dir(ModuleCachePathNative, EC), DirEnd;
1665 Dir != DirEnd && !EC; Dir.increment(EC)) {
1667 if (!llvm::sys::fs::is_directory(Dir->path()))
1671 for (llvm::sys::fs::directory_iterator
File(Dir->path(), EC), FileEnd;
1672 File != FileEnd && !EC;
File.increment(EC)) {
1674 StringRef Extension = llvm::sys::path::extension(
File->path());
1675 if (Extension !=
".pcm" && Extension !=
".timestamp" &&
1676 llvm::sys::path::filename(
File->path()) !=
"modules.idx")
1681 if (llvm::sys::fs::status(
File->path(), StatBuf))
1685 time_t FileAccessTime = llvm::sys::toTimeT(StatBuf.getLastAccessedTime());
1686 if (CurrentTime - FileAccessTime <=
1692 llvm::sys::fs::remove(
File->path());
1695 std::string TimpestampFilename =
File->path() +
".timestamp";
1696 llvm::sys::fs::remove(TimpestampFilename);
1701 if (llvm::sys::fs::directory_iterator(Dir->path(), EC) ==
1702 llvm::sys::fs::directory_iterator() && !EC)
1703 llvm::sys::fs::remove(Dir->path());
1717 !
getPreprocessor().getHeaderSearchInfo().getModuleCachePath().empty() &&
1724 std::string Sysroot = HSOpts.
Sysroot;
1727 std::unique_ptr<llvm::Timer> ReadTimer;
1729 if (FrontendTimerGroup)
1730 ReadTimer = std::make_unique<llvm::Timer>(
"reading_modules",
1732 *FrontendTimerGroup);
1736 Sysroot.empty() ?
"" : Sysroot.c_str(),
1743 TheASTReader->setDeserializationListener(
1750 TheASTReader->InitializeSema(
getSema());
1754 for (
auto &Listener : DependencyCollectors)
1755 Listener->attachToASTReader(*TheASTReader);
1761 if (FrontendTimerGroup)
1763 *FrontendTimerGroup);
1764 llvm::TimeRegion TimeLoading(FrontendTimerGroup ? &Timer :
nullptr);
1772 bool ConfigMismatchIsRecoverable =
1777 auto Listener = std::make_unique<ReadModuleNames>(*PP);
1778 auto &ListenerRef = *Listener;
1780 std::move(Listener));
1783 switch (TheASTReader->ReadAST(
1786 &LoadedModuleFile)) {
1790 ListenerRef.registerAll();
1799 ListenerRef.markAllUnavailable();
1811 MS_PrebuiltModulePath,
1812 MS_ModuleBuildPragma
1819 Module *M, StringRef ModuleName, std::string &ModuleFilename,
1820 const std::map<std::string, std::string, std::less<>> &BuiltModules,
1822 assert(ModuleFilename.empty() &&
"Already has a module source?");
1826 auto BuiltModuleIt = BuiltModules.find(ModuleName);
1827 if (BuiltModuleIt != BuiltModules.end()) {
1828 ModuleFilename = BuiltModuleIt->second;
1829 return MS_ModuleBuildPragma;
1839 if (!ModuleFilename.empty())
1840 return MS_PrebuiltModulePath;
1846 return MS_ModuleCache;
1849 return MS_ModuleNotFound;
1858 HS.
lookupModule(ModuleName, ImportLoc,
true, !IsInclusionDirective);
1868 std::string ModuleFilename;
1869 ModuleSource Source =
1871 if (Source == MS_ModuleNotFound) {
1874 << ModuleName <<
SourceRange(ImportLoc, ModuleNameLoc);
1877 if (ModuleFilename.empty()) {
1895 if (FrontendTimerGroup)
1896 Timer.init(
"loading." + ModuleFilename,
"Loading " + ModuleFilename,
1897 *FrontendTimerGroup);
1898 llvm::TimeRegion TimeLoading(FrontendTimerGroup ? &Timer :
nullptr);
1899 llvm::TimeTraceScope TimeScope(
"Module Load", ModuleName);
1903 unsigned ARRFlags = Source == MS_ModuleCache
1906 : Source == MS_PrebuiltModulePath
1910 Source == MS_PrebuiltModulePath
1912 : Source == MS_ModuleBuildPragma
1915 ImportLoc, ARRFlags)) {
1919 assert(Source != MS_ModuleCache &&
1920 "missing module, but file loaded from cache");
1924 M = HS.
lookupModule(ModuleName, ImportLoc,
true, !IsInclusionDirective);
1928 if (
auto ModuleFile = FileMgr->getFile(ModuleFilename))
1943 if (Source == MS_PrebuiltModulePath)
1947 diag::warn_module_config_mismatch)
1964 if (Source != MS_ModuleCache) {
1972 assert(M &&
"missing module, but trying to compile for cache");
1976 ModuleBuildStack::iterator Pos = ModPath.begin(), PosEnd = ModPath.end();
1977 for (; Pos != PosEnd; ++Pos) {
1978 if (Pos->first == ModuleName)
1982 if (Pos != PosEnd) {
1984 for (; Pos != PosEnd; ++Pos) {
1985 CyclePath += Pos->first;
1986 CyclePath +=
" -> ";
1988 CyclePath += ModuleName;
1991 << ModuleName << CyclePath;
1996 if (FailedModules && FailedModules->hasAlreadyFailed(ModuleName)) {
1998 << ModuleName <<
SourceRange(ImportLoc, ModuleNameLoc);
2006 "undiagnosed error in compileModuleAndReadAST");
2008 FailedModules->addFailed(ModuleName);
2020 bool IsInclusionDirective) {
2022 StringRef ModuleName =
Path[0].first->getName();
2028 if (ImportLoc.
isValid() && LastModuleImportLoc == ImportLoc) {
2030 if (LastModuleImportResult && ModuleName !=
getLangOpts().CurrentModule)
2031 TheASTReader->makeModuleVisible(LastModuleImportResult,
Visibility,
2033 return LastModuleImportResult;
2047 }
else if (ModuleName ==
getLangOpts().CurrentModule) {
2050 ModuleName, ImportLoc,
true,
2051 !IsInclusionDirective);
2062 ModuleName, ImportLoc, ModuleNameLoc, IsInclusionDirective);
2066 DisableGeneratingGlobalModuleIndex =
true;
2078 bool MapPrivateSubModToTopLevel =
false;
2079 for (
unsigned I = 1, N =
Path.size(); I != N; ++I) {
2080 StringRef Name =
Path[I].first->getName();
2089 PrivateModule.append(
"_Private");
2094 PrivPath.push_back(std::make_pair(&II,
Path[0].second));
2099 !IsInclusionDirective) ||
2104 MapPrivateSubModToTopLevel =
true;
2107 diag::warn_no_priv_submodule_use_toplevel, ImportLoc)) {
2109 diag::warn_no_priv_submodule_use_toplevel)
2115 diag::note_private_top_level_defined);
2123 unsigned BestEditDistance = (std::numeric_limits<unsigned>::max)();
2127 Name.edit_distance(SubModule->Name,
2128 true, BestEditDistance);
2129 if (ED <= BestEditDistance) {
2130 if (ED < BestEditDistance) {
2132 BestEditDistance = ED;
2135 Best.push_back(SubModule->Name);
2140 if (Best.size() == 1) {
2185 LastModuleImportLoc = ImportLoc;
2199 LastModuleImportLoc = ImportLoc;
2201 return LastModuleImportResult;
2205 StringRef ModuleName,
2209 for (
auto &
C : CleanModuleName)
2217 if (std::error_code EC = llvm::sys::fs::createTemporaryFile(
2218 CleanModuleName,
"pcm", ModuleFileName)) {
2220 << ModuleFileName << EC.message();
2223 std::string ModuleMapFileName = (CleanModuleName +
".map").str();
2230 std::string NullTerminatedSource(Source.str());
2236 ModuleMapFileName, NullTerminatedSource.size(), 0);
2237 Other.getSourceManager().overrideFileContents(
2238 ModuleMapFile, llvm::MemoryBuffer::getMemBuffer(NullTerminatedSource));
2240 Other.BuiltModules = std::move(BuiltModules);
2241 Other.DeleteBuiltModules =
false;
2245 BuiltModules = std::move(
Other.BuiltModules);
2250 ModuleFileName, PreBuildStep, PostBuildStep)) {
2251 BuiltModules[std::string(ModuleName)] = std::string(ModuleFileName);
2252 llvm::sys::RemoveFileOnSignal(ModuleFileName);
2264 TheASTReader->makeModuleVisible(Mod,
Visibility, ImportLoc);
2269 if (
getPreprocessor().getHeaderSearchInfo().getModuleCachePath().empty())
2278 TheASTReader->loadGlobalIndex();
2283 llvm::sys::fs::create_directories(
2292 consumeError(std::move(Err));
2295 TheASTReader->resetForReload();
2296 TheASTReader->loadGlobalIndex();
2297 GlobalIndex = TheASTReader->getGlobalIndex();
2301 if (!HaveFullGlobalModuleIndex && GlobalIndex && !
buildingModule()) {
2303 bool RecreateIndex =
false;
2306 Module *TheModule = I->second;
2310 Path.push_back(std::make_pair(
2312 std::reverse(
Path.begin(),
Path.end());
2315 RecreateIndex =
true;
2318 if (RecreateIndex) {
2323 consumeError(std::move(Err));
2326 TheASTReader->resetForReload();
2327 TheASTReader->loadGlobalIndex();
2328 GlobalIndex = TheASTReader->getGlobalIndex();
2330 HaveFullGlobalModuleIndex =
true;
2364 ExternalSemaSrc = std::move(ESS);
Defines the clang::ASTContext interface.
Defines the Diagnostic-related interfaces.
static void collectVFSEntries(CompilerInstance &CI, std::shared_ptr< ModuleDependencyCollector > MDC)
static bool compileModuleImpl(CompilerInstance &ImportingInstance, SourceLocation ImportLoc, StringRef ModuleName, FrontendInputFile Input, StringRef OriginalModuleMapFile, StringRef ModuleFileName, llvm::function_ref< void(CompilerInstance &)> PreBuildStep=[](CompilerInstance &) {}, llvm::function_ref< void(CompilerInstance &)> PostBuildStep=[](CompilerInstance &) {})
Compile a module file for the given module, using the options provided by the importing compiler inst...
static bool EnableCodeCompletion(Preprocessor &PP, StringRef Filename, unsigned Line, unsigned Column)
static void pruneModuleCache(const HeaderSearchOptions &HSOpts)
Prune the module cache of modules that haven't been accessed in a long time.
static bool compileModuleAndReadASTImpl(CompilerInstance &ImportingInstance, SourceLocation ImportLoc, SourceLocation ModuleNameLoc, Module *Module, StringRef ModuleFileName)
Compile a module in a separate compiler instance and read the AST, returning true if the module compi...
static bool compileModuleAndReadASTBehindLock(CompilerInstance &ImportingInstance, SourceLocation ImportLoc, SourceLocation ModuleNameLoc, Module *Module, StringRef ModuleFileName)
Compile a module in a separate compiler instance and read the AST, returning true if the module compi...
static bool readASTAfterCompileModule(CompilerInstance &ImportingInstance, SourceLocation ImportLoc, SourceLocation ModuleNameLoc, Module *Module, StringRef ModuleFileName, bool *OutOfDate)
Read the AST right after compiling the module.
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)
static ModuleSource selectModuleSource(Module *M, StringRef ModuleName, std::string &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 void SetUpDiagnosticLog(DiagnosticOptions *DiagOpts, const CodeGenOptions *CodeGenOpts, DiagnosticsEngine &Diags)
static void writeTimestampFile(StringRef TimestampFile)
Write a new timestamp file with the given path.
static void InitializeFileRemapping(DiagnosticsEngine &Diags, SourceManager &SourceMgr, FileManager &FileMgr, const PreprocessorOptions &InitOpts)
static bool compileModule(CompilerInstance &ImportingInstance, SourceLocation ImportLoc, Module *Module, StringRef ModuleFileName)
Compile a module file for the given module in a separate compiler instance, using the options provide...
static void SetupSerializedDiagnostics(DiagnosticOptions *DiagOpts, DiagnosticsEngine &Diags, StringRef OutputFile)
static void collectIncludePCH(CompilerInstance &CI, std::shared_ptr< ModuleDependencyCollector > MDC)
static OptionalFileEntryRef getPublicModuleMap(FileEntryRef File, FileManager &FileMgr)
static void checkConfigMacros(Preprocessor &PP, Module *M, SourceLocation ImportLoc)
static bool compileModuleAndReadAST(CompilerInstance &ImportingInstance, SourceLocation ImportLoc, SourceLocation ModuleNameLoc, Module *Module, StringRef ModuleFileName)
Compile a module in a separate compiler instance and read the AST, returning true if the module compi...
Defines the clang::FileManager interface and associated types.
Defines the clang::FrontendAction interface and various convenience abstract classes (clang::ASTFront...
llvm::MachO::Target Target
Defines the clang::Preprocessor interface.
Defines the SourceManager interface.
Defines utilities for dealing with stack allocation and stack space.
Defines version macros and version-related utility functions for Clang.
std::vector< std::string > ModuleSearchPaths
The set of search paths where we API notes can be found for particular modules.
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.
Reads an AST files chain containing the contents of a translation unit.
@ 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 InMemoryModuleCache &ModuleCache, 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.
void setFileManager(FileManager *Value)
Replace the current file manager and virtual file system.
void setSourceManager(SourceManager *Value)
setSourceManager - Replace the current source manager.
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 createSourceManager(FileManager &FileMgr)
Create the source manager and replace any existing one with it.
void createDiagnostics(DiagnosticConsumer *Client=nullptr, bool ShouldOwnClient=true)
Create the diagnostics engine using the invocation's diagnostic options and replace any existing one ...
FileManager * createFileManager(IntrusiveRefCntPtr< llvm::vfs::FileSystem > VFS=nullptr)
Create the file manager and replace any existing one with it.
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.
std::unique_ptr< raw_pwrite_stream > createDefaultOutputFile(bool Binary=true, StringRef BaseInput="", StringRef Extension="", bool RemoveFileOnSignal=true, bool CreateMissingDirectories=false, bool ForceUseTemporary=false)
Create the default output file (from the invocation's options) and add it to the list of tracked outp...
void setExternalSemaSource(IntrusiveRefCntPtr< ExternalSemaSource > ESS)
std::string getSpecificModuleCachePath()
ModuleLoadResult loadModule(SourceLocation ImportLoc, ModuleIdPath Path, Module::NameVisibilityKind Visibility, bool IsInclusionDirective) override
Attempt to load the given module.
void setInvocation(std::shared_ptr< CompilerInvocation > Value)
setInvocation - Replace the current invocation.
std::shared_ptr< FailedModulesSet > getFailedModulesSetPtr() const
FileSystemOptions & getFileSystemOpts()
bool InitializeSourceManager(const FrontendInputFile &Input)
InitializeSourceManager - Initialize the source manager to set InputFile as the main file.
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.
std::unique_ptr< Sema > takeSema()
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< ASTReader > getASTReader() const
void setTarget(TargetInfo *Value)
Replace the current Target.
void setModuleDepCollector(std::shared_ptr< ModuleDependencyCollector > Collector)
InMemoryModuleCache & getModuleCache() const
void addDependencyCollector(std::shared_ptr< DependencyCollector > Listener)
void createASTContext()
Create the AST context.
std::unique_ptr< raw_pwrite_stream > createOutputFile(StringRef OutputPath, bool Binary, bool RemoveFileOnSignal, bool UseTemporary, bool CreateMissingDirectories=false)
Create a new output file, optionally deriving the output path name, and add it to the list of tracked...
bool hasASTContext() const
void createModuleFromSource(SourceLocation ImportLoc, StringRef ModuleName, StringRef Source) override
Attempt to create the given module from the specified source buffer.
std::shared_ptr< HeaderSearchOptions > getHeaderSearchOptsPtr() const
void setASTContext(ASTContext *Value)
setASTContext - Replace the current AST context.
Preprocessor & getPreprocessor() const
Return the current preprocessor.
ASTContext & getASTContext() const
void LoadRequestedPlugins()
Load the list of plugins requested in the FrontendOptions.
TargetOptions & getTargetOpts()
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.
HeaderSearchOptions & getHeaderSearchOpts()
void createFrontendTimer()
Create the frontend timer and replace any existing one with it.
void setDiagnostics(DiagnosticsEngine *Value)
setDiagnostics - Replace the current diagnostics engine.
bool hasFailedModulesSet() const
CompilerInvocation & getInvocation()
void setVerboseOutputStream(raw_ostream &Value)
Replace the current stream for verbose output.
PreprocessorOptions & getPreprocessorOpts()
ASTConsumer & getASTConsumer() const
TargetInfo & getTarget() const
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()
CodeGenOptions & getCodeGenOpts()
SourceManager & getSourceManager() const
Return the current source manager.
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.
void createFailedModulesSet()
bool loadModuleFile(StringRef FileName, serialization::ModuleFile *&LoadedModuleFile)
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.
Helper class for holding the data necessary to invoke the compiler.
LangOptions & getLangOpts()
Mutable getters.
FrontendOptions & getFrontendOpts()
std::string getModuleHash() const
Retrieve a module hash string that is suitable for uniquely identifying the conditions under which th...
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
virtual void finish()
Callback to inform the diagnostic client that processing of all source files has ended.
unsigned getNumWarnings() const
Used for handling and querying diagnostic IDs.
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...
Cached information about one file (either on disk or in the virtual file system).
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.
llvm::vfs::FileSystem & getVirtualFileSystem() const
OptionalFileEntryRef getOptionalFileRef(StringRef Filename, bool OpenFile=false, bool CacheFailure=true)
Get a FileEntryRef if it exists, without doing anything on error.
llvm::Expected< FileEntryRef > getSTDIN()
Get the FileEntryRef for stdin, returning an error if stdin cannot be read.
const FileEntry * getVirtualFile(StringRef Filename, off_t Size, time_t ModificationTime)
FileEntryRef getVirtualFileRef(StringRef Filename, off_t Size, time_t ModificationTime)
Retrieve a file entry for a "virtual" file that acts as if there were a file with the given name on d...
OptionalDirectoryEntryRef getOptionalDirectoryRef(StringRef DirName, bool CacheFailure=true)
Get a DirectoryEntryRef if it exists, without doing anything on error.
llvm::Expected< FileEntryRef > getFileRef(StringRef Filename, bool OpenFile=false, bool CacheFailure=true)
Lookup, cache, and verify the specified file (real or virtual).
static FixItHint CreateReplacement(CharSourceRange RemoveRange, StringRef Code)
Create a code modification hint that replaces the given source range with the given code string.
Diagnostic consumer that forwards diagnostics along to an existing, already-initialized diagnostic co...
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.
A SourceLocation and its associated SourceManager.
A global index for a set of module files, providing information about the identifiers within those mo...
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.
tok::TokenKind getTokenID() const
If this is a source-language token (e.g.
IdentifierInfo & get(StringRef Name)
Return the identifier token info for the specified named identifier.
In-memory cache for modules.
bool isPCMFinal(llvm::StringRef Filename) const
Check whether the PCM is final and has been shown to work.
@ 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.
Describes the result of attempting to load a module.
Abstract interface for a module loader.
bool buildingModule() const
Returns true if this instance is building a module.
llvm::StringMap< Module * >::const_iterator module_iterator
Module * findModule(StringRef Name) const
Retrieve a module with the given name.
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.
Describes a module or submodule.
StringRef getTopLevelModuleName() const
Retrieve the name of the top-level module.
Module * findSubmodule(StringRef Name) const
Find the submodule with the given name.
std::vector< std::string > ConfigMacros
The set of "configuration macros", which are macros that (intentionally) change how this module is bu...
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.
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.
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.
Module * getTopLevelModule()
Retrieve the top-level module for this (sub)module, which may be this module.
OptionalFileEntryRef getASTFile() const
The serialized AST file for this module, if one was created.
This abstract interface provides operations for unwrapping containers for serialized ASTs (precompile...
@ 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...
void resetNonModularOptions()
Reset any options that are not considered when building a module.
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.
void markClangModuleAsAffecting(Module *M)
Mark the given clang module as affecting the current clang module or translation unit.
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.
const TranslationUnitKind TUKind
The kind of translation unit we are processing.
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
void setPredefines(std::string P)
Set the predefines for this Preprocessor.
IdentifierTable & getIdentifierTable()
Builtin::Context & getBuiltinInfo()
DiagnosticsEngine & getDiagnostics() const
SelectorTable & getSelectorTable()
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.
FileID getFileID(SourceLocation SpellingLoc) const
Return the FileID for a SourceLocation.
OptionalFileEntryRef getFileEntryRefForID(FileID FID) const
Returns the FileEntryRef for the provided FileID.
void setModuleBuildStack(ModuleBuildStack stack)
Set the module build stack.
FileID createFileID(FileEntryRef SourceFile, SourceLocation IncludePos, SrcMgr::CharacteristicKind FileCharacter, int LoadedID=0, SourceLocation::UIntTy LoadedOffset=0)
Create a new FileID that represents the specified file being #included from the specified IncludePosi...
void setOverridenFilesKeepOriginalName(bool value)
Set true if the SourceManager should report the original file name for contents of files that were ov...
ModuleBuildStack getModuleBuildStack() const
Retrieve the module build stack.
FileID getMainFileID() const
Returns the FileID of the main source file.
void pushModuleBuildStack(StringRef moduleName, FullSourceLoc importLoc)
Push an entry to the module build stack.
void overrideFileContents(FileEntryRef SourceFile, const llvm::MemoryBufferRef &Buffer)
Override the contents of the given source file by providing an already-allocated buffer.
SourceLocation getIncludeLoc(FileID FID) const
Returns the include location if FID is a #include'd file otherwise it returns an invalid location.
void setMainFileID(FileID FID)
Set the file ID for the main source file.
SrcMgr::CharacteristicKind getFileCharacteristic(SourceLocation Loc) const
Return the file characteristic of the specified source location, indicating whether this is a normal ...
A trivial tuple used to represent a source range.
Exposes information about the current target.
const llvm::Triple & getTriple() const
Returns the target triple of the primary target.
static TargetInfo * CreateTargetInfo(DiagnosticsEngine &Diags, const std::shared_ptr< TargetOptions > &Opts)
Construct a target for the given options.
virtual void setAuxTarget(const TargetInfo *Aux)
void noSignedCharForObjCBool()
virtual void adjust(DiagnosticsEngine &Diags, LangOptions &Opts)
Set forced language options.
std::string CPU
If given, the name of the target CPU to generate code for.
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...
@ PluginAction
Run a plugin action,.
@ RewriteObjC
ObjC->C Rewriter.
bool Inv(InterpState &S, CodePtr OpPC)
@ 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 *Diags, 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.
void ProcessWarningOptions(DiagnosticsEngine &Diags, const DiagnosticOptions &Opts, bool ReportDiags=true)
ProcessWarningOptions - Initialize the diagnostic client and process the warning options specified on...
void ApplyHeaderSearchOptions(HeaderSearch &HS, const HeaderSearchOptions &HSOpts, const LangOptions &Lang, const llvm::Triple &triple)
Apply the header search options to get given HeaderSearch object.
void noteBottomOfStack()
Call this once on each thread, as soon after starting the thread as feasible, to note the approximate...
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 ...
std::error_code make_error_code(BuildPreambleError Error)
LLVM_READONLY bool isAlphanumeric(unsigned char c)
Return true if this character is an ASCII letter or digit: [a-zA-Z0-9].
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.
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...
A source location that has been parsed on the command line.