Op.cpp 54 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321
  1. /*
  2. * Copyright (c) 2021, Andreas Kling <kling@serenityos.org>
  3. * Copyright (c) 2021-2022, 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(Object* object, Value value, PropertyKey name, Bytecode::Interpreter& interpreter, PropertyKind kind)
  44. {
  45. auto& vm = interpreter.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, interpreter.accumulator(), object));
  67. if (!succeeded && vm.in_strict_mode())
  68. return vm.throw_completion<TypeError>(ErrorType::ReferenceNullishSetProperty, name, interpreter.accumulator().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 Value(js_string(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. // 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.
  218. // Make sure to put this into the accumulator before the iterator object disappears from the stack to prevent the members from being GC'd.
  219. static Object* iterator_to_object(VM& vm, Iterator iterator)
  220. {
  221. auto& realm = *vm.current_realm();
  222. auto* object = Object::create(realm, nullptr);
  223. object->define_direct_property(vm.names.iterator, iterator.iterator, 0);
  224. object->define_direct_property(vm.names.next, iterator.next_method, 0);
  225. object->define_direct_property(vm.names.done, Value(iterator.done), 0);
  226. return object;
  227. }
  228. static Iterator object_to_iterator(VM& vm, Object& object)
  229. {
  230. return Iterator {
  231. .iterator = &MUST(object.get(vm.names.iterator)).as_object(),
  232. .next_method = MUST(object.get(vm.names.next)),
  233. .done = MUST(object.get(vm.names.done)).as_bool()
  234. };
  235. }
  236. ThrowCompletionOr<void> IteratorToArray::execute_impl(Bytecode::Interpreter& interpreter) const
  237. {
  238. auto& vm = interpreter.vm();
  239. auto iterator_object = TRY(interpreter.accumulator().to_object(vm));
  240. auto iterator = object_to_iterator(vm, *iterator_object);
  241. auto* array = MUST(Array::create(interpreter.realm(), 0));
  242. size_t index = 0;
  243. while (true) {
  244. auto* iterator_result = TRY(iterator_next(vm, iterator));
  245. auto complete = TRY(iterator_complete(vm, *iterator_result));
  246. if (complete) {
  247. interpreter.accumulator() = array;
  248. return {};
  249. }
  250. auto value = TRY(iterator_value(vm, *iterator_result));
  251. MUST(array->create_data_property_or_throw(index, value));
  252. index++;
  253. }
  254. return {};
  255. }
  256. ThrowCompletionOr<void> NewString::execute_impl(Bytecode::Interpreter& interpreter) const
  257. {
  258. interpreter.accumulator() = js_string(interpreter.vm(), interpreter.current_executable().get_string(m_string));
  259. return {};
  260. }
  261. ThrowCompletionOr<void> NewObject::execute_impl(Bytecode::Interpreter& interpreter) const
  262. {
  263. auto& vm = interpreter.vm();
  264. auto& realm = *vm.current_realm();
  265. interpreter.accumulator() = Object::create(realm, realm.intrinsics().object_prototype());
  266. return {};
  267. }
  268. ThrowCompletionOr<void> NewRegExp::execute_impl(Bytecode::Interpreter& interpreter) const
  269. {
  270. auto& vm = interpreter.vm();
  271. auto source = interpreter.current_executable().get_string(m_source_index);
  272. auto flags = interpreter.current_executable().get_string(m_flags_index);
  273. interpreter.accumulator() = TRY(regexp_create(vm, js_string(vm, source), js_string(vm, flags)));
  274. return {};
  275. }
  276. ThrowCompletionOr<void> CopyObjectExcludingProperties::execute_impl(Bytecode::Interpreter& interpreter) const
  277. {
  278. auto& vm = interpreter.vm();
  279. auto& realm = *vm.current_realm();
  280. auto* from_object = TRY(interpreter.reg(m_from_object).to_object(vm));
  281. auto* to_object = Object::create(realm, realm.intrinsics().object_prototype());
  282. HashTable<Value, ValueTraits> excluded_names;
  283. for (size_t i = 0; i < m_excluded_names_count; ++i)
  284. excluded_names.set(interpreter.reg(m_excluded_names[i]));
  285. auto own_keys = TRY(from_object->internal_own_property_keys());
  286. for (auto& key : own_keys) {
  287. if (!excluded_names.contains(key)) {
  288. auto property_key = TRY(key.to_property_key(vm));
  289. auto property_value = TRY(from_object->get(property_key));
  290. to_object->define_direct_property(property_key, property_value, JS::default_attributes);
  291. }
  292. }
  293. interpreter.accumulator() = to_object;
  294. return {};
  295. }
  296. ThrowCompletionOr<void> ConcatString::execute_impl(Bytecode::Interpreter& interpreter) const
  297. {
  298. auto& vm = interpreter.vm();
  299. interpreter.reg(m_lhs) = TRY(add(vm, interpreter.reg(m_lhs), interpreter.accumulator()));
  300. return {};
  301. }
  302. ThrowCompletionOr<void> GetVariable::execute_impl(Bytecode::Interpreter& interpreter) const
  303. {
  304. auto& vm = interpreter.vm();
  305. auto get_reference = [&]() -> ThrowCompletionOr<Reference> {
  306. auto const& string = interpreter.current_executable().get_identifier(m_identifier);
  307. if (m_cached_environment_coordinate.has_value()) {
  308. Environment* environment = nullptr;
  309. if (m_cached_environment_coordinate->index == EnvironmentCoordinate::global_marker) {
  310. environment = &interpreter.vm().current_realm()->global_environment();
  311. } else {
  312. environment = vm.running_execution_context().lexical_environment;
  313. for (size_t i = 0; i < m_cached_environment_coordinate->hops; ++i)
  314. environment = environment->outer_environment();
  315. VERIFY(environment);
  316. VERIFY(environment->is_declarative_environment());
  317. }
  318. if (!environment->is_permanently_screwed_by_eval()) {
  319. return Reference { *environment, string, vm.in_strict_mode(), m_cached_environment_coordinate };
  320. }
  321. m_cached_environment_coordinate = {};
  322. }
  323. auto reference = TRY(vm.resolve_binding(string));
  324. if (reference.environment_coordinate().has_value())
  325. m_cached_environment_coordinate = reference.environment_coordinate();
  326. return reference;
  327. };
  328. auto reference = TRY(get_reference());
  329. interpreter.accumulator() = TRY(reference.get_value(vm));
  330. return {};
  331. }
  332. ThrowCompletionOr<void> DeleteVariable::execute_impl(Bytecode::Interpreter& interpreter) const
  333. {
  334. auto& vm = interpreter.vm();
  335. auto const& string = interpreter.current_executable().get_identifier(m_identifier);
  336. auto reference = TRY(vm.resolve_binding(string));
  337. interpreter.accumulator() = Value(TRY(reference.delete_(vm)));
  338. return {};
  339. }
  340. ThrowCompletionOr<void> CreateEnvironment::execute_impl(Bytecode::Interpreter& interpreter) const
  341. {
  342. auto make_and_swap_envs = [&](auto*& old_environment) {
  343. Environment* environment = new_declarative_environment(*old_environment);
  344. swap(old_environment, environment);
  345. return environment;
  346. };
  347. if (m_mode == EnvironmentMode::Lexical)
  348. interpreter.saved_lexical_environment_stack().append(make_and_swap_envs(interpreter.vm().running_execution_context().lexical_environment));
  349. else if (m_mode == EnvironmentMode::Var)
  350. interpreter.saved_variable_environment_stack().append(make_and_swap_envs(interpreter.vm().running_execution_context().variable_environment));
  351. return {};
  352. }
  353. ThrowCompletionOr<void> EnterObjectEnvironment::execute_impl(Bytecode::Interpreter& interpreter) const
  354. {
  355. auto& vm = interpreter.vm();
  356. auto& old_environment = vm.running_execution_context().lexical_environment;
  357. interpreter.saved_lexical_environment_stack().append(old_environment);
  358. auto object = TRY(interpreter.accumulator().to_object(vm));
  359. vm.running_execution_context().lexical_environment = new_object_environment(*object, true, old_environment);
  360. return {};
  361. }
  362. ThrowCompletionOr<void> CreateVariable::execute_impl(Bytecode::Interpreter& interpreter) const
  363. {
  364. auto& vm = interpreter.vm();
  365. auto const& name = interpreter.current_executable().get_identifier(m_identifier);
  366. if (m_mode == EnvironmentMode::Lexical) {
  367. VERIFY(!m_is_global);
  368. // Note: This is papering over an issue where "FunctionDeclarationInstantiation" creates these bindings for us.
  369. // Instead of crashing in there, we'll just raise an exception here.
  370. if (TRY(vm.lexical_environment()->has_binding(name)))
  371. return vm.throw_completion<InternalError>(DeprecatedString::formatted("Lexical environment already has binding '{}'", name));
  372. if (m_is_immutable)
  373. vm.lexical_environment()->create_immutable_binding(vm, name, vm.in_strict_mode());
  374. else
  375. vm.lexical_environment()->create_mutable_binding(vm, name, vm.in_strict_mode());
  376. } else {
  377. if (!m_is_global) {
  378. if (m_is_immutable)
  379. vm.variable_environment()->create_immutable_binding(vm, name, vm.in_strict_mode());
  380. else
  381. vm.variable_environment()->create_mutable_binding(vm, name, vm.in_strict_mode());
  382. } else {
  383. // 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".
  384. // The only area that sets "can_be_deleted" to true is EvalDeclarationInstantiation, which is currently fully implemented in C++ and not in Bytecode.
  385. verify_cast<GlobalEnvironment>(vm.variable_environment())->create_global_var_binding(name, false);
  386. }
  387. }
  388. return {};
  389. }
  390. ThrowCompletionOr<void> SetVariable::execute_impl(Bytecode::Interpreter& interpreter) const
  391. {
  392. auto& vm = interpreter.vm();
  393. auto const& name = interpreter.current_executable().get_identifier(m_identifier);
  394. auto environment = m_mode == EnvironmentMode::Lexical ? vm.running_execution_context().lexical_environment : vm.running_execution_context().variable_environment;
  395. auto reference = TRY(vm.resolve_binding(name, environment));
  396. switch (m_initialization_mode) {
  397. case InitializationMode::Initialize:
  398. TRY(reference.initialize_referenced_binding(vm, interpreter.accumulator()));
  399. break;
  400. case InitializationMode::Set:
  401. TRY(reference.put_value(vm, interpreter.accumulator()));
  402. break;
  403. case InitializationMode::InitializeOrSet:
  404. VERIFY(reference.is_environment_reference());
  405. VERIFY(reference.base_environment().is_declarative_environment());
  406. TRY(static_cast<DeclarativeEnvironment&>(reference.base_environment()).initialize_or_set_mutable_binding(vm, name, interpreter.accumulator()));
  407. break;
  408. }
  409. return {};
  410. }
  411. ThrowCompletionOr<void> GetById::execute_impl(Bytecode::Interpreter& interpreter) const
  412. {
  413. auto& vm = interpreter.vm();
  414. auto* object = TRY(interpreter.accumulator().to_object(vm));
  415. interpreter.accumulator() = TRY(object->get(interpreter.current_executable().get_identifier(m_property)));
  416. return {};
  417. }
  418. ThrowCompletionOr<void> PutById::execute_impl(Bytecode::Interpreter& interpreter) const
  419. {
  420. auto& vm = interpreter.vm();
  421. auto* object = TRY(interpreter.reg(m_base).to_object(vm));
  422. PropertyKey name = interpreter.current_executable().get_identifier(m_property);
  423. auto value = interpreter.accumulator();
  424. return put_by_property_key(object, value, name, interpreter, m_kind);
  425. }
  426. ThrowCompletionOr<void> DeleteById::execute_impl(Bytecode::Interpreter& interpreter) const
  427. {
  428. auto& vm = interpreter.vm();
  429. auto* object = TRY(interpreter.accumulator().to_object(vm));
  430. auto const& identifier = interpreter.current_executable().get_identifier(m_property);
  431. bool strict = vm.in_strict_mode();
  432. auto reference = Reference { object, identifier, {}, strict };
  433. interpreter.accumulator() = Value(TRY(reference.delete_(vm)));
  434. return {};
  435. };
  436. ThrowCompletionOr<void> Jump::execute_impl(Bytecode::Interpreter& interpreter) const
  437. {
  438. interpreter.jump(*m_true_target);
  439. return {};
  440. }
  441. ThrowCompletionOr<void> ResolveThisBinding::execute_impl(Bytecode::Interpreter& interpreter) const
  442. {
  443. auto& vm = interpreter.vm();
  444. interpreter.accumulator() = TRY(vm.resolve_this_binding());
  445. return {};
  446. }
  447. ThrowCompletionOr<void> GetNewTarget::execute_impl(Bytecode::Interpreter& interpreter) const
  448. {
  449. interpreter.accumulator() = interpreter.vm().get_new_target();
  450. return {};
  451. }
  452. void Jump::replace_references_impl(BasicBlock const& from, BasicBlock const& to)
  453. {
  454. if (m_true_target.has_value() && &m_true_target->block() == &from)
  455. m_true_target = Label { to };
  456. if (m_false_target.has_value() && &m_false_target->block() == &from)
  457. m_false_target = Label { to };
  458. }
  459. ThrowCompletionOr<void> JumpConditional::execute_impl(Bytecode::Interpreter& interpreter) const
  460. {
  461. VERIFY(m_true_target.has_value());
  462. VERIFY(m_false_target.has_value());
  463. auto result = interpreter.accumulator();
  464. if (result.to_boolean())
  465. interpreter.jump(m_true_target.value());
  466. else
  467. interpreter.jump(m_false_target.value());
  468. return {};
  469. }
  470. ThrowCompletionOr<void> JumpNullish::execute_impl(Bytecode::Interpreter& interpreter) const
  471. {
  472. VERIFY(m_true_target.has_value());
  473. VERIFY(m_false_target.has_value());
  474. auto result = interpreter.accumulator();
  475. if (result.is_nullish())
  476. interpreter.jump(m_true_target.value());
  477. else
  478. interpreter.jump(m_false_target.value());
  479. return {};
  480. }
  481. ThrowCompletionOr<void> JumpUndefined::execute_impl(Bytecode::Interpreter& interpreter) const
  482. {
  483. VERIFY(m_true_target.has_value());
  484. VERIFY(m_false_target.has_value());
  485. auto result = interpreter.accumulator();
  486. if (result.is_undefined())
  487. interpreter.jump(m_true_target.value());
  488. else
  489. interpreter.jump(m_false_target.value());
  490. return {};
  491. }
  492. // 13.3.8.1 https://tc39.es/ecma262/#sec-runtime-semantics-argumentlistevaluation
  493. static MarkedVector<Value> argument_list_evaluation(Bytecode::Interpreter& interpreter)
  494. {
  495. // Note: Any spreading and actual evaluation is handled in preceding opcodes
  496. // Note: The spec uses the concept of a list, while we create a temporary array
  497. // in the preceding opcodes, so we have to convert in a manner that is not
  498. // visible to the user
  499. auto& vm = interpreter.vm();
  500. MarkedVector<Value> argument_values { vm.heap() };
  501. auto arguments = interpreter.accumulator();
  502. if (!(arguments.is_object() && is<Array>(arguments.as_object()))) {
  503. dbgln("[{}] Call arguments are not an array, but: {}", interpreter.debug_position(), arguments.to_string_without_side_effects());
  504. interpreter.current_executable().dump();
  505. VERIFY_NOT_REACHED();
  506. }
  507. auto& argument_array = arguments.as_array();
  508. auto array_length = argument_array.indexed_properties().array_like_size();
  509. argument_values.ensure_capacity(array_length);
  510. for (size_t i = 0; i < array_length; ++i) {
  511. if (auto maybe_value = argument_array.indexed_properties().get(i); maybe_value.has_value())
  512. argument_values.append(maybe_value.release_value().value);
  513. else
  514. argument_values.append(js_undefined());
  515. }
  516. return argument_values;
  517. }
  518. Completion Call::throw_type_error_for_callee(Bytecode::Interpreter& interpreter, StringView callee_type) const
  519. {
  520. auto callee = interpreter.reg(m_callee);
  521. if (m_expression_string.has_value())
  522. return interpreter.vm().throw_completion<TypeError>(ErrorType::IsNotAEvaluatedFrom, callee.to_string_without_side_effects(), callee_type, interpreter.current_executable().get_string(m_expression_string->value()));
  523. return interpreter.vm().throw_completion<TypeError>(ErrorType::IsNotA, callee.to_string_without_side_effects(), callee_type);
  524. }
  525. ThrowCompletionOr<void> Call::execute_impl(Bytecode::Interpreter& interpreter) const
  526. {
  527. auto& vm = interpreter.vm();
  528. auto callee = interpreter.reg(m_callee);
  529. if (m_type == CallType::Call && !callee.is_function())
  530. return throw_type_error_for_callee(interpreter, "function"sv);
  531. if (m_type == CallType::Construct && !callee.is_constructor())
  532. return throw_type_error_for_callee(interpreter, "constructor"sv);
  533. auto& function = callee.as_function();
  534. auto this_value = interpreter.reg(m_this_value);
  535. auto argument_values = argument_list_evaluation(interpreter);
  536. Value return_value;
  537. if (m_type == CallType::Call)
  538. return_value = TRY(call(vm, function, this_value, move(argument_values)));
  539. else
  540. return_value = TRY(construct(vm, function, move(argument_values)));
  541. interpreter.accumulator() = return_value;
  542. return {};
  543. }
  544. // 13.3.7.1 Runtime Semantics: Evaluation, https://tc39.es/ecma262/#sec-super-keyword-runtime-semantics-evaluation
  545. ThrowCompletionOr<void> SuperCall::execute_impl(Bytecode::Interpreter& interpreter) const
  546. {
  547. auto& vm = interpreter.vm();
  548. // 1. Let newTarget be GetNewTarget().
  549. auto new_target = vm.get_new_target();
  550. // 2. Assert: Type(newTarget) is Object.
  551. VERIFY(new_target.is_object());
  552. // 3. Let func be GetSuperConstructor().
  553. auto* func = get_super_constructor(vm);
  554. // 4. Let argList be ? ArgumentListEvaluation of Arguments.
  555. MarkedVector<Value> arg_list { vm.heap() };
  556. if (m_is_synthetic) {
  557. auto const& value = interpreter.accumulator();
  558. VERIFY(value.is_object() && is<Array>(value.as_object()));
  559. auto const& array_value = static_cast<Array const&>(value.as_object());
  560. auto length = MUST(length_of_array_like(vm, array_value));
  561. for (size_t i = 0; i < length; ++i)
  562. arg_list.append(array_value.get_without_side_effects(PropertyKey { i }));
  563. } else {
  564. arg_list = argument_list_evaluation(interpreter);
  565. }
  566. // 5. If IsConstructor(func) is false, throw a TypeError exception.
  567. if (!Value(func).is_constructor())
  568. return vm.throw_completion<TypeError>(ErrorType::NotAConstructor, "Super constructor");
  569. // 6. Let result be ? Construct(func, argList, newTarget).
  570. auto* result = TRY(construct(vm, static_cast<FunctionObject&>(*func), move(arg_list), &new_target.as_function()));
  571. // 7. Let thisER be GetThisEnvironment().
  572. auto& this_environment = verify_cast<FunctionEnvironment>(get_this_environment(vm));
  573. // 8. Perform ? thisER.BindThisValue(result).
  574. TRY(this_environment.bind_this_value(vm, result));
  575. // 9. Let F be thisER.[[FunctionObject]].
  576. auto& f = this_environment.function_object();
  577. // 10. Assert: F is an ECMAScript function object.
  578. // NOTE: This is implied by the strong C++ type.
  579. // 11. Perform ? InitializeInstanceElements(result, F).
  580. TRY(result->initialize_instance_elements(f));
  581. // 12. Return result.
  582. interpreter.accumulator() = result;
  583. return {};
  584. }
  585. ThrowCompletionOr<void> NewFunction::execute_impl(Bytecode::Interpreter& interpreter) const
  586. {
  587. auto& vm = interpreter.vm();
  588. 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());
  589. return {};
  590. }
  591. ThrowCompletionOr<void> Return::execute_impl(Bytecode::Interpreter& interpreter) const
  592. {
  593. interpreter.do_return(interpreter.accumulator().value_or(js_undefined()));
  594. return {};
  595. }
  596. ThrowCompletionOr<void> Increment::execute_impl(Bytecode::Interpreter& interpreter) const
  597. {
  598. auto& vm = interpreter.vm();
  599. auto old_value = TRY(interpreter.accumulator().to_numeric(vm));
  600. if (old_value.is_number())
  601. interpreter.accumulator() = Value(old_value.as_double() + 1);
  602. else
  603. interpreter.accumulator() = BigInt::create(vm, old_value.as_bigint().big_integer().plus(Crypto::SignedBigInteger { 1 }));
  604. return {};
  605. }
  606. ThrowCompletionOr<void> Decrement::execute_impl(Bytecode::Interpreter& interpreter) const
  607. {
  608. auto& vm = interpreter.vm();
  609. auto old_value = TRY(interpreter.accumulator().to_numeric(vm));
  610. if (old_value.is_number())
  611. interpreter.accumulator() = Value(old_value.as_double() - 1);
  612. else
  613. interpreter.accumulator() = BigInt::create(vm, old_value.as_bigint().big_integer().minus(Crypto::SignedBigInteger { 1 }));
  614. return {};
  615. }
  616. ThrowCompletionOr<void> Throw::execute_impl(Bytecode::Interpreter& interpreter) const
  617. {
  618. return throw_completion(interpreter.accumulator());
  619. }
  620. ThrowCompletionOr<void> EnterUnwindContext::execute_impl(Bytecode::Interpreter& interpreter) const
  621. {
  622. interpreter.enter_unwind_context(m_handler_target, m_finalizer_target);
  623. interpreter.jump(m_entry_point);
  624. return {};
  625. }
  626. void EnterUnwindContext::replace_references_impl(BasicBlock const& from, BasicBlock const& to)
  627. {
  628. if (&m_entry_point.block() == &from)
  629. m_entry_point = Label { to };
  630. if (m_handler_target.has_value() && &m_handler_target->block() == &from)
  631. m_handler_target = Label { to };
  632. if (m_finalizer_target.has_value() && &m_finalizer_target->block() == &from)
  633. m_finalizer_target = Label { to };
  634. }
  635. void CopyObjectExcludingProperties::replace_references_impl(Register from, Register to)
  636. {
  637. if (m_from_object == from)
  638. m_from_object = to;
  639. for (size_t i = 0; i < m_excluded_names_count; ++i) {
  640. if (m_excluded_names[i] == from)
  641. m_excluded_names[i] = to;
  642. }
  643. }
  644. void Call::replace_references_impl(Register from, Register to)
  645. {
  646. if (m_callee == from)
  647. m_callee = to;
  648. if (m_this_value == from)
  649. m_this_value = to;
  650. }
  651. ThrowCompletionOr<void> LeaveEnvironment::execute_impl(Bytecode::Interpreter& interpreter) const
  652. {
  653. if (m_mode == EnvironmentMode::Lexical)
  654. interpreter.vm().running_execution_context().lexical_environment = interpreter.saved_lexical_environment_stack().take_last();
  655. if (m_mode == EnvironmentMode::Var)
  656. interpreter.vm().running_execution_context().variable_environment = interpreter.saved_variable_environment_stack().take_last();
  657. return {};
  658. }
  659. ThrowCompletionOr<void> LeaveUnwindContext::execute_impl(Bytecode::Interpreter& interpreter) const
  660. {
  661. interpreter.leave_unwind_context();
  662. return {};
  663. }
  664. ThrowCompletionOr<void> ContinuePendingUnwind::execute_impl(Bytecode::Interpreter& interpreter) const
  665. {
  666. return interpreter.continue_pending_unwind(m_resume_target);
  667. }
  668. void ContinuePendingUnwind::replace_references_impl(BasicBlock const& from, BasicBlock const& to)
  669. {
  670. if (&m_resume_target.block() == &from)
  671. m_resume_target = Label { to };
  672. }
  673. ThrowCompletionOr<void> PushDeclarativeEnvironment::execute_impl(Bytecode::Interpreter& interpreter) const
  674. {
  675. auto* environment = interpreter.vm().heap().allocate_without_realm<DeclarativeEnvironment>(interpreter.vm().lexical_environment());
  676. interpreter.vm().running_execution_context().lexical_environment = environment;
  677. interpreter.vm().running_execution_context().variable_environment = environment;
  678. return {};
  679. }
  680. ThrowCompletionOr<void> Yield::execute_impl(Bytecode::Interpreter& interpreter) const
  681. {
  682. auto yielded_value = interpreter.accumulator().value_or(js_undefined());
  683. auto object = Object::create(interpreter.realm(), nullptr);
  684. object->define_direct_property("result", yielded_value, JS::default_attributes);
  685. if (m_continuation_label.has_value())
  686. object->define_direct_property("continuation", Value(static_cast<double>(reinterpret_cast<u64>(&m_continuation_label->block()))), JS::default_attributes);
  687. else
  688. object->define_direct_property("continuation", Value(0), JS::default_attributes);
  689. interpreter.do_return(object);
  690. return {};
  691. }
  692. void Yield::replace_references_impl(BasicBlock const& from, BasicBlock const& to)
  693. {
  694. if (m_continuation_label.has_value() && &m_continuation_label->block() == &from)
  695. m_continuation_label = Label { to };
  696. }
  697. ThrowCompletionOr<void> GetByValue::execute_impl(Bytecode::Interpreter& interpreter) const
  698. {
  699. auto& vm = interpreter.vm();
  700. auto* object = TRY(interpreter.reg(m_base).to_object(vm));
  701. auto property_key = TRY(interpreter.accumulator().to_property_key(vm));
  702. interpreter.accumulator() = TRY(object->get(property_key));
  703. return {};
  704. }
  705. ThrowCompletionOr<void> PutByValue::execute_impl(Bytecode::Interpreter& interpreter) const
  706. {
  707. auto& vm = interpreter.vm();
  708. auto* object = TRY(interpreter.reg(m_base).to_object(vm));
  709. auto property_key = TRY(interpreter.reg(m_property).to_property_key(vm));
  710. return put_by_property_key(object, interpreter.accumulator(), property_key, interpreter, m_kind);
  711. }
  712. ThrowCompletionOr<void> DeleteByValue::execute_impl(Bytecode::Interpreter& interpreter) const
  713. {
  714. auto& vm = interpreter.vm();
  715. auto* object = TRY(interpreter.reg(m_base).to_object(vm));
  716. auto property_key = TRY(interpreter.accumulator().to_property_key(vm));
  717. bool strict = vm.in_strict_mode();
  718. auto reference = Reference { object, property_key, {}, strict };
  719. interpreter.accumulator() = Value(TRY(reference.delete_(vm)));
  720. return {};
  721. }
  722. ThrowCompletionOr<void> GetIterator::execute_impl(Bytecode::Interpreter& interpreter) const
  723. {
  724. auto& vm = interpreter.vm();
  725. auto iterator = TRY(get_iterator(vm, interpreter.accumulator()));
  726. interpreter.accumulator() = iterator_to_object(vm, iterator);
  727. return {};
  728. }
  729. // 14.7.5.9 EnumerateObjectProperties ( O ), https://tc39.es/ecma262/#sec-enumerate-object-properties
  730. ThrowCompletionOr<void> GetObjectPropertyIterator::execute_impl(Bytecode::Interpreter& interpreter) const
  731. {
  732. // While the spec does provide an algorithm, it allows us to implement it ourselves so long as we meet the following invariants:
  733. // 1- Returned property keys do not include keys that are Symbols
  734. // 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
  735. // 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
  736. // 4- A property name will be returned by the iterator's next method at most once in any enumeration.
  737. // 5- Enumerating the properties of the target object includes enumerating properties of its prototype, and the prototype of the prototype, and so on, recursively;
  738. // 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.
  739. // 6- The values of [[Enumerable]] attributes are not considered when determining if a property of a prototype object has already been processed.
  740. // 7- The enumerable property names of prototype objects must be obtained by invoking EnumerateObjectProperties passing the prototype object as the argument.
  741. // 8- EnumerateObjectProperties must obtain the own property keys of the target object by calling its [[OwnPropertyKeys]] internal method.
  742. // 9- Property attributes of the target object must be obtained by calling its [[GetOwnProperty]] internal method
  743. // Invariant 3 effectively allows the implementation to ignore newly added keys, and we do so (similar to other implementations).
  744. // Invariants 1 and 6 through 9 are implemented in `enumerable_own_property_names`, which implements the EnumerableOwnPropertyNames AO.
  745. auto& vm = interpreter.vm();
  746. auto* object = TRY(interpreter.accumulator().to_object(vm));
  747. // Note: While the spec doesn't explicitly require these to be ordered, it says that the values should be retrieved via OwnPropertyKeys,
  748. // so we just keep the order consistent anyway.
  749. OrderedHashTable<PropertyKey> properties;
  750. HashTable<Object*> seen_objects;
  751. // Collect all keys immediately (invariant no. 5)
  752. for (auto* object_to_check = object; object_to_check && !seen_objects.contains(object_to_check); object_to_check = TRY(object_to_check->internal_get_prototype_of())) {
  753. seen_objects.set(object_to_check);
  754. for (auto& key : TRY(object_to_check->enumerable_own_property_names(Object::PropertyKind::Key))) {
  755. properties.set(TRY(PropertyKey::from_value(vm, key)));
  756. }
  757. }
  758. Iterator iterator {
  759. .iterator = object,
  760. .next_method = NativeFunction::create(
  761. interpreter.realm(),
  762. [seen_items = HashTable<PropertyKey>(), items = move(properties)](VM& vm) mutable -> ThrowCompletionOr<Value> {
  763. auto& realm = *vm.current_realm();
  764. auto iterated_object_value = vm.this_value();
  765. if (!iterated_object_value.is_object())
  766. return vm.throw_completion<InternalError>("Invalid state for GetObjectPropertyIterator.next");
  767. auto& iterated_object = iterated_object_value.as_object();
  768. auto* result_object = Object::create(realm, nullptr);
  769. while (true) {
  770. if (items.is_empty()) {
  771. result_object->define_direct_property(vm.names.done, JS::Value(true), default_attributes);
  772. return result_object;
  773. }
  774. auto it = items.begin();
  775. auto key = *it;
  776. items.remove(it);
  777. // If the key was already seen, skip over it (invariant no. 4)
  778. auto result = seen_items.set(key);
  779. if (result != AK::HashSetResult::InsertedNewEntry)
  780. continue;
  781. // If the property is deleted, don't include it (invariant no. 2)
  782. if (!TRY(iterated_object.has_property(key)))
  783. continue;
  784. result_object->define_direct_property(vm.names.done, JS::Value(false), default_attributes);
  785. if (key.is_number())
  786. result_object->define_direct_property(vm.names.value, JS::Value(key.as_number()), default_attributes);
  787. else if (key.is_string())
  788. result_object->define_direct_property(vm.names.value, js_string(vm, key.as_string()), default_attributes);
  789. else
  790. VERIFY_NOT_REACHED(); // We should not have non-string/number keys.
  791. return result_object;
  792. }
  793. },
  794. 1,
  795. vm.names.next),
  796. .done = false,
  797. };
  798. interpreter.accumulator() = iterator_to_object(vm, move(iterator));
  799. return {};
  800. }
  801. ThrowCompletionOr<void> IteratorNext::execute_impl(Bytecode::Interpreter& interpreter) const
  802. {
  803. auto& vm = interpreter.vm();
  804. auto* iterator_object = TRY(interpreter.accumulator().to_object(vm));
  805. auto iterator = object_to_iterator(vm, *iterator_object);
  806. interpreter.accumulator() = TRY(iterator_next(vm, iterator));
  807. return {};
  808. }
  809. ThrowCompletionOr<void> IteratorResultDone::execute_impl(Bytecode::Interpreter& interpreter) const
  810. {
  811. auto& vm = interpreter.vm();
  812. auto* iterator_result = TRY(interpreter.accumulator().to_object(vm));
  813. auto complete = TRY(iterator_complete(vm, *iterator_result));
  814. interpreter.accumulator() = Value(complete);
  815. return {};
  816. }
  817. ThrowCompletionOr<void> IteratorResultValue::execute_impl(Bytecode::Interpreter& interpreter) const
  818. {
  819. auto& vm = interpreter.vm();
  820. auto* iterator_result = TRY(interpreter.accumulator().to_object(vm));
  821. interpreter.accumulator() = TRY(iterator_value(vm, *iterator_result));
  822. return {};
  823. }
  824. ThrowCompletionOr<void> NewClass::execute_impl(Bytecode::Interpreter& interpreter) const
  825. {
  826. auto name = m_class_expression.name();
  827. auto scope = interpreter.ast_interpreter_scope();
  828. auto& ast_interpreter = scope.interpreter();
  829. auto* class_object = TRY(m_class_expression.class_definition_evaluation(ast_interpreter, name, name.is_null() ? ""sv : name));
  830. class_object->set_source_text(m_class_expression.source_text());
  831. interpreter.accumulator() = class_object;
  832. return {};
  833. }
  834. // 13.5.3.1 Runtime Semantics: Evaluation, https://tc39.es/ecma262/#sec-typeof-operator-runtime-semantics-evaluation
  835. ThrowCompletionOr<void> TypeofVariable::execute_impl(Bytecode::Interpreter& interpreter) const
  836. {
  837. auto& vm = interpreter.vm();
  838. // 1. Let val be the result of evaluating UnaryExpression.
  839. auto const& string = interpreter.current_executable().get_identifier(m_identifier);
  840. auto reference = TRY(vm.resolve_binding(string));
  841. // 2. If val is a Reference Record, then
  842. // a. If IsUnresolvableReference(val) is true, return "undefined".
  843. if (reference.is_unresolvable()) {
  844. interpreter.accumulator() = js_string(vm, "undefined"sv);
  845. return {};
  846. }
  847. // 3. Set val to ? GetValue(val).
  848. auto value = TRY(reference.get_value(vm));
  849. // 4. NOTE: This step is replaced in section B.3.6.3.
  850. // 5. Return a String according to Table 41.
  851. interpreter.accumulator() = js_string(vm, value.typeof());
  852. return {};
  853. }
  854. DeprecatedString Load::to_deprecated_string_impl(Bytecode::Executable const&) const
  855. {
  856. return DeprecatedString::formatted("Load {}", m_src);
  857. }
  858. DeprecatedString LoadImmediate::to_deprecated_string_impl(Bytecode::Executable const&) const
  859. {
  860. return DeprecatedString::formatted("LoadImmediate {}", m_value);
  861. }
  862. DeprecatedString Store::to_deprecated_string_impl(Bytecode::Executable const&) const
  863. {
  864. return DeprecatedString::formatted("Store {}", m_dst);
  865. }
  866. DeprecatedString NewBigInt::to_deprecated_string_impl(Bytecode::Executable const&) const
  867. {
  868. return DeprecatedString::formatted("NewBigInt \"{}\"", m_bigint.to_base(10));
  869. }
  870. DeprecatedString NewArray::to_deprecated_string_impl(Bytecode::Executable const&) const
  871. {
  872. StringBuilder builder;
  873. builder.append("NewArray"sv);
  874. if (m_element_count != 0) {
  875. builder.appendff(" [{}-{}]", m_elements[0], m_elements[1]);
  876. }
  877. return builder.to_deprecated_string();
  878. }
  879. DeprecatedString Append::to_deprecated_string_impl(Bytecode::Executable const&) const
  880. {
  881. if (m_is_spread)
  882. return DeprecatedString::formatted("Append lhs: **{}", m_lhs);
  883. return DeprecatedString::formatted("Append lhs: {}", m_lhs);
  884. }
  885. DeprecatedString IteratorToArray::to_deprecated_string_impl(Bytecode::Executable const&) const
  886. {
  887. return "IteratorToArray";
  888. }
  889. DeprecatedString NewString::to_deprecated_string_impl(Bytecode::Executable const& executable) const
  890. {
  891. return DeprecatedString::formatted("NewString {} (\"{}\")", m_string, executable.string_table->get(m_string));
  892. }
  893. DeprecatedString NewObject::to_deprecated_string_impl(Bytecode::Executable const&) const
  894. {
  895. return "NewObject";
  896. }
  897. DeprecatedString NewRegExp::to_deprecated_string_impl(Bytecode::Executable const& executable) const
  898. {
  899. return DeprecatedString::formatted("NewRegExp source:{} (\"{}\") flags:{} (\"{}\")", m_source_index, executable.get_string(m_source_index), m_flags_index, executable.get_string(m_flags_index));
  900. }
  901. DeprecatedString CopyObjectExcludingProperties::to_deprecated_string_impl(Bytecode::Executable const&) const
  902. {
  903. StringBuilder builder;
  904. builder.appendff("CopyObjectExcludingProperties from:{}", m_from_object);
  905. if (m_excluded_names_count != 0) {
  906. builder.append(" excluding:["sv);
  907. builder.join(", "sv, Span<Register const>(m_excluded_names, m_excluded_names_count));
  908. builder.append(']');
  909. }
  910. return builder.to_deprecated_string();
  911. }
  912. DeprecatedString ConcatString::to_deprecated_string_impl(Bytecode::Executable const&) const
  913. {
  914. return DeprecatedString::formatted("ConcatString {}", m_lhs);
  915. }
  916. DeprecatedString GetVariable::to_deprecated_string_impl(Bytecode::Executable const& executable) const
  917. {
  918. return DeprecatedString::formatted("GetVariable {} ({})", m_identifier, executable.identifier_table->get(m_identifier));
  919. }
  920. DeprecatedString DeleteVariable::to_deprecated_string_impl(Bytecode::Executable const& executable) const
  921. {
  922. return DeprecatedString::formatted("DeleteVariable {} ({})", m_identifier, executable.identifier_table->get(m_identifier));
  923. }
  924. DeprecatedString CreateEnvironment::to_deprecated_string_impl(Bytecode::Executable const&) const
  925. {
  926. auto mode_string = m_mode == EnvironmentMode::Lexical
  927. ? "Lexical"
  928. : "Variable";
  929. return DeprecatedString::formatted("CreateEnvironment mode:{}", mode_string);
  930. }
  931. DeprecatedString CreateVariable::to_deprecated_string_impl(Bytecode::Executable const& executable) const
  932. {
  933. auto mode_string = m_mode == EnvironmentMode::Lexical ? "Lexical" : "Variable";
  934. return DeprecatedString::formatted("CreateVariable env:{} immutable:{} global:{} {} ({})", mode_string, m_is_immutable, m_is_global, m_identifier, executable.identifier_table->get(m_identifier));
  935. }
  936. DeprecatedString EnterObjectEnvironment::to_deprecated_string_impl(Executable const&) const
  937. {
  938. return DeprecatedString::formatted("EnterObjectEnvironment");
  939. }
  940. DeprecatedString SetVariable::to_deprecated_string_impl(Bytecode::Executable const& executable) const
  941. {
  942. auto initialization_mode_name = m_initialization_mode == InitializationMode ::Initialize ? "Initialize"
  943. : m_initialization_mode == InitializationMode::Set ? "Set"
  944. : "InitializeOrSet";
  945. auto mode_string = m_mode == EnvironmentMode::Lexical ? "Lexical" : "Variable";
  946. return DeprecatedString::formatted("SetVariable env:{} init:{} {} ({})", mode_string, initialization_mode_name, m_identifier, executable.identifier_table->get(m_identifier));
  947. }
  948. DeprecatedString PutById::to_deprecated_string_impl(Bytecode::Executable const& executable) const
  949. {
  950. auto kind = m_kind == PropertyKind::Getter
  951. ? "getter"
  952. : m_kind == PropertyKind::Setter
  953. ? "setter"
  954. : "property";
  955. return DeprecatedString::formatted("PutById kind:{} base:{}, property:{} ({})", kind, m_base, m_property, executable.identifier_table->get(m_property));
  956. }
  957. DeprecatedString GetById::to_deprecated_string_impl(Bytecode::Executable const& executable) const
  958. {
  959. return DeprecatedString::formatted("GetById {} ({})", m_property, executable.identifier_table->get(m_property));
  960. }
  961. DeprecatedString DeleteById::to_deprecated_string_impl(Bytecode::Executable const& executable) const
  962. {
  963. return DeprecatedString::formatted("DeleteById {} ({})", m_property, executable.identifier_table->get(m_property));
  964. }
  965. DeprecatedString Jump::to_deprecated_string_impl(Bytecode::Executable const&) const
  966. {
  967. if (m_true_target.has_value())
  968. return DeprecatedString::formatted("Jump {}", *m_true_target);
  969. return DeprecatedString::formatted("Jump <empty>");
  970. }
  971. DeprecatedString JumpConditional::to_deprecated_string_impl(Bytecode::Executable const&) const
  972. {
  973. auto true_string = m_true_target.has_value() ? DeprecatedString::formatted("{}", *m_true_target) : "<empty>";
  974. auto false_string = m_false_target.has_value() ? DeprecatedString::formatted("{}", *m_false_target) : "<empty>";
  975. return DeprecatedString::formatted("JumpConditional true:{} false:{}", true_string, false_string);
  976. }
  977. DeprecatedString JumpNullish::to_deprecated_string_impl(Bytecode::Executable const&) const
  978. {
  979. auto true_string = m_true_target.has_value() ? DeprecatedString::formatted("{}", *m_true_target) : "<empty>";
  980. auto false_string = m_false_target.has_value() ? DeprecatedString::formatted("{}", *m_false_target) : "<empty>";
  981. return DeprecatedString::formatted("JumpNullish null:{} nonnull:{}", true_string, false_string);
  982. }
  983. DeprecatedString JumpUndefined::to_deprecated_string_impl(Bytecode::Executable const&) const
  984. {
  985. auto true_string = m_true_target.has_value() ? DeprecatedString::formatted("{}", *m_true_target) : "<empty>";
  986. auto false_string = m_false_target.has_value() ? DeprecatedString::formatted("{}", *m_false_target) : "<empty>";
  987. return DeprecatedString::formatted("JumpUndefined undefined:{} not undefined:{}", true_string, false_string);
  988. }
  989. DeprecatedString Call::to_deprecated_string_impl(Bytecode::Executable const& executable) const
  990. {
  991. if (m_expression_string.has_value())
  992. return DeprecatedString::formatted("Call callee:{}, this:{}, arguments:[...acc] ({})", m_callee, m_this_value, executable.get_string(m_expression_string.value()));
  993. return DeprecatedString::formatted("Call callee:{}, this:{}, arguments:[...acc]", m_callee, m_this_value);
  994. }
  995. DeprecatedString SuperCall::to_deprecated_string_impl(Bytecode::Executable const&) const
  996. {
  997. return "SuperCall arguments:[...acc]"sv;
  998. }
  999. DeprecatedString NewFunction::to_deprecated_string_impl(Bytecode::Executable const&) const
  1000. {
  1001. return "NewFunction";
  1002. }
  1003. DeprecatedString NewClass::to_deprecated_string_impl(Bytecode::Executable const&) const
  1004. {
  1005. auto name = m_class_expression.name();
  1006. return DeprecatedString::formatted("NewClass '{}'", name.is_null() ? ""sv : name);
  1007. }
  1008. DeprecatedString Return::to_deprecated_string_impl(Bytecode::Executable const&) const
  1009. {
  1010. return "Return";
  1011. }
  1012. DeprecatedString Increment::to_deprecated_string_impl(Bytecode::Executable const&) const
  1013. {
  1014. return "Increment";
  1015. }
  1016. DeprecatedString Decrement::to_deprecated_string_impl(Bytecode::Executable const&) const
  1017. {
  1018. return "Decrement";
  1019. }
  1020. DeprecatedString Throw::to_deprecated_string_impl(Bytecode::Executable const&) const
  1021. {
  1022. return "Throw";
  1023. }
  1024. DeprecatedString EnterUnwindContext::to_deprecated_string_impl(Bytecode::Executable const&) const
  1025. {
  1026. auto handler_string = m_handler_target.has_value() ? DeprecatedString::formatted("{}", *m_handler_target) : "<empty>";
  1027. auto finalizer_string = m_finalizer_target.has_value() ? DeprecatedString::formatted("{}", *m_finalizer_target) : "<empty>";
  1028. return DeprecatedString::formatted("EnterUnwindContext handler:{} finalizer:{} entry:{}", handler_string, finalizer_string, m_entry_point);
  1029. }
  1030. DeprecatedString LeaveEnvironment::to_deprecated_string_impl(Bytecode::Executable const&) const
  1031. {
  1032. auto mode_string = m_mode == EnvironmentMode::Lexical
  1033. ? "Lexical"
  1034. : "Variable";
  1035. return DeprecatedString::formatted("LeaveEnvironment env:{}", mode_string);
  1036. }
  1037. DeprecatedString LeaveUnwindContext::to_deprecated_string_impl(Bytecode::Executable const&) const
  1038. {
  1039. return "LeaveUnwindContext";
  1040. }
  1041. DeprecatedString ContinuePendingUnwind::to_deprecated_string_impl(Bytecode::Executable const&) const
  1042. {
  1043. return DeprecatedString::formatted("ContinuePendingUnwind resume:{}", m_resume_target);
  1044. }
  1045. DeprecatedString PushDeclarativeEnvironment::to_deprecated_string_impl(Bytecode::Executable const& executable) const
  1046. {
  1047. StringBuilder builder;
  1048. builder.append("PushDeclarativeEnvironment"sv);
  1049. if (!m_variables.is_empty()) {
  1050. builder.append(" {"sv);
  1051. Vector<DeprecatedString> names;
  1052. for (auto& it : m_variables)
  1053. names.append(executable.get_string(it.key));
  1054. builder.append('}');
  1055. builder.join(", "sv, names);
  1056. }
  1057. return builder.to_deprecated_string();
  1058. }
  1059. DeprecatedString Yield::to_deprecated_string_impl(Bytecode::Executable const&) const
  1060. {
  1061. if (m_continuation_label.has_value())
  1062. return DeprecatedString::formatted("Yield continuation:@{}", m_continuation_label->block().name());
  1063. return DeprecatedString::formatted("Yield return");
  1064. }
  1065. DeprecatedString GetByValue::to_deprecated_string_impl(Bytecode::Executable const&) const
  1066. {
  1067. return DeprecatedString::formatted("GetByValue base:{}", m_base);
  1068. }
  1069. DeprecatedString PutByValue::to_deprecated_string_impl(Bytecode::Executable const&) const
  1070. {
  1071. auto kind = m_kind == PropertyKind::Getter
  1072. ? "getter"
  1073. : m_kind == PropertyKind::Setter
  1074. ? "setter"
  1075. : "property";
  1076. return DeprecatedString::formatted("PutByValue kind:{} base:{}, property:{}", kind, m_base, m_property);
  1077. }
  1078. DeprecatedString DeleteByValue::to_deprecated_string_impl(Bytecode::Executable const&) const
  1079. {
  1080. return DeprecatedString::formatted("DeleteByValue base:{}", m_base);
  1081. }
  1082. DeprecatedString GetIterator::to_deprecated_string_impl(Executable const&) const
  1083. {
  1084. return "GetIterator";
  1085. }
  1086. DeprecatedString GetObjectPropertyIterator::to_deprecated_string_impl(Bytecode::Executable const&) const
  1087. {
  1088. return "GetObjectPropertyIterator";
  1089. }
  1090. DeprecatedString IteratorNext::to_deprecated_string_impl(Executable const&) const
  1091. {
  1092. return "IteratorNext";
  1093. }
  1094. DeprecatedString IteratorResultDone::to_deprecated_string_impl(Executable const&) const
  1095. {
  1096. return "IteratorResultDone";
  1097. }
  1098. DeprecatedString IteratorResultValue::to_deprecated_string_impl(Executable const&) const
  1099. {
  1100. return "IteratorResultValue";
  1101. }
  1102. DeprecatedString ResolveThisBinding::to_deprecated_string_impl(Bytecode::Executable const&) const
  1103. {
  1104. return "ResolveThisBinding"sv;
  1105. }
  1106. DeprecatedString GetNewTarget::to_deprecated_string_impl(Bytecode::Executable const&) const
  1107. {
  1108. return "GetNewTarget"sv;
  1109. }
  1110. DeprecatedString TypeofVariable::to_deprecated_string_impl(Bytecode::Executable const& executable) const
  1111. {
  1112. return DeprecatedString::formatted("TypeofVariable {} ({})", m_identifier, executable.identifier_table->get(m_identifier));
  1113. }
  1114. }