2011-11-12 03:10:28 +08:00
|
|
|
//===--- ModuleMap.cpp - Describe the layout of modules ---------*- C++ -*-===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This file defines the ModuleMap implementation, which describes the layout
|
|
|
|
// of a module as it relates to headers.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#include "clang/Lex/ModuleMap.h"
|
|
|
|
#include "clang/Lex/Lexer.h"
|
|
|
|
#include "clang/Lex/LiteralSupport.h"
|
|
|
|
#include "clang/Lex/LexDiagnostic.h"
|
|
|
|
#include "clang/Basic/Diagnostic.h"
|
|
|
|
#include "clang/Basic/FileManager.h"
|
|
|
|
#include "clang/Basic/TargetInfo.h"
|
|
|
|
#include "clang/Basic/TargetOptions.h"
|
|
|
|
#include "llvm/Support/Allocator.h"
|
|
|
|
#include "llvm/Support/Host.h"
|
2011-11-12 05:55:48 +08:00
|
|
|
#include "llvm/Support/PathV2.h"
|
2011-11-12 03:10:28 +08:00
|
|
|
#include "llvm/Support/raw_ostream.h"
|
|
|
|
#include "llvm/ADT/StringRef.h"
|
|
|
|
#include "llvm/ADT/StringSwitch.h"
|
|
|
|
using namespace clang;
|
|
|
|
|
2011-12-02 09:47:07 +08:00
|
|
|
Module::ExportDecl
|
|
|
|
ModuleMap::resolveExport(Module *Mod,
|
|
|
|
const Module::UnresolvedExportDecl &Unresolved,
|
|
|
|
bool Complain) {
|
2011-12-06 01:28:06 +08:00
|
|
|
// We may have just a wildcard.
|
|
|
|
if (Unresolved.Id.empty()) {
|
|
|
|
assert(Unresolved.Wildcard && "Invalid unresolved export");
|
|
|
|
return Module::ExportDecl(0, true);
|
|
|
|
}
|
|
|
|
|
2011-12-02 09:47:07 +08:00
|
|
|
// Find the starting module.
|
|
|
|
Module *Context = lookupModuleUnqualified(Unresolved.Id[0].first, Mod);
|
|
|
|
if (!Context) {
|
|
|
|
if (Complain)
|
|
|
|
Diags->Report(Unresolved.Id[0].second,
|
|
|
|
diag::err_mmap_missing_module_unqualified)
|
|
|
|
<< Unresolved.Id[0].first << Mod->getFullModuleName();
|
|
|
|
|
|
|
|
return Module::ExportDecl();
|
|
|
|
}
|
|
|
|
|
|
|
|
// Dig into the module path.
|
|
|
|
for (unsigned I = 1, N = Unresolved.Id.size(); I != N; ++I) {
|
|
|
|
Module *Sub = lookupModuleQualified(Unresolved.Id[I].first,
|
|
|
|
Context);
|
|
|
|
if (!Sub) {
|
|
|
|
if (Complain)
|
|
|
|
Diags->Report(Unresolved.Id[I].second,
|
|
|
|
diag::err_mmap_missing_module_qualified)
|
|
|
|
<< Unresolved.Id[I].first << Context->getFullModuleName()
|
|
|
|
<< SourceRange(Unresolved.Id[0].second, Unresolved.Id[I-1].second);
|
|
|
|
|
|
|
|
return Module::ExportDecl();
|
|
|
|
}
|
|
|
|
|
|
|
|
Context = Sub;
|
|
|
|
}
|
|
|
|
|
|
|
|
return Module::ExportDecl(Context, Unresolved.Wildcard);
|
|
|
|
}
|
|
|
|
|
2011-11-12 03:10:28 +08:00
|
|
|
ModuleMap::ModuleMap(FileManager &FileMgr, const DiagnosticConsumer &DC) {
|
|
|
|
llvm::IntrusiveRefCntPtr<DiagnosticIDs> DiagIDs(new DiagnosticIDs);
|
|
|
|
Diags = llvm::IntrusiveRefCntPtr<DiagnosticsEngine>(
|
|
|
|
new DiagnosticsEngine(DiagIDs));
|
|
|
|
Diags->setClient(DC.clone(*Diags), /*ShouldOwnClient=*/true);
|
|
|
|
SourceMgr = new SourceManager(*Diags, FileMgr);
|
|
|
|
}
|
|
|
|
|
|
|
|
ModuleMap::~ModuleMap() {
|
2011-11-17 10:05:44 +08:00
|
|
|
for (llvm::StringMap<Module *>::iterator I = Modules.begin(),
|
|
|
|
IEnd = Modules.end();
|
|
|
|
I != IEnd; ++I) {
|
|
|
|
delete I->getValue();
|
|
|
|
}
|
|
|
|
|
2011-11-12 03:10:28 +08:00
|
|
|
delete SourceMgr;
|
|
|
|
}
|
|
|
|
|
2011-12-01 07:21:26 +08:00
|
|
|
Module *ModuleMap::findModuleForHeader(const FileEntry *File) {
|
2011-11-12 06:18:48 +08:00
|
|
|
llvm::DenseMap<const FileEntry *, Module *>::iterator Known
|
|
|
|
= Headers.find(File);
|
|
|
|
if (Known != Headers.end())
|
|
|
|
return Known->second;
|
|
|
|
|
2011-11-17 07:02:25 +08:00
|
|
|
const DirectoryEntry *Dir = File->getDir();
|
|
|
|
llvm::DenseMap<const DirectoryEntry *, Module *>::iterator KnownDir
|
|
|
|
= UmbrellaDirs.find(Dir);
|
|
|
|
if (KnownDir != UmbrellaDirs.end())
|
|
|
|
return KnownDir->second;
|
|
|
|
|
|
|
|
// Walk up the directory hierarchy looking for umbrella headers.
|
|
|
|
llvm::SmallVector<const DirectoryEntry *, 2> SkippedDirs;
|
|
|
|
StringRef DirName = Dir->getName();
|
|
|
|
do {
|
|
|
|
// Retrieve our parent path.
|
|
|
|
DirName = llvm::sys::path::parent_path(DirName);
|
|
|
|
if (DirName.empty())
|
|
|
|
break;
|
|
|
|
|
|
|
|
// Resolve the parent path to a directory entry.
|
|
|
|
Dir = SourceMgr->getFileManager().getDirectory(DirName);
|
|
|
|
if (!Dir)
|
|
|
|
break;
|
|
|
|
|
|
|
|
KnownDir = UmbrellaDirs.find(Dir);
|
|
|
|
if (KnownDir != UmbrellaDirs.end()) {
|
|
|
|
Module *Result = KnownDir->second;
|
|
|
|
|
|
|
|
// Record each of the directories we stepped through as being part of
|
|
|
|
// the module we found, since the umbrella header covers them all.
|
|
|
|
for (unsigned I = 0, N = SkippedDirs.size(); I != N; ++I)
|
|
|
|
UmbrellaDirs[SkippedDirs[I]] = Result;
|
|
|
|
|
|
|
|
return Result;
|
|
|
|
}
|
|
|
|
|
|
|
|
SkippedDirs.push_back(Dir);
|
|
|
|
} while (true);
|
|
|
|
|
2011-11-12 06:18:48 +08:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2011-12-01 07:21:26 +08:00
|
|
|
Module *ModuleMap::findModule(StringRef Name) {
|
2011-11-12 07:20:24 +08:00
|
|
|
llvm::StringMap<Module *>::iterator Known = Modules.find(Name);
|
|
|
|
if (Known != Modules.end())
|
|
|
|
return Known->getValue();
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2011-12-02 09:47:07 +08:00
|
|
|
Module *ModuleMap::lookupModuleUnqualified(StringRef Name, Module *Context) {
|
|
|
|
for(; Context; Context = Context->Parent) {
|
|
|
|
if (Module *Sub = lookupModuleQualified(Name, Context))
|
|
|
|
return Sub;
|
|
|
|
}
|
|
|
|
|
|
|
|
return findModule(Name);
|
|
|
|
}
|
|
|
|
|
|
|
|
Module *ModuleMap::lookupModuleQualified(StringRef Name, Module *Context) {
|
|
|
|
if (!Context)
|
|
|
|
return findModule(Name);
|
|
|
|
|
|
|
|
llvm::StringMap<Module *>::iterator Sub = Context->SubModules.find(Name);
|
|
|
|
if (Sub != Context->SubModules.end())
|
|
|
|
return Sub->getValue();
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2011-12-01 07:21:26 +08:00
|
|
|
std::pair<Module *, bool>
|
2011-12-01 01:33:56 +08:00
|
|
|
ModuleMap::findOrCreateModule(StringRef Name, Module *Parent, bool IsFramework,
|
|
|
|
bool IsExplicit) {
|
|
|
|
// Try to find an existing module with this name.
|
|
|
|
if (Module *Found = Parent? Parent->SubModules[Name] : Modules[Name])
|
|
|
|
return std::make_pair(Found, false);
|
|
|
|
|
|
|
|
// Create a new module with this name.
|
|
|
|
Module *Result = new Module(Name, SourceLocation(), Parent, IsFramework,
|
|
|
|
IsExplicit);
|
|
|
|
if (Parent)
|
|
|
|
Parent->SubModules[Name] = Result;
|
|
|
|
else
|
|
|
|
Modules[Name] = Result;
|
|
|
|
return std::make_pair(Result, true);
|
|
|
|
}
|
|
|
|
|
2011-12-01 07:21:26 +08:00
|
|
|
Module *
|
2011-11-17 09:41:17 +08:00
|
|
|
ModuleMap::inferFrameworkModule(StringRef ModuleName,
|
|
|
|
const DirectoryEntry *FrameworkDir) {
|
|
|
|
// Check whether we've already found this module.
|
|
|
|
if (Module *Module = findModule(ModuleName))
|
|
|
|
return Module;
|
|
|
|
|
|
|
|
// Look for an umbrella header.
|
|
|
|
llvm::SmallString<128> UmbrellaName = StringRef(FrameworkDir->getName());
|
|
|
|
llvm::sys::path::append(UmbrellaName, "Headers");
|
|
|
|
llvm::sys::path::append(UmbrellaName, ModuleName + ".h");
|
|
|
|
const FileEntry *UmbrellaHeader
|
|
|
|
= SourceMgr->getFileManager().getFile(UmbrellaName);
|
|
|
|
|
|
|
|
// FIXME: If there's no umbrella header, we could probably scan the
|
|
|
|
// framework to load *everything*. But, it's not clear that this is a good
|
|
|
|
// idea.
|
|
|
|
if (!UmbrellaHeader)
|
|
|
|
return 0;
|
|
|
|
|
2011-11-18 06:09:43 +08:00
|
|
|
Module *Result = new Module(ModuleName, SourceLocation(),
|
|
|
|
/*IsFramework=*/true);
|
2011-11-17 09:41:17 +08:00
|
|
|
Result->UmbrellaHeader = UmbrellaHeader;
|
|
|
|
Headers[UmbrellaHeader] = Result;
|
|
|
|
UmbrellaDirs[FrameworkDir] = Result;
|
|
|
|
Modules[ModuleName] = Result;
|
|
|
|
return Result;
|
|
|
|
}
|
|
|
|
|
2011-11-30 03:06:37 +08:00
|
|
|
const FileEntry *
|
2011-12-01 07:21:26 +08:00
|
|
|
ModuleMap::getContainingModuleMapFile(Module *Module) {
|
2011-11-30 03:06:37 +08:00
|
|
|
if (Module->DefinitionLoc.isInvalid() || !SourceMgr)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
return SourceMgr->getFileEntryForID(
|
|
|
|
SourceMgr->getFileID(Module->DefinitionLoc));
|
|
|
|
}
|
|
|
|
|
2011-11-12 03:10:28 +08:00
|
|
|
void ModuleMap::dump() {
|
|
|
|
llvm::errs() << "Modules:";
|
|
|
|
for (llvm::StringMap<Module *>::iterator M = Modules.begin(),
|
|
|
|
MEnd = Modules.end();
|
|
|
|
M != MEnd; ++M)
|
2011-11-30 02:17:59 +08:00
|
|
|
M->getValue()->print(llvm::errs(), 2);
|
2011-11-12 03:10:28 +08:00
|
|
|
|
|
|
|
llvm::errs() << "Headers:";
|
|
|
|
for (llvm::DenseMap<const FileEntry *, Module *>::iterator
|
|
|
|
H = Headers.begin(),
|
|
|
|
HEnd = Headers.end();
|
|
|
|
H != HEnd; ++H) {
|
|
|
|
llvm::errs() << " \"" << H->first->getName() << "\" -> "
|
|
|
|
<< H->second->getFullModuleName() << "\n";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-12-02 09:47:07 +08:00
|
|
|
bool ModuleMap::resolveExports(Module *Mod, bool Complain) {
|
|
|
|
bool HadError = false;
|
|
|
|
for (unsigned I = 0, N = Mod->UnresolvedExports.size(); I != N; ++I) {
|
|
|
|
Module::ExportDecl Export = resolveExport(Mod, Mod->UnresolvedExports[I],
|
|
|
|
Complain);
|
2011-12-06 01:28:06 +08:00
|
|
|
if (Export.getPointer() || Export.getInt())
|
2011-12-02 09:47:07 +08:00
|
|
|
Mod->Exports.push_back(Export);
|
|
|
|
else
|
|
|
|
HadError = true;
|
|
|
|
}
|
|
|
|
Mod->UnresolvedExports.clear();
|
|
|
|
return HadError;
|
|
|
|
}
|
|
|
|
|
2011-12-06 00:33:54 +08:00
|
|
|
Module *ModuleMap::inferModuleFromLocation(FullSourceLoc Loc) {
|
|
|
|
if (Loc.isInvalid())
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
// Use the expansion location to determine which module we're in.
|
|
|
|
FullSourceLoc ExpansionLoc = Loc.getExpansionLoc();
|
|
|
|
if (!ExpansionLoc.isFileID())
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
|
|
|
|
const SourceManager &SrcMgr = Loc.getManager();
|
|
|
|
FileID ExpansionFileID = ExpansionLoc.getFileID();
|
|
|
|
const FileEntry *ExpansionFile = SrcMgr.getFileEntryForID(ExpansionFileID);
|
|
|
|
if (!ExpansionFile)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
// Find the module that owns this header.
|
|
|
|
return findModuleForHeader(ExpansionFile);
|
|
|
|
}
|
|
|
|
|
2011-11-12 03:10:28 +08:00
|
|
|
//----------------------------------------------------------------------------//
|
|
|
|
// Module map file parser
|
|
|
|
//----------------------------------------------------------------------------//
|
|
|
|
|
|
|
|
namespace clang {
|
|
|
|
/// \brief A token in a module map file.
|
|
|
|
struct MMToken {
|
|
|
|
enum TokenKind {
|
|
|
|
EndOfFile,
|
|
|
|
HeaderKeyword,
|
|
|
|
Identifier,
|
|
|
|
ExplicitKeyword,
|
2011-12-02 09:47:07 +08:00
|
|
|
ExportKeyword,
|
2011-11-18 06:09:43 +08:00
|
|
|
FrameworkKeyword,
|
2011-11-12 03:10:28 +08:00
|
|
|
ModuleKeyword,
|
2011-12-02 09:47:07 +08:00
|
|
|
Period,
|
2011-11-12 03:10:28 +08:00
|
|
|
UmbrellaKeyword,
|
2011-12-02 09:47:07 +08:00
|
|
|
Star,
|
2011-11-12 03:10:28 +08:00
|
|
|
StringLiteral,
|
|
|
|
LBrace,
|
|
|
|
RBrace
|
|
|
|
} Kind;
|
|
|
|
|
|
|
|
unsigned Location;
|
|
|
|
unsigned StringLength;
|
|
|
|
const char *StringData;
|
|
|
|
|
|
|
|
void clear() {
|
|
|
|
Kind = EndOfFile;
|
|
|
|
Location = 0;
|
|
|
|
StringLength = 0;
|
|
|
|
StringData = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool is(TokenKind K) const { return Kind == K; }
|
|
|
|
|
|
|
|
SourceLocation getLocation() const {
|
|
|
|
return SourceLocation::getFromRawEncoding(Location);
|
|
|
|
}
|
|
|
|
|
|
|
|
StringRef getString() const {
|
|
|
|
return StringRef(StringData, StringLength);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
class ModuleMapParser {
|
|
|
|
Lexer &L;
|
|
|
|
SourceManager &SourceMgr;
|
|
|
|
DiagnosticsEngine &Diags;
|
|
|
|
ModuleMap ⤅
|
|
|
|
|
2011-11-12 05:55:48 +08:00
|
|
|
/// \brief The directory that this module map resides in.
|
|
|
|
const DirectoryEntry *Directory;
|
|
|
|
|
2011-11-12 03:10:28 +08:00
|
|
|
/// \brief Whether an error occurred.
|
|
|
|
bool HadError;
|
|
|
|
|
|
|
|
/// \brief Default target information, used only for string literal
|
|
|
|
/// parsing.
|
|
|
|
TargetInfo *Target;
|
|
|
|
|
|
|
|
/// \brief Stores string data for the various string literals referenced
|
|
|
|
/// during parsing.
|
|
|
|
llvm::BumpPtrAllocator StringData;
|
|
|
|
|
|
|
|
/// \brief The current token.
|
|
|
|
MMToken Tok;
|
|
|
|
|
|
|
|
/// \brief The active module.
|
2011-12-01 07:21:26 +08:00
|
|
|
Module *ActiveModule;
|
2011-11-12 03:10:28 +08:00
|
|
|
|
|
|
|
/// \brief Consume the current token and return its location.
|
|
|
|
SourceLocation consumeToken();
|
|
|
|
|
|
|
|
/// \brief Skip tokens until we reach the a token with the given kind
|
|
|
|
/// (or the end of the file).
|
|
|
|
void skipUntil(MMToken::TokenKind K);
|
|
|
|
|
|
|
|
void parseModuleDecl();
|
|
|
|
void parseUmbrellaDecl();
|
|
|
|
void parseHeaderDecl();
|
2011-12-02 09:47:07 +08:00
|
|
|
void parseExportDecl();
|
2011-11-12 03:10:28 +08:00
|
|
|
|
|
|
|
public:
|
|
|
|
explicit ModuleMapParser(Lexer &L, SourceManager &SourceMgr,
|
|
|
|
DiagnosticsEngine &Diags,
|
2011-11-12 05:55:48 +08:00
|
|
|
ModuleMap &Map,
|
|
|
|
const DirectoryEntry *Directory)
|
|
|
|
: L(L), SourceMgr(SourceMgr), Diags(Diags), Map(Map),
|
|
|
|
Directory(Directory), HadError(false), ActiveModule(0)
|
2011-11-12 03:10:28 +08:00
|
|
|
{
|
|
|
|
TargetOptions TargetOpts;
|
|
|
|
TargetOpts.Triple = llvm::sys::getDefaultTargetTriple();
|
|
|
|
Target = TargetInfo::CreateTargetInfo(Diags, TargetOpts);
|
|
|
|
|
|
|
|
Tok.clear();
|
|
|
|
consumeToken();
|
|
|
|
}
|
|
|
|
|
|
|
|
bool parseModuleMapFile();
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
SourceLocation ModuleMapParser::consumeToken() {
|
|
|
|
retry:
|
|
|
|
SourceLocation Result = Tok.getLocation();
|
|
|
|
Tok.clear();
|
|
|
|
|
|
|
|
Token LToken;
|
|
|
|
L.LexFromRawLexer(LToken);
|
|
|
|
Tok.Location = LToken.getLocation().getRawEncoding();
|
|
|
|
switch (LToken.getKind()) {
|
|
|
|
case tok::raw_identifier:
|
|
|
|
Tok.StringData = LToken.getRawIdentifierData();
|
|
|
|
Tok.StringLength = LToken.getLength();
|
|
|
|
Tok.Kind = llvm::StringSwitch<MMToken::TokenKind>(Tok.getString())
|
|
|
|
.Case("header", MMToken::HeaderKeyword)
|
|
|
|
.Case("explicit", MMToken::ExplicitKeyword)
|
2011-12-02 09:47:07 +08:00
|
|
|
.Case("export", MMToken::ExportKeyword)
|
2011-11-18 06:09:43 +08:00
|
|
|
.Case("framework", MMToken::FrameworkKeyword)
|
2011-11-12 03:10:28 +08:00
|
|
|
.Case("module", MMToken::ModuleKeyword)
|
|
|
|
.Case("umbrella", MMToken::UmbrellaKeyword)
|
|
|
|
.Default(MMToken::Identifier);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case tok::eof:
|
|
|
|
Tok.Kind = MMToken::EndOfFile;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case tok::l_brace:
|
|
|
|
Tok.Kind = MMToken::LBrace;
|
|
|
|
break;
|
|
|
|
|
2011-12-02 09:47:07 +08:00
|
|
|
case tok::period:
|
|
|
|
Tok.Kind = MMToken::Period;
|
|
|
|
break;
|
|
|
|
|
2011-11-12 03:10:28 +08:00
|
|
|
case tok::r_brace:
|
|
|
|
Tok.Kind = MMToken::RBrace;
|
|
|
|
break;
|
|
|
|
|
2011-12-02 09:47:07 +08:00
|
|
|
case tok::star:
|
|
|
|
Tok.Kind = MMToken::Star;
|
|
|
|
break;
|
|
|
|
|
2011-11-12 03:10:28 +08:00
|
|
|
case tok::string_literal: {
|
|
|
|
// Parse the string literal.
|
|
|
|
LangOptions LangOpts;
|
|
|
|
StringLiteralParser StringLiteral(<oken, 1, SourceMgr, LangOpts, *Target);
|
|
|
|
if (StringLiteral.hadError)
|
|
|
|
goto retry;
|
|
|
|
|
|
|
|
// Copy the string literal into our string data allocator.
|
|
|
|
unsigned Length = StringLiteral.GetStringLength();
|
|
|
|
char *Saved = StringData.Allocate<char>(Length + 1);
|
|
|
|
memcpy(Saved, StringLiteral.GetString().data(), Length);
|
|
|
|
Saved[Length] = 0;
|
|
|
|
|
|
|
|
// Form the token.
|
|
|
|
Tok.Kind = MMToken::StringLiteral;
|
|
|
|
Tok.StringData = Saved;
|
|
|
|
Tok.StringLength = Length;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case tok::comment:
|
|
|
|
goto retry;
|
|
|
|
|
|
|
|
default:
|
|
|
|
Diags.Report(LToken.getLocation(), diag::err_mmap_unknown_token);
|
|
|
|
HadError = true;
|
|
|
|
goto retry;
|
|
|
|
}
|
|
|
|
|
|
|
|
return Result;
|
|
|
|
}
|
|
|
|
|
|
|
|
void ModuleMapParser::skipUntil(MMToken::TokenKind K) {
|
|
|
|
unsigned braceDepth = 0;
|
|
|
|
do {
|
|
|
|
switch (Tok.Kind) {
|
|
|
|
case MMToken::EndOfFile:
|
|
|
|
return;
|
|
|
|
|
|
|
|
case MMToken::LBrace:
|
|
|
|
if (Tok.is(K) && braceDepth == 0)
|
|
|
|
return;
|
|
|
|
|
|
|
|
++braceDepth;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case MMToken::RBrace:
|
|
|
|
if (braceDepth > 0)
|
|
|
|
--braceDepth;
|
|
|
|
else if (Tok.is(K))
|
|
|
|
return;
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
if (braceDepth == 0 && Tok.is(K))
|
|
|
|
return;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
consumeToken();
|
|
|
|
} while (true);
|
|
|
|
}
|
|
|
|
|
|
|
|
/// \brief Parse a module declaration.
|
|
|
|
///
|
|
|
|
/// module-declaration:
|
2011-11-18 06:09:43 +08:00
|
|
|
/// 'framework'[opt] 'module' identifier { module-member* }
|
2011-11-12 03:10:28 +08:00
|
|
|
///
|
|
|
|
/// module-member:
|
|
|
|
/// umbrella-declaration
|
|
|
|
/// header-declaration
|
|
|
|
/// 'explicit'[opt] module-declaration
|
2011-12-02 09:47:07 +08:00
|
|
|
/// export-declaration
|
2011-11-12 03:10:28 +08:00
|
|
|
void ModuleMapParser::parseModuleDecl() {
|
2011-11-18 06:09:43 +08:00
|
|
|
assert(Tok.is(MMToken::ExplicitKeyword) || Tok.is(MMToken::ModuleKeyword) ||
|
|
|
|
Tok.is(MMToken::FrameworkKeyword));
|
|
|
|
|
|
|
|
// Parse 'framework' or 'explicit' keyword, if present.
|
|
|
|
bool Framework = false;
|
2011-11-12 03:10:28 +08:00
|
|
|
bool Explicit = false;
|
2011-11-18 06:09:43 +08:00
|
|
|
|
|
|
|
if (Tok.is(MMToken::FrameworkKeyword)) {
|
|
|
|
consumeToken();
|
|
|
|
Framework = true;
|
|
|
|
}
|
|
|
|
// Parse 'explicit' keyword, if present.
|
|
|
|
else if (Tok.is(MMToken::ExplicitKeyword)) {
|
2011-11-12 03:10:28 +08:00
|
|
|
consumeToken();
|
|
|
|
Explicit = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Parse 'module' keyword.
|
|
|
|
if (!Tok.is(MMToken::ModuleKeyword)) {
|
|
|
|
Diags.Report(Tok.getLocation(),
|
|
|
|
diag::err_mmap_expected_module_after_explicit);
|
|
|
|
consumeToken();
|
|
|
|
HadError = true;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
consumeToken(); // 'module' keyword
|
|
|
|
|
|
|
|
// Parse the module name.
|
|
|
|
if (!Tok.is(MMToken::Identifier)) {
|
|
|
|
Diags.Report(Tok.getLocation(), diag::err_mmap_expected_module_name);
|
|
|
|
HadError = true;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
StringRef ModuleName = Tok.getString();
|
|
|
|
SourceLocation ModuleNameLoc = consumeToken();
|
|
|
|
|
|
|
|
// Parse the opening brace.
|
|
|
|
if (!Tok.is(MMToken::LBrace)) {
|
|
|
|
Diags.Report(Tok.getLocation(), diag::err_mmap_expected_lbrace)
|
|
|
|
<< ModuleName;
|
|
|
|
HadError = true;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
SourceLocation LBraceLoc = consumeToken();
|
|
|
|
|
|
|
|
// Determine whether this (sub)module has already been defined.
|
|
|
|
llvm::StringMap<Module *> &ModuleSpace
|
|
|
|
= ActiveModule? ActiveModule->SubModules : Map.Modules;
|
|
|
|
llvm::StringMap<Module *>::iterator ExistingModule
|
|
|
|
= ModuleSpace.find(ModuleName);
|
|
|
|
if (ExistingModule != ModuleSpace.end()) {
|
|
|
|
Diags.Report(ModuleNameLoc, diag::err_mmap_module_redefinition)
|
|
|
|
<< ModuleName;
|
|
|
|
Diags.Report(ExistingModule->getValue()->DefinitionLoc,
|
|
|
|
diag::note_mmap_prev_definition);
|
|
|
|
|
|
|
|
// Skip the module definition.
|
|
|
|
skipUntil(MMToken::RBrace);
|
|
|
|
if (Tok.is(MMToken::RBrace))
|
|
|
|
consumeToken();
|
|
|
|
|
|
|
|
HadError = true;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Start defining this module.
|
2011-11-18 06:09:43 +08:00
|
|
|
ActiveModule = new Module(ModuleName, ModuleNameLoc, ActiveModule, Framework,
|
|
|
|
Explicit);
|
2011-11-12 03:10:28 +08:00
|
|
|
ModuleSpace[ModuleName] = ActiveModule;
|
|
|
|
|
|
|
|
bool Done = false;
|
|
|
|
do {
|
|
|
|
switch (Tok.Kind) {
|
|
|
|
case MMToken::EndOfFile:
|
|
|
|
case MMToken::RBrace:
|
|
|
|
Done = true;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case MMToken::ExplicitKeyword:
|
|
|
|
case MMToken::ModuleKeyword:
|
|
|
|
parseModuleDecl();
|
|
|
|
break;
|
|
|
|
|
2011-12-02 09:47:07 +08:00
|
|
|
case MMToken::ExportKeyword:
|
|
|
|
parseExportDecl();
|
|
|
|
break;
|
|
|
|
|
2011-11-12 03:10:28 +08:00
|
|
|
case MMToken::HeaderKeyword:
|
|
|
|
parseHeaderDecl();
|
|
|
|
break;
|
|
|
|
|
|
|
|
case MMToken::UmbrellaKeyword:
|
|
|
|
parseUmbrellaDecl();
|
|
|
|
break;
|
2011-12-02 09:47:07 +08:00
|
|
|
|
2011-11-12 03:10:28 +08:00
|
|
|
default:
|
|
|
|
Diags.Report(Tok.getLocation(), diag::err_mmap_expected_member);
|
|
|
|
consumeToken();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
} while (!Done);
|
|
|
|
|
|
|
|
if (Tok.is(MMToken::RBrace))
|
|
|
|
consumeToken();
|
|
|
|
else {
|
|
|
|
Diags.Report(Tok.getLocation(), diag::err_mmap_expected_rbrace);
|
|
|
|
Diags.Report(LBraceLoc, diag::note_mmap_lbrace_match);
|
|
|
|
HadError = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
// We're done parsing this module. Pop back to our parent scope.
|
|
|
|
ActiveModule = ActiveModule->Parent;
|
|
|
|
}
|
|
|
|
|
|
|
|
/// \brief Parse an umbrella header declaration.
|
|
|
|
///
|
|
|
|
/// umbrella-declaration:
|
|
|
|
/// 'umbrella' string-literal
|
|
|
|
void ModuleMapParser::parseUmbrellaDecl() {
|
|
|
|
assert(Tok.is(MMToken::UmbrellaKeyword));
|
|
|
|
SourceLocation UmbrellaLoc = consumeToken();
|
|
|
|
|
|
|
|
// Parse the header name.
|
|
|
|
if (!Tok.is(MMToken::StringLiteral)) {
|
|
|
|
Diags.Report(Tok.getLocation(), diag::err_mmap_expected_header)
|
|
|
|
<< "umbrella";
|
|
|
|
HadError = true;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
StringRef FileName = Tok.getString();
|
|
|
|
SourceLocation FileNameLoc = consumeToken();
|
|
|
|
|
2011-11-12 05:55:48 +08:00
|
|
|
// Check whether we already have an umbrella header.
|
|
|
|
if (ActiveModule->UmbrellaHeader) {
|
|
|
|
Diags.Report(FileNameLoc, diag::err_mmap_umbrella_header_conflict)
|
|
|
|
<< ActiveModule->getFullModuleName()
|
|
|
|
<< ActiveModule->UmbrellaHeader->getName();
|
|
|
|
HadError = true;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Only top-level modules can have umbrella headers.
|
|
|
|
if (ActiveModule->Parent) {
|
|
|
|
Diags.Report(UmbrellaLoc, diag::err_mmap_umbrella_header_submodule)
|
|
|
|
<< ActiveModule->getFullModuleName();
|
|
|
|
HadError = true;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Look for this file.
|
|
|
|
llvm::SmallString<128> PathName;
|
2011-11-18 06:09:43 +08:00
|
|
|
const FileEntry *File = 0;
|
2011-11-30 05:59:16 +08:00
|
|
|
|
|
|
|
if (llvm::sys::path::is_absolute(FileName)) {
|
|
|
|
PathName = FileName;
|
2011-11-18 06:09:43 +08:00
|
|
|
File = SourceMgr.getFileManager().getFile(PathName);
|
2011-11-30 05:59:16 +08:00
|
|
|
} else {
|
|
|
|
// Search for the header file within the search directory.
|
|
|
|
PathName += Directory->getName();
|
|
|
|
unsigned PathLength = PathName.size();
|
|
|
|
if (ActiveModule->isPartOfFramework()) {
|
|
|
|
// Check whether this file is in the public headers.
|
|
|
|
llvm::sys::path::append(PathName, "Headers");
|
|
|
|
llvm::sys::path::append(PathName, FileName);
|
|
|
|
File = SourceMgr.getFileManager().getFile(PathName);
|
2011-11-18 06:09:43 +08:00
|
|
|
|
2011-11-30 05:59:16 +08:00
|
|
|
if (!File) {
|
|
|
|
// Check whether this file is in the private headers.
|
|
|
|
PathName.resize(PathLength);
|
|
|
|
llvm::sys::path::append(PathName, "PrivateHeaders");
|
|
|
|
llvm::sys::path::append(PathName, FileName);
|
|
|
|
File = SourceMgr.getFileManager().getFile(PathName);
|
|
|
|
}
|
|
|
|
|
|
|
|
// FIXME: Deal with subframeworks.
|
|
|
|
} else {
|
|
|
|
// Lookup for normal headers.
|
2011-11-18 06:09:43 +08:00
|
|
|
llvm::sys::path::append(PathName, FileName);
|
|
|
|
File = SourceMgr.getFileManager().getFile(PathName);
|
|
|
|
}
|
|
|
|
}
|
2011-11-12 05:55:48 +08:00
|
|
|
|
|
|
|
// FIXME: We shouldn't be eagerly stat'ing every file named in a module map.
|
|
|
|
// Come up with a lazy way to do this.
|
2011-11-18 06:09:43 +08:00
|
|
|
if (File) {
|
2011-11-12 05:55:48 +08:00
|
|
|
if (const Module *OwningModule = Map.Headers[File]) {
|
|
|
|
Diags.Report(FileNameLoc, diag::err_mmap_header_conflict)
|
|
|
|
<< FileName << OwningModule->getFullModuleName();
|
|
|
|
HadError = true;
|
2011-11-17 07:02:25 +08:00
|
|
|
} else if ((OwningModule = Map.UmbrellaDirs[Directory])) {
|
|
|
|
Diags.Report(UmbrellaLoc, diag::err_mmap_umbrella_clash)
|
|
|
|
<< OwningModule->getFullModuleName();
|
|
|
|
HadError = true;
|
2011-11-12 05:55:48 +08:00
|
|
|
} else {
|
|
|
|
// Record this umbrella header.
|
|
|
|
ActiveModule->UmbrellaHeader = File;
|
|
|
|
Map.Headers[File] = ActiveModule;
|
2011-11-17 07:02:25 +08:00
|
|
|
Map.UmbrellaDirs[Directory] = ActiveModule;
|
2011-11-12 05:55:48 +08:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
Diags.Report(FileNameLoc, diag::err_mmap_header_not_found)
|
|
|
|
<< true << FileName;
|
|
|
|
HadError = true;
|
|
|
|
}
|
2011-11-12 03:10:28 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/// \brief Parse a header declaration.
|
|
|
|
///
|
|
|
|
/// header-declaration:
|
|
|
|
/// 'header' string-literal
|
|
|
|
void ModuleMapParser::parseHeaderDecl() {
|
|
|
|
assert(Tok.is(MMToken::HeaderKeyword));
|
2011-11-14 00:52:09 +08:00
|
|
|
consumeToken();
|
|
|
|
|
2011-11-12 03:10:28 +08:00
|
|
|
// Parse the header name.
|
|
|
|
if (!Tok.is(MMToken::StringLiteral)) {
|
|
|
|
Diags.Report(Tok.getLocation(), diag::err_mmap_expected_header)
|
|
|
|
<< "header";
|
|
|
|
HadError = true;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
StringRef FileName = Tok.getString();
|
|
|
|
SourceLocation FileNameLoc = consumeToken();
|
|
|
|
|
2011-11-12 05:55:48 +08:00
|
|
|
// Look for this file.
|
|
|
|
llvm::SmallString<128> PathName;
|
2011-11-30 05:59:16 +08:00
|
|
|
if (llvm::sys::path::is_relative(FileName)) {
|
|
|
|
// FIXME: Change this search to also look for private headers!
|
|
|
|
PathName += Directory->getName();
|
|
|
|
|
|
|
|
if (ActiveModule->isPartOfFramework())
|
|
|
|
llvm::sys::path::append(PathName, "Headers");
|
|
|
|
}
|
2011-11-18 06:09:43 +08:00
|
|
|
|
2011-11-12 05:55:48 +08:00
|
|
|
llvm::sys::path::append(PathName, FileName);
|
|
|
|
|
|
|
|
// FIXME: We shouldn't be eagerly stat'ing every file named in a module map.
|
|
|
|
// Come up with a lazy way to do this.
|
|
|
|
if (const FileEntry *File = SourceMgr.getFileManager().getFile(PathName)) {
|
|
|
|
if (const Module *OwningModule = Map.Headers[File]) {
|
|
|
|
Diags.Report(FileNameLoc, diag::err_mmap_header_conflict)
|
|
|
|
<< FileName << OwningModule->getFullModuleName();
|
|
|
|
HadError = true;
|
|
|
|
} else {
|
|
|
|
// Record this file.
|
|
|
|
ActiveModule->Headers.push_back(File);
|
|
|
|
Map.Headers[File] = ActiveModule;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
Diags.Report(FileNameLoc, diag::err_mmap_header_not_found)
|
|
|
|
<< false << FileName;
|
|
|
|
HadError = true;
|
|
|
|
}
|
2011-11-12 03:10:28 +08:00
|
|
|
}
|
|
|
|
|
2011-12-02 09:47:07 +08:00
|
|
|
/// \brief Parse a module export declaration.
|
|
|
|
///
|
|
|
|
/// export-declaration:
|
|
|
|
/// 'export' wildcard-module-id
|
|
|
|
///
|
|
|
|
/// wildcard-module-id:
|
|
|
|
/// identifier
|
|
|
|
/// '*'
|
|
|
|
/// identifier '.' wildcard-module-id
|
|
|
|
void ModuleMapParser::parseExportDecl() {
|
|
|
|
assert(Tok.is(MMToken::ExportKeyword));
|
|
|
|
SourceLocation ExportLoc = consumeToken();
|
|
|
|
|
|
|
|
// Parse the module-id with an optional wildcard at the end.
|
|
|
|
ModuleId ParsedModuleId;
|
|
|
|
bool Wildcard = false;
|
|
|
|
do {
|
|
|
|
if (Tok.is(MMToken::Identifier)) {
|
|
|
|
ParsedModuleId.push_back(std::make_pair(Tok.getString(),
|
|
|
|
Tok.getLocation()));
|
|
|
|
consumeToken();
|
|
|
|
|
|
|
|
if (Tok.is(MMToken::Period)) {
|
|
|
|
consumeToken();
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(Tok.is(MMToken::Star)) {
|
|
|
|
Wildcard = true;
|
2011-12-06 01:28:06 +08:00
|
|
|
consumeToken();
|
2011-12-02 09:47:07 +08:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
Diags.Report(Tok.getLocation(), diag::err_mmap_export_module_id);
|
|
|
|
HadError = true;
|
|
|
|
return;
|
|
|
|
} while (true);
|
|
|
|
|
|
|
|
Module::UnresolvedExportDecl Unresolved = {
|
|
|
|
ExportLoc, ParsedModuleId, Wildcard
|
|
|
|
};
|
|
|
|
ActiveModule->UnresolvedExports.push_back(Unresolved);
|
|
|
|
}
|
|
|
|
|
2011-11-12 03:10:28 +08:00
|
|
|
/// \brief Parse a module map file.
|
|
|
|
///
|
|
|
|
/// module-map-file:
|
|
|
|
/// module-declaration*
|
|
|
|
bool ModuleMapParser::parseModuleMapFile() {
|
|
|
|
do {
|
|
|
|
switch (Tok.Kind) {
|
|
|
|
case MMToken::EndOfFile:
|
|
|
|
return HadError;
|
|
|
|
|
|
|
|
case MMToken::ModuleKeyword:
|
2011-11-18 06:09:43 +08:00
|
|
|
case MMToken::FrameworkKeyword:
|
2011-11-12 03:10:28 +08:00
|
|
|
parseModuleDecl();
|
|
|
|
break;
|
|
|
|
|
|
|
|
case MMToken::ExplicitKeyword:
|
2011-12-02 09:47:07 +08:00
|
|
|
case MMToken::ExportKeyword:
|
2011-11-12 03:10:28 +08:00
|
|
|
case MMToken::HeaderKeyword:
|
|
|
|
case MMToken::Identifier:
|
|
|
|
case MMToken::LBrace:
|
2011-12-02 09:47:07 +08:00
|
|
|
case MMToken::Period:
|
2011-11-12 03:10:28 +08:00
|
|
|
case MMToken::RBrace:
|
2011-12-02 09:47:07 +08:00
|
|
|
case MMToken::Star:
|
2011-11-12 03:10:28 +08:00
|
|
|
case MMToken::StringLiteral:
|
|
|
|
case MMToken::UmbrellaKeyword:
|
|
|
|
Diags.Report(Tok.getLocation(), diag::err_mmap_expected_module);
|
|
|
|
HadError = true;
|
|
|
|
consumeToken();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
} while (true);
|
|
|
|
|
|
|
|
return HadError;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool ModuleMap::parseModuleMapFile(const FileEntry *File) {
|
|
|
|
FileID ID = SourceMgr->createFileID(File, SourceLocation(), SrcMgr::C_User);
|
|
|
|
const llvm::MemoryBuffer *Buffer = SourceMgr->getBuffer(ID);
|
|
|
|
if (!Buffer)
|
|
|
|
return true;
|
|
|
|
|
|
|
|
// Parse this module map file.
|
|
|
|
Lexer L(ID, SourceMgr->getBuffer(ID), *SourceMgr, LangOpts);
|
|
|
|
Diags->getClient()->BeginSourceFile(LangOpts);
|
2011-11-12 05:55:48 +08:00
|
|
|
ModuleMapParser Parser(L, *SourceMgr, *Diags, *this, File->getDir());
|
2011-11-12 03:10:28 +08:00
|
|
|
bool Result = Parser.parseModuleMapFile();
|
|
|
|
Diags->getClient()->EndSourceFile();
|
|
|
|
|
|
|
|
return Result;
|
|
|
|
}
|