summaryrefslogtreecommitdiffstatshomepage
path: root/py/vm.c
Commit message (Expand)AuthorAge
* Merge branch 'alloca' of github.com:marcusva/micropython into marcusva-allocaDamien George2014-06-08
|\
| * - FreeBSD provides alloca() via stdlib.h, in contrast to Linux and WindowsMarcus von Appen2014-06-07
* | py: Merge mp_execute_bytecode into fun_bc_call.Damien George2014-06-07
|/
* vm: If there's no lineno info, set lineno in traceback to 0, not 1.Paul Sokolovsky2014-06-03
* py: Add option to disable set() object (enabled by default).Damien George2014-06-01
* Rename bultins config variables to MICROPY_PY_BUILTINS_*.Damien George2014-06-01
* py, vm: Replace save_ip, save_sp with code_state->{ip, sp}.Damien George2014-06-01
* Merge branch 'vm-alloca' of github.com:pfalcon/micropython into pfalcon-vm-al...Damien George2014-06-01
|\
| * vm: Factor out structure with code execution state and pass it around.Paul Sokolovsky2014-05-31
| * vm: Don't unconditionally allocate state on stack, do that only if needed.Paul Sokolovsky2014-05-31
* | py: Fix stack underflow with optimised for loop.Damien George2014-05-31
|/
* vm: Detect stack underflow in addition to overflow.Paul Sokolovsky2014-05-31
* py: Reformat few long functions argument lists for clarity.Paul Sokolovsky2014-05-31
* py: Fix break from within a for loop.Damien George2014-05-30
* py: Implement long int parsing in int(...).Damien George2014-05-28
* py, vm: Where possible, make variables local to each opcode.Damien George2014-05-25
* objslice: Support arbitrary objects start, stop, and step.Paul Sokolovsky2014-05-25
* Rename configuration variables controling Python features.Damien George2014-05-24
* Tidy up some configuration options.Damien George2014-05-21
* py, unix: Add copyright for modules I worked closely on.Paul Sokolovsky2014-05-13
* py: Don't expect that type->getiter() always returns iterator, check for NULL.Paul Sokolovsky2014-05-11
* py: Rename byte_code to bytecode everywhere.Damien George2014-05-10
* py: Improve native emitter; now supports more opcodes.Damien George2014-05-07
* Add license header to (almost) all files.Damien George2014-05-03
* py, unix: Make "mpconfig.h" be first included, as other headers depend on it.Paul Sokolovsky2014-05-02
* py: Remove unnecessary LOAD_CONST_ID bytecode.Damien George2014-04-27
* py: Eliminate 'op' variable in VM dispatch loop.Damien George2014-04-27
* py, vm: Fix recent bug where state is freed too early.Damien George2014-04-24
* py, vm: Free heap-allocated state if it was allocated on the heap.Damien George2014-04-24
* vm: Add rudimentary bytecode execution tracing capability.Paul Sokolovsky2014-04-23
* py: Wrap #if's around emitter functions that are used only by emitcpy.Damien George2014-04-20
* py: Making closures now passes pointer to stack, not a tuple for vars.Damien George2014-04-20
* py: Rename USE_COMPUTED_GOTOS to USE_COMPUTED_GOTO and enable on stmhal.Damien George2014-04-17
* py: Add MP_OBJ_STOP_ITERATION and make good use of it.Damien George2014-04-17
* py: Merge BINARY_OP_SUBSCR and store_subscr (w/ delete) into subscr.Damien George2014-04-17
* py: Tidy up variables in VM, probably fixes subtle bugs.Damien George2014-04-17
* Rename header file.AZ Huang2014-04-15
* Move entry_table to separated header file.AZ Huang2014-04-15
* Make USE_COMPUTED_GOTO a config option in mpconfig.h.Damien George2014-04-14
* Use computed goto instead of switching op-codes.AZ Huang2014-04-15
* py: Remove unique_codes from emitglue.c. Replace with pointers.Damien George2014-04-13
* py: Make all LOAD_FAST ops check for unbound local.Damien George2014-04-12
* py: Change compile order for default positional and keyword args.Damien George2014-04-11
* py: Fix VM stack overflow detection.Damien George2014-04-10
* py: Add option to VM to detect stack overflow.Damien George2014-04-10
* py: Clear state to MP_OBJ_NULL before executing byte code.Damien George2014-04-09
* py: Properly implement deletion of locals and derefs, and detect errors.Damien George2014-04-09
* py: Remove DELETE_SUBSCR opcode, combine with STORE_SUBSCR.Damien George2014-04-08
* py: Finish implementation of all del opcodes.Damien George2014-04-08
* py: implement UNPACK_EX byte code (for: a, *b, c = d)Damien George2014-04-08