summaryrefslogtreecommitdiffstatshomepage
path: root/py/malloc.c
Commit message (Expand)AuthorAge
* all: Remove the "STATIC" macro and just use "static" instead.Angus Gratton2024-03-07
* py/malloc: Fix DEBUG_print() args in m_realloc_maybe.IhorNehrutsa2023-09-04
* py/malloc: Introduce m_tracked_calloc, m_tracked_free functions.Damien George2022-05-05
* all: Reformat C and Python source code with tools/codeformat.py.Damien George2020-02-28
* py/malloc: Put { on separate line for funcs that have selective sigs.Damien George2020-02-28
* py/malloc: Give a compile warning if using finaliser without GC.Damien George2018-07-09
* py/malloc: Remove unneeded code checking m_malloc return value.Damien George2017-12-20
* py/malloc: Allow to use debug logging if !MICROPY_MALLOC_USES_ALLOCATED_SIZE.Paul Sokolovsky2017-12-07
* py/malloc: MICROPY_MEM_STATS requires MICROPY_MALLOC_USES_ALLOCATED_SIZE.Paul Sokolovsky2017-12-07
* py: Make m_malloc_fail() have void return type, since it doesn't return.Damien George2017-08-31
* py: Add verbose debug compile-time flag MICROPY_DEBUG_VERBOSE.Stefan Naumann2017-08-15
* all: Use the name MicroPython consistently in commentsAlexander Steffen2017-07-31
* py/gc: Add MICROPY_GC_CONSERVATIVE_CLEAR option to always zero memory.Damien George2016-08-26
* py/malloc: Provide a proper malloc-based implementation of realloc_ext.Damien George2016-02-23
* py: Improve allocation policy of qstr data.Damien George2015-07-14
* py: Add MICROPY_MALLOC_USES_ALLOCATED_SIZE to allow simpler malloc API.Damien George2015-03-03
* py: Put all global state together in state structures.Damien George2015-01-07
* py: Move to guarded includes, everywhere in py/ core.Damien George2015-01-01
* py: Make gc.enable/disable just control auto-GC; alloc is still allowed.Damien George2014-10-31
* py: Clean up edge cases of malloc/realloc/free.Damien George2014-10-23
* py: For malloc and vstr functions, use size_t exclusively for int type.Damien George2014-09-25
* py: Include mpconfig.h before all other includes.Paul Sokolovsky2014-06-21
* Add license header to (almost) all files.Damien George2014-05-03
* py, gc: Only zero out the extra bytes at the end of the heap chunk.Damien George2014-04-26
* py, gc: Zero out newly allocated blocks in the GC.Damien George2014-04-25
* py: Check explicitly for memory allocation failure in parser.Damien George2014-04-10
* py: Add emergency exception object for when heap allocation fails.Damien George2014-04-10
* Improve GC finalisation code; add option to disable it.Damien George2014-04-05
* Merge pull request #425 from iabdalkader/delDamien George2014-04-05
|\
| * Implement delmux2014-04-03
* | py: Add m_malloc_fail function to handle memory allocation error.Damien George2014-04-04
|/
* py: Fix up so that it can compile without float.Damien George2014-04-02
* py: Clean up includes.xbe2014-03-17
* py: Remove name of var arg from macros with var args.Damien George2014-02-26
* Make DEBUG_printf() a proper function, implementation is port-dependent.Paul Sokolovsky2014-02-16
* Replace global "static" -> "STATIC", to allow "analysis builds". Part 2.Paul Sokolovsky2014-02-12
* Generalize malloc-via-gc-heap support, make it available to unix port.Paul Sokolovsky2014-02-11
* Get rid of calloc().Paul Sokolovsky2014-02-10
* realloc(): Log original memory ptr too.Paul Sokolovsky2014-01-30
* stm: Add optional memory debugging output.Damien George2014-01-29
* Rename default config file to mpconfig.h, and port's to mpconfigport.h.Paul Sokolovsky2014-01-03
* Make it possible to turn off collecting memory stats (MICROPY_MEM_STATS).Paul Sokolovsky2014-01-03
* Add new alloc metric: peak_bytes_allocated.Paul Sokolovsky2014-01-03
* Add new alloc metric: current_bytes_allocated.Paul Sokolovsky2014-01-03
* m_realloc: Account only allocation size difference in total_bytes_allocated.Paul Sokolovsky2014-01-03
* Change memory allocation API to require size for free and realloc.Damien2013-12-29
* Fix func decls with no arguments: () -> (void).Damien2013-10-23
* Initial commit.Damien2013-10-04