intreadwrite.h 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124
  1. /*
  2. * Copyright (c) 2008 Mans Rullgard <mans@mansr.com>
  3. *
  4. * This file is part of FFmpeg.
  5. *
  6. * FFmpeg is free software; you can redistribute it and/or
  7. * modify it under the terms of the GNU Lesser General Public
  8. * License as published by the Free Software Foundation; either
  9. * version 2.1 of the License, or (at your option) any later version.
  10. *
  11. * FFmpeg is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  14. * Lesser General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU Lesser General Public
  17. * License along with FFmpeg; if not, write to the Free Software
  18. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  19. */
  20. #ifndef AVUTIL_PPC_INTREADWRITE_H
  21. #define AVUTIL_PPC_INTREADWRITE_H
  22. #include <stdint.h>
  23. #include "config.h"
  24. /*
  25. * -O0 would compile the packed struct version, which is used by
  26. * default, in an overly verbose fashion, so we override it here.
  27. */
  28. #if HAVE_BIGENDIAN
  29. #define AV_RB64(p) (*(const uint64_t *)(p))
  30. #define AV_WB64(p, v) (*(uint64_t *)(p) = (v))
  31. #else
  32. #define AV_RL64(p) (*(const uint64_t *)(p))
  33. #define AV_WL64(p, v) (*(uint64_t *)(p) = (v))
  34. #endif
  35. #if HAVE_XFORM_ASM
  36. #if HAVE_BIGENDIAN
  37. #define AV_RL16 av_read_bswap16
  38. #define AV_WL16 av_write_bswap16
  39. #define AV_RL32 av_read_bswap32
  40. #define AV_WL32 av_write_bswap32
  41. #define AV_RL64 av_read_bswap64
  42. #define AV_WL64 av_write_bswap64
  43. #else
  44. #define AV_RB16 av_read_bswap16
  45. #define AV_WB16 av_write_bswap16
  46. #define AV_RB32 av_read_bswap32
  47. #define AV_WB32 av_write_bswap32
  48. #define AV_RB64 av_read_bswap64
  49. #define AV_WB64 av_write_bswap64
  50. #endif
  51. static av_always_inline uint16_t av_read_bswap16(const void *p)
  52. {
  53. uint16_t v;
  54. __asm__ ("lhbrx %0, %y1" : "=r"(v) : "Z"(*(const uint16_t*)p));
  55. return v;
  56. }
  57. static av_always_inline void av_write_bswap16(void *p, uint16_t v)
  58. {
  59. __asm__ ("sthbrx %1, %y0" : "=Z"(*(uint16_t*)p) : "r"(v));
  60. }
  61. static av_always_inline uint32_t av_read_bswap32(const void *p)
  62. {
  63. uint32_t v;
  64. __asm__ ("lwbrx %0, %y1" : "=r"(v) : "Z"(*(const uint32_t*)p));
  65. return v;
  66. }
  67. static av_always_inline void av_write_bswap32(void *p, uint32_t v)
  68. {
  69. __asm__ ("stwbrx %1, %y0" : "=Z"(*(uint32_t*)p) : "r"(v));
  70. }
  71. #if HAVE_LDBRX
  72. static av_always_inline uint64_t av_read_bswap64(const void *p)
  73. {
  74. uint64_t v;
  75. __asm__ ("ldbrx %0, %y1" : "=r"(v) : "Z"(*(const uint64_t*)p));
  76. return v;
  77. }
  78. static av_always_inline void av_write_bswap64(void *p, uint64_t v)
  79. {
  80. __asm__ ("stdbrx %1, %y0" : "=Z"(*(uint64_t*)p) : "r"(v));
  81. }
  82. #else
  83. static av_always_inline uint64_t av_read_bswap64(const void *p)
  84. {
  85. union { uint64_t v; uint32_t hl[2]; } v;
  86. __asm__ ("lwbrx %0, %y2 \n\t"
  87. "lwbrx %1, %y3 \n\t"
  88. : "=&r"(v.hl[1]), "=r"(v.hl[0])
  89. : "Z"(*(const uint32_t*)p), "Z"(*((const uint32_t*)p+1)));
  90. return v.v;
  91. }
  92. static av_always_inline void av_write_bswap64(void *p, uint64_t v)
  93. {
  94. union { uint64_t v; uint32_t hl[2]; } vv = { v };
  95. __asm__ ("stwbrx %2, %y0 \n\t"
  96. "stwbrx %3, %y1 \n\t"
  97. : "=Z"(*(uint32_t*)p), "=Z"(*((uint32_t*)p+1))
  98. : "r"(vv.hl[1]), "r"(vv.hl[0]));
  99. }
  100. #endif /* HAVE_LDBRX */
  101. #endif /* HAVE_XFORM_ASM */
  102. #endif /* AVUTIL_PPC_INTREADWRITE_H */