| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404 |
- // 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_SEM_IR_FILE_H_
- #define CARBON_TOOLCHAIN_SEM_IR_FILE_H_
- #include "llvm/ADT/SmallVector.h"
- #include "llvm/ADT/iterator_range.h"
- #include "llvm/Support/Allocator.h"
- #include "llvm/Support/FormatVariadic.h"
- #include "toolchain/base/value_store.h"
- #include "toolchain/base/yaml.h"
- #include "toolchain/sem_ir/ids.h"
- #include "toolchain/sem_ir/type_info.h"
- #include "toolchain/sem_ir/value_stores.h"
- namespace Carbon::SemIR {
- // A function.
- struct Function : public Printable<Function> {
- auto Print(llvm::raw_ostream& out) const -> void {
- out << "{name: " << name_id << ", "
- << "param_refs: " << param_refs_id;
- if (return_type_id.is_valid()) {
- out << ", return_type: " << return_type_id;
- }
- if (return_slot_id.is_valid()) {
- out << ", return_slot: " << return_slot_id;
- }
- if (!body_block_ids.empty()) {
- out << llvm::formatv(
- ", body: [{0}]",
- llvm::make_range(body_block_ids.begin(), body_block_ids.end()));
- }
- out << "}";
- }
- // The function name.
- NameId name_id;
- // The first declaration of the function. This is a FunctionDecl.
- InstId decl_id = InstId::Invalid;
- // The definition, if the function has been defined or is currently being
- // defined. This is a FunctionDecl.
- InstId definition_id = InstId::Invalid;
- // A block containing a single reference instruction per implicit parameter.
- InstBlockId implicit_param_refs_id;
- // A block containing a single reference instruction per parameter.
- InstBlockId param_refs_id;
- // The return type. This will be invalid if the return type wasn't specified.
- TypeId return_type_id;
- // The storage for the return value, which is a reference expression whose
- // type is the return type of the function. Will be invalid if the function
- // doesn't have a return slot. If this is valid, a call to the function is
- // expected to have an additional final argument corresponding to the return
- // slot.
- InstId return_slot_id;
- // A list of the statically reachable code blocks in the body of the
- // function, in lexical order. The first block is the entry block. This will
- // be empty for declarations that don't have a visible definition.
- llvm::SmallVector<InstBlockId> body_block_ids = {};
- };
- // A class.
- struct Class : public Printable<Class> {
- enum InheritanceKind : int8_t {
- // `abstract class`
- Abstract,
- // `base class`
- Base,
- // `class`
- Final,
- };
- auto Print(llvm::raw_ostream& out) const -> void {
- out << "{name: " << name_id;
- out << "}";
- }
- // Determines whether this class has been fully defined. This is false until
- // we reach the `}` of the class definition.
- auto is_defined() const -> bool { return object_repr_id.is_valid(); }
- // The following members always have values, and do not change throughout the
- // lifetime of the class.
- // The class name.
- NameId name_id;
- // The class type, which is the type of `Self` in the class definition.
- TypeId self_type_id;
- // The first declaration of the class. This is a ClassDecl.
- InstId decl_id = InstId::Invalid;
- // The kind of inheritance that this class supports.
- // TODO: The rules here are not yet decided. See #3384.
- InheritanceKind inheritance_kind;
- // The following members are set at the `{` of the class definition.
- // The definition of the class. This is a ClassDecl.
- InstId definition_id = InstId::Invalid;
- // The class scope.
- NameScopeId scope_id = NameScopeId::Invalid;
- // The first block of the class body.
- // TODO: Handle control flow in the class body, such as if-expressions.
- InstBlockId body_block_id = InstBlockId::Invalid;
- // The following members are accumulated throughout the class definition.
- // The base class declaration. Invalid if the class has no base class. This is
- // a BaseDecl instruction.
- InstId base_id = InstId::Invalid;
- // The following members are set at the `}` of the class definition.
- // The object representation type to use for this class. This is valid once
- // the class is defined.
- TypeId object_repr_id = TypeId::Invalid;
- };
- // An interface.
- struct Interface : public Printable<Interface> {
- auto Print(llvm::raw_ostream& out) const -> void {
- out << "{name: " << name_id;
- out << "}";
- }
- // Determines whether this interface has been fully defined. This is false
- // until we reach the `}` of the interface definition.
- auto is_defined() const -> bool { return defined; }
- // The following members always have values, and do not change throughout the
- // lifetime of the interface.
- // The interface name.
- NameId name_id;
- // TODO: TypeId self_type_id;
- // The first declaration of the interface. This is a InterfaceDecl.
- InstId decl_id = InstId::Invalid;
- // The following members are set at the `{` of the interface definition.
- // The definition of the interface. This is a InterfaceDecl.
- InstId definition_id = InstId::Invalid;
- // The interface scope.
- NameScopeId scope_id = NameScopeId::Invalid;
- // The first block of the interface body.
- // TODO: Handle control flow in the interface body, such as if-expressions.
- InstBlockId body_block_id = InstBlockId::Invalid;
- // The following members are set at the `}` of the class definition.
- bool defined = true;
- };
- // Provides semantic analysis on a Parse::Tree.
- class File : public Printable<File> {
- public:
- // Produces a file for the builtins.
- explicit File(SharedValueStores& value_stores);
- // Starts a new file for Check::CheckParseTree. Builtins are required.
- explicit File(SharedValueStores& value_stores, std::string filename,
- const File* builtins);
- File(const File&) = delete;
- File& operator=(const File&) = delete;
- // Verifies that invariants of the semantics IR hold.
- auto Verify() const -> ErrorOr<Success>;
- // Prints the full IR. Allow omitting builtins so that unrelated changes are
- // less likely to alter test golden files.
- // TODO: In the future, the things to print may change, for example by adding
- // preludes. We may then want the ability to omit other things similar to
- // builtins.
- auto Print(llvm::raw_ostream& out, bool include_builtins = false) const
- -> void {
- Yaml::Print(out, OutputYaml(include_builtins));
- }
- auto OutputYaml(bool include_builtins) const -> Yaml::OutputMapping;
- // Returns array bound value from the bound instruction.
- auto GetArrayBoundValue(InstId bound_id) const -> uint64_t {
- return ints()
- .Get(insts().GetAs<IntLiteral>(bound_id).int_id)
- .getZExtValue();
- }
- // Marks a type as complete, and sets its value representation.
- auto CompleteType(TypeId object_type_id, ValueRepr value_repr) -> void {
- if (object_type_id.index < 0) {
- // We already know our builtin types are complete.
- return;
- }
- CARBON_CHECK(types().Get(object_type_id).value_repr.kind ==
- ValueRepr::Unknown)
- << "Type " << object_type_id << " completed more than once";
- types().Get(object_type_id).value_repr = value_repr;
- complete_types_.push_back(object_type_id);
- }
- // Gets the pointee type of the given type, which must be a pointer type.
- auto GetPointeeType(TypeId pointer_id) const -> TypeId {
- return types().GetAs<PointerType>(pointer_id).pointee_id;
- }
- // Produces a string version of a type.
- auto StringifyType(TypeId type_id) const -> std::string;
- // Same as `StringifyType`, but starting with an instruction representing a
- // type expression rather than a canonical type.
- auto StringifyTypeExpr(InstId outer_inst_id) const -> std::string;
- // Directly expose SharedValueStores members.
- auto identifiers() -> StringStoreWrapper<IdentifierId>& {
- return value_stores_->identifiers();
- }
- auto identifiers() const -> const StringStoreWrapper<IdentifierId>& {
- return value_stores_->identifiers();
- }
- auto ints() -> ValueStore<IntId>& { return value_stores_->ints(); }
- auto ints() const -> const ValueStore<IntId>& {
- return value_stores_->ints();
- }
- auto reals() -> ValueStore<RealId>& { return value_stores_->reals(); }
- auto reals() const -> const ValueStore<RealId>& {
- return value_stores_->reals();
- }
- auto string_literals() -> StringStoreWrapper<StringLiteralId>& {
- return value_stores_->string_literals();
- }
- auto string_literals() const -> const StringStoreWrapper<StringLiteralId>& {
- return value_stores_->string_literals();
- }
- auto functions() -> ValueStore<FunctionId>& { return functions_; }
- auto functions() const -> const ValueStore<FunctionId>& { return functions_; }
- auto classes() -> ValueStore<ClassId>& { return classes_; }
- auto classes() const -> const ValueStore<ClassId>& { return classes_; }
- auto interfaces() -> ValueStore<InterfaceId>& { return interfaces_; }
- auto interfaces() const -> const ValueStore<InterfaceId>& {
- return interfaces_;
- }
- auto cross_ref_irs() -> ValueStore<CrossRefIRId>& { return cross_ref_irs_; }
- auto cross_ref_irs() const -> const ValueStore<CrossRefIRId>& {
- return cross_ref_irs_;
- }
- auto names() const -> NameStoreWrapper {
- return NameStoreWrapper(&identifiers());
- }
- auto name_scopes() -> NameScopeStore& { return name_scopes_; }
- auto name_scopes() const -> const NameScopeStore& { return name_scopes_; }
- auto types() -> TypeStore& { return types_; }
- auto types() const -> const TypeStore& { return types_; }
- auto type_blocks() -> BlockValueStore<TypeBlockId>& { return type_blocks_; }
- auto type_blocks() const -> const BlockValueStore<TypeBlockId>& {
- return type_blocks_;
- }
- auto insts() -> InstStore& { return insts_; }
- auto insts() const -> const InstStore& { return insts_; }
- auto inst_blocks() -> InstBlockStore& { return inst_blocks_; }
- auto inst_blocks() const -> const InstBlockStore& { return inst_blocks_; }
- auto constants() -> ConstantStore& { return constants_; }
- auto constants() const -> const ConstantStore& { return constants_; }
- // A list of types that were completed in this file, in the order in which
- // they were completed. Earlier types in this list cannot contain instances of
- // later types.
- auto complete_types() const -> llvm::ArrayRef<TypeId> {
- return complete_types_;
- }
- auto top_inst_block_id() const -> InstBlockId { return top_inst_block_id_; }
- auto set_top_inst_block_id(InstBlockId block_id) -> void {
- top_inst_block_id_ = block_id;
- }
- // Returns true if there were errors creating the semantics IR.
- auto has_errors() const -> bool { return has_errors_; }
- auto set_has_errors(bool has_errors) -> void { has_errors_ = has_errors; }
- auto filename() const -> llvm::StringRef { return filename_; }
- private:
- bool has_errors_ = false;
- // Shared, compile-scoped values.
- SharedValueStores* value_stores_;
- // Slab allocator, used to allocate instruction and type blocks.
- llvm::BumpPtrAllocator allocator_;
- // The associated filename.
- // TODO: If SemIR starts linking back to tokens, reuse its filename.
- std::string filename_;
- // Storage for callable objects.
- ValueStore<FunctionId> functions_;
- // Storage for classes.
- ValueStore<ClassId> classes_;
- // Storage for interfaces.
- ValueStore<InterfaceId> interfaces_;
- // Related IRs. There will always be at least 2 entries, the builtin IR (used
- // for references of builtins) followed by the current IR (used for references
- // crossing instruction blocks).
- ValueStore<CrossRefIRId> cross_ref_irs_;
- // Storage for name scopes.
- NameScopeStore name_scopes_;
- // Type blocks within the IR. These reference entries in types_. Storage for
- // the data is provided by allocator_.
- BlockValueStore<TypeBlockId> type_blocks_;
- // All instructions. The first entries will always be cross-references to
- // builtins, at indices matching BuiltinKind ordering.
- InstStore insts_;
- // Instruction blocks within the IR. These reference entries in
- // insts_. Storage for the data is provided by allocator_.
- InstBlockStore inst_blocks_;
- // The top instruction block ID.
- InstBlockId top_inst_block_id_ = InstBlockId::Invalid;
- // Storage for instructions that represent computed global constants, such as
- // types.
- ConstantStore constants_;
- // Descriptions of types used in this file.
- TypeStore types_ = TypeStore(&insts_);
- // Types that were completed in this file.
- llvm::SmallVector<TypeId> complete_types_;
- };
- // The expression category of a sem_ir instruction. See /docs/design/values.md
- // for details.
- enum class ExprCategory : int8_t {
- // This instruction does not correspond to an expression, and as such has no
- // category.
- NotExpr,
- // The category of this instruction is not known due to an error.
- Error,
- // This instruction represents a value expression.
- Value,
- // This instruction represents a durable reference expression, that denotes an
- // object that outlives the current full expression context.
- DurableRef,
- // This instruction represents an ephemeral reference expression, that denotes
- // an
- // object that does not outlive the current full expression context.
- EphemeralRef,
- // This instruction represents an initializing expression, that describes how
- // to
- // initialize an object.
- Initializing,
- // This instruction represents a syntactic combination of expressions that are
- // permitted to have different expression categories. This is used for tuple
- // and struct literals, where the subexpressions for different elements can
- // have different categories.
- Mixed,
- Last = Mixed
- };
- // Returns the expression category for an instruction.
- auto GetExprCategory(const File& file, InstId inst_id) -> ExprCategory;
- // Returns information about the value representation to use for a type.
- inline auto GetValueRepr(const File& file, TypeId type_id) -> ValueRepr {
- return file.types().GetValueRepr(type_id);
- }
- // The initializing representation to use when returning by value.
- struct InitRepr {
- enum Kind : int8_t {
- // The type has no initializing representation. This is used for empty
- // types, where no initialization is necessary.
- None,
- // An initializing expression produces an object representation by value,
- // which is copied into the initialized object.
- ByCopy,
- // An initializing expression takes a location as input, which is
- // initialized as a side effect of evaluating the expression.
- InPlace,
- // TODO: Consider adding a kind where the expression takes an advisory
- // location and returns a value plus an indicator of whether the location
- // was actually initialized.
- };
- // The kind of initializing representation used by this type.
- Kind kind;
- // Returns whether a return slot is used when returning this type.
- auto has_return_slot() const -> bool { return kind == InPlace; }
- };
- // Returns information about the initializing representation to use for a type.
- auto GetInitRepr(const File& file, TypeId type_id) -> InitRepr;
- } // namespace Carbon::SemIR
- #endif // CARBON_TOOLCHAIN_SEM_IR_FILE_H_
|