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

Annotation of /xvidcore/src/portab.h

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1.20 - (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 :     dprintf(char *fmt,
13 :     ...)
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 :    
53 :     #define EMMS() __asm {emms}
54 :    
55 : Isibaar 1.4 #define CACHE_LINE 16
56 : edgomez 1.9
57 : suxen_drol 1.7 #if _MSC_VER <= 1200
58 : h 1.10 #define DECLARE_ALIGNED_MATRIX(name,sizex,sizey,type,alignment) \
59 : edgomez 1.9 type name##_storage[(sizex)*(sizey)+(alignment)-1]; \
60 :     type * name = (type *) (((int32_t) name##_storage+(alignment - 1)) & ~((int32_t)(alignment)-1))
61 : suxen_drol 1.7 #else
62 : h 1.10 #define DECLARE_ALIGNED_MATRIX(name,sizex,sizey,type,alignment) \
63 : edgomez 1.11 __declspec(align(alignment)) type name[(sizex)*(sizey)]
64 : suxen_drol 1.7 #endif
65 : Isibaar 1.4
66 : Isibaar 1.1 // needed for bitstream.h
67 :     #define BSWAP(a) __asm mov eax,a __asm bswap eax __asm mov a, eax
68 :    
69 :     // needed for timer.c
70 : edgomez 1.18 static __inline int64_t
71 :     read_counter()
72 :     {
73 : Isibaar 1.1 int64_t ts;
74 :     uint32_t ts1, ts2;
75 :    
76 :     __asm {
77 : suxen_drol 1.19 rdtsc
78 :     mov ts1, eax
79 :     mov ts2, edx
80 :     }
81 : edgomez 1.18
82 : Isibaar 1.1 ts = ((uint64_t) ts2 << 32) | ((uint64_t) ts1);
83 : edgomez 1.18
84 : Isibaar 1.1 return ts;
85 :     }
86 :    
87 : knhor 1.15 #elif defined(LINUX) || defined(DJGPP) || defined(FREEBSD)
88 : Isibaar 1.1
89 : chl 1.3 #ifdef _DEBUG
90 :    
91 : Isibaar 1.1 #include <stdio.h>
92 : edgomez 1.9 #define DEBUG_WHERE stdout
93 :     #define DEBUG(S) fprintf(DEBUG_WHERE, "%s\n", (S));
94 :     #define DEBUG1(S,I) fprintf(DEBUG_WHERE, "%s %i\n", (S), (I))
95 :     #define DEBUG2(S,A,B) fprintf(DEBUG_WHERE, "%s%i=%i\n", (S), (A), (B))
96 :     #define DEBUG3(S,A,B,C) fprintf(DEBUG_WHERE, "%s %i %x %x\n", (S), (A), (B), (C))
97 : Isibaar 1.1 #define DEBUG8(S,A,B,C,D,E,F,G,H)
98 : h 1.14 #define DEBUGCBR(A,B,C) fprintf(DEBUG_WHERE, "CBR: frame: %i, quant: %i, deviation: %i\n", (A), (B), (C))
99 : chl 1.3 #else
100 :     #define DEBUG(S)
101 :     #define DEBUG1(S,I)
102 :     #define DEBUG2(X,A,B)
103 :     #define DEBUG3(X,A,B,C)
104 :     #define DEBUG8(X,A,B,C,D,E,F,G,H)
105 : h 1.14 #define DEBUGCBR(A,B,C)
106 : chl 1.3 #endif
107 : Isibaar 1.1
108 : Isibaar 1.4 #define CACHE_LINE 16
109 :    
110 : Isibaar 1.1 #if defined(LINUX)
111 :    
112 :     #include <stdint.h>
113 :    
114 : canard 1.8 #define DECLARE_ALIGNED_MATRIX(name,sizex,sizey,type,alignment) \
115 :     type name##_storage[(sizex)*(sizey)+(alignment)-1]; \
116 : edgomez 1.9 type * name = (type *) (((int32_t) name##_storage+(alignment - 1)) & ~((int32_t)(alignment)-1))
117 : canard 1.8
118 : Isibaar 1.1 #else
119 :    
120 : knhor 1.15 #define DECLARE_ALIGNED_MATRIX(name,sizex,sizey,type,alignment) \
121 : edgomez 1.9 __attribute__ ((__aligned__(CACHE_LINE))) type name[(sizex)*(sizey)]
122 :    
123 :     #define int8_t char
124 :     #define uint8_t unsigned char
125 :     #define int16_t short
126 : Isibaar 1.1 #define uint16_t unsigned short
127 : edgomez 1.9 #define int32_t int
128 : Isibaar 1.1 #define uint32_t unsigned int
129 : edgomez 1.9 #define int64_t long long
130 : Isibaar 1.1 #define uint64_t unsigned long long
131 :    
132 :     #endif
133 :    
134 :    
135 :     // needed for bitstream.h
136 : canard 1.5 #ifdef ARCH_PPC
137 : edgomez 1.18 #define BSWAP(a) __asm__ __volatile__ ( "lwbrx %0,0,%1; eieio" : "=r" (a) : \
138 : canard 1.5 "r" (&(a)), "m" (a));
139 : edgomez 1.18 #define EMMS()
140 :    
141 :     static __inline unsigned long
142 :     get_tbl(void)
143 :     {
144 :     unsigned long tbl;
145 :     asm volatile ("mftb %0":"=r" (tbl));
146 :    
147 :     return tbl;
148 :     }
149 :     static __inline unsigned long
150 :     get_tbu(void)
151 :     {
152 :     unsigned long tbl;
153 :     asm volatile ("mftbu %0":"=r" (tbl));
154 :    
155 :     return tbl;
156 :     }
157 :     static __inline int64_t
158 :     read_counter()
159 :     {
160 :     unsigned long tb, tu;
161 : canard 1.12
162 : edgomez 1.18 do {
163 :     tu = get_tbu();
164 :     tb = get_tbl();
165 :     } while (tb != get_tbl());
166 :     return (((int64_t) tu) << 32) | (int64_t) tb;
167 :     }
168 : canard 1.5 #else
169 : edgomez 1.18 #define BSWAP(a) __asm__ ( "bswapl %0\n" : "=r" (a) : "0" (a) )
170 :     #define EMMS() __asm__("emms\n\t")
171 : edgomez 1.9
172 : Isibaar 1.1
173 :     // needed for timer.c
174 : edgomez 1.18 static __inline int64_t
175 :     read_counter()
176 :     {
177 :     int64_t ts;
178 :     uint32_t ts1, ts2;
179 : Isibaar 1.1
180 : edgomez 1.18 __asm__ __volatile__("rdtsc\n\t":"=a"(ts1),
181 :     "=d"(ts2));
182 : Isibaar 1.1
183 : edgomez 1.18 ts = ((uint64_t) ts2 << 32) | ((uint64_t) ts1);
184 : Isibaar 1.1
185 : edgomez 1.18 return ts;
186 : Isibaar 1.1 }
187 : edgomez 1.9
188 :     #endif
189 : Isibaar 1.1
190 : edgomez 1.18 #else // OTHER OS
191 : Isibaar 1.1
192 :     #define DEBUG(S)
193 :     #define DEBUG1(S,I)
194 :     #define DEBUG2(X,A,B)
195 :     #define DEBUG3(X,A,B,C)
196 :     #define DEBUG8(X,A,B,C,D,E,F,G,H)
197 : h 1.14 #define DEBUGCBR(A,B,C)
198 : Isibaar 1.1
199 :     #include <inttypes.h>
200 :    
201 :     #define EMMS()
202 :    
203 :     // needed for bitstream.h
204 :     #define BSWAP(a) \
205 :     ((a) = ( ((a)&0xff)<<24) | (((a)&0xff00)<<8) | (((a)>>8)&0xff00) | (((a)>>24)&0xff))
206 :    
207 :     // rdtsc command most likely not supported,
208 :     // so just dummy code here
209 : edgomez 1.18 static __inline int64_t
210 :     read_counter()
211 :     {
212 : Isibaar 1.1 return 0;
213 :     }
214 : Isibaar 1.4
215 :     #define CACHE_LINE 16
216 :     #define CACHE_ALIGN
217 : suxen_drol 1.20 #define DECLARE_ALIGNED_MATRIX(name,sizex,sizey,type,alignment) \
218 :     type name[(sizex)*(sizey)]
219 : Isibaar 1.1
220 :     #endif
221 :    
222 : edgomez 1.18 #endif // _PORTAB_H_

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