aboutsummaryrefslogtreecommitdiff
AgeCommit message (Expand)Author
2018-10-15py/emitnative: Push internal None rather than const obj where possible.Damien George
2018-10-15py/emitnative: Simplify viper mode handling in emit_native_import_name.Damien George
2018-10-15py/emitnative: Consolidate use of stacked immediate values to one func.Damien George
2018-10-15docs/machine.Pin: Document "hard" argument of Pin.irq method.Peter Hinch
2018-10-13docs/machine.Pin: Add note regarding irq handler argument.Peter Hinch
2018-10-13lib/utils/pyexec: Forcefully unlock the heap if locked and REPL active.Damien George
2018-10-13tests/uctypes_sizeof_od: Test for using OrderedDict as struct descriptorPaul Sokolovsky
2018-10-13extmod/moductypes: Accept OrderedDict as a structure description.Paul Sokolovsky
2018-10-13py/emitnative: Remove unused ptr argument from ASM_CALL_IND macro.Damien George
2018-10-13py/asmthumb: Remove unused fun_ptr arg from asm_thumb_bl_ind function.Damien George
2018-10-13py/asmarm: Simplify asm_arm_bl_ind to only load via index, not literal.Damien George
2018-10-13py/emitnative: Load native fun table ptr from const table for all archs.Damien George
2018-10-13py/asmx86: Change indirect calls to load fun ptr from the native table.Damien George
2018-10-13py/asmx86: Change stack management to reference locals by esp not ebp.Damien George
2018-10-13py/asmx64: Change indirect calls to load fun ptr from the native table.Damien George
2018-10-13py/asmx64: Change stack management to reference locals by rsp not rbp.Damien George
2018-10-11nrf/bluetooth: Set GAP_ADV_MAX_SIZE to 31 (s132/s140).Glenn Ruben Bakke
2018-10-05stm32/main: Add configuration macros for board to set heap start/end.Andrew Leech
2018-10-05windows/msvc: Implement file/directory type query.stijn
2018-10-05windows/msvc: Fix incorrect indentation in dirent.c.stijn
2018-10-05extmod/moductypes: Remove BITFIELD from aggregate types enum.Paul Sokolovsky
2018-10-05docs/uselect: Describe more aspects of poll.register/modify behavior.Paul Sokolovsky
2018-10-05tests/uselect_poll_basic: Add basic test for uselect.poll invariants.Paul Sokolovsky
2018-10-05unix/moduselect: Raise OSError(ENOENT) if obj to modify is not in pollerPaul Sokolovsky
2018-10-05tests/unix/ffi_float: Skip if strtof() is not available.Paul Sokolovsky
2018-10-02py/emitnative: Clean up unused macro and forward function declarations.Damien George
2018-10-01py/obj.h: Use uint64_t instead of mp_int_t in repr-D MP_OBJ_IS_x macros.Damien George
2018-10-01py/runtime: Remove comment in mp_import_name about level being 0.Damien George
2018-10-01py/runtime: Use mp_import_name to implement tail of mp_import_from.Damien George
2018-10-01docs/wipy: Fix links to network.Server, and markup for boot.py.Damien George
2018-10-01docs: Remove sphinx_selective_exclude, it's no longer used.Damien George
2018-10-01docs: Unify all the ports into one set of documentation.Damien George
2018-10-01tests/run-tests: Enabled native tests that pass now that yield works.Damien George
2018-10-01py/emitnative: Implement yield and yield-from in native emitter.Damien George
2018-10-01py/emitnative: Reorder native state on C stack so nlr_buf_t is first.Damien George
2018-10-01py/asmxtensa: Use proper calculation for const table offset.Damien George
2018-10-01py/asmx64: Extend asm_x64_mov_reg_pcrel to accept high registers.Damien George
2018-10-01py/asmx86: Comment out unused asm_x86_nop to prevent compiler warnings.Damien George
2018-09-30py/asmthumb: Extend asm entry/exit to handle stack larger than 508 bytesDamien George
2018-09-30py/asmthumb: Clean up asm_thumb_bl_ind to use new optimised ldr helper.Damien George
2018-09-30py/asmthumb: Add wide ldr to handle larger offsets.Damien George
2018-09-29py/vm: When VM raises exception put exc obj at beginning of func state.Damien George
2018-09-28py/objtype: Support full object model for get/set/delitem special meths.Damien George
2018-09-28py/objtype: Remove TODO about storing attributes to classes.Damien George
2018-09-28py/runtime: Remove nlr protection when calling __next__ in mp_resume.Damien George
2018-09-28py/vm: Fix case of throwing GeneratorExit type into yield-from.Damien George
2018-09-28tests/basics: Split out gen throw tests from yield-from-throw tests.Damien George
2018-09-28py/emitnative: Change type of const_table from uintptr_t to mp_uint_t.Damien George
2018-09-27esp8266: Remove scanning of GC pointers in native code block.Damien George
2018-09-27tests/micropython: Test loading const objs in native and viper funcs.Damien George