| 
									
										
										
										
											2020-03-07 19:42:11 +01:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * Copyright (c) 2020, Andreas Kling <kling@serenityos.org> | 
					
						
							|  |  |  |  * All rights reserved. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Redistribution and use in source and binary forms, with or without | 
					
						
							|  |  |  |  * modification, are permitted provided that the following conditions are met: | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * 1. Redistributions of source code must retain the above copyright notice, this | 
					
						
							|  |  |  |  *    list of conditions and the following disclaimer. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * 2. Redistributions in binary form must reproduce the above copyright notice, | 
					
						
							|  |  |  |  *    this list of conditions and the following disclaimer in the documentation | 
					
						
							|  |  |  |  *    and/or other materials provided with the distribution. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" | 
					
						
							|  |  |  |  * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | 
					
						
							|  |  |  |  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE | 
					
						
							|  |  |  |  * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE | 
					
						
							|  |  |  |  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL | 
					
						
							|  |  |  |  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR | 
					
						
							|  |  |  |  * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER | 
					
						
							|  |  |  |  * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, | 
					
						
							|  |  |  |  * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | 
					
						
							|  |  |  |  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-09 21:29:22 +01:00
										 |  |  | #include <AK/Badge.h>
 | 
					
						
							| 
									
										
										
										
											2020-03-07 19:42:11 +01:00
										 |  |  | #include <LibJS/AST.h>
 | 
					
						
							|  |  |  | #include <LibJS/Interpreter.h>
 | 
					
						
							| 
									
										
										
										
											2020-03-20 21:01:36 +01:00
										 |  |  | #include <LibJS/Runtime/ArrayPrototype.h>
 | 
					
						
							| 
									
										
										
										
											2020-03-30 00:21:56 +01:00
										 |  |  | #include <LibJS/Runtime/DatePrototype.h>
 | 
					
						
							| 
									
										
										
										
											2020-03-24 14:37:39 +01:00
										 |  |  | #include <LibJS/Runtime/Error.h>
 | 
					
						
							|  |  |  | #include <LibJS/Runtime/ErrorPrototype.h>
 | 
					
						
							| 
									
										
										
										
											2020-04-04 14:34:31 +01:00
										 |  |  | #include <LibJS/Runtime/FunctionPrototype.h>
 | 
					
						
							| 
									
										
										
										
											2020-03-16 14:20:30 +01:00
										 |  |  | #include <LibJS/Runtime/GlobalObject.h>
 | 
					
						
							|  |  |  | #include <LibJS/Runtime/NativeFunction.h>
 | 
					
						
							| 
									
										
										
										
											2020-04-04 23:13:13 +02:00
										 |  |  | #include <LibJS/Runtime/NumberPrototype.h>
 | 
					
						
							| 
									
										
										
										
											2020-03-16 14:20:30 +01:00
										 |  |  | #include <LibJS/Runtime/Object.h>
 | 
					
						
							|  |  |  | #include <LibJS/Runtime/ObjectPrototype.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/StringPrototype.h>
 | 
					
						
							|  |  |  | #include <LibJS/Runtime/Value.h>
 | 
					
						
							| 
									
										
										
										
											2020-03-07 19:42:11 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | namespace JS { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | Interpreter::Interpreter() | 
					
						
							| 
									
										
										
										
											2020-03-08 19:23:58 +01:00
										 |  |  |     : m_heap(*this) | 
					
						
							| 
									
										
										
										
											2020-03-07 19:42:11 +01:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2020-04-02 19:32:21 +02:00
										 |  |  |     m_empty_object_shape = heap().allocate<Shape>(); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-15 15:25:43 +01:00
										 |  |  |     m_object_prototype = heap().allocate<ObjectPrototype>(); | 
					
						
							| 
									
										
										
										
											2020-04-04 14:34:31 +01:00
										 |  |  |     m_function_prototype = heap().allocate<FunctionPrototype>(); | 
					
						
							| 
									
										
										
										
											2020-03-15 15:11:13 +01:00
										 |  |  |     m_string_prototype = heap().allocate<StringPrototype>(); | 
					
						
							| 
									
										
										
										
											2020-03-20 21:01:36 +01:00
										 |  |  |     m_array_prototype = heap().allocate<ArrayPrototype>(); | 
					
						
							| 
									
										
										
										
											2020-03-24 14:37:39 +01:00
										 |  |  |     m_error_prototype = heap().allocate<ErrorPrototype>(); | 
					
						
							| 
									
										
										
										
											2020-03-30 00:21:56 +01:00
										 |  |  |     m_date_prototype = heap().allocate<DatePrototype>(); | 
					
						
							| 
									
										
										
										
											2020-04-04 23:13:13 +02:00
										 |  |  |     m_number_prototype = heap().allocate<NumberPrototype>(); | 
					
						
							| 
									
										
										
										
											2020-03-07 19:42:11 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | Interpreter::~Interpreter() | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-23 16:46:41 +01:00
										 |  |  | Value Interpreter::run(const Statement& statement, Vector<Argument> arguments, ScopeType scope_type) | 
					
						
							| 
									
										
										
										
											2020-03-07 19:42:11 +01:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2020-03-23 16:46:41 +01:00
										 |  |  |     if (!statement.is_scope_node()) | 
					
						
							|  |  |  |         return statement.execute(*this); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-02 09:53:27 +02:00
										 |  |  |     auto& block = static_cast<const ScopeNode&>(statement); | 
					
						
							| 
									
										
										
										
											2020-03-23 16:46:41 +01:00
										 |  |  |     enter_scope(block, move(arguments), scope_type); | 
					
						
							| 
									
										
										
										
											2020-03-07 19:42:11 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     Value last_value = js_undefined(); | 
					
						
							| 
									
										
										
										
											2020-03-23 16:46:41 +01:00
										 |  |  |     for (auto& node : block.children()) { | 
					
						
							| 
									
										
										
										
											2020-03-07 19:42:11 +01:00
										 |  |  |         last_value = node.execute(*this); | 
					
						
							| 
									
										
										
										
											2020-03-23 19:19:03 +01:00
										 |  |  |         if (m_unwind_until != ScopeType::None) | 
					
						
							|  |  |  |             break; | 
					
						
							| 
									
										
										
										
											2020-03-07 19:42:11 +01:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-23 19:19:03 +01:00
										 |  |  |     if (m_unwind_until == scope_type) | 
					
						
							|  |  |  |         m_unwind_until = ScopeType::None; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-23 16:46:41 +01:00
										 |  |  |     exit_scope(block); | 
					
						
							| 
									
										
										
										
											2020-03-07 19:42:11 +01:00
										 |  |  |     return last_value; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-12 19:53:31 +01:00
										 |  |  | void Interpreter::enter_scope(const ScopeNode& scope_node, Vector<Argument> arguments, ScopeType scope_type) | 
					
						
							| 
									
										
										
										
											2020-03-07 19:42:11 +01:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2020-03-22 11:07:55 +01:00
										 |  |  |     HashMap<FlyString, Variable> scope_variables_with_declaration_type; | 
					
						
							| 
									
										
										
										
											2020-03-12 19:53:31 +01:00
										 |  |  |     for (auto& argument : arguments) { | 
					
						
							|  |  |  |         scope_variables_with_declaration_type.set(argument.name, { argument.value, DeclarationType::Var }); | 
					
						
							| 
									
										
										
										
											2020-03-12 14:24:34 +02:00
										 |  |  |     } | 
					
						
							|  |  |  |     m_scope_stack.append({ scope_type, scope_node, move(scope_variables_with_declaration_type) }); | 
					
						
							| 
									
										
										
										
											2020-03-07 19:42:11 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void Interpreter::exit_scope(const ScopeNode& scope_node) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2020-03-27 11:34:58 +01:00
										 |  |  |     while (!m_scope_stack.is_empty()) { | 
					
						
							|  |  |  |         auto popped_scope = m_scope_stack.take_last(); | 
					
						
							|  |  |  |         if (popped_scope.scope_node.ptr() == &scope_node) | 
					
						
							|  |  |  |             break; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2020-03-07 19:42:11 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-23 19:19:03 +01:00
										 |  |  |     // If we unwind all the way, just reset m_unwind_until so that future "return" doesn't break.
 | 
					
						
							|  |  |  |     if (m_scope_stack.is_empty()) | 
					
						
							|  |  |  |         m_unwind_until = ScopeType::None; | 
					
						
							| 
									
										
										
										
											2020-03-07 19:42:11 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-22 11:07:55 +01:00
										 |  |  | void Interpreter::declare_variable(const FlyString& name, DeclarationType declaration_type) | 
					
						
							| 
									
										
										
										
											2020-03-09 21:13:55 +01:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2020-03-11 21:09:20 +02:00
										 |  |  |     switch (declaration_type) { | 
					
						
							|  |  |  |     case DeclarationType::Var: | 
					
						
							|  |  |  |         for (ssize_t i = m_scope_stack.size() - 1; i >= 0; --i) { | 
					
						
							|  |  |  |             auto& scope = m_scope_stack.at(i); | 
					
						
							|  |  |  |             if (scope.type == ScopeType::Function) { | 
					
						
							| 
									
										
										
										
											2020-03-12 14:24:34 +02:00
										 |  |  |                 if (scope.variables.get(name).has_value() && scope.variables.get(name).value().declaration_type != DeclarationType::Var) | 
					
						
							|  |  |  |                     ASSERT_NOT_REACHED(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                 scope.variables.set(move(name), { js_undefined(), declaration_type }); | 
					
						
							| 
									
										
										
										
											2020-03-11 21:09:20 +02:00
										 |  |  |                 return; | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         global_object().put(move(name), js_undefined()); | 
					
						
							|  |  |  |         break; | 
					
						
							|  |  |  |     case DeclarationType::Let: | 
					
						
							| 
									
										
										
										
											2020-03-12 14:24:34 +02:00
										 |  |  |     case DeclarationType::Const: | 
					
						
							| 
									
										
										
										
											2020-03-13 20:16:37 +02:00
										 |  |  |         if (m_scope_stack.last().variables.get(name).has_value()) | 
					
						
							| 
									
										
										
										
											2020-03-12 14:24:34 +02:00
										 |  |  |             ASSERT_NOT_REACHED(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         m_scope_stack.last().variables.set(move(name), { js_undefined(), declaration_type }); | 
					
						
							| 
									
										
										
										
											2020-03-11 21:09:20 +02:00
										 |  |  |         break; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2020-03-09 21:13:55 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-22 11:07:55 +01:00
										 |  |  | void Interpreter::set_variable(const FlyString& name, Value value, bool first_assignment) | 
					
						
							| 
									
										
										
										
											2020-03-09 21:13:55 +01:00
										 |  |  | { | 
					
						
							|  |  |  |     for (ssize_t i = m_scope_stack.size() - 1; i >= 0; --i) { | 
					
						
							|  |  |  |         auto& scope = m_scope_stack.at(i); | 
					
						
							| 
									
										
										
										
											2020-03-12 14:24:34 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |         auto possible_match = scope.variables.get(name); | 
					
						
							|  |  |  |         if (possible_match.has_value()) { | 
					
						
							| 
									
										
										
										
											2020-03-15 23:57:54 +02:00
										 |  |  |             if (!first_assignment && possible_match.value().declaration_type == DeclarationType::Const) | 
					
						
							| 
									
										
										
										
											2020-03-12 14:24:34 +02:00
										 |  |  |                 ASSERT_NOT_REACHED(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             scope.variables.set(move(name), { move(value), possible_match.value().declaration_type }); | 
					
						
							| 
									
										
										
										
											2020-03-09 21:13:55 +01:00
										 |  |  |             return; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     global_object().put(move(name), move(value)); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-27 12:54:18 +01:00
										 |  |  | Optional<Value> Interpreter::get_variable(const FlyString& name) | 
					
						
							| 
									
										
										
										
											2020-03-09 21:13:55 +01:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2020-03-28 16:32:46 +01:00
										 |  |  |     if (name == "this") | 
					
						
							|  |  |  |         return this_value(); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-09 21:13:55 +01:00
										 |  |  |     for (ssize_t i = m_scope_stack.size() - 1; i >= 0; --i) { | 
					
						
							|  |  |  |         auto& scope = m_scope_stack.at(i); | 
					
						
							|  |  |  |         auto value = scope.variables.get(name); | 
					
						
							|  |  |  |         if (value.has_value()) | 
					
						
							| 
									
										
										
										
											2020-03-12 14:24:34 +02:00
										 |  |  |             return value.value().value; | 
					
						
							| 
									
										
										
										
											2020-03-09 21:13:55 +01:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     return global_object().get(name); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-15 15:12:34 +01:00
										 |  |  | void Interpreter::gather_roots(Badge<Heap>, HashTable<Cell*>& roots) | 
					
						
							| 
									
										
										
										
											2020-03-09 21:29:22 +01:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2020-04-02 19:32:21 +02:00
										 |  |  |     roots.set(m_empty_object_shape); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-09 21:29:22 +01:00
										 |  |  |     roots.set(m_global_object); | 
					
						
							| 
									
										
										
										
											2020-03-15 15:11:13 +01:00
										 |  |  |     roots.set(m_string_prototype); | 
					
						
							| 
									
										
										
										
											2020-03-15 15:25:43 +01:00
										 |  |  |     roots.set(m_object_prototype); | 
					
						
							| 
									
										
										
										
											2020-03-20 21:01:36 +01:00
										 |  |  |     roots.set(m_array_prototype); | 
					
						
							| 
									
										
										
										
											2020-03-24 14:37:39 +01:00
										 |  |  |     roots.set(m_error_prototype); | 
					
						
							| 
									
										
										
										
											2020-03-30 00:21:56 +01:00
										 |  |  |     roots.set(m_date_prototype); | 
					
						
							| 
									
										
										
										
											2020-04-04 14:34:31 +01:00
										 |  |  |     roots.set(m_function_prototype); | 
					
						
							| 
									
										
										
										
											2020-04-04 23:13:13 +02:00
										 |  |  |     roots.set(m_number_prototype); | 
					
						
							| 
									
										
										
										
											2020-03-24 14:37:39 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     roots.set(m_exception); | 
					
						
							| 
									
										
										
										
											2020-03-09 21:29:22 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     for (auto& scope : m_scope_stack) { | 
					
						
							|  |  |  |         for (auto& it : scope.variables) { | 
					
						
							| 
									
										
										
										
											2020-03-12 14:24:34 +02:00
										 |  |  |             if (it.value.value.is_cell()) | 
					
						
							|  |  |  |                 roots.set(it.value.value.as_cell()); | 
					
						
							| 
									
										
										
										
											2020-03-09 21:29:22 +01:00
										 |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2020-03-15 15:07:49 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-17 11:00:09 +01:00
										 |  |  |     for (auto& call_frame : m_call_stack) { | 
					
						
							|  |  |  |         if (call_frame.this_value.is_cell()) | 
					
						
							|  |  |  |             roots.set(call_frame.this_value.as_cell()); | 
					
						
							|  |  |  |         for (auto& argument : call_frame.arguments) { | 
					
						
							|  |  |  |             if (argument.is_cell()) | 
					
						
							|  |  |  |                 roots.set(argument.as_cell()); | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2020-03-15 15:07:49 +01:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2020-03-09 21:29:22 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-18 15:20:49 +01:00
										 |  |  | Value Interpreter::call(Function* function, Value this_value, const Vector<Value>& arguments) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     auto& call_frame = push_call_frame(); | 
					
						
							|  |  |  |     call_frame.this_value = this_value; | 
					
						
							|  |  |  |     call_frame.arguments = arguments; | 
					
						
							| 
									
										
										
										
											2020-03-28 22:48:35 +01:00
										 |  |  |     auto result = function->call(*this); | 
					
						
							| 
									
										
										
										
											2020-03-18 15:20:49 +01:00
										 |  |  |     pop_call_frame(); | 
					
						
							|  |  |  |     return result; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-24 22:03:50 +01:00
										 |  |  | Value Interpreter::throw_exception(Exception* exception) | 
					
						
							| 
									
										
										
										
											2020-03-24 14:37:39 +01:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2020-04-04 22:14:03 +02:00
										 |  |  |     if (exception->value().is_object() && exception->value().as_object().is_error()) { | 
					
						
							|  |  |  |         auto& error = static_cast<Error&>(exception->value().as_object()); | 
					
						
							|  |  |  |         dbg() << "Throwing JavaScript Error: " << error.name() << ", " << error.message(); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2020-03-24 14:37:39 +01:00
										 |  |  |     m_exception = exception; | 
					
						
							|  |  |  |     unwind(ScopeType::Try); | 
					
						
							|  |  |  |     return {}; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-07 19:42:11 +01:00
										 |  |  | } |