summaryrefslogtreecommitdiffstatshomepage
path: root/py/vm.c
Commit message (Expand)AuthorAge
* all: Use the name MicroPython consistently in commentsAlexander Steffen2017-07-31
* py/vm: Make n_state variable local to just set-up part of VM.Damien George2017-07-18
* py/vm: Make "if" control flow more obvious in YIELD_FROM opcode.Damien George2017-07-04
* py: Provide mp_decode_uint_skip() to help reduce stack usage.Damien George2017-06-09
* various: Spelling fixesVille Skyttä2017-05-29
* py/vm: Fix bug with unwind jump popping the iterator from a for loop.Damien George2017-05-25
* py/vm: Fix bug with stackless mode and unwinding of exceptions.Damien George2017-05-25
* py: Add LOAD_SUPER_METHOD bytecode to allow heap-free super meth calls.Damien George2017-04-22
* py/vm: Fix VM opcode tracing to print correct stack pointer.Damien George2017-03-27
* py: Use mp_locals/mp_globals accessor funcs instead of MP_STATE_CTX.Damien George2017-03-24
* py: Define and use MP_OBJ_ITER_BUF_NSLOTS to get size of stack iter buf.Damien George2017-03-23
* py/vm: Don't release the GIL if the scheduler is locked.Damien George2017-03-20
* py: Add micropython.schedule() function and associated runtime code.Damien George2017-03-20
* py: Provide mp_decode_uint_value to help optimise stack usage.Damien George2017-03-17
* py: Reduce size of mp_code_state_t structure.Damien George2017-03-17
* py: Optimise storage of iterator so it takes only 4 slots on Py stack.Damien George2017-02-16
* py: Make FOR_ITER opcode pop 1+4 slots from the stack when finished.Damien George2017-02-16
* py: Allow bytecode/native to put iter_buf on stack for simple for loops.Damien George2017-02-16
* py: Add iter_buf to getiter type method.Damien George2017-02-16
* py/vm: Convert mp_uint_t to size_t where appropriate.Damien George2017-02-16
* py/vm: Add MICROPY_PY_THREAD_GIL_VM_DIVISOR option.Damien George2017-02-15
* py/showbc: Make sure to set the const_table before printing bytecode.Damien George2017-01-27
* 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