| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755 |
- // Part of the Carbon Language project, under the Apache License v2.0 with LLVM
- // Exceptions. See /LICENSE for license information.
- // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
- #include "toolchain/check/import.h"
- #include <optional>
- #include <utility>
- #include "common/check.h"
- #include "common/map.h"
- #include "toolchain/base/kind_switch.h"
- #include "toolchain/check/context.h"
- #include "toolchain/check/import_ref.h"
- #include "toolchain/check/inst.h"
- #include "toolchain/check/merge.h"
- #include "toolchain/check/name_lookup.h"
- #include "toolchain/check/type.h"
- #include "toolchain/parse/node_ids.h"
- #include "toolchain/sem_ir/file.h"
- #include "toolchain/sem_ir/ids.h"
- #include "toolchain/sem_ir/import_ir.h"
- #include "toolchain/sem_ir/inst.h"
- #include "toolchain/sem_ir/name_scope.h"
- #include "toolchain/sem_ir/typed_insts.h"
- namespace Carbon::Check {
- // Returns name information for an EntityWithParamsBase.
- template <typename T>
- static auto GetImportNameForEntity(const T& entity)
- -> std::pair<SemIR::NameId, SemIR::NameScopeId> {
- return {entity.name_id, entity.parent_scope_id};
- }
- template <>
- auto GetImportNameForEntity(const SemIR::NameScope& entity)
- -> std::pair<SemIR::NameId, SemIR::NameScopeId> {
- return {entity.name_id(), entity.parent_scope_id()};
- }
- // Returns name information for the entity, corresponding to IDs in the import
- // IR rather than the current IR.
- static auto GetImportName(const SemIR::File& import_sem_ir,
- SemIR::Inst import_inst)
- -> std::pair<SemIR::NameId, SemIR::NameScopeId> {
- CARBON_KIND_SWITCH(import_inst) {
- case SemIR::AliasBinding::Kind:
- case SemIR::RefBinding::Kind:
- case SemIR::SymbolicBinding::Kind:
- case SemIR::ValueBinding::Kind:
- case SemIR::ExportDecl::Kind: {
- auto bind_inst = import_inst.As<SemIR::AnyBindingOrExportDecl>();
- return GetImportNameForEntity(
- import_sem_ir.entity_names().Get(bind_inst.entity_name_id));
- }
- case CARBON_KIND(SemIR::ClassDecl class_decl): {
- return GetImportNameForEntity(
- import_sem_ir.classes().Get(class_decl.class_id));
- }
- case CARBON_KIND(SemIR::FunctionDecl function_decl): {
- return GetImportNameForEntity(
- import_sem_ir.functions().Get(function_decl.function_id));
- }
- case CARBON_KIND(SemIR::InterfaceDecl interface_decl): {
- return GetImportNameForEntity(
- import_sem_ir.interfaces().Get(interface_decl.interface_id));
- }
- case CARBON_KIND(SemIR::Namespace ns): {
- return GetImportNameForEntity(
- import_sem_ir.name_scopes().Get(ns.name_scope_id));
- }
- case CARBON_KIND(SemIR::NamedConstraintDecl named_constraint_decl): {
- return GetImportNameForEntity(import_sem_ir.named_constraints().Get(
- named_constraint_decl.named_constraint_id));
- }
- default:
- CARBON_FATAL("Unsupported export kind: {0}", import_inst);
- }
- }
- // Translate the name to the current IR. It will usually be an identifier, but
- // could also be a builtin name ID which is equivalent cross-IR.
- static auto CopyNameFromImportIR(Context& context,
- const SemIR::File& import_sem_ir,
- SemIR::NameId import_name_id)
- -> SemIR::NameId {
- if (auto import_identifier_id = import_name_id.AsIdentifierId();
- import_identifier_id.has_value()) {
- auto name = import_sem_ir.identifiers().Get(import_identifier_id);
- return SemIR::NameId::ForIdentifier(context.identifiers().Add(name));
- }
- return import_name_id;
- }
- // Returns the LocIdAndInst for the namespace.
- static auto MakeImportedNamespaceLocIdAndInst(Context& context,
- SemIR::InstId import_id,
- SemIR::Namespace namespace_inst)
- -> SemIR::LocIdAndInst {
- if (!import_id.has_value()) {
- // TODO: Associate the namespace with a proper location. This is related to:
- // https://github.com/carbon-language/carbon-lang/issues/4666.
- return SemIR::LocIdAndInst::NoLoc(namespace_inst);
- }
- // If the import was itself imported, use its location.
- if (auto import_ir_inst_id = context.insts().GetImportSource(import_id);
- import_ir_inst_id.has_value()) {
- return MakeImportedLocIdAndInst(context, import_ir_inst_id, namespace_inst);
- }
- // Otherwise we should have a node location for some kind of namespace
- // declaration in the current file.
- SemIR::LocId import_loc_id = context.insts().GetCanonicalLocId(import_id);
- switch (import_loc_id.kind()) {
- case SemIR::LocId::Kind::NodeId:
- return SemIR::LocIdAndInst(context.parse_tree().As<Parse::AnyNamespaceId>(
- import_loc_id.node_id()),
- namespace_inst);
- case SemIR::LocId::Kind::None:
- // TODO: Either document the use-case for this, or require a location.
- return SemIR::LocIdAndInst::NoLoc(namespace_inst);
- case SemIR::LocId::Kind::ImportIRInstId:
- case SemIR::LocId::Kind::InstId:
- CARBON_FATAL("Unexpected LocId kind");
- }
- }
- auto AddImportNamespace(Context& context, SemIR::TypeId namespace_type_id,
- SemIR::NameId name_id,
- SemIR::NameScopeId parent_scope_id,
- SemIR::InstId import_id) -> AddImportNamespaceResult {
- auto namespace_inst =
- SemIR::Namespace{.type_id = namespace_type_id,
- .name_scope_id = SemIR::NameScopeId::None,
- .import_id = import_id};
- auto namespace_inst_and_loc =
- MakeImportedNamespaceLocIdAndInst(context, import_id, namespace_inst);
- AddImportNamespaceResult result = {
- .name_scope_id = SemIR::NameScopeId::None,
- .inst_id =
- AddPlaceholderImportedInstInNoBlock(context, namespace_inst_and_loc)};
- namespace_inst.name_scope_id =
- context.name_scopes().Add(result.inst_id, name_id, parent_scope_id);
- result.name_scope_id = namespace_inst.name_scope_id;
- ReplaceInstBeforeConstantUse(context, result.inst_id, namespace_inst);
- return result;
- }
- auto AddImportNamespaceToScope(
- Context& context, SemIR::TypeId namespace_type_id, SemIR::NameId name_id,
- SemIR::NameScopeId parent_scope_id, bool diagnose_duplicate_namespace,
- llvm::function_ref<SemIR::InstId()> make_import_id)
- -> AddImportNamespaceToScopeResult {
- auto& parent_scope = context.name_scopes().Get(parent_scope_id);
- auto [inserted, entry_id] = parent_scope.LookupOrAdd(
- name_id,
- // This InstId is temporary and would be overridden if used.
- SemIR::InstId::None, SemIR::AccessKind::Public);
- if (!inserted) {
- const auto& prev_entry = parent_scope.GetEntry(entry_id);
- if (!prev_entry.result.is_poisoned()) {
- auto prev_inst_id = prev_entry.result.target_inst_id();
- if (auto namespace_inst =
- context.insts().TryGetAs<SemIR::Namespace>(prev_inst_id)) {
- if (diagnose_duplicate_namespace) {
- auto import_id = make_import_id();
- CARBON_CHECK(import_id.has_value());
- // TODO: Pass the import package name location instead of the import
- // id to get more accurate location.
- DiagnoseDuplicateName(context, name_id, SemIR::LocId(import_id),
- SemIR::LocId(prev_inst_id));
- }
- return {.add_result = {.name_scope_id = namespace_inst->name_scope_id,
- .inst_id = prev_inst_id},
- .is_duplicate_of_namespace_in_current_package = true};
- }
- }
- }
- auto import_id = make_import_id();
- CARBON_CHECK(import_id.has_value());
- AddImportNamespaceToScopeResult result = {
- .add_result = AddImportNamespace(context, namespace_type_id, name_id,
- parent_scope_id, import_id),
- .is_duplicate_of_namespace_in_current_package = false};
- // Diagnose if there's a name conflict, but still produce the namespace to
- // supersede the name conflict in order to avoid repeat diagnostics. Names
- // are poisoned optimistically by name lookup before checking for imports,
- // so we may be overwriting a poisoned entry here.
- auto& lookup_result = parent_scope.GetEntry(entry_id).result;
- if (!lookup_result.is_poisoned() && !inserted) {
- // TODO: Pass the import namespace name location instead of the namespace
- // id to get more accurate location.
- DiagnoseDuplicateName(context, name_id,
- SemIR::LocId(result.add_result.inst_id),
- SemIR::LocId(lookup_result.target_inst_id()));
- }
- lookup_result = SemIR::ScopeLookupResult::MakeFound(
- result.add_result.inst_id, SemIR::AccessKind::Public);
- return result;
- }
- // Adds a copied namespace to the cache.
- static auto CacheCopiedNamespace(
- Map<SemIR::NameScopeId, SemIR::NameScopeId>& copied_namespaces,
- SemIR::NameScopeId import_scope_id, SemIR::NameScopeId to_scope_id)
- -> void {
- auto result = copied_namespaces.Insert(import_scope_id, to_scope_id);
- CARBON_CHECK(result.is_inserted() || result.value() == to_scope_id,
- "Copy result for namespace changed from {0} to {1}",
- import_scope_id, to_scope_id);
- }
- // Copies a namespace from the import IR, returning its ID. This may diagnose
- // name conflicts, but that won't change the result because namespaces supersede
- // other names in conflicts. The bool on return is true if there was a name
- // conflict. copied_namespaces is optional.
- static auto CopySingleNameScopeFromImportIR(
- Context& context, SemIR::TypeId namespace_type_id,
- Map<SemIR::NameScopeId, SemIR::NameScopeId>* copied_namespaces,
- SemIR::ImportIRId ir_id, SemIR::InstId import_inst_id,
- SemIR::NameScopeId import_scope_id, SemIR::NameScopeId parent_scope_id,
- SemIR::NameId name_id) -> AddImportNamespaceToScopeResult {
- // Produce the namespace for the entry.
- auto make_import_id = [&]() {
- auto entity_name_id = context.entity_names().Add(
- {.name_id = name_id, .parent_scope_id = parent_scope_id});
- auto import_ir_inst_id = context.import_ir_insts().Add(
- SemIR::ImportIRInst(ir_id, import_inst_id));
- auto inst_id = AddInstInNoBlock(
- context, MakeImportedLocIdAndInst<SemIR::ImportRefLoaded>(
- context, import_ir_inst_id,
- {.type_id = namespace_type_id,
- .import_ir_inst_id = import_ir_inst_id,
- .entity_name_id = entity_name_id}));
- context.imports().push_back(inst_id);
- return inst_id;
- };
- AddImportNamespaceToScopeResult result = AddImportNamespaceToScope(
- context, namespace_type_id, name_id, parent_scope_id,
- /*diagnose_duplicate_namespace=*/false, make_import_id);
- auto namespace_const_id =
- context.constant_values().Get(result.add_result.inst_id);
- context
- .import_ir_constant_values()[context.sem_ir().import_irs().GetRawIndex(
- ir_id)]
- .Set(import_inst_id, namespace_const_id);
- if (copied_namespaces) {
- CacheCopiedNamespace(*copied_namespaces, import_scope_id,
- result.add_result.name_scope_id);
- }
- return result;
- }
- // Copies ancestor name scopes from the import IR. Handles the parent traversal.
- // Returns the NameScope corresponding to the copied import_parent_scope_id.
- static auto CopyAncestorNameScopesFromImportIR(
- Context& context, SemIR::TypeId namespace_type_id,
- const SemIR::File& import_sem_ir, SemIR::ImportIRId ir_id,
- SemIR::NameScopeId import_parent_scope_id,
- Map<SemIR::NameScopeId, SemIR::NameScopeId>& copied_namespaces)
- -> SemIR::NameScopeId {
- // Package-level names don't need work.
- if (import_parent_scope_id == SemIR::NameScopeId::Package) {
- return import_parent_scope_id;
- }
- // The scope to add namespaces to. Note this may change while looking at
- // parent scopes, if we encounter a namespace that's already added.
- auto scope_cursor = SemIR::NameScopeId::Package;
- // Build a stack of ancestor namespace names, with the immediate parent first.
- llvm::SmallVector<SemIR::NameScopeId> new_namespaces;
- while (import_parent_scope_id != SemIR::NameScopeId::Package) {
- // If the namespace was already copied, reuse the results.
- if (auto result = copied_namespaces.Lookup(import_parent_scope_id)) {
- // We inject names at the provided scope, and don't need to keep
- // traversing parents.
- scope_cursor = result.value();
- break;
- }
- // The namespace hasn't been copied yet, so add it to our list.
- const auto& scope = import_sem_ir.name_scopes().Get(import_parent_scope_id);
- auto scope_inst =
- import_sem_ir.insts().GetAs<SemIR::Namespace>(scope.inst_id());
- new_namespaces.push_back(scope_inst.name_scope_id);
- import_parent_scope_id = scope.parent_scope_id();
- }
- // Add ancestor namespace names, starting with the outermost.
- for (auto import_scope_id : llvm::reverse(new_namespaces)) {
- const auto& import_scope = import_sem_ir.name_scopes().Get(import_scope_id);
- auto name_id =
- CopyNameFromImportIR(context, import_sem_ir, import_scope.name_id());
- scope_cursor =
- CopySingleNameScopeFromImportIR(
- context, namespace_type_id, &copied_namespaces, ir_id,
- import_scope.inst_id(), import_scope_id, scope_cursor, name_id)
- .add_result.name_scope_id;
- }
- return scope_cursor;
- }
- // Imports the function if it's a non-owning declaration with the current file
- // as owner.
- static auto LoadImportForOwningFunction(Context& context,
- const SemIR::File& import_sem_ir,
- const SemIR::Function& function,
- SemIR::InstId import_ref) {
- if (!function.extern_library_id.has_value()) {
- return;
- }
- CARBON_CHECK(function.is_extern && "Expected extern functions");
- auto lib_id = function.extern_library_id;
- bool is_lib_default = lib_id == SemIR::LibraryNameId::Default;
- auto current_id = context.sem_ir().library_id();
- bool is_current_default = current_id == SemIR::LibraryNameId::Default;
- if (is_lib_default == is_current_default) {
- if (is_lib_default) {
- // Both libraries are default, import ref.
- LoadImportRef(context, import_ref);
- } else {
- // Both libraries are non-default: check if they're the same named
- // library, import ref if yes.
- auto str_owner_library = context.string_literal_values().Get(
- current_id.AsStringLiteralValueId());
- auto str_decl_library = import_sem_ir.string_literal_values().Get(
- lib_id.AsStringLiteralValueId());
- if (str_owner_library == str_decl_library) {
- LoadImportRef(context, import_ref);
- }
- }
- }
- }
- // Adds an ImportRef for an entity, handling merging if needed.
- static auto AddImportRefOrMerge(Context& context, SemIR::ImportIRId ir_id,
- const SemIR::File& import_sem_ir,
- SemIR::InstId import_inst_id,
- SemIR::NameScopeId parent_scope_id,
- SemIR::NameId name_id) -> void {
- // Leave a placeholder that the inst comes from the other IR.
- auto& parent_scope = context.name_scopes().Get(parent_scope_id);
- auto [inserted, entry_id] = parent_scope.LookupOrAdd(
- name_id,
- // This InstId is temporary and would be overridden if used.
- SemIR::InstId::None, SemIR::AccessKind::Public);
- auto& entry = parent_scope.GetEntry(entry_id);
- if (inserted) {
- auto entity_name_id = context.entity_names().Add(
- {.name_id = name_id, .parent_scope_id = parent_scope_id});
- auto import_ref = AddImportRef(
- context, SemIR::ImportIRInst(ir_id, import_inst_id), entity_name_id);
- entry.result = SemIR::ScopeLookupResult::MakeFound(
- import_ref, SemIR::AccessKind::Public);
- // Import references for non-owning declarations that match current library.
- if (auto function_decl =
- import_sem_ir.insts().TryGetAs<SemIR::FunctionDecl>(
- import_inst_id)) {
- LoadImportForOwningFunction(
- context, import_sem_ir,
- import_sem_ir.functions().Get(function_decl->function_id),
- import_ref);
- }
- return;
- }
- auto inst_id = entry.result.target_inst_id();
- auto prev_ir_inst = GetCanonicalImportIRInst(context, inst_id);
- VerifySameCanonicalImportIRInst(context, name_id, inst_id, prev_ir_inst,
- ir_id, &import_sem_ir, import_inst_id);
- }
- namespace {
- // A scope in the API file that still needs to be copied to the implementation
- // file. Only used for API file imports.
- struct TodoScope {
- // The scope's instruction in the API file.
- SemIR::InstId api_inst_id;
- // The scope in the API file.
- SemIR::NameScopeId api_scope_id;
- // The already-translated scope name in the implementation file.
- SemIR::NameId impl_name_id;
- // The already-copied parent scope in the implementation file.
- SemIR::NameScopeId impl_parent_scope_id;
- };
- } // namespace
- // Adds an ImportRef to a name scope.
- static auto AddScopedImportRef(Context& context,
- SemIR::NameScopeId parent_scope_id,
- SemIR::NameScope& parent_scope,
- SemIR::NameId name_id,
- SemIR::ImportIRInst import_inst,
- SemIR::AccessKind access_kind) -> SemIR::InstId {
- // Add an ImportRef for other instructions.
- auto impl_entity_name_id = context.entity_names().Add(
- {.name_id = name_id, .parent_scope_id = parent_scope_id});
- auto import_ref_id = AddImportRef(context, import_inst, impl_entity_name_id);
- parent_scope.AddRequired({.name_id = name_id,
- .result = SemIR::ScopeLookupResult::MakeFound(
- import_ref_id, access_kind)});
- return import_ref_id;
- }
- // Imports entries in a specific scope into the current file.
- static auto ImportScopeFromApiFile(Context& context,
- const SemIR::File& api_sem_ir,
- SemIR::NameScopeId api_scope_id,
- SemIR::NameScopeId impl_scope_id,
- llvm::SmallVector<TodoScope>& todo_scopes)
- -> void {
- const auto& api_scope = api_sem_ir.name_scopes().Get(api_scope_id);
- auto& impl_scope = context.name_scopes().Get(impl_scope_id);
- for (const auto& api_entry : api_scope.entries()) {
- if (api_entry.result.is_poisoned()) {
- continue;
- }
- auto impl_name_id =
- CopyNameFromImportIR(context, api_sem_ir, api_entry.name_id);
- if (auto ns = api_sem_ir.insts().TryGetAs<SemIR::Namespace>(
- api_entry.result.target_inst_id())) {
- // Ignore cross-package imports. These will be handled through
- // ImportLibrariesFromOtherPackage.
- if (api_scope_id == SemIR::NameScopeId::Package) {
- const auto& ns_scope = api_sem_ir.name_scopes().Get(ns->name_scope_id);
- if (!ns_scope.import_ir_scopes().empty()) {
- continue;
- }
- }
- // Namespaces will be recursed into. Name scope creation is delayed in
- // order to avoid invalidating api_scope/impl_scope.
- todo_scopes.push_back({.api_inst_id = api_entry.result.target_inst_id(),
- .api_scope_id = ns->name_scope_id,
- .impl_name_id = impl_name_id,
- .impl_parent_scope_id = impl_scope_id});
- } else {
- // Add an ImportRef for other instructions.
- AddScopedImportRef(context, impl_scope_id, impl_scope, impl_name_id,
- SemIR::ImportIRInst(SemIR::ImportIRId::ApiForImpl,
- api_entry.result.target_inst_id()),
- api_entry.result.access_kind());
- }
- }
- }
- auto ImportApiFile(Context& context, SemIR::TypeId namespace_type_id,
- const SemIR::File& api_sem_ir) -> void {
- context.import_ir_constant_values()[SemIR::ImportIRId::ApiForImpl.index].Set(
- SemIR::Namespace::PackageInstId,
- context.constant_values().Get(SemIR::Namespace::PackageInstId));
- llvm::SmallVector<TodoScope> todo_scopes = {};
- ImportScopeFromApiFile(context, api_sem_ir, SemIR::NameScopeId::Package,
- SemIR::NameScopeId::Package, todo_scopes);
- while (!todo_scopes.empty()) {
- auto todo_scope = todo_scopes.pop_back_val();
- auto impl_scope_id =
- CopySingleNameScopeFromImportIR(
- context, namespace_type_id, /*copied_namespaces=*/nullptr,
- SemIR::ImportIRId::ApiForImpl, todo_scope.api_inst_id,
- todo_scope.api_scope_id, todo_scope.impl_parent_scope_id,
- todo_scope.impl_name_id)
- .add_result.name_scope_id;
- ImportScopeFromApiFile(context, api_sem_ir, todo_scope.api_scope_id,
- impl_scope_id, todo_scopes);
- }
- }
- auto ImportLibrariesFromCurrentPackage(
- Context& context, SemIR::TypeId namespace_type_id,
- llvm::ArrayRef<SemIR::ImportIR> import_irs) -> void {
- for (auto import_ir : import_irs) {
- auto ir_id = AddImportIR(context, import_ir);
- context
- .import_ir_constant_values()[context.sem_ir().import_irs().GetRawIndex(
- ir_id)]
- .Set(SemIR::Namespace::PackageInstId,
- context.constant_values().Get(SemIR::Namespace::PackageInstId));
- for (const auto import_inst_id :
- import_ir.sem_ir->inst_blocks().Get(SemIR::InstBlockId::Exports)) {
- auto import_inst = import_ir.sem_ir->insts().Get(import_inst_id);
- auto [import_name_id, import_parent_scope_id] =
- GetImportName(*import_ir.sem_ir, import_inst);
- Map<SemIR::NameScopeId, SemIR::NameScopeId> copied_namespaces;
- auto name_id =
- CopyNameFromImportIR(context, *import_ir.sem_ir, import_name_id);
- SemIR::NameScopeId parent_scope_id = CopyAncestorNameScopesFromImportIR(
- context, namespace_type_id, *import_ir.sem_ir, ir_id,
- import_parent_scope_id, copied_namespaces);
- if (auto import_namespace_inst = import_inst.TryAs<SemIR::Namespace>()) {
- // Namespaces are always imported because they're essential for
- // qualifiers, and the type is simple.
- CopySingleNameScopeFromImportIR(
- context, namespace_type_id, &copied_namespaces, ir_id,
- import_inst_id, import_namespace_inst->name_scope_id,
- parent_scope_id, name_id);
- } else {
- AddImportRefOrMerge(context, ir_id, *import_ir.sem_ir, import_inst_id,
- parent_scope_id, name_id);
- }
- }
- // If an import of the current package caused an error for the imported
- // file, it transitively affects the current file too.
- if (import_ir.sem_ir->name_scopes()
- .Get(SemIR::NameScopeId::Package)
- .has_error()) {
- context.name_scopes().Get(SemIR::NameScopeId::Package).set_has_error();
- }
- }
- }
- auto ImportLibrariesFromOtherPackage(Context& context,
- SemIR::TypeId namespace_type_id,
- SemIR::InstId import_decl_id,
- PackageNameId package_id,
- llvm::ArrayRef<SemIR::ImportIR> import_irs,
- bool has_load_error) -> void {
- CARBON_CHECK(has_load_error || !import_irs.empty(),
- "There should be either a load error or at least one IR.");
- auto name_id = SemIR::NameId::ForPackageName(package_id);
- AddImportNamespaceToScopeResult result = AddImportNamespaceToScope(
- context, namespace_type_id, name_id, SemIR::NameScopeId::Package,
- /*diagnose_duplicate_namespace=*/true, [&] { return import_decl_id; });
- auto namespace_const_id =
- context.constant_values().Get(result.add_result.inst_id);
- auto& scope = context.name_scopes().Get(result.add_result.name_scope_id);
- scope.set_is_closed_import(
- !result.is_duplicate_of_namespace_in_current_package);
- for (auto import_ir : import_irs) {
- auto ir_id = AddImportIR(context, import_ir);
- scope.AddImportIRScope({ir_id, SemIR::NameScopeId::Package});
- context
- .import_ir_constant_values()[context.sem_ir().import_irs().GetRawIndex(
- ir_id)]
- .Set(SemIR::Namespace::PackageInstId, namespace_const_id);
- }
- if (has_load_error) {
- scope.set_has_error();
- }
- }
- // Looks up a name in a scope imported from another package. An `identifier` is
- // provided if `name_id` corresponds to an identifier in the current file;
- // otherwise, `name_id` is file-agnostic and can be used directly.
- static auto LookupNameInImport(const SemIR::File& import_ir,
- SemIR::NameScopeId import_scope_id,
- SemIR::NameId name_id,
- llvm::StringRef identifier)
- -> const Carbon::SemIR::NameScope::Entry* {
- // Determine the NameId in the import IR.
- SemIR::NameId import_name_id = name_id;
- if (!identifier.empty()) {
- auto import_identifier_id = import_ir.identifiers().Lookup(identifier);
- if (!import_identifier_id.has_value()) {
- // Name doesn't exist in the import IR.
- return nullptr;
- }
- import_name_id = SemIR::NameId::ForIdentifier(import_identifier_id);
- }
- // Look up the name in the import scope.
- const auto& import_scope = import_ir.name_scopes().Get(import_scope_id);
- auto import_scope_entry_id = import_scope.Lookup(import_name_id);
- if (!import_scope_entry_id) {
- // Name doesn't exist in the import scope.
- return nullptr;
- }
- const auto& import_scope_entry =
- import_scope.GetEntry(*import_scope_entry_id);
- if (import_scope_entry.result.access_kind() != SemIR::AccessKind::Public) {
- // Ignore cross-package non-public names.
- return nullptr;
- }
- return &import_scope_entry;
- }
- // Adds a namespace that points to one in another package.
- static auto AddNamespaceFromOtherPackage(Context& context,
- SemIR::ImportIRId import_ir_id,
- SemIR::InstId import_inst_id,
- SemIR::Namespace import_ns,
- SemIR::NameScopeId parent_scope_id,
- SemIR::NameId name_id)
- -> SemIR::InstId {
- auto namespace_type_id =
- GetSingletonType(context, SemIR::NamespaceType::TypeInstId);
- AddImportNamespaceToScopeResult result = CopySingleNameScopeFromImportIR(
- context, namespace_type_id, /*copied_namespaces=*/nullptr, import_ir_id,
- import_inst_id, import_ns.name_scope_id, parent_scope_id, name_id);
- auto& scope = context.name_scopes().Get(result.add_result.name_scope_id);
- scope.set_is_closed_import(
- !result.is_duplicate_of_namespace_in_current_package);
- scope.AddImportIRScope({import_ir_id, import_ns.name_scope_id});
- return result.add_result.inst_id;
- }
- auto ImportNameFromOtherPackage(
- Context& context, SemIR::LocId loc_id, SemIR::NameScopeId scope_id,
- llvm::ArrayRef<std::pair<SemIR::ImportIRId, SemIR::NameScopeId>>
- import_ir_scopes,
- SemIR::NameId name_id) -> SemIR::InstId {
- // If the name is an identifier, get the string first so that it can be shared
- // when there are multiple IRs.
- llvm::StringRef identifier;
- if (auto identifier_id = name_id.AsIdentifierId();
- identifier_id.has_value()) {
- identifier = context.identifiers().Get(identifier_id);
- CARBON_CHECK(!identifier.empty());
- }
- // Annotate diagnostics as occurring during this name lookup.
- Diagnostics::AnnotationScope annotate_diagnostics(
- &context.emitter(), [&](auto& builder) {
- CARBON_DIAGNOSTIC(InNameLookup, Note, "in name lookup for `{0}`",
- SemIR::NameId);
- builder.Note(loc_id, InNameLookup, name_id);
- });
- // Although we track the result here and look in each IR, we pretty much use
- // the first result.
- auto result_id = SemIR::InstId::None;
- // The canonical IR and inst_id for where `result_id` came from, which may be
- // indirectly imported. This is only resolved on a conflict, when it can be
- // used to determine the conflict is actually the same instruction.
- std::optional<SemIR::ImportIRInst> canonical_result_inst;
- for (auto [import_ir_id, import_scope_id] : import_ir_scopes) {
- auto& import_ir = context.import_irs().Get(import_ir_id);
- const auto* import_scope_entry = LookupNameInImport(
- *import_ir.sem_ir, import_scope_id, name_id, identifier);
- if (!import_scope_entry || !import_scope_entry->result.is_found()) {
- continue;
- }
- SemIR::InstId import_scope_inst_id =
- import_scope_entry->result.target_inst_id();
- auto import_inst = import_ir.sem_ir->insts().Get(import_scope_inst_id);
- if (import_inst.Is<SemIR::AnyImportRef>()) {
- // This entity was added to name lookup by using an import, and is not
- // exported.
- continue;
- }
- // Add the first result found.
- if (!result_id.has_value()) {
- // If the imported instruction is a namespace, we add it directly instead
- // of as an ImportRef.
- if (auto import_ns = import_inst.TryAs<SemIR::Namespace>()) {
- result_id = AddNamespaceFromOtherPackage(context, import_ir_id,
- import_scope_inst_id,
- *import_ns, scope_id, name_id);
- } else {
- result_id = AddScopedImportRef(
- context, scope_id, context.name_scopes().Get(scope_id), name_id,
- SemIR::ImportIRInst(import_ir_id, import_scope_inst_id),
- SemIR::AccessKind::Public);
- LoadImportRef(context, result_id);
- }
- continue;
- }
- // When namespaces collide between files, merge lookup in the scopes.
- if (auto import_ns = import_inst.TryAs<SemIR::Namespace>()) {
- if (auto ns = context.insts().TryGetAs<SemIR::Namespace>(result_id)) {
- auto& name_scope = context.name_scopes().Get(ns->name_scope_id);
- name_scope.AddImportIRScope({import_ir_id, import_ns->name_scope_id});
- continue;
- }
- }
- // When there's a name collision, they need to either be the same canonical
- // instruction, or we'll diagnose.
- if (!canonical_result_inst) {
- canonical_result_inst = GetCanonicalImportIRInst(context, result_id);
- }
- VerifySameCanonicalImportIRInst(context, name_id, result_id,
- *canonical_result_inst, import_ir_id,
- import_ir.sem_ir, import_scope_inst_id);
- }
- return result_id;
- }
- // Returns whether a parse node associated with an imported instruction of kind
- // `imported_kind` is usable as the location of a corresponding local
- // instruction of kind `local_kind`.
- static auto HasCompatibleImportedNodeKind(SemIR::InstKind imported_kind,
- SemIR::InstKind local_kind) -> bool {
- if (imported_kind == local_kind) {
- return true;
- }
- if (imported_kind == SemIR::ImportDecl::Kind &&
- local_kind == SemIR::Namespace::Kind) {
- static_assert(
- std::is_convertible_v<decltype(SemIR::ImportDecl::Kind)::TypedNodeId,
- decltype(SemIR::Namespace::Kind)::TypedNodeId>);
- return true;
- }
- return false;
- }
- namespace Internal {
- auto CheckCompatibleImportedNodeKind(Context& context,
- SemIR::ImportIRInstId imported_loc_id,
- SemIR::InstKind kind) -> void {
- auto& import_ir_inst = context.import_ir_insts().Get(imported_loc_id);
- if (import_ir_inst.ir_id() == SemIR::ImportIRId::Cpp) {
- // We don't require a matching node kind if the location is in C++, because
- // there isn't a node.
- return;
- }
- const auto* import_ir =
- context.import_irs().Get(import_ir_inst.ir_id()).sem_ir;
- auto imported_kind = import_ir->insts().Get(import_ir_inst.inst_id()).kind();
- CARBON_CHECK(
- HasCompatibleImportedNodeKind(imported_kind, kind),
- "Node of kind {0} created with location of imported node of kind {1}",
- kind, imported_kind);
- }
- } // namespace Internal
- } // namespace Carbon::Check
|