// 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 #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 requires(!InstT::Kind.has_cleanup() && std::convertible_to) 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 requires(!InstT::Kind.has_cleanup() && std::convertible_to) 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 requires(SemIR::Internal::HasNodeId && !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 requires(!InstT::Kind.has_cleanup() && std::convertible_to) 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 requires(!InstT::Kind.has_cleanup() && std::convertible_to) 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 requires(!InstT::Kind.has_cleanup() && std::convertible_to) 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 requires std::convertible_to 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 requires std::convertible_to auto AddDependentActionTypeInst(Context& context, LocT loc, InstT inst) -> SemIR::TypeInstId { return context.types().GetAsTypeInstId( AddDependentActionInst(context, 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 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 requires(!InstT::Kind.has_cleanup() && std::convertible_to) 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_