gpt4 book ai didi

c++ - C++ 中的函数调用栈

转载 作者:可可西里 更新时间:2023-11-01 13:47:16 25 4
gpt4 key购买 nike

我尝试了以下来自 StackOverflow 和其他网站的链接,[我试过了,但没有帮助,所以我无法避免重复]

StackWalk64 on Windows - Get symbol name

How do you make StackWalk64() work successfully on x64?

http://www.codeproject.com/KB/threads/StackWalker.aspx

http://jpassing.com/2008/03/12/walking-the-stack-of-the-current-thread/

How to Log Stack Frames with Windows x64...

但是这些代码都不适合我。我是 Windows C++ 环境的新手,我无法使上述任何代码工作。

我正在寻找一种调用堆栈格式,例如,
FUNCTION_NAME_DEPTH_1:_LINE_NUM__
FUNCTION_NAME_DEPTH_1:_LINE_NUM__
FUNCTION_NAME_DEPTH_1:_LINE_NUM__ ...

只是函数名和行号。

我的环境:
Visual Studio 2010
开发工具包:v7.1
Windows 7 专业版 SP1

如果有人发布一个头文件,[似乎可用的很少,但不起作用],我们可以将其包含在我们的 cpp 文件中,并使用像“PrintFunctionCallStack();”这样的调用来打印调用堆栈,这将变得非常简单。 ' .顺便说一句,在 Linux/Mac 中,这要容易得多,我能够从回溯中获取调用堆栈,而且非常简单,我自己在几分钟内就完成了。在 Windows 中,我过去两天一直在尝试,但一点也不奇怪。

Linux/Mac 堆栈跟踪代码,我还没有分解符号名称。

#ifndef _STACKTRACE_H_
#define _STACKTRACE_H_

#include <stdio.h>
#include <stdlib.h>
#include <execinfo.h>
#include <cxxabi.h>
#include <iostream>

static inline void PrintStackTrace()
{
cout<<"##############################################\n";
unsigned int maxStackCount = 63;
void* addressList[maxStackCount+1];
int addrLen = backtrace(addressList, sizeof(addressList) / sizeof(void*));
if (addrLen == 0) {
cout<<"Empty Stack, Probably Corrupted it seems ###\n";
return;
}
char** symbolList = backtrace_symbols(addressList, addrLen);
for (int i = 1; i < addrLen; i++) // Skipped First, 'i' begins with '1'
{
cout<<"###: "<<symbolList[i]<<":###\n";
}
free(symbolList);
cout<<"##############################################\n";
}
#endif

最佳答案

如果你的环境是Visual Studio,你可以插入一个Tracepoint并输入

$CALLSTACK

在其编辑框中,选中打印消息后。

要做到这一点,请右键单击您想要的行并选择 Breakpoint > Insert Breakpoint(或者,在您想要的编辑器行的左侧插入一个断点,然后选择 When Hit)。

然后您将在“输出”窗口中看到一份详细报告,其中包含文件名、行号和函数名。它帮助我成功地发现了一些内存泄漏。

关于c++ - C++ 中的函数调用栈,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17069557/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com