Interpreter.cpp 92 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196
  1. /*
  2. * Copyright (c) 2021, Andreas Kling <kling@serenityos.org>
  3. *
  4. * SPDX-License-Identifier: BSD-2-Clause
  5. */
  6. #include <AK/Debug.h>
  7. #include <AK/HashTable.h>
  8. #include <AK/TemporaryChange.h>
  9. #include <LibJS/AST.h>
  10. #include <LibJS/Bytecode/BasicBlock.h>
  11. #include <LibJS/Bytecode/CommonImplementations.h>
  12. #include <LibJS/Bytecode/Generator.h>
  13. #include <LibJS/Bytecode/Instruction.h>
  14. #include <LibJS/Bytecode/Interpreter.h>
  15. #include <LibJS/Bytecode/Op.h>
  16. #include <LibJS/JIT/Compiler.h>
  17. #include <LibJS/Runtime/AbstractOperations.h>
  18. #include <LibJS/Runtime/Array.h>
  19. #include <LibJS/Runtime/BigInt.h>
  20. #include <LibJS/Runtime/DeclarativeEnvironment.h>
  21. #include <LibJS/Runtime/ECMAScriptFunctionObject.h>
  22. #include <LibJS/Runtime/Environment.h>
  23. #include <LibJS/Runtime/FunctionEnvironment.h>
  24. #include <LibJS/Runtime/GlobalEnvironment.h>
  25. #include <LibJS/Runtime/GlobalObject.h>
  26. #include <LibJS/Runtime/Iterator.h>
  27. #include <LibJS/Runtime/NativeFunction.h>
  28. #include <LibJS/Runtime/ObjectEnvironment.h>
  29. #include <LibJS/Runtime/Realm.h>
  30. #include <LibJS/Runtime/Reference.h>
  31. #include <LibJS/Runtime/RegExpObject.h>
  32. #include <LibJS/Runtime/Value.h>
  33. #include <LibJS/Runtime/ValueInlines.h>
  34. #include <LibJS/SourceTextModule.h>
  35. namespace JS::Bytecode {
  36. bool g_dump_bytecode = false;
  37. Interpreter::Interpreter(VM& vm)
  38. : m_vm(vm)
  39. {
  40. }
  41. Interpreter::~Interpreter()
  42. {
  43. }
  44. void Interpreter::visit_edges(Cell::Visitor& visitor)
  45. {
  46. for (auto& frame : m_call_frames) {
  47. frame.visit([&](auto& value) { value->visit_edges(visitor); });
  48. }
  49. }
  50. // 16.1.6 ScriptEvaluation ( scriptRecord ), https://tc39.es/ecma262/#sec-runtime-semantics-scriptevaluation
  51. ThrowCompletionOr<Value> Interpreter::run(Script& script_record, JS::GCPtr<Environment> lexical_environment_override)
  52. {
  53. auto& vm = this->vm();
  54. // 1. Let globalEnv be scriptRecord.[[Realm]].[[GlobalEnv]].
  55. auto& global_environment = script_record.realm().global_environment();
  56. // 2. Let scriptContext be a new ECMAScript code execution context.
  57. ExecutionContext script_context(vm.heap());
  58. // 3. Set the Function of scriptContext to null.
  59. // NOTE: This was done during execution context construction.
  60. // 4. Set the Realm of scriptContext to scriptRecord.[[Realm]].
  61. script_context.realm = &script_record.realm();
  62. // 5. Set the ScriptOrModule of scriptContext to scriptRecord.
  63. script_context.script_or_module = NonnullGCPtr<Script>(script_record);
  64. // 6. Set the VariableEnvironment of scriptContext to globalEnv.
  65. script_context.variable_environment = &global_environment;
  66. // 7. Set the LexicalEnvironment of scriptContext to globalEnv.
  67. script_context.lexical_environment = &global_environment;
  68. // Non-standard: Override the lexical environment if requested.
  69. if (lexical_environment_override)
  70. script_context.lexical_environment = lexical_environment_override;
  71. // 8. Set the PrivateEnvironment of scriptContext to null.
  72. // NOTE: This isn't in the spec, but we require it.
  73. script_context.is_strict_mode = script_record.parse_node().is_strict_mode();
  74. // FIXME: 9. Suspend the currently running execution context.
  75. // 10. Push scriptContext onto the execution context stack; scriptContext is now the running execution context.
  76. TRY(vm.push_execution_context(script_context, {}));
  77. // 11. Let script be scriptRecord.[[ECMAScriptCode]].
  78. auto& script = script_record.parse_node();
  79. // 12. Let result be Completion(GlobalDeclarationInstantiation(script, globalEnv)).
  80. auto instantiation_result = script.global_declaration_instantiation(vm, global_environment);
  81. Completion result = instantiation_result.is_throw_completion() ? instantiation_result.throw_completion() : normal_completion({});
  82. // 13. If result.[[Type]] is normal, then
  83. if (result.type() == Completion::Type::Normal) {
  84. auto executable_result = JS::Bytecode::Generator::generate(script);
  85. if (executable_result.is_error()) {
  86. if (auto error_string = executable_result.error().to_string(); error_string.is_error())
  87. result = vm.template throw_completion<JS::InternalError>(vm.error_message(JS::VM::ErrorMessage::OutOfMemory));
  88. else if (error_string = String::formatted("TODO({})", error_string.value()); error_string.is_error())
  89. result = vm.template throw_completion<JS::InternalError>(vm.error_message(JS::VM::ErrorMessage::OutOfMemory));
  90. else
  91. result = JS::throw_completion(JS::InternalError::create(realm(), error_string.release_value()));
  92. } else {
  93. auto executable = executable_result.release_value();
  94. if (g_dump_bytecode)
  95. executable->dump();
  96. // a. Set result to the result of evaluating script.
  97. auto result_or_error = run_and_return_frame(*executable, nullptr);
  98. if (result_or_error.value.is_error())
  99. result = result_or_error.value.release_error();
  100. else
  101. result = result_or_error.frame->registers[0];
  102. }
  103. }
  104. // 14. If result.[[Type]] is normal and result.[[Value]] is empty, then
  105. if (result.type() == Completion::Type::Normal && !result.value().has_value()) {
  106. // a. Set result to NormalCompletion(undefined).
  107. result = normal_completion(js_undefined());
  108. }
  109. // FIXME: 15. Suspend scriptContext and remove it from the execution context stack.
  110. vm.pop_execution_context();
  111. // 16. Assert: The execution context stack is not empty.
  112. VERIFY(!vm.execution_context_stack().is_empty());
  113. // FIXME: 17. Resume the context that is now on the top of the execution context stack as the running execution context.
  114. // At this point we may have already run any queued promise jobs via on_call_stack_emptied,
  115. // in which case this is a no-op.
  116. // FIXME: These three should be moved out of Interpreter::run and give the host an option to run these, as it's up to the host when these get run.
  117. // https://tc39.es/ecma262/#sec-jobs for jobs and https://tc39.es/ecma262/#_ref_3508 for ClearKeptObjects
  118. // finish_execution_generation is particularly an issue for LibWeb, as the HTML spec wants to run it specifically after performing a microtask checkpoint.
  119. // The promise and registry cleanup queues don't cause LibWeb an issue, as LibWeb overrides the hooks that push onto these queues.
  120. vm.run_queued_promise_jobs();
  121. vm.run_queued_finalization_registry_cleanup_jobs();
  122. vm.finish_execution_generation();
  123. // 18. Return ? result.
  124. if (result.is_abrupt()) {
  125. VERIFY(result.type() == Completion::Type::Throw);
  126. return result.release_error();
  127. }
  128. VERIFY(result.value().has_value());
  129. return *result.value();
  130. }
  131. ThrowCompletionOr<Value> Interpreter::run(SourceTextModule& module)
  132. {
  133. // FIXME: This is not a entry point as defined in the spec, but is convenient.
  134. // To avoid work we use link_and_eval_module however that can already be
  135. // dangerous if the vm loaded other modules.
  136. auto& vm = this->vm();
  137. TRY(vm.link_and_eval_module(Badge<Bytecode::Interpreter> {}, module));
  138. vm.run_queued_promise_jobs();
  139. vm.run_queued_finalization_registry_cleanup_jobs();
  140. return js_undefined();
  141. }
  142. void Interpreter::run_bytecode()
  143. {
  144. auto* locals = vm().running_execution_context().local_variables.data();
  145. auto* registers = this->registers().data();
  146. auto& accumulator = this->accumulator();
  147. for (;;) {
  148. start:
  149. auto pc = InstructionStreamIterator { m_current_block->instruction_stream(), m_current_executable };
  150. TemporaryChange temp_change { m_pc, Optional<InstructionStreamIterator&>(pc) };
  151. bool will_return = false;
  152. bool will_yield = false;
  153. ThrowCompletionOr<void> result;
  154. while (!pc.at_end()) {
  155. auto& instruction = *pc;
  156. switch (instruction.type()) {
  157. case Instruction::Type::GetLocal: {
  158. auto& local = locals[static_cast<Op::GetLocal const&>(instruction).index()];
  159. if (local.is_empty()) {
  160. auto const& variable_name = vm().running_execution_context().function->local_variables_names()[static_cast<Op::GetLocal const&>(instruction).index()];
  161. result = vm().throw_completion<ReferenceError>(ErrorType::BindingNotInitialized, variable_name);
  162. break;
  163. }
  164. accumulator = local;
  165. break;
  166. }
  167. case Instruction::Type::SetLocal:
  168. locals[static_cast<Op::SetLocal const&>(instruction).index()] = accumulator;
  169. break;
  170. case Instruction::Type::Load:
  171. accumulator = registers[static_cast<Op::Load const&>(instruction).src().index()];
  172. break;
  173. case Instruction::Type::Store:
  174. registers[static_cast<Op::Store const&>(instruction).dst().index()] = accumulator;
  175. break;
  176. case Instruction::Type::LoadImmediate:
  177. accumulator = static_cast<Op::LoadImmediate const&>(instruction).value();
  178. break;
  179. case Instruction::Type::Jump:
  180. m_current_block = &static_cast<Op::Jump const&>(instruction).true_target()->block();
  181. goto start;
  182. case Instruction::Type::JumpConditional:
  183. if (accumulator.to_boolean())
  184. m_current_block = &static_cast<Op::Jump const&>(instruction).true_target()->block();
  185. else
  186. m_current_block = &static_cast<Op::Jump const&>(instruction).false_target()->block();
  187. goto start;
  188. case Instruction::Type::JumpNullish:
  189. if (accumulator.is_nullish())
  190. m_current_block = &static_cast<Op::Jump const&>(instruction).true_target()->block();
  191. else
  192. m_current_block = &static_cast<Op::Jump const&>(instruction).false_target()->block();
  193. goto start;
  194. case Instruction::Type::JumpUndefined:
  195. if (accumulator.is_undefined())
  196. m_current_block = &static_cast<Op::Jump const&>(instruction).true_target()->block();
  197. else
  198. m_current_block = &static_cast<Op::Jump const&>(instruction).false_target()->block();
  199. goto start;
  200. case Instruction::Type::EnterUnwindContext:
  201. enter_unwind_context(
  202. static_cast<Op::EnterUnwindContext const&>(instruction).handler_target(),
  203. static_cast<Op::EnterUnwindContext const&>(instruction).finalizer_target());
  204. m_current_block = &static_cast<Op::EnterUnwindContext const&>(instruction).entry_point().block();
  205. goto start;
  206. case Instruction::Type::ContinuePendingUnwind:
  207. if (auto exception = reg(Register::exception()); !exception.is_empty()) {
  208. result = throw_completion(exception);
  209. break;
  210. }
  211. if (!saved_return_value().is_empty()) {
  212. do_return(saved_return_value());
  213. break;
  214. }
  215. if (m_scheduled_jump) {
  216. // FIXME: If we `break` or `continue` in the finally, we need to clear
  217. // this field
  218. m_current_block = exchange(m_scheduled_jump, nullptr);
  219. } else {
  220. m_current_block = &static_cast<Op::ContinuePendingUnwind const&>(instruction).resume_target().block();
  221. }
  222. goto start;
  223. case Instruction::Type::ScheduleJump:
  224. m_scheduled_jump = &static_cast<Op::ScheduleJump const&>(instruction).target().block();
  225. m_current_block = unwind_contexts().last().finalizer;
  226. goto start;
  227. default:
  228. result = instruction.execute(*this);
  229. break;
  230. }
  231. if (result.is_error()) [[unlikely]] {
  232. reg(Register::exception()) = *result.throw_completion().value();
  233. if (unwind_contexts().is_empty())
  234. return;
  235. auto& unwind_context = unwind_contexts().last();
  236. if (unwind_context.executable != m_current_executable)
  237. return;
  238. if (unwind_context.handler && !unwind_context.handler_called) {
  239. vm().running_execution_context().lexical_environment = unwind_context.lexical_environment;
  240. m_current_block = unwind_context.handler;
  241. unwind_context.handler_called = true;
  242. accumulator = reg(Register::exception());
  243. reg(Register::exception()) = {};
  244. goto start;
  245. }
  246. if (unwind_context.finalizer) {
  247. m_current_block = unwind_context.finalizer;
  248. // If an exception was thrown inside the corresponding `catch` block, we need to rethrow it
  249. // from the `finally` block. But if the exception is from the `try` block, and has already been
  250. // handled by `catch`, we swallow it.
  251. if (!unwind_context.handler_called)
  252. reg(Register::exception()) = {};
  253. goto start;
  254. }
  255. // An unwind context with no handler or finalizer? We have nowhere to jump, and continuing on will make us crash on the next `Call` to a non-native function if there's an exception! So let's crash here instead.
  256. // If you run into this, you probably forgot to remove the current unwind_context somewhere.
  257. VERIFY_NOT_REACHED();
  258. }
  259. if (!reg(Register::return_value()).is_empty()) {
  260. will_return = true;
  261. // Note: A `yield` statement will not go through a finally statement,
  262. // hence we need to set a flag to not do so,
  263. // but we generate a Yield Operation in the case of returns in
  264. // generators as well, so we need to check if it will actually
  265. // continue or is a `return` in disguise
  266. will_yield = (instruction.type() == Instruction::Type::Yield && static_cast<Op::Yield const&>(instruction).continuation().has_value()) || instruction.type() == Instruction::Type::Await;
  267. break;
  268. }
  269. ++pc;
  270. }
  271. if (!unwind_contexts().is_empty() && !will_yield) {
  272. auto& unwind_context = unwind_contexts().last();
  273. if (unwind_context.executable == m_current_executable && unwind_context.finalizer) {
  274. reg(Register::saved_return_value()) = reg(Register::return_value());
  275. reg(Register::return_value()) = {};
  276. m_current_block = unwind_context.finalizer;
  277. // the unwind_context will be pop'ed when entering the finally block
  278. continue;
  279. }
  280. }
  281. if (pc.at_end())
  282. break;
  283. if (will_return)
  284. break;
  285. }
  286. }
  287. Interpreter::ValueAndFrame Interpreter::run_and_return_frame(Executable& executable, BasicBlock const* entry_point, CallFrame* in_frame)
  288. {
  289. dbgln_if(JS_BYTECODE_DEBUG, "Bytecode::Interpreter will run unit {:p}", &executable);
  290. TemporaryChange restore_executable { m_current_executable, &executable };
  291. TemporaryChange restore_saved_jump { m_scheduled_jump, static_cast<BasicBlock const*>(nullptr) };
  292. VERIFY(!vm().execution_context_stack().is_empty());
  293. TemporaryChange restore_current_block { m_current_block, entry_point ?: executable.basic_blocks.first() };
  294. if (in_frame)
  295. push_call_frame(in_frame, executable.number_of_registers);
  296. else
  297. push_call_frame(make<CallFrame>(), executable.number_of_registers);
  298. if (auto native_executable = executable.get_or_create_native_executable()) {
  299. native_executable->run(vm());
  300. #if 0
  301. for (size_t i = 0; i < vm().running_execution_context().local_variables.size(); ++i) {
  302. dbgln("%{}: {}", i, vm().running_execution_context().local_variables[i]);
  303. }
  304. #endif
  305. } else {
  306. run_bytecode();
  307. }
  308. dbgln_if(JS_BYTECODE_DEBUG, "Bytecode::Interpreter did run unit {:p}", &executable);
  309. if constexpr (JS_BYTECODE_DEBUG) {
  310. for (size_t i = 0; i < registers().size(); ++i) {
  311. String value_string;
  312. if (registers()[i].is_empty())
  313. value_string = "(empty)"_string;
  314. else
  315. value_string = registers()[i].to_string_without_side_effects();
  316. dbgln("[{:3}] {}", i, value_string);
  317. }
  318. }
  319. auto return_value = js_undefined();
  320. if (!reg(Register::return_value()).is_empty())
  321. return_value = reg(Register::return_value());
  322. else if (!reg(Register::saved_return_value()).is_empty())
  323. return_value = reg(Register::saved_return_value());
  324. auto exception = reg(Register::exception());
  325. auto frame = pop_call_frame();
  326. // NOTE: The return value from a called function is put into $0 in the caller context.
  327. if (!m_call_frames.is_empty())
  328. call_frame().registers[0] = return_value;
  329. // At this point we may have already run any queued promise jobs via on_call_stack_emptied,
  330. // in which case this is a no-op.
  331. vm().run_queued_promise_jobs();
  332. vm().finish_execution_generation();
  333. if (!exception.is_empty()) {
  334. if (auto* call_frame = frame.get_pointer<NonnullOwnPtr<CallFrame>>())
  335. return { throw_completion(exception), move(*call_frame) };
  336. return { throw_completion(exception), nullptr };
  337. }
  338. if (auto* call_frame = frame.get_pointer<NonnullOwnPtr<CallFrame>>())
  339. return { return_value, move(*call_frame) };
  340. return { return_value, nullptr };
  341. }
  342. void Interpreter::enter_unwind_context(Optional<Label> handler_target, Optional<Label> finalizer_target)
  343. {
  344. unwind_contexts().empend(
  345. m_current_executable,
  346. handler_target.has_value() ? &handler_target->block() : nullptr,
  347. finalizer_target.has_value() ? &finalizer_target->block() : nullptr,
  348. vm().running_execution_context().lexical_environment);
  349. }
  350. void Interpreter::leave_unwind_context()
  351. {
  352. unwind_contexts().take_last();
  353. }
  354. ThrowCompletionOr<NonnullRefPtr<Bytecode::Executable>> compile(VM& vm, ASTNode const& node, FunctionKind kind, DeprecatedFlyString const& name)
  355. {
  356. auto executable_result = Bytecode::Generator::generate(node, kind);
  357. if (executable_result.is_error())
  358. return vm.throw_completion<InternalError>(ErrorType::NotImplemented, TRY_OR_THROW_OOM(vm, executable_result.error().to_string()));
  359. auto bytecode_executable = executable_result.release_value();
  360. bytecode_executable->name = name;
  361. if (Bytecode::g_dump_bytecode)
  362. bytecode_executable->dump();
  363. return bytecode_executable;
  364. }
  365. Realm& Interpreter::realm()
  366. {
  367. return *m_vm.current_realm();
  368. }
  369. void Interpreter::push_call_frame(Variant<NonnullOwnPtr<CallFrame>, CallFrame*> frame, size_t register_count)
  370. {
  371. m_call_frames.append(move(frame));
  372. this->call_frame().registers.resize(register_count);
  373. m_current_call_frame = this->call_frame().registers;
  374. reg(Register::return_value()) = {};
  375. }
  376. Variant<NonnullOwnPtr<CallFrame>, CallFrame*> Interpreter::pop_call_frame()
  377. {
  378. auto frame = m_call_frames.take_last();
  379. m_current_call_frame = m_call_frames.is_empty() ? Span<Value> {} : this->call_frame().registers;
  380. return frame;
  381. }
  382. }
  383. namespace JS::Bytecode {
  384. DeprecatedString Instruction::to_deprecated_string(Bytecode::Executable const& executable) const
  385. {
  386. #define __BYTECODE_OP(op) \
  387. case Instruction::Type::op: \
  388. return static_cast<Bytecode::Op::op const&>(*this).to_deprecated_string_impl(executable);
  389. switch (type()) {
  390. ENUMERATE_BYTECODE_OPS(__BYTECODE_OP)
  391. default:
  392. VERIFY_NOT_REACHED();
  393. }
  394. #undef __BYTECODE_OP
  395. }
  396. }
  397. namespace JS::Bytecode::Op {
  398. ThrowCompletionOr<void> Load::execute_impl(Bytecode::Interpreter&) const
  399. {
  400. // Handled in the interpreter loop.
  401. __builtin_unreachable();
  402. }
  403. ThrowCompletionOr<void> LoadImmediate::execute_impl(Bytecode::Interpreter&) const
  404. {
  405. // Handled in the interpreter loop.
  406. __builtin_unreachable();
  407. }
  408. ThrowCompletionOr<void> Store::execute_impl(Bytecode::Interpreter&) const
  409. {
  410. // Handled in the interpreter loop.
  411. __builtin_unreachable();
  412. }
  413. static ThrowCompletionOr<Value> abstract_inequals(VM& vm, Value src1, Value src2)
  414. {
  415. return Value(!TRY(is_loosely_equal(vm, src1, src2)));
  416. }
  417. static ThrowCompletionOr<Value> abstract_equals(VM& vm, Value src1, Value src2)
  418. {
  419. return Value(TRY(is_loosely_equal(vm, src1, src2)));
  420. }
  421. static ThrowCompletionOr<Value> typed_inequals(VM&, Value src1, Value src2)
  422. {
  423. return Value(!is_strictly_equal(src1, src2));
  424. }
  425. static ThrowCompletionOr<Value> typed_equals(VM&, Value src1, Value src2)
  426. {
  427. return Value(is_strictly_equal(src1, src2));
  428. }
  429. #define JS_DEFINE_COMMON_BINARY_OP(OpTitleCase, op_snake_case) \
  430. ThrowCompletionOr<void> OpTitleCase::execute_impl(Bytecode::Interpreter& interpreter) const \
  431. { \
  432. auto& vm = interpreter.vm(); \
  433. auto lhs = interpreter.reg(m_lhs_reg); \
  434. auto rhs = interpreter.accumulator(); \
  435. interpreter.accumulator() = TRY(op_snake_case(vm, lhs, rhs)); \
  436. return {}; \
  437. } \
  438. DeprecatedString OpTitleCase::to_deprecated_string_impl(Bytecode::Executable const&) const \
  439. { \
  440. return DeprecatedString::formatted(#OpTitleCase " {}", m_lhs_reg); \
  441. }
  442. JS_ENUMERATE_COMMON_BINARY_OPS(JS_DEFINE_COMMON_BINARY_OP)
  443. static ThrowCompletionOr<Value> not_(VM&, Value value)
  444. {
  445. return Value(!value.to_boolean());
  446. }
  447. static ThrowCompletionOr<Value> typeof_(VM& vm, Value value)
  448. {
  449. return PrimitiveString::create(vm, value.typeof());
  450. }
  451. #define JS_DEFINE_COMMON_UNARY_OP(OpTitleCase, op_snake_case) \
  452. ThrowCompletionOr<void> OpTitleCase::execute_impl(Bytecode::Interpreter& interpreter) const \
  453. { \
  454. auto& vm = interpreter.vm(); \
  455. interpreter.accumulator() = TRY(op_snake_case(vm, interpreter.accumulator())); \
  456. return {}; \
  457. } \
  458. DeprecatedString OpTitleCase::to_deprecated_string_impl(Bytecode::Executable const&) const \
  459. { \
  460. return #OpTitleCase; \
  461. }
  462. JS_ENUMERATE_COMMON_UNARY_OPS(JS_DEFINE_COMMON_UNARY_OP)
  463. ThrowCompletionOr<void> NewBigInt::execute_impl(Bytecode::Interpreter& interpreter) const
  464. {
  465. auto& vm = interpreter.vm();
  466. interpreter.accumulator() = BigInt::create(vm, m_bigint);
  467. return {};
  468. }
  469. ThrowCompletionOr<void> NewArray::execute_impl(Bytecode::Interpreter& interpreter) const
  470. {
  471. auto array = MUST(Array::create(interpreter.realm(), 0));
  472. for (size_t i = 0; i < m_element_count; i++) {
  473. auto& value = interpreter.reg(Register(m_elements[0].index() + i));
  474. array->indexed_properties().put(i, value, default_attributes);
  475. }
  476. interpreter.accumulator() = array;
  477. return {};
  478. }
  479. ThrowCompletionOr<void> Append::execute_impl(Bytecode::Interpreter& interpreter) const
  480. {
  481. // Note: This OpCode is used to construct array literals and argument arrays for calls,
  482. // containing at least one spread element,
  483. // Iterating over such a spread element to unpack it has to be visible by
  484. // the user courtesy of
  485. // (1) https://tc39.es/ecma262/#sec-runtime-semantics-arrayaccumulation
  486. // SpreadElement : ... AssignmentExpression
  487. // 1. Let spreadRef be ? Evaluation of AssignmentExpression.
  488. // 2. Let spreadObj be ? GetValue(spreadRef).
  489. // 3. Let iteratorRecord be ? GetIterator(spreadObj).
  490. // 4. Repeat,
  491. // a. Let next be ? IteratorStep(iteratorRecord).
  492. // b. If next is false, return nextIndex.
  493. // c. Let nextValue be ? IteratorValue(next).
  494. // d. Perform ! CreateDataPropertyOrThrow(array, ! ToString(𝔽(nextIndex)), nextValue).
  495. // e. Set nextIndex to nextIndex + 1.
  496. // (2) https://tc39.es/ecma262/#sec-runtime-semantics-argumentlistevaluation
  497. // ArgumentList : ... AssignmentExpression
  498. // 1. Let list be a new empty List.
  499. // 2. Let spreadRef be ? Evaluation of AssignmentExpression.
  500. // 3. Let spreadObj be ? GetValue(spreadRef).
  501. // 4. Let iteratorRecord be ? GetIterator(spreadObj).
  502. // 5. Repeat,
  503. // a. Let next be ? IteratorStep(iteratorRecord).
  504. // b. If next is false, return list.
  505. // c. Let nextArg be ? IteratorValue(next).
  506. // d. Append nextArg to list.
  507. // ArgumentList : ArgumentList , ... AssignmentExpression
  508. // 1. Let precedingArgs be ? ArgumentListEvaluation of ArgumentList.
  509. // 2. Let spreadRef be ? Evaluation of AssignmentExpression.
  510. // 3. Let iteratorRecord be ? GetIterator(? GetValue(spreadRef)).
  511. // 4. Repeat,
  512. // a. Let next be ? IteratorStep(iteratorRecord).
  513. // b. If next is false, return precedingArgs.
  514. // c. Let nextArg be ? IteratorValue(next).
  515. // d. Append nextArg to precedingArgs.
  516. auto& vm = interpreter.vm();
  517. // Note: We know from codegen, that lhs is a plain array with only indexed properties
  518. auto& lhs = interpreter.reg(m_lhs).as_array();
  519. auto lhs_size = lhs.indexed_properties().array_like_size();
  520. auto rhs = interpreter.accumulator();
  521. if (m_is_spread) {
  522. // ...rhs
  523. size_t i = lhs_size;
  524. TRY(get_iterator_values(vm, rhs, [&i, &lhs](Value iterator_value) -> Optional<Completion> {
  525. lhs.indexed_properties().put(i, iterator_value, default_attributes);
  526. ++i;
  527. return {};
  528. }));
  529. } else {
  530. lhs.indexed_properties().put(lhs_size, rhs, default_attributes);
  531. }
  532. return {};
  533. }
  534. ThrowCompletionOr<void> ImportCall::execute_impl(Bytecode::Interpreter& interpreter) const
  535. {
  536. auto& vm = interpreter.vm();
  537. auto specifier = interpreter.reg(m_specifier);
  538. auto options_value = interpreter.reg(m_options);
  539. interpreter.accumulator() = TRY(perform_import_call(vm, specifier, options_value));
  540. return {};
  541. }
  542. // FIXME: Since the accumulator is a Value, we store an object there and have to convert back and forth between that an Iterator records. Not great.
  543. // Make sure to put this into the accumulator before the iterator object disappears from the stack to prevent the members from being GC'd.
  544. static Object* iterator_to_object(VM& vm, IteratorRecord iterator)
  545. {
  546. auto& realm = *vm.current_realm();
  547. auto object = Object::create(realm, nullptr);
  548. object->define_direct_property(vm.names.iterator, iterator.iterator, 0);
  549. object->define_direct_property(vm.names.next, iterator.next_method, 0);
  550. object->define_direct_property(vm.names.done, Value(iterator.done), 0);
  551. return object;
  552. }
  553. static IteratorRecord object_to_iterator(VM& vm, Object& object)
  554. {
  555. return IteratorRecord {
  556. .iterator = &MUST(object.get(vm.names.iterator)).as_object(),
  557. .next_method = MUST(object.get(vm.names.next)),
  558. .done = MUST(object.get(vm.names.done)).as_bool()
  559. };
  560. }
  561. ThrowCompletionOr<void> IteratorToArray::execute_impl(Bytecode::Interpreter& interpreter) const
  562. {
  563. auto& vm = interpreter.vm();
  564. auto iterator_object = TRY(interpreter.accumulator().to_object(vm));
  565. auto iterator = object_to_iterator(vm, iterator_object);
  566. auto array = MUST(Array::create(interpreter.realm(), 0));
  567. size_t index = 0;
  568. while (true) {
  569. auto iterator_result = TRY(iterator_next(vm, iterator));
  570. auto complete = TRY(iterator_complete(vm, iterator_result));
  571. if (complete) {
  572. interpreter.accumulator() = array;
  573. return {};
  574. }
  575. auto value = TRY(iterator_value(vm, iterator_result));
  576. MUST(array->create_data_property_or_throw(index, value));
  577. index++;
  578. }
  579. return {};
  580. }
  581. ThrowCompletionOr<void> NewString::execute_impl(Bytecode::Interpreter& interpreter) const
  582. {
  583. interpreter.accumulator() = PrimitiveString::create(interpreter.vm(), interpreter.current_executable().get_string(m_string));
  584. return {};
  585. }
  586. ThrowCompletionOr<void> NewObject::execute_impl(Bytecode::Interpreter& interpreter) const
  587. {
  588. auto& vm = interpreter.vm();
  589. auto& realm = *vm.current_realm();
  590. interpreter.accumulator() = Object::create(realm, realm.intrinsics().object_prototype());
  591. return {};
  592. }
  593. // 13.2.7.3 Runtime Semantics: Evaluation, https://tc39.es/ecma262/#sec-regular-expression-literals-runtime-semantics-evaluation
  594. ThrowCompletionOr<void> NewRegExp::execute_impl(Bytecode::Interpreter& interpreter) const
  595. {
  596. auto& vm = interpreter.vm();
  597. auto& realm = *vm.current_realm();
  598. // 1. Let pattern be CodePointsToString(BodyText of RegularExpressionLiteral).
  599. auto pattern = interpreter.current_executable().get_string(m_source_index);
  600. // 2. Let flags be CodePointsToString(FlagText of RegularExpressionLiteral).
  601. auto flags = interpreter.current_executable().get_string(m_flags_index);
  602. // 3. Return ! RegExpCreate(pattern, flags).
  603. auto& parsed_regex = interpreter.current_executable().regex_table->get(m_regex_index);
  604. Regex<ECMA262> regex(parsed_regex.regex, parsed_regex.pattern, parsed_regex.flags);
  605. // NOTE: We bypass RegExpCreate and subsequently RegExpAlloc as an optimization to use the already parsed values.
  606. auto regexp_object = RegExpObject::create(realm, move(regex), move(pattern), move(flags));
  607. // RegExpAlloc has these two steps from the 'Legacy RegExp features' proposal.
  608. regexp_object->set_realm(*vm.current_realm());
  609. // We don't need to check 'If SameValue(newTarget, thisRealm.[[Intrinsics]].[[%RegExp%]]) is true'
  610. // here as we know RegExpCreate calls RegExpAlloc with %RegExp% for newTarget.
  611. regexp_object->set_legacy_features_enabled(true);
  612. interpreter.accumulator() = regexp_object;
  613. return {};
  614. }
  615. #define JS_DEFINE_NEW_BUILTIN_ERROR_OP(ErrorName) \
  616. ThrowCompletionOr<void> New##ErrorName::execute_impl(Bytecode::Interpreter& interpreter) const \
  617. { \
  618. auto& vm = interpreter.vm(); \
  619. auto& realm = *vm.current_realm(); \
  620. interpreter.accumulator() = ErrorName::create(realm, interpreter.current_executable().get_string(m_error_string)); \
  621. return {}; \
  622. } \
  623. DeprecatedString New##ErrorName::to_deprecated_string_impl(Bytecode::Executable const& executable) const \
  624. { \
  625. return DeprecatedString::formatted("New" #ErrorName " {} (\"{}\")", m_error_string, executable.string_table->get(m_error_string)); \
  626. }
  627. JS_ENUMERATE_NEW_BUILTIN_ERROR_OPS(JS_DEFINE_NEW_BUILTIN_ERROR_OP)
  628. ThrowCompletionOr<void> CopyObjectExcludingProperties::execute_impl(Bytecode::Interpreter& interpreter) const
  629. {
  630. auto& vm = interpreter.vm();
  631. auto& realm = *vm.current_realm();
  632. auto from_object = interpreter.reg(m_from_object);
  633. auto to_object = Object::create(realm, realm.intrinsics().object_prototype());
  634. HashTable<PropertyKey> excluded_names;
  635. for (size_t i = 0; i < m_excluded_names_count; ++i) {
  636. excluded_names.set(TRY(interpreter.reg(m_excluded_names[i]).to_property_key(vm)));
  637. }
  638. TRY(to_object->copy_data_properties(vm, from_object, excluded_names));
  639. interpreter.accumulator() = to_object;
  640. return {};
  641. }
  642. ThrowCompletionOr<void> ConcatString::execute_impl(Bytecode::Interpreter& interpreter) const
  643. {
  644. auto& vm = interpreter.vm();
  645. auto string = TRY(interpreter.accumulator().to_primitive_string(vm));
  646. interpreter.reg(m_lhs) = PrimitiveString::create(vm, interpreter.reg(m_lhs).as_string(), string);
  647. return {};
  648. }
  649. ThrowCompletionOr<void> GetVariable::execute_impl(Bytecode::Interpreter& interpreter) const
  650. {
  651. auto& vm = interpreter.vm();
  652. auto& cached_environment_coordinate = interpreter.current_executable().environment_variable_caches[m_cache_index];
  653. if (cached_environment_coordinate.has_value()) {
  654. auto environment = vm.running_execution_context().lexical_environment;
  655. for (size_t i = 0; i < cached_environment_coordinate->hops; ++i)
  656. environment = environment->outer_environment();
  657. VERIFY(environment);
  658. VERIFY(environment->is_declarative_environment());
  659. if (!environment->is_permanently_screwed_by_eval()) {
  660. interpreter.accumulator() = TRY(verify_cast<DeclarativeEnvironment>(*environment).get_binding_value_direct(vm, cached_environment_coordinate.value().index, vm.in_strict_mode()));
  661. return {};
  662. }
  663. cached_environment_coordinate = {};
  664. }
  665. auto const& string = interpreter.current_executable().get_identifier(m_identifier);
  666. auto reference = TRY(vm.resolve_binding(string));
  667. if (reference.environment_coordinate().has_value())
  668. cached_environment_coordinate = reference.environment_coordinate();
  669. interpreter.accumulator() = TRY(reference.get_value(vm));
  670. return {};
  671. }
  672. ThrowCompletionOr<void> GetCalleeAndThisFromEnvironment::execute_impl(Bytecode::Interpreter& interpreter) const
  673. {
  674. auto& vm = interpreter.vm();
  675. auto& cached_environment_coordinate = interpreter.current_executable().environment_variable_caches[m_cache_index];
  676. if (cached_environment_coordinate.has_value()) {
  677. auto environment = vm.running_execution_context().lexical_environment;
  678. for (size_t i = 0; i < cached_environment_coordinate->hops; ++i)
  679. environment = environment->outer_environment();
  680. VERIFY(environment);
  681. VERIFY(environment->is_declarative_environment());
  682. if (!environment->is_permanently_screwed_by_eval()) {
  683. interpreter.reg(m_callee_reg) = TRY(verify_cast<DeclarativeEnvironment>(*environment).get_binding_value_direct(vm, cached_environment_coordinate.value().index, vm.in_strict_mode()));
  684. Value this_value = js_undefined();
  685. if (auto base_object = environment->with_base_object())
  686. this_value = base_object;
  687. interpreter.reg(m_this_reg) = this_value;
  688. return {};
  689. }
  690. cached_environment_coordinate = {};
  691. }
  692. auto const& string = interpreter.current_executable().get_identifier(m_identifier);
  693. auto reference = TRY(vm.resolve_binding(string));
  694. if (reference.environment_coordinate().has_value())
  695. cached_environment_coordinate = reference.environment_coordinate();
  696. interpreter.reg(m_callee_reg) = TRY(reference.get_value(vm));
  697. Value this_value = js_undefined();
  698. if (reference.is_property_reference()) {
  699. this_value = reference.get_this_value();
  700. } else {
  701. if (reference.is_environment_reference()) {
  702. if (auto base_object = reference.base_environment().with_base_object(); base_object != nullptr)
  703. this_value = base_object;
  704. }
  705. }
  706. interpreter.reg(m_this_reg) = this_value;
  707. return {};
  708. }
  709. ThrowCompletionOr<void> GetGlobal::execute_impl(Bytecode::Interpreter& interpreter) const
  710. {
  711. interpreter.accumulator() = TRY(get_global(interpreter, m_identifier, m_cache_index));
  712. return {};
  713. }
  714. ThrowCompletionOr<void> GetLocal::execute_impl(Bytecode::Interpreter&) const
  715. {
  716. // Handled in the interpreter loop.
  717. __builtin_unreachable();
  718. }
  719. ThrowCompletionOr<void> DeleteVariable::execute_impl(Bytecode::Interpreter& interpreter) const
  720. {
  721. auto& vm = interpreter.vm();
  722. auto const& string = interpreter.current_executable().get_identifier(m_identifier);
  723. auto reference = TRY(vm.resolve_binding(string));
  724. interpreter.accumulator() = Value(TRY(reference.delete_(vm)));
  725. return {};
  726. }
  727. ThrowCompletionOr<void> CreateLexicalEnvironment::execute_impl(Bytecode::Interpreter& interpreter) const
  728. {
  729. auto make_and_swap_envs = [&](auto& old_environment) {
  730. GCPtr<Environment> environment = new_declarative_environment(*old_environment).ptr();
  731. swap(old_environment, environment);
  732. return environment;
  733. };
  734. interpreter.saved_lexical_environment_stack().append(make_and_swap_envs(interpreter.vm().running_execution_context().lexical_environment));
  735. return {};
  736. }
  737. ThrowCompletionOr<void> EnterObjectEnvironment::execute_impl(Bytecode::Interpreter& interpreter) const
  738. {
  739. auto& vm = interpreter.vm();
  740. auto& old_environment = vm.running_execution_context().lexical_environment;
  741. interpreter.saved_lexical_environment_stack().append(old_environment);
  742. auto object = TRY(interpreter.accumulator().to_object(vm));
  743. vm.running_execution_context().lexical_environment = new_object_environment(object, true, old_environment);
  744. return {};
  745. }
  746. ThrowCompletionOr<void> CreateVariable::execute_impl(Bytecode::Interpreter& interpreter) const
  747. {
  748. auto& vm = interpreter.vm();
  749. auto const& name = interpreter.current_executable().get_identifier(m_identifier);
  750. if (m_mode == EnvironmentMode::Lexical) {
  751. VERIFY(!m_is_global);
  752. // Note: This is papering over an issue where "FunctionDeclarationInstantiation" creates these bindings for us.
  753. // Instead of crashing in there, we'll just raise an exception here.
  754. if (TRY(vm.lexical_environment()->has_binding(name)))
  755. return vm.throw_completion<InternalError>(TRY_OR_THROW_OOM(vm, String::formatted("Lexical environment already has binding '{}'", name)));
  756. if (m_is_immutable)
  757. return vm.lexical_environment()->create_immutable_binding(vm, name, m_is_strict);
  758. else
  759. return vm.lexical_environment()->create_mutable_binding(vm, name, m_is_strict);
  760. } else {
  761. if (!m_is_global) {
  762. if (m_is_immutable)
  763. return vm.variable_environment()->create_immutable_binding(vm, name, m_is_strict);
  764. else
  765. return vm.variable_environment()->create_mutable_binding(vm, name, m_is_strict);
  766. } else {
  767. // NOTE: CreateVariable with m_is_global set to true is expected to only be used in GlobalDeclarationInstantiation currently, which only uses "false" for "can_be_deleted".
  768. // The only area that sets "can_be_deleted" to true is EvalDeclarationInstantiation, which is currently fully implemented in C++ and not in Bytecode.
  769. return verify_cast<GlobalEnvironment>(vm.variable_environment())->create_global_var_binding(name, false);
  770. }
  771. }
  772. return {};
  773. }
  774. ThrowCompletionOr<void> SetVariable::execute_impl(Bytecode::Interpreter& interpreter) const
  775. {
  776. auto& vm = interpreter.vm();
  777. auto const& name = interpreter.current_executable().get_identifier(m_identifier);
  778. auto environment = m_mode == EnvironmentMode::Lexical ? vm.running_execution_context().lexical_environment : vm.running_execution_context().variable_environment;
  779. auto reference = TRY(vm.resolve_binding(name, environment));
  780. switch (m_initialization_mode) {
  781. case InitializationMode::Initialize:
  782. TRY(reference.initialize_referenced_binding(vm, interpreter.accumulator()));
  783. break;
  784. case InitializationMode::Set:
  785. TRY(reference.put_value(vm, interpreter.accumulator()));
  786. break;
  787. }
  788. return {};
  789. }
  790. ThrowCompletionOr<void> SetLocal::execute_impl(Bytecode::Interpreter&) const
  791. {
  792. // Handled in the interpreter loop.
  793. __builtin_unreachable();
  794. }
  795. ThrowCompletionOr<void> GetById::execute_impl(Bytecode::Interpreter& interpreter) const
  796. {
  797. auto base_value = interpreter.accumulator();
  798. interpreter.accumulator() = TRY(get_by_id(interpreter, m_property, base_value, base_value, m_cache_index));
  799. return {};
  800. }
  801. ThrowCompletionOr<void> GetByIdWithThis::execute_impl(Bytecode::Interpreter& interpreter) const
  802. {
  803. auto base_value = interpreter.accumulator();
  804. auto this_value = interpreter.reg(m_this_value);
  805. interpreter.accumulator() = TRY(get_by_id(interpreter, m_property, base_value, this_value, m_cache_index));
  806. return {};
  807. }
  808. ThrowCompletionOr<void> GetPrivateById::execute_impl(Bytecode::Interpreter& interpreter) const
  809. {
  810. auto& vm = interpreter.vm();
  811. auto const& name = interpreter.current_executable().get_identifier(m_property);
  812. auto base_value = interpreter.accumulator();
  813. auto private_reference = make_private_reference(vm, base_value, name);
  814. interpreter.accumulator() = TRY(private_reference.get_value(vm));
  815. return {};
  816. }
  817. ThrowCompletionOr<void> HasPrivateId::execute_impl(Bytecode::Interpreter& interpreter) const
  818. {
  819. auto& vm = interpreter.vm();
  820. if (!interpreter.accumulator().is_object())
  821. return vm.throw_completion<TypeError>(ErrorType::InOperatorWithObject);
  822. auto private_environment = vm.running_execution_context().private_environment;
  823. VERIFY(private_environment);
  824. auto private_name = private_environment->resolve_private_identifier(interpreter.current_executable().get_identifier(m_property));
  825. interpreter.accumulator() = Value(interpreter.accumulator().as_object().private_element_find(private_name) != nullptr);
  826. return {};
  827. }
  828. ThrowCompletionOr<void> PutById::execute_impl(Bytecode::Interpreter& interpreter) const
  829. {
  830. auto& vm = interpreter.vm();
  831. // NOTE: Get the value from the accumulator before side effects have a chance to overwrite it.
  832. auto value = interpreter.accumulator();
  833. auto base = interpreter.reg(m_base);
  834. PropertyKey name = interpreter.current_executable().get_identifier(m_property);
  835. TRY(put_by_property_key(vm, base, base, value, name, m_kind));
  836. interpreter.accumulator() = value;
  837. return {};
  838. }
  839. ThrowCompletionOr<void> PutByIdWithThis::execute_impl(Bytecode::Interpreter& interpreter) const
  840. {
  841. auto& vm = interpreter.vm();
  842. // NOTE: Get the value from the accumulator before side effects have a chance to overwrite it.
  843. auto value = interpreter.accumulator();
  844. auto base = interpreter.reg(m_base);
  845. PropertyKey name = interpreter.current_executable().get_identifier(m_property);
  846. TRY(put_by_property_key(vm, base, interpreter.reg(m_this_value), value, name, m_kind));
  847. interpreter.accumulator() = value;
  848. return {};
  849. }
  850. ThrowCompletionOr<void> PutPrivateById::execute_impl(Bytecode::Interpreter& interpreter) const
  851. {
  852. auto& vm = interpreter.vm();
  853. // NOTE: Get the value from the accumulator before side effects have a chance to overwrite it.
  854. auto value = interpreter.accumulator();
  855. auto object = TRY(interpreter.reg(m_base).to_object(vm));
  856. auto name = interpreter.current_executable().get_identifier(m_property);
  857. auto private_reference = make_private_reference(vm, object, name);
  858. TRY(private_reference.put_value(vm, value));
  859. interpreter.accumulator() = value;
  860. return {};
  861. }
  862. ThrowCompletionOr<void> DeleteById::execute_impl(Bytecode::Interpreter& interpreter) const
  863. {
  864. auto& vm = interpreter.vm();
  865. auto base_value = interpreter.accumulator();
  866. auto const& identifier = interpreter.current_executable().get_identifier(m_property);
  867. bool strict = vm.in_strict_mode();
  868. auto reference = Reference { base_value, identifier, {}, strict };
  869. interpreter.accumulator() = Value(TRY(reference.delete_(vm)));
  870. return {};
  871. }
  872. ThrowCompletionOr<void> DeleteByIdWithThis::execute_impl(Bytecode::Interpreter& interpreter) const
  873. {
  874. auto& vm = interpreter.vm();
  875. auto base_value = interpreter.accumulator();
  876. auto const& identifier = interpreter.current_executable().get_identifier(m_property);
  877. bool strict = vm.in_strict_mode();
  878. auto reference = Reference { base_value, identifier, interpreter.reg(m_this_value), strict };
  879. interpreter.accumulator() = Value(TRY(reference.delete_(vm)));
  880. return {};
  881. }
  882. ThrowCompletionOr<void> Jump::execute_impl(Bytecode::Interpreter&) const
  883. {
  884. // Handled in the interpreter loop.
  885. __builtin_unreachable();
  886. }
  887. ThrowCompletionOr<void> ResolveThisBinding::execute_impl(Bytecode::Interpreter& interpreter) const
  888. {
  889. auto& cached_this_value = interpreter.reg(Register::this_value());
  890. if (cached_this_value.is_empty()) {
  891. // OPTIMIZATION: Because the value of 'this' cannot be reassigned during a function execution, it's
  892. // resolved once and then saved for subsequent use.
  893. auto& vm = interpreter.vm();
  894. cached_this_value = TRY(vm.resolve_this_binding());
  895. }
  896. interpreter.accumulator() = cached_this_value;
  897. return {};
  898. }
  899. // https://tc39.es/ecma262/#sec-makesuperpropertyreference
  900. ThrowCompletionOr<void> ResolveSuperBase::execute_impl(Bytecode::Interpreter& interpreter) const
  901. {
  902. auto& vm = interpreter.vm();
  903. // 1. Let env be GetThisEnvironment().
  904. auto& env = verify_cast<FunctionEnvironment>(*get_this_environment(vm));
  905. // 2. Assert: env.HasSuperBinding() is true.
  906. VERIFY(env.has_super_binding());
  907. // 3. Let baseValue be ? env.GetSuperBase().
  908. interpreter.accumulator() = TRY(env.get_super_base());
  909. return {};
  910. }
  911. ThrowCompletionOr<void> GetNewTarget::execute_impl(Bytecode::Interpreter& interpreter) const
  912. {
  913. interpreter.accumulator() = interpreter.vm().get_new_target();
  914. return {};
  915. }
  916. ThrowCompletionOr<void> GetImportMeta::execute_impl(Bytecode::Interpreter& interpreter) const
  917. {
  918. interpreter.accumulator() = interpreter.vm().get_import_meta();
  919. return {};
  920. }
  921. ThrowCompletionOr<void> JumpConditional::execute_impl(Bytecode::Interpreter&) const
  922. {
  923. // Handled in the interpreter loop.
  924. __builtin_unreachable();
  925. }
  926. ThrowCompletionOr<void> JumpNullish::execute_impl(Bytecode::Interpreter&) const
  927. {
  928. // Handled in the interpreter loop.
  929. __builtin_unreachable();
  930. }
  931. ThrowCompletionOr<void> JumpUndefined::execute_impl(Bytecode::Interpreter&) const
  932. {
  933. // Handled in the interpreter loop.
  934. __builtin_unreachable();
  935. }
  936. // 13.3.8.1 https://tc39.es/ecma262/#sec-runtime-semantics-argumentlistevaluation
  937. static MarkedVector<Value> argument_list_evaluation(Bytecode::Interpreter& interpreter)
  938. {
  939. // Note: Any spreading and actual evaluation is handled in preceding opcodes
  940. // Note: The spec uses the concept of a list, while we create a temporary array
  941. // in the preceding opcodes, so we have to convert in a manner that is not
  942. // visible to the user
  943. auto& vm = interpreter.vm();
  944. MarkedVector<Value> argument_values { vm.heap() };
  945. auto arguments = interpreter.accumulator();
  946. auto& argument_array = arguments.as_array();
  947. auto array_length = argument_array.indexed_properties().array_like_size();
  948. argument_values.ensure_capacity(array_length);
  949. for (size_t i = 0; i < array_length; ++i) {
  950. if (auto maybe_value = argument_array.indexed_properties().get(i); maybe_value.has_value())
  951. argument_values.append(maybe_value.release_value().value);
  952. else
  953. argument_values.append(js_undefined());
  954. }
  955. return argument_values;
  956. }
  957. static Completion throw_type_error_for_callee(Bytecode::Interpreter& interpreter, auto& call, StringView callee_type)
  958. {
  959. auto& vm = interpreter.vm();
  960. auto callee = interpreter.reg(call.callee());
  961. if (call.expression_string().has_value())
  962. return vm.throw_completion<TypeError>(ErrorType::IsNotAEvaluatedFrom, callee.to_string_without_side_effects(), callee_type, interpreter.current_executable().get_string(call.expression_string()->value()));
  963. return vm.throw_completion<TypeError>(ErrorType::IsNotA, callee.to_string_without_side_effects(), callee_type);
  964. }
  965. static ThrowCompletionOr<void> throw_if_needed_for_call(Interpreter& interpreter, auto& call, Value callee)
  966. {
  967. if (call.call_type() == CallType::Call && !callee.is_function())
  968. return throw_type_error_for_callee(interpreter, call, "function"sv);
  969. if (call.call_type() == CallType::Construct && !callee.is_constructor())
  970. return throw_type_error_for_callee(interpreter, call, "constructor"sv);
  971. return {};
  972. }
  973. ThrowCompletionOr<void> Call::execute_impl(Bytecode::Interpreter& interpreter) const
  974. {
  975. auto& vm = interpreter.vm();
  976. auto callee = interpreter.reg(m_callee);
  977. TRY(throw_if_needed_for_call(interpreter, *this, callee));
  978. MarkedVector<Value> argument_values(vm.heap());
  979. argument_values.ensure_capacity(m_argument_count);
  980. for (u32 i = 0; i < m_argument_count; ++i) {
  981. argument_values.unchecked_append(interpreter.reg(Register { m_first_argument.index() + i }));
  982. }
  983. interpreter.accumulator() = TRY(perform_call(interpreter, *this, callee, move(argument_values)));
  984. return {};
  985. }
  986. ThrowCompletionOr<void> CallWithArgumentArray::execute_impl(Bytecode::Interpreter& interpreter) const
  987. {
  988. auto callee = interpreter.reg(m_callee);
  989. TRY(throw_if_needed_for_call(interpreter, *this, callee));
  990. auto argument_values = argument_list_evaluation(interpreter);
  991. interpreter.accumulator() = TRY(perform_call(interpreter, *this, callee, move(argument_values)));
  992. return {};
  993. }
  994. // 13.3.7.1 Runtime Semantics: Evaluation, https://tc39.es/ecma262/#sec-super-keyword-runtime-semantics-evaluation
  995. ThrowCompletionOr<void> SuperCallWithArgumentArray::execute_impl(Bytecode::Interpreter& interpreter) const
  996. {
  997. auto& vm = interpreter.vm();
  998. // 1. Let newTarget be GetNewTarget().
  999. auto new_target = vm.get_new_target();
  1000. // 2. Assert: Type(newTarget) is Object.
  1001. VERIFY(new_target.is_object());
  1002. // 3. Let func be GetSuperConstructor().
  1003. auto* func = get_super_constructor(vm);
  1004. // 4. Let argList be ? ArgumentListEvaluation of Arguments.
  1005. MarkedVector<Value> arg_list { vm.heap() };
  1006. if (m_is_synthetic) {
  1007. auto const& value = interpreter.accumulator();
  1008. VERIFY(value.is_object() && is<Array>(value.as_object()));
  1009. auto const& array_value = static_cast<Array const&>(value.as_object());
  1010. auto length = MUST(length_of_array_like(vm, array_value));
  1011. for (size_t i = 0; i < length; ++i)
  1012. arg_list.append(array_value.get_without_side_effects(PropertyKey { i }));
  1013. } else {
  1014. arg_list = argument_list_evaluation(interpreter);
  1015. }
  1016. // 5. If IsConstructor(func) is false, throw a TypeError exception.
  1017. if (!Value(func).is_constructor())
  1018. return vm.throw_completion<TypeError>(ErrorType::NotAConstructor, "Super constructor");
  1019. // 6. Let result be ? Construct(func, argList, newTarget).
  1020. auto result = TRY(construct(vm, static_cast<FunctionObject&>(*func), move(arg_list), &new_target.as_function()));
  1021. // 7. Let thisER be GetThisEnvironment().
  1022. auto& this_environment = verify_cast<FunctionEnvironment>(*get_this_environment(vm));
  1023. // 8. Perform ? thisER.BindThisValue(result).
  1024. TRY(this_environment.bind_this_value(vm, result));
  1025. // 9. Let F be thisER.[[FunctionObject]].
  1026. auto& f = this_environment.function_object();
  1027. // 10. Assert: F is an ECMAScript function object.
  1028. // NOTE: This is implied by the strong C++ type.
  1029. // 11. Perform ? InitializeInstanceElements(result, F).
  1030. TRY(result->initialize_instance_elements(f));
  1031. // 12. Return result.
  1032. interpreter.accumulator() = result;
  1033. return {};
  1034. }
  1035. ThrowCompletionOr<void> NewFunction::execute_impl(Bytecode::Interpreter& interpreter) const
  1036. {
  1037. auto& vm = interpreter.vm();
  1038. if (!m_function_node.has_name()) {
  1039. DeprecatedFlyString name = {};
  1040. if (m_lhs_name.has_value())
  1041. name = interpreter.current_executable().get_identifier(m_lhs_name.value());
  1042. interpreter.accumulator() = m_function_node.instantiate_ordinary_function_expression(vm, name);
  1043. } else {
  1044. interpreter.accumulator() = ECMAScriptFunctionObject::create(interpreter.realm(), m_function_node.name(), m_function_node.source_text(), m_function_node.body(), m_function_node.parameters(), m_function_node.function_length(), m_function_node.local_variables_names(), vm.lexical_environment(), vm.running_execution_context().private_environment, m_function_node.kind(), m_function_node.is_strict_mode(), m_function_node.might_need_arguments_object(), m_function_node.contains_direct_call_to_eval(), m_function_node.is_arrow_function());
  1045. }
  1046. if (m_home_object.has_value()) {
  1047. auto home_object_value = interpreter.reg(m_home_object.value());
  1048. static_cast<ECMAScriptFunctionObject&>(interpreter.accumulator().as_function()).set_home_object(&home_object_value.as_object());
  1049. }
  1050. return {};
  1051. }
  1052. ThrowCompletionOr<void> Return::execute_impl(Bytecode::Interpreter& interpreter) const
  1053. {
  1054. interpreter.do_return(interpreter.accumulator().value_or(js_undefined()));
  1055. return {};
  1056. }
  1057. ThrowCompletionOr<void> Increment::execute_impl(Bytecode::Interpreter& interpreter) const
  1058. {
  1059. auto& vm = interpreter.vm();
  1060. auto old_value = TRY(interpreter.accumulator().to_numeric(vm));
  1061. if (old_value.is_number())
  1062. interpreter.accumulator() = Value(old_value.as_double() + 1);
  1063. else
  1064. interpreter.accumulator() = BigInt::create(vm, old_value.as_bigint().big_integer().plus(Crypto::SignedBigInteger { 1 }));
  1065. return {};
  1066. }
  1067. ThrowCompletionOr<void> Decrement::execute_impl(Bytecode::Interpreter& interpreter) const
  1068. {
  1069. auto& vm = interpreter.vm();
  1070. auto old_value = TRY(interpreter.accumulator().to_numeric(vm));
  1071. if (old_value.is_number())
  1072. interpreter.accumulator() = Value(old_value.as_double() - 1);
  1073. else
  1074. interpreter.accumulator() = BigInt::create(vm, old_value.as_bigint().big_integer().minus(Crypto::SignedBigInteger { 1 }));
  1075. return {};
  1076. }
  1077. ThrowCompletionOr<void> Throw::execute_impl(Bytecode::Interpreter& interpreter) const
  1078. {
  1079. return throw_completion(interpreter.accumulator());
  1080. }
  1081. ThrowCompletionOr<void> ThrowIfNotObject::execute_impl(Bytecode::Interpreter& interpreter) const
  1082. {
  1083. auto& vm = interpreter.vm();
  1084. if (!interpreter.accumulator().is_object())
  1085. return vm.throw_completion<TypeError>(ErrorType::NotAnObject, interpreter.accumulator().to_string_without_side_effects());
  1086. return {};
  1087. }
  1088. ThrowCompletionOr<void> ThrowIfNullish::execute_impl(Bytecode::Interpreter& interpreter) const
  1089. {
  1090. auto& vm = interpreter.vm();
  1091. auto value = interpreter.accumulator();
  1092. if (value.is_nullish())
  1093. return vm.throw_completion<TypeError>(ErrorType::NotObjectCoercible, value.to_string_without_side_effects());
  1094. return {};
  1095. }
  1096. ThrowCompletionOr<void> EnterUnwindContext::execute_impl(Bytecode::Interpreter&) const
  1097. {
  1098. // Handled in the interpreter loop.
  1099. __builtin_unreachable();
  1100. }
  1101. ThrowCompletionOr<void> ScheduleJump::execute_impl(Bytecode::Interpreter&) const
  1102. {
  1103. // Handled in the interpreter loop.
  1104. __builtin_unreachable();
  1105. }
  1106. ThrowCompletionOr<void> LeaveLexicalEnvironment::execute_impl(Bytecode::Interpreter& interpreter) const
  1107. {
  1108. interpreter.vm().running_execution_context().lexical_environment = interpreter.saved_lexical_environment_stack().take_last();
  1109. return {};
  1110. }
  1111. ThrowCompletionOr<void> LeaveUnwindContext::execute_impl(Bytecode::Interpreter& interpreter) const
  1112. {
  1113. interpreter.leave_unwind_context();
  1114. return {};
  1115. }
  1116. ThrowCompletionOr<void> ContinuePendingUnwind::execute_impl(Bytecode::Interpreter&) const
  1117. {
  1118. // Handled in the interpreter loop.
  1119. __builtin_unreachable();
  1120. }
  1121. ThrowCompletionOr<void> PushDeclarativeEnvironment::execute_impl(Bytecode::Interpreter& interpreter) const
  1122. {
  1123. auto environment = interpreter.vm().heap().allocate_without_realm<DeclarativeEnvironment>(interpreter.vm().lexical_environment());
  1124. interpreter.vm().running_execution_context().lexical_environment = environment;
  1125. interpreter.vm().running_execution_context().variable_environment = environment;
  1126. return {};
  1127. }
  1128. ThrowCompletionOr<void> Yield::execute_impl(Bytecode::Interpreter& interpreter) const
  1129. {
  1130. auto yielded_value = interpreter.accumulator().value_or(js_undefined());
  1131. auto object = Object::create(interpreter.realm(), nullptr);
  1132. object->define_direct_property("result", yielded_value, JS::default_attributes);
  1133. if (m_continuation_label.has_value())
  1134. // FIXME: If we get a pointer, which is not accurately representable as a double
  1135. // will cause this to explode
  1136. object->define_direct_property("continuation", Value(static_cast<double>(reinterpret_cast<u64>(&m_continuation_label->block()))), JS::default_attributes);
  1137. else
  1138. object->define_direct_property("continuation", Value(0), JS::default_attributes);
  1139. object->define_direct_property("isAwait", Value(false), JS::default_attributes);
  1140. interpreter.do_return(object);
  1141. return {};
  1142. }
  1143. ThrowCompletionOr<void> Await::execute_impl(Bytecode::Interpreter& interpreter) const
  1144. {
  1145. auto yielded_value = interpreter.accumulator().value_or(js_undefined());
  1146. auto object = Object::create(interpreter.realm(), nullptr);
  1147. object->define_direct_property("result", yielded_value, JS::default_attributes);
  1148. // FIXME: If we get a pointer, which is not accurately representable as a double
  1149. // will cause this to explode
  1150. object->define_direct_property("continuation", Value(static_cast<double>(reinterpret_cast<u64>(&m_continuation_label.block()))), JS::default_attributes);
  1151. object->define_direct_property("isAwait", Value(true), JS::default_attributes);
  1152. interpreter.do_return(object);
  1153. return {};
  1154. }
  1155. ThrowCompletionOr<void> GetByValue::execute_impl(Bytecode::Interpreter& interpreter) const
  1156. {
  1157. interpreter.accumulator() = TRY(get_by_value(interpreter, interpreter.reg(m_base), interpreter.accumulator()));
  1158. return {};
  1159. }
  1160. ThrowCompletionOr<void> GetByValueWithThis::execute_impl(Bytecode::Interpreter& interpreter) const
  1161. {
  1162. auto& vm = interpreter.vm();
  1163. // NOTE: Get the property key from the accumulator before side effects have a chance to overwrite it.
  1164. auto property_key_value = interpreter.accumulator();
  1165. auto object = TRY(interpreter.reg(m_base).to_object(vm));
  1166. auto property_key = TRY(property_key_value.to_property_key(vm));
  1167. interpreter.accumulator() = TRY(object->internal_get(property_key, interpreter.reg(m_this_value)));
  1168. return {};
  1169. }
  1170. ThrowCompletionOr<void> PutByValue::execute_impl(Bytecode::Interpreter& interpreter) const
  1171. {
  1172. auto& vm = interpreter.vm();
  1173. // NOTE: Get the value from the accumulator before side effects have a chance to overwrite it.
  1174. auto value = interpreter.accumulator();
  1175. auto base = interpreter.reg(m_base);
  1176. auto property_key_value = interpreter.reg(m_property);
  1177. // OPTIMIZATION: Fast path for simple Int32 indexes in array-like objects.
  1178. if (base.is_object() && property_key_value.is_int32() && property_key_value.as_i32() >= 0) {
  1179. auto& object = base.as_object();
  1180. auto* storage = object.indexed_properties().storage();
  1181. auto index = static_cast<u32>(property_key_value.as_i32());
  1182. if (storage
  1183. && storage->is_simple_storage()
  1184. && !object.may_interfere_with_indexed_property_access()
  1185. && storage->has_index(index)) {
  1186. auto existing_value = storage->get(index)->value;
  1187. if (!existing_value.is_accessor()) {
  1188. storage->put(index, value);
  1189. interpreter.accumulator() = value;
  1190. return {};
  1191. }
  1192. }
  1193. }
  1194. auto property_key = m_kind != PropertyKind::Spread ? TRY(property_key_value.to_property_key(vm)) : PropertyKey {};
  1195. TRY(put_by_property_key(vm, base, base, value, property_key, m_kind));
  1196. interpreter.accumulator() = value;
  1197. return {};
  1198. }
  1199. ThrowCompletionOr<void> PutByValueWithThis::execute_impl(Bytecode::Interpreter& interpreter) const
  1200. {
  1201. auto& vm = interpreter.vm();
  1202. // NOTE: Get the value from the accumulator before side effects have a chance to overwrite it.
  1203. auto value = interpreter.accumulator();
  1204. auto base = interpreter.reg(m_base);
  1205. auto property_key = m_kind != PropertyKind::Spread ? TRY(interpreter.reg(m_property).to_property_key(vm)) : PropertyKey {};
  1206. TRY(put_by_property_key(vm, base, interpreter.reg(m_this_value), value, property_key, m_kind));
  1207. interpreter.accumulator() = value;
  1208. return {};
  1209. }
  1210. ThrowCompletionOr<void> DeleteByValue::execute_impl(Bytecode::Interpreter& interpreter) const
  1211. {
  1212. auto& vm = interpreter.vm();
  1213. // NOTE: Get the property key from the accumulator before side effects have a chance to overwrite it.
  1214. auto property_key_value = interpreter.accumulator();
  1215. auto base_value = interpreter.reg(m_base);
  1216. auto property_key = TRY(property_key_value.to_property_key(vm));
  1217. bool strict = vm.in_strict_mode();
  1218. auto reference = Reference { base_value, property_key, {}, strict };
  1219. interpreter.accumulator() = Value(TRY(reference.delete_(vm)));
  1220. return {};
  1221. }
  1222. ThrowCompletionOr<void> DeleteByValueWithThis::execute_impl(Bytecode::Interpreter& interpreter) const
  1223. {
  1224. auto& vm = interpreter.vm();
  1225. // NOTE: Get the property key from the accumulator before side effects have a chance to overwrite it.
  1226. auto property_key_value = interpreter.accumulator();
  1227. auto base_value = interpreter.reg(m_base);
  1228. auto property_key = TRY(property_key_value.to_property_key(vm));
  1229. bool strict = vm.in_strict_mode();
  1230. auto reference = Reference { base_value, property_key, interpreter.reg(m_this_value), strict };
  1231. interpreter.accumulator() = Value(TRY(reference.delete_(vm)));
  1232. return {};
  1233. }
  1234. ThrowCompletionOr<void> GetIterator::execute_impl(Bytecode::Interpreter& interpreter) const
  1235. {
  1236. auto& vm = interpreter.vm();
  1237. auto iterator = TRY(get_iterator(vm, interpreter.accumulator(), m_hint));
  1238. interpreter.accumulator() = iterator_to_object(vm, iterator);
  1239. return {};
  1240. }
  1241. ThrowCompletionOr<void> GetMethod::execute_impl(Bytecode::Interpreter& interpreter) const
  1242. {
  1243. auto& vm = interpreter.vm();
  1244. auto identifier = interpreter.current_executable().get_identifier(m_property);
  1245. auto method = TRY(interpreter.accumulator().get_method(vm, identifier));
  1246. interpreter.accumulator() = method ?: js_undefined();
  1247. return {};
  1248. }
  1249. // 14.7.5.9 EnumerateObjectProperties ( O ), https://tc39.es/ecma262/#sec-enumerate-object-properties
  1250. ThrowCompletionOr<void> GetObjectPropertyIterator::execute_impl(Bytecode::Interpreter& interpreter) const
  1251. {
  1252. // While the spec does provide an algorithm, it allows us to implement it ourselves so long as we meet the following invariants:
  1253. // 1- Returned property keys do not include keys that are Symbols
  1254. // 2- Properties of the target object may be deleted during enumeration. A property that is deleted before it is processed by the iterator's next method is ignored
  1255. // 3- If new properties are added to the target object during enumeration, the newly added properties are not guaranteed to be processed in the active enumeration
  1256. // 4- A property name will be returned by the iterator's next method at most once in any enumeration.
  1257. // 5- Enumerating the properties of the target object includes enumerating properties of its prototype, and the prototype of the prototype, and so on, recursively;
  1258. // but a property of a prototype is not processed if it has the same name as a property that has already been processed by the iterator's next method.
  1259. // 6- The values of [[Enumerable]] attributes are not considered when determining if a property of a prototype object has already been processed.
  1260. // 7- The enumerable property names of prototype objects must be obtained by invoking EnumerateObjectProperties passing the prototype object as the argument.
  1261. // 8- EnumerateObjectProperties must obtain the own property keys of the target object by calling its [[OwnPropertyKeys]] internal method.
  1262. // 9- Property attributes of the target object must be obtained by calling its [[GetOwnProperty]] internal method
  1263. // Invariant 3 effectively allows the implementation to ignore newly added keys, and we do so (similar to other implementations).
  1264. auto& vm = interpreter.vm();
  1265. auto object = TRY(interpreter.accumulator().to_object(vm));
  1266. // Note: While the spec doesn't explicitly require these to be ordered, it says that the values should be retrieved via OwnPropertyKeys,
  1267. // so we just keep the order consistent anyway.
  1268. OrderedHashTable<PropertyKey> properties;
  1269. OrderedHashTable<PropertyKey> non_enumerable_properties;
  1270. HashTable<NonnullGCPtr<Object>> seen_objects;
  1271. // Collect all keys immediately (invariant no. 5)
  1272. for (auto object_to_check = GCPtr { object.ptr() }; object_to_check && !seen_objects.contains(*object_to_check); object_to_check = TRY(object_to_check->internal_get_prototype_of())) {
  1273. seen_objects.set(*object_to_check);
  1274. for (auto& key : TRY(object_to_check->internal_own_property_keys())) {
  1275. if (key.is_symbol())
  1276. continue;
  1277. auto property_key = TRY(PropertyKey::from_value(vm, key));
  1278. // If there is a non-enumerable property higher up the prototype chain with the same key,
  1279. // we mustn't include this property even if it's enumerable (invariant no. 5 and 6)
  1280. if (non_enumerable_properties.contains(property_key))
  1281. continue;
  1282. if (properties.contains(property_key))
  1283. continue;
  1284. auto descriptor = TRY(object_to_check->internal_get_own_property(property_key));
  1285. if (!*descriptor->enumerable)
  1286. non_enumerable_properties.set(move(property_key));
  1287. else
  1288. properties.set(move(property_key));
  1289. }
  1290. }
  1291. IteratorRecord iterator {
  1292. .iterator = object,
  1293. .next_method = NativeFunction::create(
  1294. interpreter.realm(),
  1295. [items = move(properties)](VM& vm) mutable -> ThrowCompletionOr<Value> {
  1296. auto& realm = *vm.current_realm();
  1297. auto iterated_object_value = vm.this_value();
  1298. if (!iterated_object_value.is_object())
  1299. return vm.throw_completion<InternalError>("Invalid state for GetObjectPropertyIterator.next"sv);
  1300. auto& iterated_object = iterated_object_value.as_object();
  1301. auto result_object = Object::create(realm, nullptr);
  1302. while (true) {
  1303. if (items.is_empty()) {
  1304. result_object->define_direct_property(vm.names.done, JS::Value(true), default_attributes);
  1305. return result_object;
  1306. }
  1307. auto key = items.take_first();
  1308. // If the property is deleted, don't include it (invariant no. 2)
  1309. if (!TRY(iterated_object.has_property(key)))
  1310. continue;
  1311. result_object->define_direct_property(vm.names.done, JS::Value(false), default_attributes);
  1312. if (key.is_number())
  1313. result_object->define_direct_property(vm.names.value, PrimitiveString::create(vm, TRY_OR_THROW_OOM(vm, String::number(key.as_number()))), default_attributes);
  1314. else if (key.is_string())
  1315. result_object->define_direct_property(vm.names.value, PrimitiveString::create(vm, key.as_string()), default_attributes);
  1316. else
  1317. VERIFY_NOT_REACHED(); // We should not have non-string/number keys.
  1318. return result_object;
  1319. }
  1320. },
  1321. 1,
  1322. vm.names.next),
  1323. .done = false,
  1324. };
  1325. interpreter.accumulator() = iterator_to_object(vm, move(iterator));
  1326. return {};
  1327. }
  1328. ThrowCompletionOr<void> IteratorClose::execute_impl(Bytecode::Interpreter& interpreter) const
  1329. {
  1330. auto& vm = interpreter.vm();
  1331. auto iterator_object = TRY(interpreter.accumulator().to_object(vm));
  1332. auto iterator = object_to_iterator(vm, iterator_object);
  1333. // FIXME: Return the value of the resulting completion. (Note that m_completion_value can be empty!)
  1334. TRY(iterator_close(vm, iterator, Completion { m_completion_type, m_completion_value, {} }));
  1335. return {};
  1336. }
  1337. ThrowCompletionOr<void> AsyncIteratorClose::execute_impl(Bytecode::Interpreter& interpreter) const
  1338. {
  1339. auto& vm = interpreter.vm();
  1340. auto iterator_object = TRY(interpreter.accumulator().to_object(vm));
  1341. auto iterator = object_to_iterator(vm, iterator_object);
  1342. // FIXME: Return the value of the resulting completion. (Note that m_completion_value can be empty!)
  1343. TRY(async_iterator_close(vm, iterator, Completion { m_completion_type, m_completion_value, {} }));
  1344. return {};
  1345. }
  1346. ThrowCompletionOr<void> IteratorNext::execute_impl(Bytecode::Interpreter& interpreter) const
  1347. {
  1348. auto& vm = interpreter.vm();
  1349. auto iterator_object = TRY(interpreter.accumulator().to_object(vm));
  1350. auto iterator = object_to_iterator(vm, iterator_object);
  1351. interpreter.accumulator() = TRY(iterator_next(vm, iterator));
  1352. return {};
  1353. }
  1354. ThrowCompletionOr<void> IteratorResultDone::execute_impl(Bytecode::Interpreter& interpreter) const
  1355. {
  1356. auto& vm = interpreter.vm();
  1357. auto iterator_result = TRY(interpreter.accumulator().to_object(vm));
  1358. auto complete = TRY(iterator_complete(vm, iterator_result));
  1359. interpreter.accumulator() = Value(complete);
  1360. return {};
  1361. }
  1362. ThrowCompletionOr<void> IteratorResultValue::execute_impl(Bytecode::Interpreter& interpreter) const
  1363. {
  1364. auto& vm = interpreter.vm();
  1365. auto iterator_result = TRY(interpreter.accumulator().to_object(vm));
  1366. interpreter.accumulator() = TRY(iterator_value(vm, iterator_result));
  1367. return {};
  1368. }
  1369. ThrowCompletionOr<void> NewClass::execute_impl(Bytecode::Interpreter& interpreter) const
  1370. {
  1371. auto& vm = interpreter.vm();
  1372. auto name = m_class_expression.name();
  1373. auto super_class = interpreter.accumulator();
  1374. // NOTE: NewClass expects classEnv to be active lexical environment
  1375. auto class_environment = vm.lexical_environment();
  1376. vm.running_execution_context().lexical_environment = interpreter.saved_lexical_environment_stack().take_last();
  1377. DeprecatedFlyString binding_name;
  1378. DeprecatedFlyString class_name;
  1379. if (!m_class_expression.has_name() && m_lhs_name.has_value()) {
  1380. class_name = interpreter.current_executable().get_identifier(m_lhs_name.value());
  1381. } else {
  1382. binding_name = name;
  1383. class_name = name.is_null() ? ""sv : name;
  1384. }
  1385. interpreter.accumulator() = TRY(m_class_expression.create_class_constructor(vm, class_environment, vm.lexical_environment(), super_class, binding_name, class_name));
  1386. return {};
  1387. }
  1388. // 13.5.3.1 Runtime Semantics: Evaluation, https://tc39.es/ecma262/#sec-typeof-operator-runtime-semantics-evaluation
  1389. ThrowCompletionOr<void> TypeofVariable::execute_impl(Bytecode::Interpreter& interpreter) const
  1390. {
  1391. auto& vm = interpreter.vm();
  1392. // 1. Let val be the result of evaluating UnaryExpression.
  1393. auto const& string = interpreter.current_executable().get_identifier(m_identifier);
  1394. auto reference = TRY(vm.resolve_binding(string));
  1395. // 2. If val is a Reference Record, then
  1396. // a. If IsUnresolvableReference(val) is true, return "undefined".
  1397. if (reference.is_unresolvable()) {
  1398. interpreter.accumulator() = PrimitiveString::create(vm, "undefined"_string);
  1399. return {};
  1400. }
  1401. // 3. Set val to ? GetValue(val).
  1402. auto value = TRY(reference.get_value(vm));
  1403. // 4. NOTE: This step is replaced in section B.3.6.3.
  1404. // 5. Return a String according to Table 41.
  1405. interpreter.accumulator() = PrimitiveString::create(vm, value.typeof());
  1406. return {};
  1407. }
  1408. ThrowCompletionOr<void> TypeofLocal::execute_impl(Bytecode::Interpreter& interpreter) const
  1409. {
  1410. auto& vm = interpreter.vm();
  1411. auto const& value = vm.running_execution_context().local_variables[m_index];
  1412. interpreter.accumulator() = PrimitiveString::create(vm, value.typeof());
  1413. return {};
  1414. }
  1415. ThrowCompletionOr<void> ToNumeric::execute_impl(Bytecode::Interpreter& interpreter) const
  1416. {
  1417. interpreter.accumulator() = TRY(interpreter.accumulator().to_numeric(interpreter.vm()));
  1418. return {};
  1419. }
  1420. ThrowCompletionOr<void> BlockDeclarationInstantiation::execute_impl(Bytecode::Interpreter& interpreter) const
  1421. {
  1422. auto& vm = interpreter.vm();
  1423. auto old_environment = vm.running_execution_context().lexical_environment;
  1424. interpreter.saved_lexical_environment_stack().append(old_environment);
  1425. vm.running_execution_context().lexical_environment = new_declarative_environment(*old_environment);
  1426. m_scope_node.block_declaration_instantiation(vm, vm.running_execution_context().lexical_environment);
  1427. return {};
  1428. }
  1429. DeprecatedString Load::to_deprecated_string_impl(Bytecode::Executable const&) const
  1430. {
  1431. return DeprecatedString::formatted("Load {}", m_src);
  1432. }
  1433. DeprecatedString LoadImmediate::to_deprecated_string_impl(Bytecode::Executable const&) const
  1434. {
  1435. return DeprecatedString::formatted("LoadImmediate {}", m_value);
  1436. }
  1437. DeprecatedString Store::to_deprecated_string_impl(Bytecode::Executable const&) const
  1438. {
  1439. return DeprecatedString::formatted("Store {}", m_dst);
  1440. }
  1441. DeprecatedString NewBigInt::to_deprecated_string_impl(Bytecode::Executable const&) const
  1442. {
  1443. return DeprecatedString::formatted("NewBigInt \"{}\"", m_bigint.to_base_deprecated(10));
  1444. }
  1445. DeprecatedString NewArray::to_deprecated_string_impl(Bytecode::Executable const&) const
  1446. {
  1447. StringBuilder builder;
  1448. builder.append("NewArray"sv);
  1449. if (m_element_count != 0) {
  1450. builder.appendff(" [{}-{}]", m_elements[0], m_elements[1]);
  1451. }
  1452. return builder.to_deprecated_string();
  1453. }
  1454. DeprecatedString Append::to_deprecated_string_impl(Bytecode::Executable const&) const
  1455. {
  1456. if (m_is_spread)
  1457. return DeprecatedString::formatted("Append lhs: **{}", m_lhs);
  1458. return DeprecatedString::formatted("Append lhs: {}", m_lhs);
  1459. }
  1460. DeprecatedString IteratorToArray::to_deprecated_string_impl(Bytecode::Executable const&) const
  1461. {
  1462. return "IteratorToArray";
  1463. }
  1464. DeprecatedString NewString::to_deprecated_string_impl(Bytecode::Executable const& executable) const
  1465. {
  1466. return DeprecatedString::formatted("NewString {} (\"{}\")", m_string, executable.string_table->get(m_string));
  1467. }
  1468. DeprecatedString NewObject::to_deprecated_string_impl(Bytecode::Executable const&) const
  1469. {
  1470. return "NewObject";
  1471. }
  1472. DeprecatedString NewRegExp::to_deprecated_string_impl(Bytecode::Executable const& executable) const
  1473. {
  1474. return DeprecatedString::formatted("NewRegExp source:{} (\"{}\") flags:{} (\"{}\")", m_source_index, executable.get_string(m_source_index), m_flags_index, executable.get_string(m_flags_index));
  1475. }
  1476. DeprecatedString CopyObjectExcludingProperties::to_deprecated_string_impl(Bytecode::Executable const&) const
  1477. {
  1478. StringBuilder builder;
  1479. builder.appendff("CopyObjectExcludingProperties from:{}", m_from_object);
  1480. if (m_excluded_names_count != 0) {
  1481. builder.append(" excluding:["sv);
  1482. builder.join(", "sv, ReadonlySpan<Register>(m_excluded_names, m_excluded_names_count));
  1483. builder.append(']');
  1484. }
  1485. return builder.to_deprecated_string();
  1486. }
  1487. DeprecatedString ConcatString::to_deprecated_string_impl(Bytecode::Executable const&) const
  1488. {
  1489. return DeprecatedString::formatted("ConcatString {}", m_lhs);
  1490. }
  1491. DeprecatedString GetCalleeAndThisFromEnvironment::to_deprecated_string_impl(Bytecode::Executable const& executable) const
  1492. {
  1493. return DeprecatedString::formatted("GetCalleeAndThisFromEnvironment {} -> callee: {}, this:{} ", executable.identifier_table->get(m_identifier), m_callee_reg, m_this_reg);
  1494. }
  1495. DeprecatedString GetVariable::to_deprecated_string_impl(Bytecode::Executable const& executable) const
  1496. {
  1497. return DeprecatedString::formatted("GetVariable {} ({})", m_identifier, executable.identifier_table->get(m_identifier));
  1498. }
  1499. DeprecatedString GetGlobal::to_deprecated_string_impl(Bytecode::Executable const& executable) const
  1500. {
  1501. return DeprecatedString::formatted("GetGlobal {} ({})", m_identifier, executable.identifier_table->get(m_identifier));
  1502. }
  1503. DeprecatedString GetLocal::to_deprecated_string_impl(Bytecode::Executable const&) const
  1504. {
  1505. return DeprecatedString::formatted("GetLocal {}", m_index);
  1506. }
  1507. DeprecatedString DeleteVariable::to_deprecated_string_impl(Bytecode::Executable const& executable) const
  1508. {
  1509. return DeprecatedString::formatted("DeleteVariable {} ({})", m_identifier, executable.identifier_table->get(m_identifier));
  1510. }
  1511. DeprecatedString CreateLexicalEnvironment::to_deprecated_string_impl(Bytecode::Executable const&) const
  1512. {
  1513. return "CreateLexicalEnvironment"sv;
  1514. }
  1515. DeprecatedString CreateVariable::to_deprecated_string_impl(Bytecode::Executable const& executable) const
  1516. {
  1517. auto mode_string = m_mode == EnvironmentMode::Lexical ? "Lexical" : "Variable";
  1518. return DeprecatedString::formatted("CreateVariable env:{} immutable:{} global:{} {} ({})", mode_string, m_is_immutable, m_is_global, m_identifier, executable.identifier_table->get(m_identifier));
  1519. }
  1520. DeprecatedString EnterObjectEnvironment::to_deprecated_string_impl(Executable const&) const
  1521. {
  1522. return DeprecatedString::formatted("EnterObjectEnvironment");
  1523. }
  1524. DeprecatedString SetVariable::to_deprecated_string_impl(Bytecode::Executable const& executable) const
  1525. {
  1526. auto initialization_mode_name = m_initialization_mode == InitializationMode::Initialize ? "Initialize" : "Set";
  1527. auto mode_string = m_mode == EnvironmentMode::Lexical ? "Lexical" : "Variable";
  1528. return DeprecatedString::formatted("SetVariable env:{} init:{} {} ({})", mode_string, initialization_mode_name, m_identifier, executable.identifier_table->get(m_identifier));
  1529. }
  1530. DeprecatedString SetLocal::to_deprecated_string_impl(Bytecode::Executable const&) const
  1531. {
  1532. return DeprecatedString::formatted("SetLocal {}", m_index);
  1533. }
  1534. static StringView property_kind_to_string(PropertyKind kind)
  1535. {
  1536. switch (kind) {
  1537. case PropertyKind::Getter:
  1538. return "getter"sv;
  1539. case PropertyKind::Setter:
  1540. return "setter"sv;
  1541. case PropertyKind::KeyValue:
  1542. return "key-value"sv;
  1543. case PropertyKind::DirectKeyValue:
  1544. return "direct-key-value"sv;
  1545. case PropertyKind::Spread:
  1546. return "spread"sv;
  1547. case PropertyKind::ProtoSetter:
  1548. return "proto-setter"sv;
  1549. }
  1550. VERIFY_NOT_REACHED();
  1551. }
  1552. DeprecatedString PutById::to_deprecated_string_impl(Bytecode::Executable const& executable) const
  1553. {
  1554. auto kind = property_kind_to_string(m_kind);
  1555. return DeprecatedString::formatted("PutById kind:{} base:{}, property:{} ({})", kind, m_base, m_property, executable.identifier_table->get(m_property));
  1556. }
  1557. DeprecatedString PutByIdWithThis::to_deprecated_string_impl(Bytecode::Executable const& executable) const
  1558. {
  1559. auto kind = property_kind_to_string(m_kind);
  1560. return DeprecatedString::formatted("PutByIdWithThis kind:{} base:{}, property:{} ({}) this_value:{}", kind, m_base, m_property, executable.identifier_table->get(m_property), m_this_value);
  1561. }
  1562. DeprecatedString PutPrivateById::to_deprecated_string_impl(Bytecode::Executable const& executable) const
  1563. {
  1564. auto kind = property_kind_to_string(m_kind);
  1565. return DeprecatedString::formatted("PutPrivateById kind:{} base:{}, property:{} ({})", kind, m_base, m_property, executable.identifier_table->get(m_property));
  1566. }
  1567. DeprecatedString GetById::to_deprecated_string_impl(Bytecode::Executable const& executable) const
  1568. {
  1569. return DeprecatedString::formatted("GetById {} ({})", m_property, executable.identifier_table->get(m_property));
  1570. }
  1571. DeprecatedString GetByIdWithThis::to_deprecated_string_impl(Bytecode::Executable const& executable) const
  1572. {
  1573. return DeprecatedString::formatted("GetByIdWithThis {} ({}) this_value:{}", m_property, executable.identifier_table->get(m_property), m_this_value);
  1574. }
  1575. DeprecatedString GetPrivateById::to_deprecated_string_impl(Bytecode::Executable const& executable) const
  1576. {
  1577. return DeprecatedString::formatted("GetPrivateById {} ({})", m_property, executable.identifier_table->get(m_property));
  1578. }
  1579. DeprecatedString HasPrivateId::to_deprecated_string_impl(Bytecode::Executable const& executable) const
  1580. {
  1581. return DeprecatedString::formatted("HasPrivateId {} ({})", m_property, executable.identifier_table->get(m_property));
  1582. }
  1583. DeprecatedString DeleteById::to_deprecated_string_impl(Bytecode::Executable const& executable) const
  1584. {
  1585. return DeprecatedString::formatted("DeleteById {} ({})", m_property, executable.identifier_table->get(m_property));
  1586. }
  1587. DeprecatedString DeleteByIdWithThis::to_deprecated_string_impl(Bytecode::Executable const& executable) const
  1588. {
  1589. return DeprecatedString::formatted("DeleteByIdWithThis {} ({}) this_value:{}", m_property, executable.identifier_table->get(m_property), m_this_value);
  1590. }
  1591. DeprecatedString Jump::to_deprecated_string_impl(Bytecode::Executable const&) const
  1592. {
  1593. if (m_true_target.has_value())
  1594. return DeprecatedString::formatted("Jump {}", *m_true_target);
  1595. return DeprecatedString::formatted("Jump <empty>");
  1596. }
  1597. DeprecatedString JumpConditional::to_deprecated_string_impl(Bytecode::Executable const&) const
  1598. {
  1599. auto true_string = m_true_target.has_value() ? DeprecatedString::formatted("{}", *m_true_target) : "<empty>";
  1600. auto false_string = m_false_target.has_value() ? DeprecatedString::formatted("{}", *m_false_target) : "<empty>";
  1601. return DeprecatedString::formatted("JumpConditional true:{} false:{}", true_string, false_string);
  1602. }
  1603. DeprecatedString JumpNullish::to_deprecated_string_impl(Bytecode::Executable const&) const
  1604. {
  1605. auto true_string = m_true_target.has_value() ? DeprecatedString::formatted("{}", *m_true_target) : "<empty>";
  1606. auto false_string = m_false_target.has_value() ? DeprecatedString::formatted("{}", *m_false_target) : "<empty>";
  1607. return DeprecatedString::formatted("JumpNullish null:{} nonnull:{}", true_string, false_string);
  1608. }
  1609. DeprecatedString JumpUndefined::to_deprecated_string_impl(Bytecode::Executable const&) const
  1610. {
  1611. auto true_string = m_true_target.has_value() ? DeprecatedString::formatted("{}", *m_true_target) : "<empty>";
  1612. auto false_string = m_false_target.has_value() ? DeprecatedString::formatted("{}", *m_false_target) : "<empty>";
  1613. return DeprecatedString::formatted("JumpUndefined undefined:{} not undefined:{}", true_string, false_string);
  1614. }
  1615. static StringView call_type_to_string(CallType type)
  1616. {
  1617. switch (type) {
  1618. case CallType::Call:
  1619. return ""sv;
  1620. case CallType::Construct:
  1621. return " (Construct)"sv;
  1622. case CallType::DirectEval:
  1623. return " (DirectEval)"sv;
  1624. }
  1625. VERIFY_NOT_REACHED();
  1626. }
  1627. DeprecatedString Call::to_deprecated_string_impl(Bytecode::Executable const& executable) const
  1628. {
  1629. auto type = call_type_to_string(m_type);
  1630. if (m_expression_string.has_value())
  1631. return DeprecatedString::formatted("Call{} callee:{}, this:{}, first_arg:{} ({})", type, m_callee, m_this_value, m_first_argument, executable.get_string(m_expression_string.value()));
  1632. return DeprecatedString::formatted("Call{} callee:{}, this:{}, first_arg:{}", type, m_callee, m_first_argument, m_this_value);
  1633. }
  1634. DeprecatedString CallWithArgumentArray::to_deprecated_string_impl(Bytecode::Executable const& executable) const
  1635. {
  1636. auto type = call_type_to_string(m_type);
  1637. if (m_expression_string.has_value())
  1638. return DeprecatedString::formatted("CallWithArgumentArray{} callee:{}, this:{}, arguments:[...acc] ({})", type, m_callee, m_this_value, executable.get_string(m_expression_string.value()));
  1639. return DeprecatedString::formatted("CallWithArgumentArray{} callee:{}, this:{}, arguments:[...acc]", type, m_callee, m_this_value);
  1640. }
  1641. DeprecatedString SuperCallWithArgumentArray::to_deprecated_string_impl(Bytecode::Executable const&) const
  1642. {
  1643. return "SuperCallWithArgumentArray arguments:[...acc]"sv;
  1644. }
  1645. DeprecatedString NewFunction::to_deprecated_string_impl(Bytecode::Executable const&) const
  1646. {
  1647. StringBuilder builder;
  1648. builder.append("NewFunction"sv);
  1649. if (m_function_node.has_name())
  1650. builder.appendff(" name:{}"sv, m_function_node.name());
  1651. if (m_lhs_name.has_value())
  1652. builder.appendff(" lhs_name:{}"sv, m_lhs_name.value());
  1653. if (m_home_object.has_value())
  1654. builder.appendff(" home_object:{}"sv, m_home_object.value());
  1655. return builder.to_deprecated_string();
  1656. }
  1657. DeprecatedString NewClass::to_deprecated_string_impl(Bytecode::Executable const&) const
  1658. {
  1659. StringBuilder builder;
  1660. auto name = m_class_expression.name();
  1661. builder.appendff("NewClass '{}'"sv, name.is_null() ? ""sv : name);
  1662. if (m_lhs_name.has_value())
  1663. builder.appendff(" lhs_name:{}"sv, m_lhs_name.value());
  1664. return builder.to_deprecated_string();
  1665. }
  1666. DeprecatedString Return::to_deprecated_string_impl(Bytecode::Executable const&) const
  1667. {
  1668. return "Return";
  1669. }
  1670. DeprecatedString Increment::to_deprecated_string_impl(Bytecode::Executable const&) const
  1671. {
  1672. return "Increment";
  1673. }
  1674. DeprecatedString Decrement::to_deprecated_string_impl(Bytecode::Executable const&) const
  1675. {
  1676. return "Decrement";
  1677. }
  1678. DeprecatedString Throw::to_deprecated_string_impl(Bytecode::Executable const&) const
  1679. {
  1680. return "Throw";
  1681. }
  1682. DeprecatedString ThrowIfNotObject::to_deprecated_string_impl(Bytecode::Executable const&) const
  1683. {
  1684. return "ThrowIfNotObject";
  1685. }
  1686. DeprecatedString ThrowIfNullish::to_deprecated_string_impl(Bytecode::Executable const&) const
  1687. {
  1688. return "ThrowIfNullish";
  1689. }
  1690. DeprecatedString EnterUnwindContext::to_deprecated_string_impl(Bytecode::Executable const&) const
  1691. {
  1692. auto handler_string = m_handler_target.has_value() ? DeprecatedString::formatted("{}", *m_handler_target) : "<empty>";
  1693. auto finalizer_string = m_finalizer_target.has_value() ? DeprecatedString::formatted("{}", *m_finalizer_target) : "<empty>";
  1694. return DeprecatedString::formatted("EnterUnwindContext handler:{} finalizer:{} entry:{}", handler_string, finalizer_string, m_entry_point);
  1695. }
  1696. DeprecatedString ScheduleJump::to_deprecated_string_impl(Bytecode::Executable const&) const
  1697. {
  1698. return DeprecatedString::formatted("ScheduleJump {}", m_target);
  1699. }
  1700. DeprecatedString LeaveLexicalEnvironment::to_deprecated_string_impl(Bytecode::Executable const&) const
  1701. {
  1702. return "LeaveLexicalEnvironment"sv;
  1703. }
  1704. DeprecatedString LeaveUnwindContext::to_deprecated_string_impl(Bytecode::Executable const&) const
  1705. {
  1706. return "LeaveUnwindContext";
  1707. }
  1708. DeprecatedString ContinuePendingUnwind::to_deprecated_string_impl(Bytecode::Executable const&) const
  1709. {
  1710. return DeprecatedString::formatted("ContinuePendingUnwind resume:{}", m_resume_target);
  1711. }
  1712. DeprecatedString PushDeclarativeEnvironment::to_deprecated_string_impl(Bytecode::Executable const& executable) const
  1713. {
  1714. StringBuilder builder;
  1715. builder.append("PushDeclarativeEnvironment"sv);
  1716. if (!m_variables.is_empty()) {
  1717. builder.append(" {"sv);
  1718. Vector<DeprecatedString> names;
  1719. for (auto& it : m_variables)
  1720. names.append(executable.get_string(it.key));
  1721. builder.append('}');
  1722. builder.join(", "sv, names);
  1723. }
  1724. return builder.to_deprecated_string();
  1725. }
  1726. DeprecatedString Yield::to_deprecated_string_impl(Bytecode::Executable const&) const
  1727. {
  1728. if (m_continuation_label.has_value())
  1729. return DeprecatedString::formatted("Yield continuation:@{}", m_continuation_label->block().name());
  1730. return DeprecatedString::formatted("Yield return");
  1731. }
  1732. DeprecatedString Await::to_deprecated_string_impl(Bytecode::Executable const&) const
  1733. {
  1734. return DeprecatedString::formatted("Await continuation:@{}", m_continuation_label.block().name());
  1735. }
  1736. DeprecatedString GetByValue::to_deprecated_string_impl(Bytecode::Executable const&) const
  1737. {
  1738. return DeprecatedString::formatted("GetByValue base:{}", m_base);
  1739. }
  1740. DeprecatedString GetByValueWithThis::to_deprecated_string_impl(Bytecode::Executable const&) const
  1741. {
  1742. return DeprecatedString::formatted("GetByValueWithThis base:{} this_value:{}", m_base, m_this_value);
  1743. }
  1744. DeprecatedString PutByValue::to_deprecated_string_impl(Bytecode::Executable const&) const
  1745. {
  1746. auto kind = property_kind_to_string(m_kind);
  1747. return DeprecatedString::formatted("PutByValue kind:{} base:{}, property:{}", kind, m_base, m_property);
  1748. }
  1749. DeprecatedString PutByValueWithThis::to_deprecated_string_impl(Bytecode::Executable const&) const
  1750. {
  1751. auto kind = property_kind_to_string(m_kind);
  1752. return DeprecatedString::formatted("PutByValueWithThis kind:{} base:{}, property:{} this_value:{}", kind, m_base, m_property, m_this_value);
  1753. }
  1754. DeprecatedString DeleteByValue::to_deprecated_string_impl(Bytecode::Executable const&) const
  1755. {
  1756. return DeprecatedString::formatted("DeleteByValue base:{}", m_base);
  1757. }
  1758. DeprecatedString DeleteByValueWithThis::to_deprecated_string_impl(Bytecode::Executable const&) const
  1759. {
  1760. return DeprecatedString::formatted("DeleteByValueWithThis base:{} this_value:{}", m_base, m_this_value);
  1761. }
  1762. DeprecatedString GetIterator::to_deprecated_string_impl(Executable const&) const
  1763. {
  1764. auto hint = m_hint == IteratorHint::Sync ? "sync" : "async";
  1765. return DeprecatedString::formatted("GetIterator hint:{}", hint);
  1766. }
  1767. DeprecatedString GetMethod::to_deprecated_string_impl(Bytecode::Executable const& executable) const
  1768. {
  1769. return DeprecatedString::formatted("GetMethod {} ({})", m_property, executable.identifier_table->get(m_property));
  1770. }
  1771. DeprecatedString GetObjectPropertyIterator::to_deprecated_string_impl(Bytecode::Executable const&) const
  1772. {
  1773. return "GetObjectPropertyIterator";
  1774. }
  1775. DeprecatedString IteratorClose::to_deprecated_string_impl(Bytecode::Executable const&) const
  1776. {
  1777. if (!m_completion_value.has_value())
  1778. return DeprecatedString::formatted("IteratorClose completion_type={} completion_value=<empty>", to_underlying(m_completion_type));
  1779. auto completion_value_string = m_completion_value->to_string_without_side_effects();
  1780. return DeprecatedString::formatted("IteratorClose completion_type={} completion_value={}", to_underlying(m_completion_type), completion_value_string);
  1781. }
  1782. DeprecatedString AsyncIteratorClose::to_deprecated_string_impl(Bytecode::Executable const&) const
  1783. {
  1784. if (!m_completion_value.has_value())
  1785. return DeprecatedString::formatted("AsyncIteratorClose completion_type={} completion_value=<empty>", to_underlying(m_completion_type));
  1786. auto completion_value_string = m_completion_value->to_string_without_side_effects();
  1787. return DeprecatedString::formatted("AsyncIteratorClose completion_type={} completion_value={}", to_underlying(m_completion_type), completion_value_string);
  1788. }
  1789. DeprecatedString IteratorNext::to_deprecated_string_impl(Executable const&) const
  1790. {
  1791. return "IteratorNext";
  1792. }
  1793. DeprecatedString IteratorResultDone::to_deprecated_string_impl(Executable const&) const
  1794. {
  1795. return "IteratorResultDone";
  1796. }
  1797. DeprecatedString IteratorResultValue::to_deprecated_string_impl(Executable const&) const
  1798. {
  1799. return "IteratorResultValue";
  1800. }
  1801. DeprecatedString ResolveThisBinding::to_deprecated_string_impl(Bytecode::Executable const&) const
  1802. {
  1803. return "ResolveThisBinding"sv;
  1804. }
  1805. DeprecatedString ResolveSuperBase::to_deprecated_string_impl(Bytecode::Executable const&) const
  1806. {
  1807. return "ResolveSuperBase"sv;
  1808. }
  1809. DeprecatedString GetNewTarget::to_deprecated_string_impl(Bytecode::Executable const&) const
  1810. {
  1811. return "GetNewTarget"sv;
  1812. }
  1813. DeprecatedString GetImportMeta::to_deprecated_string_impl(Bytecode::Executable const&) const
  1814. {
  1815. return "GetImportMeta"sv;
  1816. }
  1817. DeprecatedString TypeofVariable::to_deprecated_string_impl(Bytecode::Executable const& executable) const
  1818. {
  1819. return DeprecatedString::formatted("TypeofVariable {} ({})", m_identifier, executable.identifier_table->get(m_identifier));
  1820. }
  1821. DeprecatedString TypeofLocal::to_deprecated_string_impl(Bytecode::Executable const&) const
  1822. {
  1823. return DeprecatedString::formatted("TypeofLocal {}", m_index);
  1824. }
  1825. DeprecatedString ToNumeric::to_deprecated_string_impl(Bytecode::Executable const&) const
  1826. {
  1827. return "ToNumeric"sv;
  1828. }
  1829. DeprecatedString BlockDeclarationInstantiation::to_deprecated_string_impl(Bytecode::Executable const&) const
  1830. {
  1831. return "BlockDeclarationInstantiation"sv;
  1832. }
  1833. DeprecatedString ImportCall::to_deprecated_string_impl(Bytecode::Executable const&) const
  1834. {
  1835. return DeprecatedString::formatted("ImportCall specifier:{} options:{}"sv, m_specifier, m_options);
  1836. }
  1837. }