From: Zdenek Kabelac Date: Wed, 29 May 2002 20:00:10 +0000 (+0000) Subject: * using unrolled loops seems to help to MMX Celerons X-Git-Tag: v0.5~17672 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=ff9657069a7e08a7f54b1af690808cd564870d4f;p=platform%2Fupstream%2Flibav.git * using unrolled loops seems to help to MMX Celerons * calculating average in parallel to use two MMX units * disabled xy2 put code - it's producing rouding errors Originally committed as revision 626 to svn://svn.ffmpeg.org/ffmpeg/trunk --- diff --git a/libavcodec/i386/dsputil_mmx_rnd.h b/libavcodec/i386/dsputil_mmx_rnd.h index 787f706..e43d4de 100644 --- a/libavcodec/i386/dsputil_mmx_rnd.h +++ b/libavcodec/i386/dsputil_mmx_rnd.h @@ -21,10 +21,6 @@ * and improved by Zdenek Kabelac */ -// will have to be check if it's better to have bigger -// unrolled code also on Celerons - for now yes -#define LONG_UNROLL 1 - // put_pixels static void DEF(put, pixels_x2)(UINT8 *block, const UINT8 *pixels, int line_size, int h) { @@ -34,30 +30,24 @@ static void DEF(put, pixels_x2)(UINT8 *block, const UINT8 *pixels, int line_size ".balign 8 \n\t" "1: \n\t" "movq (%1), %%mm0 \n\t" - "movq (%1, %3), %%mm2 \n\t" "movq 1(%1), %%mm1 \n\t" + "movq (%1, %3), %%mm2 \n\t" "movq 1(%1, %3), %%mm3 \n\t" - PAVGB(%%mm0, %%mm1) - "movq %%mm6, (%2) \n\t" - PAVGB(%%mm2, %%mm3) + PAVGBP(%%mm0, %%mm1, %%mm5, %%mm2, %%mm3, %%mm6) + "movq %%mm5, (%2) \n\t" "movq %%mm6, (%2, %3) \n\t" "addl %%eax, %1 \n\t" "addl %%eax, %2 \n\t" -#if LONG_UNROLL "movq (%1), %%mm0 \n\t" - "movq (%1, %3), %%mm2 \n\t" "movq 1(%1), %%mm1 \n\t" + "movq (%1, %3), %%mm2 \n\t" "movq 1(%1, %3), %%mm3 \n\t" - PAVGB(%%mm0, %%mm1) - "movq %%mm6, (%2) \n\t" - PAVGB(%%mm2, %%mm3) + PAVGBP(%%mm0, %%mm1, %%mm5, %%mm2, %%mm3, %%mm6) + "movq %%mm5, (%2) \n\t" "movq %%mm6, (%2, %3) \n\t" "addl %%eax, %1 \n\t" "addl %%eax, %2 \n\t" "subl $4, %0 \n\t" -#else - "subl $2, %0 \n\t" -#endif "jnz 1b \n\t" :"+g"(h), "+S"(pixels), "+D"(block) :"r"(line_size) @@ -74,25 +64,19 @@ static void DEF(put, pixels_y2)(UINT8 *block, const UINT8 *pixels, int line_size "1: \n\t" "movq (%1, %3), %%mm1 \n\t" "movq (%1, %%eax),%%mm2 \n\t" - PAVGB(%%mm1, %%mm0) - "movq %%mm6, (%2) \n\t" - PAVGB(%%mm2, %%mm1) - "movq %%mm6, (%2, %3) \n\t" + PAVGBP(%%mm1, %%mm0, %%mm5, %%mm2, %%mm1, %%mm6) + "movq %%mm5, (%2) \n\t" + "movq %%mm6, (%2, %3) \n\t" "addl %%eax, %1 \n\t" "addl %%eax, %2 \n\t" -#ifdef LONG_UNROLL "movq (%1, %3), %%mm1 \n\t" "movq (%1, %%eax),%%mm0 \n\t" - PAVGB(%%mm1, %%mm2) - "movq %%mm6, (%2) \n\t" - PAVGB(%%mm0, %%mm1) + PAVGBP(%%mm1, %%mm2, %%mm5, %%mm0, %%mm1, %%mm6) + "movq %%mm5, (%2) \n\t" "movq %%mm6, (%2, %3) \n\t" "addl %%eax, %1 \n\t" "addl %%eax, %2 \n\t" "subl $4, %0 \n\t" -#else - "subl $2, %0 \n\t" -#endif "jnz 1b \n\t" :"+g"(h), "+S"(pixels), "+D"(block) :"r"(line_size) @@ -101,7 +85,8 @@ static void DEF(put, pixels_y2)(UINT8 *block, const UINT8 *pixels, int line_size // ((a + b)/2 + (c + d)/2)/2 // not sure if this is properly replacing original code -static void DEF(put, pixels_xy2)(UINT8 *block, const UINT8 *pixels, int line_size, int h) +// - ok it's really unsable at this moment -> disabled +static void DEF(put, disabled_pixels_xy2)(UINT8 *block, const UINT8 *pixels, int line_size, int h) { __asm __volatile( MOVQ_BFE(%%mm7) @@ -113,15 +98,17 @@ static void DEF(put, pixels_xy2)(UINT8 *block, const UINT8 *pixels, int line_siz "1: \n\t" "movq (%1, %3), %%mm2 \n\t" "movq 1(%1, %3), %%mm3 \n\t" - PAVGBR(%%mm2, %%mm0, %%mm4) - PAVGBR(%%mm3, %%mm1, %%mm5) + PAVGBP(%%mm2, %%mm0, %%mm4, %%mm3, %%mm1, %%mm5) + //PAVGBR(%%mm2, %%mm0, %%mm4) + //PAVGBR(%%mm3, %%mm1, %%mm5) PAVGB(%%mm4, %%mm5) "movq %%mm6, (%2) \n\t" "movq (%1, %%eax), %%mm0 \n\t" "movq 1(%1, %%eax), %%mm1 \n\t" - PAVGBR(%%mm0, %%mm2, %%mm4) - PAVGBR(%%mm1, %%mm3, %%mm5) + PAVGBP(%%mm0, %%mm2, %%mm4, %%mm1, %%mm3, %%mm5) + //PAVGBR(%%mm0, %%mm2, %%mm4) + //PAVGBR(%%mm1, %%mm3, %%mm5) PAVGB(%%mm4, %%mm5) "movq %%mm6, (%2, %3) \n\t" "addl %%eax, %1 \n\t"