[svn] / branches / dev-api-3 / xvidcore / src / portab.h Repository:
ViewVC logotype

Annotation of /branches/dev-api-3/xvidcore/src/portab.h

Parent Directory Parent Directory | Revision Log Revision Log


Revision 760 - (view) (download)

1 : suxen_drol 721 /*****************************************************************************
2 :     *
3 :     * XVID MPEG-4 VIDEO CODEC
4 :     * - Portable macros, types and inlined assembly -
5 :     *
6 :     * Copyright(C) 2002 Michael Militzer <isibaar@xvid.org>
7 :     * 2002 Peter Ross <pross@xvid.org>
8 :     * 2002 Edouard Gomez <ed.gomez@wanadoo.fr>
9 :     *
10 :     * This file is part of XviD, a free MPEG-4 video encoder/decoder
11 :     *
12 :     * XviD is free software; you can redistribute it and/or modify it
13 :     * under the terms of the GNU General Public License as published by
14 :     * the Free Software Foundation; either version 2 of the License, or
15 :     * (at your option) any later version.
16 :     *
17 :     * This program is distributed in the hope that it will be useful,
18 :     * but WITHOUT ANY WARRANTY; without even the implied warranty of
19 :     * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 :     * GNU General Public License for more details.
21 :     *
22 :     * You should have received a copy of the GNU General Public License
23 :     * along with this program; if not, write to the Free Software
24 :     * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
25 :     *
26 :     * Under section 8 of the GNU General Public License, the copyright
27 :     * holders of XVID explicitly forbid distribution in the following
28 :     * countries:
29 :     *
30 :     * - Japan
31 :     * - United States of America
32 :     *
33 :     * Linking XviD statically or dynamically with other modules is making a
34 :     * combined work based on XviD. Thus, the terms and conditions of the
35 :     * GNU General Public License cover the whole combination.
36 :     *
37 :     * As a special exception, the copyright holders of XviD give you
38 :     * permission to link XviD with independent modules that communicate with
39 :     * XviD solely through the VFW1.1 and DShow interfaces, regardless of the
40 :     * license terms of these independent modules, and to copy and distribute
41 :     * the resulting combined work under terms of your choice, provided that
42 :     * every copy of the combined work is accompanied by a complete copy of
43 :     * the source code of XviD (the version of XviD used to produce the
44 :     * combined work), being distributed under the terms of the GNU General
45 :     * Public License plus this exception. An independent module is a module
46 :     * which is not derived from or based on XviD.
47 :     *
48 :     * Note that people who make modified versions of XviD are not obligated
49 :     * to grant this special exception for their modified versions; it is
50 :     * their choice whether to do so. The GNU General Public License gives
51 :     * permission to release a modified version without this exception; this
52 :     * exception also makes it possible to release a modified version which
53 :     * carries forward this exception.
54 :     *
55 : suxen_drol 760 * $Id: portab.h,v 1.26.2.4 2003-01-04 06:14:32 suxen_drol Exp $
56 : suxen_drol 721 *
57 :     ****************************************************************************/
58 :    
59 : Isibaar 3 #ifndef _PORTAB_H_
60 :     #define _PORTAB_H_
61 :    
62 : suxen_drol 721 /*****************************************************************************
63 :     * Common things
64 :     ****************************************************************************/
65 : suxen_drol 252
66 : suxen_drol 721 /* Debug level masks */
67 : suxen_drol 252 #define DPRINTF_ERROR 0x00000001
68 :     #define DPRINTF_STARTCODE 0x00000002
69 :     #define DPRINTF_HEADER 0x00000004
70 :     #define DPRINTF_TIMECODE 0x00000008
71 :     #define DPRINTF_MB 0x00000010
72 :     #define DPRINTF_COEFF 0x00000020
73 :     #define DPRINTF_MV 0x00000040
74 : suxen_drol 721 #define DPRINTF_RC 0x00000080
75 : suxen_drol 252 #define DPRINTF_DEBUG 0x80000000
76 :    
77 : suxen_drol 721 /* debug level for this library */
78 : suxen_drol 630 #ifdef _DEBUG
79 : suxen_drol 721 #define DPRINTF_LEVEL (DPRINTF_RC|0x0000000f)
80 : suxen_drol 630 #else
81 : suxen_drol 721 #define DPRINTF_LEVEL DPRINTF_RC
82 : suxen_drol 630 #endif
83 : suxen_drol 252
84 : suxen_drol 721 /* Buffer size for non C99 compliant compilers (msvc) */
85 : suxen_drol 252 #define DPRINTF_BUF_SZ 1024
86 :    
87 : suxen_drol 721 /*****************************************************************************
88 :     * Types used in XviD sources
89 :     ****************************************************************************/
90 : suxen_drol 252
91 : suxen_drol 721 /*----------------------------------------------------------------------------
92 :     | Standard Unix include file (sorry, we put all unix into "linux" case)
93 :     *---------------------------------------------------------------------------*/
94 : Isibaar 3
95 : suxen_drol 721 #if defined(LINUX) || defined(BEOS) || defined(FREEBSD)
96 : Isibaar 3
97 : suxen_drol 721 /* All (u)int(size)_t types are defined here */
98 :     # include <inttypes.h>
99 : suxen_drol 136
100 : suxen_drol 721 /*----------------------------------------------------------------------------
101 :     | msvc (lacks such a header file)
102 :     *---------------------------------------------------------------------------*/
103 : suxen_drol 136
104 : suxen_drol 721 #elif defined(_MSC_VER)
105 :     # define int8_t char
106 :     # define uint8_t unsigned char
107 :     # define int16_t short
108 :     # define uint16_t unsigned short
109 :     # define int32_t int
110 :     # define uint32_t unsigned int
111 :     # define int64_t __int64
112 :     # define uint64_t unsigned __int64
113 : suxen_drol 136
114 : suxen_drol 721 /*----------------------------------------------------------------------------
115 :     | Fallback when using gcc
116 :     *---------------------------------------------------------------------------*/
117 : h 108
118 : suxen_drol 721 #elif defined(__GNUC__) || defined(__ICC)
119 : Isibaar 3
120 : suxen_drol 721 # define int8_t char
121 :     # define uint8_t unsigned char
122 :     # define int16_t short
123 :     # define uint16_t unsigned short
124 :     # define int32_t int
125 :     # define uint32_t unsigned int
126 :     # define int64_t long long
127 :     # define uint64_t unsigned long long
128 : Isibaar 3
129 : suxen_drol 721 /*----------------------------------------------------------------------------
130 :     | Ok, we don't know how to define these types... error
131 :     *---------------------------------------------------------------------------*/
132 : Isibaar 3
133 : suxen_drol 68 #else
134 : suxen_drol 721 # error Do not know how to define (u)int(size)_t types
135 : suxen_drol 68 #endif
136 : Isibaar 42
137 : suxen_drol 721 /*****************************************************************************
138 :     * Some things that are only architecture dependant
139 :     ****************************************************************************/
140 : Isibaar 3
141 : suxen_drol 721 #if defined(ARCH_X86) || defined(ARCH_PPC) || defined(ARCH_MIPS) || defined(ARCH_SPARC)
142 :     # define CACHE_LINE 16
143 :     # define ptr_t uint32_t
144 :     #elif defined(ARCH_IA64)
145 :     # define CACHE_LINE 32
146 :     # define ptr_t uint64_t
147 : chl 37 #else
148 : suxen_drol 721 /* todo: fix cache_line 0 operation */
149 :     # define CACHE_LINE 16
150 :     # define ptr_t uint32_t
151 : chl 37 #endif
152 : Isibaar 3
153 : suxen_drol 721 /*****************************************************************************
154 :     * Things that must be sorted by compiler and then by architecture
155 :     ****************************************************************************/
156 : Isibaar 3
157 : suxen_drol 721 /*****************************************************************************
158 :     * MSVC compiler specific macros, functions
159 :     ****************************************************************************/
160 : Isibaar 3
161 : suxen_drol 721 #if defined(_MSC_VER)
162 : canard 73
163 : suxen_drol 721 /*----------------------------------------------------------------------------
164 :     | Common msvc stuff
165 :     *---------------------------------------------------------------------------*/
166 : Isibaar 3
167 : suxen_drol 721 #include <windows.h>
168 :     #include <stdio.h>
169 : edgomez 78
170 : suxen_drol 721 /*
171 :     * This function must be declared/defined all the time because MSVC does
172 :     * not support C99 variable arguments macros
173 :     */
174 :     static __inline void DPRINTF(int level, char *fmt, ...)
175 :     {
176 :     if (DPRINTF_LEVEL & level) {
177 :     va_list args;
178 :     char buf[DPRINTF_BUF_SZ];
179 :     va_start(args, fmt);
180 :     vsprintf(buf, fmt, args);
181 :     OutputDebugString(buf);
182 :     fprintf(stderr, "%s\n", buf);
183 :     }
184 :     }
185 : Isibaar 3
186 : suxen_drol 721 # if _MSC_VER <= 1200
187 :     # define DECLARE_ALIGNED_MATRIX(name,sizex,sizey,type,alignment) \
188 :     type name##_storage[(sizex)*(sizey)+(alignment)-1]; \
189 :     type * name = (type *) (((int32_t) name##_storage+(alignment - 1)) & ~((int32_t)(alignment)-1))
190 :     # else
191 :     # define DECLARE_ALIGNED_MATRIX(name,sizex,sizey,type,alignment) \
192 :     __declspec(align(alignment)) type name[(sizex)*(sizey)]
193 :     # endif
194 : Isibaar 3
195 :    
196 : suxen_drol 721 /*----------------------------------------------------------------------------
197 :     | msvc x86 specific macros/functions
198 :     *---------------------------------------------------------------------------*/
199 :     # if defined(ARCH_X86)
200 :     # define BSWAP(a) __asm mov eax,a __asm bswap eax __asm mov a, eax
201 :     # define EMMS() __asm {emms}
202 : suxen_drol 760 # define FEMMS() __asm {femms}
203 : canard 89
204 : suxen_drol 721 static __inline int64_t read_counter(void)
205 :     {
206 :     int64_t ts;
207 :     uint32_t ts1, ts2;
208 :     __asm {
209 :     rdtsc
210 :     mov ts1, eax
211 :     mov ts2, edx
212 :     }
213 :     ts = ((uint64_t) ts2 << 32) | ((uint64_t) ts1);
214 :     return ts;
215 :     }
216 : edgomez 195
217 : suxen_drol 721 /*----------------------------------------------------------------------------
218 :     | msvc unknown architecture
219 :     *---------------------------------------------------------------------------*/
220 :     # else
221 :     /* ANSI C version of BSWAP */
222 :     #define BSWAP(x) \
223 :     x = ((((x) & 0xff000000) >> 24) | \
224 :     (((x) & 0x00ff0000) >> 8) | \
225 :     (((x) & 0x0000ff00) << 8) | \
226 :     (((x) & 0x000000ff) << 24))
227 : edgomez 195
228 : Isibaar 209 #define EMMS()
229 : suxen_drol 760 #define FEMMS()
230 : suxen_drol 721 # endif
231 : Isibaar 209
232 : ia64p 283
233 : Isibaar 209
234 : ia64p 280
235 : suxen_drol 721 /*****************************************************************************
236 :     * GNU CC compiler stuff
237 :     ****************************************************************************/
238 : ia64p 280
239 : suxen_drol 721 #elif defined(__GNUC__) || defined(__ICC) /* Compiler test */
240 : Isibaar 209
241 : suxen_drol 721 /*----------------------------------------------------------------------------
242 :     | Common gcc stuff
243 :     *---------------------------------------------------------------------------*/
244 : ia64p 283
245 : suxen_drol 721 /*
246 :     * As gcc is (mostly) C99 compliant, we define DPRINTF only if it's realy needed
247 :     * and it's a macro calling fprintf directly
248 :     */
249 :     # ifdef _DEBUG
250 : ia64p 283
251 : suxen_drol 721 /* Needed for all debuf fprintf calls */
252 :     # include <stdio.h>
253 : ia64p 283
254 : suxen_drol 721 # define DPRINTF(level, format, ...) \
255 :     do {\
256 :     if(DPRINTF_LEVEL & level)\
257 :     fprintf(stderr, format"\n", ##__VA_ARGS__);\
258 :     }while(0);
259 : ia64p 283
260 : suxen_drol 721 # else /* _DEBUG */
261 :     # define DPRINTF(level, format, ...)
262 :     # endif /* _DEBUG */
263 : ia64p 283
264 :    
265 :    
266 : suxen_drol 721 # define DECLARE_ALIGNED_MATRIX(name,sizex,sizey,type,alignment) \
267 :     type name##_storage[(sizex)*(sizey)+(alignment)-1]; \
268 :     type * name = (type *) (((ptr_t) name##_storage+(alignment - 1)) & ~((ptr_t)(alignment)-1))
269 : ia64p 283
270 : suxen_drol 721 /*----------------------------------------------------------------------------
271 :     | gcc x86 specific macros/functions
272 :     *---------------------------------------------------------------------------*/
273 :     # if defined(ARCH_X86)
274 :     # define BSWAP(a) __asm__ ( "bswapl %0\n" : "=r" (a) : "0" (a) );
275 :     # define EMMS() __asm__ ("emms\n\t");
276 : suxen_drol 760 # define FEMMS() __asm__ ("femms\n\t");
277 : ia64p 283
278 : suxen_drol 721 static __inline int64_t read_counter(void)
279 :     {
280 :     int64_t ts;
281 :     uint32_t ts1, ts2;
282 :     __asm__ __volatile__("rdtsc\n\t":"=a"(ts1), "=d"(ts2));
283 :     ts = ((uint64_t) ts2 << 32) | ((uint64_t) ts1);
284 :     return ts;
285 :     }
286 : Isibaar 3
287 : suxen_drol 721 /*----------------------------------------------------------------------------
288 :     | gcc PPC and PPC Altivec specific macros/functions
289 :     *---------------------------------------------------------------------------*/
290 :     # elif defined(ARCH_PPC)
291 :     # define BSWAP(a) __asm__ __volatile__ \
292 :     ( "lwbrx %0,0,%1; eieio" : "=r" (a) : "r" (&(a)), "m" (a));
293 :     # define EMMS()
294 : suxen_drol 760 # define FEMMS()
295 : edgomez 78
296 : suxen_drol 721 static __inline unsigned long get_tbl(void)
297 :     {
298 :     unsigned long tbl;
299 :     asm volatile ("mftb %0":"=r" (tbl));
300 :     return tbl;
301 :     }
302 : Isibaar 3
303 : suxen_drol 721 static __inline unsigned long get_tbu(void)
304 :     {
305 :     unsigned long tbl;
306 :     asm volatile ("mftbu %0":"=r" (tbl));
307 :     return tbl;
308 :     }
309 : Isibaar 3
310 : suxen_drol 721 static __inline int64_t read_counter(void)
311 :     {
312 :     unsigned long tb, tu;
313 :     do {
314 :     tu = get_tbu();
315 :     tb = get_tbl();
316 :     }while (tb != get_tbl());
317 :     return (((int64_t) tu) << 32) | (int64_t) tb;
318 :     }
319 : Isibaar 3
320 : suxen_drol 721 /*----------------------------------------------------------------------------
321 :     | gcc IA64 specific macros/functions
322 :     *---------------------------------------------------------------------------*/
323 :     # elif defined(ARCH_IA64)
324 :     # define BSWAP(a) __asm__ __volatile__ \
325 :     ("mux1 %1 = %0, @rev" ";;" \
326 :     "shr.u %1 = %1, 32" : "=r" (a) : "r" (a));
327 :     # define EMMS()
328 : suxen_drol 760 # define FEMMS()
329 : Isibaar 3
330 : suxen_drol 721 static __inline int64_t read_counter(void) {
331 :     unsigned long result;
332 :     __asm__ __volatile__("mov %0=ar.itc" : "=r"(result) :: "memory");
333 :     return result;
334 :     }
335 : Isibaar 209
336 : suxen_drol 721 /*----------------------------------------------------------------------------
337 :     | gcc SPARC specific macros/functions
338 :     *---------------------------------------------------------------------------*/
339 :     # elif defined(ARCH_SPARC)
340 :     # define BSWAP(a) \
341 :     ((a) = (((a) & 0xff) << 24) | (((a) & 0xff00) << 8) | \
342 :     (((a) >> 8) & 0xff00) | (((a) >> 24) & 0xff))
343 :     # define EMMS()
344 : suxen_drol 760 # define FEMMS()
345 : Isibaar 209
346 : suxen_drol 721 static __inline int64_t read_counter(void)
347 :     {
348 :     return 0;
349 :     }
350 : edgomez 78
351 : suxen_drol 721 /*----------------------------------------------------------------------------
352 :     | gcc MIPS specific macros/functions
353 :     *---------------------------------------------------------------------------*/
354 :     # elif defined(ARCH_MIPS)
355 :     # define BSWAP(a) \
356 :     ((a) = (((a) & 0xff) << 24) | (((a) & 0xff00) << 8) | \
357 :     (((a) >> 8) & 0xff00) | (((a) >> 24) & 0xff))
358 :     # define EMMS()
359 : suxen_drol 760 # define FEMMS()
360 : Isibaar 3
361 : suxen_drol 721 static __inline int64_t read_counter(void)
362 :     {
363 :     return 0;
364 :     }
365 : suxen_drol 229
366 : suxen_drol 721 /*----------------------------------------------------------------------------
367 :     | XviD + gcc unsupported Architecture
368 :     *---------------------------------------------------------------------------*/
369 :     # else
370 :     /* ANSI C version of BSWAP */
371 :     #define BSWAP(x) \
372 :     x = ((((x) & 0xff000000) >> 24) | \
373 :     (((x) & 0x00ff0000) >> 8) | \
374 :     (((x) & 0x0000ff00) << 8) | \
375 :     (((x) & 0x000000ff) << 24))
376 : suxen_drol 252
377 : Isibaar 3 #define EMMS()
378 : suxen_drol 760 #define FEMMS()
379 : suxen_drol 721 # endif /* Architecture checking */
380 : Isibaar 3
381 : suxen_drol 721 /*****************************************************************************
382 :     * Unknown compiler
383 :     ****************************************************************************/
384 :     #else /* Compiler test */
385 : Isibaar 3
386 : suxen_drol 721 # error Compiler not supported
387 : Isibaar 3
388 : suxen_drol 721 #endif /* Compiler test */
389 : Isibaar 209
390 : Isibaar 42
391 : Isibaar 3 #endif

No admin address has been configured
ViewVC Help
Powered by ViewVC 1.0.4