diff options
author | Luca Barbato <lu_zero@gentoo.org> | 2006-09-19 22:22:29 +0000 |
---|---|---|
committer | Luca Barbato <lu_zero@gentoo.org> | 2006-09-19 22:22:29 +0000 |
commit | 99aed7c8fc9db68a18816a98b84bf0c09a00cf1e (patch) | |
tree | c47cd59aadb4b5ecefd560f80b8240905de7f45e /libavcodec/i386/mathops.h | |
parent | 39e1b5cf8e0ecaa0e7b8f3192d402ee361860e37 (diff) | |
download | ffmpeg-99aed7c8fc9db68a18816a98b84bf0c09a00cf1e.tar.gz |
New single instruction math operation header
Originally committed as revision 6291 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/i386/mathops.h')
-rw-r--r-- | libavcodec/i386/mathops.h | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/libavcodec/i386/mathops.h b/libavcodec/i386/mathops.h new file mode 100644 index 0000000000..1e768af087 --- /dev/null +++ b/libavcodec/i386/mathops.h @@ -0,0 +1,39 @@ +/* + * simple math operations + * Copyright (c) 2006 Michael Niedermayer <michaelni@gmx.at> et al + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + */ + +#ifdef FRAC_BITS +# define MULL(ra, rb) \ + ({ int rt, dummy; asm (\ + "imull %3 \n\t"\ + "shrdl %4, %%edx, %%eax \n\t"\ + : "=a"(rt), "=d"(dummy)\ + : "a" (ra), "rm" (rb), "i"(FRAC_BITS));\ + rt; }) +#endif + +#define MULH(ra, rb) \ + ({ int rt, dummy;\ + asm ("imull %3\n\t" : "=d"(rt), "=a"(dummy): "a" (ra), "rm" (rb));\ + rt; }) + +#define MUL64(ra, rb) \ + ({ int64_t rt;\ + asm ("imull %2\n\t" : "=A"(rt) : "a" (ra), "g" (rb));\ + rt; }) + |