/* * SPDX-FileCopyrightText: 2015-2024 Espressif Systems (Shanghai) CO LTD * * SPDX-License-Identifier: Apache-2.0 *//* ... */#pragmaonce#include"sdkconfig.h"#include"sys/queue.h"#include<stdint.h>#include<esp_err.h>#ifdef__cplusplusextern"C"{#endif#if!defined(CONFIG_HEAP_TRACING)&&!defined(HEAP_TRACE_SRCFILE)#warning"esp_heap_trace.h is included but heap tracing is disabled in menuconfig, functions are no-ops"#endif#ifndefCONFIG_HEAP_TRACING_STACK_DEPTH#defineCONFIG_HEAP_TRACING_STACK_DEPTH0#endiftypedefenum{HEAP_TRACE_ALL,HEAP_TRACE_LEAKS,}{ ... }heap_trace_mode_t;/** * @brief Trace record data type. Stores information about an allocated region of memory. *//* ... */typedefstructheap_trace_record_t{uint32_tccount;///< CCOUNT of the CPU when the allocation was made. LSB (bit value 1) is the CPU number (0 or 1).void*address;///< Address which was allocated. If NULL, then this record is empty.size_tsize;///< Size of the allocationvoid*alloced_by[CONFIG_HEAP_TRACING_STACK_DEPTH];///< Call stack of the caller which allocated the memory.void*freed_by[CONFIG_HEAP_TRACING_STACK_DEPTH];///< Call stack of the caller which freed the memory (all zero if not freed.)#ifCONFIG_HEAP_TRACING_STANDALONETAILQ_ENTRY(heap_trace_record_t)tailq_list;///< Linked list: prev & next records#ifCONFIG_HEAP_TRACE_HASH_MAPSLIST_ENTRY(heap_trace_record_t)slist_hashmap;///< Linked list: next in hashmap entry list#endif// CONFIG_HEAP_TRACE_HASH_MAP/* ... */#endif// CONFIG_HEAP_TRACING_STANDALONE}{ ... }heap_trace_record_t;/** * @brief Stores information about the result of a heap trace. *//* ... */typedefstruct{heap_trace_mode_tmode;///< The heap trace mode we just completed / are runningsize_ttotal_allocations;///< The total number of allocations made during tracingsize_ttotal_frees;///< The total number of frees made during tracingsize_tcount;///< The number of records in the internal buffersize_tcapacity;///< The capacity of the internal buffersize_thigh_water_mark;///< The maximum value that 'count' got tosize_thas_overflowed;///< True if the internal buffer overflowed at some point#ifCONFIG_HEAP_TRACE_HASH_MAPsize_ttotal_hashmap_hits;///< If hashmap is used, the total number of hitssize_ttotal_hashmap_miss;///< If hashmap is used, the total number of misses (possibly due to overflow)/* ... */#endif}{ ... }heap_trace_summary_t;/** * @brief Initialise heap tracing in standalone mode. * * This function must be called before any other heap tracing functions. * * To disable heap tracing and allow the buffer to be freed, stop tracing and then call heap_trace_init_standalone(NULL, 0); * * @param record_buffer Provide a buffer to use for heap trace data. * Note: External RAM is allowed, but it prevents recording allocations made from ISR's. * @param num_records Size of the heap trace buffer, as number of record structures. * @return * - ESP_ERR_NOT_SUPPORTED Project was compiled without heap tracing enabled in menuconfig. * - ESP_ERR_INVALID_STATE Heap tracing is currently in progress. * - ESP_OK Heap tracing initialised successfully. *//* ... */esp_err_theap_trace_init_standalone(heap_trace_record_t*record_buffer,size_tnum_records);/** * @brief Initialise heap tracing in host-based mode. * * This function must be called before any other heap tracing functions. * * @return * - ESP_ERR_INVALID_STATE Heap tracing is currently in progress. * - ESP_OK Heap tracing initialised successfully. *//* ... */esp_err_theap_trace_init_tohost(void);/** * @brief Start heap tracing. All heap allocations & frees will be traced, until heap_trace_stop() is called. * * @note heap_trace_init_standalone() must be called to provide a valid buffer, before this function is called. * * @note Calling this function while heap tracing is running will reset the heap trace state and continue tracing. * * @param mode Mode for tracing. * - HEAP_TRACE_ALL means all heap allocations and frees are traced. * - HEAP_TRACE_LEAKS means only suspected memory leaks are traced. (When memory is freed, the record is removed from the trace buffer.) * @return * - ESP_ERR_NOT_SUPPORTED Project was compiled without heap tracing enabled in menuconfig. * - ESP_ERR_INVALID_STATE A non-zero-length buffer has not been set via heap_trace_init_standalone(). * - ESP_OK Tracing is started. *//* ... */esp_err_theap_trace_start(heap_trace_mode_tmode);/** * @brief Stop heap tracing. * * @return * - ESP_ERR_NOT_SUPPORTED Project was compiled without heap tracing enabled in menuconfig. * - ESP_ERR_INVALID_STATE Heap tracing was not in progress. * - ESP_OK Heap tracing stopped. *//* ... */esp_err_theap_trace_stop(void);/** * @brief Pause heap tracing of allocations. * * @note This function puts the heap tracing in the state where the new allocations * will no longer be traced but the free will still be. This can be used to e.g., * strategically monitor a set of allocations to make sure each of them will get freed * without polluting the list of records with unwanted allocations. * * @return * - ESP_ERR_NOT_SUPPORTED Project was compiled without heap tracing enabled in menuconfig. * - ESP_ERR_INVALID_STATE Heap tracing was not in progress. * - ESP_OK Heap tracing paused. *//* ... */esp_err_theap_trace_alloc_pause(void);/** * @brief Resume heap tracing which was previously stopped. * * Unlike heap_trace_start(), this function does not clear the * buffer of any pre-existing trace records. * * The heap trace mode is the same as when heap_trace_start() was * last called (or HEAP_TRACE_ALL if heap_trace_start() was never called). * * @return * - ESP_ERR_NOT_SUPPORTED Project was compiled without heap tracing enabled in menuconfig. * - ESP_ERR_INVALID_STATE Heap tracing was already started. * - ESP_OK Heap tracing resumed. *//* ... */esp_err_theap_trace_resume(void);/** * @brief Return number of records in the heap trace buffer * * It is safe to call this function while heap tracing is running. *//* ... */size_theap_trace_get_count(void);/** * @brief Return a raw record from the heap trace buffer * * @note It is safe to call this function while heap tracing is * running, however in HEAP_TRACE_LEAK mode record indexing may * skip entries unless heap tracing is stopped first. * * @param index Index (zero-based) of the record to return. * @param[out] record Record where the heap trace record will be copied. * @return * - ESP_ERR_NOT_SUPPORTED Project was compiled without heap tracing enabled in menuconfig. * - ESP_ERR_INVALID_STATE Heap tracing was not initialised. * - ESP_ERR_INVALID_ARG Index is out of bounds for current heap trace record count. * - ESP_OK Record returned successfully. *//* ... */esp_err_theap_trace_get(size_tindex,heap_trace_record_t*record);/** * @brief Dump heap trace record data to stdout * * @note It is safe to call this function while heap tracing is * running, however in HEAP_TRACE_LEAK mode the dump may skip * entries unless heap tracing is stopped first. *//* ... */voidheap_trace_dump(void);/** * @brief Dump heap trace from the memory of the capabilities passed as parameter. * * @param caps Capability(ies) of the memory from which to dump the trace. * Set MALLOC_CAP_INTERNAL to dump heap trace data from internal memory. * Set MALLOC_CAP_SPIRAM to dump heap trace data from PSRAM. * Set both to dump both heap trace data. *//* ... */voidheap_trace_dump_caps(constuint32_tcaps);/** * @brief Get summary information about the result of a heap trace * * @note It is safe to call this function while heap tracing is running. *//* ... */esp_err_theap_trace_summary(heap_trace_summary_t*summary);#ifdef__cplusplus}{...}#endif
Details
Show: from
Types: Columns:
All items filtered out
All items filtered out
This file uses the notable symbols shown below. Click anywhere in the file to view more details.