I know that x87 has higher internal precision, which is probably the biggest difference that people see between it and SSE operations. But I have to wonder, is there any other benefit to using x87? I have a habit of typing -mfpmath=sse automatically in any project, and I wonder if I'm missing anything else that the x87 FPU offers.
| ||||
|
feedback
|
|
x87 has some instructions that don't exist in the SSE instruction set. Out of the head it's all the trigonometric stuff like fsin, fcos, fatan, fatan2 and some of the exponential/logarithm stuff. If your code spends most of the time doing trigonometry you may see a slight performance boost if you use x87. Some DSP algorithms would fall into this category. However, for code math-code where you spend most of your time doing additions, multiplications ect. SSE is usually faster. | |||||||||||
feedback
|
|
FPU instructions are smaller than SSE instructions, so they are ideal for demoscene stuff | |||
|
feedback
|
| |||||||
feedback
|
|
Conversion between The real fix is to refrain from mixing | |||
|
feedback
|