2020-03-07 19:42:11 +01:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2020, Andreas Kling <kling@serenityos.org>
|
2021-05-13 23:58:45 +01:00
|
|
|
* Copyright (c) 2020-2021, Linus Groh <linusg@serenityos.org>
|
2020-03-07 19:42:11 +01:00
|
|
|
*
|
2021-04-22 01:24:48 -07:00
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
2020-03-07 19:42:11 +01:00
|
|
|
*/
|
|
|
|
|
2021-05-13 23:58:45 +01:00
|
|
|
#include <AK/ScopeGuard.h>
|
2020-05-04 12:34:49 +02:00
|
|
|
#include <AK/StringBuilder.h>
|
2020-03-07 19:42:11 +01:00
|
|
|
#include <LibJS/AST.h>
|
|
|
|
#include <LibJS/Interpreter.h>
|
2021-06-22 13:30:48 +02:00
|
|
|
#include <LibJS/Runtime/FunctionEnvironmentRecord.h>
|
2020-03-16 14:20:30 +01:00
|
|
|
#include <LibJS/Runtime/GlobalObject.h>
|
|
|
|
#include <LibJS/Runtime/Object.h>
|
2020-04-27 12:37:27 +02:00
|
|
|
#include <LibJS/Runtime/Reference.h>
|
2020-06-04 14:48:36 +02:00
|
|
|
#include <LibJS/Runtime/ScriptFunction.h>
|
2020-04-02 19:32:21 +02:00
|
|
|
#include <LibJS/Runtime/Shape.h>
|
2020-03-16 14:20:30 +01:00
|
|
|
#include <LibJS/Runtime/Value.h>
|
2020-03-07 19:42:11 +01:00
|
|
|
|
|
|
|
namespace JS {
|
|
|
|
|
2020-09-27 17:24:14 +02:00
|
|
|
NonnullOwnPtr<Interpreter> Interpreter::create_with_existing_global_object(GlobalObject& global_object)
|
|
|
|
{
|
|
|
|
DeferGC defer_gc(global_object.heap());
|
|
|
|
auto interpreter = adopt_own(*new Interpreter(global_object.vm()));
|
|
|
|
interpreter->m_global_object = make_handle(static_cast<Object*>(&global_object));
|
|
|
|
return interpreter;
|
|
|
|
}
|
|
|
|
|
2020-09-20 19:24:44 +02:00
|
|
|
Interpreter::Interpreter(VM& vm)
|
|
|
|
: m_vm(vm)
|
2020-03-07 19:42:11 +01:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
Interpreter::~Interpreter()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2021-03-16 09:09:56 +01:00
|
|
|
void Interpreter::run(GlobalObject& global_object, const Program& program)
|
2020-03-07 19:42:11 +01:00
|
|
|
{
|
2020-11-08 12:54:52 +00:00
|
|
|
auto& vm = this->vm();
|
2021-02-23 20:42:32 +01:00
|
|
|
VERIFY(!vm.exception());
|
2020-04-13 16:42:54 +02:00
|
|
|
|
2020-09-27 15:18:55 +02:00
|
|
|
VM::InterpreterExecutionScope scope(*this);
|
2020-03-09 21:13:55 +01:00
|
|
|
|
2021-06-10 21:01:44 +02:00
|
|
|
vm.set_last_value(Badge<Interpreter> {}, {});
|
2021-03-16 09:12:34 +01:00
|
|
|
|
2020-09-27 15:18:55 +02:00
|
|
|
CallFrame global_call_frame;
|
2021-02-28 10:45:26 +01:00
|
|
|
global_call_frame.current_node = &program;
|
2020-09-27 15:18:55 +02:00
|
|
|
global_call_frame.this_value = &global_object;
|
2020-10-13 23:49:19 +02:00
|
|
|
static FlyString global_execution_context_name = "(global execution context)";
|
|
|
|
global_call_frame.function_name = global_execution_context_name;
|
2021-06-21 23:17:24 +02:00
|
|
|
global_call_frame.environment_record = &global_object;
|
2021-02-23 20:42:32 +01:00
|
|
|
VERIFY(!vm.exception());
|
2020-10-04 13:54:44 +02:00
|
|
|
global_call_frame.is_strict_mode = program.is_strict_mode();
|
2020-11-08 12:54:52 +00:00
|
|
|
vm.push_call_frame(global_call_frame, global_object);
|
2021-02-23 20:42:32 +01:00
|
|
|
VERIFY(!vm.exception());
|
2021-06-08 16:49:06 +03:00
|
|
|
auto value = program.execute(*this, global_object);
|
2021-06-10 21:01:44 +02:00
|
|
|
vm.set_last_value(Badge<Interpreter> {}, value.value_or(js_undefined()));
|
2021-04-24 18:21:02 +02:00
|
|
|
|
|
|
|
vm.pop_call_frame();
|
|
|
|
|
|
|
|
// At this point we may have already run any queued promise jobs via on_call_stack_emptied,
|
|
|
|
// in which case this is a no-op.
|
LibJS: Add initial support for Promises
Almost a year after first working on this, it's finally done: an
implementation of Promises for LibJS! :^)
The core functionality is working and closely following the spec [1].
I mostly took the pseudo code and transformed it into C++ - if you read
and understand it, you will know how the spec implements Promises; and
if you read the spec first, the code will look very familiar.
Implemented functions are:
- Promise() constructor
- Promise.prototype.then()
- Promise.prototype.catch()
- Promise.prototype.finally()
- Promise.resolve()
- Promise.reject()
For the tests I added a new function to test-js's global object,
runQueuedPromiseJobs(), which calls vm.run_queued_promise_jobs().
By design, queued jobs normally only run after the script was fully
executed, making it improssible to test handlers in individual test()
calls by default [2].
Subsequent commits include integrations into LibWeb and js(1) -
pretty-printing, running queued promise jobs when necessary.
This has an unusual amount of dbgln() statements, all hidden behind the
PROMISE_DEBUG flag - I'm leaving them in for now as they've been very
useful while debugging this, things can get quite complex with so many
asynchronously executed functions.
I've not extensively explored use of these APIs for promise-based
functionality in LibWeb (fetch(), Notification.requestPermission()
etc.), but we'll get there in due time.
[1]: https://tc39.es/ecma262/#sec-promise-objects
[2]: https://tc39.es/ecma262/#sec-jobs-and-job-queues
2021-04-01 22:13:29 +02:00
|
|
|
vm.run_queued_promise_jobs();
|
2021-06-12 17:32:54 +03:00
|
|
|
|
2021-06-15 22:16:17 +03:00
|
|
|
vm.run_queued_finalization_registry_cleanup_jobs();
|
|
|
|
|
2021-06-12 17:32:54 +03:00
|
|
|
vm.finish_execution_generation();
|
2020-03-09 21:13:55 +01:00
|
|
|
}
|
|
|
|
|
2020-09-27 15:18:55 +02:00
|
|
|
GlobalObject& Interpreter::global_object()
|
2020-04-27 12:37:27 +02:00
|
|
|
{
|
2020-09-27 15:18:55 +02:00
|
|
|
return static_cast<GlobalObject&>(*m_global_object.cell());
|
2020-04-27 12:37:27 +02:00
|
|
|
}
|
|
|
|
|
2020-09-27 15:18:55 +02:00
|
|
|
const GlobalObject& Interpreter::global_object() const
|
2020-03-09 21:29:22 +01:00
|
|
|
{
|
2020-09-27 15:18:55 +02:00
|
|
|
return static_cast<const GlobalObject&>(*m_global_object.cell());
|
2020-03-09 21:29:22 +01:00
|
|
|
}
|
|
|
|
|
2020-12-08 18:21:55 +01:00
|
|
|
void Interpreter::enter_scope(const ScopeNode& scope_node, ScopeType scope_type, GlobalObject& global_object)
|
2020-09-27 16:56:58 +02:00
|
|
|
{
|
2021-05-13 23:58:45 +01:00
|
|
|
ScopeGuard guard([&] {
|
|
|
|
for (auto& declaration : scope_node.functions()) {
|
2021-06-21 23:47:44 +02:00
|
|
|
auto* function = ScriptFunction::create(global_object, declaration.name(), declaration.body(), declaration.parameters(), declaration.function_length(), current_environment_record(), declaration.kind(), declaration.is_strict_mode());
|
2021-05-13 23:58:45 +01:00
|
|
|
vm().set_variable(declaration.name(), function, global_object);
|
|
|
|
}
|
|
|
|
});
|
2020-09-27 16:56:58 +02:00
|
|
|
|
|
|
|
if (scope_type == ScopeType::Function) {
|
2020-10-04 13:54:44 +02:00
|
|
|
push_scope({ scope_type, scope_node, false });
|
2021-05-13 23:58:45 +01:00
|
|
|
for (auto& declaration : scope_node.functions())
|
2021-06-21 23:47:44 +02:00
|
|
|
current_environment_record()->put_into_environment_record(declaration.name(), { js_undefined(), DeclarationKind::Var });
|
2020-09-27 16:56:58 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
HashMap<FlyString, Variable> scope_variables_with_declaration_kind;
|
|
|
|
scope_variables_with_declaration_kind.ensure_capacity(16);
|
|
|
|
|
2021-06-09 23:21:42 +02:00
|
|
|
bool is_program_node = is<Program>(scope_node);
|
|
|
|
|
2020-09-27 16:56:58 +02:00
|
|
|
for (auto& declaration : scope_node.variables()) {
|
|
|
|
for (auto& declarator : declaration.declarations()) {
|
2021-06-09 23:21:42 +02:00
|
|
|
if (is_program_node && declaration.declaration_kind() == DeclarationKind::Var) {
|
2021-05-29 16:03:19 +04:30
|
|
|
declarator.target().visit(
|
|
|
|
[&](const NonnullRefPtr<Identifier>& id) {
|
|
|
|
global_object.put(id->string(), js_undefined());
|
|
|
|
},
|
|
|
|
[&](const NonnullRefPtr<BindingPattern>& binding) {
|
2021-06-12 18:04:28 -07:00
|
|
|
binding->for_each_bound_name([&](const auto& name) {
|
2021-05-29 16:03:19 +04:30
|
|
|
global_object.put(name, js_undefined());
|
|
|
|
});
|
|
|
|
});
|
2020-09-27 16:56:58 +02:00
|
|
|
if (exception())
|
|
|
|
return;
|
|
|
|
} else {
|
2021-05-29 16:03:19 +04:30
|
|
|
declarator.target().visit(
|
|
|
|
[&](const NonnullRefPtr<Identifier>& id) {
|
|
|
|
scope_variables_with_declaration_kind.set(id->string(), { js_undefined(), declaration.declaration_kind() });
|
|
|
|
},
|
|
|
|
[&](const NonnullRefPtr<BindingPattern>& binding) {
|
2021-06-12 18:04:28 -07:00
|
|
|
binding->for_each_bound_name([&](const auto& name) {
|
2021-05-29 16:03:19 +04:30
|
|
|
scope_variables_with_declaration_kind.set(name, { js_undefined(), declaration.declaration_kind() });
|
|
|
|
});
|
|
|
|
});
|
2020-09-27 16:56:58 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-06-21 23:17:24 +02:00
|
|
|
bool pushed_environment_record = false;
|
2020-09-27 16:56:58 +02:00
|
|
|
|
|
|
|
if (!scope_variables_with_declaration_kind.is_empty()) {
|
2021-06-21 23:47:44 +02:00
|
|
|
auto* environment_record = heap().allocate<DeclarativeEnvironmentRecord>(global_object, move(scope_variables_with_declaration_kind), current_environment_record());
|
2021-06-21 23:17:24 +02:00
|
|
|
vm().call_frame().environment_record = environment_record;
|
|
|
|
pushed_environment_record = true;
|
2020-09-27 16:56:58 +02:00
|
|
|
}
|
|
|
|
|
2021-06-21 23:17:24 +02:00
|
|
|
push_scope({ scope_type, scope_node, pushed_environment_record });
|
2020-09-27 16:56:58 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void Interpreter::exit_scope(const ScopeNode& scope_node)
|
|
|
|
{
|
|
|
|
while (!m_scope_stack.is_empty()) {
|
|
|
|
auto popped_scope = m_scope_stack.take_last();
|
|
|
|
if (popped_scope.pushed_environment)
|
2021-06-21 23:35:30 +02:00
|
|
|
vm().call_frame().environment_record = vm().call_frame().environment_record->outer_environment();
|
2020-09-27 16:56:58 +02:00
|
|
|
if (popped_scope.scope_node.ptr() == &scope_node)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
// If we unwind all the way, just reset m_unwind_until so that future "return" doesn't break.
|
|
|
|
if (m_scope_stack.is_empty())
|
2021-04-13 00:32:32 +02:00
|
|
|
vm().stop_unwind();
|
2020-09-27 16:56:58 +02:00
|
|
|
}
|
|
|
|
|
2020-10-03 17:02:43 -07:00
|
|
|
void Interpreter::push_scope(ScopeFrame frame)
|
|
|
|
{
|
|
|
|
m_scope_stack.append(move(frame));
|
|
|
|
}
|
|
|
|
|
2020-12-08 18:21:55 +01:00
|
|
|
Value Interpreter::execute_statement(GlobalObject& global_object, const Statement& statement, ScopeType scope_type)
|
2020-09-27 16:56:58 +02:00
|
|
|
{
|
2021-01-01 19:34:07 +01:00
|
|
|
if (!is<ScopeNode>(statement))
|
2020-09-27 16:56:58 +02:00
|
|
|
return statement.execute(*this, global_object);
|
|
|
|
|
|
|
|
auto& block = static_cast<const ScopeNode&>(statement);
|
2020-12-08 18:21:55 +01:00
|
|
|
enter_scope(block, scope_type, global_object);
|
2020-09-27 16:56:58 +02:00
|
|
|
|
2021-06-08 16:49:06 +03:00
|
|
|
Value last_value;
|
2020-09-27 16:56:58 +02:00
|
|
|
for (auto& node : block.children()) {
|
2021-03-16 09:12:34 +01:00
|
|
|
auto value = node.execute(*this, global_object);
|
|
|
|
if (!value.is_empty())
|
2021-06-08 16:49:06 +03:00
|
|
|
last_value = value;
|
2020-09-27 16:56:58 +02:00
|
|
|
if (vm().should_unwind()) {
|
|
|
|
if (!block.label().is_null() && vm().should_unwind_until(ScopeType::Breakable, block.label()))
|
|
|
|
vm().stop_unwind();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-03-16 09:12:34 +01:00
|
|
|
if (scope_type == ScopeType::Function) {
|
|
|
|
bool did_return = vm().unwind_until() == ScopeType::Function;
|
|
|
|
if (!did_return)
|
2021-06-08 16:49:06 +03:00
|
|
|
last_value = js_undefined();
|
2021-03-16 09:12:34 +01:00
|
|
|
}
|
2020-09-27 16:56:58 +02:00
|
|
|
|
|
|
|
if (vm().unwind_until() == scope_type)
|
2021-04-13 00:32:32 +02:00
|
|
|
vm().stop_unwind();
|
2020-09-27 16:56:58 +02:00
|
|
|
|
|
|
|
exit_scope(block);
|
|
|
|
|
2021-06-08 16:49:06 +03:00
|
|
|
return last_value;
|
2020-09-27 16:56:58 +02:00
|
|
|
}
|
|
|
|
|
2021-06-22 13:30:48 +02:00
|
|
|
FunctionEnvironmentRecord* Interpreter::current_function_environment_record()
|
2020-11-28 16:02:27 +01:00
|
|
|
{
|
2021-06-22 13:30:48 +02:00
|
|
|
VERIFY(is<FunctionEnvironmentRecord>(vm().call_frame().environment_record));
|
|
|
|
return static_cast<FunctionEnvironmentRecord*>(vm().call_frame().environment_record);
|
2020-11-28 16:02:27 +01:00
|
|
|
}
|
|
|
|
|
2020-03-07 19:42:11 +01:00
|
|
|
}
|