summaryrefslogtreecommitdiff
path: root/py/vm.c
AgeCommit message (Expand)Author
2016-04-28py/vm: "yield from" didn't handle MP_OBJ_STOP_ITERATION optimization.Paul Sokolovsky
2016-02-17py/vm: Add macros to hook into various points in the VM.Damien George
2016-02-01py/vm: Fix popping of exception block in UNWIND_JUMP opcode.Damien George
2016-01-02py: Change exception traceback data to use size_t instead of mp_uint_t.Damien George
2015-12-24py: Handle case of return within the finally block of try-finally.Damien George
2015-12-17py: Fix MICROPY_STACKLESS mode to compile with MICROPY_OBJ_REPR_D.Damien George
2015-12-10py: Make UNARY_OP_NOT a first-class op, to agree with Py not semantics.Damien George
2015-11-29py: Wrap all obj-ptr conversions in MP_OBJ_TO_PTR/MP_OBJ_FROM_PTR.Damien George
2015-11-13py: Add MICROPY_PERSISTENT_CODE so code can persist beyond the runtime.Damien George
2015-10-15py: Fix with+for+return bug by popping for-iter when unwinding exc stack.Damien George
2015-09-01vm: Handle "raise X from Y" statements the best way we can.Paul Sokolovsky
2015-06-25py: Remove mp_load_const_bytes and instead load precreated bytes object.Damien George
2015-06-25py: Remove mp_load_const_str and replace uses with inlined version.Damien George
2015-06-13py: Add MP_BINARY_OP_DIVMOD to simplify and consolidate divmod builtin.Damien George
2015-05-12py: Convert hash API to use MP_UNARY_OP_HASH instead of ad-hoc function.Damien George
2015-05-11vm: Properly handle StopIteration raised in user instance iterator.Paul Sokolovsky
2015-05-10vm: Null pointer test when checking for StopIteration optimizations.Paul Sokolovsky
2015-05-05py: Remove LOAD_CONST_ELLIPSIS bytecode, use LOAD_CONST_OBJ instead.Damien George
2015-04-26vm: On exiting except block, clear sys.exc_info() value.Paul Sokolovsky
2015-04-25modsys: Add basic sys.exc_info() implementation.Paul Sokolovsky
2015-04-24py: Modify bytecode "with" behaviour so it doesn't use any heap.Damien George
2015-04-11py: Combine load_attr and store_attr type methods into one (attr).Damien George
2015-04-09py: Adjust some spaces in code style/format, purely for consistency.Damien George
2015-04-09py: Fix msvc warning '*/ found outside of comment'stijn
2015-04-02py: Add finer configuration of static funcs when not in stackless mode.Damien George
2015-04-03vm: Support strict stackless mode, with proper exception reporting.Paul Sokolovsky
2015-04-03vm: Implement stackless for CALL_FUNCTION_VAR_KW & CALL_METHOD_VAR_KW.Paul Sokolovsky
2015-04-03vm: Stackless support for MP_BC_CALL_METHOD.Paul Sokolovsky
2015-04-03vm: If there's no heap to call function in stackless manner, call via C stack.Paul Sokolovsky
2015-04-03vm: Initial support for calling bytecode functions w/o C stack ("stackless").Paul Sokolovsky
2015-03-26py: Add optional support for descriptors' __get__ and __set__ methods.stijn
2015-03-25py: Clean up some logic in VM to remove assert(0)'s.Damien George
2015-02-26py: Small optimisation of logic flow in BC_WITH_CLEANUP bytecode.Damien George
2015-02-10py: Reuse value stack in VM WITH_CLEANUP opcode to reduce C-stack size.Damien George
2015-02-08py: Parse big-int/float/imag constants directly in parser.Damien George
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