Interpreter.cpp 70 KB

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