Op.cpp 69 KB

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