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

Diff of /xvidcore/src/portab.h

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.3, Sat Mar 16 22:28:37 2002 UTC revision 1.56, Sun May 28 07:52:45 2006 UTC
# Line 1  Line 1 
1    /*****************************************************************************
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-2003 Peter Ross <pross@xvid.org>
8     *               2002-2003 Edouard Gomez <ed.gomez@free.fr>
9     *
10     *  This program is free software ; you can redistribute it and/or modify
11     *  it under the terms of the GNU General Public License as published by
12     *  the Free Software Foundation ; either version 2 of the License, or
13     *  (at your option) any later version.
14     *
15     *  This program is distributed in the hope that it will be useful,
16     *  but WITHOUT ANY WARRANTY ; without even the implied warranty of
17     *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18     *  GNU General Public License for more details.
19     *
20     *  You should have received a copy of the GNU General Public License
21     *  along with this program ; if not, write to the Free Software
22     *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
23     *
24     * $Id$
25     *
26     ****************************************************************************/
27    
28  #ifndef _PORTAB_H_  #ifndef _PORTAB_H_
29  #define _PORTAB_H_  #define _PORTAB_H_
30    
31  #if defined(WIN32)  /*****************************************************************************
32     *  Common things
33  #include <windows.h>   ****************************************************************************/
34    
35  #ifdef _DEBUG  /* Buffer size for msvc implementation because it outputs to DebugOutput */
36  #define DEBUG(S) OutputDebugString((S));  #if defined(_DEBUG)
37  #define DEBUG1(S,I) { char tmp[100]; wsprintf(tmp, "%s %i\n", (S), (I)); OutputDebugString(tmp); }  extern unsigned int xvid_debug;
38  #define DEBUG2(X,A,B) { char tmp[100]; wsprintf(tmp, "%s %i %i\n", (X), (A), (B)); OutputDebugString(tmp); }  #define DPRINTF_BUF_SZ  1024
 #define DEBUG3(X,A,B,C){ char tmp[1000]; wsprintf(tmp,"%s %i %i %i",(X),(A), (B), (C)); OutputDebugString(tmp); }  
 #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); }  
 #else  
 #define DEBUG(S)  
 #define DEBUG1(S,I)  
 #define DEBUG2(X,A,B)  
 #define DEBUG3(X,A,B,C)  
 #define DEBUG8(X,A,B,C,D,E,F,G,H)  
39  #endif  #endif
40    
41    /*****************************************************************************
42     *  Types used in XviD sources
43     ****************************************************************************/
44    
45    /*----------------------------------------------------------------------------
46      | For MSVC
47     *---------------------------------------------------------------------------*/
48    
49    #if defined(_MSC_VER) || defined (__WATCOMC__)
50  #define int8_t char  #define int8_t char
51  #define uint8_t unsigned char  #define uint8_t unsigned char
52  #define int16_t short  #define int16_t short
# Line 29  Line 56 
56  #define int64_t __int64  #define int64_t __int64
57  #define uint64_t unsigned __int64  #define uint64_t unsigned __int64
58    
59  #define EMMS() __asm {emms}  /*----------------------------------------------------------------------------
60      | For all other compilers, use the standard header file
61      | (compiler should be ISO C99 compatible, perhaps ISO C89 is enough)
62     *---------------------------------------------------------------------------*/
63    
64    #else
65    
66    #    include <inttypes.h>
67    
68    #endif
69    
70    /*****************************************************************************
71     *  Some things that are only architecture dependant
72     ****************************************************************************/
73    
74    #if defined(ARCH_IS_32BIT)
75    #    define CACHE_LINE 64
76    #    define ptr_t uint32_t
77    #    define intptr_t int32_t
78    #    define _INTPTR_T_DEFINED
79    #    if defined(_MSC_VER) && _MSC_VER >= 1300 && !defined(__INTEL_COMPILER)
80    #        include <stdarg.h>
81    #    else
82    #        define uintptr_t uint32_t
83    #    endif
84    #elif defined(ARCH_IS_64BIT)
85    #    define CACHE_LINE  64
86    #    define ptr_t uint64_t
87    #    define intptr_t int64_t
88    #    define _INTPTR_T_DEFINED
89    #    if defined (_MSC_VER) && _MSC_VER >= 1300 && !defined(__INTEL_COMPILER)
90    #        include <stdarg.h>
91    #    else
92    #        define uintptr_t uint64_t
93    #    endif
94    #else
95    #    error You are trying to compile XviD without defining address bus size.
96    #endif
97    
98    /*****************************************************************************
99     *  Things that must be sorted by compiler and then by architecture
100     ****************************************************************************/
101    
102    /*****************************************************************************
103     *  MSVC compiler specific macros, functions
104     ****************************************************************************/
105    
106    #if defined(_MSC_VER)
107    
108    /*----------------------------------------------------------------------------
109      | Common msvc stuff
110     *---------------------------------------------------------------------------*/
111    
112    #    include <windows.h>
113    #    include <stdio.h>
114    
115    /* Non ANSI mapping */
116    #    define snprintf _snprintf
117    #    define vsnprintf _vsnprintf
118    
119    /*
120     * This function must be declared/defined all the time because MSVC does
121     * not support C99 variable arguments macros.
122     *
123     * Btw, if the MS compiler does its job well, it should remove the nop
124     * DPRINTF function when not compiling in _DEBUG mode
125     */
126    #   ifdef _DEBUG
127    static __inline void DPRINTF(int level, char *fmt, ...)
128    {
129            if (xvid_debug & level) {
130                    va_list args;
131                    char buf[DPRINTF_BUF_SZ];
132                    va_start(args, fmt);
133                    vsprintf(buf, fmt, args);
134                    va_end(args);
135                    OutputDebugString(buf);
136                    fprintf(stderr, "%s", buf);
137            }
138    }
139    #    else
140    static __inline void DPRINTF(int level, char *fmt, ...) {}
141    #    endif
142    
143    #    if _MSC_VER <= 1200
144    #        define DECLARE_ALIGNED_MATRIX(name,sizex,sizey,type,alignment) \
145            type name##_storage[(sizex)*(sizey)+(alignment)-1]; \
146    type * name = (type *) (((int32_t) name##_storage+(alignment - 1)) & ~((int32_t)(alignment)-1))
147    #    else
148    #        define DECLARE_ALIGNED_MATRIX(name,sizex,sizey,type,alignment) \
149            __declspec(align(alignment)) type name[(sizex)*(sizey)]
150    #    endif
151    
152    
153  // needed for bitstream.h  /*----------------------------------------------------------------------------
154      | msvc x86 specific macros/functions
155     *---------------------------------------------------------------------------*/
156    #    if defined(ARCH_IS_IA32) || defined(ARCH_IS_X86_64)
157  #define BSWAP(a) __asm mov eax,a __asm bswap eax __asm mov a, eax  #define BSWAP(a) __asm mov eax,a __asm bswap eax __asm mov a, eax
158    
159  // needed for timer.c  static __inline int64_t read_counter(void)
160  static __inline int64_t read_counter() {  {
161          int64_t ts;          int64_t ts;
162          uint32_t ts1, ts2;          uint32_t ts1, ts2;
   
163          __asm {          __asm {
164                  rdtsc                  rdtsc
165                  mov  ts1, eax                  mov  ts1, eax
166                  mov  ts2, edx                  mov  ts2, edx
167          }          }
   
168          ts = ((uint64_t) ts2 << 32) | ((uint64_t) ts1);          ts = ((uint64_t) ts2 << 32) | ((uint64_t) ts1);
   
169          return ts;          return ts;
170  }  }
171    
172  #elif defined(LINUX) || defined(DJGPP)  /*----------------------------------------------------------------------------
173      | msvc GENERIC (plain C only) - Probably alpha or some embedded device
174     *---------------------------------------------------------------------------*/
175    #    elif defined(ARCH_IS_GENERIC)
176    #        define BSWAP(a) \
177            ((a) = (((a) & 0xff) << 24)  | (((a) & 0xff00) << 8) | \
178             (((a) >> 8) & 0xff00) | (((a) >> 24) & 0xff))
179    
180    #        include <time.h>
181    static __inline int64_t read_counter(void)
182    {
183            return (int64_t)clock();
184    }
185    
186    /*----------------------------------------------------------------------------
187      | msvc Not given architecture - This is probably an user who tries to build
188      | XviD the wrong way.
189     *---------------------------------------------------------------------------*/
190    #    else
191    #        error You are trying to compile XviD without defining the architecture type.
192    #    endif
193    
194    
195    
196    
197    /*****************************************************************************
198     *  GNU CC compiler stuff
199     ****************************************************************************/
200    
201    #elif defined(__GNUC__) || defined(__ICC) /* Compiler test */
202    
203    /*----------------------------------------------------------------------------
204      | Common gcc stuff
205     *---------------------------------------------------------------------------*/
206    
207    /*
208     * As gcc is (mostly) C99 compliant, we define DPRINTF only if it's realy needed
209     * and it's a macro calling fprintf directly
210     */
211  #ifdef _DEBUG  #ifdef _DEBUG
212    
213    /* Needed for all debuf fprintf calls */
214  #include <stdio.h>  #include <stdio.h>
215  #define DEBUG_WHERE             stdout  #       include <stdarg.h>
 #define DEBUG(S)        fprintf(DEBUG_WHERE, "%s\n", (S));  
 #define DEBUG1(S,I)     fprintf(DEBUG_WHERE, "%s %i\n", (S), (I))  
 #define DEBUG2(S,A,B)   fprintf(DEBUG_WHERE, "%s%i=%i\n", (S), (A), (B))  
 #define DEBUG3(S,A,B,C) fprintf(DEBUG_WHERE, "%s %i %x %x\n", (S), (A), (B), (C))  
 #define DEBUG8(S,A,B,C,D,E,F,G,H)  
 #else  
 #define DEBUG(S)  
 #define DEBUG1(S,I)  
 #define DEBUG2(X,A,B)  
 #define DEBUG3(X,A,B,C)  
 #define DEBUG8(X,A,B,C,D,E,F,G,H)  
 #endif  
216    
217  #if defined(LINUX)  static __inline void DPRINTF(int level, char *format, ...)
218    {
219            va_list args;
220            va_start(args, format);
221            if(xvid_debug & level) {
222                    vfprintf(stderr, format, args);
223            }
224            va_end(args);
225    }
226    
227  #include <stdint.h>  #    else /* _DEBUG */
228    static __inline void DPRINTF(int level, char *format, ...) {}
229    #    endif /* _DEBUG */
230    
231    
232    #    define DECLARE_ALIGNED_MATRIX(name,sizex,sizey,type,alignment) \
233            type name##_storage[(sizex)*(sizey)+(alignment)-1]; \
234    type * name = (type *) (((ptr_t) name##_storage+(alignment - 1)) & ~((ptr_t)(alignment)-1))
235    
236    /*----------------------------------------------------------------------------
237      | gcc IA32 specific macros/functions
238     *---------------------------------------------------------------------------*/
239    #    if defined(ARCH_IS_IA32) || defined(ARCH_IS_X86_64)
240    #        define BSWAP(a) __asm__ ( "bswapl %0\n" : "=r" (a) : "0" (a) );
241    
242    static __inline int64_t read_counter(void)
243    {
244            int64_t ts;
245            uint32_t ts1, ts2;
246            __asm__ __volatile__("rdtsc\n\t":"=a"(ts1), "=d"(ts2));
247            ts = ((uint64_t) ts2 << 32) | ((uint64_t) ts1);
248            return ts;
249    }
250    
251    /*----------------------------------------------------------------------------
252      | gcc PPC and PPC Altivec specific macros/functions
253     *---------------------------------------------------------------------------*/
254    #    elif defined(ARCH_IS_PPC)
255    
256    #        if defined(HAVE_ALTIVEC_PARENTHESES_DECL)
257    #            define AVV(x...) (x)
258    #        elif defined(HAVE_ALTIVEC_BRACES_DECL)
259    #            define AVV(x...) {x}
260  #else  #else
261    #            error Trying to compile PPC target without a vector declaration type.
262    #        endif
263    
264  #define int8_t char  #        define BSWAP(a) __asm__ __volatile__ \
265  #define uint8_t unsigned char          ( "lwbrx %0,0,%1; eieio" : "=r" (a) : "r" (&(a)), "m" (a));
266  #define int16_t short  
267  #define uint16_t unsigned short  static __inline unsigned long get_tbl(void)
268  #define int32_t int  {
269  #define uint32_t unsigned int          unsigned long tbl;
270  #define int64_t long long          asm volatile ("mftb %0":"=r" (tbl));
271  #define uint64_t unsigned long long          return tbl;
272    }
273    
274    static __inline unsigned long get_tbu(void)
275    {
276            unsigned long tbl;
277            asm volatile ("mftbu %0":"=r" (tbl));
278            return tbl;
279    }
280    
281    static __inline int64_t read_counter(void)
282    {
283            unsigned long tb, tu;
284            do {
285                    tu = get_tbu();
286                    tb = get_tbl();
287            }while (tb != get_tbl());
288            return (((int64_t) tu) << 32) | (int64_t) tb;
289    }
290    
291    /*----------------------------------------------------------------------------
292      | gcc IA64 specific macros/functions
293     *---------------------------------------------------------------------------*/
294    #    elif defined(ARCH_IS_IA64)
295    #        define BSWAP(a)  __asm__ __volatile__ \
296            ("mux1 %0 = %1, @rev" ";;" \
297             "shr.u %0 = %0, 32" : "=r" (a) : "r" (a));
298    
299    static __inline int64_t read_counter(void)
300    {
301            unsigned long result;
302            __asm__ __volatile__("mov %0=ar.itc" : "=r"(result) :: "memory");
303            return result;
304    }
305    
306    /*----------------------------------------------------------------------------
307      | gcc GENERIC (plain C only) specific macros/functions
308     *---------------------------------------------------------------------------*/
309    #    elif defined(ARCH_IS_GENERIC)
310    #        define BSWAP(a) \
311            ((a) = (((a) & 0xff) << 24)  | (((a) & 0xff00) << 8) | \
312             (((a) >> 8) & 0xff00) | (((a) >> 24) & 0xff))
313    
314    #        include <time.h>
315    static __inline int64_t read_counter(void)
316    {
317            return (int64_t)clock();
318    }
319    
320    /*----------------------------------------------------------------------------
321      | gcc Not given architecture - This is probably an user who tries to build
322      | XviD the wrong way.
323     *---------------------------------------------------------------------------*/
324    #    else
325    #        error You are trying to compile XviD without defining the architecture type.
326  #endif  #endif
327    
 #define EMMS() __asm__("emms\n\t")  
328    
 // needed for bitstream.h  
 #define BSWAP(a) __asm__ ( "bswapl %0\n" : "=r" (a) : "0" (a) )  
329    
 // needed for timer.c  
 static __inline int64_t read_counter() {  
     int64_t ts;  
     uint32_t ts1, ts2;  
330    
331      __asm__ __volatile__("rdtsc\n\t":"=a"(ts1), "=d"(ts2));  /*****************************************************************************
332     *  Open WATCOM C/C++ compiler
333     ****************************************************************************/
334    
335      ts = ((uint64_t) ts2 << 32) | ((uint64_t) ts1);  #elif defined(__WATCOMC__)
336    
337    #    include <stdio.h>
338    #    include <stdarg.h>
339    
340    #    ifdef _DEBUG
341    static __inline void DPRINTF(int level, char *fmt, ...)
342    {
343            if (xvid_debug & level) {
344                    va_list args;
345                    char buf[DPRINTF_BUF_SZ];
346                    va_start(args, fmt);
347                    vsprintf(buf, fmt, args);
348                    va_end(args);
349                    fprintf(stderr, "%s", buf);
350            }
351    }
352    #    else /* _DEBUG */
353    static __inline void DPRINTF(int level, char *format, ...) {}
354    #    endif /* _DEBUG */
355    
356    #        define DECLARE_ALIGNED_MATRIX(name,sizex,sizey,type,alignment) \
357            type name##_storage[(sizex)*(sizey)+(alignment)-1]; \
358    type * name = (type *) (((int32_t) name##_storage+(alignment - 1)) & ~((int32_t)(alignment)-1))
359    
360    /*----------------------------------------------------------------------------
361      | watcom ia32 specific macros/functions
362     *---------------------------------------------------------------------------*/
363    #    if defined(ARCH_IS_IA32)
364    
365    #        define BSWAP(a)  __asm mov eax,a __asm bswap eax __asm mov a, eax
366    
367    static __inline int64_t read_counter(void)
368    {
369            uint64_t ts;
370            uint32_t ts1, ts2;
371            __asm {
372                    rdtsc
373                            mov ts1, eax
374                            mov ts2, edx
375            }
376            ts = ((uint64_t) ts2 << 32) | ((uint64_t) ts1);
377      return ts;      return ts;
378  }  }
379    
380  #else // OTHER OS  /*----------------------------------------------------------------------------
381      | watcom GENERIC (plain C only) specific macros/functions.
382     *---------------------------------------------------------------------------*/
383    #    elif defined(ARCH_IS_GENERIC)
384    
385    #        define BSWAP(x) \
386            x = ((((x) & 0xff000000) >> 24) | \
387                            (((x) & 0x00ff0000) >>  8) | \
388                            (((x) & 0x0000ff00) <<  8) | \
389                            (((x) & 0x000000ff) << 24))
390    
391    static int64_t read_counter() { return 0; }
392    
393    /*----------------------------------------------------------------------------
394      | watcom Not given architecture - This is probably an user who tries to build
395      | XviD the wrong way.
396     *---------------------------------------------------------------------------*/
397    #    else
398    #        error You are trying to compile XviD without defining the architecture type.
399    #    endif
400    
 #define DEBUG(S)  
 #define DEBUG1(S,I)  
 #define DEBUG2(X,A,B)  
 #define DEBUG3(X,A,B,C)  
 #define DEBUG8(X,A,B,C,D,E,F,G,H)  
401    
402  #include <inttypes.h>  /*****************************************************************************
403     *  Unknown compiler
404     ****************************************************************************/
405    #else /* Compiler test */
406    
407    /*
408     * Ok we know nothing about the compiler, so we fallback to ANSI C
409     * features, so every compiler should be happy and compile the code.
410     *
411     * This is (mostly) equivalent to ARCH_IS_GENERIC.
412     */
413    
414  #define EMMS()  #    ifdef _DEBUG
415    
416    /* Needed for all debuf fprintf calls */
417    #       include <stdio.h>
418    #       include <stdarg.h>
419    
420    static __inline void DPRINTF(int level, char *format, ...)
421    {
422            va_list args;
423            va_start(args, format);
424            if(xvid_debug & level) {
425                    vfprintf(stderr, format, args);
426            }
427            va_end(args);
428    }
429    
430    #    else /* _DEBUG */
431    static __inline void DPRINTF(int level, char *format, ...) {}
432    #    endif /* _DEBUG */
433    
 // needed for bitstream.h  
434  #define BSWAP(a) \  #define BSWAP(a) \
435           ((a) = ( ((a)&0xff)<<24) | (((a)&0xff00)<<8) | (((a)>>8)&0xff00) | (((a)>>24)&0xff))          ((a) = (((a) & 0xff) << 24)  | (((a) & 0xff00) << 8) | \
436             (((a) >> 8) & 0xff00) | (((a) >> 24) & 0xff))
437    
438  // rdtsc command most likely not supported,  #    include <time.h>
439  // so just dummy code here  static __inline int64_t read_counter(void)
440  static __inline int64_t read_counter() {  {
441          return 0;          return (int64_t)clock();
442  }  }
443    
444  #endif  #    define DECLARE_ALIGNED_MATRIX(name,sizex,sizey,type,alignment) \
445            type name[(sizex)*(sizey)]
446    
447    #endif /* Compiler test */
448    
 #endif // _PORTAB_H_  
449    
450    #endif /* PORTAB_H */

Legend:
Removed from v.1.3  
changed lines
  Added in v.1.56

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