001

Committer:
ganlikun
Date:
Sun Jun 12 14:02:44 2022 +0000
Revision:
0:13413ea9a877
00

Who changed what in which revision?

UserRevisionLine numberNew contents of line
ganlikun 0:13413ea9a877 1 /* mbed Microcontroller Library
ganlikun 0:13413ea9a877 2 * Copyright (c) 2006-2016 ARM Limited
ganlikun 0:13413ea9a877 3 *
ganlikun 0:13413ea9a877 4 * Licensed under the Apache License, Version 2.0 (the "License");
ganlikun 0:13413ea9a877 5 * you may not use this file except in compliance with the License.
ganlikun 0:13413ea9a877 6 * You may obtain a copy of the License at
ganlikun 0:13413ea9a877 7 *
ganlikun 0:13413ea9a877 8 * http://www.apache.org/licenses/LICENSE-2.0
ganlikun 0:13413ea9a877 9 *
ganlikun 0:13413ea9a877 10 * Unless required by applicable law or agreed to in writing, software
ganlikun 0:13413ea9a877 11 * distributed under the License is distributed on an "AS IS" BASIS,
ganlikun 0:13413ea9a877 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
ganlikun 0:13413ea9a877 13 * See the License for the specific language governing permissions and
ganlikun 0:13413ea9a877 14 * limitations under the License.
ganlikun 0:13413ea9a877 15 */
ganlikun 0:13413ea9a877 16
ganlikun 0:13413ea9a877 17 #include <stdlib.h>
ganlikun 0:13413ea9a877 18 #include <stdarg.h>
ganlikun 0:13413ea9a877 19 #include <stdio.h>
ganlikun 0:13413ea9a877 20 #include "platform/mbed_mem_trace.h"
ganlikun 0:13413ea9a877 21 #include "platform/mbed_critical.h"
ganlikun 0:13413ea9a877 22
ganlikun 0:13413ea9a877 23 /******************************************************************************
ganlikun 0:13413ea9a877 24 * Internal variables, functions and helpers
ganlikun 0:13413ea9a877 25 *****************************************************************************/
ganlikun 0:13413ea9a877 26
ganlikun 0:13413ea9a877 27 /* The callback function that will be called after a traced memory operations finishes. */
ganlikun 0:13413ea9a877 28 static mbed_mem_trace_cb_t mem_trace_cb;
ganlikun 0:13413ea9a877 29 /* 'trave_level' guards "trace inside trace" situations (for example, the implementation
ganlikun 0:13413ea9a877 30 * of realloc() might call malloc() internally, and since malloc() is also traced, this could
ganlikun 0:13413ea9a877 31 * result in two calls to the callback function instead of one. */
ganlikun 0:13413ea9a877 32 static uint8_t trace_level;
ganlikun 0:13413ea9a877 33
ganlikun 0:13413ea9a877 34 /******************************************************************************
ganlikun 0:13413ea9a877 35 * Public interface
ganlikun 0:13413ea9a877 36 *****************************************************************************/
ganlikun 0:13413ea9a877 37
ganlikun 0:13413ea9a877 38 void mbed_mem_trace_set_callback(mbed_mem_trace_cb_t cb) {
ganlikun 0:13413ea9a877 39 mem_trace_cb = cb;
ganlikun 0:13413ea9a877 40 }
ganlikun 0:13413ea9a877 41
ganlikun 0:13413ea9a877 42 void *mbed_mem_trace_malloc(void *res, size_t size, void *caller) {
ganlikun 0:13413ea9a877 43 if (mem_trace_cb) {
ganlikun 0:13413ea9a877 44 if (core_util_atomic_incr_u8(&trace_level, 1) == 1) {
ganlikun 0:13413ea9a877 45 mem_trace_cb(MBED_MEM_TRACE_MALLOC, res, caller, size);
ganlikun 0:13413ea9a877 46 }
ganlikun 0:13413ea9a877 47 core_util_atomic_decr_u8(&trace_level, 1);
ganlikun 0:13413ea9a877 48 }
ganlikun 0:13413ea9a877 49 return res;
ganlikun 0:13413ea9a877 50 }
ganlikun 0:13413ea9a877 51
ganlikun 0:13413ea9a877 52 void *mbed_mem_trace_realloc(void *res, void *ptr, size_t size, void *caller) {
ganlikun 0:13413ea9a877 53 if (mem_trace_cb) {
ganlikun 0:13413ea9a877 54 if (core_util_atomic_incr_u8(&trace_level, 1) == 1) {
ganlikun 0:13413ea9a877 55 mem_trace_cb(MBED_MEM_TRACE_REALLOC, res, caller, ptr, size);
ganlikun 0:13413ea9a877 56 }
ganlikun 0:13413ea9a877 57 core_util_atomic_decr_u8(&trace_level, 1);
ganlikun 0:13413ea9a877 58 }
ganlikun 0:13413ea9a877 59 return res;
ganlikun 0:13413ea9a877 60 }
ganlikun 0:13413ea9a877 61
ganlikun 0:13413ea9a877 62 void *mbed_mem_trace_calloc(void *res, size_t num, size_t size, void *caller) {
ganlikun 0:13413ea9a877 63 if (mem_trace_cb) {
ganlikun 0:13413ea9a877 64 if (core_util_atomic_incr_u8(&trace_level, 1) == 1) {
ganlikun 0:13413ea9a877 65 mem_trace_cb(MBED_MEM_TRACE_CALLOC, res, caller, num, size);
ganlikun 0:13413ea9a877 66 }
ganlikun 0:13413ea9a877 67 core_util_atomic_decr_u8(&trace_level, 1);
ganlikun 0:13413ea9a877 68 }
ganlikun 0:13413ea9a877 69 return res;
ganlikun 0:13413ea9a877 70 }
ganlikun 0:13413ea9a877 71
ganlikun 0:13413ea9a877 72 void mbed_mem_trace_free(void *ptr, void *caller) {
ganlikun 0:13413ea9a877 73 if (mem_trace_cb) {
ganlikun 0:13413ea9a877 74 if (core_util_atomic_incr_u8(&trace_level, 1) == 1) {
ganlikun 0:13413ea9a877 75 mem_trace_cb(MBED_MEM_TRACE_FREE, NULL, caller, ptr);
ganlikun 0:13413ea9a877 76 }
ganlikun 0:13413ea9a877 77 core_util_atomic_decr_u8(&trace_level, 1);
ganlikun 0:13413ea9a877 78 }
ganlikun 0:13413ea9a877 79 }
ganlikun 0:13413ea9a877 80
ganlikun 0:13413ea9a877 81 void mbed_mem_trace_default_callback(uint8_t op, void *res, void *caller, ...) {
ganlikun 0:13413ea9a877 82 va_list va;
ganlikun 0:13413ea9a877 83 size_t temp_s1, temp_s2;
ganlikun 0:13413ea9a877 84 void *temp_ptr;
ganlikun 0:13413ea9a877 85
ganlikun 0:13413ea9a877 86 va_start(va, caller);
ganlikun 0:13413ea9a877 87 switch(op) {
ganlikun 0:13413ea9a877 88 case MBED_MEM_TRACE_MALLOC:
ganlikun 0:13413ea9a877 89 temp_s1 = va_arg(va, size_t);
ganlikun 0:13413ea9a877 90 printf(MBED_MEM_DEFAULT_TRACER_PREFIX "m:%p;%p-%u\n", res, caller, temp_s1);
ganlikun 0:13413ea9a877 91 break;
ganlikun 0:13413ea9a877 92
ganlikun 0:13413ea9a877 93 case MBED_MEM_TRACE_REALLOC:
ganlikun 0:13413ea9a877 94 temp_ptr = va_arg(va, void*);
ganlikun 0:13413ea9a877 95 temp_s1 = va_arg(va, size_t);
ganlikun 0:13413ea9a877 96 printf(MBED_MEM_DEFAULT_TRACER_PREFIX "r:%p;%p-%p;%u\n", res, caller, temp_ptr, temp_s1);
ganlikun 0:13413ea9a877 97 break;
ganlikun 0:13413ea9a877 98
ganlikun 0:13413ea9a877 99 case MBED_MEM_TRACE_CALLOC:
ganlikun 0:13413ea9a877 100 temp_s1 = va_arg(va, size_t);
ganlikun 0:13413ea9a877 101 temp_s2 = va_arg(va, size_t);
ganlikun 0:13413ea9a877 102 printf(MBED_MEM_DEFAULT_TRACER_PREFIX "c:%p;%p-%u;%u\n", res, caller, temp_s1, temp_s2);
ganlikun 0:13413ea9a877 103 break;
ganlikun 0:13413ea9a877 104
ganlikun 0:13413ea9a877 105 case MBED_MEM_TRACE_FREE:
ganlikun 0:13413ea9a877 106 temp_ptr = va_arg(va, void*);
ganlikun 0:13413ea9a877 107 printf(MBED_MEM_DEFAULT_TRACER_PREFIX "f:%p;%p-%p\n", res, caller, temp_ptr);
ganlikun 0:13413ea9a877 108 break;
ganlikun 0:13413ea9a877 109
ganlikun 0:13413ea9a877 110 default:
ganlikun 0:13413ea9a877 111 printf("?\n");
ganlikun 0:13413ea9a877 112 }
ganlikun 0:13413ea9a877 113 va_end(va);
ganlikun 0:13413ea9a877 114 }
ganlikun 0:13413ea9a877 115
ganlikun 0:13413ea9a877 116