summaryrefslogtreecommitdiffstatshomepage
path: root/py/runtime0.h
Commit message (Expand)AuthorAge
* py/modsys: Initial implementation of sys.getsizeof().Paul Sokolovsky2017-08-11
* all: Use the name MicroPython consistently in commentsAlexander Steffen2017-07-31
* all: Unify header guard usage.Alexander Steffen2017-07-18
* py: Add LOAD_SUPER_METHOD bytecode to allow heap-free super meth calls.Damien George2017-04-22
* py: Optimise storage of iterator so it takes only 4 slots on Py stack.Damien George2017-02-16
* py: Extend native type-sig to use 4 bits, so uint is separate to ptr.Damien George2016-02-02
* py: Make UNARY_OP_NOT a first-class op, to agree with Py not semantics.Damien George2015-12-10
* py: Put all bytecode state (arg count, etc) in bytecode.Damien George2015-11-13
* py: Remove unused compile scope flags, and irrelevant flag compute code.Damien George2015-08-17
* py: Remove mp_load_const_bytes and instead load precreated bytes object.Damien George2015-06-25
* py: Remove mp_load_const_str and replace uses with inlined version.Damien George2015-06-25
* py: Add MP_BINARY_OP_DIVMOD to simplify and consolidate divmod builtin.Damien George2015-06-13
* py: Convert hash API to use MP_UNARY_OP_HASH instead of ad-hoc function.Damien George2015-05-12
* py: Implement full func arg passing for native emitter.Damien George2015-04-07
* py: Implement calling functions with *args in native emitter.Damien George2015-04-06
* py: Implement closures in native code generator.Damien George2015-04-03
* py: Parse big-int/float/imag constants directly in parser.Damien George2015-02-08
* py: Move to guarded includes for compile.h and related headers.Paul Sokolovsky2014-12-27
* py: Make native emitter handle multi-compare and not/is not/not in ops.Damien George2014-09-23
* py: Native emitter now supports delete name & global, and end finally.Damien George2014-09-06
* py: Code clean-up in native emitter; improve thumb native calls.Damien George2014-08-16
* py: Viper can call functions with native types, and raise exceptions.Damien George2014-08-16
* py: Viper can now store to global.Damien George2014-08-15
* py: Allow viper to have type annotations.Damien George2014-08-15
* py: Fix configurability of builtin slice.Damien George2014-06-01
* py: Add option to disable set() object (enabled by default).Damien George2014-06-01
* py: Implement long int parsing in int(...).Damien George2014-05-28
* runtime0.h: Group binary ops by fives.Paul Sokolovsky2014-05-10
* py: Improve native emitter; now supports more opcodes.Damien George2014-05-07
* Add license header to (almost) all files.Damien George2014-05-03
* py: Merge BINARY_OP_SUBSCR and store_subscr (w/ delete) into subscr.Damien George2014-04-17
* py: Remove unique_codes from emitglue.c. Replace with pointers.Damien George2014-04-13
* py, compiler: Clean up and compress scope/compile structures.Damien George2014-04-09
* py: Implement more features in native emitter.Damien George2014-04-06
* Rename rt_* to mp_*.Damien George2014-03-30
* py: Factor out code from runtime.c to emitglue.c.Damien George2014-03-27
* Support passing positional args as keywords to bytecode functions.Paul Sokolovsky2014-02-16
* py: Pass all scope flags through to runtime.Damien George2014-02-15
* py: Partially fix native emitter to work with latest runtime.Damien George2014-02-02
* py: Tidy up BINARY_OPs; negation done by special NOT bytecode.Damien George2014-02-01
* Implement __bool__ and __len__ via unary_op virtual method for all types.Paul Sokolovsky2014-01-30
* py: Simplify fastn in VM; reduce size of unique code struct.Damien George2014-01-29
* py: Implement 'not' in compiler, and improve rt_is_true.Damien George2014-01-28
* py: Fix emitcpy and emitnative's binary_op.Damien George2014-01-11
* unified the bopsJohn R. Lenton2014-01-11
* Split qstr into pools, and put initial pool in ROM.Damien George2014-01-04
* py: make closures work.Damien George2013-12-30
* Change object representation from 1 big union to individual structs.Damien2013-12-21