如何使用icc编译器检查gdb中std :: vector的内容?

时间:2008-11-26 22:34:30

标签: c++ stl vector gdb icc

我想检查gdb中std :: vector的内容,但是我无法访问_M_impl,因为我使用的是icc,而不是gcc,我该怎么做?让我们说它是一个std :: vector,为了简单起见。

有一个非常好的答案here但如果我使用icc则不起作用,错误信息是“没有名为_M_impl的成员或方法”。似乎有一个很好的调试工具集here,但它也依赖于_M_impl。

3 个答案:

答案 0 :(得分:10)

不确定这适用于你的矢量,但它对我有用。

#include <string>
#include <vector>

int main() {
    std::vector<std::string> vec;
    vec.push_back("Hello");
    vec.push_back("world");
    vec.push_back("!");
    return 0;
}

GDB:

(gdb) break source.cpp:8
(gdb) run
(gdb) p vec.begin()
$1 = {
   _M_current = 0x300340
}
(gdb) p $1._M_current->c_str()
$2 = 0x3002fc "Hello"
(gdb) p $1._M_current +1
$3 = (string *) 0x300344
(gdb) p $3->c_str()
$4 = 0x30032c "world"

答案 1 :(得分:3)

通常,当我在调试器中处理容器类时,我构建了对元素的引用,作为局部变量,因此很容易在调试器中看到,而不会在容器实现中出现问题。

这是一个人为的例子。

vector<WeirdStructure>  myWeird;

/* push back a lot of stuff into the vector */ 

size_t z;
for (z = 0; z < myWeird.size(); z++)
{
    WeirdStructure& weird = myWeird[z];

    /* at this point weird is directly observable by the debugger */ 

    /* your code to manipulate weird goes here */  
}

这就是我使用的习语。

答案 2 :(得分:0)

std::vector模板guarantees the data is stored contiguously。如果你获取前元素的地址(例如,&v[0]),你可以通过C风格的数组访问向量中的任何其他元素。这并不要求您将调试器的STL源代码提供给您。


在弄乱了一些之后,似乎v.front()v.begin()可能内联,而GDB没有找到它们。我会继续寻找,但我个人只是将行int* i = &v[0]添加到源文件中,然后在调试时使用i上的GDB命令。请注意,编译器可以自由删除该死代码。您可能需要输出i的值以避免这种情况,或者根本不进行优化。