Generator.cpp 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537
  1. /*
  2. * Copyright (c) 2021, Andreas Kling <kling@serenityos.org>
  3. *
  4. * SPDX-License-Identifier: BSD-2-Clause
  5. */
  6. #include <LibJS/AST.h>
  7. #include <LibJS/Bytecode/BasicBlock.h>
  8. #include <LibJS/Bytecode/Generator.h>
  9. #include <LibJS/Bytecode/Instruction.h>
  10. #include <LibJS/Bytecode/Op.h>
  11. #include <LibJS/Bytecode/Register.h>
  12. namespace JS::Bytecode {
  13. Generator::Generator()
  14. : m_string_table(make<StringTable>())
  15. , m_identifier_table(make<IdentifierTable>())
  16. , m_regex_table(make<RegexTable>())
  17. {
  18. }
  19. CodeGenerationErrorOr<NonnullOwnPtr<Executable>> Generator::generate(ASTNode const& node, FunctionKind enclosing_function_kind)
  20. {
  21. Generator generator;
  22. generator.switch_to_basic_block(generator.make_block());
  23. SourceLocationScope scope(generator, node);
  24. generator.m_enclosing_function_kind = enclosing_function_kind;
  25. if (generator.is_in_generator_or_async_function()) {
  26. // Immediately yield with no value.
  27. auto& start_block = generator.make_block();
  28. generator.emit<Bytecode::Op::Yield>(Label { start_block });
  29. generator.switch_to_basic_block(start_block);
  30. // NOTE: This doesn't have to handle received throw/return completions, as GeneratorObject::resume_abrupt
  31. // will not enter the generator from the SuspendedStart state and immediately completes the generator.
  32. }
  33. TRY(node.generate_bytecode(generator));
  34. if (generator.is_in_generator_or_async_function()) {
  35. // Terminate all unterminated blocks with yield return
  36. for (auto& block : generator.m_root_basic_blocks) {
  37. if (block->is_terminated())
  38. continue;
  39. generator.switch_to_basic_block(*block);
  40. generator.emit<Bytecode::Op::LoadImmediate>(js_undefined());
  41. generator.emit<Bytecode::Op::Yield>(nullptr);
  42. }
  43. }
  44. bool is_strict_mode = false;
  45. if (is<Program>(node))
  46. is_strict_mode = static_cast<Program const&>(node).is_strict_mode();
  47. else if (is<FunctionBody>(node))
  48. is_strict_mode = static_cast<FunctionBody const&>(node).in_strict_mode();
  49. else if (is<FunctionDeclaration>(node))
  50. is_strict_mode = static_cast<FunctionDeclaration const&>(node).is_strict_mode();
  51. else if (is<FunctionExpression>(node))
  52. is_strict_mode = static_cast<FunctionExpression const&>(node).is_strict_mode();
  53. Vector<PropertyLookupCache> property_lookup_caches;
  54. property_lookup_caches.resize(generator.m_next_property_lookup_cache);
  55. Vector<GlobalVariableCache> global_variable_caches;
  56. global_variable_caches.resize(generator.m_next_global_variable_cache);
  57. return adopt_own(*new Executable {
  58. .name = {},
  59. .property_lookup_caches = move(property_lookup_caches),
  60. .global_variable_caches = move(global_variable_caches),
  61. .basic_blocks = move(generator.m_root_basic_blocks),
  62. .string_table = move(generator.m_string_table),
  63. .identifier_table = move(generator.m_identifier_table),
  64. .regex_table = move(generator.m_regex_table),
  65. .source_code = node.source_code(),
  66. .number_of_registers = generator.m_next_register,
  67. .is_strict_mode = is_strict_mode,
  68. });
  69. }
  70. void Generator::grow(size_t additional_size)
  71. {
  72. VERIFY(m_current_basic_block);
  73. m_current_basic_block->grow(additional_size);
  74. }
  75. Register Generator::allocate_register()
  76. {
  77. VERIFY(m_next_register != NumericLimits<u32>::max());
  78. return Register { m_next_register++ };
  79. }
  80. Generator::SourceLocationScope::SourceLocationScope(Generator& generator, ASTNode const& node)
  81. : m_generator(generator)
  82. , m_previous_node(m_generator.m_current_ast_node)
  83. {
  84. m_generator.m_current_ast_node = &node;
  85. }
  86. Generator::SourceLocationScope::~SourceLocationScope()
  87. {
  88. m_generator.m_current_ast_node = m_previous_node;
  89. }
  90. Label Generator::nearest_continuable_scope() const
  91. {
  92. return m_continuable_scopes.last().bytecode_target;
  93. }
  94. void Generator::block_declaration_instantiation(ScopeNode const& scope_node)
  95. {
  96. start_boundary(BlockBoundaryType::LeaveLexicalEnvironment);
  97. emit<Bytecode::Op::BlockDeclarationInstantiation>(scope_node);
  98. }
  99. void Generator::begin_variable_scope()
  100. {
  101. start_boundary(BlockBoundaryType::LeaveLexicalEnvironment);
  102. emit<Bytecode::Op::CreateLexicalEnvironment>();
  103. }
  104. void Generator::end_variable_scope()
  105. {
  106. end_boundary(BlockBoundaryType::LeaveLexicalEnvironment);
  107. if (!m_current_basic_block->is_terminated()) {
  108. emit<Bytecode::Op::LeaveLexicalEnvironment>();
  109. }
  110. }
  111. void Generator::begin_continuable_scope(Label continue_target, Vector<DeprecatedFlyString> const& language_label_set)
  112. {
  113. m_continuable_scopes.append({ continue_target, language_label_set });
  114. start_boundary(BlockBoundaryType::Continue);
  115. }
  116. void Generator::end_continuable_scope()
  117. {
  118. m_continuable_scopes.take_last();
  119. end_boundary(BlockBoundaryType::Continue);
  120. }
  121. Label Generator::nearest_breakable_scope() const
  122. {
  123. return m_breakable_scopes.last().bytecode_target;
  124. }
  125. void Generator::begin_breakable_scope(Label breakable_target, Vector<DeprecatedFlyString> const& language_label_set)
  126. {
  127. m_breakable_scopes.append({ breakable_target, language_label_set });
  128. start_boundary(BlockBoundaryType::Break);
  129. }
  130. void Generator::end_breakable_scope()
  131. {
  132. m_breakable_scopes.take_last();
  133. end_boundary(BlockBoundaryType::Break);
  134. }
  135. CodeGenerationErrorOr<Generator::ReferenceRegisters> Generator::emit_super_reference(MemberExpression const& expression)
  136. {
  137. VERIFY(is<SuperExpression>(expression.object()));
  138. // https://tc39.es/ecma262/#sec-super-keyword-runtime-semantics-evaluation
  139. // 1. Let env be GetThisEnvironment().
  140. // 2. Let actualThis be ? env.GetThisBinding().
  141. auto actual_this_register = allocate_register();
  142. emit<Bytecode::Op::ResolveThisBinding>();
  143. emit<Bytecode::Op::Store>(actual_this_register);
  144. Optional<Bytecode::Register> computed_property_value_register;
  145. if (expression.is_computed()) {
  146. // SuperProperty : super [ Expression ]
  147. // 3. Let propertyNameReference be ? Evaluation of Expression.
  148. // 4. Let propertyNameValue be ? GetValue(propertyNameReference).
  149. TRY(expression.property().generate_bytecode(*this));
  150. computed_property_value_register = allocate_register();
  151. emit<Bytecode::Op::Store>(*computed_property_value_register);
  152. }
  153. // 5/7. Return ? MakeSuperPropertyReference(actualThis, propertyKey, strict).
  154. // https://tc39.es/ecma262/#sec-makesuperpropertyreference
  155. // 1. Let env be GetThisEnvironment().
  156. // 2. Assert: env.HasSuperBinding() is true.
  157. // 3. Let baseValue be ? env.GetSuperBase().
  158. auto super_base_register = allocate_register();
  159. emit<Bytecode::Op::ResolveSuperBase>();
  160. emit<Bytecode::Op::Store>(super_base_register);
  161. // 4. Return the Reference Record { [[Base]]: baseValue, [[ReferencedName]]: propertyKey, [[Strict]]: strict, [[ThisValue]]: actualThis }.
  162. return ReferenceRegisters {
  163. .base = super_base_register,
  164. .referenced_name = move(computed_property_value_register),
  165. .this_value = actual_this_register,
  166. };
  167. }
  168. CodeGenerationErrorOr<void> Generator::emit_load_from_reference(JS::ASTNode const& node)
  169. {
  170. if (is<Identifier>(node)) {
  171. auto& identifier = static_cast<Identifier const&>(node);
  172. TRY(identifier.generate_bytecode(*this));
  173. return {};
  174. }
  175. if (is<MemberExpression>(node)) {
  176. auto& expression = static_cast<MemberExpression const&>(node);
  177. // https://tc39.es/ecma262/#sec-super-keyword-runtime-semantics-evaluation
  178. if (is<SuperExpression>(expression.object())) {
  179. auto super_reference = TRY(emit_super_reference(expression));
  180. if (super_reference.referenced_name.has_value()) {
  181. // 5. Let propertyKey be ? ToPropertyKey(propertyNameValue).
  182. // FIXME: This does ToPropertyKey out of order, which is observable by Symbol.toPrimitive!
  183. emit<Bytecode::Op::Load>(*super_reference.referenced_name);
  184. emit<Bytecode::Op::GetByValueWithThis>(super_reference.base, super_reference.this_value);
  185. } else {
  186. // 3. Let propertyKey be StringValue of IdentifierName.
  187. auto identifier_table_ref = intern_identifier(verify_cast<Identifier>(expression.property()).string());
  188. emit_get_by_id_with_this(identifier_table_ref, super_reference.this_value);
  189. }
  190. } else {
  191. TRY(expression.object().generate_bytecode(*this));
  192. if (expression.is_computed()) {
  193. auto object_reg = allocate_register();
  194. emit<Bytecode::Op::Store>(object_reg);
  195. TRY(expression.property().generate_bytecode(*this));
  196. emit<Bytecode::Op::GetByValue>(object_reg);
  197. } else if (expression.property().is_identifier()) {
  198. auto identifier_table_ref = intern_identifier(verify_cast<Identifier>(expression.property()).string());
  199. emit_get_by_id(identifier_table_ref);
  200. } else if (expression.property().is_private_identifier()) {
  201. auto identifier_table_ref = intern_identifier(verify_cast<PrivateIdentifier>(expression.property()).string());
  202. emit<Bytecode::Op::GetPrivateById>(identifier_table_ref);
  203. } else {
  204. return CodeGenerationError {
  205. &expression,
  206. "Unimplemented non-computed member expression"sv
  207. };
  208. }
  209. }
  210. return {};
  211. }
  212. VERIFY_NOT_REACHED();
  213. }
  214. CodeGenerationErrorOr<void> Generator::emit_store_to_reference(JS::ASTNode const& node)
  215. {
  216. if (is<Identifier>(node)) {
  217. auto& identifier = static_cast<Identifier const&>(node);
  218. emit_set_variable(identifier);
  219. return {};
  220. }
  221. if (is<MemberExpression>(node)) {
  222. // NOTE: The value is in the accumulator, so we have to store that away first.
  223. auto value_reg = allocate_register();
  224. emit<Bytecode::Op::Store>(value_reg);
  225. auto& expression = static_cast<MemberExpression const&>(node);
  226. // https://tc39.es/ecma262/#sec-super-keyword-runtime-semantics-evaluation
  227. if (is<SuperExpression>(expression.object())) {
  228. auto super_reference = TRY(emit_super_reference(expression));
  229. emit<Bytecode::Op::Load>(value_reg);
  230. // 4. Return the Reference Record { [[Base]]: baseValue, [[ReferencedName]]: propertyKey, [[Strict]]: strict, [[ThisValue]]: actualThis }.
  231. if (super_reference.referenced_name.has_value()) {
  232. // 5. Let propertyKey be ? ToPropertyKey(propertyNameValue).
  233. // FIXME: This does ToPropertyKey out of order, which is observable by Symbol.toPrimitive!
  234. emit<Bytecode::Op::PutByValueWithThis>(super_reference.base, *super_reference.referenced_name, super_reference.this_value);
  235. } else {
  236. // 3. Let propertyKey be StringValue of IdentifierName.
  237. auto identifier_table_ref = intern_identifier(verify_cast<Identifier>(expression.property()).string());
  238. emit<Bytecode::Op::PutByIdWithThis>(super_reference.base, super_reference.this_value, identifier_table_ref);
  239. }
  240. } else {
  241. TRY(expression.object().generate_bytecode(*this));
  242. auto object_reg = allocate_register();
  243. emit<Bytecode::Op::Store>(object_reg);
  244. if (expression.is_computed()) {
  245. TRY(expression.property().generate_bytecode(*this));
  246. auto property_reg = allocate_register();
  247. emit<Bytecode::Op::Store>(property_reg);
  248. emit<Bytecode::Op::Load>(value_reg);
  249. emit<Bytecode::Op::PutByValue>(object_reg, property_reg);
  250. } else if (expression.property().is_identifier()) {
  251. emit<Bytecode::Op::Load>(value_reg);
  252. auto identifier_table_ref = intern_identifier(verify_cast<Identifier>(expression.property()).string());
  253. emit<Bytecode::Op::PutById>(object_reg, identifier_table_ref);
  254. } else if (expression.property().is_private_identifier()) {
  255. emit<Bytecode::Op::Load>(value_reg);
  256. auto identifier_table_ref = intern_identifier(verify_cast<PrivateIdentifier>(expression.property()).string());
  257. emit<Bytecode::Op::PutPrivateById>(object_reg, identifier_table_ref);
  258. } else {
  259. return CodeGenerationError {
  260. &expression,
  261. "Unimplemented non-computed member expression"sv
  262. };
  263. }
  264. }
  265. return {};
  266. }
  267. return CodeGenerationError {
  268. &node,
  269. "Unimplemented/invalid node used a reference"sv
  270. };
  271. }
  272. CodeGenerationErrorOr<void> Generator::emit_delete_reference(JS::ASTNode const& node)
  273. {
  274. if (is<Identifier>(node)) {
  275. auto& identifier = static_cast<Identifier const&>(node);
  276. if (identifier.is_local())
  277. emit<Bytecode::Op::LoadImmediate>(Value(false));
  278. else
  279. emit<Bytecode::Op::DeleteVariable>(intern_identifier(identifier.string()));
  280. return {};
  281. }
  282. if (is<MemberExpression>(node)) {
  283. auto& expression = static_cast<MemberExpression const&>(node);
  284. // https://tc39.es/ecma262/#sec-super-keyword-runtime-semantics-evaluation
  285. if (is<SuperExpression>(expression.object())) {
  286. auto super_reference = TRY(emit_super_reference(expression));
  287. if (super_reference.referenced_name.has_value()) {
  288. emit<Bytecode::Op::DeleteByValueWithThis>(super_reference.this_value, *super_reference.referenced_name);
  289. } else {
  290. auto identifier_table_ref = intern_identifier(verify_cast<Identifier>(expression.property()).string());
  291. emit<Bytecode::Op::DeleteByIdWithThis>(super_reference.this_value, identifier_table_ref);
  292. }
  293. return {};
  294. }
  295. TRY(expression.object().generate_bytecode(*this));
  296. if (expression.is_computed()) {
  297. auto object_reg = allocate_register();
  298. emit<Bytecode::Op::Store>(object_reg);
  299. TRY(expression.property().generate_bytecode(*this));
  300. emit<Bytecode::Op::DeleteByValue>(object_reg);
  301. } else if (expression.property().is_identifier()) {
  302. auto identifier_table_ref = intern_identifier(verify_cast<Identifier>(expression.property()).string());
  303. emit<Bytecode::Op::DeleteById>(identifier_table_ref);
  304. } else {
  305. // NOTE: Trying to delete a private field generates a SyntaxError in the parser.
  306. return CodeGenerationError {
  307. &expression,
  308. "Unimplemented non-computed member expression"sv
  309. };
  310. }
  311. return {};
  312. }
  313. // Though this will have no deletion effect, we still have to evaluate the node as it can have side effects.
  314. // For example: delete a(); delete ++c.b; etc.
  315. // 13.5.1.2 Runtime Semantics: Evaluation, https://tc39.es/ecma262/#sec-delete-operator-runtime-semantics-evaluation
  316. // 1. Let ref be the result of evaluating UnaryExpression.
  317. // 2. ReturnIfAbrupt(ref).
  318. TRY(node.generate_bytecode(*this));
  319. // 3. If ref is not a Reference Record, return true.
  320. emit<Bytecode::Op::LoadImmediate>(Value(true));
  321. // NOTE: The rest of the steps are handled by Delete{Variable,ByValue,Id}.
  322. return {};
  323. }
  324. void Generator::emit_set_variable(JS::Identifier const& identifier, Bytecode::Op::SetVariable::InitializationMode initialization_mode, Bytecode::Op::EnvironmentMode mode)
  325. {
  326. if (identifier.is_local()) {
  327. emit<Bytecode::Op::SetLocal>(identifier.local_variable_index());
  328. } else {
  329. emit<Bytecode::Op::SetVariable>(intern_identifier(identifier.string()), initialization_mode, mode);
  330. }
  331. }
  332. void Generator::generate_scoped_jump(JumpType type)
  333. {
  334. bool last_was_finally = false;
  335. for (size_t i = m_boundaries.size(); i > 0; --i) {
  336. auto boundary = m_boundaries[i - 1];
  337. using enum BlockBoundaryType;
  338. switch (boundary) {
  339. case Break:
  340. if (type == JumpType::Break) {
  341. emit<Op::Jump>(nearest_breakable_scope());
  342. return;
  343. }
  344. break;
  345. case Continue:
  346. if (type == JumpType::Continue) {
  347. emit<Op::Jump>(nearest_continuable_scope());
  348. return;
  349. }
  350. break;
  351. case Unwind:
  352. if (!last_was_finally)
  353. emit<Bytecode::Op::LeaveUnwindContext>();
  354. last_was_finally = false;
  355. break;
  356. case LeaveLexicalEnvironment:
  357. emit<Bytecode::Op::LeaveLexicalEnvironment>();
  358. break;
  359. case ReturnToFinally: {
  360. auto jump_type_name = type == JumpType::Break ? "break"sv : "continue"sv;
  361. auto& block = make_block(DeprecatedString::formatted("{}.{}", current_block().name(), jump_type_name));
  362. emit<Op::ScheduleJump>(Label { block });
  363. switch_to_basic_block(block);
  364. last_was_finally = true;
  365. break;
  366. };
  367. }
  368. }
  369. VERIFY_NOT_REACHED();
  370. }
  371. void Generator::generate_labelled_jump(JumpType type, DeprecatedFlyString const& label)
  372. {
  373. size_t current_boundary = m_boundaries.size();
  374. bool last_was_finally = false;
  375. auto const& jumpable_scopes = type == JumpType::Continue ? m_continuable_scopes : m_breakable_scopes;
  376. for (auto const& jumpable_scope : jumpable_scopes.in_reverse()) {
  377. for (; current_boundary > 0; --current_boundary) {
  378. auto boundary = m_boundaries[current_boundary - 1];
  379. if (boundary == BlockBoundaryType::Unwind) {
  380. if (!last_was_finally)
  381. emit<Bytecode::Op::LeaveUnwindContext>();
  382. last_was_finally = false;
  383. } else if (boundary == BlockBoundaryType::LeaveLexicalEnvironment) {
  384. emit<Bytecode::Op::LeaveLexicalEnvironment>();
  385. } else if (boundary == BlockBoundaryType::ReturnToFinally) {
  386. auto jump_type_name = type == JumpType::Break ? "break"sv : "continue"sv;
  387. auto& block = make_block(DeprecatedString::formatted("{}.{}", current_block().name(), jump_type_name));
  388. emit<Op::ScheduleJump>(Label { block });
  389. switch_to_basic_block(block);
  390. last_was_finally = true;
  391. } else if ((type == JumpType::Continue && boundary == BlockBoundaryType::Continue) || (type == JumpType::Break && boundary == BlockBoundaryType::Break)) {
  392. // Make sure we don't process this boundary twice if the current jumpable scope doesn't contain the target label.
  393. --current_boundary;
  394. break;
  395. }
  396. }
  397. if (jumpable_scope.language_label_set.contains_slow(label)) {
  398. emit<Op::Jump>(jumpable_scope.bytecode_target);
  399. return;
  400. }
  401. }
  402. // We must have a jumpable scope available that contains the label, as this should be enforced by the parser.
  403. VERIFY_NOT_REACHED();
  404. }
  405. void Generator::generate_break()
  406. {
  407. generate_scoped_jump(JumpType::Break);
  408. }
  409. void Generator::generate_break(DeprecatedFlyString const& break_label)
  410. {
  411. generate_labelled_jump(JumpType::Break, break_label);
  412. }
  413. void Generator::generate_continue()
  414. {
  415. generate_scoped_jump(JumpType::Continue);
  416. }
  417. void Generator::generate_continue(DeprecatedFlyString const& continue_label)
  418. {
  419. generate_labelled_jump(JumpType::Continue, continue_label);
  420. }
  421. void Generator::push_home_object(Register register_)
  422. {
  423. m_home_objects.append(register_);
  424. }
  425. void Generator::pop_home_object()
  426. {
  427. m_home_objects.take_last();
  428. }
  429. void Generator::emit_new_function(FunctionExpression const& function_node, Optional<IdentifierTableIndex> lhs_name)
  430. {
  431. if (m_home_objects.is_empty())
  432. emit<Op::NewFunction>(function_node, lhs_name);
  433. else
  434. emit<Op::NewFunction>(function_node, lhs_name, m_home_objects.last());
  435. }
  436. CodeGenerationErrorOr<void> Generator::emit_named_evaluation_if_anonymous_function(Expression const& expression, Optional<IdentifierTableIndex> lhs_name)
  437. {
  438. if (is<FunctionExpression>(expression)) {
  439. auto const& function_expression = static_cast<FunctionExpression const&>(expression);
  440. if (!function_expression.has_name()) {
  441. TRY(function_expression.generate_bytecode_with_lhs_name(*this, move(lhs_name)));
  442. return {};
  443. }
  444. }
  445. if (is<ClassExpression>(expression)) {
  446. auto const& class_expression = static_cast<ClassExpression const&>(expression);
  447. if (!class_expression.has_name()) {
  448. TRY(class_expression.generate_bytecode_with_lhs_name(*this, move(lhs_name)));
  449. return {};
  450. }
  451. }
  452. TRY(expression.generate_bytecode(*this));
  453. return {};
  454. }
  455. void Generator::emit_get_by_id(IdentifierTableIndex id)
  456. {
  457. emit<Op::GetById>(id, m_next_property_lookup_cache++);
  458. }
  459. void Generator::emit_get_by_id_with_this(IdentifierTableIndex id, Register this_reg)
  460. {
  461. emit<Op::GetByIdWithThis>(id, this_reg, m_next_property_lookup_cache++);
  462. }
  463. }