swab.h
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:5k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. #ifndef _LINUX_BYTEORDER_SWAB_H
  2. #define _LINUX_BYTEORDER_SWAB_H
  3. /*
  4.  * linux/byteorder/swab.h
  5.  * Byte-swapping, independently from CPU endianness
  6.  * swabXX[ps]?(foo)
  7.  *
  8.  * Francois-Rene Rideau <fare@tunes.org> 19971205
  9.  *    separated swab functions from cpu_to_XX,
  10.  *    to clean up support for bizarre-endian architectures.
  11.  *
  12.  * See asm-i386/byteorder.h and suches for examples of how to provide
  13.  * architecture-dependent optimized versions
  14.  *
  15.  */
  16. /* casts are necessary for constants, because we never know how for sure
  17.  * how U/UL/ULL map to __u16, __u32, __u64. At least not in a portable way.
  18.  */
  19. #define ___swab16(x) 
  20. ({ 
  21. __u16 __x = (x); 
  22. ((__u16)( 
  23. (((__u16)(__x) & (__u16)0x00ffU) << 8) | 
  24. (((__u16)(__x) & (__u16)0xff00U) >> 8) )); 
  25. })
  26. #define ___swab32(x) 
  27. ({ 
  28. __u32 __x = (x); 
  29. ((__u32)( 
  30. (((__u32)(__x) & (__u32)0x000000ffUL) << 24) | 
  31. (((__u32)(__x) & (__u32)0x0000ff00UL) <<  8) | 
  32. (((__u32)(__x) & (__u32)0x00ff0000UL) >>  8) | 
  33. (((__u32)(__x) & (__u32)0xff000000UL) >> 24) )); 
  34. })
  35. #define ___swab64(x) 
  36. ({ 
  37. __u64 __x = (x); 
  38. ((__u64)( 
  39. (__u64)(((__u64)(__x) & (__u64)0x00000000000000ffULL) << 56) | 
  40. (__u64)(((__u64)(__x) & (__u64)0x000000000000ff00ULL) << 40) | 
  41. (__u64)(((__u64)(__x) & (__u64)0x0000000000ff0000ULL) << 24) | 
  42. (__u64)(((__u64)(__x) & (__u64)0x00000000ff000000ULL) <<  8) | 
  43.         (__u64)(((__u64)(__x) & (__u64)0x000000ff00000000ULL) >>  8) | 
  44. (__u64)(((__u64)(__x) & (__u64)0x0000ff0000000000ULL) >> 24) | 
  45. (__u64)(((__u64)(__x) & (__u64)0x00ff000000000000ULL) >> 40) | 
  46. (__u64)(((__u64)(__x) & (__u64)0xff00000000000000ULL) >> 56) )); 
  47. })
  48. #define ___constant_swab16(x) 
  49. ((__u16)( 
  50. (((__u16)(x) & (__u16)0x00ffU) << 8) | 
  51. (((__u16)(x) & (__u16)0xff00U) >> 8) ))
  52. #define ___constant_swab32(x) 
  53. ((__u32)( 
  54. (((__u32)(x) & (__u32)0x000000ffUL) << 24) | 
  55. (((__u32)(x) & (__u32)0x0000ff00UL) <<  8) | 
  56. (((__u32)(x) & (__u32)0x00ff0000UL) >>  8) | 
  57. (((__u32)(x) & (__u32)0xff000000UL) >> 24) ))
  58. #define ___constant_swab64(x) 
  59. ((__u64)( 
  60. (__u64)(((__u64)(x) & (__u64)0x00000000000000ffULL) << 56) | 
  61. (__u64)(((__u64)(x) & (__u64)0x000000000000ff00ULL) << 40) | 
  62. (__u64)(((__u64)(x) & (__u64)0x0000000000ff0000ULL) << 24) | 
  63. (__u64)(((__u64)(x) & (__u64)0x00000000ff000000ULL) <<  8) | 
  64.         (__u64)(((__u64)(x) & (__u64)0x000000ff00000000ULL) >>  8) | 
  65. (__u64)(((__u64)(x) & (__u64)0x0000ff0000000000ULL) >> 24) | 
  66. (__u64)(((__u64)(x) & (__u64)0x00ff000000000000ULL) >> 40) | 
  67. (__u64)(((__u64)(x) & (__u64)0xff00000000000000ULL) >> 56) ))
  68. /*
  69.  * provide defaults when no architecture-specific optimization is detected
  70.  */
  71. #ifndef __arch__swab16
  72. #  define __arch__swab16(x) ({ __u16 __tmp = (x) ; ___swab16(__tmp); })
  73. #endif
  74. #ifndef __arch__swab32
  75. #  define __arch__swab32(x) ({ __u32 __tmp = (x) ; ___swab32(__tmp); })
  76. #endif
  77. #ifndef __arch__swab64
  78. #  define __arch__swab64(x) ({ __u64 __tmp = (x) ; ___swab64(__tmp); })
  79. #endif
  80. #ifndef __arch__swab16p
  81. #  define __arch__swab16p(x) __arch__swab16(*(x))
  82. #endif
  83. #ifndef __arch__swab32p
  84. #  define __arch__swab32p(x) __arch__swab32(*(x))
  85. #endif
  86. #ifndef __arch__swab64p
  87. #  define __arch__swab64p(x) __arch__swab64(*(x))
  88. #endif
  89. #ifndef __arch__swab16s
  90. #  define __arch__swab16s(x) do { *(x) = __arch__swab16p((x)); } while (0)
  91. #endif
  92. #ifndef __arch__swab32s
  93. #  define __arch__swab32s(x) do { *(x) = __arch__swab32p((x)); } while (0)
  94. #endif
  95. #ifndef __arch__swab64s
  96. #  define __arch__swab64s(x) do { *(x) = __arch__swab64p((x)); } while (0)
  97. #endif
  98. /*
  99.  * Allow constant folding
  100.  */
  101. #if defined(__GNUC__) && (__GNUC__ >= 2) && defined(__OPTIMIZE__)
  102. #  define __swab16(x) 
  103. (__builtin_constant_p((__u16)(x)) ? 
  104.  ___swab16((x)) : 
  105.  __fswab16((x)))
  106. #  define __swab32(x) 
  107. (__builtin_constant_p((__u32)(x)) ? 
  108.  ___swab32((x)) : 
  109.  __fswab32((x)))
  110. #  define __swab64(x) 
  111. (__builtin_constant_p((__u64)(x)) ? 
  112.  ___swab64((x)) : 
  113.  __fswab64((x)))
  114. #else
  115. #  define __swab16(x) __fswab16(x)
  116. #  define __swab32(x) __fswab32(x)
  117. #  define __swab64(x) __fswab64(x)
  118. #endif /* OPTIMIZE */
  119. static __inline__ __const__ __u16 __fswab16(__u16 x)
  120. {
  121. return __arch__swab16(x);
  122. }
  123. static __inline__ __u16 __swab16p(__u16 *x)
  124. {
  125. return __arch__swab16p(x);
  126. }
  127. static __inline__ void __swab16s(__u16 *addr)
  128. {
  129. __arch__swab16s(addr);
  130. }
  131. static __inline__ __const__ __u32 __fswab32(__u32 x)
  132. {
  133. return __arch__swab32(x);
  134. }
  135. static __inline__ __u32 __swab32p(__u32 *x)
  136. {
  137. return __arch__swab32p(x);
  138. }
  139. static __inline__ void __swab32s(__u32 *addr)
  140. {
  141. __arch__swab32s(addr);
  142. }
  143. #ifdef __BYTEORDER_HAS_U64__
  144. static __inline__ __const__ __u64 __fswab64(__u64 x)
  145. {
  146. #  ifdef __SWAB_64_THRU_32__
  147. __u32 h = x >> 32;
  148.         __u32 l = x & ((1ULL<<32)-1);
  149.         return (((__u64)__swab32(l)) << 32) | ((__u64)(__swab32(h)));
  150. #  else
  151. return __arch__swab64(x);
  152. #  endif
  153. }
  154. static __inline__ __u64 __swab64p(__u64 *x)
  155. {
  156. return __arch__swab64p(x);
  157. }
  158. static __inline__ void __swab64s(__u64 *addr)
  159. {
  160. __arch__swab64s(addr);
  161. }
  162. #endif /* __BYTEORDER_HAS_U64__ */
  163. #if defined(__KERNEL__)
  164. #define swab16 __swab16
  165. #define swab32 __swab32
  166. #define swab64 __swab64
  167. #define swab16p __swab16p
  168. #define swab32p __swab32p
  169. #define swab64p __swab64p
  170. #define swab16s __swab16s
  171. #define swab32s __swab32s
  172. #define swab64s __swab64s
  173. #endif
  174. #endif /* _LINUX_BYTEORDER_SWAB_H */