mirror of
https://github.com/carbon-language/carbon-lang.git
synced 2026-09-24 22:02:23 +01:00
The caching isn't buying us much, and is adding complexity and divergence between the codepaths for generic and non-generic functions. This means we no longer suppress diagnostics for the second or subsequent time we call a function with an incomplete return type. If we want to add that back, it might be worth considering moving the suppression to `TryToCompleteType` and only diagnosing that a type is incomplete once, regardless of why we're requiring it to be complete.
52 lines
1.8 KiB
C++
52 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,
|
|
.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,
|
|
.decl_id = SemIR::InstId::Invalid},
|
|
{.return_storage_id = SemIR::InstId::Invalid,
|
|
.is_extern = false,
|
|
.body_block_ids = {SemIR::InstBlockId::GlobalInit}}});
|
|
}
|
|
|
|
} // namespace Carbon::Check
|