diff options
author | Damien George <damien.p.george@gmail.com> | 2017-04-19 09:45:59 +1000 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2017-04-22 23:39:20 +1000 |
commit | dd11af209d226b7d18d5148b239662e30ed60bad (patch) | |
tree | 8343a2ce54172f2f3304ca5dba49f352f37b5c17 /py/nativeglue.c | |
parent | 5335942b599d85263d3c18eb99ff5ebd04a8bc98 (diff) | |
download | micropython-dd11af209d226b7d18d5148b239662e30ed60bad.tar.gz micropython-dd11af209d226b7d18d5148b239662e30ed60bad.zip |
py: Add LOAD_SUPER_METHOD bytecode to allow heap-free super meth calls.
This patch allows the following code to run without allocating on the heap:
super().foo(...)
Before this patch such a call would allocate a super object on the heap and
then load the foo method and call it right away. The super object is only
needed to perform the lookup of the method and not needed after that. This
patch makes an optimisation to allocate the super object on the C stack and
discard it right after use.
Changes in code size due to this patch are:
bare-arm: +128
minimal: +232
unix x64: +416
unix nanbox: +364
stmhal: +184
esp8266: +340
cc3200: +128
Diffstat (limited to 'py/nativeglue.c')
-rw-r--r-- | py/nativeglue.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/py/nativeglue.c b/py/nativeglue.c index 694dfca74a..c75e5ec047 100644 --- a/py/nativeglue.c +++ b/py/nativeglue.c @@ -133,6 +133,7 @@ void *const mp_fun_table[MP_F_NUMBER_OF] = { mp_load_build_class, mp_load_attr, mp_load_method, + mp_load_super_method, mp_store_name, mp_store_global, mp_store_attr, |