| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- // 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/sem_ir/inst_kind.h"
- #include "toolchain/sem_ir/typed_insts.h"
- namespace Carbon::SemIR {
- CARBON_DEFINE_ENUM_CLASS_NAMES(InstKind) = {
- #define CARBON_SEM_IR_INST_KIND(Name) CARBON_ENUM_CLASS_NAME_STRING(Name)
- #include "toolchain/sem_ir/inst_kind.def"
- };
- auto InstKind::ir_name() const -> llvm::StringLiteral {
- static constexpr const llvm::StringLiteral Table[] = {
- #define CARBON_SEM_IR_INST_KIND(Name) SemIR::Name::Kind.ir_name(),
- #include "toolchain/sem_ir/inst_kind.def"
- };
- return Table[AsInt()];
- }
- auto InstKind::value_kind() const -> InstValueKind {
- static constexpr InstValueKind Table[] = {
- #define CARBON_SEM_IR_INST_KIND(Name) \
- Internal::HasTypeIdMember<SemIR::Name> ? InstValueKind::Typed \
- : InstValueKind::None,
- #include "toolchain/sem_ir/inst_kind.def"
- };
- return Table[AsInt()];
- }
- auto InstKind::constant_kind() const -> InstConstantKind {
- static constexpr InstConstantKind Table[] = {
- #define CARBON_SEM_IR_INST_KIND_CONSTANT_NEVER(...) InstConstantKind::Never,
- #define CARBON_SEM_IR_INST_KIND_CONSTANT_SYMBOLIC_ONLY(...) \
- InstConstantKind::SymbolicOnly,
- #define CARBON_SEM_IR_INST_KIND_CONSTANT_CONDITIONAL(...) \
- InstConstantKind::Conditional,
- #define CARBON_SEM_IR_INST_KIND_CONSTANT_ALWAYS(...) InstConstantKind::Always,
- #define CARBON_SEM_IR_INST_KIND(Name)
- #include "toolchain/sem_ir/inst_kind.def"
- };
- return Table[AsInt()];
- }
- auto InstKind::terminator_kind() const -> TerminatorKind {
- static constexpr const TerminatorKind Table[] = {
- #define CARBON_SEM_IR_INST_KIND(Name) SemIR::Name::Kind.terminator_kind(),
- #include "toolchain/sem_ir/inst_kind.def"
- };
- return Table[AsInt()];
- }
- } // namespace Carbon::SemIR
|