Andreas Kling
88d715fc68
LibJS: Eliminate HashMap operations in SFID by caching parser data
...
Cache necessary data during parsing to eliminate HashMap operations
in SharedFunctionInstanceData construction.
Before: 2 HashMap copies + N HashMap insertions with hash computations
After: Direct vector iteration with no hashing
Build FunctionScopeData for function scopes in the parser containing:
- functions_to_initialize: deduplicated var-scoped function decls
- vars_to_initialize: var decls with is_parameter/is_function_name
- var_names: HashTable for AnnexB extension checks
- Pre-computed counts for environment size calculation
- Flags for "arguments" handling
Add ScopeNode::ensure_function_scope_data() to compute the data
on-demand for edge cases that don't go through normal parser flow
(synthetic class constructors, static initializers, module wrappers).
Use this cached data directly in SFID with zero HashMap operations.
2026-01-25 23:08:36 +01:00
..
2025-11-16 07:59:59 -05:00
2025-11-30 11:54:54 +01:00
2026-01-16 14:31:31 +01:00
2026-01-19 10:48:12 +01:00
2025-12-21 12:08:41 -06:00
2025-07-22 11:51:29 -04:00
2025-04-25 14:07:51 +02:00
2025-07-22 11:51:29 -04:00
2025-07-22 11:51:29 -04:00
2025-09-17 12:44:44 +02:00
2025-07-22 11:51:29 -04:00
2025-07-22 11:51:29 -04:00
2025-12-10 17:40:57 -06:00
2025-12-10 17:40:57 -06:00
2026-01-07 07:52:03 -05:00
2025-09-17 12:44:44 +02:00
2026-01-05 06:38:55 -05:00
2026-01-04 07:47:55 +01:00
2025-04-05 11:20:26 +02:00
2025-07-22 11:51:29 -04:00
2025-07-22 11:51:29 -04:00
2025-12-09 21:44:13 -06:00
2025-11-30 11:54:54 +01:00
2025-11-02 20:05:47 +01:00
2025-11-02 20:05:47 +01:00
2025-06-02 00:15:36 +02:00
2025-07-22 11:51:29 -04:00
2025-12-09 21:44:13 -06:00
2025-07-22 11:51:29 -04:00
2025-01-17 20:46:32 +01:00
2025-07-22 11:51:29 -04:00
2025-01-17 20:46:32 +01:00
2025-07-22 11:51:29 -04:00
2025-08-14 10:27:08 +02:00
2025-07-22 11:51:29 -04:00
2025-07-22 11:51:29 -04:00
2025-11-02 20:05:47 +01:00
2025-11-02 20:05:47 +01:00
2025-07-09 15:52:54 -06:00
2025-07-22 11:51:29 -04:00
2025-05-09 12:30:15 +02:00
2025-07-22 11:51:29 -04:00
2025-07-22 11:51:29 -04:00
2025-11-30 11:54:54 +01:00
2025-11-30 11:54:54 +01:00
2025-07-09 15:52:54 -06:00
2025-07-22 11:51:29 -04:00
2025-07-22 11:51:29 -04:00
2025-07-22 11:51:29 -04:00
2025-07-22 11:51:29 -04:00
2025-12-03 12:08:40 +01:00
2025-07-22 11:51:29 -04:00
2025-08-14 10:27:08 +02:00
2025-08-14 10:27:08 +02:00
2025-05-23 11:57:21 +02:00
2025-07-22 11:51:29 -04:00
2025-07-22 11:51:29 -04:00
2025-04-28 12:05:26 +02:00
2025-07-22 11:51:29 -04:00
2025-07-22 11:51:29 -04:00
2025-07-22 11:51:29 -04:00
2025-07-22 11:51:29 -04:00
2026-01-19 10:48:12 +01:00
2026-01-19 10:48:12 +01:00
2026-01-07 12:48:58 +01:00
2026-01-07 12:48:58 +01:00
2026-01-04 07:47:55 +01:00
2025-08-23 16:04:36 -06:00
2026-01-07 12:48:58 +01:00
2025-04-05 11:20:26 +02:00
2025-07-22 11:51:29 -04:00
2025-08-17 07:28:56 -04:00
2025-08-23 16:04:36 -06:00
2025-07-22 11:51:29 -04:00
2025-07-22 11:51:29 -04:00
2025-12-09 21:44:13 -06:00
2025-07-22 11:51:29 -04:00
2025-04-29 07:33:08 -04:00
2025-07-22 11:51:29 -04:00
2026-01-16 07:00:02 -05:00
2026-01-16 07:00:02 -05:00
2025-06-19 18:42:45 -06:00
2025-07-22 11:51:29 -04:00
2025-05-26 18:48:09 +02:00
2025-12-09 21:44:13 -06:00
2025-07-22 11:51:29 -04:00
2025-08-05 07:07:15 -04:00
2025-08-23 16:04:36 -06:00
2025-01-17 20:46:32 +01:00
2025-07-22 11:51:29 -04:00
2025-01-17 20:46:32 +01:00
2025-07-22 11:51:29 -04:00
2025-04-05 11:20:26 +02:00
2025-07-22 11:51:29 -04:00
2026-01-19 10:48:12 +01:00
2026-01-19 10:48:12 +01:00
2025-12-21 12:08:41 -06:00
2026-01-18 19:00:32 +01:00
2026-01-18 19:00:32 +01:00
2025-10-03 09:03:40 +02:00
2025-07-22 11:51:29 -04:00
2026-01-18 19:00:32 +01:00
2025-07-22 11:51:29 -04:00
2025-08-18 13:42:22 +02:00
2026-01-04 07:47:55 +01:00
2026-01-19 10:48:12 +01:00
2026-01-19 10:48:12 +01:00
2025-12-25 20:21:37 +01:00
2025-07-22 11:51:29 -04:00
2025-12-09 21:44:13 -06:00
2025-07-22 11:51:29 -04:00
2025-12-09 21:44:13 -06:00
2025-07-22 11:51:29 -04:00
2025-12-25 23:59:21 +01:00
2025-07-22 11:51:29 -04:00
2025-11-30 11:54:54 +01:00
2025-12-21 12:08:41 -06:00
2025-09-17 12:44:44 +02:00
2026-01-19 10:48:12 +01:00
2025-12-09 21:44:13 -06:00
2025-10-29 21:20:10 +01:00
2025-07-09 15:52:54 -06:00
2025-07-22 11:51:29 -04:00
2025-07-22 11:51:29 -04:00
2025-11-30 11:54:54 +01:00
2025-11-30 11:54:54 +01:00
2025-05-09 12:30:15 +02:00
2025-07-22 11:51:29 -04:00
2025-04-01 02:30:42 +02:00
2025-12-20 09:13:19 -06:00
2025-08-05 07:07:15 -04:00
2025-08-05 07:07:15 -04:00
2025-07-18 12:45:38 -04:00
2025-07-22 11:51:29 -04:00
2025-09-21 15:06:32 +02:00
2026-01-08 00:26:57 +01:00
2025-12-17 12:50:17 -06:00
2025-12-17 12:50:17 -06:00
2025-12-09 21:44:13 -06:00
2025-12-03 12:08:40 +01:00
2025-12-03 12:08:40 +01:00
2025-12-03 12:08:40 +01:00
2025-12-03 12:08:40 +01:00
2025-12-03 12:08:40 +01:00
2025-12-03 12:08:40 +01:00
2025-07-22 11:51:29 -04:00
2025-12-03 12:08:40 +01:00
2025-07-22 11:51:29 -04:00
2025-07-22 11:51:29 -04:00
2026-01-16 13:11:05 +01:00
2026-01-12 13:53:28 -05:00
2025-07-22 11:51:29 -04:00
2026-01-07 12:48:58 +01:00
2025-12-09 21:44:13 -06:00
2025-07-22 11:51:29 -04:00
2026-01-07 12:48:58 +01:00
2025-11-02 20:05:47 +01:00
2025-06-02 00:15:36 +02:00
2025-07-22 11:51:29 -04:00
2025-10-03 08:58:40 +02:00
2025-10-03 08:58:40 +02:00
2026-01-23 15:53:27 +01:00
2025-07-22 11:51:29 -04:00
2025-08-05 07:07:15 -04:00
2025-08-05 07:07:15 -04:00
2025-09-17 12:44:44 +02:00
2025-09-21 15:06:32 +02:00
2025-10-22 10:58:19 +02:00
2025-12-25 23:59:21 +01:00
2025-12-25 23:59:21 +01:00
2026-01-19 10:48:12 +01:00
2026-01-19 10:48:12 +01:00
2025-07-22 11:51:29 -04:00
2025-07-22 11:51:29 -04:00
2025-05-03 08:08:04 +02:00
2025-07-22 11:51:29 -04:00
2026-01-08 12:57:17 +01:00
2026-01-07 12:48:58 +01:00
2025-12-09 21:44:13 -06:00
2025-07-22 11:51:29 -04:00
2025-09-17 12:44:44 +02:00
2025-08-05 07:07:15 -04:00
2025-10-14 15:47:38 +02:00
2025-07-22 11:51:29 -04:00
2025-11-29 09:39:43 -05:00
2025-10-05 21:44:06 +02:00
2025-08-05 07:07:15 -04:00
2025-08-05 07:07:15 -04:00
2025-04-05 11:20:26 +02:00
2025-12-21 12:08:41 -06:00
2025-12-09 21:44:13 -06:00
2025-08-23 16:04:36 -06:00
2025-12-09 21:44:13 -06:00
2025-07-22 11:51:29 -04:00
2025-04-05 11:20:26 +02:00
2025-07-22 11:51:29 -04:00
2025-12-09 21:44:13 -06:00
2025-07-22 11:51:29 -04:00
2025-07-22 11:51:29 -04:00
2025-09-17 12:44:44 +02:00
2025-07-22 11:51:29 -04:00
2025-07-22 11:51:29 -04:00
2026-01-18 10:10:04 +01:00
2026-01-06 10:55:56 +01:00
2026-01-06 00:01:01 +01:00
2025-12-21 12:08:41 -06:00
2025-09-15 12:16:58 +02:00
2025-12-09 21:44:13 -06:00
2025-07-22 11:51:29 -04:00
2026-01-19 10:48:12 +01:00
2026-01-19 10:48:12 +01:00
2025-04-24 09:33:49 -04:00
2025-07-22 11:51:29 -04:00
2026-01-19 10:48:12 +01:00
2025-12-25 23:59:21 +01:00
2025-12-09 21:44:13 -06:00
2026-01-07 12:48:58 +01:00
2025-12-09 21:44:13 -06:00
2025-07-22 11:51:29 -04:00
2025-04-29 07:33:08 -04:00
2025-07-22 11:51:29 -04:00
2025-12-03 13:45:26 +01:00
2025-08-13 09:56:13 -04:00
2025-10-24 13:24:55 -04:00
2025-08-23 16:04:36 -06:00
2026-01-05 18:22:11 +01:00
2025-12-13 13:51:12 -06:00
2025-05-03 20:01:20 +02:00
2025-07-22 11:51:29 -04:00
2025-07-18 12:45:38 -04:00
2025-07-22 11:51:29 -04:00
2025-12-09 21:44:13 -06:00
2025-09-26 16:21:18 +02:00
2025-07-22 11:51:29 -04:00
2026-01-07 12:48:58 +01:00
2025-11-02 20:05:47 +01:00
2025-06-02 00:15:36 +02:00
2025-07-22 11:51:29 -04:00
2025-12-09 21:44:13 -06:00
2025-07-22 11:51:29 -04:00
2026-01-19 10:48:12 +01:00
2026-01-19 10:48:12 +01:00
2025-07-22 11:51:29 -04:00
2025-12-09 21:44:13 -06:00
2025-07-22 11:51:29 -04:00
2026-01-07 12:48:58 +01:00
2026-01-07 12:48:58 +01:00
2026-01-04 07:47:55 +01:00
2025-07-22 11:51:29 -04:00
2026-01-04 07:47:55 +01:00
2026-01-04 07:47:55 +01:00
2026-01-25 23:08:36 +01:00
2025-12-21 10:06:04 -06:00
2025-12-09 21:44:13 -06:00
2025-07-22 11:51:29 -04:00
2025-11-02 20:05:47 +01:00
2025-11-02 20:05:47 +01:00
2025-06-02 00:15:36 +02:00
2025-07-22 11:51:29 -04:00
2025-10-05 21:44:06 +02:00
2025-09-21 15:06:32 +02:00
2025-12-25 23:59:21 +01:00
2025-10-03 09:03:40 +02:00
2025-07-22 11:51:29 -04:00
2025-09-17 12:44:44 +02:00
2025-07-22 11:51:29 -04:00
2025-07-22 11:51:29 -04:00
2025-08-05 07:07:15 -04:00
2025-08-05 07:07:15 -04:00
2025-12-09 21:44:13 -06:00
2025-07-22 11:51:29 -04:00
2025-07-22 11:51:29 -04:00
2025-08-05 07:07:15 -04:00
2025-07-22 11:51:29 -04:00
2025-08-05 07:07:15 -04:00
2025-12-20 09:13:19 -06:00
2025-12-09 21:44:13 -06:00
2025-08-05 07:07:15 -04:00
2025-12-01 15:12:52 +01:00
2025-07-22 11:51:29 -04:00
2025-11-29 09:39:43 -05:00
2025-11-29 09:39:43 -05:00
2025-07-22 11:51:29 -04:00
2026-01-12 13:53:28 -05:00
2026-01-12 13:53:28 -05:00
2025-10-11 20:08:58 +02:00
2025-05-14 02:01:59 -06:00
2026-01-07 20:51:17 +01:00
2026-01-04 07:47:55 +01:00
2025-12-20 09:13:19 -06:00
2025-12-09 21:44:13 -06:00
2025-07-22 11:51:29 -04:00
2025-10-03 08:58:40 +02:00
2025-10-03 08:58:40 +02:00
2026-01-07 07:52:03 -05:00
2025-07-22 11:51:29 -04:00
2025-12-09 21:44:13 -06:00
2025-07-22 11:51:29 -04:00
2025-07-22 11:51:29 -04:00
2025-08-23 16:04:36 -06:00
2025-07-22 11:51:29 -04:00
2025-12-09 21:44:13 -06:00
2025-07-22 11:51:29 -04:00
2025-07-22 11:51:29 -04:00
2026-01-19 10:48:12 +01:00
2026-01-19 10:48:12 +01:00