| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689 |
- // 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_CONTEXT_H_
- #define CARBON_TOOLCHAIN_CHECK_CONTEXT_H_
- #include "common/map.h"
- #include "llvm/ADT/FoldingSet.h"
- #include "llvm/ADT/SmallVector.h"
- #include "toolchain/check/decl_introducer_state.h"
- #include "toolchain/check/decl_name_stack.h"
- #include "toolchain/check/diagnostic_helpers.h"
- #include "toolchain/check/full_pattern_stack.h"
- #include "toolchain/check/generic_region_stack.h"
- #include "toolchain/check/global_init.h"
- #include "toolchain/check/inst_block_stack.h"
- #include "toolchain/check/node_stack.h"
- #include "toolchain/check/param_and_arg_refs_stack.h"
- #include "toolchain/check/region_stack.h"
- #include "toolchain/check/scope_index.h"
- #include "toolchain/check/scope_stack.h"
- #include "toolchain/parse/node_ids.h"
- #include "toolchain/parse/tree.h"
- #include "toolchain/parse/tree_and_subtrees.h"
- #include "toolchain/sem_ir/file.h"
- #include "toolchain/sem_ir/ids.h"
- #include "toolchain/sem_ir/import_ir.h"
- #include "toolchain/sem_ir/inst.h"
- #include "toolchain/sem_ir/name_scope.h"
- #include "toolchain/sem_ir/typed_insts.h"
- namespace Carbon::Check {
- // Information about a scope in which we can perform name lookup.
- struct LookupScope {
- // The name scope in which names are searched.
- SemIR::NameScopeId name_scope_id;
- // The specific for the name scope, or `None` if the name scope is not
- // defined by a generic or we should perform lookup into the generic itself.
- SemIR::SpecificId specific_id;
- };
- // A result produced by name lookup.
- struct LookupResult {
- // The specific in which the lookup result was found. `None` if the result
- // was not found in a specific.
- SemIR::SpecificId specific_id;
- // The result from the lookup in the scope.
- SemIR::ScopeLookupResult scope_result;
- };
- // Information about an access.
- struct AccessInfo {
- // The constant being accessed.
- SemIR::ConstantId constant_id;
- // The highest allowed access for a lookup. For example, `Protected` allows
- // access to `Public` and `Protected` names, but not `Private`.
- SemIR::AccessKind highest_allowed_access;
- };
- // Context and shared functionality for semantics handlers.
- class Context {
- public:
- using DiagnosticEmitter = Carbon::DiagnosticEmitter<SemIRLoc>;
- using DiagnosticBuilder = DiagnosticEmitter::DiagnosticBuilder;
- // A function that forms a diagnostic for some kind of problem. The
- // DiagnosticBuilder is returned rather than emitted so that the caller can
- // add contextual notes as appropriate.
- using BuildDiagnosticFn = llvm::function_ref<auto()->DiagnosticBuilder>;
- // Stores references for work.
- explicit Context(DiagnosticEmitter* emitter,
- Parse::GetTreeAndSubtreesFn tree_and_subtrees_getter,
- SemIR::File* sem_ir, int imported_ir_count,
- int total_ir_count, llvm::raw_ostream* vlog_stream);
- // Marks an implementation TODO. Always returns false.
- auto TODO(SemIRLoc loc, std::string label) -> bool;
- // Runs verification that the processing cleanly finished.
- auto VerifyOnFinish() -> void;
- // Adds an instruction to the current block, returning the produced ID.
- auto AddInst(SemIR::LocIdAndInst loc_id_and_inst) -> SemIR::InstId {
- auto inst_id = AddInstInNoBlock(loc_id_and_inst);
- inst_block_stack_.AddInstId(inst_id);
- return inst_id;
- }
- // Convenience for AddInst with typed nodes.
- template <typename InstT, typename LocT>
- auto AddInst(LocT loc, InstT inst)
- -> decltype(AddInst(SemIR::LocIdAndInst(loc, inst))) {
- return AddInst(SemIR::LocIdAndInst(loc, inst));
- }
- // Returns a LocIdAndInst for an instruction with an imported location. Checks
- // that the imported location is compatible with the kind of instruction being
- // created.
- template <typename InstT>
- requires SemIR::Internal::HasNodeId<InstT>
- auto MakeImportedLocAndInst(SemIR::ImportIRInstId imported_loc_id, InstT inst)
- -> SemIR::LocIdAndInst {
- if constexpr (!SemIR::Internal::HasUntypedNodeId<InstT>) {
- CheckCompatibleImportedNodeKind(imported_loc_id, InstT::Kind);
- }
- return SemIR::LocIdAndInst::UncheckedLoc(imported_loc_id, inst);
- }
- // Adds an instruction in no block, returning the produced ID. Should be used
- // rarely.
- auto AddInstInNoBlock(SemIR::LocIdAndInst loc_id_and_inst) -> SemIR::InstId {
- auto inst_id = sem_ir().insts().AddInNoBlock(loc_id_and_inst);
- CARBON_VLOG("AddInst: {0}\n", loc_id_and_inst.inst);
- FinishInst(inst_id, loc_id_and_inst.inst);
- return inst_id;
- }
- // Convenience for AddInstInNoBlock with typed nodes.
- template <typename InstT, typename LocT>
- auto AddInstInNoBlock(LocT loc, InstT inst)
- -> decltype(AddInstInNoBlock(SemIR::LocIdAndInst(loc, inst))) {
- return AddInstInNoBlock(SemIR::LocIdAndInst(loc, inst));
- }
- // If the instruction has an implicit location and a constant value, returns
- // the constant value's instruction ID. Otherwise, same as AddInst.
- auto GetOrAddInst(SemIR::LocIdAndInst loc_id_and_inst) -> SemIR::InstId;
- // Convenience for GetOrAddInst with typed nodes.
- template <typename InstT, typename LocT>
- auto GetOrAddInst(LocT loc, InstT inst)
- -> decltype(GetOrAddInst(SemIR::LocIdAndInst(loc, inst))) {
- return GetOrAddInst(SemIR::LocIdAndInst(loc, inst));
- }
- // Adds an instruction to the current block, returning the produced ID. The
- // instruction is a placeholder that is expected to be replaced by
- // `ReplaceInstBeforeConstantUse`.
- auto AddPlaceholderInst(SemIR::LocIdAndInst loc_id_and_inst) -> SemIR::InstId;
- // Adds an instruction in no block, returning the produced ID. Should be used
- // rarely. The instruction is a placeholder that is expected to be replaced by
- // `ReplaceInstBeforeConstantUse`.
- auto AddPlaceholderInstInNoBlock(SemIR::LocIdAndInst loc_id_and_inst)
- -> SemIR::InstId;
- // Adds an instruction to the current pattern block, returning the produced
- // ID.
- // TODO: Is it possible to remove this and pattern_block_stack, now that
- // we have BeginSubpattern etc. instead?
- auto AddPatternInst(SemIR::LocIdAndInst loc_id_and_inst) -> SemIR::InstId {
- auto inst_id = AddInstInNoBlock(loc_id_and_inst);
- pattern_block_stack_.AddInstId(inst_id);
- return inst_id;
- }
- // Convenience for AddPatternInst with typed nodes.
- template <typename InstT>
- requires(SemIR::Internal::HasNodeId<InstT>)
- auto AddPatternInst(decltype(InstT::Kind)::TypedNodeId node_id, InstT inst)
- -> SemIR::InstId {
- return AddPatternInst(SemIR::LocIdAndInst(node_id, inst));
- }
- // Pushes a parse tree node onto the stack, storing the SemIR::Inst as the
- // result.
- template <typename InstT>
- requires(SemIR::Internal::HasNodeId<InstT>)
- auto AddInstAndPush(decltype(InstT::Kind)::TypedNodeId node_id, InstT inst)
- -> void {
- node_stack_.Push(node_id, AddInst(node_id, inst));
- }
- // Replaces the instruction at `inst_id` with `loc_id_and_inst`. The
- // instruction is required to not have been used in any constant evaluation,
- // either because it's newly created and entirely unused, or because it's only
- // used in a position that constant evaluation ignores, such as a return slot.
- auto ReplaceLocIdAndInstBeforeConstantUse(SemIR::InstId inst_id,
- SemIR::LocIdAndInst loc_id_and_inst)
- -> void;
- // Replaces the instruction at `inst_id` with `inst`, not affecting location.
- // The instruction is required to not have been used in any constant
- // evaluation, either because it's newly created and entirely unused, or
- // because it's only used in a position that constant evaluation ignores, such
- // as a return slot.
- auto ReplaceInstBeforeConstantUse(SemIR::InstId inst_id, SemIR::Inst inst)
- -> void;
- // Replaces the instruction at `inst_id` with `inst`, not affecting location.
- // The instruction is required to not change its constant value.
- auto ReplaceInstPreservingConstantValue(SemIR::InstId inst_id,
- SemIR::Inst inst) -> void;
- // Sets only the parse node of an instruction. This is only used when setting
- // the parse node of an imported namespace. Versus
- // ReplaceInstBeforeConstantUse, it is safe to use after the namespace is used
- // in constant evaluation. It's exposed this way mainly so that `insts()` can
- // remain const.
- auto SetNamespaceNodeId(SemIR::InstId inst_id, Parse::NodeId node_id)
- -> void {
- sem_ir().insts().SetLocId(inst_id, SemIR::LocId(node_id));
- }
- // Adds a name to name lookup. Prints a diagnostic for name conflicts. If
- // specified, `scope_index` specifies which lexical scope the name is inserted
- // into, otherwise the name is inserted into the current scope.
- auto AddNameToLookup(SemIR::NameId name_id, SemIR::InstId target_id,
- ScopeIndex scope_index = ScopeIndex::None) -> void;
- // Performs name lookup in a specified scope for a name appearing in a
- // declaration. If scope_id is `None`, performs lookup into the lexical scope
- // specified by scope_index instead.
- auto LookupNameInDecl(SemIR::LocId loc_id, SemIR::NameId name_id,
- SemIR::NameScopeId scope_id, ScopeIndex scope_index)
- -> SemIR::ScopeLookupResult;
- // Performs an unqualified name lookup, returning the referenced `InstId`.
- auto LookupUnqualifiedName(Parse::NodeId node_id, SemIR::NameId name_id,
- bool required = true) -> LookupResult;
- // Performs a name lookup in a specified scope, returning the referenced
- // `InstId`. Does not look into extended scopes. Returns `InstId::None` if the
- // name is not found.
- //
- // If `is_being_declared` is false, then this is a regular name lookup, and
- // the name will be poisoned if not found so that later lookups will fail; a
- // poisoned name will be treated as if it is not declared. Otherwise, this is
- // a lookup for a name being declared, so the name will not be poisoned, but
- // poison will be returned if it's already been looked up.
- auto LookupNameInExactScope(SemIR::LocId loc_id, SemIR::NameId name_id,
- SemIR::NameScopeId scope_id,
- SemIR::NameScope& scope,
- bool is_being_declared = false)
- -> SemIR::ScopeLookupResult;
- // Appends the lookup scopes corresponding to `base_const_id` to `*scopes`.
- // Returns `false` if not a scope. On invalid scopes, prints a diagnostic, but
- // still updates `*scopes` and returns `true`.
- auto AppendLookupScopesForConstant(SemIR::LocId loc_id,
- SemIR::ConstantId base_const_id,
- llvm::SmallVector<LookupScope>* scopes)
- -> bool;
- // Performs a qualified name lookup in a specified scopes and in scopes that
- // they extend, returning the referenced `InstId`.
- auto LookupQualifiedName(SemIR::LocId loc_id, SemIR::NameId name_id,
- llvm::ArrayRef<LookupScope> lookup_scopes,
- bool required = true,
- std::optional<AccessInfo> access_info = std::nullopt)
- -> LookupResult;
- // Returns the `InstId` corresponding to a name in the core package, or
- // BuiltinErrorInst if not found.
- auto LookupNameInCore(SemIR::LocId loc_id, llvm::StringRef name)
- -> SemIR::InstId;
- // Prints a diagnostic for a duplicate name.
- auto DiagnoseDuplicateName(SemIRLoc dup_def, SemIRLoc prev_def) -> void;
- // Prints a diagnostic for a poisoned name when it's later declared.
- auto DiagnosePoisonedName(SemIR::LocId poisoning_loc_id,
- SemIR::InstId decl_inst_id) -> void;
- // Prints a diagnostic for a missing name.
- auto DiagnoseNameNotFound(SemIRLoc loc, SemIR::NameId name_id) -> void;
- // Prints a diagnostic for a missing qualified name.
- auto DiagnoseMemberNameNotFound(SemIRLoc loc, SemIR::NameId name_id,
- llvm::ArrayRef<LookupScope> lookup_scopes)
- -> void;
- // Adds a note to a diagnostic explaining that a class is incomplete.
- auto NoteIncompleteClass(SemIR::ClassId class_id, DiagnosticBuilder& builder)
- -> void;
- // Adds a note to a diagnostic explaining that a class is abstract.
- auto NoteAbstractClass(SemIR::ClassId class_id, DiagnosticBuilder& builder)
- -> void;
- // Adds a note to a diagnostic explaining that an interface is not defined.
- auto NoteUndefinedInterface(SemIR::InterfaceId interface_id,
- DiagnosticBuilder& builder) -> void;
- // Returns the type ID for a constant that is a type value, i.e. it is a value
- // of type `TypeType`.
- //
- // Facet values are of the same typishness as types, but are not themselves
- // types, so they can not be passed here. They should be converted to a type
- // through an `as type` conversion, that is, to a value of type `TypeType`.
- auto GetTypeIdForTypeConstant(SemIR::ConstantId constant_id) -> SemIR::TypeId;
- // Returns the type ID for an instruction whose constant value is a type
- // value, i.e. it is a value of type `TypeType`.
- //
- // Instructions whose values are facet values (see `FacetValue`) produce a
- // value of the same typishness as types, but which are themselves not types,
- // so they can not be passed here. They should be converted to a type through
- // an `as type` conversion, such as to a `FacetAccessType` instruction whose
- // value is of type `TypeType`.
- auto GetTypeIdForTypeInst(SemIR::InstId inst_id) -> SemIR::TypeId {
- return GetTypeIdForTypeConstant(constant_values().Get(inst_id));
- }
- // Returns whether `type_id` represents a facet type.
- auto IsFacetType(SemIR::TypeId type_id) -> bool {
- return type_id == SemIR::TypeType::SingletonTypeId ||
- types().Is<SemIR::FacetType>(type_id);
- }
- // Create a FacetType typed instruction object consisting of a single
- // interface.
- auto FacetTypeFromInterface(SemIR::InterfaceId interface_id,
- SemIR::SpecificId specific_id)
- -> SemIR::FacetType;
- // TODO: Consider moving these `Get*Type` functions to a separate class.
- // Gets the type to use for an unbound associated entity declared in this
- // interface. For example, this is the type of `I.T` after
- // `interface I { let T:! type; }`.
- // The name of the interface is used for diagnostics.
- // TODO: Should we use a different type for each such entity, or the same type
- // for all associated entities?
- auto GetAssociatedEntityType(SemIR::TypeId interface_type_id)
- -> SemIR::TypeId;
- // Gets a singleton type. The returned type will be complete. Requires that
- // `singleton_id` is already validated to be a singleton.
- auto GetSingletonType(SemIR::InstId singleton_id) -> SemIR::TypeId;
- // Gets a class type.
- auto GetClassType(SemIR::ClassId class_id, SemIR::SpecificId specific_id)
- -> SemIR::TypeId;
- // Gets a function type. The returned type will be complete.
- auto GetFunctionType(SemIR::FunctionId fn_id, SemIR::SpecificId specific_id)
- -> SemIR::TypeId;
- // Gets the type of an associated function with the `Self` parameter bound to
- // a particular value. The returned type will be complete.
- auto GetFunctionTypeWithSelfType(SemIR::InstId interface_function_type_id,
- SemIR::InstId self_id) -> SemIR::TypeId;
- // Gets a generic class type, which is the type of a name of a generic class,
- // such as the type of `Vector` given `class Vector(T:! type)`. The returned
- // type will be complete.
- auto GetGenericClassType(SemIR::ClassId class_id,
- SemIR::SpecificId enclosing_specific_id)
- -> SemIR::TypeId;
- // Gets a generic interface type, which is the type of a name of a generic
- // interface, such as the type of `AddWith` given
- // `interface AddWith(T:! type)`. The returned type will be complete.
- auto GetGenericInterfaceType(SemIR::InterfaceId interface_id,
- SemIR::SpecificId enclosing_specific_id)
- -> SemIR::TypeId;
- // Gets the facet type corresponding to a particular interface.
- auto GetInterfaceType(SemIR::InterfaceId interface_id,
- SemIR::SpecificId specific_id) -> SemIR::TypeId;
- // Returns a pointer type whose pointee type is `pointee_type_id`.
- auto GetPointerType(SemIR::TypeId pointee_type_id) -> SemIR::TypeId;
- // Returns a struct type with the given fields.
- auto GetStructType(SemIR::StructTypeFieldsId fields_id) -> SemIR::TypeId;
- // Returns a tuple type with the given element types.
- auto GetTupleType(llvm::ArrayRef<SemIR::TypeId> type_ids) -> SemIR::TypeId;
- // Returns an unbound element type.
- auto GetUnboundElementType(SemIR::TypeId class_type_id,
- SemIR::TypeId element_type_id) -> SemIR::TypeId;
- // Adds an exported name.
- auto AddExport(SemIR::InstId inst_id) -> void { exports_.push_back(inst_id); }
- auto Finalize() -> void;
- // Prints information for a stack dump.
- auto PrintForStackDump(llvm::raw_ostream& output) const -> void;
- // Prints the the formatted sem_ir to stderr.
- LLVM_DUMP_METHOD auto DumpFormattedFile() const -> void;
- // Get the Lex::TokenKind of a node for diagnostics.
- auto token_kind(Parse::NodeId node_id) -> Lex::TokenKind {
- return tokens().GetKind(parse_tree().node_token(node_id));
- }
- auto emitter() -> DiagnosticEmitter& { return *emitter_; }
- auto parse_tree_and_subtrees() -> const Parse::TreeAndSubtrees& {
- return tree_and_subtrees_getter_();
- }
- auto sem_ir() -> SemIR::File& { return *sem_ir_; }
- auto sem_ir() const -> const SemIR::File& { return *sem_ir_; }
- auto parse_tree() const -> const Parse::Tree& {
- return sem_ir_->parse_tree();
- }
- auto tokens() const -> const Lex::TokenizedBuffer& {
- return parse_tree().tokens();
- }
- auto vlog_stream() -> llvm::raw_ostream* { return vlog_stream_; }
- auto node_stack() -> NodeStack& { return node_stack_; }
- auto inst_block_stack() -> InstBlockStack& { return inst_block_stack_; }
- auto pattern_block_stack() -> InstBlockStack& { return pattern_block_stack_; }
- auto param_and_arg_refs_stack() -> ParamAndArgRefsStack& {
- return param_and_arg_refs_stack_;
- }
- auto args_type_info_stack() -> InstBlockStack& {
- return args_type_info_stack_;
- }
- auto struct_type_fields_stack() -> ArrayStack<SemIR::StructTypeField>& {
- return struct_type_fields_stack_;
- }
- auto field_decls_stack() -> ArrayStack<SemIR::InstId>& {
- return field_decls_stack_;
- }
- auto decl_name_stack() -> DeclNameStack& { return decl_name_stack_; }
- auto decl_introducer_state_stack() -> DeclIntroducerStateStack& {
- return decl_introducer_state_stack_;
- }
- auto scope_stack() -> ScopeStack& { return scope_stack_; }
- auto return_scope_stack() -> llvm::SmallVector<ScopeStack::ReturnScope>& {
- return scope_stack().return_scope_stack();
- }
- auto break_continue_stack()
- -> llvm::SmallVector<ScopeStack::BreakContinueScope>& {
- return scope_stack().break_continue_stack();
- }
- auto generic_region_stack() -> GenericRegionStack& {
- return generic_region_stack_;
- }
- auto vtable_stack() -> InstBlockStack& { return vtable_stack_; }
- auto check_ir_map() -> llvm::MutableArrayRef<SemIR::ImportIRId> {
- return check_ir_map_;
- }
- auto import_ir_constant_values()
- -> llvm::SmallVector<SemIR::ConstantValueStore, 0>& {
- return import_ir_constant_values_;
- }
- // Directly expose SemIR::File data accessors for brevity in calls.
- auto identifiers() -> SharedValueStores::IdentifierStore& {
- return sem_ir().identifiers();
- }
- auto ints() -> SharedValueStores::IntStore& { return sem_ir().ints(); }
- auto reals() -> SharedValueStores::RealStore& { return sem_ir().reals(); }
- auto floats() -> SharedValueStores::FloatStore& { return sem_ir().floats(); }
- auto string_literal_values() -> SharedValueStores::StringLiteralStore& {
- return sem_ir().string_literal_values();
- }
- auto entity_names() -> SemIR::EntityNameStore& {
- return sem_ir().entity_names();
- }
- auto functions() -> ValueStore<SemIR::FunctionId>& {
- return sem_ir().functions();
- }
- auto classes() -> ValueStore<SemIR::ClassId>& { return sem_ir().classes(); }
- auto interfaces() -> ValueStore<SemIR::InterfaceId>& {
- return sem_ir().interfaces();
- }
- auto associated_constants() -> ValueStore<SemIR::AssociatedConstantId>& {
- return sem_ir().associated_constants();
- }
- auto facet_types() -> CanonicalValueStore<SemIR::FacetTypeId>& {
- return sem_ir().facet_types();
- }
- auto impls() -> SemIR::ImplStore& { return sem_ir().impls(); }
- auto generics() -> SemIR::GenericStore& { return sem_ir().generics(); }
- auto specifics() -> SemIR::SpecificStore& { return sem_ir().specifics(); }
- auto import_irs() -> ValueStore<SemIR::ImportIRId>& {
- return sem_ir().import_irs();
- }
- auto import_ir_insts() -> ValueStore<SemIR::ImportIRInstId>& {
- return sem_ir().import_ir_insts();
- }
- auto names() -> SemIR::NameStoreWrapper { return sem_ir().names(); }
- auto name_scopes() -> SemIR::NameScopeStore& {
- return sem_ir().name_scopes();
- }
- auto struct_type_fields() -> SemIR::StructTypeFieldsStore& {
- return sem_ir().struct_type_fields();
- }
- auto types() -> SemIR::TypeStore& { return sem_ir().types(); }
- auto type_blocks() -> SemIR::BlockValueStore<SemIR::TypeBlockId>& {
- return sem_ir().type_blocks();
- }
- // Instructions should be added with `AddInst` or `AddInstInNoBlock`. This is
- // `const` to prevent accidental misuse.
- auto insts() -> const SemIR::InstStore& { return sem_ir().insts(); }
- auto constant_values() -> SemIR::ConstantValueStore& {
- return sem_ir().constant_values();
- }
- auto inst_blocks() -> SemIR::InstBlockStore& {
- return sem_ir().inst_blocks();
- }
- auto constants() -> SemIR::ConstantStore& { return sem_ir().constants(); }
- auto definitions_required() -> llvm::SmallVector<SemIR::InstId>& {
- return definitions_required_;
- }
- auto global_init() -> GlobalInit& { return global_init_; }
- auto import_ref_ids() -> llvm::SmallVector<SemIR::InstId>& {
- return import_ref_ids_;
- }
- // Map from an AnyBindingPattern inst to precomputed parts of the
- // pattern-match SemIR for it.
- //
- // TODO: Consider putting this behind a narrower API to guard against emitting
- // multiple times.
- struct BindingPatternInfo {
- // The corresponding AnyBindName inst.
- SemIR::InstId bind_name_id;
- // The region of insts that computes the type of the binding.
- SemIR::ExprRegionId type_expr_region_id;
- };
- auto bind_name_map() -> Map<SemIR::InstId, BindingPatternInfo>& {
- return bind_name_map_;
- }
- auto var_storage_map() -> Map<SemIR::InstId, SemIR::InstId>& {
- return var_storage_map_;
- }
- auto region_stack() -> RegionStack& { return region_stack_; }
- auto full_pattern_stack() -> FullPatternStack& {
- return scope_stack_.full_pattern_stack();
- }
- private:
- // A FoldingSet node for a type.
- class TypeNode : public llvm::FastFoldingSetNode {
- public:
- explicit TypeNode(const llvm::FoldingSetNodeID& node_id,
- SemIR::TypeId type_id)
- : llvm::FastFoldingSetNode(node_id), type_id_(type_id) {}
- auto type_id() -> SemIR::TypeId { return type_id_; }
- private:
- SemIR::TypeId type_id_;
- };
- // Checks that the provided imported location has a node kind that is
- // compatible with that of the given instruction.
- auto CheckCompatibleImportedNodeKind(SemIR::ImportIRInstId imported_loc_id,
- SemIR::InstKind kind) -> void;
- // Finish producing an instruction. Set its constant value, and register it in
- // any applicable instruction lists.
- auto FinishInst(SemIR::InstId inst_id, SemIR::Inst inst) -> void;
- // Handles diagnostics.
- DiagnosticEmitter* emitter_;
- // Returns a lazily constructed TreeAndSubtrees.
- Parse::GetTreeAndSubtreesFn tree_and_subtrees_getter_;
- // The SemIR::File being added to.
- SemIR::File* sem_ir_;
- // Whether to print verbose output.
- llvm::raw_ostream* vlog_stream_;
- // The stack during Build. Will contain file-level parse nodes on return.
- NodeStack node_stack_;
- // The stack of instruction blocks being used for general IR generation.
- InstBlockStack inst_block_stack_;
- // The stack of instruction blocks that contain pattern instructions.
- InstBlockStack pattern_block_stack_;
- // The stack of instruction blocks being used for param and arg ref blocks.
- ParamAndArgRefsStack param_and_arg_refs_stack_;
- // The stack of instruction blocks being used for type information while
- // processing arguments. This is used in parallel with
- // param_and_arg_refs_stack_. It's currently only used for struct literals,
- // where we need to track names for a type separate from the literal
- // arguments.
- InstBlockStack args_type_info_stack_;
- // The stack of StructTypeFields for in-progress StructTypeLiterals.
- ArrayStack<SemIR::StructTypeField> struct_type_fields_stack_;
- // The stack of FieldDecls for in-progress Class definitions.
- ArrayStack<SemIR::InstId> field_decls_stack_;
- // The stack used for qualified declaration name construction.
- DeclNameStack decl_name_stack_;
- // The stack of declarations that could have modifiers.
- DeclIntroducerStateStack decl_introducer_state_stack_;
- // The stack of scopes we are currently within.
- ScopeStack scope_stack_;
- // The stack of generic regions we are currently within.
- GenericRegionStack generic_region_stack_;
- // Contains a vtable block for each `class` scope which is currently being
- // defined, regardless of whether the class can have virtual functions.
- InstBlockStack vtable_stack_;
- // Cache of reverse mapping from type constants to types.
- //
- // TODO: Instead of mapping to a dense `TypeId` space, we could make `TypeId`
- // be a thin wrapper around `ConstantId` and only perform the lookup only when
- // we want to access the completeness and value representation of a type. It's
- // not clear whether that would result in more or fewer lookups.
- //
- // TODO: Should this be part of the `TypeStore`?
- Map<SemIR::ConstantId, SemIR::TypeId> type_ids_for_type_constants_;
- // The list which will form NodeBlockId::Exports.
- llvm::SmallVector<SemIR::InstId> exports_;
- // Maps CheckIRId to ImportIRId.
- llvm::SmallVector<SemIR::ImportIRId> check_ir_map_;
- // Per-import constant values. These refer to the main IR and mainly serve as
- // a lookup table for quick access.
- //
- // Inline 0 elements because it's expected to require heap allocation.
- llvm::SmallVector<SemIR::ConstantValueStore, 0> import_ir_constant_values_;
- // Declaration instructions of entities that should have definitions by the
- // end of the current source file.
- llvm::SmallVector<SemIR::InstId> definitions_required_;
- // State for global initialization.
- GlobalInit global_init_;
- // A list of import refs which can't be inserted into their current context.
- // They're typically added during name lookup or import ref resolution, where
- // the current block on inst_block_stack_ is unrelated.
- //
- // These are instead added here because they're referenced by other
- // instructions and needs to be visible in textual IR.
- // FinalizeImportRefBlock() will produce an inst block for them.
- llvm::SmallVector<SemIR::InstId> import_ref_ids_;
- Map<SemIR::InstId, BindingPatternInfo> bind_name_map_;
- // Map from VarPattern insts to the corresponding VarStorage insts. The
- // VarStorage insts are allocated, emitted, and stored in the map after
- // processing the enclosing full-pattern.
- Map<SemIR::InstId, SemIR::InstId> var_storage_map_;
- // Stack of single-entry regions being built.
- RegionStack region_stack_;
- };
- } // namespace Carbon::Check
- #endif // CARBON_TOOLCHAIN_CHECK_CONTEXT_H_
|