Displaying 1 result from an estimated 1 matches for "tmovss".
Did you mean:
movss
2004 Aug 06
2
[PATCH] Make SSE Run Time option. Add Win32 SSE code
...pop edx
+ pop ecx
+ pop ebx
+ pop eax
+ */
+#endif
+#if defined(GCC_COMPILER) && defined(_USE_SSE)
+ __asm__ __volatile__
+ (
+ "\tmovss (%1), %%xmm0\n"
+ "\tmovss (%0), %%xmm1\n"
+ "\taddss %%xmm0, %%xmm1\n"
+ "\tmovss %%xmm1, (%2)\n"
+ "\tshufps $0x00, %%xmm0, %%xmm0\n"
+ "\tshufps $0x00, %%xmm1, %...