aboutsummaryrefslogtreecommitdiff
path: root/py/emitglue.h
AgeCommit message (Expand)Author
2022-05-23py/emitnative: Access qstr values using indirection table qstr_table.Damien George
2022-02-24py: Rework bytecode and .mpy file format to be mostly static data.Damien George
2019-08-30py: Integrate sys.settrace feature into the VM and runtime.Milan Rossa
2019-06-28py: Define EMIT_MACHINE_CODE as EMIT_NATIVE || EMIT_INLINE_ASM.Jun Wu
2019-03-08py: Add support to save native, viper and asm code to .mpy files.Damien George
2019-03-08py/emitglue: Remove union in mp_raw_code_t to combine bytecode & native.Damien George
2018-09-15py/emit: Move MP_EMIT_OPT_xxx enums from compile.h to emitglue.h.Damien George
2018-02-14py/emitglue: When assigning bytecode only pass bytecode len if needed.Damien George
2017-12-15py/emitglue: Change type of bit-field to explicitly unsigned mp_uint_t.Damien George
2017-07-31all: Use the name MicroPython consistently in commentsAlexander Steffen
2017-07-18all: Unify header guard usage.Alexander Steffen
2016-11-16py: Factor persistent code load/save funcs into persistentcode.[ch].Damien George
2016-04-13py/emitglue: Make mp_raw_code_t* arguments constant pointers.Damien George
2016-04-13py/emitglue: Move typedef of mp_raw_code_t from .c to .h file.Damien George
2015-11-20py/emitglue: Add mp_raw_code_load_mem to load raw-code from memory.Damien George
2015-11-13py: Add MICROPY_PERSISTENT_CODE_LOAD/SAVE to load/save bytecode.Damien George
2015-11-13py: Add constant table to bytecode.Damien George
2015-11-13py: Put all bytecode state (arg count, etc) in bytecode.Damien George
2015-04-07py: Implement full func arg passing for native emitter.Damien George
2015-01-24py: Don't use anonymous unions, name them instead.Damien George
2015-01-01py: Move to guarded includes, everywhere in py/ core.Damien George
2014-12-27py: Move to guarded includes for compile.h and related headers.Paul Sokolovsky
2014-10-25py: Store bytecode arg names in bytecode (were in own array).Damien George
2014-10-24py: Fix debug-printing of bytecode line numbers.Damien George
2014-08-24py: Fix bug where GC collected native/viper/asm function data.Damien George
2014-08-15py: Allow viper to have type annotations.Damien George
2014-05-12py: Remove emit_glue init and deinit. Needed only for debugging.Damien George
2014-05-10py: Combine native emitters to 1 glue function; distinguish viper.Damien George
2014-05-10py: Rename byte_code to bytecode everywhere.Damien George
2014-05-03Add license header to (almost) all files.Damien George
2014-04-27py: Implement keyword-only args.Damien George
2014-04-20py: Making closures now passes pointer to stack, not a tuple for vars.Damien George
2014-04-13py: Remove unique_codes from emitglue.c. Replace with pointers.Damien George
2014-03-29py: Free unique_code slot for outer module.Damien George
2014-03-27py: Factor out code from runtime.c to emitglue.c.Damien George