2013-10-04 14:53:11 -04:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
|
|
|
#include "misc.h"
|
2014-01-02 20:06:25 -05:00
|
|
|
#include "mpconfig.h"
|
2013-10-04 14:53:11 -04:00
|
|
|
|
2014-01-02 20:06:25 -05:00
|
|
|
#if MICROPY_MEM_STATS
|
2013-10-04 14:53:11 -04:00
|
|
|
static int total_bytes_allocated = 0;
|
2014-01-01 16:15:47 -05:00
|
|
|
static int current_bytes_allocated = 0;
|
2014-01-01 16:42:21 -05:00
|
|
|
static int peak_bytes_allocated = 0;
|
|
|
|
|
|
|
|
#define UPDATE_PEAK() { if (current_bytes_allocated > peak_bytes_allocated) peak_bytes_allocated = current_bytes_allocated; }
|
2014-01-02 20:06:25 -05:00
|
|
|
#endif
|
2013-10-04 14:53:11 -04:00
|
|
|
|
|
|
|
void *m_malloc(int num_bytes) {
|
|
|
|
if (num_bytes == 0) {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
void *ptr = malloc(num_bytes);
|
|
|
|
if (ptr == NULL) {
|
|
|
|
printf("could not allocate memory, allocating %d bytes\n", num_bytes);
|
|
|
|
return NULL;
|
|
|
|
}
|
2014-01-02 20:06:25 -05:00
|
|
|
#if MICROPY_MEM_STATS
|
2013-10-04 14:53:11 -04:00
|
|
|
total_bytes_allocated += num_bytes;
|
2014-01-01 16:15:47 -05:00
|
|
|
current_bytes_allocated += num_bytes;
|
2014-01-01 16:42:21 -05:00
|
|
|
UPDATE_PEAK();
|
2014-01-02 20:06:25 -05:00
|
|
|
#endif
|
2013-10-04 14:53:11 -04:00
|
|
|
return ptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
void *m_malloc0(int num_bytes) {
|
|
|
|
if (num_bytes == 0) {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
void *ptr = calloc(1, num_bytes);
|
|
|
|
if (ptr == NULL) {
|
|
|
|
printf("could not allocate memory, allocating %d bytes\n", num_bytes);
|
|
|
|
return NULL;
|
|
|
|
}
|
2014-01-02 20:06:25 -05:00
|
|
|
#if MICROPY_MEM_STATS
|
2013-10-04 14:53:11 -04:00
|
|
|
total_bytes_allocated += num_bytes;
|
2014-01-01 16:15:47 -05:00
|
|
|
current_bytes_allocated += num_bytes;
|
2014-01-01 16:42:21 -05:00
|
|
|
UPDATE_PEAK();
|
2014-01-02 20:06:25 -05:00
|
|
|
#endif
|
2013-10-04 14:53:11 -04:00
|
|
|
return ptr;
|
|
|
|
}
|
|
|
|
|
2013-12-29 14:33:23 -05:00
|
|
|
void *m_realloc(void *ptr, int old_num_bytes, int new_num_bytes) {
|
|
|
|
if (new_num_bytes == 0) {
|
2013-10-04 14:53:11 -04:00
|
|
|
free(ptr);
|
|
|
|
return NULL;
|
|
|
|
}
|
2013-12-29 14:33:23 -05:00
|
|
|
ptr = realloc(ptr, new_num_bytes);
|
2013-10-04 14:53:11 -04:00
|
|
|
if (ptr == NULL) {
|
2013-12-29 14:33:23 -05:00
|
|
|
printf("could not allocate memory, reallocating %d bytes\n", new_num_bytes);
|
2013-10-04 14:53:11 -04:00
|
|
|
return NULL;
|
|
|
|
}
|
2014-01-02 20:06:25 -05:00
|
|
|
#if MICROPY_MEM_STATS
|
2014-01-01 16:04:25 -05: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 16:15:47 -05:00
|
|
|
int diff = new_num_bytes - old_num_bytes;
|
|
|
|
total_bytes_allocated += diff;
|
|
|
|
current_bytes_allocated += diff;
|
2014-01-01 16:42:21 -05:00
|
|
|
UPDATE_PEAK();
|
2014-01-02 20:06:25 -05:00
|
|
|
#endif
|
2013-10-04 14:53:11 -04:00
|
|
|
return ptr;
|
|
|
|
}
|
|
|
|
|
2013-12-29 14:33:23 -05:00
|
|
|
void m_free(void *ptr, int num_bytes) {
|
|
|
|
if (ptr != NULL) {
|
|
|
|
free(ptr);
|
|
|
|
}
|
2014-01-02 20:06:25 -05:00
|
|
|
#if MICROPY_MEM_STATS
|
2014-01-01 16:15:47 -05:00
|
|
|
current_bytes_allocated -= num_bytes;
|
2014-01-02 20:06:25 -05:00
|
|
|
#endif
|
2013-12-29 14:33:23 -05:00
|
|
|
}
|
|
|
|
|
2013-10-23 15:20:17 -04:00
|
|
|
int m_get_total_bytes_allocated(void) {
|
2014-01-02 20:06:25 -05:00
|
|
|
#if MICROPY_MEM_STATS
|
2013-10-04 14:53:11 -04:00
|
|
|
return total_bytes_allocated;
|
2014-01-02 20:06:25 -05:00
|
|
|
#else
|
|
|
|
return -1;
|
|
|
|
#endif
|
2013-10-04 14:53:11 -04:00
|
|
|
}
|
2014-01-01 16:15:47 -05:00
|
|
|
|
|
|
|
int m_get_current_bytes_allocated(void) {
|
2014-01-02 20:06:25 -05:00
|
|
|
#if MICROPY_MEM_STATS
|
2014-01-01 16:15:47 -05:00
|
|
|
return current_bytes_allocated;
|
2014-01-02 20:06:25 -05:00
|
|
|
#else
|
|
|
|
return -1;
|
|
|
|
#endif
|
2014-01-01 16:15:47 -05:00
|
|
|
}
|
2014-01-01 16:42:21 -05:00
|
|
|
|
|
|
|
int m_get_peak_bytes_allocated(void) {
|
2014-01-02 20:06:25 -05:00
|
|
|
#if MICROPY_MEM_STATS
|
2014-01-01 16:42:21 -05:00
|
|
|
return peak_bytes_allocated;
|
2014-01-02 20:06:25 -05:00
|
|
|
#else
|
|
|
|
return -1;
|
|
|
|
#endif
|
2014-01-01 16:42:21 -05:00
|
|
|
}
|