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>
85 lines
3.0 KiB
C++
85 lines
3.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
|
|
|
|
#include "toolchain/semantics/semantics_context.h"
|
|
#include "toolchain/semantics/semantics_node.h"
|
|
|
|
namespace Carbon::Check {
|
|
|
|
auto HandleIfConditionStart(Context& /*context*/,
|
|
ParseTree::Node /*parse_node*/) -> bool {
|
|
return true;
|
|
}
|
|
|
|
auto HandleIfCondition(Context& context, ParseTree::Node parse_node) -> bool {
|
|
// Convert the condition to `bool`.
|
|
auto cond_value_id = context.node_stack().PopExpression();
|
|
cond_value_id = context.ConvertToBoolValue(parse_node, cond_value_id);
|
|
|
|
// Create the then block and the else block, and branch to the right one. If
|
|
// there is no `else`, the then block will terminate with a branch to the
|
|
// else block, which will be reused as the resumption block.
|
|
auto then_block_id =
|
|
context.AddDominatedBlockAndBranchIf(parse_node, cond_value_id);
|
|
auto else_block_id = context.AddDominatedBlockAndBranch(parse_node);
|
|
|
|
// Push the else and then blocks, and start emitting code in the then block.
|
|
context.node_block_stack().Pop();
|
|
context.node_block_stack().Push(else_block_id);
|
|
context.node_block_stack().Push(then_block_id);
|
|
context.AddCurrentCodeBlockToFunction();
|
|
|
|
context.node_stack().Push(parse_node);
|
|
return true;
|
|
}
|
|
|
|
auto HandleIfStatementElse(Context& context, ParseTree::Node parse_node)
|
|
-> bool {
|
|
context.node_stack().PopAndDiscardSoloParseNode<ParseNodeKind::IfCondition>();
|
|
|
|
// Switch to emitting the else block.
|
|
auto then_block_id = context.node_block_stack().PopForAdd();
|
|
context.node_stack().Push(parse_node, then_block_id);
|
|
context.AddCurrentCodeBlockToFunction();
|
|
return true;
|
|
}
|
|
|
|
auto HandleIfStatement(Context& context, ParseTree::Node parse_node) -> bool {
|
|
// Either the then or else block, depending on whether there's an `else` node
|
|
// on the top of the node stack.
|
|
auto sub_block_id = context.node_block_stack().PopForAdd();
|
|
|
|
switch (auto kind = context.parse_tree().node_kind(
|
|
context.node_stack().PeekParseNode())) {
|
|
case ParseNodeKind::IfCondition: {
|
|
// Branch from then block to else block.
|
|
context.node_stack()
|
|
.PopAndDiscardSoloParseNode<ParseNodeKind::IfCondition>();
|
|
context.AddNodeToBlock(
|
|
sub_block_id,
|
|
SemIR::Node::Branch::Make(parse_node,
|
|
context.node_block_stack().PeekForAdd()));
|
|
break;
|
|
}
|
|
|
|
case ParseNodeKind::IfStatementElse: {
|
|
// Branch from the then and else blocks to a new resumption block.
|
|
SemIR::NodeBlockId then_block_id =
|
|
context.node_stack().Pop<ParseNodeKind::IfStatementElse>();
|
|
context.AddConvergenceBlockAndPush(parse_node,
|
|
{then_block_id, sub_block_id});
|
|
break;
|
|
}
|
|
|
|
default: {
|
|
CARBON_FATAL() << "Unexpected parse node at start of `if`: " << kind;
|
|
}
|
|
}
|
|
|
|
context.AddCurrentCodeBlockToFunction();
|
|
return true;
|
|
}
|
|
|
|
} // namespace Carbon::Check
|