Op.cpp 67 KB

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