Op.cpp 71 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710
  1. /*
  2. * Copyright (c) 2021-2023, Andreas Kling <kling@serenityos.org>
  3. * Copyright (c) 2021-2023, Linus Groh <linusg@serenityos.org>
  4. * Copyright (c) 2021, Gunnar Beutner <gbeutner@serenityos.org>
  5. *
  6. * SPDX-License-Identifier: BSD-2-Clause
  7. */
  8. #include <AK/HashTable.h>
  9. #include <LibJS/AST.h>
  10. #include <LibJS/Bytecode/Interpreter.h>
  11. #include <LibJS/Bytecode/Op.h>
  12. #include <LibJS/Runtime/AbstractOperations.h>
  13. #include <LibJS/Runtime/Array.h>
  14. #include <LibJS/Runtime/BigInt.h>
  15. #include <LibJS/Runtime/DeclarativeEnvironment.h>
  16. #include <LibJS/Runtime/ECMAScriptFunctionObject.h>
  17. #include <LibJS/Runtime/Environment.h>
  18. #include <LibJS/Runtime/FunctionEnvironment.h>
  19. #include <LibJS/Runtime/GlobalEnvironment.h>
  20. #include <LibJS/Runtime/GlobalObject.h>
  21. #include <LibJS/Runtime/Iterator.h>
  22. #include <LibJS/Runtime/IteratorOperations.h>
  23. #include <LibJS/Runtime/NativeFunction.h>
  24. #include <LibJS/Runtime/ObjectEnvironment.h>
  25. #include <LibJS/Runtime/Reference.h>
  26. #include <LibJS/Runtime/RegExpObject.h>
  27. #include <LibJS/Runtime/Value.h>
  28. namespace JS::Bytecode {
  29. DeprecatedString Instruction::to_deprecated_string(Bytecode::Executable const& executable) const
  30. {
  31. #define __BYTECODE_OP(op) \
  32. case Instruction::Type::op: \
  33. return static_cast<Bytecode::Op::op const&>(*this).to_deprecated_string_impl(executable);
  34. switch (type()) {
  35. ENUMERATE_BYTECODE_OPS(__BYTECODE_OP)
  36. default:
  37. VERIFY_NOT_REACHED();
  38. }
  39. #undef __BYTECODE_OP
  40. }
  41. }
  42. namespace JS::Bytecode::Op {
  43. static ThrowCompletionOr<void> put_by_property_key(VM& vm, Value base, Value value, PropertyKey name, PropertyKind kind)
  44. {
  45. auto object = TRY(base.to_object(vm));
  46. if (kind == PropertyKind::Getter || kind == PropertyKind::Setter) {
  47. // The generator should only pass us functions for getters and setters.
  48. VERIFY(value.is_function());
  49. }
  50. switch (kind) {
  51. case PropertyKind::Getter: {
  52. auto& function = value.as_function();
  53. if (function.name().is_empty() && is<ECMAScriptFunctionObject>(function))
  54. static_cast<ECMAScriptFunctionObject*>(&function)->set_name(DeprecatedString::formatted("get {}", name));
  55. object->define_direct_accessor(name, &function, nullptr, Attribute::Configurable | Attribute::Enumerable);
  56. break;
  57. }
  58. case PropertyKind::Setter: {
  59. auto& function = value.as_function();
  60. if (function.name().is_empty() && is<ECMAScriptFunctionObject>(function))
  61. static_cast<ECMAScriptFunctionObject*>(&function)->set_name(DeprecatedString::formatted("set {}", name));
  62. object->define_direct_accessor(name, nullptr, &function, Attribute::Configurable | Attribute::Enumerable);
  63. break;
  64. }
  65. case PropertyKind::KeyValue: {
  66. bool succeeded = TRY(object->internal_set(name, value, base));
  67. if (!succeeded && vm.in_strict_mode())
  68. return vm.throw_completion<TypeError>(ErrorType::ReferenceNullishSetProperty, name, TRY_OR_THROW_OOM(vm, base.to_string_without_side_effects()));
  69. break;
  70. }
  71. case PropertyKind::Spread:
  72. TRY(object->copy_data_properties(vm, value, {}));
  73. break;
  74. case PropertyKind::ProtoSetter:
  75. if (value.is_object() || value.is_null())
  76. MUST(object->internal_set_prototype_of(value.is_object() ? &value.as_object() : nullptr));
  77. break;
  78. }
  79. return {};
  80. }
  81. ThrowCompletionOr<void> Load::execute_impl(Bytecode::Interpreter& interpreter) const
  82. {
  83. interpreter.accumulator() = interpreter.reg(m_src);
  84. return {};
  85. }
  86. ThrowCompletionOr<void> LoadImmediate::execute_impl(Bytecode::Interpreter& interpreter) const
  87. {
  88. interpreter.accumulator() = m_value;
  89. return {};
  90. }
  91. ThrowCompletionOr<void> Store::execute_impl(Bytecode::Interpreter& interpreter) const
  92. {
  93. interpreter.reg(m_dst) = interpreter.accumulator();
  94. return {};
  95. }
  96. static ThrowCompletionOr<Value> abstract_inequals(VM& vm, Value src1, Value src2)
  97. {
  98. return Value(!TRY(is_loosely_equal(vm, src1, src2)));
  99. }
  100. static ThrowCompletionOr<Value> abstract_equals(VM& vm, Value src1, Value src2)
  101. {
  102. return Value(TRY(is_loosely_equal(vm, src1, src2)));
  103. }
  104. static ThrowCompletionOr<Value> typed_inequals(VM&, Value src1, Value src2)
  105. {
  106. return Value(!is_strictly_equal(src1, src2));
  107. }
  108. static ThrowCompletionOr<Value> typed_equals(VM&, Value src1, Value src2)
  109. {
  110. return Value(is_strictly_equal(src1, src2));
  111. }
  112. #define JS_DEFINE_COMMON_BINARY_OP(OpTitleCase, op_snake_case) \
  113. ThrowCompletionOr<void> OpTitleCase::execute_impl(Bytecode::Interpreter& interpreter) const \
  114. { \
  115. auto& vm = interpreter.vm(); \
  116. auto lhs = interpreter.reg(m_lhs_reg); \
  117. auto rhs = interpreter.accumulator(); \
  118. interpreter.accumulator() = TRY(op_snake_case(vm, lhs, rhs)); \
  119. return {}; \
  120. } \
  121. DeprecatedString OpTitleCase::to_deprecated_string_impl(Bytecode::Executable const&) const \
  122. { \
  123. return DeprecatedString::formatted(#OpTitleCase " {}", m_lhs_reg); \
  124. }
  125. JS_ENUMERATE_COMMON_BINARY_OPS(JS_DEFINE_COMMON_BINARY_OP)
  126. static ThrowCompletionOr<Value> not_(VM&, Value value)
  127. {
  128. return Value(!value.to_boolean());
  129. }
  130. static ThrowCompletionOr<Value> typeof_(VM& vm, Value value)
  131. {
  132. return MUST_OR_THROW_OOM(PrimitiveString::create(vm, value.typeof()));
  133. }
  134. #define JS_DEFINE_COMMON_UNARY_OP(OpTitleCase, op_snake_case) \
  135. ThrowCompletionOr<void> OpTitleCase::execute_impl(Bytecode::Interpreter& interpreter) const \
  136. { \
  137. auto& vm = interpreter.vm(); \
  138. interpreter.accumulator() = TRY(op_snake_case(vm, interpreter.accumulator())); \
  139. return {}; \
  140. } \
  141. DeprecatedString OpTitleCase::to_deprecated_string_impl(Bytecode::Executable const&) const \
  142. { \
  143. return #OpTitleCase; \
  144. }
  145. JS_ENUMERATE_COMMON_UNARY_OPS(JS_DEFINE_COMMON_UNARY_OP)
  146. ThrowCompletionOr<void> NewBigInt::execute_impl(Bytecode::Interpreter& interpreter) const
  147. {
  148. auto& vm = interpreter.vm();
  149. interpreter.accumulator() = BigInt::create(vm, m_bigint);
  150. return {};
  151. }
  152. ThrowCompletionOr<void> NewArray::execute_impl(Bytecode::Interpreter& interpreter) const
  153. {
  154. auto array = MUST(Array::create(interpreter.realm(), 0));
  155. for (size_t i = 0; i < m_element_count; i++) {
  156. auto& value = interpreter.reg(Register(m_elements[0].index() + i));
  157. array->indexed_properties().put(i, value, default_attributes);
  158. }
  159. interpreter.accumulator() = array;
  160. return {};
  161. }
  162. ThrowCompletionOr<void> Append::execute_impl(Bytecode::Interpreter& interpreter) const
  163. {
  164. // Note: This OpCode is used to construct array literals and argument arrays for calls,
  165. // containing at least one spread element,
  166. // Iterating over such a spread element to unpack it has to be visible by
  167. // the user courtesy of
  168. // (1) https://tc39.es/ecma262/#sec-runtime-semantics-arrayaccumulation
  169. // SpreadElement : ... AssignmentExpression
  170. // 1. Let spreadRef be ? Evaluation of AssignmentExpression.
  171. // 2. Let spreadObj be ? GetValue(spreadRef).
  172. // 3. Let iteratorRecord be ? GetIterator(spreadObj).
  173. // 4. Repeat,
  174. // a. Let next be ? IteratorStep(iteratorRecord).
  175. // b. If next is false, return nextIndex.
  176. // c. Let nextValue be ? IteratorValue(next).
  177. // d. Perform ! CreateDataPropertyOrThrow(array, ! ToString(𝔽(nextIndex)), nextValue).
  178. // e. Set nextIndex to nextIndex + 1.
  179. // (2) https://tc39.es/ecma262/#sec-runtime-semantics-argumentlistevaluation
  180. // ArgumentList : ... AssignmentExpression
  181. // 1. Let list be a new empty List.
  182. // 2. Let spreadRef be ? Evaluation of AssignmentExpression.
  183. // 3. Let spreadObj be ? GetValue(spreadRef).
  184. // 4. Let iteratorRecord be ? GetIterator(spreadObj).
  185. // 5. Repeat,
  186. // a. Let next be ? IteratorStep(iteratorRecord).
  187. // b. If next is false, return list.
  188. // c. Let nextArg be ? IteratorValue(next).
  189. // d. Append nextArg to list.
  190. // ArgumentList : ArgumentList , ... AssignmentExpression
  191. // 1. Let precedingArgs be ? ArgumentListEvaluation of ArgumentList.
  192. // 2. Let spreadRef be ? Evaluation of AssignmentExpression.
  193. // 3. Let iteratorRecord be ? GetIterator(? GetValue(spreadRef)).
  194. // 4. Repeat,
  195. // a. Let next be ? IteratorStep(iteratorRecord).
  196. // b. If next is false, return precedingArgs.
  197. // c. Let nextArg be ? IteratorValue(next).
  198. // d. Append nextArg to precedingArgs.
  199. auto& vm = interpreter.vm();
  200. // Note: We know from codegen, that lhs is a plain array with only indexed properties
  201. auto& lhs = interpreter.reg(m_lhs).as_array();
  202. auto lhs_size = lhs.indexed_properties().array_like_size();
  203. auto rhs = interpreter.accumulator();
  204. if (m_is_spread) {
  205. // ...rhs
  206. size_t i = lhs_size;
  207. TRY(get_iterator_values(vm, rhs, [&i, &lhs](Value iterator_value) -> Optional<Completion> {
  208. lhs.indexed_properties().put(i, iterator_value, default_attributes);
  209. ++i;
  210. return {};
  211. }));
  212. } else {
  213. lhs.indexed_properties().put(lhs_size, rhs, default_attributes);
  214. }
  215. return {};
  216. }
  217. ThrowCompletionOr<void> ImportCall::execute_impl(Bytecode::Interpreter& interpreter) const
  218. {
  219. auto& vm = interpreter.vm();
  220. auto specifier = interpreter.reg(m_specifier);
  221. auto options_value = interpreter.reg(m_options);
  222. interpreter.accumulator() = TRY(perform_import_call(vm, specifier, options_value));
  223. return {};
  224. }
  225. void ImportCall::replace_references_impl(Register from, Register to)
  226. {
  227. if (m_specifier == from)
  228. m_specifier = to;
  229. if (m_options == from)
  230. m_options = to;
  231. }
  232. // FIXME: Since the accumulator is a Value, we store an object there and have to convert back and forth between that an Iterator records. Not great.
  233. // Make sure to put this into the accumulator before the iterator object disappears from the stack to prevent the members from being GC'd.
  234. static Object* iterator_to_object(VM& vm, IteratorRecord iterator)
  235. {
  236. auto& realm = *vm.current_realm();
  237. auto object = Object::create(realm, nullptr);
  238. object->define_direct_property(vm.names.iterator, iterator.iterator, 0);
  239. object->define_direct_property(vm.names.next, iterator.next_method, 0);
  240. object->define_direct_property(vm.names.done, Value(iterator.done), 0);
  241. return object;
  242. }
  243. static IteratorRecord object_to_iterator(VM& vm, Object& object)
  244. {
  245. return IteratorRecord {
  246. .iterator = &MUST(object.get(vm.names.iterator)).as_object(),
  247. .next_method = MUST(object.get(vm.names.next)),
  248. .done = MUST(object.get(vm.names.done)).as_bool()
  249. };
  250. }
  251. ThrowCompletionOr<void> IteratorToArray::execute_impl(Bytecode::Interpreter& interpreter) const
  252. {
  253. auto& vm = interpreter.vm();
  254. auto iterator_object = TRY(interpreter.accumulator().to_object(vm));
  255. auto iterator = object_to_iterator(vm, iterator_object);
  256. auto array = MUST(Array::create(interpreter.realm(), 0));
  257. size_t index = 0;
  258. while (true) {
  259. auto iterator_result = TRY(iterator_next(vm, iterator));
  260. auto complete = TRY(iterator_complete(vm, iterator_result));
  261. if (complete) {
  262. interpreter.accumulator() = array;
  263. return {};
  264. }
  265. auto value = TRY(iterator_value(vm, iterator_result));
  266. MUST(array->create_data_property_or_throw(index, value));
  267. index++;
  268. }
  269. return {};
  270. }
  271. ThrowCompletionOr<void> NewString::execute_impl(Bytecode::Interpreter& interpreter) const
  272. {
  273. interpreter.accumulator() = PrimitiveString::create(interpreter.vm(), interpreter.current_executable().get_string(m_string));
  274. return {};
  275. }
  276. ThrowCompletionOr<void> NewObject::execute_impl(Bytecode::Interpreter& interpreter) const
  277. {
  278. auto& vm = interpreter.vm();
  279. auto& realm = *vm.current_realm();
  280. interpreter.accumulator() = Object::create(realm, realm.intrinsics().object_prototype());
  281. return {};
  282. }
  283. ThrowCompletionOr<void> NewRegExp::execute_impl(Bytecode::Interpreter& interpreter) const
  284. {
  285. auto& vm = interpreter.vm();
  286. auto source = interpreter.current_executable().get_string(m_source_index);
  287. auto flags = interpreter.current_executable().get_string(m_flags_index);
  288. interpreter.accumulator() = TRY(regexp_create(vm, PrimitiveString::create(vm, source), PrimitiveString::create(vm, flags)));
  289. return {};
  290. }
  291. #define JS_DEFINE_NEW_BUILTIN_ERROR_OP(ErrorName) \
  292. ThrowCompletionOr<void> New##ErrorName::execute_impl(Bytecode::Interpreter& interpreter) const \
  293. { \
  294. auto& vm = interpreter.vm(); \
  295. auto& realm = *vm.current_realm(); \
  296. interpreter.accumulator() = MUST_OR_THROW_OOM(ErrorName::create(realm, interpreter.current_executable().get_string(m_error_string))); \
  297. return {}; \
  298. } \
  299. DeprecatedString New##ErrorName::to_deprecated_string_impl(Bytecode::Executable const& executable) const \
  300. { \
  301. return DeprecatedString::formatted("New" #ErrorName " {} (\"{}\")", m_error_string, executable.string_table->get(m_error_string)); \
  302. }
  303. JS_ENUMERATE_NEW_BUILTIN_ERROR_OPS(JS_DEFINE_NEW_BUILTIN_ERROR_OP)
  304. ThrowCompletionOr<void> CopyObjectExcludingProperties::execute_impl(Bytecode::Interpreter& interpreter) const
  305. {
  306. auto& vm = interpreter.vm();
  307. auto& realm = *vm.current_realm();
  308. auto from_object = TRY(interpreter.reg(m_from_object).to_object(vm));
  309. auto to_object = Object::create(realm, realm.intrinsics().object_prototype());
  310. HashTable<PropertyKey> excluded_names;
  311. for (size_t i = 0; i < m_excluded_names_count; ++i) {
  312. excluded_names.set(TRY(interpreter.reg(m_excluded_names[i]).to_property_key(vm)));
  313. }
  314. auto own_keys = TRY(from_object->internal_own_property_keys());
  315. for (auto& key : own_keys) {
  316. auto property_key = TRY(key.to_property_key(vm));
  317. if (!excluded_names.contains(property_key)) {
  318. auto property_value = TRY(from_object->get(property_key));
  319. to_object->define_direct_property(property_key, property_value, JS::default_attributes);
  320. }
  321. }
  322. interpreter.accumulator() = to_object;
  323. return {};
  324. }
  325. ThrowCompletionOr<void> ConcatString::execute_impl(Bytecode::Interpreter& interpreter) const
  326. {
  327. auto& vm = interpreter.vm();
  328. auto string = TRY(interpreter.accumulator().to_primitive_string(vm));
  329. interpreter.reg(m_lhs) = PrimitiveString::create(vm, interpreter.reg(m_lhs).as_string(), string);
  330. return {};
  331. }
  332. ThrowCompletionOr<void> GetVariable::execute_impl(Bytecode::Interpreter& interpreter) const
  333. {
  334. auto& vm = interpreter.vm();
  335. auto get_reference = [&]() -> ThrowCompletionOr<Reference> {
  336. auto const& string = interpreter.current_executable().get_identifier(m_identifier);
  337. if (m_cached_environment_coordinate.has_value()) {
  338. Environment* environment = nullptr;
  339. bool coordinate_screwed_by_delete_in_global_environment = false;
  340. if (m_cached_environment_coordinate->index == EnvironmentCoordinate::global_marker) {
  341. environment = &interpreter.vm().current_realm()->global_environment();
  342. coordinate_screwed_by_delete_in_global_environment = !TRY(environment->has_binding(string));
  343. } else {
  344. environment = vm.running_execution_context().lexical_environment;
  345. for (size_t i = 0; i < m_cached_environment_coordinate->hops; ++i)
  346. environment = environment->outer_environment();
  347. VERIFY(environment);
  348. VERIFY(environment->is_declarative_environment());
  349. }
  350. if (!coordinate_screwed_by_delete_in_global_environment && !environment->is_permanently_screwed_by_eval()) {
  351. return Reference { *environment, string, vm.in_strict_mode(), m_cached_environment_coordinate };
  352. }
  353. m_cached_environment_coordinate = {};
  354. }
  355. auto reference = TRY(vm.resolve_binding(string));
  356. if (reference.environment_coordinate().has_value())
  357. m_cached_environment_coordinate = reference.environment_coordinate();
  358. return reference;
  359. };
  360. auto reference = TRY(get_reference());
  361. interpreter.accumulator() = TRY(reference.get_value(vm));
  362. return {};
  363. }
  364. ThrowCompletionOr<void> GetLocal::execute_impl(Bytecode::Interpreter& interpreter) const
  365. {
  366. auto& vm = interpreter.vm();
  367. if (vm.running_execution_context().local_variables[m_index].is_empty()) {
  368. auto const& variable_name = vm.running_execution_context().function->local_variables_names()[m_index];
  369. return interpreter.vm().throw_completion<ReferenceError>(ErrorType::BindingNotInitialized, variable_name);
  370. }
  371. interpreter.accumulator() = vm.running_execution_context().local_variables[m_index];
  372. return {};
  373. }
  374. ThrowCompletionOr<void> DeleteVariable::execute_impl(Bytecode::Interpreter& interpreter) const
  375. {
  376. auto& vm = interpreter.vm();
  377. auto const& string = interpreter.current_executable().get_identifier(m_identifier);
  378. auto reference = TRY(vm.resolve_binding(string));
  379. interpreter.accumulator() = Value(TRY(reference.delete_(vm)));
  380. return {};
  381. }
  382. ThrowCompletionOr<void> CreateLexicalEnvironment::execute_impl(Bytecode::Interpreter& interpreter) const
  383. {
  384. auto make_and_swap_envs = [&](auto& old_environment) {
  385. GCPtr<Environment> environment = new_declarative_environment(*old_environment).ptr();
  386. swap(old_environment, environment);
  387. return environment;
  388. };
  389. interpreter.saved_lexical_environment_stack().append(make_and_swap_envs(interpreter.vm().running_execution_context().lexical_environment));
  390. return {};
  391. }
  392. ThrowCompletionOr<void> EnterObjectEnvironment::execute_impl(Bytecode::Interpreter& interpreter) const
  393. {
  394. auto& vm = interpreter.vm();
  395. auto& old_environment = vm.running_execution_context().lexical_environment;
  396. interpreter.saved_lexical_environment_stack().append(old_environment);
  397. auto object = TRY(interpreter.accumulator().to_object(vm));
  398. vm.running_execution_context().lexical_environment = new_object_environment(object, true, old_environment);
  399. return {};
  400. }
  401. ThrowCompletionOr<void> CreateVariable::execute_impl(Bytecode::Interpreter& interpreter) const
  402. {
  403. auto& vm = interpreter.vm();
  404. auto const& name = interpreter.current_executable().get_identifier(m_identifier);
  405. if (m_mode == EnvironmentMode::Lexical) {
  406. VERIFY(!m_is_global);
  407. // Note: This is papering over an issue where "FunctionDeclarationInstantiation" creates these bindings for us.
  408. // Instead of crashing in there, we'll just raise an exception here.
  409. if (TRY(vm.lexical_environment()->has_binding(name)))
  410. return vm.throw_completion<InternalError>(TRY_OR_THROW_OOM(vm, String::formatted("Lexical environment already has binding '{}'", name)));
  411. if (m_is_immutable)
  412. return vm.lexical_environment()->create_immutable_binding(vm, name, vm.in_strict_mode());
  413. else
  414. return vm.lexical_environment()->create_mutable_binding(vm, name, vm.in_strict_mode());
  415. } else {
  416. if (!m_is_global) {
  417. if (m_is_immutable)
  418. return vm.variable_environment()->create_immutable_binding(vm, name, vm.in_strict_mode());
  419. else
  420. return vm.variable_environment()->create_mutable_binding(vm, name, vm.in_strict_mode());
  421. } else {
  422. // NOTE: CreateVariable with m_is_global set to true is expected to only be used in GlobalDeclarationInstantiation currently, which only uses "false" for "can_be_deleted".
  423. // The only area that sets "can_be_deleted" to true is EvalDeclarationInstantiation, which is currently fully implemented in C++ and not in Bytecode.
  424. return verify_cast<GlobalEnvironment>(vm.variable_environment())->create_global_var_binding(name, false);
  425. }
  426. }
  427. return {};
  428. }
  429. ThrowCompletionOr<void> SetVariable::execute_impl(Bytecode::Interpreter& interpreter) const
  430. {
  431. auto& vm = interpreter.vm();
  432. auto const& name = interpreter.current_executable().get_identifier(m_identifier);
  433. auto environment = m_mode == EnvironmentMode::Lexical ? vm.running_execution_context().lexical_environment : vm.running_execution_context().variable_environment;
  434. auto reference = TRY(vm.resolve_binding(name, environment));
  435. switch (m_initialization_mode) {
  436. case InitializationMode::Initialize:
  437. TRY(reference.initialize_referenced_binding(vm, interpreter.accumulator()));
  438. break;
  439. case InitializationMode::Set:
  440. TRY(reference.put_value(vm, interpreter.accumulator()));
  441. break;
  442. case InitializationMode::InitializeOrSet:
  443. VERIFY(reference.is_environment_reference());
  444. VERIFY(reference.base_environment().is_declarative_environment());
  445. TRY(static_cast<DeclarativeEnvironment&>(reference.base_environment()).initialize_or_set_mutable_binding(vm, name, interpreter.accumulator()));
  446. break;
  447. }
  448. return {};
  449. }
  450. ThrowCompletionOr<void> SetLocal::execute_impl(Bytecode::Interpreter& interpreter) const
  451. {
  452. interpreter.vm().running_execution_context().local_variables[m_index] = interpreter.accumulator();
  453. return {};
  454. }
  455. ThrowCompletionOr<void> GetById::execute_impl(Bytecode::Interpreter& interpreter) const
  456. {
  457. auto& vm = interpreter.vm();
  458. auto const& name = interpreter.current_executable().get_identifier(m_property);
  459. auto base_value = interpreter.accumulator();
  460. // OPTIMIZATION: For various primitives we can avoid actually creating a new object for them.
  461. GCPtr<Object> base_obj;
  462. if (base_value.is_string()) {
  463. auto string_value = TRY(base_value.as_string().get(vm, name));
  464. if (string_value.has_value()) {
  465. interpreter.accumulator() = *string_value;
  466. return {};
  467. }
  468. base_obj = vm.current_realm()->intrinsics().string_prototype();
  469. } else if (base_value.is_number()) {
  470. base_obj = vm.current_realm()->intrinsics().number_prototype();
  471. } else if (base_value.is_boolean()) {
  472. base_obj = vm.current_realm()->intrinsics().boolean_prototype();
  473. } else {
  474. base_obj = TRY(base_value.to_object(vm));
  475. }
  476. interpreter.accumulator() = TRY(base_obj->internal_get(name, base_value));
  477. return {};
  478. }
  479. ThrowCompletionOr<void> GetPrivateById::execute_impl(Bytecode::Interpreter& interpreter) const
  480. {
  481. auto& vm = interpreter.vm();
  482. auto const& name = interpreter.current_executable().get_identifier(m_property);
  483. auto base_value = interpreter.accumulator();
  484. auto private_reference = make_private_reference(vm, base_value, name);
  485. interpreter.accumulator() = TRY(private_reference.get_value(vm));
  486. return {};
  487. }
  488. ThrowCompletionOr<void> HasPrivateId::execute_impl(Bytecode::Interpreter& interpreter) const
  489. {
  490. auto& vm = interpreter.vm();
  491. if (!interpreter.accumulator().is_object())
  492. return vm.throw_completion<TypeError>(ErrorType::InOperatorWithObject);
  493. auto private_environment = vm.running_execution_context().private_environment;
  494. VERIFY(private_environment);
  495. auto private_name = private_environment->resolve_private_identifier(interpreter.current_executable().get_identifier(m_property));
  496. interpreter.accumulator() = Value(interpreter.accumulator().as_object().private_element_find(private_name) != nullptr);
  497. return {};
  498. }
  499. ThrowCompletionOr<void> PutById::execute_impl(Bytecode::Interpreter& interpreter) const
  500. {
  501. auto& vm = interpreter.vm();
  502. // NOTE: Get the value from the accumulator before side effects have a chance to overwrite it.
  503. auto value = interpreter.accumulator();
  504. auto base = interpreter.reg(m_base);
  505. PropertyKey name = interpreter.current_executable().get_identifier(m_property);
  506. TRY(put_by_property_key(vm, base, value, name, m_kind));
  507. interpreter.accumulator() = value;
  508. return {};
  509. }
  510. ThrowCompletionOr<void> PutPrivateById::execute_impl(Bytecode::Interpreter& interpreter) const
  511. {
  512. auto& vm = interpreter.vm();
  513. // NOTE: Get the value from the accumulator before side effects have a chance to overwrite it.
  514. auto value = interpreter.accumulator();
  515. auto object = TRY(interpreter.reg(m_base).to_object(vm));
  516. auto name = interpreter.current_executable().get_identifier(m_property);
  517. auto private_reference = make_private_reference(vm, object, name);
  518. TRY(private_reference.put_value(vm, value));
  519. interpreter.accumulator() = value;
  520. return {};
  521. }
  522. ThrowCompletionOr<void> DeleteById::execute_impl(Bytecode::Interpreter& interpreter) const
  523. {
  524. auto& vm = interpreter.vm();
  525. auto object = TRY(interpreter.accumulator().to_object(vm));
  526. auto const& identifier = interpreter.current_executable().get_identifier(m_property);
  527. bool strict = vm.in_strict_mode();
  528. auto reference = Reference { object, identifier, {}, strict };
  529. interpreter.accumulator() = Value(TRY(reference.delete_(vm)));
  530. return {};
  531. };
  532. ThrowCompletionOr<void> Jump::execute_impl(Bytecode::Interpreter& interpreter) const
  533. {
  534. interpreter.jump(*m_true_target);
  535. return {};
  536. }
  537. ThrowCompletionOr<void> ResolveThisBinding::execute_impl(Bytecode::Interpreter& interpreter) const
  538. {
  539. auto& vm = interpreter.vm();
  540. interpreter.accumulator() = TRY(vm.resolve_this_binding());
  541. return {};
  542. }
  543. // https://tc39.es/ecma262/#sec-makesuperpropertyreference
  544. ThrowCompletionOr<void> ResolveSuperBase::execute_impl(Bytecode::Interpreter& interpreter) const
  545. {
  546. auto& vm = interpreter.vm();
  547. // 1. Let env be GetThisEnvironment().
  548. auto& env = verify_cast<FunctionEnvironment>(*get_this_environment(vm));
  549. // 2. Assert: env.HasSuperBinding() is true.
  550. VERIFY(env.has_super_binding());
  551. // 3. Let baseValue be ? env.GetSuperBase().
  552. auto base_value = TRY(env.get_super_base());
  553. // 4. Let bv be ? RequireObjectCoercible(baseValue).
  554. interpreter.accumulator() = TRY(require_object_coercible(vm, base_value));
  555. return {};
  556. }
  557. ThrowCompletionOr<void> GetNewTarget::execute_impl(Bytecode::Interpreter& interpreter) const
  558. {
  559. interpreter.accumulator() = interpreter.vm().get_new_target();
  560. return {};
  561. }
  562. void Jump::replace_references_impl(BasicBlock const& from, BasicBlock const& to)
  563. {
  564. if (m_true_target.has_value() && &m_true_target->block() == &from)
  565. m_true_target = Label { to };
  566. if (m_false_target.has_value() && &m_false_target->block() == &from)
  567. m_false_target = Label { to };
  568. }
  569. ThrowCompletionOr<void> JumpConditional::execute_impl(Bytecode::Interpreter& interpreter) const
  570. {
  571. VERIFY(m_true_target.has_value());
  572. VERIFY(m_false_target.has_value());
  573. auto result = interpreter.accumulator();
  574. if (result.to_boolean())
  575. interpreter.jump(m_true_target.value());
  576. else
  577. interpreter.jump(m_false_target.value());
  578. return {};
  579. }
  580. ThrowCompletionOr<void> JumpNullish::execute_impl(Bytecode::Interpreter& interpreter) const
  581. {
  582. VERIFY(m_true_target.has_value());
  583. VERIFY(m_false_target.has_value());
  584. auto result = interpreter.accumulator();
  585. if (result.is_nullish())
  586. interpreter.jump(m_true_target.value());
  587. else
  588. interpreter.jump(m_false_target.value());
  589. return {};
  590. }
  591. ThrowCompletionOr<void> JumpUndefined::execute_impl(Bytecode::Interpreter& interpreter) const
  592. {
  593. VERIFY(m_true_target.has_value());
  594. VERIFY(m_false_target.has_value());
  595. auto result = interpreter.accumulator();
  596. if (result.is_undefined())
  597. interpreter.jump(m_true_target.value());
  598. else
  599. interpreter.jump(m_false_target.value());
  600. return {};
  601. }
  602. // 13.3.8.1 https://tc39.es/ecma262/#sec-runtime-semantics-argumentlistevaluation
  603. static MarkedVector<Value> argument_list_evaluation(Bytecode::Interpreter& interpreter)
  604. {
  605. // Note: Any spreading and actual evaluation is handled in preceding opcodes
  606. // Note: The spec uses the concept of a list, while we create a temporary array
  607. // in the preceding opcodes, so we have to convert in a manner that is not
  608. // visible to the user
  609. auto& vm = interpreter.vm();
  610. MarkedVector<Value> argument_values { vm.heap() };
  611. auto arguments = interpreter.accumulator();
  612. if (!(arguments.is_object() && is<Array>(arguments.as_object()))) {
  613. dbgln("[{}] Call arguments are not an array, but: {}", interpreter.debug_position(), MUST(arguments.to_string_without_side_effects()));
  614. interpreter.current_executable().dump();
  615. VERIFY_NOT_REACHED();
  616. }
  617. auto& argument_array = arguments.as_array();
  618. auto array_length = argument_array.indexed_properties().array_like_size();
  619. argument_values.ensure_capacity(array_length);
  620. for (size_t i = 0; i < array_length; ++i) {
  621. if (auto maybe_value = argument_array.indexed_properties().get(i); maybe_value.has_value())
  622. argument_values.append(maybe_value.release_value().value);
  623. else
  624. argument_values.append(js_undefined());
  625. }
  626. return argument_values;
  627. }
  628. static Completion throw_type_error_for_callee(Bytecode::Interpreter& interpreter, auto& call, StringView callee_type)
  629. {
  630. auto& vm = interpreter.vm();
  631. auto callee = interpreter.reg(call.callee());
  632. if (call.expression_string().has_value())
  633. return vm.throw_completion<TypeError>(ErrorType::IsNotAEvaluatedFrom, TRY_OR_THROW_OOM(vm, callee.to_string_without_side_effects()), callee_type, interpreter.current_executable().get_string(call.expression_string()->value()));
  634. return vm.throw_completion<TypeError>(ErrorType::IsNotA, TRY_OR_THROW_OOM(vm, callee.to_string_without_side_effects()), callee_type);
  635. }
  636. static ThrowCompletionOr<void> throw_if_needed_for_call(Interpreter& interpreter, auto& call, Value callee)
  637. {
  638. if (call.call_type() == CallType::Call && !callee.is_function())
  639. return throw_type_error_for_callee(interpreter, call, "function"sv);
  640. if (call.call_type() == CallType::Construct && !callee.is_constructor())
  641. return throw_type_error_for_callee(interpreter, call, "constructor"sv);
  642. return {};
  643. }
  644. static ThrowCompletionOr<void> perform_call(Interpreter& interpreter, auto& call, Value callee, MarkedVector<Value> argument_values)
  645. {
  646. auto& vm = interpreter.vm();
  647. auto this_value = interpreter.reg(call.this_value());
  648. auto& function = callee.as_function();
  649. Value return_value;
  650. if (call.call_type() == CallType::DirectEval) {
  651. if (callee == interpreter.realm().intrinsics().eval_function())
  652. return_value = TRY(perform_eval(vm, !argument_values.is_empty() ? argument_values[0].value_or(JS::js_undefined()) : js_undefined(), vm.in_strict_mode() ? CallerMode::Strict : CallerMode::NonStrict, EvalMode::Direct));
  653. else
  654. return_value = TRY(JS::call(vm, function, this_value, move(argument_values)));
  655. } else if (call.call_type() == CallType::Call)
  656. return_value = TRY(JS::call(vm, function, this_value, move(argument_values)));
  657. else
  658. return_value = TRY(construct(vm, function, move(argument_values)));
  659. interpreter.accumulator() = return_value;
  660. return {};
  661. }
  662. ThrowCompletionOr<void> Call::execute_impl(Bytecode::Interpreter& interpreter) const
  663. {
  664. auto& vm = interpreter.vm();
  665. auto callee = interpreter.reg(m_callee);
  666. TRY(throw_if_needed_for_call(interpreter, *this, callee));
  667. MarkedVector<Value> argument_values(vm.heap());
  668. argument_values.ensure_capacity(m_argument_count);
  669. for (u32 i = 0; i < m_argument_count; ++i) {
  670. argument_values.unchecked_append(interpreter.reg(Register { m_first_argument.index() + i }));
  671. }
  672. return perform_call(interpreter, *this, callee, move(argument_values));
  673. }
  674. ThrowCompletionOr<void> CallWithArgumentArray::execute_impl(Bytecode::Interpreter& interpreter) const
  675. {
  676. auto callee = interpreter.reg(m_callee);
  677. TRY(throw_if_needed_for_call(interpreter, *this, callee));
  678. auto argument_values = argument_list_evaluation(interpreter);
  679. return perform_call(interpreter, *this, callee, move(argument_values));
  680. }
  681. // 13.3.7.1 Runtime Semantics: Evaluation, https://tc39.es/ecma262/#sec-super-keyword-runtime-semantics-evaluation
  682. ThrowCompletionOr<void> SuperCallWithArgumentArray::execute_impl(Bytecode::Interpreter& interpreter) const
  683. {
  684. auto& vm = interpreter.vm();
  685. // 1. Let newTarget be GetNewTarget().
  686. auto new_target = vm.get_new_target();
  687. // 2. Assert: Type(newTarget) is Object.
  688. VERIFY(new_target.is_object());
  689. // 3. Let func be GetSuperConstructor().
  690. auto* func = get_super_constructor(vm);
  691. // 4. Let argList be ? ArgumentListEvaluation of Arguments.
  692. MarkedVector<Value> arg_list { vm.heap() };
  693. if (m_is_synthetic) {
  694. auto const& value = interpreter.accumulator();
  695. VERIFY(value.is_object() && is<Array>(value.as_object()));
  696. auto const& array_value = static_cast<Array const&>(value.as_object());
  697. auto length = MUST(length_of_array_like(vm, array_value));
  698. for (size_t i = 0; i < length; ++i)
  699. arg_list.append(array_value.get_without_side_effects(PropertyKey { i }));
  700. } else {
  701. arg_list = argument_list_evaluation(interpreter);
  702. }
  703. // 5. If IsConstructor(func) is false, throw a TypeError exception.
  704. if (!Value(func).is_constructor())
  705. return vm.throw_completion<TypeError>(ErrorType::NotAConstructor, "Super constructor");
  706. // 6. Let result be ? Construct(func, argList, newTarget).
  707. auto result = TRY(construct(vm, static_cast<FunctionObject&>(*func), move(arg_list), &new_target.as_function()));
  708. // 7. Let thisER be GetThisEnvironment().
  709. auto& this_environment = verify_cast<FunctionEnvironment>(*get_this_environment(vm));
  710. // 8. Perform ? thisER.BindThisValue(result).
  711. TRY(this_environment.bind_this_value(vm, result));
  712. // 9. Let F be thisER.[[FunctionObject]].
  713. auto& f = this_environment.function_object();
  714. // 10. Assert: F is an ECMAScript function object.
  715. // NOTE: This is implied by the strong C++ type.
  716. // 11. Perform ? InitializeInstanceElements(result, F).
  717. TRY(result->initialize_instance_elements(f));
  718. // 12. Return result.
  719. interpreter.accumulator() = result;
  720. return {};
  721. }
  722. ThrowCompletionOr<void> NewFunction::execute_impl(Bytecode::Interpreter& interpreter) const
  723. {
  724. auto& vm = interpreter.vm();
  725. if (!m_function_node.has_name()) {
  726. DeprecatedFlyString name = {};
  727. if (m_lhs_name.has_value())
  728. name = interpreter.current_executable().get_identifier(m_lhs_name.value());
  729. interpreter.accumulator() = m_function_node.instantiate_ordinary_function_expression(vm, name);
  730. } else {
  731. interpreter.accumulator() = ECMAScriptFunctionObject::create(interpreter.realm(), m_function_node.name(), m_function_node.source_text(), m_function_node.body(), m_function_node.parameters(), m_function_node.function_length(), m_function_node.local_variables_names(), vm.lexical_environment(), vm.running_execution_context().private_environment, m_function_node.kind(), m_function_node.is_strict_mode(), m_function_node.might_need_arguments_object(), m_function_node.contains_direct_call_to_eval(), m_function_node.is_arrow_function());
  732. }
  733. if (m_home_object.has_value()) {
  734. auto home_object_value = interpreter.reg(m_home_object.value());
  735. static_cast<ECMAScriptFunctionObject&>(interpreter.accumulator().as_function()).set_home_object(&home_object_value.as_object());
  736. }
  737. return {};
  738. }
  739. ThrowCompletionOr<void> Return::execute_impl(Bytecode::Interpreter& interpreter) const
  740. {
  741. interpreter.do_return(interpreter.accumulator().value_or(js_undefined()));
  742. return {};
  743. }
  744. ThrowCompletionOr<void> Increment::execute_impl(Bytecode::Interpreter& interpreter) const
  745. {
  746. auto& vm = interpreter.vm();
  747. auto old_value = TRY(interpreter.accumulator().to_numeric(vm));
  748. if (old_value.is_number())
  749. interpreter.accumulator() = Value(old_value.as_double() + 1);
  750. else
  751. interpreter.accumulator() = BigInt::create(vm, old_value.as_bigint().big_integer().plus(Crypto::SignedBigInteger { 1 }));
  752. return {};
  753. }
  754. ThrowCompletionOr<void> Decrement::execute_impl(Bytecode::Interpreter& interpreter) const
  755. {
  756. auto& vm = interpreter.vm();
  757. auto old_value = TRY(interpreter.accumulator().to_numeric(vm));
  758. if (old_value.is_number())
  759. interpreter.accumulator() = Value(old_value.as_double() - 1);
  760. else
  761. interpreter.accumulator() = BigInt::create(vm, old_value.as_bigint().big_integer().minus(Crypto::SignedBigInteger { 1 }));
  762. return {};
  763. }
  764. ThrowCompletionOr<void> Throw::execute_impl(Bytecode::Interpreter& interpreter) const
  765. {
  766. return throw_completion(interpreter.accumulator());
  767. }
  768. ThrowCompletionOr<void> ThrowIfNotObject::execute_impl(Bytecode::Interpreter& interpreter) const
  769. {
  770. auto& vm = interpreter.vm();
  771. if (!interpreter.accumulator().is_object())
  772. return vm.throw_completion<TypeError>(ErrorType::NotAnObject, TRY_OR_THROW_OOM(vm, interpreter.accumulator().to_string_without_side_effects()));
  773. return {};
  774. }
  775. ThrowCompletionOr<void> ThrowIfNullish::execute_impl(Bytecode::Interpreter& interpreter) const
  776. {
  777. auto& vm = interpreter.vm();
  778. auto value = interpreter.accumulator();
  779. if (value.is_nullish())
  780. return vm.throw_completion<TypeError>(ErrorType::NotObjectCoercible, TRY_OR_THROW_OOM(vm, value.to_string_without_side_effects()));
  781. return {};
  782. }
  783. ThrowCompletionOr<void> EnterUnwindContext::execute_impl(Bytecode::Interpreter& interpreter) const
  784. {
  785. interpreter.enter_unwind_context(m_handler_target, m_finalizer_target);
  786. interpreter.jump(m_entry_point);
  787. return {};
  788. }
  789. void NewFunction::replace_references_impl(Register from, Register to)
  790. {
  791. if (m_home_object == from)
  792. m_home_object = to;
  793. }
  794. void EnterUnwindContext::replace_references_impl(BasicBlock const& from, BasicBlock const& to)
  795. {
  796. if (&m_entry_point.block() == &from)
  797. m_entry_point = Label { to };
  798. if (m_handler_target.has_value() && &m_handler_target->block() == &from)
  799. m_handler_target = Label { to };
  800. if (m_finalizer_target.has_value() && &m_finalizer_target->block() == &from)
  801. m_finalizer_target = Label { to };
  802. }
  803. void CopyObjectExcludingProperties::replace_references_impl(Register from, Register to)
  804. {
  805. if (m_from_object == from)
  806. m_from_object = to;
  807. for (size_t i = 0; i < m_excluded_names_count; ++i) {
  808. if (m_excluded_names[i] == from)
  809. m_excluded_names[i] = to;
  810. }
  811. }
  812. void Call::replace_references_impl(Register from, Register to)
  813. {
  814. if (m_callee == from)
  815. m_callee = to;
  816. if (m_this_value == from)
  817. m_this_value = to;
  818. if (m_first_argument == from)
  819. m_first_argument = to;
  820. }
  821. void CallWithArgumentArray::replace_references_impl(Register from, Register to)
  822. {
  823. if (m_callee == from)
  824. m_callee = to;
  825. if (m_this_value == from)
  826. m_this_value = to;
  827. }
  828. ThrowCompletionOr<void> ScheduleJump::execute_impl(Bytecode::Interpreter& interpreter) const
  829. {
  830. interpreter.schedule_jump(m_target);
  831. return {};
  832. }
  833. ThrowCompletionOr<void> LeaveLexicalEnvironment::execute_impl(Bytecode::Interpreter& interpreter) const
  834. {
  835. interpreter.vm().running_execution_context().lexical_environment = interpreter.saved_lexical_environment_stack().take_last();
  836. return {};
  837. }
  838. ThrowCompletionOr<void> LeaveUnwindContext::execute_impl(Bytecode::Interpreter& interpreter) const
  839. {
  840. interpreter.leave_unwind_context();
  841. return {};
  842. }
  843. ThrowCompletionOr<void> ContinuePendingUnwind::execute_impl(Bytecode::Interpreter& interpreter) const
  844. {
  845. return interpreter.continue_pending_unwind(m_resume_target);
  846. }
  847. void ContinuePendingUnwind::replace_references_impl(BasicBlock const& from, BasicBlock const& to)
  848. {
  849. if (&m_resume_target.block() == &from)
  850. m_resume_target = Label { to };
  851. }
  852. ThrowCompletionOr<void> PushDeclarativeEnvironment::execute_impl(Bytecode::Interpreter& interpreter) const
  853. {
  854. auto environment = interpreter.vm().heap().allocate_without_realm<DeclarativeEnvironment>(interpreter.vm().lexical_environment());
  855. interpreter.vm().running_execution_context().lexical_environment = environment;
  856. interpreter.vm().running_execution_context().variable_environment = environment;
  857. return {};
  858. }
  859. ThrowCompletionOr<void> Yield::execute_impl(Bytecode::Interpreter& interpreter) const
  860. {
  861. auto yielded_value = interpreter.accumulator().value_or(js_undefined());
  862. auto object = Object::create(interpreter.realm(), nullptr);
  863. object->define_direct_property("result", yielded_value, JS::default_attributes);
  864. if (m_continuation_label.has_value())
  865. // FIXME: If we get a pointer, which is not accurately representable as a double
  866. // will cause this to explode
  867. object->define_direct_property("continuation", Value(static_cast<double>(reinterpret_cast<u64>(&m_continuation_label->block()))), JS::default_attributes);
  868. else
  869. object->define_direct_property("continuation", Value(0), JS::default_attributes);
  870. interpreter.do_return(object);
  871. return {};
  872. }
  873. void Yield::replace_references_impl(BasicBlock const& from, BasicBlock const& to)
  874. {
  875. if (m_continuation_label.has_value() && &m_continuation_label->block() == &from)
  876. m_continuation_label = Label { to };
  877. }
  878. ThrowCompletionOr<void> GetByValue::execute_impl(Bytecode::Interpreter& interpreter) const
  879. {
  880. auto& vm = interpreter.vm();
  881. // NOTE: Get the property key from the accumulator before side effects have a chance to overwrite it.
  882. auto property_key_value = interpreter.accumulator();
  883. auto object = TRY(interpreter.reg(m_base).to_object(vm));
  884. auto property_key = TRY(property_key_value.to_property_key(vm));
  885. interpreter.accumulator() = TRY(object->get(property_key));
  886. return {};
  887. }
  888. ThrowCompletionOr<void> PutByValue::execute_impl(Bytecode::Interpreter& interpreter) const
  889. {
  890. auto& vm = interpreter.vm();
  891. // NOTE: Get the value from the accumulator before side effects have a chance to overwrite it.
  892. auto value = interpreter.accumulator();
  893. auto base = interpreter.reg(m_base);
  894. auto property_key = TRY(interpreter.reg(m_property).to_property_key(vm));
  895. TRY(put_by_property_key(vm, base, value, property_key, m_kind));
  896. interpreter.accumulator() = value;
  897. return {};
  898. }
  899. ThrowCompletionOr<void> DeleteByValue::execute_impl(Bytecode::Interpreter& interpreter) const
  900. {
  901. auto& vm = interpreter.vm();
  902. // NOTE: Get the property key from the accumulator before side effects have a chance to overwrite it.
  903. auto property_key_value = interpreter.accumulator();
  904. auto object = TRY(interpreter.reg(m_base).to_object(vm));
  905. auto property_key = TRY(property_key_value.to_property_key(vm));
  906. bool strict = vm.in_strict_mode();
  907. auto reference = Reference { object, property_key, {}, strict };
  908. interpreter.accumulator() = Value(TRY(reference.delete_(vm)));
  909. return {};
  910. }
  911. ThrowCompletionOr<void> GetIterator::execute_impl(Bytecode::Interpreter& interpreter) const
  912. {
  913. auto& vm = interpreter.vm();
  914. auto iterator = TRY(get_iterator(vm, interpreter.accumulator(), m_hint));
  915. interpreter.accumulator() = iterator_to_object(vm, iterator);
  916. return {};
  917. }
  918. ThrowCompletionOr<void> GetMethod::execute_impl(Bytecode::Interpreter& interpreter) const
  919. {
  920. auto& vm = interpreter.vm();
  921. auto identifier = interpreter.current_executable().get_identifier(m_property);
  922. auto method = TRY(interpreter.accumulator().get_method(vm, identifier));
  923. interpreter.accumulator() = method ?: js_undefined();
  924. return {};
  925. }
  926. // 14.7.5.9 EnumerateObjectProperties ( O ), https://tc39.es/ecma262/#sec-enumerate-object-properties
  927. ThrowCompletionOr<void> GetObjectPropertyIterator::execute_impl(Bytecode::Interpreter& interpreter) const
  928. {
  929. // While the spec does provide an algorithm, it allows us to implement it ourselves so long as we meet the following invariants:
  930. // 1- Returned property keys do not include keys that are Symbols
  931. // 2- Properties of the target object may be deleted during enumeration. A property that is deleted before it is processed by the iterator's next method is ignored
  932. // 3- If new properties are added to the target object during enumeration, the newly added properties are not guaranteed to be processed in the active enumeration
  933. // 4- A property name will be returned by the iterator's next method at most once in any enumeration.
  934. // 5- Enumerating the properties of the target object includes enumerating properties of its prototype, and the prototype of the prototype, and so on, recursively;
  935. // but a property of a prototype is not processed if it has the same name as a property that has already been processed by the iterator's next method.
  936. // 6- The values of [[Enumerable]] attributes are not considered when determining if a property of a prototype object has already been processed.
  937. // 7- The enumerable property names of prototype objects must be obtained by invoking EnumerateObjectProperties passing the prototype object as the argument.
  938. // 8- EnumerateObjectProperties must obtain the own property keys of the target object by calling its [[OwnPropertyKeys]] internal method.
  939. // 9- Property attributes of the target object must be obtained by calling its [[GetOwnProperty]] internal method
  940. // Invariant 3 effectively allows the implementation to ignore newly added keys, and we do so (similar to other implementations).
  941. // Invariants 1 and 6 through 9 are implemented in `enumerable_own_property_names`, which implements the EnumerableOwnPropertyNames AO.
  942. auto& vm = interpreter.vm();
  943. auto object = TRY(interpreter.accumulator().to_object(vm));
  944. // Note: While the spec doesn't explicitly require these to be ordered, it says that the values should be retrieved via OwnPropertyKeys,
  945. // so we just keep the order consistent anyway.
  946. OrderedHashTable<PropertyKey> properties;
  947. HashTable<NonnullGCPtr<Object>> seen_objects;
  948. // Collect all keys immediately (invariant no. 5)
  949. for (auto object_to_check = GCPtr { object.ptr() }; object_to_check && !seen_objects.contains(*object_to_check); object_to_check = TRY(object_to_check->internal_get_prototype_of())) {
  950. seen_objects.set(*object_to_check);
  951. for (auto& key : TRY(object_to_check->enumerable_own_property_names(Object::PropertyKind::Key))) {
  952. properties.set(TRY(PropertyKey::from_value(vm, key)));
  953. }
  954. }
  955. IteratorRecord iterator {
  956. .iterator = object,
  957. .next_method = NativeFunction::create(
  958. interpreter.realm(),
  959. [seen_items = HashTable<PropertyKey>(), items = move(properties)](VM& vm) mutable -> ThrowCompletionOr<Value> {
  960. auto& realm = *vm.current_realm();
  961. auto iterated_object_value = vm.this_value();
  962. if (!iterated_object_value.is_object())
  963. return vm.throw_completion<InternalError>("Invalid state for GetObjectPropertyIterator.next"sv);
  964. auto& iterated_object = iterated_object_value.as_object();
  965. auto result_object = Object::create(realm, nullptr);
  966. while (true) {
  967. if (items.is_empty()) {
  968. result_object->define_direct_property(vm.names.done, JS::Value(true), default_attributes);
  969. return result_object;
  970. }
  971. auto key = items.take_first();
  972. // If the key was already seen, skip over it (invariant no. 4)
  973. auto result = seen_items.set(key);
  974. if (result != AK::HashSetResult::InsertedNewEntry)
  975. continue;
  976. // If the property is deleted, don't include it (invariant no. 2)
  977. if (!TRY(iterated_object.has_property(key)))
  978. continue;
  979. result_object->define_direct_property(vm.names.done, JS::Value(false), default_attributes);
  980. if (key.is_number())
  981. result_object->define_direct_property(vm.names.value, PrimitiveString::create(vm, TRY_OR_THROW_OOM(vm, String::number(key.as_number()))), default_attributes);
  982. else if (key.is_string())
  983. result_object->define_direct_property(vm.names.value, PrimitiveString::create(vm, key.as_string()), default_attributes);
  984. else
  985. VERIFY_NOT_REACHED(); // We should not have non-string/number keys.
  986. return result_object;
  987. }
  988. },
  989. 1,
  990. vm.names.next),
  991. .done = false,
  992. };
  993. interpreter.accumulator() = iterator_to_object(vm, move(iterator));
  994. return {};
  995. }
  996. ThrowCompletionOr<void> IteratorClose::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. // FIXME: Return the value of the resulting completion. (Note that m_completion_value can be empty!)
  1002. TRY(iterator_close(vm, iterator, Completion { m_completion_type, m_completion_value, {} }));
  1003. return {};
  1004. }
  1005. ThrowCompletionOr<void> IteratorNext::execute_impl(Bytecode::Interpreter& interpreter) const
  1006. {
  1007. auto& vm = interpreter.vm();
  1008. auto iterator_object = TRY(interpreter.accumulator().to_object(vm));
  1009. auto iterator = object_to_iterator(vm, iterator_object);
  1010. interpreter.accumulator() = TRY(iterator_next(vm, iterator));
  1011. return {};
  1012. }
  1013. ThrowCompletionOr<void> IteratorResultDone::execute_impl(Bytecode::Interpreter& interpreter) const
  1014. {
  1015. auto& vm = interpreter.vm();
  1016. auto iterator_result = TRY(interpreter.accumulator().to_object(vm));
  1017. auto complete = TRY(iterator_complete(vm, iterator_result));
  1018. interpreter.accumulator() = Value(complete);
  1019. return {};
  1020. }
  1021. ThrowCompletionOr<void> IteratorResultValue::execute_impl(Bytecode::Interpreter& interpreter) const
  1022. {
  1023. auto& vm = interpreter.vm();
  1024. auto iterator_result = TRY(interpreter.accumulator().to_object(vm));
  1025. interpreter.accumulator() = TRY(iterator_value(vm, iterator_result));
  1026. return {};
  1027. }
  1028. ThrowCompletionOr<void> NewClass::execute_impl(Bytecode::Interpreter& interpreter) const
  1029. {
  1030. auto& vm = interpreter.vm();
  1031. auto name = m_class_expression.name();
  1032. auto super_class = interpreter.accumulator();
  1033. // NOTE: NewClass expects classEnv to be active lexical environment
  1034. auto class_environment = vm.lexical_environment();
  1035. vm.running_execution_context().lexical_environment = interpreter.saved_lexical_environment_stack().take_last();
  1036. DeprecatedFlyString binding_name;
  1037. DeprecatedFlyString class_name;
  1038. if (!m_class_expression.has_name() && m_lhs_name.has_value()) {
  1039. class_name = interpreter.current_executable().get_identifier(m_lhs_name.value());
  1040. } else {
  1041. binding_name = name;
  1042. class_name = name.is_null() ? ""sv : name;
  1043. }
  1044. interpreter.accumulator() = TRY(m_class_expression.create_class_constructor(vm, class_environment, vm.lexical_environment(), super_class, binding_name, class_name));
  1045. return {};
  1046. }
  1047. // 13.5.3.1 Runtime Semantics: Evaluation, https://tc39.es/ecma262/#sec-typeof-operator-runtime-semantics-evaluation
  1048. ThrowCompletionOr<void> TypeofVariable::execute_impl(Bytecode::Interpreter& interpreter) const
  1049. {
  1050. auto& vm = interpreter.vm();
  1051. // 1. Let val be the result of evaluating UnaryExpression.
  1052. auto const& string = interpreter.current_executable().get_identifier(m_identifier);
  1053. auto reference = TRY(vm.resolve_binding(string));
  1054. // 2. If val is a Reference Record, then
  1055. // a. If IsUnresolvableReference(val) is true, return "undefined".
  1056. if (reference.is_unresolvable()) {
  1057. interpreter.accumulator() = MUST_OR_THROW_OOM(PrimitiveString::create(vm, "undefined"sv));
  1058. return {};
  1059. }
  1060. // 3. Set val to ? GetValue(val).
  1061. auto value = TRY(reference.get_value(vm));
  1062. // 4. NOTE: This step is replaced in section B.3.6.3.
  1063. // 5. Return a String according to Table 41.
  1064. interpreter.accumulator() = MUST_OR_THROW_OOM(PrimitiveString::create(vm, value.typeof()));
  1065. return {};
  1066. }
  1067. ThrowCompletionOr<void> TypeofLocal::execute_impl(Bytecode::Interpreter& interpreter) const
  1068. {
  1069. auto& vm = interpreter.vm();
  1070. auto const& value = vm.running_execution_context().local_variables[m_index];
  1071. interpreter.accumulator() = MUST_OR_THROW_OOM(PrimitiveString::create(vm, value.typeof()));
  1072. return {};
  1073. }
  1074. ThrowCompletionOr<void> ToNumeric::execute_impl(Bytecode::Interpreter& interpreter) const
  1075. {
  1076. interpreter.accumulator() = TRY(interpreter.accumulator().to_numeric(interpreter.vm()));
  1077. return {};
  1078. }
  1079. ThrowCompletionOr<void> BlockDeclarationInstantiation::execute_impl(Bytecode::Interpreter& interpreter) const
  1080. {
  1081. auto& vm = interpreter.vm();
  1082. auto old_environment = vm.running_execution_context().lexical_environment;
  1083. interpreter.saved_lexical_environment_stack().append(old_environment);
  1084. vm.running_execution_context().lexical_environment = new_declarative_environment(*old_environment);
  1085. m_scope_node.block_declaration_instantiation(vm, vm.running_execution_context().lexical_environment);
  1086. return {};
  1087. }
  1088. DeprecatedString Load::to_deprecated_string_impl(Bytecode::Executable const&) const
  1089. {
  1090. return DeprecatedString::formatted("Load {}", m_src);
  1091. }
  1092. DeprecatedString LoadImmediate::to_deprecated_string_impl(Bytecode::Executable const&) const
  1093. {
  1094. return DeprecatedString::formatted("LoadImmediate {}", m_value);
  1095. }
  1096. DeprecatedString Store::to_deprecated_string_impl(Bytecode::Executable const&) const
  1097. {
  1098. return DeprecatedString::formatted("Store {}", m_dst);
  1099. }
  1100. DeprecatedString NewBigInt::to_deprecated_string_impl(Bytecode::Executable const&) const
  1101. {
  1102. return DeprecatedString::formatted("NewBigInt \"{}\"", m_bigint.to_base_deprecated(10));
  1103. }
  1104. DeprecatedString NewArray::to_deprecated_string_impl(Bytecode::Executable const&) const
  1105. {
  1106. StringBuilder builder;
  1107. builder.append("NewArray"sv);
  1108. if (m_element_count != 0) {
  1109. builder.appendff(" [{}-{}]", m_elements[0], m_elements[1]);
  1110. }
  1111. return builder.to_deprecated_string();
  1112. }
  1113. DeprecatedString Append::to_deprecated_string_impl(Bytecode::Executable const&) const
  1114. {
  1115. if (m_is_spread)
  1116. return DeprecatedString::formatted("Append lhs: **{}", m_lhs);
  1117. return DeprecatedString::formatted("Append lhs: {}", m_lhs);
  1118. }
  1119. DeprecatedString IteratorToArray::to_deprecated_string_impl(Bytecode::Executable const&) const
  1120. {
  1121. return "IteratorToArray";
  1122. }
  1123. DeprecatedString NewString::to_deprecated_string_impl(Bytecode::Executable const& executable) const
  1124. {
  1125. return DeprecatedString::formatted("NewString {} (\"{}\")", m_string, executable.string_table->get(m_string));
  1126. }
  1127. DeprecatedString NewObject::to_deprecated_string_impl(Bytecode::Executable const&) const
  1128. {
  1129. return "NewObject";
  1130. }
  1131. DeprecatedString NewRegExp::to_deprecated_string_impl(Bytecode::Executable const& executable) const
  1132. {
  1133. return DeprecatedString::formatted("NewRegExp source:{} (\"{}\") flags:{} (\"{}\")", m_source_index, executable.get_string(m_source_index), m_flags_index, executable.get_string(m_flags_index));
  1134. }
  1135. DeprecatedString CopyObjectExcludingProperties::to_deprecated_string_impl(Bytecode::Executable const&) const
  1136. {
  1137. StringBuilder builder;
  1138. builder.appendff("CopyObjectExcludingProperties from:{}", m_from_object);
  1139. if (m_excluded_names_count != 0) {
  1140. builder.append(" excluding:["sv);
  1141. builder.join(", "sv, ReadonlySpan<Register>(m_excluded_names, m_excluded_names_count));
  1142. builder.append(']');
  1143. }
  1144. return builder.to_deprecated_string();
  1145. }
  1146. DeprecatedString ConcatString::to_deprecated_string_impl(Bytecode::Executable const&) const
  1147. {
  1148. return DeprecatedString::formatted("ConcatString {}", m_lhs);
  1149. }
  1150. DeprecatedString GetVariable::to_deprecated_string_impl(Bytecode::Executable const& executable) const
  1151. {
  1152. return DeprecatedString::formatted("GetVariable {} ({})", m_identifier, executable.identifier_table->get(m_identifier));
  1153. }
  1154. DeprecatedString GetLocal::to_deprecated_string_impl(Bytecode::Executable const&) const
  1155. {
  1156. return DeprecatedString::formatted("GetLocal {}", m_index);
  1157. }
  1158. DeprecatedString DeleteVariable::to_deprecated_string_impl(Bytecode::Executable const& executable) const
  1159. {
  1160. return DeprecatedString::formatted("DeleteVariable {} ({})", m_identifier, executable.identifier_table->get(m_identifier));
  1161. }
  1162. DeprecatedString CreateLexicalEnvironment::to_deprecated_string_impl(Bytecode::Executable const&) const
  1163. {
  1164. return "CreateLexicalEnvironment"sv;
  1165. }
  1166. DeprecatedString CreateVariable::to_deprecated_string_impl(Bytecode::Executable const& executable) const
  1167. {
  1168. auto mode_string = m_mode == EnvironmentMode::Lexical ? "Lexical" : "Variable";
  1169. return DeprecatedString::formatted("CreateVariable env:{} immutable:{} global:{} {} ({})", mode_string, m_is_immutable, m_is_global, m_identifier, executable.identifier_table->get(m_identifier));
  1170. }
  1171. DeprecatedString EnterObjectEnvironment::to_deprecated_string_impl(Executable const&) const
  1172. {
  1173. return DeprecatedString::formatted("EnterObjectEnvironment");
  1174. }
  1175. DeprecatedString SetVariable::to_deprecated_string_impl(Bytecode::Executable const& executable) const
  1176. {
  1177. auto initialization_mode_name = m_initialization_mode == InitializationMode ::Initialize ? "Initialize"
  1178. : m_initialization_mode == InitializationMode::Set ? "Set"
  1179. : "InitializeOrSet";
  1180. auto mode_string = m_mode == EnvironmentMode::Lexical ? "Lexical" : "Variable";
  1181. return DeprecatedString::formatted("SetVariable env:{} init:{} {} ({})", mode_string, initialization_mode_name, m_identifier, executable.identifier_table->get(m_identifier));
  1182. }
  1183. DeprecatedString SetLocal::to_deprecated_string_impl(Bytecode::Executable const&) const
  1184. {
  1185. return DeprecatedString::formatted("SetLocal {}", m_index);
  1186. }
  1187. DeprecatedString PutById::to_deprecated_string_impl(Bytecode::Executable const& executable) const
  1188. {
  1189. auto kind = m_kind == PropertyKind::Getter
  1190. ? "getter"
  1191. : m_kind == PropertyKind::Setter
  1192. ? "setter"
  1193. : "property";
  1194. return DeprecatedString::formatted("PutById kind:{} base:{}, property:{} ({})", kind, m_base, m_property, executable.identifier_table->get(m_property));
  1195. }
  1196. DeprecatedString PutPrivateById::to_deprecated_string_impl(Bytecode::Executable const& executable) const
  1197. {
  1198. auto kind = m_kind == PropertyKind::Getter
  1199. ? "getter"
  1200. : m_kind == PropertyKind::Setter
  1201. ? "setter"
  1202. : "property";
  1203. return DeprecatedString::formatted("PutPrivateById kind:{} base:{}, property:{} ({})", kind, m_base, m_property, executable.identifier_table->get(m_property));
  1204. }
  1205. DeprecatedString GetById::to_deprecated_string_impl(Bytecode::Executable const& executable) const
  1206. {
  1207. return DeprecatedString::formatted("GetById {} ({})", m_property, executable.identifier_table->get(m_property));
  1208. }
  1209. DeprecatedString GetPrivateById::to_deprecated_string_impl(Bytecode::Executable const& executable) const
  1210. {
  1211. return DeprecatedString::formatted("GetPrivateById {} ({})", m_property, executable.identifier_table->get(m_property));
  1212. }
  1213. DeprecatedString HasPrivateId::to_deprecated_string_impl(Bytecode::Executable const& executable) const
  1214. {
  1215. return DeprecatedString::formatted("HasPrivateId {} ({})", m_property, executable.identifier_table->get(m_property));
  1216. }
  1217. DeprecatedString DeleteById::to_deprecated_string_impl(Bytecode::Executable const& executable) const
  1218. {
  1219. return DeprecatedString::formatted("DeleteById {} ({})", m_property, executable.identifier_table->get(m_property));
  1220. }
  1221. DeprecatedString Jump::to_deprecated_string_impl(Bytecode::Executable const&) const
  1222. {
  1223. if (m_true_target.has_value())
  1224. return DeprecatedString::formatted("Jump {}", *m_true_target);
  1225. return DeprecatedString::formatted("Jump <empty>");
  1226. }
  1227. DeprecatedString JumpConditional::to_deprecated_string_impl(Bytecode::Executable const&) const
  1228. {
  1229. auto true_string = m_true_target.has_value() ? DeprecatedString::formatted("{}", *m_true_target) : "<empty>";
  1230. auto false_string = m_false_target.has_value() ? DeprecatedString::formatted("{}", *m_false_target) : "<empty>";
  1231. return DeprecatedString::formatted("JumpConditional true:{} false:{}", true_string, false_string);
  1232. }
  1233. DeprecatedString JumpNullish::to_deprecated_string_impl(Bytecode::Executable const&) const
  1234. {
  1235. auto true_string = m_true_target.has_value() ? DeprecatedString::formatted("{}", *m_true_target) : "<empty>";
  1236. auto false_string = m_false_target.has_value() ? DeprecatedString::formatted("{}", *m_false_target) : "<empty>";
  1237. return DeprecatedString::formatted("JumpNullish null:{} nonnull:{}", true_string, false_string);
  1238. }
  1239. DeprecatedString JumpUndefined::to_deprecated_string_impl(Bytecode::Executable const&) const
  1240. {
  1241. auto true_string = m_true_target.has_value() ? DeprecatedString::formatted("{}", *m_true_target) : "<empty>";
  1242. auto false_string = m_false_target.has_value() ? DeprecatedString::formatted("{}", *m_false_target) : "<empty>";
  1243. return DeprecatedString::formatted("JumpUndefined undefined:{} not undefined:{}", true_string, false_string);
  1244. }
  1245. static StringView call_type_to_string(CallType type)
  1246. {
  1247. switch (type) {
  1248. case CallType::Call:
  1249. return ""sv;
  1250. case CallType::Construct:
  1251. return " (Construct)"sv;
  1252. case CallType::DirectEval:
  1253. return " (DirectEval)"sv;
  1254. }
  1255. VERIFY_NOT_REACHED();
  1256. }
  1257. DeprecatedString Call::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("Call{} callee:{}, this:{}, first_arg:{} ({})", type, m_callee, m_this_value, m_first_argument, executable.get_string(m_expression_string.value()));
  1262. return DeprecatedString::formatted("Call{} callee:{}, this:{}, first_arg:{}", type, m_callee, m_first_argument, m_this_value);
  1263. }
  1264. DeprecatedString CallWithArgumentArray::to_deprecated_string_impl(Bytecode::Executable const& executable) const
  1265. {
  1266. auto type = call_type_to_string(m_type);
  1267. if (m_expression_string.has_value())
  1268. return DeprecatedString::formatted("CallWithArgumentArray{} callee:{}, this:{}, arguments:[...acc] ({})", type, m_callee, m_this_value, executable.get_string(m_expression_string.value()));
  1269. return DeprecatedString::formatted("CallWithArgumentArray{} callee:{}, this:{}, arguments:[...acc]", type, m_callee, m_this_value);
  1270. }
  1271. DeprecatedString SuperCallWithArgumentArray::to_deprecated_string_impl(Bytecode::Executable const&) const
  1272. {
  1273. return "SuperCallWithArgumentArray arguments:[...acc]"sv;
  1274. }
  1275. DeprecatedString NewFunction::to_deprecated_string_impl(Bytecode::Executable const&) const
  1276. {
  1277. StringBuilder builder;
  1278. builder.append("NewFunction"sv);
  1279. if (m_function_node.has_name())
  1280. builder.appendff(" name:{}"sv, m_function_node.name());
  1281. if (m_lhs_name.has_value())
  1282. builder.appendff(" lhs_name:{}"sv, m_lhs_name.value());
  1283. if (m_home_object.has_value())
  1284. builder.appendff(" home_object:{}"sv, m_home_object.value());
  1285. return builder.to_deprecated_string();
  1286. }
  1287. DeprecatedString NewClass::to_deprecated_string_impl(Bytecode::Executable const&) const
  1288. {
  1289. StringBuilder builder;
  1290. auto name = m_class_expression.name();
  1291. builder.appendff("NewClass '{}'"sv, name.is_null() ? ""sv : name);
  1292. if (m_lhs_name.has_value())
  1293. builder.appendff(" lhs_name:{}"sv, m_lhs_name.value());
  1294. return builder.to_deprecated_string();
  1295. }
  1296. DeprecatedString Return::to_deprecated_string_impl(Bytecode::Executable const&) const
  1297. {
  1298. return "Return";
  1299. }
  1300. DeprecatedString Increment::to_deprecated_string_impl(Bytecode::Executable const&) const
  1301. {
  1302. return "Increment";
  1303. }
  1304. DeprecatedString Decrement::to_deprecated_string_impl(Bytecode::Executable const&) const
  1305. {
  1306. return "Decrement";
  1307. }
  1308. DeprecatedString Throw::to_deprecated_string_impl(Bytecode::Executable const&) const
  1309. {
  1310. return "Throw";
  1311. }
  1312. DeprecatedString ThrowIfNotObject::to_deprecated_string_impl(Bytecode::Executable const&) const
  1313. {
  1314. return "ThrowIfNotObject";
  1315. }
  1316. DeprecatedString ThrowIfNullish::to_deprecated_string_impl(Bytecode::Executable const&) const
  1317. {
  1318. return "ThrowIfNullish";
  1319. }
  1320. DeprecatedString EnterUnwindContext::to_deprecated_string_impl(Bytecode::Executable const&) const
  1321. {
  1322. auto handler_string = m_handler_target.has_value() ? DeprecatedString::formatted("{}", *m_handler_target) : "<empty>";
  1323. auto finalizer_string = m_finalizer_target.has_value() ? DeprecatedString::formatted("{}", *m_finalizer_target) : "<empty>";
  1324. return DeprecatedString::formatted("EnterUnwindContext handler:{} finalizer:{} entry:{}", handler_string, finalizer_string, m_entry_point);
  1325. }
  1326. DeprecatedString ScheduleJump::to_deprecated_string_impl(Bytecode::Executable const&) const
  1327. {
  1328. return DeprecatedString::formatted("ScheduleJump {}", m_target);
  1329. }
  1330. DeprecatedString LeaveLexicalEnvironment::to_deprecated_string_impl(Bytecode::Executable const&) const
  1331. {
  1332. return "LeaveLexicalEnvironment"sv;
  1333. }
  1334. DeprecatedString LeaveUnwindContext::to_deprecated_string_impl(Bytecode::Executable const&) const
  1335. {
  1336. return "LeaveUnwindContext";
  1337. }
  1338. DeprecatedString ContinuePendingUnwind::to_deprecated_string_impl(Bytecode::Executable const&) const
  1339. {
  1340. return DeprecatedString::formatted("ContinuePendingUnwind resume:{}", m_resume_target);
  1341. }
  1342. DeprecatedString PushDeclarativeEnvironment::to_deprecated_string_impl(Bytecode::Executable const& executable) const
  1343. {
  1344. StringBuilder builder;
  1345. builder.append("PushDeclarativeEnvironment"sv);
  1346. if (!m_variables.is_empty()) {
  1347. builder.append(" {"sv);
  1348. Vector<DeprecatedString> names;
  1349. for (auto& it : m_variables)
  1350. names.append(executable.get_string(it.key));
  1351. builder.append('}');
  1352. builder.join(", "sv, names);
  1353. }
  1354. return builder.to_deprecated_string();
  1355. }
  1356. DeprecatedString Yield::to_deprecated_string_impl(Bytecode::Executable const&) const
  1357. {
  1358. if (m_continuation_label.has_value())
  1359. return DeprecatedString::formatted("Yield continuation:@{}", m_continuation_label->block().name());
  1360. return DeprecatedString::formatted("Yield return");
  1361. }
  1362. DeprecatedString GetByValue::to_deprecated_string_impl(Bytecode::Executable const&) const
  1363. {
  1364. return DeprecatedString::formatted("GetByValue base:{}", m_base);
  1365. }
  1366. DeprecatedString PutByValue::to_deprecated_string_impl(Bytecode::Executable const&) const
  1367. {
  1368. auto kind = m_kind == PropertyKind::Getter
  1369. ? "getter"
  1370. : m_kind == PropertyKind::Setter
  1371. ? "setter"
  1372. : "property";
  1373. return DeprecatedString::formatted("PutByValue kind:{} base:{}, property:{}", kind, m_base, m_property);
  1374. }
  1375. DeprecatedString DeleteByValue::to_deprecated_string_impl(Bytecode::Executable const&) const
  1376. {
  1377. return DeprecatedString::formatted("DeleteByValue base:{}", m_base);
  1378. }
  1379. DeprecatedString GetIterator::to_deprecated_string_impl(Executable const&) const
  1380. {
  1381. auto hint = m_hint == IteratorHint::Sync ? "sync" : "async";
  1382. return DeprecatedString::formatted("GetIterator hint:{}", hint);
  1383. }
  1384. DeprecatedString GetMethod::to_deprecated_string_impl(Bytecode::Executable const& executable) const
  1385. {
  1386. return DeprecatedString::formatted("GetMethod {} ({})", m_property, executable.identifier_table->get(m_property));
  1387. }
  1388. DeprecatedString GetObjectPropertyIterator::to_deprecated_string_impl(Bytecode::Executable const&) const
  1389. {
  1390. return "GetObjectPropertyIterator";
  1391. }
  1392. DeprecatedString IteratorClose::to_deprecated_string_impl(Bytecode::Executable const&) const
  1393. {
  1394. if (!m_completion_value.has_value())
  1395. return DeprecatedString::formatted("IteratorClose completion_type={} completion_value=<empty>", to_underlying(m_completion_type));
  1396. auto completion_value_string = m_completion_value->to_string_without_side_effects().release_value_but_fixme_should_propagate_errors();
  1397. return DeprecatedString::formatted("IteratorClose completion_type={} completion_value={}", to_underlying(m_completion_type), completion_value_string);
  1398. }
  1399. DeprecatedString IteratorNext::to_deprecated_string_impl(Executable const&) const
  1400. {
  1401. return "IteratorNext";
  1402. }
  1403. DeprecatedString IteratorResultDone::to_deprecated_string_impl(Executable const&) const
  1404. {
  1405. return "IteratorResultDone";
  1406. }
  1407. DeprecatedString IteratorResultValue::to_deprecated_string_impl(Executable const&) const
  1408. {
  1409. return "IteratorResultValue";
  1410. }
  1411. DeprecatedString ResolveThisBinding::to_deprecated_string_impl(Bytecode::Executable const&) const
  1412. {
  1413. return "ResolveThisBinding"sv;
  1414. }
  1415. DeprecatedString ResolveSuperBase::to_deprecated_string_impl(Bytecode::Executable const&) const
  1416. {
  1417. return "ResolveSuperBase"sv;
  1418. }
  1419. DeprecatedString GetNewTarget::to_deprecated_string_impl(Bytecode::Executable const&) const
  1420. {
  1421. return "GetNewTarget"sv;
  1422. }
  1423. DeprecatedString TypeofVariable::to_deprecated_string_impl(Bytecode::Executable const& executable) const
  1424. {
  1425. return DeprecatedString::formatted("TypeofVariable {} ({})", m_identifier, executable.identifier_table->get(m_identifier));
  1426. }
  1427. DeprecatedString TypeofLocal::to_deprecated_string_impl(Bytecode::Executable const&) const
  1428. {
  1429. return DeprecatedString::formatted("TypeofLocal {}", m_index);
  1430. }
  1431. DeprecatedString ToNumeric::to_deprecated_string_impl(Bytecode::Executable const&) const
  1432. {
  1433. return "ToNumeric"sv;
  1434. }
  1435. DeprecatedString BlockDeclarationInstantiation::to_deprecated_string_impl(Bytecode::Executable const&) const
  1436. {
  1437. return "BlockDeclarationInstantiation"sv;
  1438. }
  1439. DeprecatedString ImportCall::to_deprecated_string_impl(Bytecode::Executable const&) const
  1440. {
  1441. return DeprecatedString::formatted("ImportCall specifier:{} options:{}"sv, m_specifier, m_options);
  1442. }
  1443. }