summaryrefslogtreecommitdiffstatshomepage
path: root/py/runtime0.h
Commit message (Expand)AuthorAge
* py/emitglue: Simplify mp_raw_code_t's kind and scope_flags members.Damien George2024-02-16
* py/dynruntime.h: Implement MP_OBJ_NEW_QSTR.Jim Mussared2023-09-01
* py: Change MP_UNARY_OP_INT to MP_UNARY_OP_INT_MAYBE.Damien George2023-06-01
* py/obj: Add support for __float__ and __complex__ functions.Andrew Leech2022-07-25
* py/nativeglue: Add new header file with native function table typedef.Damien George2019-12-12
* py/persistentcode: Add ability to relocate loaded native code.Damien George2019-12-12
* py/nativeglue: Remove unused mp_obj_new_cell from mp_fun_table.Damien George2019-11-01
* py/runtime: Reorder some binary ops so they don't require conditionals.Damien George2019-10-29
* py/emitnative: Add support for using setjmp with native emitter.Damien George2019-10-05
* py: Compress first part of bytecode prelude.Damien George2019-10-01
* py/nativeglue: Make mp_fun_table fixed size regardless of config.Damien George2019-09-26
* py/bc0: Order opcodes into groups based on their size and format.Damien George2019-09-26
* py: Add support for matmul operator @ as per PEP 465.Damien George2019-09-26
* py/lexer: Reorder operator tokens to match corresponding binary ops.Damien George2019-09-26
* py/obj: Add support for __int__ special method.Paul Sokolovsky2018-12-07
* py/emitnative: Put None/False/True in global native const table.Damien George2018-10-15
* py/emitnative: Implement yield and yield-from in native emitter.Damien George2018-10-01
* py/emitnative: Place const objs for native code in separate const table.Damien George2018-09-27
* py: Make viper functions have the same entry signature as native.Damien George2018-09-15
* py/emit: Remove need to call set_native_type to set viper return type.Damien George2018-09-15
* py: Fix native functions so they run with their correct globals context.Damien George2018-09-13
* py/emit: Merge build set/slice into existing build emit function.Damien George2018-05-23
* py/runtime: Add MP_BINARY_OP_CONTAINS as reverse of MP_BINARY_OP_IN.Damien George2017-11-24
* py/emitnative: Implement floor-division and modulo for viper emitter.Damien George2017-10-11
* py: Clean up unary and binary enum list to keep groups together.Damien George2017-10-05
* py: Clarify which mp_unary_op_t's may appear in the bytecode.Paul Sokolovsky2017-09-25
* py/runtime0: Add comments about unary/binary-op enums used in bytecode.Damien George2017-09-22
* py/modbuiltins: Implement abs() by dispatching to MP_UNARY_OP_ABS.Paul Sokolovsky2017-09-18
* py/runtime: Implement dispatch for "reverse op" special methods.Paul Sokolovsky2017-09-10
* py/runtime0.h: Put inplace arith ops in front of normal operations.Paul Sokolovsky2017-09-08
* py/runtime0.h: Regroup operations a bit.Paul Sokolovsky2017-09-07
* py/objtype: Make sure mp_binary_op_method_name has full size again.Paul Sokolovsky2017-09-07
* py/runtime0.h: Move MP_BINARY_OP_DIVMOD to the end of mp_binary_op_t.Paul Sokolovsky2017-09-07
* py/runtime0.h: Move relational ops to the beginning of mp_binary_op_t.Paul Sokolovsky2017-09-07
* 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