Interpreter.cpp 70 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735
  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/Label.h>
  16. #include <LibJS/Bytecode/Op.h>
  17. #include <LibJS/JIT/Compiler.h>
  18. #include <LibJS/JIT/NativeExecutable.h>
  19. #include <LibJS/Runtime/AbstractOperations.h>
  20. #include <LibJS/Runtime/Array.h>
  21. #include <LibJS/Runtime/BigInt.h>
  22. #include <LibJS/Runtime/DeclarativeEnvironment.h>
  23. #include <LibJS/Runtime/ECMAScriptFunctionObject.h>
  24. #include <LibJS/Runtime/Environment.h>
  25. #include <LibJS/Runtime/FunctionEnvironment.h>
  26. #include <LibJS/Runtime/GlobalEnvironment.h>
  27. #include <LibJS/Runtime/GlobalObject.h>
  28. #include <LibJS/Runtime/Iterator.h>
  29. #include <LibJS/Runtime/NativeFunction.h>
  30. #include <LibJS/Runtime/ObjectEnvironment.h>
  31. #include <LibJS/Runtime/Realm.h>
  32. #include <LibJS/Runtime/Reference.h>
  33. #include <LibJS/Runtime/RegExpObject.h>
  34. #include <LibJS/Runtime/Value.h>
  35. #include <LibJS/Runtime/ValueInlines.h>
  36. #include <LibJS/SourceTextModule.h>
  37. namespace JS::Bytecode {
  38. bool g_dump_bytecode = false;
  39. Interpreter::Interpreter(VM& vm)
  40. : m_vm(vm)
  41. {
  42. }
  43. Interpreter::~Interpreter()
  44. {
  45. }
  46. void Interpreter::visit_edges(Cell::Visitor& visitor)
  47. {
  48. for (auto& frame : m_call_frames) {
  49. frame.visit([&](auto& value) { value->visit_edges(visitor); });
  50. }
  51. }
  52. // 16.1.6 ScriptEvaluation ( scriptRecord ), https://tc39.es/ecma262/#sec-runtime-semantics-scriptevaluation
  53. ThrowCompletionOr<Value> Interpreter::run(Script& script_record, JS::GCPtr<Environment> lexical_environment_override)
  54. {
  55. auto& vm = this->vm();
  56. // 1. Let globalEnv be scriptRecord.[[Realm]].[[GlobalEnv]].
  57. auto& global_environment = script_record.realm().global_environment();
  58. // 2. Let scriptContext be a new ECMAScript code execution context.
  59. ExecutionContext script_context(vm.heap());
  60. // 3. Set the Function of scriptContext to null.
  61. // NOTE: This was done during execution context construction.
  62. // 4. Set the Realm of scriptContext to scriptRecord.[[Realm]].
  63. script_context.realm = &script_record.realm();
  64. // 5. Set the ScriptOrModule of scriptContext to scriptRecord.
  65. script_context.script_or_module = NonnullGCPtr<Script>(script_record);
  66. // 6. Set the VariableEnvironment of scriptContext to globalEnv.
  67. script_context.variable_environment = &global_environment;
  68. // 7. Set the LexicalEnvironment of scriptContext to globalEnv.
  69. script_context.lexical_environment = &global_environment;
  70. // Non-standard: Override the lexical environment if requested.
  71. if (lexical_environment_override)
  72. script_context.lexical_environment = lexical_environment_override;
  73. // 8. Set the PrivateEnvironment of scriptContext to null.
  74. // NOTE: This isn't in the spec, but we require it.
  75. script_context.is_strict_mode = script_record.parse_node().is_strict_mode();
  76. // FIXME: 9. Suspend the currently running execution context.
  77. // 10. Push scriptContext onto the execution context stack; scriptContext is now the running execution context.
  78. TRY(vm.push_execution_context(script_context, {}));
  79. // 11. Let script be scriptRecord.[[ECMAScriptCode]].
  80. auto& script = script_record.parse_node();
  81. // 12. Let result be Completion(GlobalDeclarationInstantiation(script, globalEnv)).
  82. auto instantiation_result = script.global_declaration_instantiation(vm, global_environment);
  83. Completion result = instantiation_result.is_throw_completion() ? instantiation_result.throw_completion() : normal_completion({});
  84. // 13. If result.[[Type]] is normal, then
  85. if (result.type() == Completion::Type::Normal) {
  86. auto executable_result = JS::Bytecode::Generator::generate(script);
  87. if (executable_result.is_error()) {
  88. if (auto error_string = executable_result.error().to_string(); error_string.is_error())
  89. result = vm.template throw_completion<JS::InternalError>(vm.error_message(JS::VM::ErrorMessage::OutOfMemory));
  90. else if (error_string = String::formatted("TODO({})", error_string.value()); error_string.is_error())
  91. result = vm.template throw_completion<JS::InternalError>(vm.error_message(JS::VM::ErrorMessage::OutOfMemory));
  92. else
  93. result = JS::throw_completion(JS::InternalError::create(realm(), error_string.release_value()));
  94. } else {
  95. auto executable = executable_result.release_value();
  96. if (g_dump_bytecode)
  97. executable->dump();
  98. // a. Set result to the result of evaluating script.
  99. auto result_or_error = run_and_return_frame(*executable, nullptr);
  100. if (result_or_error.value.is_error())
  101. result = result_or_error.value.release_error();
  102. else
  103. result = result_or_error.frame->registers[0];
  104. }
  105. }
  106. // 14. If result.[[Type]] is normal and result.[[Value]] is empty, then
  107. if (result.type() == Completion::Type::Normal && !result.value().has_value()) {
  108. // a. Set result to NormalCompletion(undefined).
  109. result = normal_completion(js_undefined());
  110. }
  111. // FIXME: 15. Suspend scriptContext and remove it from the execution context stack.
  112. vm.pop_execution_context();
  113. // 16. Assert: The execution context stack is not empty.
  114. VERIFY(!vm.execution_context_stack().is_empty());
  115. // FIXME: 17. Resume the context that is now on the top of the execution context stack as the running execution context.
  116. // At this point we may have already run any queued promise jobs via on_call_stack_emptied,
  117. // in which case this is a no-op.
  118. // 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.
  119. // https://tc39.es/ecma262/#sec-jobs for jobs and https://tc39.es/ecma262/#_ref_3508 for ClearKeptObjects
  120. // finish_execution_generation is particularly an issue for LibWeb, as the HTML spec wants to run it specifically after performing a microtask checkpoint.
  121. // The promise and registry cleanup queues don't cause LibWeb an issue, as LibWeb overrides the hooks that push onto these queues.
  122. vm.run_queued_promise_jobs();
  123. vm.run_queued_finalization_registry_cleanup_jobs();
  124. vm.finish_execution_generation();
  125. // 18. Return ? result.
  126. if (result.is_abrupt()) {
  127. VERIFY(result.type() == Completion::Type::Throw);
  128. return result.release_error();
  129. }
  130. VERIFY(result.value().has_value());
  131. return *result.value();
  132. }
  133. ThrowCompletionOr<Value> Interpreter::run(SourceTextModule& module)
  134. {
  135. // FIXME: This is not a entry point as defined in the spec, but is convenient.
  136. // To avoid work we use link_and_eval_module however that can already be
  137. // dangerous if the vm loaded other modules.
  138. auto& vm = this->vm();
  139. TRY(vm.link_and_eval_module(Badge<Bytecode::Interpreter> {}, module));
  140. vm.run_queued_promise_jobs();
  141. vm.run_queued_finalization_registry_cleanup_jobs();
  142. return js_undefined();
  143. }
  144. void Interpreter::run_bytecode()
  145. {
  146. auto* locals = vm().running_execution_context().local_variables.data();
  147. auto* registers = this->registers().data();
  148. auto& accumulator = this->accumulator();
  149. for (;;) {
  150. start:
  151. auto pc = InstructionStreamIterator { m_current_block->instruction_stream(), m_current_executable };
  152. TemporaryChange temp_change { m_pc, Optional<InstructionStreamIterator&>(pc) };
  153. bool will_return = false;
  154. bool will_yield = false;
  155. ThrowCompletionOr<void> result;
  156. while (!pc.at_end()) {
  157. auto& instruction = *pc;
  158. switch (instruction.type()) {
  159. case Instruction::Type::GetLocal: {
  160. auto& local = locals[static_cast<Op::GetLocal const&>(instruction).index()];
  161. if (local.is_empty()) {
  162. auto const& variable_name = vm().running_execution_context().function->local_variables_names()[static_cast<Op::GetLocal const&>(instruction).index()];
  163. result = vm().throw_completion<ReferenceError>(ErrorType::BindingNotInitialized, variable_name);
  164. break;
  165. }
  166. accumulator = local;
  167. break;
  168. }
  169. case Instruction::Type::SetLocal:
  170. locals[static_cast<Op::SetLocal const&>(instruction).index()] = accumulator;
  171. break;
  172. case Instruction::Type::Load:
  173. accumulator = registers[static_cast<Op::Load const&>(instruction).src().index()];
  174. break;
  175. case Instruction::Type::Store:
  176. registers[static_cast<Op::Store const&>(instruction).dst().index()] = accumulator;
  177. break;
  178. case Instruction::Type::LoadImmediate:
  179. accumulator = static_cast<Op::LoadImmediate const&>(instruction).value();
  180. break;
  181. case Instruction::Type::Jump:
  182. m_current_block = &static_cast<Op::Jump const&>(instruction).true_target()->block();
  183. goto start;
  184. case Instruction::Type::JumpConditional:
  185. if (accumulator.to_boolean())
  186. m_current_block = &static_cast<Op::Jump const&>(instruction).true_target()->block();
  187. else
  188. m_current_block = &static_cast<Op::Jump const&>(instruction).false_target()->block();
  189. goto start;
  190. case Instruction::Type::JumpNullish:
  191. if (accumulator.is_nullish())
  192. m_current_block = &static_cast<Op::Jump const&>(instruction).true_target()->block();
  193. else
  194. m_current_block = &static_cast<Op::Jump const&>(instruction).false_target()->block();
  195. goto start;
  196. case Instruction::Type::JumpUndefined:
  197. if (accumulator.is_undefined())
  198. m_current_block = &static_cast<Op::Jump const&>(instruction).true_target()->block();
  199. else
  200. m_current_block = &static_cast<Op::Jump const&>(instruction).false_target()->block();
  201. goto start;
  202. case Instruction::Type::EnterUnwindContext:
  203. enter_unwind_context();
  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. auto const* old_scheduled_jump = call_frame().previously_scheduled_jumps.take_last();
  216. if (m_scheduled_jump) {
  217. // FIXME: If we `break` or `continue` in the finally, we need to clear
  218. // this field
  219. // Same goes for popping an old_scheduled_jump form the stack
  220. m_current_block = exchange(m_scheduled_jump, nullptr);
  221. } else {
  222. m_current_block = &static_cast<Op::ContinuePendingUnwind const&>(instruction).resume_target().block();
  223. // set the scheduled jump to the old value if we continue
  224. // where we left it
  225. m_scheduled_jump = old_scheduled_jump;
  226. }
  227. goto start;
  228. }
  229. case Instruction::Type::ScheduleJump: {
  230. m_scheduled_jump = &static_cast<Op::ScheduleJump const&>(instruction).target().block();
  231. auto const* finalizer = m_current_block->finalizer();
  232. VERIFY(finalizer);
  233. m_current_block = finalizer;
  234. goto start;
  235. }
  236. default:
  237. result = instruction.execute(*this);
  238. break;
  239. }
  240. if (result.is_error()) [[unlikely]] {
  241. reg(Register::exception()) = *result.throw_completion().value();
  242. m_scheduled_jump = {};
  243. auto const* handler = m_current_block->handler();
  244. auto const* finalizer = m_current_block->finalizer();
  245. if (!handler && !finalizer)
  246. return;
  247. auto& unwind_context = unwind_contexts().last();
  248. VERIFY(unwind_context.executable == m_current_executable);
  249. if (handler) {
  250. VERIFY(!unwind_context.handler_called);
  251. vm().running_execution_context().lexical_environment = unwind_context.lexical_environment;
  252. m_current_block = handler;
  253. unwind_context.handler_called = true;
  254. accumulator = reg(Register::exception());
  255. reg(Register::exception()) = {};
  256. goto start;
  257. }
  258. if (finalizer) {
  259. m_current_block = finalizer;
  260. // If an exception was thrown inside the corresponding `catch` block, we need to rethrow it
  261. // from the `finally` block. But if the exception is from the `try` block, and has already been
  262. // handled by `catch`, we swallow it.
  263. if (!unwind_context.handler_called)
  264. reg(Register::exception()) = {};
  265. goto start;
  266. }
  267. // 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.
  268. // If you run into this, you probably forgot to remove the current unwind_context somewhere.
  269. VERIFY_NOT_REACHED();
  270. }
  271. if (!reg(Register::return_value()).is_empty()) {
  272. will_return = true;
  273. // Note: A `yield` statement will not go through a finally statement,
  274. // hence we need to set a flag to not do so,
  275. // but we generate a Yield Operation in the case of returns in
  276. // generators as well, so we need to check if it will actually
  277. // continue or is a `return` in disguise
  278. will_yield = (instruction.type() == Instruction::Type::Yield && static_cast<Op::Yield const&>(instruction).continuation().has_value()) || instruction.type() == Instruction::Type::Await;
  279. break;
  280. }
  281. ++pc;
  282. }
  283. if (auto const* finalizer = m_current_block->finalizer(); finalizer && !will_yield) {
  284. auto& unwind_context = unwind_contexts().last();
  285. VERIFY(unwind_context.executable == m_current_executable);
  286. reg(Register::saved_return_value()) = reg(Register::return_value());
  287. reg(Register::return_value()) = {};
  288. m_current_block = finalizer;
  289. // the unwind_context will be pop'ed when entering the finally block
  290. continue;
  291. }
  292. if (pc.at_end())
  293. break;
  294. if (will_return)
  295. break;
  296. }
  297. }
  298. Interpreter::ValueAndFrame Interpreter::run_and_return_frame(Executable& executable, BasicBlock const* entry_point, CallFrame* in_frame)
  299. {
  300. dbgln_if(JS_BYTECODE_DEBUG, "Bytecode::Interpreter will run unit {:p}", &executable);
  301. TemporaryChange restore_executable { m_current_executable, &executable };
  302. TemporaryChange restore_saved_jump { m_scheduled_jump, static_cast<BasicBlock const*>(nullptr) };
  303. VERIFY(!vm().execution_context_stack().is_empty());
  304. TemporaryChange restore_current_block { m_current_block, entry_point ?: executable.basic_blocks.first() };
  305. if (in_frame)
  306. push_call_frame(in_frame, executable.number_of_registers);
  307. else
  308. push_call_frame(make<CallFrame>(), executable.number_of_registers);
  309. vm().execution_context_stack().last()->executable = &executable;
  310. if (auto native_executable = executable.get_or_create_native_executable()) {
  311. auto block_index = 0;
  312. if (entry_point)
  313. block_index = executable.basic_blocks.find_first_index_if([&](auto const& block) { return block.ptr() == entry_point; }).value();
  314. native_executable->run(vm(), block_index);
  315. #if 0
  316. for (size_t i = 0; i < vm().running_execution_context().local_variables.size(); ++i) {
  317. dbgln("%{}: {}", i, vm().running_execution_context().local_variables[i]);
  318. }
  319. #endif
  320. } else {
  321. run_bytecode();
  322. }
  323. dbgln_if(JS_BYTECODE_DEBUG, "Bytecode::Interpreter did run unit {:p}", &executable);
  324. if constexpr (JS_BYTECODE_DEBUG) {
  325. for (size_t i = 0; i < registers().size(); ++i) {
  326. String value_string;
  327. if (registers()[i].is_empty())
  328. value_string = "(empty)"_string;
  329. else
  330. value_string = registers()[i].to_string_without_side_effects();
  331. dbgln("[{:3}] {}", i, value_string);
  332. }
  333. }
  334. auto return_value = js_undefined();
  335. if (!reg(Register::return_value()).is_empty())
  336. return_value = reg(Register::return_value());
  337. else if (!reg(Register::saved_return_value()).is_empty())
  338. return_value = reg(Register::saved_return_value());
  339. auto exception = reg(Register::exception());
  340. auto frame = pop_call_frame();
  341. // NOTE: The return value from a called function is put into $0 in the caller context.
  342. if (!m_call_frames.is_empty())
  343. call_frame().registers[0] = return_value;
  344. // At this point we may have already run any queued promise jobs via on_call_stack_emptied,
  345. // in which case this is a no-op.
  346. vm().run_queued_promise_jobs();
  347. vm().finish_execution_generation();
  348. if (!exception.is_empty()) {
  349. if (auto* call_frame = frame.get_pointer<NonnullOwnPtr<CallFrame>>())
  350. return { throw_completion(exception), move(*call_frame) };
  351. return { throw_completion(exception), nullptr };
  352. }
  353. if (auto* call_frame = frame.get_pointer<NonnullOwnPtr<CallFrame>>())
  354. return { return_value, move(*call_frame) };
  355. return { return_value, nullptr };
  356. }
  357. void Interpreter::enter_unwind_context()
  358. {
  359. unwind_contexts().empend(
  360. m_current_executable,
  361. vm().running_execution_context().lexical_environment);
  362. call_frame().previously_scheduled_jumps.append(m_scheduled_jump);
  363. m_scheduled_jump = nullptr;
  364. }
  365. void Interpreter::leave_unwind_context()
  366. {
  367. unwind_contexts().take_last();
  368. }
  369. ThrowCompletionOr<NonnullRefPtr<Bytecode::Executable>> compile(VM& vm, ASTNode const& node, FunctionKind kind, DeprecatedFlyString const& name)
  370. {
  371. auto executable_result = Bytecode::Generator::generate(node, kind);
  372. if (executable_result.is_error())
  373. return vm.throw_completion<InternalError>(ErrorType::NotImplemented, TRY_OR_THROW_OOM(vm, executable_result.error().to_string()));
  374. auto bytecode_executable = executable_result.release_value();
  375. bytecode_executable->name = name;
  376. if (Bytecode::g_dump_bytecode)
  377. bytecode_executable->dump();
  378. return bytecode_executable;
  379. }
  380. Realm& Interpreter::realm()
  381. {
  382. return *m_vm.current_realm();
  383. }
  384. void Interpreter::push_call_frame(Variant<NonnullOwnPtr<CallFrame>, CallFrame*> frame, size_t register_count)
  385. {
  386. m_call_frames.append(move(frame));
  387. this->call_frame().registers.resize(register_count);
  388. m_current_call_frame = this->call_frame().registers;
  389. reg(Register::return_value()) = {};
  390. }
  391. Variant<NonnullOwnPtr<CallFrame>, CallFrame*> Interpreter::pop_call_frame()
  392. {
  393. auto frame = m_call_frames.take_last();
  394. m_current_call_frame = m_call_frames.is_empty() ? Span<Value> {} : this->call_frame().registers;
  395. return frame;
  396. }
  397. }
  398. namespace JS::Bytecode {
  399. DeprecatedString Instruction::to_deprecated_string(Bytecode::Executable const& executable) const
  400. {
  401. #define __BYTECODE_OP(op) \
  402. case Instruction::Type::op: \
  403. return static_cast<Bytecode::Op::op const&>(*this).to_deprecated_string_impl(executable);
  404. switch (type()) {
  405. ENUMERATE_BYTECODE_OPS(__BYTECODE_OP)
  406. default:
  407. VERIFY_NOT_REACHED();
  408. }
  409. #undef __BYTECODE_OP
  410. }
  411. }
  412. namespace JS::Bytecode::Op {
  413. ThrowCompletionOr<void> Load::execute_impl(Bytecode::Interpreter&) const
  414. {
  415. // Handled in the interpreter loop.
  416. __builtin_unreachable();
  417. }
  418. ThrowCompletionOr<void> LoadImmediate::execute_impl(Bytecode::Interpreter&) const
  419. {
  420. // Handled in the interpreter loop.
  421. __builtin_unreachable();
  422. }
  423. ThrowCompletionOr<void> Store::execute_impl(Bytecode::Interpreter&) const
  424. {
  425. // Handled in the interpreter loop.
  426. __builtin_unreachable();
  427. }
  428. static ThrowCompletionOr<Value> abstract_inequals(VM& vm, Value src1, Value src2)
  429. {
  430. return Value(!TRY(is_loosely_equal(vm, src1, src2)));
  431. }
  432. static ThrowCompletionOr<Value> abstract_equals(VM& vm, Value src1, Value src2)
  433. {
  434. return Value(TRY(is_loosely_equal(vm, src1, src2)));
  435. }
  436. static ThrowCompletionOr<Value> typed_inequals(VM&, Value src1, Value src2)
  437. {
  438. return Value(!is_strictly_equal(src1, src2));
  439. }
  440. static ThrowCompletionOr<Value> typed_equals(VM&, Value src1, Value src2)
  441. {
  442. return Value(is_strictly_equal(src1, src2));
  443. }
  444. #define JS_DEFINE_COMMON_BINARY_OP(OpTitleCase, op_snake_case) \
  445. ThrowCompletionOr<void> OpTitleCase::execute_impl(Bytecode::Interpreter& interpreter) const \
  446. { \
  447. auto& vm = interpreter.vm(); \
  448. auto lhs = interpreter.reg(m_lhs_reg); \
  449. auto rhs = interpreter.accumulator(); \
  450. interpreter.accumulator() = TRY(op_snake_case(vm, lhs, rhs)); \
  451. return {}; \
  452. } \
  453. DeprecatedString OpTitleCase::to_deprecated_string_impl(Bytecode::Executable const&) const \
  454. { \
  455. return DeprecatedString::formatted(#OpTitleCase " {}", m_lhs_reg); \
  456. }
  457. JS_ENUMERATE_COMMON_BINARY_OPS(JS_DEFINE_COMMON_BINARY_OP)
  458. static ThrowCompletionOr<Value> not_(VM&, Value value)
  459. {
  460. return Value(!value.to_boolean());
  461. }
  462. static ThrowCompletionOr<Value> typeof_(VM& vm, Value value)
  463. {
  464. return PrimitiveString::create(vm, value.typeof());
  465. }
  466. #define JS_DEFINE_COMMON_UNARY_OP(OpTitleCase, op_snake_case) \
  467. ThrowCompletionOr<void> OpTitleCase::execute_impl(Bytecode::Interpreter& interpreter) const \
  468. { \
  469. auto& vm = interpreter.vm(); \
  470. interpreter.accumulator() = TRY(op_snake_case(vm, interpreter.accumulator())); \
  471. return {}; \
  472. } \
  473. DeprecatedString OpTitleCase::to_deprecated_string_impl(Bytecode::Executable const&) const \
  474. { \
  475. return #OpTitleCase; \
  476. }
  477. JS_ENUMERATE_COMMON_UNARY_OPS(JS_DEFINE_COMMON_UNARY_OP)
  478. ThrowCompletionOr<void> NewBigInt::execute_impl(Bytecode::Interpreter& interpreter) const
  479. {
  480. auto& vm = interpreter.vm();
  481. interpreter.accumulator() = BigInt::create(vm, m_bigint);
  482. return {};
  483. }
  484. ThrowCompletionOr<void> NewArray::execute_impl(Bytecode::Interpreter& interpreter) const
  485. {
  486. auto array = MUST(Array::create(interpreter.realm(), 0));
  487. for (size_t i = 0; i < m_element_count; i++) {
  488. auto& value = interpreter.reg(Register(m_elements[0].index() + i));
  489. array->indexed_properties().put(i, value, default_attributes);
  490. }
  491. interpreter.accumulator() = array;
  492. return {};
  493. }
  494. ThrowCompletionOr<void> Append::execute_impl(Bytecode::Interpreter& interpreter) const
  495. {
  496. return append(interpreter.vm(), interpreter.reg(m_lhs), interpreter.accumulator(), m_is_spread);
  497. }
  498. ThrowCompletionOr<void> ImportCall::execute_impl(Bytecode::Interpreter& interpreter) const
  499. {
  500. auto& vm = interpreter.vm();
  501. auto specifier = interpreter.reg(m_specifier);
  502. auto options_value = interpreter.reg(m_options);
  503. interpreter.accumulator() = TRY(perform_import_call(vm, specifier, options_value));
  504. return {};
  505. }
  506. ThrowCompletionOr<void> IteratorToArray::execute_impl(Bytecode::Interpreter& interpreter) const
  507. {
  508. interpreter.accumulator() = TRY(iterator_to_array(interpreter.vm(), interpreter.accumulator()));
  509. return {};
  510. }
  511. ThrowCompletionOr<void> NewString::execute_impl(Bytecode::Interpreter& interpreter) const
  512. {
  513. interpreter.accumulator() = PrimitiveString::create(interpreter.vm(), interpreter.current_executable().get_string(m_string));
  514. return {};
  515. }
  516. ThrowCompletionOr<void> NewObject::execute_impl(Bytecode::Interpreter& interpreter) const
  517. {
  518. auto& vm = interpreter.vm();
  519. auto& realm = *vm.current_realm();
  520. interpreter.accumulator() = Object::create(realm, realm.intrinsics().object_prototype());
  521. return {};
  522. }
  523. ThrowCompletionOr<void> NewRegExp::execute_impl(Bytecode::Interpreter& interpreter) const
  524. {
  525. interpreter.accumulator() = new_regexp(
  526. interpreter.vm(),
  527. interpreter.current_executable().regex_table->get(m_regex_index),
  528. interpreter.current_executable().get_string(m_source_index),
  529. interpreter.current_executable().get_string(m_flags_index));
  530. return {};
  531. }
  532. #define JS_DEFINE_NEW_BUILTIN_ERROR_OP(ErrorName) \
  533. ThrowCompletionOr<void> New##ErrorName::execute_impl(Bytecode::Interpreter& interpreter) const \
  534. { \
  535. auto& vm = interpreter.vm(); \
  536. auto& realm = *vm.current_realm(); \
  537. interpreter.accumulator() = ErrorName::create(realm, interpreter.current_executable().get_string(m_error_string)); \
  538. return {}; \
  539. } \
  540. DeprecatedString New##ErrorName::to_deprecated_string_impl(Bytecode::Executable const& executable) const \
  541. { \
  542. return DeprecatedString::formatted("New" #ErrorName " {} (\"{}\")", m_error_string, executable.string_table->get(m_error_string)); \
  543. }
  544. JS_ENUMERATE_NEW_BUILTIN_ERROR_OPS(JS_DEFINE_NEW_BUILTIN_ERROR_OP)
  545. ThrowCompletionOr<void> CopyObjectExcludingProperties::execute_impl(Bytecode::Interpreter& interpreter) const
  546. {
  547. auto& vm = interpreter.vm();
  548. auto& realm = *vm.current_realm();
  549. auto from_object = interpreter.reg(m_from_object);
  550. auto to_object = Object::create(realm, realm.intrinsics().object_prototype());
  551. HashTable<PropertyKey> excluded_names;
  552. for (size_t i = 0; i < m_excluded_names_count; ++i) {
  553. excluded_names.set(TRY(interpreter.reg(m_excluded_names[i]).to_property_key(vm)));
  554. }
  555. TRY(to_object->copy_data_properties(vm, from_object, excluded_names));
  556. interpreter.accumulator() = to_object;
  557. return {};
  558. }
  559. ThrowCompletionOr<void> ConcatString::execute_impl(Bytecode::Interpreter& interpreter) const
  560. {
  561. auto& vm = interpreter.vm();
  562. auto string = TRY(interpreter.accumulator().to_primitive_string(vm));
  563. interpreter.reg(m_lhs) = PrimitiveString::create(vm, interpreter.reg(m_lhs).as_string(), string);
  564. return {};
  565. }
  566. ThrowCompletionOr<void> GetVariable::execute_impl(Bytecode::Interpreter& interpreter) const
  567. {
  568. interpreter.accumulator() = TRY(get_variable(
  569. interpreter,
  570. interpreter.current_executable().get_identifier(m_identifier),
  571. interpreter.current_executable().environment_variable_caches[m_cache_index]));
  572. return {};
  573. }
  574. ThrowCompletionOr<void> GetCalleeAndThisFromEnvironment::execute_impl(Bytecode::Interpreter& interpreter) const
  575. {
  576. auto callee_and_this = TRY(get_callee_and_this_from_environment(interpreter, interpreter.current_executable().get_identifier(m_identifier), m_cache_index));
  577. interpreter.reg(m_callee_reg) = callee_and_this.callee;
  578. interpreter.reg(m_this_reg) = callee_and_this.this_value;
  579. return {};
  580. }
  581. ThrowCompletionOr<void> GetGlobal::execute_impl(Bytecode::Interpreter& interpreter) const
  582. {
  583. interpreter.accumulator() = TRY(get_global(
  584. interpreter,
  585. interpreter.current_executable().get_identifier(m_identifier),
  586. interpreter.current_executable().global_variable_caches[m_cache_index]));
  587. return {};
  588. }
  589. ThrowCompletionOr<void> GetLocal::execute_impl(Bytecode::Interpreter&) const
  590. {
  591. // Handled in the interpreter loop.
  592. __builtin_unreachable();
  593. }
  594. ThrowCompletionOr<void> DeleteVariable::execute_impl(Bytecode::Interpreter& interpreter) const
  595. {
  596. auto& vm = interpreter.vm();
  597. auto const& string = interpreter.current_executable().get_identifier(m_identifier);
  598. auto reference = TRY(vm.resolve_binding(string));
  599. interpreter.accumulator() = Value(TRY(reference.delete_(vm)));
  600. return {};
  601. }
  602. ThrowCompletionOr<void> CreateLexicalEnvironment::execute_impl(Bytecode::Interpreter& interpreter) const
  603. {
  604. auto make_and_swap_envs = [&](auto& old_environment) {
  605. GCPtr<Environment> environment = new_declarative_environment(*old_environment).ptr();
  606. swap(old_environment, environment);
  607. return environment;
  608. };
  609. interpreter.saved_lexical_environment_stack().append(make_and_swap_envs(interpreter.vm().running_execution_context().lexical_environment));
  610. return {};
  611. }
  612. ThrowCompletionOr<void> EnterObjectEnvironment::execute_impl(Bytecode::Interpreter& interpreter) const
  613. {
  614. auto& vm = interpreter.vm();
  615. auto& old_environment = vm.running_execution_context().lexical_environment;
  616. interpreter.saved_lexical_environment_stack().append(old_environment);
  617. auto object = TRY(interpreter.accumulator().to_object(vm));
  618. vm.running_execution_context().lexical_environment = new_object_environment(object, true, old_environment);
  619. return {};
  620. }
  621. ThrowCompletionOr<void> CreateVariable::execute_impl(Bytecode::Interpreter& interpreter) const
  622. {
  623. auto const& name = interpreter.current_executable().get_identifier(m_identifier);
  624. return create_variable(interpreter.vm(), name, m_mode, m_is_global, m_is_immutable, m_is_strict);
  625. }
  626. ThrowCompletionOr<void> SetVariable::execute_impl(Bytecode::Interpreter& interpreter) const
  627. {
  628. auto& vm = interpreter.vm();
  629. auto const& name = interpreter.current_executable().get_identifier(m_identifier);
  630. TRY(set_variable(vm, name, interpreter.accumulator(), m_mode, m_initialization_mode));
  631. return {};
  632. }
  633. ThrowCompletionOr<void> SetLocal::execute_impl(Bytecode::Interpreter&) const
  634. {
  635. // Handled in the interpreter loop.
  636. __builtin_unreachable();
  637. }
  638. ThrowCompletionOr<void> GetById::execute_impl(Bytecode::Interpreter& interpreter) const
  639. {
  640. auto base_value = interpreter.accumulator();
  641. auto& cache = interpreter.current_executable().property_lookup_caches[m_cache_index];
  642. interpreter.accumulator() = TRY(get_by_id(interpreter.vm(), interpreter.current_executable().get_identifier(m_property), base_value, base_value, cache));
  643. return {};
  644. }
  645. ThrowCompletionOr<void> GetByIdWithThis::execute_impl(Bytecode::Interpreter& interpreter) const
  646. {
  647. auto base_value = interpreter.accumulator();
  648. auto this_value = interpreter.reg(m_this_value);
  649. auto& cache = interpreter.current_executable().property_lookup_caches[m_cache_index];
  650. interpreter.accumulator() = TRY(get_by_id(interpreter.vm(), interpreter.current_executable().get_identifier(m_property), base_value, this_value, cache));
  651. return {};
  652. }
  653. ThrowCompletionOr<void> GetPrivateById::execute_impl(Bytecode::Interpreter& interpreter) const
  654. {
  655. auto& vm = interpreter.vm();
  656. auto const& name = interpreter.current_executable().get_identifier(m_property);
  657. auto base_value = interpreter.accumulator();
  658. auto private_reference = make_private_reference(vm, base_value, name);
  659. interpreter.accumulator() = TRY(private_reference.get_value(vm));
  660. return {};
  661. }
  662. ThrowCompletionOr<void> HasPrivateId::execute_impl(Bytecode::Interpreter& interpreter) const
  663. {
  664. auto& vm = interpreter.vm();
  665. if (!interpreter.accumulator().is_object())
  666. return vm.throw_completion<TypeError>(ErrorType::InOperatorWithObject);
  667. auto private_environment = vm.running_execution_context().private_environment;
  668. VERIFY(private_environment);
  669. auto private_name = private_environment->resolve_private_identifier(interpreter.current_executable().get_identifier(m_property));
  670. interpreter.accumulator() = Value(interpreter.accumulator().as_object().private_element_find(private_name) != nullptr);
  671. return {};
  672. }
  673. ThrowCompletionOr<void> PutById::execute_impl(Bytecode::Interpreter& interpreter) const
  674. {
  675. auto& vm = interpreter.vm();
  676. // NOTE: Get the value from the accumulator before side effects have a chance to overwrite it.
  677. auto value = interpreter.accumulator();
  678. auto base = interpreter.reg(m_base);
  679. PropertyKey name = interpreter.current_executable().get_identifier(m_property);
  680. auto& cache = interpreter.current_executable().property_lookup_caches[m_cache_index];
  681. TRY(put_by_property_key(vm, base, base, value, name, m_kind, &cache));
  682. interpreter.accumulator() = value;
  683. return {};
  684. }
  685. ThrowCompletionOr<void> PutByIdWithThis::execute_impl(Bytecode::Interpreter& interpreter) const
  686. {
  687. auto& vm = interpreter.vm();
  688. // NOTE: Get the value from the accumulator before side effects have a chance to overwrite it.
  689. auto value = interpreter.accumulator();
  690. auto base = interpreter.reg(m_base);
  691. PropertyKey name = interpreter.current_executable().get_identifier(m_property);
  692. auto& cache = interpreter.current_executable().property_lookup_caches[m_cache_index];
  693. TRY(put_by_property_key(vm, base, interpreter.reg(m_this_value), value, name, m_kind, &cache));
  694. interpreter.accumulator() = value;
  695. return {};
  696. }
  697. ThrowCompletionOr<void> PutPrivateById::execute_impl(Bytecode::Interpreter& interpreter) const
  698. {
  699. auto& vm = interpreter.vm();
  700. // NOTE: Get the value from the accumulator before side effects have a chance to overwrite it.
  701. auto value = interpreter.accumulator();
  702. auto object = TRY(interpreter.reg(m_base).to_object(vm));
  703. auto name = interpreter.current_executable().get_identifier(m_property);
  704. auto private_reference = make_private_reference(vm, object, name);
  705. TRY(private_reference.put_value(vm, value));
  706. interpreter.accumulator() = value;
  707. return {};
  708. }
  709. ThrowCompletionOr<void> DeleteById::execute_impl(Bytecode::Interpreter& interpreter) const
  710. {
  711. auto base_value = interpreter.accumulator();
  712. interpreter.accumulator() = TRY(Bytecode::delete_by_id(interpreter, base_value, m_property));
  713. return {};
  714. }
  715. ThrowCompletionOr<void> DeleteByIdWithThis::execute_impl(Bytecode::Interpreter& interpreter) const
  716. {
  717. auto& vm = interpreter.vm();
  718. auto base_value = interpreter.accumulator();
  719. auto const& identifier = interpreter.current_executable().get_identifier(m_property);
  720. bool strict = vm.in_strict_mode();
  721. auto reference = Reference { base_value, identifier, interpreter.reg(m_this_value), strict };
  722. interpreter.accumulator() = Value(TRY(reference.delete_(vm)));
  723. return {};
  724. }
  725. ThrowCompletionOr<void> Jump::execute_impl(Bytecode::Interpreter&) const
  726. {
  727. // Handled in the interpreter loop.
  728. __builtin_unreachable();
  729. }
  730. ThrowCompletionOr<void> ResolveThisBinding::execute_impl(Bytecode::Interpreter& interpreter) const
  731. {
  732. auto& cached_this_value = interpreter.reg(Register::this_value());
  733. if (cached_this_value.is_empty()) {
  734. // OPTIMIZATION: Because the value of 'this' cannot be reassigned during a function execution, it's
  735. // resolved once and then saved for subsequent use.
  736. auto& vm = interpreter.vm();
  737. cached_this_value = TRY(vm.resolve_this_binding());
  738. }
  739. interpreter.accumulator() = cached_this_value;
  740. return {};
  741. }
  742. // https://tc39.es/ecma262/#sec-makesuperpropertyreference
  743. ThrowCompletionOr<void> ResolveSuperBase::execute_impl(Bytecode::Interpreter& interpreter) const
  744. {
  745. auto& vm = interpreter.vm();
  746. // 1. Let env be GetThisEnvironment().
  747. auto& env = verify_cast<FunctionEnvironment>(*get_this_environment(vm));
  748. // 2. Assert: env.HasSuperBinding() is true.
  749. VERIFY(env.has_super_binding());
  750. // 3. Let baseValue be ? env.GetSuperBase().
  751. interpreter.accumulator() = TRY(env.get_super_base());
  752. return {};
  753. }
  754. ThrowCompletionOr<void> GetNewTarget::execute_impl(Bytecode::Interpreter& interpreter) const
  755. {
  756. interpreter.accumulator() = interpreter.vm().get_new_target();
  757. return {};
  758. }
  759. ThrowCompletionOr<void> GetImportMeta::execute_impl(Bytecode::Interpreter& interpreter) const
  760. {
  761. interpreter.accumulator() = interpreter.vm().get_import_meta();
  762. return {};
  763. }
  764. ThrowCompletionOr<void> JumpConditional::execute_impl(Bytecode::Interpreter&) const
  765. {
  766. // Handled in the interpreter loop.
  767. __builtin_unreachable();
  768. }
  769. ThrowCompletionOr<void> JumpNullish::execute_impl(Bytecode::Interpreter&) const
  770. {
  771. // Handled in the interpreter loop.
  772. __builtin_unreachable();
  773. }
  774. ThrowCompletionOr<void> JumpUndefined::execute_impl(Bytecode::Interpreter&) const
  775. {
  776. // Handled in the interpreter loop.
  777. __builtin_unreachable();
  778. }
  779. ThrowCompletionOr<void> Call::execute_impl(Bytecode::Interpreter& interpreter) const
  780. {
  781. auto& vm = interpreter.vm();
  782. auto callee = interpreter.reg(m_callee);
  783. TRY(throw_if_needed_for_call(interpreter, callee, call_type(), expression_string()));
  784. MarkedVector<Value> argument_values(vm.heap());
  785. argument_values.ensure_capacity(m_argument_count);
  786. for (u32 i = 0; i < m_argument_count; ++i) {
  787. argument_values.unchecked_append(interpreter.reg(Register { m_first_argument.index() + i }));
  788. }
  789. interpreter.accumulator() = TRY(perform_call(interpreter, interpreter.reg(m_this_value), call_type(), callee, move(argument_values)));
  790. return {};
  791. }
  792. ThrowCompletionOr<void> CallWithArgumentArray::execute_impl(Bytecode::Interpreter& interpreter) const
  793. {
  794. auto callee = interpreter.reg(m_callee);
  795. TRY(throw_if_needed_for_call(interpreter, callee, call_type(), expression_string()));
  796. auto argument_values = argument_list_evaluation(interpreter.vm(), interpreter.accumulator());
  797. interpreter.accumulator() = TRY(perform_call(interpreter, interpreter.reg(m_this_value), call_type(), callee, move(argument_values)));
  798. return {};
  799. }
  800. // 13.3.7.1 Runtime Semantics: Evaluation, https://tc39.es/ecma262/#sec-super-keyword-runtime-semantics-evaluation
  801. ThrowCompletionOr<void> SuperCallWithArgumentArray::execute_impl(Bytecode::Interpreter& interpreter) const
  802. {
  803. interpreter.accumulator() = TRY(super_call_with_argument_array(interpreter.vm(), interpreter.accumulator(), m_is_synthetic));
  804. return {};
  805. }
  806. ThrowCompletionOr<void> NewFunction::execute_impl(Bytecode::Interpreter& interpreter) const
  807. {
  808. auto& vm = interpreter.vm();
  809. interpreter.accumulator() = new_function(vm, m_function_node, m_lhs_name, m_home_object);
  810. return {};
  811. }
  812. ThrowCompletionOr<void> Return::execute_impl(Bytecode::Interpreter& interpreter) const
  813. {
  814. interpreter.do_return(interpreter.accumulator().value_or(js_undefined()));
  815. return {};
  816. }
  817. ThrowCompletionOr<void> Increment::execute_impl(Bytecode::Interpreter& interpreter) const
  818. {
  819. auto& vm = interpreter.vm();
  820. auto old_value = TRY(interpreter.accumulator().to_numeric(vm));
  821. if (old_value.is_number())
  822. interpreter.accumulator() = Value(old_value.as_double() + 1);
  823. else
  824. interpreter.accumulator() = BigInt::create(vm, old_value.as_bigint().big_integer().plus(Crypto::SignedBigInteger { 1 }));
  825. return {};
  826. }
  827. ThrowCompletionOr<void> Decrement::execute_impl(Bytecode::Interpreter& interpreter) const
  828. {
  829. auto& vm = interpreter.vm();
  830. auto old_value = TRY(interpreter.accumulator().to_numeric(vm));
  831. if (old_value.is_number())
  832. interpreter.accumulator() = Value(old_value.as_double() - 1);
  833. else
  834. interpreter.accumulator() = BigInt::create(vm, old_value.as_bigint().big_integer().minus(Crypto::SignedBigInteger { 1 }));
  835. return {};
  836. }
  837. ThrowCompletionOr<void> Throw::execute_impl(Bytecode::Interpreter& interpreter) const
  838. {
  839. return throw_completion(interpreter.accumulator());
  840. }
  841. ThrowCompletionOr<void> ThrowIfNotObject::execute_impl(Bytecode::Interpreter& interpreter) const
  842. {
  843. auto& vm = interpreter.vm();
  844. if (!interpreter.accumulator().is_object())
  845. return vm.throw_completion<TypeError>(ErrorType::NotAnObject, interpreter.accumulator().to_string_without_side_effects());
  846. return {};
  847. }
  848. ThrowCompletionOr<void> ThrowIfNullish::execute_impl(Bytecode::Interpreter& interpreter) const
  849. {
  850. auto& vm = interpreter.vm();
  851. auto value = interpreter.accumulator();
  852. if (value.is_nullish())
  853. return vm.throw_completion<TypeError>(ErrorType::NotObjectCoercible, value.to_string_without_side_effects());
  854. return {};
  855. }
  856. ThrowCompletionOr<void> EnterUnwindContext::execute_impl(Bytecode::Interpreter&) const
  857. {
  858. // Handled in the interpreter loop.
  859. __builtin_unreachable();
  860. }
  861. ThrowCompletionOr<void> ScheduleJump::execute_impl(Bytecode::Interpreter&) const
  862. {
  863. // Handled in the interpreter loop.
  864. __builtin_unreachable();
  865. }
  866. ThrowCompletionOr<void> LeaveLexicalEnvironment::execute_impl(Bytecode::Interpreter& interpreter) const
  867. {
  868. interpreter.vm().running_execution_context().lexical_environment = interpreter.saved_lexical_environment_stack().take_last();
  869. return {};
  870. }
  871. ThrowCompletionOr<void> LeaveUnwindContext::execute_impl(Bytecode::Interpreter& interpreter) const
  872. {
  873. interpreter.leave_unwind_context();
  874. return {};
  875. }
  876. ThrowCompletionOr<void> ContinuePendingUnwind::execute_impl(Bytecode::Interpreter&) const
  877. {
  878. // Handled in the interpreter loop.
  879. __builtin_unreachable();
  880. }
  881. ThrowCompletionOr<void> Yield::execute_impl(Bytecode::Interpreter& interpreter) const
  882. {
  883. auto yielded_value = interpreter.accumulator().value_or(js_undefined());
  884. auto object = Object::create(interpreter.realm(), nullptr);
  885. object->define_direct_property("result", yielded_value, JS::default_attributes);
  886. if (m_continuation_label.has_value())
  887. // FIXME: If we get a pointer, which is not accurately representable as a double
  888. // will cause this to explode
  889. object->define_direct_property("continuation", Value(static_cast<double>(reinterpret_cast<u64>(&m_continuation_label->block()))), JS::default_attributes);
  890. else
  891. object->define_direct_property("continuation", Value(0), JS::default_attributes);
  892. object->define_direct_property("isAwait", Value(false), JS::default_attributes);
  893. interpreter.do_return(object);
  894. return {};
  895. }
  896. ThrowCompletionOr<void> Await::execute_impl(Bytecode::Interpreter& interpreter) const
  897. {
  898. auto yielded_value = interpreter.accumulator().value_or(js_undefined());
  899. auto object = Object::create(interpreter.realm(), nullptr);
  900. object->define_direct_property("result", yielded_value, JS::default_attributes);
  901. // FIXME: If we get a pointer, which is not accurately representable as a double
  902. // will cause this to explode
  903. object->define_direct_property("continuation", Value(static_cast<double>(reinterpret_cast<u64>(&m_continuation_label.block()))), JS::default_attributes);
  904. object->define_direct_property("isAwait", Value(true), JS::default_attributes);
  905. interpreter.do_return(object);
  906. return {};
  907. }
  908. ThrowCompletionOr<void> GetByValue::execute_impl(Bytecode::Interpreter& interpreter) const
  909. {
  910. interpreter.accumulator() = TRY(get_by_value(interpreter.vm(), interpreter.reg(m_base), interpreter.accumulator()));
  911. return {};
  912. }
  913. ThrowCompletionOr<void> GetByValueWithThis::execute_impl(Bytecode::Interpreter& interpreter) const
  914. {
  915. auto& vm = interpreter.vm();
  916. // NOTE: Get the property key from the accumulator before side effects have a chance to overwrite it.
  917. auto property_key_value = interpreter.accumulator();
  918. auto object = TRY(interpreter.reg(m_base).to_object(vm));
  919. auto property_key = TRY(property_key_value.to_property_key(vm));
  920. interpreter.accumulator() = TRY(object->internal_get(property_key, interpreter.reg(m_this_value)));
  921. return {};
  922. }
  923. ThrowCompletionOr<void> PutByValue::execute_impl(Bytecode::Interpreter& interpreter) const
  924. {
  925. auto& vm = interpreter.vm();
  926. auto value = interpreter.accumulator();
  927. TRY(put_by_value(vm, interpreter.reg(m_base), interpreter.reg(m_property), interpreter.accumulator(), m_kind));
  928. interpreter.accumulator() = value;
  929. return {};
  930. }
  931. ThrowCompletionOr<void> PutByValueWithThis::execute_impl(Bytecode::Interpreter& interpreter) const
  932. {
  933. auto& vm = interpreter.vm();
  934. // NOTE: Get the value from the accumulator before side effects have a chance to overwrite it.
  935. auto value = interpreter.accumulator();
  936. auto base = interpreter.reg(m_base);
  937. auto property_key = m_kind != PropertyKind::Spread ? TRY(interpreter.reg(m_property).to_property_key(vm)) : PropertyKey {};
  938. TRY(put_by_property_key(vm, base, interpreter.reg(m_this_value), value, property_key, m_kind));
  939. interpreter.accumulator() = value;
  940. return {};
  941. }
  942. ThrowCompletionOr<void> DeleteByValue::execute_impl(Bytecode::Interpreter& interpreter) const
  943. {
  944. auto base_value = interpreter.reg(m_base);
  945. auto property_key_value = interpreter.accumulator();
  946. interpreter.accumulator() = TRY(delete_by_value(interpreter, base_value, property_key_value));
  947. return {};
  948. }
  949. ThrowCompletionOr<void> DeleteByValueWithThis::execute_impl(Bytecode::Interpreter& interpreter) const
  950. {
  951. // NOTE: Get the property key from the accumulator before side effects have a chance to overwrite it.
  952. auto property_key_value = interpreter.accumulator();
  953. auto base_value = interpreter.reg(m_base);
  954. auto this_value = interpreter.reg(m_this_value);
  955. interpreter.accumulator() = TRY(delete_by_value_with_this(interpreter, base_value, property_key_value, this_value));
  956. return {};
  957. }
  958. ThrowCompletionOr<void> GetIterator::execute_impl(Bytecode::Interpreter& interpreter) const
  959. {
  960. auto& vm = interpreter.vm();
  961. auto iterator = TRY(get_iterator(vm, interpreter.accumulator(), m_hint));
  962. interpreter.accumulator() = iterator_to_object(vm, iterator);
  963. return {};
  964. }
  965. ThrowCompletionOr<void> GetMethod::execute_impl(Bytecode::Interpreter& interpreter) const
  966. {
  967. auto& vm = interpreter.vm();
  968. auto identifier = interpreter.current_executable().get_identifier(m_property);
  969. auto method = TRY(interpreter.accumulator().get_method(vm, identifier));
  970. interpreter.accumulator() = method ?: js_undefined();
  971. return {};
  972. }
  973. ThrowCompletionOr<void> GetObjectPropertyIterator::execute_impl(Bytecode::Interpreter& interpreter) const
  974. {
  975. interpreter.accumulator() = TRY(get_object_property_iterator(interpreter.vm(), interpreter.accumulator()));
  976. return {};
  977. }
  978. ThrowCompletionOr<void> IteratorClose::execute_impl(Bytecode::Interpreter& interpreter) const
  979. {
  980. auto& vm = interpreter.vm();
  981. auto iterator_object = TRY(interpreter.accumulator().to_object(vm));
  982. auto iterator = object_to_iterator(vm, iterator_object);
  983. // FIXME: Return the value of the resulting completion. (Note that m_completion_value can be empty!)
  984. TRY(iterator_close(vm, iterator, Completion { m_completion_type, m_completion_value, {} }));
  985. return {};
  986. }
  987. ThrowCompletionOr<void> AsyncIteratorClose::execute_impl(Bytecode::Interpreter& interpreter) const
  988. {
  989. auto& vm = interpreter.vm();
  990. auto iterator_object = TRY(interpreter.accumulator().to_object(vm));
  991. auto iterator = object_to_iterator(vm, iterator_object);
  992. // FIXME: Return the value of the resulting completion. (Note that m_completion_value can be empty!)
  993. TRY(async_iterator_close(vm, iterator, Completion { m_completion_type, m_completion_value, {} }));
  994. return {};
  995. }
  996. ThrowCompletionOr<void> IteratorNext::execute_impl(Bytecode::Interpreter& interpreter) const
  997. {
  998. auto& vm = interpreter.vm();
  999. auto iterator_object = TRY(interpreter.accumulator().to_object(vm));
  1000. auto iterator = object_to_iterator(vm, iterator_object);
  1001. interpreter.accumulator() = TRY(iterator_next(vm, iterator));
  1002. return {};
  1003. }
  1004. ThrowCompletionOr<void> IteratorResultDone::execute_impl(Bytecode::Interpreter& interpreter) const
  1005. {
  1006. auto& vm = interpreter.vm();
  1007. auto iterator_result = TRY(interpreter.accumulator().to_object(vm));
  1008. auto complete = TRY(iterator_complete(vm, iterator_result));
  1009. interpreter.accumulator() = Value(complete);
  1010. return {};
  1011. }
  1012. ThrowCompletionOr<void> IteratorResultValue::execute_impl(Bytecode::Interpreter& interpreter) const
  1013. {
  1014. auto& vm = interpreter.vm();
  1015. auto iterator_result = TRY(interpreter.accumulator().to_object(vm));
  1016. interpreter.accumulator() = TRY(iterator_value(vm, iterator_result));
  1017. return {};
  1018. }
  1019. ThrowCompletionOr<void> NewClass::execute_impl(Bytecode::Interpreter& interpreter) const
  1020. {
  1021. interpreter.accumulator() = TRY(new_class(interpreter.vm(), interpreter.accumulator(), m_class_expression, m_lhs_name));
  1022. return {};
  1023. }
  1024. // 13.5.3.1 Runtime Semantics: Evaluation, https://tc39.es/ecma262/#sec-typeof-operator-runtime-semantics-evaluation
  1025. ThrowCompletionOr<void> TypeofVariable::execute_impl(Bytecode::Interpreter& interpreter) const
  1026. {
  1027. auto& vm = interpreter.vm();
  1028. interpreter.accumulator() = TRY(typeof_variable(vm, interpreter.current_executable().get_identifier(m_identifier)));
  1029. return {};
  1030. }
  1031. ThrowCompletionOr<void> TypeofLocal::execute_impl(Bytecode::Interpreter& interpreter) const
  1032. {
  1033. auto& vm = interpreter.vm();
  1034. auto const& value = vm.running_execution_context().local_variables[m_index];
  1035. interpreter.accumulator() = PrimitiveString::create(vm, value.typeof());
  1036. return {};
  1037. }
  1038. ThrowCompletionOr<void> ToNumeric::execute_impl(Bytecode::Interpreter& interpreter) const
  1039. {
  1040. interpreter.accumulator() = TRY(interpreter.accumulator().to_numeric(interpreter.vm()));
  1041. return {};
  1042. }
  1043. ThrowCompletionOr<void> BlockDeclarationInstantiation::execute_impl(Bytecode::Interpreter& interpreter) const
  1044. {
  1045. auto& vm = interpreter.vm();
  1046. auto old_environment = vm.running_execution_context().lexical_environment;
  1047. interpreter.saved_lexical_environment_stack().append(old_environment);
  1048. vm.running_execution_context().lexical_environment = new_declarative_environment(*old_environment);
  1049. m_scope_node.block_declaration_instantiation(vm, vm.running_execution_context().lexical_environment);
  1050. return {};
  1051. }
  1052. DeprecatedString Load::to_deprecated_string_impl(Bytecode::Executable const&) const
  1053. {
  1054. return DeprecatedString::formatted("Load {}", m_src);
  1055. }
  1056. DeprecatedString LoadImmediate::to_deprecated_string_impl(Bytecode::Executable const&) const
  1057. {
  1058. return DeprecatedString::formatted("LoadImmediate {}", m_value);
  1059. }
  1060. DeprecatedString Store::to_deprecated_string_impl(Bytecode::Executable const&) const
  1061. {
  1062. return DeprecatedString::formatted("Store {}", m_dst);
  1063. }
  1064. DeprecatedString NewBigInt::to_deprecated_string_impl(Bytecode::Executable const&) const
  1065. {
  1066. return DeprecatedString::formatted("NewBigInt \"{}\"", m_bigint.to_base_deprecated(10));
  1067. }
  1068. DeprecatedString NewArray::to_deprecated_string_impl(Bytecode::Executable const&) const
  1069. {
  1070. StringBuilder builder;
  1071. builder.append("NewArray"sv);
  1072. if (m_element_count != 0) {
  1073. builder.appendff(" [{}-{}]", m_elements[0], m_elements[1]);
  1074. }
  1075. return builder.to_deprecated_string();
  1076. }
  1077. DeprecatedString Append::to_deprecated_string_impl(Bytecode::Executable const&) const
  1078. {
  1079. if (m_is_spread)
  1080. return DeprecatedString::formatted("Append lhs: **{}", m_lhs);
  1081. return DeprecatedString::formatted("Append lhs: {}", m_lhs);
  1082. }
  1083. DeprecatedString IteratorToArray::to_deprecated_string_impl(Bytecode::Executable const&) const
  1084. {
  1085. return "IteratorToArray";
  1086. }
  1087. DeprecatedString NewString::to_deprecated_string_impl(Bytecode::Executable const& executable) const
  1088. {
  1089. return DeprecatedString::formatted("NewString {} (\"{}\")", m_string, executable.string_table->get(m_string));
  1090. }
  1091. DeprecatedString NewObject::to_deprecated_string_impl(Bytecode::Executable const&) const
  1092. {
  1093. return "NewObject";
  1094. }
  1095. DeprecatedString NewRegExp::to_deprecated_string_impl(Bytecode::Executable const& executable) const
  1096. {
  1097. return DeprecatedString::formatted("NewRegExp source:{} (\"{}\") flags:{} (\"{}\")", m_source_index, executable.get_string(m_source_index), m_flags_index, executable.get_string(m_flags_index));
  1098. }
  1099. DeprecatedString CopyObjectExcludingProperties::to_deprecated_string_impl(Bytecode::Executable const&) const
  1100. {
  1101. StringBuilder builder;
  1102. builder.appendff("CopyObjectExcludingProperties from:{}", m_from_object);
  1103. if (m_excluded_names_count != 0) {
  1104. builder.append(" excluding:["sv);
  1105. builder.join(", "sv, ReadonlySpan<Register>(m_excluded_names, m_excluded_names_count));
  1106. builder.append(']');
  1107. }
  1108. return builder.to_deprecated_string();
  1109. }
  1110. DeprecatedString ConcatString::to_deprecated_string_impl(Bytecode::Executable const&) const
  1111. {
  1112. return DeprecatedString::formatted("ConcatString {}", m_lhs);
  1113. }
  1114. DeprecatedString GetCalleeAndThisFromEnvironment::to_deprecated_string_impl(Bytecode::Executable const& executable) const
  1115. {
  1116. return DeprecatedString::formatted("GetCalleeAndThisFromEnvironment {} -> callee: {}, this:{} ", executable.identifier_table->get(m_identifier), m_callee_reg, m_this_reg);
  1117. }
  1118. DeprecatedString GetVariable::to_deprecated_string_impl(Bytecode::Executable const& executable) const
  1119. {
  1120. return DeprecatedString::formatted("GetVariable {} ({})", m_identifier, executable.identifier_table->get(m_identifier));
  1121. }
  1122. DeprecatedString GetGlobal::to_deprecated_string_impl(Bytecode::Executable const& executable) const
  1123. {
  1124. return DeprecatedString::formatted("GetGlobal {} ({})", m_identifier, executable.identifier_table->get(m_identifier));
  1125. }
  1126. DeprecatedString GetLocal::to_deprecated_string_impl(Bytecode::Executable const&) const
  1127. {
  1128. return DeprecatedString::formatted("GetLocal {}", m_index);
  1129. }
  1130. DeprecatedString DeleteVariable::to_deprecated_string_impl(Bytecode::Executable const& executable) const
  1131. {
  1132. return DeprecatedString::formatted("DeleteVariable {} ({})", m_identifier, executable.identifier_table->get(m_identifier));
  1133. }
  1134. DeprecatedString CreateLexicalEnvironment::to_deprecated_string_impl(Bytecode::Executable const&) const
  1135. {
  1136. return "CreateLexicalEnvironment"sv;
  1137. }
  1138. DeprecatedString CreateVariable::to_deprecated_string_impl(Bytecode::Executable const& executable) const
  1139. {
  1140. auto mode_string = m_mode == EnvironmentMode::Lexical ? "Lexical" : "Variable";
  1141. return DeprecatedString::formatted("CreateVariable env:{} immutable:{} global:{} {} ({})", mode_string, m_is_immutable, m_is_global, m_identifier, executable.identifier_table->get(m_identifier));
  1142. }
  1143. DeprecatedString EnterObjectEnvironment::to_deprecated_string_impl(Executable const&) const
  1144. {
  1145. return DeprecatedString::formatted("EnterObjectEnvironment");
  1146. }
  1147. DeprecatedString SetVariable::to_deprecated_string_impl(Bytecode::Executable const& executable) const
  1148. {
  1149. auto initialization_mode_name = m_initialization_mode == InitializationMode::Initialize ? "Initialize" : "Set";
  1150. auto mode_string = m_mode == EnvironmentMode::Lexical ? "Lexical" : "Variable";
  1151. return DeprecatedString::formatted("SetVariable env:{} init:{} {} ({})", mode_string, initialization_mode_name, m_identifier, executable.identifier_table->get(m_identifier));
  1152. }
  1153. DeprecatedString SetLocal::to_deprecated_string_impl(Bytecode::Executable const&) const
  1154. {
  1155. return DeprecatedString::formatted("SetLocal {}", m_index);
  1156. }
  1157. static StringView property_kind_to_string(PropertyKind kind)
  1158. {
  1159. switch (kind) {
  1160. case PropertyKind::Getter:
  1161. return "getter"sv;
  1162. case PropertyKind::Setter:
  1163. return "setter"sv;
  1164. case PropertyKind::KeyValue:
  1165. return "key-value"sv;
  1166. case PropertyKind::DirectKeyValue:
  1167. return "direct-key-value"sv;
  1168. case PropertyKind::Spread:
  1169. return "spread"sv;
  1170. case PropertyKind::ProtoSetter:
  1171. return "proto-setter"sv;
  1172. }
  1173. VERIFY_NOT_REACHED();
  1174. }
  1175. DeprecatedString PutById::to_deprecated_string_impl(Bytecode::Executable const& executable) const
  1176. {
  1177. auto kind = property_kind_to_string(m_kind);
  1178. return DeprecatedString::formatted("PutById kind:{} base:{}, property:{} ({})", kind, m_base, m_property, executable.identifier_table->get(m_property));
  1179. }
  1180. DeprecatedString PutByIdWithThis::to_deprecated_string_impl(Bytecode::Executable const& executable) const
  1181. {
  1182. auto kind = property_kind_to_string(m_kind);
  1183. return DeprecatedString::formatted("PutByIdWithThis kind:{} base:{}, property:{} ({}) this_value:{}", kind, m_base, m_property, executable.identifier_table->get(m_property), m_this_value);
  1184. }
  1185. DeprecatedString PutPrivateById::to_deprecated_string_impl(Bytecode::Executable const& executable) const
  1186. {
  1187. auto kind = property_kind_to_string(m_kind);
  1188. return DeprecatedString::formatted("PutPrivateById kind:{} base:{}, property:{} ({})", kind, m_base, m_property, executable.identifier_table->get(m_property));
  1189. }
  1190. DeprecatedString GetById::to_deprecated_string_impl(Bytecode::Executable const& executable) const
  1191. {
  1192. return DeprecatedString::formatted("GetById {} ({})", m_property, executable.identifier_table->get(m_property));
  1193. }
  1194. DeprecatedString GetByIdWithThis::to_deprecated_string_impl(Bytecode::Executable const& executable) const
  1195. {
  1196. return DeprecatedString::formatted("GetByIdWithThis {} ({}) this_value:{}", m_property, executable.identifier_table->get(m_property), m_this_value);
  1197. }
  1198. DeprecatedString GetPrivateById::to_deprecated_string_impl(Bytecode::Executable const& executable) const
  1199. {
  1200. return DeprecatedString::formatted("GetPrivateById {} ({})", m_property, executable.identifier_table->get(m_property));
  1201. }
  1202. DeprecatedString HasPrivateId::to_deprecated_string_impl(Bytecode::Executable const& executable) const
  1203. {
  1204. return DeprecatedString::formatted("HasPrivateId {} ({})", m_property, executable.identifier_table->get(m_property));
  1205. }
  1206. DeprecatedString DeleteById::to_deprecated_string_impl(Bytecode::Executable const& executable) const
  1207. {
  1208. return DeprecatedString::formatted("DeleteById {} ({})", m_property, executable.identifier_table->get(m_property));
  1209. }
  1210. DeprecatedString DeleteByIdWithThis::to_deprecated_string_impl(Bytecode::Executable const& executable) const
  1211. {
  1212. return DeprecatedString::formatted("DeleteByIdWithThis {} ({}) this_value:{}", m_property, executable.identifier_table->get(m_property), m_this_value);
  1213. }
  1214. DeprecatedString Jump::to_deprecated_string_impl(Bytecode::Executable const&) const
  1215. {
  1216. if (m_true_target.has_value())
  1217. return DeprecatedString::formatted("Jump {}", *m_true_target);
  1218. return DeprecatedString::formatted("Jump <empty>");
  1219. }
  1220. DeprecatedString JumpConditional::to_deprecated_string_impl(Bytecode::Executable const&) const
  1221. {
  1222. auto true_string = m_true_target.has_value() ? DeprecatedString::formatted("{}", *m_true_target) : "<empty>";
  1223. auto false_string = m_false_target.has_value() ? DeprecatedString::formatted("{}", *m_false_target) : "<empty>";
  1224. return DeprecatedString::formatted("JumpConditional true:{} false:{}", true_string, false_string);
  1225. }
  1226. DeprecatedString JumpNullish::to_deprecated_string_impl(Bytecode::Executable const&) const
  1227. {
  1228. auto true_string = m_true_target.has_value() ? DeprecatedString::formatted("{}", *m_true_target) : "<empty>";
  1229. auto false_string = m_false_target.has_value() ? DeprecatedString::formatted("{}", *m_false_target) : "<empty>";
  1230. return DeprecatedString::formatted("JumpNullish null:{} nonnull:{}", true_string, false_string);
  1231. }
  1232. DeprecatedString JumpUndefined::to_deprecated_string_impl(Bytecode::Executable const&) const
  1233. {
  1234. auto true_string = m_true_target.has_value() ? DeprecatedString::formatted("{}", *m_true_target) : "<empty>";
  1235. auto false_string = m_false_target.has_value() ? DeprecatedString::formatted("{}", *m_false_target) : "<empty>";
  1236. return DeprecatedString::formatted("JumpUndefined undefined:{} not undefined:{}", true_string, false_string);
  1237. }
  1238. static StringView call_type_to_string(CallType type)
  1239. {
  1240. switch (type) {
  1241. case CallType::Call:
  1242. return ""sv;
  1243. case CallType::Construct:
  1244. return " (Construct)"sv;
  1245. case CallType::DirectEval:
  1246. return " (DirectEval)"sv;
  1247. }
  1248. VERIFY_NOT_REACHED();
  1249. }
  1250. DeprecatedString Call::to_deprecated_string_impl(Bytecode::Executable const& executable) const
  1251. {
  1252. auto type = call_type_to_string(m_type);
  1253. if (m_expression_string.has_value())
  1254. return DeprecatedString::formatted("Call{} callee:{}, this:{}, first_arg:{} ({})", type, m_callee, m_this_value, m_first_argument, executable.get_string(m_expression_string.value()));
  1255. return DeprecatedString::formatted("Call{} callee:{}, this:{}, first_arg:{}", type, m_callee, m_first_argument, m_this_value);
  1256. }
  1257. DeprecatedString CallWithArgumentArray::to_deprecated_string_impl(Bytecode::Executable const& executable) const
  1258. {
  1259. auto type = call_type_to_string(m_type);
  1260. if (m_expression_string.has_value())
  1261. return DeprecatedString::formatted("CallWithArgumentArray{} callee:{}, this:{}, arguments:[...acc] ({})", type, m_callee, m_this_value, executable.get_string(m_expression_string.value()));
  1262. return DeprecatedString::formatted("CallWithArgumentArray{} callee:{}, this:{}, arguments:[...acc]", type, m_callee, m_this_value);
  1263. }
  1264. DeprecatedString SuperCallWithArgumentArray::to_deprecated_string_impl(Bytecode::Executable const&) const
  1265. {
  1266. return "SuperCallWithArgumentArray arguments:[...acc]"sv;
  1267. }
  1268. DeprecatedString NewFunction::to_deprecated_string_impl(Bytecode::Executable const&) const
  1269. {
  1270. StringBuilder builder;
  1271. builder.append("NewFunction"sv);
  1272. if (m_function_node.has_name())
  1273. builder.appendff(" name:{}"sv, m_function_node.name());
  1274. if (m_lhs_name.has_value())
  1275. builder.appendff(" lhs_name:{}"sv, m_lhs_name.value());
  1276. if (m_home_object.has_value())
  1277. builder.appendff(" home_object:{}"sv, m_home_object.value());
  1278. return builder.to_deprecated_string();
  1279. }
  1280. DeprecatedString NewClass::to_deprecated_string_impl(Bytecode::Executable const&) const
  1281. {
  1282. StringBuilder builder;
  1283. auto name = m_class_expression.name();
  1284. builder.appendff("NewClass '{}'"sv, name.is_null() ? ""sv : name);
  1285. if (m_lhs_name.has_value())
  1286. builder.appendff(" lhs_name:{}"sv, m_lhs_name.value());
  1287. return builder.to_deprecated_string();
  1288. }
  1289. DeprecatedString Return::to_deprecated_string_impl(Bytecode::Executable const&) const
  1290. {
  1291. return "Return";
  1292. }
  1293. DeprecatedString Increment::to_deprecated_string_impl(Bytecode::Executable const&) const
  1294. {
  1295. return "Increment";
  1296. }
  1297. DeprecatedString Decrement::to_deprecated_string_impl(Bytecode::Executable const&) const
  1298. {
  1299. return "Decrement";
  1300. }
  1301. DeprecatedString Throw::to_deprecated_string_impl(Bytecode::Executable const&) const
  1302. {
  1303. return "Throw";
  1304. }
  1305. DeprecatedString ThrowIfNotObject::to_deprecated_string_impl(Bytecode::Executable const&) const
  1306. {
  1307. return "ThrowIfNotObject";
  1308. }
  1309. DeprecatedString ThrowIfNullish::to_deprecated_string_impl(Bytecode::Executable const&) const
  1310. {
  1311. return "ThrowIfNullish";
  1312. }
  1313. DeprecatedString EnterUnwindContext::to_deprecated_string_impl(Bytecode::Executable const&) const
  1314. {
  1315. auto handler_string = m_handler_target.has_value() ? DeprecatedString::formatted("{}", *m_handler_target) : "<empty>";
  1316. auto finalizer_string = m_finalizer_target.has_value() ? DeprecatedString::formatted("{}", *m_finalizer_target) : "<empty>";
  1317. return DeprecatedString::formatted("EnterUnwindContext handler:{} finalizer:{} entry:{}", handler_string, finalizer_string, m_entry_point);
  1318. }
  1319. DeprecatedString ScheduleJump::to_deprecated_string_impl(Bytecode::Executable const&) const
  1320. {
  1321. return DeprecatedString::formatted("ScheduleJump {}", m_target);
  1322. }
  1323. DeprecatedString LeaveLexicalEnvironment::to_deprecated_string_impl(Bytecode::Executable const&) const
  1324. {
  1325. return "LeaveLexicalEnvironment"sv;
  1326. }
  1327. DeprecatedString LeaveUnwindContext::to_deprecated_string_impl(Bytecode::Executable const&) const
  1328. {
  1329. return "LeaveUnwindContext";
  1330. }
  1331. DeprecatedString ContinuePendingUnwind::to_deprecated_string_impl(Bytecode::Executable const&) const
  1332. {
  1333. return DeprecatedString::formatted("ContinuePendingUnwind resume:{}", m_resume_target);
  1334. }
  1335. DeprecatedString Yield::to_deprecated_string_impl(Bytecode::Executable const&) const
  1336. {
  1337. if (m_continuation_label.has_value())
  1338. return DeprecatedString::formatted("Yield continuation:@{}", m_continuation_label->block().name());
  1339. return DeprecatedString::formatted("Yield return");
  1340. }
  1341. DeprecatedString Await::to_deprecated_string_impl(Bytecode::Executable const&) const
  1342. {
  1343. return DeprecatedString::formatted("Await continuation:@{}", m_continuation_label.block().name());
  1344. }
  1345. DeprecatedString GetByValue::to_deprecated_string_impl(Bytecode::Executable const&) const
  1346. {
  1347. return DeprecatedString::formatted("GetByValue base:{}", m_base);
  1348. }
  1349. DeprecatedString GetByValueWithThis::to_deprecated_string_impl(Bytecode::Executable const&) const
  1350. {
  1351. return DeprecatedString::formatted("GetByValueWithThis base:{} this_value:{}", m_base, m_this_value);
  1352. }
  1353. DeprecatedString PutByValue::to_deprecated_string_impl(Bytecode::Executable const&) const
  1354. {
  1355. auto kind = property_kind_to_string(m_kind);
  1356. return DeprecatedString::formatted("PutByValue kind:{} base:{}, property:{}", kind, m_base, m_property);
  1357. }
  1358. DeprecatedString PutByValueWithThis::to_deprecated_string_impl(Bytecode::Executable const&) const
  1359. {
  1360. auto kind = property_kind_to_string(m_kind);
  1361. return DeprecatedString::formatted("PutByValueWithThis kind:{} base:{}, property:{} this_value:{}", kind, m_base, m_property, m_this_value);
  1362. }
  1363. DeprecatedString DeleteByValue::to_deprecated_string_impl(Bytecode::Executable const&) const
  1364. {
  1365. return DeprecatedString::formatted("DeleteByValue base:{}", m_base);
  1366. }
  1367. DeprecatedString DeleteByValueWithThis::to_deprecated_string_impl(Bytecode::Executable const&) const
  1368. {
  1369. return DeprecatedString::formatted("DeleteByValueWithThis base:{} this_value:{}", m_base, m_this_value);
  1370. }
  1371. DeprecatedString GetIterator::to_deprecated_string_impl(Executable const&) const
  1372. {
  1373. auto hint = m_hint == IteratorHint::Sync ? "sync" : "async";
  1374. return DeprecatedString::formatted("GetIterator hint:{}", hint);
  1375. }
  1376. DeprecatedString GetMethod::to_deprecated_string_impl(Bytecode::Executable const& executable) const
  1377. {
  1378. return DeprecatedString::formatted("GetMethod {} ({})", m_property, executable.identifier_table->get(m_property));
  1379. }
  1380. DeprecatedString GetObjectPropertyIterator::to_deprecated_string_impl(Bytecode::Executable const&) const
  1381. {
  1382. return "GetObjectPropertyIterator";
  1383. }
  1384. DeprecatedString IteratorClose::to_deprecated_string_impl(Bytecode::Executable const&) const
  1385. {
  1386. if (!m_completion_value.has_value())
  1387. return DeprecatedString::formatted("IteratorClose completion_type={} completion_value=<empty>", to_underlying(m_completion_type));
  1388. auto completion_value_string = m_completion_value->to_string_without_side_effects();
  1389. return DeprecatedString::formatted("IteratorClose completion_type={} completion_value={}", to_underlying(m_completion_type), completion_value_string);
  1390. }
  1391. DeprecatedString AsyncIteratorClose::to_deprecated_string_impl(Bytecode::Executable const&) const
  1392. {
  1393. if (!m_completion_value.has_value())
  1394. return DeprecatedString::formatted("AsyncIteratorClose completion_type={} completion_value=<empty>", to_underlying(m_completion_type));
  1395. auto completion_value_string = m_completion_value->to_string_without_side_effects();
  1396. return DeprecatedString::formatted("AsyncIteratorClose completion_type={} completion_value={}", to_underlying(m_completion_type), completion_value_string);
  1397. }
  1398. DeprecatedString IteratorNext::to_deprecated_string_impl(Executable const&) const
  1399. {
  1400. return "IteratorNext";
  1401. }
  1402. DeprecatedString IteratorResultDone::to_deprecated_string_impl(Executable const&) const
  1403. {
  1404. return "IteratorResultDone";
  1405. }
  1406. DeprecatedString IteratorResultValue::to_deprecated_string_impl(Executable const&) const
  1407. {
  1408. return "IteratorResultValue";
  1409. }
  1410. DeprecatedString ResolveThisBinding::to_deprecated_string_impl(Bytecode::Executable const&) const
  1411. {
  1412. return "ResolveThisBinding"sv;
  1413. }
  1414. DeprecatedString ResolveSuperBase::to_deprecated_string_impl(Bytecode::Executable const&) const
  1415. {
  1416. return "ResolveSuperBase"sv;
  1417. }
  1418. DeprecatedString GetNewTarget::to_deprecated_string_impl(Bytecode::Executable const&) const
  1419. {
  1420. return "GetNewTarget"sv;
  1421. }
  1422. DeprecatedString GetImportMeta::to_deprecated_string_impl(Bytecode::Executable const&) const
  1423. {
  1424. return "GetImportMeta"sv;
  1425. }
  1426. DeprecatedString TypeofVariable::to_deprecated_string_impl(Bytecode::Executable const& executable) const
  1427. {
  1428. return DeprecatedString::formatted("TypeofVariable {} ({})", m_identifier, executable.identifier_table->get(m_identifier));
  1429. }
  1430. DeprecatedString TypeofLocal::to_deprecated_string_impl(Bytecode::Executable const&) const
  1431. {
  1432. return DeprecatedString::formatted("TypeofLocal {}", m_index);
  1433. }
  1434. DeprecatedString ToNumeric::to_deprecated_string_impl(Bytecode::Executable const&) const
  1435. {
  1436. return "ToNumeric"sv;
  1437. }
  1438. DeprecatedString BlockDeclarationInstantiation::to_deprecated_string_impl(Bytecode::Executable const&) const
  1439. {
  1440. return "BlockDeclarationInstantiation"sv;
  1441. }
  1442. DeprecatedString ImportCall::to_deprecated_string_impl(Bytecode::Executable const&) const
  1443. {
  1444. return DeprecatedString::formatted("ImportCall specifier:{} options:{}"sv, m_specifier, m_options);
  1445. }
  1446. }