123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413 |
- /* mbed Microcontroller Library
- * Copyright (c) 2006-2016 ARM Limited
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
- #include "platform/mbed_mem_trace.h"
- #include "platform/mbed_stats.h"
- #include "platform/mbed_toolchain.h"
- #include "platform/SingletonPtr.h"
- #include "platform/PlatformMutex.h"
- #include <stddef.h>
- #include <stdio.h>
- #include <string.h>
- #include <stdlib.h>
- /* There are two memory tracers in mbed OS:
- - the first can be used to detect the maximum heap usage at runtime. It is
- activated by defining the MBED_HEAP_STATS_ENABLED macro.
- - the second can be used to trace each memory call by automatically invoking
- a callback on each memory operation (see hal/api/mbed_mem_trace.h). It is
- activated by defining the MBED_MEM_TRACING_ENABLED macro.
- Both tracers can be activated and deactivated in any combination. If both tracers
- are active, the second one (MBED_MEM_TRACING_ENABLED) will trace the first one's
- (MBED_HEAP_STATS_ENABLED) memory calls.*/
- /******************************************************************************/
- /* Implementation of the runtime max heap usage checker */
- /******************************************************************************/
- /* Size must be a multiple of 8 to keep alignment */
- typedef struct {
- uint32_t size;
- uint32_t pad;
- } alloc_info_t;
- #ifdef MBED_HEAP_STATS_ENABLED
- static SingletonPtr<PlatformMutex> malloc_stats_mutex;
- static mbed_stats_heap_t heap_stats = {0, 0, 0, 0, 0};
- #endif
- void mbed_stats_heap_get(mbed_stats_heap_t *stats)
- {
- #ifdef MBED_HEAP_STATS_ENABLED
- extern uint32_t mbed_heap_size;
- heap_stats.reserved_size = mbed_heap_size;
- malloc_stats_mutex->lock();
- memcpy(stats, &heap_stats, sizeof(mbed_stats_heap_t));
- malloc_stats_mutex->unlock();
- #else
- memset(stats, 0, sizeof(mbed_stats_heap_t));
- #endif
- }
- /******************************************************************************/
- /* GCC memory allocation wrappers */
- /******************************************************************************/
- #if defined(TOOLCHAIN_GCC)
- #ifdef FEATURE_UVISOR
- #include "uvisor-lib/uvisor-lib.h"
- #endif/* FEATURE_UVISOR */
- extern "C" {
- void *__real__malloc_r(struct _reent *r, size_t size);
- void *__real__memalign_r(struct _reent *r, size_t alignment, size_t bytes);
- void *__real__realloc_r(struct _reent *r, void *ptr, size_t size);
- void __real__free_r(struct _reent *r, void *ptr);
- void *__real__calloc_r(struct _reent *r, size_t nmemb, size_t size);
- void *malloc_wrapper(struct _reent *r, size_t size, void *caller);
- void free_wrapper(struct _reent *r, void *ptr, void *caller);
- }
- // TODO: memory tracing doesn't work with uVisor enabled.
- #if !defined(FEATURE_UVISOR)
- extern "C" void *__wrap__malloc_r(struct _reent *r, size_t size)
- {
- return malloc_wrapper(r, size, MBED_CALLER_ADDR());
- }
- extern "C" void *malloc_wrapper(struct _reent *r, size_t size, void *caller)
- {
- void *ptr = NULL;
- #ifdef MBED_MEM_TRACING_ENABLED
- mbed_mem_trace_lock();
- #endif
- #ifdef MBED_HEAP_STATS_ENABLED
- malloc_stats_mutex->lock();
- alloc_info_t *alloc_info = (alloc_info_t *)__real__malloc_r(r, size + sizeof(alloc_info_t));
- if (alloc_info != NULL) {
- alloc_info->size = size;
- ptr = (void *)(alloc_info + 1);
- heap_stats.current_size += size;
- heap_stats.total_size += size;
- heap_stats.alloc_cnt += 1;
- if (heap_stats.current_size > heap_stats.max_size) {
- heap_stats.max_size = heap_stats.current_size;
- }
- } else {
- heap_stats.alloc_fail_cnt += 1;
- }
- malloc_stats_mutex->unlock();
- #else // #ifdef MBED_HEAP_STATS_ENABLED
- ptr = __real__malloc_r(r, size);
- #endif // #ifdef MBED_HEAP_STATS_ENABLED
- #ifdef MBED_MEM_TRACING_ENABLED
- mbed_mem_trace_malloc(ptr, size, caller);
- mbed_mem_trace_unlock();
- #endif // #ifdef MBED_MEM_TRACING_ENABLED
- return ptr;
- }
- extern "C" void *__wrap__realloc_r(struct _reent *r, void *ptr, size_t size)
- {
- void *new_ptr = NULL;
- #ifdef MBED_MEM_TRACING_ENABLED
- mbed_mem_trace_lock();
- #endif
- #ifdef MBED_HEAP_STATS_ENABLED
- // Implement realloc_r with malloc and free.
- // The function realloc_r can't be used here directly since
- // it can call into __wrap__malloc_r (returns ptr + 4) or
- // resize memory directly (returns ptr + 0).
- // Note - no lock needed since malloc and free are thread safe
- // Get old size
- uint32_t old_size = 0;
- if (ptr != NULL) {
- alloc_info_t *alloc_info = ((alloc_info_t *)ptr) - 1;
- old_size = alloc_info->size;
- }
- // Allocate space
- if (size != 0) {
- new_ptr = malloc(size);
- }
- // If the new buffer has been allocated copy the data to it
- // and free the old buffer
- if (new_ptr != NULL) {
- uint32_t copy_size = (old_size < size) ? old_size : size;
- memcpy(new_ptr, (void *)ptr, copy_size);
- free(ptr);
- }
- #else // #ifdef MBED_HEAP_STATS_ENABLED
- new_ptr = __real__realloc_r(r, ptr, size);
- #endif // #ifdef MBED_HEAP_STATS_ENABLED
- #ifdef MBED_MEM_TRACING_ENABLED
- mbed_mem_trace_realloc(new_ptr, ptr, size, MBED_CALLER_ADDR());
- mbed_mem_trace_unlock();
- #endif // #ifdef MBED_MEM_TRACING_ENABLED
- return new_ptr;
- }
- extern "C" void __wrap__free_r(struct _reent *r, void *ptr)
- {
- free_wrapper(r, ptr, MBED_CALLER_ADDR());
- }
- extern "C" void free_wrapper(struct _reent *r, void *ptr, void *caller)
- {
- #ifdef MBED_MEM_TRACING_ENABLED
- mbed_mem_trace_lock();
- #endif
- #ifdef MBED_HEAP_STATS_ENABLED
- malloc_stats_mutex->lock();
- alloc_info_t *alloc_info = NULL;
- if (ptr != NULL) {
- alloc_info = ((alloc_info_t *)ptr) - 1;
- heap_stats.current_size -= alloc_info->size;
- heap_stats.alloc_cnt -= 1;
- }
- __real__free_r(r, (void *)alloc_info);
- malloc_stats_mutex->unlock();
- #else // #ifdef MBED_HEAP_STATS_ENABLED
- __real__free_r(r, ptr);
- #endif // #ifdef MBED_HEAP_STATS_ENABLED
- #ifdef MBED_MEM_TRACING_ENABLED
- mbed_mem_trace_free(ptr, caller);
- mbed_mem_trace_unlock();
- #endif // #ifdef MBED_MEM_TRACING_ENABLED
- }
- extern "C" void *__wrap__calloc_r(struct _reent *r, size_t nmemb, size_t size)
- {
- void *ptr = NULL;
- #ifdef MBED_MEM_TRACING_ENABLED
- mbed_mem_trace_lock();
- #endif
- #ifdef MBED_HEAP_STATS_ENABLED
- // Note - no lock needed since malloc is thread safe
- ptr = malloc(nmemb * size);
- if (ptr != NULL) {
- memset(ptr, 0, nmemb * size);
- }
- #else // #ifdef MBED_HEAP_STATS_ENABLED
- ptr = __real__calloc_r(r, nmemb, size);
- #endif // #ifdef MBED_HEAP_STATS_ENABLED
- #ifdef MBED_MEM_TRACING_ENABLED
- mbed_mem_trace_calloc(ptr, nmemb, size, MBED_CALLER_ADDR());
- mbed_mem_trace_unlock();
- #endif // #ifdef MBED_MEM_TRACING_ENABLED
- return ptr;
- }
- extern "C" void *__wrap__memalign_r(struct _reent *r, size_t alignment, size_t bytes)
- {
- return __real__memalign_r(r, alignment, bytes);
- }
- #endif // if !defined(FEATURE_UVISOR)
- /******************************************************************************/
- /* ARMCC / IAR memory allocation wrappers */
- /******************************************************************************/
- #elif defined(TOOLCHAIN_ARM) || defined(__ICCARM__)
- #if defined(TOOLCHAIN_ARM)
- #define SUPER_MALLOC $Super$$malloc
- #define SUB_MALLOC $Sub$$malloc
- #define SUPER_REALLOC $Super$$realloc
- #define SUB_REALLOC $Sub$$realloc
- #define SUPER_CALLOC $Super$$calloc
- #define SUB_CALLOC $Sub$$calloc
- #define SUPER_FREE $Super$$free
- #define SUB_FREE $Sub$$free
- #elif defined(__ICCARM__)
- #define SUPER_MALLOC $Super$$__iar_dlmalloc
- #define SUB_MALLOC $Sub$$__iar_dlmalloc
- #define SUPER_REALLOC $Super$$__iar_dlrealloc
- #define SUB_REALLOC $Sub$$__iar_dlrealloc
- #define SUPER_CALLOC $Super$$__iar_dlcalloc
- #define SUB_CALLOC $Sub$$__iar_dlcalloc
- #define SUPER_FREE $Super$$__iar_dlfree
- #define SUB_FREE $Sub$$__iar_dlfree
- #endif
- /* Enable hooking of memory function only if tracing is also enabled */
- #if defined(MBED_MEM_TRACING_ENABLED) || defined(MBED_HEAP_STATS_ENABLED)
- extern "C" {
- void *SUPER_MALLOC(size_t size);
- void *SUPER_REALLOC(void *ptr, size_t size);
- void *SUPER_CALLOC(size_t nmemb, size_t size);
- void SUPER_FREE(void *ptr);
- void *malloc_wrapper(size_t size, void *caller);
- void free_wrapper(void *ptr, void *caller);
- }
- extern "C" void *SUB_MALLOC(size_t size)
- {
- return malloc_wrapper(size, MBED_CALLER_ADDR());
- }
- extern "C" void *malloc_wrapper(size_t size, void *caller)
- {
- void *ptr = NULL;
- #ifdef MBED_MEM_TRACING_ENABLED
- mbed_mem_trace_lock();
- #endif
- #ifdef MBED_HEAP_STATS_ENABLED
- malloc_stats_mutex->lock();
- alloc_info_t *alloc_info = (alloc_info_t *)SUPER_MALLOC(size + sizeof(alloc_info_t));
- if (alloc_info != NULL) {
- alloc_info->size = size;
- ptr = (void *)(alloc_info + 1);
- heap_stats.current_size += size;
- heap_stats.total_size += size;
- heap_stats.alloc_cnt += 1;
- if (heap_stats.current_size > heap_stats.max_size) {
- heap_stats.max_size = heap_stats.current_size;
- }
- } else {
- heap_stats.alloc_fail_cnt += 1;
- }
- malloc_stats_mutex->unlock();
- #else // #ifdef MBED_HEAP_STATS_ENABLED
- ptr = SUPER_MALLOC(size);
- #endif // #ifdef MBED_HEAP_STATS_ENABLED
- #ifdef MBED_MEM_TRACING_ENABLED
- mbed_mem_trace_malloc(ptr, size, caller);
- mbed_mem_trace_unlock();
- #endif // #ifdef MBED_MEM_TRACING_ENABLED
- return ptr;
- }
- extern "C" void *SUB_REALLOC(void *ptr, size_t size)
- {
- void *new_ptr = NULL;
- #ifdef MBED_MEM_TRACING_ENABLED
- mbed_mem_trace_lock();
- #endif
- #ifdef MBED_HEAP_STATS_ENABLED
- // Note - no lock needed since malloc and free are thread safe
- // Get old size
- uint32_t old_size = 0;
- if (ptr != NULL) {
- alloc_info_t *alloc_info = ((alloc_info_t *)ptr) - 1;
- old_size = alloc_info->size;
- }
- // Allocate space
- if (size != 0) {
- new_ptr = malloc(size);
- }
- // If the new buffer has been allocated copy the data to it
- // and free the old buffer
- if (new_ptr != NULL) {
- uint32_t copy_size = (old_size < size) ? old_size : size;
- memcpy(new_ptr, (void *)ptr, copy_size);
- free(ptr);
- }
- #else // #ifdef MBED_HEAP_STATS_ENABLED
- new_ptr = SUPER_REALLOC(ptr, size);
- #endif // #ifdef MBED_HEAP_STATS_ENABLED
- #ifdef MBED_MEM_TRACING_ENABLED
- mbed_mem_trace_realloc(new_ptr, ptr, size, MBED_CALLER_ADDR());
- mbed_mem_trace_unlock();
- #endif // #ifdef MBED_MEM_TRACING_ENABLED
- return new_ptr;
- }
- extern "C" void *SUB_CALLOC(size_t nmemb, size_t size)
- {
- void *ptr = NULL;
- #ifdef MBED_MEM_TRACING_ENABLED
- mbed_mem_trace_lock();
- #endif
- #ifdef MBED_HEAP_STATS_ENABLED
- // Note - no lock needed since malloc is thread safe
- ptr = malloc(nmemb * size);
- if (ptr != NULL) {
- memset(ptr, 0, nmemb * size);
- }
- #else // #ifdef MBED_HEAP_STATS_ENABLED
- ptr = SUPER_CALLOC(nmemb, size);
- #endif // #ifdef MBED_HEAP_STATS_ENABLED
- #ifdef MBED_MEM_TRACING_ENABLED
- mbed_mem_trace_calloc(ptr, nmemb, size, MBED_CALLER_ADDR());
- mbed_mem_trace_unlock();
- #endif // #ifdef MBED_MEM_TRACING_ENABLED
- return ptr;
- }
- extern "C" void SUB_FREE(void *ptr)
- {
- free_wrapper(ptr, MBED_CALLER_ADDR());
- }
- extern "C" void free_wrapper(void *ptr, void *caller)
- {
- #ifdef MBED_MEM_TRACING_ENABLED
- mbed_mem_trace_lock();
- #endif
- #ifdef MBED_HEAP_STATS_ENABLED
- malloc_stats_mutex->lock();
- alloc_info_t *alloc_info = NULL;
- if (ptr != NULL) {
- alloc_info = ((alloc_info_t *)ptr) - 1;
- heap_stats.current_size -= alloc_info->size;
- heap_stats.alloc_cnt -= 1;
- }
- SUPER_FREE((void *)alloc_info);
- malloc_stats_mutex->unlock();
- #else // #ifdef MBED_HEAP_STATS_ENABLED
- SUPER_FREE(ptr);
- #endif // #ifdef MBED_HEAP_STATS_ENABLED
- #ifdef MBED_MEM_TRACING_ENABLED
- mbed_mem_trace_free(ptr, caller);
- mbed_mem_trace_unlock();
- #endif // #ifdef MBED_MEM_TRACING_ENABLED
- }
- #endif // #if defined(MBED_MEM_TRACING_ENABLED) || defined(MBED_HEAP_STATS_ENABLED)
- /******************************************************************************/
- /* Allocation wrappers for other toolchains are not supported yet */
- /******************************************************************************/
- #else
- #ifdef MBED_MEM_TRACING_ENABLED
- #error Memory tracing is not supported with the current toolchain.
- #endif
- #ifdef MBED_HEAP_STATS_ENABLED
- #error Heap statistics are not supported with the current toolchain.
- #endif
- #endif // #if defined(TOOLCHAIN_GCC)
|