Files
carbon-lang/toolchain/sem_ir/name_scope.cpp
T
Dana Jansens 917a6ea971 Add an interface-with-self generic to each interface and same for constraints (#6667)
Currently each interface has a `Self` facet internally that becomes a
binding to every entity inside the interface: associated constants,
functions, and require decls. Each of these has to be independently
generic as a result. This makes is challenging in extended name lookup
to move into an extended scope of an interface, as we have a specific
for the interface, but the names within require a different specific
that includes a `Self` facet value.

We generalize this relationship by adding a second generic to Interface,
called `generic_with_self`. When we want to work with entities inside
the interface, we move from the interface-without-specific to the
interface-with-self specific by adding a Self to the specific. This is
done independently of any particular entity inside the Interface, as
those entities are now all members of the interface-with-self generic.

Associated constants no longer need a generic of their own, as they do
not have separate generic bindings. Functions retain a generic, but if
the function has no generic arguments, it will have no bindings of its
own now.

Require decls retain a generic so that their specific can be
instantiated separately from the interface. Requiring the interface to
be complete does not require the types in a require decl to be complete
unless it is modified by `extend`. So we allow them to be completed
later by keeping them in a separate generic.

Named constraints look like interfaces and gain the additional inner
generic-with-self, with the same relationship to require decls.

This removes the need for name lookup to perform Substitution of a Self
facet into the extended scope instruction. Instead, the
`SpecificConstant` instruction inserted by a `require` decl is part of
the interface-with-self generic. When looking through a FacetType for
extended scopes, for each interface, we push the scope with the specific
for the interface-with-self. Then the constant value of the
`SpecificConstant` is correctly modified by the provided self
automatically through applying that specific.
2026-02-19 16:24:07 +00:00

103 lines
3.1 KiB
C++

// 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/sem_ir/name_scope.h"
#include <optional>
#include <utility>
#include "toolchain/sem_ir/file.h"
namespace Carbon::SemIR {
NameScopeStore::NameScopeStore(const File* file)
// 1 reserved untagged id because the Package NameScope is used across
// Files.
: file_(file), values_(file->check_ir_id(), 1) {}
auto NameScope::Print(llvm::raw_ostream& out) const -> void {
out << "{inst: " << inst_id_ << ", parent_scope: " << parent_scope_id_
<< ", has_error: " << (has_error_ ? "true" : "false");
out << ", extended_scopes: [";
llvm::ListSeparator scope_sep;
for (auto id : extended_scopes_) {
out << scope_sep << id;
}
out << "]";
out << ", names: {";
llvm::ListSeparator sep;
for (auto entry : names_) {
if (entry.result.is_poisoned()) {
continue;
}
out << sep << entry.name_id << ": " << entry.result.target_inst_id();
}
out << "}";
out << "}";
}
auto NameScope::AddRequired(Entry name_entry) -> void {
CARBON_CHECK(!name_entry.result.is_poisoned(),
"Cannot add a poisoned name: {0}.", name_entry.name_id);
auto add_name = [&] {
EntryId index(names_.size());
names_.push_back(name_entry);
return index;
};
auto result = name_map_.Insert(name_entry.name_id, add_name);
if (!result.is_inserted()) {
// A required name can overwrite poison.
auto& name = names_[result.value().index];
CARBON_CHECK(name.result.is_poisoned(), "Failed to add required name: {0}",
name_entry.name_id);
name = name_entry;
}
}
auto NameScope::LookupOrAdd(NameId name_id, InstId inst_id,
AccessKind access_kind)
-> std::pair<bool, EntryId> {
auto insert_result = name_map_.Insert(name_id, EntryId(names_.size()));
if (!insert_result.is_inserted()) {
return {false, EntryId(insert_result.value())};
}
names_.push_back({.name_id = name_id,
.result = ScopeLookupResult::MakeWrappedLookupResult(
inst_id, access_kind)});
return {true, EntryId(names_.size() - 1)};
}
auto NameScope::LookupOrPoison(LocId loc_id, NameId name_id)
-> std::optional<EntryId> {
if (!name_id.AsIdentifierId().has_value()) {
return Lookup(name_id);
}
auto insert_result = name_map_.Insert(name_id, EntryId(names_.size()));
if (insert_result.is_inserted()) {
names_.push_back({.name_id = name_id,
.result = ScopeLookupResult::MakePoisoned(loc_id)});
return std::nullopt;
}
return insert_result.value();
}
auto NameScopeStore::GetInstIfValid(NameScopeId scope_id) const
-> std::pair<InstId, std::optional<Inst>> {
if (!scope_id.has_value()) {
return {InstId::None, std::nullopt};
}
auto inst_id = Get(scope_id).inst_id();
if (!inst_id.has_value()) {
return {InstId::None, std::nullopt};
}
return {inst_id, file_->insts().Get(inst_id)};
}
} // namespace Carbon::SemIR