summaryrefslogtreecommitdiffstatshomepage
path: root/py/emitglue.c
Commit message (Expand)AuthorAge
* py/emitglue: Fix clear cache builtin warning on Clang for AArch32.Alessandro Gatti2024-12-10
* py/asmrv32: Add RISC-V RV32IMC native code emitter.Alessandro Gatti2024-06-21
* py/emitglue: Make mp_emit_glue_assign_native's fun_data arg a const ptr.Damien George2024-02-22
* py/emitglue: Remove n_pos_args from DEBUG_printf.Damien George2024-02-20
* py/objfun: Split viper fun type out to separate mp_type_fun_viper type.Damien George2024-02-20
* py/emitglue: Include fun_data_len in mp_raw_code_t only when saving.Damien George2024-02-16
* tools/mpy-tool.py: Skip generating frozen mp_raw_code_t when possible.Damien George2024-02-16
* py/emitglue: Introduce mp_proto_fun_t as a more general mp_raw_code_t.Damien George2024-02-16
* py/emitglue: Simplify mp_raw_code_t's kind and scope_flags members.Damien George2024-02-16
* py/emitglue: Reorder and resize members of mp_raw_code_t.Damien George2024-02-16
* py: Change ifdef DEBUG_PRINT to if DEBUG_PRINT.Ihor Nehrutsa2023-09-29
* py/emitnative: Access qstr values using indirection table qstr_table.Damien George2022-05-23
* py: Rework bytecode and .mpy file format to be mostly static data.Damien George2022-02-24
* py/emitglue: Always flush caches when assigning native ARM code.Damien George2021-06-05
* py/showbc: Pass in an mp_print_t struct to all bytecode-print functions.Damien George2020-09-11
* all: Reformat C and Python source code with tools/codeformat.py.Damien George2020-02-28
* py: Integrate sys.settrace feature into the VM and runtime.Milan Rossa2019-08-30
* py: Define EMIT_MACHINE_CODE as EMIT_NATIVE || EMIT_INLINE_ASM.Jun Wu2019-06-28
* py: Add support to save native, viper and asm code to .mpy files.Damien George2019-03-08
* py/emitglue: Remove union in mp_raw_code_t to combine bytecode & native.Damien George2019-03-08
* py: Downcase all MP_OBJ_IS_xxx macros to make a more consistent C API.Damien George2019-02-12
* py/emitnative: Implement yield and yield-from in native emitter.Damien George2018-10-01
* py: Make viper functions have the same entry signature as native.Damien George2018-09-15
* py: Fix compiling with debug enabled and make more use of DEBUG_printf.Damien George2018-08-02
* py/objgenerator: Eliminate need for mp_obj_gen_wrap wrapper instances.Damien George2018-07-02
* py/emitglue: When assigning bytecode only pass bytecode len if needed.Damien George2018-02-14
* py: Add verbose debug compile-time flag MICROPY_DEBUG_VERBOSE.Stefan Naumann2017-08-15
* all: Use the name MicroPython consistently in commentsAlexander Steffen2017-07-31
* py/emitglue: Refactor to remove assert(0), to improve coverage.Damien George2016-12-21
* py: Allow inline-assembler emitter to be generic.Damien George2016-12-09
* py: Factor persistent code load/save funcs into persistentcode.[ch].Damien George2016-11-16
* esp8266: Enable importing of precompiled .mpy files.Damien George2016-10-12
* py/emitglue.c: provide mp_raw_code_load_file for any unix architectureChris Packham2016-09-04
* py/emitglue: Use more compact mp_raise_ValueError function.Damien George2016-08-26
* py/emitglue: Fix build on AArch64 (ARMv8, etc.) related to loading .mpy files.Paul Sokolovsky2016-05-12
* py: Add ability to have frozen persistent bytecode from .mpy files.Damien George2016-04-13
* py/emitglue: Make mp_raw_code_t* arguments constant pointers.Damien George2016-04-13
* py/emitglue: Move typedef of mp_raw_code_t from .c to .h file.Damien George2016-04-13
* py/emitglue: Get persistent bytecode working on Linux ARM platform.Markus Fix2016-03-07
* py: Add MICROPY_DYNAMIC_COMPILER option to config compiler at runtime.Damien George2016-02-25
* py/inlineasm: Add ability to specify return type of asm_thumb funcs.Damien George2016-01-27
* py/emitglue: Use mp_obj_is_float instead of MP_OBJ_IS_TYPE.Damien George2016-01-13
* py/emitglue: Add more feature flags to .mpy persistent bytecode output.Damien George2016-01-08
* py/emitglue: Add include of unistd.h for read function.Damien George2015-12-18
* py: Wrap all obj-ptr conversions in MP_OBJ_TO_PTR/MP_OBJ_FROM_PTR.Damien George2015-11-29
* py: Change qstr_* functions to use size_t as the type for str len arg.Damien George2015-11-29
* py: Change mp_print_strn_t func type to use size_t for the str length.Damien George2015-11-29
* py/emitglue: Implement persistent saving and loading of const objects.Damien George2015-11-23
* py/emitglue: Add feature-flag header to .mpy to detect bytecode compat.Damien George2015-11-23
* py/emitglue: Host definition of mp_verbose_flag.Paul Sokolovsky2015-11-21