-
- Downloads
Remove mp_obj_type_t.methods entry and use .locals_dict instead.
Originally, .methods was used for methods in a ROM class, and locals_dict for methods in a user-created class. That distinction is unnecessary, and we can use locals_dict for ROM classes now that we have ROMable maps. This removes an entry in the bloated mp_obj_type_t struct, saving a word for each ROM object and each RAM object. ROM objects that have a methods table (now a locals_dict) need an extra word in total (removed the methods pointer (1 word), no longer need the sentinel (2 words), but now need an mp_obj_dict_t wrapper (4 words)). But RAM objects save a word because they never used the methods entry. Overall the ROM usage is down by a few hundred bytes, and RAM usage is down 1 word per user-defined type/class. There is less code (no need to check 2 tables), and now consistent with the way ROM modules have their tables initialised. Efficiency is very close to equivaluent.
Showing
- py/builtin.c 1 addition, 9 deletionspy/builtin.c
- py/map.h 5 additions, 0 deletionspy/map.h
- py/obj.h 15 additions, 2 deletionspy/obj.h
- py/objarray.c 5 additions, 4 deletionspy/objarray.c
- py/objdict.c 16 additions, 21 deletionspy/objdict.c
- py/objgenerator.c 8 additions, 6 deletionspy/objgenerator.c
- py/objlist.c 15 additions, 14 deletionspy/objlist.c
- py/objset.c 21 additions, 20 deletionspy/objset.c
- py/objstr.c 17 additions, 15 deletionspy/objstr.c
- py/objtuple.c 7 additions, 5 deletionspy/objtuple.c
- py/objtype.c 2 additions, 0 deletionspy/objtype.c
- py/runtime.c 18 additions, 19 deletionspy/runtime.c
- stm/adc.c 14 additions, 11 deletionsstm/adc.c
- stm/audio.c 8 additions, 7 deletionsstm/audio.c
- stm/exti.c 9 additions, 7 deletionsstm/exti.c
- stm/file.c 8 additions, 6 deletionsstm/file.c
- stm/i2c.c 10 additions, 8 deletionsstm/i2c.c
- stm/led.c 8 additions, 6 deletionsstm/led.c
- stm/pin.c 8 additions, 6 deletionsstm/pin.c
- stm/sdcard.c 8 additions, 6 deletionsstm/sdcard.c
Loading
Please register or sign in to comment