aboutsummaryrefslogtreecommitdiff
path: root/py/bc0.h
AgeCommit message (Expand)Author
2022-03-28py: Change jump-if-x-or-pop opcodes to have unsigned offset argument.Damien George
2022-03-28py: Change jump opcodes to emit 1-byte jump offset when possible.Damien George
2020-02-28py/bc0.h: Shift comment to start of line to improve format consistency.Damien George
2019-09-26py: Split RAISE_VARARGS opcode into 3 separate ones.Damien George
2019-09-26py: Introduce and use constants for multi-opcode sizes.Damien George
2019-09-26py/bc: Replace big opcode format table with simple macro.Damien George
2019-09-26py/bc0: Order opcodes into groups based on their size and format.Damien George
2019-08-22py/bc0.h: Add comment that MP_BC_MAKE_CLOSURE/_DEFARGS take extra byte.Damien George
2019-03-05py: Replace POP_BLOCK and POP_EXCEPT opcodes with POP_EXCEPT_JUMP.Damien George
2017-10-05py: Clean up unary and binary enum list to keep groups together.Damien George
2017-09-25py: Clarify which mp_unary_op_t's may appear in the bytecode.Paul Sokolovsky
2017-07-31all: Use the name MicroPython consistently in commentsAlexander Steffen
2017-07-18all: Unify header guard usage.Alexander Steffen
2017-04-22py: Add LOAD_SUPER_METHOD bytecode to allow heap-free super meth calls.Damien George
2017-02-16py: Allow bytecode/native to put iter_buf on stack for simple for loops.Damien George
2016-09-19py: Combine 3 comprehension opcodes (list/dict/set) into 1.Damien George
2015-12-10py: Make UNARY_OP_NOT a first-class op, to agree with Py not semantics.Damien George
2015-06-25py: Remove mp_load_const_bytes and instead load precreated bytes object.Damien George
2015-06-13py: Add MP_BINARY_OP_DIVMOD to simplify and consolidate divmod builtin.Damien George
2015-05-12py: Convert hash API to use MP_UNARY_OP_HASH instead of ad-hoc function.Damien George
2015-05-05py: Remove LOAD_CONST_ELLIPSIS bytecode, use LOAD_CONST_OBJ instead.Damien George
2015-02-08py: Parse big-int/float/imag constants directly in parser.Damien George
2015-01-13py: Add load_const_obj to emitter, add LOAD_CONST_OBJ to bytecode.Damien George
2015-01-01py: Move to guarded includes, everywhere in py/ core.Damien George
2014-10-25py: Compress load-int, load-fast, store-fast, unop, binop bytecodes.Damien George
2014-05-03Add license header to (almost) all files.Damien George
2014-04-27py: Remove unnecessary LOAD_CONST_ID bytecode.Damien George
2014-04-20py: Wrap #if's around emitter functions that are used only by emitcpy.Damien George
2014-04-17py: Merge BINARY_OP_SUBSCR and store_subscr (w/ delete) into subscr.Damien George
2014-04-12py: Make all LOAD_FAST ops check for unbound local.Damien George
2014-04-09py: Properly implement deletion of locals and derefs, and detect errors.Damien George
2014-04-08py: Remove DELETE_SUBSCR opcode, combine with STORE_SUBSCR.Damien George
2014-04-08py: Finish implementation of all del opcodes.Damien George
2014-03-31py: Add LOAD_NULL bytecode and use it to simplify function calls.Damien George
2014-03-26py: Support closures with default args.Paul Sokolovsky
2014-02-01py: Tidy up BINARY_OPs; negation done by special NOT bytecode.Damien George
2014-02-01py: Implement break/continue from an exception with finally.Damien George
2014-02-01Implement default function arguments (for Python functions).Paul Sokolovsky
2014-01-11Merge branch 'master' of github.com:dpgeorge/micropythonDamien George
2014-01-11py: Make arg to MP_BC_RAISE_VARARGS a byte.Damien George
2014-01-11unified the bopsJohn R. Lenton
2014-01-04Add ellipsis object.Damien George
2013-12-30py: make closures work.Damien George
2013-12-21Change object representation from 1 big union to individual structs.Damien