summaryrefslogtreecommitdiffstatshomepage
path: root/py/vm.c
Commit message (Expand)AuthorAge
* py/vm: Use MP_OBJ_FROM_PTR to cast a type to an object.Damien George2016-09-27
* py: Only store the exception instance on Py stack in bytecode try block.Damien George2016-09-27
* py: Combine 3 comprehension opcodes (list/dict/set) into 1.Damien George2016-09-19
* py: Rename struct mp_code_state to mp_code_state_t.Damien George2016-08-27
* py: Implement a simple global interpreter lock.Damien George2016-06-28
* py/vm: "yield from" didn't handle MP_OBJ_STOP_ITERATION optimization.Paul Sokolovsky2016-04-28
* py/vm: Add macros to hook into various points in the VM.Damien George2016-02-17
* py/vm: Fix popping of exception block in UNWIND_JUMP opcode.Damien George2016-02-01
* py: Change exception traceback data to use size_t instead of mp_uint_t.Damien George2016-01-02
* py: Handle case of return within the finally block of try-finally.Damien George2015-12-24
* py: Fix MICROPY_STACKLESS mode to compile with MICROPY_OBJ_REPR_D.Damien George2015-12-17
* py: Make UNARY_OP_NOT a first-class op, to agree with Py not semantics.Damien George2015-12-10
* py: Wrap all obj-ptr conversions in MP_OBJ_TO_PTR/MP_OBJ_FROM_PTR.Damien George2015-11-29
* py: Add MICROPY_PERSISTENT_CODE so code can persist beyond the runtime.Damien George2015-11-13
* py: Fix with+for+return bug by popping for-iter when unwinding exc stack.Damien George2015-10-15
* vm: Handle "raise X from Y" statements the best way we can.Paul Sokolovsky2015-09-01
* py: Remove mp_load_const_bytes and instead load precreated bytes object.Damien George2015-06-25
* py: Remove mp_load_const_str and replace uses with inlined version.Damien George2015-06-25
* py: Add MP_BINARY_OP_DIVMOD to simplify and consolidate divmod builtin.Damien George2015-06-13
* py: Convert hash API to use MP_UNARY_OP_HASH instead of ad-hoc function.Damien George2015-05-12
* vm: Properly handle StopIteration raised in user instance iterator.Paul Sokolovsky2015-05-11
* vm: Null pointer test when checking for StopIteration optimizations.Paul Sokolovsky2015-05-10
* py: Remove LOAD_CONST_ELLIPSIS bytecode, use LOAD_CONST_OBJ instead.Damien George2015-05-05
* vm: On exiting except block, clear sys.exc_info() value.Paul Sokolovsky2015-04-26
* modsys: Add basic sys.exc_info() implementation.Paul Sokolovsky2015-04-25
* py: Modify bytecode "with" behaviour so it doesn't use any heap.Damien George2015-04-24
* py: Combine load_attr and store_attr type methods into one (attr).Damien George2015-04-11
* py: Adjust some spaces in code style/format, purely for consistency.Damien George2015-04-09
* py: Fix msvc warning '*/ found outside of comment'stijn2015-04-09
* py: Add finer configuration of static funcs when not in stackless mode.Damien George2015-04-02
* vm: Support strict stackless mode, with proper exception reporting.Paul Sokolovsky2015-04-03
* vm: Implement stackless for CALL_FUNCTION_VAR_KW & CALL_METHOD_VAR_KW.Paul Sokolovsky2015-04-03
* vm: Stackless support for MP_BC_CALL_METHOD.Paul Sokolovsky2015-04-03
* vm: If there's no heap to call function in stackless manner, call via C stack.Paul Sokolovsky2015-04-03
* vm: Initial support for calling bytecode functions w/o C stack ("stackless").Paul Sokolovsky2015-04-03
* py: Add optional support for descriptors' __get__ and __set__ methods.stijn2015-03-26
* py: Clean up some logic in VM to remove assert(0)'s.Damien George2015-03-25
* py: Small optimisation of logic flow in BC_WITH_CLEANUP bytecode.Damien George2015-02-26
* py: Reuse value stack in VM WITH_CLEANUP opcode to reduce C-stack size.Damien George2015-02-10
* py: Parse big-int/float/imag constants directly in parser.Damien George2015-02-08
* py: Add load_const_obj to emitter, add LOAD_CONST_OBJ to bytecode.Damien George2015-01-13
* py: Add option to cache map lookup results in bytecode.Damien George2015-01-07
* py: Put all global state together in state structures.Damien George2015-01-07
* py: Move to guarded includes, everywhere in py/ core.Damien George2015-01-01
* py: In VM, for selective ip saving, store 1 byte past last opcode.Damien George2014-12-29
* vm: Record exception ip only for instructions where exceptions may happen.Paul Sokolovsky2014-12-28
* py: Reduce size of VM exception stack element by 1 machine word.Damien George2014-12-22
* py: Fix label printing in showbc; print sp in vm trace.Damien George2014-12-12
* py, vm: Make unum a local variable for each opcode that uses it.Damien George2014-12-02
* py: Fix VM dispatch following a pending exception check.Damien George2014-10-26