SDL_endian.h
上传用户:detong
上传日期:2022-06-22
资源大小:20675k
文件大小:6k
源码类别:

系统编程

开发平台:

Unix_Linux

  1. /*
  2.     SDL - Simple DirectMedia Layer
  3.     Copyright (C) 1997-2006 Sam Lantinga
  4.     This library is free software; you can redistribute it and/or
  5.     modify it under the terms of the GNU Lesser General Public
  6.     License as published by the Free Software Foundation; either
  7.     version 2.1 of the License, or (at your option) any later version.
  8.     This library is distributed in the hope that it will be useful,
  9.     but WITHOUT ANY WARRANTY; without even the implied warranty of
  10.     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  11.     Lesser General Public License for more details.
  12.     You should have received a copy of the GNU Lesser General Public
  13.     License along with this library; if not, write to the Free Software
  14.     Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
  15.     Sam Lantinga
  16.     slouken@libsdl.org
  17. */
  18. /* Functions for reading and writing endian-specific values */
  19. #ifndef _SDL_endian_h
  20. #define _SDL_endian_h
  21. #include "SDL_stdinc.h"
  22. /* The two types of endianness */
  23. #define SDL_LIL_ENDIAN 1234
  24. #define SDL_BIG_ENDIAN 4321
  25. #ifndef SDL_BYTEORDER /* Not defined in SDL_config.h? */
  26. #if defined(__hppa__) || 
  27.     defined(__m68k__) || defined(mc68000) || defined(_M_M68K) || 
  28.     (defined(__MIPS__) && defined(__MISPEB__)) || 
  29.     defined(__ppc__) || defined(__POWERPC__) || defined(_M_PPC) || 
  30.     defined(__sparc__)
  31. #define SDL_BYTEORDER SDL_BIG_ENDIAN
  32. #else
  33. #define SDL_BYTEORDER SDL_LIL_ENDIAN
  34. #endif
  35. #endif /* !SDL_BYTEORDER */
  36. #include "begin_code.h"
  37. /* Set up for C function definitions, even when using C++ */
  38. #ifdef __cplusplus
  39. extern "C" {
  40. #endif
  41. /* Use inline functions for compilers that support them, and static
  42.    functions for those that do not.  Because these functions become
  43.    static for compilers that do not support inline functions, this
  44.    header should only be included in files that actually use them.
  45. */
  46. #if defined(__GNUC__) && defined(__i386__) && 
  47.    !(__GNUC__ == 2 && __GNUC_MINOR__ <= 95 /* broken gcc version */)
  48. static __inline__ Uint16 SDL_Swap16(Uint16 x)
  49. {
  50. __asm__("xchgb %b0,%h0" : "=q" (x) :  "0" (x));
  51. return x;
  52. }
  53. #elif defined(__GNUC__) && defined(__x86_64__)
  54. static __inline__ Uint16 SDL_Swap16(Uint16 x)
  55. {
  56. __asm__("xchgb %b0,%h0" : "=Q" (x) :  "0" (x));
  57. return x;
  58. }
  59. #elif defined(__GNUC__) && (defined(__powerpc__) || defined(__ppc__))
  60. static __inline__ Uint16 SDL_Swap16(Uint16 x)
  61. {
  62. Uint16 result;
  63. __asm__("rlwimi %0,%2,8,16,23" : "=&r" (result) : "0" (x >> 8), "r" (x));
  64. return result;
  65. }
  66. #elif defined(__GNUC__) && (defined(__M68000__) || defined(__M68020__))
  67. static __inline__ Uint16 SDL_Swap16(Uint16 x)
  68. {
  69. __asm__("rorw #8,%0" : "=d" (x) :  "0" (x) : "cc");
  70. return x;
  71. }
  72. #else
  73. static __inline__ Uint16 SDL_Swap16(Uint16 x) {
  74. return((x<<8)|(x>>8));
  75. }
  76. #endif
  77. #if defined(__GNUC__) && defined(__i386__) && 
  78.    !(__GNUC__ == 2 && __GNUC_MINOR__ <= 95 /* broken gcc version */)
  79. static __inline__ Uint32 SDL_Swap32(Uint32 x)
  80. {
  81. __asm__("bswap %0" : "=r" (x) : "0" (x));
  82. return x;
  83. }
  84. #elif defined(__GNUC__) && defined(__x86_64__)
  85. static __inline__ Uint32 SDL_Swap32(Uint32 x)
  86. {
  87. __asm__("bswapl %0" : "=r" (x) : "0" (x));
  88. return x;
  89. }
  90. #elif defined(__GNUC__) && (defined(__powerpc__) || defined(__ppc__))
  91. static __inline__ Uint32 SDL_Swap32(Uint32 x)
  92. {
  93. Uint32 result;
  94. __asm__("rlwimi %0,%2,24,16,23" : "=&r" (result) : "0" (x>>24), "r" (x));
  95. __asm__("rlwimi %0,%2,8,8,15"   : "=&r" (result) : "0" (result),    "r" (x));
  96. __asm__("rlwimi %0,%2,24,0,7"   : "=&r" (result) : "0" (result),    "r" (x));
  97. return result;
  98. }
  99. #elif defined(__GNUC__) && (defined(__M68000__) || defined(__M68020__))
  100. static __inline__ Uint32 SDL_Swap32(Uint32 x)
  101. {
  102. __asm__("rorw #8,%0ntswap %0ntrorw #8,%0" : "=d" (x) :  "0" (x) : "cc");
  103. return x;
  104. }
  105. #else
  106. static __inline__ Uint32 SDL_Swap32(Uint32 x) {
  107. return((x<<24)|((x<<8)&0x00FF0000)|((x>>8)&0x0000FF00)|(x>>24));
  108. }
  109. #endif
  110. #ifdef SDL_HAS_64BIT_TYPE
  111. #if defined(__GNUC__) && defined(__i386__) && 
  112.    !(__GNUC__ == 2 && __GNUC_MINOR__ <= 95 /* broken gcc version */)
  113. static __inline__ Uint64 SDL_Swap64(Uint64 x)
  114. {
  115. union { 
  116. struct { Uint32 a,b; } s;
  117. Uint64 u;
  118. } v;
  119. v.u = x;
  120. __asm__("bswapl %0 ; bswapl %1 ; xchgl %0,%1" 
  121.         : "=r" (v.s.a), "=r" (v.s.b) 
  122.         : "0" (v.s.a), "1" (v.s.b)); 
  123. return v.u;
  124. }
  125. #elif defined(__GNUC__) && defined(__x86_64__)
  126. static __inline__ Uint64 SDL_Swap64(Uint64 x)
  127. {
  128. __asm__("bswapq %0" : "=r" (x) : "0" (x));
  129. return x;
  130. }
  131. #else
  132. static __inline__ Uint64 SDL_Swap64(Uint64 x)
  133. {
  134. Uint32 hi, lo;
  135. /* Separate into high and low 32-bit values and swap them */
  136. lo = (Uint32)(x&0xFFFFFFFF);
  137. x >>= 32;
  138. hi = (Uint32)(x&0xFFFFFFFF);
  139. x = SDL_Swap32(lo);
  140. x <<= 32;
  141. x |= SDL_Swap32(hi);
  142. return(x);
  143. }
  144. #endif
  145. #else
  146. /* This is mainly to keep compilers from complaining in SDL code.
  147.    If there is no real 64-bit datatype, then compilers will complain about
  148.    the fake 64-bit datatype that SDL provides when it compiles user code.
  149. */
  150. #define SDL_Swap64(X) (X)
  151. #endif /* SDL_HAS_64BIT_TYPE */
  152. /* Byteswap item from the specified endianness to the native endianness */
  153. #if SDL_BYTEORDER == SDL_LIL_ENDIAN
  154. #define SDL_SwapLE16(X) (X)
  155. #define SDL_SwapLE32(X) (X)
  156. #define SDL_SwapLE64(X) (X)
  157. #define SDL_SwapBE16(X) SDL_Swap16(X)
  158. #define SDL_SwapBE32(X) SDL_Swap32(X)
  159. #define SDL_SwapBE64(X) SDL_Swap64(X)
  160. #else
  161. #define SDL_SwapLE16(X) SDL_Swap16(X)
  162. #define SDL_SwapLE32(X) SDL_Swap32(X)
  163. #define SDL_SwapLE64(X) SDL_Swap64(X)
  164. #define SDL_SwapBE16(X) (X)
  165. #define SDL_SwapBE32(X) (X)
  166. #define SDL_SwapBE64(X) (X)
  167. #endif
  168. /* Ends C function definitions when using C++ */
  169. #ifdef __cplusplus
  170. }
  171. #endif
  172. #include "close_code.h"
  173. #endif /* _SDL_endian_h */