summaryrefslogtreecommitdiff
path: root/py/vm.c
AgeCommit message (Expand)Author
2015-01-13py: Add load_const_obj to emitter, add LOAD_CONST_OBJ to bytecode.Damien George
2015-01-07py: Add option to cache map lookup results in bytecode.Damien George
2015-01-07py: Put all global state together in state structures.Damien George
2015-01-01py: Move to guarded includes, everywhere in py/ core.Damien George
2014-12-29py: In VM, for selective ip saving, store 1 byte past last opcode.Damien George
2014-12-28vm: Record exception ip only for instructions where exceptions may happen.Paul Sokolovsky
2014-12-22py: Reduce size of VM exception stack element by 1 machine word.Damien George
2014-12-12py: Fix label printing in showbc; print sp in vm trace.Damien George
2014-12-02py, vm: Make unum a local variable for each opcode that uses it.Damien George
2014-10-26py: Fix VM dispatch following a pending exception check.Damien George
2014-10-25py: Add mp_pending_exception global variable, for VM soft interrupt.Damien George
2014-10-25py: Compress load-int, load-fast, store-fast, unop, binop bytecodes.Damien George
2014-09-04py: Use variable length encoded uints in more places in bytecode.Damien George
2014-08-26py: Fix line number printing for file with 1 line.Damien George
2014-07-31py: Improve encoding scheme for line-number to bytecode map.Damien George
2014-07-03Rename machine_(u)int_t to mp_(u)int_t.Damien George
2014-06-08Merge branch 'alloca' of github.com:marcusva/micropython into marcusva-allocaDamien George
2014-06-07py: Merge mp_execute_bytecode into fun_bc_call.Damien George
2014-06-07- FreeBSD provides alloca() via stdlib.h, in contrast to Linux and WindowsMarcus von Appen
2014-06-03vm: If there's no lineno info, set lineno in traceback to 0, not 1.Paul Sokolovsky
2014-06-01py: Add option to disable set() object (enabled by default).Damien George
2014-06-01Rename bultins config variables to MICROPY_PY_BUILTINS_*.Damien George
2014-06-01py, vm: Replace save_ip, save_sp with code_state->{ip, sp}.Damien George
2014-06-01Merge branch 'vm-alloca' of github.com:pfalcon/micropython into pfalcon-vm-al...Damien George
2014-05-31py: Fix stack underflow with optimised for loop.Damien George
2014-05-31vm: Factor out structure with code execution state and pass it around.Paul Sokolovsky
2014-05-31vm: Don't unconditionally allocate state on stack, do that only if needed.Paul Sokolovsky
2014-05-31vm: Detect stack underflow in addition to overflow.Paul Sokolovsky
2014-05-31py: Reformat few long functions argument lists for clarity.Paul Sokolovsky
2014-05-30py: Fix break from within a for loop.Damien George
2014-05-28py: Implement long int parsing in int(...).Damien George
2014-05-25py, vm: Where possible, make variables local to each opcode.Damien George
2014-05-25objslice: Support arbitrary objects start, stop, and step.Paul Sokolovsky
2014-05-24Rename configuration variables controling Python features.Damien George
2014-05-21Tidy up some configuration options.Damien George
2014-05-13py, unix: Add copyright for modules I worked closely on.Paul Sokolovsky
2014-05-11py: Don't expect that type->getiter() always returns iterator, check for NULL.Paul Sokolovsky
2014-05-10py: Rename byte_code to bytecode everywhere.Damien George
2014-05-07py: Improve native emitter; now supports more opcodes.Damien George
2014-05-03Add license header to (almost) all files.Damien George
2014-05-02py, unix: Make "mpconfig.h" be first included, as other headers depend on it.Paul Sokolovsky
2014-04-27py: Remove unnecessary LOAD_CONST_ID bytecode.Damien George
2014-04-27py: Eliminate 'op' variable in VM dispatch loop.Damien George
2014-04-24py, vm: Fix recent bug where state is freed too early.Damien George
2014-04-24py, vm: Free heap-allocated state if it was allocated on the heap.Damien George
2014-04-23vm: Add rudimentary bytecode execution tracing capability.Paul Sokolovsky
2014-04-20py: Wrap #if's around emitter functions that are used only by emitcpy.Damien George
2014-04-20py: Making closures now passes pointer to stack, not a tuple for vars.Damien George
2014-04-17py: Rename USE_COMPUTED_GOTOS to USE_COMPUTED_GOTO and enable on stmhal.Damien George
2014-04-17py: Add MP_OBJ_STOP_ITERATION and make good use of it.Damien George