mirror of
https://github.com/carbon-language/carbon-lang.git
synced 2026-09-24 22:02:23 +01:00
Splits IR files into SemIR, and logic files into Check. These will be split into separate directories as part of a later move; the namespaces are being done first in order to vet the switch, and hopefully make conflicts a little easier to manage due to the substantial renames. A lot of this is just automated removal of Semantics prefixes from names, adding namespace references where needed. A few special-cases are: - SemanticsIR -> SemIR::File - A few things were discussed, like Unit, CompileUnit, or CompiledUnit. Unit was too vague for chandlerc, and I thought CompileUnit might lead to incorrect inferences (CompilationUnit would be more precise, but typically written as SemIR::CompilationUnit which is pretty long). File seemed to be a short name that we could agree on. - SemanticsIRFormatter -> SemIR::Formatter - FormatSemanticsIR -> SemIR::FormatFile - SemanticsFileTest -> CheckFileTest - It remains in the Testing namespace, where just "FileTest" might be too broad a name. - SemanticsDeclarationNameStack::Context -> Check::DeclarationNameStack::NameContext - This avoids a Check::Context name shadowing. Changes check_internal.h to include ostream.h to improve finding of Print/operator<< (otherwise it didn't compile). This is part of #3070
90 lines
3.1 KiB
C++
90 lines
3.1 KiB
C++
// 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_SEMANTICS_SEMANTICS_NODE_KIND_H_
|
|
#define CARBON_TOOLCHAIN_SEMANTICS_SEMANTICS_NODE_KIND_H_
|
|
|
|
#include <cstdint>
|
|
|
|
#include "common/enum_base.h"
|
|
#include "llvm/ADT/FoldingSet.h"
|
|
|
|
namespace Carbon::SemIR {
|
|
|
|
// Whether a node produces or represents a value, and if so, what kind of value.
|
|
enum class NodeValueKind {
|
|
// This node doesn't produce a value, and shouldn't be referenced by other
|
|
// nodes.
|
|
None,
|
|
// This node represents an untyped value. It may be referenced by other nodes
|
|
// expecting this kind of value.
|
|
Untyped,
|
|
// This node represents an expression or expression-like construct that
|
|
// produces a value of the type indicated by its `type_id` field.
|
|
Typed,
|
|
};
|
|
|
|
// Whether a node is a terminator or part of the terminator sequence. The nodes
|
|
// in a block appear in the order NotTerminator, then TerminatorSequence, then
|
|
// Terminator, which is also the numerical order of these values.
|
|
enum class TerminatorKind {
|
|
// This node is not a terminator.
|
|
NotTerminator,
|
|
// This node is not itself a terminator, but forms part of a terminator
|
|
// sequence.
|
|
TerminatorSequence,
|
|
// This node is a terminator.
|
|
Terminator,
|
|
};
|
|
|
|
} // namespace Carbon::SemIR
|
|
|
|
namespace Carbon {
|
|
|
|
CARBON_DEFINE_RAW_ENUM_CLASS(SemanticsNodeKind, uint8_t) {
|
|
#define CARBON_SEMANTICS_NODE_KIND(Name) CARBON_RAW_ENUM_ENUMERATOR(Name)
|
|
#include "toolchain/semantics/semantics_node_kind.def"
|
|
};
|
|
|
|
class SemanticsNodeKind : public CARBON_ENUM_BASE(SemanticsNodeKind) {
|
|
public:
|
|
#define CARBON_SEMANTICS_NODE_KIND(Name) CARBON_ENUM_CONSTANT_DECLARATION(Name)
|
|
#include "toolchain/semantics/semantics_node_kind.def"
|
|
|
|
using EnumBase::Create;
|
|
|
|
// Returns the name to use for this node kind in Semantics IR.
|
|
[[nodiscard]] auto ir_name() const -> llvm::StringRef;
|
|
|
|
// Returns whether this kind of node is expected to produce a value.
|
|
[[nodiscard]] auto value_kind() const -> SemIR::NodeValueKind;
|
|
|
|
// Returns whether this node kind is a code block terminator, such as an
|
|
// unconditional branch instruction, or part of the termination sequence,
|
|
// such as a conditional branch instruction. The termination sequence of a
|
|
// code block appears after all other instructions, and ends with a
|
|
// terminator instruction.
|
|
[[nodiscard]] auto terminator_kind() const -> SemIR::TerminatorKind;
|
|
|
|
// Compute a fingerprint for this node kind, allowing its use as part of the
|
|
// key in a `FoldingSet`.
|
|
void Profile(llvm::FoldingSetNodeID& id) { id.AddInteger(AsInt()); }
|
|
};
|
|
|
|
#define CARBON_SEMANTICS_NODE_KIND(Name) \
|
|
CARBON_ENUM_CONSTANT_DEFINITION(SemanticsNodeKind, Name)
|
|
#include "toolchain/semantics/semantics_node_kind.def"
|
|
|
|
// We expect the node kind to fit compactly into 8 bits.
|
|
static_assert(sizeof(SemanticsNodeKind) == 1, "Kind objects include padding!");
|
|
|
|
// TODO: Refactor EnumBase to remove the need for this alias.
|
|
namespace SemIR {
|
|
using NodeKind = SemanticsNodeKind;
|
|
} // namespace SemIR
|
|
|
|
} // namespace Carbon
|
|
|
|
#endif // CARBON_TOOLCHAIN_SEMANTICS_SEMANTICS_NODE_KIND_H_
|