| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224 |
- // 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_INST_H_
- #define CARBON_TOOLCHAIN_CHECK_INST_H_
- #include <concepts>
- #include "toolchain/check/context.h"
- #include "toolchain/sem_ir/ids.h"
- #include "toolchain/sem_ir/inst.h"
- namespace Carbon::Check {
- // Adds an instruction to the current block, returning the produced ID.
- auto AddInst(Context& context, SemIR::LocIdAndInst loc_id_and_inst)
- -> SemIR::InstId;
- // Convenience for AddInst with typed nodes.
- //
- // As a safety check, prevent use with storage insts (see `AddInstWithCleanup`).
- template <typename InstT, typename LocT>
- requires(!InstT::Kind.has_cleanup() &&
- std::convertible_to<LocT, SemIR::LocId>)
- auto AddInst(Context& context, LocT loc, InstT inst) -> SemIR::InstId {
- return AddInst(context, SemIR::LocIdAndInst(loc, inst));
- }
- // Like AddInst, but for instructions with a type_id of `TypeType`, which is
- // encoded in the return type of `TypeInstId`.
- inline auto AddTypeInst(Context& context, SemIR::LocIdAndInst loc_id_and_inst)
- -> SemIR::TypeInstId {
- return context.types().GetAsTypeInstId(AddInst(context, loc_id_and_inst));
- }
- template <typename InstT, typename LocT>
- requires(!InstT::Kind.has_cleanup() &&
- std::convertible_to<LocT, SemIR::LocId>)
- auto AddTypeInst(Context& context, LocT loc, InstT inst) -> SemIR::TypeInstId {
- return AddTypeInst(context, SemIR::LocIdAndInst(loc, inst));
- }
- // Pushes a parse tree node onto the stack, storing the SemIR::Inst as the
- // result.
- //
- // As a safety check, prevent use with storage insts (see `AddInstWithCleanup`).
- template <typename InstT>
- requires(SemIR::Internal::HasNodeId<InstT> && !InstT::Kind.has_cleanup())
- auto AddInstAndPush(Context& context,
- typename decltype(InstT::Kind)::TypedNodeId node_id,
- InstT inst) -> void {
- context.node_stack().Push(node_id, AddInst(context, node_id, inst));
- }
- // Adds an instruction in no block, returning the produced ID. Should be used
- // rarely.
- auto AddInstInNoBlock(Context& context, SemIR::LocIdAndInst loc_id_and_inst)
- -> SemIR::InstId;
- // Convenience for AddInstInNoBlock with typed nodes.
- //
- // As a safety check, prevent use with storage insts (see `AddInstWithCleanup`).
- template <typename InstT, typename LocT>
- requires(!InstT::Kind.has_cleanup() &&
- std::convertible_to<LocT, SemIR::LocId>)
- auto AddInstInNoBlock(Context& context, LocT loc, InstT inst) -> SemIR::InstId {
- return AddInstInNoBlock(context, SemIR::LocIdAndInst(loc, inst));
- }
- // If the instruction has a desugared location and a constant value, returns
- // the constant value's instruction ID. Otherwise, same as AddInst.
- auto GetOrAddInst(Context& context, SemIR::LocIdAndInst loc_id_and_inst)
- -> SemIR::InstId;
- // Convenience for GetOrAddInst with typed nodes.
- //
- // As a safety check, prevent use with storage insts (see `AddInstWithCleanup`).
- template <typename InstT, typename LocT>
- requires(!InstT::Kind.has_cleanup() &&
- std::convertible_to<LocT, SemIR::LocId>)
- auto GetOrAddInst(Context& context, LocT loc, InstT inst) -> SemIR::InstId {
- return GetOrAddInst(context, SemIR::LocIdAndInst(loc, inst));
- }
- // Evaluate the given instruction, and returns the corresponding constant value.
- // Adds the instruction to the current block if it might be referenced by its
- // constant value; otherwise, does not add the instruction to an instruction
- // block.
- //
- // The resulting ConstantId should be used immediately, or its canonical
- // instruction can be inserted into some other instruction (though it won't have
- // location information, so GetOrAddInst is typically better unless a canonical
- // instruction is required). The constant value can't be modified by specifics
- // unless it is done so as part of some other instruction.
- auto EvalOrAddInst(Context& context, SemIR::LocIdAndInst loc_id_and_inst)
- -> SemIR::ConstantId;
- // Convenience for EvalOrAddInst with typed nodes.
- //
- // As a safety check, prevent use with storage insts (see `AddInstWithCleanup`).
- template <typename InstT, typename LocT>
- requires(!InstT::Kind.has_cleanup() &&
- std::convertible_to<LocT, SemIR::LocId>)
- auto EvalOrAddInst(Context& context, LocT loc, InstT inst)
- -> SemIR::ConstantId {
- return EvalOrAddInst(context, SemIR::LocIdAndInst(loc, inst));
- }
- // Adds an instruction and enqueues it to be added to the eval block of the
- // enclosing generic, returning the produced ID. The instruction is expected to
- // be a dependent template instantiation action.
- auto AddDependentActionInst(Context& context,
- SemIR::LocIdAndInst loc_id_and_inst)
- -> SemIR::InstId;
- // Convenience wrapper for AddDependentActionInst.
- template <typename InstT, typename LocT>
- requires std::convertible_to<LocT, SemIR::LocId>
- auto AddDependentActionInst(Context& context, LocT loc, InstT inst)
- -> SemIR::InstId {
- return AddDependentActionInst(context, SemIR::LocIdAndInst(loc, inst));
- }
- // Like AddDependentActionInst, but for instructions with a type_id of
- // `TypeType`, which is encoded in the return type of `TypeInstId`.
- template <typename InstT, typename LocT>
- requires std::convertible_to<LocT, SemIR::LocId>
- auto AddDependentActionTypeInst(Context& context, LocT loc, InstT inst)
- -> SemIR::TypeInstId {
- return context.types().GetAsTypeInstId(
- AddDependentActionInst(context, loc, inst));
- }
- // Adds an instruction to the current pattern block, returning the produced
- // ID.
- // TODO: Is it possible to remove this and pattern_block_stack, now that
- // we have BeginSubpattern etc. instead?
- auto AddPatternInst(Context& context, SemIR::LocIdAndInst loc_id_and_inst)
- -> SemIR::InstId;
- // Convenience for AddPatternInst with typed nodes.
- //
- // As a safety check, prevent use with storage insts (see `AddInstWithCleanup`).
- template <typename InstT, typename LocT>
- requires(!InstT::Kind.has_cleanup() &&
- std::convertible_to<LocT, SemIR::LocId>)
- auto AddPatternInst(Context& context, LocT loc, InstT inst) -> SemIR::InstId {
- return AddPatternInst(context, SemIR::LocIdAndInst(loc, inst));
- }
- // Adds an instruction to the current block, returning the produced ID. The
- // instruction is a placeholder that is expected to be replaced by
- // `ReplaceInstBeforeConstantUse`.
- auto AddPlaceholderInst(Context& context, SemIR::LocIdAndInst loc_id_and_inst)
- -> SemIR::InstId;
- // Convenience for AddPlaceholderInst with typed nodes.
- //
- // As a safety check, prevent use with storage insts (see `AddInstWithCleanup`).
- template <typename InstT, typename LocT>
- requires(!InstT::Kind.has_cleanup())
- auto AddPlaceholderInst(Context& context, LocT loc, InstT inst)
- -> SemIR::InstId {
- return AddPlaceholderInst(context, SemIR::LocIdAndInst(loc, inst));
- }
- // Adds an instruction in no block, returning the produced ID. Should be used
- // rarely. The instruction is a placeholder that is expected to be replaced by
- // `ReplaceInstBeforeConstantUse`.
- auto AddPlaceholderInstInNoBlock(Context& context,
- SemIR::LocIdAndInst loc_id_and_inst)
- -> SemIR::InstId;
- // Convenience for AddPlaceholderInstInNoBlock with typed nodes.
- //
- // As a safety check, prevent use with storage insts (see `AddInstWithCleanup`).
- template <typename InstT, typename LocT>
- requires(!InstT::Kind.has_cleanup() &&
- std::convertible_to<LocT, SemIR::LocId>)
- auto AddPlaceholderInstInNoBlock(Context& context, LocT loc, InstT inst)
- -> SemIR::InstId {
- return AddPlaceholderInstInNoBlock(context, SemIR::LocIdAndInst(loc, inst));
- }
- // Similar to `AddPlaceholderInstInNoBlock`, but also tracks the instruction as
- // an import.
- auto AddPlaceholderImportedInstInNoBlock(Context& context,
- SemIR::LocIdAndInst loc_id_and_inst)
- -> SemIR::InstId;
- // Replaces the instruction at `inst_id` with `loc_id_and_inst`. The
- // instruction is required to not have been used in any constant evaluation,
- // either because it's newly created and entirely unused, or because it's only
- // used in a position that constant evaluation ignores, such as a return slot.
- auto ReplaceLocIdAndInstBeforeConstantUse(Context& context,
- SemIR::InstId inst_id,
- SemIR::LocIdAndInst loc_id_and_inst)
- -> void;
- // Replaces the instruction at `inst_id` with `inst`, not affecting location.
- // The instruction is required to not have been used in any constant
- // evaluation, either because it's newly created and entirely unused, or
- // because it's only used in a position that constant evaluation ignores, such
- // as a return slot.
- auto ReplaceInstBeforeConstantUse(Context& context, SemIR::InstId inst_id,
- SemIR::Inst inst) -> void;
- // Replaces the instruction at `inst_id` with `inst`, not affecting location.
- // The instruction is required to not change its constant value.
- auto ReplaceInstPreservingConstantValue(Context& context, SemIR::InstId inst_id,
- SemIR::Inst inst) -> void;
- // Sets only the parse node of an instruction. This is only used when setting
- // the parse node of an imported namespace. Versus
- // ReplaceInstBeforeConstantUse, it is safe to use after the namespace is used
- // in constant evaluation. It's exposed this way mainly so that `insts()` can
- // remain const.
- auto SetNamespaceNodeId(Context& context, SemIR::InstId inst_id,
- Parse::NodeId node_id) -> void;
- } // namespace Carbon::Check
- #endif // CARBON_TOOLCHAIN_CHECK_INST_H_
|