search for: movaps_from_mem

Displaying 1 result from an estimated 1 matches for "movaps_from_mem".

Did you mean: vmovaps_from_mem
2011 Nov 30
0
[PATCH 2/4] x86/emulator: add emulation of SIMD FP moves
...rintf("okay\n"); + } + else + { + printf("skipped\n"); + memset(res + 2, 0x66, 8); + } + + printf("%-40s", "Testing movaps (%edx),%xmm7..."); + if ( stack_exec && cpu_has_sse ) + { + extern const unsigned char movaps_from_mem[]; + + asm volatile ( "xorps %%xmm7, %%xmm7\n" + ".pushsection .test, \"a\", @progbits\n" + "movaps_from_mem: movaps (%0), %%xmm7\n" + ".popsection" :: "d" (NULL) );...