| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176 |
- // 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/impl_lookup.h"
- #include "toolchain/check/deduce.h"
- #include "toolchain/check/generic.h"
- #include "toolchain/check/import_ref.h"
- #include "toolchain/sem_ir/ids.h"
- #include "toolchain/sem_ir/typed_insts.h"
- namespace Carbon::Check {
- static auto FindAssociatedImportIRs(Context& context,
- SemIR::ConstantId type_const_id,
- SemIR::ConstantId interface_const_id)
- -> llvm::SmallVector<SemIR::ImportIRId> {
- llvm::SmallVector<SemIR::ImportIRId> result;
- // Add an entity to our result.
- auto add_entity = [&](const SemIR::EntityWithParamsBase& entity) {
- // We will look for impls in the import IR associated with the first owning
- // declaration.
- auto decl_id = entity.first_owning_decl_id;
- if (!decl_id.has_value()) {
- return;
- }
- if (auto ir_id = GetCanonicalImportIRInst(context, decl_id).ir_id;
- ir_id.has_value()) {
- result.push_back(ir_id);
- }
- };
- llvm::SmallVector<SemIR::InstId> worklist;
- worklist.push_back(context.constant_values().GetInstId(type_const_id));
- worklist.push_back(context.constant_values().GetInstId(interface_const_id));
- // Push the contents of an instruction block onto our worklist.
- auto push_block = [&](SemIR::InstBlockId block_id) {
- if (block_id.has_value()) {
- llvm::append_range(worklist, context.inst_blocks().Get(block_id));
- }
- };
- // Add the arguments of a specific to the worklist.
- auto push_args = [&](SemIR::SpecificId specific_id) {
- if (specific_id.has_value()) {
- push_block(context.specifics().Get(specific_id).args_id);
- }
- };
- while (!worklist.empty()) {
- auto inst_id = worklist.pop_back_val();
- // Visit the operands of the constant.
- auto inst = context.insts().Get(inst_id);
- auto [arg0_kind, arg1_kind] = inst.ArgKinds();
- for (auto [arg, kind] :
- {std::pair{inst.arg0(), arg0_kind}, {inst.arg1(), arg1_kind}}) {
- switch (kind) {
- case SemIR::IdKind::For<SemIR::InstId>: {
- if (auto id = SemIR::InstId(arg); id.has_value()) {
- worklist.push_back(id);
- }
- break;
- }
- case SemIR::IdKind::For<SemIR::InstBlockId>: {
- push_block(SemIR::InstBlockId(arg));
- break;
- }
- case SemIR::IdKind::For<SemIR::ClassId>: {
- add_entity(context.classes().Get(SemIR::ClassId(arg)));
- break;
- }
- case SemIR::IdKind::For<SemIR::InterfaceId>: {
- add_entity(context.interfaces().Get(SemIR::InterfaceId(arg)));
- break;
- }
- case SemIR::IdKind::For<SemIR::FacetTypeId>: {
- const auto& facet_type_info =
- context.facet_types().Get(SemIR::FacetTypeId(arg));
- for (const auto& impl : facet_type_info.impls_constraints) {
- add_entity(context.interfaces().Get(impl.interface_id));
- push_args(impl.specific_id);
- }
- break;
- }
- case SemIR::IdKind::For<SemIR::FunctionId>: {
- add_entity(context.functions().Get(SemIR::FunctionId(arg)));
- break;
- }
- case SemIR::IdKind::For<SemIR::SpecificId>: {
- push_args(SemIR::SpecificId(arg));
- break;
- }
- default: {
- break;
- }
- }
- }
- }
- // Deduplicate.
- llvm::sort(result, [](SemIR::ImportIRId a, SemIR::ImportIRId b) {
- return a.index < b.index;
- });
- result.erase(llvm::unique(result), result.end());
- return result;
- }
- auto LookupImplWitness(Context& context, SemIR::LocId loc_id,
- SemIR::ConstantId type_const_id,
- SemIR::ConstantId interface_const_id) -> SemIR::InstId {
- if (type_const_id == SemIR::ErrorInst::SingletonConstantId ||
- interface_const_id == SemIR::ErrorInst::SingletonConstantId) {
- return SemIR::ErrorInst::SingletonInstId;
- }
- auto import_irs =
- FindAssociatedImportIRs(context, type_const_id, interface_const_id);
- for (auto import_ir : import_irs) {
- // TODO: Instead of importing all impls, only import ones that are in some
- // way connected to this query.
- for (auto impl_index : llvm::seq(
- context.import_irs().Get(import_ir).sem_ir->impls().size())) {
- // TODO: Track the relevant impls and only consider those ones and any
- // local impls, rather than looping over all impls below.
- ImportImpl(context, import_ir, SemIR::ImplId(impl_index));
- }
- }
- // TODO: Add a better impl lookup system. At the very least, we should only be
- // considering impls that are for the same interface we're querying. We can
- // also skip impls that mention any types that aren't part of our impl query.
- for (const auto& impl : context.impls().array_ref()) {
- auto specific_id = SemIR::SpecificId::None;
- if (impl.generic_id.has_value()) {
- specific_id = DeduceImplArguments(context, loc_id, impl, type_const_id,
- interface_const_id);
- if (!specific_id.has_value()) {
- continue;
- }
- }
- if (!context.constant_values().AreEqualAcrossDeclarations(
- SemIR::GetConstantValueInSpecific(context.sem_ir(), specific_id,
- impl.self_id),
- type_const_id)) {
- continue;
- }
- if (!context.constant_values().AreEqualAcrossDeclarations(
- SemIR::GetConstantValueInSpecific(context.sem_ir(), specific_id,
- impl.constraint_id),
- interface_const_id)) {
- // TODO: An impl of a constraint type should be treated as implementing
- // the constraint's interfaces.
- continue;
- }
- if (!impl.witness_id.has_value()) {
- // TODO: Diagnose if the impl isn't defined yet?
- return SemIR::InstId::None;
- }
- LoadImportRef(context, impl.witness_id);
- if (specific_id.has_value()) {
- // We need a definition of the specific `impl` so we can access its
- // witness.
- ResolveSpecificDefinition(context, loc_id, specific_id);
- }
- return context.constant_values().GetInstId(
- SemIR::GetConstantValueInSpecific(context.sem_ir(), specific_id,
- impl.witness_id));
- }
- return SemIR::InstId::None;
- }
- } // namespace Carbon::Check
|