mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
Name binding can trigger swiftinterface compilation, which creates a new ASTContext and runs a compilation job. If the compiler was run with -stats-output-dir, this could trigger an assertion because SharedTimer is not re-entrant. Fix this by replacing all direct uses of SharedTimer in the frontend with FrontendStatsTracer. SharedTimer is still used to _implement_ FrontendStatsTracer, however we can collapse some of the layers in the implementation later. Many of the usages should also become redundant over time once more code is converted over to requests.
440 lines
16 KiB
C++
440 lines
16 KiB
C++
//===--- NameBinding.cpp - Name Binding -----------------------------------===//
|
|
//
|
|
// This source file is part of the Swift.org open source project
|
|
//
|
|
// Copyright (c) 2014 - 2017 Apple Inc. and the Swift project authors
|
|
// Licensed under Apache License v2.0 with Runtime Library Exception
|
|
//
|
|
// See https://swift.org/LICENSE.txt for license information
|
|
// See https://swift.org/CONTRIBUTORS.txt for the list of Swift project authors
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
//
|
|
// This file implements name binding for Swift.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#include "swift/AST/ASTWalker.h"
|
|
#include "swift/AST/DiagnosticsSema.h"
|
|
#include "swift/AST/ModuleLoader.h"
|
|
#include "swift/AST/ModuleNameLookup.h"
|
|
#include "swift/AST/NameLookup.h"
|
|
#include "swift/AST/SourceFile.h"
|
|
#include "swift/AST/SubstitutionMap.h"
|
|
#include "swift/Basic/Statistic.h"
|
|
#include "swift/ClangImporter/ClangModule.h"
|
|
#include "swift/Parse/Parser.h"
|
|
#include "swift/Subsystems.h"
|
|
#include "clang/Basic/Module.h"
|
|
#include "llvm/ADT/DenseMap.h"
|
|
#include "llvm/ADT/TinyPtrVector.h"
|
|
#include "llvm/ADT/Twine.h"
|
|
#include "llvm/Support/Path.h"
|
|
#include "llvm/Support/SaveAndRestore.h"
|
|
#include <algorithm>
|
|
#include <system_error>
|
|
using namespace swift;
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
// NameBinder
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
using ImportedModule = ModuleDecl::ImportedModule;
|
|
using ImportOptions = SourceFile::ImportOptions;
|
|
|
|
namespace {
|
|
class NameBinder {
|
|
public:
|
|
SourceFile &SF;
|
|
ASTContext &Context;
|
|
|
|
NameBinder(SourceFile &SF) : SF(SF), Context(SF.getASTContext()) {}
|
|
|
|
template<typename ...ArgTypes>
|
|
InFlightDiagnostic diagnose(ArgTypes &&...Args) {
|
|
return Context.Diags.diagnose(std::forward<ArgTypes>(Args)...);
|
|
}
|
|
|
|
void addImport(SmallVectorImpl<SourceFile::ImportedModuleDesc> &imports,
|
|
ImportDecl *ID);
|
|
|
|
/// Load a module referenced by an import statement.
|
|
///
|
|
/// Returns null if no module can be loaded.
|
|
ModuleDecl *getModule(ArrayRef<std::pair<Identifier,SourceLoc>> ModuleID);
|
|
};
|
|
} // end anonymous namespace
|
|
|
|
ModuleDecl *
|
|
NameBinder::getModule(ArrayRef<std::pair<Identifier, SourceLoc>> modulePath) {
|
|
assert(!modulePath.empty());
|
|
auto moduleID = modulePath[0];
|
|
|
|
// The Builtin module cannot be explicitly imported unless we're a .sil file
|
|
// or in the REPL.
|
|
if ((SF.Kind == SourceFileKind::SIL || SF.Kind == SourceFileKind::REPL) &&
|
|
moduleID.first == Context.TheBuiltinModule->getName())
|
|
return Context.TheBuiltinModule;
|
|
|
|
// If the imported module name is the same as the current module,
|
|
// skip the Swift module loader and use the Clang module loader instead.
|
|
// This allows a Swift module to extend a Clang module of the same name.
|
|
//
|
|
// FIXME: We'd like to only use this in SIL mode, but unfortunately we use it
|
|
// for our fake overlays as well.
|
|
if (moduleID.first == SF.getParentModule()->getName() &&
|
|
modulePath.size() == 1) {
|
|
if (auto importer = Context.getClangModuleLoader())
|
|
return importer->loadModule(moduleID.second, modulePath);
|
|
return nullptr;
|
|
}
|
|
|
|
return Context.getModule(modulePath);
|
|
}
|
|
|
|
/// Returns true if a decl with the given \p actual kind can legally be
|
|
/// imported via the given \p expected kind.
|
|
static bool isCompatibleImportKind(ImportKind expected, ImportKind actual) {
|
|
if (expected == actual)
|
|
return true;
|
|
if (expected != ImportKind::Type)
|
|
return false;
|
|
|
|
switch (actual) {
|
|
case ImportKind::Module:
|
|
llvm_unreachable("module imports do not bring in decls");
|
|
case ImportKind::Type:
|
|
llvm_unreachable("individual decls cannot have abstract import kind");
|
|
case ImportKind::Struct:
|
|
case ImportKind::Class:
|
|
case ImportKind::Enum:
|
|
return true;
|
|
case ImportKind::Protocol:
|
|
case ImportKind::Var:
|
|
case ImportKind::Func:
|
|
return false;
|
|
}
|
|
|
|
llvm_unreachable("Unhandled ImportKind in switch.");
|
|
}
|
|
|
|
static bool isNominalImportKind(ImportKind kind) {
|
|
switch (kind) {
|
|
case ImportKind::Module:
|
|
llvm_unreachable("module imports do not bring in decls");
|
|
case ImportKind::Struct:
|
|
case ImportKind::Class:
|
|
case ImportKind::Enum:
|
|
case ImportKind::Protocol:
|
|
return true;
|
|
case ImportKind::Type:
|
|
case ImportKind::Var:
|
|
case ImportKind::Func:
|
|
return false;
|
|
}
|
|
llvm_unreachable("unhandled kind");
|
|
}
|
|
|
|
static const char *getImportKindString(ImportKind kind) {
|
|
switch (kind) {
|
|
case ImportKind::Module:
|
|
llvm_unreachable("module imports do not bring in decls");
|
|
case ImportKind::Type:
|
|
return "typealias";
|
|
case ImportKind::Struct:
|
|
return "struct";
|
|
case ImportKind::Class:
|
|
return "class";
|
|
case ImportKind::Enum:
|
|
return "enum";
|
|
case ImportKind::Protocol:
|
|
return "protocol";
|
|
case ImportKind::Var:
|
|
return "var";
|
|
case ImportKind::Func:
|
|
return "func";
|
|
}
|
|
|
|
llvm_unreachable("Unhandled ImportKind in switch.");
|
|
}
|
|
|
|
static bool shouldImportSelfImportClang(const ImportDecl *ID,
|
|
const SourceFile &SF) {
|
|
// FIXME: We use '@_exported' for fake overlays in testing.
|
|
if (ID->isExported())
|
|
return true;
|
|
if (SF.Kind == SourceFileKind::SIL)
|
|
return true;
|
|
return false;
|
|
}
|
|
|
|
void NameBinder::addImport(
|
|
SmallVectorImpl<SourceFile::ImportedModuleDesc> &imports, ImportDecl *ID) {
|
|
if (ID->getModulePath().front().first == SF.getParentModule()->getName() &&
|
|
ID->getModulePath().size() == 1 && !shouldImportSelfImportClang(ID, SF)) {
|
|
// If the imported module name is the same as the current module,
|
|
// produce a diagnostic.
|
|
StringRef filename = llvm::sys::path::filename(SF.getFilename());
|
|
if (filename.empty())
|
|
Context.Diags.diagnose(ID, diag::sema_import_current_module,
|
|
ID->getModulePath().front().first);
|
|
else
|
|
Context.Diags.diagnose(ID, diag::sema_import_current_module_with_file,
|
|
filename, ID->getModulePath().front().first);
|
|
ID->setModule(SF.getParentModule());
|
|
return;
|
|
}
|
|
|
|
ModuleDecl *M = getModule(ID->getModulePath());
|
|
if (!M) {
|
|
SmallString<64> modulePathStr;
|
|
interleave(ID->getModulePath(),
|
|
[&](ImportDecl::AccessPathElement elem) {
|
|
modulePathStr += elem.first.str();
|
|
},
|
|
[&] { modulePathStr += "."; });
|
|
|
|
auto diagKind = diag::sema_no_import;
|
|
if (SF.Kind == SourceFileKind::REPL || Context.LangOpts.DebuggerSupport)
|
|
diagKind = diag::sema_no_import_repl;
|
|
diagnose(ID->getLoc(), diagKind, modulePathStr);
|
|
|
|
if (Context.SearchPathOpts.SDKPath.empty() &&
|
|
llvm::Triple(llvm::sys::getProcessTriple()).isMacOSX()) {
|
|
diagnose(SourceLoc(), diag::sema_no_import_no_sdk);
|
|
diagnose(SourceLoc(), diag::sema_no_import_no_sdk_xcrun);
|
|
}
|
|
return;
|
|
}
|
|
|
|
ID->setModule(M);
|
|
|
|
ModuleDecl *topLevelModule;
|
|
if (ID->getModulePath().size() == 1) {
|
|
topLevelModule = M;
|
|
} else {
|
|
// If we imported a submodule, import the top-level module as well.
|
|
Identifier topLevelName = ID->getModulePath().front().first;
|
|
topLevelModule = Context.getLoadedModule(topLevelName);
|
|
if (!topLevelModule) {
|
|
// Clang can sometimes import top-level modules as if they were
|
|
// submodules.
|
|
assert(!M->getFiles().empty() &&
|
|
isa<ClangModuleUnit>(M->getFiles().front()));
|
|
topLevelModule = M;
|
|
} else if (topLevelModule == SF.getParentModule()) {
|
|
// This can happen when compiling a mixed-source framework (or overlay)
|
|
// that imports a submodule of its C part.
|
|
topLevelModule = nullptr;
|
|
}
|
|
}
|
|
|
|
auto *testableAttr = ID->getAttrs().getAttribute<TestableAttr>();
|
|
if (testableAttr && topLevelModule &&
|
|
!topLevelModule->isTestingEnabled() &&
|
|
!topLevelModule->isNonSwiftModule() &&
|
|
Context.LangOpts.EnableTestableAttrRequiresTestableModule) {
|
|
diagnose(ID->getModulePath().front().second, diag::module_not_testable,
|
|
ID->getModulePath().front().first);
|
|
testableAttr->setInvalid();
|
|
}
|
|
|
|
auto *privateImportAttr = ID->getAttrs().getAttribute<PrivateImportAttr>();
|
|
StringRef privateImportFileName;
|
|
if (privateImportAttr) {
|
|
if (!topLevelModule || !topLevelModule->arePrivateImportsEnabled()) {
|
|
diagnose(ID->getModulePath().front().second,
|
|
diag::module_not_compiled_for_private_import,
|
|
ID->getModulePath().front().first);
|
|
privateImportAttr->setInvalid();
|
|
} else {
|
|
privateImportFileName = privateImportAttr->getSourceFile();
|
|
}
|
|
}
|
|
|
|
if (SF.getParentModule()->isResilient() && topLevelModule &&
|
|
!topLevelModule->isResilient() &&
|
|
!topLevelModule->isNonSwiftModule() &&
|
|
!ID->getAttrs().hasAttribute<ImplementationOnlyAttr>()) {
|
|
diagnose(ID->getModulePath().front().second,
|
|
diag::module_not_compiled_with_library_evolution,
|
|
topLevelModule->getName(), SF.getParentModule()->getName());
|
|
}
|
|
|
|
ImportOptions options;
|
|
if (ID->isExported())
|
|
options |= SourceFile::ImportFlags::Exported;
|
|
if (testableAttr)
|
|
options |= SourceFile::ImportFlags::Testable;
|
|
if (privateImportAttr)
|
|
options |= SourceFile::ImportFlags::PrivateImport;
|
|
|
|
auto *implementationOnlyAttr =
|
|
ID->getAttrs().getAttribute<ImplementationOnlyAttr>();
|
|
if (implementationOnlyAttr) {
|
|
if (options.contains(SourceFile::ImportFlags::Exported)) {
|
|
diagnose(ID, diag::import_implementation_cannot_be_exported,
|
|
topLevelModule->getName())
|
|
.fixItRemove(implementationOnlyAttr->getRangeWithAt());
|
|
} else {
|
|
options |= SourceFile::ImportFlags::ImplementationOnly;
|
|
}
|
|
}
|
|
|
|
imports.push_back(SourceFile::ImportedModuleDesc(
|
|
{ID->getDeclPath(), M}, options, privateImportFileName));
|
|
|
|
if (topLevelModule && topLevelModule != M)
|
|
imports.push_back(SourceFile::ImportedModuleDesc(
|
|
{ID->getDeclPath(), topLevelModule}, options, privateImportFileName));
|
|
|
|
if (ID->getImportKind() != ImportKind::Module) {
|
|
// If we're importing a specific decl, validate the import kind.
|
|
using namespace namelookup;
|
|
auto declPath = ID->getDeclPath();
|
|
|
|
// FIXME: Doesn't handle scoped testable imports correctly.
|
|
assert(declPath.size() == 1 && "can't handle sub-decl imports");
|
|
SmallVector<ValueDecl *, 8> decls;
|
|
lookupInModule(topLevelModule, declPath.front().first, decls,
|
|
NLKind::QualifiedLookup, ResolutionKind::Overloadable,
|
|
&SF);
|
|
|
|
if (decls.empty()) {
|
|
diagnose(ID, diag::decl_does_not_exist_in_module,
|
|
static_cast<unsigned>(ID->getImportKind()),
|
|
declPath.front().first,
|
|
ID->getModulePath().front().first)
|
|
.highlight(SourceRange(declPath.front().second,
|
|
declPath.back().second));
|
|
return;
|
|
}
|
|
|
|
ID->setDecls(Context.AllocateCopy(decls));
|
|
|
|
Optional<ImportKind> actualKind = ImportDecl::findBestImportKind(decls);
|
|
if (!actualKind.hasValue()) {
|
|
// FIXME: print entire module name?
|
|
diagnose(ID, diag::ambiguous_decl_in_module,
|
|
declPath.front().first, M->getName());
|
|
for (auto next : decls)
|
|
diagnose(next, diag::found_candidate);
|
|
|
|
} else if (!isCompatibleImportKind(ID->getImportKind(), *actualKind)) {
|
|
Optional<InFlightDiagnostic> emittedDiag;
|
|
if (*actualKind == ImportKind::Type &&
|
|
isNominalImportKind(ID->getImportKind())) {
|
|
assert(decls.size() == 1 &&
|
|
"if we start suggesting ImportKind::Type for, e.g., a mix of "
|
|
"structs and classes, we'll need a different message here");
|
|
assert(isa<TypeAliasDecl>(decls.front()) &&
|
|
"ImportKind::Type is only the best choice for a typealias");
|
|
auto *typealias = cast<TypeAliasDecl>(decls.front());
|
|
emittedDiag.emplace(diagnose(ID,
|
|
diag::imported_decl_is_wrong_kind_typealias,
|
|
typealias->getDescriptiveKind(),
|
|
TypeAliasType::get(typealias, Type(), SubstitutionMap(),
|
|
typealias->getUnderlyingType()),
|
|
getImportKindString(ID->getImportKind())));
|
|
} else {
|
|
emittedDiag.emplace(diagnose(ID, diag::imported_decl_is_wrong_kind,
|
|
declPath.front().first,
|
|
getImportKindString(ID->getImportKind()),
|
|
static_cast<unsigned>(*actualKind)));
|
|
}
|
|
|
|
emittedDiag->fixItReplace(SourceRange(ID->getKindLoc()),
|
|
getImportKindString(*actualKind));
|
|
emittedDiag->flush();
|
|
|
|
if (decls.size() == 1)
|
|
diagnose(decls.front(), diag::decl_declared_here,
|
|
decls.front()->getFullName());
|
|
}
|
|
}
|
|
}
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
// performNameBinding
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
template<typename OP_DECL>
|
|
static void insertOperatorDecl(NameBinder &Binder,
|
|
SourceFile::OperatorMap<OP_DECL*> &Operators,
|
|
OP_DECL *OpDecl) {
|
|
auto previousDecl = Operators.find(OpDecl->getName());
|
|
if (previousDecl != Operators.end()) {
|
|
Binder.diagnose(OpDecl->getLoc(), diag::operator_redeclared);
|
|
Binder.diagnose(previousDecl->second.getPointer(),
|
|
diag::previous_operator_decl);
|
|
return;
|
|
}
|
|
|
|
// FIXME: The second argument indicates whether the given operator is visible
|
|
// outside the current file.
|
|
Operators[OpDecl->getName()] = { OpDecl, true };
|
|
}
|
|
|
|
static void insertPrecedenceGroupDecl(NameBinder &binder, SourceFile &SF,
|
|
PrecedenceGroupDecl *group) {
|
|
auto previousDecl = SF.PrecedenceGroups.find(group->getName());
|
|
if (previousDecl != SF.PrecedenceGroups.end()) {
|
|
binder.diagnose(group->getLoc(), diag::precedence_group_redeclared);
|
|
binder.diagnose(previousDecl->second.getPointer(),
|
|
diag::previous_precedence_group_decl);
|
|
return;
|
|
}
|
|
|
|
// FIXME: The second argument indicates whether the given precedence
|
|
// group is visible outside the current file.
|
|
SF.PrecedenceGroups[group->getName()] = { group, true };
|
|
}
|
|
|
|
/// performNameBinding - Once parsing is complete, this walks the AST to
|
|
/// resolve names and do other top-level validation.
|
|
///
|
|
/// At this point parsing has been performed, but we still have
|
|
/// UnresolvedDeclRefExpr nodes for unresolved value names, and we may have
|
|
/// unresolved type names as well. This handles import directives and forward
|
|
/// references.
|
|
void swift::performNameBinding(SourceFile &SF, unsigned StartElem) {
|
|
FrontendStatsTracer tracer(SF.getASTContext().Stats, "Name binding");
|
|
|
|
// Make sure we skip adding the standard library imports if the
|
|
// source file is empty.
|
|
if (SF.ASTStage == SourceFile::NameBound || SF.Decls.empty()) {
|
|
SF.ASTStage = SourceFile::NameBound;
|
|
return;
|
|
}
|
|
|
|
// Reset the name lookup cache so we find new decls.
|
|
// FIXME: This is inefficient.
|
|
SF.clearLookupCache();
|
|
|
|
NameBinder Binder(SF);
|
|
|
|
SmallVector<SourceFile::ImportedModuleDesc, 8> ImportedModules;
|
|
|
|
// Do a prepass over the declarations to find and load the imported modules
|
|
// and map operator decls.
|
|
for (auto D : llvm::makeArrayRef(SF.Decls).slice(StartElem)) {
|
|
if (auto *ID = dyn_cast<ImportDecl>(D)) {
|
|
Binder.addImport(ImportedModules, ID);
|
|
} else if (auto *OD = dyn_cast<PrefixOperatorDecl>(D)) {
|
|
insertOperatorDecl(Binder, SF.PrefixOperators, OD);
|
|
} else if (auto *OD = dyn_cast<PostfixOperatorDecl>(D)) {
|
|
insertOperatorDecl(Binder, SF.PostfixOperators, OD);
|
|
} else if (auto *OD = dyn_cast<InfixOperatorDecl>(D)) {
|
|
insertOperatorDecl(Binder, SF.InfixOperators, OD);
|
|
} else if (auto *PGD = dyn_cast<PrecedenceGroupDecl>(D)) {
|
|
insertPrecedenceGroupDecl(Binder, SF, PGD);
|
|
}
|
|
}
|
|
|
|
SF.addImports(ImportedModules);
|
|
|
|
SF.ASTStage = SourceFile::NameBound;
|
|
verify(SF);
|
|
}
|
|
|