aboutsummaryrefslogtreecommitdiff
path: root/py/bc.c
AgeCommit message (Expand)Author
2022-05-17py/bc: Provide separate code-state setup funcs for bytecode and native.Damien George
2022-03-28py: Change jump opcodes to emit 1-byte jump offset when possible.Damien George
2022-02-24py: Rework bytecode and .mpy file format to be mostly static data.Damien George
2021-09-16all: Remove MICROPY_OPT_CACHE_MAP_LOOKUP_IN_BYTECODE.Jim Mussared
2021-04-27py: Add option to compile without any error messages at all.Damien George
2020-04-05all: Use MP_ERROR_TEXT for all error messages.Jim Mussared
2020-04-05py: Use preprocessor to detect error reporting level (terse/detailed).Jim Mussared
2020-02-28all: Reformat C and Python source code with tools/codeformat.py.Damien George
2020-02-13py: Add mp_raise_msg_varg helper and use it where appropriate.Damien George
2019-10-01py/bc: Don't include mp_decode_uint funcs when not needed.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/bc: Change mp_code_state_t.exc_sp to exc_sp_idx.Damien George
2019-09-26py/bc: Replace big opcode format table with simple macro.Damien George
2019-09-02py/bc: Fix size calculation of UNWIND_JUMP opcode in mp_opcode_format.Damien George
2019-08-30py: Integrate sys.settrace feature into the VM and runtime.Milan Rossa
2019-03-05py/persistentcode: Pack qstrs directly in bytecode to reduce mpy size.Damien George
2019-03-05py: Replace POP_BLOCK and POP_EXCEPT opcodes with POP_EXCEPT_JUMP.Damien George
2018-12-13py/bc: Fix calculation of opcode size for opcodes with map caching.Damien George
2017-10-10py/bc: Update opcode_format_table to match the bytecode.Damien George
2017-10-04all: Remove inclusion of internal py header files.Damien George
2017-08-15py: Add verbose debug compile-time flag MICROPY_DEBUG_VERBOSE.Stefan Naumann
2017-07-31all: Use the name MicroPython consistently in commentsAlexander Steffen
2017-06-09py: Provide mp_decode_uint_skip() to help reduce stack usage.Damien George
2017-04-22py: Add LOAD_SUPER_METHOD bytecode to allow heap-free super meth calls.Damien George
2017-03-28py: Use mp_raise_TypeError/mp_raise_ValueError helpers where possible.Damien George
2017-03-22py/bc: Provide better error message for an unexpected keyword argument.Damien George
2017-03-17py: Provide mp_decode_uint_value to help optimise stack usage.Damien George
2017-03-17py: Reduce size of mp_code_state_t structure.Damien George
2016-10-17py: Use mp_raise_msg helper function where appropriate.Damien George
2016-09-23py: Update opcode format table because 3 opcodes were removed, 1 added.Damien George
2016-08-27py: Rename struct mp_code_state to mp_code_state_t.Damien George
2016-04-21py: Fix bug passing a string as a keyword arg in a dict.Damien George
2016-01-28py/bc: Update opcode format table now that MP_BC_NOT opcode is gone.Damien George
2015-12-17py/bc: Use size_t instead of mp_uint_t to count size of state and args.Damien George
2015-11-29py: Wrap all obj-ptr conversions in MP_OBJ_TO_PTR/MP_OBJ_FROM_PTR.Damien George
2015-11-29py: Make mp_setup_code_state take concrete pointer for func arg.Damien George
2015-11-13py: Add MICROPY_PERSISTENT_CODE_LOAD/SAVE to load/save bytecode.Damien George
2015-11-13py: Add constant table to bytecode.Damien George
2015-11-13py: Put all bytecode state (arg count, etc) in bytecode.Damien George
2015-11-13py: Reorganise bytecode layout so it's more structured, easier to edit.Damien George
2015-09-04py: Eliminate some cases which trigger unused parameter warnings.Damien George
2015-04-16py: Add %q format support to mp_[v]printf, and use it.Damien George
2015-04-07py: Implement full func arg passing for native emitter.Damien George
2015-04-07py: Simplify bytecode prelude when encoding closed over variables.Damien George
2015-04-03vm: Initial support for calling bytecode functions w/o C stack ("stackless").Paul Sokolovsky
2015-03-20py: Allow retrieving a function's __name__.stijn
2015-01-16py, unix: Allow to compile with -Wsign-compare.Damien George
2015-01-01py: Move to guarded includes, everywhere in py/ core.Damien George
2015-01-01py: Make terse_arg_mismatch a global function and use it elsewhere.Damien George