| Commit message (Collapse) | Author | Age |
|
|
|
| |
This rename was missed in the previous patch.
|
|
|
|
| |
Also at _t to mp_exc_stack pre-declaration in struct typedef.
|
| |
|
|
|
|
| |
Saves a few bytes of code size.
|
|
|
|
| |
As per CPython.
|
|
|
|
|
|
|
|
|
| |
There can be stray pointers in memory blocks that are not properly zero'd
after allocation. This patch adds a new config option to always zero all
allocated memory (via gc_alloc and gc_realloc) and hence help to eliminate
stray pointers.
See issue #2195.
|
|
|
|
| |
Disable by default, enable in unix port.
|
|
|
|
|
|
|
|
|
|
| |
In current state `mp_get_stream_raise` assumes that `self_in` is an object
and always performs a pointer derefence which may cause a segfault.
This function shall throw an exception whenever `self_in` does not implement
a stream protocol, that includes qstr's and numbers.
fixes #2331
|
|
|
|
| |
See issue #2264.
|
|
|
|
|
|
|
|
|
| |
The machine_ptr_t type is long obsolete as the type of mp_obj_t is now
defined by the object representation, ie by MICROPY_OBJ_REPR. So just use
void* explicitly for the typedef of mp_obj_t.
If a port wants to use something different then they should define a new
object representation.
|
|
|
|
|
| |
This patch does further refactoring using the new mp_raise_TypeError
and mp_raise_ValueError functions.
|
| |
|
|
|
|
|
|
| |
Only tuple, namedtuple and attrtuple use the tuple_cmp_helper function,
and they all have getiter=mp_obj_tuple_getiter, so the check here is only
to ensure that the self object is consistent. Hence use mp_check_self.
|
|
|
|
|
|
| |
Checks for number of args removes where guaranteed by function descriptor,
self checking is replaced with mp_check_self(). In few cases, exception
is raised instead of assert.
|
| |
|
|
|
|
|
|
|
| |
Indended to replace raw asserts in bunch of files. Expands to empty
if MICROPY_BUILTIN_METHOD_CHECK_SELF_ARG is defined, otehrwise by
default still to assert, though a particular port may define it to
something else.
|
|
|
|
|
|
| |
Introduce mp_raise_msg(), mp_raise_ValueError(), mp_raise_TypeError()
instead of previous pattern nlr_raise(mp_obj_new_exception_msg(...)).
Save few bytes on each call, which are many.
|
|
|
|
| |
Similar to existing MP_NOINLINE.
|
| |
|
|
|
|
| |
Default is disabled, enabled for unix port. Saves 600 bytes on x86.
|
| |
|
| |
|
|
|
|
|
|
| |
To filter out even prototypes of mp_stream_posix_*() functions, which
require POSIX types like ssize_t & off_t, which may be not available in
some ports.
|
|
|
|
|
|
|
| |
Helpful when porting existing C libraries to MicroPython. abort()ing in
embedded environment isn't a good idea, so when compiling such library,
-Dabort=abort_ option can be given to redirect standard abort() to this
"safe" version.
|
|
|
|
|
| |
Previoussly such read() and write() methods were used by modussl_axtls,
move to py/stream for reuse.
|
| |
|
|
|
|
| |
No-op for this object.
|
| |
|
| |
|
|
|
|
| |
Order out-of-bounds check, completion check, and increment in the right way.
|
|
|
|
|
| |
There's single str_index_to_ptr() function, called for both bytes and
unicode objects, so should handle each properly.
|
|
|
|
| |
We have adopted POSIX-compatible error numbers as MicroPython's native.
|
| |
|
|
|
|
| |
Also, fix a warning text (remove "duplicate" BytesWarning).
|
| |
|
|
|
|
|
|
|
|
|
|
| |
Something like:
if foo == "bar":
will be always false if foo is b"bar". In CPython, warning is issued if
interpreter is started as "python3 -b". In MicroPython,
MICROPY_PY_STR_BYTES_CMP_WARN setting controls it.
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Currently, MicroPython runs GC when it could not allocate a block of memory,
which happens when heap is exhausted. However, that policy can't work well
with "inifinity" heaps, e.g. backed by a virtual memory - there will be a
lot of swap thrashing long before VM will be exhausted. Instead, in such
cases "allocation threshold" policy is used: a GC is run after some number of
allocations have been made. Details vary, for example, number or total amount
of allocations can be used, threshold may be self-adjusting based on GC
outcome, etc.
This change implements a simple variant of such policy for MicroPython. Amount
of allocated memory so far is used for threshold, to make it useful to typical
finite-size, and small, heaps as used with MicroPython ports. And such GC policy
is indeed useful for such types of heaps too, as it allows to better control
fragmentation. For example, if a threshold is set to half size of heap, then
for an application which usually makes big number of small allocations, that
will (try to) keep half of heap memory in a nice defragmented state for an
occasional large allocation.
For an application which doesn't exhibit such behavior, there won't be any
visible effects, except for GC running more frequently, which however may
affect performance. To address this, the GC threshold is configurable, and
by default is off so far. It's configured with gc.threshold(amount_in_bytes)
call (can be queries without an argument).
|
|
|
|
| |
Allows to build the library variant for other archs in parallel.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
3-arg form:
stream.write(data, offset, length)
2-arg form:
stream.write(data, length)
These allow efficient buffer writing without incurring extra memory
allocation for slicing or creating memoryview() object, what is
important for low-memory ports.
All arguments must be positional. It might be not so bad idea to standardize
on 3-arg form, but 2-arg case would need check and raising an exception
anyway then, so instead it was just made to work.
|
|
|
|
|
| |
Make variable MICROPY_SSL_AXTLS=1 should be defined to activate modussl_axtls
and link with -laxtls.
|
| |
|
| |
|
|
|
|
| |
LTO can't "see" inside naked functions, but we can mark `nlr_push_tail` as used.
|
|
|
|
|
|
| |
This follows source code/header file organization similar to few other
objects, and intended to be used only is special cases, where efficiency/
simplicity matters.
|
|
|
|
|
| |
Allocating it for each read/write operation is a memory fragmentation
hazard.
|
|
|
|
|
| |
However, as it requires linking with external libraries, it actually
should be ste on Makefile level.
|
|
|
|
|
| |
Namespace packages are natural part of Python3, CPython3 doesn't have such
warning, it made sense only from point of view of Python2 legacy.
|
|
|
|
|
| |
Just as maximum allocated block size, it's reported in allocation units
(not bytes).
|
|
|
|
|
|
| |
Previously, if there was chain of allocated blocks ending with the last
block of heap, it wasn't included in number of 1/2-block or max block
size stats.
|