mirror of
https://github.com/carbon-language/carbon-lang.git
synced 2026-09-24 22:02:23 +01:00
Based on review feedback on https://github.com/carbon-language/carbon-lang/pull/6215#discussion_r2430177644 There are some intermediate commits with alternatives, finding other ways (non-templates) to address the layering boundaries between `ValueStore` construction and `CheckIRId` tagging. But, yeah, template seems like the way to go - certainly in terms of terseness and probably in terms of extensibility to other Id tagging as/when needed.
36 lines
1.3 KiB
C++
36 lines
1.3 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/impl.h"
|
|
|
|
#include "toolchain/sem_ir/file.h"
|
|
|
|
namespace Carbon::SemIR {
|
|
|
|
ImplStore::ImplStore(File& sem_ir)
|
|
: sem_ir_(sem_ir), values_(sem_ir.check_ir_id()) {}
|
|
|
|
auto ImplStore::GetOrAddLookupBucket(const Impl& impl) -> LookupBucketRef {
|
|
auto self_id = sem_ir_.constant_values().GetConstantInstId(impl.self_id);
|
|
InterfaceId interface_id = InterfaceId::None;
|
|
SpecificId specific_id = SpecificId::None;
|
|
auto facet_type_id = TypeId::ForTypeConstant(
|
|
sem_ir_.constant_values().Get(impl.constraint_id));
|
|
if (auto facet_type = sem_ir_.types().TryGetAs<FacetType>(facet_type_id)) {
|
|
const FacetTypeInfo& facet_type_info =
|
|
sem_ir_.facet_types().Get(facet_type->facet_type_id);
|
|
if (auto interface_type = facet_type_info.TryAsSingleInterface()) {
|
|
interface_id = interface_type->interface_id;
|
|
specific_id = interface_type->specific_id;
|
|
}
|
|
}
|
|
return LookupBucketRef(
|
|
*this, lookup_
|
|
.Insert(std::tuple{self_id, interface_id, specific_id},
|
|
[] { return ImplOrLookupBucketId::None; })
|
|
.value());
|
|
}
|
|
|
|
} // namespace Carbon::SemIR
|