mirror of
https://github.com/carbon-language/carbon-lang.git
synced 2026-09-24 21:20:11 +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>
126 lines
5.0 KiB
C++
126 lines
5.0 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_INTERPRETER_ACTION_STACK_H_
|
|
#define EXECUTABLE_SEMANTICS_INTERPRETER_ACTION_STACK_H_
|
|
|
|
#include <memory>
|
|
#include <optional>
|
|
|
|
#include "common/ostream.h"
|
|
#include "executable_semantics/ast/statement.h"
|
|
#include "executable_semantics/interpreter/action.h"
|
|
#include "executable_semantics/interpreter/value.h"
|
|
|
|
namespace Carbon {
|
|
|
|
// The stack of Actions currently being executed by the interpreter.
|
|
class ActionStack {
|
|
public:
|
|
// Constructs an empty compile-time ActionStack.
|
|
ActionStack() = default;
|
|
|
|
// Constructs an empty run-time ActionStack that allocates global variables
|
|
// on `heap`.
|
|
explicit ActionStack(Nonnull<HeapAllocationInterface*> heap)
|
|
: globals_(RuntimeScope(heap)) {}
|
|
|
|
void Print(llvm::raw_ostream& out) const;
|
|
LLVM_DUMP_METHOD void Dump() const { Print(llvm::errs()); }
|
|
|
|
// TODO: consider unifying with Print.
|
|
void PrintScopes(llvm::raw_ostream& out) const;
|
|
|
|
// Starts execution with `action` at the top of the stack. Cannot be called
|
|
// when IsEmpty() is false.
|
|
void Start(std::unique_ptr<Action> action);
|
|
|
|
// True if the stack is empty.
|
|
auto IsEmpty() const -> bool { return todo_.IsEmpty(); }
|
|
|
|
// The Action currently at the top of the stack. This will never be a
|
|
// ScopeAction.
|
|
auto CurrentAction() -> Action& { return *todo_.Top(); }
|
|
|
|
// Allocates storage for `value_node`, and initializes it to `value`.
|
|
void Initialize(ValueNodeView value_node, Nonnull<const Value*> value);
|
|
|
|
// Returns the value bound to `value_node`. If `value_node` is a local
|
|
// variable, this will be an LValue.
|
|
auto ValueOfNode(ValueNodeView value_node, SourceLocation source_loc) const
|
|
-> Nonnull<const Value*>;
|
|
|
|
// Merges `scope` into the innermost scope currently on the stack.
|
|
void MergeScope(RuntimeScope scope);
|
|
|
|
// Initializes `fragment` so that, when resumed, it begins execution of
|
|
// `body`.
|
|
void InitializeFragment(ContinuationValue::StackFragment& fragment,
|
|
Nonnull<const Statement*> body);
|
|
|
|
// The result produced by the `action` argument of the most recent
|
|
// Start call. Cannot be called if IsEmpty() is false, or if `action`
|
|
// was an action that doesn't produce results.
|
|
auto result() const -> Nonnull<const Value*> { return *result_; }
|
|
|
|
// The following methods, called "transition methods", update the state of
|
|
// the ActionStack and/or the current Action to reflect the effects of
|
|
// executing a step of that Action. Execution of an Action step should always
|
|
// invoke exactly one transition method, as the very last operation. This is a
|
|
// matter of safety as well as convention: most transition methods modify the
|
|
// state of the current action, and some of them destroy it. To help enforce
|
|
// this requirement, we have a convention of calling these methods as part of
|
|
// return statements, e.g. `return todo_.FinishAction()`, even though they
|
|
// return void.
|
|
|
|
// Finishes execution of the current Action. If `result` is specified, it
|
|
// represents the result of that Action.
|
|
void FinishAction();
|
|
void FinishAction(Nonnull<const Value*> result);
|
|
|
|
// Advances the current action one step, and push `child` onto the stack.
|
|
// If `scope` is specified, `child` will be executed in that scope.
|
|
void Spawn(std::unique_ptr<Action> child);
|
|
void Spawn(std::unique_ptr<Action> child, RuntimeScope scope);
|
|
|
|
// Advances the current action one step.
|
|
void RunAgain();
|
|
|
|
// Unwinds Actions from the stack until the StatementAction associated with
|
|
// `ast_node` is at the top of the stack.
|
|
void UnwindTo(Nonnull<const Statement*> ast_node);
|
|
|
|
// Unwinds Actions from the stack until the StatementAction associated with
|
|
// `ast_node` has been removed from the stack. If `result` is specified,
|
|
// it represents the result of that Action (StatementActions normally cannot
|
|
// produce results, but the body of a function can).
|
|
void UnwindPast(Nonnull<const Statement*> ast_node);
|
|
void UnwindPast(Nonnull<const Statement*> ast_node,
|
|
Nonnull<const Value*> result);
|
|
|
|
// Resumes execution of a suspended continuation.
|
|
void Resume(Nonnull<const ContinuationValue*> continuation);
|
|
|
|
// Suspends execution of the currently-executing continuation.
|
|
void Suspend();
|
|
|
|
private:
|
|
// Pop any ScopeActions from the top of the stack, propagating results as
|
|
// needed, to restore the invariant that todo_.Top() is not a ScopeAction.
|
|
void PopScopes();
|
|
|
|
// Set `result` as the result of the Action most recently removed from the
|
|
// stack.
|
|
void SetResult(Nonnull<const Value*> result);
|
|
|
|
// TODO: consider defining a non-nullable unique_ptr-like type to use here.
|
|
Stack<std::unique_ptr<Action>> todo_;
|
|
std::optional<Nonnull<const Value*>> result_;
|
|
std::optional<RuntimeScope> globals_;
|
|
};
|
|
|
|
} // namespace Carbon
|
|
|
|
#endif // EXECUTABLE_SEMANTICS_INTERPRETER_ACTION_STACK_H_
|