summaryrefslogtreecommitdiff
path: root/py/vm.c
AgeCommit message (Expand)Author
2021-06-24all: Fix signed shifts and NULL access errors from -fsanitize=undefined.Jeff Epler
2021-06-19py/mpstate: Make exceptions thread-local.David Lechner
2021-03-17py/vm: For tracing use mp_printf, and print state when thread enabled.Damien George
2020-09-11py/showbc: Pass in an mp_print_t struct to all bytecode-print functions.Damien George
2020-04-13py/scheduler: Fix race in checking scheduler pending state.Jim Mussared
2020-04-05all: Use MP_ERROR_TEXT for all error messages.Jim Mussared
2020-02-28all: Add *FORMAT-OFF* in various places.Damien George
2019-12-20py/vm: Fix comment to refer to MP_BC_RAISE_OBJ instead of RAISE_VARARGS.Damien George
2019-10-04py/runtime: Fix PEP479 behaviour throwing StopIteration into yield from.Damien George
2019-10-04py/vm: Fix handling of unwind jump out of active finally.Damien George
2019-10-01py: Rework and compress second part of bytecode prelude.Damien George
2019-10-01py: Compress first part of bytecode prelude.Damien George
2019-10-01py: Add n_state to mp_code_state_t struct.Damien George
2019-10-01py/bc: Change mp_code_state_t.exc_sp to exc_sp_idx.Damien George
2019-09-26py: Split RAISE_VARARGS opcode into 3 separate ones.Damien George
2019-09-26py: Introduce and use constants for multi-opcode sizes.Damien George
2019-09-10py/vm: Factor cached map lookup code to inline function.Damien George
2019-08-30py: Integrate sys.settrace feature into the VM and runtime.Milan Rossa
2019-08-30py/bc: Factor out code to get bytecode line number info into new func.Damien George
2019-08-28py/vm: Don't add traceback info for exceptions that are re-raised.Damien George
2019-08-28py/vm: Don't add traceback info for exc's propagated through a finally.Damien George
2019-08-22py/vm: Shorten error message for not-implemented opcode.Damien George
2019-05-27py/vm: Remove obsolete comments about matching of exception opcodes.Damien George
2019-03-05py: Replace POP_BLOCK and POP_EXCEPT opcodes with POP_EXCEPT_JUMP.Damien George
2019-03-05py/vm: Remove currently_in_except_block variable.Damien George
2019-03-05py: Fix VM crash with unwinding jump out of a finally block.Damien George
2019-02-12py: Downcase all MP_OBJ_IS_xxx macros to make a more consistent C API.Damien George
2019-02-06py: Update my copyright info on some files.Paul Sokolovsky
2019-01-31py/warning: Support categories for warnings.Paul Sokolovsky
2019-01-04py: Fix location of VM returned exception in invalid opcode and commentsDamien George
2018-09-29py/vm: When VM raises exception put exc obj at beginning of func state.Damien George
2018-09-28py/vm: Fix case of throwing GeneratorExit type into yield-from.Damien George
2018-09-27py/vm: Reword TODO about invalid ip/sp after an exception to a note.Damien George
2018-09-27py/vm: Make small optimisation of BUILD_SLICE opcode.Damien George
2018-09-03py/vm: Fix handling of finally-return with complex nested finallys.Damien George
2018-06-08py/objtype: Don't expose mp_obj_instance_attr().Damien George
2018-05-18py/vm: Improve performance of opcode dispatch when using switch stmt.Damien George
2018-05-18py/vm: Use enum names instead of magic numbers in multi-opcode dispatch.Damien George
2018-05-16py/vm: Adjust #if logic for gil_divisor so braces are balanced.Damien George
2018-04-04py/vm: Optimise handling of stackless mode when pystack is enabled.Damien George
2018-04-04py/vm: Don't do unnecessary updates of ip and sp variables.Damien George
2018-02-27py/vm: Simplify handling of special-case STOP_ITERATION in yield from.Damien George
2018-02-27py/vm: Fix case of handling raised StopIteration within yield from.Damien George
2018-02-15py/objexcept: Remove long-obsolete mp_const_MemoryError_obj.Damien George
2018-02-08py/vm: Simplify stack sentinel values for unwind return and jump.Damien George
2017-12-11py/runtime: Use the Python stack when building *arg and **kwarg state.Damien George
2017-12-11py: Convert all uses of alloca() to use new scoped allocation API.Damien George
2017-12-11py/runtime: Move mp_exc_recursion_depth to runtime and rename to raise.Damien George
2017-12-09py/objfun, vm: Add comments on codestate allocation in stackless mode.Paul Sokolovsky
2017-10-04all: Remove inclusion of internal py header files.Damien George