index
:
micropython
master
parse-bytecode
v1.22-release
v1.24-release
MicroPython - a lean and efficient Python implementation for microcontrollers and constrained systems
Aslak Raanes
summary
refs
log
tree
commit
diff
stats
homepage
log msg
author
committer
range
path:
root
/
py
/
bc.c
Commit message (
Expand
)
Author
Age
*
py: Add verbose debug compile-time flag MICROPY_DEBUG_VERBOSE.
Stefan Naumann
2017-08-15
*
all: Use the name MicroPython consistently in comments
Alexander Steffen
2017-07-31
*
py: Provide mp_decode_uint_skip() to help reduce stack usage.
Damien George
2017-06-09
*
py: Add LOAD_SUPER_METHOD bytecode to allow heap-free super meth calls.
Damien George
2017-04-22
*
py: Use mp_raise_TypeError/mp_raise_ValueError helpers where possible.
Damien George
2017-03-28
*
py/bc: Provide better error message for an unexpected keyword argument.
Damien George
2017-03-22
*
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-03-17
*
py: Use mp_raise_msg helper function where appropriate.
Damien George
2016-10-17
*
py: Update opcode format table because 3 opcodes were removed, 1 added.
Damien George
2016-09-23
*
py: Rename struct mp_code_state to mp_code_state_t.
Damien George
2016-08-27
*
py: Fix bug passing a string as a keyword arg in a dict.
Damien George
2016-04-21
*
py/bc: Update opcode format table now that MP_BC_NOT opcode is gone.
Damien George
2016-01-28
*
py/bc: Use size_t instead of mp_uint_t to count size of state and args.
Damien George
2015-12-17
*
py: Wrap all obj-ptr conversions in MP_OBJ_TO_PTR/MP_OBJ_FROM_PTR.
Damien George
2015-11-29
*
py: Make mp_setup_code_state take concrete pointer for func arg.
Damien George
2015-11-29
*
py: Add MICROPY_PERSISTENT_CODE_LOAD/SAVE to load/save bytecode.
Damien George
2015-11-13
*
py: Add constant table to bytecode.
Damien George
2015-11-13
*
py: Put all bytecode state (arg count, etc) in bytecode.
Damien George
2015-11-13
*
py: Reorganise bytecode layout so it's more structured, easier to edit.
Damien George
2015-11-13
*
py: Eliminate some cases which trigger unused parameter warnings.
Damien George
2015-09-04
*
py: Add %q format support to mp_[v]printf, and use it.
Damien George
2015-04-16
*
py: Implement full func arg passing for native emitter.
Damien George
2015-04-07
*
py: Simplify bytecode prelude when encoding closed over variables.
Damien George
2015-04-07
*
vm: Initial support for calling bytecode functions w/o C stack ("stackless").
Paul Sokolovsky
2015-04-03
*
py: Allow retrieving a function's __name__.
stijn
2015-03-20
*
py, unix: Allow to compile with -Wsign-compare.
Damien George
2015-01-16
*
py: Move to guarded includes, everywhere in py/ core.
Damien George
2015-01-01
*
py: Make terse_arg_mismatch a global function and use it elsewhere.
Damien George
2015-01-01
*
py: Fix some macros defines; cleanup some includes.
Damien George
2014-11-05
*
py: Store bytecode arg names in bytecode (were in own array).
Damien George
2014-10-25
*
py: Convert [u]int to mp_[u]int_t where appropriate.
Damien George
2014-10-03
*
py: Use variable length encoded uints in more places in bytecode.
Damien George
2014-09-04
*
Further factorise PASS_1 out of specific emit code.
Damien
2013-10-05
*
Initial commit.
Damien
2013-10-04