123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010 |
- /*
- * Copyright (c) 2020, Andreas Kling <kling@serenityos.org>
- * Copyright (c) 2020, Linus Groh <mail@linusgroh.de>
- * 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.
- */
- #include <AK/HashMap.h>
- #include <AK/HashTable.h>
- #include <AK/ScopeGuard.h>
- #include <AK/StringBuilder.h>
- #include <LibCrypto/BigInt/SignedBigInteger.h>
- #include <LibJS/AST.h>
- #include <LibJS/Interpreter.h>
- #include <LibJS/Runtime/Accessor.h>
- #include <LibJS/Runtime/Array.h>
- #include <LibJS/Runtime/BigInt.h>
- #include <LibJS/Runtime/Error.h>
- #include <LibJS/Runtime/GlobalObject.h>
- #include <LibJS/Runtime/IteratorOperations.h>
- #include <LibJS/Runtime/MarkedValueList.h>
- #include <LibJS/Runtime/NativeFunction.h>
- #include <LibJS/Runtime/PrimitiveString.h>
- #include <LibJS/Runtime/Reference.h>
- #include <LibJS/Runtime/RegExpObject.h>
- #include <LibJS/Runtime/ScriptFunction.h>
- #include <LibJS/Runtime/Shape.h>
- #include <LibJS/Runtime/StringObject.h>
- #include <stdio.h>
- namespace JS {
- static void update_function_name(Value& value, const FlyString& name, HashTable<const JS::Cell*>& visited)
- {
- if (!value.is_object())
- return;
- if (visited.contains(value.as_cell()))
- return;
- visited.set(value.as_cell());
- auto& object = value.as_object();
- if (object.is_function()) {
- auto& function = static_cast<Function&>(object);
- if (function.is_script_function() && function.name().is_empty())
- static_cast<ScriptFunction&>(function).set_name(name);
- } else if (object.is_array()) {
- auto& array = static_cast<Array&>(object);
- for (auto& entry : array.indexed_properties().values_unordered())
- update_function_name(entry.value, name, visited);
- }
- }
- static void update_function_name(Value& value, const FlyString& name)
- {
- HashTable<const JS::Cell*> visited;
- update_function_name(value, name, visited);
- }
- static String get_function_name(GlobalObject& global_object, Value value)
- {
- if (value.is_symbol())
- return String::formatted("[{}]", value.as_symbol().description());
- if (value.is_string())
- return value.as_string().string();
- return value.to_string(global_object);
- }
- Value ScopeNode::execute(Interpreter& interpreter, GlobalObject& global_object) const
- {
- return interpreter.execute_statement(global_object, *this);
- }
- Value Program::execute(Interpreter& interpreter, GlobalObject& global_object) const
- {
- return interpreter.execute_statement(global_object, *this, {}, ScopeType::Block);
- }
- Value FunctionDeclaration::execute(Interpreter&, GlobalObject&) const
- {
- return js_undefined();
- }
- Value FunctionExpression::execute(Interpreter& interpreter, GlobalObject& global_object) const
- {
- return ScriptFunction::create(global_object, name(), body(), parameters(), function_length(), interpreter.current_environment(), is_strict_mode() || interpreter.vm().in_strict_mode(), m_is_arrow_function);
- }
- Value ExpressionStatement::execute(Interpreter& interpreter, GlobalObject& global_object) const
- {
- return m_expression->execute(interpreter, global_object);
- }
- CallExpression::ThisAndCallee CallExpression::compute_this_and_callee(Interpreter& interpreter, GlobalObject& global_object) const
- {
- auto& vm = interpreter.vm();
- if (is_new_expression()) {
- // Computing |this| is irrelevant for "new" expression.
- return { js_undefined(), m_callee->execute(interpreter, global_object) };
- }
- if (m_callee->is_super_expression()) {
- // If we are calling super, |this| has not been initialized yet, and would not be meaningful to provide.
- auto new_target = interpreter.vm().get_new_target();
- ASSERT(new_target.is_function());
- return { js_undefined(), new_target };
- }
- if (m_callee->is_member_expression()) {
- auto& member_expression = static_cast<const MemberExpression&>(*m_callee);
- bool is_super_property_lookup = member_expression.object().is_super_expression();
- auto lookup_target = is_super_property_lookup ? interpreter.current_environment()->get_super_base() : member_expression.object().execute(interpreter, global_object);
- if (interpreter.exception())
- return {};
- if (is_super_property_lookup && lookup_target.is_nullish()) {
- interpreter.vm().throw_exception<TypeError>(global_object, ErrorType::ObjectPrototypeNullOrUndefinedOnSuperPropertyAccess, lookup_target.to_string_without_side_effects());
- return {};
- }
- auto* this_value = is_super_property_lookup ? &vm.this_value(global_object).as_object() : lookup_target.to_object(global_object);
- if (interpreter.exception())
- return {};
- auto property_name = member_expression.computed_property_name(interpreter, global_object);
- if (!property_name.is_valid())
- return {};
- auto callee = lookup_target.to_object(global_object)->get(property_name).value_or(js_undefined());
- return { this_value, callee };
- }
- return { &global_object, m_callee->execute(interpreter, global_object) };
- }
- Value CallExpression::execute(Interpreter& interpreter, GlobalObject& global_object) const
- {
- auto [this_value, callee] = compute_this_and_callee(interpreter, global_object);
- if (interpreter.exception())
- return {};
- ASSERT(!callee.is_empty());
- if (!callee.is_function()
- || (is_new_expression() && (callee.as_object().is_native_function() && !static_cast<NativeFunction&>(callee.as_object()).has_constructor()))) {
- String error_message;
- auto call_type = is_new_expression() ? "constructor" : "function";
- if (m_callee->is_identifier() || m_callee->is_member_expression()) {
- String expression_string;
- if (m_callee->is_identifier()) {
- expression_string = static_cast<const Identifier&>(*m_callee).string();
- } else {
- expression_string = static_cast<const MemberExpression&>(*m_callee).to_string_approximation();
- }
- interpreter.vm().throw_exception<TypeError>(global_object, ErrorType::IsNotAEvaluatedFrom, callee.to_string_without_side_effects(), call_type, expression_string);
- } else {
- interpreter.vm().throw_exception<TypeError>(global_object, ErrorType::IsNotA, callee.to_string_without_side_effects(), call_type);
- }
- return {};
- }
- auto& function = callee.as_function();
- MarkedValueList arguments(interpreter.heap());
- for (size_t i = 0; i < m_arguments.size(); ++i) {
- auto value = m_arguments[i].value->execute(interpreter, global_object);
- if (interpreter.exception())
- return {};
- if (m_arguments[i].is_spread) {
- get_iterator_values(global_object, value, [&](Value iterator_value) {
- if (interpreter.exception())
- return IterationDecision::Break;
- arguments.append(iterator_value);
- return IterationDecision::Continue;
- });
- if (interpreter.exception())
- return {};
- } else {
- arguments.append(value);
- }
- }
- Object* new_object = nullptr;
- Value result;
- if (is_new_expression()) {
- result = interpreter.vm().construct(function, function, move(arguments), global_object);
- if (result.is_object())
- new_object = &result.as_object();
- } else if (m_callee->is_super_expression()) {
- auto* super_constructor = interpreter.current_environment()->current_function()->prototype();
- // FIXME: Functions should track their constructor kind.
- if (!super_constructor || !super_constructor->is_function()) {
- interpreter.vm().throw_exception<TypeError>(global_object, ErrorType::NotAConstructor, "Super constructor");
- return {};
- }
- result = interpreter.vm().construct(static_cast<Function&>(*super_constructor), function, move(arguments), global_object);
- if (interpreter.exception())
- return {};
- interpreter.current_environment()->bind_this_value(global_object, result);
- } else {
- result = interpreter.vm().call(function, this_value, move(arguments));
- }
- if (interpreter.exception())
- return {};
- if (is_new_expression()) {
- if (result.is_object())
- return result;
- return new_object;
- }
- return result;
- }
- Value ReturnStatement::execute(Interpreter& interpreter, GlobalObject& global_object) const
- {
- auto value = argument() ? argument()->execute(interpreter, global_object) : js_undefined();
- if (interpreter.exception())
- return {};
- interpreter.vm().unwind(ScopeType::Function);
- return value;
- }
- Value IfStatement::execute(Interpreter& interpreter, GlobalObject& global_object) const
- {
- auto predicate_result = m_predicate->execute(interpreter, global_object);
- if (interpreter.exception())
- return {};
- if (predicate_result.to_boolean())
- return interpreter.execute_statement(global_object, *m_consequent);
- if (m_alternate)
- return interpreter.execute_statement(global_object, *m_alternate);
- return js_undefined();
- }
- Value WhileStatement::execute(Interpreter& interpreter, GlobalObject& global_object) const
- {
- Value last_value = js_undefined();
- while (m_test->execute(interpreter, global_object).to_boolean()) {
- if (interpreter.exception())
- return {};
- last_value = interpreter.execute_statement(global_object, *m_body);
- if (interpreter.exception())
- return {};
- }
- return last_value;
- }
- Value DoWhileStatement::execute(Interpreter& interpreter, GlobalObject& global_object) const
- {
- Value last_value = js_undefined();
- do {
- if (interpreter.exception())
- return {};
- last_value = interpreter.execute_statement(global_object, *m_body);
- if (interpreter.exception())
- return {};
- } while (m_test->execute(interpreter, global_object).to_boolean());
- return last_value;
- }
- Value ForStatement::execute(Interpreter& interpreter, GlobalObject& global_object) const
- {
- RefPtr<BlockStatement> wrapper;
- if (m_init && m_init->is_variable_declaration() && static_cast<const VariableDeclaration*>(m_init.ptr())->declaration_kind() != DeclarationKind::Var) {
- wrapper = create_ast_node<BlockStatement>();
- NonnullRefPtrVector<VariableDeclaration> decls;
- decls.append(*static_cast<const VariableDeclaration*>(m_init.ptr()));
- wrapper->add_variables(decls);
- interpreter.enter_scope(*wrapper, {}, ScopeType::Block, global_object);
- }
- auto wrapper_cleanup = ScopeGuard([&] {
- if (wrapper)
- interpreter.exit_scope(*wrapper);
- });
- Value last_value = js_undefined();
- if (m_init) {
- m_init->execute(interpreter, global_object);
- if (interpreter.exception())
- return {};
- }
- if (m_test) {
- while (true) {
- auto test_result = m_test->execute(interpreter, global_object);
- if (interpreter.exception())
- return {};
- if (!test_result.to_boolean())
- break;
- last_value = interpreter.execute_statement(global_object, *m_body);
- if (interpreter.exception())
- return {};
- if (interpreter.vm().should_unwind()) {
- if (interpreter.vm().should_unwind_until(ScopeType::Continuable, m_label)) {
- interpreter.vm().stop_unwind();
- } else if (interpreter.vm().should_unwind_until(ScopeType::Breakable, m_label)) {
- interpreter.vm().stop_unwind();
- break;
- } else {
- return js_undefined();
- }
- }
- if (m_update) {
- m_update->execute(interpreter, global_object);
- if (interpreter.exception())
- return {};
- }
- }
- } else {
- while (true) {
- last_value = interpreter.execute_statement(global_object, *m_body);
- if (interpreter.exception())
- return {};
- if (interpreter.vm().should_unwind()) {
- if (interpreter.vm().should_unwind_until(ScopeType::Continuable, m_label)) {
- interpreter.vm().stop_unwind();
- } else if (interpreter.vm().should_unwind_until(ScopeType::Breakable, m_label)) {
- interpreter.vm().stop_unwind();
- break;
- } else {
- return js_undefined();
- }
- }
- if (m_update) {
- m_update->execute(interpreter, global_object);
- if (interpreter.exception())
- return {};
- }
- }
- }
- return last_value;
- }
- static FlyString variable_from_for_declaration(Interpreter& interpreter, GlobalObject& global_object, NonnullRefPtr<ASTNode> node, RefPtr<BlockStatement> wrapper)
- {
- FlyString variable_name;
- if (node->is_variable_declaration()) {
- auto* variable_declaration = static_cast<const VariableDeclaration*>(node.ptr());
- ASSERT(!variable_declaration->declarations().is_empty());
- if (variable_declaration->declaration_kind() != DeclarationKind::Var) {
- wrapper = create_ast_node<BlockStatement>();
- interpreter.enter_scope(*wrapper, {}, ScopeType::Block, global_object);
- }
- variable_declaration->execute(interpreter, global_object);
- variable_name = variable_declaration->declarations().first().id().string();
- } else if (node->is_identifier()) {
- variable_name = static_cast<const Identifier&>(*node).string();
- } else {
- ASSERT_NOT_REACHED();
- }
- return variable_name;
- }
- Value ForInStatement::execute(Interpreter& interpreter, GlobalObject& global_object) const
- {
- if (!m_lhs->is_variable_declaration() && !m_lhs->is_identifier()) {
- // FIXME: Implement "for (foo.bar in baz)", "for (foo[0] in bar)"
- ASSERT_NOT_REACHED();
- }
- RefPtr<BlockStatement> wrapper;
- auto variable_name = variable_from_for_declaration(interpreter, global_object, m_lhs, wrapper);
- auto wrapper_cleanup = ScopeGuard([&] {
- if (wrapper)
- interpreter.exit_scope(*wrapper);
- });
- auto last_value = js_undefined();
- auto rhs_result = m_rhs->execute(interpreter, global_object);
- if (interpreter.exception())
- return {};
- auto* object = rhs_result.to_object(global_object);
- while (object) {
- auto property_names = object->get_own_properties(*object, Object::PropertyKind::Key, true);
- for (auto& property_name : property_names.as_object().indexed_properties()) {
- interpreter.vm().set_variable(variable_name, property_name.value_and_attributes(object).value, global_object);
- if (interpreter.exception())
- return {};
- last_value = interpreter.execute_statement(global_object, *m_body);
- if (interpreter.exception())
- return {};
- if (interpreter.vm().should_unwind()) {
- if (interpreter.vm().should_unwind_until(ScopeType::Continuable, m_label)) {
- interpreter.vm().stop_unwind();
- } else if (interpreter.vm().should_unwind_until(ScopeType::Breakable, m_label)) {
- interpreter.vm().stop_unwind();
- break;
- } else {
- return js_undefined();
- }
- }
- }
- object = object->prototype();
- if (interpreter.exception())
- return {};
- }
- return last_value;
- }
- Value ForOfStatement::execute(Interpreter& interpreter, GlobalObject& global_object) const
- {
- if (!m_lhs->is_variable_declaration() && !m_lhs->is_identifier()) {
- // FIXME: Implement "for (foo.bar of baz)", "for (foo[0] of bar)"
- ASSERT_NOT_REACHED();
- }
- RefPtr<BlockStatement> wrapper;
- auto variable_name = variable_from_for_declaration(interpreter, global_object, m_lhs, wrapper);
- auto wrapper_cleanup = ScopeGuard([&] {
- if (wrapper)
- interpreter.exit_scope(*wrapper);
- });
- auto last_value = js_undefined();
- auto rhs_result = m_rhs->execute(interpreter, global_object);
- if (interpreter.exception())
- return {};
- get_iterator_values(global_object, rhs_result, [&](Value value) {
- interpreter.vm().set_variable(variable_name, value, global_object);
- last_value = interpreter.execute_statement(global_object, *m_body);
- if (interpreter.exception())
- return IterationDecision::Break;
- if (interpreter.vm().should_unwind()) {
- if (interpreter.vm().should_unwind_until(ScopeType::Continuable, m_label)) {
- interpreter.vm().stop_unwind();
- } else if (interpreter.vm().should_unwind_until(ScopeType::Breakable, m_label)) {
- interpreter.vm().stop_unwind();
- return IterationDecision::Break;
- } else {
- return IterationDecision::Break;
- }
- }
- return IterationDecision::Continue;
- });
- if (interpreter.exception())
- return {};
- if (interpreter.vm().should_unwind())
- return js_undefined();
- return last_value;
- }
- Value BinaryExpression::execute(Interpreter& interpreter, GlobalObject& global_object) const
- {
- auto lhs_result = m_lhs->execute(interpreter, global_object);
- if (interpreter.exception())
- return {};
- auto rhs_result = m_rhs->execute(interpreter, global_object);
- if (interpreter.exception())
- return {};
- switch (m_op) {
- case BinaryOp::Addition:
- return add(global_object, lhs_result, rhs_result);
- case BinaryOp::Subtraction:
- return sub(global_object, lhs_result, rhs_result);
- case BinaryOp::Multiplication:
- return mul(global_object, lhs_result, rhs_result);
- case BinaryOp::Division:
- return div(global_object, lhs_result, rhs_result);
- case BinaryOp::Modulo:
- return mod(global_object, lhs_result, rhs_result);
- case BinaryOp::Exponentiation:
- return exp(global_object, lhs_result, rhs_result);
- case BinaryOp::TypedEquals:
- return Value(strict_eq(lhs_result, rhs_result));
- case BinaryOp::TypedInequals:
- return Value(!strict_eq(lhs_result, rhs_result));
- case BinaryOp::AbstractEquals:
- return Value(abstract_eq(global_object, lhs_result, rhs_result));
- case BinaryOp::AbstractInequals:
- return Value(!abstract_eq(global_object, lhs_result, rhs_result));
- case BinaryOp::GreaterThan:
- return greater_than(global_object, lhs_result, rhs_result);
- case BinaryOp::GreaterThanEquals:
- return greater_than_equals(global_object, lhs_result, rhs_result);
- case BinaryOp::LessThan:
- return less_than(global_object, lhs_result, rhs_result);
- case BinaryOp::LessThanEquals:
- return less_than_equals(global_object, lhs_result, rhs_result);
- case BinaryOp::BitwiseAnd:
- return bitwise_and(global_object, lhs_result, rhs_result);
- case BinaryOp::BitwiseOr:
- return bitwise_or(global_object, lhs_result, rhs_result);
- case BinaryOp::BitwiseXor:
- return bitwise_xor(global_object, lhs_result, rhs_result);
- case BinaryOp::LeftShift:
- return left_shift(global_object, lhs_result, rhs_result);
- case BinaryOp::RightShift:
- return right_shift(global_object, lhs_result, rhs_result);
- case BinaryOp::UnsignedRightShift:
- return unsigned_right_shift(global_object, lhs_result, rhs_result);
- case BinaryOp::In:
- return in(global_object, lhs_result, rhs_result);
- case BinaryOp::InstanceOf:
- return instance_of(global_object, lhs_result, rhs_result);
- }
- ASSERT_NOT_REACHED();
- }
- Value LogicalExpression::execute(Interpreter& interpreter, GlobalObject& global_object) const
- {
- auto lhs_result = m_lhs->execute(interpreter, global_object);
- if (interpreter.exception())
- return {};
- switch (m_op) {
- case LogicalOp::And:
- if (lhs_result.to_boolean()) {
- auto rhs_result = m_rhs->execute(interpreter, global_object);
- if (interpreter.exception())
- return {};
- return rhs_result;
- }
- return lhs_result;
- case LogicalOp::Or: {
- if (lhs_result.to_boolean())
- return lhs_result;
- auto rhs_result = m_rhs->execute(interpreter, global_object);
- if (interpreter.exception())
- return {};
- return rhs_result;
- }
- case LogicalOp::NullishCoalescing:
- if (lhs_result.is_nullish()) {
- auto rhs_result = m_rhs->execute(interpreter, global_object);
- if (interpreter.exception())
- return {};
- return rhs_result;
- }
- return lhs_result;
- }
- ASSERT_NOT_REACHED();
- }
- Reference Expression::to_reference(Interpreter&, GlobalObject&) const
- {
- return {};
- }
- Reference Identifier::to_reference(Interpreter& interpreter, GlobalObject&) const
- {
- return interpreter.vm().get_reference(string());
- }
- Reference MemberExpression::to_reference(Interpreter& interpreter, GlobalObject& global_object) const
- {
- auto object_value = m_object->execute(interpreter, global_object);
- if (interpreter.exception())
- return {};
- auto property_name = computed_property_name(interpreter, global_object);
- if (!property_name.is_valid())
- return {};
- return { object_value, property_name };
- }
- Value UnaryExpression::execute(Interpreter& interpreter, GlobalObject& global_object) const
- {
- auto& vm = interpreter.vm();
- if (m_op == UnaryOp::Delete) {
- auto reference = m_lhs->to_reference(interpreter, global_object);
- if (interpreter.exception())
- return {};
- if (reference.is_unresolvable())
- return Value(true);
- // FIXME: Support deleting locals
- ASSERT(!reference.is_local_variable());
- if (reference.is_global_variable())
- return global_object.delete_property(reference.name());
- auto* base_object = reference.base().to_object(global_object);
- if (!base_object)
- return {};
- return base_object->delete_property(reference.name());
- }
- Value lhs_result;
- if (m_op == UnaryOp::Typeof && m_lhs->is_identifier()) {
- auto reference = m_lhs->to_reference(interpreter, global_object);
- if (interpreter.exception()) {
- return {};
- }
- // FIXME: standard recommends checking with is_unresolvable but it ALWAYS return false here
- if (reference.is_local_variable() || reference.is_global_variable()) {
- auto name = reference.name();
- lhs_result = interpreter.vm().get_variable(name.to_string(), global_object).value_or(js_undefined());
- if (interpreter.exception())
- return {};
- }
- } else {
- lhs_result = m_lhs->execute(interpreter, global_object);
- if (interpreter.exception())
- return {};
- }
- switch (m_op) {
- case UnaryOp::BitwiseNot:
- return bitwise_not(global_object, lhs_result);
- case UnaryOp::Not:
- return Value(!lhs_result.to_boolean());
- case UnaryOp::Plus:
- return unary_plus(global_object, lhs_result);
- case UnaryOp::Minus:
- return unary_minus(global_object, lhs_result);
- case UnaryOp::Typeof:
- switch (lhs_result.type()) {
- case Value::Type::Empty:
- ASSERT_NOT_REACHED();
- return {};
- case Value::Type::Undefined:
- return js_string(vm, "undefined");
- case Value::Type::Null:
- // yes, this is on purpose. yes, this is how javascript works.
- // yes, it's silly.
- return js_string(vm, "object");
- case Value::Type::Number:
- return js_string(vm, "number");
- case Value::Type::String:
- return js_string(vm, "string");
- case Value::Type::Object:
- if (lhs_result.is_function())
- return js_string(vm, "function");
- return js_string(vm, "object");
- case Value::Type::Boolean:
- return js_string(vm, "boolean");
- case Value::Type::Symbol:
- return js_string(vm, "symbol");
- case Value::Type::BigInt:
- return js_string(vm, "bigint");
- default:
- ASSERT_NOT_REACHED();
- }
- case UnaryOp::Void:
- return js_undefined();
- case UnaryOp::Delete:
- ASSERT_NOT_REACHED();
- }
- ASSERT_NOT_REACHED();
- }
- Value SuperExpression::execute(Interpreter&, GlobalObject&) const
- {
- // The semantics for SuperExpressions are handled in CallExpression::compute_this_and_callee()
- ASSERT_NOT_REACHED();
- }
- Value ClassMethod::execute(Interpreter& interpreter, GlobalObject& global_object) const
- {
- return m_function->execute(interpreter, global_object);
- }
- Value ClassExpression::execute(Interpreter& interpreter, GlobalObject& global_object) const
- {
- Value class_constructor_value = m_constructor->execute(interpreter, global_object);
- if (interpreter.exception())
- return {};
- update_function_name(class_constructor_value, m_name);
- ASSERT(class_constructor_value.is_function() && class_constructor_value.as_function().is_script_function());
- ScriptFunction* class_constructor = static_cast<ScriptFunction*>(&class_constructor_value.as_function());
- Value super_constructor = js_undefined();
- if (!m_super_class.is_null()) {
- super_constructor = m_super_class->execute(interpreter, global_object);
- if (interpreter.exception())
- return {};
- if (!super_constructor.is_function() && !super_constructor.is_null()) {
- interpreter.vm().throw_exception<TypeError>(global_object, ErrorType::ClassDoesNotExtendAConstructorOrNull, super_constructor.to_string_without_side_effects());
- return {};
- }
- class_constructor->set_constructor_kind(Function::ConstructorKind::Derived);
- Object* prototype = Object::create_empty(global_object);
- Object* super_constructor_prototype = nullptr;
- if (!super_constructor.is_null()) {
- super_constructor_prototype = &super_constructor.as_object().get("prototype").as_object();
- if (interpreter.exception())
- return {};
- }
- prototype->set_prototype(super_constructor_prototype);
- prototype->define_property("constructor", class_constructor, 0);
- if (interpreter.exception())
- return {};
- class_constructor->define_property("prototype", prototype, 0);
- if (interpreter.exception())
- return {};
- class_constructor->set_prototype(super_constructor.is_null() ? global_object.function_prototype() : &super_constructor.as_object());
- }
- auto class_prototype = class_constructor->get("prototype");
- if (interpreter.exception())
- return {};
- if (!class_prototype.is_object()) {
- interpreter.vm().throw_exception<TypeError>(global_object, ErrorType::NotAnObject, "Class prototype");
- return {};
- }
- for (const auto& method : m_methods) {
- auto method_value = method.execute(interpreter, global_object);
- if (interpreter.exception())
- return {};
- auto& method_function = method_value.as_function();
- auto key = method.key().execute(interpreter, global_object);
- if (interpreter.exception())
- return {};
- auto& target = method.is_static() ? *class_constructor : class_prototype.as_object();
- method_function.set_home_object(&target);
- if (method.kind() == ClassMethod::Kind::Method) {
- target.define_property(StringOrSymbol::from_value(global_object, key), method_value);
- } else {
- String accessor_name = [&] {
- switch (method.kind()) {
- case ClassMethod::Kind::Getter:
- return String::formatted("get {}", get_function_name(global_object, key));
- case ClassMethod::Kind::Setter:
- return String::formatted("set {}", get_function_name(global_object, key));
- default:
- ASSERT_NOT_REACHED();
- }
- }();
- update_function_name(method_value, accessor_name);
- target.define_accessor(StringOrSymbol::from_value(global_object, key), method_function, method.kind() == ClassMethod::Kind::Getter, Attribute::Configurable | Attribute::Enumerable);
- }
- if (interpreter.exception())
- return {};
- }
- return class_constructor;
- }
- Value ClassDeclaration::execute(Interpreter& interpreter, GlobalObject& global_object) const
- {
- Value class_constructor = m_class_expression->execute(interpreter, global_object);
- if (interpreter.exception())
- return {};
- interpreter.current_environment()->set(global_object, m_class_expression->name(), { class_constructor, DeclarationKind::Let });
- return js_undefined();
- }
- static void print_indent(int indent)
- {
- for (int i = 0; i < indent * 2; ++i)
- putchar(' ');
- }
- void ASTNode::dump(int indent) const
- {
- print_indent(indent);
- printf("%s\n", class_name());
- }
- void ScopeNode::dump(int indent) const
- {
- ASTNode::dump(indent);
- if (!m_variables.is_empty()) {
- print_indent(indent + 1);
- printf("(Variables)\n");
- for (auto& variable : m_variables)
- variable.dump(indent + 2);
- }
- if (!m_children.is_empty()) {
- print_indent(indent + 1);
- printf("(Children)\n");
- for (auto& child : children())
- child.dump(indent + 2);
- }
- }
- void BinaryExpression::dump(int indent) const
- {
- const char* op_string = nullptr;
- switch (m_op) {
- case BinaryOp::Addition:
- op_string = "+";
- break;
- case BinaryOp::Subtraction:
- op_string = "-";
- break;
- case BinaryOp::Multiplication:
- op_string = "*";
- break;
- case BinaryOp::Division:
- op_string = "/";
- break;
- case BinaryOp::Modulo:
- op_string = "%";
- break;
- case BinaryOp::Exponentiation:
- op_string = "**";
- break;
- case BinaryOp::TypedEquals:
- op_string = "===";
- break;
- case BinaryOp::TypedInequals:
- op_string = "!==";
- break;
- case BinaryOp::AbstractEquals:
- op_string = "==";
- break;
- case BinaryOp::AbstractInequals:
- op_string = "!=";
- break;
- case BinaryOp::GreaterThan:
- op_string = ">";
- break;
- case BinaryOp::GreaterThanEquals:
- op_string = ">=";
- break;
- case BinaryOp::LessThan:
- op_string = "<";
- break;
- case BinaryOp::LessThanEquals:
- op_string = "<=";
- break;
- case BinaryOp::BitwiseAnd:
- op_string = "&";
- break;
- case BinaryOp::BitwiseOr:
- op_string = "|";
- break;
- case BinaryOp::BitwiseXor:
- op_string = "^";
- break;
- case BinaryOp::LeftShift:
- op_string = "<<";
- break;
- case BinaryOp::RightShift:
- op_string = ">>";
- break;
- case BinaryOp::UnsignedRightShift:
- op_string = ">>>";
- break;
- case BinaryOp::In:
- op_string = "in";
- break;
- case BinaryOp::InstanceOf:
- op_string = "instanceof";
- break;
- }
- print_indent(indent);
- printf("%s\n", class_name());
- m_lhs->dump(indent + 1);
- print_indent(indent + 1);
- printf("%s\n", op_string);
- m_rhs->dump(indent + 1);
- }
- void LogicalExpression::dump(int indent) const
- {
- const char* op_string = nullptr;
- switch (m_op) {
- case LogicalOp::And:
- op_string = "&&";
- break;
- case LogicalOp::Or:
- op_string = "||";
- break;
- case LogicalOp::NullishCoalescing:
- op_string = "??";
- break;
- }
- print_indent(indent);
- printf("%s\n", class_name());
- m_lhs->dump(indent + 1);
- print_indent(indent + 1);
- printf("%s\n", op_string);
- m_rhs->dump(indent + 1);
- }
- void UnaryExpression::dump(int indent) const
- {
- const char* op_string = nullptr;
- switch (m_op) {
- case UnaryOp::BitwiseNot:
- op_string = "~";
- break;
- case UnaryOp::Not:
- op_string = "!";
- break;
- case UnaryOp::Plus:
- op_string = "+";
- break;
- case UnaryOp::Minus:
- op_string = "-";
- break;
- case UnaryOp::Typeof:
- op_string = "typeof ";
- break;
- case UnaryOp::Void:
- op_string = "void ";
- break;
- case UnaryOp::Delete:
- op_string = "delete ";
- break;
- }
- print_indent(indent);
- printf("%s\n", class_name());
- print_indent(indent + 1);
- printf("%s\n", op_string);
- m_lhs->dump(indent + 1);
- }
- void CallExpression::dump(int indent) const
- {
- print_indent(indent);
- printf("CallExpression %s\n", is_new_expression() ? "[new]" : "");
- m_callee->dump(indent + 1);
- for (auto& argument : m_arguments)
- argument.value->dump(indent + 1);
- }
- void ClassDeclaration::dump(int indent) const
- {
- ASTNode::dump(indent);
- m_class_expression->dump(indent + 1);
- }
- void ClassExpression::dump(int indent) const
- {
- print_indent(indent);
- ASSERT(m_name.characters());
- printf("ClassExpression: \"%s\"\n", m_name.characters());
- print_indent(indent);
- printf("(Constructor)\n");
- m_constructor->dump(indent + 1);
- if (!m_super_class.is_null()) {
- print_indent(indent);
- printf("(Super Class)\n");
- m_super_class->dump(indent + 1);
- }
- print_indent(indent);
- printf("(Methods)\n");
- for (auto& method : m_methods)
- method.dump(indent + 1);
- }
- void ClassMethod::dump(int indent) const
- {
- ASTNode::dump(indent);
- print_indent(indent);
- printf("(Key)\n");
- m_key->dump(indent + 1);
- const char* kind_string = nullptr;
- switch (m_kind) {
- case Kind::Method:
- kind_string = "Method";
- break;
- case Kind::Getter:
- kind_string = "Getter";
- break;
- case Kind::Setter:
- kind_string = "Setter";
- break;
- }
- print_indent(indent);
- printf("Kind: %s\n", kind_string);
- print_indent(indent);
- printf("Static: %s\n", m_is_static ? "true" : "false");
- print_indent(indent);
- printf("(Function)\n");
- m_function->dump(indent + 1);
- }
- void StringLiteral::dump(int indent) const
- {
- print_indent(indent);
- printf("StringLiteral \"%s\"\n", m_value.characters());
- }
- void SuperExpression::dump(int indent) const
- {
- print_indent(indent);
- printf("super\n");
- }
- void NumericLiteral::dump(int indent) const
- {
- print_indent(indent);
- printf("NumericLiteral %g\n", m_value);
- }
- void BigIntLiteral::dump(int indent) const
- {
- print_indent(indent);
- printf("BigIntLiteral %s\n", m_value.characters());
- }
- void BooleanLiteral::dump(int indent) const
- {
- print_indent(indent);
- printf("BooleanLiteral %s\n", m_value ? "true" : "false");
- }
- void NullLiteral::dump(int indent) const
- {
- print_indent(indent);
- printf("null\n");
- }
- void FunctionNode::dump(int indent, const char* class_name) const
- {
- print_indent(indent);
- printf("%s '%s'\n", class_name, name().characters());
- if (!m_parameters.is_empty()) {
- print_indent(indent + 1);
- printf("(Parameters)\n");
- for (auto& parameter : m_parameters) {
- print_indent(indent + 2);
- if (parameter.is_rest)
- printf("...");
- printf("%s\n", parameter.name.characters());
- if (parameter.default_value)
- parameter.default_value->dump(indent + 3);
- }
- }
- if (!m_variables.is_empty()) {
- print_indent(indent + 1);
- printf("(Variables)\n");
- for (auto& variable : m_variables)
- variable.dump(indent + 2);
- }
- print_indent(indent + 1);
- printf("(Body)\n");
- body().dump(indent + 2);
- }
- void FunctionDeclaration::dump(int indent) const
- {
- FunctionNode::dump(indent, class_name());
- }
- void FunctionExpression::dump(int indent) const
- {
- FunctionNode::dump(indent, class_name());
- }
- void ReturnStatement::dump(int indent) const
- {
- ASTNode::dump(indent);
- if (argument())
- argument()->dump(indent + 1);
- }
- void IfStatement::dump(int indent) const
- {
- ASTNode::dump(indent);
- print_indent(indent);
- printf("If\n");
- predicate().dump(indent + 1);
- consequent().dump(indent + 1);
- if (alternate()) {
- print_indent(indent);
- printf("Else\n");
- alternate()->dump(indent + 1);
- }
- }
- void WhileStatement::dump(int indent) const
- {
- ASTNode::dump(indent);
- print_indent(indent);
- printf("While\n");
- test().dump(indent + 1);
- body().dump(indent + 1);
- }
- void DoWhileStatement::dump(int indent) const
- {
- ASTNode::dump(indent);
- print_indent(indent);
- printf("DoWhile\n");
- test().dump(indent + 1);
- body().dump(indent + 1);
- }
- void ForStatement::dump(int indent) const
- {
- ASTNode::dump(indent);
- print_indent(indent);
- printf("For\n");
- if (init())
- init()->dump(indent + 1);
- if (test())
- test()->dump(indent + 1);
- if (update())
- update()->dump(indent + 1);
- body().dump(indent + 1);
- }
- void ForInStatement::dump(int indent) const
- {
- ASTNode::dump(indent);
- print_indent(indent);
- printf("ForIn\n");
- lhs().dump(indent + 1);
- rhs().dump(indent + 1);
- body().dump(indent + 1);
- }
- void ForOfStatement::dump(int indent) const
- {
- ASTNode::dump(indent);
- print_indent(indent);
- printf("ForOf\n");
- lhs().dump(indent + 1);
- rhs().dump(indent + 1);
- body().dump(indent + 1);
- }
- Value Identifier::execute(Interpreter& interpreter, GlobalObject& global_object) const
- {
- auto value = interpreter.vm().get_variable(string(), global_object);
- if (value.is_empty()) {
- interpreter.vm().throw_exception<ReferenceError>(global_object, ErrorType::UnknownIdentifier, string());
- return {};
- }
- return value;
- }
- void Identifier::dump(int indent) const
- {
- print_indent(indent);
- printf("Identifier \"%s\"\n", m_string.characters());
- }
- void SpreadExpression::dump(int indent) const
- {
- ASTNode::dump(indent);
- m_target->dump(indent + 1);
- }
- Value SpreadExpression::execute(Interpreter& interpreter, GlobalObject& global_object) const
- {
- return m_target->execute(interpreter, global_object);
- }
- Value ThisExpression::execute(Interpreter& interpreter, GlobalObject& global_object) const
- {
- return interpreter.vm().resolve_this_binding(global_object);
- }
- void ThisExpression::dump(int indent) const
- {
- ASTNode::dump(indent);
- }
- Value AssignmentExpression::execute(Interpreter& interpreter, GlobalObject& global_object) const
- {
- #define EXECUTE_LHS_AND_RHS() \
- do { \
- lhs_result = m_lhs->execute(interpreter, global_object); \
- if (interpreter.exception()) \
- return {}; \
- rhs_result = m_rhs->execute(interpreter, global_object); \
- if (interpreter.exception()) \
- return {}; \
- } while (0)
- Value lhs_result;
- Value rhs_result;
- switch (m_op) {
- case AssignmentOp::Assignment:
- break;
- case AssignmentOp::AdditionAssignment:
- EXECUTE_LHS_AND_RHS();
- rhs_result = add(global_object, lhs_result, rhs_result);
- break;
- case AssignmentOp::SubtractionAssignment:
- EXECUTE_LHS_AND_RHS();
- rhs_result = sub(global_object, lhs_result, rhs_result);
- break;
- case AssignmentOp::MultiplicationAssignment:
- EXECUTE_LHS_AND_RHS();
- rhs_result = mul(global_object, lhs_result, rhs_result);
- break;
- case AssignmentOp::DivisionAssignment:
- EXECUTE_LHS_AND_RHS();
- rhs_result = div(global_object, lhs_result, rhs_result);
- break;
- case AssignmentOp::ModuloAssignment:
- EXECUTE_LHS_AND_RHS();
- rhs_result = mod(global_object, lhs_result, rhs_result);
- break;
- case AssignmentOp::ExponentiationAssignment:
- EXECUTE_LHS_AND_RHS();
- rhs_result = exp(global_object, lhs_result, rhs_result);
- break;
- case AssignmentOp::BitwiseAndAssignment:
- EXECUTE_LHS_AND_RHS();
- rhs_result = bitwise_and(global_object, lhs_result, rhs_result);
- break;
- case AssignmentOp::BitwiseOrAssignment:
- EXECUTE_LHS_AND_RHS();
- rhs_result = bitwise_or(global_object, lhs_result, rhs_result);
- break;
- case AssignmentOp::BitwiseXorAssignment:
- EXECUTE_LHS_AND_RHS();
- rhs_result = bitwise_xor(global_object, lhs_result, rhs_result);
- break;
- case AssignmentOp::LeftShiftAssignment:
- EXECUTE_LHS_AND_RHS();
- rhs_result = left_shift(global_object, lhs_result, rhs_result);
- break;
- case AssignmentOp::RightShiftAssignment:
- EXECUTE_LHS_AND_RHS();
- rhs_result = right_shift(global_object, lhs_result, rhs_result);
- break;
- case AssignmentOp::UnsignedRightShiftAssignment:
- EXECUTE_LHS_AND_RHS();
- rhs_result = unsigned_right_shift(global_object, lhs_result, rhs_result);
- break;
- case AssignmentOp::AndAssignment:
- lhs_result = m_lhs->execute(interpreter, global_object);
- if (interpreter.exception())
- return {};
- if (!lhs_result.to_boolean())
- return lhs_result;
- rhs_result = m_rhs->execute(interpreter, global_object);
- break;
- case AssignmentOp::OrAssignment:
- lhs_result = m_lhs->execute(interpreter, global_object);
- if (interpreter.exception())
- return {};
- if (lhs_result.to_boolean())
- return lhs_result;
- rhs_result = m_rhs->execute(interpreter, global_object);
- break;
- case AssignmentOp::NullishAssignment:
- lhs_result = m_lhs->execute(interpreter, global_object);
- if (interpreter.exception())
- return {};
- if (!lhs_result.is_nullish())
- return lhs_result;
- rhs_result = m_rhs->execute(interpreter, global_object);
- break;
- }
- if (interpreter.exception())
- return {};
- auto reference = m_lhs->to_reference(interpreter, global_object);
- if (interpreter.exception())
- return {};
- if (m_op == AssignmentOp::Assignment) {
- rhs_result = m_rhs->execute(interpreter, global_object);
- if (interpreter.exception())
- return {};
- }
- if (reference.is_unresolvable()) {
- interpreter.vm().throw_exception<ReferenceError>(global_object, ErrorType::InvalidLeftHandAssignment);
- return {};
- }
- update_function_name(rhs_result, get_function_name(global_object, reference.name().to_value(interpreter.vm())));
- reference.put(global_object, rhs_result);
- if (interpreter.exception())
- return {};
- return rhs_result;
- }
- Value UpdateExpression::execute(Interpreter& interpreter, GlobalObject& global_object) const
- {
- auto reference = m_argument->to_reference(interpreter, global_object);
- if (interpreter.exception())
- return {};
- auto old_value = reference.get(global_object);
- if (interpreter.exception())
- return {};
- old_value = old_value.to_numeric(global_object);
- if (interpreter.exception())
- return {};
- Value new_value;
- switch (m_op) {
- case UpdateOp::Increment:
- if (old_value.is_number())
- new_value = Value(old_value.as_double() + 1);
- else
- new_value = js_bigint(interpreter.heap(), old_value.as_bigint().big_integer().plus(Crypto::SignedBigInteger { 1 }));
- break;
- case UpdateOp::Decrement:
- if (old_value.is_number())
- new_value = Value(old_value.as_double() - 1);
- else
- new_value = js_bigint(interpreter.heap(), old_value.as_bigint().big_integer().minus(Crypto::SignedBigInteger { 1 }));
- break;
- default:
- ASSERT_NOT_REACHED();
- }
- reference.put(global_object, new_value);
- if (interpreter.exception())
- return {};
- return m_prefixed ? new_value : old_value;
- }
- void AssignmentExpression::dump(int indent) const
- {
- const char* op_string = nullptr;
- switch (m_op) {
- case AssignmentOp::Assignment:
- op_string = "=";
- break;
- case AssignmentOp::AdditionAssignment:
- op_string = "+=";
- break;
- case AssignmentOp::SubtractionAssignment:
- op_string = "-=";
- break;
- case AssignmentOp::MultiplicationAssignment:
- op_string = "*=";
- break;
- case AssignmentOp::DivisionAssignment:
- op_string = "/=";
- break;
- case AssignmentOp::ModuloAssignment:
- op_string = "%=";
- break;
- case AssignmentOp::ExponentiationAssignment:
- op_string = "**=";
- break;
- case AssignmentOp::BitwiseAndAssignment:
- op_string = "&=";
- break;
- case AssignmentOp::BitwiseOrAssignment:
- op_string = "|=";
- break;
- case AssignmentOp::BitwiseXorAssignment:
- op_string = "^=";
- break;
- case AssignmentOp::LeftShiftAssignment:
- op_string = "<<=";
- break;
- case AssignmentOp::RightShiftAssignment:
- op_string = ">>=";
- break;
- case AssignmentOp::UnsignedRightShiftAssignment:
- op_string = ">>>=";
- break;
- case AssignmentOp::AndAssignment:
- op_string = "&&=";
- break;
- case AssignmentOp::OrAssignment:
- op_string = "||=";
- break;
- case AssignmentOp::NullishAssignment:
- op_string = "\?\?=";
- break;
- }
- ASTNode::dump(indent);
- print_indent(indent + 1);
- printf("%s\n", op_string);
- m_lhs->dump(indent + 1);
- m_rhs->dump(indent + 1);
- }
- void UpdateExpression::dump(int indent) const
- {
- const char* op_string = nullptr;
- switch (m_op) {
- case UpdateOp::Increment:
- op_string = "++";
- break;
- case UpdateOp::Decrement:
- op_string = "--";
- break;
- }
- ASTNode::dump(indent);
- print_indent(indent + 1);
- if (m_prefixed)
- printf("%s\n", op_string);
- m_argument->dump(indent + 1);
- if (!m_prefixed) {
- print_indent(indent + 1);
- printf("%s\n", op_string);
- }
- }
- Value VariableDeclaration::execute(Interpreter& interpreter, GlobalObject& global_object) const
- {
- for (auto& declarator : m_declarations) {
- if (auto* init = declarator.init()) {
- auto initalizer_result = init->execute(interpreter, global_object);
- if (interpreter.exception())
- return {};
- auto variable_name = declarator.id().string();
- update_function_name(initalizer_result, variable_name);
- interpreter.vm().set_variable(variable_name, initalizer_result, global_object, true);
- }
- }
- return js_undefined();
- }
- Value VariableDeclarator::execute(Interpreter&, GlobalObject&) const
- {
- // NOTE: This node is handled by VariableDeclaration.
- ASSERT_NOT_REACHED();
- }
- void VariableDeclaration::dump(int indent) const
- {
- const char* declaration_kind_string = nullptr;
- switch (m_declaration_kind) {
- case DeclarationKind::Let:
- declaration_kind_string = "Let";
- break;
- case DeclarationKind::Var:
- declaration_kind_string = "Var";
- break;
- case DeclarationKind::Const:
- declaration_kind_string = "Const";
- break;
- }
- ASTNode::dump(indent);
- print_indent(indent + 1);
- printf("%s\n", declaration_kind_string);
- for (auto& declarator : m_declarations)
- declarator.dump(indent + 1);
- }
- void VariableDeclarator::dump(int indent) const
- {
- ASTNode::dump(indent);
- m_id->dump(indent + 1);
- if (m_init)
- m_init->dump(indent + 1);
- }
- void ObjectProperty::dump(int indent) const
- {
- ASTNode::dump(indent);
- m_key->dump(indent + 1);
- m_value->dump(indent + 1);
- }
- void ObjectExpression::dump(int indent) const
- {
- ASTNode::dump(indent);
- for (auto& property : m_properties) {
- property.dump(indent + 1);
- }
- }
- void ExpressionStatement::dump(int indent) const
- {
- ASTNode::dump(indent);
- m_expression->dump(indent + 1);
- }
- Value ObjectProperty::execute(Interpreter&, GlobalObject&) const
- {
- // NOTE: ObjectProperty execution is handled by ObjectExpression.
- ASSERT_NOT_REACHED();
- }
- Value ObjectExpression::execute(Interpreter& interpreter, GlobalObject& global_object) const
- {
- auto* object = Object::create_empty(global_object);
- for (auto& property : m_properties) {
- auto key = property.key().execute(interpreter, global_object);
- if (interpreter.exception())
- return {};
- if (property.type() == ObjectProperty::Type::Spread) {
- if (key.is_array()) {
- auto& array_to_spread = static_cast<Array&>(key.as_object());
- for (auto& entry : array_to_spread.indexed_properties()) {
- object->indexed_properties().append(entry.value_and_attributes(&array_to_spread).value);
- if (interpreter.exception())
- return {};
- }
- } else if (key.is_object()) {
- auto& obj_to_spread = key.as_object();
- for (auto& it : obj_to_spread.shape().property_table_ordered()) {
- if (it.value.attributes.is_enumerable()) {
- object->define_property(it.key, obj_to_spread.get(it.key));
- if (interpreter.exception())
- return {};
- }
- }
- } else if (key.is_string()) {
- auto& str_to_spread = key.as_string().string();
- for (size_t i = 0; i < str_to_spread.length(); i++) {
- object->define_property(i, js_string(interpreter.heap(), str_to_spread.substring(i, 1)));
- if (interpreter.exception())
- return {};
- }
- }
- continue;
- }
- if (interpreter.exception())
- return {};
- auto value = property.value().execute(interpreter, global_object);
- if (interpreter.exception())
- return {};
- if (value.is_function() && property.is_method())
- value.as_function().set_home_object(object);
- String name = get_function_name(global_object, key);
- if (property.type() == ObjectProperty::Type::Getter) {
- name = String::formatted("get {}", name);
- } else if (property.type() == ObjectProperty::Type::Setter) {
- name = String::formatted("set {}", name);
- }
- update_function_name(value, name);
- if (property.type() == ObjectProperty::Type::Getter || property.type() == ObjectProperty::Type::Setter) {
- ASSERT(value.is_function());
- object->define_accessor(PropertyName::from_value(global_object, key), value.as_function(), property.type() == ObjectProperty::Type::Getter, Attribute::Configurable | Attribute::Enumerable);
- if (interpreter.exception())
- return {};
- } else {
- object->define_property(PropertyName::from_value(global_object, key), value);
- if (interpreter.exception())
- return {};
- }
- }
- return object;
- }
- void MemberExpression::dump(int indent) const
- {
- print_indent(indent);
- printf("%s (computed=%s)\n", class_name(), is_computed() ? "true" : "false");
- m_object->dump(indent + 1);
- m_property->dump(indent + 1);
- }
- PropertyName MemberExpression::computed_property_name(Interpreter& interpreter, GlobalObject& global_object) const
- {
- if (!is_computed()) {
- ASSERT(m_property->is_identifier());
- return static_cast<const Identifier&>(*m_property).string();
- }
- auto index = m_property->execute(interpreter, global_object);
- if (interpreter.exception())
- return {};
- ASSERT(!index.is_empty());
- if (index.is_integer() && index.as_i32() >= 0)
- return index.as_i32();
- if (index.is_symbol())
- return &index.as_symbol();
- auto index_string = index.to_string(global_object);
- if (interpreter.exception())
- return {};
- return index_string;
- }
- String MemberExpression::to_string_approximation() const
- {
- String object_string = "<object>";
- if (m_object->is_identifier())
- object_string = static_cast<const Identifier&>(*m_object).string();
- if (is_computed())
- return String::formatted("{}[<computed>]", object_string);
- ASSERT(m_property->is_identifier());
- return String::formatted("{}.{}", object_string, static_cast<const Identifier&>(*m_property).string());
- }
- Value MemberExpression::execute(Interpreter& interpreter, GlobalObject& global_object) const
- {
- auto object_value = m_object->execute(interpreter, global_object);
- if (interpreter.exception())
- return {};
- auto* object_result = object_value.to_object(global_object);
- if (interpreter.exception())
- return {};
- auto property_name = computed_property_name(interpreter, global_object);
- if (!property_name.is_valid())
- return {};
- return object_result->get(property_name).value_or(js_undefined());
- }
- Value StringLiteral::execute(Interpreter& interpreter, GlobalObject&) const
- {
- return js_string(interpreter.heap(), m_value);
- }
- Value NumericLiteral::execute(Interpreter&, GlobalObject&) const
- {
- return Value(m_value);
- }
- Value BigIntLiteral::execute(Interpreter& interpreter, GlobalObject&) const
- {
- return js_bigint(interpreter.heap(), Crypto::SignedBigInteger::from_base10(m_value.substring(0, m_value.length() - 1)));
- }
- Value BooleanLiteral::execute(Interpreter&, GlobalObject&) const
- {
- return Value(m_value);
- }
- Value NullLiteral::execute(Interpreter&, GlobalObject&) const
- {
- return js_null();
- }
- void RegExpLiteral::dump(int indent) const
- {
- print_indent(indent);
- printf("%s (/%s/%s)\n", class_name(), content().characters(), flags().characters());
- }
- Value RegExpLiteral::execute(Interpreter&, GlobalObject& global_object) const
- {
- return RegExpObject::create(global_object, content(), flags());
- }
- void ArrayExpression::dump(int indent) const
- {
- ASTNode::dump(indent);
- for (auto& element : m_elements) {
- if (element) {
- element->dump(indent + 1);
- } else {
- print_indent(indent + 1);
- printf("<empty>\n");
- }
- }
- }
- Value ArrayExpression::execute(Interpreter& interpreter, GlobalObject& global_object) const
- {
- auto* array = Array::create(global_object);
- for (auto& element : m_elements) {
- auto value = Value();
- if (element) {
- value = element->execute(interpreter, global_object);
- if (interpreter.exception())
- return {};
- if (element->is_spread_expression()) {
- get_iterator_values(global_object, value, [&](Value iterator_value) {
- array->indexed_properties().append(iterator_value);
- return IterationDecision::Continue;
- });
- if (interpreter.exception())
- return {};
- continue;
- }
- }
- array->indexed_properties().append(value);
- }
- return array;
- }
- void TemplateLiteral::dump(int indent) const
- {
- ASTNode::dump(indent);
- for (auto& expression : m_expressions)
- expression.dump(indent + 1);
- }
- Value TemplateLiteral::execute(Interpreter& interpreter, GlobalObject& global_object) const
- {
- StringBuilder string_builder;
- for (auto& expression : m_expressions) {
- auto expr = expression.execute(interpreter, global_object);
- if (interpreter.exception())
- return {};
- auto string = expr.to_string(global_object);
- if (interpreter.exception())
- return {};
- string_builder.append(string);
- }
- return js_string(interpreter.heap(), string_builder.build());
- }
- void TaggedTemplateLiteral::dump(int indent) const
- {
- ASTNode::dump(indent);
- print_indent(indent + 1);
- printf("(Tag)\n");
- m_tag->dump(indent + 2);
- print_indent(indent + 1);
- printf("(Template Literal)\n");
- m_template_literal->dump(indent + 2);
- }
- Value TaggedTemplateLiteral::execute(Interpreter& interpreter, GlobalObject& global_object) const
- {
- auto tag = m_tag->execute(interpreter, global_object);
- if (interpreter.exception())
- return {};
- if (!tag.is_function()) {
- interpreter.vm().throw_exception<TypeError>(global_object, ErrorType::NotAFunction, tag.to_string_without_side_effects());
- return {};
- }
- auto& tag_function = tag.as_function();
- auto& expressions = m_template_literal->expressions();
- auto* strings = Array::create(global_object);
- MarkedValueList arguments(interpreter.heap());
- arguments.append(strings);
- for (size_t i = 0; i < expressions.size(); ++i) {
- auto value = expressions[i].execute(interpreter, global_object);
- if (interpreter.exception())
- return {};
- // tag`${foo}` -> "", foo, "" -> tag(["", ""], foo)
- // tag`foo${bar}baz${qux}` -> "foo", bar, "baz", qux, "" -> tag(["foo", "baz", ""], bar, qux)
- if (i % 2 == 0) {
- strings->indexed_properties().append(value);
- } else {
- arguments.append(value);
- }
- }
- auto* raw_strings = Array::create(global_object);
- for (auto& raw_string : m_template_literal->raw_strings()) {
- auto value = raw_string.execute(interpreter, global_object);
- if (interpreter.exception())
- return {};
- raw_strings->indexed_properties().append(value);
- }
- strings->define_property("raw", raw_strings, 0);
- return interpreter.vm().call(tag_function, js_undefined(), move(arguments));
- }
- void TryStatement::dump(int indent) const
- {
- ASTNode::dump(indent);
- print_indent(indent);
- printf("(Block)\n");
- block().dump(indent + 1);
- if (handler()) {
- print_indent(indent);
- printf("(Handler)\n");
- handler()->dump(indent + 1);
- }
- if (finalizer()) {
- print_indent(indent);
- printf("(Finalizer)\n");
- finalizer()->dump(indent + 1);
- }
- }
- void CatchClause::dump(int indent) const
- {
- print_indent(indent);
- printf("CatchClause");
- if (!m_parameter.is_null())
- printf(" (%s)", m_parameter.characters());
- printf("\n");
- body().dump(indent + 1);
- }
- void ThrowStatement::dump(int indent) const
- {
- ASTNode::dump(indent);
- argument().dump(indent + 1);
- }
- Value TryStatement::execute(Interpreter& interpreter, GlobalObject& global_object) const
- {
- interpreter.execute_statement(global_object, m_block, {}, ScopeType::Try);
- if (auto* exception = interpreter.exception()) {
- if (m_handler) {
- interpreter.vm().clear_exception();
- ArgumentVector arguments { { m_handler->parameter(), exception->value() } };
- interpreter.execute_statement(global_object, m_handler->body(), move(arguments));
- }
- }
- if (m_finalizer) {
- // Keep, if any, and then clear the current exception so we can
- // execute() the finalizer without an exception in our way.
- auto* previous_exception = interpreter.exception();
- interpreter.vm().clear_exception();
- interpreter.vm().stop_unwind();
- m_finalizer->execute(interpreter, global_object);
- // If we previously had an exception and the finalizer didn't
- // throw a new one, restore the old one.
- // FIXME: This will print debug output in throw_exception() for
- // a seconds time with INTERPRETER_DEBUG enabled.
- if (previous_exception && !interpreter.exception())
- interpreter.vm().throw_exception(previous_exception);
- }
- return js_undefined();
- }
- Value CatchClause::execute(Interpreter&, GlobalObject&) const
- {
- // NOTE: CatchClause execution is handled by TryStatement.
- ASSERT_NOT_REACHED();
- return {};
- }
- Value ThrowStatement::execute(Interpreter& interpreter, GlobalObject& global_object) const
- {
- auto value = m_argument->execute(interpreter, global_object);
- if (interpreter.vm().exception())
- return {};
- interpreter.vm().throw_exception(global_object, value);
- return {};
- }
- Value SwitchStatement::execute(Interpreter& interpreter, GlobalObject& global_object) const
- {
- auto discriminant_result = m_discriminant->execute(interpreter, global_object);
- if (interpreter.exception())
- return {};
- bool falling_through = false;
- for (auto& switch_case : m_cases) {
- if (!falling_through && switch_case.test()) {
- auto test_result = switch_case.test()->execute(interpreter, global_object);
- if (interpreter.exception())
- return {};
- if (!strict_eq(discriminant_result, test_result))
- continue;
- }
- falling_through = true;
- for (auto& statement : switch_case.consequent()) {
- statement.execute(interpreter, global_object);
- if (interpreter.exception())
- return {};
- if (interpreter.vm().should_unwind()) {
- if (interpreter.vm().should_unwind_until(ScopeType::Breakable, m_label)) {
- interpreter.vm().stop_unwind();
- return {};
- }
- return {};
- }
- }
- }
- return js_undefined();
- }
- Value SwitchCase::execute(Interpreter&, GlobalObject&) const
- {
- return {};
- }
- Value BreakStatement::execute(Interpreter& interpreter, GlobalObject&) const
- {
- interpreter.vm().unwind(ScopeType::Breakable, m_target_label);
- return js_undefined();
- }
- Value ContinueStatement::execute(Interpreter& interpreter, GlobalObject&) const
- {
- interpreter.vm().unwind(ScopeType::Continuable, m_target_label);
- return js_undefined();
- }
- void SwitchStatement::dump(int indent) const
- {
- ASTNode::dump(indent);
- m_discriminant->dump(indent + 1);
- for (auto& switch_case : m_cases) {
- switch_case.dump(indent + 1);
- }
- }
- void SwitchCase::dump(int indent) const
- {
- ASTNode::dump(indent);
- print_indent(indent + 1);
- if (m_test) {
- printf("(Test)\n");
- m_test->dump(indent + 2);
- } else {
- printf("(Default)\n");
- }
- print_indent(indent + 1);
- printf("(Consequent)\n");
- for (auto& statement : m_consequent)
- statement.dump(indent + 2);
- }
- Value ConditionalExpression::execute(Interpreter& interpreter, GlobalObject& global_object) const
- {
- auto test_result = m_test->execute(interpreter, global_object);
- if (interpreter.exception())
- return {};
- Value result;
- if (test_result.to_boolean()) {
- result = m_consequent->execute(interpreter, global_object);
- } else {
- result = m_alternate->execute(interpreter, global_object);
- }
- if (interpreter.exception())
- return {};
- return result;
- }
- void ConditionalExpression::dump(int indent) const
- {
- ASTNode::dump(indent);
- print_indent(indent + 1);
- printf("(Test)\n");
- m_test->dump(indent + 2);
- print_indent(indent + 1);
- printf("(Consequent)\n");
- m_consequent->dump(indent + 2);
- print_indent(indent + 1);
- printf("(Alternate)\n");
- m_alternate->dump(indent + 2);
- }
- void SequenceExpression::dump(int indent) const
- {
- ASTNode::dump(indent);
- for (auto& expression : m_expressions)
- expression.dump(indent + 1);
- }
- Value SequenceExpression::execute(Interpreter& interpreter, GlobalObject& global_object) const
- {
- Value last_value;
- for (auto& expression : m_expressions) {
- last_value = expression.execute(interpreter, global_object);
- if (interpreter.exception())
- return {};
- }
- return last_value;
- }
- Value DebuggerStatement::execute(Interpreter&, GlobalObject&) const
- {
- // Sorry, no JavaScript debugger available (yet)!
- return js_undefined();
- }
- void ScopeNode::add_variables(NonnullRefPtrVector<VariableDeclaration> variables)
- {
- m_variables.append(move(variables));
- }
- void ScopeNode::add_functions(NonnullRefPtrVector<FunctionDeclaration> functions)
- {
- m_functions.append(move(functions));
- }
- }
|