summaryrefslogtreecommitdiffstatshomepage
path: root/py/bc.h
Commit message (Expand)AuthorAge
* 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
* py: Fix bug where GC collected native/viper/asm function data.Damien George2014-08-24
* Rename machine_(u)int_t to mp_(u)int_t.Damien George2014-07-03
* objgenerator: First iteration of refactor to use mp_setup_code_state().Paul Sokolovsky2014-06-11
* py: Merge mp_execute_bytecode into fun_bc_call.Damien George2014-06-07
* showbc: Make sure it's possible to trace MAKE_FUNCTION arg to actual bytecode.Paul Sokolovsky2014-06-03
* vm: Factor out structure with code execution state and pass it around.Paul Sokolovsky2014-05-31
* py: Rename byte_code to bytecode everywhere.Damien George2014-05-10
* Add license header to (almost) all files.Damien George2014-05-03
* vm: Add rudimentary bytecode execution tracing capability.Paul Sokolovsky2014-04-23
* py: Implement support for generalized generator protocol.Paul Sokolovsky2014-03-30
* py: Rename mp_exc_stack to mp_exc_stack_t.Damien George2014-03-30
* vm: Save current active exception on opening new try block.Paul Sokolovsky2014-03-30
* py: Put n_state for bytecode in the bytecode prelude.Damien George2014-03-27
* vm: Abstract working with tagged pointers in VM using macro accessors.Paul Sokolovsky2014-03-23
* objgenerator: Implement .throw() method to throw exceptions into generator.Paul Sokolovsky2014-03-22
* objgenerator: Keep exception stack within generator object, like value stack.Paul Sokolovsky2014-03-22
* py: VM never throws an exception, instead returns a status and value.Damien George2014-02-15
* py: mp_execute_byte_code has 2 arg arrays, for more efficient default params.Damien George2014-02-01
* py: Add module/function/class name to exceptions.Damien George2014-01-19
* Add source file name and line number to error messages.Damien George2014-01-18
* Change object representation from 1 big union to individual structs.Damien2013-12-21
* py: work towards working closures.Damien2013-12-11
* py: add skeletal import functionality.Damien2013-12-10
* Improve allocation of stack for byte code.Damien2013-11-05
* Make byte code jumps relative.Damien2013-11-05