byteorder.h
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:2k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. #ifndef _PPC64_BYTEORDER_H
  2. #define _PPC64_BYTEORDER_H
  3. /*
  4.  * This program is free software; you can redistribute it and/or
  5.  * modify it under the terms of the GNU General Public License
  6.  * as published by the Free Software Foundation; either version
  7.  * 2 of the License, or (at your option) any later version.
  8.  */
  9. #include <asm/types.h>
  10. #ifdef __GNUC__
  11. static __inline__ __u16 ld_le16(const volatile __u16 *addr)
  12. {
  13. __u16 val;
  14. __asm__ __volatile__ ("lhbrx %0,0,%1" : "=r" (val) : "r" (addr), "m" (*addr));
  15. return val;
  16. }
  17. static __inline__ void st_le16(volatile __u16 *addr, const __u16 val)
  18. {
  19. __asm__ __volatile__ ("sthbrx %1,0,%2" : "=m" (*addr) : "r" (val), "r" (addr));
  20. }
  21. static __inline__ __u32 ld_le32(const volatile __u32 *addr)
  22. {
  23. __u32 val;
  24. __asm__ __volatile__ ("lwbrx %0,0,%1" : "=r" (val) : "r" (addr), "m" (*addr));
  25. return val;
  26. }
  27. static __inline__ void st_le32(volatile __u32 *addr, const __u32 val)
  28. {
  29. __asm__ __volatile__ ("stwbrx %1,0,%2" : "=m" (*addr) : "r" (val), "r" (addr));
  30. }
  31. #if 0
  32. static __inline__ __const__ __u16 ___arch__swab16(__u16 value)
  33. {
  34. __u16 result;
  35. __asm__("rlwimi %0,%1,8,16,23"
  36.     : "=r" (result)
  37.     : "r" (value), "0" (value >> 8));
  38. return result;
  39. }
  40. static __inline__ __const__ __u32 ___arch__swab32(__u32 value)
  41. {
  42. __u32 result;
  43. __asm__("rlwimi %0,%1,24,16,23nt"
  44.     "rlwimi %0,%1,8,8,15nt"
  45.     "rlwimi %0,%1,24,0,7"
  46.     : "=r" (result)
  47.     : "r" (value), "0" (value >> 24));
  48. return result;
  49. }
  50. static __inline__ __const__ __u64 ___arch__swab64(__u64 value)
  51. {
  52. __u64 result;
  53. #error implement me
  54. }
  55. #define __arch__swab16(x) ___arch__swab16(x)
  56. #define __arch__swab32(x) ___arch__swab32(x)
  57. #define __arch__swab64(x) ___arch__swab64(x)
  58. #endif
  59. /* The same, but returns converted value from the location pointer by addr. */
  60. #define __arch__swab16p(addr) ld_le16(addr)
  61. #define __arch__swab32p(addr) ld_le32(addr)
  62. /* The same, but do the conversion in situ, ie. put the value back to addr. */
  63. #define __arch__swab16s(addr) st_le16(addr,*addr)
  64. #define __arch__swab32s(addr) st_le32(addr,*addr)
  65. #endif /* __GNUC__ */
  66. /* MIKEC: What does __BYTEORDER_HAS_U64__ mean? */
  67. #ifndef __STRICT_ANSI__
  68. #define __BYTEORDER_HAS_U64__
  69. #endif
  70. #include <linux/byteorder/big_endian.h>
  71. #endif /* _PPC64_BYTEORDER_H */