Mercurial > libavcodec.hg
annotate bfin/mathops.h @ 8031:eebc7209c47f libavcodec
Convert asm keyword into __asm__.
Neither the asm() nor the __asm__() keyword is part of the C99
standard, but while GCC accepts the former in C89 syntax, it is not
accepted in C99 unless GNU extensions are turned on (with -fasm). The
latter form is accepted in any syntax as an extension (without
requiring further command-line options).
Sun Studio C99 compiler also does not accept asm() while accepting
__asm__(), albeit reporting warnings that it's not valid C99 syntax.
| author | flameeyes |
|---|---|
| date | Thu, 16 Oct 2008 13:34:09 +0000 |
| parents | c4a4495715dd |
| children | 7a463923ecd1 |
| rev | line source |
|---|---|
| 5614 | 1 /* |
| 2 * mathops.h | |
| 3 * | |
| 4 * Copyright (C) 2007 Marc Hoffman <mmhoffm@gmail.com> | |
| 5 * | |
| 6 * This file is part of FFmpeg. | |
| 7 * | |
| 8 * FFmpeg is free software; you can redistribute it and/or | |
| 9 * modify it under the terms of the GNU Lesser General Public | |
| 10 * License as published by the Free Software Foundation; either | |
| 11 * version 2.1 of the License, or (at your option) any later version. | |
| 12 * | |
| 13 * FFmpeg is distributed in the hope that it will be useful, | |
| 14 * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
| 15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
| 16 * Lesser General Public License for more details. | |
| 17 * | |
| 18 * You should have received a copy of the GNU Lesser General Public | |
| 19 * License along with FFmpeg; if not, write to the Free Software | |
| 20 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA | |
| 21 */ | |
| 7760 | 22 #ifndef AVCODEC_BFIN_MATHOPS_H |
| 23 #define AVCODEC_BFIN_MATHOPS_H | |
| 5614 | 24 |
| 25 #ifdef CONFIG_MPEGAUDIO_HP | |
| 26 #define MULH(X,Y) ({ int xxo; \ | |
| 8031 | 27 __asm__ ( \ |
| 5614 | 28 "a1 = %2.L * %1.L (FU);\n\t" \ |
| 29 "a1 = a1 >> 16;\n\t" \ | |
| 30 "a1 += %2.H * %1.L (IS,M);\n\t" \ | |
| 31 "a0 = %1.H * %2.H, a1+= %1.H * %2.L (IS,M);\n\t"\ | |
| 32 "a1 = a1 >>> 16;\n\t" \ | |
| 33 "%0 = (a0 += a1);\n\t" \ | |
|
5689
84bc9138be8f
properly tell the compiler that A0 and A1 are clobbered
mhoffman
parents:
5619
diff
changeset
|
34 : "=d" (xxo) : "d" (X), "d" (Y) : "A0","A1"); xxo; }) |
| 5614 | 35 #else |
| 36 #define MULH(X,Y) ({ int xxo; \ | |
| 8031 | 37 __asm__ ( \ |
| 5614 | 38 "a1 = %2.H * %1.L (IS,M);\n\t" \ |
| 39 "a0 = %1.H * %2.H, a1+= %1.H * %2.L (IS,M);\n\t"\ | |
| 40 "a1 = a1 >>> 16;\n\t" \ | |
| 41 "%0 = (a0 += a1);\n\t" \ | |
|
5689
84bc9138be8f
properly tell the compiler that A0 and A1 are clobbered
mhoffman
parents:
5619
diff
changeset
|
42 : "=d" (xxo) : "d" (X), "d" (Y) : "A0","A1"); xxo; }) |
| 5614 | 43 #endif |
| 44 | |
| 45 /* signed 16x16 -> 32 multiply */ | |
| 46 #define MUL16(a, b) ({ int xxo; \ | |
| 8031 | 47 __asm__ ( \ |
| 5614 | 48 "%0 = %1.l*%2.l (is);\n\t" \ |
|
5689
84bc9138be8f
properly tell the compiler that A0 and A1 are clobbered
mhoffman
parents:
5619
diff
changeset
|
49 : "=W" (xxo) : "d" (a), "d" (b) : "A1"); \ |
| 5614 | 50 xxo; }) |
| 51 | |
| 7760 | 52 #endif /* AVCODEC_BFIN_MATHOPS_H */ |
