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

Annotation of /xvidcore/src/portab.h

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1.22 - (view) (download)

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

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