mirror of
https://github.com/carbon-language/carbon-lang.git
synced 2026-09-24 22:02:23 +01:00
* interfaces, impls, and constrained generics (basics) * separate type checking into declare vs. type check, removing redundancy * external impls * added impl scopes to handle generics calling generics * cleanup * more cleanup * Update executable_semantics/testdata/interface/external_impl_point_vector.carbon Co-authored-by: josh11b <josh11b@users.noreply.github.com> * Update executable_semantics/testdata/interface/generic_call_generic.carbon Co-authored-by: josh11b <josh11b@users.noreply.github.com> * Update executable_semantics/testdata/interface/tuple_vector_add_scale.carbon Co-authored-by: josh11b <josh11b@users.noreply.github.com> * Update executable_semantics/testdata/interface/vector_point_add_scale.carbon Co-authored-by: josh11b <josh11b@users.noreply.github.com> * change ImplementationDeclaration to ImplDeclaration * remove impl_type_value * split NamedEntity into two * changed GetName to be a free function * adding comments * more edits to respond to review * introduce ImplBinding, remove punning on GenericBinding * new test case and some minor edits * refactor GetMember and GetField to move impl logic to interpreter * remove commennt * change EntityView to ImplBinding in FieldAccess... * move ImplBinding * review response * added example to impl_scope.h * minor edits * Update executable_semantics/interpreter/field_path.h Co-authored-by: Geoff Romer <gromer@google.com> * Update executable_semantics/interpreter/value.cpp Co-authored-by: Geoff Romer <gromer@google.com> * Update executable_semantics/interpreter/interpreter.cpp Co-authored-by: Geoff Romer <gromer@google.com> * Update executable_semantics/ast/expression.h Co-authored-by: Geoff Romer <gromer@google.com> * Update executable_semantics/ast/expression.h Co-authored-by: Geoff Romer <gromer@google.com> * Update executable_semantics/ast/generic_binding.h Co-authored-by: Geoff Romer <gromer@google.com> * more edits from review * review response * Update executable_semantics/ast/static_scope.h Co-authored-by: Geoff Romer <gromer@google.com> * remove ImplType, renamed node_view to value_node Co-authored-by: josh11b <josh11b@users.noreply.github.com> Co-authored-by: Geoff Romer <gromer@google.com>
167 lines
5.8 KiB
C++
167 lines
5.8 KiB
C++
// Part of the Carbon Language project, under the Apache License v2.0 with LLVM
|
|
// Exceptions. See /LICENSE for license information.
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
|
|
|
#ifndef EXECUTABLE_SEMANTICS_AST_STATIC_SCOPE_H_
|
|
#define EXECUTABLE_SEMANTICS_AST_STATIC_SCOPE_H_
|
|
|
|
#include <functional>
|
|
#include <string>
|
|
#include <unordered_map>
|
|
#include <variant>
|
|
#include <vector>
|
|
|
|
#include "common/check.h"
|
|
#include "executable_semantics/ast/ast_node.h"
|
|
#include "executable_semantics/ast/source_location.h"
|
|
#include "executable_semantics/ast/value_category.h"
|
|
#include "executable_semantics/common/nonnull.h"
|
|
|
|
namespace Carbon {
|
|
|
|
class Value;
|
|
|
|
// The placeholder name exposed by anonymous ValueNodes.
|
|
static constexpr std::string_view AnonymousName = "_";
|
|
|
|
// ImplementsValueNode is true if NodeType::ImplementsCarbonValueNode
|
|
// is valid and names a type, indicating that NodeType implements the
|
|
// ValueNode interface, defined below.
|
|
|
|
template <typename NodeType, typename = void>
|
|
static constexpr bool ImplementsValueNode = false;
|
|
|
|
/*
|
|
ValueNode is an interface implemented by AstNodes that can be associated
|
|
with a value, such as declarations and bindings. The interface consists of
|
|
the following methods:
|
|
|
|
// Returns the static type of an IdentifierExpression that names *this.
|
|
auto static_type() const -> const Value&;
|
|
|
|
// Returns the value category of an IdentifierExpression that names *this.
|
|
auto value_category() const -> ValueCategory;
|
|
|
|
// Print the node for diagnostic or tracing purposes.
|
|
void Print(llvm::raw_ostream& out) const;
|
|
|
|
|
|
*/
|
|
// TODO: consider turning the above documentation into real code, as sketched
|
|
// at https://godbolt.org/z/186oEozhc
|
|
|
|
template <typename T>
|
|
static constexpr bool
|
|
ImplementsValueNode<T, typename T::ImplementsCarbonValueNode> = true;
|
|
|
|
class ValueNodeView {
|
|
public:
|
|
template <typename NodeType,
|
|
typename = std::enable_if_t<ImplementsValueNode<NodeType>>>
|
|
// NOLINTNEXTLINE(google-explicit-constructor)
|
|
ValueNodeView(Nonnull<const NodeType*> node)
|
|
// Type-erase NodeType, retaining a pointer to the base class AstNode
|
|
// and using std::function to encapsulate the ability to call
|
|
// the derived class's methods.
|
|
: base_(node),
|
|
constant_value_(
|
|
[](const AstNode& base) -> std::optional<Nonnull<const Value*>> {
|
|
return llvm::cast<NodeType>(base).constant_value();
|
|
}),
|
|
print_([](const AstNode& base, llvm::raw_ostream& out) -> void {
|
|
// TODO: change this to print a summary of the node
|
|
return llvm::cast<NodeType>(base).Print(out);
|
|
}),
|
|
static_type_([](const AstNode& base) -> const Value& {
|
|
return llvm::cast<NodeType>(base).static_type();
|
|
}),
|
|
value_category_([](const AstNode& base) -> ValueCategory {
|
|
return llvm::cast<NodeType>(base).value_category();
|
|
}) {}
|
|
|
|
ValueNodeView(const ValueNodeView&) = default;
|
|
ValueNodeView(ValueNodeView&&) = default;
|
|
auto operator=(const ValueNodeView&) -> ValueNodeView& = default;
|
|
auto operator=(ValueNodeView&&) -> ValueNodeView& = default;
|
|
|
|
// Returns `node` as an instance of the base class AstNode.
|
|
auto base() const -> const AstNode& { return *base_; }
|
|
|
|
// Returns node->constant_value()
|
|
auto constant_value() const -> std::optional<Nonnull<const Value*>> {
|
|
return constant_value_(*base_);
|
|
}
|
|
|
|
void Print(llvm::raw_ostream& out) const { print_(*base_, out); }
|
|
|
|
// Returns node->static_type()
|
|
auto static_type() const -> const Value& { return static_type_(*base_); }
|
|
|
|
// Returns node->value_category()
|
|
auto value_category() const -> ValueCategory {
|
|
return value_category_(*base_);
|
|
}
|
|
|
|
friend auto operator==(const ValueNodeView& lhs, const ValueNodeView& rhs)
|
|
-> bool {
|
|
return lhs.base_ == rhs.base_;
|
|
}
|
|
|
|
friend auto operator!=(const ValueNodeView& lhs, const ValueNodeView& rhs)
|
|
-> bool {
|
|
return lhs.base_ != rhs.base_;
|
|
}
|
|
|
|
friend auto operator<(const ValueNodeView& lhs, const ValueNodeView& rhs)
|
|
-> bool {
|
|
return std::less<>()(lhs.base_, rhs.base_);
|
|
}
|
|
|
|
private:
|
|
Nonnull<const AstNode*> base_;
|
|
std::function<std::optional<Nonnull<const Value*>>(const AstNode&)>
|
|
constant_value_;
|
|
std::function<void(const AstNode&, llvm::raw_ostream&)> print_;
|
|
std::function<const Value&(const AstNode&)> static_type_;
|
|
std::function<ValueCategory(const AstNode&)> value_category_;
|
|
};
|
|
|
|
// Maps the names visible in a given scope to the entities they name.
|
|
// A scope may have parent scopes, whose names will also be visible in the
|
|
// child scope.
|
|
class StaticScope {
|
|
public:
|
|
// Defines `name` to be `entity` in this scope, or reports a compilation error
|
|
// if `name` is already defined to be a different entity in this scope.
|
|
void Add(std::string name, ValueNodeView entity);
|
|
|
|
// Make `parent` a parent of this scope.
|
|
// REQUIRES: `parent` is not already a parent of this scope.
|
|
void AddParent(Nonnull<StaticScope*> parent) {
|
|
parent_scopes_.push_back(parent);
|
|
}
|
|
|
|
// Returns the nearest definition of `name` in the ancestor graph of this
|
|
// scope, or reports a compilation error at `source_loc` there isn't exactly
|
|
// one such definition.
|
|
auto Resolve(const std::string& name, SourceLocation source_loc) const
|
|
-> ValueNodeView;
|
|
|
|
private:
|
|
// Equivalent to Resolve, but returns `nullopt` instead of raising an error
|
|
// if no definition can be found. Still raises a compilation error if more
|
|
// than one definition is found.
|
|
auto TryResolve(const std::string& name, SourceLocation source_loc) const
|
|
-> std::optional<ValueNodeView>;
|
|
|
|
// Maps locally declared names to their entities.
|
|
std::unordered_map<std::string, ValueNodeView> declared_names_;
|
|
|
|
// A list of scopes used for name lookup within this scope.
|
|
std::vector<Nonnull<StaticScope*>> parent_scopes_;
|
|
};
|
|
|
|
} // namespace Carbon
|
|
|
|
#endif // EXECUTABLE_SEMANTICS_AST_STATIC_SCOPE_H_
|