summaryrefslogtreecommitdiffstatshomepage
path: root/py/showbc.c
Commit message (Expand)AuthorAge
* py/emitglue: Include fun_data_len in mp_raw_code_t only when saving.Damien George2024-02-16
* py: Change jump-if-x-or-pop opcodes to have unsigned offset argument.Damien George2022-03-28
* py: Change jump opcodes to emit 1-byte jump offset when possible.Damien George2022-03-28
* py/showbc: Remove global variables and make DECODE_PTR work correctly.Damien George2022-03-16
* py: Rework bytecode and .mpy file format to be mostly static data.Damien George2022-02-24
* py/showbc: Fix printing of raw bytecode header on nanbox builds.Damien George2021-12-15
* py/showbc: Print unary-op string when dumping bytecode.Damien George2021-11-19
* all: Remove MICROPY_OPT_CACHE_MAP_LOOKUP_IN_BYTECODE.Jim Mussared2021-09-16
* all: Fix signed shifts and NULL access errors from -fsanitize=undefined.Jeff Epler2021-06-24
* py/showbc: Pass in an mp_print_t struct to all bytecode-print functions.Damien George2020-09-11
* all: Reformat C and Python source code with tools/codeformat.py.Damien George2020-02-28
* 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: Split RAISE_VARARGS opcode into 3 separate ones.Damien George2019-09-26
* py/showbc: Fix off-by-one when showing address of unknown opcode.Milan Rossa2019-08-06
* py: Replace POP_BLOCK and POP_EXCEPT opcodes with POP_EXCEPT_JUMP.Damien George2019-03-05
* py: Clean up unary and binary enum list to keep groups together.Damien George2017-10-05
* py: Clarify which mp_unary_op_t's may appear in the bytecode.Paul Sokolovsky2017-09-25
* all: Use the name MicroPython consistently in commentsAlexander Steffen2017-07-31
* py: Add LOAD_SUPER_METHOD bytecode to allow heap-free super meth calls.Damien George2017-04-22
* py: Allow bytecode/native to put iter_buf on stack for simple for loops.Damien George2017-02-16
* py/showbc: Make sure to set the const_table before printing bytecode.Damien George2017-01-27
* py/showbc: Make printf's go to the platform print stream.Damien George2016-09-20
* py: Combine 3 comprehension opcodes (list/dict/set) into 1.Damien George2016-09-19
* py: Make UNARY_OP_NOT a first-class op, to agree with Py not semantics.Damien George2015-12-10
* py: Wrap all obj-ptr conversions in MP_OBJ_TO_PTR/MP_OBJ_FROM_PTR.Damien George2015-11-29
* py: Add MICROPY_PERSISTENT_CODE so code can persist beyond the runtime.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: Remove mp_load_const_bytes and instead load precreated bytes object.Damien George2015-06-25
* py: Make showbc decode UNPACK_EX, and use correct range for unop/binop.Damien George2015-06-18
* py: Remove LOAD_CONST_ELLIPSIS bytecode, use LOAD_CONST_OBJ instead.Damien George2015-05-05
* py: Simplify bytecode prelude when encoding closed over variables.Damien George2015-04-07
* py: Implement DELETE_GLOBAL in showbc.c.Damien George2015-03-20
* py: Parse big-int/float/imag constants directly in parser.Damien George2015-02-08
* py: Specify unary/binary op name in TypeError error message.Damien George2015-01-27
* py, unix, stmhal: Allow to compile with -Wshadow.Damien George2015-01-20
* py, unix: Allow to compile with -Wsign-compare.Damien George2015-01-16
* py/showbc.c: Handle new LOAD_CONST_OBJ opcode, and opcodes with cache.Damien George2015-01-13
* showbc: Show conditional jump destination as unsigned value.Paul Sokolovsky2015-01-07
* py: Move to guarded includes, everywhere in py/ core.Damien George2015-01-01
* showbc: Print operation mnemonic in BINARY_OP.Paul Sokolovsky2014-12-28
* showbc: Make code object start pointer semi-public.Paul Sokolovsky2014-12-28
* showbc: Refactor to allow inline instruction printing.Paul Sokolovsky2014-12-27
* py: Fix label printing in showbc; print sp in vm trace.Damien George2014-12-12
* py: Compress load-int, load-fast, store-fast, unop, binop bytecodes.Damien George2014-10-25
* py: Store bytecode arg names in bytecode (were in own array).Damien George2014-10-25
* py: Fix debug-printing of bytecode line numbers.Damien George2014-10-24
* py: Use UINT_FMT instead of %d.Damien George2014-10-03