<div class="gmail_quote">On 7 September 2012 09:05, jerro <span dir="ltr"><<a href="mailto:a@a.com" target="_blank">a@a.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
<div class="HOEnZb"><div class="h5">On Friday, 7 September 2012 at 05:56:19 UTC, jerro wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
On Thursday, 6 September 2012 at 19:21:22 UTC, Benjamin Thaut wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
Looking at core.simd I noticed that all simd instructions that take 3 operands (usually two operands and some kind of constant third value), are commented out for the opcodes. Most likely because __simd() does not have a 4th parameter which could be used to pass in the additional value for some of the opcodes.<br>

<br>
Are there plans to fix this? Because for example the shuffle instructions are pretty important (try doing a cross product without simd shuffle instructions...)<br>
<br>
Kind Regards<br>
Benjamin Thaut<br>
</blockquote>
<br>
I can't answer your question, but if you are using GDC, you could use gcc builtins . They have the same names as in GCC - take a look at *mmintrin.h files to find out SSE builtin names). For LDC, you could use pragma intrinsic(<a href="http://www.dsource.org/projects/ldc/wiki/Docs" target="_blank">http://www.dsource.<u></u>org/projects/ldc/wiki/Docs</a>) and pragma shufflevector. You declare function that you want to compile to llvm shufflevector instruction like this:<br>

<br>
pragma(shufflevector)<br>
    float4 shufflevector(float4, float4, int, int, int, int);<br>
<br>
Then shufflevector() is used in the same way as Clang's __builtin_shufflevector (<a href="http://clang.llvm.org/docs/LanguageExtensions.html#__builtin_shufflevector" target="_blank">http://clang.llvm.org/docs/<u></u>LanguageExtensions.html#__<u></u>builtin_shufflevector</a>)<br>

</blockquote>
<br></div></div>
I forgot to mention Manu's std.simd (<a href="https://github.com/TurkeyMan/phobos/blob/master/std/simd.d" target="_blank">https://github.com/TurkeyMan/<u></u>phobos/blob/master/std/simd.d</a>)<u></u>. It is supposed to be wrapper around compiler specific intrinsics. If your are using SIMD mostly for operation on geometric vectors, it should fit your use case well (for example, it already includes a cross3 function). It currently only really supports GDC, though.<br>

</blockquote></div><br><div>Yeah, it's kinda waiting for the missing bits from DMD before I can finish it off.</div><div>GDC is pretty close, though there are some missing fallback paths for the operations that have efficient SSE4.1 opcodes (which should also implement an SSE2 fallback path).</div>
<div>I started preliminary ARM support too, and I got LDC building recently, so I might add that in soon.</div><div><br></div><div>I don't think it's purely for geometry, all the integer stuff is there, along with permutation and saturating integer operations. But it certainly offers a lot of helpers for geometry work.</div>