summaryrefslogtreecommitdiffstatshomepage
path: root/py/bc.c
Commit message (Expand)AuthorAge
* all: Remove the "STATIC" macro and just use "static" instead.Angus Gratton2024-03-07
* py/emitnative: Simplify layout and loading of native function prelude.Damien George2024-02-20
* py/bc: Fix checking for duplicate **kwargs.David Lechner2022-11-28
* py/bc: Remove unused mp_opcode_format function.Damien George2022-06-07
* py/bc: Provide separate code-state setup funcs for bytecode and native.Damien George2022-05-17
* py: Change jump opcodes to emit 1-byte jump offset when possible.Damien George2022-03-28
* py: Rework bytecode and .mpy file format to be mostly static data.Damien George2022-02-24
* all: Remove MICROPY_OPT_CACHE_MAP_LOOKUP_IN_BYTECODE.Jim Mussared2021-09-16
* py: Add option to compile without any error messages at all.Damien George2021-04-27
* all: Use MP_ERROR_TEXT for all error messages.Jim Mussared2020-04-05
* py: Use preprocessor to detect error reporting level (terse/detailed).Jim Mussared2020-04-05
* all: Reformat C and Python source code with tools/codeformat.py.Damien George2020-02-28
* py: Add mp_raise_msg_varg helper and use it where appropriate.Damien George2020-02-13
* py/bc: Don't include mp_decode_uint funcs when not needed.Damien George2019-10-01
* py: Rework and compress second part of bytecode prelude.Damien George2019-10-01
* py: Compress first part of bytecode prelude.Damien George2019-10-01
* py/bc: Change mp_code_state_t.exc_sp to exc_sp_idx.Damien George2019-10-01
* py/bc: Replace big opcode format table with simple macro.Damien George2019-09-26
* py/bc: Fix size calculation of UNWIND_JUMP opcode in mp_opcode_format.Damien George2019-09-02
* py: Integrate sys.settrace feature into the VM and runtime.Milan Rossa2019-08-30
* py/persistentcode: Pack qstrs directly in bytecode to reduce mpy size.Damien George2019-03-05
* py: Replace POP_BLOCK and POP_EXCEPT opcodes with POP_EXCEPT_JUMP.Damien George2019-03-05
* py/bc: Fix calculation of opcode size for opcodes with map caching.Damien George2018-12-13
* py/bc: Update opcode_format_table to match the bytecode.Damien George2017-10-10
* all: Remove inclusion of internal py header files.Damien George2017-10-04
* py: Add verbose debug compile-time flag MICROPY_DEBUG_VERBOSE.Stefan Naumann2017-08-15
* all: Use the name MicroPython consistently in commentsAlexander Steffen2017-07-31
* py: Provide mp_decode_uint_skip() to help reduce stack usage.Damien George2017-06-09
* py: Add LOAD_SUPER_METHOD bytecode to allow heap-free super meth calls.Damien George2017-04-22
* py: Use mp_raise_TypeError/mp_raise_ValueError helpers where possible.Damien George2017-03-28
* py/bc: Provide better error message for an unexpected keyword argument.Damien George2017-03-22
* 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: Use mp_raise_msg helper function where appropriate.Damien George2016-10-17
* py: Update opcode format table because 3 opcodes were removed, 1 added.Damien George2016-09-23
* py: Rename struct mp_code_state to mp_code_state_t.Damien George2016-08-27
* py: Fix bug passing a string as a keyword arg in a dict.Damien George2016-04-21
* py/bc: Update opcode format table now that MP_BC_NOT opcode is gone.Damien George2016-01-28
* py/bc: Use size_t instead of mp_uint_t to count size of state and args.Damien George2015-12-17
* py: Wrap all obj-ptr conversions in MP_OBJ_TO_PTR/MP_OBJ_FROM_PTR.Damien George2015-11-29
* py: Make mp_setup_code_state take concrete pointer for func arg.Damien George2015-11-29
* py: Add MICROPY_PERSISTENT_CODE_LOAD/SAVE to load/save bytecode.Damien George2015-11-13
* py: Add constant table to bytecode.Damien George2015-11-13
* py: Put all bytecode state (arg count, etc) in bytecode.Damien George2015-11-13
* py: Reorganise bytecode layout so it's more structured, easier to edit.Damien George2015-11-13
* py: Eliminate some cases which trigger unused parameter warnings.Damien George2015-09-04
* py: Add %q format support to mp_[v]printf, and use it.Damien George2015-04-16
* py: Implement full func arg passing for native emitter.Damien George2015-04-07
* py: Simplify bytecode prelude when encoding closed over variables.Damien George2015-04-07
* vm: Initial support for calling bytecode functions w/o C stack ("stackless").Paul Sokolovsky2015-04-03