index
:
suspect-devices/circuitpython
1.x
2.x
3.x
4.0.x
4.1.x
4.x
5.0.x
5.1.x
5.3.x
6.0.x
6.1.x
6.2.x
audiocore-rawsample-sinewave
azure
azure-pipelines
cross
dm-mixer
dynamic-native-modules
encoding
esp-extra-scripts
fix_typo_spanish
iabdalkader-cc3k-update
jepler-try-ubuntu-20.04
main
master
parse-bytecode
reentrant-gc
stable
travis-clang
travis-esp8266
travis-stackless
travis-testing
type_hints
CircuitPython - a Python implementation for teaching coding with microcontrollers
feurig
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
py
/
vm.c
Age
Commit message (
Expand
)
Author
2020-12-15
Add alarm.pin that wakes on pin level
Scott Shawcroft
2020-07-06
Add license to some obvious files.
Diego Elio Pettenò
2020-01-17
Refine iMX RT memory layout and add three boards
Scott Shawcroft
2019-10-21
Refine _bleio
Scott Shawcroft
2018-08-25
Revert "py/vm: Improve performance of opcode dispatch when using switch stmt."
Noralf Trønnes
2018-08-16
Compress all translated strings with Huffman coding.
Scott Shawcroft
2018-06-08
py/objtype: Don't expose mp_obj_instance_attr().
Damien George
2018-05-18
py/vm: Improve performance of opcode dispatch when using switch stmt.
Damien George
2018-05-18
py/vm: Use enum names instead of magic numbers in multi-opcode dispatch.
Damien George
2018-05-16
py/vm: Adjust #if logic for gil_divisor so braces are balanced.
Damien George
2018-04-04
py/vm: Optimise handling of stackless mode when pystack is enabled.
Damien George
2018-04-04
py/vm: Don't do unnecessary updates of ip and sp variables.
Damien George
2018-02-27
py/vm: Simplify handling of special-case STOP_ITERATION in yield from.
Damien George
2018-02-27
py/vm: Fix case of handling raised StopIteration within yield from.
Damien George
2018-02-15
py/objexcept: Remove long-obsolete mp_const_MemoryError_obj.
Damien George
2018-02-08
py/vm: Simplify stack sentinel values for unwind return and jump.
Damien George
2017-12-11
py/runtime: Use the Python stack when building *arg and **kwarg state.
Damien George
2017-12-11
py: Convert all uses of alloca() to use new scoped allocation API.
Damien George
2017-12-11
py/runtime: Move mp_exc_recursion_depth to runtime and rename to raise.
Damien George
2017-12-09
py/objfun, vm: Add comments on codestate allocation in stackless mode.
Paul Sokolovsky
2017-10-04
all: Remove inclusion of internal py header files.
Damien George
2017-09-22
py/vm: Use lowercase letter at start of exception message.
Damien George
2017-07-31
all: Use the name MicroPython consistently in comments
Alexander Steffen
2017-07-18
py/vm: Make n_state variable local to just set-up part of VM.
Damien George
2017-07-04
py/vm: Make "if" control flow more obvious in YIELD_FROM opcode.
Damien George
2017-06-09
py: Provide mp_decode_uint_skip() to help reduce stack usage.
Damien George
2017-05-29
various: Spelling fixes
Ville Skyttä
2017-05-25
py/vm: Fix bug with unwind jump popping the iterator from a for loop.
Damien George
2017-05-25
py/vm: Fix bug with stackless mode and unwinding of exceptions.
Damien George
2017-04-22
py: Add LOAD_SUPER_METHOD bytecode to allow heap-free super meth calls.
Damien George
2017-03-27
py/vm: Fix VM opcode tracing to print correct stack pointer.
Damien George
2017-03-24
py: Use mp_locals/mp_globals accessor funcs instead of MP_STATE_CTX.
Damien George
2017-03-23
py: Define and use MP_OBJ_ITER_BUF_NSLOTS to get size of stack iter buf.
Damien George
2017-03-20
py/vm: Don't release the GIL if the scheduler is locked.
Damien George
2017-03-20
py: Add micropython.schedule() function and associated runtime code.
Damien George
2017-03-17
py: Provide mp_decode_uint_value to help optimise stack usage.
Damien George
2017-03-17
py: Reduce size of mp_code_state_t structure.
Damien George
2017-02-16
py: Optimise storage of iterator so it takes only 4 slots on Py stack.
Damien George
2017-02-16
py: Make FOR_ITER opcode pop 1+4 slots from the stack when finished.
Damien George
2017-02-16
py: Allow bytecode/native to put iter_buf on stack for simple for loops.
Damien George
2017-02-16
py: Add iter_buf to getiter type method.
Damien George
2017-02-16
py/vm: Convert mp_uint_t to size_t where appropriate.
Damien George
2017-02-15
py/vm: Add MICROPY_PY_THREAD_GIL_VM_DIVISOR option.
Damien George
2017-01-27
py/showbc: Make sure to set the const_table before printing bytecode.
Damien George
2016-09-27
py/vm: Use MP_OBJ_FROM_PTR to cast a type to an object.
Damien George
2016-09-27
py: Only store the exception instance on Py stack in bytecode try block.
Damien George
2016-09-19
py: Combine 3 comprehension opcodes (list/dict/set) into 1.
Damien George
2016-08-27
py: Rename struct mp_code_state to mp_code_state_t.
Damien George
2016-06-28
py: Implement a simple global interpreter lock.
Damien George
2016-04-28
py/vm: "yield from" didn't handle MP_OBJ_STOP_ITERATION optimization.
Paul Sokolovsky
[next]