C ++中的函数调用堆栈

时间:2013-06-12 15:34:34

标签: c++ windows debugging callstack

我尝试过以下链接,来自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
SDK:v7.1
Windows 7专业版SP1

如果有人发布了一个头文件,[似乎很少可用,但不能正常工作],我们可以在cpp文件中包含这些文件并使用类似'PrintFunctionCallStack()的调用打印调用堆栈,这将非常简单; “ 。 BTW在Linux / Mac中,它变得容易多了,我能够从回溯中获得调用堆栈,而且它非常简单,我自己在几分钟内完成了它。在Windows中,我已经尝试了两天,但完全没有任何意外。

Linux / Mac Stack Trace Code,我尚未对符号名称进行解码。

#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

1 个答案:

答案 0 :(得分:1)

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

$CALLSTACK
检查打印消息后,在其编辑框中

要执行此操作,请右键单击所需的行,然后选择“断点”&gt;插入断点(或者,在所需编辑器行的左侧插入一个断点,然后选择When Hit)。

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