123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616 |
- /*
- * Copyright (c) 2021-2023, Andreas Kling <kling@serenityos.org>
- * Copyright (c) 2021, Linus Groh <linusg@serenityos.org>
- * Copyright (c) 2021, Gunnar Beutner <gbeutner@serenityos.org>
- * Copyright (c) 2021, Marcin Gasperowicz <xnooga@gmail.com>
- *
- * SPDX-License-Identifier: BSD-2-Clause
- */
- #include <AK/Find.h>
- #include <LibJS/AST.h>
- #include <LibJS/Bytecode/Generator.h>
- #include <LibJS/Bytecode/Instruction.h>
- #include <LibJS/Bytecode/Op.h>
- #include <LibJS/Bytecode/Register.h>
- #include <LibJS/Bytecode/StringTable.h>
- #include <LibJS/Runtime/Environment.h>
- #include <LibJS/Runtime/ErrorTypes.h>
- namespace JS {
- Bytecode::CodeGenerationErrorOr<void> ASTNode::generate_bytecode(Bytecode::Generator&) const
- {
- return Bytecode::CodeGenerationError {
- this,
- "Missing generate_bytecode()"sv,
- };
- }
- Bytecode::CodeGenerationErrorOr<void> ScopeNode::generate_bytecode(Bytecode::Generator& generator) const
- {
- Optional<Bytecode::CodeGenerationError> maybe_error;
- size_t pushed_scope_count = 0;
- auto const failing_completion = Completion(Completion::Type::Throw, {}, {});
- // Note: SwitchStatement has its own codegen, but still calls into this function to handle the scoping of the switch body.
- auto is_switch_statement = is<SwitchStatement>(*this);
- if (is<BlockStatement>(*this) || is_switch_statement) {
- // Perform the steps of BlockDeclarationInstantiation.
- if (has_lexical_declarations()) {
- generator.begin_variable_scope(Bytecode::Generator::BindingMode::Lexical, Bytecode::Generator::SurroundingScopeKind::Block);
- pushed_scope_count++;
- }
- (void)for_each_lexically_scoped_declaration([&](Declaration const& declaration) -> ThrowCompletionOr<void> {
- auto is_constant_declaration = declaration.is_constant_declaration();
- // NOTE: Nothing in the callback throws an exception.
- MUST(declaration.for_each_bound_name([&](auto const& name) {
- auto index = generator.intern_identifier(name);
- // NOTE: BlockDeclarationInstantiation takes as input the new lexical environment that was created and checks if there is a binding for the current name only in this new scope.
- // For example: `{ let a = 1; { let a = 2; } }`. The second `a` will shadow the first `a` instead of re-initializing or setting it.
- if (is_constant_declaration || !generator.has_binding_in_current_scope(index)) {
- generator.register_binding(index);
- generator.emit<Bytecode::Op::CreateVariable>(index, Bytecode::Op::EnvironmentMode::Lexical, is_constant_declaration);
- }
- }));
- if (is<FunctionDeclaration>(declaration)) {
- auto& function_declaration = static_cast<FunctionDeclaration const&>(declaration);
- auto const& name = function_declaration.name();
- auto index = generator.intern_identifier(name);
- generator.emit<Bytecode::Op::NewFunction>(function_declaration);
- generator.emit<Bytecode::Op::SetVariable>(index, Bytecode::Op::SetVariable::InitializationMode::InitializeOrSet);
- }
- return {};
- });
- if (is_switch_statement)
- return {};
- } else if (is<Program>(*this)) {
- // GlobalDeclarationInstantiation is handled by the C++ AO.
- } else {
- // FunctionDeclarationInstantiation is handled by the C++ AO.
- }
- if (maybe_error.has_value())
- return maybe_error.release_value();
- for (auto& child : children()) {
- TRY(child->generate_bytecode(generator));
- if (generator.is_current_block_terminated())
- break;
- }
- for (size_t i = 0; i < pushed_scope_count; ++i)
- generator.end_variable_scope();
- return {};
- }
- Bytecode::CodeGenerationErrorOr<void> EmptyStatement::generate_bytecode(Bytecode::Generator&) const
- {
- return {};
- }
- Bytecode::CodeGenerationErrorOr<void> ExpressionStatement::generate_bytecode(Bytecode::Generator& generator) const
- {
- return m_expression->generate_bytecode(generator);
- }
- Bytecode::CodeGenerationErrorOr<void> BinaryExpression::generate_bytecode(Bytecode::Generator& generator) const
- {
- TRY(m_lhs->generate_bytecode(generator));
- auto lhs_reg = generator.allocate_register();
- generator.emit<Bytecode::Op::Store>(lhs_reg);
- TRY(m_rhs->generate_bytecode(generator));
- switch (m_op) {
- case BinaryOp::Addition:
- generator.emit<Bytecode::Op::Add>(lhs_reg);
- break;
- case BinaryOp::Subtraction:
- generator.emit<Bytecode::Op::Sub>(lhs_reg);
- break;
- case BinaryOp::Multiplication:
- generator.emit<Bytecode::Op::Mul>(lhs_reg);
- break;
- case BinaryOp::Division:
- generator.emit<Bytecode::Op::Div>(lhs_reg);
- break;
- case BinaryOp::Modulo:
- generator.emit<Bytecode::Op::Mod>(lhs_reg);
- break;
- case BinaryOp::Exponentiation:
- generator.emit<Bytecode::Op::Exp>(lhs_reg);
- break;
- case BinaryOp::GreaterThan:
- generator.emit<Bytecode::Op::GreaterThan>(lhs_reg);
- break;
- case BinaryOp::GreaterThanEquals:
- generator.emit<Bytecode::Op::GreaterThanEquals>(lhs_reg);
- break;
- case BinaryOp::LessThan:
- generator.emit<Bytecode::Op::LessThan>(lhs_reg);
- break;
- case BinaryOp::LessThanEquals:
- generator.emit<Bytecode::Op::LessThanEquals>(lhs_reg);
- break;
- case BinaryOp::LooselyInequals:
- generator.emit<Bytecode::Op::LooselyInequals>(lhs_reg);
- break;
- case BinaryOp::LooselyEquals:
- generator.emit<Bytecode::Op::LooselyEquals>(lhs_reg);
- break;
- case BinaryOp::StrictlyInequals:
- generator.emit<Bytecode::Op::StrictlyInequals>(lhs_reg);
- break;
- case BinaryOp::StrictlyEquals:
- generator.emit<Bytecode::Op::StrictlyEquals>(lhs_reg);
- break;
- case BinaryOp::BitwiseAnd:
- generator.emit<Bytecode::Op::BitwiseAnd>(lhs_reg);
- break;
- case BinaryOp::BitwiseOr:
- generator.emit<Bytecode::Op::BitwiseOr>(lhs_reg);
- break;
- case BinaryOp::BitwiseXor:
- generator.emit<Bytecode::Op::BitwiseXor>(lhs_reg);
- break;
- case BinaryOp::LeftShift:
- generator.emit<Bytecode::Op::LeftShift>(lhs_reg);
- break;
- case BinaryOp::RightShift:
- generator.emit<Bytecode::Op::RightShift>(lhs_reg);
- break;
- case BinaryOp::UnsignedRightShift:
- generator.emit<Bytecode::Op::UnsignedRightShift>(lhs_reg);
- break;
- case BinaryOp::In:
- generator.emit<Bytecode::Op::In>(lhs_reg);
- break;
- case BinaryOp::InstanceOf:
- generator.emit<Bytecode::Op::InstanceOf>(lhs_reg);
- break;
- default:
- VERIFY_NOT_REACHED();
- }
- return {};
- }
- Bytecode::CodeGenerationErrorOr<void> LogicalExpression::generate_bytecode(Bytecode::Generator& generator) const
- {
- TRY(m_lhs->generate_bytecode(generator));
- // lhs
- // jump op (true) end (false) rhs
- // rhs
- // jump always (true) end
- // end
- auto& rhs_block = generator.make_block();
- auto& end_block = generator.make_block();
- switch (m_op) {
- case LogicalOp::And:
- generator.emit<Bytecode::Op::JumpConditional>().set_targets(
- Bytecode::Label { rhs_block },
- Bytecode::Label { end_block });
- break;
- case LogicalOp::Or:
- generator.emit<Bytecode::Op::JumpConditional>().set_targets(
- Bytecode::Label { end_block },
- Bytecode::Label { rhs_block });
- break;
- case LogicalOp::NullishCoalescing:
- generator.emit<Bytecode::Op::JumpNullish>().set_targets(
- Bytecode::Label { rhs_block },
- Bytecode::Label { end_block });
- break;
- default:
- VERIFY_NOT_REACHED();
- }
- generator.switch_to_basic_block(rhs_block);
- TRY(m_rhs->generate_bytecode(generator));
- generator.emit<Bytecode::Op::Jump>().set_targets(
- Bytecode::Label { end_block },
- {});
- generator.switch_to_basic_block(end_block);
- return {};
- }
- Bytecode::CodeGenerationErrorOr<void> UnaryExpression::generate_bytecode(Bytecode::Generator& generator) const
- {
- if (m_op == UnaryOp::Delete)
- return generator.emit_delete_reference(m_lhs);
- // Typeof needs some special handling for when the LHS is an Identifier. Namely, it shouldn't throw on unresolvable references, but instead return "undefined".
- if (m_op != UnaryOp::Typeof)
- TRY(m_lhs->generate_bytecode(generator));
- switch (m_op) {
- case UnaryOp::BitwiseNot:
- generator.emit<Bytecode::Op::BitwiseNot>();
- break;
- case UnaryOp::Not:
- generator.emit<Bytecode::Op::Not>();
- break;
- case UnaryOp::Plus:
- generator.emit<Bytecode::Op::UnaryPlus>();
- break;
- case UnaryOp::Minus:
- generator.emit<Bytecode::Op::UnaryMinus>();
- break;
- case UnaryOp::Typeof:
- if (is<Identifier>(*m_lhs)) {
- auto& identifier = static_cast<Identifier const&>(*m_lhs);
- generator.emit<Bytecode::Op::TypeofVariable>(generator.intern_identifier(identifier.string()));
- break;
- }
- TRY(m_lhs->generate_bytecode(generator));
- generator.emit<Bytecode::Op::Typeof>();
- break;
- case UnaryOp::Void:
- generator.emit<Bytecode::Op::LoadImmediate>(js_undefined());
- break;
- case UnaryOp::Delete: // Delete is implemented above.
- default:
- VERIFY_NOT_REACHED();
- }
- return {};
- }
- Bytecode::CodeGenerationErrorOr<void> NumericLiteral::generate_bytecode(Bytecode::Generator& generator) const
- {
- generator.emit<Bytecode::Op::LoadImmediate>(m_value);
- return {};
- }
- Bytecode::CodeGenerationErrorOr<void> BooleanLiteral::generate_bytecode(Bytecode::Generator& generator) const
- {
- generator.emit<Bytecode::Op::LoadImmediate>(Value(m_value));
- return {};
- }
- Bytecode::CodeGenerationErrorOr<void> NullLiteral::generate_bytecode(Bytecode::Generator& generator) const
- {
- generator.emit<Bytecode::Op::LoadImmediate>(js_null());
- return {};
- }
- Bytecode::CodeGenerationErrorOr<void> BigIntLiteral::generate_bytecode(Bytecode::Generator& generator) const
- {
- // 1. Return the NumericValue of NumericLiteral as defined in 12.8.3.
- auto integer = [&] {
- if (m_value[0] == '0' && m_value.length() >= 3)
- if (m_value[1] == 'x' || m_value[1] == 'X')
- return Crypto::SignedBigInteger::from_base(16, m_value.substring(2, m_value.length() - 3));
- if (m_value[1] == 'o' || m_value[1] == 'O')
- return Crypto::SignedBigInteger::from_base(8, m_value.substring(2, m_value.length() - 3));
- if (m_value[1] == 'b' || m_value[1] == 'B')
- return Crypto::SignedBigInteger::from_base(2, m_value.substring(2, m_value.length() - 3));
- return Crypto::SignedBigInteger::from_base(10, m_value.substring(0, m_value.length() - 1));
- }();
- generator.emit<Bytecode::Op::NewBigInt>(integer);
- return {};
- }
- Bytecode::CodeGenerationErrorOr<void> StringLiteral::generate_bytecode(Bytecode::Generator& generator) const
- {
- generator.emit<Bytecode::Op::NewString>(generator.intern_string(m_value));
- return {};
- }
- Bytecode::CodeGenerationErrorOr<void> RegExpLiteral::generate_bytecode(Bytecode::Generator& generator) const
- {
- auto source_index = generator.intern_string(m_pattern);
- auto flags_index = generator.intern_string(m_flags);
- generator.emit<Bytecode::Op::NewRegExp>(source_index, flags_index);
- return {};
- }
- Bytecode::CodeGenerationErrorOr<void> Identifier::generate_bytecode(Bytecode::Generator& generator) const
- {
- generator.emit<Bytecode::Op::GetVariable>(generator.intern_identifier(m_string));
- return {};
- }
- static Bytecode::CodeGenerationErrorOr<void> arguments_to_array_for_call(Bytecode::Generator& generator, ReadonlySpan<CallExpression::Argument> arguments)
- {
- if (arguments.is_empty()) {
- generator.emit<Bytecode::Op::NewArray>();
- return {};
- }
- auto first_spread = find_if(arguments.begin(), arguments.end(), [](auto el) { return el.is_spread; });
- Bytecode::Register args_start_reg { 0 };
- for (auto it = arguments.begin(); it != first_spread; ++it) {
- auto reg = generator.allocate_register();
- if (args_start_reg.index() == 0)
- args_start_reg = reg;
- }
- u32 i = 0;
- for (auto it = arguments.begin(); it != first_spread; ++it, ++i) {
- VERIFY(it->is_spread == false);
- Bytecode::Register reg { args_start_reg.index() + i };
- TRY(it->value->generate_bytecode(generator));
- generator.emit<Bytecode::Op::Store>(reg);
- }
- if (first_spread.index() != 0)
- generator.emit_with_extra_register_slots<Bytecode::Op::NewArray>(2u, AK::Array { args_start_reg, Bytecode::Register { args_start_reg.index() + static_cast<u32>(first_spread.index() - 1) } });
- else
- generator.emit<Bytecode::Op::NewArray>();
- if (first_spread != arguments.end()) {
- auto array_reg = generator.allocate_register();
- generator.emit<Bytecode::Op::Store>(array_reg);
- for (auto it = first_spread; it != arguments.end(); ++it) {
- TRY(it->value->generate_bytecode(generator));
- generator.emit<Bytecode::Op::Append>(array_reg, it->is_spread);
- }
- generator.emit<Bytecode::Op::Load>(array_reg);
- }
- return {};
- }
- Bytecode::CodeGenerationErrorOr<void> SuperCall::generate_bytecode(Bytecode::Generator& generator) const
- {
- if (m_is_synthetic == IsPartOfSyntheticConstructor::Yes) {
- // NOTE: This is the case where we have a fake constructor(...args) { super(...args); } which
- // shouldn't call @@iterator of %Array.prototype%.
- VERIFY(m_arguments.size() == 1);
- VERIFY(m_arguments[0].is_spread);
- auto const& argument = m_arguments[0];
- // This generates a single argument, which will be implicitly passed in accumulator
- MUST(argument.value->generate_bytecode(generator));
- } else {
- TRY(arguments_to_array_for_call(generator, m_arguments));
- }
- generator.emit<Bytecode::Op::SuperCall>(m_is_synthetic == IsPartOfSyntheticConstructor::Yes);
- return {};
- }
- static Bytecode::CodeGenerationErrorOr<void> generate_binding_pattern_bytecode(Bytecode::Generator& generator, BindingPattern const& pattern, Bytecode::Op::SetVariable::InitializationMode, Bytecode::Register const& value_reg);
- Bytecode::CodeGenerationErrorOr<void> AssignmentExpression::generate_bytecode(Bytecode::Generator& generator) const
- {
- if (m_op == AssignmentOp::Assignment) {
- // AssignmentExpression : LeftHandSideExpression = AssignmentExpression
- return m_lhs.visit(
- // 1. If LeftHandSideExpression is neither an ObjectLiteral nor an ArrayLiteral, then
- [&](NonnullRefPtr<Expression const> const& lhs) -> Bytecode::CodeGenerationErrorOr<void> {
- // a. Let lref be the result of evaluating LeftHandSideExpression.
- // b. ReturnIfAbrupt(lref).
- Optional<Bytecode::Register> base_object_register;
- Optional<Bytecode::Register> computed_property_register;
- if (is<MemberExpression>(*lhs)) {
- auto& expression = static_cast<MemberExpression const&>(*lhs);
- TRY(expression.object().generate_bytecode(generator));
- base_object_register = generator.allocate_register();
- generator.emit<Bytecode::Op::Store>(*base_object_register);
- if (expression.is_computed()) {
- TRY(expression.property().generate_bytecode(generator));
- computed_property_register = generator.allocate_register();
- generator.emit<Bytecode::Op::Store>(*computed_property_register);
- // To be continued later with PutByValue.
- } else if (expression.property().is_identifier()) {
- // Do nothing, this will be handled by PutById later.
- } else {
- return Bytecode::CodeGenerationError {
- &expression,
- "Unimplemented non-computed member expression"sv
- };
- }
- } else if (is<Identifier>(*lhs)) {
- // NOTE: For Identifiers, we cannot perform GetVariable and then write into the reference it retrieves, only SetVariable can do this.
- // FIXME: However, this breaks spec as we are doing variable lookup after evaluating the RHS. This is observable in an object environment, where we visibly perform HasOwnProperty and Get(@@unscopables) on the binded object.
- } else {
- TRY(lhs->generate_bytecode(generator));
- }
- // FIXME: c. If IsAnonymousFunctionDefinition(AssignmentExpression) and IsIdentifierRef of LeftHandSideExpression are both true, then
- // i. Let rval be ? NamedEvaluation of AssignmentExpression with argument lref.[[ReferencedName]].
- // d. Else,
- // i. Let rref be the result of evaluating AssignmentExpression.
- // ii. Let rval be ? GetValue(rref).
- TRY(m_rhs->generate_bytecode(generator));
- // e. Perform ? PutValue(lref, rval).
- if (is<Identifier>(*lhs)) {
- auto& identifier = static_cast<Identifier const&>(*lhs);
- generator.emit<Bytecode::Op::SetVariable>(generator.intern_identifier(identifier.string()));
- } else if (is<MemberExpression>(*lhs)) {
- auto& expression = static_cast<MemberExpression const&>(*lhs);
- if (expression.is_computed()) {
- generator.emit<Bytecode::Op::PutByValue>(*base_object_register, *computed_property_register);
- } else if (expression.property().is_identifier()) {
- auto identifier_table_ref = generator.intern_identifier(verify_cast<Identifier>(expression.property()).string());
- generator.emit<Bytecode::Op::PutById>(*base_object_register, identifier_table_ref);
- } else {
- return Bytecode::CodeGenerationError {
- &expression,
- "Unimplemented non-computed member expression"sv
- };
- }
- } else {
- return Bytecode::CodeGenerationError {
- lhs,
- "Unimplemented/invalid node used a reference"sv
- };
- }
- // f. Return rval.
- // NOTE: This is already in the accumulator.
- return {};
- },
- // 2. Let assignmentPattern be the AssignmentPattern that is covered by LeftHandSideExpression.
- [&](NonnullRefPtr<BindingPattern const> const& pattern) -> Bytecode::CodeGenerationErrorOr<void> {
- // 3. Let rref be the result of evaluating AssignmentExpression.
- // 4. Let rval be ? GetValue(rref).
- TRY(m_rhs->generate_bytecode(generator));
- auto value_register = generator.allocate_register();
- generator.emit<Bytecode::Op::Store>(value_register);
- // 5. Perform ? DestructuringAssignmentEvaluation of assignmentPattern with argument rval.
- TRY(generate_binding_pattern_bytecode(generator, pattern, Bytecode::Op::SetVariable::InitializationMode::Set, value_register));
- // 6. Return rval.
- generator.emit<Bytecode::Op::Load>(value_register);
- return {};
- });
- }
- VERIFY(m_lhs.has<NonnullRefPtr<Expression const>>());
- auto& lhs = m_lhs.get<NonnullRefPtr<Expression const>>();
- TRY(generator.emit_load_from_reference(lhs));
- Bytecode::BasicBlock* rhs_block_ptr { nullptr };
- Bytecode::BasicBlock* end_block_ptr { nullptr };
- // Logical assignments short circuit.
- if (m_op == AssignmentOp::AndAssignment) { // &&=
- rhs_block_ptr = &generator.make_block();
- end_block_ptr = &generator.make_block();
- generator.emit<Bytecode::Op::JumpConditional>().set_targets(
- Bytecode::Label { *rhs_block_ptr },
- Bytecode::Label { *end_block_ptr });
- } else if (m_op == AssignmentOp::OrAssignment) { // ||=
- rhs_block_ptr = &generator.make_block();
- end_block_ptr = &generator.make_block();
- generator.emit<Bytecode::Op::JumpConditional>().set_targets(
- Bytecode::Label { *end_block_ptr },
- Bytecode::Label { *rhs_block_ptr });
- } else if (m_op == AssignmentOp::NullishAssignment) { // ??=
- rhs_block_ptr = &generator.make_block();
- end_block_ptr = &generator.make_block();
- generator.emit<Bytecode::Op::JumpNullish>().set_targets(
- Bytecode::Label { *rhs_block_ptr },
- Bytecode::Label { *end_block_ptr });
- }
- if (rhs_block_ptr)
- generator.switch_to_basic_block(*rhs_block_ptr);
- // lhs_reg is a part of the rhs_block because the store isn't necessary
- // if the logical assignment condition fails.
- auto lhs_reg = generator.allocate_register();
- generator.emit<Bytecode::Op::Store>(lhs_reg);
- TRY(m_rhs->generate_bytecode(generator));
- switch (m_op) {
- case AssignmentOp::AdditionAssignment:
- generator.emit<Bytecode::Op::Add>(lhs_reg);
- break;
- case AssignmentOp::SubtractionAssignment:
- generator.emit<Bytecode::Op::Sub>(lhs_reg);
- break;
- case AssignmentOp::MultiplicationAssignment:
- generator.emit<Bytecode::Op::Mul>(lhs_reg);
- break;
- case AssignmentOp::DivisionAssignment:
- generator.emit<Bytecode::Op::Div>(lhs_reg);
- break;
- case AssignmentOp::ModuloAssignment:
- generator.emit<Bytecode::Op::Mod>(lhs_reg);
- break;
- case AssignmentOp::ExponentiationAssignment:
- generator.emit<Bytecode::Op::Exp>(lhs_reg);
- break;
- case AssignmentOp::BitwiseAndAssignment:
- generator.emit<Bytecode::Op::BitwiseAnd>(lhs_reg);
- break;
- case AssignmentOp::BitwiseOrAssignment:
- generator.emit<Bytecode::Op::BitwiseOr>(lhs_reg);
- break;
- case AssignmentOp::BitwiseXorAssignment:
- generator.emit<Bytecode::Op::BitwiseXor>(lhs_reg);
- break;
- case AssignmentOp::LeftShiftAssignment:
- generator.emit<Bytecode::Op::LeftShift>(lhs_reg);
- break;
- case AssignmentOp::RightShiftAssignment:
- generator.emit<Bytecode::Op::RightShift>(lhs_reg);
- break;
- case AssignmentOp::UnsignedRightShiftAssignment:
- generator.emit<Bytecode::Op::UnsignedRightShift>(lhs_reg);
- break;
- case AssignmentOp::AndAssignment:
- case AssignmentOp::OrAssignment:
- case AssignmentOp::NullishAssignment:
- break; // These are handled above.
- default:
- return Bytecode::CodeGenerationError {
- this,
- "Unimplemented operation"sv,
- };
- }
- TRY(generator.emit_store_to_reference(lhs));
- if (end_block_ptr) {
- generator.emit<Bytecode::Op::Jump>().set_targets(
- Bytecode::Label { *end_block_ptr },
- {});
- generator.switch_to_basic_block(*end_block_ptr);
- }
- return {};
- }
- // 14.13.3 Runtime Semantics: Evaluation, https://tc39.es/ecma262/#sec-labelled-statements-runtime-semantics-evaluation
- // LabelledStatement : LabelIdentifier : LabelledItem
- Bytecode::CodeGenerationErrorOr<void> LabelledStatement::generate_bytecode(Bytecode::Generator& generator) const
- {
- // Return ? LabelledEvaluation of this LabelledStatement with argument « ».
- return generate_labelled_evaluation(generator, {});
- }
- // 14.13.4 Runtime Semantics: LabelledEvaluation, https://tc39.es/ecma262/#sec-runtime-semantics-labelledevaluation
- // LabelledStatement : LabelIdentifier : LabelledItem
- Bytecode::CodeGenerationErrorOr<void> LabelledStatement::generate_labelled_evaluation(Bytecode::Generator& generator, Vector<DeprecatedFlyString> const& label_set) const
- {
- // Convert the m_labelled_item NNRP to a reference early so we don't have to do it every single time we want to use it.
- auto const& labelled_item = *m_labelled_item;
- // 1. Let label be the StringValue of LabelIdentifier.
- // NOTE: Not necessary, this is m_label.
- // 2. Let newLabelSet be the list-concatenation of labelSet and « label ».
- // FIXME: Avoid copy here.
- auto new_label_set = label_set;
- new_label_set.append(m_label);
- // 3. Let stmtResult be LabelledEvaluation of LabelledItem with argument newLabelSet.
- // NOTE: stmtResult will be in the accumulator after running the generated bytecode.
- if (is<IterationStatement>(labelled_item)) {
- auto const& iteration_statement = static_cast<IterationStatement const&>(labelled_item);
- TRY(iteration_statement.generate_labelled_evaluation(generator, new_label_set));
- } else if (is<SwitchStatement>(labelled_item)) {
- auto const& switch_statement = static_cast<SwitchStatement const&>(labelled_item);
- TRY(switch_statement.generate_labelled_evaluation(generator, new_label_set));
- } else if (is<LabelledStatement>(labelled_item)) {
- auto const& labelled_statement = static_cast<LabelledStatement const&>(labelled_item);
- TRY(labelled_statement.generate_labelled_evaluation(generator, new_label_set));
- } else {
- auto& labelled_break_block = generator.make_block();
- // NOTE: We do not need a continuable scope as `continue;` is not allowed outside of iteration statements, throwing a SyntaxError in the parser.
- generator.begin_breakable_scope(Bytecode::Label { labelled_break_block }, new_label_set);
- TRY(labelled_item.generate_bytecode(generator));
- generator.end_breakable_scope();
- if (!generator.is_current_block_terminated()) {
- generator.emit<Bytecode::Op::Jump>().set_targets(
- Bytecode::Label { labelled_break_block },
- {});
- }
- generator.switch_to_basic_block(labelled_break_block);
- }
- // 4. If stmtResult.[[Type]] is break and SameValue(stmtResult.[[Target]], label) is true, then
- // a. Set stmtResult to NormalCompletion(stmtResult.[[Value]]).
- // NOTE: These steps are performed by making labelled break jump straight to the appropriate break block, which preserves the statement result's value in the accumulator.
- // 5. Return Completion(stmtResult).
- // NOTE: This is in the accumulator.
- return {};
- }
- Bytecode::CodeGenerationErrorOr<void> IterationStatement::generate_labelled_evaluation(Bytecode::Generator&, Vector<DeprecatedFlyString> const&) const
- {
- return Bytecode::CodeGenerationError {
- this,
- "Missing generate_labelled_evaluation()"sv,
- };
- }
- Bytecode::CodeGenerationErrorOr<void> WhileStatement::generate_bytecode(Bytecode::Generator& generator) const
- {
- return generate_labelled_evaluation(generator, {});
- }
- Bytecode::CodeGenerationErrorOr<void> WhileStatement::generate_labelled_evaluation(Bytecode::Generator& generator, Vector<DeprecatedFlyString> const& label_set) const
- {
- // test
- // jump if_false (true) end (false) body
- // body
- // jump always (true) test
- // end
- auto& test_block = generator.make_block();
- auto& body_block = generator.make_block();
- auto& end_block = generator.make_block();
- // Init result register
- generator.emit<Bytecode::Op::LoadImmediate>(js_undefined());
- auto result_reg = generator.allocate_register();
- generator.emit<Bytecode::Op::Store>(result_reg);
- // jump to the test block
- generator.emit<Bytecode::Op::Jump>().set_targets(
- Bytecode::Label { test_block },
- {});
- generator.switch_to_basic_block(test_block);
- TRY(m_test->generate_bytecode(generator));
- generator.emit<Bytecode::Op::JumpConditional>().set_targets(
- Bytecode::Label { body_block },
- Bytecode::Label { end_block });
- generator.switch_to_basic_block(body_block);
- generator.begin_continuable_scope(Bytecode::Label { test_block }, label_set);
- generator.begin_breakable_scope(Bytecode::Label { end_block }, label_set);
- TRY(m_body->generate_bytecode(generator));
- generator.end_breakable_scope();
- generator.end_continuable_scope();
- if (!generator.is_current_block_terminated()) {
- generator.emit<Bytecode::Op::Jump>().set_targets(
- Bytecode::Label { test_block },
- {});
- }
- generator.switch_to_basic_block(end_block);
- generator.emit<Bytecode::Op::Load>(result_reg);
- return {};
- }
- Bytecode::CodeGenerationErrorOr<void> DoWhileStatement::generate_bytecode(Bytecode::Generator& generator) const
- {
- return generate_labelled_evaluation(generator, {});
- }
- Bytecode::CodeGenerationErrorOr<void> DoWhileStatement::generate_labelled_evaluation(Bytecode::Generator& generator, Vector<DeprecatedFlyString> const& label_set) const
- {
- // jump always (true) body
- // test
- // jump if_false (true) end (false) body
- // body
- // jump always (true) test
- // end
- auto& test_block = generator.make_block();
- auto& body_block = generator.make_block();
- auto& end_block = generator.make_block();
- // Init result register
- generator.emit<Bytecode::Op::LoadImmediate>(js_undefined());
- auto result_reg = generator.allocate_register();
- generator.emit<Bytecode::Op::Store>(result_reg);
- // jump to the body block
- generator.emit<Bytecode::Op::Jump>().set_targets(
- Bytecode::Label { body_block },
- {});
- generator.switch_to_basic_block(test_block);
- TRY(m_test->generate_bytecode(generator));
- generator.emit<Bytecode::Op::JumpConditional>().set_targets(
- Bytecode::Label { body_block },
- Bytecode::Label { end_block });
- generator.switch_to_basic_block(body_block);
- generator.begin_continuable_scope(Bytecode::Label { test_block }, label_set);
- generator.begin_breakable_scope(Bytecode::Label { end_block }, label_set);
- TRY(m_body->generate_bytecode(generator));
- generator.end_breakable_scope();
- generator.end_continuable_scope();
- if (!generator.is_current_block_terminated()) {
- generator.emit<Bytecode::Op::Jump>().set_targets(
- Bytecode::Label { test_block },
- {});
- }
- generator.switch_to_basic_block(end_block);
- generator.emit<Bytecode::Op::Load>(result_reg);
- return {};
- }
- Bytecode::CodeGenerationErrorOr<void> ForStatement::generate_bytecode(Bytecode::Generator& generator) const
- {
- return generate_labelled_evaluation(generator, {});
- }
- Bytecode::CodeGenerationErrorOr<void> ForStatement::generate_labelled_evaluation(Bytecode::Generator& generator, Vector<DeprecatedFlyString> const& label_set) const
- {
- // init
- // jump always (true) test
- // test
- // jump if_true (true) body (false) end
- // body
- // jump always (true) update
- // update
- // jump always (true) test
- // end
- // If 'test' is missing, fuse the 'test' and 'body' basic blocks
- // If 'update' is missing, fuse the 'body' and 'update' basic blocks
- Bytecode::BasicBlock* test_block_ptr { nullptr };
- Bytecode::BasicBlock* body_block_ptr { nullptr };
- Bytecode::BasicBlock* update_block_ptr { nullptr };
- auto& end_block = generator.make_block();
- bool has_lexical_environment = false;
- if (m_init) {
- if (m_init->is_variable_declaration()) {
- auto& variable_declaration = verify_cast<VariableDeclaration>(*m_init);
- if (variable_declaration.is_lexical_declaration()) {
- has_lexical_environment = true;
- // FIXME: Is Block correct?
- generator.begin_variable_scope(Bytecode::Generator::BindingMode::Lexical, Bytecode::Generator::SurroundingScopeKind::Block);
- bool is_const = variable_declaration.is_constant_declaration();
- // NOTE: Nothing in the callback throws an exception.
- MUST(variable_declaration.for_each_bound_name([&](auto const& name) {
- auto index = generator.intern_identifier(name);
- generator.register_binding(index);
- generator.emit<Bytecode::Op::CreateVariable>(index, Bytecode::Op::EnvironmentMode::Lexical, is_const);
- }));
- }
- }
- TRY(m_init->generate_bytecode(generator));
- }
- body_block_ptr = &generator.make_block();
- if (m_test)
- test_block_ptr = &generator.make_block();
- else
- test_block_ptr = body_block_ptr;
- if (m_update)
- update_block_ptr = &generator.make_block();
- else
- update_block_ptr = body_block_ptr;
- generator.emit<Bytecode::Op::LoadImmediate>(js_undefined());
- auto result_reg = generator.allocate_register();
- generator.emit<Bytecode::Op::Store>(result_reg);
- generator.emit<Bytecode::Op::Jump>().set_targets(
- Bytecode::Label { *test_block_ptr },
- {});
- if (m_test) {
- generator.switch_to_basic_block(*test_block_ptr);
- TRY(m_test->generate_bytecode(generator));
- generator.emit<Bytecode::Op::JumpConditional>().set_targets(
- Bytecode::Label { *body_block_ptr },
- Bytecode::Label { end_block });
- }
- generator.switch_to_basic_block(*body_block_ptr);
- generator.begin_continuable_scope(Bytecode::Label { *update_block_ptr }, label_set);
- generator.begin_breakable_scope(Bytecode::Label { end_block }, label_set);
- TRY(m_body->generate_bytecode(generator));
- generator.end_breakable_scope();
- generator.end_continuable_scope();
- if (!generator.is_current_block_terminated()) {
- if (m_update) {
- generator.emit<Bytecode::Op::Jump>().set_targets(
- Bytecode::Label { *update_block_ptr },
- {});
- generator.switch_to_basic_block(*update_block_ptr);
- TRY(m_update->generate_bytecode(generator));
- }
- generator.emit<Bytecode::Op::Jump>().set_targets(
- Bytecode::Label { *test_block_ptr },
- {});
- }
- generator.switch_to_basic_block(end_block);
- generator.emit<Bytecode::Op::Load>(result_reg);
- if (has_lexical_environment)
- generator.end_variable_scope();
- return {};
- }
- Bytecode::CodeGenerationErrorOr<void> ObjectExpression::generate_bytecode(Bytecode::Generator& generator) const
- {
- generator.emit<Bytecode::Op::NewObject>();
- if (m_properties.is_empty())
- return {};
- auto object_reg = generator.allocate_register();
- generator.emit<Bytecode::Op::Store>(object_reg);
- for (auto& property : m_properties) {
- Bytecode::Op::PropertyKind property_kind;
- switch (property->type()) {
- case ObjectProperty::Type::KeyValue:
- property_kind = Bytecode::Op::PropertyKind::KeyValue;
- break;
- case ObjectProperty::Type::Getter:
- property_kind = Bytecode::Op::PropertyKind::Getter;
- break;
- case ObjectProperty::Type::Setter:
- property_kind = Bytecode::Op::PropertyKind::Setter;
- break;
- case ObjectProperty::Type::Spread:
- property_kind = Bytecode::Op::PropertyKind::Spread;
- break;
- case ObjectProperty::Type::ProtoSetter:
- property_kind = Bytecode::Op::PropertyKind::ProtoSetter;
- break;
- }
- if (is<StringLiteral>(property->key())) {
- auto& string_literal = static_cast<StringLiteral const&>(property->key());
- Bytecode::IdentifierTableIndex key_name = generator.intern_identifier(string_literal.value());
- if (property_kind != Bytecode::Op::PropertyKind::Spread)
- TRY(property->value().generate_bytecode(generator));
- generator.emit<Bytecode::Op::PutById>(object_reg, key_name, property_kind);
- } else {
- TRY(property->key().generate_bytecode(generator));
- auto property_reg = generator.allocate_register();
- generator.emit<Bytecode::Op::Store>(property_reg);
- if (property_kind != Bytecode::Op::PropertyKind::Spread)
- TRY(property->value().generate_bytecode(generator));
- generator.emit<Bytecode::Op::PutByValue>(object_reg, property_reg, property_kind);
- }
- }
- generator.emit<Bytecode::Op::Load>(object_reg);
- return {};
- }
- Bytecode::CodeGenerationErrorOr<void> ArrayExpression::generate_bytecode(Bytecode::Generator& generator) const
- {
- if (m_elements.is_empty()) {
- generator.emit<Bytecode::Op::NewArray>();
- return {};
- }
- auto first_spread = find_if(m_elements.begin(), m_elements.end(), [](auto el) { return el && is<SpreadExpression>(*el); });
- Bytecode::Register args_start_reg { 0 };
- for (auto it = m_elements.begin(); it != first_spread; ++it) {
- auto reg = generator.allocate_register();
- if (args_start_reg.index() == 0)
- args_start_reg = reg;
- }
- u32 i = 0;
- for (auto it = m_elements.begin(); it != first_spread; ++it, ++i) {
- Bytecode::Register reg { args_start_reg.index() + i };
- if (!*it)
- generator.emit<Bytecode::Op::LoadImmediate>(Value {});
- else {
- TRY((*it)->generate_bytecode(generator));
- }
- generator.emit<Bytecode::Op::Store>(reg);
- }
- if (first_spread.index() != 0)
- generator.emit_with_extra_register_slots<Bytecode::Op::NewArray>(2u, AK::Array { args_start_reg, Bytecode::Register { args_start_reg.index() + static_cast<u32>(first_spread.index() - 1) } });
- else
- generator.emit<Bytecode::Op::NewArray>();
- if (first_spread != m_elements.end()) {
- auto array_reg = generator.allocate_register();
- generator.emit<Bytecode::Op::Store>(array_reg);
- for (auto it = first_spread; it != m_elements.end(); ++it) {
- if (!*it) {
- generator.emit<Bytecode::Op::LoadImmediate>(Value {});
- generator.emit<Bytecode::Op::Append>(array_reg, false);
- } else {
- TRY((*it)->generate_bytecode(generator));
- generator.emit<Bytecode::Op::Append>(array_reg, *it && is<SpreadExpression>(**it));
- }
- }
- generator.emit<Bytecode::Op::Load>(array_reg);
- }
- return {};
- }
- Bytecode::CodeGenerationErrorOr<void> MemberExpression::generate_bytecode(Bytecode::Generator& generator) const
- {
- return generator.emit_load_from_reference(*this);
- }
- Bytecode::CodeGenerationErrorOr<void> FunctionDeclaration::generate_bytecode(Bytecode::Generator& generator) const
- {
- if (m_is_hoisted) {
- auto index = generator.intern_identifier(name());
- generator.emit<Bytecode::Op::GetVariable>(index);
- generator.emit<Bytecode::Op::SetVariable>(index, Bytecode::Op::SetVariable::InitializationMode::Set, Bytecode::Op::EnvironmentMode::Var);
- }
- return {};
- }
- Bytecode::CodeGenerationErrorOr<void> FunctionExpression::generate_bytecode(Bytecode::Generator& generator) const
- {
- bool has_name = !name().is_empty();
- Optional<Bytecode::IdentifierTableIndex> name_identifier;
- if (has_name) {
- generator.begin_variable_scope(Bytecode::Generator::BindingMode::Lexical);
- name_identifier = generator.intern_identifier(name());
- generator.emit<Bytecode::Op::CreateVariable>(*name_identifier, Bytecode::Op::EnvironmentMode::Lexical, true);
- }
- generator.emit<Bytecode::Op::NewFunction>(*this);
- if (has_name) {
- generator.emit<Bytecode::Op::SetVariable>(*name_identifier, Bytecode::Op::SetVariable::InitializationMode::Initialize, Bytecode::Op::EnvironmentMode::Lexical);
- generator.end_variable_scope();
- }
- return {};
- }
- static Bytecode::CodeGenerationErrorOr<void> generate_object_binding_pattern_bytecode(Bytecode::Generator& generator, BindingPattern const& pattern, Bytecode::Op::SetVariable::InitializationMode initialization_mode, Bytecode::Register const& value_reg)
- {
- Vector<Bytecode::Register> excluded_property_names;
- auto has_rest = false;
- if (pattern.entries.size() > 0)
- has_rest = pattern.entries[pattern.entries.size() - 1].is_rest;
- for (auto& [name, alias, initializer, is_rest] : pattern.entries) {
- if (is_rest) {
- VERIFY(name.has<NonnullRefPtr<Identifier const>>());
- VERIFY(alias.has<Empty>());
- VERIFY(!initializer);
- auto identifier = name.get<NonnullRefPtr<Identifier const>>()->string();
- auto interned_identifier = generator.intern_identifier(identifier);
- generator.emit_with_extra_register_slots<Bytecode::Op::CopyObjectExcludingProperties>(excluded_property_names.size(), value_reg, excluded_property_names);
- generator.emit<Bytecode::Op::SetVariable>(interned_identifier, initialization_mode);
- return {};
- }
- Bytecode::StringTableIndex name_index;
- if (name.has<NonnullRefPtr<Identifier const>>()) {
- auto identifier = name.get<NonnullRefPtr<Identifier const>>()->string();
- name_index = generator.intern_string(identifier);
- if (has_rest) {
- auto excluded_name_reg = generator.allocate_register();
- excluded_property_names.append(excluded_name_reg);
- generator.emit<Bytecode::Op::NewString>(name_index);
- generator.emit<Bytecode::Op::Store>(excluded_name_reg);
- }
- generator.emit<Bytecode::Op::Load>(value_reg);
- generator.emit<Bytecode::Op::GetById>(generator.intern_identifier(identifier));
- } else {
- auto expression = name.get<NonnullRefPtr<Expression const>>();
- TRY(expression->generate_bytecode(generator));
- if (has_rest) {
- auto excluded_name_reg = generator.allocate_register();
- excluded_property_names.append(excluded_name_reg);
- generator.emit<Bytecode::Op::Store>(excluded_name_reg);
- }
- generator.emit<Bytecode::Op::GetByValue>(value_reg);
- }
- if (initializer) {
- auto& if_undefined_block = generator.make_block();
- auto& if_not_undefined_block = generator.make_block();
- generator.emit<Bytecode::Op::JumpUndefined>().set_targets(
- Bytecode::Label { if_undefined_block },
- Bytecode::Label { if_not_undefined_block });
- generator.switch_to_basic_block(if_undefined_block);
- TRY(initializer->generate_bytecode(generator));
- generator.emit<Bytecode::Op::Jump>().set_targets(
- Bytecode::Label { if_not_undefined_block },
- {});
- generator.switch_to_basic_block(if_not_undefined_block);
- }
- if (alias.has<NonnullRefPtr<BindingPattern const>>()) {
- auto& binding_pattern = *alias.get<NonnullRefPtr<BindingPattern const>>();
- auto nested_value_reg = generator.allocate_register();
- generator.emit<Bytecode::Op::Store>(nested_value_reg);
- TRY(generate_binding_pattern_bytecode(generator, binding_pattern, initialization_mode, nested_value_reg));
- } else if (alias.has<Empty>()) {
- if (name.has<NonnullRefPtr<Expression const>>()) {
- // This needs some sort of SetVariableByValue opcode, as it's a runtime binding
- return Bytecode::CodeGenerationError {
- name.get<NonnullRefPtr<Expression const>>().ptr(),
- "Unimplemented name/alias pair: Empty/Expression"sv,
- };
- }
- auto& identifier = name.get<NonnullRefPtr<Identifier const>>()->string();
- generator.emit<Bytecode::Op::SetVariable>(generator.intern_identifier(identifier), initialization_mode);
- } else {
- auto& identifier = alias.get<NonnullRefPtr<Identifier const>>()->string();
- generator.emit<Bytecode::Op::SetVariable>(generator.intern_identifier(identifier), initialization_mode);
- }
- }
- return {};
- }
- static Bytecode::CodeGenerationErrorOr<void> generate_array_binding_pattern_bytecode(Bytecode::Generator& generator, BindingPattern const& pattern, Bytecode::Op::SetVariable::InitializationMode initialization_mode, Bytecode::Register const& value_reg)
- {
- /*
- * Consider the following destructuring assignment:
- *
- * let [a, b, c, d, e] = o;
- *
- * It would be fairly trivial to just loop through this iterator, getting the value
- * at each step and assigning them to the binding sequentially. However, this is not
- * correct: once an iterator is exhausted, it must not be called again. This complicates
- * the bytecode. In order to accomplish this, we do the following:
- *
- * - Reserve a special boolean register which holds 'true' if the iterator is exhausted,
- * and false otherwise
- * - When we are retrieving the value which should be bound, we first check this register.
- * If it is 'true', we load undefined into the accumulator. Otherwise, we grab the next
- * value from the iterator and store it into the accumulator.
- *
- * Note that the is_exhausted register does not need to be loaded with false because the
- * first IteratorNext bytecode is _not_ proceeded by an exhausted check, as it is
- * unnecessary.
- */
- auto is_iterator_exhausted_register = generator.allocate_register();
- auto iterator_reg = generator.allocate_register();
- generator.emit<Bytecode::Op::Load>(value_reg);
- generator.emit<Bytecode::Op::GetIterator>();
- generator.emit<Bytecode::Op::Store>(iterator_reg);
- bool first = true;
- auto temp_iterator_result_reg = generator.allocate_register();
- auto assign_accumulator_to_alias = [&](auto& alias) {
- return alias.visit(
- [&](Empty) -> Bytecode::CodeGenerationErrorOr<void> {
- // This element is an elision
- return {};
- },
- [&](NonnullRefPtr<Identifier const> const& identifier) -> Bytecode::CodeGenerationErrorOr<void> {
- auto interned_index = generator.intern_identifier(identifier->string());
- generator.emit<Bytecode::Op::SetVariable>(interned_index, initialization_mode);
- return {};
- },
- [&](NonnullRefPtr<BindingPattern const> const& pattern) -> Bytecode::CodeGenerationErrorOr<void> {
- // Store the accumulator value in a permanent register
- auto target_reg = generator.allocate_register();
- generator.emit<Bytecode::Op::Store>(target_reg);
- return generate_binding_pattern_bytecode(generator, pattern, initialization_mode, target_reg);
- },
- [&](NonnullRefPtr<MemberExpression const> const& expr) -> Bytecode::CodeGenerationErrorOr<void> {
- return generator.emit_store_to_reference(*expr);
- });
- };
- for (auto& [name, alias, initializer, is_rest] : pattern.entries) {
- VERIFY(name.has<Empty>());
- if (is_rest) {
- VERIFY(!initializer);
- if (first) {
- // The iterator has not been called, and is thus known to be not exhausted
- generator.emit<Bytecode::Op::Load>(iterator_reg);
- generator.emit<Bytecode::Op::IteratorToArray>();
- } else {
- auto& if_exhausted_block = generator.make_block();
- auto& if_not_exhausted_block = generator.make_block();
- auto& continuation_block = generator.make_block();
- generator.emit<Bytecode::Op::Load>(is_iterator_exhausted_register);
- generator.emit<Bytecode::Op::JumpConditional>().set_targets(
- Bytecode::Label { if_exhausted_block },
- Bytecode::Label { if_not_exhausted_block });
- generator.switch_to_basic_block(if_exhausted_block);
- generator.emit<Bytecode::Op::NewArray>();
- generator.emit<Bytecode::Op::Jump>().set_targets(
- Bytecode::Label { continuation_block },
- {});
- generator.switch_to_basic_block(if_not_exhausted_block);
- generator.emit<Bytecode::Op::Load>(iterator_reg);
- generator.emit<Bytecode::Op::IteratorToArray>();
- generator.emit<Bytecode::Op::Jump>().set_targets(
- Bytecode::Label { continuation_block },
- {});
- generator.switch_to_basic_block(continuation_block);
- }
- return assign_accumulator_to_alias(alias);
- }
- // In the first iteration of the loop, a few things are true which can save
- // us some bytecode:
- // - the iterator result is still in the accumulator, so we can avoid a load
- // - the iterator is not yet exhausted, which can save us a jump and some
- // creation
- auto& iterator_is_exhausted_block = generator.make_block();
- if (!first) {
- auto& iterator_is_not_exhausted_block = generator.make_block();
- generator.emit<Bytecode::Op::Load>(is_iterator_exhausted_register);
- generator.emit<Bytecode::Op::JumpConditional>().set_targets(
- Bytecode::Label { iterator_is_exhausted_block },
- Bytecode::Label { iterator_is_not_exhausted_block });
- generator.switch_to_basic_block(iterator_is_not_exhausted_block);
- generator.emit<Bytecode::Op::Load>(iterator_reg);
- }
- generator.emit<Bytecode::Op::IteratorNext>();
- generator.emit<Bytecode::Op::Store>(temp_iterator_result_reg);
- generator.emit<Bytecode::Op::IteratorResultDone>();
- generator.emit<Bytecode::Op::Store>(is_iterator_exhausted_register);
- // We still have to check for exhaustion here. If the iterator is exhausted,
- // we need to bail before trying to get the value
- auto& no_bail_block = generator.make_block();
- generator.emit<Bytecode::Op::JumpConditional>().set_targets(
- Bytecode::Label { iterator_is_exhausted_block },
- Bytecode::Label { no_bail_block });
- generator.switch_to_basic_block(no_bail_block);
- // Get the next value in the iterator
- generator.emit<Bytecode::Op::Load>(temp_iterator_result_reg);
- generator.emit<Bytecode::Op::IteratorResultValue>();
- auto& create_binding_block = generator.make_block();
- generator.emit<Bytecode::Op::Jump>().set_targets(
- Bytecode::Label { create_binding_block },
- {});
- // The iterator is exhausted, so we just load undefined and continue binding
- generator.switch_to_basic_block(iterator_is_exhausted_block);
- generator.emit<Bytecode::Op::LoadImmediate>(js_undefined());
- generator.emit<Bytecode::Op::Jump>().set_targets(
- Bytecode::Label { create_binding_block },
- {});
- // Create the actual binding. The value which this entry must bind is now in the
- // accumulator. We can proceed, processing the alias as a nested destructuring
- // pattern if necessary.
- generator.switch_to_basic_block(create_binding_block);
- if (initializer) {
- auto& value_is_undefined_block = generator.make_block();
- auto& value_is_not_undefined_block = generator.make_block();
- generator.emit<Bytecode::Op::JumpUndefined>().set_targets(
- Bytecode::Label { value_is_undefined_block },
- Bytecode::Label { value_is_not_undefined_block });
- generator.switch_to_basic_block(value_is_undefined_block);
- TRY(initializer->generate_bytecode(generator));
- generator.emit<Bytecode::Op::Jump>(Bytecode::Label { value_is_not_undefined_block });
- generator.switch_to_basic_block(value_is_not_undefined_block);
- }
- TRY(assign_accumulator_to_alias(alias));
- first = false;
- }
- return {};
- }
- static Bytecode::CodeGenerationErrorOr<void> generate_binding_pattern_bytecode(Bytecode::Generator& generator, BindingPattern const& pattern, Bytecode::Op::SetVariable::InitializationMode initialization_mode, Bytecode::Register const& value_reg)
- {
- if (pattern.kind == BindingPattern::Kind::Object)
- return generate_object_binding_pattern_bytecode(generator, pattern, initialization_mode, value_reg);
- return generate_array_binding_pattern_bytecode(generator, pattern, initialization_mode, value_reg);
- }
- static Bytecode::CodeGenerationErrorOr<void> assign_accumulator_to_variable_declarator(Bytecode::Generator& generator, VariableDeclarator const& declarator, VariableDeclaration const& declaration)
- {
- auto initialization_mode = declaration.is_lexical_declaration() ? Bytecode::Op::SetVariable::InitializationMode::Initialize : Bytecode::Op::SetVariable::InitializationMode::Set;
- return declarator.target().visit(
- [&](NonnullRefPtr<Identifier const> const& id) -> Bytecode::CodeGenerationErrorOr<void> {
- generator.emit<Bytecode::Op::SetVariable>(generator.intern_identifier(id->string()), initialization_mode);
- return {};
- },
- [&](NonnullRefPtr<BindingPattern const> const& pattern) -> Bytecode::CodeGenerationErrorOr<void> {
- auto value_register = generator.allocate_register();
- generator.emit<Bytecode::Op::Store>(value_register);
- return generate_binding_pattern_bytecode(generator, pattern, initialization_mode, value_register);
- });
- }
- Bytecode::CodeGenerationErrorOr<void> VariableDeclaration::generate_bytecode(Bytecode::Generator& generator) const
- {
- for (auto& declarator : m_declarations) {
- if (declarator->init())
- TRY(declarator->init()->generate_bytecode(generator));
- else
- generator.emit<Bytecode::Op::LoadImmediate>(js_undefined());
- TRY(assign_accumulator_to_variable_declarator(generator, declarator, *this));
- }
- return {};
- }
- Bytecode::CodeGenerationErrorOr<void> CallExpression::generate_bytecode(Bytecode::Generator& generator) const
- {
- auto callee_reg = generator.allocate_register();
- auto this_reg = generator.allocate_register();
- generator.emit<Bytecode::Op::LoadImmediate>(js_undefined());
- generator.emit<Bytecode::Op::Store>(this_reg);
- if (is<NewExpression>(this)) {
- TRY(m_callee->generate_bytecode(generator));
- generator.emit<Bytecode::Op::Store>(callee_reg);
- } else if (is<MemberExpression>(*m_callee)) {
- auto& member_expression = static_cast<MemberExpression const&>(*m_callee);
- // https://tc39.es/ecma262/#sec-super-keyword-runtime-semantics-evaluation
- if (is<SuperExpression>(member_expression.object())) {
- // 1. Let env be GetThisEnvironment().
- // 2. Let actualThis be ? env.GetThisBinding().
- generator.emit<Bytecode::Op::ResolveThisBinding>();
- generator.emit<Bytecode::Op::Store>(this_reg);
- Optional<Bytecode::Register> computed_property_value_register;
- if (member_expression.is_computed()) {
- // SuperProperty : super [ Expression ]
- // 3. Let propertyNameReference be ? Evaluation of Expression.
- // 4. Let propertyNameValue be ? GetValue(propertyNameReference).
- TRY(member_expression.property().generate_bytecode(generator));
- computed_property_value_register = generator.allocate_register();
- generator.emit<Bytecode::Op::Store>(*computed_property_value_register);
- }
- // 5/7. Return ? MakeSuperPropertyReference(actualThis, propertyKey, strict).
- // https://tc39.es/ecma262/#sec-makesuperpropertyreference
- // 1. Let env be GetThisEnvironment().
- // 2. Assert: env.HasSuperBinding() is true.
- // 3. Let baseValue be ? env.GetSuperBase().
- generator.emit<Bytecode::Op::ResolveSuperBase>();
- // 4. Return the Reference Record { [[Base]]: baseValue, [[ReferencedName]]: propertyKey, [[Strict]]: strict, [[ThisValue]]: actualThis }.
- if (computed_property_value_register.has_value()) {
- // 5. Let propertyKey be ? ToPropertyKey(propertyNameValue).
- // FIXME: This does ToPropertyKey out of order, which is observable by Symbol.toPrimitive!
- generator.emit<Bytecode::Op::GetByValue>(*computed_property_value_register);
- } else {
- // 3. Let propertyKey be StringValue of IdentifierName.
- auto identifier_table_ref = generator.intern_identifier(verify_cast<Identifier>(member_expression.property()).string());
- generator.emit<Bytecode::Op::GetById>(identifier_table_ref);
- }
- } else {
- TRY(member_expression.object().generate_bytecode(generator));
- generator.emit<Bytecode::Op::Store>(this_reg);
- if (member_expression.is_computed()) {
- TRY(member_expression.property().generate_bytecode(generator));
- generator.emit<Bytecode::Op::GetByValue>(this_reg);
- } else {
- auto identifier_table_ref = generator.intern_identifier(verify_cast<Identifier>(member_expression.property()).string());
- generator.emit<Bytecode::Op::GetById>(identifier_table_ref);
- }
- }
- generator.emit<Bytecode::Op::Store>(callee_reg);
- } else {
- // FIXME: this = global object in sloppy mode.
- TRY(m_callee->generate_bytecode(generator));
- generator.emit<Bytecode::Op::Store>(callee_reg);
- }
- TRY(arguments_to_array_for_call(generator, arguments()));
- Bytecode::Op::Call::CallType call_type;
- if (is<NewExpression>(*this)) {
- call_type = Bytecode::Op::Call::CallType::Construct;
- } else {
- call_type = Bytecode::Op::Call::CallType::Call;
- }
- Optional<Bytecode::StringTableIndex> expression_string_index;
- if (auto expression_string = this->expression_string(); expression_string.has_value())
- expression_string_index = generator.intern_string(expression_string.release_value());
- generator.emit<Bytecode::Op::Call>(call_type, callee_reg, this_reg, expression_string_index);
- return {};
- }
- Bytecode::CodeGenerationErrorOr<void> ReturnStatement::generate_bytecode(Bytecode::Generator& generator) const
- {
- if (m_argument)
- TRY(m_argument->generate_bytecode(generator));
- else
- generator.emit<Bytecode::Op::LoadImmediate>(js_undefined());
- if (generator.is_in_generator_or_async_function()) {
- generator.perform_needed_unwinds<Bytecode::Op::Yield>();
- generator.emit<Bytecode::Op::Yield>(nullptr);
- } else {
- generator.perform_needed_unwinds<Bytecode::Op::Return>();
- generator.emit<Bytecode::Op::Return>();
- }
- return {};
- }
- Bytecode::CodeGenerationErrorOr<void> YieldExpression::generate_bytecode(Bytecode::Generator& generator) const
- {
- VERIFY(generator.is_in_generator_function());
- auto received_completion_register = generator.allocate_register();
- auto received_completion_type_register = generator.allocate_register();
- auto received_completion_value_register = generator.allocate_register();
- auto type_identifier = generator.intern_identifier("type");
- auto value_identifier = generator.intern_identifier("value");
- auto get_received_completion_type_and_value = [&]() {
- // The accumulator is set to an object, for example: { "type": 1 (normal), value: 1337 }
- generator.emit<Bytecode::Op::Store>(received_completion_register);
- generator.emit<Bytecode::Op::GetById>(type_identifier);
- generator.emit<Bytecode::Op::Store>(received_completion_type_register);
- generator.emit<Bytecode::Op::Load>(received_completion_register);
- generator.emit<Bytecode::Op::GetById>(value_identifier);
- generator.emit<Bytecode::Op::Store>(received_completion_value_register);
- };
- if (m_is_yield_from) {
- // 15.5.5 Runtime Semantics: Evaluation, https://tc39.es/ecma262/#sec-generator-function-definitions-runtime-semantics-evaluation
- // FIXME: 1. Let generatorKind be GetGeneratorKind().
- // 2. Let exprRef be ? Evaluation of AssignmentExpression.
- // 3. Let value be ? GetValue(exprRef).
- VERIFY(m_argument);
- TRY(m_argument->generate_bytecode(generator));
- // 4. Let iteratorRecord be ? GetIterator(value, generatorKind).
- // FIXME: Consider generatorKind.
- auto iterator_record_register = generator.allocate_register();
- generator.emit<Bytecode::Op::GetIterator>();
- generator.emit<Bytecode::Op::Store>(iterator_record_register);
- // 5. Let iterator be iteratorRecord.[[Iterator]].
- auto iterator_register = generator.allocate_register();
- auto iterator_identifier = generator.intern_identifier("iterator");
- generator.emit<Bytecode::Op::GetById>(iterator_identifier);
- generator.emit<Bytecode::Op::Store>(iterator_register);
- // Cache iteratorRecord.[[NextMethod]] for use in step 7.a.i.
- auto next_method_register = generator.allocate_register();
- auto next_method_identifier = generator.intern_identifier("next");
- generator.emit<Bytecode::Op::Load>(iterator_record_register);
- generator.emit<Bytecode::Op::GetById>(next_method_identifier);
- generator.emit<Bytecode::Op::Store>(next_method_register);
- // 6. Let received be NormalCompletion(undefined).
- // See get_received_completion_type_and_value above.
- generator.emit<Bytecode::Op::LoadImmediate>(Value(to_underlying(Completion::Type::Normal)));
- generator.emit<Bytecode::Op::Store>(received_completion_type_register);
- generator.emit<Bytecode::Op::LoadImmediate>(js_undefined());
- generator.emit<Bytecode::Op::Store>(received_completion_value_register);
- // 7. Repeat,
- auto& loop_block = generator.make_block();
- auto& continuation_block = generator.make_block();
- auto& loop_end_block = generator.make_block();
- generator.emit<Bytecode::Op::Jump>(Bytecode::Label { loop_block });
- generator.switch_to_basic_block(loop_block);
- // a. If received.[[Type]] is normal, then
- auto& type_is_normal_block = generator.make_block();
- auto& is_type_throw_block = generator.make_block();
- generator.emit<Bytecode::Op::LoadImmediate>(Value(to_underlying(Completion::Type::Normal)));
- generator.emit<Bytecode::Op::StrictlyEquals>(received_completion_type_register);
- generator.emit<Bytecode::Op::JumpConditional>(
- Bytecode::Label { type_is_normal_block },
- Bytecode::Label { is_type_throw_block });
- generator.switch_to_basic_block(type_is_normal_block);
- // i. Let innerResult be ? Call(iteratorRecord.[[NextMethod]], iteratorRecord.[[Iterator]], « received.[[Value]] »).
- generator.emit_with_extra_register_slots<Bytecode::Op::NewArray>(2, AK::Array { received_completion_value_register, received_completion_value_register });
- generator.emit<Bytecode::Op::Call>(Bytecode::Op::Call::CallType::Call, next_method_register, iterator_register);
- // FIXME: ii. If generatorKind is async, set innerResult to ? Await(innerResult).
- // iii. If innerResult is not an Object, throw a TypeError exception.
- generator.emit<Bytecode::Op::ThrowIfNotObject>();
- auto inner_result_register = generator.allocate_register();
- generator.emit<Bytecode::Op::Store>(inner_result_register);
- // iv. Let done be ? IteratorComplete(innerResult).
- generator.emit<Bytecode::Op::IteratorResultDone>();
- // v. If done is true, then
- auto& type_is_normal_done_block = generator.make_block();
- auto& type_is_normal_not_done_block = generator.make_block();
- generator.emit<Bytecode::Op::JumpConditional>(
- Bytecode::Label { type_is_normal_done_block },
- Bytecode::Label { type_is_normal_not_done_block });
- generator.switch_to_basic_block(type_is_normal_done_block);
- // 1. Return ? IteratorValue(innerResult).
- generator.emit<Bytecode::Op::Load>(inner_result_register);
- generator.emit<Bytecode::Op::IteratorResultValue>();
- generator.emit<Bytecode::Op::Jump>(Bytecode::Label { loop_end_block });
- generator.switch_to_basic_block(type_is_normal_not_done_block);
- // FIXME: vi. If generatorKind is async, set received to Completion(AsyncGeneratorYield(? IteratorValue(innerResult))).
- // vii. Else, set received to Completion(GeneratorYield(innerResult)).
- // FIXME: Else,
- generator.emit<Bytecode::Op::Load>(inner_result_register);
- // FIXME: Yield currently only accepts a Value, not an object conforming to the IteratorResult interface, so we have to do an observable lookup of `value` here.
- generator.emit<Bytecode::Op::IteratorResultValue>();
- generator.emit<Bytecode::Op::Yield>(Bytecode::Label { continuation_block });
- // b. Else if received.[[Type]] is throw, then
- generator.switch_to_basic_block(is_type_throw_block);
- auto& type_is_throw_block = generator.make_block();
- auto& type_is_return_block = generator.make_block();
- generator.emit<Bytecode::Op::LoadImmediate>(Value(to_underlying(Completion::Type::Throw)));
- generator.emit<Bytecode::Op::StrictlyEquals>(received_completion_type_register);
- generator.emit<Bytecode::Op::JumpConditional>(
- Bytecode::Label { type_is_throw_block },
- Bytecode::Label { type_is_return_block });
- generator.switch_to_basic_block(type_is_throw_block);
- // i. Let throw be ? GetMethod(iterator, "throw").
- auto throw_method_register = generator.allocate_register();
- auto throw_identifier = generator.intern_identifier("throw");
- generator.emit<Bytecode::Op::Load>(iterator_register);
- generator.emit<Bytecode::Op::GetMethod>(throw_identifier);
- generator.emit<Bytecode::Op::Store>(throw_method_register);
- // ii. If throw is not undefined, then
- auto& throw_method_is_defined_block = generator.make_block();
- auto& throw_method_is_undefined_block = generator.make_block();
- generator.emit<Bytecode::Op::LoadImmediate>(js_undefined());
- generator.emit<Bytecode::Op::StrictlyInequals>(throw_method_register);
- generator.emit<Bytecode::Op::JumpConditional>(
- Bytecode::Label { throw_method_is_defined_block },
- Bytecode::Label { throw_method_is_undefined_block });
- generator.switch_to_basic_block(throw_method_is_defined_block);
- // 1. Let innerResult be ? Call(throw, iterator, « received.[[Value]] »).
- generator.emit_with_extra_register_slots<Bytecode::Op::NewArray>(2, AK::Array { received_completion_value_register, received_completion_value_register });
- generator.emit<Bytecode::Op::Call>(Bytecode::Op::Call::CallType::Call, throw_method_register, iterator_register);
- // FIXME: 2. If generatorKind is async, set innerResult to ? Await(innerResult).
- // 3. NOTE: Exceptions from the inner iterator throw method are propagated. Normal completions from an inner throw method are processed similarly to an inner next.
- // 4. If innerResult is not an Object, throw a TypeError exception.
- generator.emit<Bytecode::Op::ThrowIfNotObject>();
- generator.emit<Bytecode::Op::Store>(inner_result_register);
- // 5. Let done be ? IteratorComplete(innerResult).
- generator.emit<Bytecode::Op::IteratorResultDone>();
- // 6. If done is true, then
- auto& type_is_throw_done_block = generator.make_block();
- auto& type_is_throw_not_done_block = generator.make_block();
- generator.emit<Bytecode::Op::JumpConditional>(
- Bytecode::Label { type_is_throw_done_block },
- Bytecode::Label { type_is_throw_not_done_block });
- generator.switch_to_basic_block(type_is_throw_done_block);
- // a. Return ? IteratorValue(innerResult).
- generator.emit<Bytecode::Op::Load>(inner_result_register);
- generator.emit<Bytecode::Op::IteratorResultValue>();
- generator.emit<Bytecode::Op::Jump>(Bytecode::Label { loop_end_block });
- generator.switch_to_basic_block(type_is_throw_not_done_block);
- // FIXME: 7. If generatorKind is async, set received to Completion(AsyncGeneratorYield(? IteratorValue(innerResult))).
- // 8. Else, set received to Completion(GeneratorYield(innerResult)).
- // FIXME: Else,
- generator.emit<Bytecode::Op::Load>(inner_result_register);
- // FIXME: Yield currently only accepts a Value, not an object conforming to the IteratorResult interface, so we have to do an observable lookup of `value` here.
- generator.emit<Bytecode::Op::IteratorResultValue>();
- generator.emit<Bytecode::Op::Yield>(Bytecode::Label { continuation_block });
- generator.switch_to_basic_block(throw_method_is_undefined_block);
- // 1. NOTE: If iterator does not have a throw method, this throw is going to terminate the yield* loop. But first we need to give iterator a chance to clean up.
- // 2. Let closeCompletion be Completion Record { [[Type]]: normal, [[Value]]: empty, [[Target]]: empty }.
- // FIXME: 3. If generatorKind is async, perform ? AsyncIteratorClose(iteratorRecord, closeCompletion).
- // 4. Else, perform ? IteratorClose(iteratorRecord, closeCompletion).
- // FIXME: Else,
- generator.emit<Bytecode::Op::Load>(iterator_record_register);
- generator.emit<Bytecode::Op::IteratorClose>(Completion::Type::Normal, Optional<Value> {});
- // 5. NOTE: The next step throws a TypeError to indicate that there was a yield* protocol violation: iterator does not have a throw method.
- // 6. Throw a TypeError exception.
- generator.emit<Bytecode::Op::NewTypeError>(generator.intern_string(ErrorType::YieldFromIteratorMissingThrowMethod.message()));
- generator.perform_needed_unwinds<Bytecode::Op::Throw>();
- generator.emit<Bytecode::Op::Throw>();
- // c. Else,
- // i. Assert: received.[[Type]] is return.
- generator.switch_to_basic_block(type_is_return_block);
- // ii. Let return be ? GetMethod(iterator, "return").
- auto return_method_register = generator.allocate_register();
- auto return_identifier = generator.intern_identifier("return");
- generator.emit<Bytecode::Op::Load>(iterator_register);
- generator.emit<Bytecode::Op::GetMethod>(return_identifier);
- generator.emit<Bytecode::Op::Store>(return_method_register);
- // iii. If return is undefined, then
- auto& return_is_undefined_block = generator.make_block();
- auto& return_is_defined_block = generator.make_block();
- generator.emit<Bytecode::Op::LoadImmediate>(js_undefined());
- generator.emit<Bytecode::Op::StrictlyEquals>(return_method_register);
- generator.emit<Bytecode::Op::JumpConditional>(
- Bytecode::Label { return_is_undefined_block },
- Bytecode::Label { return_is_defined_block });
- generator.switch_to_basic_block(return_is_undefined_block);
- // FIXME: 1. If generatorKind is async, set received.[[Value]] to ? Await(received.[[Value]]).
- // 2. Return ? received.
- // NOTE: This will always be a return completion.
- generator.emit<Bytecode::Op::Load>(received_completion_value_register);
- generator.perform_needed_unwinds<Bytecode::Op::Yield>();
- generator.emit<Bytecode::Op::Yield>(nullptr);
- generator.switch_to_basic_block(return_is_defined_block);
- // iv. Let innerReturnResult be ? Call(return, iterator, « received.[[Value]] »).
- generator.emit_with_extra_register_slots<Bytecode::Op::NewArray>(2, AK::Array { received_completion_value_register, received_completion_value_register });
- generator.emit<Bytecode::Op::Call>(Bytecode::Op::Call::CallType::Call, return_method_register, iterator_register);
- // FIXME: v. If generatorKind is async, set innerReturnResult to ? Await(innerReturnResult).
- // vi. If innerReturnResult is not an Object, throw a TypeError exception.
- generator.emit<Bytecode::Op::ThrowIfNotObject>();
- auto inner_return_result_register = generator.allocate_register();
- generator.emit<Bytecode::Op::Store>(inner_return_result_register);
- // vii. Let done be ? IteratorComplete(innerReturnResult).
- generator.emit<Bytecode::Op::IteratorResultDone>();
- // viii. If done is true, then
- auto& type_is_return_done_block = generator.make_block();
- auto& type_is_return_not_done_block = generator.make_block();
- generator.emit<Bytecode::Op::JumpConditional>(
- Bytecode::Label { type_is_return_done_block },
- Bytecode::Label { type_is_return_not_done_block });
- generator.switch_to_basic_block(type_is_return_done_block);
- // 1. Let value be ? IteratorValue(innerReturnResult).
- generator.emit<Bytecode::Op::Load>(inner_result_register);
- generator.emit<Bytecode::Op::IteratorResultValue>();
- // 2. Return Completion Record { [[Type]]: return, [[Value]]: value, [[Target]]: empty }.
- generator.perform_needed_unwinds<Bytecode::Op::Yield>();
- generator.emit<Bytecode::Op::Yield>(nullptr);
- generator.switch_to_basic_block(type_is_return_not_done_block);
- // FIXME: ix. If generatorKind is async, set received to Completion(AsyncGeneratorYield(? IteratorValue(innerReturnResult))).
- // x. Else, set received to Completion(GeneratorYield(innerReturnResult)).
- // FIXME: Else,
- generator.emit<Bytecode::Op::Load>(inner_return_result_register);
- // FIXME: Yield currently only accepts a Value, not an object conforming to the IteratorResult interface, so we have to do an observable lookup of `value` here.
- generator.emit<Bytecode::Op::IteratorResultValue>();
- generator.emit<Bytecode::Op::Yield>(Bytecode::Label { continuation_block });
- generator.switch_to_basic_block(continuation_block);
- get_received_completion_type_and_value();
- generator.emit<Bytecode::Op::Jump>(Bytecode::Label { loop_block });
- generator.switch_to_basic_block(loop_end_block);
- return {};
- }
- if (m_argument)
- TRY(m_argument->generate_bytecode(generator));
- else
- generator.emit<Bytecode::Op::LoadImmediate>(js_undefined());
- auto& continuation_block = generator.make_block();
- generator.emit<Bytecode::Op::Yield>(Bytecode::Label { continuation_block });
- generator.switch_to_basic_block(continuation_block);
- get_received_completion_type_and_value();
- auto& normal_completion_continuation_block = generator.make_block();
- auto& throw_completion_continuation_block = generator.make_block();
- generator.emit<Bytecode::Op::LoadImmediate>(Value(to_underlying(Completion::Type::Normal)));
- generator.emit<Bytecode::Op::StrictlyEquals>(received_completion_type_register);
- generator.emit<Bytecode::Op::JumpConditional>(
- Bytecode::Label { normal_completion_continuation_block },
- Bytecode::Label { throw_completion_continuation_block });
- auto& throw_value_block = generator.make_block();
- auto& return_value_block = generator.make_block();
- generator.switch_to_basic_block(throw_completion_continuation_block);
- generator.emit<Bytecode::Op::LoadImmediate>(Value(to_underlying(Completion::Type::Throw)));
- generator.emit<Bytecode::Op::StrictlyEquals>(received_completion_type_register);
- // If type is not equal to "throw" or "normal", assume it's "return".
- generator.emit<Bytecode::Op::JumpConditional>(
- Bytecode::Label { throw_value_block },
- Bytecode::Label { return_value_block });
- generator.switch_to_basic_block(throw_value_block);
- generator.emit<Bytecode::Op::Load>(received_completion_value_register);
- generator.perform_needed_unwinds<Bytecode::Op::Throw>();
- generator.emit<Bytecode::Op::Throw>();
- generator.switch_to_basic_block(return_value_block);
- generator.emit<Bytecode::Op::Load>(received_completion_value_register);
- generator.perform_needed_unwinds<Bytecode::Op::Yield>();
- generator.emit<Bytecode::Op::Yield>(nullptr);
- generator.switch_to_basic_block(normal_completion_continuation_block);
- generator.emit<Bytecode::Op::Load>(received_completion_value_register);
- return {};
- }
- Bytecode::CodeGenerationErrorOr<void> IfStatement::generate_bytecode(Bytecode::Generator& generator) const
- {
- // test
- // jump if_true (true) true (false) false
- // true
- // jump always (true) end
- // false
- // jump always (true) end
- // end
- auto& true_block = generator.make_block();
- auto& false_block = generator.make_block();
- TRY(m_predicate->generate_bytecode(generator));
- generator.emit<Bytecode::Op::JumpConditional>().set_targets(
- Bytecode::Label { true_block },
- Bytecode::Label { false_block });
- Bytecode::Op::Jump* true_block_jump { nullptr };
- generator.switch_to_basic_block(true_block);
- generator.emit<Bytecode::Op::LoadImmediate>(js_undefined());
- TRY(m_consequent->generate_bytecode(generator));
- if (!generator.is_current_block_terminated())
- true_block_jump = &generator.emit<Bytecode::Op::Jump>();
- generator.switch_to_basic_block(false_block);
- auto& end_block = generator.make_block();
- generator.emit<Bytecode::Op::LoadImmediate>(js_undefined());
- if (m_alternate)
- TRY(m_alternate->generate_bytecode(generator));
- if (!generator.is_current_block_terminated())
- generator.emit<Bytecode::Op::Jump>().set_targets(Bytecode::Label { end_block }, {});
- if (true_block_jump)
- true_block_jump->set_targets(Bytecode::Label { end_block }, {});
- generator.switch_to_basic_block(end_block);
- return {};
- }
- Bytecode::CodeGenerationErrorOr<void> ContinueStatement::generate_bytecode(Bytecode::Generator& generator) const
- {
- // FIXME: Handle finally blocks in a graceful manner
- // We need to execute the finally block, but tell it to resume
- // execution at the designated block
- if (m_target_label.is_null()) {
- generator.generate_continue();
- return {};
- }
- generator.generate_continue(m_target_label);
- return {};
- }
- Bytecode::CodeGenerationErrorOr<void> DebuggerStatement::generate_bytecode(Bytecode::Generator&) const
- {
- return {};
- }
- Bytecode::CodeGenerationErrorOr<void> ConditionalExpression::generate_bytecode(Bytecode::Generator& generator) const
- {
- // test
- // jump if_true (true) true (false) false
- // true
- // jump always (true) end
- // false
- // jump always (true) end
- // end
- auto& true_block = generator.make_block();
- auto& false_block = generator.make_block();
- auto& end_block = generator.make_block();
- TRY(m_test->generate_bytecode(generator));
- generator.emit<Bytecode::Op::JumpConditional>().set_targets(
- Bytecode::Label { true_block },
- Bytecode::Label { false_block });
- generator.switch_to_basic_block(true_block);
- TRY(m_consequent->generate_bytecode(generator));
- generator.emit<Bytecode::Op::Jump>().set_targets(
- Bytecode::Label { end_block },
- {});
- generator.switch_to_basic_block(false_block);
- TRY(m_alternate->generate_bytecode(generator));
- generator.emit<Bytecode::Op::Jump>().set_targets(
- Bytecode::Label { end_block },
- {});
- generator.switch_to_basic_block(end_block);
- return {};
- }
- Bytecode::CodeGenerationErrorOr<void> SequenceExpression::generate_bytecode(Bytecode::Generator& generator) const
- {
- for (auto& expression : m_expressions)
- TRY(expression->generate_bytecode(generator));
- return {};
- }
- Bytecode::CodeGenerationErrorOr<void> TemplateLiteral::generate_bytecode(Bytecode::Generator& generator) const
- {
- auto string_reg = generator.allocate_register();
- for (size_t i = 0; i < m_expressions.size(); i++) {
- TRY(m_expressions[i]->generate_bytecode(generator));
- if (i == 0) {
- generator.emit<Bytecode::Op::Store>(string_reg);
- } else {
- generator.emit<Bytecode::Op::ConcatString>(string_reg);
- }
- }
- generator.emit<Bytecode::Op::Load>(string_reg);
- return {};
- }
- Bytecode::CodeGenerationErrorOr<void> TaggedTemplateLiteral::generate_bytecode(Bytecode::Generator& generator) const
- {
- TRY(m_tag->generate_bytecode(generator));
- auto tag_reg = generator.allocate_register();
- generator.emit<Bytecode::Op::Store>(tag_reg);
- // FIXME: We only need to record the first and last register,
- // due to packing everything in an array, same goes for argument_regs
- Vector<Bytecode::Register> string_regs;
- auto& expressions = m_template_literal->expressions();
- for (size_t i = 0; i < expressions.size(); ++i) {
- if (i % 2 != 0)
- continue;
- string_regs.append(generator.allocate_register());
- }
- size_t reg_index = 0;
- for (size_t i = 0; i < expressions.size(); ++i) {
- if (i % 2 != 0)
- continue;
- TRY(expressions[i]->generate_bytecode(generator));
- auto string_reg = string_regs[reg_index++];
- generator.emit<Bytecode::Op::Store>(string_reg);
- }
- if (string_regs.is_empty()) {
- generator.emit<Bytecode::Op::NewArray>();
- } else {
- generator.emit_with_extra_register_slots<Bytecode::Op::NewArray>(2u, AK::Array { string_regs.first(), string_regs.last() });
- }
- auto strings_reg = generator.allocate_register();
- generator.emit<Bytecode::Op::Store>(strings_reg);
- Vector<Bytecode::Register> argument_regs;
- argument_regs.append(strings_reg);
- for (size_t i = 1; i < expressions.size(); i += 2)
- argument_regs.append(generator.allocate_register());
- for (size_t i = 1; i < expressions.size(); i += 2) {
- auto string_reg = argument_regs[1 + i / 2];
- TRY(expressions[i]->generate_bytecode(generator));
- generator.emit<Bytecode::Op::Store>(string_reg);
- }
- Vector<Bytecode::Register> raw_string_regs;
- for ([[maybe_unused]] auto& raw_string : m_template_literal->raw_strings())
- string_regs.append(generator.allocate_register());
- reg_index = 0;
- for (auto& raw_string : m_template_literal->raw_strings()) {
- TRY(raw_string->generate_bytecode(generator));
- auto raw_string_reg = string_regs[reg_index++];
- generator.emit<Bytecode::Op::Store>(raw_string_reg);
- raw_string_regs.append(raw_string_reg);
- }
- if (raw_string_regs.is_empty()) {
- generator.emit<Bytecode::Op::NewArray>();
- } else {
- generator.emit_with_extra_register_slots<Bytecode::Op::NewArray>(2u, AK::Array { raw_string_regs.first(), raw_string_regs.last() });
- }
- auto raw_strings_reg = generator.allocate_register();
- generator.emit<Bytecode::Op::Store>(raw_strings_reg);
- generator.emit<Bytecode::Op::Load>(strings_reg);
- generator.emit<Bytecode::Op::PutById>(raw_strings_reg, generator.intern_identifier("raw"));
- generator.emit<Bytecode::Op::LoadImmediate>(js_undefined());
- auto this_reg = generator.allocate_register();
- generator.emit<Bytecode::Op::Store>(this_reg);
- if (!argument_regs.is_empty())
- generator.emit_with_extra_register_slots<Bytecode::Op::NewArray>(2, AK::Array { argument_regs.first(), argument_regs.last() });
- else
- generator.emit<Bytecode::Op::NewArray>();
- generator.emit<Bytecode::Op::Call>(Bytecode::Op::Call::CallType::Call, tag_reg, this_reg);
- return {};
- }
- Bytecode::CodeGenerationErrorOr<void> UpdateExpression::generate_bytecode(Bytecode::Generator& generator) const
- {
- TRY(generator.emit_load_from_reference(*m_argument));
- Optional<Bytecode::Register> previous_value_for_postfix_reg;
- if (!m_prefixed) {
- previous_value_for_postfix_reg = generator.allocate_register();
- generator.emit<Bytecode::Op::Store>(*previous_value_for_postfix_reg);
- }
- if (m_op == UpdateOp::Increment)
- generator.emit<Bytecode::Op::Increment>();
- else
- generator.emit<Bytecode::Op::Decrement>();
- TRY(generator.emit_store_to_reference(*m_argument));
- if (!m_prefixed)
- generator.emit<Bytecode::Op::Load>(*previous_value_for_postfix_reg);
- return {};
- }
- Bytecode::CodeGenerationErrorOr<void> ThrowStatement::generate_bytecode(Bytecode::Generator& generator) const
- {
- TRY(m_argument->generate_bytecode(generator));
- generator.perform_needed_unwinds<Bytecode::Op::Throw>();
- generator.emit<Bytecode::Op::Throw>();
- return {};
- }
- Bytecode::CodeGenerationErrorOr<void> BreakStatement::generate_bytecode(Bytecode::Generator& generator) const
- {
- // FIXME: Handle finally blocks in a graceful manner
- // We need to execute the finally block, but tell it to resume
- // execution at the designated block
- if (m_target_label.is_null()) {
- generator.generate_break();
- return {};
- }
- generator.generate_break(m_target_label);
- return {};
- }
- Bytecode::CodeGenerationErrorOr<void> TryStatement::generate_bytecode(Bytecode::Generator& generator) const
- {
- auto& saved_block = generator.current_block();
- Optional<Bytecode::Label> handler_target;
- Optional<Bytecode::Label> finalizer_target;
- Bytecode::BasicBlock* next_block { nullptr };
- if (m_finalizer) {
- // FIXME: See notes in Op.h->ScheduleJump
- auto& finalizer_block = generator.make_block();
- generator.switch_to_basic_block(finalizer_block);
- generator.emit<Bytecode::Op::LeaveUnwindContext>();
- TRY(m_finalizer->generate_bytecode(generator));
- if (!generator.is_current_block_terminated()) {
- next_block = &generator.make_block();
- auto next_target = Bytecode::Label { *next_block };
- generator.emit<Bytecode::Op::ContinuePendingUnwind>(next_target);
- }
- finalizer_target = Bytecode::Label { finalizer_block };
- }
- if (m_finalizer)
- generator.start_boundary(Bytecode::Generator::BlockBoundaryType::ReturnToFinally);
- if (m_handler) {
- auto& handler_block = generator.make_block();
- generator.switch_to_basic_block(handler_block);
- if (!m_finalizer)
- generator.emit<Bytecode::Op::LeaveUnwindContext>();
- generator.begin_variable_scope(Bytecode::Generator::BindingMode::Lexical, Bytecode::Generator::SurroundingScopeKind::Block);
- TRY(m_handler->parameter().visit(
- [&](DeprecatedFlyString const& parameter) -> Bytecode::CodeGenerationErrorOr<void> {
- if (!parameter.is_empty()) {
- auto parameter_identifier = generator.intern_identifier(parameter);
- generator.register_binding(parameter_identifier);
- generator.emit<Bytecode::Op::CreateVariable>(parameter_identifier, Bytecode::Op::EnvironmentMode::Lexical, false);
- generator.emit<Bytecode::Op::SetVariable>(parameter_identifier, Bytecode::Op::SetVariable::InitializationMode::Initialize);
- }
- return {};
- },
- [&](NonnullRefPtr<BindingPattern const> const&) -> Bytecode::CodeGenerationErrorOr<void> {
- // FIXME: Implement this path when the above DeclarativeEnvironment issue is dealt with.
- return Bytecode::CodeGenerationError {
- this,
- "Unimplemented catch argument: BindingPattern"sv,
- };
- }));
- TRY(m_handler->body().generate_bytecode(generator));
- handler_target = Bytecode::Label { handler_block };
- generator.end_variable_scope();
- if (!generator.is_current_block_terminated()) {
- if (m_finalizer) {
- generator.emit<Bytecode::Op::Jump>(finalizer_target);
- } else {
- VERIFY(!next_block);
- next_block = &generator.make_block();
- auto next_target = Bytecode::Label { *next_block };
- generator.emit<Bytecode::Op::Jump>(next_target);
- }
- }
- }
- if (m_finalizer)
- generator.end_boundary(Bytecode::Generator::BlockBoundaryType::ReturnToFinally);
- auto& target_block = generator.make_block();
- generator.switch_to_basic_block(saved_block);
- generator.emit<Bytecode::Op::EnterUnwindContext>(Bytecode::Label { target_block }, handler_target, finalizer_target);
- generator.start_boundary(Bytecode::Generator::BlockBoundaryType::Unwind);
- if (m_finalizer)
- generator.start_boundary(Bytecode::Generator::BlockBoundaryType::ReturnToFinally);
- generator.switch_to_basic_block(target_block);
- TRY(m_block->generate_bytecode(generator));
- if (!generator.is_current_block_terminated()) {
- if (m_finalizer) {
- generator.emit<Bytecode::Op::Jump>(finalizer_target);
- } else {
- if (!next_block)
- next_block = &generator.make_block();
- generator.emit<Bytecode::Op::LeaveUnwindContext>();
- generator.emit<Bytecode::Op::Jump>(Bytecode::Label { *next_block });
- }
- }
- if (m_finalizer)
- generator.end_boundary(Bytecode::Generator::BlockBoundaryType::ReturnToFinally);
- generator.end_boundary(Bytecode::Generator::BlockBoundaryType::Unwind);
- generator.switch_to_basic_block(next_block ? *next_block : saved_block);
- return {};
- }
- Bytecode::CodeGenerationErrorOr<void> SwitchStatement::generate_bytecode(Bytecode::Generator& generator) const
- {
- return generate_labelled_evaluation(generator, {});
- }
- Bytecode::CodeGenerationErrorOr<void> SwitchStatement::generate_labelled_evaluation(Bytecode::Generator& generator, Vector<DeprecatedFlyString> const& label_set) const
- {
- auto discriminant_reg = generator.allocate_register();
- TRY(m_discriminant->generate_bytecode(generator));
- generator.emit<Bytecode::Op::Store>(discriminant_reg);
- Vector<Bytecode::BasicBlock&> case_blocks;
- Bytecode::BasicBlock* default_block { nullptr };
- Bytecode::BasicBlock* next_test_block = &generator.make_block();
- auto has_lexical_block = has_lexical_declarations();
- // Note: This call ends up calling begin_variable_scope() if has_lexical_block is true, so we need to clean up after it at the end.
- TRY(ScopeNode::generate_bytecode(generator));
- generator.emit<Bytecode::Op::Jump>().set_targets(Bytecode::Label { *next_test_block }, {});
- for (auto& switch_case : m_cases) {
- auto& case_block = generator.make_block();
- if (switch_case->test()) {
- generator.switch_to_basic_block(*next_test_block);
- TRY(switch_case->test()->generate_bytecode(generator));
- generator.emit<Bytecode::Op::StrictlyEquals>(discriminant_reg);
- next_test_block = &generator.make_block();
- generator.emit<Bytecode::Op::JumpConditional>().set_targets(Bytecode::Label { case_block }, Bytecode::Label { *next_test_block });
- } else {
- default_block = &case_block;
- }
- case_blocks.append(case_block);
- }
- generator.switch_to_basic_block(*next_test_block);
- auto& end_block = generator.make_block();
- if (default_block != nullptr) {
- generator.emit<Bytecode::Op::Jump>().set_targets(Bytecode::Label { *default_block }, {});
- } else {
- generator.emit<Bytecode::Op::LoadImmediate>(js_undefined());
- generator.emit<Bytecode::Op::Jump>().set_targets(Bytecode::Label { end_block }, {});
- }
- auto current_block = case_blocks.begin();
- generator.begin_breakable_scope(Bytecode::Label { end_block }, label_set);
- for (auto& switch_case : m_cases) {
- generator.switch_to_basic_block(*current_block);
- generator.emit<Bytecode::Op::LoadImmediate>(js_undefined());
- for (auto& statement : switch_case->children()) {
- TRY(statement->generate_bytecode(generator));
- if (generator.is_current_block_terminated())
- break;
- }
- if (!generator.is_current_block_terminated()) {
- auto next_block = current_block;
- next_block++;
- if (next_block.is_end()) {
- generator.emit<Bytecode::Op::Jump>().set_targets(Bytecode::Label { end_block }, {});
- } else {
- generator.emit<Bytecode::Op::Jump>().set_targets(Bytecode::Label { *next_block }, {});
- }
- }
- current_block++;
- }
- generator.end_breakable_scope();
- if (has_lexical_block)
- generator.end_variable_scope();
- generator.switch_to_basic_block(end_block);
- return {};
- }
- Bytecode::CodeGenerationErrorOr<void> ClassDeclaration::generate_bytecode(Bytecode::Generator& generator) const
- {
- TRY(m_class_expression->generate_bytecode(generator));
- generator.emit<Bytecode::Op::SetVariable>(generator.intern_identifier(m_class_expression.ptr()->name()), Bytecode::Op::SetVariable::InitializationMode::Initialize);
- return {};
- }
- Bytecode::CodeGenerationErrorOr<void> ClassExpression::generate_bytecode(Bytecode::Generator& generator) const
- {
- generator.emit<Bytecode::Op::NewClass>(*this);
- return {};
- }
- Bytecode::CodeGenerationErrorOr<void> SpreadExpression::generate_bytecode(Bytecode::Generator& generator) const
- {
- // NOTE: All users of this should handle the behaviour of this on their own,
- // assuming it returns an Array-like object
- return m_target->generate_bytecode(generator);
- }
- Bytecode::CodeGenerationErrorOr<void> ThisExpression::generate_bytecode(Bytecode::Generator& generator) const
- {
- generator.emit<Bytecode::Op::ResolveThisBinding>();
- return {};
- }
- Bytecode::CodeGenerationErrorOr<void> AwaitExpression::generate_bytecode(Bytecode::Generator& generator) const
- {
- VERIFY(generator.is_in_async_function());
- // Transform `await expr` to `yield expr`, see AsyncFunctionDriverWrapper
- // For that we just need to copy most of the code from YieldExpression
- auto received_completion_register = generator.allocate_register();
- auto received_completion_type_register = generator.allocate_register();
- auto received_completion_value_register = generator.allocate_register();
- auto type_identifier = generator.intern_identifier("type");
- auto value_identifier = generator.intern_identifier("value");
- TRY(m_argument->generate_bytecode(generator));
- auto& continuation_block = generator.make_block();
- generator.emit<Bytecode::Op::Yield>(Bytecode::Label { continuation_block });
- generator.switch_to_basic_block(continuation_block);
- // The accumulator is set to an object, for example: { "type": 1 (normal), value: 1337 }
- generator.emit<Bytecode::Op::Store>(received_completion_register);
- generator.emit<Bytecode::Op::GetById>(type_identifier);
- generator.emit<Bytecode::Op::Store>(received_completion_type_register);
- generator.emit<Bytecode::Op::Load>(received_completion_register);
- generator.emit<Bytecode::Op::GetById>(value_identifier);
- generator.emit<Bytecode::Op::Store>(received_completion_value_register);
- auto& normal_completion_continuation_block = generator.make_block();
- auto& throw_value_block = generator.make_block();
- generator.emit<Bytecode::Op::LoadImmediate>(Value(to_underlying(Completion::Type::Normal)));
- generator.emit<Bytecode::Op::StrictlyEquals>(received_completion_type_register);
- generator.emit<Bytecode::Op::JumpConditional>(
- Bytecode::Label { normal_completion_continuation_block },
- Bytecode::Label { throw_value_block });
- // Simplification: The only abrupt completion we receive from AsyncFunctionDriverWrapper is Type::Throw
- // So we do not need to account for the Type::Return path
- generator.switch_to_basic_block(throw_value_block);
- generator.emit<Bytecode::Op::Load>(received_completion_value_register);
- generator.perform_needed_unwinds<Bytecode::Op::Throw>();
- generator.emit<Bytecode::Op::Throw>();
- generator.switch_to_basic_block(normal_completion_continuation_block);
- generator.emit<Bytecode::Op::Load>(received_completion_value_register);
- return {};
- }
- Bytecode::CodeGenerationErrorOr<void> WithStatement::generate_bytecode(Bytecode::Generator& generator) const
- {
- TRY(m_object->generate_bytecode(generator));
- generator.emit<Bytecode::Op::EnterObjectEnvironment>();
- // EnterObjectEnvironment sets the running execution context's lexical_environment to a new Object Environment.
- generator.start_boundary(Bytecode::Generator::BlockBoundaryType::LeaveLexicalEnvironment);
- TRY(m_body->generate_bytecode(generator));
- generator.end_boundary(Bytecode::Generator::BlockBoundaryType::LeaveLexicalEnvironment);
- if (!generator.is_current_block_terminated())
- generator.emit<Bytecode::Op::LeaveEnvironment>(Bytecode::Op::EnvironmentMode::Lexical);
- return {};
- }
- enum class LHSKind {
- Assignment,
- VarBinding,
- LexicalBinding,
- };
- enum class IterationKind {
- Enumerate,
- Iterate,
- AsyncIterate,
- };
- // 14.7.5.6 ForIn/OfHeadEvaluation ( uninitializedBoundNames, expr, iterationKind ), https://tc39.es/ecma262/#sec-runtime-semantics-forinofheadevaluation
- struct ForInOfHeadEvaluationResult {
- bool is_destructuring { false };
- LHSKind lhs_kind { LHSKind::Assignment };
- };
- static Bytecode::CodeGenerationErrorOr<ForInOfHeadEvaluationResult> for_in_of_head_evaluation(Bytecode::Generator& generator, IterationKind iteration_kind, Variant<NonnullRefPtr<ASTNode const>, NonnullRefPtr<BindingPattern const>> const& lhs, NonnullRefPtr<ASTNode const> const& rhs)
- {
- ForInOfHeadEvaluationResult result {};
- bool entered_lexical_scope = false;
- if (auto* ast_ptr = lhs.get_pointer<NonnullRefPtr<ASTNode const>>(); ast_ptr && is<VariableDeclaration>(**ast_ptr)) {
- // Runtime Semantics: ForInOfLoopEvaluation, for any of:
- // ForInOfStatement : for ( var ForBinding in Expression ) Statement
- // ForInOfStatement : for ( ForDeclaration in Expression ) Statement
- // ForInOfStatement : for ( var ForBinding of AssignmentExpression ) Statement
- // ForInOfStatement : for ( ForDeclaration of AssignmentExpression ) Statement
- auto& variable_declaration = static_cast<VariableDeclaration const&>(**ast_ptr);
- result.is_destructuring = variable_declaration.declarations().first()->target().has<NonnullRefPtr<BindingPattern const>>();
- result.lhs_kind = variable_declaration.is_lexical_declaration() ? LHSKind::LexicalBinding : LHSKind::VarBinding;
- // 1. Let oldEnv be the running execution context's LexicalEnvironment.
- // NOTE: 'uninitializedBoundNames' refers to the lexical bindings (i.e. Const/Let) present in the second and last form.
- // 2. If uninitializedBoundNames is not an empty List, then
- if (variable_declaration.declaration_kind() != DeclarationKind::Var) {
- entered_lexical_scope = true;
- // a. Assert: uninitializedBoundNames has no duplicate entries.
- // b. Let newEnv be NewDeclarativeEnvironment(oldEnv).
- generator.begin_variable_scope();
- // c. For each String name of uninitializedBoundNames, do
- // NOTE: Nothing in the callback throws an exception.
- MUST(variable_declaration.for_each_bound_name([&](auto const& name) {
- // i. Perform ! newEnv.CreateMutableBinding(name, false).
- auto identifier = generator.intern_identifier(name);
- generator.register_binding(identifier);
- generator.emit<Bytecode::Op::CreateVariable>(identifier, Bytecode::Op::EnvironmentMode::Lexical, false);
- }));
- // d. Set the running execution context's LexicalEnvironment to newEnv.
- // NOTE: Done by CreateEnvironment.
- }
- } else {
- // Runtime Semantics: ForInOfLoopEvaluation, for any of:
- // ForInOfStatement : for ( LeftHandSideExpression in Expression ) Statement
- // ForInOfStatement : for ( LeftHandSideExpression of AssignmentExpression ) Statement
- result.lhs_kind = LHSKind::Assignment;
- }
- // 3. Let exprRef be the result of evaluating expr.
- TRY(rhs->generate_bytecode(generator));
- // 4. Set the running execution context's LexicalEnvironment to oldEnv.
- if (entered_lexical_scope)
- generator.end_variable_scope();
- // 5. Let exprValue be ? GetValue(exprRef).
- // NOTE: No need to store this anywhere.
- // 6. If iterationKind is enumerate, then
- if (iteration_kind == IterationKind::Enumerate) {
- // a. If exprValue is undefined or null, then
- auto& nullish_block = generator.make_block();
- auto& continuation_block = generator.make_block();
- auto& jump = generator.emit<Bytecode::Op::JumpNullish>();
- jump.set_targets(Bytecode::Label { nullish_block }, Bytecode::Label { continuation_block });
- // i. Return Completion Record { [[Type]]: break, [[Value]]: empty, [[Target]]: empty }.
- generator.switch_to_basic_block(nullish_block);
- generator.generate_break();
- generator.switch_to_basic_block(continuation_block);
- // b. Let obj be ! ToObject(exprValue).
- // NOTE: GetObjectPropertyIterator does this.
- // c. Let iterator be EnumerateObjectProperties(obj).
- // d. Let nextMethod be ! GetV(iterator, "next").
- // e. Return the Iterator Record { [[Iterator]]: iterator, [[NextMethod]]: nextMethod, [[Done]]: false }.
- generator.emit<Bytecode::Op::GetObjectPropertyIterator>();
- }
- // 7. Else,
- else {
- // a. Assert: iterationKind is iterate or async-iterate.
- // b. If iterationKind is async-iterate, let iteratorHint be async.
- if (iteration_kind == IterationKind::AsyncIterate) {
- return Bytecode::CodeGenerationError {
- rhs.ptr(),
- "Unimplemented iteration mode: AsyncIterate"sv,
- };
- }
- // c. Else, let iteratorHint be sync.
- // d. Return ? GetIterator(exprValue, iteratorHint).
- generator.emit<Bytecode::Op::GetIterator>();
- }
- return result;
- }
- // 14.7.5.7 ForIn/OfBodyEvaluation ( lhs, stmt, iteratorRecord, iterationKind, lhsKind, labelSet [ , iteratorKind ] ), https://tc39.es/ecma262/#sec-runtime-semantics-forin-div-ofbodyevaluation-lhs-stmt-iterator-lhskind-labelset
- static Bytecode::CodeGenerationErrorOr<void> for_in_of_body_evaluation(Bytecode::Generator& generator, ASTNode const& node, Variant<NonnullRefPtr<ASTNode const>, NonnullRefPtr<BindingPattern const>> const& lhs, ASTNode const& body, ForInOfHeadEvaluationResult const& head_result, Vector<DeprecatedFlyString> const& label_set, Bytecode::BasicBlock& loop_end, Bytecode::BasicBlock& loop_update)
- {
- auto iterator_register = generator.allocate_register();
- generator.emit<Bytecode::Op::Store>(iterator_register);
- // FIXME: Implement this
- // 1. If iteratorKind is not present, set iteratorKind to sync.
- // 2. Let oldEnv be the running execution context's LexicalEnvironment.
- bool has_lexical_binding = false;
- // 3. Let V be undefined.
- // NOTE: We don't need 'V' as the resulting value will naturally flow through via the accumulator register.
- // 4. Let destructuring be IsDestructuring of lhs.
- auto destructuring = head_result.is_destructuring;
- // 5. If destructuring is true and if lhsKind is assignment, then
- if (destructuring && head_result.lhs_kind == LHSKind::Assignment) {
- // a. Assert: lhs is a LeftHandSideExpression.
- // b. Let assignmentPattern be the AssignmentPattern that is covered by lhs.
- // FIXME: Implement this.
- return Bytecode::CodeGenerationError {
- &node,
- "Unimplemented: assignment destructuring in for/of"sv,
- };
- }
- // 6. Repeat,
- generator.emit<Bytecode::Op::Jump>(Bytecode::Label { loop_update });
- generator.switch_to_basic_block(loop_update);
- generator.begin_continuable_scope(Bytecode::Label { loop_update }, label_set);
- // a. Let nextResult be ? Call(iteratorRecord.[[NextMethod]], iteratorRecord.[[Iterator]]).
- generator.emit<Bytecode::Op::Load>(iterator_register);
- generator.emit<Bytecode::Op::IteratorNext>();
- // FIXME: Implement this:
- // b. If iteratorKind is async, set nextResult to ? Await(nextResult).
- // c. If Type(nextResult) is not Object, throw a TypeError exception.
- // NOTE: IteratorComplete already does this.
- // d. Let done be ? IteratorComplete(nextResult).
- auto iterator_result_register = generator.allocate_register();
- generator.emit<Bytecode::Op::Store>(iterator_result_register);
- generator.emit<Bytecode::Op::IteratorResultDone>();
- // e. If done is true, return V.
- auto& loop_continue = generator.make_block();
- generator.emit<Bytecode::Op::JumpConditional>().set_targets(Bytecode::Label { loop_end }, Bytecode::Label { loop_continue });
- generator.switch_to_basic_block(loop_continue);
- // f. Let nextValue be ? IteratorValue(nextResult).
- generator.emit<Bytecode::Op::Load>(iterator_result_register);
- generator.emit<Bytecode::Op::IteratorResultValue>();
- // g. If lhsKind is either assignment or varBinding, then
- if (head_result.lhs_kind != LHSKind::LexicalBinding) {
- // i. If destructuring is false, then
- if (!destructuring) {
- // 1. Let lhsRef be the result of evaluating lhs. (It may be evaluated repeatedly.)
- // NOTE: We're skipping all the completion stuff that the spec does, as the unwinding mechanism will take case of doing that.
- if (head_result.lhs_kind == LHSKind::VarBinding) {
- auto& declaration = static_cast<VariableDeclaration const&>(*lhs.get<NonnullRefPtr<ASTNode const>>());
- VERIFY(declaration.declarations().size() == 1);
- TRY(assign_accumulator_to_variable_declarator(generator, declaration.declarations().first(), declaration));
- } else {
- if (auto ptr = lhs.get_pointer<NonnullRefPtr<ASTNode const>>()) {
- TRY(generator.emit_store_to_reference(**ptr));
- } else {
- auto& binding_pattern = lhs.get<NonnullRefPtr<BindingPattern const>>();
- auto value_register = generator.allocate_register();
- generator.emit<Bytecode::Op::Store>(value_register);
- TRY(generate_binding_pattern_bytecode(generator, *binding_pattern, Bytecode::Op::SetVariable::InitializationMode::Set, value_register));
- }
- }
- }
- }
- // h. Else,
- else {
- // i. Assert: lhsKind is lexicalBinding.
- // ii. Assert: lhs is a ForDeclaration.
- // iii. Let iterationEnv be NewDeclarativeEnvironment(oldEnv).
- // iv. Perform ForDeclarationBindingInstantiation of lhs with argument iterationEnv.
- // v. Set the running execution context's LexicalEnvironment to iterationEnv.
- generator.begin_variable_scope(Bytecode::Generator::BindingMode::Lexical);
- has_lexical_binding = true;
- // 14.7.5.4 Runtime Semantics: ForDeclarationBindingInstantiation, https://tc39.es/ecma262/#sec-runtime-semantics-fordeclarationbindinginstantiation
- // 1. Assert: environment is a declarative Environment Record.
- // NOTE: We just made it.
- auto& variable_declaration = static_cast<VariableDeclaration const&>(*lhs.get<NonnullRefPtr<ASTNode const>>());
- // 2. For each element name of the BoundNames of ForBinding, do
- // NOTE: Nothing in the callback throws an exception.
- MUST(variable_declaration.for_each_bound_name([&](auto const& name) {
- auto identifier = generator.intern_identifier(name);
- generator.register_binding(identifier, Bytecode::Generator::BindingMode::Lexical);
- // a. If IsConstantDeclaration of LetOrConst is true, then
- if (variable_declaration.is_constant_declaration()) {
- // i. Perform ! environment.CreateImmutableBinding(name, true).
- generator.emit<Bytecode::Op::CreateVariable>(identifier, Bytecode::Op::EnvironmentMode::Lexical, true);
- }
- // b. Else,
- else {
- // i. Perform ! environment.CreateMutableBinding(name, false).
- generator.emit<Bytecode::Op::CreateVariable>(identifier, Bytecode::Op::EnvironmentMode::Lexical, false);
- }
- }));
- // 3. Return unused.
- // NOTE: No need to do that as we've inlined this.
- // vi. If destructuring is false, then
- if (!destructuring) {
- // 1. Assert: lhs binds a single name.
- // 2. Let lhsName be the sole element of BoundNames of lhs.
- auto lhs_name = variable_declaration.declarations().first()->target().get<NonnullRefPtr<Identifier const>>()->string();
- // 3. Let lhsRef be ! ResolveBinding(lhsName).
- // NOTE: We're skipping all the completion stuff that the spec does, as the unwinding mechanism will take case of doing that.
- auto identifier = generator.intern_identifier(lhs_name);
- generator.emit<Bytecode::Op::SetVariable>(identifier, Bytecode::Op::SetVariable::InitializationMode::Initialize, Bytecode::Op::EnvironmentMode::Lexical);
- }
- }
- // i. If destructuring is false, then
- if (!destructuring) {
- // i. If lhsRef is an abrupt completion, then
- // 1. Let status be lhsRef.
- // ii. Else if lhsKind is lexicalBinding, then
- // 1. Let status be Completion(InitializeReferencedBinding(lhsRef, nextValue)).
- // iii. Else,
- // 1. Let status be Completion(PutValue(lhsRef, nextValue)).
- // NOTE: This is performed above.
- }
- // j. Else,
- else {
- // FIXME: i. If lhsKind is assignment, then
- // 1. Let status be Completion(DestructuringAssignmentEvaluation of assignmentPattern with argument nextValue).
- // ii. Else if lhsKind is varBinding, then
- // 1. Assert: lhs is a ForBinding.
- // 2. Let status be Completion(BindingInitialization of lhs with arguments nextValue and undefined).
- // iii. Else,
- // 1. Assert: lhsKind is lexicalBinding.
- // 2. Assert: lhs is a ForDeclaration.
- // 3. Let status be Completion(ForDeclarationBindingInitialization of lhs with arguments nextValue and iterationEnv).
- if (head_result.lhs_kind == LHSKind::VarBinding || head_result.lhs_kind == LHSKind::LexicalBinding) {
- auto& declaration = static_cast<VariableDeclaration const&>(*lhs.get<NonnullRefPtr<ASTNode const>>());
- VERIFY(declaration.declarations().size() == 1);
- auto& binding_pattern = declaration.declarations().first()->target().get<NonnullRefPtr<BindingPattern const>>();
- auto value_register = generator.allocate_register();
- generator.emit<Bytecode::Op::Store>(value_register);
- TRY(generate_binding_pattern_bytecode(generator, *binding_pattern, head_result.lhs_kind == LHSKind::VarBinding ? Bytecode::Op::SetVariable::InitializationMode::Set : Bytecode::Op::SetVariable::InitializationMode::Initialize, value_register));
- } else {
- return Bytecode::CodeGenerationError {
- &node,
- "Unimplemented: assignment destructuring in for/of"sv,
- };
- }
- }
- // FIXME: Implement iteration closure.
- // k. If status is an abrupt completion, then
- // i. Set the running execution context's LexicalEnvironment to oldEnv.
- // ii. If iteratorKind is async, return ? AsyncIteratorClose(iteratorRecord, status).
- // iii. If iterationKind is enumerate, then
- // 1. Return ? status.
- // iv. Else,
- // 1. Assert: iterationKind is iterate.
- // 2. Return ? IteratorClose(iteratorRecord, status).
- // l. Let result be the result of evaluating stmt.
- TRY(body.generate_bytecode(generator));
- // m. Set the running execution context's LexicalEnvironment to oldEnv.
- if (has_lexical_binding)
- generator.end_variable_scope();
- generator.end_continuable_scope();
- generator.end_breakable_scope();
- // NOTE: If we're here, then the loop definitely continues.
- // n. If LoopContinues(result, labelSet) is false, then
- // i. If iterationKind is enumerate, then
- // 1. Return ? UpdateEmpty(result, V).
- // ii. Else,
- // 1. Assert: iterationKind is iterate.
- // 2. Set status to Completion(UpdateEmpty(result, V)).
- // 3. If iteratorKind is async, return ? AsyncIteratorClose(iteratorRecord, status).
- // 4. Return ? IteratorClose(iteratorRecord, status).
- // o. If result.[[Value]] is not empty, set V to result.[[Value]].
- // The body can contain an unconditional block terminator (e.g. return, throw), so we have to check for that before generating the Jump.
- if (!generator.is_current_block_terminated())
- generator.emit<Bytecode::Op::Jump>().set_targets(Bytecode::Label { loop_update }, {});
- generator.switch_to_basic_block(loop_end);
- return {};
- }
- Bytecode::CodeGenerationErrorOr<void> ForInStatement::generate_bytecode(Bytecode::Generator& generator) const
- {
- return generate_labelled_evaluation(generator, {});
- }
- // 14.7.5.5 Runtime Semantics: ForInOfLoopEvaluation, https://tc39.es/ecma262/#sec-runtime-semantics-forinofloopevaluation
- Bytecode::CodeGenerationErrorOr<void> ForInStatement::generate_labelled_evaluation(Bytecode::Generator& generator, Vector<DeprecatedFlyString> const& label_set) const
- {
- auto& loop_end = generator.make_block();
- auto& loop_update = generator.make_block();
- generator.begin_breakable_scope(Bytecode::Label { loop_end }, label_set);
- auto head_result = TRY(for_in_of_head_evaluation(generator, IterationKind::Enumerate, m_lhs, m_rhs));
- // Now perform the rest of ForInOfLoopEvaluation, given that the accumulator holds the iterator we're supposed to iterate over.
- return for_in_of_body_evaluation(generator, *this, m_lhs, body(), head_result, label_set, loop_end, loop_update);
- }
- Bytecode::CodeGenerationErrorOr<void> ForOfStatement::generate_bytecode(Bytecode::Generator& generator) const
- {
- return generate_labelled_evaluation(generator, {});
- }
- Bytecode::CodeGenerationErrorOr<void> ForOfStatement::generate_labelled_evaluation(Bytecode::Generator& generator, Vector<DeprecatedFlyString> const& label_set) const
- {
- auto& loop_end = generator.make_block();
- auto& loop_update = generator.make_block();
- generator.begin_breakable_scope(Bytecode::Label { loop_end }, label_set);
- auto head_result = TRY(for_in_of_head_evaluation(generator, IterationKind::Iterate, m_lhs, m_rhs));
- // Now perform the rest of ForInOfLoopEvaluation, given that the accumulator holds the iterator we're supposed to iterate over.
- return for_in_of_body_evaluation(generator, *this, m_lhs, body(), head_result, label_set, loop_end, loop_update);
- }
- // 13.3.12.1 Runtime Semantics: Evaluation, https://tc39.es/ecma262/#sec-meta-properties-runtime-semantics-evaluation
- Bytecode::CodeGenerationErrorOr<void> MetaProperty::generate_bytecode(Bytecode::Generator& generator) const
- {
- // NewTarget : new . target
- if (m_type == MetaProperty::Type::NewTarget) {
- // 1. Return GetNewTarget().
- generator.emit<Bytecode::Op::GetNewTarget>();
- return {};
- }
- // ImportMeta : import . meta
- if (m_type == MetaProperty::Type::ImportMeta) {
- return Bytecode::CodeGenerationError {
- this,
- "Unimplemented meta property: import.meta"sv,
- };
- }
- VERIFY_NOT_REACHED();
- }
- }
|