aboutsummaryrefslogtreecommitdiff
path: root/py/bc.h
AgeCommit message (Expand)Author
2022-05-17py/bc: Provide separate code-state setup funcs for bytecode and native.Damien George
2022-03-30py/bc.h: Fix C++20 compilation with "volatile".stijn
2022-03-16py/showbc: Remove global variables and make DECODE_PTR work correctly.Damien George
2022-03-01py/bc.h: Fix C++ compilation of public API.stijn
2022-02-24py: Rework bytecode and .mpy file format to be mostly static data.Damien George
2021-06-25py: Mark unused arguments from bytecode decoding macros.Damien George
2020-09-11py/showbc: Pass in an mp_print_t struct to all bytecode-print functions.Damien George
2020-04-23all: Format code to add space after C++-style comment start.stijn
2020-02-28all: Reformat C and Python source code with tools/codeformat.py.Damien George
2019-12-12py/persistentcode: Add ability to relocate loaded native code.Damien George
2019-10-01py: Rework and compress second part of bytecode prelude.Damien George
2019-10-01py: Compress first part of bytecode prelude.Damien George
2019-10-01py: Add n_state to mp_code_state_t struct.Damien George
2019-10-01py/bc: Change mp_code_state_t.exc_sp to exc_sp_idx.Damien George
2019-10-01py/bc: Remove comments referring to obsolete currently_in_except_block.Damien George
2019-09-26py/bc: Replace big opcode format table with simple macro.Damien George
2019-08-30py: Integrate sys.settrace feature into the VM and runtime.Milan Rossa
2019-08-30py/bc: Factor out code to get bytecode line number info into new func.Damien George
2019-05-17various: Add and update my copyright line based on git history.Paul Sokolovsky
2019-03-05py/persistentcode: Pack qstrs directly in bytecode to reduce mpy size.Damien George
2017-10-04all: Remove inclusion of internal py header files.Damien George
2017-07-31all: Use the name MicroPython consistently in commentsAlexander Steffen
2017-07-18all: Unify header guard usage.Alexander Steffen
2017-06-09py: Provide mp_decode_uint_skip() to help reduce stack usage.Damien George
2017-03-17py: Provide mp_decode_uint_value to help optimise stack usage.Damien George
2017-03-17py: Reduce size of mp_code_state_t structure.Damien George
2017-01-27py/showbc: Make sure to set the const_table before printing bytecode.Damien George
2016-08-27py/bc.h: Rename _mp_code_state to _mp_code_state_t.Damien George
2016-08-27py: Rename struct mp_code_state to mp_code_state_t.Damien George
2015-12-17py/bc: Use size_t instead of mp_uint_t to count size of state and args.Damien George
2015-11-29py: Wrap all obj-ptr conversions in MP_OBJ_TO_PTR/MP_OBJ_FROM_PTR.Damien George
2015-11-29py: Use uintptr_t instead of mp_uint_t in MP_TAGPTR_* macros.Damien George
2015-11-29py: Make mp_setup_code_state take concrete pointer for func arg.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-11-13py: Reorganise bytecode layout so it's more structured, easier to edit.Damien George
2015-04-03vm: Initial support for calling bytecode functions w/o C stack ("stackless").Paul Sokolovsky
2015-02-15py: Make old_globals part of mp_code_state structure.Paul Sokolovsky
2015-01-01py: Move to guarded includes, everywhere in py/ core.Damien George
2014-12-27showbc: Refactor to allow inline instruction printing.Paul Sokolovsky
2014-12-22py: Reduce size of VM exception stack element by 1 machine word.Damien George
2014-10-25py: Store bytecode arg names in bytecode (were in own array).Damien George
2014-10-03py: Change [u]int to mp_[u]int_t in qstr.[ch], and some other places.Damien George
2014-10-03py: Convert [u]int to mp_[u]int_t where appropriate.Damien George
2014-09-04py: Use variable length encoded uints in more places in bytecode.Damien George
2014-08-24py: Fix bug where GC collected native/viper/asm function data.Damien George
2014-07-03Rename machine_(u)int_t to mp_(u)int_t.Damien George
2014-06-11objgenerator: First iteration of refactor to use mp_setup_code_state().Paul Sokolovsky
2014-06-07py: Merge mp_execute_bytecode into fun_bc_call.Damien George