changeset 7219:f72ef5b28253 libavcodec

1 c-asm loop less and 1x unroll of float_to_int16_sse() 25% faster
author michael
date Mon, 07 Jul 2008 21:25:18 +0000
parents 7f3d6509628b
children a94b2cf78a2e
files i386/dsputil_mmx.c
diffstat 1 files changed, 19 insertions(+), 12 deletions(-) [+]
line wrap: on
line diff
--- a/i386/dsputil_mmx.c	Mon Jul 07 21:04:29 2008 +0000
+++ b/i386/dsputil_mmx.c	Mon Jul 07 21:25:18 2008 +0000
@@ -2045,18 +2045,25 @@
     );
 }
 static void float_to_int16_sse(int16_t *dst, const float *src, long len){
-    int i;
-    for(i=0; i<len; i+=4) {
-        asm volatile(
-            "cvtps2pi    %1, %%mm0 \n\t"
-            "cvtps2pi    %2, %%mm1 \n\t"
-            "packssdw %%mm1, %%mm0 \n\t"
-            "movq     %%mm0, %0    \n\t"
-            :"=m"(dst[i])
-            :"m"(src[i]), "m"(src[i+2])
-        );
-    }
-    asm volatile("emms");
+    asm volatile(
+        "add        %0          , %0        \n\t"
+        "lea         (%2,%0,2)  , %2        \n\t"
+        "add        %0          , %1        \n\t"
+        "neg        %0                      \n\t"
+        "1:                                 \n\t"
+        "cvtps2pi    (%2,%0,2)  , %%mm0     \n\t"
+        "cvtps2pi   8(%2,%0,2)  , %%mm1     \n\t"
+        "cvtps2pi  16(%2,%0,2)  , %%mm2     \n\t"
+        "cvtps2pi  24(%2,%0,2)  , %%mm3     \n\t"
+        "packssdw   %%mm1       , %%mm0     \n\t"
+        "packssdw   %%mm3       , %%mm2     \n\t"
+        "movq       %%mm0       ,  (%1,%0)  \n\t"
+        "movq       %%mm2       , 8(%1,%0)  \n\t"
+        "add        $16         , %0        \n\t"
+        " js 1b                             \n\t"
+        "emms                               \n\t"
+        :"+r"(len), "+r"(dst), "+r"(src)
+    );
 }
 
 extern void ff_snow_horizontal_compose97i_sse2(IDWTELEM *b, int width);