23#include "clang/Config/config.h"
45#include "llvm/ADT/IntrusiveRefCntPtr.h"
46#include "llvm/ADT/STLExtras.h"
47#include "llvm/ADT/ScopeExit.h"
48#include "llvm/ADT/Statistic.h"
49#include "llvm/Config/llvm-config.h"
50#include "llvm/Plugins/PassPlugin.h"
51#include "llvm/Support/AdvisoryLock.h"
52#include "llvm/Support/BuryPointer.h"
53#include "llvm/Support/CrashRecoveryContext.h"
54#include "llvm/Support/Errc.h"
55#include "llvm/Support/FileSystem.h"
56#include "llvm/Support/MemoryBuffer.h"
57#include "llvm/Support/Path.h"
58#include "llvm/Support/Signals.h"
59#include "llvm/Support/TimeProfiler.h"
60#include "llvm/Support/Timer.h"
61#include "llvm/Support/VirtualFileSystem.h"
62#include "llvm/Support/VirtualOutputBackends.h"
63#include "llvm/Support/VirtualOutputError.h"
64#include "llvm/Support/raw_ostream.h"
65#include "llvm/TargetParser/Host.h"
72CompilerInstance::CompilerInstance(
73 std::shared_ptr<CompilerInvocation> Invocation,
74 std::shared_ptr<PCHContainerOperations> PCHContainerOps,
75 std::shared_ptr<ModuleCache> ModCache)
77 Invocation(
std::move(Invocation)),
78 ModCache(ModCache ?
std::move(ModCache)
80 ThePCHContainerOperations(
std::move(PCHContainerOps)) {
81 assert(this->Invocation &&
"Invocation must not be null");
85 assert(OutputFiles.empty() &&
"Still output files in flight?");
89 return (BuildGlobalModuleIndex ||
90 (TheASTReader && TheASTReader->isGlobalIndexUnavailable() &&
92 !DisableGeneratingGlobalModuleIndex;
97 Diagnostics = std::move(
Value);
101 OwnedVerboseOutputStream.reset();
102 VerboseOutputStream = &
Value;
106 OwnedVerboseOutputStream.swap(
Value);
107 VerboseOutputStream = OwnedVerboseOutputStream.get();
125 auto &TO = AuxTargetOpts = std::make_unique<TargetOptions>();
166 assert(
Value ==
nullptr ||
168 FileMgr = std::move(
Value);
173 SourceMgr = std::move(
Value);
177 PP = std::move(
Value);
182 Context = std::move(
Value);
184 if (Context && Consumer)
193 Consumer = std::move(
Value);
195 if (Context && Consumer)
200 CompletionConsumer.reset(
Value);
204 return std::move(TheSema);
211 assert(ModCache.get() == &Reader->getModuleManager().getModuleCache() &&
212 "Expected ASTReader to use the same PCM cache");
213 TheASTReader = std::move(Reader);
216std::shared_ptr<ModuleDependencyCollector>
218 return ModuleDepCollector;
222 std::shared_ptr<ModuleDependencyCollector> Collector) {
223 ModuleDepCollector = std::move(Collector);
227 std::shared_ptr<ModuleDependencyCollector> MDC) {
230 for (
auto &Name : HeaderMapFileNames)
235 std::shared_ptr<ModuleDependencyCollector> MDC) {
242 auto PCHDir =
FileMgr.getOptionalDirectoryRef(PCHInclude);
244 MDC->addFile(PCHInclude);
250 llvm::sys::path::native(PCHDir->getName(), DirNative);
251 llvm::vfs::FileSystem &FS =
FileMgr.getVirtualFileSystem();
253 for (llvm::vfs::directory_iterator Dir = FS.dir_begin(DirNative, EC), DirEnd;
254 Dir != DirEnd && !EC; Dir.increment(EC)) {
263 MDC->addFile(Dir->path());
268 std::shared_ptr<ModuleDependencyCollector> MDC) {
272 if (
auto *RedirectingVFS = dyn_cast<llvm::vfs::RedirectingFileSystem>(&VFS))
273 llvm::vfs::collectVFSEntries(*RedirectingVFS, VFSEntries);
276 for (
auto &E : VFSEntries)
277 MDC->addFile(E.VPath, E.RPath);
291 llvm::makeIntrusiveRefCnt<llvm::vfs::TracingFileSystem>(std::move(VFS));
299 std::unique_ptr<raw_ostream> StreamOwner;
300 raw_ostream *OS = &llvm::errs();
303 auto FileOS = std::make_unique<llvm::raw_fd_ostream>(
305 llvm::sys::fs::OF_Append | llvm::sys::fs::OF_TextWithCRLF);
307 Diags.
Report(diag::warn_fe_cc_log_diagnostics_failure)
310 FileOS->SetUnbuffered();
312 StreamOwner = std::move(FileOS);
317 auto Logger = std::make_unique<LogDiagnosticPrinter>(*OS, DiagOpts,
318 std::move(StreamOwner));
332 StringRef OutputFile) {
333 auto SerializedConsumer =
338 Diags.
takeClient(), std::move(SerializedConsumer)));
341 Diags.
getClient(), std::move(SerializedConsumer)));
346 bool ShouldOwnClient) {
355 auto Diags = llvm::makeIntrusiveRefCnt<DiagnosticsEngine>(
361 Diags->setClient(Client, ShouldOwnClient);
368 if (Opts.VerifyDiagnostics)
387 assert(VFS &&
"CompilerInstance needs a VFS for creating FileManager");
394 assert(Diagnostics &&
"DiagnosticsEngine needed for creating SourceManager");
395 assert(FileMgr &&
"FileManager needed for creating SourceManager");
396 SourceMgr = llvm::makeIntrusiveRefCnt<SourceManager>(
getDiagnostics(),
410 FileMgr.getVirtualFileRef(RB.first, RB.second->getBufferSize(), 0);
417 SourceMgr.overrideFileContents(FromFile, RB.second->getMemBufferRef());
419 SourceMgr.overrideFileContents(
420 FromFile, std::unique_ptr<llvm::MemoryBuffer>(RB.second));
428 Diags.
Report(diag::err_fe_remap_missing_to_file) << RF.first << RF.second;
438 SourceMgr.overrideFileContents(FromFile, *ToFile);
441 SourceMgr.setOverridenFilesKeepOriginalName(
451 TheASTReader.reset();
457 PP = std::make_shared<Preprocessor>(Invocation->getPreprocessorOpts(),
466 PP->createPreprocessingRecord();
470 PP->getFileManager(), PPOpts);
479 const llvm::Triple *HeaderSearchTriple = &PP->getTargetInfo().getTriple();
480 if (PP->getTargetInfo().getTriple().getOS() == llvm::Triple::CUDA &&
481 PP->getAuxTargetInfo())
482 HeaderSearchTriple = &PP->getAuxTargetInfo()->getTriple();
485 PP->getLangOpts(), *HeaderSearchTriple);
489 if (PP->getLangOpts().Modules && PP->getLangOpts().ImplicitModules) {
491 PP->getHeaderSearchInfo().setContextHash(ContextHash);
492 PP->getHeaderSearchInfo().setSpecificModuleCachePath(
507 ModuleDepCollector = std::make_shared<ModuleDependencyCollector>(
513 if (ModuleDepCollector) {
524 for (
auto &Listener : DependencyCollectors)
525 Listener->attachToPreprocessor(*PP);
532 if (OutputPath ==
"-")
545 if (GetDependencyDirectives)
546 PP->setDependencyDirectivesGetter(*GetDependencyDirectives);
551 assert(FileMgr &&
"Specific module cache path requires a FileManager");
556 SpecificModuleCache);
558 llvm::sys::path::append(SpecificModuleCache, ContextHash);
559 return std::string(SpecificModuleCache);
566 auto Context = llvm::makeIntrusiveRefCnt<ASTContext>(
567 getLangOpts(), PP.getSourceManager(), PP.getIdentifierTable(),
568 PP.getSelectorTable(), PP.getBuiltinInfo(), PP.TUKind);
585 void ReadModuleName(StringRef ModuleName)
override {
588 LoadedModules.push_back(ModuleName.str());
593 for (
const std::string &LoadedModule : LoadedModules)
596 LoadedModules.clear();
599 void markAllUnavailable() {
600 for (
const std::string &LoadedModule : LoadedModules) {
603 M->HasIncompatibleModuleFile =
true;
607 SmallVector<Module *, 2> Stack;
609 while (!Stack.empty()) {
610 Module *Current = Stack.pop_back_val();
614 llvm::append_range(Stack, SubmodulesRange);
618 LoadedModules.clear();
625 bool AllowPCHWithCompilerErrors,
void *DeserializationListener,
626 bool OwnDeserializationListener) {
633 DeserializationListener, OwnDeserializationListener,
Preamble,
638 StringRef Path, StringRef Sysroot,
643 ArrayRef<std::shared_ptr<ModuleFileExtension>> Extensions,
644 ArrayRef<std::shared_ptr<DependencyCollector>> DependencyCollectors,
645 void *DeserializationListener,
bool OwnDeserializationListener,
646 bool Preamble,
bool UseGlobalModuleIndex) {
648 PP.getHeaderSearchInfo().getHeaderSearchOpts();
650 auto Reader = llvm::makeIntrusiveRefCnt<ASTReader>(
651 PP, ModCache, &Context, PCHContainerRdr, CodeGenOpts, Extensions,
652 Sysroot.empty() ?
"" : Sysroot.data(), DisableValidation,
653 AllowPCHWithCompilerErrors,
false,
660 Context.setExternalSource(Reader);
662 Reader->setDeserializationListener(
664 OwnDeserializationListener);
666 for (
auto &Listener : DependencyCollectors)
667 Listener->attachToASTReader(*Reader);
669 auto Listener = std::make_unique<ReadModuleNames>(PP);
670 auto &ListenerRef = *Listener;
672 std::move(Listener));
674 switch (Reader->ReadAST(Path,
682 PP.setPredefines(Reader->getSuggestedPredefines());
683 ListenerRef.registerAll();
699 ListenerRef.markAllUnavailable();
700 Context.setExternalSource(
nullptr);
726 if (!CompletionConsumer) {
739 timerGroup.reset(
new llvm::TimerGroup(
"clang",
"Clang time report"));
740 FrontendTimer.reset(
new llvm::Timer(
"frontend",
"Front end", *timerGroup));
760 TUKind, CompletionConsumer));
766 if (ExternalSemaSrc) {
767 TheSema->addExternalSource(ExternalSemaSrc);
768 ExternalSemaSrc->InitializeSema(*TheSema);
774 (void)TheSema->APINotes.loadCurrentModuleAPINotes(
786 for (
auto &O : OutputFiles)
787 llvm::handleAllErrors(
789 [&](
const llvm::vfs::TempFileOutputError &E) {
790 getDiagnostics().Report(diag::err_unable_to_rename_temp)
791 << E.getTempPath() << E.getOutputPath()
792 << E.convertToErrorCode().message();
794 [&](
const llvm::vfs::OutputError &E) {
795 getDiagnostics().Report(diag::err_fe_unable_to_open_output)
796 << E.getOutputPath() << E.convertToErrorCode().message();
798 [&](
const llvm::ErrorInfoBase &EIB) {
799 getDiagnostics().Report(diag::err_fe_unable_to_open_output)
800 << O.getPath() << EIB.message();
804 if (DeleteBuiltModules) {
805 for (
auto &
Module : BuiltModules)
806 llvm::sys::fs::remove(
Module.second);
807 BuiltModules.clear();
812 bool Binary, StringRef InFile, StringRef Extension,
bool RemoveFileOnSignal,
813 bool CreateMissingDirectories,
bool ForceUseTemporary) {
815 std::optional<SmallString<128>> PathStorage;
816 if (OutputPath.empty()) {
817 if (InFile ==
"-" || Extension.empty()) {
820 PathStorage.emplace(InFile);
821 llvm::sys::path::replace_extension(*PathStorage, Extension);
822 OutputPath = *PathStorage;
828 CreateMissingDirectories);
832 return std::make_unique<llvm::raw_null_ostream>();
839 assert(!OutputMgr &&
"Already has an output manager");
840 OutputMgr = std::move(NewOutputs);
844 assert(!OutputMgr &&
"Already has an output manager");
845 OutputMgr = llvm::makeIntrusiveRefCnt<llvm::vfs::OnDiskOutputBackend>();
859std::unique_ptr<raw_pwrite_stream>
861 bool RemoveFileOnSignal,
bool UseTemporary,
862 bool CreateMissingDirectories) {
864 createOutputFileImpl(OutputPath,
Binary, RemoveFileOnSignal, UseTemporary,
865 CreateMissingDirectories);
867 return std::move(*OS);
869 << OutputPath << errorToErrorCode(OS.takeError()).message();
874CompilerInstance::createOutputFileImpl(StringRef OutputPath,
bool Binary,
875 bool RemoveFileOnSignal,
877 bool CreateMissingDirectories) {
878 assert((!CreateMissingDirectories || UseTemporary) &&
879 "CreateMissingDirectories is only allowed when using temporary files");
883 std::optional<SmallString<128>> AbsPath;
884 if (OutputPath !=
"-" && !llvm::sys::path::is_absolute(OutputPath)) {
886 "File Manager is required to fix up relative path.\n");
888 AbsPath.emplace(OutputPath);
890 OutputPath = *AbsPath;
898 .setDiscardOnSignal(RemoveFileOnSignal)
899 .setAtomicWrite(UseTemporary)
900 .setImplyCreateDirectories(UseTemporary && CreateMissingDirectories));
902 return O.takeError();
904 O->discardOnDestroy([](llvm::Error E) { consumeError(std::move(E)); });
905 OutputFiles.push_back(std::move(*O));
906 return OutputFiles.back().createProxy();
928 SourceMgr.setMainFileID(SourceMgr.createFileID(Input.
getBuffer(), Kind));
929 assert(SourceMgr.getMainFileID().isValid() &&
930 "Couldn't establish MainFileID!");
934 StringRef InputFile = Input.
getFile();
937 auto FileOrErr = InputFile ==
"-"
939 : FileMgr.getFileRef(InputFile,
true);
941 auto EC = llvm::errorToErrorCode(FileOrErr.takeError());
942 if (InputFile !=
"-")
943 Diags.
Report(diag::err_fe_error_reading) << InputFile << EC.message();
945 Diags.
Report(diag::err_fe_error_reading_stdin) << EC.message();
949 SourceMgr.setMainFileID(
952 assert(SourceMgr.getMainFileID().isValid() &&
953 "Couldn't establish MainFileID!");
960 assert(
hasDiagnostics() &&
"Diagnostics engine is not initialized!");
962 assert(!
getFrontendOpts().ShowVersion &&
"Client must handle '-version'!");
969 llvm::scope_exit FinishDiagnosticClient([&]() {
988 OS <<
"clang -cc1 version " CLANG_VERSION_STRING <<
" based upon LLVM "
989 << LLVM_VERSION_STRING <<
" default target "
990 << llvm::sys::getDefaultTargetTriple() <<
"\n";
993 llvm::EnableStatistics(
false);
1007 if (llvm::Error Err = Act.
Execute()) {
1008 consumeError(std::move(Err));
1021 llvm::PrintStatistics(OS);
1024 if (!StatsFile.empty()) {
1025 llvm::sys::fs::OpenFlags FileFlags = llvm::sys::fs::OF_TextWithCRLF;
1027 FileFlags |= llvm::sys::fs::OF_Append;
1030 std::make_unique<llvm::raw_fd_ostream>(StatsFile, EC, FileFlags);
1033 << StatsFile << EC.message();
1035 llvm::PrintStatisticsJSON(*StatS);
1054 OS << NumWarnings <<
" warning" << (NumWarnings == 1 ?
"" :
"s");
1055 if (NumWarnings && NumErrors)
1058 OS << NumErrors <<
" error" << (NumErrors == 1 ?
"" :
"s");
1059 if (NumWarnings || NumErrors) {
1063 OS <<
" when compiling for host";
1065 OS <<
" when compiling for "
1078 if (llvm::sys::DynamicLibrary::LoadLibraryPermanently(Path.c_str(), &
Error))
1085 if (
auto PassPlugin = llvm::PassPlugin::Load(Path)) {
1086 PassPlugins.emplace_back(std::make_unique<llvm::PassPlugin>(*PassPlugin));
1089 << Path <<
toString(PassPlugin.takeError());
1094 for (
const FrontendPluginRegistry::entry &Plugin :
1095 FrontendPluginRegistry::entries()) {
1096 std::unique_ptr<PluginASTAction> P(Plugin.instantiate());
1108 if (LangOpts.OpenCL)
1117std::unique_ptr<CompilerInstance> CompilerInstance::cloneForModuleCompileImpl(
1119 StringRef OriginalModuleMapFile, StringRef ModuleFileName,
1120 std::optional<ThreadSafeCloneConfig> ThreadSafeConfig) {
1122 auto Invocation = std::make_shared<CompilerInvocation>(
getInvocation());
1124 PreprocessorOptions &PPOpts = Invocation->getPreprocessorOpts();
1128 Invocation->resetNonModularOptions();
1132 HeaderSearchOptions &HSOpts = Invocation->getHeaderSearchOpts();
1133 llvm::erase_if(PPOpts.
Macros,
1134 [&HSOpts](
const std::pair<std::string, bool> &def) {
1135 StringRef MacroDef = def.first;
1136 return HSOpts.ModulesIgnoreMacros.contains(
1137 llvm::CachedHashString(MacroDef.split(
'=').first));
1141 Invocation->getLangOpts().ModuleName =
1145 Invocation->getLangOpts().CurrentModule = std::string(ModuleName);
1150 FrontendOptions &FrontendOpts = Invocation->getFrontendOpts();
1151 FrontendOpts.
OutputFile = ModuleFileName.str();
1158 FrontendOpts.
Inputs = {std::move(Input)};
1163 DiagnosticOptions &DiagOpts = Invocation->getDiagnosticOpts();
1165 DiagOpts.VerifyDiagnostics = 0;
1168 "Module hash mismatch!");
1174 auto InstancePtr = std::make_unique<CompilerInstance>(
1176 auto &Instance = *InstancePtr;
1178 auto &
Inv = Instance.getInvocation();
1180 if (ThreadSafeConfig) {
1181 Instance.setVirtualFileSystem(ThreadSafeConfig->getVFS());
1182 Instance.createFileManager();
1188 Instance.createFileManager();
1191 if (ThreadSafeConfig) {
1192 Instance.createDiagnostics(&ThreadSafeConfig->getDiagConsumer(),
1195 Instance.createDiagnostics(
1200 Instance.getDiagnostics().setSuppressSystemWarnings(
false);
1202 Instance.createSourceManager();
1203 SourceManager &SourceMgr = Instance.getSourceManager();
1205 if (ThreadSafeConfig) {
1211 SourceMgr.pushModuleBuildStack(
1216 Instance.FailedModules = FailedModules;
1218 if (GetDependencyDirectives)
1219 Instance.GetDependencyDirectives =
1220 GetDependencyDirectives->cloneFor(Instance.getFileManager());
1222 if (ThreadSafeConfig) {
1223 Instance.setModuleDepCollector(ThreadSafeConfig->getModuleDepCollector());
1230 Inv.getDependencyOutputOpts() = DependencyOutputOptions();
1236 StringRef ModuleName,
1237 StringRef ModuleFileName,
1238 CompilerInstance &Instance) {
1239 llvm::TimeTraceScope TimeScope(
"Module Compile", ModuleName);
1243 if (
getModuleCache().getInMemoryModuleCache().isPCMFinal(ModuleFileName)) {
1250 << ModuleName << ModuleFileName;
1254 bool Crashed = !llvm::CrashRecoveryContext().RunSafelyOnNewStack(
1269 FailedModules = std::move(Instance.FailedModules);
1274 Instance.setSema(
nullptr);
1275 Instance.setASTConsumer(
nullptr);
1278 Instance.clearOutputFiles(
true);
1289 return !Instance.getDiagnostics().hasErrorOccurred() ||
1290 Instance.getFrontendOpts().AllowPCMWithCompilerErrors;
1295 StringRef Filename = llvm::sys::path::filename(
File.getName());
1297 if (Filename ==
"module_private.map")
1298 llvm::sys::path::append(PublicFilename,
"module.map");
1299 else if (Filename ==
"module.private.modulemap")
1300 llvm::sys::path::append(PublicFilename,
"module.modulemap");
1302 return std::nullopt;
1303 return FileMgr.getOptionalFileRef(PublicFilename);
1308 std::optional<ThreadSafeCloneConfig> ThreadSafeConfig) {
1324 while (Loc.
isValid() && isModuleMap(SourceMgr.getFileCharacteristic(Loc))) {
1325 ModuleMapFID = SourceMgr.getFileID(Loc);
1326 Loc = SourceMgr.getIncludeLoc(ModuleMapFID);
1330 SourceMgr.getFileEntryRefForID(ModuleMapFID);
1331 assert(ModuleMapFile &&
"Top-level module map with no FileID");
1338 ModuleMapFile = PublicMMFile;
1350 return cloneForModuleCompileImpl(
1351 ImportLoc, ModuleName,
1354 std::move(ThreadSafeConfig));
1362 llvm::sys::path::append(FakeModuleMapFile,
"__inferred_module.map");
1364 std::string InferredModuleMapContent;
1365 llvm::raw_string_ostream OS(InferredModuleMapContent);
1368 auto Instance = cloneForModuleCompileImpl(
1369 ImportLoc, ModuleName,
1372 std::move(ThreadSafeConfig));
1374 std::unique_ptr<llvm::MemoryBuffer> ModuleMapBuffer =
1375 llvm::MemoryBuffer::getMemBufferCopy(InferredModuleMapContent);
1376 FileEntryRef ModuleMapFile = Instance->getFileManager().getVirtualFileRef(
1377 FakeModuleMapFile, InferredModuleMapContent.size(), 0);
1378 Instance->getSourceManager().overrideFileContents(ModuleMapFile,
1379 std::move(ModuleMapBuffer));
1389 bool *OutOfDate,
bool *Missing) {
1400 ModuleLoadCapabilities);
1418 Diags.
Report(ModuleNameLoc, diag::err_module_not_built)
1430 StringRef ModuleFileName) {
1433 ModuleNameLoc,
Module, ModuleFileName);
1437 ModuleFileName, *Instance)) {
1439 diag::err_module_not_built)
1471 Diags.
Report(ModuleNameLoc, diag::remark_module_lock)
1480 if (llvm::Error Err = Lock->tryLock().moveInto(Owned)) {
1484 Diags.
Report(ModuleNameLoc, diag::remark_module_lock_failure)
1487 ModuleNameLoc,
Module, ModuleFileName);
1492 ModuleNameLoc,
Module, ModuleFileName);
1497 switch (Lock->waitForUnlockFor(std::chrono::seconds(90))) {
1498 case llvm::WaitForUnlockResult::Success:
1500 case llvm::WaitForUnlockResult::OwnerDied:
1502 case llvm::WaitForUnlockResult::Timeout:
1506 Diags.
Report(ModuleNameLoc, diag::remark_module_lock_timeout)
1509 Lock->unsafeMaybeUnlock();
1514 bool OutOfDate =
false;
1515 bool Missing =
false;
1517 Module, ModuleFileName, &OutOfDate, &Missing))
1519 if (!OutOfDate && !Missing)
1563 for (
auto *MD = LatestLocalMD; MD; MD = MD->getPrevious()) {
1565 FileID FID = SourceMgr.getFileID(MD->getLocation());
1570 if (
auto *DMD = dyn_cast<DefMacroDirective>(MD))
1571 CmdLineDefinition = DMD->getMacroInfo();
1576 if (CurrentDefinition == CmdLineDefinition) {
1578 }
else if (!CurrentDefinition) {
1581 PP.
Diag(ImportLoc, diag::warn_module_config_macro_undef)
1583 auto LatestDef = LatestLocalMD->getDefinition();
1584 assert(LatestDef.isUndefined() &&
1585 "predefined macro went away with no #undef?");
1586 PP.
Diag(LatestDef.getUndefLocation(), diag::note_module_def_undef_here)
1589 }
else if (!CmdLineDefinition) {
1592 PP.
Diag(ImportLoc, diag::warn_module_config_macro_undef)
1594 PP.
Diag(CurrentDefinition->getDefinitionLoc(),
1595 diag::note_module_def_undef_here)
1597 }
else if (!CurrentDefinition->isIdenticalTo(*CmdLineDefinition, PP,
1600 PP.
Diag(ImportLoc, diag::warn_module_config_macro_undef)
1602 PP.
Diag(CurrentDefinition->getDefinitionLoc(),
1603 diag::note_module_def_undef_here)
1611 for (
const StringRef ConMacro : TopModule->
ConfigMacros) {
1627 .getHeaderSearchInfo()
1635 std::string Sysroot = HSOpts.
Sysroot;
1638 std::unique_ptr<llvm::Timer> ReadTimer;
1641 ReadTimer = std::make_unique<llvm::Timer>(
"reading_modules",
1642 "Reading modules", *timerGroup);
1643 TheASTReader = llvm::makeIntrusiveRefCnt<ASTReader>(
1647 Sysroot.empty() ?
"" : Sysroot.c_str(),
1656 TheASTReader->setDeserializationListener(
1663 TheASTReader->InitializeSema(
getSema());
1667 for (
auto &Listener : DependencyCollectors)
1668 Listener->attachToASTReader(*TheASTReader);
1677 llvm::TimeRegion TimeLoading(timerGroup ? &Timer :
nullptr);
1685 bool ConfigMismatchIsRecoverable =
1690 auto Listener = std::make_unique<ReadModuleNames>(*PP);
1691 auto &ListenerRef = *Listener;
1693 std::move(Listener));
1696 switch (TheASTReader->ReadAST(
1699 &LoadedModuleFile)) {
1703 ListenerRef.registerAll();
1709 diag::warn_ast_file_config_mismatch)
1713 ListenerRef.markAllUnavailable();
1725 MS_PrebuiltModulePath,
1726 MS_ModuleBuildPragma
1733 Module *M, StringRef ModuleName, std::string &ModuleFilename,
1734 const std::map<std::string, std::string, std::less<>> &BuiltModules,
1736 assert(ModuleFilename.empty() &&
"Already has a module source?");
1740 auto BuiltModuleIt = BuiltModules.find(ModuleName);
1741 if (BuiltModuleIt != BuiltModules.end()) {
1742 ModuleFilename = BuiltModuleIt->second;
1743 return MS_ModuleBuildPragma;
1753 if (!ModuleFilename.empty())
1754 return MS_PrebuiltModulePath;
1760 return MS_ModuleCache;
1763 return MS_ModuleNotFound;
1772 HS.
lookupModule(ModuleName, ImportLoc,
true, !IsInclusionDirective);
1782 std::string ModuleFilename;
1783 ModuleSource Source =
1785 if (Source == MS_ModuleNotFound) {
1788 << ModuleName << SourceRange(ImportLoc, ModuleNameLoc);
1791 if (ModuleFilename.empty()) {
1810 Timer.init(
"loading." + ModuleFilename,
"Loading " + ModuleFilename,
1812 llvm::TimeRegion TimeLoading(timerGroup ? &Timer :
nullptr);
1813 llvm::TimeTraceScope TimeScope(
"Module Load", ModuleName);
1817 unsigned ARRFlags = Source == MS_ModuleCache
1820 : Source == MS_PrebuiltModulePath
1824 Source == MS_PrebuiltModulePath
1826 : Source == MS_ModuleBuildPragma
1829 ImportLoc, ARRFlags)) {
1833 assert(Source != MS_ModuleCache &&
1834 "missing module, but file loaded from cache");
1838 M = HS.
lookupModule(ModuleName, ImportLoc,
true, !IsInclusionDirective);
1842 if (
auto ModuleFile = FileMgr->getOptionalFileRef(ModuleFilename))
1848 return ModuleLoadResult();
1857 if (Source == MS_PrebuiltModulePath)
1861 diag::warn_ast_file_config_mismatch)
1870 return ModuleLoadResult();
1874 return ModuleLoadResult();
1878 if (Source != MS_ModuleCache) {
1882 return ModuleLoadResult();
1886 assert(M &&
"missing module, but trying to compile for cache");
1890 ModuleBuildStack::iterator Pos = ModPath.begin(), PosEnd = ModPath.end();
1891 for (; Pos != PosEnd; ++Pos) {
1892 if (Pos->first == ModuleName)
1896 if (Pos != PosEnd) {
1897 SmallString<256> CyclePath;
1898 for (; Pos != PosEnd; ++Pos) {
1899 CyclePath += Pos->first;
1900 CyclePath +=
" -> ";
1902 CyclePath += ModuleName;
1905 << ModuleName << CyclePath;
1910 if (FailedModules.contains(ModuleName)) {
1912 << ModuleName << SourceRange(ImportLoc, ModuleNameLoc);
1920 "undiagnosed error in compileModuleAndReadAST");
1921 FailedModules.insert(ModuleName);
1933 bool IsInclusionDirective) {
1935 StringRef ModuleName = Path[0].getIdentifierInfo()->getName();
1941 if (ImportLoc.
isValid() && LastModuleImportLoc == ImportLoc) {
1943 if (LastModuleImportResult && ModuleName !=
getLangOpts().CurrentModule)
1944 TheASTReader->makeModuleVisible(LastModuleImportResult,
Visibility,
1946 return LastModuleImportResult;
1960 }
else if (ModuleName ==
getLangOpts().CurrentModule) {
1962 Module = PP->getHeaderSearchInfo().lookupModule(
1963 ModuleName, ImportLoc,
true,
1964 !IsInclusionDirective);
1975 ModuleName, ImportLoc, ModuleNameLoc, IsInclusionDirective);
1979 DisableGeneratingGlobalModuleIndex =
true;
1991 bool MapPrivateSubModToTopLevel =
false;
1992 for (
unsigned I = 1, N = Path.size(); I != N; ++I) {
1993 StringRef Name = Path[I].getIdentifierInfo()->getName();
2002 PrivateModule.append(
"_Private");
2005 auto &II = PP->getIdentifierTable().get(
2006 PrivateModule, PP->getIdentifierInfo(
Module->
Name)->getTokenID());
2007 PrivPath.emplace_back(Path[0].getLoc(), &II);
2011 if (PP->getHeaderSearchInfo().lookupModule(PrivateModule, ImportLoc,
true,
2012 !IsInclusionDirective) ||
2014 PP->getHeaderSearchInfo()) != MS_ModuleNotFound)
2017 MapPrivateSubModToTopLevel =
true;
2018 PP->markClangModuleAsAffecting(
Module);
2020 diag::warn_no_priv_submodule_use_toplevel, ImportLoc)) {
2022 diag::warn_no_priv_submodule_use_toplevel)
2025 <<
SourceRange(Path[0].getLoc(), Path[I].getLoc())
2029 diag::note_private_top_level_defined);
2037 unsigned BestEditDistance = (std::numeric_limits<unsigned>::max)();
2041 Name.edit_distance(SubModule->Name,
2042 true, BestEditDistance);
2043 if (ED <= BestEditDistance) {
2044 if (ED < BestEditDistance) {
2046 BestEditDistance = ED;
2049 Best.push_back(SubModule->Name);
2054 if (Best.size() == 1) {
2056 diag::err_no_submodule_suggest)
2058 << Best[0] <<
SourceRange(Path[0].getLoc(), Path[I - 1].getLoc())
2071 <<
SourceRange(Path[0].getLoc(), Path[I - 1].getLoc());
2090 <<
SourceRange(Path.front().getLoc(), Path.back().getLoc());
2099 <<
SourceRange(Path.front().getLoc(), Path.back().getLoc());
2100 LastModuleImportLoc = ImportLoc;
2114 LastModuleImportLoc = ImportLoc;
2116 return LastModuleImportResult;
2120 StringRef ModuleName,
2124 for (
auto &
C : CleanModuleName)
2132 if (std::error_code EC = llvm::sys::fs::createTemporaryFile(
2133 CleanModuleName,
"pcm", ModuleFileName)) {
2135 << ModuleFileName << EC.message();
2138 std::string ModuleMapFileName = (CleanModuleName +
".map").str();
2145 std::string NullTerminatedSource(Source.str());
2147 auto Other = cloneForModuleCompileImpl(ImportLoc, ModuleName, Input,
2148 StringRef(), ModuleFileName);
2153 ModuleMapFileName, NullTerminatedSource.size(), 0);
2154 Other->getSourceManager().overrideFileContents(
2155 ModuleMapFile, llvm::MemoryBuffer::getMemBuffer(NullTerminatedSource));
2157 Other->BuiltModules = std::move(BuiltModules);
2158 Other->DeleteBuiltModules =
false;
2163 BuiltModules = std::move(
Other->BuiltModules);
2166 BuiltModules[std::string(ModuleName)] = std::string(ModuleFileName);
2167 llvm::sys::RemoveFileOnSignal(ModuleFileName);
2179 TheASTReader->makeModuleVisible(Mod,
Visibility, ImportLoc);
2185 .getHeaderSearchInfo()
2196 TheASTReader->loadGlobalIndex();
2201 llvm::sys::fs::create_directories(
2206 .getHeaderSearchInfo()
2212 consumeError(std::move(Err));
2215 TheASTReader->resetForReload();
2216 TheASTReader->loadGlobalIndex();
2217 GlobalIndex = TheASTReader->getGlobalIndex();
2221 if (!HaveFullGlobalModuleIndex && GlobalIndex && !
buildingModule()) {
2223 bool RecreateIndex =
false;
2226 Module *TheModule = I->second;
2230 Path.emplace_back(TriggerLoc,
2232 std::reverse(Path.begin(), Path.end());
2235 RecreateIndex =
true;
2238 if (RecreateIndex) {
2242 .getHeaderSearchInfo()
2245 consumeError(std::move(Err));
2248 TheASTReader->resetForReload();
2249 TheASTReader->loadGlobalIndex();
2250 GlobalIndex = TheASTReader->getGlobalIndex();
2252 HaveFullGlobalModuleIndex =
true;
2286 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 EnableCodeCompletion(Preprocessor &PP, StringRef Filename, unsigned Line, unsigned Column)
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 void SetupSerializedDiagnostics(DiagnosticOptions &DiagOpts, DiagnosticsEngine &Diags, StringRef OutputFile)
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 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 bool readASTAfterCompileModule(CompilerInstance &ImportingInstance, SourceLocation ImportLoc, SourceLocation ModuleNameLoc, Module *Module, StringRef ModuleFileName, bool *OutOfDate, bool *Missing)
Read the AST right after compiling 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 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...
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...
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.
void ExecuteAction() override
Implement the ExecuteAction interface by running Sema on the already-initialized AST consumer.
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
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 ...
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)
bool 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...
std::string getSpecificModuleCachePath()
ModuleLoadResult loadModule(SourceLocation ImportLoc, ModuleIdPath Path, Module::NameVisibilityKind Visibility, bool IsInclusionDirective) override
Attempt to load the given module.
FileSystemOptions & getFileSystemOpts()
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()
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.
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.
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.
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 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.
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
virtual void finish()
Callback to inform the diagnostic client that processing of all source files has ended.
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.
OptionalFileEntryRef getOptionalFileRef(StringRef Filename, bool OpenFile=false, bool CacheFailure=true)
Get a FileEntryRef if it exists, without doing anything on error.
static bool fixupRelativePath(const FileSystemOptions &FileSystemOpts, SmallVectorImpl< char > &Path)
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.
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.
@ 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.
virtual void prepareForGetLock(StringRef ModuleFilename)=0
May perform any work that only needs to be performed once for multiple calls getLock() with the same ...
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.
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.
Module * findOrLoadModule(StringRef Name)
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...
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.
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.
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.
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...
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.
FileID getPCHPredefinesFileID() const
Returns the FileID for the predefines loaded from the PCH.
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.
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.
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.
@ 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 &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.
@ Success
Annotation was successful.
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)
void normalizeModuleCachePath(FileManager &FileMgr, StringRef Path, SmallVectorImpl< char > &NormalizedPath)
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...
A source location that has been parsed on the command line.