mirror of
https://github.com/carbon-language/carbon-lang.git
synced 2026-09-24 20:20:10 +01:00
- A function with a return declaration always has exactly one `ReturnSlotPattern`, representing the whole return declaration (whereas previously that was omitted for value and reference returns). - The `ReturnSlotPattern` always has a subpattern with the same form. `OutParamPattern` already plays that role for initializing forms, and `TuplePattern` will play that role for tuple forms. This change introduces `ValueReturnPattern` and `RefReturnPattern` to represent value and reference return forms. - As before, the `ReturnSlotPattern` has a corresponding `ReturnSlot` that represents the output that is initialized by a `return` statement. Its structure parallels the structure of the `ReturnSlotPattern`, so we need `ValueReturn` and `RefReturn` insts that correspond to `ValueReturnPattern` and `RefReturnPattern`. This is a step toward supporting generic return forms, where the `ReturnSlotPattern`'s subpattern may be an action: this change ensures that evaluating the action for a specific form produces the same SemIR as if the form were concrete to begin with. More speculatively, this should simplify the implementation of `return` statements with compound return forms. --------- Co-authored-by: Chandler Carruth <chandlerc@gmail.com>
63 lines
2.0 KiB
C++
63 lines
2.0 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_CHECK_NAME_COMPONENT_H_
|
|
#define CARBON_TOOLCHAIN_CHECK_NAME_COMPONENT_H_
|
|
|
|
#include "toolchain/check/node_stack.h"
|
|
#include "toolchain/parse/node_ids.h"
|
|
#include "toolchain/sem_ir/function.h"
|
|
#include "toolchain/sem_ir/ids.h"
|
|
|
|
namespace Carbon::Check {
|
|
|
|
class Context;
|
|
|
|
// A component in a declaration name, such as `C[T:! type](N:! T)` in
|
|
// `fn C[T:! type](N:! T).F() {}`.
|
|
struct NameComponent {
|
|
// The name of the declaration.
|
|
Parse::NodeId name_loc_id;
|
|
SemIR::NameId name_id;
|
|
|
|
// Parse tree bounds for the parameters, including both implicit and explicit
|
|
// parameters. These will be compared to match between declaration and
|
|
// definition.
|
|
Parse::NodeId first_param_node_id;
|
|
Parse::NodeId last_param_node_id;
|
|
|
|
// The implicit parameter list.
|
|
Parse::NodeId implicit_params_loc_id;
|
|
SemIR::InstBlockId implicit_param_patterns_id;
|
|
|
|
// The explicit parameter list.
|
|
Parse::NodeId params_loc_id;
|
|
SemIR::InstBlockId param_patterns_id;
|
|
|
|
// The `Call` parameters of the entity, if it's a function (see the
|
|
// corresponding members of SemIR::FunctionFields and
|
|
// SemIR::EntityWithParamsBase).
|
|
SemIR::InstBlockId call_param_patterns_id;
|
|
SemIR::InstBlockId call_params_id;
|
|
SemIR::Function::CallParamIndexRanges param_ranges;
|
|
|
|
// The pattern block.
|
|
SemIR::InstBlockId pattern_block_id;
|
|
};
|
|
|
|
// Pops a name component from the node stack (and pattern block stack, if it has
|
|
// parameters).
|
|
auto PopNameComponent(Context& context,
|
|
SemIR::InstId return_pattern_id = SemIR::InstId::None)
|
|
-> NameComponent;
|
|
|
|
// Equivalent to PopNameComponent, but also diagnoses if the name component has
|
|
// parameters.
|
|
auto PopNameComponentWithoutParams(Context& context, Lex::TokenKind introducer)
|
|
-> NameComponent;
|
|
|
|
} // namespace Carbon::Check
|
|
|
|
#endif // CARBON_TOOLCHAIN_CHECK_NAME_COMPONENT_H_
|