aboutsummaryrefslogtreecommitdiff
path: root/py/runtime0.h
AgeCommit message (Expand)Author
2019-12-12py/nativeglue: Add new header file with native function table typedef.Damien George
2019-12-12py/persistentcode: Add ability to relocate loaded native code.Damien George
2019-11-01py/nativeglue: Remove unused mp_obj_new_cell from mp_fun_table.Damien George
2019-10-29py/runtime: Reorder some binary ops so they don't require conditionals.Damien George
2019-10-05py/emitnative: Add support for using setjmp with native emitter.Damien George
2019-10-01py: Compress first part of bytecode prelude.Damien George
2019-09-26py/nativeglue: Make mp_fun_table fixed size regardless of config.Damien George
2019-09-26py/bc0: Order opcodes into groups based on their size and format.Damien George
2019-09-26py: Add support for matmul operator @ as per PEP 465.Damien George
2019-09-26py/lexer: Reorder operator tokens to match corresponding binary ops.Damien George
2018-12-07py/obj: Add support for __int__ special method.Paul Sokolovsky
2018-10-15py/emitnative: Put None/False/True in global native const table.Damien George
2018-10-01py/emitnative: Implement yield and yield-from in native emitter.Damien George
2018-09-27py/emitnative: Place const objs for native code in separate const table.Damien George
2018-09-15py: Make viper functions have the same entry signature as native.Damien George
2018-09-15py/emit: Remove need to call set_native_type to set viper return type.Damien George
2018-09-13py: Fix native functions so they run with their correct globals context.Damien George
2018-05-23py/emit: Merge build set/slice into existing build emit function.Damien George
2017-11-24py/runtime: Add MP_BINARY_OP_CONTAINS as reverse of MP_BINARY_OP_IN.Damien George
2017-10-11py/emitnative: Implement floor-division and modulo for viper emitter.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-09-22py/runtime0: Add comments about unary/binary-op enums used in bytecode.Damien George
2017-09-18py/modbuiltins: Implement abs() by dispatching to MP_UNARY_OP_ABS.Paul Sokolovsky
2017-09-10py/runtime: Implement dispatch for "reverse op" special methods.Paul Sokolovsky
2017-09-08py/runtime0.h: Put inplace arith ops in front of normal operations.Paul Sokolovsky
2017-09-07py/runtime0.h: Regroup operations a bit.Paul Sokolovsky
2017-09-07py/objtype: Make sure mp_binary_op_method_name has full size again.Paul Sokolovsky
2017-09-07py/runtime0.h: Move MP_BINARY_OP_DIVMOD to the end of mp_binary_op_t.Paul Sokolovsky
2017-09-07py/runtime0.h: Move relational ops to the beginning of mp_binary_op_t.Paul Sokolovsky
2017-08-11py/modsys: Initial implementation of sys.getsizeof().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: Optimise storage of iterator so it takes only 4 slots on Py stack.Damien George
2016-02-02py: Extend native type-sig to use 4 bits, so uint is separate to ptr.Damien George
2015-12-10py: Make UNARY_OP_NOT a first-class op, to agree with Py not semantics.Damien George
2015-11-13py: Put all bytecode state (arg count, etc) in bytecode.Damien George
2015-08-17py: Remove unused compile scope flags, and irrelevant flag compute code.Damien George
2015-06-25py: Remove mp_load_const_bytes and instead load precreated bytes object.Damien George
2015-06-25py: Remove mp_load_const_str and replace uses with inlined version.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-04-07py: Implement full func arg passing for native emitter.Damien George
2015-04-06py: Implement calling functions with *args in native emitter.Damien George
2015-04-03py: Implement closures in native code generator.Damien George
2015-02-08py: Parse big-int/float/imag constants directly in parser.Damien George
2014-12-27py: Move to guarded includes for compile.h and related headers.Paul Sokolovsky
2014-09-23py: Make native emitter handle multi-compare and not/is not/not in ops.Damien George
2014-09-06py: Native emitter now supports delete name & global, and end finally.Damien George