在相当多的文章中,他们建议使用fistp
指令快速转换 float->integer。这取决于 CPU 的当前舍入模式,因此您必须设置它。
但是这种舍入模式可以在程序运行期间被其他程序改变吗?通过操作系统?
更糟糕的是,这是一种可能的情况(伪代码)吗?
set_rounding_mode(ROUND_TRUNCATE);
/* process gets switched out and other process sets the rounding mode to round */
int x = round_with_fistp(0.6);
printf("%d\n", x); // prints 1