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

嵌入式Linux

开发平台:

Unix_Linux

  1. #ifndef _I386_BYTEORDER_H
  2. #define _I386_BYTEORDER_H
  3. #include <asm/types.h>
  4. #ifdef __GNUC__
  5. /* For avoiding bswap on i386 */
  6. #ifdef __KERNEL__
  7. #include <linux/config.h>
  8. #endif
  9. static __inline__ __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,%h0nt" /* swap lower bytes */
  15. "rorl $16,%0nt" /* swap words */
  16. "xchgb %b0,%h0" /* swap higher bytes */
  17. :"=q" (x)
  18. : "0" (x));
  19. #endif
  20. return x;
  21. }
  22. static __inline__ __const__ __u16 ___arch__swab16(__u16 x)
  23. {
  24. __asm__("xchgb %b0,%h0" /* swap bytes */ 
  25. : "=q" (x) 
  26. :  "0" (x)); 
  27. return x;
  28. }
  29. #define __arch__swab32(x) ___arch__swab32(x)
  30. #define __arch__swab16(x) ___arch__swab16(x)
  31. #if !defined(__STRICT_ANSI__) || defined(__KERNEL__)
  32. #  define __BYTEORDER_HAS_U64__
  33. #  define __SWAB_64_THRU_32__
  34. #endif
  35. #endif /* __GNUC__ */
  36. #include <linux/byteorder/little_endian.h>
  37. #endif /* _I386_BYTEORDER_H */