2001-07-22 14:18:56 +00:00
|
|
|
/*
|
|
|
|
* DSP utils : average functions are compiled twice for 3dnow/mmx2
|
2009-01-19 15:46:40 +00:00
|
|
|
* Copyright (c) 2000, 2001 Fabrice Bellard
|
2004-01-10 16:04:55 +00:00
|
|
|
* Copyright (c) 2002-2004 Michael Niedermayer
|
2001-07-22 14:18:56 +00:00
|
|
|
*
|
2007-07-05 10:37:29 +00:00
|
|
|
* MMX optimization by Nick Kurshev <nickols_k@mail.ru>
|
|
|
|
* mostly rewritten by Michael Niedermayer <michaelni@gmx.at>
|
|
|
|
* and improved by Zdenek Kabelac <kabi@users.sf.net>
|
|
|
|
*
|
2006-10-07 15:30:46 +00:00
|
|
|
* This file is part of FFmpeg.
|
|
|
|
*
|
|
|
|
* FFmpeg is free software; you can redistribute it and/or
|
2002-05-25 22:45:33 +00:00
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
2006-10-07 15:30:46 +00:00
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
2001-07-22 14:18:56 +00:00
|
|
|
*
|
2006-10-07 15:30:46 +00:00
|
|
|
* FFmpeg is distributed in the hope that it will be useful,
|
2001-07-22 14:18:56 +00:00
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
2002-05-25 22:45:33 +00:00
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
2001-07-22 14:18:56 +00:00
|
|
|
*
|
2002-05-25 22:45:33 +00:00
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
2006-10-07 15:30:46 +00:00
|
|
|
* License along with FFmpeg; if not, write to the Free Software
|
2006-01-12 22:43:26 +00:00
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
2001-07-22 14:18:56 +00:00
|
|
|
*/
|
2005-12-17 18:14:38 +00:00
|
|
|
|
2002-05-18 22:49:11 +00:00
|
|
|
/* XXX: we use explicit registers to avoid a gcc 2.95.2 register asm
|
2002-05-22 20:46:24 +00:00
|
|
|
clobber bug - now it will work with 2.95.2 and also with -fPIC
|
|
|
|
*/
|
2003-02-11 16:35:48 +00:00
|
|
|
static void DEF(put_pixels8_x2)(uint8_t *block, const uint8_t *pixels, int line_size, int h)
|
2001-07-22 14:18:56 +00:00
|
|
|
{
|
2008-10-16 13:34:09 +00:00
|
|
|
__asm__ volatile(
|
2005-12-22 01:10:11 +00:00
|
|
|
"lea (%3, %3), %%"REG_a" \n\t"
|
|
|
|
"1: \n\t"
|
|
|
|
"movq (%1), %%mm0 \n\t"
|
|
|
|
"movq (%1, %3), %%mm1 \n\t"
|
|
|
|
PAVGB" 1(%1), %%mm0 \n\t"
|
|
|
|
PAVGB" 1(%1, %3), %%mm1 \n\t"
|
|
|
|
"movq %%mm0, (%2) \n\t"
|
|
|
|
"movq %%mm1, (%2, %3) \n\t"
|
|
|
|
"add %%"REG_a", %1 \n\t"
|
|
|
|
"add %%"REG_a", %2 \n\t"
|
|
|
|
"movq (%1), %%mm0 \n\t"
|
|
|
|
"movq (%1, %3), %%mm1 \n\t"
|
|
|
|
PAVGB" 1(%1), %%mm0 \n\t"
|
|
|
|
PAVGB" 1(%1, %3), %%mm1 \n\t"
|
|
|
|
"add %%"REG_a", %1 \n\t"
|
|
|
|
"movq %%mm0, (%2) \n\t"
|
|
|
|
"movq %%mm1, (%2, %3) \n\t"
|
|
|
|
"add %%"REG_a", %2 \n\t"
|
|
|
|
"subl $4, %0 \n\t"
|
|
|
|
"jnz 1b \n\t"
|
|
|
|
:"+g"(h), "+S"(pixels), "+D"(block)
|
2008-05-08 21:11:24 +00:00
|
|
|
:"r" ((x86_reg)line_size)
|
2005-12-22 01:10:11 +00:00
|
|
|
:"%"REG_a, "memory");
|
2002-05-17 01:04:14 +00:00
|
|
|
}
|
2002-09-11 12:39:53 +00:00
|
|
|
|
2004-09-07 01:48:45 +00:00
|
|
|
static void DEF(put_pixels4_l2)(uint8_t *dst, uint8_t *src1, uint8_t *src2, int dstStride, int src1Stride, int h)
|
|
|
|
{
|
2008-10-16 13:34:09 +00:00
|
|
|
__asm__ volatile(
|
2005-12-22 01:10:11 +00:00
|
|
|
"testl $1, %0 \n\t"
|
|
|
|
" jz 1f \n\t"
|
|
|
|
"movd (%1), %%mm0 \n\t"
|
|
|
|
"movd (%2), %%mm1 \n\t"
|
|
|
|
"add %4, %1 \n\t"
|
|
|
|
"add $4, %2 \n\t"
|
|
|
|
PAVGB" %%mm1, %%mm0 \n\t"
|
|
|
|
"movd %%mm0, (%3) \n\t"
|
|
|
|
"add %5, %3 \n\t"
|
|
|
|
"decl %0 \n\t"
|
|
|
|
"1: \n\t"
|
|
|
|
"movd (%1), %%mm0 \n\t"
|
|
|
|
"add %4, %1 \n\t"
|
|
|
|
"movd (%1), %%mm1 \n\t"
|
|
|
|
"movd (%2), %%mm2 \n\t"
|
|
|
|
"movd 4(%2), %%mm3 \n\t"
|
|
|
|
"add %4, %1 \n\t"
|
|
|
|
PAVGB" %%mm2, %%mm0 \n\t"
|
|
|
|
PAVGB" %%mm3, %%mm1 \n\t"
|
|
|
|
"movd %%mm0, (%3) \n\t"
|
|
|
|
"add %5, %3 \n\t"
|
|
|
|
"movd %%mm1, (%3) \n\t"
|
|
|
|
"add %5, %3 \n\t"
|
|
|
|
"movd (%1), %%mm0 \n\t"
|
|
|
|
"add %4, %1 \n\t"
|
|
|
|
"movd (%1), %%mm1 \n\t"
|
|
|
|
"movd 8(%2), %%mm2 \n\t"
|
|
|
|
"movd 12(%2), %%mm3 \n\t"
|
|
|
|
"add %4, %1 \n\t"
|
|
|
|
PAVGB" %%mm2, %%mm0 \n\t"
|
|
|
|
PAVGB" %%mm3, %%mm1 \n\t"
|
|
|
|
"movd %%mm0, (%3) \n\t"
|
|
|
|
"add %5, %3 \n\t"
|
|
|
|
"movd %%mm1, (%3) \n\t"
|
|
|
|
"add %5, %3 \n\t"
|
|
|
|
"add $16, %2 \n\t"
|
|
|
|
"subl $4, %0 \n\t"
|
|
|
|
"jnz 1b \n\t"
|
2007-06-12 09:29:25 +00:00
|
|
|
#ifdef PIC //Note "+bm" and "+mb" are buggy too (with gcc 3.2.2 at least) and cannot be used
|
2005-12-22 01:10:11 +00:00
|
|
|
:"+m"(h), "+a"(src1), "+c"(src2), "+d"(dst)
|
2004-09-07 01:48:45 +00:00
|
|
|
#else
|
2005-12-22 01:10:11 +00:00
|
|
|
:"+b"(h), "+a"(src1), "+c"(src2), "+d"(dst)
|
2004-09-07 01:48:45 +00:00
|
|
|
#endif
|
2008-05-08 21:11:24 +00:00
|
|
|
:"S"((x86_reg)src1Stride), "D"((x86_reg)dstStride)
|
2005-12-22 01:10:11 +00:00
|
|
|
:"memory");
|
2004-09-07 01:48:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2004-09-06 03:17:31 +00:00
|
|
|
static void DEF(put_pixels8_l2)(uint8_t *dst, uint8_t *src1, uint8_t *src2, int dstStride, int src1Stride, int h)
|
2003-01-05 15:57:10 +00:00
|
|
|
{
|
2008-10-16 13:34:09 +00:00
|
|
|
__asm__ volatile(
|
2005-12-22 01:10:11 +00:00
|
|
|
"testl $1, %0 \n\t"
|
|
|
|
" jz 1f \n\t"
|
|
|
|
"movq (%1), %%mm0 \n\t"
|
|
|
|
"movq (%2), %%mm1 \n\t"
|
|
|
|
"add %4, %1 \n\t"
|
|
|
|
"add $8, %2 \n\t"
|
|
|
|
PAVGB" %%mm1, %%mm0 \n\t"
|
|
|
|
"movq %%mm0, (%3) \n\t"
|
|
|
|
"add %5, %3 \n\t"
|
|
|
|
"decl %0 \n\t"
|
|
|
|
"1: \n\t"
|
|
|
|
"movq (%1), %%mm0 \n\t"
|
|
|
|
"add %4, %1 \n\t"
|
|
|
|
"movq (%1), %%mm1 \n\t"
|
|
|
|
"add %4, %1 \n\t"
|
|
|
|
PAVGB" (%2), %%mm0 \n\t"
|
|
|
|
PAVGB" 8(%2), %%mm1 \n\t"
|
|
|
|
"movq %%mm0, (%3) \n\t"
|
|
|
|
"add %5, %3 \n\t"
|
|
|
|
"movq %%mm1, (%3) \n\t"
|
|
|
|
"add %5, %3 \n\t"
|
|
|
|
"movq (%1), %%mm0 \n\t"
|
|
|
|
"add %4, %1 \n\t"
|
|
|
|
"movq (%1), %%mm1 \n\t"
|
|
|
|
"add %4, %1 \n\t"
|
|
|
|
PAVGB" 16(%2), %%mm0 \n\t"
|
|
|
|
PAVGB" 24(%2), %%mm1 \n\t"
|
|
|
|
"movq %%mm0, (%3) \n\t"
|
|
|
|
"add %5, %3 \n\t"
|
|
|
|
"movq %%mm1, (%3) \n\t"
|
|
|
|
"add %5, %3 \n\t"
|
|
|
|
"add $32, %2 \n\t"
|
|
|
|
"subl $4, %0 \n\t"
|
|
|
|
"jnz 1b \n\t"
|
2007-06-12 09:29:25 +00:00
|
|
|
#ifdef PIC //Note "+bm" and "+mb" are buggy too (with gcc 3.2.2 at least) and cannot be used
|
2005-12-22 01:10:11 +00:00
|
|
|
:"+m"(h), "+a"(src1), "+c"(src2), "+d"(dst)
|
2004-09-06 03:17:31 +00:00
|
|
|
#else
|
2005-12-22 01:10:11 +00:00
|
|
|
:"+b"(h), "+a"(src1), "+c"(src2), "+d"(dst)
|
2004-09-06 03:17:31 +00:00
|
|
|
#endif
|
2008-05-08 21:11:24 +00:00
|
|
|
:"S"((x86_reg)src1Stride), "D"((x86_reg)dstStride)
|
2005-12-22 01:10:11 +00:00
|
|
|
:"memory");
|
2004-09-06 03:17:31 +00:00
|
|
|
//the following should be used, though better not with gcc ...
|
2005-12-22 01:10:11 +00:00
|
|
|
/* :"+g"(h), "+r"(src1), "+r"(src2), "+r"(dst)
|
|
|
|
:"r"(src1Stride), "r"(dstStride)
|
|
|
|
:"memory");*/
|
2004-09-06 03:17:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void DEF(put_no_rnd_pixels8_l2)(uint8_t *dst, uint8_t *src1, uint8_t *src2, int dstStride, int src1Stride, int h)
|
|
|
|
{
|
2008-10-16 13:34:09 +00:00
|
|
|
__asm__ volatile(
|
2005-12-22 01:10:11 +00:00
|
|
|
"pcmpeqb %%mm6, %%mm6 \n\t"
|
|
|
|
"testl $1, %0 \n\t"
|
|
|
|
" jz 1f \n\t"
|
|
|
|
"movq (%1), %%mm0 \n\t"
|
|
|
|
"movq (%2), %%mm1 \n\t"
|
|
|
|
"add %4, %1 \n\t"
|
|
|
|
"add $8, %2 \n\t"
|
|
|
|
"pxor %%mm6, %%mm0 \n\t"
|
|
|
|
"pxor %%mm6, %%mm1 \n\t"
|
|
|
|
PAVGB" %%mm1, %%mm0 \n\t"
|
|
|
|
"pxor %%mm6, %%mm0 \n\t"
|
|
|
|
"movq %%mm0, (%3) \n\t"
|
|
|
|
"add %5, %3 \n\t"
|
|
|
|
"decl %0 \n\t"
|
|
|
|
"1: \n\t"
|
|
|
|
"movq (%1), %%mm0 \n\t"
|
|
|
|
"add %4, %1 \n\t"
|
|
|
|
"movq (%1), %%mm1 \n\t"
|
|
|
|
"add %4, %1 \n\t"
|
|
|
|
"movq (%2), %%mm2 \n\t"
|
|
|
|
"movq 8(%2), %%mm3 \n\t"
|
|
|
|
"pxor %%mm6, %%mm0 \n\t"
|
|
|
|
"pxor %%mm6, %%mm1 \n\t"
|
|
|
|
"pxor %%mm6, %%mm2 \n\t"
|
|
|
|
"pxor %%mm6, %%mm3 \n\t"
|
|
|
|
PAVGB" %%mm2, %%mm0 \n\t"
|
|
|
|
PAVGB" %%mm3, %%mm1 \n\t"
|
|
|
|
"pxor %%mm6, %%mm0 \n\t"
|
|
|
|
"pxor %%mm6, %%mm1 \n\t"
|
|
|
|
"movq %%mm0, (%3) \n\t"
|
|
|
|
"add %5, %3 \n\t"
|
|
|
|
"movq %%mm1, (%3) \n\t"
|
|
|
|
"add %5, %3 \n\t"
|
|
|
|
"movq (%1), %%mm0 \n\t"
|
|
|
|
"add %4, %1 \n\t"
|
|
|
|
"movq (%1), %%mm1 \n\t"
|
|
|
|
"add %4, %1 \n\t"
|
|
|
|
"movq 16(%2), %%mm2 \n\t"
|
|
|
|
"movq 24(%2), %%mm3 \n\t"
|
|
|
|
"pxor %%mm6, %%mm0 \n\t"
|
|
|
|
"pxor %%mm6, %%mm1 \n\t"
|
|
|
|
"pxor %%mm6, %%mm2 \n\t"
|
|
|
|
"pxor %%mm6, %%mm3 \n\t"
|
|
|
|
PAVGB" %%mm2, %%mm0 \n\t"
|
|
|
|
PAVGB" %%mm3, %%mm1 \n\t"
|
|
|
|
"pxor %%mm6, %%mm0 \n\t"
|
|
|
|
"pxor %%mm6, %%mm1 \n\t"
|
|
|
|
"movq %%mm0, (%3) \n\t"
|
|
|
|
"add %5, %3 \n\t"
|
|
|
|
"movq %%mm1, (%3) \n\t"
|
|
|
|
"add %5, %3 \n\t"
|
|
|
|
"add $32, %2 \n\t"
|
|
|
|
"subl $4, %0 \n\t"
|
|
|
|
"jnz 1b \n\t"
|
2007-06-12 09:29:25 +00:00
|
|
|
#ifdef PIC //Note "+bm" and "+mb" are buggy too (with gcc 3.2.2 at least) and cannot be used
|
2005-12-22 01:10:11 +00:00
|
|
|
:"+m"(h), "+a"(src1), "+c"(src2), "+d"(dst)
|
2004-09-06 03:17:31 +00:00
|
|
|
#else
|
2005-12-22 01:10:11 +00:00
|
|
|
:"+b"(h), "+a"(src1), "+c"(src2), "+d"(dst)
|
2004-09-06 03:17:31 +00:00
|
|
|
#endif
|
2008-05-08 21:11:24 +00:00
|
|
|
:"S"((x86_reg)src1Stride), "D"((x86_reg)dstStride)
|
2005-12-22 01:10:11 +00:00
|
|
|
:"memory");
|
2004-09-06 03:17:31 +00:00
|
|
|
//the following should be used, though better not with gcc ...
|
2005-12-22 01:10:11 +00:00
|
|
|
/* :"+g"(h), "+r"(src1), "+r"(src2), "+r"(dst)
|
|
|
|
:"r"(src1Stride), "r"(dstStride)
|
|
|
|
:"memory");*/
|
2004-09-06 03:17:31 +00:00
|
|
|
}
|
|
|
|
|
2004-09-07 01:48:45 +00:00
|
|
|
static void DEF(avg_pixels4_l2)(uint8_t *dst, uint8_t *src1, uint8_t *src2, int dstStride, int src1Stride, int h)
|
|
|
|
{
|
2008-10-16 13:34:09 +00:00
|
|
|
__asm__ volatile(
|
2005-12-22 01:10:11 +00:00
|
|
|
"testl $1, %0 \n\t"
|
|
|
|
" jz 1f \n\t"
|
|
|
|
"movd (%1), %%mm0 \n\t"
|
|
|
|
"movd (%2), %%mm1 \n\t"
|
|
|
|
"add %4, %1 \n\t"
|
|
|
|
"add $4, %2 \n\t"
|
|
|
|
PAVGB" %%mm1, %%mm0 \n\t"
|
|
|
|
PAVGB" (%3), %%mm0 \n\t"
|
|
|
|
"movd %%mm0, (%3) \n\t"
|
|
|
|
"add %5, %3 \n\t"
|
|
|
|
"decl %0 \n\t"
|
|
|
|
"1: \n\t"
|
|
|
|
"movd (%1), %%mm0 \n\t"
|
|
|
|
"add %4, %1 \n\t"
|
|
|
|
"movd (%1), %%mm1 \n\t"
|
|
|
|
"add %4, %1 \n\t"
|
|
|
|
PAVGB" (%2), %%mm0 \n\t"
|
|
|
|
PAVGB" 4(%2), %%mm1 \n\t"
|
|
|
|
PAVGB" (%3), %%mm0 \n\t"
|
|
|
|
"movd %%mm0, (%3) \n\t"
|
|
|
|
"add %5, %3 \n\t"
|
|
|
|
PAVGB" (%3), %%mm1 \n\t"
|
|
|
|
"movd %%mm1, (%3) \n\t"
|
|
|
|
"add %5, %3 \n\t"
|
|
|
|
"movd (%1), %%mm0 \n\t"
|
|
|
|
"add %4, %1 \n\t"
|
|
|
|
"movd (%1), %%mm1 \n\t"
|
|
|
|
"add %4, %1 \n\t"
|
|
|
|
PAVGB" 8(%2), %%mm0 \n\t"
|
|
|
|
PAVGB" 12(%2), %%mm1 \n\t"
|
|
|
|
PAVGB" (%3), %%mm0 \n\t"
|
|
|
|
"movd %%mm0, (%3) \n\t"
|
|
|
|
"add %5, %3 \n\t"
|
|
|
|
PAVGB" (%3), %%mm1 \n\t"
|
|
|
|
"movd %%mm1, (%3) \n\t"
|
|
|
|
"add %5, %3 \n\t"
|
|
|
|
"add $16, %2 \n\t"
|
|
|
|
"subl $4, %0 \n\t"
|
|
|
|
"jnz 1b \n\t"
|
2007-06-12 09:29:25 +00:00
|
|
|
#ifdef PIC //Note "+bm" and "+mb" are buggy too (with gcc 3.2.2 at least) and cannot be used
|
2005-12-22 01:10:11 +00:00
|
|
|
:"+m"(h), "+a"(src1), "+c"(src2), "+d"(dst)
|
2004-09-07 01:48:45 +00:00
|
|
|
#else
|
2005-12-22 01:10:11 +00:00
|
|
|
:"+b"(h), "+a"(src1), "+c"(src2), "+d"(dst)
|
2004-09-07 01:48:45 +00:00
|
|
|
#endif
|
2008-05-08 21:11:24 +00:00
|
|
|
:"S"((x86_reg)src1Stride), "D"((x86_reg)dstStride)
|
2005-12-22 01:10:11 +00:00
|
|
|
:"memory");
|
2004-09-07 01:48:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2004-09-06 03:17:31 +00:00
|
|
|
static void DEF(avg_pixels8_l2)(uint8_t *dst, uint8_t *src1, uint8_t *src2, int dstStride, int src1Stride, int h)
|
|
|
|
{
|
2008-10-16 13:34:09 +00:00
|
|
|
__asm__ volatile(
|
2005-12-22 01:10:11 +00:00
|
|
|
"testl $1, %0 \n\t"
|
|
|
|
" jz 1f \n\t"
|
|
|
|
"movq (%1), %%mm0 \n\t"
|
|
|
|
"movq (%2), %%mm1 \n\t"
|
|
|
|
"add %4, %1 \n\t"
|
|
|
|
"add $8, %2 \n\t"
|
|
|
|
PAVGB" %%mm1, %%mm0 \n\t"
|
|
|
|
PAVGB" (%3), %%mm0 \n\t"
|
|
|
|
"movq %%mm0, (%3) \n\t"
|
|
|
|
"add %5, %3 \n\t"
|
|
|
|
"decl %0 \n\t"
|
|
|
|
"1: \n\t"
|
|
|
|
"movq (%1), %%mm0 \n\t"
|
|
|
|
"add %4, %1 \n\t"
|
|
|
|
"movq (%1), %%mm1 \n\t"
|
|
|
|
"add %4, %1 \n\t"
|
|
|
|
PAVGB" (%2), %%mm0 \n\t"
|
|
|
|
PAVGB" 8(%2), %%mm1 \n\t"
|
|
|
|
PAVGB" (%3), %%mm0 \n\t"
|
|
|
|
"movq %%mm0, (%3) \n\t"
|
|
|
|
"add %5, %3 \n\t"
|
|
|
|
PAVGB" (%3), %%mm1 \n\t"
|
|
|
|
"movq %%mm1, (%3) \n\t"
|
|
|
|
"add %5, %3 \n\t"
|
|
|
|
"movq (%1), %%mm0 \n\t"
|
|
|
|
"add %4, %1 \n\t"
|
|
|
|
"movq (%1), %%mm1 \n\t"
|
|
|
|
"add %4, %1 \n\t"
|
|
|
|
PAVGB" 16(%2), %%mm0 \n\t"
|
|
|
|
PAVGB" 24(%2), %%mm1 \n\t"
|
|
|
|
PAVGB" (%3), %%mm0 \n\t"
|
|
|
|
"movq %%mm0, (%3) \n\t"
|
|
|
|
"add %5, %3 \n\t"
|
|
|
|
PAVGB" (%3), %%mm1 \n\t"
|
|
|
|
"movq %%mm1, (%3) \n\t"
|
|
|
|
"add %5, %3 \n\t"
|
|
|
|
"add $32, %2 \n\t"
|
|
|
|
"subl $4, %0 \n\t"
|
|
|
|
"jnz 1b \n\t"
|
2007-06-12 09:29:25 +00:00
|
|
|
#ifdef PIC //Note "+bm" and "+mb" are buggy too (with gcc 3.2.2 at least) and cannot be used
|
2005-12-22 01:10:11 +00:00
|
|
|
:"+m"(h), "+a"(src1), "+c"(src2), "+d"(dst)
|
2004-09-06 03:17:31 +00:00
|
|
|
#else
|
2005-12-22 01:10:11 +00:00
|
|
|
:"+b"(h), "+a"(src1), "+c"(src2), "+d"(dst)
|
2004-09-06 03:17:31 +00:00
|
|
|
#endif
|
2008-05-08 21:11:24 +00:00
|
|
|
:"S"((x86_reg)src1Stride), "D"((x86_reg)dstStride)
|
2005-12-22 01:10:11 +00:00
|
|
|
:"memory");
|
2004-09-06 03:17:31 +00:00
|
|
|
//the following should be used, though better not with gcc ...
|
2005-12-22 01:10:11 +00:00
|
|
|
/* :"+g"(h), "+r"(src1), "+r"(src2), "+r"(dst)
|
|
|
|
:"r"(src1Stride), "r"(dstStride)
|
|
|
|
:"memory");*/
|
2003-01-05 15:57:10 +00:00
|
|
|
}
|
|
|
|
|
2003-02-11 16:35:48 +00:00
|
|
|
static void DEF(put_pixels16_x2)(uint8_t *block, const uint8_t *pixels, int line_size, int h)
|
2002-09-11 12:39:53 +00:00
|
|
|
{
|
2008-10-16 13:34:09 +00:00
|
|
|
__asm__ volatile(
|
2005-12-22 01:10:11 +00:00
|
|
|
"lea (%3, %3), %%"REG_a" \n\t"
|
|
|
|
"1: \n\t"
|
|
|
|
"movq (%1), %%mm0 \n\t"
|
|
|
|
"movq (%1, %3), %%mm1 \n\t"
|
|
|
|
"movq 8(%1), %%mm2 \n\t"
|
|
|
|
"movq 8(%1, %3), %%mm3 \n\t"
|
|
|
|
PAVGB" 1(%1), %%mm0 \n\t"
|
|
|
|
PAVGB" 1(%1, %3), %%mm1 \n\t"
|
|
|
|
PAVGB" 9(%1), %%mm2 \n\t"
|
|
|
|
PAVGB" 9(%1, %3), %%mm3 \n\t"
|
|
|
|
"movq %%mm0, (%2) \n\t"
|
|
|
|
"movq %%mm1, (%2, %3) \n\t"
|
|
|
|
"movq %%mm2, 8(%2) \n\t"
|
|
|
|
"movq %%mm3, 8(%2, %3) \n\t"
|
|
|
|
"add %%"REG_a", %1 \n\t"
|
|
|
|
"add %%"REG_a", %2 \n\t"
|
|
|
|
"movq (%1), %%mm0 \n\t"
|
|
|
|
"movq (%1, %3), %%mm1 \n\t"
|
|
|
|
"movq 8(%1), %%mm2 \n\t"
|
|
|
|
"movq 8(%1, %3), %%mm3 \n\t"
|
|
|
|
PAVGB" 1(%1), %%mm0 \n\t"
|
|
|
|
PAVGB" 1(%1, %3), %%mm1 \n\t"
|
|
|
|
PAVGB" 9(%1), %%mm2 \n\t"
|
|
|
|
PAVGB" 9(%1, %3), %%mm3 \n\t"
|
|
|
|
"add %%"REG_a", %1 \n\t"
|
|
|
|
"movq %%mm0, (%2) \n\t"
|
|
|
|
"movq %%mm1, (%2, %3) \n\t"
|
|
|
|
"movq %%mm2, 8(%2) \n\t"
|
|
|
|
"movq %%mm3, 8(%2, %3) \n\t"
|
|
|
|
"add %%"REG_a", %2 \n\t"
|
|
|
|
"subl $4, %0 \n\t"
|
|
|
|
"jnz 1b \n\t"
|
|
|
|
:"+g"(h), "+S"(pixels), "+D"(block)
|
2008-05-08 21:11:24 +00:00
|
|
|
:"r" ((x86_reg)line_size)
|
2005-12-22 01:10:11 +00:00
|
|
|
:"%"REG_a, "memory");
|
2002-09-11 12:39:53 +00:00
|
|
|
}
|
2003-01-05 15:57:10 +00:00
|
|
|
|
2004-09-06 03:17:31 +00:00
|
|
|
static void DEF(put_pixels16_l2)(uint8_t *dst, uint8_t *src1, uint8_t *src2, int dstStride, int src1Stride, int h)
|
2003-01-05 15:57:10 +00:00
|
|
|
{
|
2008-10-16 13:34:09 +00:00
|
|
|
__asm__ volatile(
|
2005-12-22 01:10:11 +00:00
|
|
|
"testl $1, %0 \n\t"
|
|
|
|
" jz 1f \n\t"
|
|
|
|
"movq (%1), %%mm0 \n\t"
|
|
|
|
"movq 8(%1), %%mm1 \n\t"
|
|
|
|
PAVGB" (%2), %%mm0 \n\t"
|
|
|
|
PAVGB" 8(%2), %%mm1 \n\t"
|
|
|
|
"add %4, %1 \n\t"
|
|
|
|
"add $16, %2 \n\t"
|
|
|
|
"movq %%mm0, (%3) \n\t"
|
|
|
|
"movq %%mm1, 8(%3) \n\t"
|
|
|
|
"add %5, %3 \n\t"
|
|
|
|
"decl %0 \n\t"
|
|
|
|
"1: \n\t"
|
|
|
|
"movq (%1), %%mm0 \n\t"
|
|
|
|
"movq 8(%1), %%mm1 \n\t"
|
|
|
|
"add %4, %1 \n\t"
|
|
|
|
PAVGB" (%2), %%mm0 \n\t"
|
|
|
|
PAVGB" 8(%2), %%mm1 \n\t"
|
|
|
|
"movq %%mm0, (%3) \n\t"
|
|
|
|
"movq %%mm1, 8(%3) \n\t"
|
|
|
|
"add %5, %3 \n\t"
|
|
|
|
"movq (%1), %%mm0 \n\t"
|
|
|
|
"movq 8(%1), %%mm1 \n\t"
|
|
|
|
"add %4, %1 \n\t"
|
|
|
|
PAVGB" 16(%2), %%mm0 \n\t"
|
|
|
|
PAVGB" 24(%2), %%mm1 \n\t"
|
|
|
|
"movq %%mm0, (%3) \n\t"
|
|
|
|
"movq %%mm1, 8(%3) \n\t"
|
|
|
|
"add %5, %3 \n\t"
|
|
|
|
"add $32, %2 \n\t"
|
|
|
|
"subl $2, %0 \n\t"
|
|
|
|
"jnz 1b \n\t"
|
2007-06-12 09:29:25 +00:00
|
|
|
#ifdef PIC //Note "+bm" and "+mb" are buggy too (with gcc 3.2.2 at least) and cannot be used
|
2005-12-22 01:10:11 +00:00
|
|
|
:"+m"(h), "+a"(src1), "+c"(src2), "+d"(dst)
|
2004-09-06 03:17:31 +00:00
|
|
|
#else
|
2005-12-22 01:10:11 +00:00
|
|
|
:"+b"(h), "+a"(src1), "+c"(src2), "+d"(dst)
|
2004-09-06 03:17:31 +00:00
|
|
|
#endif
|
2008-05-08 21:11:24 +00:00
|
|
|
:"S"((x86_reg)src1Stride), "D"((x86_reg)dstStride)
|
2005-12-22 01:10:11 +00:00
|
|
|
:"memory");
|
2004-09-06 03:17:31 +00:00
|
|
|
//the following should be used, though better not with gcc ...
|
2005-12-22 01:10:11 +00:00
|
|
|
/* :"+g"(h), "+r"(src1), "+r"(src2), "+r"(dst)
|
|
|
|
:"r"(src1Stride), "r"(dstStride)
|
|
|
|
:"memory");*/
|
2004-09-06 03:17:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void DEF(avg_pixels16_l2)(uint8_t *dst, uint8_t *src1, uint8_t *src2, int dstStride, int src1Stride, int h)
|
|
|
|
{
|
2008-10-16 13:34:09 +00:00
|
|
|
__asm__ volatile(
|
2005-12-22 01:10:11 +00:00
|
|
|
"testl $1, %0 \n\t"
|
|
|
|
" jz 1f \n\t"
|
|
|
|
"movq (%1), %%mm0 \n\t"
|
|
|
|
"movq 8(%1), %%mm1 \n\t"
|
|
|
|
PAVGB" (%2), %%mm0 \n\t"
|
|
|
|
PAVGB" 8(%2), %%mm1 \n\t"
|
|
|
|
"add %4, %1 \n\t"
|
|
|
|
"add $16, %2 \n\t"
|
|
|
|
PAVGB" (%3), %%mm0 \n\t"
|
|
|
|
PAVGB" 8(%3), %%mm1 \n\t"
|
|
|
|
"movq %%mm0, (%3) \n\t"
|
|
|
|
"movq %%mm1, 8(%3) \n\t"
|
|
|
|
"add %5, %3 \n\t"
|
|
|
|
"decl %0 \n\t"
|
|
|
|
"1: \n\t"
|
|
|
|
"movq (%1), %%mm0 \n\t"
|
|
|
|
"movq 8(%1), %%mm1 \n\t"
|
|
|
|
"add %4, %1 \n\t"
|
|
|
|
PAVGB" (%2), %%mm0 \n\t"
|
|
|
|
PAVGB" 8(%2), %%mm1 \n\t"
|
|
|
|
PAVGB" (%3), %%mm0 \n\t"
|
|
|
|
PAVGB" 8(%3), %%mm1 \n\t"
|
|
|
|
"movq %%mm0, (%3) \n\t"
|
|
|
|
"movq %%mm1, 8(%3) \n\t"
|
|
|
|
"add %5, %3 \n\t"
|
|
|
|
"movq (%1), %%mm0 \n\t"
|
|
|
|
"movq 8(%1), %%mm1 \n\t"
|
|
|
|
"add %4, %1 \n\t"
|
|
|
|
PAVGB" 16(%2), %%mm0 \n\t"
|
|
|
|
PAVGB" 24(%2), %%mm1 \n\t"
|
|
|
|
PAVGB" (%3), %%mm0 \n\t"
|
|
|
|
PAVGB" 8(%3), %%mm1 \n\t"
|
|
|
|
"movq %%mm0, (%3) \n\t"
|
|
|
|
"movq %%mm1, 8(%3) \n\t"
|
|
|
|
"add %5, %3 \n\t"
|
|
|
|
"add $32, %2 \n\t"
|
|
|
|
"subl $2, %0 \n\t"
|
|
|
|
"jnz 1b \n\t"
|
2007-06-12 09:29:25 +00:00
|
|
|
#ifdef PIC //Note "+bm" and "+mb" are buggy too (with gcc 3.2.2 at least) and cannot be used
|
2005-12-22 01:10:11 +00:00
|
|
|
:"+m"(h), "+a"(src1), "+c"(src2), "+d"(dst)
|
2004-09-06 03:17:31 +00:00
|
|
|
#else
|
2005-12-22 01:10:11 +00:00
|
|
|
:"+b"(h), "+a"(src1), "+c"(src2), "+d"(dst)
|
2004-09-06 03:17:31 +00:00
|
|
|
#endif
|
2008-05-08 21:11:24 +00:00
|
|
|
:"S"((x86_reg)src1Stride), "D"((x86_reg)dstStride)
|
2005-12-22 01:10:11 +00:00
|
|
|
:"memory");
|
2004-09-06 03:17:31 +00:00
|
|
|
//the following should be used, though better not with gcc ...
|
2005-12-22 01:10:11 +00:00
|
|
|
/* :"+g"(h), "+r"(src1), "+r"(src2), "+r"(dst)
|
|
|
|
:"r"(src1Stride), "r"(dstStride)
|
|
|
|
:"memory");*/
|
2004-09-06 03:17:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void DEF(put_no_rnd_pixels16_l2)(uint8_t *dst, uint8_t *src1, uint8_t *src2, int dstStride, int src1Stride, int h)
|
|
|
|
{
|
2008-10-16 13:34:09 +00:00
|
|
|
__asm__ volatile(
|
2005-12-22 01:10:11 +00:00
|
|
|
"pcmpeqb %%mm6, %%mm6 \n\t"
|
|
|
|
"testl $1, %0 \n\t"
|
|
|
|
" jz 1f \n\t"
|
|
|
|
"movq (%1), %%mm0 \n\t"
|
|
|
|
"movq 8(%1), %%mm1 \n\t"
|
|
|
|
"movq (%2), %%mm2 \n\t"
|
|
|
|
"movq 8(%2), %%mm3 \n\t"
|
|
|
|
"pxor %%mm6, %%mm0 \n\t"
|
|
|
|
"pxor %%mm6, %%mm1 \n\t"
|
|
|
|
"pxor %%mm6, %%mm2 \n\t"
|
|
|
|
"pxor %%mm6, %%mm3 \n\t"
|
|
|
|
PAVGB" %%mm2, %%mm0 \n\t"
|
|
|
|
PAVGB" %%mm3, %%mm1 \n\t"
|
|
|
|
"pxor %%mm6, %%mm0 \n\t"
|
|
|
|
"pxor %%mm6, %%mm1 \n\t"
|
|
|
|
"add %4, %1 \n\t"
|
|
|
|
"add $16, %2 \n\t"
|
|
|
|
"movq %%mm0, (%3) \n\t"
|
|
|
|
"movq %%mm1, 8(%3) \n\t"
|
|
|
|
"add %5, %3 \n\t"
|
|
|
|
"decl %0 \n\t"
|
|
|
|
"1: \n\t"
|
|
|
|
"movq (%1), %%mm0 \n\t"
|
|
|
|
"movq 8(%1), %%mm1 \n\t"
|
|
|
|
"add %4, %1 \n\t"
|
|
|
|
"movq (%2), %%mm2 \n\t"
|
|
|
|
"movq 8(%2), %%mm3 \n\t"
|
|
|
|
"pxor %%mm6, %%mm0 \n\t"
|
|
|
|
"pxor %%mm6, %%mm1 \n\t"
|
|
|
|
"pxor %%mm6, %%mm2 \n\t"
|
|
|
|
"pxor %%mm6, %%mm3 \n\t"
|
|
|
|
PAVGB" %%mm2, %%mm0 \n\t"
|
|
|
|
PAVGB" %%mm3, %%mm1 \n\t"
|
|
|
|
"pxor %%mm6, %%mm0 \n\t"
|
|
|
|
"pxor %%mm6, %%mm1 \n\t"
|
|
|
|
"movq %%mm0, (%3) \n\t"
|
|
|
|
"movq %%mm1, 8(%3) \n\t"
|
|
|
|
"add %5, %3 \n\t"
|
|
|
|
"movq (%1), %%mm0 \n\t"
|
|
|
|
"movq 8(%1), %%mm1 \n\t"
|
|
|
|
"add %4, %1 \n\t"
|
|
|
|
"movq 16(%2), %%mm2 \n\t"
|
|
|
|
"movq 24(%2), %%mm3 \n\t"
|
|
|
|
"pxor %%mm6, %%mm0 \n\t"
|
|
|
|
"pxor %%mm6, %%mm1 \n\t"
|
|
|
|
"pxor %%mm6, %%mm2 \n\t"
|
|
|
|
"pxor %%mm6, %%mm3 \n\t"
|
|
|
|
PAVGB" %%mm2, %%mm0 \n\t"
|
|
|
|
PAVGB" %%mm3, %%mm1 \n\t"
|
|
|
|
"pxor %%mm6, %%mm0 \n\t"
|
|
|
|
"pxor %%mm6, %%mm1 \n\t"
|
|
|
|
"movq %%mm0, (%3) \n\t"
|
|
|
|
"movq %%mm1, 8(%3) \n\t"
|
|
|
|
"add %5, %3 \n\t"
|
|
|
|
"add $32, %2 \n\t"
|
|
|
|
"subl $2, %0 \n\t"
|
|
|
|
"jnz 1b \n\t"
|
2007-06-12 09:29:25 +00:00
|
|
|
#ifdef PIC //Note "+bm" and "+mb" are buggy too (with gcc 3.2.2 at least) and cannot be used
|
2005-12-22 01:10:11 +00:00
|
|
|
:"+m"(h), "+a"(src1), "+c"(src2), "+d"(dst)
|
2004-09-06 03:17:31 +00:00
|
|
|
#else
|
2005-12-22 01:10:11 +00:00
|
|
|
:"+b"(h), "+a"(src1), "+c"(src2), "+d"(dst)
|
2004-09-06 03:17:31 +00:00
|
|
|
#endif
|
2008-05-08 21:11:24 +00:00
|
|
|
:"S"((x86_reg)src1Stride), "D"((x86_reg)dstStride)
|
2005-12-22 01:10:11 +00:00
|
|
|
:"memory");
|
2004-09-06 03:17:31 +00:00
|
|
|
//the following should be used, though better not with gcc ...
|
2005-12-22 01:10:11 +00:00
|
|
|
/* :"+g"(h), "+r"(src1), "+r"(src2), "+r"(dst)
|
|
|
|
:"r"(src1Stride), "r"(dstStride)
|
|
|
|
:"memory");*/
|
2003-01-05 15:57:10 +00:00
|
|
|
}
|
2005-12-17 18:14:38 +00:00
|
|
|
|
2002-05-18 22:49:11 +00:00
|
|
|
/* GL: this function does incorrect rounding if overflow */
|
2003-02-11 16:35:48 +00:00
|
|
|
static void DEF(put_no_rnd_pixels8_x2)(uint8_t *block, const uint8_t *pixels, int line_size, int h)
|
2002-05-17 01:04:14 +00:00
|
|
|
{
|
2002-05-30 15:14:56 +00:00
|
|
|
MOVQ_BONE(mm6);
|
2008-10-16 13:34:09 +00:00
|
|
|
__asm__ volatile(
|
2005-12-22 01:10:11 +00:00
|
|
|
"lea (%3, %3), %%"REG_a" \n\t"
|
|
|
|
"1: \n\t"
|
|
|
|
"movq (%1), %%mm0 \n\t"
|
|
|
|
"movq (%1, %3), %%mm2 \n\t"
|
|
|
|
"movq 1(%1), %%mm1 \n\t"
|
|
|
|
"movq 1(%1, %3), %%mm3 \n\t"
|
|
|
|
"add %%"REG_a", %1 \n\t"
|
|
|
|
"psubusb %%mm6, %%mm0 \n\t"
|
|
|
|
"psubusb %%mm6, %%mm2 \n\t"
|
|
|
|
PAVGB" %%mm1, %%mm0 \n\t"
|
|
|
|
PAVGB" %%mm3, %%mm2 \n\t"
|
|
|
|
"movq %%mm0, (%2) \n\t"
|
|
|
|
"movq %%mm2, (%2, %3) \n\t"
|
|
|
|
"movq (%1), %%mm0 \n\t"
|
|
|
|
"movq 1(%1), %%mm1 \n\t"
|
|
|
|
"movq (%1, %3), %%mm2 \n\t"
|
|
|
|
"movq 1(%1, %3), %%mm3 \n\t"
|
|
|
|
"add %%"REG_a", %2 \n\t"
|
|
|
|
"add %%"REG_a", %1 \n\t"
|
|
|
|
"psubusb %%mm6, %%mm0 \n\t"
|
|
|
|
"psubusb %%mm6, %%mm2 \n\t"
|
|
|
|
PAVGB" %%mm1, %%mm0 \n\t"
|
|
|
|
PAVGB" %%mm3, %%mm2 \n\t"
|
|
|
|
"movq %%mm0, (%2) \n\t"
|
|
|
|
"movq %%mm2, (%2, %3) \n\t"
|
|
|
|
"add %%"REG_a", %2 \n\t"
|
|
|
|
"subl $4, %0 \n\t"
|
|
|
|
"jnz 1b \n\t"
|
|
|
|
:"+g"(h), "+S"(pixels), "+D"(block)
|
2008-05-08 21:11:24 +00:00
|
|
|
:"r" ((x86_reg)line_size)
|
2005-12-22 01:10:11 +00:00
|
|
|
:"%"REG_a, "memory");
|
2001-07-22 14:18:56 +00:00
|
|
|
}
|
|
|
|
|
2003-02-11 16:35:48 +00:00
|
|
|
static void DEF(put_pixels8_y2)(uint8_t *block, const uint8_t *pixels, int line_size, int h)
|
2001-07-22 14:18:56 +00:00
|
|
|
{
|
2008-10-16 13:34:09 +00:00
|
|
|
__asm__ volatile(
|
2005-12-22 01:10:11 +00:00
|
|
|
"lea (%3, %3), %%"REG_a" \n\t"
|
|
|
|
"movq (%1), %%mm0 \n\t"
|
|
|
|
"sub %3, %2 \n\t"
|
|
|
|
"1: \n\t"
|
|
|
|
"movq (%1, %3), %%mm1 \n\t"
|
|
|
|
"movq (%1, %%"REG_a"), %%mm2 \n\t"
|
|
|
|
"add %%"REG_a", %1 \n\t"
|
|
|
|
PAVGB" %%mm1, %%mm0 \n\t"
|
|
|
|
PAVGB" %%mm2, %%mm1 \n\t"
|
|
|
|
"movq %%mm0, (%2, %3) \n\t"
|
|
|
|
"movq %%mm1, (%2, %%"REG_a") \n\t"
|
|
|
|
"movq (%1, %3), %%mm1 \n\t"
|
|
|
|
"movq (%1, %%"REG_a"), %%mm0 \n\t"
|
|
|
|
"add %%"REG_a", %2 \n\t"
|
|
|
|
"add %%"REG_a", %1 \n\t"
|
|
|
|
PAVGB" %%mm1, %%mm2 \n\t"
|
|
|
|
PAVGB" %%mm0, %%mm1 \n\t"
|
|
|
|
"movq %%mm2, (%2, %3) \n\t"
|
|
|
|
"movq %%mm1, (%2, %%"REG_a") \n\t"
|
|
|
|
"add %%"REG_a", %2 \n\t"
|
|
|
|
"subl $4, %0 \n\t"
|
|
|
|
"jnz 1b \n\t"
|
|
|
|
:"+g"(h), "+S"(pixels), "+D" (block)
|
2008-05-08 21:11:24 +00:00
|
|
|
:"r" ((x86_reg)line_size)
|
2005-12-22 01:10:11 +00:00
|
|
|
:"%"REG_a, "memory");
|
2002-05-17 01:04:14 +00:00
|
|
|
}
|
|
|
|
|
2002-05-18 22:49:11 +00:00
|
|
|
/* GL: this function does incorrect rounding if overflow */
|
2003-02-11 16:35:48 +00:00
|
|
|
static void DEF(put_no_rnd_pixels8_y2)(uint8_t *block, const uint8_t *pixels, int line_size, int h)
|
2002-05-17 01:04:14 +00:00
|
|
|
{
|
2002-05-30 15:14:56 +00:00
|
|
|
MOVQ_BONE(mm6);
|
2008-10-16 13:34:09 +00:00
|
|
|
__asm__ volatile(
|
2005-12-22 01:10:11 +00:00
|
|
|
"lea (%3, %3), %%"REG_a" \n\t"
|
|
|
|
"movq (%1), %%mm0 \n\t"
|
|
|
|
"sub %3, %2 \n\t"
|
|
|
|
"1: \n\t"
|
|
|
|
"movq (%1, %3), %%mm1 \n\t"
|
|
|
|
"movq (%1, %%"REG_a"), %%mm2 \n\t"
|
|
|
|
"add %%"REG_a", %1 \n\t"
|
|
|
|
"psubusb %%mm6, %%mm1 \n\t"
|
|
|
|
PAVGB" %%mm1, %%mm0 \n\t"
|
|
|
|
PAVGB" %%mm2, %%mm1 \n\t"
|
|
|
|
"movq %%mm0, (%2, %3) \n\t"
|
|
|
|
"movq %%mm1, (%2, %%"REG_a") \n\t"
|
|
|
|
"movq (%1, %3), %%mm1 \n\t"
|
|
|
|
"movq (%1, %%"REG_a"), %%mm0 \n\t"
|
|
|
|
"add %%"REG_a", %2 \n\t"
|
|
|
|
"add %%"REG_a", %1 \n\t"
|
|
|
|
"psubusb %%mm6, %%mm1 \n\t"
|
|
|
|
PAVGB" %%mm1, %%mm2 \n\t"
|
|
|
|
PAVGB" %%mm0, %%mm1 \n\t"
|
|
|
|
"movq %%mm2, (%2, %3) \n\t"
|
|
|
|
"movq %%mm1, (%2, %%"REG_a") \n\t"
|
|
|
|
"add %%"REG_a", %2 \n\t"
|
|
|
|
"subl $4, %0 \n\t"
|
|
|
|
"jnz 1b \n\t"
|
|
|
|
:"+g"(h), "+S"(pixels), "+D" (block)
|
2008-05-08 21:11:24 +00:00
|
|
|
:"r" ((x86_reg)line_size)
|
2005-12-22 01:10:11 +00:00
|
|
|
:"%"REG_a, "memory");
|
2001-07-22 14:18:56 +00:00
|
|
|
}
|
|
|
|
|
2003-02-11 16:35:48 +00:00
|
|
|
static void DEF(avg_pixels8)(uint8_t *block, const uint8_t *pixels, int line_size, int h)
|
2001-07-22 14:18:56 +00:00
|
|
|
{
|
2008-10-16 13:34:09 +00:00
|
|
|
__asm__ volatile(
|
2005-12-22 01:10:11 +00:00
|
|
|
"lea (%3, %3), %%"REG_a" \n\t"
|
|
|
|
"1: \n\t"
|
|
|
|
"movq (%2), %%mm0 \n\t"
|
|
|
|
"movq (%2, %3), %%mm1 \n\t"
|
|
|
|
PAVGB" (%1), %%mm0 \n\t"
|
|
|
|
PAVGB" (%1, %3), %%mm1 \n\t"
|
|
|
|
"movq %%mm0, (%2) \n\t"
|
|
|
|
"movq %%mm1, (%2, %3) \n\t"
|
|
|
|
"add %%"REG_a", %1 \n\t"
|
|
|
|
"add %%"REG_a", %2 \n\t"
|
|
|
|
"movq (%2), %%mm0 \n\t"
|
|
|
|
"movq (%2, %3), %%mm1 \n\t"
|
|
|
|
PAVGB" (%1), %%mm0 \n\t"
|
|
|
|
PAVGB" (%1, %3), %%mm1 \n\t"
|
|
|
|
"add %%"REG_a", %1 \n\t"
|
|
|
|
"movq %%mm0, (%2) \n\t"
|
|
|
|
"movq %%mm1, (%2, %3) \n\t"
|
|
|
|
"add %%"REG_a", %2 \n\t"
|
|
|
|
"subl $4, %0 \n\t"
|
|
|
|
"jnz 1b \n\t"
|
|
|
|
:"+g"(h), "+S"(pixels), "+D"(block)
|
2008-05-08 21:11:24 +00:00
|
|
|
:"r" ((x86_reg)line_size)
|
2005-12-22 01:10:11 +00:00
|
|
|
:"%"REG_a, "memory");
|
2001-07-22 14:18:56 +00:00
|
|
|
}
|
|
|
|
|
2003-02-11 16:35:48 +00:00
|
|
|
static void DEF(avg_pixels8_x2)(uint8_t *block, const uint8_t *pixels, int line_size, int h)
|
2001-07-22 14:18:56 +00:00
|
|
|
{
|
2008-10-16 13:34:09 +00:00
|
|
|
__asm__ volatile(
|
2005-12-22 01:10:11 +00:00
|
|
|
"lea (%3, %3), %%"REG_a" \n\t"
|
|
|
|
"1: \n\t"
|
|
|
|
"movq (%1), %%mm0 \n\t"
|
|
|
|
"movq (%1, %3), %%mm2 \n\t"
|
|
|
|
PAVGB" 1(%1), %%mm0 \n\t"
|
|
|
|
PAVGB" 1(%1, %3), %%mm2 \n\t"
|
|
|
|
PAVGB" (%2), %%mm0 \n\t"
|
|
|
|
PAVGB" (%2, %3), %%mm2 \n\t"
|
|
|
|
"add %%"REG_a", %1 \n\t"
|
|
|
|
"movq %%mm0, (%2) \n\t"
|
|
|
|
"movq %%mm2, (%2, %3) \n\t"
|
|
|
|
"movq (%1), %%mm0 \n\t"
|
|
|
|
"movq (%1, %3), %%mm2 \n\t"
|
|
|
|
PAVGB" 1(%1), %%mm0 \n\t"
|
|
|
|
PAVGB" 1(%1, %3), %%mm2 \n\t"
|
|
|
|
"add %%"REG_a", %2 \n\t"
|
|
|
|
"add %%"REG_a", %1 \n\t"
|
|
|
|
PAVGB" (%2), %%mm0 \n\t"
|
|
|
|
PAVGB" (%2, %3), %%mm2 \n\t"
|
|
|
|
"movq %%mm0, (%2) \n\t"
|
|
|
|
"movq %%mm2, (%2, %3) \n\t"
|
|
|
|
"add %%"REG_a", %2 \n\t"
|
|
|
|
"subl $4, %0 \n\t"
|
|
|
|
"jnz 1b \n\t"
|
|
|
|
:"+g"(h), "+S"(pixels), "+D"(block)
|
2008-05-08 21:11:24 +00:00
|
|
|
:"r" ((x86_reg)line_size)
|
2005-12-22 01:10:11 +00:00
|
|
|
:"%"REG_a, "memory");
|
2001-07-22 14:18:56 +00:00
|
|
|
}
|
|
|
|
|
2003-02-11 16:35:48 +00:00
|
|
|
static void DEF(avg_pixels8_y2)(uint8_t *block, const uint8_t *pixels, int line_size, int h)
|
2001-07-22 14:18:56 +00:00
|
|
|
{
|
2008-10-16 13:34:09 +00:00
|
|
|
__asm__ volatile(
|
2005-12-22 01:10:11 +00:00
|
|
|
"lea (%3, %3), %%"REG_a" \n\t"
|
|
|
|
"movq (%1), %%mm0 \n\t"
|
|
|
|
"sub %3, %2 \n\t"
|
|
|
|
"1: \n\t"
|
|
|
|
"movq (%1, %3), %%mm1 \n\t"
|
|
|
|
"movq (%1, %%"REG_a"), %%mm2 \n\t"
|
|
|
|
"add %%"REG_a", %1 \n\t"
|
|
|
|
PAVGB" %%mm1, %%mm0 \n\t"
|
|
|
|
PAVGB" %%mm2, %%mm1 \n\t"
|
|
|
|
"movq (%2, %3), %%mm3 \n\t"
|
|
|
|
"movq (%2, %%"REG_a"), %%mm4 \n\t"
|
|
|
|
PAVGB" %%mm3, %%mm0 \n\t"
|
|
|
|
PAVGB" %%mm4, %%mm1 \n\t"
|
|
|
|
"movq %%mm0, (%2, %3) \n\t"
|
|
|
|
"movq %%mm1, (%2, %%"REG_a") \n\t"
|
|
|
|
"movq (%1, %3), %%mm1 \n\t"
|
|
|
|
"movq (%1, %%"REG_a"), %%mm0 \n\t"
|
|
|
|
PAVGB" %%mm1, %%mm2 \n\t"
|
|
|
|
PAVGB" %%mm0, %%mm1 \n\t"
|
|
|
|
"add %%"REG_a", %2 \n\t"
|
|
|
|
"add %%"REG_a", %1 \n\t"
|
|
|
|
"movq (%2, %3), %%mm3 \n\t"
|
|
|
|
"movq (%2, %%"REG_a"), %%mm4 \n\t"
|
|
|
|
PAVGB" %%mm3, %%mm2 \n\t"
|
|
|
|
PAVGB" %%mm4, %%mm1 \n\t"
|
|
|
|
"movq %%mm2, (%2, %3) \n\t"
|
|
|
|
"movq %%mm1, (%2, %%"REG_a") \n\t"
|
|
|
|
"add %%"REG_a", %2 \n\t"
|
|
|
|
"subl $4, %0 \n\t"
|
|
|
|
"jnz 1b \n\t"
|
|
|
|
:"+g"(h), "+S"(pixels), "+D"(block)
|
2008-05-08 21:11:24 +00:00
|
|
|
:"r" ((x86_reg)line_size)
|
2005-12-22 01:10:11 +00:00
|
|
|
:"%"REG_a, "memory");
|
2001-07-22 14:18:56 +00:00
|
|
|
}
|
|
|
|
|
2007-06-12 09:29:25 +00:00
|
|
|
/* Note this is not correctly rounded, but this function is only
|
|
|
|
* used for B-frames so it does not matter. */
|
2003-02-11 16:35:48 +00:00
|
|
|
static void DEF(avg_pixels8_xy2)(uint8_t *block, const uint8_t *pixels, int line_size, int h)
|
2001-07-22 14:18:56 +00:00
|
|
|
{
|
2002-05-30 15:14:56 +00:00
|
|
|
MOVQ_BONE(mm6);
|
2008-10-16 13:34:09 +00:00
|
|
|
__asm__ volatile(
|
2005-12-22 01:10:11 +00:00
|
|
|
"lea (%3, %3), %%"REG_a" \n\t"
|
|
|
|
"movq (%1), %%mm0 \n\t"
|
|
|
|
PAVGB" 1(%1), %%mm0 \n\t"
|
2006-08-12 16:37:31 +00:00
|
|
|
ASMALIGN(3)
|
2005-12-22 01:10:11 +00:00
|
|
|
"1: \n\t"
|
|
|
|
"movq (%1, %%"REG_a"), %%mm2 \n\t"
|
|
|
|
"movq (%1, %3), %%mm1 \n\t"
|
|
|
|
"psubusb %%mm6, %%mm2 \n\t"
|
|
|
|
PAVGB" 1(%1, %3), %%mm1 \n\t"
|
|
|
|
PAVGB" 1(%1, %%"REG_a"), %%mm2 \n\t"
|
|
|
|
"add %%"REG_a", %1 \n\t"
|
|
|
|
PAVGB" %%mm1, %%mm0 \n\t"
|
|
|
|
PAVGB" %%mm2, %%mm1 \n\t"
|
|
|
|
PAVGB" (%2), %%mm0 \n\t"
|
|
|
|
PAVGB" (%2, %3), %%mm1 \n\t"
|
|
|
|
"movq %%mm0, (%2) \n\t"
|
|
|
|
"movq %%mm1, (%2, %3) \n\t"
|
|
|
|
"movq (%1, %3), %%mm1 \n\t"
|
|
|
|
"movq (%1, %%"REG_a"), %%mm0 \n\t"
|
|
|
|
PAVGB" 1(%1, %3), %%mm1 \n\t"
|
|
|
|
PAVGB" 1(%1, %%"REG_a"), %%mm0 \n\t"
|
|
|
|
"add %%"REG_a", %2 \n\t"
|
|
|
|
"add %%"REG_a", %1 \n\t"
|
|
|
|
PAVGB" %%mm1, %%mm2 \n\t"
|
|
|
|
PAVGB" %%mm0, %%mm1 \n\t"
|
|
|
|
PAVGB" (%2), %%mm2 \n\t"
|
|
|
|
PAVGB" (%2, %3), %%mm1 \n\t"
|
|
|
|
"movq %%mm2, (%2) \n\t"
|
|
|
|
"movq %%mm1, (%2, %3) \n\t"
|
|
|
|
"add %%"REG_a", %2 \n\t"
|
|
|
|
"subl $4, %0 \n\t"
|
|
|
|
"jnz 1b \n\t"
|
|
|
|
:"+g"(h), "+S"(pixels), "+D"(block)
|
2008-05-08 21:11:24 +00:00
|
|
|
:"r" ((x86_reg)line_size)
|
2005-12-22 01:10:11 +00:00
|
|
|
:"%"REG_a, "memory");
|
2001-07-22 14:18:56 +00:00
|
|
|
}
|
2002-09-11 12:39:53 +00:00
|
|
|
|
2008-02-03 17:04:33 +00:00
|
|
|
static void DEF(avg_pixels4)(uint8_t *block, const uint8_t *pixels, int line_size, int h)
|
|
|
|
{
|
|
|
|
do {
|
2008-10-16 13:34:09 +00:00
|
|
|
__asm__ volatile(
|
2008-02-03 17:04:33 +00:00
|
|
|
"movd (%1), %%mm0 \n\t"
|
|
|
|
"movd (%1, %2), %%mm1 \n\t"
|
|
|
|
"movd (%1, %2, 2), %%mm2 \n\t"
|
|
|
|
"movd (%1, %3), %%mm3 \n\t"
|
|
|
|
PAVGB" (%0), %%mm0 \n\t"
|
|
|
|
PAVGB" (%0, %2), %%mm1 \n\t"
|
|
|
|
PAVGB" (%0, %2, 2), %%mm2 \n\t"
|
|
|
|
PAVGB" (%0, %3), %%mm3 \n\t"
|
|
|
|
"movd %%mm0, (%1) \n\t"
|
|
|
|
"movd %%mm1, (%1, %2) \n\t"
|
|
|
|
"movd %%mm2, (%1, %2, 2) \n\t"
|
|
|
|
"movd %%mm3, (%1, %3) \n\t"
|
|
|
|
::"S"(pixels), "D"(block),
|
2008-05-08 21:11:24 +00:00
|
|
|
"r" ((x86_reg)line_size), "r"((x86_reg)3L*line_size)
|
2008-02-03 17:04:33 +00:00
|
|
|
:"memory");
|
|
|
|
block += 4*line_size;
|
|
|
|
pixels += 4*line_size;
|
|
|
|
h -= 4;
|
|
|
|
} while(h > 0);
|
|
|
|
}
|
|
|
|
|
2002-09-11 12:39:53 +00:00
|
|
|
//FIXME the following could be optimized too ...
|
2003-02-11 16:35:48 +00:00
|
|
|
static void DEF(put_no_rnd_pixels16_x2)(uint8_t *block, const uint8_t *pixels, int line_size, int h){
|
2002-09-11 12:39:53 +00:00
|
|
|
DEF(put_no_rnd_pixels8_x2)(block , pixels , line_size, h);
|
|
|
|
DEF(put_no_rnd_pixels8_x2)(block+8, pixels+8, line_size, h);
|
|
|
|
}
|
2003-02-11 16:35:48 +00:00
|
|
|
static void DEF(put_pixels16_y2)(uint8_t *block, const uint8_t *pixels, int line_size, int h){
|
2002-09-11 12:39:53 +00:00
|
|
|
DEF(put_pixels8_y2)(block , pixels , line_size, h);
|
|
|
|
DEF(put_pixels8_y2)(block+8, pixels+8, line_size, h);
|
|
|
|
}
|
2003-02-11 16:35:48 +00:00
|
|
|
static void DEF(put_no_rnd_pixels16_y2)(uint8_t *block, const uint8_t *pixels, int line_size, int h){
|
2002-09-11 12:39:53 +00:00
|
|
|
DEF(put_no_rnd_pixels8_y2)(block , pixels , line_size, h);
|
|
|
|
DEF(put_no_rnd_pixels8_y2)(block+8, pixels+8, line_size, h);
|
|
|
|
}
|
2003-02-11 16:35:48 +00:00
|
|
|
static void DEF(avg_pixels16)(uint8_t *block, const uint8_t *pixels, int line_size, int h){
|
2002-09-11 12:39:53 +00:00
|
|
|
DEF(avg_pixels8)(block , pixels , line_size, h);
|
|
|
|
DEF(avg_pixels8)(block+8, pixels+8, line_size, h);
|
|
|
|
}
|
2003-02-11 16:35:48 +00:00
|
|
|
static void DEF(avg_pixels16_x2)(uint8_t *block, const uint8_t *pixels, int line_size, int h){
|
2002-09-11 12:39:53 +00:00
|
|
|
DEF(avg_pixels8_x2)(block , pixels , line_size, h);
|
|
|
|
DEF(avg_pixels8_x2)(block+8, pixels+8, line_size, h);
|
|
|
|
}
|
2003-02-11 16:35:48 +00:00
|
|
|
static void DEF(avg_pixels16_y2)(uint8_t *block, const uint8_t *pixels, int line_size, int h){
|
2002-09-11 12:39:53 +00:00
|
|
|
DEF(avg_pixels8_y2)(block , pixels , line_size, h);
|
|
|
|
DEF(avg_pixels8_y2)(block+8, pixels+8, line_size, h);
|
|
|
|
}
|
2003-02-11 16:35:48 +00:00
|
|
|
static void DEF(avg_pixels16_xy2)(uint8_t *block, const uint8_t *pixels, int line_size, int h){
|
2002-09-11 12:39:53 +00:00
|
|
|
DEF(avg_pixels8_xy2)(block , pixels , line_size, h);
|
|
|
|
DEF(avg_pixels8_xy2)(block+8, pixels+8, line_size, h);
|
|
|
|
}
|
|
|
|
|
2006-10-01 21:25:17 +00:00
|
|
|
#define QPEL_2TAP_L3(OPNAME) \
|
|
|
|
static void DEF(OPNAME ## 2tap_qpel16_l3)(uint8_t *dst, uint8_t *src, int stride, int h, int off1, int off2){\
|
2008-10-16 13:34:09 +00:00
|
|
|
__asm__ volatile(\
|
2006-10-01 21:25:17 +00:00
|
|
|
"1: \n\t"\
|
|
|
|
"movq (%1,%2), %%mm0 \n\t"\
|
|
|
|
"movq 8(%1,%2), %%mm1 \n\t"\
|
|
|
|
PAVGB" (%1,%3), %%mm0 \n\t"\
|
|
|
|
PAVGB" 8(%1,%3), %%mm1 \n\t"\
|
|
|
|
PAVGB" (%1), %%mm0 \n\t"\
|
|
|
|
PAVGB" 8(%1), %%mm1 \n\t"\
|
|
|
|
STORE_OP( (%1,%4),%%mm0)\
|
|
|
|
STORE_OP(8(%1,%4),%%mm1)\
|
|
|
|
"movq %%mm0, (%1,%4) \n\t"\
|
|
|
|
"movq %%mm1, 8(%1,%4) \n\t"\
|
|
|
|
"add %5, %1 \n\t"\
|
|
|
|
"decl %0 \n\t"\
|
|
|
|
"jnz 1b \n\t"\
|
|
|
|
:"+g"(h), "+r"(src)\
|
2008-05-08 21:11:24 +00:00
|
|
|
:"r"((x86_reg)off1), "r"((x86_reg)off2),\
|
|
|
|
"r"((x86_reg)(dst-src)), "r"((x86_reg)stride)\
|
2006-10-01 21:25:17 +00:00
|
|
|
:"memory"\
|
|
|
|
);\
|
|
|
|
}\
|
|
|
|
static void DEF(OPNAME ## 2tap_qpel8_l3)(uint8_t *dst, uint8_t *src, int stride, int h, int off1, int off2){\
|
2008-10-16 13:34:09 +00:00
|
|
|
__asm__ volatile(\
|
2006-10-01 21:25:17 +00:00
|
|
|
"1: \n\t"\
|
|
|
|
"movq (%1,%2), %%mm0 \n\t"\
|
|
|
|
PAVGB" (%1,%3), %%mm0 \n\t"\
|
|
|
|
PAVGB" (%1), %%mm0 \n\t"\
|
|
|
|
STORE_OP((%1,%4),%%mm0)\
|
|
|
|
"movq %%mm0, (%1,%4) \n\t"\
|
|
|
|
"add %5, %1 \n\t"\
|
|
|
|
"decl %0 \n\t"\
|
|
|
|
"jnz 1b \n\t"\
|
|
|
|
:"+g"(h), "+r"(src)\
|
2008-05-08 21:11:24 +00:00
|
|
|
:"r"((x86_reg)off1), "r"((x86_reg)off2),\
|
|
|
|
"r"((x86_reg)(dst-src)), "r"((x86_reg)stride)\
|
2006-10-01 21:25:17 +00:00
|
|
|
:"memory"\
|
|
|
|
);\
|
|
|
|
}
|
|
|
|
|
|
|
|
#define STORE_OP(a,b) PAVGB" "#a","#b" \n\t"
|
|
|
|
QPEL_2TAP_L3(avg_)
|
|
|
|
#undef STORE_OP
|
|
|
|
#define STORE_OP(a,b)
|
|
|
|
QPEL_2TAP_L3(put_)
|
|
|
|
#undef STORE_OP
|
|
|
|
#undef QPEL_2TAP_L3
|