mirror of
https://github.com/carbon-language/carbon-lang.git
synced 2026-09-24 22:02:23 +01:00
Start treating function calls as initializing expressions instead of as value expressions. This required adding support for expression categories. Value bindings and temporary materialization conversions are created where necessary to transition between expression categories. For a function call with a return slot, we speculatively create a materialized temporary before the call and either commit to it or replace it with something else later, once we see how the function call expression is actually used. This change follows the direction suggested in #3133 for initializing expressions: depending on the return type of a function, the return value will either be initialized in-place or returned directly. This is visible in the semantics IR, which is a little unfortunate but is probably necessary as this is part of the semantics of the program. --------- Co-authored-by: Chandler Carruth <chandlerc@gmail.com>
101 lines
5.8 KiB
Modula-2
101 lines
5.8 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(MaterializeTemporary, "materialize_temporary",
|
|
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(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
|