出于故障排除的原因,我希望能够检索并打印当前运行的函数的调用者堆栈。 我尝试过以下方法:
/*******************************************************************************
* *
* * xxxTracePrint - stack trace print function
* *
* * RETURNS: OK or ERROR
* */
static void xxxTracePrint
(
INSTR *caller,
int func,
int nargs,
int *args
)
{
char buf [250];
int ix;
int len = 0;
len += sprintf (&buf [len], "%#10x: %#10x (", (int)caller, func);
for (ix = 0; ix < nargs; ix++) {
if (ix != 0)
len += sprintf (&buf [len], ", ");
len += sprintf (&buf [len], "%#x", args [ix]);
}
len += sprintf (&buf [len], ")\n");
printf (buf);
}
/*******************************************************************************
* *
* * xxxTrace - stack trace
* *
* * RETURNS: OK or ERROR
* */
int xxxTrace(int tcb)
{
REG_SET regs;
if (tcb == 0)
return (ERROR);
taskRegsGet (tcb, ®s);
trcStack (®s, (FUNCPTR) xxxTracePrint, tcb);
return (OK);
}
void DbgTest(void)
{
xxxTrace(taskIdSelf());
}
但我明白了:
JPAX-DP> DbgTest
trcStack aborted: error in top frame
value = 0 = 0x0
这甚至可能吗?我怎样才能做到这一点?我看到,对于taskRegsGet(),他们说:
此例程仅在已知任务处于稳定状态时才有效, 非执行状态。例如,自我检查是不可取的, 因为结果是不可预测的。
但我应该采用其他方法吗?
编译器是diab
和cpu arch powerpc
答案 0 :(得分:1)
如果您的编译器是GCC并且您的体系结构的调用约定允许它(x86是第一个想到的),我建议使用__builtin_return_address(unsigned int level)。更多信息可以在这里找到: https://gcc.gnu.org/onlinedocs/gcc/Return-Address.html
答案 1 :(得分:1)
您提到taskRegsGet()提到不建议从当前正在运行的任务调用。但是我看到有人使用taskDelay(1)和评论&#39; force context save&#39;。我不能相信它,也不知道它有多可靠,或它可能有什么副作用,但它可能有助于获得有关当前任务的正确信息:
taskDelay (1); /* Force context save */
taskRegsGet (0, ®s); /* 0 task-id for myself */
trcStack (®s, NULL, 0); /* NULL function pointer for default print fcn, 0 task-id for myself */