aboutsummaryrefslogtreecommitdiff
path: root/py/emitglue.c
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
2021-06-05py/emitglue: Always flush caches when assigning native ARM code.Damien George
2020-09-11py/showbc: Pass in an mp_print_t struct to all bytecode-print functions.Damien George
2020-02-28all: Reformat C and Python source code with tools/codeformat.py.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
2019-02-12py: Downcase all MP_OBJ_IS_xxx macros to make a more consistent C API.Damien George
2018-10-01py/emitnative: Implement yield and yield-from in native emitter.Damien George
2018-09-15py: Make viper functions have the same entry signature as native.Damien George
2018-08-02py: Fix compiling with debug enabled and make more use of DEBUG_printf.Damien George
2018-07-02py/objgenerator: Eliminate need for mp_obj_gen_wrap wrapper instances.Damien George
2018-02-14py/emitglue: When assigning bytecode only pass bytecode len if needed.Damien George
2017-08-15py: Add verbose debug compile-time flag MICROPY_DEBUG_VERBOSE.Stefan Naumann
2017-07-31all: Use the name MicroPython consistently in commentsAlexander Steffen
2016-12-21py/emitglue: Refactor to remove assert(0), to improve coverage.Damien George
2016-12-09py: Allow inline-assembler emitter to be generic.Damien George
2016-11-16py: Factor persistent code load/save funcs into persistentcode.[ch].Damien George
2016-10-12esp8266: Enable importing of precompiled .mpy files.Damien George
2016-09-04py/emitglue.c: provide mp_raw_code_load_file for any unix architectureChris Packham
2016-08-26py/emitglue: Use more compact mp_raise_ValueError function.Damien George
2016-05-12py/emitglue: Fix build on AArch64 (ARMv8, etc.) related to loading .mpy files.Paul Sokolovsky
2016-04-13py: Add ability to have frozen persistent bytecode from .mpy files.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
2016-03-07py/emitglue: Get persistent bytecode working on Linux ARM platform.Markus Fix
2016-02-25py: Add MICROPY_DYNAMIC_COMPILER option to config compiler at runtime.Damien George
2016-01-27py/inlineasm: Add ability to specify return type of asm_thumb funcs.Damien George
2016-01-13py/emitglue: Use mp_obj_is_float instead of MP_OBJ_IS_TYPE.Damien George
2016-01-08py/emitglue: Add more feature flags to .mpy persistent bytecode output.Damien George
2015-12-18py/emitglue: Add include of unistd.h for read function.Damien George
2015-11-29py: Wrap all obj-ptr conversions in MP_OBJ_TO_PTR/MP_OBJ_FROM_PTR.Damien George
2015-11-29py: Change qstr_* functions to use size_t as the type for str len arg.Damien George
2015-11-29py: Change mp_print_strn_t func type to use size_t for the str length.Damien George
2015-11-23py/emitglue: Implement persistent saving and loading of const objects.Damien George
2015-11-23py/emitglue: Add feature-flag header to .mpy to detect bytecode compat.Damien George
2015-11-21py/emitglue: Host definition of mp_verbose_flag.Paul Sokolovsky
2015-11-20py/emitglue: Add mp_raw_code_load_mem to load raw-code from memory.Damien George
2015-11-20py/emitglue: Only compile raw-code fatfs loader when on thumb2 platform.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-20py, unix: Allow to compile with -Wunused-parameter.Damien George
2015-01-14py: Add "default" to switches to allow better code flow analysis.Damien George
2015-01-01py: Move to guarded includes, everywhere in py/ core.Damien George
2014-10-26unix: Make -v dump memory info at exit.Paul Sokolovsky