byteorder_32.h 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. #ifndef _I386_BYTEORDER_H
  2. #define _I386_BYTEORDER_H
  3. #include <asm/types.h>
  4. #include <linux/compiler.h>
  5. #ifdef __GNUC__
  6. /* For avoiding bswap on i386 */
  7. #ifdef __KERNEL__
  8. #endif
  9. static __inline__ __attribute_const__ __u32 ___arch__swab32(__u32 x)
  10. {
  11. #ifdef CONFIG_X86_BSWAP
  12. __asm__("bswap %0" : "=r" (x) : "0" (x));
  13. #else
  14. __asm__("xchgb %b0,%h0\n\t" /* swap lower bytes */
  15. "rorl $16,%0\n\t" /* swap words */
  16. "xchgb %b0,%h0" /* swap higher bytes */
  17. :"=q" (x)
  18. : "0" (x));
  19. #endif
  20. return x;
  21. }
  22. static __inline__ __attribute_const__ __u64 ___arch__swab64(__u64 val)
  23. {
  24. union {
  25. struct { __u32 a,b; } s;
  26. __u64 u;
  27. } v;
  28. v.u = val;
  29. #ifdef CONFIG_X86_BSWAP
  30. asm("bswapl %0 ; bswapl %1 ; xchgl %0,%1"
  31. : "=r" (v.s.a), "=r" (v.s.b)
  32. : "0" (v.s.a), "1" (v.s.b));
  33. #else
  34. v.s.a = ___arch__swab32(v.s.a);
  35. v.s.b = ___arch__swab32(v.s.b);
  36. asm("xchgl %0,%1" : "=r" (v.s.a), "=r" (v.s.b) : "0" (v.s.a), "1" (v.s.b));
  37. #endif
  38. return v.u;
  39. }
  40. /* Do not define swab16. Gcc is smart enough to recognize "C" version and
  41. convert it into rotation or exhange. */
  42. #define __arch__swab64(x) ___arch__swab64(x)
  43. #define __arch__swab32(x) ___arch__swab32(x)
  44. #define __BYTEORDER_HAS_U64__
  45. #endif /* __GNUC__ */
  46. #include <linux/byteorder/little_endian.h>
  47. #endif /* _I386_BYTEORDER_H */