mirror of
https://github.com/carbon-language/carbon-lang.git
synced 2026-09-24 22:02:23 +01:00
Creates a `GlobalInit` class for storing relevant values, pulling functions off `InstBlockStack` and `Context`. Adds a `Context` pointer just so that it doesn't need to be passed in on each call (`Finalize` in particular uses several members). Note we have several different `InstBlockStack` instances, so several copies of the relevant members were simply unused.
48 lines
1.5 KiB
C++
48 lines
1.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
|
|
|
|
#ifndef CARBON_TOOLCHAIN_CHECK_GLOBAL_INIT_H_
|
|
#define CARBON_TOOLCHAIN_CHECK_GLOBAL_INIT_H_
|
|
|
|
#include "llvm/ADT/SmallVector.h"
|
|
#include "toolchain/sem_ir/ids.h"
|
|
|
|
namespace Carbon::Check {
|
|
|
|
class Context;
|
|
|
|
// Tracks state for global initialization. Handles should `Resume` when entering
|
|
// an expression that's used for global init, and `Suspend` when the expression
|
|
// is finished. Instructions in the middle will be tracked for the
|
|
// `__global_init` function.
|
|
class GlobalInit {
|
|
public:
|
|
explicit GlobalInit(Context* context) : context_(context) {}
|
|
|
|
// Resumes adding instructions to global init.
|
|
auto Resume() -> void;
|
|
|
|
// Suspends adding instructions to global init.
|
|
auto Suspend() -> void;
|
|
|
|
// Finalizes the global initialization state, creating `__global_init` if
|
|
// needed. Only called once at the end of checking.
|
|
auto Finalize() -> void;
|
|
|
|
private:
|
|
// The associated context. Stored for convenience.
|
|
Context* context_;
|
|
|
|
// The currently suspended global init block. The value may change as a result
|
|
// of control flow in initialization.
|
|
SemIR::InstBlockId block_id_ = SemIR::InstBlockId::GlobalInit;
|
|
|
|
// The contents for the currently suspended global init block.
|
|
llvm::SmallVector<SemIR::InstId> block_;
|
|
};
|
|
|
|
} // namespace Carbon::Check
|
|
|
|
#endif // CARBON_TOOLCHAIN_CHECK_GLOBAL_INIT_H_
|