Damien George
8588525868
py/compile: De-duplicate constant objects in module's constant table.
...
The recent rework of bytecode made all constants global with respect to the
module (previously, each function had its own constant table). That means
the constant table for a module is shared among all functions/methods/etc
within the module.
This commit add support to the compiler to de-duplicate constants in this
module constant table. So if a constant is used more than once -- eg 1.0
or (None, None) -- then the same object is reused for all instances.
For example, if there is code like `print(1.0, 1.0)` then the parser will
create two independent constants 1.0 and 1.0. The compiler will then (with
this commit) notice they are the same and only put one of them in the
constant table. The bytecode will then reuse that constant twice in the
print expression. That allows the second 1.0 to be reclaimed by the GC,
also means the constant table has one less entry so saves a word.
Signed-off-by: Damien George <damien@micropython.org>
2022-05-18 15:23:11 +10:00
..
2021-04-27 23:51:52 +10:00
2021-06-05 11:03:04 +10:00
2021-06-05 11:03:04 +10:00
2022-02-24 18:08:43 +11:00
2022-02-24 18:08:43 +11:00
2021-06-05 11:03:04 +10:00
2021-06-05 11:03:04 +10:00
2022-05-17 14:25:51 +10:00
2020-06-27 00:24:04 +10:00
2020-06-27 00:24:04 +10:00
2020-06-27 00:24:04 +10:00
2022-03-30 16:32:17 +11:00
2022-03-30 16:32:17 +11:00
2022-03-28 15:43:09 +11:00
2022-05-17 14:25:51 +10:00
2022-05-17 14:25:51 +10:00
2021-06-24 23:01:04 +10:00
2019-09-02 13:14:27 +10:00
2022-03-09 10:03:23 +11:00
2022-05-03 22:28:14 +10:00
2021-12-18 00:01:59 +11:00
2022-03-28 16:09:58 +11:00
2022-05-18 15:23:11 +10:00
2022-02-24 18:08:43 +11:00
2022-05-03 22:23:46 +10:00
2021-09-16 16:04:03 +10:00
2022-05-18 15:23:11 +10:00
2022-05-18 15:23:11 +10:00
2022-05-18 15:23:11 +10:00
2022-02-24 18:08:43 +11:00
2022-02-24 18:08:43 +11:00
2022-04-11 15:35:39 +10:00
2020-10-22 11:47:36 +02:00
2018-09-04 14:31:28 +10:00
2022-05-18 15:23:11 +10:00
2018-09-04 14:31:28 +10:00
2018-09-04 14:31:28 +10:00
2022-02-24 18:08:43 +11:00
2018-09-04 14:31:28 +10:00
2022-05-17 16:44:49 +10:00
2020-04-18 22:42:24 +10:00
2017-07-31 18:35:40 +10:00
2022-02-24 18:08:43 +11:00
2021-12-18 00:01:59 +11:00
2022-02-17 11:17:21 +11:00
2021-02-05 15:46:56 +11:00
2020-06-16 23:18:01 +10:00
2022-05-17 12:51:54 +10:00
2021-08-14 16:58:40 +10:00
2020-04-20 10:32:49 +10:00
2020-08-29 15:18:01 +10:00
2022-02-11 22:52:32 +11:00
2022-04-01 15:03:21 +11:00
2021-07-05 10:41:31 -05:00
2022-05-05 10:31:50 +10:00
2021-10-15 23:31:19 +11:00
2022-05-05 10:31:50 +10:00
2021-08-07 20:25:32 +10:00
2021-12-18 00:05:18 +11:00
2021-12-17 23:54:05 +11:00
2020-02-28 10:33:03 +11:00
2022-01-07 11:36:52 +11:00
2020-04-23 11:24:25 +10:00
2020-02-28 10:33:03 +11:00
2020-02-28 10:33:03 +11:00
2022-05-03 22:28:14 +10:00
2022-01-23 09:28:33 +11:00
2021-05-10 13:07:16 +10:00
2020-04-05 15:02:06 +10:00
2022-04-28 17:23:03 +10:00
2022-05-03 22:28:14 +10:00
2020-04-23 11:24:25 +10:00
2022-05-17 16:44:49 +10:00
2021-06-24 23:14:01 +10:00
2020-09-18 17:20:34 +10:00
2020-12-07 23:32:06 +11:00
2021-08-07 13:52:16 +10:00
2017-07-31 18:35:40 +10:00
2022-05-17 12:51:54 +10:00
2020-02-28 10:33:03 +11:00
2021-12-21 18:00:05 +11:00
2021-12-21 18:00:05 +11:00
2022-05-17 14:25:51 +10:00
2022-05-17 14:25:51 +10:00
2020-02-28 10:33:03 +11:00
2022-05-05 13:30:40 +10:00
2021-05-18 11:46:30 +10:00
2020-02-28 10:33:03 +11:00
2017-12-28 16:46:30 +11:00
2020-02-28 10:33:03 +11:00
2021-05-18 11:52:00 +10:00
2020-02-28 10:33:03 +11:00
2020-02-28 10:33:03 +11:00
2022-05-03 22:23:46 +10:00
2022-05-03 22:23:46 +10:00
2022-05-03 22:28:14 +10:00
2020-09-25 12:23:11 +10:00
2022-05-03 22:28:14 +10:00
2020-02-28 10:33:03 +11:00
2022-05-03 22:28:14 +10:00
2022-05-03 22:28:14 +10:00
2022-05-03 22:28:14 +10:00
2022-05-03 22:28:14 +10:00
2022-05-03 22:28:14 +10:00
2022-05-03 22:28:14 +10:00
2022-05-03 22:28:14 +10:00
2022-03-10 10:43:21 +11:00
2020-02-28 10:33:03 +11:00
2022-05-03 22:28:14 +10:00
2022-05-03 22:25:40 +10:00
2022-05-17 14:25:51 +10:00
2022-02-24 18:08:43 +11:00
2022-05-17 16:44:49 +10:00
2017-07-31 18:35:40 +10:00
2021-07-15 00:12:41 +10:00
2022-05-03 22:28:14 +10:00
2022-05-03 22:28:14 +10:00
2021-06-24 23:01:04 +10:00
2020-05-28 10:02:14 +10:00
2021-08-07 13:52:16 +10:00
2018-03-13 14:03:15 +11:00
2022-05-03 22:28:14 +10:00
2022-05-05 11:02:38 +10:00
2022-03-10 10:35:44 +11:00
2021-04-27 23:51:52 +10:00
2017-11-20 09:30:06 +02:00
2020-01-13 01:01:45 +11:00
2022-05-03 22:28:14 +10:00
2017-10-04 12:37:50 +11:00
2022-05-03 22:28:14 +10:00
2022-05-03 22:28:14 +10:00
2022-05-03 22:28:14 +10:00
2022-05-03 22:28:14 +10:00
2019-12-27 12:53:36 +11:00
2022-05-03 22:28:14 +10:00
2022-05-03 22:28:14 +10:00
2020-02-28 10:33:03 +11:00
2022-05-03 22:28:14 +10:00
2017-06-09 17:33:01 +03:00
2020-12-07 23:32:06 +11:00
2022-05-03 22:28:14 +10:00
2020-02-28 10:33:03 +11:00
2022-05-03 22:28:14 +10:00
2019-12-27 12:34:22 +11:00
2022-05-03 22:28:14 +10:00
2020-01-09 11:25:26 +11:00
2020-03-26 01:21:04 +11:00
2020-03-26 01:21:04 +11:00
2022-04-14 23:52:12 +10:00
2022-04-14 22:44:56 +10:00
2021-04-27 23:51:52 +10:00
2017-07-31 18:35:40 +10:00
2020-02-28 10:33:03 +11:00
2017-07-31 18:35:40 +10:00
2022-05-17 16:44:49 +10:00
2022-05-17 12:51:54 +10:00
2022-02-24 18:08:43 +11:00
2022-02-24 18:08:43 +11:00
2021-04-09 13:08:35 +10:00
2022-03-09 10:03:23 +11:00
2021-07-15 00:12:41 +10:00
2020-02-28 10:33:03 +11:00
2022-02-11 22:55:02 +11:00
2022-02-24 18:08:43 +11:00
2022-03-10 10:58:33 +11:00
2020-02-28 10:33:03 +11:00
2017-03-14 11:52:05 +11:00
2022-04-22 17:00:16 +10:00
2022-03-10 10:58:33 +11:00
2019-11-21 12:04:53 +11:00
2020-06-05 14:04:20 +10:00
2019-12-12 20:15:28 +11:00
2017-12-05 00:38:41 +02:00
2022-05-03 22:28:14 +10:00
2022-04-14 12:31:53 +10:00
2022-04-14 12:31:53 +10:00
2022-02-24 18:08:43 +11:00
2022-05-03 16:38:43 +10:00
2020-04-05 15:02:06 +10:00
2022-03-28 15:43:09 +11:00
2017-07-31 18:35:40 +10:00
2022-03-25 12:23:43 +11:00
2020-02-28 10:33:03 +11:00
2021-06-05 11:03:09 +10:00
2020-04-27 23:58:46 +10:00
2020-03-25 01:00:52 +11:00
2020-02-28 10:33:03 +11:00
2017-09-06 16:43:09 +10:00
2021-03-31 00:26:01 +11:00
2022-03-31 16:59:30 +11:00
2020-10-22 11:47:36 +02:00
2020-02-28 10:33:03 +11:00
2019-02-06 00:19:00 +11:00