18#include "llvm/ADT/StringExtras.h"
26 bool FromInclude =
false) {
29 if (
auto *LSD = dyn_cast<LinkageSpecDecl>(DC)) {
30 switch (LSD->getLanguage()) {
31 case LinkageSpecLanguageIDs::C:
33 ExternCLoc = LSD->getBeginLoc();
35 case LinkageSpecLanguageIDs::CXX:
41 while (isa<LinkageSpecDecl>(DC) || isa<ExportDecl>(DC))
44 if (!isa<TranslationUnitDecl>(DC)) {
46 ? diag::ext_module_import_not_at_top_level_noop
47 : diag::err_module_import_not_at_top_level_fatal)
49 S.
Diag(cast<Decl>(DC)->getBeginLoc(),
50 diag::note_module_import_not_at_top_level)
53 S.
Diag(ImportLoc, diag::ext_module_import_in_extern_c)
55 S.
Diag(ExternCLoc, diag::note_extern_c_begins_here);
68 for (
auto &Piece : Path) {
71 Name += Piece.first->getName();
80 PushGlobalModuleFragment(ModuleLoc);
92 TU->setLocalOwningModule(GlobalModule);
98void Sema::HandleStartOfHeaderUnit() {
100 "Header units are only valid for C++20 modules");
105 if (HUName.empty()) {
120 assert(F &&
"failed to find the header unit source?");
123 Module *Mod = Map.createHeaderUnit(StartOfTU, HUName, H);
124 assert(Mod &&
"module creation should not fail");
125 ModuleScopes.push_back({});
126 ModuleScopes.back().BeginLoc = StartOfTU;
127 ModuleScopes.back().Module = Mod;
134 TU->setLocalOwningModule(Mod);
148 if (II->
isStr(
"module") || II->
isStr(
"import"))
164 return S.
Diag(Loc, diag::err_invalid_module_name) << II;
166 S.
Diag(Loc, diag::warn_reserved_module_name) << II;
169 llvm_unreachable(
"fell off a fully covered switch");
177 "should only have module decl in standard C++ modules");
185 bool IsPartition = !Partition.empty();
195 llvm_unreachable(
"how did we get a partition type set?");
214 Diag(ModuleLoc, diag::err_module_interface_implementation_mismatch)
220 Diag(ModuleLoc, diag::err_module_decl_in_module_map_module);
224 Diag(ModuleLoc, diag::err_module_decl_in_header_unit);
228 assert(ModuleScopes.size() <= 1 &&
"expected to be at global module scope");
234 if (isCurrentModulePurview()) {
235 Diag(ModuleLoc, diag::err_module_redeclaration);
237 diag::note_prev_module_declaration);
242 SeenGMF == (
bool)this->TheGlobalModuleFragment) &&
243 "mismatched global module state");
247 if (
getLangOpts().CPlusPlusModules && !IsFirstDecl && !SeenGMF) {
248 Diag(ModuleLoc, diag::err_module_decl_not_at_start);
252 : ModuleScopes.back().BeginLoc;
254 Diag(BeginLoc, diag::note_global_module_introducer_missing)
268 StringRef FirstComponentName = Path[0].first->getName();
270 (FirstComponentName ==
"std" ||
271 (FirstComponentName.startswith(
"std") &&
272 llvm::all_of(FirstComponentName.drop_front(3), &llvm::isDigit))))
273 Diag(Path[0].second, diag::warn_reserved_module_name) << Path[0].first;
277 for (
auto Part : Path) {
294 Diag(Path.front().second, diag::err_current_module_name_mismatch)
296 ? Partition.back().second
297 : Path.back().second)
311 if (
auto *M = Map.findModule(ModuleName)) {
312 Diag(Path[0].second, diag::err_module_redefinition) << ModuleName;
313 if (M->DefinitionLoc.isValid())
314 Diag(M->DefinitionLoc, diag::note_prev_module_definition);
316 Diag(M->DefinitionLoc, diag::note_prev_module_definition_from_ast_file)
323 Mod = Map.createModuleForInterfaceUnit(ModuleLoc, ModuleName);
326 assert(Mod &&
"module creation should not fail");
335 std::pair<IdentifierInfo *, SourceLocation> ModuleNameLoc(
349 Diag(ModuleLoc, diag::err_module_not_defined) << ModuleName;
351 Mod = Map.createModuleForInterfaceUnit(ModuleLoc, ModuleName);
353 Mod = Map.createModuleForImplementationUnit(ModuleLoc, ModuleName);
360 Mod = Map.createModuleForInterfaceUnit(ModuleLoc, ModuleName);
365 if (!this->TheGlobalModuleFragment) {
366 ModuleScopes.push_back({});
368 ModuleScopes.back().OuterVisibleModules = std::move(VisibleModules);
375 ModuleScopes.back().BeginLoc = StartLoc;
376 ModuleScopes.back().Module = Mod;
386 TU->setLocalOwningModule(Mod);
428 : ModuleScopes.back().Module->Kind) {
435 Diag(PrivateLoc, diag::err_private_module_fragment_not_module);
439 Diag(PrivateLoc, diag::err_private_module_fragment_redefined);
440 Diag(ModuleScopes.back().BeginLoc, diag::note_previous_definition);
444 Diag(PrivateLoc, diag::err_private_module_fragment_not_module_interface);
445 Diag(ModuleScopes.back().BeginLoc,
446 diag::note_not_module_interface_add_export)
462 Module *PrivateModuleFragment =
463 Map.createPrivateModuleFragmentForInterfaceUnit(
464 ModuleScopes.back().Module, PrivateLoc);
465 assert(PrivateModuleFragment &&
"module creation should not fail");
468 ModuleScopes.push_back({});
469 ModuleScopes.back().BeginLoc = ModuleLoc;
470 ModuleScopes.back().Module = PrivateModuleFragment;
471 VisibleModules.
setVisible(PrivateModuleFragment, ModuleLoc);
478 TU->setLocalOwningModule(PrivateModuleFragment);
488 assert((!IsPartition ||
getLangOpts().CPlusPlusModules) &&
489 "partition seen in non-C++20 code?");
493 std::pair<IdentifierInfo *, SourceLocation> ModuleNameLoc;
495 std::string ModuleName;
498 assert(!ModuleScopes.empty() &&
"in a module purview, but no module?");
499 Module *NamedMod = ModuleScopes.back().Module;
520 if (
getLangOpts().CPlusPlusModules && isCurrentModulePurview() &&
522 Diag(ImportLoc, diag::err_module_self_import_cxx20)
533 Diag(ImportLoc, diag::err_module_import_non_interface_nor_parition)
544 if (
auto *ED = dyn_cast<ExportDecl>(DC))
554 Diag(ImportLoc, diag::warn_experimental_header_unit);
566 ? diag::err_module_self_import
567 : diag::err_module_import_in_implementation)
577 for (
Module *ModCheck = Mod; ModCheck; ModCheck = ModCheck->
Parent)
581 IdentifierLocs.push_back(Path[0].second);
584 for (
unsigned I = 0, N = Path.size(); I != N; ++I) {
589 ModCheck = ModCheck->
Parent;
591 IdentifierLocs.push_back(Path[I].second);
596 Mod, IdentifierLocs);
601 if (!ModuleScopes.empty())
607 Diag(ExportLoc, diag::err_export_partition_impl)
617 }
else if (ExportLoc.
isValid()) {
621 Diag(ExportLoc, diag::err_export_not_in_module_interface);
638 bool IsInModuleIncludes =
644 if (
getLangOpts().Modules && !IsInModuleIncludes) {
649 if (!ModuleScopes.empty())
660 getLangOpts().CurrentModule, DirectiveLoc,
false,
false);
662 assert(ThisModule &&
"was expecting a module if building one");
669 ModuleScopes.push_back({});
670 ModuleScopes.back().Module = Mod;
672 ModuleScopes.back().OuterVisibleModules = std::move(VisibleModules);
681 cast<Decl>(DC)->setModuleOwnershipKind(
685 cast<Decl>(DC)->setLocalOwningModule(Mod);
692 VisibleModules = std::move(ModuleScopes.back().OuterVisibleModules);
698 assert(!ModuleScopes.empty() && ModuleScopes.back().Module == Mod &&
699 "left the wrong module scope");
700 ModuleScopes.pop_back();
709 "end of submodule in main source file");
713 DirectiveLoc = EomLoc;
724 cast<Decl>(DC)->setModuleOwnershipKind(
765 if (!isCurrentModulePurview()) {
766 Diag(ExportLoc, diag::err_export_not_in_module_interface) << 0;
770 Diag(ExportLoc, diag::err_export_not_in_module_interface) << 1;
771 Diag(ModuleScopes.back().BeginLoc,
772 diag::note_not_module_interface_add_export)
776 }
else if (ModuleScopes.back().Module->Kind ==
778 Diag(ExportLoc, diag::err_export_in_private_module_fragment);
779 Diag(ModuleScopes.back().BeginLoc, diag::note_private_module_fragment);
785 if (
const auto *ND = dyn_cast<NamespaceDecl>(DC)) {
788 if (ND->isAnonymousNamespace()) {
789 Diag(ExportLoc, diag::err_export_within_anonymous_namespace);
790 Diag(ND->getLocation(), diag::note_anonymous_namespace);
801 if (!DeferredExportedNamespaces.insert(ND).second)
809 Diag(ExportLoc, diag::err_export_within_export);
811 Diag(ED->getLocation(), diag::note_export);
825 bool AllUnnamed =
true;
826 for (
auto *D : DC->
decls())
836 bool HasName =
false;
837 if (
auto *ND = dyn_cast<NamedDecl>(D)) {
840 HasName = (
bool)ND->getDeclName();
842 S.
Diag(ND->getLocation(), diag::err_export_internal) << ND;
844 S.
Diag(BlockStart, diag::note_export);
852 if (
auto *USD = dyn_cast<UsingShadowDecl>(D)) {
856 S.
Diag(USD->getLocation(), diag::err_export_using_internal)
858 S.
Diag(
Target->getLocation(), diag::note_using_decl_target);
860 S.
Diag(BlockStart, diag::note_export);
867 if (
auto *DC = dyn_cast<DeclContext>(D)) {
868 if (!isa<NamespaceDecl>(D))
871 if (
auto *ND = dyn_cast<NamedDecl>(D)) {
872 if (!ND->getDeclName()) {
873 S.
Diag(ND->getLocation(), diag::err_export_anon_ns_internal);
875 S.
Diag(BlockStart, diag::note_export);
877 }
else if (!DC->decls().empty() &&
878 DC->getRedeclContext()->isFileContext()) {
888 auto *ED = cast<ExportDecl>(D);
890 ED->setRBraceLoc(RBraceLoc);
897 for (
auto *Child : ED->decls()) {
899 if (
auto *FD = dyn_cast<FunctionDecl>(Child)) {
907 if (FD->isInlineSpecified() && !FD->isDefined())
908 PendingInlineFuncDecls.insert(FD);
919 if (!TheGlobalModuleFragment) {
925 assert(TheGlobalModuleFragment &&
"module creation should not fail");
928 ModuleScopes.push_back({BeginLoc, TheGlobalModuleFragment,
930 VisibleModules.
setVisible(TheGlobalModuleFragment, BeginLoc);
932 return TheGlobalModuleFragment;
935void Sema::PopGlobalModuleFragment() {
936 assert(!ModuleScopes.empty() &&
938 "left the wrong module scope, which is not global module fragment");
939 ModuleScopes.pop_back();
943 if (!TheImplicitGlobalModuleFragment) {
945 TheImplicitGlobalModuleFragment =
949 assert(TheImplicitGlobalModuleFragment &&
"module creation should not fail");
952 ModuleScopes.push_back({BeginLoc, TheImplicitGlobalModuleFragment,
954 VisibleModules.
setVisible(TheImplicitGlobalModuleFragment, BeginLoc);
955 return TheImplicitGlobalModuleFragment;
958void Sema::PopImplicitGlobalModuleFragment() {
959 assert(!ModuleScopes.empty() &&
961 "left the wrong module scope, which is not global module fragment");
962 ModuleScopes.pop_back();
965bool Sema::isCurrentModulePurview()
const {
Defines the clang::Preprocessor interface.
static bool DiagReservedModuleName(Sema &S, const IdentifierInfo *II, SourceLocation Loc)
Tests whether the given identifier is reserved as a module name and diagnoses if it is.
static const ExportDecl * getEnclosingExportDecl(const Decl *D)
Determine whether D is lexically within an export-declaration.
static bool checkExportedDecl(Sema &, Decl *, SourceLocation)
Check that it's valid to export D.
static std::string stringFromPath(ModuleIdPath Path)
static void checkModuleImportContext(Sema &S, Module *M, SourceLocation ImportLoc, DeclContext *DC, bool FromInclude=false)
static bool checkExportedDeclContext(Sema &S, DeclContext *DC, SourceLocation BlockStart)
Check that it's valid to export all the declarations in DC.
virtual void HandleImplicitImportDecl(ImportDecl *D)
Handle an ImportDecl that was implicitly created due to an inclusion directive.
TranslationUnitDecl * getTranslationUnitDecl() const
void setCurrentNamedModule(Module *M)
Set the (C++20) module we are building.
void addModuleInitializer(Module *M, Decl *Init)
Add a declaration to the list of declarations that are initialized for a module.
The result of parsing/analyzing an expression, statement etc.
DeclContext - This is used only as base class of specific decl types that can act as declaration cont...
DeclContext * getParent()
getParent - Returns the containing DeclContext.
DeclContext * getLexicalParent()
getLexicalParent - Returns the containing lexical DeclContext.
void addDecl(Decl *D)
Add the declaration D into this context.
decl_range decls() const
decls_begin/decls_end - Iterate over the declarations stored in this context.
Decl - This represents one declaration (or definition), e.g.
void setInvalidDecl(bool Invalid=true)
setInvalidDecl - Indicates the Decl had a semantic error.
bool isInvalidDecl() const
DeclContext * getLexicalDeclContext()
getLexicalDeclContext - The declaration context where this Decl was lexically declared (LexicalDC).
@ VisibleWhenImported
This declaration has an owning module, and is visible when that module is imported.
@ Unowned
This declaration is not owned by a module.
@ ReachableWhenImported
This declaration has an owning module, and is visible to lookups that occurs within that module.
@ ModulePrivate
This declaration has an owning module, but is only visible to lookups that occur within that module.
@ Visible
This declaration has an owning module, but is globally visible (typically because its owning module i...
void setModuleOwnershipKind(ModuleOwnershipKind MOK)
Set whether this declaration is hidden from name lookup.
Represents a standard C++ module export declaration.
static ExportDecl * Create(ASTContext &C, DeclContext *DC, SourceLocation ExportLoc)
void setRBraceLoc(SourceLocation L)
StringRef getName() const
The name of this FileEntry.
An opaque identifier used by SourceManager which refers to a source file (MemoryBuffer) along with it...
OptionalFileEntryRef getOptionalFileRef(StringRef Filename, bool OpenFile=false, bool CacheFailure=true)
Get a FileEntryRef if it exists, without doing anything on error.
static FixItHint CreateInsertion(SourceLocation InsertionLoc, StringRef Code, bool BeforePreviousInsertions=false)
Create a code modification hint that inserts the given code string at a specific location.
One of these records is kept for each identifier that is lexed.
ReservedIdentifierStatus isReserved(const LangOptions &LangOpts) const
Determine whether this is a name reserved for the implementation (C99 7.1.3, C++ [lib....
bool isStr(const char(&Str)[StrLen]) const
Return true if this is the identifier for the specified string.
Describes a module import declaration, which makes the contents of the named module visible in the cu...
static ImportDecl * Create(ASTContext &C, DeclContext *DC, SourceLocation StartLoc, Module *Imported, ArrayRef< SourceLocation > IdentifierLocs)
Create a new module import declaration.
static ImportDecl * CreateImplicit(ASTContext &C, DeclContext *DC, SourceLocation StartLoc, Module *Imported, SourceLocation EndLoc)
Create a new module import declaration for an implicitly-generated import.
Keeps track of the various options that can be enabled, which controls the dialect of C or C++ that i...
@ CMK_HeaderUnit
Compiling a module header unit.
@ CMK_ModuleMap
Compiling a module from a module map.
@ CMK_ModuleInterface
Compiling a C++ modules interface unit.
@ CMK_None
Not compiling a module interface at all.
std::string CurrentModule
The name of the current module, of which the main source file is a part.
virtual ModuleLoadResult loadModule(SourceLocation ImportLoc, ModuleIdPath Path, Module::NameVisibilityKind Visibility, bool IsInclusionDirective)=0
Attempt to load the given module.
virtual void makeModuleVisible(Module *Mod, Module::NameVisibilityKind Visibility, SourceLocation ImportLoc)=0
Make the given module visible.
Module * createGlobalModuleFragmentForModuleUnit(SourceLocation Loc, Module *Parent=nullptr)
Create a global module fragment for a C++ module unit.
Module * createImplicitGlobalModuleFragmentForModuleUnit(SourceLocation Loc, Module *Parent)
Describes a module or submodule.
SmallVector< ExportDecl, 2 > Exports
The set of export declarations.
bool isForBuilding(const LangOptions &LangOpts) const
Determine whether this module can be built in this compilation.
bool isInterfaceOrPartition() const
@ AllVisible
All of the names in this module are visible.
Module * Parent
The parent of this module.
ModuleKind Kind
The kind of this module.
llvm::SmallSetVector< Module *, 2 > Imports
The set of modules imported by this module, and on which this module depends.
unsigned IsExternC
Whether this is an 'extern "C"' module (which implicitly puts all headers in it within an 'extern "C"...
StringRef getPrimaryModuleInterfaceName() const
Get the primary module interface name from a partition.
bool isHeaderUnit() const
Is this module a header unit.
@ ModuleImplementationUnit
This is a C++20 module implementation unit.
@ ModuleMapModule
This is a module that was defined by a module map and built out of header files.
@ ImplicitGlobalModuleFragment
This is an implicit fragment of the global module which contains only language linkage declarations (...
@ ModulePartitionInterface
This is a C++ 20 module partition interface.
@ ModuleInterfaceUnit
This is a C++20 module interface unit.
@ ModuleHeaderUnit
This is a C++ 20 header unit.
@ ModulePartitionImplementation
This is a C++ 20 module partition implementation.
@ PrivateModuleFragment
This is the private module fragment within some C++ module.
@ ExplicitGlobalModuleFragment
This is the explicit Global Module Fragment of a modular TU.
std::string getFullModuleName(bool AllowStringLiterals=false) const
Retrieve the full name of this module, including the path from its top-level module.
This represents a decl that may have a name.
Wrapper for void* pointer.
IdentifierInfo * getIdentifierInfo(StringRef Name) const
Return information about the specified preprocessor identifier token.
HeaderSearch & getHeaderSearchInfo() const
Scope - A scope is a transient data structure that is used while parsing the program.
Sema - This implements semantic analysis and AST building for C.
void ActOnModuleBegin(SourceLocation DirectiveLoc, Module *Mod)
The parsed has entered a submodule.
SemaDiagnosticBuilder Diag(SourceLocation Loc, unsigned DiagID, bool DeferHint=false)
Emit a diagnostic.
const TranslationUnitKind TUKind
The kind of translation unit we are processing.
@ PartitionImplementation
'module X:Y;'
@ Interface
'export module X;'
@ Implementation
'module X;'
@ PartitionInterface
'export module X:Y;'
llvm::DenseMap< NamedDecl *, NamedDecl * > VisibleNamespaceCache
Map from the most recent declaration of a namespace to the most recent visible declaration of that na...
DeclGroupPtrTy ActOnModuleDecl(SourceLocation StartLoc, SourceLocation ModuleLoc, ModuleDeclKind MDK, ModuleIdPath Path, ModuleIdPath Partition, ModuleImportState &ImportState)
The parser has processed a module-declaration that begins the definition of a module interface or imp...
bool currentModuleIsImplementation() const
Is the module scope we are an implementation unit?
DeclResult ActOnModuleImport(SourceLocation StartLoc, SourceLocation ExportLoc, SourceLocation ImportLoc, ModuleIdPath Path, bool IsPartition=false)
The parser has processed a module import declaration.
DeclGroupPtrTy ConvertDeclToDeclGroup(Decl *Ptr, Decl *OwnedType=nullptr)
ASTContext & getASTContext() const
Decl * ActOnStartExportDecl(Scope *S, SourceLocation ExportLoc, SourceLocation LBraceLoc)
We have parsed the start of an export declaration, including the '{' (if present).
const LangOptions & getLangOpts() const
void ActOnEndOfTranslationUnitFragment(TUFragmentKind Kind)
DeclGroupPtrTy ActOnGlobalModuleFragmentDecl(SourceLocation ModuleLoc)
The parser has processed a global-module-fragment declaration that begins the definition of the globa...
std::optional< sema::TemplateDeductionInfo * > isSFINAEContext() const
Determines whether we are currently in a context where template argument substitution failures are no...
Module * getCurrentModule() const
Get the module unit whose scope we are currently within.
DeclContext * CurContext
CurContext - This is the current declaration context of parsing.
DeclGroupPtrTy ActOnPrivateModuleFragmentDecl(SourceLocation ModuleLoc, SourceLocation PrivateLoc)
The parser has processed a private-module-fragment declaration that begins the definition of the priv...
SourceManager & getSourceManager() const
void BuildModuleInclude(SourceLocation DirectiveLoc, Module *Mod)
bool isModuleVisible(const Module *M, bool ModulePrivate=false)
void ActOnModuleInclude(SourceLocation DirectiveLoc, Module *Mod)
The parser has processed a module import translated from a #include or similar preprocessing directiv...
@ Global
The global module fragment, between 'module;' and a module-declaration.
@ Normal
A normal translation unit fragment.
ModuleImportState
An enumeration to represent the transition of states in parsing module fragments and imports.
@ FirstDecl
Parsing the first decl in a TU.
@ GlobalFragment
after 'module;' but before 'module X;'
@ NotACXX20Module
Not a C++20 TU, or an invalid state was found.
@ ImportAllowed
after 'module X;' but before any non-import decl.
ModuleLoader & getModuleLoader() const
Retrieve the module loader associated with the preprocessor.
void PushDeclContext(Scope *S, DeclContext *DC)
Set the current declaration context until it gets popped.
SourceManager & SourceMgr
void ActOnModuleEnd(SourceLocation DirectiveLoc, Module *Mod)
The parser has left a submodule.
Decl * ActOnFinishExportDecl(Scope *S, Decl *ExportDecl, SourceLocation RBraceLoc)
Complete the definition of an export declaration.
void createImplicitModuleImportForErrorRecovery(SourceLocation Loc, Module *Mod)
Create an implicit import of the given module at the given source location, for error recovery,...
Encodes a location in the source.
bool isValid() const
Return true if this is a valid SourceLocation object.
FileID getFileID(SourceLocation SpellingLoc) const
Return the FileID for a SourceLocation.
OptionalFileEntryRef getFileEntryRefForID(FileID FID) const
Returns the FileEntryRef for the provided FileID.
FileManager & getFileManager() const
FileID getMainFileID() const
Returns the FileID of the main source file.
SourceLocation getIncludeLoc(FileID FID) const
Returns the include location if FID is a #include'd file otherwise it returns an invalid location.
bool isInSystemHeader(SourceLocation Loc) const
Returns if a SourceLocation is in a system header.
SourceLocation getLocForStartOfFile(FileID FID) const
Return the source location corresponding to the first byte of the specified file.
bool isWrittenInMainFile(SourceLocation Loc) const
Returns true if the spelling location for the given location is in the main file buffer.
A trivial tuple used to represent a source range.
The top declaration context.
void makeTransitiveImportsVisible(Module *M, SourceLocation Loc, VisibleCallback Vis=[](Module *) {}, ConflictCallback Cb=[](ArrayRef< Module * >, Module *, StringRef) {})
Make transitive imports visible for [module.import]/7.
SourceLocation getImportLoc(const Module *M) const
Get the location at which the import of a module was triggered.
bool isVisible(const Module *M) const
Determine whether a module is visible.
void setVisible(Module *M, SourceLocation Loc, VisibleCallback Vis=[](Module *) {}, ConflictCallback Cb=[](ArrayRef< Module * >, Module *, StringRef) {})
Make a specific module visible.
ArrayRef< std::pair< IdentifierInfo *, SourceLocation > > ModuleIdPath
A sequence of identifier/location pairs used to describe a particular module or submodule,...
Linkage
Describes the different kinds of linkage (C++ [basic.link], C99 6.2.2) that an entity may have.
@ Internal
Internal linkage, which indicates that the entity can be referred to from within the translation unit...
@ Module
Module linkage, which indicates that the entity can be referred to from other translation units withi...
@ TU_Module
The translation unit is a module.