xbe
|
efe3422394
|
py: Clean up includes.
Remove unnecessary includes. Add includes that improve portability.
|
2014-03-17 02:43:40 -07:00 |
Damien George
|
1dc76af7bf
|
py: Remove name of var arg from macros with var args.
|
2014-02-26 16:57:08 +00:00 |
Paul Sokolovsky
|
44739e280e
|
Make DEBUG_printf() a proper function, implementation is port-dependent.
In particular, unix outputs to stderr, to allow to run testsuite against
micropython built with debug output (by redirecting stderr to /dev/null).
|
2014-02-16 18:20:49 +02:00 |
Paul Sokolovsky
|
520e2f58a5
|
Replace global "static" -> "STATIC", to allow "analysis builds". Part 2.
|
2014-02-12 18:31:30 +02:00 |
Paul Sokolovsky
|
b62c30b4bc
|
Generalize malloc-via-gc-heap support, make it available to unix port.
|
2014-02-11 16:20:02 +02:00 |
Paul Sokolovsky
|
58ff93bc7c
|
Get rid of calloc().
If there's malloc and memset, then there's no need for calloc, especially if
we need to implement it ourselves.
|
2014-02-10 18:40:00 +02:00 |
Paul Sokolovsky
|
cdd2c62e07
|
realloc(): Log original memory ptr too.
To alloc complete memory alloc flow tracing.
|
2014-01-30 03:58:17 +02:00 |
Damien George
|
2d15c1216d
|
stm: Add optional memory debugging output.
|
2014-01-29 20:33:20 +00:00 |
Paul Sokolovsky
|
b372bfca21
|
Rename default config file to mpconfig.h, and port's to mpconfigport.h.
mpconfig.h will automatically pull mpconfigport.h.
|
2014-01-03 19:03:11 +02:00 |
Paul Sokolovsky
|
ef18102b9e
|
Make it possible to turn off collecting memory stats (MICROPY_MEM_STATS).
|
2014-01-03 18:55:24 +02:00 |
Paul Sokolovsky
|
780f555b2e
|
Add new alloc metric: peak_bytes_allocated.
This is just max value of current_bytes_allocated seen.
|
2014-01-03 18:55:23 +02:00 |
Paul Sokolovsky
|
02de0c57d2
|
Add new alloc metric: current_bytes_allocated.
Unlike total_bytes_allocated, this tracks m_free()'s too.
|
2014-01-03 18:55:23 +02:00 |
Paul Sokolovsky
|
43f1c8080a
|
m_realloc: Account only allocation size difference in total_bytes_allocated.
|
2014-01-03 18:55:23 +02:00 |
Damien
|
732407f1bf
|
Change memory allocation API to require size for free and realloc.
|
2013-12-29 19:33:23 +00:00 |
Damien
|
8b3a7c2237
|
Fix func decls with no arguments: () -> (void).
|
2013-10-23 20:20:17 +01:00 |
Damien
|
429d71943d
|
Initial commit.
|
2013-10-04 19:53:11 +01:00 |