zlacker

[parent] [thread] 4 comments
1. lifthr+(OP)[view] [source] 2024-01-24 02:32:14
That or a scoped optimization directive. GCC does allow `__attribute__((optimize("-ffast-math")))` as a function-wide attribute, but Clang doesn't seem to have an equivalent and the standard syntax `[[gcc::optimize("-ffast-math")]]` doesn't seem to work as well. In any case, such optimization should be visible from the code in my opinion.
replies(1): >>lorenz+gl
2. lorenz+gl[view] [source] 2024-01-24 06:16:58
>>lifthr+(OP)
The problem is that it takes a single piece of code compiled with -ffast-math to break everything, it's simply not worth it
replies(1): >>maskli+qn
◧◩
3. maskli+qn[view] [source] [discussion] 2024-01-24 06:42:26
>>lorenz+gl
GP seems to be saying that you can flag individual functions in GCC, thereby avoiding this issue: only flagged functions would be compiled with fast math semantics.
replies(1): >>lorenz+xo
◧◩◪
4. lorenz+xo[view] [source] [discussion] 2024-01-24 06:55:13
>>maskli+qn
This only work if it's a leaf function that will throw away the result. If you feed the result of your --fast-math function into other working code you risk breaking it.
replies(1): >>lifthr+Vs
◧◩◪◨
5. lifthr+Vs[view] [source] [discussion] 2024-01-24 07:45:32
>>lorenz+xo
`-ffast-math` is fully local, asides from GCC's unexpected `crtfastmath.o` linkage which is global.

Functions with `-ffast-math` enabled still return fp values via usual registers and in usual formats. If some function `f` is expected to return -1.0 to 1.0 for particluar inputs, `-ffast-math` can only make it to return 1.001 or NaN instead. If another function without `-ffast-math` expects and doesn't verify f's return value, it will surely misbehave, but only because the original analysis of f no longer holds.

`-ffast-math` the compiler option is bad because this effect is not evident from the code. Anything visible in the code should be okay.

[go to top]