[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.40, Sat Dec 28 13:53:08 2002 UTC revision 1.41, Sun Feb 9 19:32:52 2003 UTC
# Line 84  Line 84 
84   ****************************************************************************/   ****************************************************************************/
85    
86  /*----------------------------------------------------------------------------  /*----------------------------------------------------------------------------
87   | Standard Unix include file (sorry, we put all unix into "linux" case)   | For MSVC
88   *---------------------------------------------------------------------------*/   *---------------------------------------------------------------------------*/
89    
90  #if defined(LINUX) || defined(BEOS) || defined(FREEBSD)  #if defined(_MSC_VER)
   
 /* All (u)int(size)_t types are defined here */  
 #    include <inttypes.h>  
   
 /*----------------------------------------------------------------------------  
  | msvc (lacks such a header file)  
  *---------------------------------------------------------------------------*/  
   
 #elif defined(_MSC_VER)  
91  #    define int8_t   char  #    define int8_t   char
92  #    define uint8_t  unsigned char  #    define uint8_t  unsigned char
93  #    define int16_t  short  #    define int16_t  short
# Line 107  Line 98 
98  #    define uint64_t unsigned __int64  #    define uint64_t unsigned __int64
99    
100  /*----------------------------------------------------------------------------  /*----------------------------------------------------------------------------
101   | Fallback when using gcc   | For GNU C compatible compilers
102   *---------------------------------------------------------------------------*/   *---------------------------------------------------------------------------*/
103    
104  #elif defined(__GNUC__) || defined(__ICC)  #elif defined(__GNUC__) || defined(__ICC)
# Line 126  Line 117 
117   *---------------------------------------------------------------------------*/   *---------------------------------------------------------------------------*/
118    
119  #else  #else
120  #    error Do not know how to define (u)int(size)_t types  #    error Do not know how to define (u)int(size)_t types.
121  #endif  #endif
122    
123  /*****************************************************************************  /*****************************************************************************
124   *  Some things that are only architecture dependant   *  Some things that are only architecture dependant
125   ****************************************************************************/   ****************************************************************************/
126    
127  #if defined(ARCH_X86) || defined(ARCH_PPC) || defined(ARCH_MIPS)  || defined(ARCH_SPARC)  #if defined(ARCH_IS_32BIT)
128  #    define CACHE_LINE  16  #    define CACHE_LINE  16
129  #    define ptr_t uint32_t  #    define ptr_t uint32_t
130  #elif defined(ARCH_IA64)  #elif defined(ARCH_IS_64BIT)
131  #    define CACHE_LINE  32  #    define CACHE_LINE  32
132  #    define ptr_t uint64_t  #    define ptr_t uint64_t
133  #else  #else
134  /* todo: fix cache_line 0 operation */  #    error You are trying to compile XviD without defining address bus size.
 #    define CACHE_LINE  16  
 #    define ptr_t uint32_t  
135  #endif  #endif
136    
137  /*****************************************************************************  /*****************************************************************************
# Line 164  Line 153 
153    
154      /*      /*
155       * This function must be declared/defined all the time because MSVC does       * This function must be declared/defined all the time because MSVC does
156       * not support C99 variable arguments macros       * not support C99 variable arguments macros.
157         *
158         * Btw, if the MS compiler does its job well, it should remove the nop
159         * DPRINTF function when not compiling in _DEBUG mode
160       */       */
161    #   ifdef _DEBUG
162      static __inline void DPRINTF(int level, char *fmt, ...)      static __inline void DPRINTF(int level, char *fmt, ...)
163      {      {
164          if (DPRINTF_LEVEL & level) {          if (DPRINTF_LEVEL & level) {
# Line 177  Line 170 
170              fprintf(stderr, "%s\n", buf);              fprintf(stderr, "%s\n", buf);
171           }           }
172       }       }
173    #    else
174         static __inline void DPRINTF(int level, char *fmt, ...)
175         {
176         }
177    #    endif
178    
179  #    if _MSC_VER <= 1200  #    if _MSC_VER <= 1200
180  #        define DECLARE_ALIGNED_MATRIX(name,sizex,sizey,type,alignment) \  #        define DECLARE_ALIGNED_MATRIX(name,sizex,sizey,type,alignment) \
# Line 191  Line 189 
189  /*----------------------------------------------------------------------------  /*----------------------------------------------------------------------------
190   | msvc x86 specific macros/functions   | msvc x86 specific macros/functions
191   *---------------------------------------------------------------------------*/   *---------------------------------------------------------------------------*/
192  #    if defined(ARCH_X86)  #    if defined(ARCH_IS_IA32)
193  #        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
194  #        define EMMS() __asm {emms}  #        define EMMS() __asm {emms}
195    
196    #        ifdef _PROFILING_
197               static __inline int64_t read_counter(void)               static __inline int64_t read_counter(void)
198               {               {
199                   int64_t ts;                   int64_t ts;
# Line 207  Line 206 
206                   ts = ((uint64_t) ts2 << 32) | ((uint64_t) ts1);                   ts = ((uint64_t) ts2 << 32) | ((uint64_t) ts1);
207                   return ts;                   return ts;
208               }               }
209    #        endif
210    
211  /*----------------------------------------------------------------------------  /*----------------------------------------------------------------------------
212   | msvc unknown architecture   | msvc GENERIC (plain C only) - Probably alpha or some embedded device
213   *---------------------------------------------------------------------------*/   *---------------------------------------------------------------------------*/
214  #    else  #    elif defined(ARCH_IS_GENERIC)
215  /* ANSI C version of BSWAP */  #        define BSWAP(a) \
216  #define BSWAP(x) \                  ((a) = (((a) & 0xff) << 24)  | (((a) & 0xff00) << 8) | \
217   x = ((((x) & 0xff000000) >> 24) | \                         (((a) >> 8) & 0xff00) | (((a) >> 24) & 0xff))
      (((x) & 0x00ff0000) >>  8) | \  
      (((x) & 0x0000ff00) <<  8) | \  
      (((x) & 0x000000ff) << 24))  
   
218  #define EMMS()  #define EMMS()
219    
220    #        ifdef _PROFILING_
221    #            include <time.h>
222                 static __inline int64_t read_counter(void)
223                 {
224                     return (int64_t)clock();
225                 }
226    #        endif
227    
228    /*----------------------------------------------------------------------------
229     | msvc Not given architecture - This is probably an user who tries to build
230     | XviD the wrong way.
231     *---------------------------------------------------------------------------*/
232    #    else
233    #        error You are trying to compile XviD without defining the architecture type.
234  #    endif  #    endif
235    
236    
# Line 243  Line 254 
254    
255          /* Needed for all debuf fprintf calls */          /* Needed for all debuf fprintf calls */
256  #       include <stdio.h>  #       include <stdio.h>
257    #       include <stdarg.h>
258    
259  #       define DPRINTF(level, format, ...) \          static __inline void DPRINTF(int level, char *format, ...)
260              do {\          {
261                  if(DPRINTF_LEVEL & level)\              va_list args;
262                      fprintf(stderr, format"\n", ##__VA_ARGS__);\              va_start(args, format);
263              }while(0);              if(DPRINTF_LEVEL & level) {
264                       vfprintf(stderr, format, args);
265                                            fprintf(stderr, "\n");
266                            }
267                    }
268    
269  #    else /* _DEBUG */  #    else /* _DEBUG */
270  #        define DPRINTF(level, format, ...)          static __inline void DPRINTF(int level, char *format, ...) {}
271  #    endif /* _DEBUG */  #    endif /* _DEBUG */
272    
273    
   
274  #    define DECLARE_ALIGNED_MATRIX(name,sizex,sizey,type,alignment) \  #    define DECLARE_ALIGNED_MATRIX(name,sizex,sizey,type,alignment) \
275              type name##_storage[(sizex)*(sizey)+(alignment)-1]; \              type name##_storage[(sizex)*(sizey)+(alignment)-1]; \
276              type * name = (type *) (((ptr_t) name##_storage+(alignment - 1)) & ~((ptr_t)(alignment)-1))              type * name = (type *) (((ptr_t) name##_storage+(alignment - 1)) & ~((ptr_t)(alignment)-1))
277    
278  /*----------------------------------------------------------------------------  /*----------------------------------------------------------------------------
279   | gcc x86 specific macros/functions   | gcc IA32 specific macros/functions
280   *---------------------------------------------------------------------------*/   *---------------------------------------------------------------------------*/
281  #    if defined(ARCH_X86)  #    if defined(ARCH_IS_IA32)
282  #        define BSWAP(a) __asm__ ( "bswapl %0\n" : "=r" (a) : "0" (a) );  #        define BSWAP(a) __asm__ ( "bswapl %0\n" : "=r" (a) : "0" (a) );
283  #        define EMMS() __asm__ ("emms\n\t");  #        define EMMS() __asm__ ("emms\n\t");
284    
285    #        ifdef _PROFILING_
286           static __inline int64_t read_counter(void)           static __inline int64_t read_counter(void)
287           {           {
288               int64_t ts;               int64_t ts;
# Line 275  Line 291 
291               ts = ((uint64_t) ts2 << 32) | ((uint64_t) ts1);               ts = ((uint64_t) ts2 << 32) | ((uint64_t) ts1);
292               return ts;               return ts;
293           }           }
294    #        endif
295    
296  /*----------------------------------------------------------------------------  /*----------------------------------------------------------------------------
297   | gcc PPC and PPC Altivec specific macros/functions   | gcc PPC and PPC Altivec specific macros/functions
298   *---------------------------------------------------------------------------*/   *---------------------------------------------------------------------------*/
299  #    elif defined(ARCH_PPC)  #    elif defined(ARCH_IS_PPC)
300  #        define BSWAP(a) __asm__ __volatile__ \  #        define BSWAP(a) __asm__ __volatile__ \
301                  ( "lwbrx %0,0,%1; eieio" : "=r" (a) : "r" (&(a)), "m" (a));                  ( "lwbrx %0,0,%1; eieio" : "=r" (a) : "r" (&(a)), "m" (a));
302  #        define EMMS()  #        define EMMS()
303    
304    #        ifdef _PROFILING_
305           static __inline unsigned long get_tbl(void)           static __inline unsigned long get_tbl(void)
306           {           {
307               unsigned long tbl;               unsigned long tbl;
# Line 307  Line 325 
325               }while (tb != get_tbl());               }while (tb != get_tbl());
326               return (((int64_t) tu) << 32) | (int64_t) tb;               return (((int64_t) tu) << 32) | (int64_t) tb;
327           }           }
328    #        endif
329    
330  /*----------------------------------------------------------------------------  /*----------------------------------------------------------------------------
331   | gcc IA64 specific macros/functions   | gcc IA64 specific macros/functions
332   *---------------------------------------------------------------------------*/   *---------------------------------------------------------------------------*/
333  #    elif defined(ARCH_IA64)  #    elif defined(ARCH_IS_IA64)
334  #        define BSWAP(a)  __asm__ __volatile__ \  #        define BSWAP(a)  __asm__ __volatile__ \
335                  ("mux1 %1 = %0, @rev" ";;" \                  ("mux1 %1 = %0, @rev" ";;" \
336                   "shr.u %1 = %1, 32" : "=r" (a) : "r" (a));                   "shr.u %1 = %1, 32" : "=r" (a) : "r" (a));
337  #        define EMMS()  #        define EMMS()
338    
339           static __inline int64_t read_counter(void) {  #        ifdef _PROFILING_
340                 static __inline int64_t read_counter(void)
341                 {
342               unsigned long result;               unsigned long result;
343               __asm__ __volatile__("mov %0=ar.itc" : "=r"(result) :: "memory");               __asm__ __volatile__("mov %0=ar.itc" : "=r"(result) :: "memory");
344               return result;               return result;
345           }           }
346    #        endif
347    
348  /*----------------------------------------------------------------------------  /*----------------------------------------------------------------------------
349   | gcc SPARC specific macros/functions   | gcc GENERIC (plain C only) specific macros/functions
  *---------------------------------------------------------------------------*/  
 #    elif defined(ARCH_SPARC)  
 #        define BSWAP(a) \  
                 ((a) = (((a) & 0xff) << 24)  | (((a) & 0xff00) << 8) | \  
                        (((a) >> 8) & 0xff00) | (((a) >> 24) & 0xff))  
 #        define EMMS()  
   
          static __inline int64_t read_counter(void)  
          {  
              return 0;  
          }  
   
 /*----------------------------------------------------------------------------  
  | gcc MIPS specific macros/functions  
350   *---------------------------------------------------------------------------*/   *---------------------------------------------------------------------------*/
351  #    elif defined(ARCH_MIPS)  #    elif defined(ARCH_IS_GENERIC)
352  #        define BSWAP(a) \  #        define BSWAP(a) \
353                  ((a) = (((a) & 0xff) << 24)  | (((a) & 0xff00) << 8) | \                  ((a) = (((a) & 0xff) << 24)  | (((a) & 0xff00) << 8) | \
354                         (((a) >> 8) & 0xff00) | (((a) >> 24) & 0xff))                         (((a) >> 8) & 0xff00) | (((a) >> 24) & 0xff))
355  #        define EMMS()  #        define EMMS()
356    
357    #        ifdef _PROFILING_
358    #            include <time.h>
359           static __inline int64_t read_counter(void)           static __inline int64_t read_counter(void)
360           {           {
361               return 0;                   return (int64_t)clock();
362           }           }
363    #        endif
364    
365  /*----------------------------------------------------------------------------  /*----------------------------------------------------------------------------
366   | XviD + gcc unsupported Architecture   | gcc Not given architecture - This is probably an user who tries to build
367     | XviD the wrong way.
368   *---------------------------------------------------------------------------*/   *---------------------------------------------------------------------------*/
369  #    else  #    else
370  /* ANSI C version of BSWAP */  #        error You are trying to compile XviD without defining the architecture type.
371  #define BSWAP(x) \  #    endif
  x = ((((x) & 0xff000000) >> 24) | \  
      (((x) & 0x00ff0000) >>  8) | \  
      (((x) & 0x0000ff00) <<  8) | \  
      (((x) & 0x000000ff) << 24))  
   
 #define EMMS()  
 #    endif /* Architecture checking */  
372    
373  /*****************************************************************************  /*****************************************************************************
374   *  Unknown compiler   *  Unknown compiler

Legend:
Removed from v.1.40  
changed lines
  Added in v.1.41

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