- Dec 17, 2015
-
-
Damien George authored
-
Damien George authored
-
Damien George authored
-
Damien George authored
-
Damien George authored
For builds where mp_uint_t is larger than size_t, it doesn't make sense to use such a wide type for qstrs. There can only be as many qstrs as there is address space on the machine, so size_t is the correct type to use. Saves about 3000 bytes of code size when building unix/ port with MICROPY_OBJ_REPR_D.
-
Damien George authored
-
Damien George authored
-
Damien George authored
-
Damien George authored
Only enabled for MICROPY_OBJ_REPR_D.
-
Damien George authored
size_t is the correct type to use to count things related to the size of the address space. Using size_t (instead of mp_uint_t) is important for the efficiency of ports that configure mp_uint_t to larger than the machine word size.
-
Damien George authored
-
Damien George authored
The GC should search for pointers within the heap. This patch makes a difference when an object is larger than a pointer (eg 64-bit NaN boxing).
-
Damien George authored
-
- Dec 14, 2015
-
-
Paul Sokolovsky authored
This allows to have single itertaor type for various internal iterator types (save rodata space by not having repeating almost-empty type structures). It works by looking "iternext" method stored in particular object instance (should be first object field after "base").
-
- Dec 12, 2015
-
-
Dave Hylands authored
This leaves behind the common functionality in extmod/machine_mem.c which can be used by all ports.
-
Michael Buesch authored
These functions will raise 'ValueError: math domain error' on invalid input.
-
Damien George authored
Addresses issue #1709.
-
- Dec 10, 2015
-
-
Damien George authored
Fixes #1684 and makes "not" match Python semantics. The code is also simplified (the separate MP_BC_NOT opcode is removed) and the patch saves 68 bytes for bare-arm/ and 52 bytes for minimal/. Previously "not x" was implemented as !mp_unary_op(x, MP_UNARY_OP_BOOL), so any given object only needs to implement MP_UNARY_OP_BOOL (and the VM had a special opcode to do the ! bit). With this patch "not x" is implemented as mp_unary_op(x, MP_UNARY_OP_NOT), but this operation is caught at the start of mp_unary_op and dispatched as !mp_obj_is_true(x). mp_obj_is_true has special logic to test for truthness, and is the correct way to handle the not operation.
-
Henrik Sölver authored
Only IPSR and BASEPRI special registers supported at the moment, but easy to extend in the future.
-
- Dec 09, 2015
-
-
Paul Sokolovsky authored
Oftentimes, libc, libm, etc. don't come compiled with CPU compressed code option (Thumb, MIPS16, etc.), but we may still want to use such compressed code for MicroPython itself.
-
Damien George authored
-
Damien George authored
Addresses issue #1697.
-
- Dec 08, 2015
-
-
Damien George authored
Addresses issue #1693.
-
Paul Sokolovsky authored
-
- Dec 07, 2015
-
-
Paul Sokolovsky authored
-
pohmelie authored
-
pohmelie authored
-
- Dec 06, 2015
-
-
Paul Sokolovsky authored
Automagically skip related modules.
-
- Dec 04, 2015
-
-
Paul Sokolovsky authored
Based on similar usage for sys.argv/sys.path.
-
Paul Sokolovsky authored
This for example will allow people to reload modules which didn't load successfully (e.g. due to syntax error).
-
- Dec 03, 2015
-
-
Damien George authored
Addresses issue #1678.
-
- Dec 02, 2015
-
-
Paul Sokolovsky authored
-
Paul Sokolovsky authored
-
fabien.lementec authored
-
- Nov 29, 2015
-
-
Damien George authored
To use, put the following in mpconfigport.h: #define MICROPY_OBJ_REPR (MICROPY_OBJ_REPR_D) #define MICROPY_FLOAT_IMPL (MICROPY_FLOAT_IMPL_DOUBLE) typedef int64_t mp_int_t; typedef uint64_t mp_uint_t; #define UINT_FMT "%llu" #define INT_FMT "%lld" Currently does not work with native emitter enabled.
-
Damien George authored
This allows the mp_obj_t type to be configured to something other than a pointer-sized primitive type. This patch also includes additional changes to allow the code to compile when sizeof(mp_uint_t) != sizeof(void*), such as using size_t instead of mp_uint_t, and various casts.
-
Damien George authored
-
Damien George authored
The GC works with concrete pointers and so the types should reflect this.
-
Damien George authored
-
Damien George authored
-