[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.43, Sat Feb 15 15:22:17 2003 UTC revision 1.46.2.1, Sat Feb 22 08:49:44 2003 UTC
# Line 46  Line 46 
46  #define DPRINTF_DEBUG           0x80000000  #define DPRINTF_DEBUG           0x80000000
47    
48  /* debug level for this library */  /* debug level for this library */
49    #ifdef _DEBUG
50    #ifndef DPRINTF_LEVEL
51    #define DPRINTF_LEVEL       0x8000000f
52    #endif
53    #else
54  #define DPRINTF_LEVEL           0  #define DPRINTF_LEVEL           0
55    #endif
56    
57  /* Buffer size for msvc implementation because it outputs to DebugOutput */  /* Buffer size for msvc implementation because it outputs to DebugOutput */
58  #define DPRINTF_BUF_SZ  1024  #define DPRINTF_BUF_SZ  1024
# Line 85  Line 91 
91   ****************************************************************************/   ****************************************************************************/
92    
93  #if defined(ARCH_IS_32BIT)  #if defined(ARCH_IS_32BIT)
94  #    define CACHE_LINE  16  #    define CACHE_LINE  64
95  #    define ptr_t uint32_t  #    define ptr_t uint32_t
96  #elif defined(ARCH_IS_64BIT)  #elif defined(ARCH_IS_64BIT)
97  #    define CACHE_LINE  32  #    define CACHE_LINE  64
98  #    define ptr_t uint64_t  #    define ptr_t uint64_t
99  #else  #else
100  #    error You are trying to compile XviD without defining address bus size.  #    error You are trying to compile XviD without defining address bus size.
# Line 111  Line 117 
117  #include <windows.h>  #include <windows.h>
118  #include <stdio.h>  #include <stdio.h>
119    
120         /* Non ANSI mapping */
121    #    define snprintf _snprintf
122    #    define vsnprintf _vsnprintf
123    
124      /*      /*
125       * This function must be declared/defined all the time because MSVC does       * This function must be declared/defined all the time because MSVC does
126       * not support C99 variable arguments macros.       * not support C99 variable arguments macros.
# Line 131  Line 141 
141           }           }
142       }       }
143  #    else  #    else
144       static __inline void DPRINTF(int level, char *fmt, ...)           static __inline void DPRINTF(int level, char *fmt, ...) {}
      {  
      }  
145  #    endif  #    endif
146    
147  #    if _MSC_VER <= 1200  #    if _MSC_VER <= 1200
# Line 151  Line 159 
159   *---------------------------------------------------------------------------*/   *---------------------------------------------------------------------------*/
160  #    if defined(ARCH_IS_IA32)  #    if defined(ARCH_IS_IA32)
161  #        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
 #        define EMMS() __asm {emms}  
162    
 #        ifdef _PROFILING_  
163               static __inline int64_t read_counter(void)               static __inline int64_t read_counter(void)
164               {               {
165                   int64_t ts;                   int64_t ts;
# Line 166  Line 172 
172                   ts = ((uint64_t) ts2 << 32) | ((uint64_t) ts1);                   ts = ((uint64_t) ts2 << 32) | ((uint64_t) ts1);
173                   return ts;                   return ts;
174               }               }
 #        endif  
175    
176  /*----------------------------------------------------------------------------  /*----------------------------------------------------------------------------
177   | msvc GENERIC (plain C only) - Probably alpha or some embedded device   | msvc GENERIC (plain C only) - Probably alpha or some embedded device
# Line 175  Line 180 
180  #        define BSWAP(a) \  #        define BSWAP(a) \
181                  ((a) = (((a) & 0xff) << 24)  | (((a) & 0xff00) << 8) | \                  ((a) = (((a) & 0xff) << 24)  | (((a) & 0xff00) << 8) | \
182                         (((a) >> 8) & 0xff00) | (((a) >> 24) & 0xff))                         (((a) >> 8) & 0xff00) | (((a) >> 24) & 0xff))
 #        define EMMS()  
183    
 #        ifdef _PROFILING_  
184  #            include <time.h>  #            include <time.h>
185               static __inline int64_t read_counter(void)               static __inline int64_t read_counter(void)
186               {               {
187                   return (int64_t)clock();                   return (int64_t)clock();
188               }               }
 #        endif  
189    
190  /*----------------------------------------------------------------------------  /*----------------------------------------------------------------------------
191   | msvc Not given architecture - This is probably an user who tries to build   | msvc Not given architecture - This is probably an user who tries to build
# Line 240  Line 242 
242   *---------------------------------------------------------------------------*/   *---------------------------------------------------------------------------*/
243  #    if defined(ARCH_IS_IA32)  #    if defined(ARCH_IS_IA32)
244  #        define BSWAP(a) __asm__ ( "bswapl %0\n" : "=r" (a) : "0" (a) );  #        define BSWAP(a) __asm__ ( "bswapl %0\n" : "=r" (a) : "0" (a) );
 #        define EMMS() __asm__ ("emms\n\t");  
245    
 #        ifdef _PROFILING_  
246               static __inline int64_t read_counter(void)               static __inline int64_t read_counter(void)
247               {               {
248                   int64_t ts;                   int64_t ts;
# Line 251  Line 251 
251                   ts = ((uint64_t) ts2 << 32) | ((uint64_t) ts1);                   ts = ((uint64_t) ts2 << 32) | ((uint64_t) ts1);
252                   return ts;                   return ts;
253               }               }
 #        endif  
254    
255  /*----------------------------------------------------------------------------  /*----------------------------------------------------------------------------
256   | gcc PPC and PPC Altivec specific macros/functions   | gcc PPC and PPC Altivec specific macros/functions
# Line 259  Line 258 
258  #    elif defined(ARCH_IS_PPC)  #    elif defined(ARCH_IS_PPC)
259  #        define BSWAP(a) __asm__ __volatile__ \  #        define BSWAP(a) __asm__ __volatile__ \
260                  ( "lwbrx %0,0,%1; eieio" : "=r" (a) : "r" (&(a)), "m" (a));                  ( "lwbrx %0,0,%1; eieio" : "=r" (a) : "r" (&(a)), "m" (a));
 #        define EMMS()  
261    
 #        ifdef _PROFILING_  
262               static __inline unsigned long get_tbl(void)               static __inline unsigned long get_tbl(void)
263               {               {
264                   unsigned long tbl;                   unsigned long tbl;
# Line 285  Line 282 
282                   }while (tb != get_tbl());                   }while (tb != get_tbl());
283                   return (((int64_t) tu) << 32) | (int64_t) tb;                   return (((int64_t) tu) << 32) | (int64_t) tb;
284               }               }
 #        endif  
285    
286  /*----------------------------------------------------------------------------  /*----------------------------------------------------------------------------
287   | gcc IA64 specific macros/functions   | gcc IA64 specific macros/functions
# Line 294  Line 290 
290  #        define BSWAP(a)  __asm__ __volatile__ \  #        define BSWAP(a)  __asm__ __volatile__ \
291                  ("mux1 %1 = %0, @rev" ";;" \                  ("mux1 %1 = %0, @rev" ";;" \
292                   "shr.u %1 = %1, 32" : "=r" (a) : "r" (a));                   "shr.u %1 = %1, 32" : "=r" (a) : "r" (a));
 #        define EMMS()  
293    
 #        ifdef _PROFILING_  
294               static __inline int64_t read_counter(void)               static __inline int64_t read_counter(void)
295               {               {
296                   unsigned long result;                   unsigned long result;
297                   __asm__ __volatile__("mov %0=ar.itc" : "=r"(result) :: "memory");                   __asm__ __volatile__("mov %0=ar.itc" : "=r"(result) :: "memory");
298                   return result;                   return result;
299               }               }
 #        endif  
300    
301  /*----------------------------------------------------------------------------  /*----------------------------------------------------------------------------
302   | gcc GENERIC (plain C only) specific macros/functions   | gcc GENERIC (plain C only) specific macros/functions
# Line 312  Line 305 
305  #        define BSWAP(a) \  #        define BSWAP(a) \
306                  ((a) = (((a) & 0xff) << 24)  | (((a) & 0xff00) << 8) | \                  ((a) = (((a) & 0xff) << 24)  | (((a) & 0xff00) << 8) | \
307                         (((a) >> 8) & 0xff00) | (((a) >> 24) & 0xff))                         (((a) >> 8) & 0xff00) | (((a) >> 24) & 0xff))
 #        define EMMS()  
308    
 #        ifdef _PROFILING_  
309  #            include <time.h>  #            include <time.h>
310               static __inline int64_t read_counter(void)               static __inline int64_t read_counter(void)
311               {               {
312                   return (int64_t)clock();                   return (int64_t)clock();
313               }               }
 #        endif  
314    
315  /*----------------------------------------------------------------------------  /*----------------------------------------------------------------------------
316   | gcc Not given architecture - This is probably an user who tries to build   | gcc Not given architecture - This is probably an user who tries to build
# Line 330  Line 320 
320  #        error You are trying to compile XviD without defining the architecture type.  #        error You are trying to compile XviD without defining the architecture type.
321  #    endif  #    endif
322    
323    
324    
325    
326  /*****************************************************************************  /*****************************************************************************
327   *  OPEN WATCOM C/C++ compiler   *  Open WATCOM C/C++ compiler
328   ****************************************************************************/   ****************************************************************************/
329    
330  #elif defined(__WATCOMC__)  #elif defined(__WATCOMC__)
331    
332  #    include <stdio.h>  #    include <stdio.h>
# Line 358  Line 352 
352                  type * name = (type *) (((int32_t) name##_storage+(alignment - 1)) & ~((int32_t)(alignment)-1))                  type * name = (type *) (((int32_t) name##_storage+(alignment - 1)) & ~((int32_t)(alignment)-1))
353    
354  /*----------------------------------------------------------------------------  /*----------------------------------------------------------------------------
355   | watcom x86 specific macros/functions   | watcom ia32 specific macros/functions
356   *---------------------------------------------------------------------------*/   *---------------------------------------------------------------------------*/
357  #    if defined(ARCH_IS_IA32)  #    if defined(ARCH_IS_IA32)
358    
359  #        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
360  #        define EMMS() __asm {emms}  
 #        ifdef _PROFILING_  
361           static __inline int64_t read_counter(void)           static __inline int64_t read_counter(void)
362           {           {
363               uint64_t ts;               uint64_t ts;
# Line 377  Line 370 
370               ts = ((uint64_t) ts2 << 32) | ((uint64_t) ts1);               ts = ((uint64_t) ts2 << 32) | ((uint64_t) ts1);
371               return ts;               return ts;
372           }           }
 #        endif  
373    
374  /*----------------------------------------------------------------------------  /*----------------------------------------------------------------------------
375   | watcom unsupported architecture   | watcom GENERIC (plain C only) specific macros/functions.
376   *---------------------------------------------------------------------------*/   *---------------------------------------------------------------------------*/
377  #       else  #    elif defined(ARCH_IS_GENERIC)
378    
379  #               define BSWAP(x) \  #               define BSWAP(x) \
380                          x = ((((x) & 0xff000000) >> 24) | \                          x = ((((x) & 0xff000000) >> 24) | \
381                                  (((x) & 0x00ff0000) >>  8) | \                                  (((x) & 0x00ff0000) >>  8) | \
382                                  (((x) & 0x0000ff00) <<  8) | \                                  (((x) & 0x0000ff00) <<  8) | \
383                                  (((x) & 0x000000ff) << 24))                                  (((x) & 0x000000ff) << 24))
384  #        define EMMS()  
 #        ifdef _PROFILING_  
385           static int64_t read_counter() { return 0; }           static int64_t read_counter() { return 0; }
 #        endif  
386    
387    /*----------------------------------------------------------------------------
388     | watcom Not given architecture - This is probably an user who tries to build
389     | XviD the wrong way.
390     *---------------------------------------------------------------------------*/
391    #    else
392    #        error You are trying to compile XviD without defining the architecture type.
393  #       endif  #       endif
394    
395    
396  /*****************************************************************************  /*****************************************************************************
397   *  Unknown compiler   *  Unknown compiler
398   ****************************************************************************/   ****************************************************************************/
# Line 432  Line 429 
429              ((a) = (((a) & 0xff) << 24)  | (((a) & 0xff00) << 8) | \              ((a) = (((a) & 0xff) << 24)  | (((a) & 0xff00) << 8) | \
430                     (((a) >> 8) & 0xff00) | (((a) >> 24) & 0xff))                     (((a) >> 8) & 0xff00) | (((a) >> 24) & 0xff))
431    
 #    define EMMS()  
   
 #    ifdef _PROFILING_  
432  #       include <time.h>  #       include <time.h>
433          static __inline int64_t read_counter(void)          static __inline int64_t read_counter(void)
434          {          {
435              return (int64_t)clock();              return (int64_t)clock();
436          }          }
 #    endif  
437    
438  #        define DECLARE_ALIGNED_MATRIX(name,sizex,sizey,type,alignment) \  #        define DECLARE_ALIGNED_MATRIX(name,sizex,sizey,type,alignment) \
439                  type name[(sizex)*(sizey)]                  type name[(sizex)*(sizey)]
# Line 448  Line 441 
441  #endif /* Compiler test */  #endif /* Compiler test */
442    
443    
444  #endif  #endif /* PORTAB_H */

Legend:
Removed from v.1.43  
changed lines
  Added in v.1.46.2.1

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