Op.cpp 82 KB

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