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"
223a02247dSChandler Carruth #include "clang/Lex/LexDiagnostic.h"
233a02247dSChandler Carruth #include "clang/Lex/Lexer.h"
243a02247dSChandler Carruth #include "clang/Lex/LiteralSupport.h"
253a02247dSChandler Carruth #include "llvm/ADT/StringRef.h"
263a02247dSChandler Carruth #include "llvm/ADT/StringSwitch.h"
27718292f2SDouglas Gregor #include "llvm/Support/Allocator.h"
28e89dbc1dSDouglas Gregor #include "llvm/Support/FileSystem.h"
29718292f2SDouglas Gregor #include "llvm/Support/Host.h"
30552c169eSRafael Espindola #include "llvm/Support/Path.h"
31718292f2SDouglas Gregor #include "llvm/Support/raw_ostream.h"
3207c22b78SDouglas Gregor #include <stdlib.h>
3301c7cfa2SDouglas Gregor #if defined(LLVM_ON_UNIX)
34eadae014SDmitri Gribenko #include <limits.h>
3501c7cfa2SDouglas Gregor #endif
36718292f2SDouglas Gregor using namespace clang;
37718292f2SDouglas Gregor 
382b82c2a5SDouglas Gregor Module::ExportDecl
392b82c2a5SDouglas Gregor ModuleMap::resolveExport(Module *Mod,
402b82c2a5SDouglas Gregor                          const Module::UnresolvedExportDecl &Unresolved,
41e4412640SArgyrios Kyrtzidis                          bool Complain) const {
42f5eedd05SDouglas Gregor   // We may have just a wildcard.
43f5eedd05SDouglas Gregor   if (Unresolved.Id.empty()) {
44f5eedd05SDouglas Gregor     assert(Unresolved.Wildcard && "Invalid unresolved export");
45f5eedd05SDouglas Gregor     return Module::ExportDecl(0, true);
46f5eedd05SDouglas Gregor   }
47f5eedd05SDouglas Gregor 
48fb912657SDouglas Gregor   // Resolve the module-id.
49fb912657SDouglas Gregor   Module *Context = resolveModuleId(Unresolved.Id, Mod, Complain);
50fb912657SDouglas Gregor   if (!Context)
51fb912657SDouglas Gregor     return Module::ExportDecl();
52fb912657SDouglas Gregor 
53fb912657SDouglas Gregor   return Module::ExportDecl(Context, Unresolved.Wildcard);
54fb912657SDouglas Gregor }
55fb912657SDouglas Gregor 
56fb912657SDouglas Gregor Module *ModuleMap::resolveModuleId(const ModuleId &Id, Module *Mod,
57fb912657SDouglas Gregor                                    bool Complain) const {
582b82c2a5SDouglas Gregor   // Find the starting module.
59fb912657SDouglas Gregor   Module *Context = lookupModuleUnqualified(Id[0].first, Mod);
602b82c2a5SDouglas Gregor   if (!Context) {
612b82c2a5SDouglas Gregor     if (Complain)
620761a8a0SDaniel Jasper       Diags.Report(Id[0].second, diag::err_mmap_missing_module_unqualified)
63fb912657SDouglas Gregor       << Id[0].first << Mod->getFullModuleName();
642b82c2a5SDouglas Gregor 
65fb912657SDouglas Gregor     return 0;
662b82c2a5SDouglas Gregor   }
672b82c2a5SDouglas Gregor 
682b82c2a5SDouglas Gregor   // Dig into the module path.
69fb912657SDouglas Gregor   for (unsigned I = 1, N = Id.size(); I != N; ++I) {
70fb912657SDouglas Gregor     Module *Sub = lookupModuleQualified(Id[I].first, Context);
712b82c2a5SDouglas Gregor     if (!Sub) {
722b82c2a5SDouglas Gregor       if (Complain)
730761a8a0SDaniel Jasper         Diags.Report(Id[I].second, diag::err_mmap_missing_module_qualified)
74fb912657SDouglas Gregor         << Id[I].first << Context->getFullModuleName()
75fb912657SDouglas Gregor         << SourceRange(Id[0].second, Id[I-1].second);
762b82c2a5SDouglas Gregor 
77fb912657SDouglas Gregor       return 0;
782b82c2a5SDouglas Gregor     }
792b82c2a5SDouglas Gregor 
802b82c2a5SDouglas Gregor     Context = Sub;
812b82c2a5SDouglas Gregor   }
822b82c2a5SDouglas Gregor 
83fb912657SDouglas Gregor   return Context;
842b82c2a5SDouglas Gregor }
852b82c2a5SDouglas Gregor 
860761a8a0SDaniel Jasper ModuleMap::ModuleMap(SourceManager &SourceMgr, DiagnosticsEngine &Diags,
87b146baabSArgyrios Kyrtzidis                      const LangOptions &LangOpts, const TargetInfo *Target,
88b146baabSArgyrios Kyrtzidis                      HeaderSearch &HeaderInfo)
890761a8a0SDaniel Jasper     : SourceMgr(SourceMgr), Diags(Diags), LangOpts(LangOpts), Target(Target),
901f76c4e8SManuel Klimek       HeaderInfo(HeaderInfo), BuiltinIncludeDir(0), CompilingModule(0),
910761a8a0SDaniel Jasper       SourceModule(0) {}
92718292f2SDouglas Gregor 
93718292f2SDouglas Gregor ModuleMap::~ModuleMap() {
945acdf59eSDouglas Gregor   for (llvm::StringMap<Module *>::iterator I = Modules.begin(),
955acdf59eSDouglas Gregor                                         IEnd = Modules.end();
965acdf59eSDouglas Gregor        I != IEnd; ++I) {
975acdf59eSDouglas Gregor     delete I->getValue();
985acdf59eSDouglas Gregor   }
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.
14734d52749SDouglas Gregor static bool 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)
15434d52749SDouglas Gregor            .Case("stdbool.h", true)
15534d52749SDouglas Gregor            .Case("stddef.h", true)
15634d52749SDouglas Gregor            .Case("stdint.h", true)
15734d52749SDouglas Gregor            .Case("tgmath.h", true)
15834d52749SDouglas Gregor            .Case("unwind.h", true)
15934d52749SDouglas Gregor            .Default(false);
16034d52749SDouglas Gregor }
16134d52749SDouglas Gregor 
16292669ee4SDaniel Jasper ModuleMap::HeadersMap::iterator
16392669ee4SDaniel Jasper ModuleMap::findKnownHeader(const FileEntry *File) {
16459527666SDouglas Gregor   HeadersMap::iterator Known = Headers.find(File);
1654eaf0a6cSDaniel Jasper   if (Known == Headers.end() && File->getDir() == BuiltinIncludeDir &&
1664eaf0a6cSDaniel Jasper       isBuiltinHeader(llvm::sys::path::filename(File->getName()))) {
1674eaf0a6cSDaniel Jasper     HeaderInfo.loadTopLevelSystemModules();
16892669ee4SDaniel Jasper     return Headers.find(File);
1694eaf0a6cSDaniel Jasper   }
17092669ee4SDaniel Jasper   return Known;
17192669ee4SDaniel Jasper }
17292669ee4SDaniel Jasper 
1734469138eSBen Langmuir ModuleMap::KnownHeader
1744469138eSBen Langmuir ModuleMap::findHeaderInUmbrellaDirs(const FileEntry *File,
1754469138eSBen Langmuir                     SmallVectorImpl<const DirectoryEntry *> &IntermediateDirs) {
1764469138eSBen Langmuir   const DirectoryEntry *Dir = File->getDir();
1774469138eSBen Langmuir   assert(Dir && "file in no directory");
1784469138eSBen Langmuir 
1794469138eSBen Langmuir   // Note: as an egregious but useful hack we use the real path here, because
1804469138eSBen Langmuir   // frameworks moving from top-level frameworks to embedded frameworks tend
1814469138eSBen Langmuir   // to be symlinked from the top-level location to the embedded location,
1824469138eSBen Langmuir   // and we need to resolve lookups as if we had found the embedded location.
1834469138eSBen Langmuir   StringRef DirName = SourceMgr.getFileManager().getCanonicalName(Dir);
1844469138eSBen Langmuir 
1854469138eSBen Langmuir   // Keep walking up the directory hierarchy, looking for a directory with
1864469138eSBen Langmuir   // an umbrella header.
1874469138eSBen Langmuir   do {
1884469138eSBen Langmuir     auto KnownDir = UmbrellaDirs.find(Dir);
1894469138eSBen Langmuir     if (KnownDir != UmbrellaDirs.end())
1904469138eSBen Langmuir       return KnownHeader(KnownDir->second, NormalHeader);
1914469138eSBen Langmuir 
1924469138eSBen Langmuir     IntermediateDirs.push_back(Dir);
1934469138eSBen Langmuir 
1944469138eSBen Langmuir     // Retrieve our parent path.
1954469138eSBen Langmuir     DirName = llvm::sys::path::parent_path(DirName);
1964469138eSBen Langmuir     if (DirName.empty())
1974469138eSBen Langmuir       break;
1984469138eSBen Langmuir 
1994469138eSBen Langmuir     // Resolve the parent path to a directory entry.
2004469138eSBen Langmuir     Dir = SourceMgr.getFileManager().getDirectory(DirName);
2014469138eSBen Langmuir   } while (Dir);
2024469138eSBen Langmuir   return KnownHeader();
2034469138eSBen Langmuir }
2044469138eSBen Langmuir 
20592669ee4SDaniel Jasper // Returns 'true' if 'RequestingModule directly uses 'RequestedModule'.
20692669ee4SDaniel Jasper static bool directlyUses(const Module *RequestingModule,
20792669ee4SDaniel Jasper                          const Module *RequestedModule) {
20892669ee4SDaniel Jasper   return std::find(RequestingModule->DirectUses.begin(),
20992669ee4SDaniel Jasper                    RequestingModule->DirectUses.end(),
21092669ee4SDaniel Jasper                    RequestedModule) != RequestingModule->DirectUses.end();
21192669ee4SDaniel Jasper }
21292669ee4SDaniel Jasper 
21392669ee4SDaniel Jasper static bool violatesPrivateInclude(Module *RequestingModule,
21492669ee4SDaniel Jasper                                    const FileEntry *IncFileEnt,
21592669ee4SDaniel Jasper                                    ModuleMap::ModuleHeaderRole Role,
21692669ee4SDaniel Jasper                                    Module *RequestedModule) {
21792669ee4SDaniel Jasper   #ifndef NDEBUG
21892669ee4SDaniel Jasper   // Check for consistency between the module header role
21992669ee4SDaniel Jasper   // as obtained from the lookup and as obtained from the module.
22092669ee4SDaniel Jasper   // This check is not cheap, so enable it only for debugging.
22192669ee4SDaniel Jasper   SmallVectorImpl<const FileEntry *> &PvtHdrs
22292669ee4SDaniel Jasper       = RequestedModule->PrivateHeaders;
22392669ee4SDaniel Jasper   SmallVectorImpl<const FileEntry *>::iterator Look
22492669ee4SDaniel Jasper       = std::find(PvtHdrs.begin(), PvtHdrs.end(), IncFileEnt);
22592669ee4SDaniel Jasper   bool IsPrivate = Look != PvtHdrs.end();
22692669ee4SDaniel Jasper   assert((IsPrivate && Role == ModuleMap::PrivateHeader)
22792669ee4SDaniel Jasper                || (!IsPrivate && Role != ModuleMap::PrivateHeader));
22892669ee4SDaniel Jasper   #endif
22992669ee4SDaniel Jasper   return Role == ModuleMap::PrivateHeader &&
23092669ee4SDaniel Jasper          RequestedModule->getTopLevelModule() != RequestingModule;
23192669ee4SDaniel Jasper }
23292669ee4SDaniel Jasper 
23392669ee4SDaniel Jasper void ModuleMap::diagnoseHeaderInclusion(Module *RequestingModule,
23492669ee4SDaniel Jasper                                         SourceLocation FilenameLoc,
23592669ee4SDaniel Jasper                                         StringRef Filename,
23692669ee4SDaniel Jasper                                         const FileEntry *File) {
23792669ee4SDaniel Jasper   // No errors for indirect modules. This may be a bit of a problem for modules
23892669ee4SDaniel Jasper   // with no source files.
23992669ee4SDaniel Jasper   if (RequestingModule != SourceModule)
24092669ee4SDaniel Jasper     return;
24192669ee4SDaniel Jasper 
24292669ee4SDaniel Jasper   if (RequestingModule)
24392669ee4SDaniel Jasper     resolveUses(RequestingModule, /*Complain=*/false);
24492669ee4SDaniel Jasper 
24592669ee4SDaniel Jasper   HeadersMap::iterator Known = findKnownHeader(File);
246962b38e4SDaniel Jasper   if (Known == Headers.end()) {
247962b38e4SDaniel Jasper     if (LangOpts.ModulesStrictDeclUse)
248962b38e4SDaniel Jasper       Diags.Report(FilenameLoc, diag::error_undeclared_use_of_module)
249962b38e4SDaniel Jasper           << RequestingModule->getFullModuleName() << Filename;
25092669ee4SDaniel Jasper     return;
251962b38e4SDaniel Jasper   }
25292669ee4SDaniel Jasper 
25392669ee4SDaniel Jasper   Module *Private = NULL;
25492669ee4SDaniel Jasper   Module *NotUsed = NULL;
25592669ee4SDaniel Jasper   for (SmallVectorImpl<KnownHeader>::iterator I = Known->second.begin(),
25692669ee4SDaniel Jasper                                               E = Known->second.end();
25792669ee4SDaniel Jasper        I != E; ++I) {
25892669ee4SDaniel Jasper     // Excluded headers don't really belong to a module.
25992669ee4SDaniel Jasper     if (I->getRole() == ModuleMap::ExcludedHeader)
26092669ee4SDaniel Jasper       continue;
26192669ee4SDaniel Jasper 
26292669ee4SDaniel Jasper     // If 'File' is part of 'RequestingModule' we can definitely include it.
26392669ee4SDaniel Jasper     if (I->getModule() == RequestingModule)
26492669ee4SDaniel Jasper       return;
26592669ee4SDaniel Jasper 
26692669ee4SDaniel Jasper     // Remember private headers for later printing of a diagnostic.
26792669ee4SDaniel Jasper     if (violatesPrivateInclude(RequestingModule, File, I->getRole(),
26892669ee4SDaniel Jasper                                I->getModule())) {
26992669ee4SDaniel Jasper       Private = I->getModule();
27092669ee4SDaniel Jasper       continue;
27192669ee4SDaniel Jasper     }
27292669ee4SDaniel Jasper 
27392669ee4SDaniel Jasper     // If uses need to be specified explicitly, we are only allowed to return
27492669ee4SDaniel Jasper     // modules that are explicitly used by the requesting module.
27592669ee4SDaniel Jasper     if (RequestingModule && LangOpts.ModulesDeclUse &&
27692669ee4SDaniel Jasper         !directlyUses(RequestingModule, I->getModule())) {
27792669ee4SDaniel Jasper       NotUsed = I->getModule();
27892669ee4SDaniel Jasper       continue;
27992669ee4SDaniel Jasper     }
28092669ee4SDaniel Jasper 
28192669ee4SDaniel Jasper     // We have found a module that we can happily use.
28292669ee4SDaniel Jasper     return;
28392669ee4SDaniel Jasper   }
28492669ee4SDaniel Jasper 
28592669ee4SDaniel Jasper   // We have found a header, but it is private.
28692669ee4SDaniel Jasper   if (Private != NULL) {
28792669ee4SDaniel Jasper     Diags.Report(FilenameLoc, diag::error_use_of_private_header_outside_module)
28892669ee4SDaniel Jasper         << Filename;
28992669ee4SDaniel Jasper     return;
29092669ee4SDaniel Jasper   }
29192669ee4SDaniel Jasper 
29292669ee4SDaniel Jasper   // We have found a module, but we don't use it.
29392669ee4SDaniel Jasper   if (NotUsed != NULL) {
29492669ee4SDaniel Jasper     Diags.Report(FilenameLoc, diag::error_undeclared_use_of_module)
29592669ee4SDaniel Jasper         << RequestingModule->getFullModuleName() << Filename;
29692669ee4SDaniel Jasper     return;
29792669ee4SDaniel Jasper   }
29892669ee4SDaniel Jasper 
29992669ee4SDaniel Jasper   // Headers for which we have not found a module are fine to include.
30092669ee4SDaniel Jasper }
30192669ee4SDaniel Jasper 
30292669ee4SDaniel Jasper ModuleMap::KnownHeader
30392669ee4SDaniel Jasper ModuleMap::findModuleForHeader(const FileEntry *File,
30492669ee4SDaniel Jasper                                Module *RequestingModule) {
30592669ee4SDaniel Jasper   HeadersMap::iterator Known = findKnownHeader(File);
3064eaf0a6cSDaniel Jasper 
3071fb5c3a6SDouglas Gregor   if (Known != Headers.end()) {
30897da9178SDaniel Jasper     ModuleMap::KnownHeader Result = KnownHeader();
3091fb5c3a6SDouglas Gregor 
31097da9178SDaniel Jasper     // Iterate over all modules that 'File' is part of to find the best fit.
31197da9178SDaniel Jasper     for (SmallVectorImpl<KnownHeader>::iterator I = Known->second.begin(),
31297da9178SDaniel Jasper                                                 E = Known->second.end();
31397da9178SDaniel Jasper          I != E; ++I) {
3144eaf0a6cSDaniel Jasper       // Cannot use a module if the header is excluded in it.
3154eaf0a6cSDaniel Jasper       if (I->getRole() == ModuleMap::ExcludedHeader)
3164eaf0a6cSDaniel Jasper         continue;
3174eaf0a6cSDaniel Jasper 
3184eaf0a6cSDaniel Jasper       // Cannot use a module if it is unavailable.
3194eaf0a6cSDaniel Jasper       if (!I->getModule()->isAvailable())
32097da9178SDaniel Jasper         continue;
32197da9178SDaniel Jasper 
32297da9178SDaniel Jasper       // If 'File' is part of 'RequestingModule', 'RequestingModule' is the
32397da9178SDaniel Jasper       // module we are looking for.
32497da9178SDaniel Jasper       if (I->getModule() == RequestingModule)
32597da9178SDaniel Jasper         return *I;
32697da9178SDaniel Jasper 
32797da9178SDaniel Jasper       // If uses need to be specified explicitly, we are only allowed to return
32897da9178SDaniel Jasper       // modules that are explicitly used by the requesting module.
32997da9178SDaniel Jasper       if (RequestingModule && LangOpts.ModulesDeclUse &&
33092669ee4SDaniel Jasper           !directlyUses(RequestingModule, I->getModule()))
33197da9178SDaniel Jasper         continue;
3324eaf0a6cSDaniel Jasper 
33397da9178SDaniel Jasper       Result = *I;
33497da9178SDaniel Jasper       // If 'File' is a public header of this module, this is as good as we
33597da9178SDaniel Jasper       // are going to get.
3368c71eba1SRichard Smith       // FIXME: If we have a RequestingModule, we should prefer the header from
3378c71eba1SRichard Smith       // that module.
33897da9178SDaniel Jasper       if (I->getRole() == ModuleMap::NormalHeader)
33997da9178SDaniel Jasper         break;
34097da9178SDaniel Jasper     }
34197da9178SDaniel Jasper     return Result;
3421fb5c3a6SDouglas Gregor   }
343ab0c8a84SDouglas Gregor 
344f857950dSDmitri Gribenko   SmallVector<const DirectoryEntry *, 2> SkippedDirs;
3454469138eSBen Langmuir   KnownHeader H = findHeaderInUmbrellaDirs(File, SkippedDirs);
3464469138eSBen Langmuir   if (H) {
3474469138eSBen Langmuir     Module *Result = H.getModule();
348930a85ccSDouglas Gregor 
349930a85ccSDouglas Gregor     // Search up the module stack until we find a module with an umbrella
35073141fa9SDouglas Gregor     // directory.
351930a85ccSDouglas Gregor     Module *UmbrellaModule = Result;
35273141fa9SDouglas Gregor     while (!UmbrellaModule->getUmbrellaDir() && UmbrellaModule->Parent)
353930a85ccSDouglas Gregor       UmbrellaModule = UmbrellaModule->Parent;
354930a85ccSDouglas Gregor 
355930a85ccSDouglas Gregor     if (UmbrellaModule->InferSubmodules) {
356a89c5ac4SDouglas Gregor       // Infer submodules for each of the directories we found between
357a89c5ac4SDouglas Gregor       // the directory of the umbrella header and the directory where
358a89c5ac4SDouglas Gregor       // the actual header is located.
3599458f82dSDouglas Gregor       bool Explicit = UmbrellaModule->InferExplicitSubmodules;
3609458f82dSDouglas Gregor 
3617033127bSDouglas Gregor       for (unsigned I = SkippedDirs.size(); I != 0; --I) {
362a89c5ac4SDouglas Gregor         // Find or create the module that corresponds to this directory name.
363056396aeSDouglas Gregor         SmallString<32> NameBuf;
364056396aeSDouglas Gregor         StringRef Name = sanitizeFilenameAsIdentifier(
3654469138eSBen Langmuir             llvm::sys::path::stem(SkippedDirs[I-1]->getName()), NameBuf);
366beee15e7SBen Langmuir         Result = findOrCreateModule(Name, Result, UmbrellaModule->ModuleMap,
367beee15e7SBen Langmuir                                     /*IsFramework=*/false, Explicit).first;
368*ffbafa2aSBen Langmuir         Result->IsInferred = true;
369a89c5ac4SDouglas Gregor 
370a89c5ac4SDouglas Gregor         // Associate the module and the directory.
371a89c5ac4SDouglas Gregor         UmbrellaDirs[SkippedDirs[I-1]] = Result;
372a89c5ac4SDouglas Gregor 
373a89c5ac4SDouglas Gregor         // If inferred submodules export everything they import, add a
374a89c5ac4SDouglas Gregor         // wildcard to the set of exports.
375930a85ccSDouglas Gregor         if (UmbrellaModule->InferExportWildcard && Result->Exports.empty())
376a89c5ac4SDouglas Gregor           Result->Exports.push_back(Module::ExportDecl(0, true));
377a89c5ac4SDouglas Gregor       }
378a89c5ac4SDouglas Gregor 
379a89c5ac4SDouglas Gregor       // Infer a submodule with the same name as this header file.
380056396aeSDouglas Gregor       SmallString<32> NameBuf;
381056396aeSDouglas Gregor       StringRef Name = sanitizeFilenameAsIdentifier(
382056396aeSDouglas Gregor                          llvm::sys::path::stem(File->getName()), NameBuf);
383beee15e7SBen Langmuir       Result = findOrCreateModule(Name, Result, UmbrellaModule->ModuleMap,
384beee15e7SBen Langmuir                                   /*IsFramework=*/false, Explicit).first;
385*ffbafa2aSBen Langmuir       Result->IsInferred = true;
3863c5305c1SArgyrios Kyrtzidis       Result->addTopHeader(File);
387a89c5ac4SDouglas Gregor 
388a89c5ac4SDouglas Gregor       // If inferred submodules export everything they import, add a
389a89c5ac4SDouglas Gregor       // wildcard to the set of exports.
390930a85ccSDouglas Gregor       if (UmbrellaModule->InferExportWildcard && Result->Exports.empty())
391a89c5ac4SDouglas Gregor         Result->Exports.push_back(Module::ExportDecl(0, true));
392a89c5ac4SDouglas Gregor     } else {
393a89c5ac4SDouglas Gregor       // Record each of the directories we stepped through as being part of
394a89c5ac4SDouglas Gregor       // the module we found, since the umbrella header covers them all.
395a89c5ac4SDouglas Gregor       for (unsigned I = 0, N = SkippedDirs.size(); I != N; ++I)
396a89c5ac4SDouglas Gregor         UmbrellaDirs[SkippedDirs[I]] = Result;
397a89c5ac4SDouglas Gregor     }
398a89c5ac4SDouglas Gregor 
39997da9178SDaniel Jasper     Headers[File].push_back(KnownHeader(Result, NormalHeader));
4001fb5c3a6SDouglas Gregor 
4011fb5c3a6SDouglas Gregor     // If a header corresponds to an unavailable module, don't report
4021fb5c3a6SDouglas Gregor     // that it maps to anything.
4031fb5c3a6SDouglas Gregor     if (!Result->isAvailable())
404b53e5483SLawrence Crowl       return KnownHeader();
4051fb5c3a6SDouglas Gregor 
40697da9178SDaniel Jasper     return Headers[File].back();
407a89c5ac4SDouglas Gregor   }
408a89c5ac4SDouglas Gregor 
409b53e5483SLawrence Crowl   return KnownHeader();
410ab0c8a84SDouglas Gregor }
411ab0c8a84SDouglas Gregor 
412e4412640SArgyrios Kyrtzidis bool ModuleMap::isHeaderInUnavailableModule(const FileEntry *Header) const {
41350996ce1SRichard Smith   return isHeaderUnavailableInModule(Header, 0);
41450996ce1SRichard Smith }
41550996ce1SRichard Smith 
41662bcd925SDmitri Gribenko bool
41762bcd925SDmitri Gribenko ModuleMap::isHeaderUnavailableInModule(const FileEntry *Header,
41862bcd925SDmitri Gribenko                                        const Module *RequestingModule) const {
419e4412640SArgyrios Kyrtzidis   HeadersMap::const_iterator Known = Headers.find(Header);
42097da9178SDaniel Jasper   if (Known != Headers.end()) {
42197da9178SDaniel Jasper     for (SmallVectorImpl<KnownHeader>::const_iterator
42297da9178SDaniel Jasper              I = Known->second.begin(),
42397da9178SDaniel Jasper              E = Known->second.end();
42497da9178SDaniel Jasper          I != E; ++I) {
42550996ce1SRichard Smith       if (I->isAvailable() && (!RequestingModule ||
42650996ce1SRichard Smith                                I->getModule()->isSubModuleOf(RequestingModule)))
42797da9178SDaniel Jasper         return false;
42897da9178SDaniel Jasper     }
42997da9178SDaniel Jasper     return true;
43097da9178SDaniel Jasper   }
4311fb5c3a6SDouglas Gregor 
4321fb5c3a6SDouglas Gregor   const DirectoryEntry *Dir = Header->getDir();
433f857950dSDmitri Gribenko   SmallVector<const DirectoryEntry *, 2> SkippedDirs;
4341fb5c3a6SDouglas Gregor   StringRef DirName = Dir->getName();
4351fb5c3a6SDouglas Gregor 
43650996ce1SRichard Smith   auto IsUnavailable = [&](const Module *M) {
43750996ce1SRichard Smith     return !M->isAvailable() && (!RequestingModule ||
43850996ce1SRichard Smith                                  M->isSubModuleOf(RequestingModule));
43950996ce1SRichard Smith   };
44050996ce1SRichard Smith 
4411fb5c3a6SDouglas Gregor   // Keep walking up the directory hierarchy, looking for a directory with
4421fb5c3a6SDouglas Gregor   // an umbrella header.
4431fb5c3a6SDouglas Gregor   do {
444e4412640SArgyrios Kyrtzidis     llvm::DenseMap<const DirectoryEntry *, Module *>::const_iterator KnownDir
4451fb5c3a6SDouglas Gregor       = UmbrellaDirs.find(Dir);
4461fb5c3a6SDouglas Gregor     if (KnownDir != UmbrellaDirs.end()) {
4471fb5c3a6SDouglas Gregor       Module *Found = KnownDir->second;
44850996ce1SRichard Smith       if (IsUnavailable(Found))
4491fb5c3a6SDouglas Gregor         return true;
4501fb5c3a6SDouglas Gregor 
4511fb5c3a6SDouglas Gregor       // Search up the module stack until we find a module with an umbrella
4521fb5c3a6SDouglas Gregor       // directory.
4531fb5c3a6SDouglas Gregor       Module *UmbrellaModule = Found;
4541fb5c3a6SDouglas Gregor       while (!UmbrellaModule->getUmbrellaDir() && UmbrellaModule->Parent)
4551fb5c3a6SDouglas Gregor         UmbrellaModule = UmbrellaModule->Parent;
4561fb5c3a6SDouglas Gregor 
4571fb5c3a6SDouglas Gregor       if (UmbrellaModule->InferSubmodules) {
4581fb5c3a6SDouglas Gregor         for (unsigned I = SkippedDirs.size(); I != 0; --I) {
4591fb5c3a6SDouglas Gregor           // Find or create the module that corresponds to this directory name.
460056396aeSDouglas Gregor           SmallString<32> NameBuf;
461056396aeSDouglas Gregor           StringRef Name = sanitizeFilenameAsIdentifier(
462056396aeSDouglas Gregor                              llvm::sys::path::stem(SkippedDirs[I-1]->getName()),
463056396aeSDouglas Gregor                              NameBuf);
4641fb5c3a6SDouglas Gregor           Found = lookupModuleQualified(Name, Found);
4651fb5c3a6SDouglas Gregor           if (!Found)
4661fb5c3a6SDouglas Gregor             return false;
46750996ce1SRichard Smith           if (IsUnavailable(Found))
4681fb5c3a6SDouglas Gregor             return true;
4691fb5c3a6SDouglas Gregor         }
4701fb5c3a6SDouglas Gregor 
4711fb5c3a6SDouglas Gregor         // Infer a submodule with the same name as this header file.
472056396aeSDouglas Gregor         SmallString<32> NameBuf;
473056396aeSDouglas Gregor         StringRef Name = sanitizeFilenameAsIdentifier(
474056396aeSDouglas Gregor                            llvm::sys::path::stem(Header->getName()),
475056396aeSDouglas Gregor                            NameBuf);
4761fb5c3a6SDouglas Gregor         Found = lookupModuleQualified(Name, Found);
4771fb5c3a6SDouglas Gregor         if (!Found)
4781fb5c3a6SDouglas Gregor           return false;
4791fb5c3a6SDouglas Gregor       }
4801fb5c3a6SDouglas Gregor 
48150996ce1SRichard Smith       return IsUnavailable(Found);
4821fb5c3a6SDouglas Gregor     }
4831fb5c3a6SDouglas Gregor 
4841fb5c3a6SDouglas Gregor     SkippedDirs.push_back(Dir);
4851fb5c3a6SDouglas Gregor 
4861fb5c3a6SDouglas Gregor     // Retrieve our parent path.
4871fb5c3a6SDouglas Gregor     DirName = llvm::sys::path::parent_path(DirName);
4881fb5c3a6SDouglas Gregor     if (DirName.empty())
4891fb5c3a6SDouglas Gregor       break;
4901fb5c3a6SDouglas Gregor 
4911fb5c3a6SDouglas Gregor     // Resolve the parent path to a directory entry.
4921f76c4e8SManuel Klimek     Dir = SourceMgr.getFileManager().getDirectory(DirName);
4931fb5c3a6SDouglas Gregor   } while (Dir);
4941fb5c3a6SDouglas Gregor 
4951fb5c3a6SDouglas Gregor   return false;
4961fb5c3a6SDouglas Gregor }
4971fb5c3a6SDouglas Gregor 
498e4412640SArgyrios Kyrtzidis Module *ModuleMap::findModule(StringRef Name) const {
499e4412640SArgyrios Kyrtzidis   llvm::StringMap<Module *>::const_iterator Known = Modules.find(Name);
50088bdfb0eSDouglas Gregor   if (Known != Modules.end())
50188bdfb0eSDouglas Gregor     return Known->getValue();
50288bdfb0eSDouglas Gregor 
50388bdfb0eSDouglas Gregor   return 0;
50488bdfb0eSDouglas Gregor }
50588bdfb0eSDouglas Gregor 
506e4412640SArgyrios Kyrtzidis Module *ModuleMap::lookupModuleUnqualified(StringRef Name,
507e4412640SArgyrios Kyrtzidis                                            Module *Context) const {
5082b82c2a5SDouglas Gregor   for(; Context; Context = Context->Parent) {
5092b82c2a5SDouglas Gregor     if (Module *Sub = lookupModuleQualified(Name, Context))
5102b82c2a5SDouglas Gregor       return Sub;
5112b82c2a5SDouglas Gregor   }
5122b82c2a5SDouglas Gregor 
5132b82c2a5SDouglas Gregor   return findModule(Name);
5142b82c2a5SDouglas Gregor }
5152b82c2a5SDouglas Gregor 
516e4412640SArgyrios Kyrtzidis Module *ModuleMap::lookupModuleQualified(StringRef Name, Module *Context) const{
5172b82c2a5SDouglas Gregor   if (!Context)
5182b82c2a5SDouglas Gregor     return findModule(Name);
5192b82c2a5SDouglas Gregor 
520eb90e830SDouglas Gregor   return Context->findSubmodule(Name);
5212b82c2a5SDouglas Gregor }
5222b82c2a5SDouglas Gregor 
523de3ef502SDouglas Gregor std::pair<Module *, bool>
524beee15e7SBen Langmuir ModuleMap::findOrCreateModule(StringRef Name, Module *Parent,
525beee15e7SBen Langmuir                               const FileEntry *ModuleMap, bool IsFramework,
52669021974SDouglas Gregor                               bool IsExplicit) {
52769021974SDouglas Gregor   // Try to find an existing module with this name.
528eb90e830SDouglas Gregor   if (Module *Sub = lookupModuleQualified(Name, Parent))
529eb90e830SDouglas Gregor     return std::make_pair(Sub, false);
53069021974SDouglas Gregor 
53169021974SDouglas Gregor   // Create a new module with this name.
532beee15e7SBen Langmuir   Module *Result = new Module(Name, SourceLocation(), Parent, ModuleMap,
533beee15e7SBen Langmuir                               IsFramework, IsExplicit);
534ba7f2f71SDaniel Jasper   if (LangOpts.CurrentModule == Name) {
535ba7f2f71SDaniel Jasper     SourceModule = Result;
536ba7f2f71SDaniel Jasper     SourceModuleName = Name;
537ba7f2f71SDaniel Jasper   }
5386f722b4eSArgyrios Kyrtzidis   if (!Parent) {
53969021974SDouglas Gregor     Modules[Name] = Result;
5406f722b4eSArgyrios Kyrtzidis     if (!LangOpts.CurrentModule.empty() && !CompilingModule &&
5416f722b4eSArgyrios Kyrtzidis         Name == LangOpts.CurrentModule) {
5426f722b4eSArgyrios Kyrtzidis       CompilingModule = Result;
5436f722b4eSArgyrios Kyrtzidis     }
5446f722b4eSArgyrios Kyrtzidis   }
54569021974SDouglas Gregor   return std::make_pair(Result, true);
54669021974SDouglas Gregor }
54769021974SDouglas Gregor 
5489194a91dSDouglas Gregor bool ModuleMap::canInferFrameworkModule(const DirectoryEntry *ParentDir,
549e4412640SArgyrios Kyrtzidis                                         StringRef Name, bool &IsSystem) const {
5509194a91dSDouglas Gregor   // Check whether we have already looked into the parent directory
5519194a91dSDouglas Gregor   // for a module map.
552e4412640SArgyrios Kyrtzidis   llvm::DenseMap<const DirectoryEntry *, InferredDirectory>::const_iterator
5539194a91dSDouglas Gregor     inferred = InferredDirectories.find(ParentDir);
5549194a91dSDouglas Gregor   if (inferred == InferredDirectories.end())
5559194a91dSDouglas Gregor     return false;
5569194a91dSDouglas Gregor 
5579194a91dSDouglas Gregor   if (!inferred->second.InferModules)
5589194a91dSDouglas Gregor     return false;
5599194a91dSDouglas Gregor 
5609194a91dSDouglas Gregor   // We're allowed to infer for this directory, but make sure it's okay
5619194a91dSDouglas Gregor   // to infer this particular module.
5629194a91dSDouglas Gregor   bool canInfer = std::find(inferred->second.ExcludedModules.begin(),
5639194a91dSDouglas Gregor                             inferred->second.ExcludedModules.end(),
5649194a91dSDouglas Gregor                             Name) == inferred->second.ExcludedModules.end();
5659194a91dSDouglas Gregor 
5669194a91dSDouglas Gregor   if (canInfer && inferred->second.InferSystemModules)
5679194a91dSDouglas Gregor     IsSystem = true;
5689194a91dSDouglas Gregor 
5699194a91dSDouglas Gregor   return canInfer;
5709194a91dSDouglas Gregor }
5719194a91dSDouglas Gregor 
57211dfe6feSDouglas Gregor /// \brief For a framework module, infer the framework against which we
57311dfe6feSDouglas Gregor /// should link.
57411dfe6feSDouglas Gregor static void inferFrameworkLink(Module *Mod, const DirectoryEntry *FrameworkDir,
57511dfe6feSDouglas Gregor                                FileManager &FileMgr) {
57611dfe6feSDouglas Gregor   assert(Mod->IsFramework && "Can only infer linking for framework modules");
57711dfe6feSDouglas Gregor   assert(!Mod->isSubFramework() &&
57811dfe6feSDouglas Gregor          "Can only infer linking for top-level frameworks");
57911dfe6feSDouglas Gregor 
58011dfe6feSDouglas Gregor   SmallString<128> LibName;
58111dfe6feSDouglas Gregor   LibName += FrameworkDir->getName();
58211dfe6feSDouglas Gregor   llvm::sys::path::append(LibName, Mod->Name);
58311dfe6feSDouglas Gregor   if (FileMgr.getFile(LibName)) {
58411dfe6feSDouglas Gregor     Mod->LinkLibraries.push_back(Module::LinkLibrary(Mod->Name,
58511dfe6feSDouglas Gregor                                                      /*IsFramework=*/true));
58611dfe6feSDouglas Gregor   }
58711dfe6feSDouglas Gregor }
58811dfe6feSDouglas Gregor 
589de3ef502SDouglas Gregor Module *
59056c64013SDouglas Gregor ModuleMap::inferFrameworkModule(StringRef ModuleName,
591e89dbc1dSDouglas Gregor                                 const DirectoryEntry *FrameworkDir,
592a686e1b0SDouglas Gregor                                 bool IsSystem,
593e89dbc1dSDouglas Gregor                                 Module *Parent) {
59456c64013SDouglas Gregor   // Check whether we've already found this module.
595e89dbc1dSDouglas Gregor   if (Module *Mod = lookupModuleQualified(ModuleName, Parent))
596e89dbc1dSDouglas Gregor     return Mod;
597e89dbc1dSDouglas Gregor 
5981f76c4e8SManuel Klimek   FileManager &FileMgr = SourceMgr.getFileManager();
59956c64013SDouglas Gregor 
6009194a91dSDouglas Gregor   // If the framework has a parent path from which we're allowed to infer
6019194a91dSDouglas Gregor   // a framework module, do so.
602beee15e7SBen Langmuir   const FileEntry *ModuleMapFile = nullptr;
6039194a91dSDouglas Gregor   if (!Parent) {
6044ddf2221SDouglas Gregor     // Determine whether we're allowed to infer a module map.
605e00c8b20SDouglas Gregor 
6064ddf2221SDouglas Gregor     // Note: as an egregious but useful hack we use the real path here, because
6074ddf2221SDouglas Gregor     // we might be looking at an embedded framework that symlinks out to a
6084ddf2221SDouglas Gregor     // top-level framework, and we need to infer as if we were naming the
6094ddf2221SDouglas Gregor     // top-level framework.
610e00c8b20SDouglas Gregor     StringRef FrameworkDirName
6111f76c4e8SManuel Klimek       = SourceMgr.getFileManager().getCanonicalName(FrameworkDir);
6124ddf2221SDouglas Gregor 
6139194a91dSDouglas Gregor     bool canInfer = false;
6144ddf2221SDouglas Gregor     if (llvm::sys::path::has_parent_path(FrameworkDirName)) {
6159194a91dSDouglas Gregor       // Figure out the parent path.
6164ddf2221SDouglas Gregor       StringRef Parent = llvm::sys::path::parent_path(FrameworkDirName);
6179194a91dSDouglas Gregor       if (const DirectoryEntry *ParentDir = FileMgr.getDirectory(Parent)) {
6189194a91dSDouglas Gregor         // Check whether we have already looked into the parent directory
6199194a91dSDouglas Gregor         // for a module map.
620e4412640SArgyrios Kyrtzidis         llvm::DenseMap<const DirectoryEntry *, InferredDirectory>::const_iterator
6219194a91dSDouglas Gregor           inferred = InferredDirectories.find(ParentDir);
6229194a91dSDouglas Gregor         if (inferred == InferredDirectories.end()) {
6239194a91dSDouglas Gregor           // We haven't looked here before. Load a module map, if there is
6249194a91dSDouglas Gregor           // one.
625984e1df7SBen Langmuir           bool IsFrameworkDir = Parent.endswith(".framework");
626984e1df7SBen Langmuir           if (const FileEntry *ModMapFile =
627984e1df7SBen Langmuir                 HeaderInfo.lookupModuleMapFile(ParentDir, IsFrameworkDir)) {
628963c5535SDouglas Gregor             parseModuleMapFile(ModMapFile, IsSystem);
6299194a91dSDouglas Gregor             inferred = InferredDirectories.find(ParentDir);
6309194a91dSDouglas Gregor           }
6319194a91dSDouglas Gregor 
6329194a91dSDouglas Gregor           if (inferred == InferredDirectories.end())
6339194a91dSDouglas Gregor             inferred = InferredDirectories.insert(
6349194a91dSDouglas Gregor                          std::make_pair(ParentDir, InferredDirectory())).first;
6359194a91dSDouglas Gregor         }
6369194a91dSDouglas Gregor 
6379194a91dSDouglas Gregor         if (inferred->second.InferModules) {
6389194a91dSDouglas Gregor           // We're allowed to infer for this directory, but make sure it's okay
6399194a91dSDouglas Gregor           // to infer this particular module.
6404ddf2221SDouglas Gregor           StringRef Name = llvm::sys::path::stem(FrameworkDirName);
6419194a91dSDouglas Gregor           canInfer = std::find(inferred->second.ExcludedModules.begin(),
6429194a91dSDouglas Gregor                                inferred->second.ExcludedModules.end(),
6439194a91dSDouglas Gregor                                Name) == inferred->second.ExcludedModules.end();
6449194a91dSDouglas Gregor 
6459194a91dSDouglas Gregor           if (inferred->second.InferSystemModules)
6469194a91dSDouglas Gregor             IsSystem = true;
647beee15e7SBen Langmuir           ModuleMapFile = inferred->second.ModuleMapFile;
6489194a91dSDouglas Gregor         }
6499194a91dSDouglas Gregor       }
6509194a91dSDouglas Gregor     }
6519194a91dSDouglas Gregor 
6529194a91dSDouglas Gregor     // If we're not allowed to infer a framework module, don't.
6539194a91dSDouglas Gregor     if (!canInfer)
6549194a91dSDouglas Gregor       return 0;
655beee15e7SBen Langmuir   } else
656beee15e7SBen Langmuir     ModuleMapFile = Parent->ModuleMap;
6579194a91dSDouglas Gregor 
6589194a91dSDouglas Gregor 
65956c64013SDouglas Gregor   // Look for an umbrella header.
6602c1dd271SDylan Noblesmith   SmallString<128> UmbrellaName = StringRef(FrameworkDir->getName());
66117381a06SBenjamin Kramer   llvm::sys::path::append(UmbrellaName, "Headers", ModuleName + ".h");
662e89dbc1dSDouglas Gregor   const FileEntry *UmbrellaHeader = FileMgr.getFile(UmbrellaName);
66356c64013SDouglas Gregor 
66456c64013SDouglas Gregor   // FIXME: If there's no umbrella header, we could probably scan the
66556c64013SDouglas Gregor   // framework to load *everything*. But, it's not clear that this is a good
66656c64013SDouglas Gregor   // idea.
66756c64013SDouglas Gregor   if (!UmbrellaHeader)
66856c64013SDouglas Gregor     return 0;
66956c64013SDouglas Gregor 
670beee15e7SBen Langmuir   Module *Result = new Module(ModuleName, SourceLocation(), Parent, ModuleMapFile,
671e89dbc1dSDouglas Gregor                               /*IsFramework=*/true, /*IsExplicit=*/false);
672ba7f2f71SDaniel Jasper   if (LangOpts.CurrentModule == ModuleName) {
673ba7f2f71SDaniel Jasper     SourceModule = Result;
674ba7f2f71SDaniel Jasper     SourceModuleName = ModuleName;
675ba7f2f71SDaniel Jasper   }
676a686e1b0SDouglas Gregor   if (IsSystem)
677a686e1b0SDouglas Gregor     Result->IsSystem = IsSystem;
678a686e1b0SDouglas Gregor 
679eb90e830SDouglas Gregor   if (!Parent)
680e89dbc1dSDouglas Gregor     Modules[ModuleName] = Result;
681e89dbc1dSDouglas Gregor 
682322f633cSDouglas Gregor   // umbrella header "umbrella-header-name"
68373141fa9SDouglas Gregor   Result->Umbrella = UmbrellaHeader;
68497da9178SDaniel Jasper   Headers[UmbrellaHeader].push_back(KnownHeader(Result, NormalHeader));
6854dc71835SDouglas Gregor   UmbrellaDirs[UmbrellaHeader->getDir()] = Result;
686d8bd7537SDouglas Gregor 
687d8bd7537SDouglas Gregor   // export *
688d8bd7537SDouglas Gregor   Result->Exports.push_back(Module::ExportDecl(0, true));
689d8bd7537SDouglas Gregor 
690a89c5ac4SDouglas Gregor   // module * { export * }
691a89c5ac4SDouglas Gregor   Result->InferSubmodules = true;
692a89c5ac4SDouglas Gregor   Result->InferExportWildcard = true;
693a89c5ac4SDouglas Gregor 
694e89dbc1dSDouglas Gregor   // Look for subframeworks.
695e89dbc1dSDouglas Gregor   llvm::error_code EC;
6962c1dd271SDylan Noblesmith   SmallString<128> SubframeworksDirName
697ddaa69cbSDouglas Gregor     = StringRef(FrameworkDir->getName());
698e89dbc1dSDouglas Gregor   llvm::sys::path::append(SubframeworksDirName, "Frameworks");
6992d4d8cb3SBenjamin Kramer   llvm::sys::path::native(SubframeworksDirName);
700ddaa69cbSDouglas Gregor   for (llvm::sys::fs::directory_iterator
7012d4d8cb3SBenjamin Kramer          Dir(SubframeworksDirName.str(), EC), DirEnd;
702e89dbc1dSDouglas Gregor        Dir != DirEnd && !EC; Dir.increment(EC)) {
703e89dbc1dSDouglas Gregor     if (!StringRef(Dir->path()).endswith(".framework"))
704e89dbc1dSDouglas Gregor       continue;
705f2161a70SDouglas Gregor 
706e89dbc1dSDouglas Gregor     if (const DirectoryEntry *SubframeworkDir
707e89dbc1dSDouglas Gregor           = FileMgr.getDirectory(Dir->path())) {
70807c22b78SDouglas Gregor       // Note: as an egregious but useful hack, we use the real path here and
70907c22b78SDouglas Gregor       // check whether it is actually a subdirectory of the parent directory.
71007c22b78SDouglas Gregor       // This will not be the case if the 'subframework' is actually a symlink
71107c22b78SDouglas Gregor       // out to a top-level framework.
712e00c8b20SDouglas Gregor       StringRef SubframeworkDirName = FileMgr.getCanonicalName(SubframeworkDir);
71307c22b78SDouglas Gregor       bool FoundParent = false;
71407c22b78SDouglas Gregor       do {
71507c22b78SDouglas Gregor         // Get the parent directory name.
71607c22b78SDouglas Gregor         SubframeworkDirName
71707c22b78SDouglas Gregor           = llvm::sys::path::parent_path(SubframeworkDirName);
71807c22b78SDouglas Gregor         if (SubframeworkDirName.empty())
71907c22b78SDouglas Gregor           break;
72007c22b78SDouglas Gregor 
72107c22b78SDouglas Gregor         if (FileMgr.getDirectory(SubframeworkDirName) == FrameworkDir) {
72207c22b78SDouglas Gregor           FoundParent = true;
72307c22b78SDouglas Gregor           break;
72407c22b78SDouglas Gregor         }
72507c22b78SDouglas Gregor       } while (true);
72607c22b78SDouglas Gregor 
72707c22b78SDouglas Gregor       if (!FoundParent)
72807c22b78SDouglas Gregor         continue;
72907c22b78SDouglas Gregor 
730e89dbc1dSDouglas Gregor       // FIXME: Do we want to warn about subframeworks without umbrella headers?
731056396aeSDouglas Gregor       SmallString<32> NameBuf;
732056396aeSDouglas Gregor       inferFrameworkModule(sanitizeFilenameAsIdentifier(
733056396aeSDouglas Gregor                              llvm::sys::path::stem(Dir->path()), NameBuf),
734056396aeSDouglas Gregor                            SubframeworkDir, IsSystem, Result);
735e89dbc1dSDouglas Gregor     }
736e89dbc1dSDouglas Gregor   }
737e89dbc1dSDouglas Gregor 
73811dfe6feSDouglas Gregor   // If the module is a top-level framework, automatically link against the
73911dfe6feSDouglas Gregor   // framework.
74011dfe6feSDouglas Gregor   if (!Result->isSubFramework()) {
74111dfe6feSDouglas Gregor     inferFrameworkLink(Result, FrameworkDir, FileMgr);
74211dfe6feSDouglas Gregor   }
74311dfe6feSDouglas Gregor 
74456c64013SDouglas Gregor   return Result;
74556c64013SDouglas Gregor }
74656c64013SDouglas Gregor 
747a89c5ac4SDouglas Gregor void ModuleMap::setUmbrellaHeader(Module *Mod, const FileEntry *UmbrellaHeader){
74897da9178SDaniel Jasper   Headers[UmbrellaHeader].push_back(KnownHeader(Mod, NormalHeader));
74973141fa9SDouglas Gregor   Mod->Umbrella = UmbrellaHeader;
7507033127bSDouglas Gregor   UmbrellaDirs[UmbrellaHeader->getDir()] = Mod;
751a89c5ac4SDouglas Gregor }
752a89c5ac4SDouglas Gregor 
753524e33e1SDouglas Gregor void ModuleMap::setUmbrellaDir(Module *Mod, const DirectoryEntry *UmbrellaDir) {
754524e33e1SDouglas Gregor   Mod->Umbrella = UmbrellaDir;
755524e33e1SDouglas Gregor   UmbrellaDirs[UmbrellaDir] = Mod;
756524e33e1SDouglas Gregor }
757524e33e1SDouglas Gregor 
75859527666SDouglas Gregor void ModuleMap::addHeader(Module *Mod, const FileEntry *Header,
759b53e5483SLawrence Crowl                           ModuleHeaderRole Role) {
760b53e5483SLawrence Crowl   if (Role == ExcludedHeader) {
76159527666SDouglas Gregor     Mod->ExcludedHeaders.push_back(Header);
762b146baabSArgyrios Kyrtzidis   } else {
763b53e5483SLawrence Crowl     if (Role == PrivateHeader)
764b53e5483SLawrence Crowl       Mod->PrivateHeaders.push_back(Header);
765b53e5483SLawrence Crowl     else
766b53e5483SLawrence Crowl       Mod->NormalHeaders.push_back(Header);
7676f722b4eSArgyrios Kyrtzidis     bool isCompilingModuleHeader = Mod->getTopLevelModule() == CompilingModule;
768b53e5483SLawrence Crowl     HeaderInfo.MarkFileModuleHeader(Header, Role, isCompilingModuleHeader);
769b146baabSArgyrios Kyrtzidis   }
77097da9178SDaniel Jasper   Headers[Header].push_back(KnownHeader(Mod, Role));
771a89c5ac4SDouglas Gregor }
772a89c5ac4SDouglas Gregor 
773514b636aSDouglas Gregor const FileEntry *
774e4412640SArgyrios Kyrtzidis ModuleMap::getContainingModuleMapFile(Module *Module) const {
7751f76c4e8SManuel Klimek   if (Module->DefinitionLoc.isInvalid())
776514b636aSDouglas Gregor     return 0;
777514b636aSDouglas Gregor 
7781f76c4e8SManuel Klimek   return SourceMgr.getFileEntryForID(
7791f76c4e8SManuel Klimek            SourceMgr.getFileID(Module->DefinitionLoc));
780514b636aSDouglas Gregor }
781514b636aSDouglas Gregor 
782718292f2SDouglas Gregor void ModuleMap::dump() {
783718292f2SDouglas Gregor   llvm::errs() << "Modules:";
784718292f2SDouglas Gregor   for (llvm::StringMap<Module *>::iterator M = Modules.begin(),
785718292f2SDouglas Gregor                                         MEnd = Modules.end();
786718292f2SDouglas Gregor        M != MEnd; ++M)
787d28d1b8dSDouglas Gregor     M->getValue()->print(llvm::errs(), 2);
788718292f2SDouglas Gregor 
789718292f2SDouglas Gregor   llvm::errs() << "Headers:";
79059527666SDouglas Gregor   for (HeadersMap::iterator H = Headers.begin(), HEnd = Headers.end();
791718292f2SDouglas Gregor        H != HEnd; ++H) {
79297da9178SDaniel Jasper     llvm::errs() << "  \"" << H->first->getName() << "\" -> ";
79397da9178SDaniel Jasper     for (SmallVectorImpl<KnownHeader>::const_iterator I = H->second.begin(),
79497da9178SDaniel Jasper                                                       E = H->second.end();
79597da9178SDaniel Jasper          I != E; ++I) {
79697da9178SDaniel Jasper       if (I != H->second.begin())
79797da9178SDaniel Jasper         llvm::errs() << ",";
79897da9178SDaniel Jasper       llvm::errs() << I->getModule()->getFullModuleName();
79997da9178SDaniel Jasper     }
80097da9178SDaniel Jasper     llvm::errs() << "\n";
801718292f2SDouglas Gregor   }
802718292f2SDouglas Gregor }
803718292f2SDouglas Gregor 
8042b82c2a5SDouglas Gregor bool ModuleMap::resolveExports(Module *Mod, bool Complain) {
8052b82c2a5SDouglas Gregor   bool HadError = false;
8062b82c2a5SDouglas Gregor   for (unsigned I = 0, N = Mod->UnresolvedExports.size(); I != N; ++I) {
8072b82c2a5SDouglas Gregor     Module::ExportDecl Export = resolveExport(Mod, Mod->UnresolvedExports[I],
8082b82c2a5SDouglas Gregor                                               Complain);
809f5eedd05SDouglas Gregor     if (Export.getPointer() || Export.getInt())
8102b82c2a5SDouglas Gregor       Mod->Exports.push_back(Export);
8112b82c2a5SDouglas Gregor     else
8122b82c2a5SDouglas Gregor       HadError = true;
8132b82c2a5SDouglas Gregor   }
8142b82c2a5SDouglas Gregor   Mod->UnresolvedExports.clear();
8152b82c2a5SDouglas Gregor   return HadError;
8162b82c2a5SDouglas Gregor }
8172b82c2a5SDouglas Gregor 
818ba7f2f71SDaniel Jasper bool ModuleMap::resolveUses(Module *Mod, bool Complain) {
819ba7f2f71SDaniel Jasper   bool HadError = false;
820ba7f2f71SDaniel Jasper   for (unsigned I = 0, N = Mod->UnresolvedDirectUses.size(); I != N; ++I) {
821ba7f2f71SDaniel Jasper     Module *DirectUse =
822ba7f2f71SDaniel Jasper         resolveModuleId(Mod->UnresolvedDirectUses[I], Mod, Complain);
823ba7f2f71SDaniel Jasper     if (DirectUse)
824ba7f2f71SDaniel Jasper       Mod->DirectUses.push_back(DirectUse);
825ba7f2f71SDaniel Jasper     else
826ba7f2f71SDaniel Jasper       HadError = true;
827ba7f2f71SDaniel Jasper   }
828ba7f2f71SDaniel Jasper   Mod->UnresolvedDirectUses.clear();
829ba7f2f71SDaniel Jasper   return HadError;
830ba7f2f71SDaniel Jasper }
831ba7f2f71SDaniel Jasper 
832fb912657SDouglas Gregor bool ModuleMap::resolveConflicts(Module *Mod, bool Complain) {
833fb912657SDouglas Gregor   bool HadError = false;
834fb912657SDouglas Gregor   for (unsigned I = 0, N = Mod->UnresolvedConflicts.size(); I != N; ++I) {
835fb912657SDouglas Gregor     Module *OtherMod = resolveModuleId(Mod->UnresolvedConflicts[I].Id,
836fb912657SDouglas Gregor                                        Mod, Complain);
837fb912657SDouglas Gregor     if (!OtherMod) {
838fb912657SDouglas Gregor       HadError = true;
839fb912657SDouglas Gregor       continue;
840fb912657SDouglas Gregor     }
841fb912657SDouglas Gregor 
842fb912657SDouglas Gregor     Module::Conflict Conflict;
843fb912657SDouglas Gregor     Conflict.Other = OtherMod;
844fb912657SDouglas Gregor     Conflict.Message = Mod->UnresolvedConflicts[I].Message;
845fb912657SDouglas Gregor     Mod->Conflicts.push_back(Conflict);
846fb912657SDouglas Gregor   }
847fb912657SDouglas Gregor   Mod->UnresolvedConflicts.clear();
848fb912657SDouglas Gregor   return HadError;
849fb912657SDouglas Gregor }
850fb912657SDouglas Gregor 
8510093b3c7SDouglas Gregor Module *ModuleMap::inferModuleFromLocation(FullSourceLoc Loc) {
8520093b3c7SDouglas Gregor   if (Loc.isInvalid())
8530093b3c7SDouglas Gregor     return 0;
8540093b3c7SDouglas Gregor 
8550093b3c7SDouglas Gregor   // Use the expansion location to determine which module we're in.
8560093b3c7SDouglas Gregor   FullSourceLoc ExpansionLoc = Loc.getExpansionLoc();
8570093b3c7SDouglas Gregor   if (!ExpansionLoc.isFileID())
8580093b3c7SDouglas Gregor     return 0;
8590093b3c7SDouglas Gregor 
8600093b3c7SDouglas Gregor 
8610093b3c7SDouglas Gregor   const SourceManager &SrcMgr = Loc.getManager();
8620093b3c7SDouglas Gregor   FileID ExpansionFileID = ExpansionLoc.getFileID();
863224d8a74SDouglas Gregor 
864224d8a74SDouglas Gregor   while (const FileEntry *ExpansionFile
865224d8a74SDouglas Gregor            = SrcMgr.getFileEntryForID(ExpansionFileID)) {
866224d8a74SDouglas Gregor     // Find the module that owns this header (if any).
867b53e5483SLawrence Crowl     if (Module *Mod = findModuleForHeader(ExpansionFile).getModule())
868224d8a74SDouglas Gregor       return Mod;
869224d8a74SDouglas Gregor 
870224d8a74SDouglas Gregor     // No module owns this header, so look up the inclusion chain to see if
871224d8a74SDouglas Gregor     // any included header has an associated module.
872224d8a74SDouglas Gregor     SourceLocation IncludeLoc = SrcMgr.getIncludeLoc(ExpansionFileID);
873224d8a74SDouglas Gregor     if (IncludeLoc.isInvalid())
8740093b3c7SDouglas Gregor       return 0;
8750093b3c7SDouglas Gregor 
876224d8a74SDouglas Gregor     ExpansionFileID = SrcMgr.getFileID(IncludeLoc);
877224d8a74SDouglas Gregor   }
878224d8a74SDouglas Gregor 
879224d8a74SDouglas Gregor   return 0;
8800093b3c7SDouglas Gregor }
8810093b3c7SDouglas Gregor 
882718292f2SDouglas Gregor //----------------------------------------------------------------------------//
883718292f2SDouglas Gregor // Module map file parser
884718292f2SDouglas Gregor //----------------------------------------------------------------------------//
885718292f2SDouglas Gregor 
886718292f2SDouglas Gregor namespace clang {
887718292f2SDouglas Gregor   /// \brief A token in a module map file.
888718292f2SDouglas Gregor   struct MMToken {
889718292f2SDouglas Gregor     enum TokenKind {
8901fb5c3a6SDouglas Gregor       Comma,
89135b13eceSDouglas Gregor       ConfigMacros,
892fb912657SDouglas Gregor       Conflict,
893718292f2SDouglas Gregor       EndOfFile,
894718292f2SDouglas Gregor       HeaderKeyword,
895718292f2SDouglas Gregor       Identifier,
896a3feee2aSRichard Smith       Exclaim,
89759527666SDouglas Gregor       ExcludeKeyword,
898718292f2SDouglas Gregor       ExplicitKeyword,
8992b82c2a5SDouglas Gregor       ExportKeyword,
90097292843SDaniel Jasper       ExternKeyword,
901755b2055SDouglas Gregor       FrameworkKeyword,
9026ddfca91SDouglas Gregor       LinkKeyword,
903718292f2SDouglas Gregor       ModuleKeyword,
9042b82c2a5SDouglas Gregor       Period,
905b53e5483SLawrence Crowl       PrivateKeyword,
906718292f2SDouglas Gregor       UmbrellaKeyword,
907ba7f2f71SDaniel Jasper       UseKeyword,
9081fb5c3a6SDouglas Gregor       RequiresKeyword,
9092b82c2a5SDouglas Gregor       Star,
910718292f2SDouglas Gregor       StringLiteral,
911718292f2SDouglas Gregor       LBrace,
912a686e1b0SDouglas Gregor       RBrace,
913a686e1b0SDouglas Gregor       LSquare,
914a686e1b0SDouglas Gregor       RSquare
915718292f2SDouglas Gregor     } Kind;
916718292f2SDouglas Gregor 
917718292f2SDouglas Gregor     unsigned Location;
918718292f2SDouglas Gregor     unsigned StringLength;
919718292f2SDouglas Gregor     const char *StringData;
920718292f2SDouglas Gregor 
921718292f2SDouglas Gregor     void clear() {
922718292f2SDouglas Gregor       Kind = EndOfFile;
923718292f2SDouglas Gregor       Location = 0;
924718292f2SDouglas Gregor       StringLength = 0;
925718292f2SDouglas Gregor       StringData = 0;
926718292f2SDouglas Gregor     }
927718292f2SDouglas Gregor 
928718292f2SDouglas Gregor     bool is(TokenKind K) const { return Kind == K; }
929718292f2SDouglas Gregor 
930718292f2SDouglas Gregor     SourceLocation getLocation() const {
931718292f2SDouglas Gregor       return SourceLocation::getFromRawEncoding(Location);
932718292f2SDouglas Gregor     }
933718292f2SDouglas Gregor 
934718292f2SDouglas Gregor     StringRef getString() const {
935718292f2SDouglas Gregor       return StringRef(StringData, StringLength);
936718292f2SDouglas Gregor     }
937718292f2SDouglas Gregor   };
938718292f2SDouglas Gregor 
9399194a91dSDouglas Gregor   /// \brief The set of attributes that can be attached to a module.
9404442605fSBill Wendling   struct Attributes {
94177944868SRichard Smith     Attributes() : IsSystem(), IsExternC(), IsExhaustive() { }
9429194a91dSDouglas Gregor 
9439194a91dSDouglas Gregor     /// \brief Whether this is a system module.
9449194a91dSDouglas Gregor     unsigned IsSystem : 1;
94535b13eceSDouglas Gregor 
94677944868SRichard Smith     /// \brief Whether this is an extern "C" module.
94777944868SRichard Smith     unsigned IsExternC : 1;
94877944868SRichard Smith 
94935b13eceSDouglas Gregor     /// \brief Whether this is an exhaustive set of configuration macros.
95035b13eceSDouglas Gregor     unsigned IsExhaustive : 1;
9519194a91dSDouglas Gregor   };
9529194a91dSDouglas Gregor 
9539194a91dSDouglas Gregor 
954718292f2SDouglas Gregor   class ModuleMapParser {
955718292f2SDouglas Gregor     Lexer &L;
956718292f2SDouglas Gregor     SourceManager &SourceMgr;
957bc10b9fbSDouglas Gregor 
958bc10b9fbSDouglas Gregor     /// \brief Default target information, used only for string literal
959bc10b9fbSDouglas Gregor     /// parsing.
960bc10b9fbSDouglas Gregor     const TargetInfo *Target;
961bc10b9fbSDouglas Gregor 
962718292f2SDouglas Gregor     DiagnosticsEngine &Diags;
963718292f2SDouglas Gregor     ModuleMap &Map;
964718292f2SDouglas Gregor 
965beee15e7SBen Langmuir     /// \brief The current module map file.
966beee15e7SBen Langmuir     const FileEntry *ModuleMapFile;
967beee15e7SBen Langmuir 
9685257fc63SDouglas Gregor     /// \brief The directory that this module map resides in.
9695257fc63SDouglas Gregor     const DirectoryEntry *Directory;
9705257fc63SDouglas Gregor 
9713ec6663bSDouglas Gregor     /// \brief The directory containing Clang-supplied headers.
9723ec6663bSDouglas Gregor     const DirectoryEntry *BuiltinIncludeDir;
9733ec6663bSDouglas Gregor 
974963c5535SDouglas Gregor     /// \brief Whether this module map is in a system header directory.
975963c5535SDouglas Gregor     bool IsSystem;
976963c5535SDouglas Gregor 
977718292f2SDouglas Gregor     /// \brief Whether an error occurred.
978718292f2SDouglas Gregor     bool HadError;
979718292f2SDouglas Gregor 
980718292f2SDouglas Gregor     /// \brief Stores string data for the various string literals referenced
981718292f2SDouglas Gregor     /// during parsing.
982718292f2SDouglas Gregor     llvm::BumpPtrAllocator StringData;
983718292f2SDouglas Gregor 
984718292f2SDouglas Gregor     /// \brief The current token.
985718292f2SDouglas Gregor     MMToken Tok;
986718292f2SDouglas Gregor 
987718292f2SDouglas Gregor     /// \brief The active module.
988de3ef502SDouglas Gregor     Module *ActiveModule;
989718292f2SDouglas Gregor 
990718292f2SDouglas Gregor     /// \brief Consume the current token and return its location.
991718292f2SDouglas Gregor     SourceLocation consumeToken();
992718292f2SDouglas Gregor 
993718292f2SDouglas Gregor     /// \brief Skip tokens until we reach the a token with the given kind
994718292f2SDouglas Gregor     /// (or the end of the file).
995718292f2SDouglas Gregor     void skipUntil(MMToken::TokenKind K);
996718292f2SDouglas Gregor 
997f857950dSDmitri Gribenko     typedef SmallVector<std::pair<std::string, SourceLocation>, 2> ModuleId;
998e7ab3669SDouglas Gregor     bool parseModuleId(ModuleId &Id);
999718292f2SDouglas Gregor     void parseModuleDecl();
100097292843SDaniel Jasper     void parseExternModuleDecl();
10011fb5c3a6SDouglas Gregor     void parseRequiresDecl();
1002b53e5483SLawrence Crowl     void parseHeaderDecl(clang::MMToken::TokenKind,
1003b53e5483SLawrence Crowl                          SourceLocation LeadingLoc);
1004524e33e1SDouglas Gregor     void parseUmbrellaDirDecl(SourceLocation UmbrellaLoc);
10052b82c2a5SDouglas Gregor     void parseExportDecl();
1006ba7f2f71SDaniel Jasper     void parseUseDecl();
10076ddfca91SDouglas Gregor     void parseLinkDecl();
100835b13eceSDouglas Gregor     void parseConfigMacros();
1009fb912657SDouglas Gregor     void parseConflict();
10109194a91dSDouglas Gregor     void parseInferredModuleDecl(bool Framework, bool Explicit);
10114442605fSBill Wendling     bool parseOptionalAttributes(Attributes &Attrs);
1012718292f2SDouglas Gregor 
1013718292f2SDouglas Gregor   public:
1014718292f2SDouglas Gregor     explicit ModuleMapParser(Lexer &L, SourceManager &SourceMgr,
1015bc10b9fbSDouglas Gregor                              const TargetInfo *Target,
1016718292f2SDouglas Gregor                              DiagnosticsEngine &Diags,
10175257fc63SDouglas Gregor                              ModuleMap &Map,
1018beee15e7SBen Langmuir                              const FileEntry *ModuleMapFile,
10193ec6663bSDouglas Gregor                              const DirectoryEntry *Directory,
1020963c5535SDouglas Gregor                              const DirectoryEntry *BuiltinIncludeDir,
1021963c5535SDouglas Gregor                              bool IsSystem)
1022bc10b9fbSDouglas Gregor       : L(L), SourceMgr(SourceMgr), Target(Target), Diags(Diags), Map(Map),
1023beee15e7SBen Langmuir         ModuleMapFile(ModuleMapFile), Directory(Directory),
1024beee15e7SBen Langmuir         BuiltinIncludeDir(BuiltinIncludeDir), IsSystem(IsSystem),
1025beee15e7SBen Langmuir         HadError(false), ActiveModule(0)
1026718292f2SDouglas Gregor     {
1027718292f2SDouglas Gregor       Tok.clear();
1028718292f2SDouglas Gregor       consumeToken();
1029718292f2SDouglas Gregor     }
1030718292f2SDouglas Gregor 
1031718292f2SDouglas Gregor     bool parseModuleMapFile();
1032718292f2SDouglas Gregor   };
1033718292f2SDouglas Gregor }
1034718292f2SDouglas Gregor 
1035718292f2SDouglas Gregor SourceLocation ModuleMapParser::consumeToken() {
1036718292f2SDouglas Gregor retry:
1037718292f2SDouglas Gregor   SourceLocation Result = Tok.getLocation();
1038718292f2SDouglas Gregor   Tok.clear();
1039718292f2SDouglas Gregor 
1040718292f2SDouglas Gregor   Token LToken;
1041718292f2SDouglas Gregor   L.LexFromRawLexer(LToken);
1042718292f2SDouglas Gregor   Tok.Location = LToken.getLocation().getRawEncoding();
1043718292f2SDouglas Gregor   switch (LToken.getKind()) {
1044718292f2SDouglas Gregor   case tok::raw_identifier:
1045718292f2SDouglas Gregor     Tok.StringData = LToken.getRawIdentifierData();
1046718292f2SDouglas Gregor     Tok.StringLength = LToken.getLength();
1047718292f2SDouglas Gregor     Tok.Kind = llvm::StringSwitch<MMToken::TokenKind>(Tok.getString())
104835b13eceSDouglas Gregor                  .Case("config_macros", MMToken::ConfigMacros)
1049fb912657SDouglas Gregor                  .Case("conflict", MMToken::Conflict)
105059527666SDouglas Gregor                  .Case("exclude", MMToken::ExcludeKeyword)
1051718292f2SDouglas Gregor                  .Case("explicit", MMToken::ExplicitKeyword)
10522b82c2a5SDouglas Gregor                  .Case("export", MMToken::ExportKeyword)
105397292843SDaniel Jasper                  .Case("extern", MMToken::ExternKeyword)
1054755b2055SDouglas Gregor                  .Case("framework", MMToken::FrameworkKeyword)
105535b13eceSDouglas Gregor                  .Case("header", MMToken::HeaderKeyword)
10566ddfca91SDouglas Gregor                  .Case("link", MMToken::LinkKeyword)
1057718292f2SDouglas Gregor                  .Case("module", MMToken::ModuleKeyword)
1058b53e5483SLawrence Crowl                  .Case("private", MMToken::PrivateKeyword)
10591fb5c3a6SDouglas Gregor                  .Case("requires", MMToken::RequiresKeyword)
1060718292f2SDouglas Gregor                  .Case("umbrella", MMToken::UmbrellaKeyword)
1061ba7f2f71SDaniel Jasper                  .Case("use", MMToken::UseKeyword)
1062718292f2SDouglas Gregor                  .Default(MMToken::Identifier);
1063718292f2SDouglas Gregor     break;
1064718292f2SDouglas Gregor 
10651fb5c3a6SDouglas Gregor   case tok::comma:
10661fb5c3a6SDouglas Gregor     Tok.Kind = MMToken::Comma;
10671fb5c3a6SDouglas Gregor     break;
10681fb5c3a6SDouglas Gregor 
1069718292f2SDouglas Gregor   case tok::eof:
1070718292f2SDouglas Gregor     Tok.Kind = MMToken::EndOfFile;
1071718292f2SDouglas Gregor     break;
1072718292f2SDouglas Gregor 
1073718292f2SDouglas Gregor   case tok::l_brace:
1074718292f2SDouglas Gregor     Tok.Kind = MMToken::LBrace;
1075718292f2SDouglas Gregor     break;
1076718292f2SDouglas Gregor 
1077a686e1b0SDouglas Gregor   case tok::l_square:
1078a686e1b0SDouglas Gregor     Tok.Kind = MMToken::LSquare;
1079a686e1b0SDouglas Gregor     break;
1080a686e1b0SDouglas Gregor 
10812b82c2a5SDouglas Gregor   case tok::period:
10822b82c2a5SDouglas Gregor     Tok.Kind = MMToken::Period;
10832b82c2a5SDouglas Gregor     break;
10842b82c2a5SDouglas Gregor 
1085718292f2SDouglas Gregor   case tok::r_brace:
1086718292f2SDouglas Gregor     Tok.Kind = MMToken::RBrace;
1087718292f2SDouglas Gregor     break;
1088718292f2SDouglas Gregor 
1089a686e1b0SDouglas Gregor   case tok::r_square:
1090a686e1b0SDouglas Gregor     Tok.Kind = MMToken::RSquare;
1091a686e1b0SDouglas Gregor     break;
1092a686e1b0SDouglas Gregor 
10932b82c2a5SDouglas Gregor   case tok::star:
10942b82c2a5SDouglas Gregor     Tok.Kind = MMToken::Star;
10952b82c2a5SDouglas Gregor     break;
10962b82c2a5SDouglas Gregor 
1097a3feee2aSRichard Smith   case tok::exclaim:
1098a3feee2aSRichard Smith     Tok.Kind = MMToken::Exclaim;
1099a3feee2aSRichard Smith     break;
1100a3feee2aSRichard Smith 
1101718292f2SDouglas Gregor   case tok::string_literal: {
1102d67aea28SRichard Smith     if (LToken.hasUDSuffix()) {
1103d67aea28SRichard Smith       Diags.Report(LToken.getLocation(), diag::err_invalid_string_udl);
1104d67aea28SRichard Smith       HadError = true;
1105d67aea28SRichard Smith       goto retry;
1106d67aea28SRichard Smith     }
1107d67aea28SRichard Smith 
1108718292f2SDouglas Gregor     // Parse the string literal.
1109718292f2SDouglas Gregor     LangOptions LangOpts;
1110718292f2SDouglas Gregor     StringLiteralParser StringLiteral(&LToken, 1, SourceMgr, LangOpts, *Target);
1111718292f2SDouglas Gregor     if (StringLiteral.hadError)
1112718292f2SDouglas Gregor       goto retry;
1113718292f2SDouglas Gregor 
1114718292f2SDouglas Gregor     // Copy the string literal into our string data allocator.
1115718292f2SDouglas Gregor     unsigned Length = StringLiteral.GetStringLength();
1116718292f2SDouglas Gregor     char *Saved = StringData.Allocate<char>(Length + 1);
1117718292f2SDouglas Gregor     memcpy(Saved, StringLiteral.GetString().data(), Length);
1118718292f2SDouglas Gregor     Saved[Length] = 0;
1119718292f2SDouglas Gregor 
1120718292f2SDouglas Gregor     // Form the token.
1121718292f2SDouglas Gregor     Tok.Kind = MMToken::StringLiteral;
1122718292f2SDouglas Gregor     Tok.StringData = Saved;
1123718292f2SDouglas Gregor     Tok.StringLength = Length;
1124718292f2SDouglas Gregor     break;
1125718292f2SDouglas Gregor   }
1126718292f2SDouglas Gregor 
1127718292f2SDouglas Gregor   case tok::comment:
1128718292f2SDouglas Gregor     goto retry;
1129718292f2SDouglas Gregor 
1130718292f2SDouglas Gregor   default:
1131718292f2SDouglas Gregor     Diags.Report(LToken.getLocation(), diag::err_mmap_unknown_token);
1132718292f2SDouglas Gregor     HadError = true;
1133718292f2SDouglas Gregor     goto retry;
1134718292f2SDouglas Gregor   }
1135718292f2SDouglas Gregor 
1136718292f2SDouglas Gregor   return Result;
1137718292f2SDouglas Gregor }
1138718292f2SDouglas Gregor 
1139718292f2SDouglas Gregor void ModuleMapParser::skipUntil(MMToken::TokenKind K) {
1140718292f2SDouglas Gregor   unsigned braceDepth = 0;
1141a686e1b0SDouglas Gregor   unsigned squareDepth = 0;
1142718292f2SDouglas Gregor   do {
1143718292f2SDouglas Gregor     switch (Tok.Kind) {
1144718292f2SDouglas Gregor     case MMToken::EndOfFile:
1145718292f2SDouglas Gregor       return;
1146718292f2SDouglas Gregor 
1147718292f2SDouglas Gregor     case MMToken::LBrace:
1148a686e1b0SDouglas Gregor       if (Tok.is(K) && braceDepth == 0 && squareDepth == 0)
1149718292f2SDouglas Gregor         return;
1150718292f2SDouglas Gregor 
1151718292f2SDouglas Gregor       ++braceDepth;
1152718292f2SDouglas Gregor       break;
1153718292f2SDouglas Gregor 
1154a686e1b0SDouglas Gregor     case MMToken::LSquare:
1155a686e1b0SDouglas Gregor       if (Tok.is(K) && braceDepth == 0 && squareDepth == 0)
1156a686e1b0SDouglas Gregor         return;
1157a686e1b0SDouglas Gregor 
1158a686e1b0SDouglas Gregor       ++squareDepth;
1159a686e1b0SDouglas Gregor       break;
1160a686e1b0SDouglas Gregor 
1161718292f2SDouglas Gregor     case MMToken::RBrace:
1162718292f2SDouglas Gregor       if (braceDepth > 0)
1163718292f2SDouglas Gregor         --braceDepth;
1164718292f2SDouglas Gregor       else if (Tok.is(K))
1165718292f2SDouglas Gregor         return;
1166718292f2SDouglas Gregor       break;
1167718292f2SDouglas Gregor 
1168a686e1b0SDouglas Gregor     case MMToken::RSquare:
1169a686e1b0SDouglas Gregor       if (squareDepth > 0)
1170a686e1b0SDouglas Gregor         --squareDepth;
1171a686e1b0SDouglas Gregor       else if (Tok.is(K))
1172a686e1b0SDouglas Gregor         return;
1173a686e1b0SDouglas Gregor       break;
1174a686e1b0SDouglas Gregor 
1175718292f2SDouglas Gregor     default:
1176a686e1b0SDouglas Gregor       if (braceDepth == 0 && squareDepth == 0 && Tok.is(K))
1177718292f2SDouglas Gregor         return;
1178718292f2SDouglas Gregor       break;
1179718292f2SDouglas Gregor     }
1180718292f2SDouglas Gregor 
1181718292f2SDouglas Gregor    consumeToken();
1182718292f2SDouglas Gregor   } while (true);
1183718292f2SDouglas Gregor }
1184718292f2SDouglas Gregor 
1185e7ab3669SDouglas Gregor /// \brief Parse a module-id.
1186e7ab3669SDouglas Gregor ///
1187e7ab3669SDouglas Gregor ///   module-id:
1188e7ab3669SDouglas Gregor ///     identifier
1189e7ab3669SDouglas Gregor ///     identifier '.' module-id
1190e7ab3669SDouglas Gregor ///
1191e7ab3669SDouglas Gregor /// \returns true if an error occurred, false otherwise.
1192e7ab3669SDouglas Gregor bool ModuleMapParser::parseModuleId(ModuleId &Id) {
1193e7ab3669SDouglas Gregor   Id.clear();
1194e7ab3669SDouglas Gregor   do {
11953cd34c76SDaniel Jasper     if (Tok.is(MMToken::Identifier) || Tok.is(MMToken::StringLiteral)) {
1196e7ab3669SDouglas Gregor       Id.push_back(std::make_pair(Tok.getString(), Tok.getLocation()));
1197e7ab3669SDouglas Gregor       consumeToken();
1198e7ab3669SDouglas Gregor     } else {
1199e7ab3669SDouglas Gregor       Diags.Report(Tok.getLocation(), diag::err_mmap_expected_module_name);
1200e7ab3669SDouglas Gregor       return true;
1201e7ab3669SDouglas Gregor     }
1202e7ab3669SDouglas Gregor 
1203e7ab3669SDouglas Gregor     if (!Tok.is(MMToken::Period))
1204e7ab3669SDouglas Gregor       break;
1205e7ab3669SDouglas Gregor 
1206e7ab3669SDouglas Gregor     consumeToken();
1207e7ab3669SDouglas Gregor   } while (true);
1208e7ab3669SDouglas Gregor 
1209e7ab3669SDouglas Gregor   return false;
1210e7ab3669SDouglas Gregor }
1211e7ab3669SDouglas Gregor 
1212a686e1b0SDouglas Gregor namespace {
1213a686e1b0SDouglas Gregor   /// \brief Enumerates the known attributes.
1214a686e1b0SDouglas Gregor   enum AttributeKind {
1215a686e1b0SDouglas Gregor     /// \brief An unknown attribute.
1216a686e1b0SDouglas Gregor     AT_unknown,
1217a686e1b0SDouglas Gregor     /// \brief The 'system' attribute.
121835b13eceSDouglas Gregor     AT_system,
121977944868SRichard Smith     /// \brief The 'extern_c' attribute.
122077944868SRichard Smith     AT_extern_c,
122135b13eceSDouglas Gregor     /// \brief The 'exhaustive' attribute.
122235b13eceSDouglas Gregor     AT_exhaustive
1223a686e1b0SDouglas Gregor   };
1224a686e1b0SDouglas Gregor }
1225a686e1b0SDouglas Gregor 
1226718292f2SDouglas Gregor /// \brief Parse a module declaration.
1227718292f2SDouglas Gregor ///
1228718292f2SDouglas Gregor ///   module-declaration:
122997292843SDaniel Jasper ///     'extern' 'module' module-id string-literal
1230a686e1b0SDouglas Gregor ///     'explicit'[opt] 'framework'[opt] 'module' module-id attributes[opt]
1231a686e1b0SDouglas Gregor ///       { module-member* }
1232a686e1b0SDouglas Gregor ///
1233718292f2SDouglas Gregor ///   module-member:
12341fb5c3a6SDouglas Gregor ///     requires-declaration
1235718292f2SDouglas Gregor ///     header-declaration
1236e7ab3669SDouglas Gregor ///     submodule-declaration
12372b82c2a5SDouglas Gregor ///     export-declaration
12386ddfca91SDouglas Gregor ///     link-declaration
123973441091SDouglas Gregor ///
124073441091SDouglas Gregor ///   submodule-declaration:
124173441091SDouglas Gregor ///     module-declaration
124273441091SDouglas Gregor ///     inferred-submodule-declaration
1243718292f2SDouglas Gregor void ModuleMapParser::parseModuleDecl() {
1244755b2055SDouglas Gregor   assert(Tok.is(MMToken::ExplicitKeyword) || Tok.is(MMToken::ModuleKeyword) ||
124597292843SDaniel Jasper          Tok.is(MMToken::FrameworkKeyword) || Tok.is(MMToken::ExternKeyword));
124697292843SDaniel Jasper   if (Tok.is(MMToken::ExternKeyword)) {
124797292843SDaniel Jasper     parseExternModuleDecl();
124897292843SDaniel Jasper     return;
124997292843SDaniel Jasper   }
125097292843SDaniel Jasper 
1251f2161a70SDouglas Gregor   // Parse 'explicit' or 'framework' keyword, if present.
1252e7ab3669SDouglas Gregor   SourceLocation ExplicitLoc;
1253718292f2SDouglas Gregor   bool Explicit = false;
1254f2161a70SDouglas Gregor   bool Framework = false;
1255755b2055SDouglas Gregor 
1256f2161a70SDouglas Gregor   // Parse 'explicit' keyword, if present.
1257f2161a70SDouglas Gregor   if (Tok.is(MMToken::ExplicitKeyword)) {
1258e7ab3669SDouglas Gregor     ExplicitLoc = consumeToken();
1259f2161a70SDouglas Gregor     Explicit = true;
1260f2161a70SDouglas Gregor   }
1261f2161a70SDouglas Gregor 
1262f2161a70SDouglas Gregor   // Parse 'framework' keyword, if present.
1263755b2055SDouglas Gregor   if (Tok.is(MMToken::FrameworkKeyword)) {
1264755b2055SDouglas Gregor     consumeToken();
1265755b2055SDouglas Gregor     Framework = true;
1266755b2055SDouglas Gregor   }
1267718292f2SDouglas Gregor 
1268718292f2SDouglas Gregor   // Parse 'module' keyword.
1269718292f2SDouglas Gregor   if (!Tok.is(MMToken::ModuleKeyword)) {
1270d6343c99SDouglas Gregor     Diags.Report(Tok.getLocation(), diag::err_mmap_expected_module);
1271718292f2SDouglas Gregor     consumeToken();
1272718292f2SDouglas Gregor     HadError = true;
1273718292f2SDouglas Gregor     return;
1274718292f2SDouglas Gregor   }
1275718292f2SDouglas Gregor   consumeToken(); // 'module' keyword
1276718292f2SDouglas Gregor 
127773441091SDouglas Gregor   // If we have a wildcard for the module name, this is an inferred submodule.
127873441091SDouglas Gregor   // Parse it.
127973441091SDouglas Gregor   if (Tok.is(MMToken::Star))
12809194a91dSDouglas Gregor     return parseInferredModuleDecl(Framework, Explicit);
128173441091SDouglas Gregor 
1282718292f2SDouglas Gregor   // Parse the module name.
1283e7ab3669SDouglas Gregor   ModuleId Id;
1284e7ab3669SDouglas Gregor   if (parseModuleId(Id)) {
1285718292f2SDouglas Gregor     HadError = true;
1286718292f2SDouglas Gregor     return;
1287718292f2SDouglas Gregor   }
1288e7ab3669SDouglas Gregor 
1289e7ab3669SDouglas Gregor   if (ActiveModule) {
1290e7ab3669SDouglas Gregor     if (Id.size() > 1) {
1291e7ab3669SDouglas Gregor       Diags.Report(Id.front().second, diag::err_mmap_nested_submodule_id)
1292e7ab3669SDouglas Gregor         << SourceRange(Id.front().second, Id.back().second);
1293e7ab3669SDouglas Gregor 
1294e7ab3669SDouglas Gregor       HadError = true;
1295e7ab3669SDouglas Gregor       return;
1296e7ab3669SDouglas Gregor     }
1297e7ab3669SDouglas Gregor   } else if (Id.size() == 1 && Explicit) {
1298e7ab3669SDouglas Gregor     // Top-level modules can't be explicit.
1299e7ab3669SDouglas Gregor     Diags.Report(ExplicitLoc, diag::err_mmap_explicit_top_level);
1300e7ab3669SDouglas Gregor     Explicit = false;
1301e7ab3669SDouglas Gregor     ExplicitLoc = SourceLocation();
1302e7ab3669SDouglas Gregor     HadError = true;
1303e7ab3669SDouglas Gregor   }
1304e7ab3669SDouglas Gregor 
1305e7ab3669SDouglas Gregor   Module *PreviousActiveModule = ActiveModule;
1306e7ab3669SDouglas Gregor   if (Id.size() > 1) {
1307e7ab3669SDouglas Gregor     // This module map defines a submodule. Go find the module of which it
1308e7ab3669SDouglas Gregor     // is a submodule.
1309e7ab3669SDouglas Gregor     ActiveModule = 0;
1310e7ab3669SDouglas Gregor     for (unsigned I = 0, N = Id.size() - 1; I != N; ++I) {
1311e7ab3669SDouglas Gregor       if (Module *Next = Map.lookupModuleQualified(Id[I].first, ActiveModule)) {
1312e7ab3669SDouglas Gregor         ActiveModule = Next;
1313e7ab3669SDouglas Gregor         continue;
1314e7ab3669SDouglas Gregor       }
1315e7ab3669SDouglas Gregor 
1316e7ab3669SDouglas Gregor       if (ActiveModule) {
1317e7ab3669SDouglas Gregor         Diags.Report(Id[I].second, diag::err_mmap_missing_module_qualified)
13185b5d21eaSRichard Smith           << Id[I].first
13195b5d21eaSRichard Smith           << ActiveModule->getTopLevelModule()->getFullModuleName();
1320e7ab3669SDouglas Gregor       } else {
1321e7ab3669SDouglas Gregor         Diags.Report(Id[I].second, diag::err_mmap_expected_module_name);
1322e7ab3669SDouglas Gregor       }
1323e7ab3669SDouglas Gregor       HadError = true;
1324e7ab3669SDouglas Gregor       return;
1325e7ab3669SDouglas Gregor     }
1326e7ab3669SDouglas Gregor   }
1327e7ab3669SDouglas Gregor 
1328e7ab3669SDouglas Gregor   StringRef ModuleName = Id.back().first;
1329e7ab3669SDouglas Gregor   SourceLocation ModuleNameLoc = Id.back().second;
1330718292f2SDouglas Gregor 
1331a686e1b0SDouglas Gregor   // Parse the optional attribute list.
13324442605fSBill Wendling   Attributes Attrs;
13339194a91dSDouglas Gregor   parseOptionalAttributes(Attrs);
1334a686e1b0SDouglas Gregor 
1335718292f2SDouglas Gregor   // Parse the opening brace.
1336718292f2SDouglas Gregor   if (!Tok.is(MMToken::LBrace)) {
1337718292f2SDouglas Gregor     Diags.Report(Tok.getLocation(), diag::err_mmap_expected_lbrace)
1338718292f2SDouglas Gregor       << ModuleName;
1339718292f2SDouglas Gregor     HadError = true;
1340718292f2SDouglas Gregor     return;
1341718292f2SDouglas Gregor   }
1342718292f2SDouglas Gregor   SourceLocation LBraceLoc = consumeToken();
1343718292f2SDouglas Gregor 
1344718292f2SDouglas Gregor   // Determine whether this (sub)module has already been defined.
1345eb90e830SDouglas Gregor   if (Module *Existing = Map.lookupModuleQualified(ModuleName, ActiveModule)) {
1346fcc54a3bSDouglas Gregor     if (Existing->DefinitionLoc.isInvalid() && !ActiveModule) {
1347fcc54a3bSDouglas Gregor       // Skip the module definition.
1348fcc54a3bSDouglas Gregor       skipUntil(MMToken::RBrace);
1349fcc54a3bSDouglas Gregor       if (Tok.is(MMToken::RBrace))
1350fcc54a3bSDouglas Gregor         consumeToken();
1351fcc54a3bSDouglas Gregor       else {
1352fcc54a3bSDouglas Gregor         Diags.Report(Tok.getLocation(), diag::err_mmap_expected_rbrace);
1353fcc54a3bSDouglas Gregor         Diags.Report(LBraceLoc, diag::note_mmap_lbrace_match);
1354fcc54a3bSDouglas Gregor         HadError = true;
1355fcc54a3bSDouglas Gregor       }
1356fcc54a3bSDouglas Gregor       return;
1357fcc54a3bSDouglas Gregor     }
1358fcc54a3bSDouglas Gregor 
1359718292f2SDouglas Gregor     Diags.Report(ModuleNameLoc, diag::err_mmap_module_redefinition)
1360718292f2SDouglas Gregor       << ModuleName;
1361eb90e830SDouglas Gregor     Diags.Report(Existing->DefinitionLoc, diag::note_mmap_prev_definition);
1362718292f2SDouglas Gregor 
1363718292f2SDouglas Gregor     // Skip the module definition.
1364718292f2SDouglas Gregor     skipUntil(MMToken::RBrace);
1365718292f2SDouglas Gregor     if (Tok.is(MMToken::RBrace))
1366718292f2SDouglas Gregor       consumeToken();
1367718292f2SDouglas Gregor 
1368718292f2SDouglas Gregor     HadError = true;
1369718292f2SDouglas Gregor     return;
1370718292f2SDouglas Gregor   }
1371718292f2SDouglas Gregor 
1372beee15e7SBen Langmuir   // If this is a submodule, use the parent's module map, since we don't want
1373beee15e7SBen Langmuir   // the private module map file.
1374beee15e7SBen Langmuir   const FileEntry *ModuleMap = ActiveModule ? ActiveModule->ModuleMap
1375beee15e7SBen Langmuir                                             : ModuleMapFile;
1376beee15e7SBen Langmuir 
1377718292f2SDouglas Gregor   // Start defining this module.
1378beee15e7SBen Langmuir   ActiveModule = Map.findOrCreateModule(ModuleName, ActiveModule, ModuleMap,
1379beee15e7SBen Langmuir                                         Framework, Explicit).first;
1380eb90e830SDouglas Gregor   ActiveModule->DefinitionLoc = ModuleNameLoc;
1381963c5535SDouglas Gregor   if (Attrs.IsSystem || IsSystem)
1382a686e1b0SDouglas Gregor     ActiveModule->IsSystem = true;
138377944868SRichard Smith   if (Attrs.IsExternC)
138477944868SRichard Smith     ActiveModule->IsExternC = true;
1385718292f2SDouglas Gregor 
1386718292f2SDouglas Gregor   bool Done = false;
1387718292f2SDouglas Gregor   do {
1388718292f2SDouglas Gregor     switch (Tok.Kind) {
1389718292f2SDouglas Gregor     case MMToken::EndOfFile:
1390718292f2SDouglas Gregor     case MMToken::RBrace:
1391718292f2SDouglas Gregor       Done = true;
1392718292f2SDouglas Gregor       break;
1393718292f2SDouglas Gregor 
139435b13eceSDouglas Gregor     case MMToken::ConfigMacros:
139535b13eceSDouglas Gregor       parseConfigMacros();
139635b13eceSDouglas Gregor       break;
139735b13eceSDouglas Gregor 
1398fb912657SDouglas Gregor     case MMToken::Conflict:
1399fb912657SDouglas Gregor       parseConflict();
1400fb912657SDouglas Gregor       break;
1401fb912657SDouglas Gregor 
1402718292f2SDouglas Gregor     case MMToken::ExplicitKeyword:
140397292843SDaniel Jasper     case MMToken::ExternKeyword:
1404f2161a70SDouglas Gregor     case MMToken::FrameworkKeyword:
1405718292f2SDouglas Gregor     case MMToken::ModuleKeyword:
1406718292f2SDouglas Gregor       parseModuleDecl();
1407718292f2SDouglas Gregor       break;
1408718292f2SDouglas Gregor 
14092b82c2a5SDouglas Gregor     case MMToken::ExportKeyword:
14102b82c2a5SDouglas Gregor       parseExportDecl();
14112b82c2a5SDouglas Gregor       break;
14122b82c2a5SDouglas Gregor 
1413ba7f2f71SDaniel Jasper     case MMToken::UseKeyword:
1414ba7f2f71SDaniel Jasper       parseUseDecl();
1415ba7f2f71SDaniel Jasper       break;
1416ba7f2f71SDaniel Jasper 
14171fb5c3a6SDouglas Gregor     case MMToken::RequiresKeyword:
14181fb5c3a6SDouglas Gregor       parseRequiresDecl();
14191fb5c3a6SDouglas Gregor       break;
14201fb5c3a6SDouglas Gregor 
1421524e33e1SDouglas Gregor     case MMToken::UmbrellaKeyword: {
1422524e33e1SDouglas Gregor       SourceLocation UmbrellaLoc = consumeToken();
1423524e33e1SDouglas Gregor       if (Tok.is(MMToken::HeaderKeyword))
1424b53e5483SLawrence Crowl         parseHeaderDecl(MMToken::UmbrellaKeyword, UmbrellaLoc);
1425524e33e1SDouglas Gregor       else
1426524e33e1SDouglas Gregor         parseUmbrellaDirDecl(UmbrellaLoc);
1427718292f2SDouglas Gregor       break;
1428524e33e1SDouglas Gregor     }
1429718292f2SDouglas Gregor 
143059527666SDouglas Gregor     case MMToken::ExcludeKeyword: {
143159527666SDouglas Gregor       SourceLocation ExcludeLoc = consumeToken();
143259527666SDouglas Gregor       if (Tok.is(MMToken::HeaderKeyword)) {
1433b53e5483SLawrence Crowl         parseHeaderDecl(MMToken::ExcludeKeyword, ExcludeLoc);
143459527666SDouglas Gregor       } else {
143559527666SDouglas Gregor         Diags.Report(Tok.getLocation(), diag::err_mmap_expected_header)
143659527666SDouglas Gregor           << "exclude";
143759527666SDouglas Gregor       }
143859527666SDouglas Gregor       break;
143959527666SDouglas Gregor     }
144059527666SDouglas Gregor 
1441b53e5483SLawrence Crowl     case MMToken::PrivateKeyword: {
1442b53e5483SLawrence Crowl       SourceLocation PrivateLoc = consumeToken();
1443b53e5483SLawrence Crowl       if (Tok.is(MMToken::HeaderKeyword)) {
1444b53e5483SLawrence Crowl         parseHeaderDecl(MMToken::PrivateKeyword, PrivateLoc);
1445b53e5483SLawrence Crowl       } else {
1446b53e5483SLawrence Crowl         Diags.Report(Tok.getLocation(), diag::err_mmap_expected_header)
1447b53e5483SLawrence Crowl           << "private";
1448b53e5483SLawrence Crowl       }
1449b53e5483SLawrence Crowl       break;
1450b53e5483SLawrence Crowl     }
1451b53e5483SLawrence Crowl 
1452322f633cSDouglas Gregor     case MMToken::HeaderKeyword:
1453b53e5483SLawrence Crowl       parseHeaderDecl(MMToken::HeaderKeyword, SourceLocation());
1454718292f2SDouglas Gregor       break;
1455718292f2SDouglas Gregor 
14566ddfca91SDouglas Gregor     case MMToken::LinkKeyword:
14576ddfca91SDouglas Gregor       parseLinkDecl();
14586ddfca91SDouglas Gregor       break;
14596ddfca91SDouglas Gregor 
1460718292f2SDouglas Gregor     default:
1461718292f2SDouglas Gregor       Diags.Report(Tok.getLocation(), diag::err_mmap_expected_member);
1462718292f2SDouglas Gregor       consumeToken();
1463718292f2SDouglas Gregor       break;
1464718292f2SDouglas Gregor     }
1465718292f2SDouglas Gregor   } while (!Done);
1466718292f2SDouglas Gregor 
1467718292f2SDouglas Gregor   if (Tok.is(MMToken::RBrace))
1468718292f2SDouglas Gregor     consumeToken();
1469718292f2SDouglas Gregor   else {
1470718292f2SDouglas Gregor     Diags.Report(Tok.getLocation(), diag::err_mmap_expected_rbrace);
1471718292f2SDouglas Gregor     Diags.Report(LBraceLoc, diag::note_mmap_lbrace_match);
1472718292f2SDouglas Gregor     HadError = true;
1473718292f2SDouglas Gregor   }
1474718292f2SDouglas Gregor 
147511dfe6feSDouglas Gregor   // If the active module is a top-level framework, and there are no link
147611dfe6feSDouglas Gregor   // libraries, automatically link against the framework.
147711dfe6feSDouglas Gregor   if (ActiveModule->IsFramework && !ActiveModule->isSubFramework() &&
147811dfe6feSDouglas Gregor       ActiveModule->LinkLibraries.empty()) {
147911dfe6feSDouglas Gregor     inferFrameworkLink(ActiveModule, Directory, SourceMgr.getFileManager());
148011dfe6feSDouglas Gregor   }
148111dfe6feSDouglas Gregor 
1482ec8c9752SBen Langmuir   // If the module meets all requirements but is still unavailable, mark the
1483ec8c9752SBen Langmuir   // whole tree as unavailable to prevent it from building.
1484ec8c9752SBen Langmuir   if (!ActiveModule->IsAvailable && !ActiveModule->IsMissingRequirement &&
1485ec8c9752SBen Langmuir       ActiveModule->Parent) {
1486ec8c9752SBen Langmuir     ActiveModule->getTopLevelModule()->markUnavailable();
1487ec8c9752SBen Langmuir     ActiveModule->getTopLevelModule()->MissingHeaders.append(
1488ec8c9752SBen Langmuir       ActiveModule->MissingHeaders.begin(), ActiveModule->MissingHeaders.end());
1489ec8c9752SBen Langmuir   }
1490ec8c9752SBen Langmuir 
1491e7ab3669SDouglas Gregor   // We're done parsing this module. Pop back to the previous module.
1492e7ab3669SDouglas Gregor   ActiveModule = PreviousActiveModule;
1493718292f2SDouglas Gregor }
1494718292f2SDouglas Gregor 
149597292843SDaniel Jasper /// \brief Parse an extern module declaration.
149697292843SDaniel Jasper ///
149797292843SDaniel Jasper ///   extern module-declaration:
149897292843SDaniel Jasper ///     'extern' 'module' module-id string-literal
149997292843SDaniel Jasper void ModuleMapParser::parseExternModuleDecl() {
150097292843SDaniel Jasper   assert(Tok.is(MMToken::ExternKeyword));
150197292843SDaniel Jasper   consumeToken(); // 'extern' keyword
150297292843SDaniel Jasper 
150397292843SDaniel Jasper   // Parse 'module' keyword.
150497292843SDaniel Jasper   if (!Tok.is(MMToken::ModuleKeyword)) {
150597292843SDaniel Jasper     Diags.Report(Tok.getLocation(), diag::err_mmap_expected_module);
150697292843SDaniel Jasper     consumeToken();
150797292843SDaniel Jasper     HadError = true;
150897292843SDaniel Jasper     return;
150997292843SDaniel Jasper   }
151097292843SDaniel Jasper   consumeToken(); // 'module' keyword
151197292843SDaniel Jasper 
151297292843SDaniel Jasper   // Parse the module name.
151397292843SDaniel Jasper   ModuleId Id;
151497292843SDaniel Jasper   if (parseModuleId(Id)) {
151597292843SDaniel Jasper     HadError = true;
151697292843SDaniel Jasper     return;
151797292843SDaniel Jasper   }
151897292843SDaniel Jasper 
151997292843SDaniel Jasper   // Parse the referenced module map file name.
152097292843SDaniel Jasper   if (!Tok.is(MMToken::StringLiteral)) {
152197292843SDaniel Jasper     Diags.Report(Tok.getLocation(), diag::err_mmap_expected_mmap_file);
152297292843SDaniel Jasper     HadError = true;
152397292843SDaniel Jasper     return;
152497292843SDaniel Jasper   }
152597292843SDaniel Jasper   std::string FileName = Tok.getString();
152697292843SDaniel Jasper   consumeToken(); // filename
152797292843SDaniel Jasper 
152897292843SDaniel Jasper   StringRef FileNameRef = FileName;
152997292843SDaniel Jasper   SmallString<128> ModuleMapFileName;
153097292843SDaniel Jasper   if (llvm::sys::path::is_relative(FileNameRef)) {
153197292843SDaniel Jasper     ModuleMapFileName += Directory->getName();
153297292843SDaniel Jasper     llvm::sys::path::append(ModuleMapFileName, FileName);
153397292843SDaniel Jasper     FileNameRef = ModuleMapFileName.str();
153497292843SDaniel Jasper   }
153597292843SDaniel Jasper   if (const FileEntry *File = SourceMgr.getFileManager().getFile(FileNameRef))
153697292843SDaniel Jasper     Map.parseModuleMapFile(File, /*IsSystem=*/false);
153797292843SDaniel Jasper }
153897292843SDaniel Jasper 
15391fb5c3a6SDouglas Gregor /// \brief Parse a requires declaration.
15401fb5c3a6SDouglas Gregor ///
15411fb5c3a6SDouglas Gregor ///   requires-declaration:
15421fb5c3a6SDouglas Gregor ///     'requires' feature-list
15431fb5c3a6SDouglas Gregor ///
15441fb5c3a6SDouglas Gregor ///   feature-list:
1545a3feee2aSRichard Smith ///     feature ',' feature-list
1546a3feee2aSRichard Smith ///     feature
1547a3feee2aSRichard Smith ///
1548a3feee2aSRichard Smith ///   feature:
1549a3feee2aSRichard Smith ///     '!'[opt] identifier
15501fb5c3a6SDouglas Gregor void ModuleMapParser::parseRequiresDecl() {
15511fb5c3a6SDouglas Gregor   assert(Tok.is(MMToken::RequiresKeyword));
15521fb5c3a6SDouglas Gregor 
15531fb5c3a6SDouglas Gregor   // Parse 'requires' keyword.
15541fb5c3a6SDouglas Gregor   consumeToken();
15551fb5c3a6SDouglas Gregor 
15561fb5c3a6SDouglas Gregor   // Parse the feature-list.
15571fb5c3a6SDouglas Gregor   do {
1558a3feee2aSRichard Smith     bool RequiredState = true;
1559a3feee2aSRichard Smith     if (Tok.is(MMToken::Exclaim)) {
1560a3feee2aSRichard Smith       RequiredState = false;
1561a3feee2aSRichard Smith       consumeToken();
1562a3feee2aSRichard Smith     }
1563a3feee2aSRichard Smith 
15641fb5c3a6SDouglas Gregor     if (!Tok.is(MMToken::Identifier)) {
15651fb5c3a6SDouglas Gregor       Diags.Report(Tok.getLocation(), diag::err_mmap_expected_feature);
15661fb5c3a6SDouglas Gregor       HadError = true;
15671fb5c3a6SDouglas Gregor       return;
15681fb5c3a6SDouglas Gregor     }
15691fb5c3a6SDouglas Gregor 
15701fb5c3a6SDouglas Gregor     // Consume the feature name.
15711fb5c3a6SDouglas Gregor     std::string Feature = Tok.getString();
15721fb5c3a6SDouglas Gregor     consumeToken();
15731fb5c3a6SDouglas Gregor 
15741fb5c3a6SDouglas Gregor     // Add this feature.
1575a3feee2aSRichard Smith     ActiveModule->addRequirement(Feature, RequiredState,
1576a3feee2aSRichard Smith                                  Map.LangOpts, *Map.Target);
15771fb5c3a6SDouglas Gregor 
15781fb5c3a6SDouglas Gregor     if (!Tok.is(MMToken::Comma))
15791fb5c3a6SDouglas Gregor       break;
15801fb5c3a6SDouglas Gregor 
15811fb5c3a6SDouglas Gregor     // Consume the comma.
15821fb5c3a6SDouglas Gregor     consumeToken();
15831fb5c3a6SDouglas Gregor   } while (true);
15841fb5c3a6SDouglas Gregor }
15851fb5c3a6SDouglas Gregor 
1586f2161a70SDouglas Gregor /// \brief Append to \p Paths the set of paths needed to get to the
1587f2161a70SDouglas Gregor /// subframework in which the given module lives.
1588bf8da9d7SBenjamin Kramer static void appendSubframeworkPaths(Module *Mod,
1589f857950dSDmitri Gribenko                                     SmallVectorImpl<char> &Path) {
1590f2161a70SDouglas Gregor   // Collect the framework names from the given module to the top-level module.
1591f857950dSDmitri Gribenko   SmallVector<StringRef, 2> Paths;
1592f2161a70SDouglas Gregor   for (; Mod; Mod = Mod->Parent) {
1593f2161a70SDouglas Gregor     if (Mod->IsFramework)
1594f2161a70SDouglas Gregor       Paths.push_back(Mod->Name);
1595f2161a70SDouglas Gregor   }
1596f2161a70SDouglas Gregor 
1597f2161a70SDouglas Gregor   if (Paths.empty())
1598f2161a70SDouglas Gregor     return;
1599f2161a70SDouglas Gregor 
1600f2161a70SDouglas Gregor   // Add Frameworks/Name.framework for each subframework.
160117381a06SBenjamin Kramer   for (unsigned I = Paths.size() - 1; I != 0; --I)
160217381a06SBenjamin Kramer     llvm::sys::path::append(Path, "Frameworks", Paths[I-1] + ".framework");
1603f2161a70SDouglas Gregor }
1604f2161a70SDouglas Gregor 
1605718292f2SDouglas Gregor /// \brief Parse a header declaration.
1606718292f2SDouglas Gregor ///
1607718292f2SDouglas Gregor ///   header-declaration:
1608322f633cSDouglas Gregor ///     'umbrella'[opt] 'header' string-literal
160959527666SDouglas Gregor ///     'exclude'[opt] 'header' string-literal
1610b53e5483SLawrence Crowl void ModuleMapParser::parseHeaderDecl(MMToken::TokenKind LeadingToken,
1611b53e5483SLawrence Crowl                                       SourceLocation LeadingLoc) {
1612718292f2SDouglas Gregor   assert(Tok.is(MMToken::HeaderKeyword));
16131871ed3dSBenjamin Kramer   consumeToken();
1614718292f2SDouglas Gregor 
1615718292f2SDouglas Gregor   // Parse the header name.
1616718292f2SDouglas Gregor   if (!Tok.is(MMToken::StringLiteral)) {
1617718292f2SDouglas Gregor     Diags.Report(Tok.getLocation(), diag::err_mmap_expected_header)
1618718292f2SDouglas Gregor       << "header";
1619718292f2SDouglas Gregor     HadError = true;
1620718292f2SDouglas Gregor     return;
1621718292f2SDouglas Gregor   }
16220761a8a0SDaniel Jasper   Module::HeaderDirective Header;
16230761a8a0SDaniel Jasper   Header.FileName = Tok.getString();
16240761a8a0SDaniel Jasper   Header.FileNameLoc = consumeToken();
1625718292f2SDouglas Gregor 
1626524e33e1SDouglas Gregor   // Check whether we already have an umbrella.
1627b53e5483SLawrence Crowl   if (LeadingToken == MMToken::UmbrellaKeyword && ActiveModule->Umbrella) {
16280761a8a0SDaniel Jasper     Diags.Report(Header.FileNameLoc, diag::err_mmap_umbrella_clash)
1629524e33e1SDouglas Gregor       << ActiveModule->getFullModuleName();
1630322f633cSDouglas Gregor     HadError = true;
1631322f633cSDouglas Gregor     return;
1632322f633cSDouglas Gregor   }
1633322f633cSDouglas Gregor 
16345257fc63SDouglas Gregor   // Look for this file.
1635e7ab3669SDouglas Gregor   const FileEntry *File = 0;
16363ec6663bSDouglas Gregor   const FileEntry *BuiltinFile = 0;
16372c1dd271SDylan Noblesmith   SmallString<128> PathName;
16380761a8a0SDaniel Jasper   if (llvm::sys::path::is_absolute(Header.FileName)) {
16390761a8a0SDaniel Jasper     PathName = Header.FileName;
1640e7ab3669SDouglas Gregor     File = SourceMgr.getFileManager().getFile(PathName);
1641e7ab3669SDouglas Gregor   } else {
1642e7ab3669SDouglas Gregor     // Search for the header file within the search directory.
16437033127bSDouglas Gregor     PathName = Directory->getName();
1644e7ab3669SDouglas Gregor     unsigned PathLength = PathName.size();
1645755b2055SDouglas Gregor 
1646f2161a70SDouglas Gregor     if (ActiveModule->isPartOfFramework()) {
1647f2161a70SDouglas Gregor       appendSubframeworkPaths(ActiveModule, PathName);
1648755b2055SDouglas Gregor 
1649e7ab3669SDouglas Gregor       // Check whether this file is in the public headers.
16500761a8a0SDaniel Jasper       llvm::sys::path::append(PathName, "Headers", Header.FileName);
1651e7ab3669SDouglas Gregor       File = SourceMgr.getFileManager().getFile(PathName);
1652e7ab3669SDouglas Gregor 
1653e7ab3669SDouglas Gregor       if (!File) {
1654e7ab3669SDouglas Gregor         // Check whether this file is in the private headers.
1655e7ab3669SDouglas Gregor         PathName.resize(PathLength);
16560761a8a0SDaniel Jasper         llvm::sys::path::append(PathName, "PrivateHeaders", Header.FileName);
1657e7ab3669SDouglas Gregor         File = SourceMgr.getFileManager().getFile(PathName);
1658e7ab3669SDouglas Gregor       }
1659e7ab3669SDouglas Gregor     } else {
1660e7ab3669SDouglas Gregor       // Lookup for normal headers.
16610761a8a0SDaniel Jasper       llvm::sys::path::append(PathName, Header.FileName);
1662e7ab3669SDouglas Gregor       File = SourceMgr.getFileManager().getFile(PathName);
16633ec6663bSDouglas Gregor 
16643ec6663bSDouglas Gregor       // If this is a system module with a top-level header, this header
16653ec6663bSDouglas Gregor       // may have a counterpart (or replacement) in the set of headers
16663ec6663bSDouglas Gregor       // supplied by Clang. Find that builtin header.
1667b53e5483SLawrence Crowl       if (ActiveModule->IsSystem && LeadingToken != MMToken::UmbrellaKeyword &&
1668b53e5483SLawrence Crowl           BuiltinIncludeDir && BuiltinIncludeDir != Directory &&
16690761a8a0SDaniel Jasper           isBuiltinHeader(Header.FileName)) {
16702c1dd271SDylan Noblesmith         SmallString<128> BuiltinPathName(BuiltinIncludeDir->getName());
16710761a8a0SDaniel Jasper         llvm::sys::path::append(BuiltinPathName, Header.FileName);
16723ec6663bSDouglas Gregor         BuiltinFile = SourceMgr.getFileManager().getFile(BuiltinPathName);
16733ec6663bSDouglas Gregor 
16743ec6663bSDouglas Gregor         // If Clang supplies this header but the underlying system does not,
16753ec6663bSDouglas Gregor         // just silently swap in our builtin version. Otherwise, we'll end
16763ec6663bSDouglas Gregor         // up adding both (later).
16773ec6663bSDouglas Gregor         if (!File && BuiltinFile) {
16783ec6663bSDouglas Gregor           File = BuiltinFile;
16793ec6663bSDouglas Gregor           BuiltinFile = 0;
16803ec6663bSDouglas Gregor         }
16813ec6663bSDouglas Gregor       }
1682e7ab3669SDouglas Gregor     }
1683e7ab3669SDouglas Gregor   }
16845257fc63SDouglas Gregor 
16855257fc63SDouglas Gregor   // FIXME: We shouldn't be eagerly stat'ing every file named in a module map.
16865257fc63SDouglas Gregor   // Come up with a lazy way to do this.
1687e7ab3669SDouglas Gregor   if (File) {
168897da9178SDaniel Jasper     if (LeadingToken == MMToken::UmbrellaKeyword) {
1689322f633cSDouglas Gregor       const DirectoryEntry *UmbrellaDir = File->getDir();
169059527666SDouglas Gregor       if (Module *UmbrellaModule = Map.UmbrellaDirs[UmbrellaDir]) {
1691b53e5483SLawrence Crowl         Diags.Report(LeadingLoc, diag::err_mmap_umbrella_clash)
169259527666SDouglas Gregor           << UmbrellaModule->getFullModuleName();
1693322f633cSDouglas Gregor         HadError = true;
16945257fc63SDouglas Gregor       } else {
1695322f633cSDouglas Gregor         // Record this umbrella header.
1696322f633cSDouglas Gregor         Map.setUmbrellaHeader(ActiveModule, File);
1697322f633cSDouglas Gregor       }
1698322f633cSDouglas Gregor     } else {
1699322f633cSDouglas Gregor       // Record this header.
1700b53e5483SLawrence Crowl       ModuleMap::ModuleHeaderRole Role = ModuleMap::NormalHeader;
1701b53e5483SLawrence Crowl       if (LeadingToken == MMToken::ExcludeKeyword)
1702b53e5483SLawrence Crowl         Role = ModuleMap::ExcludedHeader;
1703b53e5483SLawrence Crowl       else if (LeadingToken == MMToken::PrivateKeyword)
1704b53e5483SLawrence Crowl         Role = ModuleMap::PrivateHeader;
1705b53e5483SLawrence Crowl       else
1706b53e5483SLawrence Crowl         assert(LeadingToken == MMToken::HeaderKeyword);
1707b53e5483SLawrence Crowl 
1708b53e5483SLawrence Crowl       Map.addHeader(ActiveModule, File, Role);
17093ec6663bSDouglas Gregor 
17103ec6663bSDouglas Gregor       // If there is a builtin counterpart to this file, add it now.
17113ec6663bSDouglas Gregor       if (BuiltinFile)
1712b53e5483SLawrence Crowl         Map.addHeader(ActiveModule, BuiltinFile, Role);
17135257fc63SDouglas Gregor     }
1714b53e5483SLawrence Crowl   } else if (LeadingToken != MMToken::ExcludeKeyword) {
17154b27a64bSDouglas Gregor     // Ignore excluded header files. They're optional anyway.
17164b27a64bSDouglas Gregor 
17170761a8a0SDaniel Jasper     // If we find a module that has a missing header, we mark this module as
17180761a8a0SDaniel Jasper     // unavailable and store the header directive for displaying diagnostics.
17190761a8a0SDaniel Jasper     Header.IsUmbrella = LeadingToken == MMToken::UmbrellaKeyword;
1720ec8c9752SBen Langmuir     ActiveModule->markUnavailable();
17210761a8a0SDaniel Jasper     ActiveModule->MissingHeaders.push_back(Header);
17225257fc63SDouglas Gregor   }
1723718292f2SDouglas Gregor }
1724718292f2SDouglas Gregor 
1725524e33e1SDouglas Gregor /// \brief Parse an umbrella directory declaration.
1726524e33e1SDouglas Gregor ///
1727524e33e1SDouglas Gregor ///   umbrella-dir-declaration:
1728524e33e1SDouglas Gregor ///     umbrella string-literal
1729524e33e1SDouglas Gregor void ModuleMapParser::parseUmbrellaDirDecl(SourceLocation UmbrellaLoc) {
1730524e33e1SDouglas Gregor   // Parse the directory name.
1731524e33e1SDouglas Gregor   if (!Tok.is(MMToken::StringLiteral)) {
1732524e33e1SDouglas Gregor     Diags.Report(Tok.getLocation(), diag::err_mmap_expected_header)
1733524e33e1SDouglas Gregor       << "umbrella";
1734524e33e1SDouglas Gregor     HadError = true;
1735524e33e1SDouglas Gregor     return;
1736524e33e1SDouglas Gregor   }
1737524e33e1SDouglas Gregor 
1738524e33e1SDouglas Gregor   std::string DirName = Tok.getString();
1739524e33e1SDouglas Gregor   SourceLocation DirNameLoc = consumeToken();
1740524e33e1SDouglas Gregor 
1741524e33e1SDouglas Gregor   // Check whether we already have an umbrella.
1742524e33e1SDouglas Gregor   if (ActiveModule->Umbrella) {
1743524e33e1SDouglas Gregor     Diags.Report(DirNameLoc, diag::err_mmap_umbrella_clash)
1744524e33e1SDouglas Gregor       << ActiveModule->getFullModuleName();
1745524e33e1SDouglas Gregor     HadError = true;
1746524e33e1SDouglas Gregor     return;
1747524e33e1SDouglas Gregor   }
1748524e33e1SDouglas Gregor 
1749524e33e1SDouglas Gregor   // Look for this file.
1750524e33e1SDouglas Gregor   const DirectoryEntry *Dir = 0;
1751524e33e1SDouglas Gregor   if (llvm::sys::path::is_absolute(DirName))
1752524e33e1SDouglas Gregor     Dir = SourceMgr.getFileManager().getDirectory(DirName);
1753524e33e1SDouglas Gregor   else {
17542c1dd271SDylan Noblesmith     SmallString<128> PathName;
1755524e33e1SDouglas Gregor     PathName = Directory->getName();
1756524e33e1SDouglas Gregor     llvm::sys::path::append(PathName, DirName);
1757524e33e1SDouglas Gregor     Dir = SourceMgr.getFileManager().getDirectory(PathName);
1758524e33e1SDouglas Gregor   }
1759524e33e1SDouglas Gregor 
1760524e33e1SDouglas Gregor   if (!Dir) {
1761524e33e1SDouglas Gregor     Diags.Report(DirNameLoc, diag::err_mmap_umbrella_dir_not_found)
1762524e33e1SDouglas Gregor       << DirName;
1763524e33e1SDouglas Gregor     HadError = true;
1764524e33e1SDouglas Gregor     return;
1765524e33e1SDouglas Gregor   }
1766524e33e1SDouglas Gregor 
1767524e33e1SDouglas Gregor   if (Module *OwningModule = Map.UmbrellaDirs[Dir]) {
1768524e33e1SDouglas Gregor     Diags.Report(UmbrellaLoc, diag::err_mmap_umbrella_clash)
1769524e33e1SDouglas Gregor       << OwningModule->getFullModuleName();
1770524e33e1SDouglas Gregor     HadError = true;
1771524e33e1SDouglas Gregor     return;
1772524e33e1SDouglas Gregor   }
1773524e33e1SDouglas Gregor 
1774524e33e1SDouglas Gregor   // Record this umbrella directory.
1775524e33e1SDouglas Gregor   Map.setUmbrellaDir(ActiveModule, Dir);
1776524e33e1SDouglas Gregor }
1777524e33e1SDouglas Gregor 
17782b82c2a5SDouglas Gregor /// \brief Parse a module export declaration.
17792b82c2a5SDouglas Gregor ///
17802b82c2a5SDouglas Gregor ///   export-declaration:
17812b82c2a5SDouglas Gregor ///     'export' wildcard-module-id
17822b82c2a5SDouglas Gregor ///
17832b82c2a5SDouglas Gregor ///   wildcard-module-id:
17842b82c2a5SDouglas Gregor ///     identifier
17852b82c2a5SDouglas Gregor ///     '*'
17862b82c2a5SDouglas Gregor ///     identifier '.' wildcard-module-id
17872b82c2a5SDouglas Gregor void ModuleMapParser::parseExportDecl() {
17882b82c2a5SDouglas Gregor   assert(Tok.is(MMToken::ExportKeyword));
17892b82c2a5SDouglas Gregor   SourceLocation ExportLoc = consumeToken();
17902b82c2a5SDouglas Gregor 
17912b82c2a5SDouglas Gregor   // Parse the module-id with an optional wildcard at the end.
17922b82c2a5SDouglas Gregor   ModuleId ParsedModuleId;
17932b82c2a5SDouglas Gregor   bool Wildcard = false;
17942b82c2a5SDouglas Gregor   do {
17952b82c2a5SDouglas Gregor     if (Tok.is(MMToken::Identifier)) {
17962b82c2a5SDouglas Gregor       ParsedModuleId.push_back(std::make_pair(Tok.getString(),
17972b82c2a5SDouglas Gregor                                               Tok.getLocation()));
17982b82c2a5SDouglas Gregor       consumeToken();
17992b82c2a5SDouglas Gregor 
18002b82c2a5SDouglas Gregor       if (Tok.is(MMToken::Period)) {
18012b82c2a5SDouglas Gregor         consumeToken();
18022b82c2a5SDouglas Gregor         continue;
18032b82c2a5SDouglas Gregor       }
18042b82c2a5SDouglas Gregor 
18052b82c2a5SDouglas Gregor       break;
18062b82c2a5SDouglas Gregor     }
18072b82c2a5SDouglas Gregor 
18082b82c2a5SDouglas Gregor     if(Tok.is(MMToken::Star)) {
18092b82c2a5SDouglas Gregor       Wildcard = true;
1810f5eedd05SDouglas Gregor       consumeToken();
18112b82c2a5SDouglas Gregor       break;
18122b82c2a5SDouglas Gregor     }
18132b82c2a5SDouglas Gregor 
1814ba7f2f71SDaniel Jasper     Diags.Report(Tok.getLocation(), diag::err_mmap_module_id);
18152b82c2a5SDouglas Gregor     HadError = true;
18162b82c2a5SDouglas Gregor     return;
18172b82c2a5SDouglas Gregor   } while (true);
18182b82c2a5SDouglas Gregor 
18192b82c2a5SDouglas Gregor   Module::UnresolvedExportDecl Unresolved = {
18202b82c2a5SDouglas Gregor     ExportLoc, ParsedModuleId, Wildcard
18212b82c2a5SDouglas Gregor   };
18222b82c2a5SDouglas Gregor   ActiveModule->UnresolvedExports.push_back(Unresolved);
18232b82c2a5SDouglas Gregor }
18242b82c2a5SDouglas Gregor 
1825ba7f2f71SDaniel Jasper /// \brief Parse a module uses declaration.
1826ba7f2f71SDaniel Jasper ///
1827ba7f2f71SDaniel Jasper ///   uses-declaration:
1828ba7f2f71SDaniel Jasper ///     'uses' wildcard-module-id
1829ba7f2f71SDaniel Jasper void ModuleMapParser::parseUseDecl() {
1830ba7f2f71SDaniel Jasper   assert(Tok.is(MMToken::UseKeyword));
1831ba7f2f71SDaniel Jasper   consumeToken();
1832ba7f2f71SDaniel Jasper   // Parse the module-id.
1833ba7f2f71SDaniel Jasper   ModuleId ParsedModuleId;
18343cd34c76SDaniel Jasper   parseModuleId(ParsedModuleId);
1835ba7f2f71SDaniel Jasper 
1836ba7f2f71SDaniel Jasper   ActiveModule->UnresolvedDirectUses.push_back(ParsedModuleId);
1837ba7f2f71SDaniel Jasper }
1838ba7f2f71SDaniel Jasper 
18396ddfca91SDouglas Gregor /// \brief Parse a link declaration.
18406ddfca91SDouglas Gregor ///
18416ddfca91SDouglas Gregor ///   module-declaration:
18426ddfca91SDouglas Gregor ///     'link' 'framework'[opt] string-literal
18436ddfca91SDouglas Gregor void ModuleMapParser::parseLinkDecl() {
18446ddfca91SDouglas Gregor   assert(Tok.is(MMToken::LinkKeyword));
18456ddfca91SDouglas Gregor   SourceLocation LinkLoc = consumeToken();
18466ddfca91SDouglas Gregor 
18476ddfca91SDouglas Gregor   // Parse the optional 'framework' keyword.
18486ddfca91SDouglas Gregor   bool IsFramework = false;
18496ddfca91SDouglas Gregor   if (Tok.is(MMToken::FrameworkKeyword)) {
18506ddfca91SDouglas Gregor     consumeToken();
18516ddfca91SDouglas Gregor     IsFramework = true;
18526ddfca91SDouglas Gregor   }
18536ddfca91SDouglas Gregor 
18546ddfca91SDouglas Gregor   // Parse the library name
18556ddfca91SDouglas Gregor   if (!Tok.is(MMToken::StringLiteral)) {
18566ddfca91SDouglas Gregor     Diags.Report(Tok.getLocation(), diag::err_mmap_expected_library_name)
18576ddfca91SDouglas Gregor       << IsFramework << SourceRange(LinkLoc);
18586ddfca91SDouglas Gregor     HadError = true;
18596ddfca91SDouglas Gregor     return;
18606ddfca91SDouglas Gregor   }
18616ddfca91SDouglas Gregor 
18626ddfca91SDouglas Gregor   std::string LibraryName = Tok.getString();
18636ddfca91SDouglas Gregor   consumeToken();
18646ddfca91SDouglas Gregor   ActiveModule->LinkLibraries.push_back(Module::LinkLibrary(LibraryName,
18656ddfca91SDouglas Gregor                                                             IsFramework));
18666ddfca91SDouglas Gregor }
18676ddfca91SDouglas Gregor 
186835b13eceSDouglas Gregor /// \brief Parse a configuration macro declaration.
186935b13eceSDouglas Gregor ///
187035b13eceSDouglas Gregor ///   module-declaration:
187135b13eceSDouglas Gregor ///     'config_macros' attributes[opt] config-macro-list?
187235b13eceSDouglas Gregor ///
187335b13eceSDouglas Gregor ///   config-macro-list:
187435b13eceSDouglas Gregor ///     identifier (',' identifier)?
187535b13eceSDouglas Gregor void ModuleMapParser::parseConfigMacros() {
187635b13eceSDouglas Gregor   assert(Tok.is(MMToken::ConfigMacros));
187735b13eceSDouglas Gregor   SourceLocation ConfigMacrosLoc = consumeToken();
187835b13eceSDouglas Gregor 
187935b13eceSDouglas Gregor   // Only top-level modules can have configuration macros.
188035b13eceSDouglas Gregor   if (ActiveModule->Parent) {
188135b13eceSDouglas Gregor     Diags.Report(ConfigMacrosLoc, diag::err_mmap_config_macro_submodule);
188235b13eceSDouglas Gregor   }
188335b13eceSDouglas Gregor 
188435b13eceSDouglas Gregor   // Parse the optional attributes.
188535b13eceSDouglas Gregor   Attributes Attrs;
188635b13eceSDouglas Gregor   parseOptionalAttributes(Attrs);
188735b13eceSDouglas Gregor   if (Attrs.IsExhaustive && !ActiveModule->Parent) {
188835b13eceSDouglas Gregor     ActiveModule->ConfigMacrosExhaustive = true;
188935b13eceSDouglas Gregor   }
189035b13eceSDouglas Gregor 
189135b13eceSDouglas Gregor   // If we don't have an identifier, we're done.
189235b13eceSDouglas Gregor   if (!Tok.is(MMToken::Identifier))
189335b13eceSDouglas Gregor     return;
189435b13eceSDouglas Gregor 
189535b13eceSDouglas Gregor   // Consume the first identifier.
189635b13eceSDouglas Gregor   if (!ActiveModule->Parent) {
189735b13eceSDouglas Gregor     ActiveModule->ConfigMacros.push_back(Tok.getString().str());
189835b13eceSDouglas Gregor   }
189935b13eceSDouglas Gregor   consumeToken();
190035b13eceSDouglas Gregor 
190135b13eceSDouglas Gregor   do {
190235b13eceSDouglas Gregor     // If there's a comma, consume it.
190335b13eceSDouglas Gregor     if (!Tok.is(MMToken::Comma))
190435b13eceSDouglas Gregor       break;
190535b13eceSDouglas Gregor     consumeToken();
190635b13eceSDouglas Gregor 
190735b13eceSDouglas Gregor     // We expect to see a macro name here.
190835b13eceSDouglas Gregor     if (!Tok.is(MMToken::Identifier)) {
190935b13eceSDouglas Gregor       Diags.Report(Tok.getLocation(), diag::err_mmap_expected_config_macro);
191035b13eceSDouglas Gregor       break;
191135b13eceSDouglas Gregor     }
191235b13eceSDouglas Gregor 
191335b13eceSDouglas Gregor     // Consume the macro name.
191435b13eceSDouglas Gregor     if (!ActiveModule->Parent) {
191535b13eceSDouglas Gregor       ActiveModule->ConfigMacros.push_back(Tok.getString().str());
191635b13eceSDouglas Gregor     }
191735b13eceSDouglas Gregor     consumeToken();
191835b13eceSDouglas Gregor   } while (true);
191935b13eceSDouglas Gregor }
192035b13eceSDouglas Gregor 
1921fb912657SDouglas Gregor /// \brief Format a module-id into a string.
1922fb912657SDouglas Gregor static std::string formatModuleId(const ModuleId &Id) {
1923fb912657SDouglas Gregor   std::string result;
1924fb912657SDouglas Gregor   {
1925fb912657SDouglas Gregor     llvm::raw_string_ostream OS(result);
1926fb912657SDouglas Gregor 
1927fb912657SDouglas Gregor     for (unsigned I = 0, N = Id.size(); I != N; ++I) {
1928fb912657SDouglas Gregor       if (I)
1929fb912657SDouglas Gregor         OS << ".";
1930fb912657SDouglas Gregor       OS << Id[I].first;
1931fb912657SDouglas Gregor     }
1932fb912657SDouglas Gregor   }
1933fb912657SDouglas Gregor 
1934fb912657SDouglas Gregor   return result;
1935fb912657SDouglas Gregor }
1936fb912657SDouglas Gregor 
1937fb912657SDouglas Gregor /// \brief Parse a conflict declaration.
1938fb912657SDouglas Gregor ///
1939fb912657SDouglas Gregor ///   module-declaration:
1940fb912657SDouglas Gregor ///     'conflict' module-id ',' string-literal
1941fb912657SDouglas Gregor void ModuleMapParser::parseConflict() {
1942fb912657SDouglas Gregor   assert(Tok.is(MMToken::Conflict));
1943fb912657SDouglas Gregor   SourceLocation ConflictLoc = consumeToken();
1944fb912657SDouglas Gregor   Module::UnresolvedConflict Conflict;
1945fb912657SDouglas Gregor 
1946fb912657SDouglas Gregor   // Parse the module-id.
1947fb912657SDouglas Gregor   if (parseModuleId(Conflict.Id))
1948fb912657SDouglas Gregor     return;
1949fb912657SDouglas Gregor 
1950fb912657SDouglas Gregor   // Parse the ','.
1951fb912657SDouglas Gregor   if (!Tok.is(MMToken::Comma)) {
1952fb912657SDouglas Gregor     Diags.Report(Tok.getLocation(), diag::err_mmap_expected_conflicts_comma)
1953fb912657SDouglas Gregor       << SourceRange(ConflictLoc);
1954fb912657SDouglas Gregor     return;
1955fb912657SDouglas Gregor   }
1956fb912657SDouglas Gregor   consumeToken();
1957fb912657SDouglas Gregor 
1958fb912657SDouglas Gregor   // Parse the message.
1959fb912657SDouglas Gregor   if (!Tok.is(MMToken::StringLiteral)) {
1960fb912657SDouglas Gregor     Diags.Report(Tok.getLocation(), diag::err_mmap_expected_conflicts_message)
1961fb912657SDouglas Gregor       << formatModuleId(Conflict.Id);
1962fb912657SDouglas Gregor     return;
1963fb912657SDouglas Gregor   }
1964fb912657SDouglas Gregor   Conflict.Message = Tok.getString().str();
1965fb912657SDouglas Gregor   consumeToken();
1966fb912657SDouglas Gregor 
1967fb912657SDouglas Gregor   // Add this unresolved conflict.
1968fb912657SDouglas Gregor   ActiveModule->UnresolvedConflicts.push_back(Conflict);
1969fb912657SDouglas Gregor }
1970fb912657SDouglas Gregor 
19716ddfca91SDouglas Gregor /// \brief Parse an inferred module declaration (wildcard modules).
19729194a91dSDouglas Gregor ///
19739194a91dSDouglas Gregor ///   module-declaration:
19749194a91dSDouglas Gregor ///     'explicit'[opt] 'framework'[opt] 'module' * attributes[opt]
19759194a91dSDouglas Gregor ///       { inferred-module-member* }
19769194a91dSDouglas Gregor ///
19779194a91dSDouglas Gregor ///   inferred-module-member:
19789194a91dSDouglas Gregor ///     'export' '*'
19799194a91dSDouglas Gregor ///     'exclude' identifier
19809194a91dSDouglas Gregor void ModuleMapParser::parseInferredModuleDecl(bool Framework, bool Explicit) {
198173441091SDouglas Gregor   assert(Tok.is(MMToken::Star));
198273441091SDouglas Gregor   SourceLocation StarLoc = consumeToken();
198373441091SDouglas Gregor   bool Failed = false;
198473441091SDouglas Gregor 
198573441091SDouglas Gregor   // Inferred modules must be submodules.
19869194a91dSDouglas Gregor   if (!ActiveModule && !Framework) {
198773441091SDouglas Gregor     Diags.Report(StarLoc, diag::err_mmap_top_level_inferred_submodule);
198873441091SDouglas Gregor     Failed = true;
198973441091SDouglas Gregor   }
199073441091SDouglas Gregor 
19919194a91dSDouglas Gregor   if (ActiveModule) {
1992524e33e1SDouglas Gregor     // Inferred modules must have umbrella directories.
19934898cde4SBen Langmuir     if (!Failed && ActiveModule->IsAvailable &&
19944898cde4SBen Langmuir         !ActiveModule->getUmbrellaDir()) {
199573441091SDouglas Gregor       Diags.Report(StarLoc, diag::err_mmap_inferred_no_umbrella);
199673441091SDouglas Gregor       Failed = true;
199773441091SDouglas Gregor     }
199873441091SDouglas Gregor 
199973441091SDouglas Gregor     // Check for redefinition of an inferred module.
2000dd005f69SDouglas Gregor     if (!Failed && ActiveModule->InferSubmodules) {
200173441091SDouglas Gregor       Diags.Report(StarLoc, diag::err_mmap_inferred_redef);
2002dd005f69SDouglas Gregor       if (ActiveModule->InferredSubmoduleLoc.isValid())
2003dd005f69SDouglas Gregor         Diags.Report(ActiveModule->InferredSubmoduleLoc,
200473441091SDouglas Gregor                      diag::note_mmap_prev_definition);
200573441091SDouglas Gregor       Failed = true;
200673441091SDouglas Gregor     }
200773441091SDouglas Gregor 
20089194a91dSDouglas Gregor     // Check for the 'framework' keyword, which is not permitted here.
20099194a91dSDouglas Gregor     if (Framework) {
20109194a91dSDouglas Gregor       Diags.Report(StarLoc, diag::err_mmap_inferred_framework_submodule);
20119194a91dSDouglas Gregor       Framework = false;
20129194a91dSDouglas Gregor     }
20139194a91dSDouglas Gregor   } else if (Explicit) {
20149194a91dSDouglas Gregor     Diags.Report(StarLoc, diag::err_mmap_explicit_inferred_framework);
20159194a91dSDouglas Gregor     Explicit = false;
20169194a91dSDouglas Gregor   }
20179194a91dSDouglas Gregor 
201873441091SDouglas Gregor   // If there were any problems with this inferred submodule, skip its body.
201973441091SDouglas Gregor   if (Failed) {
202073441091SDouglas Gregor     if (Tok.is(MMToken::LBrace)) {
202173441091SDouglas Gregor       consumeToken();
202273441091SDouglas Gregor       skipUntil(MMToken::RBrace);
202373441091SDouglas Gregor       if (Tok.is(MMToken::RBrace))
202473441091SDouglas Gregor         consumeToken();
202573441091SDouglas Gregor     }
202673441091SDouglas Gregor     HadError = true;
202773441091SDouglas Gregor     return;
202873441091SDouglas Gregor   }
202973441091SDouglas Gregor 
20309194a91dSDouglas Gregor   // Parse optional attributes.
20314442605fSBill Wendling   Attributes Attrs;
20329194a91dSDouglas Gregor   parseOptionalAttributes(Attrs);
20339194a91dSDouglas Gregor 
20349194a91dSDouglas Gregor   if (ActiveModule) {
203573441091SDouglas Gregor     // Note that we have an inferred submodule.
2036dd005f69SDouglas Gregor     ActiveModule->InferSubmodules = true;
2037dd005f69SDouglas Gregor     ActiveModule->InferredSubmoduleLoc = StarLoc;
2038dd005f69SDouglas Gregor     ActiveModule->InferExplicitSubmodules = Explicit;
20399194a91dSDouglas Gregor   } else {
20409194a91dSDouglas Gregor     // We'll be inferring framework modules for this directory.
20419194a91dSDouglas Gregor     Map.InferredDirectories[Directory].InferModules = true;
20429194a91dSDouglas Gregor     Map.InferredDirectories[Directory].InferSystemModules = Attrs.IsSystem;
2043beee15e7SBen Langmuir     Map.InferredDirectories[Directory].ModuleMapFile = ModuleMapFile;
2044131daca0SRichard Smith     // FIXME: Handle the 'framework' keyword.
20459194a91dSDouglas Gregor   }
204673441091SDouglas Gregor 
204773441091SDouglas Gregor   // Parse the opening brace.
204873441091SDouglas Gregor   if (!Tok.is(MMToken::LBrace)) {
204973441091SDouglas Gregor     Diags.Report(Tok.getLocation(), diag::err_mmap_expected_lbrace_wildcard);
205073441091SDouglas Gregor     HadError = true;
205173441091SDouglas Gregor     return;
205273441091SDouglas Gregor   }
205373441091SDouglas Gregor   SourceLocation LBraceLoc = consumeToken();
205473441091SDouglas Gregor 
205573441091SDouglas Gregor   // Parse the body of the inferred submodule.
205673441091SDouglas Gregor   bool Done = false;
205773441091SDouglas Gregor   do {
205873441091SDouglas Gregor     switch (Tok.Kind) {
205973441091SDouglas Gregor     case MMToken::EndOfFile:
206073441091SDouglas Gregor     case MMToken::RBrace:
206173441091SDouglas Gregor       Done = true;
206273441091SDouglas Gregor       break;
206373441091SDouglas Gregor 
20649194a91dSDouglas Gregor     case MMToken::ExcludeKeyword: {
20659194a91dSDouglas Gregor       if (ActiveModule) {
20669194a91dSDouglas Gregor         Diags.Report(Tok.getLocation(), diag::err_mmap_expected_inferred_member)
2067162405daSDouglas Gregor           << (ActiveModule != 0);
20689194a91dSDouglas Gregor         consumeToken();
20699194a91dSDouglas Gregor         break;
20709194a91dSDouglas Gregor       }
20719194a91dSDouglas Gregor 
20729194a91dSDouglas Gregor       consumeToken();
20739194a91dSDouglas Gregor       if (!Tok.is(MMToken::Identifier)) {
20749194a91dSDouglas Gregor         Diags.Report(Tok.getLocation(), diag::err_mmap_missing_exclude_name);
20759194a91dSDouglas Gregor         break;
20769194a91dSDouglas Gregor       }
20779194a91dSDouglas Gregor 
20789194a91dSDouglas Gregor       Map.InferredDirectories[Directory].ExcludedModules
20799194a91dSDouglas Gregor         .push_back(Tok.getString());
20809194a91dSDouglas Gregor       consumeToken();
20819194a91dSDouglas Gregor       break;
20829194a91dSDouglas Gregor     }
20839194a91dSDouglas Gregor 
20849194a91dSDouglas Gregor     case MMToken::ExportKeyword:
20859194a91dSDouglas Gregor       if (!ActiveModule) {
20869194a91dSDouglas Gregor         Diags.Report(Tok.getLocation(), diag::err_mmap_expected_inferred_member)
2087162405daSDouglas Gregor           << (ActiveModule != 0);
20889194a91dSDouglas Gregor         consumeToken();
20899194a91dSDouglas Gregor         break;
20909194a91dSDouglas Gregor       }
20919194a91dSDouglas Gregor 
209273441091SDouglas Gregor       consumeToken();
209373441091SDouglas Gregor       if (Tok.is(MMToken::Star))
2094dd005f69SDouglas Gregor         ActiveModule->InferExportWildcard = true;
209573441091SDouglas Gregor       else
209673441091SDouglas Gregor         Diags.Report(Tok.getLocation(),
209773441091SDouglas Gregor                      diag::err_mmap_expected_export_wildcard);
209873441091SDouglas Gregor       consumeToken();
209973441091SDouglas Gregor       break;
210073441091SDouglas Gregor 
210173441091SDouglas Gregor     case MMToken::ExplicitKeyword:
210273441091SDouglas Gregor     case MMToken::ModuleKeyword:
210373441091SDouglas Gregor     case MMToken::HeaderKeyword:
2104b53e5483SLawrence Crowl     case MMToken::PrivateKeyword:
210573441091SDouglas Gregor     case MMToken::UmbrellaKeyword:
210673441091SDouglas Gregor     default:
21079194a91dSDouglas Gregor       Diags.Report(Tok.getLocation(), diag::err_mmap_expected_inferred_member)
2108162405daSDouglas Gregor           << (ActiveModule != 0);
210973441091SDouglas Gregor       consumeToken();
211073441091SDouglas Gregor       break;
211173441091SDouglas Gregor     }
211273441091SDouglas Gregor   } while (!Done);
211373441091SDouglas Gregor 
211473441091SDouglas Gregor   if (Tok.is(MMToken::RBrace))
211573441091SDouglas Gregor     consumeToken();
211673441091SDouglas Gregor   else {
211773441091SDouglas Gregor     Diags.Report(Tok.getLocation(), diag::err_mmap_expected_rbrace);
211873441091SDouglas Gregor     Diags.Report(LBraceLoc, diag::note_mmap_lbrace_match);
211973441091SDouglas Gregor     HadError = true;
212073441091SDouglas Gregor   }
212173441091SDouglas Gregor }
212273441091SDouglas Gregor 
21239194a91dSDouglas Gregor /// \brief Parse optional attributes.
21249194a91dSDouglas Gregor ///
21259194a91dSDouglas Gregor ///   attributes:
21269194a91dSDouglas Gregor ///     attribute attributes
21279194a91dSDouglas Gregor ///     attribute
21289194a91dSDouglas Gregor ///
21299194a91dSDouglas Gregor ///   attribute:
21309194a91dSDouglas Gregor ///     [ identifier ]
21319194a91dSDouglas Gregor ///
21329194a91dSDouglas Gregor /// \param Attrs Will be filled in with the parsed attributes.
21339194a91dSDouglas Gregor ///
21349194a91dSDouglas Gregor /// \returns true if an error occurred, false otherwise.
21354442605fSBill Wendling bool ModuleMapParser::parseOptionalAttributes(Attributes &Attrs) {
21369194a91dSDouglas Gregor   bool HadError = false;
21379194a91dSDouglas Gregor 
21389194a91dSDouglas Gregor   while (Tok.is(MMToken::LSquare)) {
21399194a91dSDouglas Gregor     // Consume the '['.
21409194a91dSDouglas Gregor     SourceLocation LSquareLoc = consumeToken();
21419194a91dSDouglas Gregor 
21429194a91dSDouglas Gregor     // Check whether we have an attribute name here.
21439194a91dSDouglas Gregor     if (!Tok.is(MMToken::Identifier)) {
21449194a91dSDouglas Gregor       Diags.Report(Tok.getLocation(), diag::err_mmap_expected_attribute);
21459194a91dSDouglas Gregor       skipUntil(MMToken::RSquare);
21469194a91dSDouglas Gregor       if (Tok.is(MMToken::RSquare))
21479194a91dSDouglas Gregor         consumeToken();
21489194a91dSDouglas Gregor       HadError = true;
21499194a91dSDouglas Gregor     }
21509194a91dSDouglas Gregor 
21519194a91dSDouglas Gregor     // Decode the attribute name.
21529194a91dSDouglas Gregor     AttributeKind Attribute
21539194a91dSDouglas Gregor       = llvm::StringSwitch<AttributeKind>(Tok.getString())
215435b13eceSDouglas Gregor           .Case("exhaustive", AT_exhaustive)
215577944868SRichard Smith           .Case("extern_c", AT_extern_c)
21569194a91dSDouglas Gregor           .Case("system", AT_system)
21579194a91dSDouglas Gregor           .Default(AT_unknown);
21589194a91dSDouglas Gregor     switch (Attribute) {
21599194a91dSDouglas Gregor     case AT_unknown:
21609194a91dSDouglas Gregor       Diags.Report(Tok.getLocation(), diag::warn_mmap_unknown_attribute)
21619194a91dSDouglas Gregor         << Tok.getString();
21629194a91dSDouglas Gregor       break;
21639194a91dSDouglas Gregor 
21649194a91dSDouglas Gregor     case AT_system:
21659194a91dSDouglas Gregor       Attrs.IsSystem = true;
21669194a91dSDouglas Gregor       break;
216735b13eceSDouglas Gregor 
216877944868SRichard Smith     case AT_extern_c:
216977944868SRichard Smith       Attrs.IsExternC = true;
217077944868SRichard Smith       break;
217177944868SRichard Smith 
217235b13eceSDouglas Gregor     case AT_exhaustive:
217335b13eceSDouglas Gregor       Attrs.IsExhaustive = true;
217435b13eceSDouglas Gregor       break;
21759194a91dSDouglas Gregor     }
21769194a91dSDouglas Gregor     consumeToken();
21779194a91dSDouglas Gregor 
21789194a91dSDouglas Gregor     // Consume the ']'.
21799194a91dSDouglas Gregor     if (!Tok.is(MMToken::RSquare)) {
21809194a91dSDouglas Gregor       Diags.Report(Tok.getLocation(), diag::err_mmap_expected_rsquare);
21819194a91dSDouglas Gregor       Diags.Report(LSquareLoc, diag::note_mmap_lsquare_match);
21829194a91dSDouglas Gregor       skipUntil(MMToken::RSquare);
21839194a91dSDouglas Gregor       HadError = true;
21849194a91dSDouglas Gregor     }
21859194a91dSDouglas Gregor 
21869194a91dSDouglas Gregor     if (Tok.is(MMToken::RSquare))
21879194a91dSDouglas Gregor       consumeToken();
21889194a91dSDouglas Gregor   }
21899194a91dSDouglas Gregor 
21909194a91dSDouglas Gregor   return HadError;
21919194a91dSDouglas Gregor }
21929194a91dSDouglas Gregor 
2193718292f2SDouglas Gregor /// \brief Parse a module map file.
2194718292f2SDouglas Gregor ///
2195718292f2SDouglas Gregor ///   module-map-file:
2196718292f2SDouglas Gregor ///     module-declaration*
2197718292f2SDouglas Gregor bool ModuleMapParser::parseModuleMapFile() {
2198718292f2SDouglas Gregor   do {
2199718292f2SDouglas Gregor     switch (Tok.Kind) {
2200718292f2SDouglas Gregor     case MMToken::EndOfFile:
2201718292f2SDouglas Gregor       return HadError;
2202718292f2SDouglas Gregor 
2203e7ab3669SDouglas Gregor     case MMToken::ExplicitKeyword:
220497292843SDaniel Jasper     case MMToken::ExternKeyword:
2205718292f2SDouglas Gregor     case MMToken::ModuleKeyword:
2206755b2055SDouglas Gregor     case MMToken::FrameworkKeyword:
2207718292f2SDouglas Gregor       parseModuleDecl();
2208718292f2SDouglas Gregor       break;
2209718292f2SDouglas Gregor 
22101fb5c3a6SDouglas Gregor     case MMToken::Comma:
221135b13eceSDouglas Gregor     case MMToken::ConfigMacros:
2212fb912657SDouglas Gregor     case MMToken::Conflict:
2213a3feee2aSRichard Smith     case MMToken::Exclaim:
221459527666SDouglas Gregor     case MMToken::ExcludeKeyword:
22152b82c2a5SDouglas Gregor     case MMToken::ExportKeyword:
2216718292f2SDouglas Gregor     case MMToken::HeaderKeyword:
2217718292f2SDouglas Gregor     case MMToken::Identifier:
2218718292f2SDouglas Gregor     case MMToken::LBrace:
22196ddfca91SDouglas Gregor     case MMToken::LinkKeyword:
2220a686e1b0SDouglas Gregor     case MMToken::LSquare:
22212b82c2a5SDouglas Gregor     case MMToken::Period:
2222b53e5483SLawrence Crowl     case MMToken::PrivateKeyword:
2223718292f2SDouglas Gregor     case MMToken::RBrace:
2224a686e1b0SDouglas Gregor     case MMToken::RSquare:
22251fb5c3a6SDouglas Gregor     case MMToken::RequiresKeyword:
22262b82c2a5SDouglas Gregor     case MMToken::Star:
2227718292f2SDouglas Gregor     case MMToken::StringLiteral:
2228718292f2SDouglas Gregor     case MMToken::UmbrellaKeyword:
2229ba7f2f71SDaniel Jasper     case MMToken::UseKeyword:
2230718292f2SDouglas Gregor       Diags.Report(Tok.getLocation(), diag::err_mmap_expected_module);
2231718292f2SDouglas Gregor       HadError = true;
2232718292f2SDouglas Gregor       consumeToken();
2233718292f2SDouglas Gregor       break;
2234718292f2SDouglas Gregor     }
2235718292f2SDouglas Gregor   } while (true);
2236718292f2SDouglas Gregor }
2237718292f2SDouglas Gregor 
2238963c5535SDouglas Gregor bool ModuleMap::parseModuleMapFile(const FileEntry *File, bool IsSystem) {
22394ddf2221SDouglas Gregor   llvm::DenseMap<const FileEntry *, bool>::iterator Known
22404ddf2221SDouglas Gregor     = ParsedModuleMap.find(File);
22414ddf2221SDouglas Gregor   if (Known != ParsedModuleMap.end())
22424ddf2221SDouglas Gregor     return Known->second;
22434ddf2221SDouglas Gregor 
224489929282SDouglas Gregor   assert(Target != 0 && "Missing target information");
2245cb69b57bSBen Langmuir   auto FileCharacter = IsSystem ? SrcMgr::C_System : SrcMgr::C_User;
2246cb69b57bSBen Langmuir   FileID ID = SourceMgr.createFileID(File, SourceLocation(), FileCharacter);
22471f76c4e8SManuel Klimek   const llvm::MemoryBuffer *Buffer = SourceMgr.getBuffer(ID);
2248718292f2SDouglas Gregor   if (!Buffer)
22494ddf2221SDouglas Gregor     return ParsedModuleMap[File] = true;
2250718292f2SDouglas Gregor 
2251984e1df7SBen Langmuir   // Find the directory for the module. For frameworks, that may require going
2252984e1df7SBen Langmuir   // up from the 'Modules' directory.
2253984e1df7SBen Langmuir   const DirectoryEntry *Dir = File->getDir();
2254984e1df7SBen Langmuir   StringRef DirName(Dir->getName());
2255984e1df7SBen Langmuir   if (llvm::sys::path::filename(DirName) == "Modules") {
2256984e1df7SBen Langmuir     DirName = llvm::sys::path::parent_path(DirName);
2257984e1df7SBen Langmuir     if (DirName.endswith(".framework"))
2258984e1df7SBen Langmuir       Dir = SourceMgr.getFileManager().getDirectory(DirName);
2259984e1df7SBen Langmuir     assert(Dir && "parent must exist");
2260984e1df7SBen Langmuir   }
2261984e1df7SBen Langmuir 
2262718292f2SDouglas Gregor   // Parse this module map file.
22631f76c4e8SManuel Klimek   Lexer L(ID, SourceMgr.getBuffer(ID), SourceMgr, MMapLangOpts);
2264beee15e7SBen Langmuir   ModuleMapParser Parser(L, SourceMgr, Target, Diags, *this, File, Dir,
2265963c5535SDouglas Gregor                          BuiltinIncludeDir, IsSystem);
2266718292f2SDouglas Gregor   bool Result = Parser.parseModuleMapFile();
22674ddf2221SDouglas Gregor   ParsedModuleMap[File] = Result;
2268718292f2SDouglas Gregor   return Result;
2269718292f2SDouglas Gregor }
2270