2 * gcc fixes for altivec.
3 * Used to workaround broken gcc (FSF gcc-3 pre gcc-3.3)
4 * and to stay somewhat compatible with Darwin.
6 * This file is part of FFmpeg.
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.
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.
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
34 #define REG_v(a) asm ( #a )
40 # define REG_v(a) asm ( #a )
43 #if (__GNUC__ * 100 + __GNUC_MINOR__ < 303)
45 /* This code was provided to me by Bartosch Pixa
46 * as a separate header file (broken_mergel.h).
47 * thanks to lu_zero for the workaround.
49 * See this mail for more information:
50 * http://gcc.gnu.org/ml/gcc/2003-04/msg00967.html
53 static inline vector
signed char ff_vmrglb (vector
signed char const A
,
54 vector
signed char const B
)
56 static const vector
unsigned char lowbyte
= {
57 0x08, 0x18, 0x09, 0x19, 0x0a, 0x1a, 0x0b, 0x1b,
58 0x0c, 0x1c, 0x0d, 0x1d, 0x0e, 0x1e, 0x0f, 0x1f
60 return vec_perm (A
, B
, lowbyte
);
63 static inline vector
signed short ff_vmrglh (vector
signed short const A
,
64 vector
signed short const B
)
66 static const vector
unsigned char lowhalf
= {
67 0x08, 0x09, 0x18, 0x19, 0x0a, 0x0b, 0x1a, 0x1b,
68 0x0c, 0x0d, 0x1c, 0x1d, 0x0e, 0x0f, 0x1e, 0x1f
70 return vec_perm (A
, B
, lowhalf
);
73 static inline vector
signed int ff_vmrglw (vector
signed int const A
,
74 vector
signed int const B
)
76 static const vector
unsigned char lowword
= {
77 0x08, 0x09, 0x0a, 0x0b, 0x18, 0x19, 0x1a, 0x1b,
78 0x0c, 0x0d, 0x0e, 0x0f, 0x1c, 0x1d, 0x1e, 0x1f
80 return vec_perm (A
, B
, lowword
);
82 /*#define ff_vmrglb ff_vmrglb
83 #define ff_vmrglh ff_vmrglh
84 #define ff_vmrglw ff_vmrglw
88 #define vec_mergel(a1, a2) \
89 __ch (__bin_args_eq (vector signed char, (a1), vector signed char, (a2)), \
90 ((vector signed char) ff_vmrglb ((vector signed char) (a1), (vector signed char) (a2))), \
91 __ch (__bin_args_eq (vector unsigned char, (a1), vector unsigned char, (a2)), \
92 ((vector unsigned char) ff_vmrglb ((vector signed char) (a1), (vector signed char) (a2))), \
93 __ch (__bin_args_eq (vector signed short, (a1), vector signed short, (a2)), \
94 ((vector signed short) ff_vmrglh ((vector signed short) (a1), (vector signed short) (a2))), \
95 __ch (__bin_args_eq (vector unsigned short, (a1), vector unsigned short, (a2)), \
96 ((vector unsigned short) ff_vmrglh ((vector signed short) (a1), (vector signed short) (a2))), \
97 __ch (__bin_args_eq (vector float, (a1), vector float, (a2)), \
98 ((vector float) ff_vmrglw ((vector signed int) (a1), (vector signed int) (a2))), \
99 __ch (__bin_args_eq (vector signed int, (a1), vector signed int, (a2)), \
100 ((vector signed int) ff_vmrglw ((vector signed int) (a1), (vector signed int) (a2))), \
101 __ch (__bin_args_eq (vector unsigned int, (a1), vector unsigned int, (a2)), \
102 ((vector unsigned int) ff_vmrglw ((vector signed int) (a1), (vector signed int) (a2))), \
103 __altivec_link_error_invalid_argument ())))))))
107 #endif /* SYS_DARWIN */
110 #define const_vector const vector
112 #define const_vector vector
115 #endif /* GCC_FIXES_H */