You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

97 lines
2.0KB

  1. /**
  2. * @file bswap.h
  3. * byte swap.
  4. */
  5. #ifndef __BSWAP_H__
  6. #define __BSWAP_H__
  7. #ifdef HAVE_BYTESWAP_H
  8. #include <byteswap.h>
  9. #else
  10. #ifdef ARCH_X86
  11. inline static unsigned short ByteSwap16(unsigned short x)
  12. {
  13. __asm("xchgb %b0,%h0" :
  14. "=q" (x) :
  15. "0" (x));
  16. return x;
  17. }
  18. #define bswap_16(x) ByteSwap16(x)
  19. inline static unsigned int ByteSwap32(unsigned int x)
  20. {
  21. #if __CPU__ > 386
  22. __asm("bswap %0":
  23. "=r" (x) :
  24. #else
  25. __asm("xchgb %b0,%h0\n"
  26. " rorl $16,%0\n"
  27. " xchgb %b0,%h0":
  28. "=q" (x) :
  29. #endif
  30. "0" (x));
  31. return x;
  32. }
  33. #define bswap_32(x) ByteSwap32(x)
  34. inline static unsigned long long int ByteSwap64(unsigned long long int x)
  35. {
  36. register union { __extension__ uint64_t __ll;
  37. uint32_t __l[2]; } __x;
  38. asm("xchgl %0,%1":
  39. "=r"(__x.__l[0]),"=r"(__x.__l[1]):
  40. "0"(bswap_32((unsigned long)x)),"1"(bswap_32((unsigned long)(x>>32))));
  41. return __x.__ll;
  42. }
  43. #define bswap_64(x) ByteSwap64(x)
  44. #else
  45. #define bswap_16(x) (((x) & 0x00ff) << 8 | ((x) & 0xff00) >> 8)
  46. // code from bits/byteswap.h (C) 1997, 1998 Free Software Foundation, Inc.
  47. #define bswap_32(x) \
  48. ((((x) & 0xff000000) >> 24) | (((x) & 0x00ff0000) >> 8) | \
  49. (((x) & 0x0000ff00) << 8) | (((x) & 0x000000ff) << 24))
  50. inline static uint64_t ByteSwap64(uint64_t x)
  51. {
  52. union {
  53. uint64_t ll;
  54. uint32_t l[2];
  55. } w, r;
  56. w.ll = x;
  57. r.l[0] = bswap_32 (w.l[1]);
  58. r.l[1] = bswap_32 (w.l[0]);
  59. return r.ll;
  60. }
  61. #define bswap_64(x) ByteSwap64(x)
  62. #endif /* !ARCH_X86 */
  63. #endif /* !HAVE_BYTESWAP_H */
  64. // be2me ... BigEndian to MachineEndian
  65. // le2me ... LittleEndian to MachineEndian
  66. #ifdef WORDS_BIGENDIAN
  67. #define be2me_16(x) (x)
  68. #define be2me_32(x) (x)
  69. #define be2me_64(x) (x)
  70. #define le2me_16(x) bswap_16(x)
  71. #define le2me_32(x) bswap_32(x)
  72. #define le2me_64(x) bswap_64(x)
  73. #else
  74. #define be2me_16(x) bswap_16(x)
  75. #define be2me_32(x) bswap_32(x)
  76. #define be2me_64(x) bswap_64(x)
  77. #define le2me_16(x) (x)
  78. #define le2me_32(x) (x)
  79. #define le2me_64(x) (x)
  80. #endif
  81. #endif /* __BSWAP_H__ */