micropython/docs/develop
Damien George 2283b6d68f py: Pass in address to compiled module instead of returning it.
This change makes it so the compiler and persistent code loader take a
mp_compiled_module_t* as their last argument, instead of returning this
struct.  This eliminates a duplicate context variable for all callers of
these functions (because the context is now stored in the
mp_compiled_module_t by the caller), and also eliminates any confusion
about which context to use after the mp_compile_to_raw_code or
mp_raw_code_load function returns (because there is now only one context,
that stored in mp_compiled_module_t.context).

Reduces code size by 16 bytes on ARM Cortex-based ports.

Signed-off-by: Damien George <damien@micropython.org>
2022-12-08 12:27:23 +11:00
..
img
cmodules.rst examples/usercmodule: Add example of a native C class. 2022-11-23 11:46:17 +11:00
compiler.rst py: Pass in address to compiled module instead of returning it. 2022-12-08 12:27:23 +11:00
extendingmicropython.rst
gettingstarted.rst
index.rst
library.rst
maps.rst
memorymgt.rst
natmod.rst
optimizations.rst
porting.rst all: Use += rather than = everywhere for CFLAGS/LDFLAGS/LIBS. 2022-10-11 23:17:41 +11:00
publiccapi.rst
qstr.rst
writingtests.rst