summaryrefslogtreecommitdiff
path: root/py/showbc.c
AgeCommit message (Expand)Author
2014-06-02showbc: Print code block header at the beginning, not in the middle of dump.Paul Sokolovsky
2014-06-01Rename bultins config variables to MICROPY_PY_BUILTINS_*.Damien George
2014-05-24Rename configuration variables controling Python features.Damien George
2014-05-11showbc: Decode MAP_ADD.Paul Sokolovsky
2014-05-10py: Rename byte_code to bytecode everywhere.Damien George
2014-05-04showbc: Quote block name, so it was easily visible.Paul Sokolovsky
2014-05-03Add license header to (almost) all files.Damien George
2014-05-02py, unix: Make "mpconfig.h" be first included, as other headers depend on it.Paul Sokolovsky
2014-04-27py: Remove unnecessary LOAD_CONST_ID bytecode.Damien George
2014-04-23vm: Add rudimentary bytecode execution tracing capability.Paul Sokolovsky
2014-04-23showbc: MAKE_CLOSURE*: Update for new closed-over encoding.Paul Sokolovsky
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-13py: Fix up source-line calculation.Damien George
2014-04-13py: Update showbc to decode ptrs for MAKE_FUNCTION ops.Damien George
2014-04-12py: Make all LOAD_FAST ops check for unbound local.Damien George
2014-04-12showbc: Add quotes around (some) string args, to show empty string properly.Paul Sokolovsky
2014-04-12showbs: Dump LOAD_CONST_BYTES.Paul Sokolovsky
2014-04-12showbc: Dump LOAD_NULL.Paul Sokolovsky
2014-04-09py: Properly implement deletion of locals and derefs, and detect errors.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-30showbc: Dump all CALL_FUNCTION_* and CALL_METHOD_* opcodes.Paul Sokolovsky
2014-03-28py: Fix bugs with debugging output.Damien George
2014-03-28showbc: Add few bytecodes related to "with".Paul Sokolovsky
2014-03-26py: Support closures with default args.Paul Sokolovsky
2014-03-22showbc: Dump YIELD_FROM.Paul Sokolovsky
2014-03-17py: Clean up includes.xbe
2014-02-22py: Fix casting and printing of small int.Damien George
2014-02-21showbc: Update for recent int varlen storage refactor.Paul Sokolovsky
2014-02-19Bytecode int varlen encoding: support arbitrary values for signed ints too.Paul Sokolovsky
2014-02-14Implement "from module import *" construct.Paul Sokolovsky
2014-02-06py: More output in showbc.Damien George
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-31Dump 4 more bytecodes (loop and finally ones).Paul Sokolovsky
2014-01-29py: Fix bug with LOAD_METHOD; fix int->machine_int_t for small int.Damien George
2014-01-21Revamp qstrs: they now include length and hash.Damien George
2014-01-19py: Add module/function/class name to exceptions.Damien George
2014-01-19py: Temporary fix for bug where not enough VM state is allocated.Damien George
2014-01-18Add source file name and line number to error messages.Damien George
2014-01-18Make VM stack grow upwards, and so no reversed args arrays.Damien George
2014-01-11unified the bopsJohn R. Lenton
2014-01-11Dump few more bytecodes (based on attempt to run real-world code).Paul Sokolovsky
2014-01-07Factor and simplify Makefile's and mpconfig, part 2.Damien George
2014-01-04Add ellipsis object.Damien George
2014-01-03Basic implementation of import.Damien George
2014-01-02py: Add more bytecodes to showbc.c.Damien George
2013-12-30py: make closures work.Damien George