| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302 |
- // 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/generic.h"
- #include "common/map.h"
- #include "toolchain/check/generic_region_stack.h"
- #include "toolchain/check/subst.h"
- #include "toolchain/sem_ir/ids.h"
- namespace Carbon::Check {
- auto StartGenericDecl(Context& context) -> void {
- context.generic_region_stack().Push();
- }
- auto StartGenericDefinition(Context& context) -> void {
- // Push a generic region even if we don't have a generic_id. We might still
- // have locally-introduced generic parameters to track:
- //
- // fn F() {
- // let T:! type = i32;
- // var x: T;
- // }
- context.generic_region_stack().Push();
- }
- // Adds an instruction `generic_inst_id` to the eval block for a generic region,
- // which is the current instruction block. The instruction `generic_inst_id` is
- // expected to compute the value of the constant described by `const_inst_id` in
- // each instance of the generic. Forms and returns a corresponding symbolic
- // constant ID that refers to the substituted value of that instruction in each
- // instance of the generic.
- static auto AddGenericConstantToEvalBlock(
- Context& context, SemIR::GenericId generic_id,
- SemIR::GenericInstIndex::Region region, SemIR::InstId const_inst_id,
- SemIR::InstId generic_inst_id) -> SemIR::ConstantId {
- auto index = SemIR::GenericInstIndex(
- region, context.inst_block_stack().PeekCurrentBlockContents().size());
- context.inst_block_stack().AddInstId(generic_inst_id);
- return context.constant_values().AddSymbolicConstant(
- {.inst_id = const_inst_id, .generic_id = generic_id, .index = index});
- }
- namespace {
- // Substitution callbacks to rebuild a generic type in the eval block for a
- // generic region.
- class RebuildGenericTypeInEvalBlockCallbacks : public SubstInstCallbacks {
- public:
- RebuildGenericTypeInEvalBlockCallbacks(
- Context& context, SemIR::GenericId generic_id,
- SemIR::GenericInstIndex::Region region,
- Map<SemIR::InstId, SemIR::InstId>& constants_in_generic)
- : context_(context),
- generic_id_(generic_id),
- region_(region),
- constants_in_generic_(constants_in_generic) {}
- // Check for instructions for which we already have a mapping into the eval
- // block, and substitute them for the instructions in the eval block. Note
- // that this will at least include mappings for the `BindSymbolicName`
- // instructions that introduce our parameters.
- auto Subst(SemIR::InstId& inst_id) const -> bool override {
- if (context_.constant_values().Get(inst_id).is_template()) {
- // This instruction is a template constant, so can't contain any
- // bindings that need to be substituted.
- return true;
- }
- // If this instruction is in the map, return the known result.
- if (auto result = constants_in_generic_.Lookup(inst_id)) {
- inst_id = result.value();
- CARBON_CHECK(inst_id.is_valid());
- return true;
- }
- return false;
- }
- // Build a new instruction in the eval block corresponding to the given
- // constant.
- auto Rebuild(SemIR::InstId orig_inst_id, SemIR::Inst new_inst) const
- -> SemIR::InstId override {
- // TODO: Add a function on `Context` to add the instruction without
- // inserting it into the dependent instructions list or computing a constant
- // value for it.
- auto inst_id = context_.sem_ir().insts().AddInNoBlock(
- SemIR::LocIdAndInst::NoLoc(new_inst));
- auto result = constants_in_generic_.Insert(orig_inst_id, inst_id);
- CARBON_CHECK(result.is_inserted())
- << "Substituted into an instruction that was already in the map.";
- auto const_id = AddGenericConstantToEvalBlock(
- context_, generic_id_, region_, orig_inst_id, inst_id);
- context_.constant_values().Set(inst_id, const_id);
- return inst_id;
- }
- private:
- Context& context_;
- SemIR::GenericId generic_id_;
- SemIR::GenericInstIndex::Region region_;
- Map<SemIR::InstId, SemIR::InstId>& constants_in_generic_;
- };
- } // namespace
- // Adds instructions to compute the substituted version of `type_id` in each
- // instance of a generic into the eval block for the generic, which is the
- // current instruction block. Returns a symbolic type ID that refers to the
- // substituted type in each instance of the generic.
- static auto AddGenericTypeToEvalBlock(
- Context& context, SemIR::GenericId generic_id,
- SemIR::GenericInstIndex::Region region,
- Map<SemIR::InstId, SemIR::InstId>& constants_in_generic,
- SemIR::TypeId type_id) -> SemIR::TypeId {
- // Substitute into the type's constant instruction and rebuild it in the eval
- // block.
- auto type_inst_id =
- SubstInst(context, context.types().GetInstId(type_id),
- RebuildGenericTypeInEvalBlockCallbacks(
- context, generic_id, region, constants_in_generic));
- return context.GetTypeIdForTypeInst(type_inst_id);
- }
- // Builds and returns a block of instructions whose constant values need to be
- // evaluated in order to resolve a generic instance.
- static auto MakeGenericEvalBlock(Context& context, SemIR::GenericId generic_id,
- SemIR::GenericInstIndex::Region region)
- -> SemIR::InstBlockId {
- context.inst_block_stack().Push();
- Map<SemIR::InstId, SemIR::InstId> constants_in_generic;
- // TODO: For the definition region, populate constants from the declaration.
- // TODO: Add `BindSymbolicName` instructions for enclosing generics to the
- // map.
- // The work done in this loop might invalidate iterators into the generic
- // region stack, but shouldn't add new dependent instructions to the current
- // region.
- auto num_dependent_insts =
- context.generic_region_stack().PeekDependentInsts().size();
- for (auto i : llvm::seq(num_dependent_insts)) {
- auto [inst_id, dep_kind] =
- context.generic_region_stack().PeekDependentInsts()[i];
- // If the type is symbolic, replace it with a type specific to this generic.
- if ((dep_kind & GenericRegionStack::DependencyKind::SymbolicType) !=
- GenericRegionStack::DependencyKind::None) {
- auto inst = context.insts().Get(inst_id);
- inst.SetType(AddGenericTypeToEvalBlock(
- context, generic_id, region, constants_in_generic, inst.type_id()));
- context.sem_ir().insts().Set(inst_id, inst);
- }
- // If the instruction has a symbolic constant value, then make a note that
- // we'll need to evaluate this instruction in the generic instance. Update
- // the constant value of the instruction to refer to the result of that
- // eventual evaluation.
- if ((dep_kind & GenericRegionStack::DependencyKind::SymbolicConstant) !=
- GenericRegionStack::DependencyKind::None) {
- auto const_inst_id = context.constant_values().GetConstantInstId(inst_id);
- // Create a new symbolic constant representing this instruction in this
- // generic, if it doesn't already exist.
- auto result = constants_in_generic.Insert(const_inst_id, inst_id);
- auto const_id =
- result.is_inserted()
- ? AddGenericConstantToEvalBlock(context, generic_id, region,
- const_inst_id, inst_id)
- : context.constant_values().Get(result.value());
- context.constant_values().Set(inst_id, const_id);
- }
- }
- CARBON_CHECK(num_dependent_insts ==
- context.generic_region_stack().PeekDependentInsts().size())
- << "Building eval block added new dependent insts, for example "
- << context.insts().Get(context.generic_region_stack()
- .PeekDependentInsts()[num_dependent_insts]
- .inst_id);
- return context.inst_block_stack().Pop();
- }
- auto FinishGenericDecl(Context& context, SemIR::InstId decl_id)
- -> SemIR::GenericId {
- auto all_bindings =
- context.scope_stack().compile_time_bindings_stack().PeekAllValues();
- if (all_bindings.empty()) {
- CARBON_CHECK(context.generic_region_stack().PeekDependentInsts().empty())
- << "Have dependent instructions but no compile time bindings are in "
- "scope.";
- context.generic_region_stack().Pop();
- return SemIR::GenericId::Invalid;
- }
- auto bindings_id = context.inst_blocks().Add(all_bindings);
- auto generic_id = context.generics().Add(
- SemIR::Generic{.decl_id = decl_id, .bindings_id = bindings_id});
- auto decl_block_id = MakeGenericEvalBlock(
- context, generic_id, SemIR::GenericInstIndex::Region::Declaration);
- context.generic_region_stack().Pop();
- context.generics().Get(generic_id).decl_block_id = decl_block_id;
- return generic_id;
- }
- auto FinishGenericRedecl(Context& context, SemIR::InstId /*decl_id*/,
- SemIR::GenericId /*generic_id*/) -> void {
- // TODO: Compare contents of this declaration with the existing one on the
- // generic.
- context.generic_region_stack().Pop();
- }
- auto FinishGenericDefinition(Context& context, SemIR::GenericId generic_id)
- -> void {
- if (!generic_id.is_valid()) {
- // TODO: We can have symbolic constants in a context that had a non-generic
- // declaration, for example if there's a local generic let binding in a
- // function definition. Handle this case somehow -- perhaps by forming
- // substituted constant values now.
- context.generic_region_stack().Pop();
- return;
- }
- // TODO: Track the list of dependent instructions in this region.
- context.generic_region_stack().Pop();
- }
- auto MakeGenericInstance(Context& context, SemIR::GenericId generic_id,
- SemIR::InstBlockId args_id)
- -> SemIR::GenericInstanceId {
- auto instance_id = context.generic_instances().GetOrAdd(generic_id, args_id);
- // TODO: Perform substitution into the generic declaration if needed.
- return instance_id;
- }
- auto MakeGenericSelfInstance(Context& context, SemIR::GenericId generic_id)
- -> SemIR::GenericInstanceId {
- // TODO: Remove this once we import generics properly.
- if (!generic_id.is_valid()) {
- return SemIR::GenericInstanceId::Invalid;
- }
- auto& generic = context.generics().Get(generic_id);
- auto args = context.inst_blocks().Get(generic.bindings_id);
- // Form a canonical argument list for the generic.
- llvm::SmallVector<SemIR::InstId> arg_ids;
- arg_ids.reserve(args.size());
- for (auto arg_id : args) {
- arg_ids.push_back(context.constant_values().GetConstantInstId(arg_id));
- }
- auto args_id = context.inst_blocks().AddCanonical(arg_ids);
- // Build a corresponding instance.
- // TODO: This could be made more efficient. We don't need to perform
- // substitution here; we know we want identity mappings for all constants and
- // types. We could also consider not storing the mapping at all in this case.
- return MakeGenericInstance(context, generic_id, args_id);
- }
- auto GetConstantInInstance(Context& context,
- SemIR::GenericInstanceId /*instance_id*/,
- SemIR::ConstantId const_id) -> SemIR::ConstantId {
- if (!const_id.is_symbolic()) {
- // Type does not depend on a generic parameter.
- return const_id;
- }
- const auto& symbolic =
- context.constant_values().GetSymbolicConstant(const_id);
- if (!symbolic.generic_id.is_valid()) {
- // Constant is an abstract symbolic constant, not an instance-specific one.
- return const_id;
- }
- // TODO: Look up the value in the generic instance. For now, return the
- // canonical constant value.
- return context.constant_values().Get(symbolic.inst_id);
- }
- auto GetConstantValueInInstance(Context& context,
- SemIR::GenericInstanceId instance_id,
- SemIR::InstId inst_id) -> SemIR::ConstantId {
- return GetConstantInInstance(context, instance_id,
- context.constant_values().Get(inst_id));
- }
- auto GetTypeInInstance(Context& context, SemIR::GenericInstanceId instance_id,
- SemIR::TypeId type_id) -> SemIR::TypeId {
- auto const_id = context.types().GetConstantId(type_id);
- auto inst_const_id = GetConstantInInstance(context, instance_id, const_id);
- if (inst_const_id == const_id) {
- // Common case: not an instance constant.
- return type_id;
- }
- return context.GetTypeIdForTypeConstant(inst_const_id);
- }
- } // namespace Carbon::Check
|