zlacker

[parent] [thread] 3 comments
1. pavlov+(OP)[view] [source] 2024-01-16 15:25:22
This would only affect code that uses the old-school x87 floating point instructions, though? The x87 FPU unit indeed has scary global state that can make your doubles behave like floats in secret and silence.

I would think practically all modern FPU code on x86-64 would be using the SIMD registers which have explicit widths.

replies(3): >>borodi+64 >>jcranm+8c >>mhh__+Ld
2. borodi+64[view] [source] 2024-01-16 15:41:34
>>pavlov+(OP)
So it was a bit more pervasive than this, the issue was that flushing subnormals (values very close to 0) to 0 is a register that gets set, so if a library is built with the fastmath flags and it gets loaded, it sets the register, causing the whole process to flush it's subnormals. i.e https://github.com/llvm/llvm-project/issues/57589
3. jcranm+8c[view] [source] 2024-01-16 16:14:42
>>pavlov+(OP)
> This would only affect code that uses the old-school x87 floating point instructions, though?

Actually, no, the x87 FPU instructions are the only ones that won't be affected.

It sets the FTZ/DAZ bits, which exist for SSE instructions but not x87 instructions.

4. mhh__+Ld[view] [source] 2024-01-16 16:23:44
>>pavlov+(OP)
You're mistaking something else for the rounding mode and subnormal handling flags.
[go to top]