2014-05-03 22:27:38 +00:00
|
|
|
/*
|
|
|
|
* This file is part of the Micro Python project, http://micropython.org/
|
|
|
|
*
|
|
|
|
* The MIT License (MIT)
|
|
|
|
*
|
|
|
|
* Copyright (c) 2013, 2014 Damien P. George
|
|
|
|
*
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
* of this software and associated documentation files (the "Software"), to deal
|
|
|
|
* in the Software without restriction, including without limitation the rights
|
|
|
|
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
* copies of the Software, and to permit persons to whom the Software is
|
|
|
|
* furnished to do so, subject to the following conditions:
|
|
|
|
*
|
|
|
|
* The above copyright notice and this permission notice shall be included in
|
|
|
|
* all copies or substantial portions of the Software.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
|
|
* THE SOFTWARE.
|
|
|
|
*/
|
|
|
|
|
2013-10-04 18:53:11 +00:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
2014-02-10 16:37:11 +00:00
|
|
|
#include <string.h>
|
2013-10-04 18:53:11 +00:00
|
|
|
|
2014-01-03 01:06:25 +00:00
|
|
|
#include "mpconfig.h"
|
2014-06-21 19:43:22 +00:00
|
|
|
#include "misc.h"
|
2013-10-04 18:53:11 +00:00
|
|
|
|
2014-01-29 20:33:20 +00:00
|
|
|
#if 0 // print debugging info
|
2014-02-16 16:11:42 +00:00
|
|
|
#define DEBUG_printf DEBUG_printf
|
2014-01-29 20:33:20 +00:00
|
|
|
#else // don't print debugging info
|
2014-02-26 16:57:08 +00:00
|
|
|
#define DEBUG_printf(...) (void)0
|
2014-01-29 20:33:20 +00:00
|
|
|
#endif
|
|
|
|
|
2014-01-03 01:06:25 +00:00
|
|
|
#if MICROPY_MEM_STATS
|
2014-02-12 16:31:30 +00:00
|
|
|
STATIC int total_bytes_allocated = 0;
|
|
|
|
STATIC int current_bytes_allocated = 0;
|
|
|
|
STATIC int peak_bytes_allocated = 0;
|
2014-01-01 21:42:21 +00:00
|
|
|
|
|
|
|
#define UPDATE_PEAK() { if (current_bytes_allocated > peak_bytes_allocated) peak_bytes_allocated = current_bytes_allocated; }
|
2014-01-03 01:06:25 +00:00
|
|
|
#endif
|
2013-10-04 18:53:11 +00:00
|
|
|
|
2014-02-10 20:37:09 +00:00
|
|
|
#if MICROPY_ENABLE_GC
|
|
|
|
#include "gc.h"
|
|
|
|
|
|
|
|
// We redirect standard alloc functions to GC heap - just for the rest of
|
|
|
|
// this module. In the rest of micropython source, system malloc can be
|
|
|
|
// freely accessed - for interfacing with system and 3rd-party libs for
|
|
|
|
// example. On the other hand, some (e.g. bare-metal) ports may use GC
|
|
|
|
// heap as system heap, so, to avoid warnings, we do undef's first.
|
|
|
|
#undef malloc
|
|
|
|
#undef free
|
|
|
|
#undef realloc
|
2014-04-05 19:35:48 +00:00
|
|
|
#define malloc(b) gc_alloc((b), false)
|
|
|
|
#define malloc_with_finaliser(b) gc_alloc((b), true)
|
2014-02-10 20:37:09 +00:00
|
|
|
#define free gc_free
|
|
|
|
#define realloc gc_realloc
|
|
|
|
#endif // MICROPY_ENABLE_GC
|
|
|
|
|
2013-10-04 18:53:11 +00:00
|
|
|
void *m_malloc(int num_bytes) {
|
|
|
|
if (num_bytes == 0) {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
void *ptr = malloc(num_bytes);
|
|
|
|
if (ptr == NULL) {
|
2014-04-04 10:52:59 +00:00
|
|
|
return m_malloc_fail(num_bytes);
|
2013-10-04 18:53:11 +00:00
|
|
|
}
|
2014-01-03 01:06:25 +00:00
|
|
|
#if MICROPY_MEM_STATS
|
2013-10-04 18:53:11 +00:00
|
|
|
total_bytes_allocated += num_bytes;
|
2014-01-01 21:15:47 +00:00
|
|
|
current_bytes_allocated += num_bytes;
|
2014-01-01 21:42:21 +00:00
|
|
|
UPDATE_PEAK();
|
2014-01-03 01:06:25 +00:00
|
|
|
#endif
|
2014-01-29 20:33:20 +00:00
|
|
|
DEBUG_printf("malloc %d : %p\n", num_bytes, ptr);
|
2013-10-04 18:53:11 +00:00
|
|
|
return ptr;
|
2014-04-10 13:38:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void *m_malloc_maybe(int num_bytes) {
|
|
|
|
void *ptr = malloc(num_bytes);
|
|
|
|
if (ptr == NULL) {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
#if MICROPY_MEM_STATS
|
|
|
|
total_bytes_allocated += num_bytes;
|
|
|
|
current_bytes_allocated += num_bytes;
|
|
|
|
UPDATE_PEAK();
|
|
|
|
#endif
|
|
|
|
DEBUG_printf("malloc %d : %p\n", num_bytes, ptr);
|
|
|
|
return ptr;
|
2013-10-04 18:53:11 +00:00
|
|
|
}
|
|
|
|
|
2014-04-05 19:35:48 +00:00
|
|
|
#if MICROPY_ENABLE_FINALISER
|
|
|
|
void *m_malloc_with_finaliser(int num_bytes) {
|
2014-04-03 21:55:12 +00:00
|
|
|
if (num_bytes == 0) {
|
|
|
|
return NULL;
|
|
|
|
}
|
2014-04-05 19:35:48 +00:00
|
|
|
void *ptr = malloc_with_finaliser(num_bytes);
|
2014-04-03 21:55:12 +00:00
|
|
|
if (ptr == NULL) {
|
2014-04-05 19:35:48 +00:00
|
|
|
return m_malloc_fail(num_bytes);
|
2014-04-03 21:55:12 +00:00
|
|
|
}
|
|
|
|
#if MICROPY_MEM_STATS
|
|
|
|
total_bytes_allocated += num_bytes;
|
|
|
|
current_bytes_allocated += num_bytes;
|
|
|
|
UPDATE_PEAK();
|
|
|
|
#endif
|
|
|
|
DEBUG_printf("malloc %d : %p\n", num_bytes, ptr);
|
|
|
|
return ptr;
|
|
|
|
}
|
2014-04-05 19:35:48 +00:00
|
|
|
#endif
|
2014-04-03 21:55:12 +00:00
|
|
|
|
2013-10-04 18:53:11 +00:00
|
|
|
void *m_malloc0(int num_bytes) {
|
2014-02-10 16:37:11 +00:00
|
|
|
void *ptr = m_malloc(num_bytes);
|
|
|
|
if (ptr != NULL) {
|
|
|
|
memset(ptr, 0, num_bytes);
|
2013-10-04 18:53:11 +00:00
|
|
|
}
|
|
|
|
return ptr;
|
|
|
|
}
|
|
|
|
|
2013-12-29 19:33:23 +00:00
|
|
|
void *m_realloc(void *ptr, int old_num_bytes, int new_num_bytes) {
|
|
|
|
if (new_num_bytes == 0) {
|
2013-10-04 18:53:11 +00:00
|
|
|
free(ptr);
|
|
|
|
return NULL;
|
|
|
|
}
|
2014-01-30 01:58:17 +00:00
|
|
|
void *new_ptr = realloc(ptr, new_num_bytes);
|
|
|
|
if (new_ptr == NULL) {
|
2014-04-04 10:52:59 +00:00
|
|
|
return m_malloc_fail(new_num_bytes);
|
2013-10-04 18:53:11 +00:00
|
|
|
}
|
2014-04-10 14:27:31 +00:00
|
|
|
#if MICROPY_MEM_STATS
|
|
|
|
// At first thought, "Total bytes allocated" should only grow,
|
|
|
|
// after all, it's *total*. But consider for example 2K block
|
|
|
|
// shrunk to 1K and then grown to 2K again. It's still 2K
|
|
|
|
// allocated total. If we process only positive increments,
|
|
|
|
// we'll count 3K.
|
|
|
|
int diff = new_num_bytes - old_num_bytes;
|
|
|
|
total_bytes_allocated += diff;
|
|
|
|
current_bytes_allocated += diff;
|
|
|
|
UPDATE_PEAK();
|
|
|
|
#endif
|
|
|
|
DEBUG_printf("realloc %p, %d, %d : %p\n", ptr, old_num_bytes, new_num_bytes, new_ptr);
|
|
|
|
return new_ptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
void *m_realloc_maybe(void *ptr, int old_num_bytes, int new_num_bytes) {
|
|
|
|
void *new_ptr = realloc(ptr, new_num_bytes);
|
|
|
|
if (new_ptr == NULL) {
|
|
|
|
return NULL;
|
|
|
|
}
|
2014-01-03 01:06:25 +00:00
|
|
|
#if MICROPY_MEM_STATS
|
2014-01-01 21:04:25 +00:00
|
|
|
// At first thought, "Total bytes allocated" should only grow,
|
|
|
|
// after all, it's *total*. But consider for example 2K block
|
|
|
|
// shrunk to 1K and then grown to 2K again. It's still 2K
|
|
|
|
// allocated total. If we process only positive increments,
|
|
|
|
// we'll count 3K.
|
2014-01-01 21:15:47 +00:00
|
|
|
int diff = new_num_bytes - old_num_bytes;
|
|
|
|
total_bytes_allocated += diff;
|
|
|
|
current_bytes_allocated += diff;
|
2014-01-01 21:42:21 +00:00
|
|
|
UPDATE_PEAK();
|
2014-01-03 01:06:25 +00:00
|
|
|
#endif
|
2014-01-30 01:58:17 +00:00
|
|
|
DEBUG_printf("realloc %p, %d, %d : %p\n", ptr, old_num_bytes, new_num_bytes, new_ptr);
|
|
|
|
return new_ptr;
|
2013-10-04 18:53:11 +00:00
|
|
|
}
|
|
|
|
|
2013-12-29 19:33:23 +00:00
|
|
|
void m_free(void *ptr, int num_bytes) {
|
|
|
|
if (ptr != NULL) {
|
|
|
|
free(ptr);
|
|
|
|
}
|
2014-01-03 01:06:25 +00:00
|
|
|
#if MICROPY_MEM_STATS
|
2014-01-01 21:15:47 +00:00
|
|
|
current_bytes_allocated -= num_bytes;
|
2014-01-03 01:06:25 +00:00
|
|
|
#endif
|
2014-01-29 20:33:20 +00:00
|
|
|
DEBUG_printf("free %p, %d\n", ptr, num_bytes);
|
2013-12-29 19:33:23 +00:00
|
|
|
}
|
|
|
|
|
2013-10-23 19:20:17 +00:00
|
|
|
int m_get_total_bytes_allocated(void) {
|
2014-01-03 01:06:25 +00:00
|
|
|
#if MICROPY_MEM_STATS
|
2013-10-04 18:53:11 +00:00
|
|
|
return total_bytes_allocated;
|
2014-01-03 01:06:25 +00:00
|
|
|
#else
|
|
|
|
return -1;
|
|
|
|
#endif
|
2013-10-04 18:53:11 +00:00
|
|
|
}
|
2014-01-01 21:15:47 +00:00
|
|
|
|
|
|
|
int m_get_current_bytes_allocated(void) {
|
2014-01-03 01:06:25 +00:00
|
|
|
#if MICROPY_MEM_STATS
|
2014-01-01 21:15:47 +00:00
|
|
|
return current_bytes_allocated;
|
2014-01-03 01:06:25 +00:00
|
|
|
#else
|
|
|
|
return -1;
|
|
|
|
#endif
|
2014-01-01 21:15:47 +00:00
|
|
|
}
|
2014-01-01 21:42:21 +00:00
|
|
|
|
|
|
|
int m_get_peak_bytes_allocated(void) {
|
2014-01-03 01:06:25 +00:00
|
|
|
#if MICROPY_MEM_STATS
|
2014-01-01 21:42:21 +00:00
|
|
|
return peak_bytes_allocated;
|
2014-01-03 01:06:25 +00:00
|
|
|
#else
|
|
|
|
return -1;
|
|
|
|
#endif
|
2014-01-01 21:42:21 +00:00
|
|
|
}
|