mirror of
https://github.com/carbon-language/carbon-lang.git
synced 2026-09-27 17:00:09 +01:00
Continuing along with #3070. Note this is just a file rename, with BUILD edits; every file previously in semantics/ should show as moved (except maybe BUILDs, which split).
102 lines
5.9 KiB
Modula-2
102 lines
5.9 KiB
Modula-2
// 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
|
|
//
|
|
// This is an X-macro header. It does not use `#include` guards, and instead is
|
|
// designed to be `#include`ed after the x-macro is defined in order for its
|
|
// inclusion to expand to the desired output. Macro definitions are cleaned up
|
|
// at the end of this file.
|
|
//
|
|
// Exactly one of these macros should be defined before including this header:
|
|
// - CARBON_SEMANTICS_NODE_KIND(Name)
|
|
// Invoked for each kind of semantic node.
|
|
// - CARBON_SEMANTICS_NODE_KIND_WITH_VALUE_KIND(Name, TypeFieldKind)
|
|
// Invoked for each kind of semantic node, along with information about
|
|
// whether the node produces a value, and if so, what kind of value.
|
|
// - CARBON_SEMANTICS_NODE_KIND_WITH_TERMINATOR_KIND(Name, TerminatorKind)
|
|
// Invoked for each kind of semantic node, along with information about
|
|
// whether the node is a terminator node.
|
|
// - CARBON_SEMANTICS_NODE_KIND_WITH_IR_NAME(Name, IRName)
|
|
// Invoked for each kind of semantic node, along with the name that is used
|
|
// to denote this node in textual Semantics IR.
|
|
|
|
#if defined(CARBON_SEMANTICS_NODE_KIND)
|
|
#define CARBON_SEMANTICS_NODE_KIND_IMPL(Name, IRName, ValueKind, \
|
|
TerminatorKind) \
|
|
CARBON_SEMANTICS_NODE_KIND(Name)
|
|
#elif defined(CARBON_SEMANTICS_NODE_KIND_WITH_VALUE_KIND)
|
|
#define CARBON_SEMANTICS_NODE_KIND_IMPL(Name, IRName, ValueKind, \
|
|
TerminatorKind) \
|
|
CARBON_SEMANTICS_NODE_KIND_WITH_VALUE_KIND(Name, ValueKind)
|
|
#elif defined(CARBON_SEMANTICS_NODE_KIND_WITH_TERMINATOR_KIND)
|
|
#define CARBON_SEMANTICS_NODE_KIND_IMPL(Name, IRName, ValueKind, \
|
|
TerminatorKind) \
|
|
CARBON_SEMANTICS_NODE_KIND_WITH_TERMINATOR_KIND(Name, TerminatorKind)
|
|
#elif defined(CARBON_SEMANTICS_NODE_KIND_WITH_IR_NAME)
|
|
#define CARBON_SEMANTICS_NODE_KIND_IMPL(Name, IRName, ValueKind, \
|
|
TerminatorKind) \
|
|
CARBON_SEMANTICS_NODE_KIND_WITH_IR_NAME(Name, IRName)
|
|
#else
|
|
#error "Must define the x-macro to use this file."
|
|
#endif
|
|
|
|
CARBON_SEMANTICS_NODE_KIND_IMPL(Invalid, "invalid", None, NotTerminator)
|
|
|
|
// A cross-reference between IRs.
|
|
CARBON_SEMANTICS_NODE_KIND_IMPL(CrossReference, "xref", Typed, NotTerminator)
|
|
|
|
CARBON_SEMANTICS_NODE_KIND_IMPL(AddressOf, "address_of", Typed, NotTerminator)
|
|
CARBON_SEMANTICS_NODE_KIND_IMPL(ArrayIndex, "array_index", Typed, NotTerminator)
|
|
CARBON_SEMANTICS_NODE_KIND_IMPL(ArrayType, "array_type", Typed, NotTerminator)
|
|
CARBON_SEMANTICS_NODE_KIND_IMPL(ArrayValue, "array_value", Typed, NotTerminator)
|
|
CARBON_SEMANTICS_NODE_KIND_IMPL(Assign, "assign", None, NotTerminator)
|
|
CARBON_SEMANTICS_NODE_KIND_IMPL(BinaryOperatorAdd, "add", Typed, NotTerminator)
|
|
CARBON_SEMANTICS_NODE_KIND_IMPL(BindValue, "bind_value", Typed, NotTerminator)
|
|
CARBON_SEMANTICS_NODE_KIND_IMPL(BlockArg, "block_arg", Typed, NotTerminator)
|
|
CARBON_SEMANTICS_NODE_KIND_IMPL(BoolLiteral, "bool_literal", Typed, NotTerminator)
|
|
CARBON_SEMANTICS_NODE_KIND_IMPL(Branch, "br", None, Terminator)
|
|
CARBON_SEMANTICS_NODE_KIND_IMPL(BranchIf, "br", None, TerminatorSequence)
|
|
CARBON_SEMANTICS_NODE_KIND_IMPL(BranchWithArg, "br", None, Terminator)
|
|
CARBON_SEMANTICS_NODE_KIND_IMPL(Builtin, "builtin", Typed, NotTerminator)
|
|
CARBON_SEMANTICS_NODE_KIND_IMPL(Call, "call", Typed, NotTerminator)
|
|
CARBON_SEMANTICS_NODE_KIND_IMPL(ConstType, "const_type", Typed, NotTerminator)
|
|
CARBON_SEMANTICS_NODE_KIND_IMPL(Dereference, "dereference", Typed,
|
|
NotTerminator)
|
|
CARBON_SEMANTICS_NODE_KIND_IMPL(FunctionDeclaration, "fn_decl", Untyped,
|
|
NotTerminator)
|
|
CARBON_SEMANTICS_NODE_KIND_IMPL(IntegerLiteral, "int_literal", Typed,
|
|
NotTerminator)
|
|
CARBON_SEMANTICS_NODE_KIND_IMPL(Namespace, "namespace", Untyped, NotTerminator)
|
|
CARBON_SEMANTICS_NODE_KIND_IMPL(NoOp, "no_op", None, NotTerminator)
|
|
CARBON_SEMANTICS_NODE_KIND_IMPL(Parameter, "parameter", Typed, NotTerminator)
|
|
CARBON_SEMANTICS_NODE_KIND_IMPL(PointerType, "ptr_type", Typed, NotTerminator)
|
|
CARBON_SEMANTICS_NODE_KIND_IMPL(RealLiteral, "real_literal", Typed,
|
|
NotTerminator)
|
|
CARBON_SEMANTICS_NODE_KIND_IMPL(Return, "return", None, Terminator)
|
|
CARBON_SEMANTICS_NODE_KIND_IMPL(ReturnExpression, "return", None, Terminator)
|
|
CARBON_SEMANTICS_NODE_KIND_IMPL(StringLiteral, "string_literal", Typed,
|
|
NotTerminator)
|
|
CARBON_SEMANTICS_NODE_KIND_IMPL(StructAccess, "struct_access", Typed,
|
|
NotTerminator)
|
|
CARBON_SEMANTICS_NODE_KIND_IMPL(StructType, "struct_type", Typed, NotTerminator)
|
|
CARBON_SEMANTICS_NODE_KIND_IMPL(StructTypeField, "struct_type_field", None,
|
|
NotTerminator)
|
|
CARBON_SEMANTICS_NODE_KIND_IMPL(StructValue, "struct_value", Typed,
|
|
NotTerminator)
|
|
CARBON_SEMANTICS_NODE_KIND_IMPL(StubReference, "stub_reference", Typed,
|
|
NotTerminator)
|
|
CARBON_SEMANTICS_NODE_KIND_IMPL(Temporary, "temporary", Typed, NotTerminator)
|
|
CARBON_SEMANTICS_NODE_KIND_IMPL(TemporaryStorage, "temporary_storage", Typed,
|
|
NotTerminator)
|
|
CARBON_SEMANTICS_NODE_KIND_IMPL(TupleIndex, "tuple_index", Typed, NotTerminator)
|
|
CARBON_SEMANTICS_NODE_KIND_IMPL(TupleType, "tuple_type", Typed, NotTerminator)
|
|
CARBON_SEMANTICS_NODE_KIND_IMPL(TupleValue, "tuple_value", Typed, NotTerminator)
|
|
CARBON_SEMANTICS_NODE_KIND_IMPL(UnaryOperatorNot, "not", Typed, NotTerminator)
|
|
CARBON_SEMANTICS_NODE_KIND_IMPL(VarStorage, "var", Typed, NotTerminator)
|
|
|
|
#undef CARBON_SEMANTICS_NODE_KIND
|
|
#undef CARBON_SEMANTICS_NODE_KIND_WITH_VALUE_KIND
|
|
#undef CARBON_SEMANTICS_NODE_KIND_WITH_TERMINATOR_KIND
|
|
#undef CARBON_SEMANTICS_NODE_KIND_WITH_IR_NAME
|
|
#undef CARBON_SEMANTICS_NODE_KIND_IMPL
|