| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421 |
- // 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 "llvm/ADT/DenseMap.h"
- #include "llvm/ADT/FoldingSet.h"
- #include "llvm/ADT/SmallVector.h"
- #include "toolchain/check/decl_name_stack.h"
- #include "toolchain/check/decl_state.h"
- #include "toolchain/check/diagnostic_helpers.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/scope_stack.h"
- #include "toolchain/parse/node_ids.h"
- #include "toolchain/parse/tree.h"
- #include "toolchain/sem_ir/file.h"
- #include "toolchain/sem_ir/ids.h"
- #include "toolchain/sem_ir/inst.h"
- namespace Carbon::Check {
- // Context and shared functionality for semantics handlers.
- class Context {
- public:
- using DiagnosticEmitter = Carbon::DiagnosticEmitter<SemIRLocation>;
- using DiagnosticBuilder = DiagnosticEmitter::DiagnosticBuilder;
- // Stores references for work.
- explicit Context(const Lex::TokenizedBuffer& tokens,
- DiagnosticEmitter& emitter, const Parse::Tree& parse_tree,
- SemIR::File& sem_ir, llvm::raw_ostream* vlog_stream);
- // Marks an implementation TODO. Always returns false.
- auto TODO(SemIRLocation 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::NodeIdAndInst node_id_and_inst) -> SemIR::InstId;
- // Adds an instruction in no block, returning the produced ID. Should be used
- // rarely.
- auto AddInstInNoBlock(SemIR::NodeIdAndInst node_id_and_inst) -> SemIR::InstId;
- // 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::NodeIdAndInst node_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::NodeIdAndInst node_id_and_inst)
- -> SemIR::InstId;
- // Adds an instruction to the constants block, returning the produced ID.
- auto AddConstant(SemIR::Inst inst, bool is_symbolic) -> SemIR::ConstantId;
- // Pushes a parse tree node onto the stack, storing the SemIR::Inst as the
- // result.
- auto AddInstAndPush(SemIR::NodeIdAndInst node_id_and_inst) -> void;
- // Replaces the value of the instruction `inst_id` with `node_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 ReplaceInstBeforeConstantUse(SemIR::InstId inst_id,
- SemIR::NodeIdAndInst node_id_and_inst)
- -> void;
- // Adds an import_ref instruction for the specified instruction in the
- // specified IR. The import_ref is initially marked as unused.
- auto AddImportRef(SemIR::ImportIRId ir_id, SemIR::InstId inst_id)
- -> SemIR::InstId;
- // 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().SetNodeId(inst_id, node_id);
- }
- // Adds a name to name lookup. Prints a diagnostic for name conflicts.
- auto AddNameToLookup(SemIR::NameId name_id, SemIR::InstId target_id) -> void;
- // Performs name lookup in a specified scope for a name appearing in a
- // declaration, returning the referenced instruction. If scope_id is invalid,
- // uses the current contextual scope.
- auto LookupNameInDecl(Parse::NodeId node_id, SemIR::NameId name_id,
- SemIR::NameScopeId scope_id) -> SemIR::InstId;
- // Performs an unqualified name lookup, returning the referenced instruction.
- auto LookupUnqualifiedName(Parse::NodeId node_id, SemIR::NameId name_id)
- -> SemIR::InstId;
- // Performs a name lookup in a specified scope, returning the referenced
- // instruction. Does not look into extended scopes. Returns an invalid
- // instruction if the name is not found.
- auto LookupNameInExactScope(SemIRLocation loc, SemIR::NameId name_id,
- const SemIR::NameScope& scope) -> SemIR::InstId;
- // Performs a qualified name lookup in a specified scope and in scopes that
- // it extends, returning the referenced instruction.
- auto LookupQualifiedName(Parse::NodeId node_id, SemIR::NameId name_id,
- SemIR::NameScopeId scope_id, bool required = true)
- -> SemIR::InstId;
- // Prints a diagnostic for a duplicate name.
- auto DiagnoseDuplicateName(SemIRLocation dup_def, SemIRLocation prev_def)
- -> void;
- // Prints a diagnostic for a missing name.
- auto DiagnoseNameNotFound(Parse::NodeId node_id, SemIR::NameId name_id)
- -> 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 an interface is not defined.
- auto NoteUndefinedInterface(SemIR::InterfaceId interface_id,
- DiagnosticBuilder& builder) -> void;
- // Returns the current scope, if it is of the specified kind. Otherwise,
- // returns nullopt.
- template <typename InstT>
- auto GetCurrentScopeAs() -> std::optional<InstT> {
- return scope_stack().GetCurrentScopeAs<InstT>(sem_ir());
- }
- // Adds a `Branch` instruction branching to a new instruction block, and
- // returns the ID of the new block. All paths to the branch target must go
- // through the current block, though not necessarily through this branch.
- auto AddDominatedBlockAndBranch(Parse::NodeId node_id) -> SemIR::InstBlockId;
- // Adds a `Branch` instruction branching to a new instruction block with a
- // value, and returns the ID of the new block. All paths to the branch target
- // must go through the current block.
- auto AddDominatedBlockAndBranchWithArg(Parse::NodeId node_id,
- SemIR::InstId arg_id)
- -> SemIR::InstBlockId;
- // Adds a `BranchIf` instruction branching to a new instruction block, and
- // returns the ID of the new block. All paths to the branch target must go
- // through the current block.
- auto AddDominatedBlockAndBranchIf(Parse::NodeId node_id,
- SemIR::InstId cond_id)
- -> SemIR::InstBlockId;
- // Handles recovergence of control flow. Adds branches from the top
- // `num_blocks` on the instruction block stack to a new block, pops the
- // existing blocks, and pushes the new block onto the instruction block stack.
- auto AddConvergenceBlockAndPush(Parse::NodeId node_id, int num_blocks)
- -> void;
- // Handles recovergence of control flow with a result value. Adds branches
- // from the top few blocks on the instruction block stack to a new block, pops
- // the existing blocks, and pushes the new block onto the instruction block
- // stack. The number of blocks popped is the size of `block_args`, and the
- // corresponding result values are the elements of `block_args`. Returns an
- // instruction referring to the result value.
- auto AddConvergenceBlockWithArgAndPush(
- Parse::NodeId node_id, std::initializer_list<SemIR::InstId> block_args)
- -> SemIR::InstId;
- // Add the current code block to the enclosing function.
- // TODO: The node_id is taken for expressions, which can occur in
- // non-function contexts. This should be refactored to support non-function
- // contexts, and node_id removed.
- auto AddCurrentCodeBlockToFunction(
- Parse::NodeId node_id = Parse::NodeId::Invalid) -> void;
- // Returns whether the current position in the current block is reachable.
- auto is_current_position_reachable() -> bool;
- // Returns the type ID for a constant of type `type`.
- auto GetTypeIdForTypeConstant(SemIR::ConstantId constant_id) -> SemIR::TypeId;
- // Returns the type ID for an instruction whose constant value is of type
- // `type`.
- auto GetTypeIdForTypeInst(SemIR::InstId inst_id) -> SemIR::TypeId {
- return GetTypeIdForTypeConstant(constant_values().Get(inst_id));
- }
- // Attempts to complete the type `type_id`. Returns `true` if the type is
- // complete, or `false` if it could not be completed. A complete type has
- // known object and value representations.
- //
- // If the type is not complete, `diagnoser` is invoked to diagnose the issue,
- // if a `diagnoser` is provided. The builder it returns will be annotated to
- // describe the reason why the type is not complete.
- auto TryToCompleteType(
- SemIR::TypeId type_id,
- std::optional<llvm::function_ref<auto()->DiagnosticBuilder>> diagnoser =
- std::nullopt) -> bool;
- // Returns the type `type_id` as a complete type, or produces an incomplete
- // type error and returns an error type. This is a convenience wrapper around
- // TryToCompleteType.
- auto AsCompleteType(SemIR::TypeId type_id,
- llvm::function_ref<auto()->DiagnosticBuilder> diagnoser)
- -> SemIR::TypeId {
- return TryToCompleteType(type_id, diagnoser) ? type_id
- : SemIR::TypeId::Error;
- }
- // TODO: Consider moving these `Get*Type` functions to a separate class.
- // Gets the type for the name of an associated entity.
- auto GetAssociatedEntityType(SemIR::InterfaceId interface_id,
- SemIR::TypeId entity_type_id) -> SemIR::TypeId;
- // Gets a builtin type. The returned type will be complete.
- auto GetBuiltinType(SemIR::BuiltinKind kind) -> 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, which should be a block of
- // `StructTypeField`s.
- auto GetStructType(SemIR::InstBlockId refs_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;
- // Removes any top-level `const` qualifiers from a type.
- auto GetUnqualifiedType(SemIR::TypeId type_id) -> SemIR::TypeId;
- // Adds an exported name.
- auto AddExport(SemIR::InstId inst_id) -> void { exports_.push_back(inst_id); }
- // Finalizes the list of exports on the IR.
- auto FinalizeExports() -> void {
- inst_blocks().Set(SemIR::InstBlockId::Exports, exports_);
- }
- // Finalizes the initialization function (__global_init).
- auto FinalizeGlobalInit() -> void;
- // Prints information for a stack dump.
- auto PrintForStackDump(llvm::raw_ostream& output) 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 tokens() -> const Lex::TokenizedBuffer& { return *tokens_; }
- auto emitter() -> DiagnosticEmitter& { return *emitter_; }
- auto parse_tree() -> const Parse::Tree& { return *parse_tree_; }
- auto sem_ir() -> SemIR::File& { return *sem_ir_; }
- auto node_stack() -> NodeStack& { return node_stack_; }
- auto inst_block_stack() -> InstBlockStack& { return inst_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 decl_name_stack() -> DeclNameStack& { return decl_name_stack_; }
- auto decl_state_stack() -> DeclStateStack& { return decl_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 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() -> StringStoreWrapper<IdentifierId>& {
- return sem_ir().identifiers();
- }
- auto ints() -> ValueStore<IntId>& { return sem_ir().ints(); }
- auto reals() -> ValueStore<RealId>& { return sem_ir().reals(); }
- auto string_literal_values() -> StringStoreWrapper<StringLiteralValueId>& {
- return sem_ir().string_literal_values();
- }
- auto bind_names() -> ValueStore<SemIR::BindNameId>& {
- return sem_ir().bind_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 impls() -> SemIR::ImplStore& { return sem_ir().impls(); }
- auto import_irs() -> ValueStore<SemIR::ImportIRId>& {
- return sem_ir().import_irs();
- }
- auto names() -> SemIR::NameStoreWrapper { return sem_ir().names(); }
- auto name_scopes() -> SemIR::NameScopeStore& {
- return sem_ir().name_scopes();
- }
- 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(); }
- 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_;
- };
- // Tokens for getting data on literals.
- const Lex::TokenizedBuffer* tokens_;
- // Handles diagnostics.
- DiagnosticEmitter* emitter_;
- // The file's parse tree.
- const Parse::Tree* parse_tree_;
- // 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 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 used for qualified declaration name construction.
- DeclNameStack decl_name_stack_;
- // The stack of declarations that could have modifiers.
- DeclStateStack decl_state_stack_;
- // The stack of scopes we are currently within.
- ScopeStack scope_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`?
- llvm::DenseMap<SemIR::ConstantId, SemIR::TypeId> type_ids_for_type_constants_;
- // The list which will form NodeBlockId::Exports.
- llvm::SmallVector<SemIR::InstId> exports_;
- // 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_;
- };
- } // namespace Carbon::Check
- #endif // CARBON_TOOLCHAIN_CHECK_CONTEXT_H_
|