2 // Set up the 128-bit shadow memory test, by defining the
3 // required vector-copy function, and then including the
6 #define VECTOR_BYTES 16
8 static __attribute__((noinline
))
9 void vector_copy ( void* dst
, void* src
)
12 "movups (%1), %%xmm7 ; movups %%xmm7, (%0)"
13 : /*OUT*/ : /*IN*/ "r"(dst
), "r"(src
) : "memory","xmm7"
17 // Include the test body, which refers to the above function
18 #include "../common/sh-mem-vec128.tmpl.c"