5

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

Windows 上的 StackWalk64 - 获取符号名称

你如何让 StackWalk64() 在 x64 上成功运行?

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

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

如何使用 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
SDK:v7.1
Windows 7 Pro 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
4

1 回答 1

1

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

$CALLSTACK

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

为此,请右键单击所需的行并选择 Breakpoint > Insert Breakpoint(或者,单击所需的编辑器行的左侧插入断点,然后选择 When Hit)。

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

于 2016-05-05T22:34:34.260 回答