summaryrefslogtreecommitdiffstatshomepage
path: root/py/showbc.c
Commit message (Expand)AuthorAge
* py: Merge BINARY_OP_SUBSCR and store_subscr (w/ delete) into subscr.Damien George2014-04-17
* py: Fix up source-line calculation.Damien George2014-04-13
* py: Update showbc to decode ptrs for MAKE_FUNCTION ops.Damien George2014-04-13
* py: Make all LOAD_FAST ops check for unbound local.Damien George2014-04-12
* showbc: Add quotes around (some) string args, to show empty string properly.Paul Sokolovsky2014-04-12
* showbs: Dump LOAD_CONST_BYTES.Paul Sokolovsky2014-04-12
* showbc: Dump LOAD_NULL.Paul Sokolovsky2014-04-12
* py: Properly implement deletion of locals and derefs, and detect errors.Damien George2014-04-09
* py: Finish implementation of all del opcodes.Damien George2014-04-08
* py: Add LOAD_NULL bytecode and use it to simplify function calls.Damien George2014-03-31
* showbc: Dump all CALL_FUNCTION_* and CALL_METHOD_* opcodes.Paul Sokolovsky2014-03-30
* py: Fix bugs with debugging output.Damien George2014-03-28
* showbc: Add few bytecodes related to "with".Paul Sokolovsky2014-03-28
* py: Support closures with default args.Paul Sokolovsky2014-03-26
* showbc: Dump YIELD_FROM.Paul Sokolovsky2014-03-22
* py: Clean up includes.xbe2014-03-17
* py: Fix casting and printing of small int.Damien George2014-02-22
* showbc: Update for recent int varlen storage refactor.Paul Sokolovsky2014-02-21
* Bytecode int varlen encoding: support arbitrary values for signed ints too.Paul Sokolovsky2014-02-19
* Implement "from module import *" construct.Paul Sokolovsky2014-02-14
* py: More output in showbc.Damien George2014-02-06
* py: Tidy up BINARY_OPs; negation done by special NOT bytecode.Damien George2014-02-01
* py: Implement break/continue from an exception with finally.Damien George2014-02-01
* Implement default function arguments (for Python functions).Paul Sokolovsky2014-02-01
* Dump 4 more bytecodes (loop and finally ones).Paul Sokolovsky2014-01-31
* py: Fix bug with LOAD_METHOD; fix int->machine_int_t for small int.Damien George2014-01-29
* Revamp qstrs: they now include length and hash.Damien George2014-01-21
* py: Add module/function/class name to exceptions.Damien George2014-01-19
* py: Temporary fix for bug where not enough VM state is allocated.Damien George2014-01-19
* Add source file name and line number to error messages.Damien George2014-01-18
* Make VM stack grow upwards, and so no reversed args arrays.Damien George2014-01-18
* unified the bopsJohn R. Lenton2014-01-11
* Dump few more bytecodes (based on attempt to run real-world code).Paul Sokolovsky2014-01-11
* Factor and simplify Makefile's and mpconfig, part 2.Damien George2014-01-07
* Add ellipsis object.Damien George2014-01-04
* Basic implementation of import.Damien George2014-01-03
* py: Add more bytecodes to showbc.c.Damien George2014-01-02
* py: make closures work.Damien George2013-12-30
* Make unix-cpy cross platform; remove dependency of asmx64 on mpconfig.Damien George2013-12-30
* Merge branch 'cross-plat' of https://github.com/pfalcon/micropython into pfal...Damien George2013-12-30
|\
| * Make "unix" target be crossplatform and support x86, x64, ARM hosts.Paul Sokolovsky2013-12-30
* | py: add dict length function, and fix rt_store_set.Damien2013-12-29
|/
* Add code in VM to handle nested exceptions correctly.Damien2013-12-29
* Change object representation from 1 big union to individual structs.Damien2013-12-21
* py: add more functionality to showbc.Damien2013-11-26
* py: add some more opcodes to showbc.Damien2013-11-25
* Add function to decode and show byte code.Damien2013-11-17