You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

105 lines
2.7KB

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