Op.cpp 66 KB

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