| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586 |
- // 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
- #ifndef CARBON_TOOLCHAIN_CHECK_GENERIC_H_
- #define CARBON_TOOLCHAIN_CHECK_GENERIC_H_
- #include "toolchain/check/context.h"
- #include "toolchain/sem_ir/ids.h"
- namespace Carbon::Check {
- // Start processing a declaration or definition that might be a generic entity.
- auto StartGenericDecl(Context& context) -> void;
- // Start processing a declaration or definition that might be a generic entity.
- auto StartGenericDefinition(Context& context) -> void;
- // Discard the information about the current generic entity. This should be
- // called instead of `FinishGenericDecl` if the corresponding `Generic` object
- // would not actually be used, or when recovering from an error.
- auto DiscardGenericDecl(Context& context) -> void;
- // Finish processing a potentially generic declaration and produce a
- // corresponding generic object. Returns SemIR::GenericId::None if this
- // declaration is not actually generic.
- auto BuildGeneric(Context& context, SemIR::InstId decl_id) -> SemIR::GenericId;
- // Builds eval block for the declaration.
- auto FinishGenericDecl(Context& context, SemIRLoc loc,
- SemIR::GenericId generic_id) -> void;
- // BuildGeneric() and FinishGenericDecl() combined. Normally you would call this
- // function unless the caller has work to do between the two steps.
- auto BuildGenericDecl(Context& context, SemIR::InstId decl_id)
- -> SemIR::GenericId;
- // Merge a redeclaration of an entity that might be a generic into the original
- // declaration.
- auto FinishGenericRedecl(Context& context, SemIR::InstId decl_id,
- SemIR::GenericId generic_id) -> void;
- // Finish processing a potentially generic definition.
- auto FinishGenericDefinition(Context& context, SemIR::GenericId generic_id)
- -> void;
- // Builds and returns an eval block, given the list of canonical symbolic
- // constants that the instructions in the eval block should produce. This is
- // used when importing a generic.
- auto RebuildGenericEvalBlock(Context& context, SemIR::GenericId generic_id,
- SemIR::GenericInstIndex::Region region,
- llvm::ArrayRef<SemIR::InstId> const_ids)
- -> SemIR::InstBlockId;
- // Builds a new specific with a given argument list, or finds an existing one if
- // this generic has already been referenced with these arguments. Performs
- // substitution into the declaration, but not the definition, of the generic.
- auto MakeSpecific(Context& context, SemIRLoc loc, SemIR::GenericId generic_id,
- llvm::ArrayRef<SemIR::InstId> args) -> SemIR::SpecificId;
- // Builds a new specific or finds an existing one in the case where the argument
- // list has already been converted into an instruction block. `args_id` should
- // be a canonical instruction block referring to constants.
- auto MakeSpecific(Context& context, SemIRLoc loc, SemIR::GenericId generic_id,
- SemIR::InstBlockId args_id) -> SemIR::SpecificId;
- // Builds the specific that describes how the generic should refer to itself.
- // For example, for a generic `G(T:! type)`, this is the specific `G(T)`. If
- // `generic_id` is `None`, returns `None`.
- auto MakeSelfSpecific(Context& context, SemIRLoc loc,
- SemIR::GenericId generic_id) -> SemIR::SpecificId;
- // Attempts to resolve the definition of the given specific, by evaluating the
- // eval block of the corresponding generic and storing a corresponding value
- // block in the specific. Returns false if a definition is not available.
- auto ResolveSpecificDefinition(Context& context, SemIRLoc loc,
- SemIR::SpecificId specific_id) -> bool;
- // Returns an instruction describing the entity named by the given specific.
- // This is used to name the entity in diagnostics.
- auto GetInstForSpecific(Context& context, SemIR::SpecificId specific_id)
- -> SemIR::InstId;
- } // namespace Carbon::Check
- #endif // CARBON_TOOLCHAIN_CHECK_GENERIC_H_
|