mirror of
https://github.com/carbon-language/carbon-lang.git
synced 2026-09-24 20:40:11 +01:00
This adds the `static` token to the lexer and parses it as a modifier. In check, `FullPatternStack::Kind::FieldDecl` is now used for both static and non-static vars. Static vars get treated basically the same as `NameBindingDecl`s. Global initialization is used for static var initializers. To make the necessary stack information available to `pattern_match.cpp`, the `full_pattern_stack` and `decl_introducer_state_stack` are now popped later in `handle_let_and_var.cpp`. In lowering, each class's body is checked for `VarStorage` insts and lowered the same as global vars.
67 lines
2.5 KiB
C++
67 lines
2.5 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/class.h"
|
|
#include "toolchain/check/context.h"
|
|
#include "toolchain/check/inst.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();
|
|
AddInst<SemIR::Return>(*context_, Parse::NodeId::None, {});
|
|
// 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().set_global_ctor_id(context_->sem_ir().functions().Add(
|
|
{{.name_id = SemIR::NameId::ForIdentifier(name_id),
|
|
.parent_scope_id = SemIR::NameScopeId::Package,
|
|
.generic_id = SemIR::GenericId::None,
|
|
.first_param_node_id = Parse::NodeId::None,
|
|
.last_param_node_id = Parse::NodeId::None,
|
|
.pattern_block_id = SemIR::InstBlockId::Empty,
|
|
.implicit_param_patterns_id = SemIR::InstBlockId::None,
|
|
.param_patterns_id = SemIR::InstBlockId::Empty,
|
|
.is_extern = false,
|
|
.extern_library_id = SemIR::LibraryNameId::None,
|
|
.non_owning_decl_id = SemIR::InstId::None,
|
|
.first_owning_decl_id = SemIR::InstId::None},
|
|
{.call_param_patterns_id = SemIR::InstBlockId::Empty,
|
|
.call_params_id = SemIR::InstBlockId::Empty,
|
|
.call_param_ranges = SemIR::Function::CallParamIndexRanges::Empty,
|
|
.return_type_inst_id = SemIR::TypeInstId::None,
|
|
.return_form_inst_id = SemIR::InstId::None,
|
|
.return_pattern_id = SemIR::InstId::None,
|
|
.body_block_ids = {SemIR::InstBlockId::GlobalInit}}}));
|
|
}
|
|
|
|
auto UseGlobalInit(Context& context) -> bool {
|
|
return context.scope_stack().PeekIndex() == ScopeIndex::Package ||
|
|
InStaticClassScopeVar(context);
|
|
}
|
|
|
|
} // namespace Carbon::Check
|