Andreas Kling
3d92c26445
LibJS: Stop making shapes unique
...
We previously had a concept of unique shapes, which meant that they
couldn't be shared between multiple objects.
Object shapes became unique in three situations:
- They were the shape of the global object.
- They had more than 100 properties added to them.
- They had one or more properties deleted from them.
Unfortunately, unique shapes presented an annoying problem for inline
caches, and we added a "unique shape serial number" for being able to
tell that a unique shape had been mutated.
This patch gets rid of the concept of unique shapes, simplifying all
the caching code, since inline caches can now simply perform a shape
check and then we're good.
To make this possible, we now have the concept of delete transitions,
which occur when a property is deleted from a shape.
Note that this patch by itself introduces a performance regression in
some situtations, since we now create a lot more shapes, and marking
their property keys can be very heavy. This will be addressed in a
subsequent patch.
2023-12-11 20:36:15 +01:00
..
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-12-09 00:20:25 +01:00
2023-11-29 09:48:18 +01:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-11-30 09:51:46 -05:00
2023-11-30 09:51:46 -05:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-11-29 09:48:18 +01:00
2023-11-29 09:48:18 +01:00
2023-11-19 12:10:31 +01:00
2023-11-26 10:33:56 +01:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-12-07 14:06:34 +01:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-12-09 00:20:25 +01:00
2023-12-09 00:20:25 +01:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-12-07 14:06:34 +01:00
2023-12-07 14:06:34 +01:00
2023-12-07 14:06:34 +01:00
2023-12-07 14:06:34 +01:00
2023-11-29 09:48:18 +01:00
2023-11-19 12:10:31 +01:00
2023-11-29 09:48:18 +01:00
2023-11-29 09:48:18 +01:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-11-29 09:48:18 +01:00
2023-11-29 09:48:18 +01:00
2023-11-29 09:48:18 +01:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-11-30 09:51:46 -05:00
2023-11-30 09:51:46 -05:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-11-29 09:48:18 +01:00
2023-11-29 09:48:18 +01:00
2023-11-30 09:51:46 -05:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-11-26 10:33:56 +01:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-12-10 09:44:26 +01:00
2023-12-06 12:58:04 +01:00
2023-11-29 09:48:18 +01:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-11-30 09:51:46 -05:00
2023-11-29 09:48:18 +01:00
2023-11-29 09:48:18 +01:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-11-29 09:48:18 +01:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-11-29 09:48:18 +01:00
2023-11-29 09:48:18 +01:00
2023-11-29 09:48:18 +01:00
2023-11-29 09:48:18 +01:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-11-29 09:48:18 +01:00
2023-11-29 09:48:18 +01:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-12-11 20:36:15 +01:00
2023-11-19 12:10:31 +01:00
2023-12-08 00:54:05 +01:00
2023-12-08 00:54:05 +01:00
2023-12-08 00:54:05 +01:00
2023-12-07 14:06:34 +01:00
2023-12-07 14:06:34 +01:00
2023-11-19 12:10:31 +01:00
2023-12-07 14:06:34 +01:00
2023-12-07 14:06:34 +01:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-12-07 14:06:34 +01:00
2023-11-19 12:10:31 +01:00
2023-11-29 09:48:18 +01:00
2023-11-29 09:48:18 +01:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-12-01 13:01:26 +01:00
2023-12-01 13:01:26 +01:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-12-03 20:46:55 +01:00
2023-11-29 09:48:18 +01:00
2023-11-29 09:48:18 +01:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-12-11 20:36:15 +01:00
2023-12-11 20:36:15 +01:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-11-29 09:48:18 +01:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-12-07 14:06:34 +01:00
2023-11-19 12:10:31 +01:00
2023-11-29 09:48:18 +01:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-11-29 09:48:18 +01:00
2023-11-29 09:48:18 +01:00
2023-11-29 09:48:18 +01:00
2023-12-01 13:01:26 +01:00
2023-11-29 09:48:18 +01:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-11-29 09:48:18 +01:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-12-03 20:46:55 +01:00
2023-11-29 09:48:18 +01:00
2023-11-29 09:48:18 +01:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-12-11 20:36:15 +01:00
2023-12-11 20:36:15 +01:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-11-29 09:48:18 +01:00
2023-11-26 19:32:51 +01:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-11-26 10:33:56 +01:00
2023-11-19 12:10:31 +01:00
2023-11-29 09:48:18 +01:00
2023-11-29 09:48:18 +01:00
2023-12-07 14:06:34 +01:00
2023-12-06 12:58:04 +01:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-11-19 12:10:31 +01:00
2023-11-29 09:48:18 +01:00
2023-11-29 09:48:18 +01:00