使用dbx在AIX上捕获C ++异常

时间:2013-11-27 14:37:05

标签: c++ debugging aix dbx bad-alloc

我有一个C ++应用程序,它终止了AIX机器上某些输入数据的“错误分配”错误消息。

有没有办法在dbx中运行程序并在抛出异常时捕获异常?我在IBM的文档中没有看到任何相关内容。

1 个答案:

答案 0 :(得分:5)

如果使用XL C / C ++编译C ++应用程序,请在__DoThrowV6上设置断点。

$ cat throw.C
int foo(int x)
{
   if (x < 0)
      throw 99;
   return x+1;
}

int main()
{
   int y;
   y = -5;
   try
   {
     foo(y);
   }
   catch(...)
   {
   }
   return 0;
}

$ xlC -g -o throw throw.C

$ dbx ./throw
Type 'help' for help.
reading symbolic information ...
(dbx) stop in __DoThrowV6
[1] stop in __DoThrowV6
(dbx) run
[1] stopped in __DoThrowV6 at 0xd1be7e00
0xd1be7e00 (__DoThrowV6)    7c0802a6        mflr   r0
(dbx) where
__DoThrowV6() at 0xd1be7e00
foo(int)(x = -5), line 4 in "throw.C"
main(), line 14 in "throw.C"
(dbx)
抛出异常时会调用

__ DoThrowV6,因此从调用堆栈中可以看到异常是从源文件throw.C的第4行引发的。