I'm writing project to shool in x64 assembly. I'm using nasm compilator. I know that xmm registers can store 4 x 32 bit or 2x64 bit. I wandered to know how i can put 4 float values (32 bit) into xmm1 for example. My function has header curve(float * x, float * y, int a, int b) and x is pointer to 5 element array. I was looking for some information but I still don't know how to do it properly.
Thanks for help in advance!
(ps. if you have any tutorials including informations about sse it will be very helpful)
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
|||||||||||||||||
|
|
You can use one of the movdqa, movdqu, movaps, movups, movapd, movupd instructions to load values into a 128bit SSE register (xmm) from memory. The movdqa, movaps, movapd require 16-byte aligned memory access (and are faster). Incidentally, doing one point at a time with SIMD would require a lot of code changes. Better bet is to do 4 at a time (because SIMD has 4 lanes of single precision floating point). Then you can (more or less) just replace each regular instruction with the same vector instruction. |
|||
|
|