You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
467 B
26 lines
467 B
/*
|
|
* Copyright (c) Hisilicon Technologies Co., Ltd. 2014-2020. All rights reserved.
|
|
* Description: trace.h
|
|
* Author: SmartMedia_BSP
|
|
* Create: 2014-06-04
|
|
*/
|
|
|
|
#ifndef TRACEH
|
|
#define TRACEH
|
|
|
|
#include <stddef.h>
|
|
|
|
void symbol_init(void);
|
|
|
|
char *find_symbol(uint32 addr, uint32 *entry, uint32 *size, char **name);
|
|
|
|
void dump_symbol(void);
|
|
|
|
void backtracking(uint32 fp);
|
|
|
|
void dump_stack(void);
|
|
|
|
void fbl_backtrace(void);
|
|
void backtrace(uint32 fp);
|
|
|
|
#endif /* TRACEH */ |