mirror of
https://github.com/carbon-language/carbon-lang.git
synced 2026-09-24 22:02:23 +01:00
Patterns all compute their values when type-checked, so we never actually need to do any multi-step evaluation to compute the value of a pattern. Doing so was leading to quadratic runtime and excess noise in the trace file.
162 lines
5.0 KiB
C++
162 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
|
|
|
|
#include "explorer/interpreter/action.h"
|
|
|
|
#include <iterator>
|
|
#include <map>
|
|
#include <optional>
|
|
#include <utility>
|
|
#include <vector>
|
|
|
|
#include "explorer/ast/declaration.h"
|
|
#include "explorer/ast/expression.h"
|
|
#include "explorer/common/arena.h"
|
|
#include "explorer/interpreter/stack.h"
|
|
#include "llvm/ADT/StringExtras.h"
|
|
#include "llvm/Support/Casting.h"
|
|
|
|
namespace Carbon {
|
|
|
|
using llvm::cast;
|
|
|
|
RuntimeScope::RuntimeScope(RuntimeScope&& other) noexcept
|
|
: locals_(std::move(other.locals_)),
|
|
// To transfer ownership of other.allocations_, we have to empty it out.
|
|
allocations_(std::exchange(other.allocations_, {})),
|
|
heap_(other.heap_) {}
|
|
|
|
auto RuntimeScope::operator=(RuntimeScope&& rhs) noexcept -> RuntimeScope& {
|
|
locals_ = std::move(rhs.locals_);
|
|
// To transfer ownership of rhs.allocations_, we have to empty it out.
|
|
allocations_ = std::exchange(rhs.allocations_, {});
|
|
heap_ = rhs.heap_;
|
|
return *this;
|
|
}
|
|
|
|
RuntimeScope::~RuntimeScope() {
|
|
for (auto allocation : allocations_) {
|
|
// TODO: move this into StepCleanUp
|
|
heap_->Deallocate(allocation);
|
|
}
|
|
}
|
|
|
|
void RuntimeScope::Print(llvm::raw_ostream& out) const {
|
|
out << "{";
|
|
llvm::ListSeparator sep;
|
|
for (const auto& [value_node, value] : locals_) {
|
|
out << sep << value_node.base() << ": " << *value;
|
|
}
|
|
out << "}";
|
|
}
|
|
|
|
void RuntimeScope::Bind(ValueNodeView value_node, Nonnull<const Value*> value) {
|
|
CARBON_CHECK(!value_node.constant_value().has_value());
|
|
CARBON_CHECK(value->kind() != Value::Kind::LValue);
|
|
auto allocation_id = heap_->GetAllocationId(value);
|
|
if (!allocation_id) {
|
|
auto id = heap_->AllocateValue(value);
|
|
auto [it, success] =
|
|
locals_.insert({value_node, heap_->arena().New<LValue>(Address(id))});
|
|
CARBON_CHECK(success) << "Duplicate definition of " << value_node.base();
|
|
} else {
|
|
auto [it, success] = locals_.insert(
|
|
{value_node, heap_->arena().New<LValue>(Address(*allocation_id))});
|
|
CARBON_CHECK(success) << "Duplicate definition of " << value_node.base();
|
|
}
|
|
}
|
|
|
|
void RuntimeScope::Initialize(ValueNodeView value_node,
|
|
Nonnull<const Value*> value) {
|
|
CARBON_CHECK(!value_node.constant_value().has_value());
|
|
CARBON_CHECK(value->kind() != Value::Kind::LValue);
|
|
allocations_.push_back(heap_->AllocateValue(value));
|
|
auto [it, success] = locals_.insert(
|
|
{value_node, heap_->arena().New<LValue>(Address(allocations_.back()))});
|
|
CARBON_CHECK(success) << "Duplicate definition of " << value_node.base();
|
|
}
|
|
|
|
void RuntimeScope::Merge(RuntimeScope other) {
|
|
CARBON_CHECK(heap_ == other.heap_);
|
|
for (auto& element : other.locals_) {
|
|
CARBON_CHECK(locals_.count(element.first) == 0)
|
|
<< "Duplicate definition of" << element.first;
|
|
locals_.insert(element);
|
|
}
|
|
allocations_.insert(allocations_.end(), other.allocations_.begin(),
|
|
other.allocations_.end());
|
|
other.allocations_.clear();
|
|
}
|
|
|
|
auto RuntimeScope::Get(ValueNodeView value_node) const
|
|
-> std::optional<Nonnull<const LValue*>> {
|
|
auto it = locals_.find(value_node);
|
|
if (it != locals_.end()) {
|
|
return it->second;
|
|
} else {
|
|
return std::nullopt;
|
|
}
|
|
}
|
|
|
|
auto RuntimeScope::Capture(
|
|
const std::vector<Nonnull<const RuntimeScope*>>& scopes) -> RuntimeScope {
|
|
CARBON_CHECK(!scopes.empty());
|
|
RuntimeScope result(scopes.front()->heap_);
|
|
for (Nonnull<const RuntimeScope*> scope : scopes) {
|
|
CARBON_CHECK(scope->heap_ == result.heap_);
|
|
for (const auto& entry : scope->locals_) {
|
|
// Intentionally disregards duplicates later in the vector.
|
|
result.locals_.insert(entry);
|
|
}
|
|
}
|
|
return result;
|
|
}
|
|
|
|
void Action::Print(llvm::raw_ostream& out) const {
|
|
switch (kind()) {
|
|
case Action::Kind::LValAction:
|
|
out << cast<LValAction>(*this).expression() << " ";
|
|
break;
|
|
case Action::Kind::ExpressionAction:
|
|
out << cast<ExpressionAction>(*this).expression() << " ";
|
|
break;
|
|
case Action::Kind::WitnessAction:
|
|
out << *cast<WitnessAction>(*this).witness() << " ";
|
|
break;
|
|
case Action::Kind::StatementAction:
|
|
cast<StatementAction>(*this).statement().PrintDepth(1, out);
|
|
out << " ";
|
|
break;
|
|
case Action::Kind::DeclarationAction:
|
|
cast<DeclarationAction>(*this).declaration().Print(out);
|
|
out << " ";
|
|
break;
|
|
case Action::Kind::ScopeAction:
|
|
break;
|
|
case Action::Kind::RecursiveAction:
|
|
out << "recursive";
|
|
break;
|
|
case Action::Kind::CleanUpAction:
|
|
out << "clean up";
|
|
break;
|
|
case Action::Kind::DestroyAction:
|
|
out << "destroy";
|
|
break;
|
|
}
|
|
out << "." << pos_ << ".";
|
|
if (!results_.empty()) {
|
|
out << " [[";
|
|
llvm::ListSeparator sep;
|
|
for (const auto& result : results_) {
|
|
out << sep << *result;
|
|
}
|
|
out << "]]";
|
|
}
|
|
if (this->scope().has_value()) {
|
|
out << " " << *this->scope();
|
|
}
|
|
}
|
|
|
|
} // namespace Carbon
|