[cvs] / xvidcore / src / portab.h Repository:
ViewVC logotype

Annotation of /xvidcore/src/portab.h

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1.27 - (view) (download)

1 : edgomez 1.27 /*****************************************************************************
2 :     *
3 :     * XVID MPEG-4 VIDEO CODEC
4 :     * - Portable macros, types and inlined assembly -
5 :     *
6 :     * Copyright(C) 2002 Michael Militzer
7 :     *
8 :     * This program is an implementation of a part of one or more MPEG-4
9 :     * Video tools as specified in ISO/IEC 14496-2 standard. Those intending
10 :     * to use this software module in hardware or software products are
11 :     * advised that its use may infringe existing patents or copyrights, and
12 :     * any such use would be at such party's own risk. The original
13 :     * developer of this software module and his/her company, and subsequent
14 :     * editors and their companies, will have no liability for use of this
15 :     * software or modifications or derivatives thereof.
16 :     *
17 :     * This program is free software ; you can redistribute it and/or modify
18 :     * it under the terms of the GNU General Public License as published by
19 :     * the Free Software Foundation ; either version 2 of the License, or
20 :     * (at your option) any later version.
21 :     *
22 :     * This program is distributed in the hope that it will be useful,
23 :     * but WITHOUT ANY WARRANTY ; without even the implied warranty of
24 :     * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
25 :     * GNU General Public License for more details.
26 :     *
27 :     * You should have received a copy of the GNU General Public License
28 :     * along with this program ; if not, write to the Free Software
29 :     * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
30 :     *
31 :     * $Id$
32 :     *
33 :     ****************************************************************************/
34 :    
35 : Isibaar 1.1 #ifndef _PORTAB_H_
36 :     #define _PORTAB_H_
37 :    
38 : suxen_drol 1.23
39 :     // debug level masks
40 :     #define DPRINTF_ERROR 0x00000001
41 :     #define DPRINTF_STARTCODE 0x00000002
42 :     #define DPRINTF_HEADER 0x00000004
43 :     #define DPRINTF_TIMECODE 0x00000008
44 :     #define DPRINTF_MB 0x00000010
45 :     #define DPRINTF_COEFF 0x00000020
46 :     #define DPRINTF_MV 0x00000040
47 :     #define DPRINTF_DEBUG 0x80000000
48 :    
49 :     // debug level
50 :     #define DPRINTF_LEVEL 0
51 :    
52 :    
53 :     #define DPRINTF_BUF_SZ 1024
54 :    
55 :    
56 : Isibaar 1.1 #if defined(WIN32)
57 :    
58 :     #include <windows.h>
59 : suxen_drol 1.16 #include <stdio.h>
60 :    
61 : suxen_drol 1.23 static __inline void
62 :     DPRINTF(int level, char *fmt,
63 : edgomez 1.18 ...)
64 : suxen_drol 1.16 {
65 : suxen_drol 1.23 if ((DPRINTF_LEVEL & level))
66 :     {
67 :     va_list args;
68 :     char buf[DPRINTF_BUF_SZ];
69 :    
70 :     va_start(args, fmt);
71 :     vsprintf(buf, fmt, args);
72 :     OutputDebugString(buf);
73 :     fprintf(stdout, "%s\n", buf);
74 :     fflush(stdout);
75 :     }
76 : suxen_drol 1.16 }
77 :    
78 : Isibaar 1.1
79 : h 1.14 #define DEBUGCBR(A,B,C) { char tmp[100]; wsprintf(tmp, "CBR: frame: %i, quant: %i, deviation: %i\n", (A), (B), (C)); OutputDebugString(tmp); }
80 :    
81 : h 1.2 #ifdef _DEBUG
82 : Isibaar 1.1 #define DEBUG(S) OutputDebugString((S));
83 :     #define DEBUG1(S,I) { char tmp[100]; wsprintf(tmp, "%s %i\n", (S), (I)); OutputDebugString(tmp); }
84 :     #define DEBUG2(X,A,B) { char tmp[100]; wsprintf(tmp, "%s %i %i\n", (X), (A), (B)); OutputDebugString(tmp); }
85 :     #define DEBUG3(X,A,B,C){ char tmp[1000]; wsprintf(tmp,"%s %i %i %i",(X),(A), (B), (C)); OutputDebugString(tmp); }
86 : chenm001 1.17 #define DEBUG4(X,A,B,C,D){ char tmp[1000]; wsprintf(tmp,"%s %i %i %i %i",(X),(A), (B), (C), (D)); OutputDebugString(tmp); }
87 : Isibaar 1.1 #define DEBUG8(X,A,B,C,D,E,F,G,H){ char tmp[1000]; wsprintf(tmp,"%s %i %i %i %i %i %i %i %i",(X),(A),(B),(C),(D),(E),(F),(G),(H)); OutputDebugString(tmp); }
88 : h 1.2 #else
89 :     #define DEBUG(S)
90 :     #define DEBUG1(S,I)
91 :     #define DEBUG2(X,A,B)
92 :     #define DEBUG3(X,A,B,C)
93 : chenm001 1.17 #define DEBUG4(X,A,B,C,D)
94 : h 1.2 #define DEBUG8(X,A,B,C,D,E,F,G,H)
95 :     #endif
96 : Isibaar 1.1
97 :    
98 :     #define int8_t char
99 :     #define uint8_t unsigned char
100 :     #define int16_t short
101 :     #define uint16_t unsigned short
102 :     #define int32_t int
103 :     #define uint32_t unsigned int
104 :     #define int64_t __int64
105 :     #define uint64_t unsigned __int64
106 : Isibaar 1.21 #define ptr_t uint32_t
107 : Isibaar 1.1
108 :     #define EMMS() __asm {emms}
109 :    
110 : Isibaar 1.4 #define CACHE_LINE 16
111 : edgomez 1.9
112 : suxen_drol 1.7 #if _MSC_VER <= 1200
113 : h 1.10 #define DECLARE_ALIGNED_MATRIX(name,sizex,sizey,type,alignment) \
114 : edgomez 1.9 type name##_storage[(sizex)*(sizey)+(alignment)-1]; \
115 :     type * name = (type *) (((int32_t) name##_storage+(alignment - 1)) & ~((int32_t)(alignment)-1))
116 : suxen_drol 1.7 #else
117 : h 1.10 #define DECLARE_ALIGNED_MATRIX(name,sizex,sizey,type,alignment) \
118 : edgomez 1.11 __declspec(align(alignment)) type name[(sizex)*(sizey)]
119 : suxen_drol 1.7 #endif
120 : Isibaar 1.4
121 : Isibaar 1.1 // needed for bitstream.h
122 :     #define BSWAP(a) __asm mov eax,a __asm bswap eax __asm mov a, eax
123 :    
124 :     // needed for timer.c
125 : edgomez 1.18 static __inline int64_t
126 :     read_counter()
127 :     {
128 : Isibaar 1.1 int64_t ts;
129 :     uint32_t ts1, ts2;
130 :    
131 :     __asm {
132 : Isibaar 1.21 rdtsc
133 :     mov ts1, eax
134 : suxen_drol 1.19 mov ts2, edx
135 :     }
136 : edgomez 1.18
137 : Isibaar 1.1 ts = ((uint64_t) ts2 << 32) | ((uint64_t) ts1);
138 : edgomez 1.18
139 : Isibaar 1.1 return ts;
140 :     }
141 :    
142 : Isibaar 1.26 #elif defined(LINUX) || defined(DJGPP) || defined(FREEBSD) || defined(BEOS)
143 : Isibaar 1.1
144 : suxen_drol 1.22 #include <stdio.h>
145 :     #include <stdarg.h>
146 : suxen_drol 1.23
147 :     static __inline void
148 :     DPRINTF(int level, char *fmt,
149 : suxen_drol 1.22 ...)
150 :     {
151 : suxen_drol 1.23 if ((DPRINTF_LEVEL & level)) {
152 :     va_list args;
153 :     char buf[DPRINTF_BUF_SZ];
154 :    
155 :     va_start(args, fmt);
156 :     vsprintf(buf, fmt, args);
157 :     fprintf(stdout, "%s\n", buf);
158 :     }
159 : suxen_drol 1.22 }
160 :    
161 : chl 1.3 #ifdef _DEBUG
162 :    
163 : Isibaar 1.1 #include <stdio.h>
164 : edgomez 1.9 #define DEBUG_WHERE stdout
165 :     #define DEBUG(S) fprintf(DEBUG_WHERE, "%s\n", (S));
166 :     #define DEBUG1(S,I) fprintf(DEBUG_WHERE, "%s %i\n", (S), (I))
167 :     #define DEBUG2(S,A,B) fprintf(DEBUG_WHERE, "%s%i=%i\n", (S), (A), (B))
168 :     #define DEBUG3(S,A,B,C) fprintf(DEBUG_WHERE, "%s %i %x %x\n", (S), (A), (B), (C))
169 : Isibaar 1.1 #define DEBUG8(S,A,B,C,D,E,F,G,H)
170 : h 1.14 #define DEBUGCBR(A,B,C) fprintf(DEBUG_WHERE, "CBR: frame: %i, quant: %i, deviation: %i\n", (A), (B), (C))
171 : chl 1.3 #else
172 :     #define DEBUG(S)
173 :     #define DEBUG1(S,I)
174 :     #define DEBUG2(X,A,B)
175 :     #define DEBUG3(X,A,B,C)
176 :     #define DEBUG8(X,A,B,C,D,E,F,G,H)
177 : h 1.14 #define DEBUGCBR(A,B,C)
178 : chl 1.3 #endif
179 : Isibaar 1.1
180 : Isibaar 1.26 #if defined(LINUX) || defined(BEOS)
181 : Isibaar 1.1
182 : Isibaar 1.26 #if defined(BEOS)
183 :     #include <inttypes.h>
184 :     #else
185 : Isibaar 1.1 #include <stdint.h>
186 : Isibaar 1.26 #endif
187 : Isibaar 1.1
188 : canard 1.8 #define DECLARE_ALIGNED_MATRIX(name,sizex,sizey,type,alignment) \
189 :     type name##_storage[(sizex)*(sizey)+(alignment)-1]; \
190 : Isibaar 1.21 type * name = (type *) (((ptr_t) name##_storage+(alignment - 1)) & ~((ptr_t)(alignment)-1))
191 : canard 1.8
192 : Isibaar 1.1 #else
193 :    
194 : knhor 1.15 #define DECLARE_ALIGNED_MATRIX(name,sizex,sizey,type,alignment) \
195 : edgomez 1.9 __attribute__ ((__aligned__(CACHE_LINE))) type name[(sizex)*(sizey)]
196 :    
197 :     #define int8_t char
198 :     #define uint8_t unsigned char
199 :     #define int16_t short
200 : Isibaar 1.1 #define uint16_t unsigned short
201 : edgomez 1.9 #define int32_t int
202 : Isibaar 1.1 #define uint32_t unsigned int
203 : edgomez 1.9 #define int64_t long long
204 : Isibaar 1.1 #define uint64_t unsigned long long
205 :    
206 :     #endif
207 :    
208 :    
209 :     // needed for bitstream.h
210 : canard 1.5 #ifdef ARCH_PPC
211 : edgomez 1.18 #define BSWAP(a) __asm__ __volatile__ ( "lwbrx %0,0,%1; eieio" : "=r" (a) : \
212 : canard 1.5 "r" (&(a)), "m" (a));
213 : edgomez 1.18 #define EMMS()
214 :    
215 :     static __inline unsigned long
216 :     get_tbl(void)
217 :     {
218 :     unsigned long tbl;
219 :     asm volatile ("mftb %0":"=r" (tbl));
220 :    
221 :     return tbl;
222 :     }
223 :     static __inline unsigned long
224 :     get_tbu(void)
225 :     {
226 :     unsigned long tbl;
227 :     asm volatile ("mftbu %0":"=r" (tbl));
228 :    
229 :     return tbl;
230 :     }
231 :     static __inline int64_t
232 :     read_counter()
233 :     {
234 :     unsigned long tb, tu;
235 : canard 1.12
236 : edgomez 1.18 do {
237 :     tu = get_tbu();
238 :     tb = get_tbl();
239 :     } while (tb != get_tbl());
240 :     return (((int64_t) tu) << 32) | (int64_t) tb;
241 :     }
242 : Isibaar 1.21
243 :     #define ptr_t uint32_t
244 :    
245 :     #define CACHE_LINE 16
246 :    
247 :     #elif defined(ARCH_IA64)
248 :    
249 :     #define ptr_t uint64_t
250 :    
251 :     #define CACHE_LINE 32
252 :    
253 :     #define EMMS()
254 :    
255 : ia64p 1.25 #ifdef __GNUC__
256 :    
257 : Isibaar 1.21 // needed for bitstream.h
258 : ia64p 1.24 #define BSWAP(a) __asm__ __volatile__ ("mux1 %1 = %0, @rev" \
259 :     ";;" \
260 :     "shr.u %1 = %1, 32" : "=r" (a) : "r" (a));
261 : Isibaar 1.21
262 : ia64p 1.24 // rdtsc replacement for ia64
263 : Isibaar 1.21 static __inline int64_t read_counter() {
264 : ia64p 1.24 unsigned long result;
265 :    
266 :     // __asm__ __volatile__("mov %0=ar.itc" : "=r"(result) :: "memory");
267 :     // while (__builtin_expect ((int) result == -1, 0))
268 :     __asm__ __volatile__("mov %0=ar.itc" : "=r"(result) :: "memory");
269 :     return result;
270 :    
271 : Isibaar 1.21 }
272 : ia64p 1.25
273 :     /* we are missing our ia64intrin.h file, but according to the
274 :     Intel's ecc manual, this should be the right way ...
275 :     this
276 :    
277 :     #elif defined(__INTEL_COMPILER)
278 :    
279 :     #include <ia64intrin.h>
280 :    
281 :     static __inline int64_t read_counter() {
282 :     return __getReg(44);
283 :     }
284 :    
285 :     #define BSWAP(a) ((unsigned int) (_m64_mux1(a, 0xb) >> 32))
286 :     */
287 :    
288 :     #else
289 :    
290 :     // needed for bitstream.h
291 :     #define BSWAP(a) \
292 :     ((a) = ( ((a)&0xff)<<24) | (((a)&0xff00)<<8) | (((a)>>8)&0xff00) | (((a)>>24)&0xff))
293 :    
294 :     // rdtsc command most likely not supported,
295 :     // so just dummy code here
296 :     static __inline int64_t
297 :     read_counter()
298 :     {
299 :     return 0;
300 :     }
301 :    
302 :     #endif // gcc or ecc
303 : Isibaar 1.21
304 : canard 1.5 #else
305 : edgomez 1.18 #define BSWAP(a) __asm__ ( "bswapl %0\n" : "=r" (a) : "0" (a) )
306 :     #define EMMS() __asm__("emms\n\t")
307 : edgomez 1.9
308 : Isibaar 1.1
309 :     // needed for timer.c
310 : edgomez 1.18 static __inline int64_t
311 :     read_counter()
312 :     {
313 :     int64_t ts;
314 :     uint32_t ts1, ts2;
315 : Isibaar 1.1
316 : edgomez 1.18 __asm__ __volatile__("rdtsc\n\t":"=a"(ts1),
317 :     "=d"(ts2));
318 : Isibaar 1.1
319 : edgomez 1.18 ts = ((uint64_t) ts2 << 32) | ((uint64_t) ts1);
320 : Isibaar 1.1
321 : edgomez 1.18 return ts;
322 : Isibaar 1.1 }
323 : edgomez 1.9
324 : Isibaar 1.21 #define ptr_t uint32_t
325 :    
326 :     #define CACHE_LINE 16
327 :    
328 : edgomez 1.9 #endif
329 : Isibaar 1.1
330 : edgomez 1.18 #else // OTHER OS
331 : suxen_drol 1.22
332 :    
333 :     #include <stdio.h>
334 :     #include <stdarg.h>
335 : suxen_drol 1.23
336 :     static __inline void
337 :     DPRINTF(int level, char *fmt, ...)
338 : suxen_drol 1.22 {
339 : suxen_drol 1.23 if ((DPRINTF_LEVEL & level)) {
340 : suxen_drol 1.22
341 : suxen_drol 1.23 va_list args;
342 :     char buf[DPRINTF_BUF_SZ];
343 :    
344 :     va_start(args, fmt);
345 :     vsprintf(buf, fmt, args);
346 :     fprintf(stdout, "%s\n", buf);
347 :     }
348 : suxen_drol 1.22 }
349 :    
350 : Isibaar 1.1
351 :     #define DEBUG(S)
352 :     #define DEBUG1(S,I)
353 :     #define DEBUG2(X,A,B)
354 :     #define DEBUG3(X,A,B,C)
355 :     #define DEBUG8(X,A,B,C,D,E,F,G,H)
356 : h 1.14 #define DEBUGCBR(A,B,C)
357 : Isibaar 1.1
358 :     #include <inttypes.h>
359 :    
360 :     #define EMMS()
361 :    
362 :     // needed for bitstream.h
363 :     #define BSWAP(a) \
364 :     ((a) = ( ((a)&0xff)<<24) | (((a)&0xff00)<<8) | (((a)>>8)&0xff00) | (((a)>>24)&0xff))
365 :    
366 :     // rdtsc command most likely not supported,
367 :     // so just dummy code here
368 : edgomez 1.18 static __inline int64_t
369 :     read_counter()
370 :     {
371 : Isibaar 1.1 return 0;
372 :     }
373 : Isibaar 1.4
374 : Isibaar 1.21 #define ptr_t uint32_t
375 :    
376 : Isibaar 1.4 #define CACHE_LINE 16
377 :     #define CACHE_ALIGN
378 : Isibaar 1.1
379 :     #endif
380 :    
381 : edgomez 1.18 #endif // _PORTAB_H_

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