Stopping the debugger when a NaN floating point number is produced(产生 NaN 浮点数时停止调试器)
问题描述
我有一个 C++ 程序.在程序中的某处(难以重现,但可重现)计算会导致浮点蜂设置为 NaN.由于涉及 NaN 的浮点运算会导致 NaN,因此传播速度很快.
I have an C++ program. Somewhere in the program (hard to reproduce, but reproduceable) a caclculation results in a float beeing set to a NaN. Since a floating point operation involving a NaN results in a NaN, this spreads fast.
有什么方法可以设置编译器 (gcc 4.4) 或调试器 (gdb) 在浮点运算导致 NaN 时停止?这将非常有用.
Is there any way I can setup the compiler (gcc 4.4) or the debuger (gdb) to stop when a floating point operation results in a NaN? That would be extremely useful.
谢谢!内森
PS:这可能很重要:我在 ubuntu linux 10.10 下工作.
PS: It might matter: I am working under ubuntu linux 10.10.
推荐答案
您可以启用浮点异常 - 参见 glibc 控制函数 - 当你的 NaN 值产生时你会得到一个 SIGFPE
You could enable floating point exceptions - see glibc Control Functions - then you'll get a SIGFPE when your NaN value is produced
这篇关于产生 NaN 浮点数时停止调试器的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:产生 NaN 浮点数时停止调试器
基础教程推荐
- 通过引用传递 C++ 迭代器有什么问题? 2022-01-01
- 非静态 const 成员,不能使用默认赋值运算符 2022-10-09
- CString 到 char* 2021-01-01
- 为什么派生模板类不能访问基模板类的标识符? 2021-01-01
- GDB 显示调用堆栈上函数地址的当前编译二进制文 2022-09-05
- 为什么 typeid.name() 使用 GCC 返回奇怪的字符以及如 2022-09-16
- 为什么 RegOpenKeyEx() 在 Vista 64 位上返回错误代码 2021-01-01
- 初始化列表*参数*评估顺序 2021-01-01
- 我应该对 C++ 中的成员变量和函数参数使用相同的名称吗? 2021-01-01
- 如果我为无符号变量分配负值会发生什么? 2022-01-01
