aboutsummaryrefslogtreecommitdiff
path: root/py/emitcommon.c
AgeCommit message (Expand)Author
2022-05-18py/compile: De-duplicate constant objects in module's constant table.Damien George
2022-05-17py/compile: Allow new qstrs to be allocated at all compiler passes.Damien George
2022-05-03py/emitcommon: Don't implicitly close class vars that are assigned to.Damien George
2022-02-24py: Rework bytecode and .mpy file format to be mostly static data.Damien George
2018-10-28py/scope: Optimise scope_find_or_add_id to not need "added" arg.Damien George
2018-10-28py/compile: Fix case of eager implicit conversion of local to nonlocal.Damien George
2018-05-23py/emit: Combine name and global into one func for load/store/delete.Damien George
2018-05-23py/emit: Combine fast and deref into one function for load/store/delete.Damien George
2017-07-31all: Use the name MicroPython consistently in commentsAlexander Steffen
2016-09-30py/scope: Factor common code to find locals and close over them.Damien George
2016-09-30py/scope: Use lookup-table to determine a scope's simple name.Damien George
2015-12-18py: Add MICROPY_ENABLE_COMPILER and MICROPY_PY_BUILTINS_EVAL_EXEC opts.Damien George
2015-08-17unix-cpy: Remove unix-cpy. It's no longer needed.Damien George
2015-03-26py, compiler: Refactor load/store/delete_id logic to reduce code size.Damien George
2015-01-16py: Remove unnecessary id_flags argument from emitter's load_fast.Damien George
2015-01-01py: Move to guarded includes, everywhere in py/ core.Damien George
2014-09-08py: Convert [u]int to mp_[u]int_t in emit.h and associated .c files.Damien George
2014-06-21py: Include mpconfig.h before all other includes.Paul Sokolovsky
2014-05-03Add license header to (almost) all files.Damien George
2014-04-13Merge pull request #471 from errordeveloper/misc_fix/unistdDamien George
2014-04-13py: Remove unique_codes from emitglue.c. Replace with pointers.Damien George
2014-04-12py: the entire `<unistd.h>` shouldn't be neededIlya Dmitrichenko
2014-04-09py: Properly implement deletion of locals and derefs, and detect errors.Damien George
2014-03-17py: Clean up includes.xbe
2014-02-26py: Remove name of var arg from macros with var args.Damien George
2014-01-21Revamp qstrs: they now include length and hash.Damien George
2013-12-21Change object representation from 1 big union to individual structs.Damien
2013-10-20Add local_num skeleton framework to deref/closure emit calls.Damien
2013-10-12Separate out mpy core and unix version.Damien
2013-10-05Factorise EMIT_COMMON calls, mostly into emit_pass1.Damien
2013-10-05Restructure emit so it goes through a method table.Damien
2013-10-04Initial commit.Damien