A while ago I read somewhere that SSE intrinsic functions compile into efficient machine code because compilers treat them differently from ordinary functions. I am wandering how actually compilers do it and what C programmers can do to facilitate the process. Are there any guidelines on how to use intrinsic functions in a manner that makes compiler's job of generating efficient machine code easier.

Thanks.

link|improve this question

feedback

1 Answer

up vote 5 down vote accepted

The intrinsics compile down to the instructions the represent, whether this is efficient or not depends on how they are used.

also, each compiler treats intrinsics a little differently (aka its implementation specific), but GCC is open source, so you can see how they treat the SSE ones, Open Watcom*, LCC, PCC and TCC* are all open source C compilers, although thwey don't have SSE intrinsics, they should still have intrinsics, and you can see how they handle them.

I think what you read was related to auto vectorization of code, something GCC(see this) and ICC are very good at, but they aren't as good as hand optimized code, at least not yet

*might have been updated with support for SSE, haven't checked lately...

link|improve this answer
2  
I mean _mm_blah_blah functions, not auto vectorization. I wish I could read GCC's source code. – pic11 Apr 15 '11 at 16:36
@pic11: just ignore the last bit then. I do agree with you though, unfortunatly gcc's source is a mess from a readers point of view(which is why i suggested the simpler c compilers), you might find LLVM (and clang) simpler to pick through as well. Gcc and llvm have many accompanying papers though, so you might find some relating to sse(there was a great ssa register allocation one that mentioned optims for sse). The msdn visual studio blog has a few entries on their simd intrinsics, but its very superficial unfortunatly... – Necrolis Apr 15 '11 at 18:00
Though gcc is a mess and a real ordeal to compile (compile the compiler, not compile with the compiler), it's one of the most amazing compilers out there. Especially in terms of optimizing in and around intrinsics, it beats MSVC by lengths. – Damon Apr 15 '11 at 20:54
Accepted, even though it doesn't answer the question directly. Looks like learning what compilers do under the hood is the only way to understand how intrinsics work. I wish there was some sort of "Effective SSE" book (similar to "Effective C++") which would explain SSE intrinsics without bothering ordinary C codes with arcane compilers internals. – pic11 Apr 16 '11 at 0: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.