summaryrefslogtreecommitdiffstatshomepage
path: root/py/bc.h
Commit message (Expand)AuthorAge
* py/emitglue: Include fun_data_len in mp_raw_code_t only when saving.Damien George2024-02-16
* py/emitglue: Introduce mp_proto_fun_t as a more general mp_raw_code_t.Damien George2024-02-16
* py: Pass in address to compiled module instead of returning it.Damien George2022-12-08
* py/bc: Remove unused mp_opcode_format function.Damien George2022-06-07
* py/bc: Provide separate code-state setup funcs for bytecode and native.Damien George2022-05-17
* py/bc.h: Fix C++20 compilation with "volatile".stijn2022-03-30
* py/showbc: Remove global variables and make DECODE_PTR work correctly.Damien George2022-03-16
* py/bc.h: Fix C++ compilation of public API.stijn2022-03-01
* py: Rework bytecode and .mpy file format to be mostly static data.Damien George2022-02-24
* py: Mark unused arguments from bytecode decoding macros.Damien George2021-06-25
* py/showbc: Pass in an mp_print_t struct to all bytecode-print functions.Damien George2020-09-11
* all: Format code to add space after C++-style comment start.stijn2020-04-23
* all: Reformat C and Python source code with tools/codeformat.py.Damien George2020-02-28
* py/persistentcode: Add ability to relocate loaded native code.Damien George2019-12-12
* py: Rework and compress second part of bytecode prelude.Damien George2019-10-01
* py: Compress first part of bytecode prelude.Damien George2019-10-01
* py: Add n_state to mp_code_state_t struct.Damien George2019-10-01
* py/bc: Change mp_code_state_t.exc_sp to exc_sp_idx.Damien George2019-10-01
* py/bc: Remove comments referring to obsolete currently_in_except_block.Damien George2019-10-01
* py/bc: Replace big opcode format table with simple macro.Damien George2019-09-26
* py: Integrate sys.settrace feature into the VM and runtime.Milan Rossa2019-08-30
* py/bc: Factor out code to get bytecode line number info into new func.Damien George2019-08-30
* various: Add and update my copyright line based on git history.Paul Sokolovsky2019-05-17
* py/persistentcode: Pack qstrs directly in bytecode to reduce mpy size.Damien George2019-03-05
* all: Remove inclusion of internal py header files.Damien George2017-10-04
* all: Use the name MicroPython consistently in commentsAlexander Steffen2017-07-31
* all: Unify header guard usage.Alexander Steffen2017-07-18
* py: Provide mp_decode_uint_skip() to help reduce stack usage.Damien George2017-06-09
* py: Provide mp_decode_uint_value to help optimise stack usage.Damien George2017-03-17
* py: Reduce size of mp_code_state_t structure.Damien George2017-03-17
* py/showbc: Make sure to set the const_table before printing bytecode.Damien George2017-01-27
* py/bc.h: Rename _mp_code_state to _mp_code_state_t.Damien George2016-08-27
* py: Rename struct mp_code_state to mp_code_state_t.Damien George2016-08-27
* py/bc: Use size_t instead of mp_uint_t to count size of state and args.Damien George2015-12-17
* py: Wrap all obj-ptr conversions in MP_OBJ_TO_PTR/MP_OBJ_FROM_PTR.Damien George2015-11-29
* py: Use uintptr_t instead of mp_uint_t in MP_TAGPTR_* macros.Damien George2015-11-29
* py: Make mp_setup_code_state take concrete pointer for func arg.Damien George2015-11-29
* py: Add MICROPY_PERSISTENT_CODE_LOAD/SAVE to load/save bytecode.Damien George2015-11-13
* py: Add constant table to bytecode.Damien George2015-11-13
* py: Put all bytecode state (arg count, etc) in bytecode.Damien George2015-11-13
* py: Reorganise bytecode layout so it's more structured, easier to edit.Damien George2015-11-13
* vm: Initial support for calling bytecode functions w/o C stack ("stackless").Paul Sokolovsky2015-04-03
* py: Make old_globals part of mp_code_state structure.Paul Sokolovsky2015-02-15
* py: Move to guarded includes, everywhere in py/ core.Damien George2015-01-01
* showbc: Refactor to allow inline instruction printing.Paul Sokolovsky2014-12-27
* py: Reduce size of VM exception stack element by 1 machine word.Damien George2014-12-22
* py: Store bytecode arg names in bytecode (were in own array).Damien George2014-10-25
* py: Change [u]int to mp_[u]int_t in qstr.[ch], and some other places.Damien George2014-10-03
* py: Convert [u]int to mp_[u]int_t where appropriate.Damien George2014-10-03
* py: Use variable length encoded uints in more places in bytecode.Damien George2014-09-04