summaryrefslogtreecommitdiff
path: root/py/bc.h
AgeCommit message (Expand)Author
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
2014-06-03showbc: Make sure it's possible to trace MAKE_FUNCTION arg to actual bytecode.Paul Sokolovsky
2014-05-31vm: Factor out structure with code execution state and pass it around.Paul Sokolovsky
2014-05-10py: Rename byte_code to bytecode everywhere.Damien George
2014-05-03Add license header to (almost) all files.Damien George
2014-04-23vm: Add rudimentary bytecode execution tracing capability.Paul Sokolovsky
2014-03-30py: Implement support for generalized generator protocol.Paul Sokolovsky
2014-03-30py: Rename mp_exc_stack to mp_exc_stack_t.Damien George
2014-03-30vm: Save current active exception on opening new try block.Paul Sokolovsky
2014-03-27py: Put n_state for bytecode in the bytecode prelude.Damien George
2014-03-23vm: Abstract working with tagged pointers in VM using macro accessors.Paul Sokolovsky
2014-03-22objgenerator: Implement .throw() method to throw exceptions into generator.Paul Sokolovsky
2014-03-22objgenerator: Keep exception stack within generator object, like value stack.Paul Sokolovsky
2014-02-15py: VM never throws an exception, instead returns a status and value.Damien George
2014-02-01py: mp_execute_byte_code has 2 arg arrays, for more efficient default params.Damien George
2014-01-19py: Add module/function/class name to exceptions.Damien George
2014-01-18Add source file name and line number to error messages.Damien George
2013-12-21Change object representation from 1 big union to individual structs.Damien
2013-12-11py: work towards working closures.Damien
2013-12-10py: add skeletal import functionality.Damien
2013-11-05Improve allocation of stack for byte code.Damien
2013-11-05Make byte code jumps relative.Damien
2013-10-16Implement BC & runtime support for generator/yielding.Damien
2013-10-10Rename vm.h to bc.h.Damien
2013-10-05Further factorise PASS_1 out of specific emit code.Damien
2013-10-04Initial commit.Damien