Displaying 1 result from an estimated 1 matches for "00413483".
Did you mean:
00413486
2004 Aug 06
2
Notes on 1.1.4 Windows. Testing of SSE Intrinics Code and others
...block starts inside the for
loop. For those who don't know, Win32 asm is backwords from GCC, it
is OPERATION DEST, SOURCE
254: for (i=0;i<N;i++)
255: {
256: __m128 xx;
257: __m128 yy;
258: /* Compute next filter result */
259: xx = _mm_load_ps1(x+i);
00413483 mov eax,dword ptr [ebp-64h]
00413486 mov ecx,dword ptr [ebx+8]
00413489 lea edx,[ecx+eax*4]
0041348C movss xmm0,dword ptr [edx]
00413490 shufps xmm0,xmm0,0
00413494 movaps xmmword ptr [xx],xmm0
260: yy = _mm_add_ss(xx, mem[0]);
00413498 m...