forked from espressif/esp-idf
feat(heap): enable heap tracing for the RISC-V targets
When the frame pointer is enabled, it is possible for RISC-V targets to now possible to enable and generate heap call traces.
This commit is contained in:
@@ -60,9 +60,9 @@ endif()
|
|||||||
|
|
||||||
if(CONFIG_HEAP_TRACING_TOHOST)
|
if(CONFIG_HEAP_TRACING_TOHOST)
|
||||||
list(APPEND srcs "heap_trace_tohost.c")
|
list(APPEND srcs "heap_trace_tohost.c")
|
||||||
set_source_files_properties(heap_trace_tohost.c
|
if(CONFIG_IDF_TARGET_ARCH_XTENSA)
|
||||||
PROPERTIES COMPILE_FLAGS
|
set_source_files_properties(heap_trace_tohost.c PROPERTIES COMPILE_FLAGS -Wno-frame-address)
|
||||||
-Wno-frame-address)
|
endif()
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
idf_component_register(SRCS "${srcs}"
|
idf_component_register(SRCS "${srcs}"
|
||||||
|
@@ -1,13 +1,11 @@
|
|||||||
/*
|
/*
|
||||||
* SPDX-FileCopyrightText: 2015-2022 Espressif Systems (Shanghai) CO LTD
|
* SPDX-FileCopyrightText: 2015-2024 Espressif Systems (Shanghai) CO LTD
|
||||||
*
|
*
|
||||||
* SPDX-License-Identifier: Apache-2.0
|
* SPDX-License-Identifier: Apache-2.0
|
||||||
*/
|
*/
|
||||||
#include <sdkconfig.h>
|
#include "sdkconfig.h"
|
||||||
|
|
||||||
#define HEAP_TRACE_SRCFILE /* don't warn on inclusion here */
|
|
||||||
#include "esp_heap_trace.h"
|
#include "esp_heap_trace.h"
|
||||||
#undef HEAP_TRACE_SRCFILE
|
|
||||||
#include "esp_heap_caps.h"
|
#include "esp_heap_caps.h"
|
||||||
#if CONFIG_APPTRACE_SV_ENABLE
|
#if CONFIG_APPTRACE_SV_ENABLE
|
||||||
#include "esp_app_trace.h"
|
#include "esp_app_trace.h"
|
||||||
@@ -16,7 +14,7 @@
|
|||||||
|
|
||||||
#define STACK_DEPTH CONFIG_HEAP_TRACING_STACK_DEPTH
|
#define STACK_DEPTH CONFIG_HEAP_TRACING_STACK_DEPTH
|
||||||
|
|
||||||
#ifdef CONFIG_HEAP_TRACING_TOHOST
|
#if CONFIG_HEAP_TRACING_TOHOST
|
||||||
|
|
||||||
#if !CONFIG_APPTRACE_SV_ENABLE
|
#if !CONFIG_APPTRACE_SV_ENABLE
|
||||||
#error None of the heap tracing backends is enabled! You must enable SystemView compatible tracing to use this feature.
|
#error None of the heap tracing backends is enabled! You must enable SystemView compatible tracing to use this feature.
|
||||||
|
@@ -31,15 +31,14 @@ menu "Heap memory debugging"
|
|||||||
bool "Disabled"
|
bool "Disabled"
|
||||||
config HEAP_TRACING_STANDALONE
|
config HEAP_TRACING_STANDALONE
|
||||||
bool "Standalone"
|
bool "Standalone"
|
||||||
select HEAP_TRACING
|
|
||||||
config HEAP_TRACING_TOHOST
|
config HEAP_TRACING_TOHOST
|
||||||
bool "Host-based"
|
bool "Host-based"
|
||||||
select HEAP_TRACING
|
|
||||||
endchoice
|
endchoice
|
||||||
|
|
||||||
config HEAP_TRACING
|
config HEAP_TRACING
|
||||||
bool
|
bool
|
||||||
default F
|
default n if HEAP_TRACING_OFF
|
||||||
|
default y if !HEAP_TRACING_OFF
|
||||||
help
|
help
|
||||||
Enables/disables heap tracing API.
|
Enables/disables heap tracing API.
|
||||||
|
|
||||||
@@ -76,8 +75,8 @@ menu "Heap memory debugging"
|
|||||||
|
|
||||||
config HEAP_TRACING_STACK_DEPTH
|
config HEAP_TRACING_STACK_DEPTH
|
||||||
int "Heap tracing stack depth"
|
int "Heap tracing stack depth"
|
||||||
range 0 0 if IDF_TARGET_ARCH_RISCV # Disabled for RISC-V due to `__builtin_return_address` limitation
|
range 0 0 if IDF_TARGET_ARCH_RISCV && !ESP_SYSTEM_USE_FRAME_POINTER
|
||||||
default 0 if IDF_TARGET_ARCH_RISCV
|
default 0 if IDF_TARGET_ARCH_RISCV && !ESP_SYSTEM_USE_FRAME_POINTER
|
||||||
range 0 32
|
range 0 32
|
||||||
default 2
|
default 2
|
||||||
depends on HEAP_TRACING
|
depends on HEAP_TRACING
|
||||||
|
@@ -4,13 +4,11 @@
|
|||||||
* SPDX-License-Identifier: Apache-2.0
|
* SPDX-License-Identifier: Apache-2.0
|
||||||
*/
|
*/
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
#include <sdkconfig.h>
|
#include "sdkconfig.h"
|
||||||
#include <inttypes.h>
|
#include <inttypes.h>
|
||||||
#include "esp_log.h"
|
#include "esp_log.h"
|
||||||
|
|
||||||
#define HEAP_TRACE_SRCFILE /* don't warn on inclusion here */
|
|
||||||
#include "esp_heap_trace.h"
|
#include "esp_heap_trace.h"
|
||||||
#undef HEAP_TRACE_SRCFILE
|
|
||||||
#include "esp_heap_caps.h"
|
#include "esp_heap_caps.h"
|
||||||
#include "esp_attr.h"
|
#include "esp_attr.h"
|
||||||
#include "freertos/FreeRTOS.h"
|
#include "freertos/FreeRTOS.h"
|
||||||
@@ -22,8 +20,6 @@ static __attribute__((unused)) const char* TAG = "heaptrace";
|
|||||||
|
|
||||||
#define STACK_DEPTH CONFIG_HEAP_TRACING_STACK_DEPTH
|
#define STACK_DEPTH CONFIG_HEAP_TRACING_STACK_DEPTH
|
||||||
|
|
||||||
#if CONFIG_HEAP_TRACING_STANDALONE
|
|
||||||
|
|
||||||
typedef enum {
|
typedef enum {
|
||||||
TRACING_STARTED, // start recording allocs and free
|
TRACING_STARTED, // start recording allocs and free
|
||||||
TRACING_STOPPED, // stop recording allocs and free
|
TRACING_STOPPED, // stop recording allocs and free
|
||||||
@@ -672,5 +668,3 @@ static HEAP_IRAM_ATTR void list_find_and_remove(void* p)
|
|||||||
}
|
}
|
||||||
|
|
||||||
#include "heap_trace.inc"
|
#include "heap_trace.inc"
|
||||||
|
|
||||||
#endif // CONFIG_HEAP_TRACING_STANDALONE
|
|
||||||
|
@@ -15,10 +15,6 @@
|
|||||||
extern "C" {
|
extern "C" {
|
||||||
#endif
|
#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
|
|
||||||
|
|
||||||
#ifndef CONFIG_HEAP_TRACING_STACK_DEPTH
|
#ifndef CONFIG_HEAP_TRACING_STACK_DEPTH
|
||||||
#define CONFIG_HEAP_TRACING_STACK_DEPTH 0
|
#define CONFIG_HEAP_TRACING_STACK_DEPTH 0
|
||||||
#endif
|
#endif
|
||||||
|
@@ -1,18 +1,10 @@
|
|||||||
// Copyright 2015-2016 Espressif Systems (Shanghai) PTE LTD
|
/*
|
||||||
//
|
* SPDX-FileCopyrightText: 2015-2024 Espressif Systems (Shanghai) CO LTD
|
||||||
// Licensed under the Apache License, Version 2.0 (the "License");
|
*
|
||||||
// you may not use this file except in compliance with the License.
|
* SPDX-License-Identifier: Apache-2.0
|
||||||
// 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 <string.h>
|
#include <string.h>
|
||||||
#include <sdkconfig.h>
|
#include "sdkconfig.h"
|
||||||
#include "soc/soc_memory_layout.h"
|
#include "soc/soc_memory_layout.h"
|
||||||
#include "esp_attr.h"
|
#include "esp_attr.h"
|
||||||
#include "esp_cpu.h"
|
#include "esp_cpu.h"
|
||||||
@@ -31,11 +23,8 @@ inline static uint32_t get_ccount(void)
|
|||||||
/* Architecture-specific return value of __builtin_return_address which
|
/* Architecture-specific return value of __builtin_return_address which
|
||||||
* should be interpreted as an invalid address.
|
* should be interpreted as an invalid address.
|
||||||
*/
|
*/
|
||||||
#ifdef __XTENSA__
|
#if CONFIG_IDF_TARGET_ARCH_XTENSA
|
||||||
#define HEAP_ARCH_INVALID_PC 0x40000000
|
#define HEAP_ARCH_INVALID_PC 0x40000000
|
||||||
#else
|
|
||||||
#define HEAP_ARCH_INVALID_PC 0x00000000
|
|
||||||
#endif
|
|
||||||
|
|
||||||
// Caller is 2 stack frames deeper than we care about
|
// Caller is 2 stack frames deeper than we care about
|
||||||
#define STACK_OFFSET 2
|
#define STACK_OFFSET 2
|
||||||
@@ -94,6 +83,27 @@ static HEAP_IRAM_ATTR __attribute__((noinline)) void get_call_stack(void **calle
|
|||||||
TEST_STACK(31);
|
TEST_STACK(31);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#else // !CONFIG_IDF_TARGET_ARCH_XTENSA
|
||||||
|
|
||||||
|
extern uint32_t esp_fp_get_callers(uint32_t frame, void** callers, void** stacks, uint32_t depth);
|
||||||
|
|
||||||
|
static HEAP_IRAM_ATTR __attribute__((noinline)) void get_call_stack(void **callers)
|
||||||
|
{
|
||||||
|
uint32_t fp = (uint32_t) __builtin_frame_address(0);
|
||||||
|
memset(callers, 0, sizeof(void *) * STACK_DEPTH);
|
||||||
|
|
||||||
|
#if CONFIG_ESP_SYSTEM_USE_FRAME_POINTER
|
||||||
|
/* We can skip the current return address since this function won't be inlined */
|
||||||
|
esp_fp_get_callers(fp, callers, NULL, STACK_DEPTH);
|
||||||
|
#else
|
||||||
|
/* RISC-V compiler doesn't support `__builtin_frame_address` with a parameter bigger than 0 */
|
||||||
|
callers[0] = (void*) fp;
|
||||||
|
#endif
|
||||||
|
}
|
||||||
|
|
||||||
|
#endif
|
||||||
|
|
||||||
|
|
||||||
ESP_STATIC_ASSERT(STACK_DEPTH >= 0 && STACK_DEPTH <= 32, "CONFIG_HEAP_TRACING_STACK_DEPTH must be in range 0-32");
|
ESP_STATIC_ASSERT(STACK_DEPTH >= 0 && STACK_DEPTH <= 32, "CONFIG_HEAP_TRACING_STACK_DEPTH must be in range 0-32");
|
||||||
|
|
||||||
typedef enum {
|
typedef enum {
|
||||||
|
@@ -94,17 +94,15 @@ def test_heap_misc_options(dut: Dut) -> None:
|
|||||||
|
|
||||||
|
|
||||||
@pytest.mark.generic
|
@pytest.mark.generic
|
||||||
@pytest.mark.parametrize(
|
@pytest.mark.esp32
|
||||||
'target',
|
@pytest.mark.esp32c3
|
||||||
[
|
|
||||||
'esp32',
|
|
||||||
]
|
|
||||||
)
|
|
||||||
@pytest.mark.parametrize(
|
@pytest.mark.parametrize(
|
||||||
'config',
|
'config',
|
||||||
[
|
[
|
||||||
'heap_trace',
|
pytest.param('heap_trace_esp32', marks=[pytest.mark.esp32]),
|
||||||
'heap_trace_hashmap'
|
pytest.param('heap_trace_hashmap_esp32', marks=[pytest.mark.esp32]),
|
||||||
|
pytest.param('heap_trace_esp32c3', marks=[pytest.mark.esp32c3]),
|
||||||
|
pytest.param('heap_trace_hashmap_esp32c3', marks=[pytest.mark.esp32c3])
|
||||||
]
|
]
|
||||||
)
|
)
|
||||||
def test_heap_trace_dump(dut: Dut) -> None:
|
def test_heap_trace_dump(dut: Dut) -> None:
|
||||||
|
@@ -1,3 +0,0 @@
|
|||||||
CONFIG_IDF_TARGET="esp32"
|
|
||||||
CONFIG_SPIRAM=y
|
|
||||||
CONFIG_HEAP_TRACING_STANDALONE=y
|
|
@@ -0,0 +1,5 @@
|
|||||||
|
CONFIG_IDF_TARGET="esp32c3"
|
||||||
|
CONFIG_ESP_SYSTEM_USE_FRAME_POINTER=y
|
||||||
|
CONFIG_HEAP_TRACING_STANDALONE=y
|
||||||
|
CONFIG_HEAP_TRACE_HASH_MAP=y
|
||||||
|
CONFIG_HEAP_TRACE_HASH_MAP_SIZE=10
|
@@ -53,7 +53,7 @@ static void alloc_task(void *p)
|
|||||||
snprintf(task_name, sizeof(task_name), "free%d", task_args->idx);
|
snprintf(task_name, sizeof(task_name), "free%d", task_args->idx);
|
||||||
xTaskCreatePinnedToCore(free_task, task_name, 2500, queue, 5, NULL, CONFIG_FREERTOS_NUMBER_OF_CORES-1);
|
xTaskCreatePinnedToCore(free_task, task_name, 2500, queue, 5, NULL, CONFIG_FREERTOS_NUMBER_OF_CORES-1);
|
||||||
|
|
||||||
// here GDB will stop at brekpoint and execute OpenOCD command to start tracing
|
// here GDB will stop at breakpoint and execute OpenOCD command to start tracing
|
||||||
for(int i = 1; i < 10; i++) {
|
for(int i = 1; i < 10; i++) {
|
||||||
uint32_t sz = 2*i*(task_args->idx + 1);
|
uint32_t sz = 2*i*(task_args->idx + 1);
|
||||||
void *p = malloc(sz/2);
|
void *p = malloc(sz/2);
|
||||||
@@ -100,6 +100,6 @@ void app_main(void)
|
|||||||
uint32_t val = ulTaskNotifyTake(pdFALSE, portMAX_DELAY);
|
uint32_t val = ulTaskNotifyTake(pdFALSE, portMAX_DELAY);
|
||||||
ESP_LOGI(TAG, "Got notify val %"PRIu32, val);
|
ESP_LOGI(TAG, "Got notify val %"PRIu32, val);
|
||||||
}
|
}
|
||||||
// here GDB will stop at brekpoint and execute OpenOCD command to stop tracing
|
// here GDB will stop at breakpoint and execute OpenOCD command to stop tracing
|
||||||
heap_trace_stop();
|
heap_trace_stop();
|
||||||
}
|
}
|
||||||
|
@@ -24,3 +24,5 @@ CONFIG_APPTRACE_SV_EVT_TIMER_EXIT_ENABLE=y
|
|||||||
CONFIG_LOG_COLORS=n
|
CONFIG_LOG_COLORS=n
|
||||||
# Enable heap tracing to host
|
# Enable heap tracing to host
|
||||||
CONFIG_HEAP_TRACING_TOHOST=y
|
CONFIG_HEAP_TRACING_TOHOST=y
|
||||||
|
# For RISC-V targets
|
||||||
|
CONFIG_ESP_SYSTEM_USE_FRAME_POINTER=y
|
||||||
|
Reference in New Issue
Block a user