I was doing the integration task with FPU before, now I'm struggling with SSE.
My main problem is when I was using FPU stack, there was the fsin
function, which could be used on the number, which is at the top of the stack (st0).
Now I want to calculate the sine of my all four numbers in XMM0
, or calculate it somewhere else and move into XMM0
. I'm using the AT&T syntax.
I think the second idea is actually possible, but I don't know how :)
Does anybody know how to do it?