What is the proper way to convert an __int64 value to an __m64 value for use with SSE?

link|improve this question

feedback

1 Answer

up vote 4 down vote accepted

With gcc you can just use _mm_set_pi64x:

#include <mmintrin.h>

__int64 i = 0x123456LL; 
__m64 v = _mm_set_pi64x(i);

Note that not all compilers have _mm_set_pi64x defined in mmintrin.h. For gcc it's defined like this:

extern __inline __m64  __attribute__((__gnu_inline__, __always_inline__, __artificial__))
_mm_set_pi64x (long long __i)
{
  return (__m64) __i;
}

which suggests that you could probably just use a cast if you prefer, e.g.

__int64 i = 0x123456LL; 
__m64 v = (__m64)i;

Failing that, if you're stuck with an overly picky compiler such as Visual C/C++, as a last resort you can just use a union and implement your own intrinsic:

#ifdef _MSC_VER // if Visual C/C++
__inline __m64 _mm_set_pi64x (const __int64 i) {
    union {
        __int64 i;
        __m64 v;
    } u;

    u.i = i;
    return u.v;
}
#endif

Note that strictly speaking this is UB, since we are writing to one variant of a union and reading from another, but it should work in this instance.

link|improve this answer
Huh? google.com/search?q=_mm_set_pi64 – Mehrdad Jan 30 at 9:07
Take a look at mmintrin.h – Paul R Jan 30 at 9:08
pastebin.com/4bwAbbLZ ? – Mehrdad Jan 30 at 9:10
1  
My experience with ICC has been mixed. Although it "generally" compiles faster code, I've seen numerous cases of it going brain-dead and getting beaten out by MSVC (by large margins). – Mysticial Jan 30 at 9:56
1  
@PaulR From my experience: Prior to VS2010, ICC consistently beats MSVC on nearly all SSE code I write. Starting from VS2010, I have to admit that MSVC beats ICC more in more than half the cases I've done. A notorious example of ICC optimization fail is on my answer here. MSVC (and GCC with the right options) gets peak performance. ICC fails to get even 70%. – Mysticial Jan 30 at 10:15
show 12 more comments
feedback

Your Answer

 
or
required, but never shown

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