| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210 |
- // 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_EXPLORER_INTERPRETER_VALUE_H_
- #define CARBON_EXPLORER_INTERPRETER_VALUE_H_
- #include <optional>
- #include <string>
- #include <variant>
- #include <vector>
- #include "common/ostream.h"
- #include "explorer/ast/bindings.h"
- #include "explorer/ast/declaration.h"
- #include "explorer/ast/member.h"
- #include "explorer/ast/statement.h"
- #include "explorer/common/nonnull.h"
- #include "explorer/interpreter/address.h"
- #include "explorer/interpreter/field_path.h"
- #include "explorer/interpreter/stack.h"
- #include "llvm/Support/Compiler.h"
- namespace Carbon {
- class Action;
- class ImplScope;
- // Abstract base class of all AST nodes representing values.
- //
- // Value and its derived classes support LLVM-style RTTI, including
- // llvm::isa, llvm::cast, and llvm::dyn_cast. To support this, every
- // class derived from Value must provide a `classof` operation, and
- // every concrete derived class must have a corresponding enumerator
- // in `Kind`; see https://llvm.org/docs/HowToSetUpLLVMStyleRTTI.html for
- // details.
- class Value {
- public:
- enum class Kind {
- IntValue,
- FunctionValue,
- BoundMethodValue,
- PointerValue,
- LValue,
- BoolValue,
- StructValue,
- NominalClassValue,
- AlternativeValue,
- TupleValue,
- UninitializedValue,
- ImplWitness,
- SymbolicWitness,
- IntType,
- BoolType,
- TypeType,
- FunctionType,
- PointerType,
- AutoType,
- StructType,
- NominalClassType,
- InterfaceType,
- ConstraintType,
- ChoiceType,
- ContinuationType, // The type of a continuation.
- VariableType, // e.g., generic type parameters.
- AssociatedConstant,
- ParameterizedEntityName,
- MemberName,
- BindingPlaceholderValue,
- AddrValue,
- AlternativeConstructorValue,
- ContinuationValue, // A first-class continuation value.
- StringType,
- StringValue,
- TypeOfClassType,
- TypeOfInterfaceType,
- TypeOfConstraintType,
- TypeOfChoiceType,
- TypeOfParameterizedEntityName,
- TypeOfMemberName,
- StaticArrayType,
- };
- Value(const Value&) = delete;
- auto operator=(const Value&) -> Value& = delete;
- void Print(llvm::raw_ostream& out) const;
- LLVM_DUMP_METHOD void Dump() const { Print(llvm::errs()); }
- // Returns the sub-Value specified by `path`, which must be a valid field
- // path for *this. If the sub-Value is a method and its me_pattern is an
- // AddrPattern, then pass the LValue representing the receiver as `me_value`,
- // otherwise pass `*this`.
- auto GetMember(Nonnull<Arena*> arena, const FieldPath& path,
- SourceLocation source_loc,
- Nonnull<const Value*> me_value) const
- -> ErrorOr<Nonnull<const Value*>>;
- // Returns a copy of *this, but with the sub-Value specified by `path`
- // set to `field_value`. `path` must be a valid field path for *this.
- auto SetField(Nonnull<Arena*> arena, const FieldPath& path,
- Nonnull<const Value*> field_value,
- SourceLocation source_loc) const
- -> ErrorOr<Nonnull<const Value*>>;
- // Returns the enumerator corresponding to the most-derived type of this
- // object.
- auto kind() const -> Kind { return kind_; }
- protected:
- // Constructs a Value. `kind` must be the enumerator corresponding to the
- // most-derived type being constructed.
- explicit Value(Kind kind) : kind_(kind) {}
- private:
- const Kind kind_;
- };
- // Base class for types holding contextual information by which we can
- // determine whether values are equal.
- class EqualityContext {
- public:
- virtual auto VisitEqualValues(
- Nonnull<const Value*> value,
- llvm::function_ref<bool(Nonnull<const Value*>)> visitor) const
- -> bool = 0;
- protected:
- virtual ~EqualityContext() = default;
- };
- auto TypeEqual(Nonnull<const Value*> t1, Nonnull<const Value*> t2,
- std::optional<Nonnull<const EqualityContext*>> equality_ctx)
- -> bool;
- auto ValueEqual(Nonnull<const Value*> v1, Nonnull<const Value*> v2,
- std::optional<Nonnull<const EqualityContext*>> equality_ctx)
- -> bool;
- // An integer value.
- class IntValue : public Value {
- public:
- explicit IntValue(int value) : Value(Kind::IntValue), value_(value) {}
- static auto classof(const Value* value) -> bool {
- return value->kind() == Kind::IntValue;
- }
- auto value() const -> int { return value_; }
- private:
- int value_;
- };
- // A function value.
- class FunctionValue : public Value {
- public:
- explicit FunctionValue(Nonnull<const FunctionDeclaration*> declaration)
- : Value(Kind::FunctionValue), declaration_(declaration) {}
- explicit FunctionValue(Nonnull<const FunctionDeclaration*> declaration,
- Nonnull<const Bindings*> bindings)
- : Value(Kind::FunctionValue),
- declaration_(declaration),
- bindings_(bindings) {}
- static auto classof(const Value* value) -> bool {
- return value->kind() == Kind::FunctionValue;
- }
- auto declaration() const -> const FunctionDeclaration& {
- return *declaration_;
- }
- auto bindings() const -> const Bindings& { return *bindings_; }
- auto type_args() const -> const BindingMap& { return bindings_->args(); }
- auto witnesses() const -> const ImplWitnessMap& {
- return bindings_->witnesses();
- }
- private:
- Nonnull<const FunctionDeclaration*> declaration_;
- Nonnull<const Bindings*> bindings_ = Bindings::None();
- };
- // A bound method value. It includes the receiver object.
- class BoundMethodValue : public Value {
- public:
- explicit BoundMethodValue(Nonnull<const FunctionDeclaration*> declaration,
- Nonnull<const Value*> receiver)
- : Value(Kind::BoundMethodValue),
- declaration_(declaration),
- receiver_(receiver) {}
- explicit BoundMethodValue(Nonnull<const FunctionDeclaration*> declaration,
- Nonnull<const Value*> receiver,
- Nonnull<const Bindings*> bindings)
- : Value(Kind::BoundMethodValue),
- declaration_(declaration),
- receiver_(receiver),
- bindings_(bindings) {}
- static auto classof(const Value* value) -> bool {
- return value->kind() == Kind::BoundMethodValue;
- }
- auto declaration() const -> const FunctionDeclaration& {
- return *declaration_;
- }
- auto receiver() const -> Nonnull<const Value*> { return receiver_; }
- auto bindings() const -> const Bindings& { return *bindings_; }
- auto type_args() const -> const BindingMap& { return bindings_->args(); }
- auto witnesses() const -> const ImplWitnessMap& {
- return bindings_->witnesses();
- }
- private:
- Nonnull<const FunctionDeclaration*> declaration_;
- Nonnull<const Value*> receiver_;
- Nonnull<const Bindings*> bindings_ = Bindings::None();
- };
- // The value of a location in memory.
- class LValue : public Value {
- public:
- explicit LValue(Address value)
- : Value(Kind::LValue), value_(std::move(value)) {}
- static auto classof(const Value* value) -> bool {
- return value->kind() == Kind::LValue;
- }
- auto address() const -> const Address& { return value_; }
- private:
- Address value_;
- };
- // A pointer value
- class PointerValue : public Value {
- public:
- explicit PointerValue(Address value)
- : Value(Kind::PointerValue), value_(std::move(value)) {}
- static auto classof(const Value* value) -> bool {
- return value->kind() == Kind::PointerValue;
- }
- auto address() const -> const Address& { return value_; }
- private:
- Address value_;
- };
- // A bool value.
- class BoolValue : public Value {
- public:
- explicit BoolValue(bool value) : Value(Kind::BoolValue), value_(value) {}
- static auto classof(const Value* value) -> bool {
- return value->kind() == Kind::BoolValue;
- }
- auto value() const -> bool { return value_; }
- private:
- bool value_;
- };
- // A non-empty value of a struct type.
- //
- // It can't be empty because `{}` is a struct type as well as a value of that
- // type, so for consistency we always represent it as a StructType rather than
- // let it oscillate unpredictably between the two. However, this means code
- // that handles StructValue instances may also need to be able to handle
- // StructType instances.
- class StructValue : public Value {
- public:
- explicit StructValue(std::vector<NamedValue> elements)
- : Value(Kind::StructValue), elements_(std::move(elements)) {
- CARBON_CHECK(!elements_.empty())
- << "`{}` is represented as a StructType, not a StructValue.";
- }
- static auto classof(const Value* value) -> bool {
- return value->kind() == Kind::StructValue;
- }
- auto elements() const -> llvm::ArrayRef<NamedValue> { return elements_; }
- // Returns the value of the field named `name` in this struct, or
- // nullopt if there is no such field.
- auto FindField(std::string_view name) const
- -> std::optional<Nonnull<const Value*>>;
- private:
- std::vector<NamedValue> elements_;
- };
- // A value of a nominal class type, i.e., an object.
- class NominalClassValue : public Value {
- public:
- NominalClassValue(Nonnull<const Value*> type, Nonnull<const Value*> inits)
- : Value(Kind::NominalClassValue), type_(type), inits_(inits) {}
- static auto classof(const Value* value) -> bool {
- return value->kind() == Kind::NominalClassValue;
- }
- auto type() const -> const Value& { return *type_; }
- auto inits() const -> const Value& { return *inits_; }
- private:
- Nonnull<const Value*> type_;
- Nonnull<const Value*> inits_; // The initializing StructValue.
- };
- // An alternative constructor value.
- class AlternativeConstructorValue : public Value {
- public:
- AlternativeConstructorValue(std::string_view alt_name,
- std::string_view choice_name)
- : Value(Kind::AlternativeConstructorValue),
- alt_name_(std::move(alt_name)),
- choice_name_(std::move(choice_name)) {}
- static auto classof(const Value* value) -> bool {
- return value->kind() == Kind::AlternativeConstructorValue;
- }
- auto alt_name() const -> const std::string& { return alt_name_; }
- auto choice_name() const -> const std::string& { return choice_name_; }
- private:
- std::string alt_name_;
- std::string choice_name_;
- };
- // An alternative value.
- class AlternativeValue : public Value {
- public:
- AlternativeValue(std::string_view alt_name, std::string_view choice_name,
- Nonnull<const Value*> argument)
- : Value(Kind::AlternativeValue),
- alt_name_(std::move(alt_name)),
- choice_name_(std::move(choice_name)),
- argument_(argument) {}
- static auto classof(const Value* value) -> bool {
- return value->kind() == Kind::AlternativeValue;
- }
- auto alt_name() const -> const std::string& { return alt_name_; }
- auto choice_name() const -> const std::string& { return choice_name_; }
- auto argument() const -> const Value& { return *argument_; }
- private:
- std::string alt_name_;
- std::string choice_name_;
- Nonnull<const Value*> argument_;
- };
- // A tuple value.
- class TupleValue : public Value {
- public:
- // An empty tuple, also known as the unit type.
- static auto Empty() -> Nonnull<const TupleValue*> {
- static const TupleValue empty =
- TupleValue(std::vector<Nonnull<const Value*>>());
- return Nonnull<const TupleValue*>(&empty);
- }
- explicit TupleValue(std::vector<Nonnull<const Value*>> elements)
- : Value(Kind::TupleValue), elements_(std::move(elements)) {}
- static auto classof(const Value* value) -> bool {
- return value->kind() == Kind::TupleValue;
- }
- auto elements() const -> llvm::ArrayRef<Nonnull<const Value*>> {
- return elements_;
- }
- private:
- std::vector<Nonnull<const Value*>> elements_;
- };
- // A binding placeholder value.
- class BindingPlaceholderValue : public Value {
- public:
- // Represents the `_` placeholder.
- explicit BindingPlaceholderValue() : Value(Kind::BindingPlaceholderValue) {}
- // Represents a named placeholder.
- explicit BindingPlaceholderValue(ValueNodeView value_node)
- : Value(Kind::BindingPlaceholderValue),
- value_node_(std::move(value_node)) {}
- static auto classof(const Value* value) -> bool {
- return value->kind() == Kind::BindingPlaceholderValue;
- }
- auto value_node() const -> const std::optional<ValueNodeView>& {
- return value_node_;
- }
- private:
- std::optional<ValueNodeView> value_node_;
- };
- // Value for addr pattern
- class AddrValue : public Value {
- public:
- explicit AddrValue(Nonnull<const Value*> pattern)
- : Value(Kind::AddrValue), pattern_(pattern) {}
- static auto classof(const Value* value) -> bool {
- return value->kind() == Kind::AddrValue;
- }
- auto pattern() const -> const Value& { return *pattern_; }
- private:
- Nonnull<const Value*> pattern_;
- };
- // Value for uninitialized local variables.
- class UninitializedValue : public Value {
- public:
- explicit UninitializedValue(Nonnull<const Value*> pattern)
- : Value(Kind::UninitializedValue), pattern_(pattern) {}
- static auto classof(const Value* value) -> bool {
- return value->kind() == Kind::UninitializedValue;
- }
- auto pattern() const -> const Value& { return *pattern_; }
- private:
- Nonnull<const Value*> pattern_;
- };
- // The int type.
- class IntType : public Value {
- public:
- IntType() : Value(Kind::IntType) {}
- static auto classof(const Value* value) -> bool {
- return value->kind() == Kind::IntType;
- }
- };
- // The bool type.
- class BoolType : public Value {
- public:
- BoolType() : Value(Kind::BoolType) {}
- static auto classof(const Value* value) -> bool {
- return value->kind() == Kind::BoolType;
- }
- };
- // A type type.
- class TypeType : public Value {
- public:
- TypeType() : Value(Kind::TypeType) {}
- static auto classof(const Value* value) -> bool {
- return value->kind() == Kind::TypeType;
- }
- };
- // A function type.
- class FunctionType : public Value {
- public:
- // An explicit function parameter that is a `:!` binding:
- //
- // fn MakeEmptyVector(T:! Type) -> Vector(T);
- struct GenericParameter {
- size_t index;
- Nonnull<const GenericBinding*> binding;
- };
- FunctionType(Nonnull<const Value*> parameters,
- llvm::ArrayRef<GenericParameter> generic_parameters,
- Nonnull<const Value*> return_type,
- llvm::ArrayRef<Nonnull<const GenericBinding*>> deduced_bindings,
- llvm::ArrayRef<Nonnull<const ImplBinding*>> impl_bindings)
- : Value(Kind::FunctionType),
- parameters_(parameters),
- generic_parameters_(generic_parameters),
- return_type_(return_type),
- deduced_bindings_(deduced_bindings),
- impl_bindings_(impl_bindings) {}
- static auto classof(const Value* value) -> bool {
- return value->kind() == Kind::FunctionType;
- }
- // The type of the function parameter tuple.
- auto parameters() const -> const Value& { return *parameters_; }
- // Parameters that use a generic `:!` binding at the top level.
- auto generic_parameters() const -> llvm::ArrayRef<GenericParameter> {
- return generic_parameters_;
- }
- // The function return type.
- auto return_type() const -> const Value& { return *return_type_; }
- // All generic bindings in this function's signature that should be deduced
- // in a call. This excludes any generic parameters.
- auto deduced_bindings() const
- -> llvm::ArrayRef<Nonnull<const GenericBinding*>> {
- return deduced_bindings_;
- }
- // The bindings for the witness tables (impls) required by the
- // bounds on the type parameters of the generic function.
- auto impl_bindings() const -> llvm::ArrayRef<Nonnull<const ImplBinding*>> {
- return impl_bindings_;
- }
- private:
- Nonnull<const Value*> parameters_;
- std::vector<GenericParameter> generic_parameters_;
- Nonnull<const Value*> return_type_;
- std::vector<Nonnull<const GenericBinding*>> deduced_bindings_;
- std::vector<Nonnull<const ImplBinding*>> impl_bindings_;
- };
- // A pointer type.
- class PointerType : public Value {
- public:
- explicit PointerType(Nonnull<const Value*> type)
- : Value(Kind::PointerType), type_(type) {}
- static auto classof(const Value* value) -> bool {
- return value->kind() == Kind::PointerType;
- }
- auto type() const -> const Value& { return *type_; }
- private:
- Nonnull<const Value*> type_;
- };
- // The `auto` type.
- class AutoType : public Value {
- public:
- AutoType() : Value(Kind::AutoType) {}
- static auto classof(const Value* value) -> bool {
- return value->kind() == Kind::AutoType;
- }
- };
- // A struct type.
- //
- // Code that handles this type may sometimes need to have special-case handling
- // for `{}`, which is a struct value in addition to being a struct type.
- class StructType : public Value {
- public:
- StructType() : StructType(std::vector<NamedValue>{}) {}
- explicit StructType(std::vector<NamedValue> fields)
- : Value(Kind::StructType), fields_(std::move(fields)) {}
- static auto classof(const Value* value) -> bool {
- return value->kind() == Kind::StructType;
- }
- auto fields() const -> llvm::ArrayRef<NamedValue> { return fields_; }
- private:
- std::vector<NamedValue> fields_;
- };
- // A class type.
- // TODO: Consider splitting this class into several classes.
- class NominalClassType : public Value {
- public:
- // Construct a non-generic class type.
- explicit NominalClassType(Nonnull<const ClassDeclaration*> declaration)
- : Value(Kind::NominalClassType), declaration_(declaration) {
- CARBON_CHECK(!declaration->type_params().has_value())
- << "missing arguments for parameterized class type";
- }
- // Construct a fully instantiated generic class type to represent the
- // run-time type of an object.
- explicit NominalClassType(Nonnull<const ClassDeclaration*> declaration,
- Nonnull<const Bindings*> bindings)
- : Value(Kind::NominalClassType),
- declaration_(declaration),
- bindings_(bindings) {}
- static auto classof(const Value* value) -> bool {
- return value->kind() == Kind::NominalClassType;
- }
- auto declaration() const -> const ClassDeclaration& { return *declaration_; }
- auto bindings() const -> const Bindings& { return *bindings_; }
- auto type_args() const -> const BindingMap& { return bindings_->args(); }
- // Witnesses for each of the class's impl bindings. These will not in general
- // be set for class types that are only intended to be used within
- // type-checking and not at runtime, such as in the static_type() of an
- // expression or the type in a TypeOfClassType.
- auto witnesses() const -> const ImplWitnessMap& {
- return bindings_->witnesses();
- }
- // Returns whether this a parameterized class. That is, a class with
- // parameters and no corresponding arguments.
- auto IsParameterized() const -> bool {
- return declaration_->type_params().has_value() && type_args().empty();
- }
- // Returns the value of the function named `name` in this class, or
- // nullopt if there is no such function.
- auto FindFunction(std::string_view name) const
- -> std::optional<Nonnull<const FunctionValue*>>;
- private:
- Nonnull<const ClassDeclaration*> declaration_;
- Nonnull<const Bindings*> bindings_ = Bindings::None();
- };
- // Return the declaration of the member with the given name.
- auto FindMember(std::string_view name,
- llvm::ArrayRef<Nonnull<Declaration*>> members)
- -> std::optional<Nonnull<const Declaration*>>;
- // An interface type.
- class InterfaceType : public Value {
- public:
- explicit InterfaceType(Nonnull<const InterfaceDeclaration*> declaration)
- : Value(Kind::InterfaceType), declaration_(declaration) {
- CARBON_CHECK(!declaration->params().has_value())
- << "missing arguments for parameterized interface type";
- }
- explicit InterfaceType(Nonnull<const InterfaceDeclaration*> declaration,
- Nonnull<const Bindings*> bindings)
- : Value(Kind::InterfaceType),
- declaration_(declaration),
- bindings_(bindings) {}
- static auto classof(const Value* value) -> bool {
- return value->kind() == Kind::InterfaceType;
- }
- auto declaration() const -> const InterfaceDeclaration& {
- return *declaration_;
- }
- auto bindings() const -> const Bindings& { return *bindings_; }
- auto args() const -> const BindingMap& { return bindings_->args(); }
- auto witnesses() const -> const ImplWitnessMap& {
- return bindings_->witnesses();
- }
- private:
- Nonnull<const InterfaceDeclaration*> declaration_;
- Nonnull<const Bindings*> bindings_ = Bindings::None();
- };
- // A collection of values that are known to be the same.
- struct EqualityConstraint {
- // Visit the values in this equality constraint that are a single step away
- // from the given value according to this equality constraint. That is: if
- // `value` is identical to a value in `values`, then call the visitor on all
- // values in `values` that are not identical to `value`. Otherwise, do not
- // call the visitor.
- //
- // Stops and returns `false` if any call to the visitor returns `false`,
- // otherwise returns `true`.
- auto VisitEqualValues(
- Nonnull<const Value*> value,
- llvm::function_ref<bool(Nonnull<const Value*>)> visitor) const -> bool;
- std::vector<Nonnull<const Value*>> values;
- };
- // A type-of-type for an unknown constrained type.
- //
- // These types are formed by the `&` operator that combines constraints and by
- // `where` expressions.
- //
- // A constraint has three main properties:
- //
- // * A collection of (type, interface) pairs for interfaces that are known to
- // be implemented by a type satisfying the constraint.
- // * A collection of sets of values, typically associated constants, that are
- // known to be the same.
- // * A collection of contexts in which member name lookups will be performed
- // for a type variable whose type is this constraint.
- //
- // Within these properties, the constrained type can be referred to with a
- // `VariableType` naming the `self_binding`.
- class ConstraintType : public Value {
- public:
- // A required implementation of an interface.
- struct ImplConstraint {
- Nonnull<const Value*> type;
- Nonnull<const InterfaceType*> interface;
- };
- using EqualityConstraint = Carbon::EqualityConstraint;
- // A context in which we might look up a name.
- struct LookupContext {
- Nonnull<const Value*> context;
- };
- public:
- explicit ConstraintType(Nonnull<const GenericBinding*> self_binding,
- std::vector<ImplConstraint> impl_constraints,
- std::vector<EqualityConstraint> equality_constraints,
- std::vector<LookupContext> lookup_contexts)
- : Value(Kind::ConstraintType),
- self_binding_(self_binding),
- impl_constraints_(std::move(impl_constraints)),
- equality_constraints_(std::move(equality_constraints)),
- lookup_contexts_(std::move(lookup_contexts)) {}
- static auto classof(const Value* value) -> bool {
- return value->kind() == Kind::ConstraintType;
- }
- auto self_binding() const -> Nonnull<const GenericBinding*> {
- return self_binding_;
- }
- auto impl_constraints() const -> llvm::ArrayRef<ImplConstraint> {
- return impl_constraints_;
- }
- auto equality_constraints() const -> llvm::ArrayRef<EqualityConstraint> {
- return equality_constraints_;
- }
- auto lookup_contexts() const -> llvm::ArrayRef<LookupContext> {
- return lookup_contexts_;
- }
- // Visit the values in that are a single step away from the given value
- // according to equality constraints in this constraint type, that is, the
- // values `v` that are not identical to `value` but for which we have a
- // `value == v` equality constraint in this constraint type.
- //
- // Stops and returns `false` if any call to the visitor returns `false`,
- // otherwise returns `true`.
- auto VisitEqualValues(
- Nonnull<const Value*> value,
- llvm::function_ref<bool(Nonnull<const Value*>)> visitor) const -> bool;
- private:
- Nonnull<const GenericBinding*> self_binding_;
- std::vector<ImplConstraint> impl_constraints_;
- std::vector<EqualityConstraint> equality_constraints_;
- std::vector<LookupContext> lookup_contexts_;
- };
- // A witness table.
- class Witness : public Value {
- protected:
- explicit Witness(Value::Kind kind) : Value(kind) {}
- public:
- static auto classof(const Value* value) -> bool {
- return value->kind() == Kind::ImplWitness ||
- value->kind() == Kind::SymbolicWitness;
- }
- };
- // The witness table for an impl.
- class ImplWitness : public Witness {
- public:
- // Construct a witness for
- // 1) a non-generic impl, or
- // 2) a generic impl that has not yet been applied to type arguments.
- explicit ImplWitness(Nonnull<const ImplDeclaration*> declaration)
- : Witness(Kind::ImplWitness), declaration_(declaration) {}
- // Construct an instantiated generic impl.
- explicit ImplWitness(Nonnull<const ImplDeclaration*> declaration,
- Nonnull<const Bindings*> bindings)
- : Witness(Kind::ImplWitness),
- declaration_(declaration),
- bindings_(bindings) {}
- static auto classof(const Value* value) -> bool {
- return value->kind() == Kind::ImplWitness;
- }
- auto declaration() const -> const ImplDeclaration& { return *declaration_; }
- auto bindings() const -> const Bindings& { return *bindings_; }
- auto type_args() const -> const BindingMap& { return bindings_->args(); }
- auto witnesses() const -> const ImplWitnessMap& {
- return bindings_->witnesses();
- }
- private:
- Nonnull<const ImplDeclaration*> declaration_;
- Nonnull<const Bindings*> bindings_ = Bindings::None();
- };
- // A witness table whose concrete value cannot be determined yet.
- //
- // These are used to represent symbolic witness values which can be computed at
- // runtime but whose values are not known statically.
- class SymbolicWitness : public Witness {
- public:
- explicit SymbolicWitness(Nonnull<const Expression*> impl_expr)
- : Witness(Kind::SymbolicWitness), impl_expr_(impl_expr) {}
- static auto classof(const Value* value) -> bool {
- return value->kind() == Kind::SymbolicWitness;
- }
- auto impl_expression() const -> const Expression& { return *impl_expr_; }
- private:
- Nonnull<const Expression*> impl_expr_;
- };
- // A choice type.
- class ChoiceType : public Value {
- public:
- ChoiceType(std::string name, std::vector<NamedValue> alternatives)
- : Value(Kind::ChoiceType),
- name_(std::move(name)),
- alternatives_(std::move(alternatives)) {}
- static auto classof(const Value* value) -> bool {
- return value->kind() == Kind::ChoiceType;
- }
- auto name() const -> const std::string& { return name_; }
- // Returns the parameter types of the alternative with the given name,
- // or nullopt if no such alternative is present.
- auto FindAlternative(std::string_view name) const
- -> std::optional<Nonnull<const Value*>>;
- private:
- std::string name_;
- std::vector<NamedValue> alternatives_;
- };
- // A continuation type.
- class ContinuationType : public Value {
- public:
- ContinuationType() : Value(Kind::ContinuationType) {}
- static auto classof(const Value* value) -> bool {
- return value->kind() == Kind::ContinuationType;
- }
- };
- // A variable type.
- class VariableType : public Value {
- public:
- explicit VariableType(Nonnull<const GenericBinding*> binding)
- : Value(Kind::VariableType), binding_(binding) {}
- static auto classof(const Value* value) -> bool {
- return value->kind() == Kind::VariableType;
- }
- auto binding() const -> const GenericBinding& { return *binding_; }
- private:
- Nonnull<const GenericBinding*> binding_;
- };
- // A name of an entity that has explicit parameters, such as a parameterized
- // class or interface. When arguments for those parameters are provided in a
- // call, the result will be a class type or interface type.
- class ParameterizedEntityName : public Value {
- public:
- explicit ParameterizedEntityName(Nonnull<const Declaration*> declaration,
- Nonnull<const TuplePattern*> params)
- : Value(Kind::ParameterizedEntityName),
- declaration_(declaration),
- params_(params) {}
- static auto classof(const Value* value) -> bool {
- return value->kind() == Kind::ParameterizedEntityName;
- }
- auto declaration() const -> const Declaration& { return *declaration_; }
- auto params() const -> const TuplePattern& { return *params_; }
- private:
- Nonnull<const Declaration*> declaration_;
- Nonnull<const TuplePattern*> params_;
- };
- // The name of a member of a class or interface.
- //
- // These values are used to represent the second operand of a compound member
- // access expression: `x.(A.B)`, and can also be the value of an alias
- // declaration, but cannot be used in most other contexts.
- class MemberName : public Value {
- public:
- MemberName(std::optional<Nonnull<const Value*>> base_type,
- std::optional<Nonnull<const InterfaceType*>> interface,
- Member member)
- : Value(Kind::MemberName),
- base_type_(base_type),
- interface_(interface),
- member_(member) {
- CARBON_CHECK(base_type || interface)
- << "member name must be in a type, an interface, or both";
- }
- static auto classof(const Value* value) -> bool {
- return value->kind() == Kind::MemberName;
- }
- // The type for which `name` is a member or a member of an `impl`.
- auto base_type() const -> std::optional<Nonnull<const Value*>> {
- return base_type_;
- }
- // The interface for which `name` is a member, if any.
- auto interface() const -> std::optional<Nonnull<const InterfaceType*>> {
- return interface_;
- }
- // The member.
- auto member() const -> Member { return member_; }
- // The name of the member.
- auto name() const -> std::string_view { return member().name(); }
- private:
- std::optional<Nonnull<const Value*>> base_type_;
- std::optional<Nonnull<const InterfaceType*>> interface_;
- Member member_;
- };
- // A symbolic value representing an associated constant.
- //
- // This is a value of the form `A.B` or `A.B.C` or similar, where `A` is a
- // `VariableType`.
- class AssociatedConstant : public Value {
- public:
- explicit AssociatedConstant(
- Nonnull<const Value*> base, Nonnull<const InterfaceType*> interface,
- Nonnull<const AssociatedConstantDeclaration*> constant,
- Nonnull<const Witness*> witness)
- : Value(Kind::AssociatedConstant),
- base_(base),
- interface_(interface),
- constant_(constant),
- witness_(witness) {}
- static auto classof(const Value* value) -> bool {
- return value->kind() == Kind::AssociatedConstant;
- }
- // The type for which we denote an associated constant.
- auto base() const -> const Value& { return *base_; }
- // The interface within which the constant was declared.
- auto interface() const -> const InterfaceType& { return *interface_; }
- // The associated constant whose value is being denoted.
- auto constant() const -> const AssociatedConstantDeclaration& {
- return *constant_;
- }
- // Witness within which the constant's value can be found.
- auto witness() const -> const Witness& { return *witness_; }
- private:
- Nonnull<const Value*> base_;
- Nonnull<const InterfaceType*> interface_;
- Nonnull<const AssociatedConstantDeclaration*> constant_;
- Nonnull<const Witness*> witness_;
- };
- // A first-class continuation representation of a fragment of the stack.
- // A continuation value behaves like a pointer to the underlying stack
- // fragment, which is exposed by `Stack()`.
- class ContinuationValue : public Value {
- public:
- class StackFragment {
- public:
- // Constructs an empty StackFragment.
- StackFragment() = default;
- // Requires *this to be empty, because by the time we're tearing down the
- // Arena, it's no longer safe to invoke ~Action.
- ~StackFragment();
- StackFragment(StackFragment&&) = delete;
- auto operator=(StackFragment&&) -> StackFragment& = delete;
- // Store the given partial todo stack in *this, which must currently be
- // empty. The stack is represented with the top of the stack at the
- // beginning of the vector, the reverse of the usual order.
- void StoreReversed(std::vector<std::unique_ptr<Action>> reversed_todo);
- // Restore the currently stored stack fragment to the top of `todo`,
- // leaving *this empty.
- void RestoreTo(Stack<std::unique_ptr<Action>>& todo);
- // Destroy the currently stored stack fragment.
- void Clear();
- void Print(llvm::raw_ostream& out) const;
- LLVM_DUMP_METHOD void Dump() const { Print(llvm::errs()); }
- private:
- // The todo stack of a suspended continuation, starting with the top
- // Action.
- std::vector<std::unique_ptr<Action>> reversed_todo_;
- };
- explicit ContinuationValue(Nonnull<StackFragment*> stack)
- : Value(Kind::ContinuationValue), stack_(stack) {}
- static auto classof(const Value* value) -> bool {
- return value->kind() == Kind::ContinuationValue;
- }
- // The todo stack of the suspended continuation. Note that this provides
- // mutable access, even when *this is const, because of the reference-like
- // semantics of ContinuationValue.
- auto stack() const -> StackFragment& { return *stack_; }
- private:
- Nonnull<StackFragment*> stack_;
- };
- // The String type.
- class StringType : public Value {
- public:
- StringType() : Value(Kind::StringType) {}
- static auto classof(const Value* value) -> bool {
- return value->kind() == Kind::StringType;
- }
- };
- // A string value.
- class StringValue : public Value {
- public:
- explicit StringValue(std::string value)
- : Value(Kind::StringValue), value_(std::move(value)) {}
- static auto classof(const Value* value) -> bool {
- return value->kind() == Kind::StringValue;
- }
- auto value() const -> const std::string& { return value_; }
- private:
- std::string value_;
- };
- // The type of an expression whose value is a class type. Currently there is no
- // way to explicitly name such a type in Carbon code, but we are tentatively
- // using `typeof(ClassName)` as the debug-printing format, in anticipation of
- // something like that becoming valid Carbon syntax.
- class TypeOfClassType : public Value {
- public:
- explicit TypeOfClassType(Nonnull<const NominalClassType*> class_type)
- : Value(Kind::TypeOfClassType), class_type_(class_type) {}
- static auto classof(const Value* value) -> bool {
- return value->kind() == Kind::TypeOfClassType;
- }
- auto class_type() const -> const NominalClassType& { return *class_type_; }
- private:
- Nonnull<const NominalClassType*> class_type_;
- };
- class TypeOfInterfaceType : public Value {
- public:
- explicit TypeOfInterfaceType(Nonnull<const InterfaceType*> iface_type)
- : Value(Kind::TypeOfInterfaceType), iface_type_(iface_type) {}
- static auto classof(const Value* value) -> bool {
- return value->kind() == Kind::TypeOfInterfaceType;
- }
- auto interface_type() const -> const InterfaceType& { return *iface_type_; }
- private:
- Nonnull<const InterfaceType*> iface_type_;
- };
- class TypeOfConstraintType : public Value {
- public:
- explicit TypeOfConstraintType(Nonnull<const ConstraintType*> constraint_type)
- : Value(Kind::TypeOfConstraintType), constraint_type_(constraint_type) {}
- static auto classof(const Value* value) -> bool {
- return value->kind() == Kind::TypeOfConstraintType;
- }
- auto constraint_type() const -> const ConstraintType& {
- return *constraint_type_;
- }
- private:
- Nonnull<const ConstraintType*> constraint_type_;
- };
- // The type of an expression whose value is a choice type. Currently there is no
- // way to explicitly name such a type in Carbon code, but we are tentatively
- // using `typeof(ChoiceName)` as the debug-printing format, in anticipation of
- // something like that becoming valid Carbon syntax.
- class TypeOfChoiceType : public Value {
- public:
- explicit TypeOfChoiceType(Nonnull<const ChoiceType*> choice_type)
- : Value(Kind::TypeOfChoiceType), choice_type_(choice_type) {}
- static auto classof(const Value* value) -> bool {
- return value->kind() == Kind::TypeOfChoiceType;
- }
- auto choice_type() const -> const ChoiceType& { return *choice_type_; }
- private:
- Nonnull<const ChoiceType*> choice_type_;
- };
- // The type of an expression whose value is the name of a parameterized entity.
- // Such an expression can only be used as the operand of a call expression that
- // provides arguments for the parameters.
- class TypeOfParameterizedEntityName : public Value {
- public:
- explicit TypeOfParameterizedEntityName(
- Nonnull<const ParameterizedEntityName*> name)
- : Value(Kind::TypeOfParameterizedEntityName), name_(name) {}
- static auto classof(const Value* value) -> bool {
- return value->kind() == Kind::TypeOfParameterizedEntityName;
- }
- auto name() const -> const ParameterizedEntityName& { return *name_; }
- private:
- Nonnull<const ParameterizedEntityName*> name_;
- };
- // The type of a member name expression.
- //
- // This is used for member names that don't denote a specific object or value
- // until used on the right-hand side of a `.`, such as an instance method or
- // field name, or any member function in an interface.
- //
- // Such expressions can appear only as the target of an `alias` declaration or
- // as the member name in a compound member access.
- class TypeOfMemberName : public Value {
- public:
- explicit TypeOfMemberName(Member member)
- : Value(Kind::TypeOfMemberName), member_(member) {}
- static auto classof(const Value* value) -> bool {
- return value->kind() == Kind::TypeOfMemberName;
- }
- // TODO: consider removing this or moving it elsewhere in the AST,
- // since it's arguably part of the expression value rather than its type.
- auto member() const -> Member { return member_; }
- private:
- Member member_;
- };
- // The type of a statically-sized array.
- //
- // Note that values of this type are represented as tuples.
- class StaticArrayType : public Value {
- public:
- // Constructs a statically-sized array type with the given element type and
- // size.
- StaticArrayType(Nonnull<const Value*> element_type, size_t size)
- : Value(Kind::StaticArrayType),
- element_type_(element_type),
- size_(size) {}
- static auto classof(const Value* value) -> bool {
- return value->kind() == Kind::StaticArrayType;
- }
- auto element_type() const -> const Value& { return *element_type_; }
- auto size() const -> size_t { return size_; }
- private:
- Nonnull<const Value*> element_type_;
- size_t size_;
- };
- } // namespace Carbon
- #endif // CARBON_EXPLORER_INTERPRETER_VALUE_H_
|