intreadwrite.h 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  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. #if HAVE_XFORM_ASM
  25. #define AV_RL16 AV_RL16
  26. static av_always_inline uint16_t AV_RL16(const void *p)
  27. {
  28. uint16_t v;
  29. __asm__ ("lhbrx %0, %y1" : "=r"(v) : "Z"(*(const uint16_t*)p));
  30. return v;
  31. }
  32. #define AV_WL16 AV_WL16
  33. static av_always_inline void AV_WL16(void *p, uint16_t v)
  34. {
  35. __asm__ ("sthbrx %1, %y0" : "=Z"(*(uint16_t*)p) : "r"(v));
  36. }
  37. #define AV_RL32 AV_RL32
  38. static av_always_inline uint32_t AV_RL32(const void *p)
  39. {
  40. uint32_t v;
  41. __asm__ ("lwbrx %0, %y1" : "=r"(v) : "Z"(*(const uint32_t*)p));
  42. return v;
  43. }
  44. #define AV_WL32 AV_WL32
  45. static av_always_inline void AV_WL32(void *p, uint32_t v)
  46. {
  47. __asm__ ("stwbrx %1, %y0" : "=Z"(*(uint32_t*)p) : "r"(v));
  48. }
  49. #if HAVE_LDBRX
  50. #define AV_RL64 AV_RL64
  51. static av_always_inline uint64_t AV_RL64(const void *p)
  52. {
  53. uint64_t v;
  54. __asm__ ("ldbrx %0, %y1" : "=r"(v) : "Z"(*(const uint64_t*)p));
  55. return v;
  56. }
  57. #define AV_WL64 AV_WL64
  58. static av_always_inline void AV_WL64(void *p, uint64_t v)
  59. {
  60. __asm__ ("stdbrx %1, %y0" : "=Z"(*(uint64_t*)p) : "r"(v));
  61. }
  62. #else
  63. #define AV_RL64 AV_RL64
  64. static av_always_inline uint64_t AV_RL64(const void *p)
  65. {
  66. union { uint64_t v; uint32_t hl[2]; } v;
  67. __asm__ ("lwbrx %0, %y2 \n\t"
  68. "lwbrx %1, %y3 \n\t"
  69. : "=&r"(v.hl[1]), "=r"(v.hl[0])
  70. : "Z"(*(const uint32_t*)p), "Z"(*((const uint32_t*)p+1)));
  71. return v.v;
  72. }
  73. #define AV_WL64 AV_WL64
  74. static av_always_inline void AV_WL64(void *p, uint64_t v)
  75. {
  76. union { uint64_t v; uint32_t hl[2]; } vv = { v };
  77. __asm__ ("stwbrx %2, %y0 \n\t"
  78. "stwbrx %3, %y1 \n\t"
  79. : "=Z"(*(uint32_t*)p), "=Z"(*((uint32_t*)p+1))
  80. : "r"(vv.hl[1]), "r"(vv.hl[0]));
  81. }
  82. #endif /* HAVE_LDBRX */
  83. #endif /* HAVE_XFORM_ASM */
  84. /*
  85. * GCC fails miserably on the packed struct version which is used by
  86. * default, so we override it here.
  87. */
  88. #define AV_RB64(p) (*(const uint64_t *)(p))
  89. #define AV_WB64(p, v) (*(uint64_t *)(p) = (v))
  90. #endif /* AVUTIL_PPC_INTREADWRITE_H */