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

Annotation of /xvidcore/src/portab.h

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1.24 - (view) (download)

1 : Isibaar 1.1 #ifndef _PORTAB_H_
2 :     #define _PORTAB_H_
3 :    
4 : suxen_drol 1.23
5 :     // debug level masks
6 :     #define DPRINTF_ERROR 0x00000001
7 :     #define DPRINTF_STARTCODE 0x00000002
8 :     #define DPRINTF_HEADER 0x00000004
9 :     #define DPRINTF_TIMECODE 0x00000008
10 :     #define DPRINTF_MB 0x00000010
11 :     #define DPRINTF_COEFF 0x00000020
12 :     #define DPRINTF_MV 0x00000040
13 :     #define DPRINTF_DEBUG 0x80000000
14 :    
15 :     // debug level
16 :     #define DPRINTF_LEVEL 0
17 :    
18 :    
19 :     #define DPRINTF_BUF_SZ 1024
20 :    
21 :    
22 : Isibaar 1.1 #if defined(WIN32)
23 :    
24 :     #include <windows.h>
25 : suxen_drol 1.16 #include <stdio.h>
26 :    
27 : suxen_drol 1.23 static __inline void
28 :     DPRINTF(int level, char *fmt,
29 : edgomez 1.18 ...)
30 : suxen_drol 1.16 {
31 : suxen_drol 1.23 if ((DPRINTF_LEVEL & level))
32 :     {
33 :     va_list args;
34 :     char buf[DPRINTF_BUF_SZ];
35 :    
36 :     va_start(args, fmt);
37 :     vsprintf(buf, fmt, args);
38 :     OutputDebugString(buf);
39 :     fprintf(stdout, "%s\n", buf);
40 :     fflush(stdout);
41 :     }
42 : suxen_drol 1.16 }
43 :    
44 : Isibaar 1.1
45 : 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); }
46 :    
47 : h 1.2 #ifdef _DEBUG
48 : Isibaar 1.1 #define DEBUG(S) OutputDebugString((S));
49 :     #define DEBUG1(S,I) { char tmp[100]; wsprintf(tmp, "%s %i\n", (S), (I)); OutputDebugString(tmp); }
50 :     #define DEBUG2(X,A,B) { char tmp[100]; wsprintf(tmp, "%s %i %i\n", (X), (A), (B)); OutputDebugString(tmp); }
51 :     #define DEBUG3(X,A,B,C){ char tmp[1000]; wsprintf(tmp,"%s %i %i %i",(X),(A), (B), (C)); OutputDebugString(tmp); }
52 : 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); }
53 : 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); }
54 : h 1.2 #else
55 :     #define DEBUG(S)
56 :     #define DEBUG1(S,I)
57 :     #define DEBUG2(X,A,B)
58 :     #define DEBUG3(X,A,B,C)
59 : chenm001 1.17 #define DEBUG4(X,A,B,C,D)
60 : h 1.2 #define DEBUG8(X,A,B,C,D,E,F,G,H)
61 :     #endif
62 : Isibaar 1.1
63 :    
64 :     #define int8_t char
65 :     #define uint8_t unsigned char
66 :     #define int16_t short
67 :     #define uint16_t unsigned short
68 :     #define int32_t int
69 :     #define uint32_t unsigned int
70 :     #define int64_t __int64
71 :     #define uint64_t unsigned __int64
72 : Isibaar 1.21 #define ptr_t uint32_t
73 : Isibaar 1.1
74 :     #define EMMS() __asm {emms}
75 :    
76 : Isibaar 1.4 #define CACHE_LINE 16
77 : edgomez 1.9
78 : suxen_drol 1.7 #if _MSC_VER <= 1200
79 : h 1.10 #define DECLARE_ALIGNED_MATRIX(name,sizex,sizey,type,alignment) \
80 : edgomez 1.9 type name##_storage[(sizex)*(sizey)+(alignment)-1]; \
81 :     type * name = (type *) (((int32_t) name##_storage+(alignment - 1)) & ~((int32_t)(alignment)-1))
82 : suxen_drol 1.7 #else
83 : h 1.10 #define DECLARE_ALIGNED_MATRIX(name,sizex,sizey,type,alignment) \
84 : edgomez 1.11 __declspec(align(alignment)) type name[(sizex)*(sizey)]
85 : suxen_drol 1.7 #endif
86 : Isibaar 1.4
87 : Isibaar 1.1 // needed for bitstream.h
88 :     #define BSWAP(a) __asm mov eax,a __asm bswap eax __asm mov a, eax
89 :    
90 :     // needed for timer.c
91 : edgomez 1.18 static __inline int64_t
92 :     read_counter()
93 :     {
94 : Isibaar 1.1 int64_t ts;
95 :     uint32_t ts1, ts2;
96 :    
97 :     __asm {
98 : Isibaar 1.21 rdtsc
99 :     mov ts1, eax
100 : suxen_drol 1.19 mov ts2, edx
101 :     }
102 : edgomez 1.18
103 : Isibaar 1.1 ts = ((uint64_t) ts2 << 32) | ((uint64_t) ts1);
104 : edgomez 1.18
105 : Isibaar 1.1 return ts;
106 :     }
107 :    
108 : knhor 1.15 #elif defined(LINUX) || defined(DJGPP) || defined(FREEBSD)
109 : Isibaar 1.1
110 : suxen_drol 1.22 #include <stdio.h>
111 :     #include <stdarg.h>
112 : suxen_drol 1.23
113 :     static __inline void
114 :     DPRINTF(int level, char *fmt,
115 : suxen_drol 1.22 ...)
116 :     {
117 : suxen_drol 1.23 if ((DPRINTF_LEVEL & level)) {
118 :     va_list args;
119 :     char buf[DPRINTF_BUF_SZ];
120 :    
121 :     va_start(args, fmt);
122 :     vsprintf(buf, fmt, args);
123 :     fprintf(stdout, "%s\n", buf);
124 :     }
125 : suxen_drol 1.22 }
126 :    
127 : chl 1.3 #ifdef _DEBUG
128 :    
129 : Isibaar 1.1 #include <stdio.h>
130 : edgomez 1.9 #define DEBUG_WHERE stdout
131 :     #define DEBUG(S) fprintf(DEBUG_WHERE, "%s\n", (S));
132 :     #define DEBUG1(S,I) fprintf(DEBUG_WHERE, "%s %i\n", (S), (I))
133 :     #define DEBUG2(S,A,B) fprintf(DEBUG_WHERE, "%s%i=%i\n", (S), (A), (B))
134 :     #define DEBUG3(S,A,B,C) fprintf(DEBUG_WHERE, "%s %i %x %x\n", (S), (A), (B), (C))
135 : Isibaar 1.1 #define DEBUG8(S,A,B,C,D,E,F,G,H)
136 : h 1.14 #define DEBUGCBR(A,B,C) fprintf(DEBUG_WHERE, "CBR: frame: %i, quant: %i, deviation: %i\n", (A), (B), (C))
137 : chl 1.3 #else
138 :     #define DEBUG(S)
139 :     #define DEBUG1(S,I)
140 :     #define DEBUG2(X,A,B)
141 :     #define DEBUG3(X,A,B,C)
142 :     #define DEBUG8(X,A,B,C,D,E,F,G,H)
143 : h 1.14 #define DEBUGCBR(A,B,C)
144 : chl 1.3 #endif
145 : Isibaar 1.1
146 :     #if defined(LINUX)
147 :    
148 :     #include <stdint.h>
149 :    
150 : canard 1.8 #define DECLARE_ALIGNED_MATRIX(name,sizex,sizey,type,alignment) \
151 :     type name##_storage[(sizex)*(sizey)+(alignment)-1]; \
152 : Isibaar 1.21 type * name = (type *) (((ptr_t) name##_storage+(alignment - 1)) & ~((ptr_t)(alignment)-1))
153 : canard 1.8
154 : Isibaar 1.1 #else
155 :    
156 : knhor 1.15 #define DECLARE_ALIGNED_MATRIX(name,sizex,sizey,type,alignment) \
157 : edgomez 1.9 __attribute__ ((__aligned__(CACHE_LINE))) type name[(sizex)*(sizey)]
158 :    
159 :     #define int8_t char
160 :     #define uint8_t unsigned char
161 :     #define int16_t short
162 : Isibaar 1.1 #define uint16_t unsigned short
163 : edgomez 1.9 #define int32_t int
164 : Isibaar 1.1 #define uint32_t unsigned int
165 : edgomez 1.9 #define int64_t long long
166 : Isibaar 1.1 #define uint64_t unsigned long long
167 :    
168 :     #endif
169 :    
170 :    
171 :     // needed for bitstream.h
172 : canard 1.5 #ifdef ARCH_PPC
173 : edgomez 1.18 #define BSWAP(a) __asm__ __volatile__ ( "lwbrx %0,0,%1; eieio" : "=r" (a) : \
174 : canard 1.5 "r" (&(a)), "m" (a));
175 : edgomez 1.18 #define EMMS()
176 :    
177 :     static __inline unsigned long
178 :     get_tbl(void)
179 :     {
180 :     unsigned long tbl;
181 :     asm volatile ("mftb %0":"=r" (tbl));
182 :    
183 :     return tbl;
184 :     }
185 :     static __inline unsigned long
186 :     get_tbu(void)
187 :     {
188 :     unsigned long tbl;
189 :     asm volatile ("mftbu %0":"=r" (tbl));
190 :    
191 :     return tbl;
192 :     }
193 :     static __inline int64_t
194 :     read_counter()
195 :     {
196 :     unsigned long tb, tu;
197 : canard 1.12
198 : edgomez 1.18 do {
199 :     tu = get_tbu();
200 :     tb = get_tbl();
201 :     } while (tb != get_tbl());
202 :     return (((int64_t) tu) << 32) | (int64_t) tb;
203 :     }
204 : Isibaar 1.21
205 :     #define ptr_t uint32_t
206 :    
207 :     #define CACHE_LINE 16
208 :    
209 :     #elif defined(ARCH_IA64)
210 :    
211 :     #define ptr_t uint64_t
212 :    
213 :     #define CACHE_LINE 32
214 :    
215 :     #define EMMS()
216 :    
217 :     // needed for bitstream.h
218 : ia64p 1.24 #define BSWAP(a) __asm__ __volatile__ ("mux1 %1 = %0, @rev" \
219 :     ";;" \
220 :     "shr.u %1 = %1, 32" : "=r" (a) : "r" (a));
221 : Isibaar 1.21
222 : ia64p 1.24 // rdtsc replacement for ia64
223 : Isibaar 1.21 static __inline int64_t read_counter() {
224 : ia64p 1.24 unsigned long result;
225 :    
226 :     // __asm__ __volatile__("mov %0=ar.itc" : "=r"(result) :: "memory");
227 :     // while (__builtin_expect ((int) result == -1, 0))
228 :     __asm__ __volatile__("mov %0=ar.itc" : "=r"(result) :: "memory");
229 :     return result;
230 :    
231 : Isibaar 1.21 }
232 :    
233 : canard 1.5 #else
234 : edgomez 1.18 #define BSWAP(a) __asm__ ( "bswapl %0\n" : "=r" (a) : "0" (a) )
235 :     #define EMMS() __asm__("emms\n\t")
236 : edgomez 1.9
237 : Isibaar 1.1
238 :     // needed for timer.c
239 : edgomez 1.18 static __inline int64_t
240 :     read_counter()
241 :     {
242 :     int64_t ts;
243 :     uint32_t ts1, ts2;
244 : Isibaar 1.1
245 : edgomez 1.18 __asm__ __volatile__("rdtsc\n\t":"=a"(ts1),
246 :     "=d"(ts2));
247 : Isibaar 1.1
248 : edgomez 1.18 ts = ((uint64_t) ts2 << 32) | ((uint64_t) ts1);
249 : Isibaar 1.1
250 : edgomez 1.18 return ts;
251 : Isibaar 1.1 }
252 : edgomez 1.9
253 : Isibaar 1.21 #define ptr_t uint32_t
254 :    
255 :     #define CACHE_LINE 16
256 :    
257 : edgomez 1.9 #endif
258 : Isibaar 1.1
259 : edgomez 1.18 #else // OTHER OS
260 : suxen_drol 1.22
261 :    
262 :     #include <stdio.h>
263 :     #include <stdarg.h>
264 : suxen_drol 1.23
265 :     static __inline void
266 :     DPRINTF(int level, char *fmt, ...)
267 : suxen_drol 1.22 {
268 : suxen_drol 1.23 if ((DPRINTF_LEVEL & level)) {
269 : suxen_drol 1.22
270 : suxen_drol 1.23 va_list args;
271 :     char buf[DPRINTF_BUF_SZ];
272 :    
273 :     va_start(args, fmt);
274 :     vsprintf(buf, fmt, args);
275 :     fprintf(stdout, "%s\n", buf);
276 :     }
277 : suxen_drol 1.22 }
278 :    
279 : Isibaar 1.1
280 :     #define DEBUG(S)
281 :     #define DEBUG1(S,I)
282 :     #define DEBUG2(X,A,B)
283 :     #define DEBUG3(X,A,B,C)
284 :     #define DEBUG8(X,A,B,C,D,E,F,G,H)
285 : h 1.14 #define DEBUGCBR(A,B,C)
286 : Isibaar 1.1
287 :     #include <inttypes.h>
288 :    
289 :     #define EMMS()
290 :    
291 :     // needed for bitstream.h
292 :     #define BSWAP(a) \
293 :     ((a) = ( ((a)&0xff)<<24) | (((a)&0xff00)<<8) | (((a)>>8)&0xff00) | (((a)>>24)&0xff))
294 :    
295 :     // rdtsc command most likely not supported,
296 :     // so just dummy code here
297 : edgomez 1.18 static __inline int64_t
298 :     read_counter()
299 :     {
300 : Isibaar 1.1 return 0;
301 :     }
302 : Isibaar 1.4
303 : Isibaar 1.21 #define ptr_t uint32_t
304 :    
305 : Isibaar 1.4 #define CACHE_LINE 16
306 :     #define CACHE_ALIGN
307 : Isibaar 1.1
308 :     #endif
309 :    
310 : edgomez 1.18 #endif // _PORTAB_H_

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