1718292f2SDouglas Gregor //===--- ModuleMap.cpp - Describe the layout of modules ---------*- C++ -*-===// 2718292f2SDouglas Gregor // 3718292f2SDouglas Gregor // The LLVM Compiler Infrastructure 4718292f2SDouglas Gregor // 5718292f2SDouglas Gregor // This file is distributed under the University of Illinois Open Source 6718292f2SDouglas Gregor // License. See LICENSE.TXT for details. 7718292f2SDouglas Gregor // 8718292f2SDouglas Gregor //===----------------------------------------------------------------------===// 9718292f2SDouglas Gregor // 10718292f2SDouglas Gregor // This file defines the ModuleMap implementation, which describes the layout 11718292f2SDouglas Gregor // of a module as it relates to headers. 12718292f2SDouglas Gregor // 13718292f2SDouglas Gregor //===----------------------------------------------------------------------===// 14718292f2SDouglas Gregor #include "clang/Lex/ModuleMap.h" 15a7d03840SJordan Rose #include "clang/Basic/CharInfo.h" 16718292f2SDouglas Gregor #include "clang/Basic/Diagnostic.h" 17811db4eaSDouglas Gregor #include "clang/Basic/DiagnosticOptions.h" 18718292f2SDouglas Gregor #include "clang/Basic/FileManager.h" 19718292f2SDouglas Gregor #include "clang/Basic/TargetInfo.h" 20718292f2SDouglas Gregor #include "clang/Basic/TargetOptions.h" 21b146baabSArgyrios Kyrtzidis #include "clang/Lex/HeaderSearch.h" 229acb99e3SRichard Smith #include "clang/Lex/HeaderSearchOptions.h" 233a02247dSChandler Carruth #include "clang/Lex/LexDiagnostic.h" 243a02247dSChandler Carruth #include "clang/Lex/Lexer.h" 253a02247dSChandler Carruth #include "clang/Lex/LiteralSupport.h" 263a02247dSChandler Carruth #include "llvm/ADT/StringRef.h" 273a02247dSChandler Carruth #include "llvm/ADT/StringSwitch.h" 28718292f2SDouglas Gregor #include "llvm/Support/Allocator.h" 29e89dbc1dSDouglas Gregor #include "llvm/Support/FileSystem.h" 30718292f2SDouglas Gregor #include "llvm/Support/Host.h" 31552c169eSRafael Espindola #include "llvm/Support/Path.h" 32718292f2SDouglas Gregor #include "llvm/Support/raw_ostream.h" 3307c22b78SDouglas Gregor #include <stdlib.h> 3401c7cfa2SDouglas Gregor #if defined(LLVM_ON_UNIX) 35eadae014SDmitri Gribenko #include <limits.h> 3601c7cfa2SDouglas Gregor #endif 37718292f2SDouglas Gregor using namespace clang; 38718292f2SDouglas Gregor 392b82c2a5SDouglas Gregor Module::ExportDecl 402b82c2a5SDouglas Gregor ModuleMap::resolveExport(Module *Mod, 412b82c2a5SDouglas Gregor const Module::UnresolvedExportDecl &Unresolved, 42e4412640SArgyrios Kyrtzidis bool Complain) const { 43f5eedd05SDouglas Gregor // We may have just a wildcard. 44f5eedd05SDouglas Gregor if (Unresolved.Id.empty()) { 45f5eedd05SDouglas Gregor assert(Unresolved.Wildcard && "Invalid unresolved export"); 46d2d442caSCraig Topper return Module::ExportDecl(nullptr, true); 47f5eedd05SDouglas Gregor } 48f5eedd05SDouglas Gregor 49fb912657SDouglas Gregor // Resolve the module-id. 50fb912657SDouglas Gregor Module *Context = resolveModuleId(Unresolved.Id, Mod, Complain); 51fb912657SDouglas Gregor if (!Context) 52fb912657SDouglas Gregor return Module::ExportDecl(); 53fb912657SDouglas Gregor 54fb912657SDouglas Gregor return Module::ExportDecl(Context, Unresolved.Wildcard); 55fb912657SDouglas Gregor } 56fb912657SDouglas Gregor 57fb912657SDouglas Gregor Module *ModuleMap::resolveModuleId(const ModuleId &Id, Module *Mod, 58fb912657SDouglas Gregor bool Complain) const { 592b82c2a5SDouglas Gregor // Find the starting module. 60fb912657SDouglas Gregor Module *Context = lookupModuleUnqualified(Id[0].first, Mod); 612b82c2a5SDouglas Gregor if (!Context) { 622b82c2a5SDouglas Gregor if (Complain) 630761a8a0SDaniel Jasper Diags.Report(Id[0].second, diag::err_mmap_missing_module_unqualified) 64fb912657SDouglas Gregor << Id[0].first << Mod->getFullModuleName(); 652b82c2a5SDouglas Gregor 66d2d442caSCraig Topper return nullptr; 672b82c2a5SDouglas Gregor } 682b82c2a5SDouglas Gregor 692b82c2a5SDouglas Gregor // Dig into the module path. 70fb912657SDouglas Gregor for (unsigned I = 1, N = Id.size(); I != N; ++I) { 71fb912657SDouglas Gregor Module *Sub = lookupModuleQualified(Id[I].first, Context); 722b82c2a5SDouglas Gregor if (!Sub) { 732b82c2a5SDouglas Gregor if (Complain) 740761a8a0SDaniel Jasper Diags.Report(Id[I].second, diag::err_mmap_missing_module_qualified) 75fb912657SDouglas Gregor << Id[I].first << Context->getFullModuleName() 76fb912657SDouglas Gregor << SourceRange(Id[0].second, Id[I-1].second); 772b82c2a5SDouglas Gregor 78d2d442caSCraig Topper return nullptr; 792b82c2a5SDouglas Gregor } 802b82c2a5SDouglas Gregor 812b82c2a5SDouglas Gregor Context = Sub; 822b82c2a5SDouglas Gregor } 832b82c2a5SDouglas Gregor 84fb912657SDouglas Gregor return Context; 852b82c2a5SDouglas Gregor } 862b82c2a5SDouglas Gregor 870761a8a0SDaniel Jasper ModuleMap::ModuleMap(SourceManager &SourceMgr, DiagnosticsEngine &Diags, 88b146baabSArgyrios Kyrtzidis const LangOptions &LangOpts, const TargetInfo *Target, 89b146baabSArgyrios Kyrtzidis HeaderSearch &HeaderInfo) 900761a8a0SDaniel Jasper : SourceMgr(SourceMgr), Diags(Diags), LangOpts(LangOpts), Target(Target), 91d2d442caSCraig Topper HeaderInfo(HeaderInfo), BuiltinIncludeDir(nullptr), 927e82e019SRichard Smith SourceModule(nullptr), NumCreatedModules(0) { 930414b857SRichard Smith MMapLangOpts.LineComment = true; 940414b857SRichard Smith } 95718292f2SDouglas Gregor 96718292f2SDouglas Gregor ModuleMap::~ModuleMap() { 9721668754SDavide Italiano for (auto &M : Modules) 9821668754SDavide Italiano delete M.getValue(); 99718292f2SDouglas Gregor } 100718292f2SDouglas Gregor 10189929282SDouglas Gregor void ModuleMap::setTarget(const TargetInfo &Target) { 10289929282SDouglas Gregor assert((!this->Target || this->Target == &Target) && 10389929282SDouglas Gregor "Improper target override"); 10489929282SDouglas Gregor this->Target = &Target; 10589929282SDouglas Gregor } 10689929282SDouglas Gregor 107056396aeSDouglas Gregor /// \brief "Sanitize" a filename so that it can be used as an identifier. 108056396aeSDouglas Gregor static StringRef sanitizeFilenameAsIdentifier(StringRef Name, 109056396aeSDouglas Gregor SmallVectorImpl<char> &Buffer) { 110056396aeSDouglas Gregor if (Name.empty()) 111056396aeSDouglas Gregor return Name; 112056396aeSDouglas Gregor 113a7d03840SJordan Rose if (!isValidIdentifier(Name)) { 114056396aeSDouglas Gregor // If we don't already have something with the form of an identifier, 115056396aeSDouglas Gregor // create a buffer with the sanitized name. 116056396aeSDouglas Gregor Buffer.clear(); 117a7d03840SJordan Rose if (isDigit(Name[0])) 118056396aeSDouglas Gregor Buffer.push_back('_'); 119056396aeSDouglas Gregor Buffer.reserve(Buffer.size() + Name.size()); 120056396aeSDouglas Gregor for (unsigned I = 0, N = Name.size(); I != N; ++I) { 121a7d03840SJordan Rose if (isIdentifierBody(Name[I])) 122056396aeSDouglas Gregor Buffer.push_back(Name[I]); 123056396aeSDouglas Gregor else 124056396aeSDouglas Gregor Buffer.push_back('_'); 125056396aeSDouglas Gregor } 126056396aeSDouglas Gregor 127056396aeSDouglas Gregor Name = StringRef(Buffer.data(), Buffer.size()); 128056396aeSDouglas Gregor } 129056396aeSDouglas Gregor 130056396aeSDouglas Gregor while (llvm::StringSwitch<bool>(Name) 131056396aeSDouglas Gregor #define KEYWORD(Keyword,Conditions) .Case(#Keyword, true) 132056396aeSDouglas Gregor #define ALIAS(Keyword, AliasOf, Conditions) .Case(Keyword, true) 133056396aeSDouglas Gregor #include "clang/Basic/TokenKinds.def" 134056396aeSDouglas Gregor .Default(false)) { 135056396aeSDouglas Gregor if (Name.data() != Buffer.data()) 136056396aeSDouglas Gregor Buffer.append(Name.begin(), Name.end()); 137056396aeSDouglas Gregor Buffer.push_back('_'); 138056396aeSDouglas Gregor Name = StringRef(Buffer.data(), Buffer.size()); 139056396aeSDouglas Gregor } 140056396aeSDouglas Gregor 141056396aeSDouglas Gregor return Name; 142056396aeSDouglas Gregor } 143056396aeSDouglas Gregor 14434d52749SDouglas Gregor /// \brief Determine whether the given file name is the name of a builtin 14534d52749SDouglas Gregor /// header, supplied by Clang to replace, override, or augment existing system 14634d52749SDouglas Gregor /// headers. 147ba1b5c98SBruno Cardoso Lopes bool ModuleMap::isBuiltinHeader(StringRef FileName) { 14834d52749SDouglas Gregor return llvm::StringSwitch<bool>(FileName) 14934d52749SDouglas Gregor .Case("float.h", true) 15034d52749SDouglas Gregor .Case("iso646.h", true) 15134d52749SDouglas Gregor .Case("limits.h", true) 15234d52749SDouglas Gregor .Case("stdalign.h", true) 15334d52749SDouglas Gregor .Case("stdarg.h", true) 1543c4b1290SBen Langmuir .Case("stdatomic.h", true) 15534d52749SDouglas Gregor .Case("stdbool.h", true) 15634d52749SDouglas Gregor .Case("stddef.h", true) 15734d52749SDouglas Gregor .Case("stdint.h", true) 15834d52749SDouglas Gregor .Case("tgmath.h", true) 15934d52749SDouglas Gregor .Case("unwind.h", true) 16034d52749SDouglas Gregor .Default(false); 16134d52749SDouglas Gregor } 16234d52749SDouglas Gregor 16392669ee4SDaniel Jasper ModuleMap::HeadersMap::iterator 16492669ee4SDaniel Jasper ModuleMap::findKnownHeader(const FileEntry *File) { 16559527666SDouglas Gregor HeadersMap::iterator Known = Headers.find(File); 16647972afdSRichard Smith if (HeaderInfo.getHeaderSearchOpts().ImplicitModuleMaps && 16747972afdSRichard Smith Known == Headers.end() && File->getDir() == BuiltinIncludeDir && 168ba1b5c98SBruno Cardoso Lopes ModuleMap::isBuiltinHeader(llvm::sys::path::filename(File->getName()))) { 1694eaf0a6cSDaniel Jasper HeaderInfo.loadTopLevelSystemModules(); 17092669ee4SDaniel Jasper return Headers.find(File); 1714eaf0a6cSDaniel Jasper } 17292669ee4SDaniel Jasper return Known; 17392669ee4SDaniel Jasper } 17492669ee4SDaniel Jasper 1754469138eSBen Langmuir ModuleMap::KnownHeader 1764469138eSBen Langmuir ModuleMap::findHeaderInUmbrellaDirs(const FileEntry *File, 1774469138eSBen Langmuir SmallVectorImpl<const DirectoryEntry *> &IntermediateDirs) { 17847972afdSRichard Smith if (UmbrellaDirs.empty()) 17947972afdSRichard Smith return KnownHeader(); 18047972afdSRichard Smith 1814469138eSBen Langmuir const DirectoryEntry *Dir = File->getDir(); 1824469138eSBen Langmuir assert(Dir && "file in no directory"); 1834469138eSBen Langmuir 1844469138eSBen Langmuir // Note: as an egregious but useful hack we use the real path here, because 1854469138eSBen Langmuir // frameworks moving from top-level frameworks to embedded frameworks tend 1864469138eSBen Langmuir // to be symlinked from the top-level location to the embedded location, 1874469138eSBen Langmuir // and we need to resolve lookups as if we had found the embedded location. 1884469138eSBen Langmuir StringRef DirName = SourceMgr.getFileManager().getCanonicalName(Dir); 1894469138eSBen Langmuir 1904469138eSBen Langmuir // Keep walking up the directory hierarchy, looking for a directory with 1914469138eSBen Langmuir // an umbrella header. 1924469138eSBen Langmuir do { 1934469138eSBen Langmuir auto KnownDir = UmbrellaDirs.find(Dir); 1944469138eSBen Langmuir if (KnownDir != UmbrellaDirs.end()) 1954469138eSBen Langmuir return KnownHeader(KnownDir->second, NormalHeader); 1964469138eSBen Langmuir 1974469138eSBen Langmuir IntermediateDirs.push_back(Dir); 1984469138eSBen Langmuir 1994469138eSBen Langmuir // Retrieve our parent path. 2004469138eSBen Langmuir DirName = llvm::sys::path::parent_path(DirName); 2014469138eSBen Langmuir if (DirName.empty()) 2024469138eSBen Langmuir break; 2034469138eSBen Langmuir 2044469138eSBen Langmuir // Resolve the parent path to a directory entry. 2054469138eSBen Langmuir Dir = SourceMgr.getFileManager().getDirectory(DirName); 2064469138eSBen Langmuir } while (Dir); 2074469138eSBen Langmuir return KnownHeader(); 2084469138eSBen Langmuir } 2094469138eSBen Langmuir 21092669ee4SDaniel Jasper static bool violatesPrivateInclude(Module *RequestingModule, 21192669ee4SDaniel Jasper const FileEntry *IncFileEnt, 2124eb8393cSRichard Smith ModuleMap::KnownHeader Header) { 21392669ee4SDaniel Jasper #ifndef NDEBUG 2144eb8393cSRichard Smith if (Header.getRole() & ModuleMap::PrivateHeader) { 21592669ee4SDaniel Jasper // Check for consistency between the module header role 21692669ee4SDaniel Jasper // as obtained from the lookup and as obtained from the module. 21792669ee4SDaniel Jasper // This check is not cheap, so enable it only for debugging. 2182708e520SRichard Smith bool IsPrivate = false; 2192708e520SRichard Smith SmallVectorImpl<Module::Header> *HeaderList[] = { 2204eb8393cSRichard Smith &Header.getModule()->Headers[Module::HK_Private], 2214eb8393cSRichard Smith &Header.getModule()->Headers[Module::HK_PrivateTextual]}; 2222708e520SRichard Smith for (auto *Hs : HeaderList) 2232708e520SRichard Smith IsPrivate |= 2242708e520SRichard Smith std::find_if(Hs->begin(), Hs->end(), [&](const Module::Header &H) { 2253c1a41adSRichard Smith return H.Entry == IncFileEnt; 2262708e520SRichard Smith }) != Hs->end(); 2274eb8393cSRichard Smith assert(IsPrivate && "inconsistent headers and roles"); 22800bc95ecSRichard Smith } 22992669ee4SDaniel Jasper #endif 2304eb8393cSRichard Smith return !Header.isAccessibleFrom(RequestingModule); 23192669ee4SDaniel Jasper } 23292669ee4SDaniel Jasper 23371e1a64fSBen Langmuir static Module *getTopLevelOrNull(Module *M) { 23471e1a64fSBen Langmuir return M ? M->getTopLevelModule() : nullptr; 23571e1a64fSBen Langmuir } 23671e1a64fSBen Langmuir 23792669ee4SDaniel Jasper void ModuleMap::diagnoseHeaderInclusion(Module *RequestingModule, 2388d4e90b3SRichard Smith bool RequestingModuleIsModuleInterface, 23992669ee4SDaniel Jasper SourceLocation FilenameLoc, 24092669ee4SDaniel Jasper StringRef Filename, 24192669ee4SDaniel Jasper const FileEntry *File) { 24292669ee4SDaniel Jasper // No errors for indirect modules. This may be a bit of a problem for modules 24392669ee4SDaniel Jasper // with no source files. 24471e1a64fSBen Langmuir if (getTopLevelOrNull(RequestingModule) != getTopLevelOrNull(SourceModule)) 24592669ee4SDaniel Jasper return; 24692669ee4SDaniel Jasper 24792669ee4SDaniel Jasper if (RequestingModule) 24892669ee4SDaniel Jasper resolveUses(RequestingModule, /*Complain=*/false); 24992669ee4SDaniel Jasper 25071e1a64fSBen Langmuir bool Excluded = false; 251d2d442caSCraig Topper Module *Private = nullptr; 252d2d442caSCraig Topper Module *NotUsed = nullptr; 25371e1a64fSBen Langmuir 25471e1a64fSBen Langmuir HeadersMap::iterator Known = findKnownHeader(File); 25571e1a64fSBen Langmuir if (Known != Headers.end()) { 25671e1a64fSBen Langmuir for (const KnownHeader &Header : Known->second) { 25792669ee4SDaniel Jasper // Remember private headers for later printing of a diagnostic. 2584eb8393cSRichard Smith if (violatesPrivateInclude(RequestingModule, File, Header)) { 25971e1a64fSBen Langmuir Private = Header.getModule(); 26092669ee4SDaniel Jasper continue; 26192669ee4SDaniel Jasper } 26292669ee4SDaniel Jasper 26392669ee4SDaniel Jasper // If uses need to be specified explicitly, we are only allowed to return 26492669ee4SDaniel Jasper // modules that are explicitly used by the requesting module. 26592669ee4SDaniel Jasper if (RequestingModule && LangOpts.ModulesDeclUse && 2668f4d3ff1SRichard Smith !RequestingModule->directlyUses(Header.getModule())) { 26771e1a64fSBen Langmuir NotUsed = Header.getModule(); 26892669ee4SDaniel Jasper continue; 26992669ee4SDaniel Jasper } 27092669ee4SDaniel Jasper 27192669ee4SDaniel Jasper // We have found a module that we can happily use. 27292669ee4SDaniel Jasper return; 27392669ee4SDaniel Jasper } 274feb54b6dSRichard Smith 275feb54b6dSRichard Smith Excluded = true; 27671e1a64fSBen Langmuir } 27792669ee4SDaniel Jasper 27892669ee4SDaniel Jasper // We have found a header, but it is private. 279d2d442caSCraig Topper if (Private) { 28011152dd5SRichard Smith Diags.Report(FilenameLoc, diag::warn_use_of_private_header_outside_module) 28192669ee4SDaniel Jasper << Filename; 28292669ee4SDaniel Jasper return; 28392669ee4SDaniel Jasper } 28492669ee4SDaniel Jasper 28592669ee4SDaniel Jasper // We have found a module, but we don't use it. 286d2d442caSCraig Topper if (NotUsed) { 28711152dd5SRichard Smith Diags.Report(FilenameLoc, diag::err_undeclared_use_of_module) 28892669ee4SDaniel Jasper << RequestingModule->getFullModuleName() << Filename; 28992669ee4SDaniel Jasper return; 29092669ee4SDaniel Jasper } 29192669ee4SDaniel Jasper 29271e1a64fSBen Langmuir if (Excluded || isHeaderInUmbrellaDirs(File)) 29371e1a64fSBen Langmuir return; 29471e1a64fSBen Langmuir 29571e1a64fSBen Langmuir // At this point, only non-modular includes remain. 29671e1a64fSBen Langmuir 29771e1a64fSBen Langmuir if (LangOpts.ModulesStrictDeclUse) { 29811152dd5SRichard Smith Diags.Report(FilenameLoc, diag::err_undeclared_use_of_module) 29971e1a64fSBen Langmuir << RequestingModule->getFullModuleName() << Filename; 300a67e4d32SManman Ren } else if (RequestingModule && RequestingModuleIsModuleInterface && 301a67e4d32SManman Ren LangOpts.isCompilingModule()) { 302a67e4d32SManman Ren // Do not diagnose when we are not compiling a module. 30371e1a64fSBen Langmuir diag::kind DiagID = RequestingModule->getTopLevelModule()->IsFramework ? 30471e1a64fSBen Langmuir diag::warn_non_modular_include_in_framework_module : 30571e1a64fSBen Langmuir diag::warn_non_modular_include_in_module; 30670a7738fSManman Ren Diags.Report(FilenameLoc, DiagID) << RequestingModule->getFullModuleName() 30770a7738fSManman Ren << File->getName(); 30871e1a64fSBen Langmuir } 30992669ee4SDaniel Jasper } 31092669ee4SDaniel Jasper 311ec87a50aSRichard Smith static bool isBetterKnownHeader(const ModuleMap::KnownHeader &New, 312ec87a50aSRichard Smith const ModuleMap::KnownHeader &Old) { 3138b7c0398SSean Silva // Prefer available modules. 3148b7c0398SSean Silva if (New.getModule()->isAvailable() && !Old.getModule()->isAvailable()) 3158b7c0398SSean Silva return true; 3168b7c0398SSean Silva 317ec87a50aSRichard Smith // Prefer a public header over a private header. 318ec87a50aSRichard Smith if ((New.getRole() & ModuleMap::PrivateHeader) != 319ec87a50aSRichard Smith (Old.getRole() & ModuleMap::PrivateHeader)) 320ec87a50aSRichard Smith return !(New.getRole() & ModuleMap::PrivateHeader); 321ec87a50aSRichard Smith 322ec87a50aSRichard Smith // Prefer a non-textual header over a textual header. 323ec87a50aSRichard Smith if ((New.getRole() & ModuleMap::TextualHeader) != 324ec87a50aSRichard Smith (Old.getRole() & ModuleMap::TextualHeader)) 325ec87a50aSRichard Smith return !(New.getRole() & ModuleMap::TextualHeader); 326ec87a50aSRichard Smith 327ec87a50aSRichard Smith // Don't have a reason to choose between these. Just keep the first one. 328ec87a50aSRichard Smith return false; 329ec87a50aSRichard Smith } 330ec87a50aSRichard Smith 331ed84df00SBruno Cardoso Lopes ModuleMap::KnownHeader ModuleMap::findModuleForHeader(const FileEntry *File, 332ed84df00SBruno Cardoso Lopes bool AllowTextual) { 333306d8920SRichard Smith auto MakeResult = [&](ModuleMap::KnownHeader R) -> ModuleMap::KnownHeader { 334ed84df00SBruno Cardoso Lopes if (!AllowTextual && R.getRole() & ModuleMap::TextualHeader) 335306d8920SRichard Smith return ModuleMap::KnownHeader(); 336306d8920SRichard Smith return R; 337306d8920SRichard Smith }; 338306d8920SRichard Smith 3394881e8b2SSean Silva HeadersMap::iterator Known = findKnownHeader(File); 3401fb5c3a6SDouglas Gregor if (Known != Headers.end()) { 341202210b3SRichard Smith ModuleMap::KnownHeader Result; 34297da9178SDaniel Jasper // Iterate over all modules that 'File' is part of to find the best fit. 3434881e8b2SSean Silva for (KnownHeader &H : Known->second) { 3447e82e019SRichard Smith // Prefer a header from the source module over all others. 3457e82e019SRichard Smith if (H.getModule()->getTopLevelModule() == SourceModule) 3462f633e7cSRichard Smith return MakeResult(H); 3474881e8b2SSean Silva if (!Result || isBetterKnownHeader(H, Result)) 3484881e8b2SSean Silva Result = H; 34997da9178SDaniel Jasper } 350306d8920SRichard Smith return MakeResult(Result); 3511fb5c3a6SDouglas Gregor } 352ab0c8a84SDouglas Gregor 353386bb073SRichard Smith return MakeResult(findOrCreateModuleForHeaderInUmbrellaDir(File)); 354386bb073SRichard Smith } 355386bb073SRichard Smith 356386bb073SRichard Smith ModuleMap::KnownHeader 357386bb073SRichard Smith ModuleMap::findOrCreateModuleForHeaderInUmbrellaDir(const FileEntry *File) { 358386bb073SRichard Smith assert(!Headers.count(File) && "already have a module for this header"); 359386bb073SRichard Smith 360f857950dSDmitri Gribenko SmallVector<const DirectoryEntry *, 2> SkippedDirs; 3614469138eSBen Langmuir KnownHeader H = findHeaderInUmbrellaDirs(File, SkippedDirs); 3624469138eSBen Langmuir if (H) { 3634469138eSBen Langmuir Module *Result = H.getModule(); 364930a85ccSDouglas Gregor 365930a85ccSDouglas Gregor // Search up the module stack until we find a module with an umbrella 36673141fa9SDouglas Gregor // directory. 367930a85ccSDouglas Gregor Module *UmbrellaModule = Result; 36873141fa9SDouglas Gregor while (!UmbrellaModule->getUmbrellaDir() && UmbrellaModule->Parent) 369930a85ccSDouglas Gregor UmbrellaModule = UmbrellaModule->Parent; 370930a85ccSDouglas Gregor 371930a85ccSDouglas Gregor if (UmbrellaModule->InferSubmodules) { 3729d6448b1SBen Langmuir const FileEntry *UmbrellaModuleMap = 3739d6448b1SBen Langmuir getModuleMapFileForUniquing(UmbrellaModule); 3749d6448b1SBen Langmuir 375a89c5ac4SDouglas Gregor // Infer submodules for each of the directories we found between 376a89c5ac4SDouglas Gregor // the directory of the umbrella header and the directory where 377a89c5ac4SDouglas Gregor // the actual header is located. 3789458f82dSDouglas Gregor bool Explicit = UmbrellaModule->InferExplicitSubmodules; 3799458f82dSDouglas Gregor 3807033127bSDouglas Gregor for (unsigned I = SkippedDirs.size(); I != 0; --I) { 381a89c5ac4SDouglas Gregor // Find or create the module that corresponds to this directory name. 382056396aeSDouglas Gregor SmallString<32> NameBuf; 383056396aeSDouglas Gregor StringRef Name = sanitizeFilenameAsIdentifier( 3844469138eSBen Langmuir llvm::sys::path::stem(SkippedDirs[I-1]->getName()), NameBuf); 3859d6448b1SBen Langmuir Result = findOrCreateModule(Name, Result, /*IsFramework=*/false, 3869d6448b1SBen Langmuir Explicit).first; 3879d6448b1SBen Langmuir InferredModuleAllowedBy[Result] = UmbrellaModuleMap; 388ffbafa2aSBen Langmuir Result->IsInferred = true; 389a89c5ac4SDouglas Gregor 390a89c5ac4SDouglas Gregor // Associate the module and the directory. 391a89c5ac4SDouglas Gregor UmbrellaDirs[SkippedDirs[I-1]] = Result; 392a89c5ac4SDouglas Gregor 393a89c5ac4SDouglas Gregor // If inferred submodules export everything they import, add a 394a89c5ac4SDouglas Gregor // wildcard to the set of exports. 395930a85ccSDouglas Gregor if (UmbrellaModule->InferExportWildcard && Result->Exports.empty()) 396d2d442caSCraig Topper Result->Exports.push_back(Module::ExportDecl(nullptr, true)); 397a89c5ac4SDouglas Gregor } 398a89c5ac4SDouglas Gregor 399a89c5ac4SDouglas Gregor // Infer a submodule with the same name as this header file. 400056396aeSDouglas Gregor SmallString<32> NameBuf; 401056396aeSDouglas Gregor StringRef Name = sanitizeFilenameAsIdentifier( 402056396aeSDouglas Gregor llvm::sys::path::stem(File->getName()), NameBuf); 4039d6448b1SBen Langmuir Result = findOrCreateModule(Name, Result, /*IsFramework=*/false, 4049d6448b1SBen Langmuir Explicit).first; 4059d6448b1SBen Langmuir InferredModuleAllowedBy[Result] = UmbrellaModuleMap; 406ffbafa2aSBen Langmuir Result->IsInferred = true; 4073c5305c1SArgyrios Kyrtzidis Result->addTopHeader(File); 408a89c5ac4SDouglas Gregor 409a89c5ac4SDouglas Gregor // If inferred submodules export everything they import, add a 410a89c5ac4SDouglas Gregor // wildcard to the set of exports. 411930a85ccSDouglas Gregor if (UmbrellaModule->InferExportWildcard && Result->Exports.empty()) 412d2d442caSCraig Topper Result->Exports.push_back(Module::ExportDecl(nullptr, true)); 413a89c5ac4SDouglas Gregor } else { 414a89c5ac4SDouglas Gregor // Record each of the directories we stepped through as being part of 415a89c5ac4SDouglas Gregor // the module we found, since the umbrella header covers them all. 416a89c5ac4SDouglas Gregor for (unsigned I = 0, N = SkippedDirs.size(); I != N; ++I) 417a89c5ac4SDouglas Gregor UmbrellaDirs[SkippedDirs[I]] = Result; 418a89c5ac4SDouglas Gregor } 419a89c5ac4SDouglas Gregor 420386bb073SRichard Smith KnownHeader Header(Result, NormalHeader); 421386bb073SRichard Smith Headers[File].push_back(Header); 422386bb073SRichard Smith return Header; 423a89c5ac4SDouglas Gregor } 424a89c5ac4SDouglas Gregor 425b53e5483SLawrence Crowl return KnownHeader(); 426ab0c8a84SDouglas Gregor } 427ab0c8a84SDouglas Gregor 428386bb073SRichard Smith ArrayRef<ModuleMap::KnownHeader> 429386bb073SRichard Smith ModuleMap::findAllModulesForHeader(const FileEntry *File) const { 430386bb073SRichard Smith auto It = Headers.find(File); 431386bb073SRichard Smith if (It == Headers.end()) 432386bb073SRichard Smith return None; 433386bb073SRichard Smith return It->second; 434386bb073SRichard Smith } 435386bb073SRichard Smith 436e4412640SArgyrios Kyrtzidis bool ModuleMap::isHeaderInUnavailableModule(const FileEntry *Header) const { 437d2d442caSCraig Topper return isHeaderUnavailableInModule(Header, nullptr); 43850996ce1SRichard Smith } 43950996ce1SRichard Smith 44062bcd925SDmitri Gribenko bool 44162bcd925SDmitri Gribenko ModuleMap::isHeaderUnavailableInModule(const FileEntry *Header, 44262bcd925SDmitri Gribenko const Module *RequestingModule) const { 443e4412640SArgyrios Kyrtzidis HeadersMap::const_iterator Known = Headers.find(Header); 44497da9178SDaniel Jasper if (Known != Headers.end()) { 44597da9178SDaniel Jasper for (SmallVectorImpl<KnownHeader>::const_iterator 44697da9178SDaniel Jasper I = Known->second.begin(), 44797da9178SDaniel Jasper E = Known->second.end(); 44897da9178SDaniel Jasper I != E; ++I) { 449052d95a6SBruno Cardoso Lopes 450052d95a6SBruno Cardoso Lopes if (I->isAvailable() && 451052d95a6SBruno Cardoso Lopes (!RequestingModule || 452052d95a6SBruno Cardoso Lopes I->getModule()->isSubModuleOf(RequestingModule))) { 453052d95a6SBruno Cardoso Lopes // When no requesting module is available, the caller is looking if a 454052d95a6SBruno Cardoso Lopes // header is part a module by only looking into the module map. This is 455052d95a6SBruno Cardoso Lopes // done by warn_uncovered_module_header checks; don't consider textual 456052d95a6SBruno Cardoso Lopes // headers part of it in this mode, otherwise we get misleading warnings 457052d95a6SBruno Cardoso Lopes // that a umbrella header is not including a textual header. 458052d95a6SBruno Cardoso Lopes if (!RequestingModule && I->getRole() == ModuleMap::TextualHeader) 459052d95a6SBruno Cardoso Lopes continue; 46097da9178SDaniel Jasper return false; 46197da9178SDaniel Jasper } 462052d95a6SBruno Cardoso Lopes } 46397da9178SDaniel Jasper return true; 46497da9178SDaniel Jasper } 4651fb5c3a6SDouglas Gregor 4661fb5c3a6SDouglas Gregor const DirectoryEntry *Dir = Header->getDir(); 467f857950dSDmitri Gribenko SmallVector<const DirectoryEntry *, 2> SkippedDirs; 4681fb5c3a6SDouglas Gregor StringRef DirName = Dir->getName(); 4691fb5c3a6SDouglas Gregor 47050996ce1SRichard Smith auto IsUnavailable = [&](const Module *M) { 47150996ce1SRichard Smith return !M->isAvailable() && (!RequestingModule || 47250996ce1SRichard Smith M->isSubModuleOf(RequestingModule)); 47350996ce1SRichard Smith }; 47450996ce1SRichard Smith 4751fb5c3a6SDouglas Gregor // Keep walking up the directory hierarchy, looking for a directory with 4761fb5c3a6SDouglas Gregor // an umbrella header. 4771fb5c3a6SDouglas Gregor do { 478e4412640SArgyrios Kyrtzidis llvm::DenseMap<const DirectoryEntry *, Module *>::const_iterator KnownDir 4791fb5c3a6SDouglas Gregor = UmbrellaDirs.find(Dir); 4801fb5c3a6SDouglas Gregor if (KnownDir != UmbrellaDirs.end()) { 4811fb5c3a6SDouglas Gregor Module *Found = KnownDir->second; 48250996ce1SRichard Smith if (IsUnavailable(Found)) 4831fb5c3a6SDouglas Gregor return true; 4841fb5c3a6SDouglas Gregor 4851fb5c3a6SDouglas Gregor // Search up the module stack until we find a module with an umbrella 4861fb5c3a6SDouglas Gregor // directory. 4871fb5c3a6SDouglas Gregor Module *UmbrellaModule = Found; 4881fb5c3a6SDouglas Gregor while (!UmbrellaModule->getUmbrellaDir() && UmbrellaModule->Parent) 4891fb5c3a6SDouglas Gregor UmbrellaModule = UmbrellaModule->Parent; 4901fb5c3a6SDouglas Gregor 4911fb5c3a6SDouglas Gregor if (UmbrellaModule->InferSubmodules) { 4921fb5c3a6SDouglas Gregor for (unsigned I = SkippedDirs.size(); I != 0; --I) { 4931fb5c3a6SDouglas Gregor // Find or create the module that corresponds to this directory name. 494056396aeSDouglas Gregor SmallString<32> NameBuf; 495056396aeSDouglas Gregor StringRef Name = sanitizeFilenameAsIdentifier( 496056396aeSDouglas Gregor llvm::sys::path::stem(SkippedDirs[I-1]->getName()), 497056396aeSDouglas Gregor NameBuf); 4981fb5c3a6SDouglas Gregor Found = lookupModuleQualified(Name, Found); 4991fb5c3a6SDouglas Gregor if (!Found) 5001fb5c3a6SDouglas Gregor return false; 50150996ce1SRichard Smith if (IsUnavailable(Found)) 5021fb5c3a6SDouglas Gregor return true; 5031fb5c3a6SDouglas Gregor } 5041fb5c3a6SDouglas Gregor 5051fb5c3a6SDouglas Gregor // Infer a submodule with the same name as this header file. 506056396aeSDouglas Gregor SmallString<32> NameBuf; 507056396aeSDouglas Gregor StringRef Name = sanitizeFilenameAsIdentifier( 508056396aeSDouglas Gregor llvm::sys::path::stem(Header->getName()), 509056396aeSDouglas Gregor NameBuf); 5101fb5c3a6SDouglas Gregor Found = lookupModuleQualified(Name, Found); 5111fb5c3a6SDouglas Gregor if (!Found) 5121fb5c3a6SDouglas Gregor return false; 5131fb5c3a6SDouglas Gregor } 5141fb5c3a6SDouglas Gregor 51550996ce1SRichard Smith return IsUnavailable(Found); 5161fb5c3a6SDouglas Gregor } 5171fb5c3a6SDouglas Gregor 5181fb5c3a6SDouglas Gregor SkippedDirs.push_back(Dir); 5191fb5c3a6SDouglas Gregor 5201fb5c3a6SDouglas Gregor // Retrieve our parent path. 5211fb5c3a6SDouglas Gregor DirName = llvm::sys::path::parent_path(DirName); 5221fb5c3a6SDouglas Gregor if (DirName.empty()) 5231fb5c3a6SDouglas Gregor break; 5241fb5c3a6SDouglas Gregor 5251fb5c3a6SDouglas Gregor // Resolve the parent path to a directory entry. 5261f76c4e8SManuel Klimek Dir = SourceMgr.getFileManager().getDirectory(DirName); 5271fb5c3a6SDouglas Gregor } while (Dir); 5281fb5c3a6SDouglas Gregor 5291fb5c3a6SDouglas Gregor return false; 5301fb5c3a6SDouglas Gregor } 5311fb5c3a6SDouglas Gregor 532e4412640SArgyrios Kyrtzidis Module *ModuleMap::findModule(StringRef Name) const { 533e4412640SArgyrios Kyrtzidis llvm::StringMap<Module *>::const_iterator Known = Modules.find(Name); 53488bdfb0eSDouglas Gregor if (Known != Modules.end()) 53588bdfb0eSDouglas Gregor return Known->getValue(); 53688bdfb0eSDouglas Gregor 537d2d442caSCraig Topper return nullptr; 53888bdfb0eSDouglas Gregor } 53988bdfb0eSDouglas Gregor 540e4412640SArgyrios Kyrtzidis Module *ModuleMap::lookupModuleUnqualified(StringRef Name, 541e4412640SArgyrios Kyrtzidis Module *Context) const { 5422b82c2a5SDouglas Gregor for(; Context; Context = Context->Parent) { 5432b82c2a5SDouglas Gregor if (Module *Sub = lookupModuleQualified(Name, Context)) 5442b82c2a5SDouglas Gregor return Sub; 5452b82c2a5SDouglas Gregor } 5462b82c2a5SDouglas Gregor 5472b82c2a5SDouglas Gregor return findModule(Name); 5482b82c2a5SDouglas Gregor } 5492b82c2a5SDouglas Gregor 550e4412640SArgyrios Kyrtzidis Module *ModuleMap::lookupModuleQualified(StringRef Name, Module *Context) const{ 5512b82c2a5SDouglas Gregor if (!Context) 5522b82c2a5SDouglas Gregor return findModule(Name); 5532b82c2a5SDouglas Gregor 554eb90e830SDouglas Gregor return Context->findSubmodule(Name); 5552b82c2a5SDouglas Gregor } 5562b82c2a5SDouglas Gregor 5579ffe5a35SDavid Blaikie std::pair<Module *, bool> ModuleMap::findOrCreateModule(StringRef Name, 5589ffe5a35SDavid Blaikie Module *Parent, 5599ffe5a35SDavid Blaikie bool IsFramework, 56069021974SDouglas Gregor bool IsExplicit) { 56169021974SDouglas Gregor // Try to find an existing module with this name. 562eb90e830SDouglas Gregor if (Module *Sub = lookupModuleQualified(Name, Parent)) 563eb90e830SDouglas Gregor return std::make_pair(Sub, false); 56469021974SDouglas Gregor 56569021974SDouglas Gregor // Create a new module with this name. 5669ffe5a35SDavid Blaikie Module *Result = new Module(Name, SourceLocation(), Parent, IsFramework, 5679ffe5a35SDavid Blaikie IsExplicit, NumCreatedModules++); 5686f722b4eSArgyrios Kyrtzidis if (!Parent) { 5697e82e019SRichard Smith if (LangOpts.CurrentModule == Name) 5707e82e019SRichard Smith SourceModule = Result; 57169021974SDouglas Gregor Modules[Name] = Result; 5726f722b4eSArgyrios Kyrtzidis } 57369021974SDouglas Gregor return std::make_pair(Result, true); 57469021974SDouglas Gregor } 57569021974SDouglas Gregor 576bbcc9f04SRichard Smith Module *ModuleMap::createModuleForInterfaceUnit(SourceLocation Loc, 577bbcc9f04SRichard Smith StringRef Name) { 578bbcc9f04SRichard Smith assert(LangOpts.CurrentModule == Name && "module name mismatch"); 579bbcc9f04SRichard Smith assert(!Modules[Name] && "redefining existing module"); 580bbcc9f04SRichard Smith 581bbcc9f04SRichard Smith auto *Result = 582bbcc9f04SRichard Smith new Module(Name, Loc, nullptr, /*IsFramework*/ false, 583bbcc9f04SRichard Smith /*IsExplicit*/ false, NumCreatedModules++); 584145e15a3SRichard Smith Result->Kind = Module::ModuleInterfaceUnit; 585bbcc9f04SRichard Smith Modules[Name] = SourceModule = Result; 586bbcc9f04SRichard Smith 587bbcc9f04SRichard Smith // Mark the main source file as being within the newly-created module so that 588bbcc9f04SRichard Smith // declarations and macros are properly visibility-restricted to it. 589bbcc9f04SRichard Smith auto *MainFile = SourceMgr.getFileEntryForID(SourceMgr.getMainFileID()); 590bbcc9f04SRichard Smith assert(MainFile && "no input file for module interface"); 591bbcc9f04SRichard Smith Headers[MainFile].push_back(KnownHeader(Result, PrivateHeader)); 592bbcc9f04SRichard Smith 593bbcc9f04SRichard Smith return Result; 594bbcc9f04SRichard Smith } 595bbcc9f04SRichard Smith 59611dfe6feSDouglas Gregor /// \brief For a framework module, infer the framework against which we 59711dfe6feSDouglas Gregor /// should link. 59811dfe6feSDouglas Gregor static void inferFrameworkLink(Module *Mod, const DirectoryEntry *FrameworkDir, 59911dfe6feSDouglas Gregor FileManager &FileMgr) { 60011dfe6feSDouglas Gregor assert(Mod->IsFramework && "Can only infer linking for framework modules"); 60111dfe6feSDouglas Gregor assert(!Mod->isSubFramework() && 60211dfe6feSDouglas Gregor "Can only infer linking for top-level frameworks"); 60311dfe6feSDouglas Gregor 60411dfe6feSDouglas Gregor SmallString<128> LibName; 60511dfe6feSDouglas Gregor LibName += FrameworkDir->getName(); 60611dfe6feSDouglas Gregor llvm::sys::path::append(LibName, Mod->Name); 6078aaae5a9SJuergen Ributzka 6088aaae5a9SJuergen Ributzka // The library name of a framework has more than one possible extension since 6098aaae5a9SJuergen Ributzka // the introduction of the text-based dynamic library format. We need to check 6108aaae5a9SJuergen Ributzka // for both before we give up. 6118013e81dSBenjamin Kramer for (const char *extension : {"", ".tbd"}) { 6128aaae5a9SJuergen Ributzka llvm::sys::path::replace_extension(LibName, extension); 61311dfe6feSDouglas Gregor if (FileMgr.getFile(LibName)) { 61411dfe6feSDouglas Gregor Mod->LinkLibraries.push_back(Module::LinkLibrary(Mod->Name, 61511dfe6feSDouglas Gregor /*IsFramework=*/true)); 6168aaae5a9SJuergen Ributzka return; 6178aaae5a9SJuergen Ributzka } 61811dfe6feSDouglas Gregor } 61911dfe6feSDouglas Gregor } 62011dfe6feSDouglas Gregor 621a525400dSBen Langmuir Module *ModuleMap::inferFrameworkModule(const DirectoryEntry *FrameworkDir, 622a525400dSBen Langmuir bool IsSystem, Module *Parent) { 623c1d88ea5SBen Langmuir Attributes Attrs; 624c1d88ea5SBen Langmuir Attrs.IsSystem = IsSystem; 625a525400dSBen Langmuir return inferFrameworkModule(FrameworkDir, Attrs, Parent); 626c1d88ea5SBen Langmuir } 627c1d88ea5SBen Langmuir 628a525400dSBen Langmuir Module *ModuleMap::inferFrameworkModule(const DirectoryEntry *FrameworkDir, 629c1d88ea5SBen Langmuir Attributes Attrs, Module *Parent) { 630a525400dSBen Langmuir // Note: as an egregious but useful hack we use the real path here, because 631a525400dSBen Langmuir // we might be looking at an embedded framework that symlinks out to a 632a525400dSBen Langmuir // top-level framework, and we need to infer as if we were naming the 633a525400dSBen Langmuir // top-level framework. 634a525400dSBen Langmuir StringRef FrameworkDirName = 635a525400dSBen Langmuir SourceMgr.getFileManager().getCanonicalName(FrameworkDir); 636a525400dSBen Langmuir 637a525400dSBen Langmuir // In case this is a case-insensitive filesystem, use the canonical 638a525400dSBen Langmuir // directory name as the ModuleName, since modules are case-sensitive. 639a525400dSBen Langmuir // FIXME: we should be able to give a fix-it hint for the correct spelling. 640a525400dSBen Langmuir SmallString<32> ModuleNameStorage; 641a525400dSBen Langmuir StringRef ModuleName = sanitizeFilenameAsIdentifier( 642a525400dSBen Langmuir llvm::sys::path::stem(FrameworkDirName), ModuleNameStorage); 643c1d88ea5SBen Langmuir 64456c64013SDouglas Gregor // Check whether we've already found this module. 645e89dbc1dSDouglas Gregor if (Module *Mod = lookupModuleQualified(ModuleName, Parent)) 646e89dbc1dSDouglas Gregor return Mod; 647e89dbc1dSDouglas Gregor 6481f76c4e8SManuel Klimek FileManager &FileMgr = SourceMgr.getFileManager(); 64956c64013SDouglas Gregor 6509194a91dSDouglas Gregor // If the framework has a parent path from which we're allowed to infer 6519194a91dSDouglas Gregor // a framework module, do so. 652beee15e7SBen Langmuir const FileEntry *ModuleMapFile = nullptr; 6539194a91dSDouglas Gregor if (!Parent) { 6544ddf2221SDouglas Gregor // Determine whether we're allowed to infer a module map. 6559194a91dSDouglas Gregor bool canInfer = false; 6564ddf2221SDouglas Gregor if (llvm::sys::path::has_parent_path(FrameworkDirName)) { 6579194a91dSDouglas Gregor // Figure out the parent path. 6584ddf2221SDouglas Gregor StringRef Parent = llvm::sys::path::parent_path(FrameworkDirName); 6599194a91dSDouglas Gregor if (const DirectoryEntry *ParentDir = FileMgr.getDirectory(Parent)) { 6609194a91dSDouglas Gregor // Check whether we have already looked into the parent directory 6619194a91dSDouglas Gregor // for a module map. 662e4412640SArgyrios Kyrtzidis llvm::DenseMap<const DirectoryEntry *, InferredDirectory>::const_iterator 6639194a91dSDouglas Gregor inferred = InferredDirectories.find(ParentDir); 6649194a91dSDouglas Gregor if (inferred == InferredDirectories.end()) { 6659194a91dSDouglas Gregor // We haven't looked here before. Load a module map, if there is 6669194a91dSDouglas Gregor // one. 667984e1df7SBen Langmuir bool IsFrameworkDir = Parent.endswith(".framework"); 668984e1df7SBen Langmuir if (const FileEntry *ModMapFile = 669984e1df7SBen Langmuir HeaderInfo.lookupModuleMapFile(ParentDir, IsFrameworkDir)) { 670c1d88ea5SBen Langmuir parseModuleMapFile(ModMapFile, Attrs.IsSystem, ParentDir); 6719194a91dSDouglas Gregor inferred = InferredDirectories.find(ParentDir); 6729194a91dSDouglas Gregor } 6739194a91dSDouglas Gregor 6749194a91dSDouglas Gregor if (inferred == InferredDirectories.end()) 6759194a91dSDouglas Gregor inferred = InferredDirectories.insert( 6769194a91dSDouglas Gregor std::make_pair(ParentDir, InferredDirectory())).first; 6779194a91dSDouglas Gregor } 6789194a91dSDouglas Gregor 6799194a91dSDouglas Gregor if (inferred->second.InferModules) { 6809194a91dSDouglas Gregor // We're allowed to infer for this directory, but make sure it's okay 6819194a91dSDouglas Gregor // to infer this particular module. 6824ddf2221SDouglas Gregor StringRef Name = llvm::sys::path::stem(FrameworkDirName); 6839194a91dSDouglas Gregor canInfer = std::find(inferred->second.ExcludedModules.begin(), 6849194a91dSDouglas Gregor inferred->second.ExcludedModules.end(), 6859194a91dSDouglas Gregor Name) == inferred->second.ExcludedModules.end(); 6869194a91dSDouglas Gregor 687c1d88ea5SBen Langmuir Attrs.IsSystem |= inferred->second.Attrs.IsSystem; 688c1d88ea5SBen Langmuir Attrs.IsExternC |= inferred->second.Attrs.IsExternC; 689c1d88ea5SBen Langmuir Attrs.IsExhaustive |= inferred->second.Attrs.IsExhaustive; 690ed84df00SBruno Cardoso Lopes Attrs.NoUndeclaredIncludes |= 691ed84df00SBruno Cardoso Lopes inferred->second.Attrs.NoUndeclaredIncludes; 692beee15e7SBen Langmuir ModuleMapFile = inferred->second.ModuleMapFile; 6939194a91dSDouglas Gregor } 6949194a91dSDouglas Gregor } 6959194a91dSDouglas Gregor } 6969194a91dSDouglas Gregor 6979194a91dSDouglas Gregor // If we're not allowed to infer a framework module, don't. 6989194a91dSDouglas Gregor if (!canInfer) 699d2d442caSCraig Topper return nullptr; 700beee15e7SBen Langmuir } else 7019d6448b1SBen Langmuir ModuleMapFile = getModuleMapFileForUniquing(Parent); 7029194a91dSDouglas Gregor 7039194a91dSDouglas Gregor 70456c64013SDouglas Gregor // Look for an umbrella header. 7052c1dd271SDylan Noblesmith SmallString<128> UmbrellaName = StringRef(FrameworkDir->getName()); 70617381a06SBenjamin Kramer llvm::sys::path::append(UmbrellaName, "Headers", ModuleName + ".h"); 707e89dbc1dSDouglas Gregor const FileEntry *UmbrellaHeader = FileMgr.getFile(UmbrellaName); 70856c64013SDouglas Gregor 70956c64013SDouglas Gregor // FIXME: If there's no umbrella header, we could probably scan the 71056c64013SDouglas Gregor // framework to load *everything*. But, it's not clear that this is a good 71156c64013SDouglas Gregor // idea. 71256c64013SDouglas Gregor if (!UmbrellaHeader) 713d2d442caSCraig Topper return nullptr; 71456c64013SDouglas Gregor 7159d6448b1SBen Langmuir Module *Result = new Module(ModuleName, SourceLocation(), Parent, 716a7e2cc68SRichard Smith /*IsFramework=*/true, /*IsExplicit=*/false, 717a7e2cc68SRichard Smith NumCreatedModules++); 7189d6448b1SBen Langmuir InferredModuleAllowedBy[Result] = ModuleMapFile; 7199d6448b1SBen Langmuir Result->IsInferred = true; 7207e82e019SRichard Smith if (!Parent) { 7217e82e019SRichard Smith if (LangOpts.CurrentModule == ModuleName) 722ba7f2f71SDaniel Jasper SourceModule = Result; 7237e82e019SRichard Smith Modules[ModuleName] = Result; 724ba7f2f71SDaniel Jasper } 725c1d88ea5SBen Langmuir 726c1d88ea5SBen Langmuir Result->IsSystem |= Attrs.IsSystem; 727c1d88ea5SBen Langmuir Result->IsExternC |= Attrs.IsExternC; 728c1d88ea5SBen Langmuir Result->ConfigMacrosExhaustive |= Attrs.IsExhaustive; 729ed84df00SBruno Cardoso Lopes Result->NoUndeclaredIncludes |= Attrs.NoUndeclaredIncludes; 7302b63d15fSRichard Smith Result->Directory = FrameworkDir; 731a686e1b0SDouglas Gregor 732322f633cSDouglas Gregor // umbrella header "umbrella-header-name" 7332b63d15fSRichard Smith // 7342b63d15fSRichard Smith // The "Headers/" component of the name is implied because this is 7352b63d15fSRichard Smith // a framework module. 7362b63d15fSRichard Smith setUmbrellaHeader(Result, UmbrellaHeader, ModuleName + ".h"); 737d8bd7537SDouglas Gregor 738d8bd7537SDouglas Gregor // export * 739d2d442caSCraig Topper Result->Exports.push_back(Module::ExportDecl(nullptr, true)); 740d8bd7537SDouglas Gregor 741a89c5ac4SDouglas Gregor // module * { export * } 742a89c5ac4SDouglas Gregor Result->InferSubmodules = true; 743a89c5ac4SDouglas Gregor Result->InferExportWildcard = true; 744a89c5ac4SDouglas Gregor 745e89dbc1dSDouglas Gregor // Look for subframeworks. 746c080917eSRafael Espindola std::error_code EC; 7472c1dd271SDylan Noblesmith SmallString<128> SubframeworksDirName 748ddaa69cbSDouglas Gregor = StringRef(FrameworkDir->getName()); 749e89dbc1dSDouglas Gregor llvm::sys::path::append(SubframeworksDirName, "Frameworks"); 7502d4d8cb3SBenjamin Kramer llvm::sys::path::native(SubframeworksDirName); 751b171a59bSBruno Cardoso Lopes vfs::FileSystem &FS = *FileMgr.getVirtualFileSystem(); 752b171a59bSBruno Cardoso Lopes for (vfs::directory_iterator Dir = FS.dir_begin(SubframeworksDirName, EC), 753b171a59bSBruno Cardoso Lopes DirEnd; 754e89dbc1dSDouglas Gregor Dir != DirEnd && !EC; Dir.increment(EC)) { 755b171a59bSBruno Cardoso Lopes if (!StringRef(Dir->getName()).endswith(".framework")) 756e89dbc1dSDouglas Gregor continue; 757f2161a70SDouglas Gregor 758b171a59bSBruno Cardoso Lopes if (const DirectoryEntry *SubframeworkDir = 759b171a59bSBruno Cardoso Lopes FileMgr.getDirectory(Dir->getName())) { 76007c22b78SDouglas Gregor // Note: as an egregious but useful hack, we use the real path here and 76107c22b78SDouglas Gregor // check whether it is actually a subdirectory of the parent directory. 76207c22b78SDouglas Gregor // This will not be the case if the 'subframework' is actually a symlink 76307c22b78SDouglas Gregor // out to a top-level framework. 764e00c8b20SDouglas Gregor StringRef SubframeworkDirName = FileMgr.getCanonicalName(SubframeworkDir); 76507c22b78SDouglas Gregor bool FoundParent = false; 76607c22b78SDouglas Gregor do { 76707c22b78SDouglas Gregor // Get the parent directory name. 76807c22b78SDouglas Gregor SubframeworkDirName 76907c22b78SDouglas Gregor = llvm::sys::path::parent_path(SubframeworkDirName); 77007c22b78SDouglas Gregor if (SubframeworkDirName.empty()) 77107c22b78SDouglas Gregor break; 77207c22b78SDouglas Gregor 77307c22b78SDouglas Gregor if (FileMgr.getDirectory(SubframeworkDirName) == FrameworkDir) { 77407c22b78SDouglas Gregor FoundParent = true; 77507c22b78SDouglas Gregor break; 77607c22b78SDouglas Gregor } 77707c22b78SDouglas Gregor } while (true); 77807c22b78SDouglas Gregor 77907c22b78SDouglas Gregor if (!FoundParent) 78007c22b78SDouglas Gregor continue; 78107c22b78SDouglas Gregor 782e89dbc1dSDouglas Gregor // FIXME: Do we want to warn about subframeworks without umbrella headers? 783a525400dSBen Langmuir inferFrameworkModule(SubframeworkDir, Attrs, Result); 784e89dbc1dSDouglas Gregor } 785e89dbc1dSDouglas Gregor } 786e89dbc1dSDouglas Gregor 78711dfe6feSDouglas Gregor // If the module is a top-level framework, automatically link against the 78811dfe6feSDouglas Gregor // framework. 78911dfe6feSDouglas Gregor if (!Result->isSubFramework()) { 79011dfe6feSDouglas Gregor inferFrameworkLink(Result, FrameworkDir, FileMgr); 79111dfe6feSDouglas Gregor } 79211dfe6feSDouglas Gregor 79356c64013SDouglas Gregor return Result; 79456c64013SDouglas Gregor } 79556c64013SDouglas Gregor 7962b63d15fSRichard Smith void ModuleMap::setUmbrellaHeader(Module *Mod, const FileEntry *UmbrellaHeader, 7972b63d15fSRichard Smith Twine NameAsWritten) { 79897da9178SDaniel Jasper Headers[UmbrellaHeader].push_back(KnownHeader(Mod, NormalHeader)); 79973141fa9SDouglas Gregor Mod->Umbrella = UmbrellaHeader; 8002b63d15fSRichard Smith Mod->UmbrellaAsWritten = NameAsWritten.str(); 8017033127bSDouglas Gregor UmbrellaDirs[UmbrellaHeader->getDir()] = Mod; 802b3a0fa48SBruno Cardoso Lopes 803b3a0fa48SBruno Cardoso Lopes // Notify callbacks that we just added a new header. 804b3a0fa48SBruno Cardoso Lopes for (const auto &Cb : Callbacks) 805b3a0fa48SBruno Cardoso Lopes Cb->moduleMapAddUmbrellaHeader(&SourceMgr.getFileManager(), UmbrellaHeader); 806a89c5ac4SDouglas Gregor } 807a89c5ac4SDouglas Gregor 8082b63d15fSRichard Smith void ModuleMap::setUmbrellaDir(Module *Mod, const DirectoryEntry *UmbrellaDir, 8092b63d15fSRichard Smith Twine NameAsWritten) { 810524e33e1SDouglas Gregor Mod->Umbrella = UmbrellaDir; 8112b63d15fSRichard Smith Mod->UmbrellaAsWritten = NameAsWritten.str(); 812524e33e1SDouglas Gregor UmbrellaDirs[UmbrellaDir] = Mod; 813524e33e1SDouglas Gregor } 814524e33e1SDouglas Gregor 8153c1a41adSRichard Smith static Module::HeaderKind headerRoleToKind(ModuleMap::ModuleHeaderRole Role) { 8160e98d938SNAKAMURA Takumi switch ((int)Role) { 8173c1a41adSRichard Smith default: llvm_unreachable("unknown header role"); 8183c1a41adSRichard Smith case ModuleMap::NormalHeader: 8193c1a41adSRichard Smith return Module::HK_Normal; 8203c1a41adSRichard Smith case ModuleMap::PrivateHeader: 8213c1a41adSRichard Smith return Module::HK_Private; 8223c1a41adSRichard Smith case ModuleMap::TextualHeader: 8233c1a41adSRichard Smith return Module::HK_Textual; 8243c1a41adSRichard Smith case ModuleMap::PrivateHeader | ModuleMap::TextualHeader: 8253c1a41adSRichard Smith return Module::HK_PrivateTextual; 8263c1a41adSRichard Smith } 8270e98d938SNAKAMURA Takumi } 828202210b3SRichard Smith 8293c1a41adSRichard Smith void ModuleMap::addHeader(Module *Mod, Module::Header Header, 830d8879c85SRichard Smith ModuleHeaderRole Role, bool Imported) { 831386bb073SRichard Smith KnownHeader KH(Mod, Role); 8323c1a41adSRichard Smith 833386bb073SRichard Smith // Only add each header to the headers list once. 834386bb073SRichard Smith // FIXME: Should we diagnose if a header is listed twice in the 835386bb073SRichard Smith // same module definition? 836386bb073SRichard Smith auto &HeaderList = Headers[Header.Entry]; 837386bb073SRichard Smith for (auto H : HeaderList) 838386bb073SRichard Smith if (H == KH) 839386bb073SRichard Smith return; 840386bb073SRichard Smith 841386bb073SRichard Smith HeaderList.push_back(KH); 8421ec383c7SPiotr Padlewski Mod->Headers[headerRoleToKind(Role)].push_back(Header); 843386bb073SRichard Smith 8447e82e019SRichard Smith bool isCompilingModuleHeader = 845bbcc9f04SRichard Smith LangOpts.isCompilingModule() && Mod->getTopLevelModule() == SourceModule; 846d8879c85SRichard Smith if (!Imported || isCompilingModuleHeader) { 847d8879c85SRichard Smith // When we import HeaderFileInfo, the external source is expected to 848d8879c85SRichard Smith // set the isModuleHeader flag itself. 849d8879c85SRichard Smith HeaderInfo.MarkFileModuleHeader(Header.Entry, Role, 850d8879c85SRichard Smith isCompilingModuleHeader); 851d8879c85SRichard Smith } 852e62cfd7cSBruno Cardoso Lopes 853e62cfd7cSBruno Cardoso Lopes // Notify callbacks that we just added a new header. 854e62cfd7cSBruno Cardoso Lopes for (const auto &Cb : Callbacks) 855f0841790SBruno Cardoso Lopes Cb->moduleMapAddHeader(Header.Entry->getName()); 856a89c5ac4SDouglas Gregor } 857a89c5ac4SDouglas Gregor 8583c1a41adSRichard Smith void ModuleMap::excludeHeader(Module *Mod, Module::Header Header) { 859feb54b6dSRichard Smith // Add this as a known header so we won't implicitly add it to any 860feb54b6dSRichard Smith // umbrella directory module. 861feb54b6dSRichard Smith // FIXME: Should we only exclude it from umbrella modules within the 862feb54b6dSRichard Smith // specified module? 8633c1a41adSRichard Smith (void) Headers[Header.Entry]; 8643c1a41adSRichard Smith 8653c1a41adSRichard Smith Mod->Headers[Module::HK_Excluded].push_back(std::move(Header)); 866feb54b6dSRichard Smith } 867feb54b6dSRichard Smith 868514b636aSDouglas Gregor const FileEntry * 8694b8a9e95SBen Langmuir ModuleMap::getContainingModuleMapFile(const Module *Module) const { 8701f76c4e8SManuel Klimek if (Module->DefinitionLoc.isInvalid()) 871d2d442caSCraig Topper return nullptr; 872514b636aSDouglas Gregor 8731f76c4e8SManuel Klimek return SourceMgr.getFileEntryForID( 8741f76c4e8SManuel Klimek SourceMgr.getFileID(Module->DefinitionLoc)); 875514b636aSDouglas Gregor } 876514b636aSDouglas Gregor 8774b8a9e95SBen Langmuir const FileEntry *ModuleMap::getModuleMapFileForUniquing(const Module *M) const { 8789d6448b1SBen Langmuir if (M->IsInferred) { 8799d6448b1SBen Langmuir assert(InferredModuleAllowedBy.count(M) && "missing inferred module map"); 8809d6448b1SBen Langmuir return InferredModuleAllowedBy.find(M)->second; 8819d6448b1SBen Langmuir } 8829d6448b1SBen Langmuir return getContainingModuleMapFile(M); 8839d6448b1SBen Langmuir } 8849d6448b1SBen Langmuir 8859d6448b1SBen Langmuir void ModuleMap::setInferredModuleAllowedBy(Module *M, const FileEntry *ModMap) { 8869d6448b1SBen Langmuir assert(M->IsInferred && "module not inferred"); 8879d6448b1SBen Langmuir InferredModuleAllowedBy[M] = ModMap; 8889d6448b1SBen Langmuir } 8899d6448b1SBen Langmuir 890cdae941eSYaron Keren LLVM_DUMP_METHOD void ModuleMap::dump() { 891718292f2SDouglas Gregor llvm::errs() << "Modules:"; 892718292f2SDouglas Gregor for (llvm::StringMap<Module *>::iterator M = Modules.begin(), 893718292f2SDouglas Gregor MEnd = Modules.end(); 894718292f2SDouglas Gregor M != MEnd; ++M) 895d28d1b8dSDouglas Gregor M->getValue()->print(llvm::errs(), 2); 896718292f2SDouglas Gregor 897718292f2SDouglas Gregor llvm::errs() << "Headers:"; 89859527666SDouglas Gregor for (HeadersMap::iterator H = Headers.begin(), HEnd = Headers.end(); 899718292f2SDouglas Gregor H != HEnd; ++H) { 90097da9178SDaniel Jasper llvm::errs() << " \"" << H->first->getName() << "\" -> "; 90197da9178SDaniel Jasper for (SmallVectorImpl<KnownHeader>::const_iterator I = H->second.begin(), 90297da9178SDaniel Jasper E = H->second.end(); 90397da9178SDaniel Jasper I != E; ++I) { 90497da9178SDaniel Jasper if (I != H->second.begin()) 90597da9178SDaniel Jasper llvm::errs() << ","; 90697da9178SDaniel Jasper llvm::errs() << I->getModule()->getFullModuleName(); 90797da9178SDaniel Jasper } 90897da9178SDaniel Jasper llvm::errs() << "\n"; 909718292f2SDouglas Gregor } 910718292f2SDouglas Gregor } 911718292f2SDouglas Gregor 9122b82c2a5SDouglas Gregor bool ModuleMap::resolveExports(Module *Mod, bool Complain) { 91342413141SRichard Smith auto Unresolved = std::move(Mod->UnresolvedExports); 91442413141SRichard Smith Mod->UnresolvedExports.clear(); 91542413141SRichard Smith for (auto &UE : Unresolved) { 91642413141SRichard Smith Module::ExportDecl Export = resolveExport(Mod, UE, Complain); 917f5eedd05SDouglas Gregor if (Export.getPointer() || Export.getInt()) 9182b82c2a5SDouglas Gregor Mod->Exports.push_back(Export); 9192b82c2a5SDouglas Gregor else 92042413141SRichard Smith Mod->UnresolvedExports.push_back(UE); 9212b82c2a5SDouglas Gregor } 92242413141SRichard Smith return !Mod->UnresolvedExports.empty(); 9232b82c2a5SDouglas Gregor } 9242b82c2a5SDouglas Gregor 925ba7f2f71SDaniel Jasper bool ModuleMap::resolveUses(Module *Mod, bool Complain) { 92642413141SRichard Smith auto Unresolved = std::move(Mod->UnresolvedDirectUses); 92742413141SRichard Smith Mod->UnresolvedDirectUses.clear(); 92842413141SRichard Smith for (auto &UDU : Unresolved) { 92942413141SRichard Smith Module *DirectUse = resolveModuleId(UDU, Mod, Complain); 930ba7f2f71SDaniel Jasper if (DirectUse) 931ba7f2f71SDaniel Jasper Mod->DirectUses.push_back(DirectUse); 932ba7f2f71SDaniel Jasper else 93342413141SRichard Smith Mod->UnresolvedDirectUses.push_back(UDU); 934ba7f2f71SDaniel Jasper } 93542413141SRichard Smith return !Mod->UnresolvedDirectUses.empty(); 936ba7f2f71SDaniel Jasper } 937ba7f2f71SDaniel Jasper 938fb912657SDouglas Gregor bool ModuleMap::resolveConflicts(Module *Mod, bool Complain) { 93942413141SRichard Smith auto Unresolved = std::move(Mod->UnresolvedConflicts); 94042413141SRichard Smith Mod->UnresolvedConflicts.clear(); 94142413141SRichard Smith for (auto &UC : Unresolved) { 94242413141SRichard Smith if (Module *OtherMod = resolveModuleId(UC.Id, Mod, Complain)) { 943fb912657SDouglas Gregor Module::Conflict Conflict; 944fb912657SDouglas Gregor Conflict.Other = OtherMod; 94542413141SRichard Smith Conflict.Message = UC.Message; 946fb912657SDouglas Gregor Mod->Conflicts.push_back(Conflict); 94742413141SRichard Smith } else 94842413141SRichard Smith Mod->UnresolvedConflicts.push_back(UC); 949fb912657SDouglas Gregor } 95042413141SRichard Smith return !Mod->UnresolvedConflicts.empty(); 951fb912657SDouglas Gregor } 952fb912657SDouglas Gregor 9530093b3c7SDouglas Gregor Module *ModuleMap::inferModuleFromLocation(FullSourceLoc Loc) { 9540093b3c7SDouglas Gregor if (Loc.isInvalid()) 955d2d442caSCraig Topper return nullptr; 9560093b3c7SDouglas Gregor 9577ffd0b44SDavid Majnemer if (UmbrellaDirs.empty() && Headers.empty()) 9587ffd0b44SDavid Majnemer return nullptr; 9597ffd0b44SDavid Majnemer 9600093b3c7SDouglas Gregor // Use the expansion location to determine which module we're in. 9610093b3c7SDouglas Gregor FullSourceLoc ExpansionLoc = Loc.getExpansionLoc(); 9620093b3c7SDouglas Gregor if (!ExpansionLoc.isFileID()) 963d2d442caSCraig Topper return nullptr; 9640093b3c7SDouglas Gregor 9650093b3c7SDouglas Gregor const SourceManager &SrcMgr = Loc.getManager(); 9660093b3c7SDouglas Gregor FileID ExpansionFileID = ExpansionLoc.getFileID(); 967224d8a74SDouglas Gregor 968224d8a74SDouglas Gregor while (const FileEntry *ExpansionFile 969224d8a74SDouglas Gregor = SrcMgr.getFileEntryForID(ExpansionFileID)) { 970224d8a74SDouglas Gregor // Find the module that owns this header (if any). 971b53e5483SLawrence Crowl if (Module *Mod = findModuleForHeader(ExpansionFile).getModule()) 972224d8a74SDouglas Gregor return Mod; 973224d8a74SDouglas Gregor 974224d8a74SDouglas Gregor // No module owns this header, so look up the inclusion chain to see if 975224d8a74SDouglas Gregor // any included header has an associated module. 976224d8a74SDouglas Gregor SourceLocation IncludeLoc = SrcMgr.getIncludeLoc(ExpansionFileID); 977224d8a74SDouglas Gregor if (IncludeLoc.isInvalid()) 978d2d442caSCraig Topper return nullptr; 9790093b3c7SDouglas Gregor 980224d8a74SDouglas Gregor ExpansionFileID = SrcMgr.getFileID(IncludeLoc); 981224d8a74SDouglas Gregor } 982224d8a74SDouglas Gregor 983d2d442caSCraig Topper return nullptr; 9840093b3c7SDouglas Gregor } 9850093b3c7SDouglas Gregor 986718292f2SDouglas Gregor //----------------------------------------------------------------------------// 987718292f2SDouglas Gregor // Module map file parser 988718292f2SDouglas Gregor //----------------------------------------------------------------------------// 989718292f2SDouglas Gregor 990718292f2SDouglas Gregor namespace clang { 991718292f2SDouglas Gregor /// \brief A token in a module map file. 992718292f2SDouglas Gregor struct MMToken { 993718292f2SDouglas Gregor enum TokenKind { 9941fb5c3a6SDouglas Gregor Comma, 99535b13eceSDouglas Gregor ConfigMacros, 996fb912657SDouglas Gregor Conflict, 997718292f2SDouglas Gregor EndOfFile, 998718292f2SDouglas Gregor HeaderKeyword, 999718292f2SDouglas Gregor Identifier, 1000a3feee2aSRichard Smith Exclaim, 100159527666SDouglas Gregor ExcludeKeyword, 1002718292f2SDouglas Gregor ExplicitKeyword, 10032b82c2a5SDouglas Gregor ExportKeyword, 100497292843SDaniel Jasper ExternKeyword, 1005755b2055SDouglas Gregor FrameworkKeyword, 10066ddfca91SDouglas Gregor LinkKeyword, 1007718292f2SDouglas Gregor ModuleKeyword, 10082b82c2a5SDouglas Gregor Period, 1009b53e5483SLawrence Crowl PrivateKeyword, 1010718292f2SDouglas Gregor UmbrellaKeyword, 1011ba7f2f71SDaniel Jasper UseKeyword, 10121fb5c3a6SDouglas Gregor RequiresKeyword, 10132b82c2a5SDouglas Gregor Star, 1014718292f2SDouglas Gregor StringLiteral, 1015306d8920SRichard Smith TextualKeyword, 1016718292f2SDouglas Gregor LBrace, 1017a686e1b0SDouglas Gregor RBrace, 1018a686e1b0SDouglas Gregor LSquare, 1019a686e1b0SDouglas Gregor RSquare 1020718292f2SDouglas Gregor } Kind; 1021718292f2SDouglas Gregor 1022718292f2SDouglas Gregor unsigned Location; 1023718292f2SDouglas Gregor unsigned StringLength; 1024718292f2SDouglas Gregor const char *StringData; 1025718292f2SDouglas Gregor 1026718292f2SDouglas Gregor void clear() { 1027718292f2SDouglas Gregor Kind = EndOfFile; 1028718292f2SDouglas Gregor Location = 0; 1029718292f2SDouglas Gregor StringLength = 0; 1030d2d442caSCraig Topper StringData = nullptr; 1031718292f2SDouglas Gregor } 1032718292f2SDouglas Gregor 1033718292f2SDouglas Gregor bool is(TokenKind K) const { return Kind == K; } 1034718292f2SDouglas Gregor 1035718292f2SDouglas Gregor SourceLocation getLocation() const { 1036718292f2SDouglas Gregor return SourceLocation::getFromRawEncoding(Location); 1037718292f2SDouglas Gregor } 1038718292f2SDouglas Gregor 1039718292f2SDouglas Gregor StringRef getString() const { 1040718292f2SDouglas Gregor return StringRef(StringData, StringLength); 1041718292f2SDouglas Gregor } 1042718292f2SDouglas Gregor }; 1043718292f2SDouglas Gregor 1044718292f2SDouglas Gregor class ModuleMapParser { 1045718292f2SDouglas Gregor Lexer &L; 1046718292f2SDouglas Gregor SourceManager &SourceMgr; 1047bc10b9fbSDouglas Gregor 1048bc10b9fbSDouglas Gregor /// \brief Default target information, used only for string literal 1049bc10b9fbSDouglas Gregor /// parsing. 1050bc10b9fbSDouglas Gregor const TargetInfo *Target; 1051bc10b9fbSDouglas Gregor 1052718292f2SDouglas Gregor DiagnosticsEngine &Diags; 1053718292f2SDouglas Gregor ModuleMap ⤅ 1054718292f2SDouglas Gregor 1055beee15e7SBen Langmuir /// \brief The current module map file. 1056beee15e7SBen Langmuir const FileEntry *ModuleMapFile; 1057beee15e7SBen Langmuir 10589acb99e3SRichard Smith /// \brief The directory that file names in this module map file should 10599acb99e3SRichard Smith /// be resolved relative to. 10605257fc63SDouglas Gregor const DirectoryEntry *Directory; 10615257fc63SDouglas Gregor 10623ec6663bSDouglas Gregor /// \brief The directory containing Clang-supplied headers. 10633ec6663bSDouglas Gregor const DirectoryEntry *BuiltinIncludeDir; 10643ec6663bSDouglas Gregor 1065963c5535SDouglas Gregor /// \brief Whether this module map is in a system header directory. 1066963c5535SDouglas Gregor bool IsSystem; 1067963c5535SDouglas Gregor 1068718292f2SDouglas Gregor /// \brief Whether an error occurred. 1069718292f2SDouglas Gregor bool HadError; 1070718292f2SDouglas Gregor 1071718292f2SDouglas Gregor /// \brief Stores string data for the various string literals referenced 1072718292f2SDouglas Gregor /// during parsing. 1073718292f2SDouglas Gregor llvm::BumpPtrAllocator StringData; 1074718292f2SDouglas Gregor 1075718292f2SDouglas Gregor /// \brief The current token. 1076718292f2SDouglas Gregor MMToken Tok; 1077718292f2SDouglas Gregor 1078718292f2SDouglas Gregor /// \brief The active module. 1079de3ef502SDouglas Gregor Module *ActiveModule; 1080718292f2SDouglas Gregor 10817ff29148SBen Langmuir /// \brief Whether a module uses the 'requires excluded' hack to mark its 10827ff29148SBen Langmuir /// contents as 'textual'. 10837ff29148SBen Langmuir /// 10847ff29148SBen Langmuir /// On older Darwin SDK versions, 'requires excluded' is used to mark the 10857ff29148SBen Langmuir /// contents of the Darwin.C.excluded (assert.h) and Tcl.Private modules as 10867ff29148SBen Langmuir /// non-modular headers. For backwards compatibility, we continue to 10877ff29148SBen Langmuir /// support this idiom for just these modules, and map the headers to 10887ff29148SBen Langmuir /// 'textual' to match the original intent. 10897ff29148SBen Langmuir llvm::SmallPtrSet<Module *, 2> UsesRequiresExcludedHack; 10907ff29148SBen Langmuir 1091718292f2SDouglas Gregor /// \brief Consume the current token and return its location. 1092718292f2SDouglas Gregor SourceLocation consumeToken(); 1093718292f2SDouglas Gregor 1094718292f2SDouglas Gregor /// \brief Skip tokens until we reach the a token with the given kind 1095718292f2SDouglas Gregor /// (or the end of the file). 1096718292f2SDouglas Gregor void skipUntil(MMToken::TokenKind K); 1097718292f2SDouglas Gregor 1098f857950dSDmitri Gribenko typedef SmallVector<std::pair<std::string, SourceLocation>, 2> ModuleId; 1099e7ab3669SDouglas Gregor bool parseModuleId(ModuleId &Id); 1100718292f2SDouglas Gregor void parseModuleDecl(); 110197292843SDaniel Jasper void parseExternModuleDecl(); 11021fb5c3a6SDouglas Gregor void parseRequiresDecl(); 1103b53e5483SLawrence Crowl void parseHeaderDecl(clang::MMToken::TokenKind, 1104b53e5483SLawrence Crowl SourceLocation LeadingLoc); 1105524e33e1SDouglas Gregor void parseUmbrellaDirDecl(SourceLocation UmbrellaLoc); 11062b82c2a5SDouglas Gregor void parseExportDecl(); 1107ba7f2f71SDaniel Jasper void parseUseDecl(); 11086ddfca91SDouglas Gregor void parseLinkDecl(); 110935b13eceSDouglas Gregor void parseConfigMacros(); 1110fb912657SDouglas Gregor void parseConflict(); 11119194a91dSDouglas Gregor void parseInferredModuleDecl(bool Framework, bool Explicit); 1112c1d88ea5SBen Langmuir 1113c1d88ea5SBen Langmuir typedef ModuleMap::Attributes Attributes; 11144442605fSBill Wendling bool parseOptionalAttributes(Attributes &Attrs); 1115718292f2SDouglas Gregor 1116718292f2SDouglas Gregor public: 1117718292f2SDouglas Gregor explicit ModuleMapParser(Lexer &L, SourceManager &SourceMgr, 1118bc10b9fbSDouglas Gregor const TargetInfo *Target, 1119718292f2SDouglas Gregor DiagnosticsEngine &Diags, 11205257fc63SDouglas Gregor ModuleMap &Map, 1121beee15e7SBen Langmuir const FileEntry *ModuleMapFile, 11223ec6663bSDouglas Gregor const DirectoryEntry *Directory, 1123963c5535SDouglas Gregor const DirectoryEntry *BuiltinIncludeDir, 1124963c5535SDouglas Gregor bool IsSystem) 1125bc10b9fbSDouglas Gregor : L(L), SourceMgr(SourceMgr), Target(Target), Diags(Diags), Map(Map), 1126beee15e7SBen Langmuir ModuleMapFile(ModuleMapFile), Directory(Directory), 1127beee15e7SBen Langmuir BuiltinIncludeDir(BuiltinIncludeDir), IsSystem(IsSystem), 1128d2d442caSCraig Topper HadError(false), ActiveModule(nullptr) 1129718292f2SDouglas Gregor { 1130718292f2SDouglas Gregor Tok.clear(); 1131718292f2SDouglas Gregor consumeToken(); 1132718292f2SDouglas Gregor } 1133718292f2SDouglas Gregor 1134718292f2SDouglas Gregor bool parseModuleMapFile(); 11358128f332SRichard Smith 11368128f332SRichard Smith bool terminatedByDirective() { return false; } 11378128f332SRichard Smith SourceLocation getLocation() { return Tok.getLocation(); } 1138718292f2SDouglas Gregor }; 1139ab9db510SAlexander Kornienko } 1140718292f2SDouglas Gregor 1141718292f2SDouglas Gregor SourceLocation ModuleMapParser::consumeToken() { 1142718292f2SDouglas Gregor SourceLocation Result = Tok.getLocation(); 1143718292f2SDouglas Gregor 11448128f332SRichard Smith retry: 11458128f332SRichard Smith Tok.clear(); 1146718292f2SDouglas Gregor Token LToken; 1147718292f2SDouglas Gregor L.LexFromRawLexer(LToken); 1148718292f2SDouglas Gregor Tok.Location = LToken.getLocation().getRawEncoding(); 1149718292f2SDouglas Gregor switch (LToken.getKind()) { 11502d57cea2SAlp Toker case tok::raw_identifier: { 11512d57cea2SAlp Toker StringRef RI = LToken.getRawIdentifier(); 11522d57cea2SAlp Toker Tok.StringData = RI.data(); 11532d57cea2SAlp Toker Tok.StringLength = RI.size(); 11542d57cea2SAlp Toker Tok.Kind = llvm::StringSwitch<MMToken::TokenKind>(RI) 115535b13eceSDouglas Gregor .Case("config_macros", MMToken::ConfigMacros) 1156fb912657SDouglas Gregor .Case("conflict", MMToken::Conflict) 115759527666SDouglas Gregor .Case("exclude", MMToken::ExcludeKeyword) 1158718292f2SDouglas Gregor .Case("explicit", MMToken::ExplicitKeyword) 11592b82c2a5SDouglas Gregor .Case("export", MMToken::ExportKeyword) 116097292843SDaniel Jasper .Case("extern", MMToken::ExternKeyword) 1161755b2055SDouglas Gregor .Case("framework", MMToken::FrameworkKeyword) 116235b13eceSDouglas Gregor .Case("header", MMToken::HeaderKeyword) 11636ddfca91SDouglas Gregor .Case("link", MMToken::LinkKeyword) 1164718292f2SDouglas Gregor .Case("module", MMToken::ModuleKeyword) 1165b53e5483SLawrence Crowl .Case("private", MMToken::PrivateKeyword) 11661fb5c3a6SDouglas Gregor .Case("requires", MMToken::RequiresKeyword) 1167306d8920SRichard Smith .Case("textual", MMToken::TextualKeyword) 1168718292f2SDouglas Gregor .Case("umbrella", MMToken::UmbrellaKeyword) 1169ba7f2f71SDaniel Jasper .Case("use", MMToken::UseKeyword) 1170718292f2SDouglas Gregor .Default(MMToken::Identifier); 1171718292f2SDouglas Gregor break; 11722d57cea2SAlp Toker } 1173718292f2SDouglas Gregor 11741fb5c3a6SDouglas Gregor case tok::comma: 11751fb5c3a6SDouglas Gregor Tok.Kind = MMToken::Comma; 11761fb5c3a6SDouglas Gregor break; 11771fb5c3a6SDouglas Gregor 1178718292f2SDouglas Gregor case tok::eof: 1179718292f2SDouglas Gregor Tok.Kind = MMToken::EndOfFile; 1180718292f2SDouglas Gregor break; 1181718292f2SDouglas Gregor 1182718292f2SDouglas Gregor case tok::l_brace: 1183718292f2SDouglas Gregor Tok.Kind = MMToken::LBrace; 1184718292f2SDouglas Gregor break; 1185718292f2SDouglas Gregor 1186a686e1b0SDouglas Gregor case tok::l_square: 1187a686e1b0SDouglas Gregor Tok.Kind = MMToken::LSquare; 1188a686e1b0SDouglas Gregor break; 1189a686e1b0SDouglas Gregor 11902b82c2a5SDouglas Gregor case tok::period: 11912b82c2a5SDouglas Gregor Tok.Kind = MMToken::Period; 11922b82c2a5SDouglas Gregor break; 11932b82c2a5SDouglas Gregor 1194718292f2SDouglas Gregor case tok::r_brace: 1195718292f2SDouglas Gregor Tok.Kind = MMToken::RBrace; 1196718292f2SDouglas Gregor break; 1197718292f2SDouglas Gregor 1198a686e1b0SDouglas Gregor case tok::r_square: 1199a686e1b0SDouglas Gregor Tok.Kind = MMToken::RSquare; 1200a686e1b0SDouglas Gregor break; 1201a686e1b0SDouglas Gregor 12022b82c2a5SDouglas Gregor case tok::star: 12032b82c2a5SDouglas Gregor Tok.Kind = MMToken::Star; 12042b82c2a5SDouglas Gregor break; 12052b82c2a5SDouglas Gregor 1206a3feee2aSRichard Smith case tok::exclaim: 1207a3feee2aSRichard Smith Tok.Kind = MMToken::Exclaim; 1208a3feee2aSRichard Smith break; 1209a3feee2aSRichard Smith 1210718292f2SDouglas Gregor case tok::string_literal: { 1211d67aea28SRichard Smith if (LToken.hasUDSuffix()) { 1212d67aea28SRichard Smith Diags.Report(LToken.getLocation(), diag::err_invalid_string_udl); 1213d67aea28SRichard Smith HadError = true; 1214d67aea28SRichard Smith goto retry; 1215d67aea28SRichard Smith } 1216d67aea28SRichard Smith 1217718292f2SDouglas Gregor // Parse the string literal. 1218718292f2SDouglas Gregor LangOptions LangOpts; 12199d5583efSCraig Topper StringLiteralParser StringLiteral(LToken, SourceMgr, LangOpts, *Target); 1220718292f2SDouglas Gregor if (StringLiteral.hadError) 1221718292f2SDouglas Gregor goto retry; 1222718292f2SDouglas Gregor 1223718292f2SDouglas Gregor // Copy the string literal into our string data allocator. 1224718292f2SDouglas Gregor unsigned Length = StringLiteral.GetStringLength(); 1225718292f2SDouglas Gregor char *Saved = StringData.Allocate<char>(Length + 1); 1226718292f2SDouglas Gregor memcpy(Saved, StringLiteral.GetString().data(), Length); 1227718292f2SDouglas Gregor Saved[Length] = 0; 1228718292f2SDouglas Gregor 1229718292f2SDouglas Gregor // Form the token. 1230718292f2SDouglas Gregor Tok.Kind = MMToken::StringLiteral; 1231718292f2SDouglas Gregor Tok.StringData = Saved; 1232718292f2SDouglas Gregor Tok.StringLength = Length; 1233718292f2SDouglas Gregor break; 1234718292f2SDouglas Gregor } 1235718292f2SDouglas Gregor 1236718292f2SDouglas Gregor case tok::comment: 1237718292f2SDouglas Gregor goto retry; 1238718292f2SDouglas Gregor 12398128f332SRichard Smith case tok::hash: 12408128f332SRichard Smith // A module map can be terminated prematurely by 12418128f332SRichard Smith // #pragma clang module contents 12428128f332SRichard Smith // When building the module, we'll treat the rest of the file as the 12438128f332SRichard Smith // contents of the module. 12448128f332SRichard Smith { 12458128f332SRichard Smith auto NextIsIdent = [&](StringRef Str) -> bool { 12468128f332SRichard Smith L.LexFromRawLexer(LToken); 12478128f332SRichard Smith return !LToken.isAtStartOfLine() && LToken.is(tok::raw_identifier) && 12488128f332SRichard Smith LToken.getRawIdentifier() == Str; 12498128f332SRichard Smith }; 12508128f332SRichard Smith if (NextIsIdent("pragma") && NextIsIdent("clang") && 12518128f332SRichard Smith NextIsIdent("module") && NextIsIdent("contents")) { 12528128f332SRichard Smith Tok.Kind = MMToken::EndOfFile; 12538128f332SRichard Smith break; 12548128f332SRichard Smith } 12558128f332SRichard Smith } 12568128f332SRichard Smith LLVM_FALLTHROUGH; 12578128f332SRichard Smith 1258718292f2SDouglas Gregor default: 12598128f332SRichard Smith Diags.Report(Tok.getLocation(), diag::err_mmap_unknown_token); 1260718292f2SDouglas Gregor HadError = true; 1261718292f2SDouglas Gregor goto retry; 1262718292f2SDouglas Gregor } 1263718292f2SDouglas Gregor 1264718292f2SDouglas Gregor return Result; 1265718292f2SDouglas Gregor } 1266718292f2SDouglas Gregor 1267718292f2SDouglas Gregor void ModuleMapParser::skipUntil(MMToken::TokenKind K) { 1268718292f2SDouglas Gregor unsigned braceDepth = 0; 1269a686e1b0SDouglas Gregor unsigned squareDepth = 0; 1270718292f2SDouglas Gregor do { 1271718292f2SDouglas Gregor switch (Tok.Kind) { 1272718292f2SDouglas Gregor case MMToken::EndOfFile: 1273718292f2SDouglas Gregor return; 1274718292f2SDouglas Gregor 1275718292f2SDouglas Gregor case MMToken::LBrace: 1276a686e1b0SDouglas Gregor if (Tok.is(K) && braceDepth == 0 && squareDepth == 0) 1277718292f2SDouglas Gregor return; 1278718292f2SDouglas Gregor 1279718292f2SDouglas Gregor ++braceDepth; 1280718292f2SDouglas Gregor break; 1281718292f2SDouglas Gregor 1282a686e1b0SDouglas Gregor case MMToken::LSquare: 1283a686e1b0SDouglas Gregor if (Tok.is(K) && braceDepth == 0 && squareDepth == 0) 1284a686e1b0SDouglas Gregor return; 1285a686e1b0SDouglas Gregor 1286a686e1b0SDouglas Gregor ++squareDepth; 1287a686e1b0SDouglas Gregor break; 1288a686e1b0SDouglas Gregor 1289718292f2SDouglas Gregor case MMToken::RBrace: 1290718292f2SDouglas Gregor if (braceDepth > 0) 1291718292f2SDouglas Gregor --braceDepth; 1292718292f2SDouglas Gregor else if (Tok.is(K)) 1293718292f2SDouglas Gregor return; 1294718292f2SDouglas Gregor break; 1295718292f2SDouglas Gregor 1296a686e1b0SDouglas Gregor case MMToken::RSquare: 1297a686e1b0SDouglas Gregor if (squareDepth > 0) 1298a686e1b0SDouglas Gregor --squareDepth; 1299a686e1b0SDouglas Gregor else if (Tok.is(K)) 1300a686e1b0SDouglas Gregor return; 1301a686e1b0SDouglas Gregor break; 1302a686e1b0SDouglas Gregor 1303718292f2SDouglas Gregor default: 1304a686e1b0SDouglas Gregor if (braceDepth == 0 && squareDepth == 0 && Tok.is(K)) 1305718292f2SDouglas Gregor return; 1306718292f2SDouglas Gregor break; 1307718292f2SDouglas Gregor } 1308718292f2SDouglas Gregor 1309718292f2SDouglas Gregor consumeToken(); 1310718292f2SDouglas Gregor } while (true); 1311718292f2SDouglas Gregor } 1312718292f2SDouglas Gregor 1313e7ab3669SDouglas Gregor /// \brief Parse a module-id. 1314e7ab3669SDouglas Gregor /// 1315e7ab3669SDouglas Gregor /// module-id: 1316e7ab3669SDouglas Gregor /// identifier 1317e7ab3669SDouglas Gregor /// identifier '.' module-id 1318e7ab3669SDouglas Gregor /// 1319e7ab3669SDouglas Gregor /// \returns true if an error occurred, false otherwise. 1320e7ab3669SDouglas Gregor bool ModuleMapParser::parseModuleId(ModuleId &Id) { 1321e7ab3669SDouglas Gregor Id.clear(); 1322e7ab3669SDouglas Gregor do { 13233cd34c76SDaniel Jasper if (Tok.is(MMToken::Identifier) || Tok.is(MMToken::StringLiteral)) { 1324e7ab3669SDouglas Gregor Id.push_back(std::make_pair(Tok.getString(), Tok.getLocation())); 1325e7ab3669SDouglas Gregor consumeToken(); 1326e7ab3669SDouglas Gregor } else { 1327e7ab3669SDouglas Gregor Diags.Report(Tok.getLocation(), diag::err_mmap_expected_module_name); 1328e7ab3669SDouglas Gregor return true; 1329e7ab3669SDouglas Gregor } 1330e7ab3669SDouglas Gregor 1331e7ab3669SDouglas Gregor if (!Tok.is(MMToken::Period)) 1332e7ab3669SDouglas Gregor break; 1333e7ab3669SDouglas Gregor 1334e7ab3669SDouglas Gregor consumeToken(); 1335e7ab3669SDouglas Gregor } while (true); 1336e7ab3669SDouglas Gregor 1337e7ab3669SDouglas Gregor return false; 1338e7ab3669SDouglas Gregor } 1339e7ab3669SDouglas Gregor 1340a686e1b0SDouglas Gregor namespace { 1341a686e1b0SDouglas Gregor /// \brief Enumerates the known attributes. 1342a686e1b0SDouglas Gregor enum AttributeKind { 1343a686e1b0SDouglas Gregor /// \brief An unknown attribute. 1344a686e1b0SDouglas Gregor AT_unknown, 1345a686e1b0SDouglas Gregor /// \brief The 'system' attribute. 134635b13eceSDouglas Gregor AT_system, 134777944868SRichard Smith /// \brief The 'extern_c' attribute. 134877944868SRichard Smith AT_extern_c, 134935b13eceSDouglas Gregor /// \brief The 'exhaustive' attribute. 1350ed84df00SBruno Cardoso Lopes AT_exhaustive, 1351ed84df00SBruno Cardoso Lopes /// \brief The 'no_undeclared_includes' attribute. 1352ed84df00SBruno Cardoso Lopes AT_no_undeclared_includes 1353a686e1b0SDouglas Gregor }; 1354ab9db510SAlexander Kornienko } 1355a686e1b0SDouglas Gregor 1356718292f2SDouglas Gregor /// \brief Parse a module declaration. 1357718292f2SDouglas Gregor /// 1358718292f2SDouglas Gregor /// module-declaration: 135997292843SDaniel Jasper /// 'extern' 'module' module-id string-literal 1360a686e1b0SDouglas Gregor /// 'explicit'[opt] 'framework'[opt] 'module' module-id attributes[opt] 1361a686e1b0SDouglas Gregor /// { module-member* } 1362a686e1b0SDouglas Gregor /// 1363718292f2SDouglas Gregor /// module-member: 13641fb5c3a6SDouglas Gregor /// requires-declaration 1365718292f2SDouglas Gregor /// header-declaration 1366e7ab3669SDouglas Gregor /// submodule-declaration 13672b82c2a5SDouglas Gregor /// export-declaration 13686ddfca91SDouglas Gregor /// link-declaration 136973441091SDouglas Gregor /// 137073441091SDouglas Gregor /// submodule-declaration: 137173441091SDouglas Gregor /// module-declaration 137273441091SDouglas Gregor /// inferred-submodule-declaration 1373718292f2SDouglas Gregor void ModuleMapParser::parseModuleDecl() { 1374755b2055SDouglas Gregor assert(Tok.is(MMToken::ExplicitKeyword) || Tok.is(MMToken::ModuleKeyword) || 137597292843SDaniel Jasper Tok.is(MMToken::FrameworkKeyword) || Tok.is(MMToken::ExternKeyword)); 137697292843SDaniel Jasper if (Tok.is(MMToken::ExternKeyword)) { 137797292843SDaniel Jasper parseExternModuleDecl(); 137897292843SDaniel Jasper return; 137997292843SDaniel Jasper } 138097292843SDaniel Jasper 1381f2161a70SDouglas Gregor // Parse 'explicit' or 'framework' keyword, if present. 1382e7ab3669SDouglas Gregor SourceLocation ExplicitLoc; 1383718292f2SDouglas Gregor bool Explicit = false; 1384f2161a70SDouglas Gregor bool Framework = false; 1385755b2055SDouglas Gregor 1386f2161a70SDouglas Gregor // Parse 'explicit' keyword, if present. 1387f2161a70SDouglas Gregor if (Tok.is(MMToken::ExplicitKeyword)) { 1388e7ab3669SDouglas Gregor ExplicitLoc = consumeToken(); 1389f2161a70SDouglas Gregor Explicit = true; 1390f2161a70SDouglas Gregor } 1391f2161a70SDouglas Gregor 1392f2161a70SDouglas Gregor // Parse 'framework' keyword, if present. 1393755b2055SDouglas Gregor if (Tok.is(MMToken::FrameworkKeyword)) { 1394755b2055SDouglas Gregor consumeToken(); 1395755b2055SDouglas Gregor Framework = true; 1396755b2055SDouglas Gregor } 1397718292f2SDouglas Gregor 1398718292f2SDouglas Gregor // Parse 'module' keyword. 1399718292f2SDouglas Gregor if (!Tok.is(MMToken::ModuleKeyword)) { 1400d6343c99SDouglas Gregor Diags.Report(Tok.getLocation(), diag::err_mmap_expected_module); 1401718292f2SDouglas Gregor consumeToken(); 1402718292f2SDouglas Gregor HadError = true; 1403718292f2SDouglas Gregor return; 1404718292f2SDouglas Gregor } 1405718292f2SDouglas Gregor consumeToken(); // 'module' keyword 1406718292f2SDouglas Gregor 140773441091SDouglas Gregor // If we have a wildcard for the module name, this is an inferred submodule. 140873441091SDouglas Gregor // Parse it. 140973441091SDouglas Gregor if (Tok.is(MMToken::Star)) 14109194a91dSDouglas Gregor return parseInferredModuleDecl(Framework, Explicit); 141173441091SDouglas Gregor 1412718292f2SDouglas Gregor // Parse the module name. 1413e7ab3669SDouglas Gregor ModuleId Id; 1414e7ab3669SDouglas Gregor if (parseModuleId(Id)) { 1415718292f2SDouglas Gregor HadError = true; 1416718292f2SDouglas Gregor return; 1417718292f2SDouglas Gregor } 1418e7ab3669SDouglas Gregor 1419e7ab3669SDouglas Gregor if (ActiveModule) { 1420e7ab3669SDouglas Gregor if (Id.size() > 1) { 1421e7ab3669SDouglas Gregor Diags.Report(Id.front().second, diag::err_mmap_nested_submodule_id) 1422e7ab3669SDouglas Gregor << SourceRange(Id.front().second, Id.back().second); 1423e7ab3669SDouglas Gregor 1424e7ab3669SDouglas Gregor HadError = true; 1425e7ab3669SDouglas Gregor return; 1426e7ab3669SDouglas Gregor } 1427e7ab3669SDouglas Gregor } else if (Id.size() == 1 && Explicit) { 1428e7ab3669SDouglas Gregor // Top-level modules can't be explicit. 1429e7ab3669SDouglas Gregor Diags.Report(ExplicitLoc, diag::err_mmap_explicit_top_level); 1430e7ab3669SDouglas Gregor Explicit = false; 1431e7ab3669SDouglas Gregor ExplicitLoc = SourceLocation(); 1432e7ab3669SDouglas Gregor HadError = true; 1433e7ab3669SDouglas Gregor } 1434e7ab3669SDouglas Gregor 1435e7ab3669SDouglas Gregor Module *PreviousActiveModule = ActiveModule; 1436e7ab3669SDouglas Gregor if (Id.size() > 1) { 1437e7ab3669SDouglas Gregor // This module map defines a submodule. Go find the module of which it 1438e7ab3669SDouglas Gregor // is a submodule. 1439d2d442caSCraig Topper ActiveModule = nullptr; 14404b8a9e95SBen Langmuir const Module *TopLevelModule = nullptr; 1441e7ab3669SDouglas Gregor for (unsigned I = 0, N = Id.size() - 1; I != N; ++I) { 1442e7ab3669SDouglas Gregor if (Module *Next = Map.lookupModuleQualified(Id[I].first, ActiveModule)) { 14434b8a9e95SBen Langmuir if (I == 0) 14444b8a9e95SBen Langmuir TopLevelModule = Next; 1445e7ab3669SDouglas Gregor ActiveModule = Next; 1446e7ab3669SDouglas Gregor continue; 1447e7ab3669SDouglas Gregor } 1448e7ab3669SDouglas Gregor 1449e7ab3669SDouglas Gregor if (ActiveModule) { 1450e7ab3669SDouglas Gregor Diags.Report(Id[I].second, diag::err_mmap_missing_module_qualified) 14515b5d21eaSRichard Smith << Id[I].first 14525b5d21eaSRichard Smith << ActiveModule->getTopLevelModule()->getFullModuleName(); 1453e7ab3669SDouglas Gregor } else { 1454e7ab3669SDouglas Gregor Diags.Report(Id[I].second, diag::err_mmap_expected_module_name); 1455e7ab3669SDouglas Gregor } 1456e7ab3669SDouglas Gregor HadError = true; 1457e7ab3669SDouglas Gregor return; 1458e7ab3669SDouglas Gregor } 14594b8a9e95SBen Langmuir 14604b8a9e95SBen Langmuir if (ModuleMapFile != Map.getContainingModuleMapFile(TopLevelModule)) { 14614b8a9e95SBen Langmuir assert(ModuleMapFile != Map.getModuleMapFileForUniquing(TopLevelModule) && 14624b8a9e95SBen Langmuir "submodule defined in same file as 'module *' that allowed its " 14634b8a9e95SBen Langmuir "top-level module"); 14644b8a9e95SBen Langmuir Map.addAdditionalModuleMapFile(TopLevelModule, ModuleMapFile); 14654b8a9e95SBen Langmuir } 1466e7ab3669SDouglas Gregor } 1467e7ab3669SDouglas Gregor 1468e7ab3669SDouglas Gregor StringRef ModuleName = Id.back().first; 1469e7ab3669SDouglas Gregor SourceLocation ModuleNameLoc = Id.back().second; 1470718292f2SDouglas Gregor 1471a686e1b0SDouglas Gregor // Parse the optional attribute list. 14724442605fSBill Wendling Attributes Attrs; 14735d29dee0SDavide Italiano if (parseOptionalAttributes(Attrs)) 14745d29dee0SDavide Italiano return; 14755d29dee0SDavide Italiano 1476a686e1b0SDouglas Gregor 1477718292f2SDouglas Gregor // Parse the opening brace. 1478718292f2SDouglas Gregor if (!Tok.is(MMToken::LBrace)) { 1479718292f2SDouglas Gregor Diags.Report(Tok.getLocation(), diag::err_mmap_expected_lbrace) 1480718292f2SDouglas Gregor << ModuleName; 1481718292f2SDouglas Gregor HadError = true; 1482718292f2SDouglas Gregor return; 1483718292f2SDouglas Gregor } 1484718292f2SDouglas Gregor SourceLocation LBraceLoc = consumeToken(); 1485718292f2SDouglas Gregor 1486718292f2SDouglas Gregor // Determine whether this (sub)module has already been defined. 1487eb90e830SDouglas Gregor if (Module *Existing = Map.lookupModuleQualified(ModuleName, ActiveModule)) { 1488*4a3751ffSRichard Smith // We might see a (re)definition of a module that we already have a 1489*4a3751ffSRichard Smith // definition for in two cases: 1490*4a3751ffSRichard Smith // - If we loaded one definition from an AST file and we've just found a 1491*4a3751ffSRichard Smith // corresponding definition in a module map file, or 1492*4a3751ffSRichard Smith bool LoadedFromASTFile = Existing->DefinitionLoc.isInvalid(); 1493*4a3751ffSRichard Smith // - If we're building a (preprocessed) module and we've just loaded the 1494*4a3751ffSRichard Smith // module map file from which it was created. 1495*4a3751ffSRichard Smith bool ParsedAsMainInput = 1496*4a3751ffSRichard Smith Map.LangOpts.getCompilingModule() == LangOptions::CMK_ModuleMap && 1497*4a3751ffSRichard Smith Map.LangOpts.CurrentModule == ModuleName && 1498*4a3751ffSRichard Smith SourceMgr.getDecomposedLoc(ModuleNameLoc).first != 1499*4a3751ffSRichard Smith SourceMgr.getDecomposedLoc(Existing->DefinitionLoc).first; 1500*4a3751ffSRichard Smith if (!ActiveModule && (LoadedFromASTFile || ParsedAsMainInput)) { 1501fcc54a3bSDouglas Gregor // Skip the module definition. 1502fcc54a3bSDouglas Gregor skipUntil(MMToken::RBrace); 1503fcc54a3bSDouglas Gregor if (Tok.is(MMToken::RBrace)) 1504fcc54a3bSDouglas Gregor consumeToken(); 1505fcc54a3bSDouglas Gregor else { 1506fcc54a3bSDouglas Gregor Diags.Report(Tok.getLocation(), diag::err_mmap_expected_rbrace); 1507fcc54a3bSDouglas Gregor Diags.Report(LBraceLoc, diag::note_mmap_lbrace_match); 1508fcc54a3bSDouglas Gregor HadError = true; 1509fcc54a3bSDouglas Gregor } 1510fcc54a3bSDouglas Gregor return; 1511fcc54a3bSDouglas Gregor } 1512fcc54a3bSDouglas Gregor 1513718292f2SDouglas Gregor Diags.Report(ModuleNameLoc, diag::err_mmap_module_redefinition) 1514718292f2SDouglas Gregor << ModuleName; 1515eb90e830SDouglas Gregor Diags.Report(Existing->DefinitionLoc, diag::note_mmap_prev_definition); 1516718292f2SDouglas Gregor 1517718292f2SDouglas Gregor // Skip the module definition. 1518718292f2SDouglas Gregor skipUntil(MMToken::RBrace); 1519718292f2SDouglas Gregor if (Tok.is(MMToken::RBrace)) 1520718292f2SDouglas Gregor consumeToken(); 1521718292f2SDouglas Gregor 1522718292f2SDouglas Gregor HadError = true; 1523718292f2SDouglas Gregor return; 1524718292f2SDouglas Gregor } 1525718292f2SDouglas Gregor 1526718292f2SDouglas Gregor // Start defining this module. 15279d6448b1SBen Langmuir ActiveModule = Map.findOrCreateModule(ModuleName, ActiveModule, Framework, 15289d6448b1SBen Langmuir Explicit).first; 1529eb90e830SDouglas Gregor ActiveModule->DefinitionLoc = ModuleNameLoc; 1530963c5535SDouglas Gregor if (Attrs.IsSystem || IsSystem) 1531a686e1b0SDouglas Gregor ActiveModule->IsSystem = true; 153277944868SRichard Smith if (Attrs.IsExternC) 153377944868SRichard Smith ActiveModule->IsExternC = true; 1534ed84df00SBruno Cardoso Lopes if (Attrs.NoUndeclaredIncludes || 1535ed84df00SBruno Cardoso Lopes (!ActiveModule->Parent && ModuleName == "Darwin")) 1536ed84df00SBruno Cardoso Lopes ActiveModule->NoUndeclaredIncludes = true; 15373c1a41adSRichard Smith ActiveModule->Directory = Directory; 1538718292f2SDouglas Gregor 15394d867640SGraydon Hoare if (!ActiveModule->Parent) { 15404d867640SGraydon Hoare StringRef MapFileName(ModuleMapFile->getName()); 15414d867640SGraydon Hoare if (MapFileName.endswith("module.private.modulemap") || 15424d867640SGraydon Hoare MapFileName.endswith("module_private.map")) { 15434d867640SGraydon Hoare // Adding a top-level module from a private modulemap is likely a 15444d867640SGraydon Hoare // user error; we check to see if there's another top-level module 15454d867640SGraydon Hoare // defined in the non-private map in the same dir, and if so emit a 15464d867640SGraydon Hoare // warning. 15474d867640SGraydon Hoare for (auto E = Map.module_begin(); E != Map.module_end(); ++E) { 15484d867640SGraydon Hoare auto const *M = E->getValue(); 15494d867640SGraydon Hoare if (!M->Parent && 15504d867640SGraydon Hoare M->Directory == ActiveModule->Directory && 15514d867640SGraydon Hoare M->Name != ActiveModule->Name) { 15524d867640SGraydon Hoare Diags.Report(ActiveModule->DefinitionLoc, 15534d867640SGraydon Hoare diag::warn_mmap_mismatched_top_level_private) 15544d867640SGraydon Hoare << ActiveModule->Name << M->Name; 15554d867640SGraydon Hoare // The pattern we're defending against here is typically due to 15564d867640SGraydon Hoare // a module named FooPrivate which is supposed to be a submodule 15574d867640SGraydon Hoare // called Foo.Private. Emit a fixit in that case. 15584d867640SGraydon Hoare auto D = 15594d867640SGraydon Hoare Diags.Report(ActiveModule->DefinitionLoc, 15604d867640SGraydon Hoare diag::note_mmap_rename_top_level_private_as_submodule); 15614d867640SGraydon Hoare D << ActiveModule->Name << M->Name; 15624d867640SGraydon Hoare StringRef Bad(ActiveModule->Name); 15634d867640SGraydon Hoare if (Bad.consume_back("Private")) { 15644d867640SGraydon Hoare SmallString<128> Fixed = Bad; 15654d867640SGraydon Hoare Fixed.append(".Private"); 15664d867640SGraydon Hoare D << FixItHint::CreateReplacement(ActiveModule->DefinitionLoc, 15674d867640SGraydon Hoare Fixed); 15684d867640SGraydon Hoare } 15694d867640SGraydon Hoare break; 15704d867640SGraydon Hoare } 15714d867640SGraydon Hoare } 15724d867640SGraydon Hoare } 15734d867640SGraydon Hoare } 15744d867640SGraydon Hoare 1575718292f2SDouglas Gregor bool Done = false; 1576718292f2SDouglas Gregor do { 1577718292f2SDouglas Gregor switch (Tok.Kind) { 1578718292f2SDouglas Gregor case MMToken::EndOfFile: 1579718292f2SDouglas Gregor case MMToken::RBrace: 1580718292f2SDouglas Gregor Done = true; 1581718292f2SDouglas Gregor break; 1582718292f2SDouglas Gregor 158335b13eceSDouglas Gregor case MMToken::ConfigMacros: 158435b13eceSDouglas Gregor parseConfigMacros(); 158535b13eceSDouglas Gregor break; 158635b13eceSDouglas Gregor 1587fb912657SDouglas Gregor case MMToken::Conflict: 1588fb912657SDouglas Gregor parseConflict(); 1589fb912657SDouglas Gregor break; 1590fb912657SDouglas Gregor 1591718292f2SDouglas Gregor case MMToken::ExplicitKeyword: 159297292843SDaniel Jasper case MMToken::ExternKeyword: 1593f2161a70SDouglas Gregor case MMToken::FrameworkKeyword: 1594718292f2SDouglas Gregor case MMToken::ModuleKeyword: 1595718292f2SDouglas Gregor parseModuleDecl(); 1596718292f2SDouglas Gregor break; 1597718292f2SDouglas Gregor 15982b82c2a5SDouglas Gregor case MMToken::ExportKeyword: 15992b82c2a5SDouglas Gregor parseExportDecl(); 16002b82c2a5SDouglas Gregor break; 16012b82c2a5SDouglas Gregor 1602ba7f2f71SDaniel Jasper case MMToken::UseKeyword: 1603ba7f2f71SDaniel Jasper parseUseDecl(); 1604ba7f2f71SDaniel Jasper break; 1605ba7f2f71SDaniel Jasper 16061fb5c3a6SDouglas Gregor case MMToken::RequiresKeyword: 16071fb5c3a6SDouglas Gregor parseRequiresDecl(); 16081fb5c3a6SDouglas Gregor break; 16091fb5c3a6SDouglas Gregor 1610202210b3SRichard Smith case MMToken::TextualKeyword: 1611202210b3SRichard Smith parseHeaderDecl(MMToken::TextualKeyword, consumeToken()); 1612306d8920SRichard Smith break; 1613306d8920SRichard Smith 1614524e33e1SDouglas Gregor case MMToken::UmbrellaKeyword: { 1615524e33e1SDouglas Gregor SourceLocation UmbrellaLoc = consumeToken(); 1616524e33e1SDouglas Gregor if (Tok.is(MMToken::HeaderKeyword)) 1617b53e5483SLawrence Crowl parseHeaderDecl(MMToken::UmbrellaKeyword, UmbrellaLoc); 1618524e33e1SDouglas Gregor else 1619524e33e1SDouglas Gregor parseUmbrellaDirDecl(UmbrellaLoc); 1620718292f2SDouglas Gregor break; 1621524e33e1SDouglas Gregor } 1622718292f2SDouglas Gregor 1623202210b3SRichard Smith case MMToken::ExcludeKeyword: 1624202210b3SRichard Smith parseHeaderDecl(MMToken::ExcludeKeyword, consumeToken()); 162559527666SDouglas Gregor break; 162659527666SDouglas Gregor 1627202210b3SRichard Smith case MMToken::PrivateKeyword: 1628202210b3SRichard Smith parseHeaderDecl(MMToken::PrivateKeyword, consumeToken()); 1629b53e5483SLawrence Crowl break; 1630b53e5483SLawrence Crowl 1631322f633cSDouglas Gregor case MMToken::HeaderKeyword: 1632202210b3SRichard Smith parseHeaderDecl(MMToken::HeaderKeyword, consumeToken()); 1633718292f2SDouglas Gregor break; 1634718292f2SDouglas Gregor 16356ddfca91SDouglas Gregor case MMToken::LinkKeyword: 16366ddfca91SDouglas Gregor parseLinkDecl(); 16376ddfca91SDouglas Gregor break; 16386ddfca91SDouglas Gregor 1639718292f2SDouglas Gregor default: 1640718292f2SDouglas Gregor Diags.Report(Tok.getLocation(), diag::err_mmap_expected_member); 1641718292f2SDouglas Gregor consumeToken(); 1642718292f2SDouglas Gregor break; 1643718292f2SDouglas Gregor } 1644718292f2SDouglas Gregor } while (!Done); 1645718292f2SDouglas Gregor 1646718292f2SDouglas Gregor if (Tok.is(MMToken::RBrace)) 1647718292f2SDouglas Gregor consumeToken(); 1648718292f2SDouglas Gregor else { 1649718292f2SDouglas Gregor Diags.Report(Tok.getLocation(), diag::err_mmap_expected_rbrace); 1650718292f2SDouglas Gregor Diags.Report(LBraceLoc, diag::note_mmap_lbrace_match); 1651718292f2SDouglas Gregor HadError = true; 1652718292f2SDouglas Gregor } 1653718292f2SDouglas Gregor 165411dfe6feSDouglas Gregor // If the active module is a top-level framework, and there are no link 165511dfe6feSDouglas Gregor // libraries, automatically link against the framework. 165611dfe6feSDouglas Gregor if (ActiveModule->IsFramework && !ActiveModule->isSubFramework() && 165711dfe6feSDouglas Gregor ActiveModule->LinkLibraries.empty()) { 165811dfe6feSDouglas Gregor inferFrameworkLink(ActiveModule, Directory, SourceMgr.getFileManager()); 165911dfe6feSDouglas Gregor } 166011dfe6feSDouglas Gregor 1661ec8c9752SBen Langmuir // If the module meets all requirements but is still unavailable, mark the 1662ec8c9752SBen Langmuir // whole tree as unavailable to prevent it from building. 1663ec8c9752SBen Langmuir if (!ActiveModule->IsAvailable && !ActiveModule->IsMissingRequirement && 1664ec8c9752SBen Langmuir ActiveModule->Parent) { 1665ec8c9752SBen Langmuir ActiveModule->getTopLevelModule()->markUnavailable(); 1666ec8c9752SBen Langmuir ActiveModule->getTopLevelModule()->MissingHeaders.append( 1667ec8c9752SBen Langmuir ActiveModule->MissingHeaders.begin(), ActiveModule->MissingHeaders.end()); 1668ec8c9752SBen Langmuir } 1669ec8c9752SBen Langmuir 1670e7ab3669SDouglas Gregor // We're done parsing this module. Pop back to the previous module. 1671e7ab3669SDouglas Gregor ActiveModule = PreviousActiveModule; 1672718292f2SDouglas Gregor } 1673718292f2SDouglas Gregor 167497292843SDaniel Jasper /// \brief Parse an extern module declaration. 167597292843SDaniel Jasper /// 167697292843SDaniel Jasper /// extern module-declaration: 167797292843SDaniel Jasper /// 'extern' 'module' module-id string-literal 167897292843SDaniel Jasper void ModuleMapParser::parseExternModuleDecl() { 167997292843SDaniel Jasper assert(Tok.is(MMToken::ExternKeyword)); 1680ae6df27eSRichard Smith SourceLocation ExternLoc = consumeToken(); // 'extern' keyword 168197292843SDaniel Jasper 168297292843SDaniel Jasper // Parse 'module' keyword. 168397292843SDaniel Jasper if (!Tok.is(MMToken::ModuleKeyword)) { 168497292843SDaniel Jasper Diags.Report(Tok.getLocation(), diag::err_mmap_expected_module); 168597292843SDaniel Jasper consumeToken(); 168697292843SDaniel Jasper HadError = true; 168797292843SDaniel Jasper return; 168897292843SDaniel Jasper } 168997292843SDaniel Jasper consumeToken(); // 'module' keyword 169097292843SDaniel Jasper 169197292843SDaniel Jasper // Parse the module name. 169297292843SDaniel Jasper ModuleId Id; 169397292843SDaniel Jasper if (parseModuleId(Id)) { 169497292843SDaniel Jasper HadError = true; 169597292843SDaniel Jasper return; 169697292843SDaniel Jasper } 169797292843SDaniel Jasper 169897292843SDaniel Jasper // Parse the referenced module map file name. 169997292843SDaniel Jasper if (!Tok.is(MMToken::StringLiteral)) { 170097292843SDaniel Jasper Diags.Report(Tok.getLocation(), diag::err_mmap_expected_mmap_file); 170197292843SDaniel Jasper HadError = true; 170297292843SDaniel Jasper return; 170397292843SDaniel Jasper } 170497292843SDaniel Jasper std::string FileName = Tok.getString(); 170597292843SDaniel Jasper consumeToken(); // filename 170697292843SDaniel Jasper 170797292843SDaniel Jasper StringRef FileNameRef = FileName; 170897292843SDaniel Jasper SmallString<128> ModuleMapFileName; 170997292843SDaniel Jasper if (llvm::sys::path::is_relative(FileNameRef)) { 171097292843SDaniel Jasper ModuleMapFileName += Directory->getName(); 171197292843SDaniel Jasper llvm::sys::path::append(ModuleMapFileName, FileName); 171292e1b62dSYaron Keren FileNameRef = ModuleMapFileName; 171397292843SDaniel Jasper } 171497292843SDaniel Jasper if (const FileEntry *File = SourceMgr.getFileManager().getFile(FileNameRef)) 17159acb99e3SRichard Smith Map.parseModuleMapFile( 17169acb99e3SRichard Smith File, /*IsSystem=*/false, 17179acb99e3SRichard Smith Map.HeaderInfo.getHeaderSearchOpts().ModuleMapFileHomeIsCwd 17189acb99e3SRichard Smith ? Directory 17198128f332SRichard Smith : File->getDir(), 17208128f332SRichard Smith FileID(), nullptr, ExternLoc); 172197292843SDaniel Jasper } 172297292843SDaniel Jasper 17237ff29148SBen Langmuir /// Whether to add the requirement \p Feature to the module \p M. 17247ff29148SBen Langmuir /// 17257ff29148SBen Langmuir /// This preserves backwards compatibility for two hacks in the Darwin system 17267ff29148SBen Langmuir /// module map files: 17277ff29148SBen Langmuir /// 17287ff29148SBen Langmuir /// 1. The use of 'requires excluded' to make headers non-modular, which 17297ff29148SBen Langmuir /// should really be mapped to 'textual' now that we have this feature. We 17307ff29148SBen Langmuir /// drop the 'excluded' requirement, and set \p IsRequiresExcludedHack to 17317ff29148SBen Langmuir /// true. Later, this bit will be used to map all the headers inside this 17327ff29148SBen Langmuir /// module to 'textual'. 17337ff29148SBen Langmuir /// 17347ff29148SBen Langmuir /// This affects Darwin.C.excluded (for assert.h) and Tcl.Private. 17357ff29148SBen Langmuir /// 17367ff29148SBen Langmuir /// 2. Removes a bogus cplusplus requirement from IOKit.avc. This requirement 17377ff29148SBen Langmuir /// was never correct and causes issues now that we check it, so drop it. 17387ff29148SBen Langmuir static bool shouldAddRequirement(Module *M, StringRef Feature, 17397ff29148SBen Langmuir bool &IsRequiresExcludedHack) { 17408013e81dSBenjamin Kramer if (Feature == "excluded" && 17418013e81dSBenjamin Kramer (M->fullModuleNameIs({"Darwin", "C", "excluded"}) || 17428013e81dSBenjamin Kramer M->fullModuleNameIs({"Tcl", "Private"}))) { 17437ff29148SBen Langmuir IsRequiresExcludedHack = true; 17447ff29148SBen Langmuir return false; 17458013e81dSBenjamin Kramer } else if (Feature == "cplusplus" && M->fullModuleNameIs({"IOKit", "avc"})) { 17467ff29148SBen Langmuir return false; 17477ff29148SBen Langmuir } 17487ff29148SBen Langmuir 17497ff29148SBen Langmuir return true; 17507ff29148SBen Langmuir } 17517ff29148SBen Langmuir 17521fb5c3a6SDouglas Gregor /// \brief Parse a requires declaration. 17531fb5c3a6SDouglas Gregor /// 17541fb5c3a6SDouglas Gregor /// requires-declaration: 17551fb5c3a6SDouglas Gregor /// 'requires' feature-list 17561fb5c3a6SDouglas Gregor /// 17571fb5c3a6SDouglas Gregor /// feature-list: 1758a3feee2aSRichard Smith /// feature ',' feature-list 1759a3feee2aSRichard Smith /// feature 1760a3feee2aSRichard Smith /// 1761a3feee2aSRichard Smith /// feature: 1762a3feee2aSRichard Smith /// '!'[opt] identifier 17631fb5c3a6SDouglas Gregor void ModuleMapParser::parseRequiresDecl() { 17641fb5c3a6SDouglas Gregor assert(Tok.is(MMToken::RequiresKeyword)); 17651fb5c3a6SDouglas Gregor 17661fb5c3a6SDouglas Gregor // Parse 'requires' keyword. 17671fb5c3a6SDouglas Gregor consumeToken(); 17681fb5c3a6SDouglas Gregor 17691fb5c3a6SDouglas Gregor // Parse the feature-list. 17701fb5c3a6SDouglas Gregor do { 1771a3feee2aSRichard Smith bool RequiredState = true; 1772a3feee2aSRichard Smith if (Tok.is(MMToken::Exclaim)) { 1773a3feee2aSRichard Smith RequiredState = false; 1774a3feee2aSRichard Smith consumeToken(); 1775a3feee2aSRichard Smith } 1776a3feee2aSRichard Smith 17771fb5c3a6SDouglas Gregor if (!Tok.is(MMToken::Identifier)) { 17781fb5c3a6SDouglas Gregor Diags.Report(Tok.getLocation(), diag::err_mmap_expected_feature); 17791fb5c3a6SDouglas Gregor HadError = true; 17801fb5c3a6SDouglas Gregor return; 17811fb5c3a6SDouglas Gregor } 17821fb5c3a6SDouglas Gregor 17831fb5c3a6SDouglas Gregor // Consume the feature name. 17841fb5c3a6SDouglas Gregor std::string Feature = Tok.getString(); 17851fb5c3a6SDouglas Gregor consumeToken(); 17861fb5c3a6SDouglas Gregor 17877ff29148SBen Langmuir bool IsRequiresExcludedHack = false; 17887ff29148SBen Langmuir bool ShouldAddRequirement = 17897ff29148SBen Langmuir shouldAddRequirement(ActiveModule, Feature, IsRequiresExcludedHack); 17907ff29148SBen Langmuir 17917ff29148SBen Langmuir if (IsRequiresExcludedHack) 17927ff29148SBen Langmuir UsesRequiresExcludedHack.insert(ActiveModule); 17937ff29148SBen Langmuir 17947ff29148SBen Langmuir if (ShouldAddRequirement) { 17951fb5c3a6SDouglas Gregor // Add this feature. 17967ff29148SBen Langmuir ActiveModule->addRequirement(Feature, RequiredState, Map.LangOpts, 17977ff29148SBen Langmuir *Map.Target); 17987ff29148SBen Langmuir } 17991fb5c3a6SDouglas Gregor 18001fb5c3a6SDouglas Gregor if (!Tok.is(MMToken::Comma)) 18011fb5c3a6SDouglas Gregor break; 18021fb5c3a6SDouglas Gregor 18031fb5c3a6SDouglas Gregor // Consume the comma. 18041fb5c3a6SDouglas Gregor consumeToken(); 18051fb5c3a6SDouglas Gregor } while (true); 18061fb5c3a6SDouglas Gregor } 18071fb5c3a6SDouglas Gregor 1808f2161a70SDouglas Gregor /// \brief Append to \p Paths the set of paths needed to get to the 1809f2161a70SDouglas Gregor /// subframework in which the given module lives. 1810bf8da9d7SBenjamin Kramer static void appendSubframeworkPaths(Module *Mod, 1811f857950dSDmitri Gribenko SmallVectorImpl<char> &Path) { 1812f2161a70SDouglas Gregor // Collect the framework names from the given module to the top-level module. 1813f857950dSDmitri Gribenko SmallVector<StringRef, 2> Paths; 1814f2161a70SDouglas Gregor for (; Mod; Mod = Mod->Parent) { 1815f2161a70SDouglas Gregor if (Mod->IsFramework) 1816f2161a70SDouglas Gregor Paths.push_back(Mod->Name); 1817f2161a70SDouglas Gregor } 1818f2161a70SDouglas Gregor 1819f2161a70SDouglas Gregor if (Paths.empty()) 1820f2161a70SDouglas Gregor return; 1821f2161a70SDouglas Gregor 1822f2161a70SDouglas Gregor // Add Frameworks/Name.framework for each subframework. 182317381a06SBenjamin Kramer for (unsigned I = Paths.size() - 1; I != 0; --I) 182417381a06SBenjamin Kramer llvm::sys::path::append(Path, "Frameworks", Paths[I-1] + ".framework"); 1825f2161a70SDouglas Gregor } 1826f2161a70SDouglas Gregor 1827718292f2SDouglas Gregor /// \brief Parse a header declaration. 1828718292f2SDouglas Gregor /// 1829718292f2SDouglas Gregor /// header-declaration: 1830306d8920SRichard Smith /// 'textual'[opt] 'header' string-literal 1831202210b3SRichard Smith /// 'private' 'textual'[opt] 'header' string-literal 1832202210b3SRichard Smith /// 'exclude' 'header' string-literal 1833202210b3SRichard Smith /// 'umbrella' 'header' string-literal 1834306d8920SRichard Smith /// 1835306d8920SRichard Smith /// FIXME: Support 'private textual header'. 1836b53e5483SLawrence Crowl void ModuleMapParser::parseHeaderDecl(MMToken::TokenKind LeadingToken, 1837b53e5483SLawrence Crowl SourceLocation LeadingLoc) { 1838202210b3SRichard Smith // We've already consumed the first token. 1839202210b3SRichard Smith ModuleMap::ModuleHeaderRole Role = ModuleMap::NormalHeader; 1840202210b3SRichard Smith if (LeadingToken == MMToken::PrivateKeyword) { 1841202210b3SRichard Smith Role = ModuleMap::PrivateHeader; 1842202210b3SRichard Smith // 'private' may optionally be followed by 'textual'. 1843202210b3SRichard Smith if (Tok.is(MMToken::TextualKeyword)) { 1844202210b3SRichard Smith LeadingToken = Tok.Kind; 18451871ed3dSBenjamin Kramer consumeToken(); 1846202210b3SRichard Smith } 1847202210b3SRichard Smith } 18487ff29148SBen Langmuir 1849202210b3SRichard Smith if (LeadingToken == MMToken::TextualKeyword) 1850202210b3SRichard Smith Role = ModuleMap::ModuleHeaderRole(Role | ModuleMap::TextualHeader); 1851202210b3SRichard Smith 18527ff29148SBen Langmuir if (UsesRequiresExcludedHack.count(ActiveModule)) { 18537ff29148SBen Langmuir // Mark this header 'textual' (see doc comment for 18547ff29148SBen Langmuir // Module::UsesRequiresExcludedHack). 18557ff29148SBen Langmuir Role = ModuleMap::ModuleHeaderRole(Role | ModuleMap::TextualHeader); 18567ff29148SBen Langmuir } 18577ff29148SBen Langmuir 1858202210b3SRichard Smith if (LeadingToken != MMToken::HeaderKeyword) { 1859202210b3SRichard Smith if (!Tok.is(MMToken::HeaderKeyword)) { 1860202210b3SRichard Smith Diags.Report(Tok.getLocation(), diag::err_mmap_expected_header) 1861202210b3SRichard Smith << (LeadingToken == MMToken::PrivateKeyword ? "private" : 1862202210b3SRichard Smith LeadingToken == MMToken::ExcludeKeyword ? "exclude" : 1863202210b3SRichard Smith LeadingToken == MMToken::TextualKeyword ? "textual" : "umbrella"); 1864202210b3SRichard Smith return; 1865202210b3SRichard Smith } 1866202210b3SRichard Smith consumeToken(); 1867202210b3SRichard Smith } 1868718292f2SDouglas Gregor 1869718292f2SDouglas Gregor // Parse the header name. 1870718292f2SDouglas Gregor if (!Tok.is(MMToken::StringLiteral)) { 1871718292f2SDouglas Gregor Diags.Report(Tok.getLocation(), diag::err_mmap_expected_header) 1872718292f2SDouglas Gregor << "header"; 1873718292f2SDouglas Gregor HadError = true; 1874718292f2SDouglas Gregor return; 1875718292f2SDouglas Gregor } 18763c1a41adSRichard Smith Module::UnresolvedHeaderDirective Header; 18770761a8a0SDaniel Jasper Header.FileName = Tok.getString(); 18780761a8a0SDaniel Jasper Header.FileNameLoc = consumeToken(); 1879718292f2SDouglas Gregor 1880524e33e1SDouglas Gregor // Check whether we already have an umbrella. 1881b53e5483SLawrence Crowl if (LeadingToken == MMToken::UmbrellaKeyword && ActiveModule->Umbrella) { 18820761a8a0SDaniel Jasper Diags.Report(Header.FileNameLoc, diag::err_mmap_umbrella_clash) 1883524e33e1SDouglas Gregor << ActiveModule->getFullModuleName(); 1884322f633cSDouglas Gregor HadError = true; 1885322f633cSDouglas Gregor return; 1886322f633cSDouglas Gregor } 1887322f633cSDouglas Gregor 18885257fc63SDouglas Gregor // Look for this file. 1889d2d442caSCraig Topper const FileEntry *File = nullptr; 1890d2d442caSCraig Topper const FileEntry *BuiltinFile = nullptr; 18913c1a41adSRichard Smith SmallString<128> RelativePathName; 18920761a8a0SDaniel Jasper if (llvm::sys::path::is_absolute(Header.FileName)) { 18933c1a41adSRichard Smith RelativePathName = Header.FileName; 18943c1a41adSRichard Smith File = SourceMgr.getFileManager().getFile(RelativePathName); 1895e7ab3669SDouglas Gregor } else { 1896e7ab3669SDouglas Gregor // Search for the header file within the search directory. 18973c1a41adSRichard Smith SmallString<128> FullPathName(Directory->getName()); 18983c1a41adSRichard Smith unsigned FullPathLength = FullPathName.size(); 1899755b2055SDouglas Gregor 1900f2161a70SDouglas Gregor if (ActiveModule->isPartOfFramework()) { 19013c1a41adSRichard Smith appendSubframeworkPaths(ActiveModule, RelativePathName); 190208ebd61aSBruno Cardoso Lopes unsigned RelativePathLength = RelativePathName.size(); 1903755b2055SDouglas Gregor 1904e7ab3669SDouglas Gregor // Check whether this file is in the public headers. 19053c1a41adSRichard Smith llvm::sys::path::append(RelativePathName, "Headers", Header.FileName); 190692e1b62dSYaron Keren llvm::sys::path::append(FullPathName, RelativePathName); 19073c1a41adSRichard Smith File = SourceMgr.getFileManager().getFile(FullPathName); 1908e7ab3669SDouglas Gregor 1909e7ab3669SDouglas Gregor // Check whether this file is in the private headers. 191008ebd61aSBruno Cardoso Lopes if (!File) { 191108ebd61aSBruno Cardoso Lopes // Ideally, private modules in the form 'FrameworkName.Private' should 191208ebd61aSBruno Cardoso Lopes // be defined as 'module FrameworkName.Private', and not as 191308ebd61aSBruno Cardoso Lopes // 'framework module FrameworkName.Private', since a 'Private.Framework' 191408ebd61aSBruno Cardoso Lopes // does not usually exist. However, since both are currently widely used 191508ebd61aSBruno Cardoso Lopes // for private modules, make sure we find the right path in both cases. 191608ebd61aSBruno Cardoso Lopes RelativePathName.resize(ActiveModule->IsFramework ? 0 191708ebd61aSBruno Cardoso Lopes : RelativePathLength); 19183c1a41adSRichard Smith FullPathName.resize(FullPathLength); 19193c1a41adSRichard Smith llvm::sys::path::append(RelativePathName, "PrivateHeaders", 19203c1a41adSRichard Smith Header.FileName); 192192e1b62dSYaron Keren llvm::sys::path::append(FullPathName, RelativePathName); 19223c1a41adSRichard Smith File = SourceMgr.getFileManager().getFile(FullPathName); 1923e7ab3669SDouglas Gregor } 1924e7ab3669SDouglas Gregor } else { 1925e7ab3669SDouglas Gregor // Lookup for normal headers. 19263c1a41adSRichard Smith llvm::sys::path::append(RelativePathName, Header.FileName); 192792e1b62dSYaron Keren llvm::sys::path::append(FullPathName, RelativePathName); 19283c1a41adSRichard Smith File = SourceMgr.getFileManager().getFile(FullPathName); 19293ec6663bSDouglas Gregor 19303ec6663bSDouglas Gregor // If this is a system module with a top-level header, this header 19313ec6663bSDouglas Gregor // may have a counterpart (or replacement) in the set of headers 19323ec6663bSDouglas Gregor // supplied by Clang. Find that builtin header. 1933b53e5483SLawrence Crowl if (ActiveModule->IsSystem && LeadingToken != MMToken::UmbrellaKeyword && 1934b53e5483SLawrence Crowl BuiltinIncludeDir && BuiltinIncludeDir != Directory && 1935ba1b5c98SBruno Cardoso Lopes ModuleMap::isBuiltinHeader(Header.FileName)) { 19362c1dd271SDylan Noblesmith SmallString<128> BuiltinPathName(BuiltinIncludeDir->getName()); 19370761a8a0SDaniel Jasper llvm::sys::path::append(BuiltinPathName, Header.FileName); 19383ec6663bSDouglas Gregor BuiltinFile = SourceMgr.getFileManager().getFile(BuiltinPathName); 19393ec6663bSDouglas Gregor 19403ec6663bSDouglas Gregor // If Clang supplies this header but the underlying system does not, 19413ec6663bSDouglas Gregor // just silently swap in our builtin version. Otherwise, we'll end 19423ec6663bSDouglas Gregor // up adding both (later). 1943ed84df00SBruno Cardoso Lopes if (BuiltinFile && !File) { 19443ec6663bSDouglas Gregor File = BuiltinFile; 19453c1a41adSRichard Smith RelativePathName = BuiltinPathName; 1946d2d442caSCraig Topper BuiltinFile = nullptr; 19473ec6663bSDouglas Gregor } 19483ec6663bSDouglas Gregor } 1949e7ab3669SDouglas Gregor } 1950e7ab3669SDouglas Gregor } 19515257fc63SDouglas Gregor 19525257fc63SDouglas Gregor // FIXME: We shouldn't be eagerly stat'ing every file named in a module map. 19535257fc63SDouglas Gregor // Come up with a lazy way to do this. 1954e7ab3669SDouglas Gregor if (File) { 195597da9178SDaniel Jasper if (LeadingToken == MMToken::UmbrellaKeyword) { 1956322f633cSDouglas Gregor const DirectoryEntry *UmbrellaDir = File->getDir(); 195759527666SDouglas Gregor if (Module *UmbrellaModule = Map.UmbrellaDirs[UmbrellaDir]) { 1958b53e5483SLawrence Crowl Diags.Report(LeadingLoc, diag::err_mmap_umbrella_clash) 195959527666SDouglas Gregor << UmbrellaModule->getFullModuleName(); 1960322f633cSDouglas Gregor HadError = true; 19615257fc63SDouglas Gregor } else { 1962322f633cSDouglas Gregor // Record this umbrella header. 19632b63d15fSRichard Smith Map.setUmbrellaHeader(ActiveModule, File, RelativePathName.str()); 1964322f633cSDouglas Gregor } 1965feb54b6dSRichard Smith } else if (LeadingToken == MMToken::ExcludeKeyword) { 19660101b540SHans Wennborg Module::Header H = {RelativePathName.str(), File}; 19670101b540SHans Wennborg Map.excludeHeader(ActiveModule, H); 1968322f633cSDouglas Gregor } else { 196915881ed0SRichard Smith // If there is a builtin counterpart to this file, add it now so it can 197015881ed0SRichard Smith // wrap the system header. 19710101b540SHans Wennborg if (BuiltinFile) { 19723c1a41adSRichard Smith // FIXME: Taking the name from the FileEntry is unstable and can give 19733c1a41adSRichard Smith // different results depending on how we've previously named that file 19743c1a41adSRichard Smith // in this build. 19750101b540SHans Wennborg Module::Header H = { BuiltinFile->getName(), BuiltinFile }; 197615881ed0SRichard Smith Map.addHeader(ActiveModule, H, Role); 197715881ed0SRichard Smith 197815881ed0SRichard Smith // If we have both a builtin and system version of the file, the 197915881ed0SRichard Smith // builtin version may want to inject macros into the system header, so 198015881ed0SRichard Smith // force the system header to be treated as a textual header in this 198115881ed0SRichard Smith // case. 198215881ed0SRichard Smith Role = ModuleMap::ModuleHeaderRole(Role | ModuleMap::TextualHeader); 19830101b540SHans Wennborg } 198425d50758SRichard Smith 1985202210b3SRichard Smith // Record this header. 19860101b540SHans Wennborg Module::Header H = { RelativePathName.str(), File }; 19870101b540SHans Wennborg Map.addHeader(ActiveModule, H, Role); 19885257fc63SDouglas Gregor } 1989b53e5483SLawrence Crowl } else if (LeadingToken != MMToken::ExcludeKeyword) { 19904b27a64bSDouglas Gregor // Ignore excluded header files. They're optional anyway. 19914b27a64bSDouglas Gregor 19920761a8a0SDaniel Jasper // If we find a module that has a missing header, we mark this module as 19930761a8a0SDaniel Jasper // unavailable and store the header directive for displaying diagnostics. 19940761a8a0SDaniel Jasper Header.IsUmbrella = LeadingToken == MMToken::UmbrellaKeyword; 1995ec8c9752SBen Langmuir ActiveModule->markUnavailable(); 19960761a8a0SDaniel Jasper ActiveModule->MissingHeaders.push_back(Header); 19975257fc63SDouglas Gregor } 1998718292f2SDouglas Gregor } 1999718292f2SDouglas Gregor 200041f81994SBen Langmuir static int compareModuleHeaders(const Module::Header *A, 200141f81994SBen Langmuir const Module::Header *B) { 200241f81994SBen Langmuir return A->NameAsWritten.compare(B->NameAsWritten); 200341f81994SBen Langmuir } 200441f81994SBen Langmuir 2005524e33e1SDouglas Gregor /// \brief Parse an umbrella directory declaration. 2006524e33e1SDouglas Gregor /// 2007524e33e1SDouglas Gregor /// umbrella-dir-declaration: 2008524e33e1SDouglas Gregor /// umbrella string-literal 2009524e33e1SDouglas Gregor void ModuleMapParser::parseUmbrellaDirDecl(SourceLocation UmbrellaLoc) { 2010524e33e1SDouglas Gregor // Parse the directory name. 2011524e33e1SDouglas Gregor if (!Tok.is(MMToken::StringLiteral)) { 2012524e33e1SDouglas Gregor Diags.Report(Tok.getLocation(), diag::err_mmap_expected_header) 2013524e33e1SDouglas Gregor << "umbrella"; 2014524e33e1SDouglas Gregor HadError = true; 2015524e33e1SDouglas Gregor return; 2016524e33e1SDouglas Gregor } 2017524e33e1SDouglas Gregor 2018524e33e1SDouglas Gregor std::string DirName = Tok.getString(); 2019524e33e1SDouglas Gregor SourceLocation DirNameLoc = consumeToken(); 2020524e33e1SDouglas Gregor 2021524e33e1SDouglas Gregor // Check whether we already have an umbrella. 2022524e33e1SDouglas Gregor if (ActiveModule->Umbrella) { 2023524e33e1SDouglas Gregor Diags.Report(DirNameLoc, diag::err_mmap_umbrella_clash) 2024524e33e1SDouglas Gregor << ActiveModule->getFullModuleName(); 2025524e33e1SDouglas Gregor HadError = true; 2026524e33e1SDouglas Gregor return; 2027524e33e1SDouglas Gregor } 2028524e33e1SDouglas Gregor 2029524e33e1SDouglas Gregor // Look for this file. 2030d2d442caSCraig Topper const DirectoryEntry *Dir = nullptr; 2031524e33e1SDouglas Gregor if (llvm::sys::path::is_absolute(DirName)) 2032524e33e1SDouglas Gregor Dir = SourceMgr.getFileManager().getDirectory(DirName); 2033524e33e1SDouglas Gregor else { 20342c1dd271SDylan Noblesmith SmallString<128> PathName; 2035524e33e1SDouglas Gregor PathName = Directory->getName(); 2036524e33e1SDouglas Gregor llvm::sys::path::append(PathName, DirName); 2037524e33e1SDouglas Gregor Dir = SourceMgr.getFileManager().getDirectory(PathName); 2038524e33e1SDouglas Gregor } 2039524e33e1SDouglas Gregor 2040524e33e1SDouglas Gregor if (!Dir) { 2041a0320b97SVassil Vassilev Diags.Report(DirNameLoc, diag::warn_mmap_umbrella_dir_not_found) 2042524e33e1SDouglas Gregor << DirName; 2043524e33e1SDouglas Gregor return; 2044524e33e1SDouglas Gregor } 2045524e33e1SDouglas Gregor 20467ff29148SBen Langmuir if (UsesRequiresExcludedHack.count(ActiveModule)) { 20477ff29148SBen Langmuir // Mark this header 'textual' (see doc comment for 20487ff29148SBen Langmuir // ModuleMapParser::UsesRequiresExcludedHack). Although iterating over the 20497ff29148SBen Langmuir // directory is relatively expensive, in practice this only applies to the 20507ff29148SBen Langmuir // uncommonly used Tcl module on Darwin platforms. 20517ff29148SBen Langmuir std::error_code EC; 20527ff29148SBen Langmuir SmallVector<Module::Header, 6> Headers; 2053b171a59bSBruno Cardoso Lopes vfs::FileSystem &FS = *SourceMgr.getFileManager().getVirtualFileSystem(); 2054b171a59bSBruno Cardoso Lopes for (vfs::recursive_directory_iterator I(FS, Dir->getName(), EC), E; 20557ff29148SBen Langmuir I != E && !EC; I.increment(EC)) { 2056b171a59bSBruno Cardoso Lopes if (const FileEntry *FE = 2057b171a59bSBruno Cardoso Lopes SourceMgr.getFileManager().getFile(I->getName())) { 20587ff29148SBen Langmuir 2059b171a59bSBruno Cardoso Lopes Module::Header Header = {I->getName(), FE}; 20607ff29148SBen Langmuir Headers.push_back(std::move(Header)); 20617ff29148SBen Langmuir } 20627ff29148SBen Langmuir } 20637ff29148SBen Langmuir 20647ff29148SBen Langmuir // Sort header paths so that the pcm doesn't depend on iteration order. 206541f81994SBen Langmuir llvm::array_pod_sort(Headers.begin(), Headers.end(), compareModuleHeaders); 206641f81994SBen Langmuir 20677ff29148SBen Langmuir for (auto &Header : Headers) 20687ff29148SBen Langmuir Map.addHeader(ActiveModule, std::move(Header), ModuleMap::TextualHeader); 20697ff29148SBen Langmuir return; 20707ff29148SBen Langmuir } 20717ff29148SBen Langmuir 2072524e33e1SDouglas Gregor if (Module *OwningModule = Map.UmbrellaDirs[Dir]) { 2073524e33e1SDouglas Gregor Diags.Report(UmbrellaLoc, diag::err_mmap_umbrella_clash) 2074524e33e1SDouglas Gregor << OwningModule->getFullModuleName(); 2075524e33e1SDouglas Gregor HadError = true; 2076524e33e1SDouglas Gregor return; 2077524e33e1SDouglas Gregor } 2078524e33e1SDouglas Gregor 2079524e33e1SDouglas Gregor // Record this umbrella directory. 20802b63d15fSRichard Smith Map.setUmbrellaDir(ActiveModule, Dir, DirName); 2081524e33e1SDouglas Gregor } 2082524e33e1SDouglas Gregor 20832b82c2a5SDouglas Gregor /// \brief Parse a module export declaration. 20842b82c2a5SDouglas Gregor /// 20852b82c2a5SDouglas Gregor /// export-declaration: 20862b82c2a5SDouglas Gregor /// 'export' wildcard-module-id 20872b82c2a5SDouglas Gregor /// 20882b82c2a5SDouglas Gregor /// wildcard-module-id: 20892b82c2a5SDouglas Gregor /// identifier 20902b82c2a5SDouglas Gregor /// '*' 20912b82c2a5SDouglas Gregor /// identifier '.' wildcard-module-id 20922b82c2a5SDouglas Gregor void ModuleMapParser::parseExportDecl() { 20932b82c2a5SDouglas Gregor assert(Tok.is(MMToken::ExportKeyword)); 20942b82c2a5SDouglas Gregor SourceLocation ExportLoc = consumeToken(); 20952b82c2a5SDouglas Gregor 20962b82c2a5SDouglas Gregor // Parse the module-id with an optional wildcard at the end. 20972b82c2a5SDouglas Gregor ModuleId ParsedModuleId; 20982b82c2a5SDouglas Gregor bool Wildcard = false; 20992b82c2a5SDouglas Gregor do { 2100306d8920SRichard Smith // FIXME: Support string-literal module names here. 21012b82c2a5SDouglas Gregor if (Tok.is(MMToken::Identifier)) { 21022b82c2a5SDouglas Gregor ParsedModuleId.push_back(std::make_pair(Tok.getString(), 21032b82c2a5SDouglas Gregor Tok.getLocation())); 21042b82c2a5SDouglas Gregor consumeToken(); 21052b82c2a5SDouglas Gregor 21062b82c2a5SDouglas Gregor if (Tok.is(MMToken::Period)) { 21072b82c2a5SDouglas Gregor consumeToken(); 21082b82c2a5SDouglas Gregor continue; 21092b82c2a5SDouglas Gregor } 21102b82c2a5SDouglas Gregor 21112b82c2a5SDouglas Gregor break; 21122b82c2a5SDouglas Gregor } 21132b82c2a5SDouglas Gregor 21142b82c2a5SDouglas Gregor if(Tok.is(MMToken::Star)) { 21152b82c2a5SDouglas Gregor Wildcard = true; 2116f5eedd05SDouglas Gregor consumeToken(); 21172b82c2a5SDouglas Gregor break; 21182b82c2a5SDouglas Gregor } 21192b82c2a5SDouglas Gregor 2120ba7f2f71SDaniel Jasper Diags.Report(Tok.getLocation(), diag::err_mmap_module_id); 21212b82c2a5SDouglas Gregor HadError = true; 21222b82c2a5SDouglas Gregor return; 21232b82c2a5SDouglas Gregor } while (true); 21242b82c2a5SDouglas Gregor 21252b82c2a5SDouglas Gregor Module::UnresolvedExportDecl Unresolved = { 21262b82c2a5SDouglas Gregor ExportLoc, ParsedModuleId, Wildcard 21272b82c2a5SDouglas Gregor }; 21282b82c2a5SDouglas Gregor ActiveModule->UnresolvedExports.push_back(Unresolved); 21292b82c2a5SDouglas Gregor } 21302b82c2a5SDouglas Gregor 21318f4d3ff1SRichard Smith /// \brief Parse a module use declaration. 2132ba7f2f71SDaniel Jasper /// 21338f4d3ff1SRichard Smith /// use-declaration: 21348f4d3ff1SRichard Smith /// 'use' wildcard-module-id 2135ba7f2f71SDaniel Jasper void ModuleMapParser::parseUseDecl() { 2136ba7f2f71SDaniel Jasper assert(Tok.is(MMToken::UseKeyword)); 21378f4d3ff1SRichard Smith auto KWLoc = consumeToken(); 2138ba7f2f71SDaniel Jasper // Parse the module-id. 2139ba7f2f71SDaniel Jasper ModuleId ParsedModuleId; 21403cd34c76SDaniel Jasper parseModuleId(ParsedModuleId); 2141ba7f2f71SDaniel Jasper 21428f4d3ff1SRichard Smith if (ActiveModule->Parent) 21438f4d3ff1SRichard Smith Diags.Report(KWLoc, diag::err_mmap_use_decl_submodule); 21448f4d3ff1SRichard Smith else 2145ba7f2f71SDaniel Jasper ActiveModule->UnresolvedDirectUses.push_back(ParsedModuleId); 2146ba7f2f71SDaniel Jasper } 2147ba7f2f71SDaniel Jasper 21486ddfca91SDouglas Gregor /// \brief Parse a link declaration. 21496ddfca91SDouglas Gregor /// 21506ddfca91SDouglas Gregor /// module-declaration: 21516ddfca91SDouglas Gregor /// 'link' 'framework'[opt] string-literal 21526ddfca91SDouglas Gregor void ModuleMapParser::parseLinkDecl() { 21536ddfca91SDouglas Gregor assert(Tok.is(MMToken::LinkKeyword)); 21546ddfca91SDouglas Gregor SourceLocation LinkLoc = consumeToken(); 21556ddfca91SDouglas Gregor 21566ddfca91SDouglas Gregor // Parse the optional 'framework' keyword. 21576ddfca91SDouglas Gregor bool IsFramework = false; 21586ddfca91SDouglas Gregor if (Tok.is(MMToken::FrameworkKeyword)) { 21596ddfca91SDouglas Gregor consumeToken(); 21606ddfca91SDouglas Gregor IsFramework = true; 21616ddfca91SDouglas Gregor } 21626ddfca91SDouglas Gregor 21636ddfca91SDouglas Gregor // Parse the library name 21646ddfca91SDouglas Gregor if (!Tok.is(MMToken::StringLiteral)) { 21656ddfca91SDouglas Gregor Diags.Report(Tok.getLocation(), diag::err_mmap_expected_library_name) 21666ddfca91SDouglas Gregor << IsFramework << SourceRange(LinkLoc); 21676ddfca91SDouglas Gregor HadError = true; 21686ddfca91SDouglas Gregor return; 21696ddfca91SDouglas Gregor } 21706ddfca91SDouglas Gregor 21716ddfca91SDouglas Gregor std::string LibraryName = Tok.getString(); 21726ddfca91SDouglas Gregor consumeToken(); 21736ddfca91SDouglas Gregor ActiveModule->LinkLibraries.push_back(Module::LinkLibrary(LibraryName, 21746ddfca91SDouglas Gregor IsFramework)); 21756ddfca91SDouglas Gregor } 21766ddfca91SDouglas Gregor 217735b13eceSDouglas Gregor /// \brief Parse a configuration macro declaration. 217835b13eceSDouglas Gregor /// 217935b13eceSDouglas Gregor /// module-declaration: 218035b13eceSDouglas Gregor /// 'config_macros' attributes[opt] config-macro-list? 218135b13eceSDouglas Gregor /// 218235b13eceSDouglas Gregor /// config-macro-list: 218335b13eceSDouglas Gregor /// identifier (',' identifier)? 218435b13eceSDouglas Gregor void ModuleMapParser::parseConfigMacros() { 218535b13eceSDouglas Gregor assert(Tok.is(MMToken::ConfigMacros)); 218635b13eceSDouglas Gregor SourceLocation ConfigMacrosLoc = consumeToken(); 218735b13eceSDouglas Gregor 218835b13eceSDouglas Gregor // Only top-level modules can have configuration macros. 218935b13eceSDouglas Gregor if (ActiveModule->Parent) { 219035b13eceSDouglas Gregor Diags.Report(ConfigMacrosLoc, diag::err_mmap_config_macro_submodule); 219135b13eceSDouglas Gregor } 219235b13eceSDouglas Gregor 219335b13eceSDouglas Gregor // Parse the optional attributes. 219435b13eceSDouglas Gregor Attributes Attrs; 21955d29dee0SDavide Italiano if (parseOptionalAttributes(Attrs)) 21965d29dee0SDavide Italiano return; 21975d29dee0SDavide Italiano 219835b13eceSDouglas Gregor if (Attrs.IsExhaustive && !ActiveModule->Parent) { 219935b13eceSDouglas Gregor ActiveModule->ConfigMacrosExhaustive = true; 220035b13eceSDouglas Gregor } 220135b13eceSDouglas Gregor 220235b13eceSDouglas Gregor // If we don't have an identifier, we're done. 2203306d8920SRichard Smith // FIXME: Support macros with the same name as a keyword here. 220435b13eceSDouglas Gregor if (!Tok.is(MMToken::Identifier)) 220535b13eceSDouglas Gregor return; 220635b13eceSDouglas Gregor 220735b13eceSDouglas Gregor // Consume the first identifier. 220835b13eceSDouglas Gregor if (!ActiveModule->Parent) { 220935b13eceSDouglas Gregor ActiveModule->ConfigMacros.push_back(Tok.getString().str()); 221035b13eceSDouglas Gregor } 221135b13eceSDouglas Gregor consumeToken(); 221235b13eceSDouglas Gregor 221335b13eceSDouglas Gregor do { 221435b13eceSDouglas Gregor // If there's a comma, consume it. 221535b13eceSDouglas Gregor if (!Tok.is(MMToken::Comma)) 221635b13eceSDouglas Gregor break; 221735b13eceSDouglas Gregor consumeToken(); 221835b13eceSDouglas Gregor 221935b13eceSDouglas Gregor // We expect to see a macro name here. 2220306d8920SRichard Smith // FIXME: Support macros with the same name as a keyword here. 222135b13eceSDouglas Gregor if (!Tok.is(MMToken::Identifier)) { 222235b13eceSDouglas Gregor Diags.Report(Tok.getLocation(), diag::err_mmap_expected_config_macro); 222335b13eceSDouglas Gregor break; 222435b13eceSDouglas Gregor } 222535b13eceSDouglas Gregor 222635b13eceSDouglas Gregor // Consume the macro name. 222735b13eceSDouglas Gregor if (!ActiveModule->Parent) { 222835b13eceSDouglas Gregor ActiveModule->ConfigMacros.push_back(Tok.getString().str()); 222935b13eceSDouglas Gregor } 223035b13eceSDouglas Gregor consumeToken(); 223135b13eceSDouglas Gregor } while (true); 223235b13eceSDouglas Gregor } 223335b13eceSDouglas Gregor 2234fb912657SDouglas Gregor /// \brief Format a module-id into a string. 2235fb912657SDouglas Gregor static std::string formatModuleId(const ModuleId &Id) { 2236fb912657SDouglas Gregor std::string result; 2237fb912657SDouglas Gregor { 2238fb912657SDouglas Gregor llvm::raw_string_ostream OS(result); 2239fb912657SDouglas Gregor 2240fb912657SDouglas Gregor for (unsigned I = 0, N = Id.size(); I != N; ++I) { 2241fb912657SDouglas Gregor if (I) 2242fb912657SDouglas Gregor OS << "."; 2243fb912657SDouglas Gregor OS << Id[I].first; 2244fb912657SDouglas Gregor } 2245fb912657SDouglas Gregor } 2246fb912657SDouglas Gregor 2247fb912657SDouglas Gregor return result; 2248fb912657SDouglas Gregor } 2249fb912657SDouglas Gregor 2250fb912657SDouglas Gregor /// \brief Parse a conflict declaration. 2251fb912657SDouglas Gregor /// 2252fb912657SDouglas Gregor /// module-declaration: 2253fb912657SDouglas Gregor /// 'conflict' module-id ',' string-literal 2254fb912657SDouglas Gregor void ModuleMapParser::parseConflict() { 2255fb912657SDouglas Gregor assert(Tok.is(MMToken::Conflict)); 2256fb912657SDouglas Gregor SourceLocation ConflictLoc = consumeToken(); 2257fb912657SDouglas Gregor Module::UnresolvedConflict Conflict; 2258fb912657SDouglas Gregor 2259fb912657SDouglas Gregor // Parse the module-id. 2260fb912657SDouglas Gregor if (parseModuleId(Conflict.Id)) 2261fb912657SDouglas Gregor return; 2262fb912657SDouglas Gregor 2263fb912657SDouglas Gregor // Parse the ','. 2264fb912657SDouglas Gregor if (!Tok.is(MMToken::Comma)) { 2265fb912657SDouglas Gregor Diags.Report(Tok.getLocation(), diag::err_mmap_expected_conflicts_comma) 2266fb912657SDouglas Gregor << SourceRange(ConflictLoc); 2267fb912657SDouglas Gregor return; 2268fb912657SDouglas Gregor } 2269fb912657SDouglas Gregor consumeToken(); 2270fb912657SDouglas Gregor 2271fb912657SDouglas Gregor // Parse the message. 2272fb912657SDouglas Gregor if (!Tok.is(MMToken::StringLiteral)) { 2273fb912657SDouglas Gregor Diags.Report(Tok.getLocation(), diag::err_mmap_expected_conflicts_message) 2274fb912657SDouglas Gregor << formatModuleId(Conflict.Id); 2275fb912657SDouglas Gregor return; 2276fb912657SDouglas Gregor } 2277fb912657SDouglas Gregor Conflict.Message = Tok.getString().str(); 2278fb912657SDouglas Gregor consumeToken(); 2279fb912657SDouglas Gregor 2280fb912657SDouglas Gregor // Add this unresolved conflict. 2281fb912657SDouglas Gregor ActiveModule->UnresolvedConflicts.push_back(Conflict); 2282fb912657SDouglas Gregor } 2283fb912657SDouglas Gregor 22846ddfca91SDouglas Gregor /// \brief Parse an inferred module declaration (wildcard modules). 22859194a91dSDouglas Gregor /// 22869194a91dSDouglas Gregor /// module-declaration: 22879194a91dSDouglas Gregor /// 'explicit'[opt] 'framework'[opt] 'module' * attributes[opt] 22889194a91dSDouglas Gregor /// { inferred-module-member* } 22899194a91dSDouglas Gregor /// 22909194a91dSDouglas Gregor /// inferred-module-member: 22919194a91dSDouglas Gregor /// 'export' '*' 22929194a91dSDouglas Gregor /// 'exclude' identifier 22939194a91dSDouglas Gregor void ModuleMapParser::parseInferredModuleDecl(bool Framework, bool Explicit) { 229473441091SDouglas Gregor assert(Tok.is(MMToken::Star)); 229573441091SDouglas Gregor SourceLocation StarLoc = consumeToken(); 229673441091SDouglas Gregor bool Failed = false; 229773441091SDouglas Gregor 229873441091SDouglas Gregor // Inferred modules must be submodules. 22999194a91dSDouglas Gregor if (!ActiveModule && !Framework) { 230073441091SDouglas Gregor Diags.Report(StarLoc, diag::err_mmap_top_level_inferred_submodule); 230173441091SDouglas Gregor Failed = true; 230273441091SDouglas Gregor } 230373441091SDouglas Gregor 23049194a91dSDouglas Gregor if (ActiveModule) { 2305524e33e1SDouglas Gregor // Inferred modules must have umbrella directories. 23064898cde4SBen Langmuir if (!Failed && ActiveModule->IsAvailable && 23074898cde4SBen Langmuir !ActiveModule->getUmbrellaDir()) { 230873441091SDouglas Gregor Diags.Report(StarLoc, diag::err_mmap_inferred_no_umbrella); 230973441091SDouglas Gregor Failed = true; 231073441091SDouglas Gregor } 231173441091SDouglas Gregor 231273441091SDouglas Gregor // Check for redefinition of an inferred module. 2313dd005f69SDouglas Gregor if (!Failed && ActiveModule->InferSubmodules) { 231473441091SDouglas Gregor Diags.Report(StarLoc, diag::err_mmap_inferred_redef); 2315dd005f69SDouglas Gregor if (ActiveModule->InferredSubmoduleLoc.isValid()) 2316dd005f69SDouglas Gregor Diags.Report(ActiveModule->InferredSubmoduleLoc, 231773441091SDouglas Gregor diag::note_mmap_prev_definition); 231873441091SDouglas Gregor Failed = true; 231973441091SDouglas Gregor } 232073441091SDouglas Gregor 23219194a91dSDouglas Gregor // Check for the 'framework' keyword, which is not permitted here. 23229194a91dSDouglas Gregor if (Framework) { 23239194a91dSDouglas Gregor Diags.Report(StarLoc, diag::err_mmap_inferred_framework_submodule); 23249194a91dSDouglas Gregor Framework = false; 23259194a91dSDouglas Gregor } 23269194a91dSDouglas Gregor } else if (Explicit) { 23279194a91dSDouglas Gregor Diags.Report(StarLoc, diag::err_mmap_explicit_inferred_framework); 23289194a91dSDouglas Gregor Explicit = false; 23299194a91dSDouglas Gregor } 23309194a91dSDouglas Gregor 233173441091SDouglas Gregor // If there were any problems with this inferred submodule, skip its body. 233273441091SDouglas Gregor if (Failed) { 233373441091SDouglas Gregor if (Tok.is(MMToken::LBrace)) { 233473441091SDouglas Gregor consumeToken(); 233573441091SDouglas Gregor skipUntil(MMToken::RBrace); 233673441091SDouglas Gregor if (Tok.is(MMToken::RBrace)) 233773441091SDouglas Gregor consumeToken(); 233873441091SDouglas Gregor } 233973441091SDouglas Gregor HadError = true; 234073441091SDouglas Gregor return; 234173441091SDouglas Gregor } 234273441091SDouglas Gregor 23439194a91dSDouglas Gregor // Parse optional attributes. 23444442605fSBill Wendling Attributes Attrs; 23455d29dee0SDavide Italiano if (parseOptionalAttributes(Attrs)) 23465d29dee0SDavide Italiano return; 23479194a91dSDouglas Gregor 23489194a91dSDouglas Gregor if (ActiveModule) { 234973441091SDouglas Gregor // Note that we have an inferred submodule. 2350dd005f69SDouglas Gregor ActiveModule->InferSubmodules = true; 2351dd005f69SDouglas Gregor ActiveModule->InferredSubmoduleLoc = StarLoc; 2352dd005f69SDouglas Gregor ActiveModule->InferExplicitSubmodules = Explicit; 23539194a91dSDouglas Gregor } else { 23549194a91dSDouglas Gregor // We'll be inferring framework modules for this directory. 23559194a91dSDouglas Gregor Map.InferredDirectories[Directory].InferModules = true; 2356c1d88ea5SBen Langmuir Map.InferredDirectories[Directory].Attrs = Attrs; 2357beee15e7SBen Langmuir Map.InferredDirectories[Directory].ModuleMapFile = ModuleMapFile; 2358131daca0SRichard Smith // FIXME: Handle the 'framework' keyword. 23599194a91dSDouglas Gregor } 236073441091SDouglas Gregor 236173441091SDouglas Gregor // Parse the opening brace. 236273441091SDouglas Gregor if (!Tok.is(MMToken::LBrace)) { 236373441091SDouglas Gregor Diags.Report(Tok.getLocation(), diag::err_mmap_expected_lbrace_wildcard); 236473441091SDouglas Gregor HadError = true; 236573441091SDouglas Gregor return; 236673441091SDouglas Gregor } 236773441091SDouglas Gregor SourceLocation LBraceLoc = consumeToken(); 236873441091SDouglas Gregor 236973441091SDouglas Gregor // Parse the body of the inferred submodule. 237073441091SDouglas Gregor bool Done = false; 237173441091SDouglas Gregor do { 237273441091SDouglas Gregor switch (Tok.Kind) { 237373441091SDouglas Gregor case MMToken::EndOfFile: 237473441091SDouglas Gregor case MMToken::RBrace: 237573441091SDouglas Gregor Done = true; 237673441091SDouglas Gregor break; 237773441091SDouglas Gregor 23789194a91dSDouglas Gregor case MMToken::ExcludeKeyword: { 23799194a91dSDouglas Gregor if (ActiveModule) { 23809194a91dSDouglas Gregor Diags.Report(Tok.getLocation(), diag::err_mmap_expected_inferred_member) 2381d2d442caSCraig Topper << (ActiveModule != nullptr); 23829194a91dSDouglas Gregor consumeToken(); 23839194a91dSDouglas Gregor break; 23849194a91dSDouglas Gregor } 23859194a91dSDouglas Gregor 23869194a91dSDouglas Gregor consumeToken(); 2387306d8920SRichard Smith // FIXME: Support string-literal module names here. 23889194a91dSDouglas Gregor if (!Tok.is(MMToken::Identifier)) { 23899194a91dSDouglas Gregor Diags.Report(Tok.getLocation(), diag::err_mmap_missing_exclude_name); 23909194a91dSDouglas Gregor break; 23919194a91dSDouglas Gregor } 23929194a91dSDouglas Gregor 23939194a91dSDouglas Gregor Map.InferredDirectories[Directory].ExcludedModules 23949194a91dSDouglas Gregor .push_back(Tok.getString()); 23959194a91dSDouglas Gregor consumeToken(); 23969194a91dSDouglas Gregor break; 23979194a91dSDouglas Gregor } 23989194a91dSDouglas Gregor 23999194a91dSDouglas Gregor case MMToken::ExportKeyword: 24009194a91dSDouglas Gregor if (!ActiveModule) { 24019194a91dSDouglas Gregor Diags.Report(Tok.getLocation(), diag::err_mmap_expected_inferred_member) 2402d2d442caSCraig Topper << (ActiveModule != nullptr); 24039194a91dSDouglas Gregor consumeToken(); 24049194a91dSDouglas Gregor break; 24059194a91dSDouglas Gregor } 24069194a91dSDouglas Gregor 240773441091SDouglas Gregor consumeToken(); 240873441091SDouglas Gregor if (Tok.is(MMToken::Star)) 2409dd005f69SDouglas Gregor ActiveModule->InferExportWildcard = true; 241073441091SDouglas Gregor else 241173441091SDouglas Gregor Diags.Report(Tok.getLocation(), 241273441091SDouglas Gregor diag::err_mmap_expected_export_wildcard); 241373441091SDouglas Gregor consumeToken(); 241473441091SDouglas Gregor break; 241573441091SDouglas Gregor 241673441091SDouglas Gregor case MMToken::ExplicitKeyword: 241773441091SDouglas Gregor case MMToken::ModuleKeyword: 241873441091SDouglas Gregor case MMToken::HeaderKeyword: 2419b53e5483SLawrence Crowl case MMToken::PrivateKeyword: 242073441091SDouglas Gregor case MMToken::UmbrellaKeyword: 242173441091SDouglas Gregor default: 24229194a91dSDouglas Gregor Diags.Report(Tok.getLocation(), diag::err_mmap_expected_inferred_member) 2423d2d442caSCraig Topper << (ActiveModule != nullptr); 242473441091SDouglas Gregor consumeToken(); 242573441091SDouglas Gregor break; 242673441091SDouglas Gregor } 242773441091SDouglas Gregor } while (!Done); 242873441091SDouglas Gregor 242973441091SDouglas Gregor if (Tok.is(MMToken::RBrace)) 243073441091SDouglas Gregor consumeToken(); 243173441091SDouglas Gregor else { 243273441091SDouglas Gregor Diags.Report(Tok.getLocation(), diag::err_mmap_expected_rbrace); 243373441091SDouglas Gregor Diags.Report(LBraceLoc, diag::note_mmap_lbrace_match); 243473441091SDouglas Gregor HadError = true; 243573441091SDouglas Gregor } 243673441091SDouglas Gregor } 243773441091SDouglas Gregor 24389194a91dSDouglas Gregor /// \brief Parse optional attributes. 24399194a91dSDouglas Gregor /// 24409194a91dSDouglas Gregor /// attributes: 24419194a91dSDouglas Gregor /// attribute attributes 24429194a91dSDouglas Gregor /// attribute 24439194a91dSDouglas Gregor /// 24449194a91dSDouglas Gregor /// attribute: 24459194a91dSDouglas Gregor /// [ identifier ] 24469194a91dSDouglas Gregor /// 24479194a91dSDouglas Gregor /// \param Attrs Will be filled in with the parsed attributes. 24489194a91dSDouglas Gregor /// 24499194a91dSDouglas Gregor /// \returns true if an error occurred, false otherwise. 24504442605fSBill Wendling bool ModuleMapParser::parseOptionalAttributes(Attributes &Attrs) { 24519194a91dSDouglas Gregor bool HadError = false; 24529194a91dSDouglas Gregor 24539194a91dSDouglas Gregor while (Tok.is(MMToken::LSquare)) { 24549194a91dSDouglas Gregor // Consume the '['. 24559194a91dSDouglas Gregor SourceLocation LSquareLoc = consumeToken(); 24569194a91dSDouglas Gregor 24579194a91dSDouglas Gregor // Check whether we have an attribute name here. 24589194a91dSDouglas Gregor if (!Tok.is(MMToken::Identifier)) { 24599194a91dSDouglas Gregor Diags.Report(Tok.getLocation(), diag::err_mmap_expected_attribute); 24609194a91dSDouglas Gregor skipUntil(MMToken::RSquare); 24619194a91dSDouglas Gregor if (Tok.is(MMToken::RSquare)) 24629194a91dSDouglas Gregor consumeToken(); 24639194a91dSDouglas Gregor HadError = true; 24649194a91dSDouglas Gregor } 24659194a91dSDouglas Gregor 24669194a91dSDouglas Gregor // Decode the attribute name. 24679194a91dSDouglas Gregor AttributeKind Attribute 24689194a91dSDouglas Gregor = llvm::StringSwitch<AttributeKind>(Tok.getString()) 246935b13eceSDouglas Gregor .Case("exhaustive", AT_exhaustive) 247077944868SRichard Smith .Case("extern_c", AT_extern_c) 2471ed84df00SBruno Cardoso Lopes .Case("no_undeclared_includes", AT_no_undeclared_includes) 24729194a91dSDouglas Gregor .Case("system", AT_system) 24739194a91dSDouglas Gregor .Default(AT_unknown); 24749194a91dSDouglas Gregor switch (Attribute) { 24759194a91dSDouglas Gregor case AT_unknown: 24769194a91dSDouglas Gregor Diags.Report(Tok.getLocation(), diag::warn_mmap_unknown_attribute) 24779194a91dSDouglas Gregor << Tok.getString(); 24789194a91dSDouglas Gregor break; 24799194a91dSDouglas Gregor 24809194a91dSDouglas Gregor case AT_system: 24819194a91dSDouglas Gregor Attrs.IsSystem = true; 24829194a91dSDouglas Gregor break; 248335b13eceSDouglas Gregor 248477944868SRichard Smith case AT_extern_c: 248577944868SRichard Smith Attrs.IsExternC = true; 248677944868SRichard Smith break; 248777944868SRichard Smith 248835b13eceSDouglas Gregor case AT_exhaustive: 248935b13eceSDouglas Gregor Attrs.IsExhaustive = true; 249035b13eceSDouglas Gregor break; 2491ed84df00SBruno Cardoso Lopes 2492ed84df00SBruno Cardoso Lopes case AT_no_undeclared_includes: 2493ed84df00SBruno Cardoso Lopes Attrs.NoUndeclaredIncludes = true; 2494ed84df00SBruno Cardoso Lopes break; 24959194a91dSDouglas Gregor } 24969194a91dSDouglas Gregor consumeToken(); 24979194a91dSDouglas Gregor 24989194a91dSDouglas Gregor // Consume the ']'. 24999194a91dSDouglas Gregor if (!Tok.is(MMToken::RSquare)) { 25009194a91dSDouglas Gregor Diags.Report(Tok.getLocation(), diag::err_mmap_expected_rsquare); 25019194a91dSDouglas Gregor Diags.Report(LSquareLoc, diag::note_mmap_lsquare_match); 25029194a91dSDouglas Gregor skipUntil(MMToken::RSquare); 25039194a91dSDouglas Gregor HadError = true; 25049194a91dSDouglas Gregor } 25059194a91dSDouglas Gregor 25069194a91dSDouglas Gregor if (Tok.is(MMToken::RSquare)) 25079194a91dSDouglas Gregor consumeToken(); 25089194a91dSDouglas Gregor } 25099194a91dSDouglas Gregor 25109194a91dSDouglas Gregor return HadError; 25119194a91dSDouglas Gregor } 25129194a91dSDouglas Gregor 2513718292f2SDouglas Gregor /// \brief Parse a module map file. 2514718292f2SDouglas Gregor /// 2515718292f2SDouglas Gregor /// module-map-file: 2516718292f2SDouglas Gregor /// module-declaration* 2517718292f2SDouglas Gregor bool ModuleMapParser::parseModuleMapFile() { 2518718292f2SDouglas Gregor do { 2519718292f2SDouglas Gregor switch (Tok.Kind) { 2520718292f2SDouglas Gregor case MMToken::EndOfFile: 2521718292f2SDouglas Gregor return HadError; 2522718292f2SDouglas Gregor 2523e7ab3669SDouglas Gregor case MMToken::ExplicitKeyword: 252497292843SDaniel Jasper case MMToken::ExternKeyword: 2525718292f2SDouglas Gregor case MMToken::ModuleKeyword: 2526755b2055SDouglas Gregor case MMToken::FrameworkKeyword: 2527718292f2SDouglas Gregor parseModuleDecl(); 2528718292f2SDouglas Gregor break; 2529718292f2SDouglas Gregor 25301fb5c3a6SDouglas Gregor case MMToken::Comma: 253135b13eceSDouglas Gregor case MMToken::ConfigMacros: 2532fb912657SDouglas Gregor case MMToken::Conflict: 2533a3feee2aSRichard Smith case MMToken::Exclaim: 253459527666SDouglas Gregor case MMToken::ExcludeKeyword: 25352b82c2a5SDouglas Gregor case MMToken::ExportKeyword: 2536718292f2SDouglas Gregor case MMToken::HeaderKeyword: 2537718292f2SDouglas Gregor case MMToken::Identifier: 2538718292f2SDouglas Gregor case MMToken::LBrace: 25396ddfca91SDouglas Gregor case MMToken::LinkKeyword: 2540a686e1b0SDouglas Gregor case MMToken::LSquare: 25412b82c2a5SDouglas Gregor case MMToken::Period: 2542b53e5483SLawrence Crowl case MMToken::PrivateKeyword: 2543718292f2SDouglas Gregor case MMToken::RBrace: 2544a686e1b0SDouglas Gregor case MMToken::RSquare: 25451fb5c3a6SDouglas Gregor case MMToken::RequiresKeyword: 25462b82c2a5SDouglas Gregor case MMToken::Star: 2547718292f2SDouglas Gregor case MMToken::StringLiteral: 2548b8afebe2SRichard Smith case MMToken::TextualKeyword: 2549718292f2SDouglas Gregor case MMToken::UmbrellaKeyword: 2550ba7f2f71SDaniel Jasper case MMToken::UseKeyword: 2551718292f2SDouglas Gregor Diags.Report(Tok.getLocation(), diag::err_mmap_expected_module); 2552718292f2SDouglas Gregor HadError = true; 2553718292f2SDouglas Gregor consumeToken(); 2554718292f2SDouglas Gregor break; 2555718292f2SDouglas Gregor } 2556718292f2SDouglas Gregor } while (true); 2557718292f2SDouglas Gregor } 2558718292f2SDouglas Gregor 25599acb99e3SRichard Smith bool ModuleMap::parseModuleMapFile(const FileEntry *File, bool IsSystem, 25608128f332SRichard Smith const DirectoryEntry *Dir, FileID ID, 25618128f332SRichard Smith unsigned *Offset, 2562ae6df27eSRichard Smith SourceLocation ExternModuleLoc) { 25638128f332SRichard Smith assert(Target && "Missing target information"); 25644ddf2221SDouglas Gregor llvm::DenseMap<const FileEntry *, bool>::iterator Known 25654ddf2221SDouglas Gregor = ParsedModuleMap.find(File); 25664ddf2221SDouglas Gregor if (Known != ParsedModuleMap.end()) 25674ddf2221SDouglas Gregor return Known->second; 25684ddf2221SDouglas Gregor 25698128f332SRichard Smith // If the module map file wasn't already entered, do so now. 25708128f332SRichard Smith if (ID.isInvalid()) { 2571cb69b57bSBen Langmuir auto FileCharacter = IsSystem ? SrcMgr::C_System : SrcMgr::C_User; 25728128f332SRichard Smith ID = SourceMgr.createFileID(File, ExternModuleLoc, FileCharacter); 25738128f332SRichard Smith } 25748128f332SRichard Smith 25758128f332SRichard Smith assert(Target && "Missing target information"); 25761f76c4e8SManuel Klimek const llvm::MemoryBuffer *Buffer = SourceMgr.getBuffer(ID); 2577718292f2SDouglas Gregor if (!Buffer) 25784ddf2221SDouglas Gregor return ParsedModuleMap[File] = true; 25798128f332SRichard Smith assert((!Offset || *Offset <= Buffer->getBufferSize()) && 25808128f332SRichard Smith "invalid buffer offset"); 2581718292f2SDouglas Gregor 2582718292f2SDouglas Gregor // Parse this module map file. 25838128f332SRichard Smith Lexer L(SourceMgr.getLocForStartOfFile(ID), MMapLangOpts, 25848128f332SRichard Smith Buffer->getBufferStart(), 25858128f332SRichard Smith Buffer->getBufferStart() + (Offset ? *Offset : 0), 25868128f332SRichard Smith Buffer->getBufferEnd()); 25872a6edb30SRichard Smith SourceLocation Start = L.getSourceLocation(); 2588beee15e7SBen Langmuir ModuleMapParser Parser(L, SourceMgr, Target, Diags, *this, File, Dir, 2589963c5535SDouglas Gregor BuiltinIncludeDir, IsSystem); 2590718292f2SDouglas Gregor bool Result = Parser.parseModuleMapFile(); 25914ddf2221SDouglas Gregor ParsedModuleMap[File] = Result; 25922a6edb30SRichard Smith 25938128f332SRichard Smith if (Offset) { 25948128f332SRichard Smith auto Loc = SourceMgr.getDecomposedLoc(Parser.getLocation()); 25958128f332SRichard Smith assert(Loc.first == ID && "stopped in a different file?"); 25968128f332SRichard Smith *Offset = Loc.second; 25978128f332SRichard Smith } 25988128f332SRichard Smith 25992a6edb30SRichard Smith // Notify callbacks that we parsed it. 26002a6edb30SRichard Smith for (const auto &Cb : Callbacks) 26012a6edb30SRichard Smith Cb->moduleMapFileRead(Start, *File, IsSystem); 2602718292f2SDouglas Gregor return Result; 2603718292f2SDouglas Gregor } 2604