How can I efficiently dump xmm register into uint8_t array[16]?

link|improve this question

1  
(I have no idea, but I believe you should specify what compiler you're using, and what CPU.) – Mat Oct 5 '11 at 10:59
feedback

2 Answers

up vote 4 down vote accepted

_mm_store_si128 stores the sse2 register contents to the memory specified. _mm_store_ps and _mm_store_pd are the variants used for float or double register contents. When the destination is unaligned, you must use storeu.

__m128i var;
__declspec( align(16) ) uint8_t array[16];

_mm_store_si128( (__m128i*) array, var );
link|improve this answer
feedback

how about memcpy()? Doc here.

__m128d var;
uint8_t array[16];

memcpy(array, &var, sizeof(array));
link|improve this answer
array instead of &array[0] should be prettier. – Blagovest Buyukliev Oct 5 '11 at 11:06
agreed, edited. – Constantinius Oct 5 '11 at 11:19
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.