Files
carbon-lang/toolchain/check/global_init.cpp
T
Jon Ross-Perkins db022658c6 Implement syntactic merge checks for parameters. (#4149)
Note this isn't implementing checking through imports. The parse node
there is harder to access through the context, so would require
examining the entity in order to get the import declaration, to get at
the ImportIR. We also don't have a parse tree attached in that case, and
would need to add one to SemIR::File. But I believe we do want to add
that, so it's explicitly a TODO.

Note GetTokenText re-lexes literal values, so there's a bit of potential
overhead there. Not sure if we want a more efficient manner for
comparing in cases like this.
2024-07-23 20:32:24 +00:00

53 lines
1.8 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/check/global_init.h"
#include "toolchain/check/context.h"
namespace Carbon::Check {
auto GlobalInit::Resume() -> void {
context_->inst_block_stack().Push(block_id_, block_);
}
auto GlobalInit::Suspend() -> void {
// TODO: Consider splicing together blocks in order to avoid sizable copies
// here.
auto contents = context_->inst_block_stack().PeekCurrentBlockContents();
block_.assign(contents.begin(), contents.end());
block_id_ = context_->inst_block_stack().PeekOrAdd();
context_->inst_block_stack().PopAndDiscard();
}
auto GlobalInit::Finalize() -> void {
// __global_init is only added if there are initialization instructions.
if (block_.empty() && block_id_ == SemIR::InstBlockId::GlobalInit) {
return;
}
Resume();
context_->AddInst<SemIR::Return>(Parse::NodeId::Invalid, {});
// Pop the GlobalInit block here to finalize it.
context_->inst_block_stack().Pop();
auto name_id = context_->sem_ir().identifiers().Add("__global_init");
context_->sem_ir().functions().Add(
{.name_id = SemIR::NameId::ForIdentifier(name_id),
.parent_scope_id = SemIR::NameScopeId::Package,
.decl_id = SemIR::InstId::Invalid,
.generic_id = SemIR::GenericId::Invalid,
.first_param_node_id = Parse::NodeId::Invalid,
.last_param_node_id = Parse::NodeId::Invalid,
.implicit_param_refs_id = SemIR::InstBlockId::Invalid,
.param_refs_id = SemIR::InstBlockId::Empty,
.return_storage_id = SemIR::InstId::Invalid,
.is_extern = false,
.return_slot = SemIR::Function::ReturnSlot::Absent,
.body_block_ids = {SemIR::InstBlockId::GlobalInit}});
}
} // namespace Carbon::Check