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.

87 lines
2.6KB

  1. /*
  2. * simple math operations
  3. * Copyright (c) 2006 Michael Niedermayer <michaelni@gmx.at> et al
  4. *
  5. * This file is part of FFmpeg.
  6. *
  7. * FFmpeg is free software; you can redistribute it and/or
  8. * modify it under the terms of the GNU Lesser General Public
  9. * License as published by the Free Software Foundation; either
  10. * version 2.1 of the License, or (at your option) any later version.
  11. *
  12. * FFmpeg is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  15. * Lesser General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU Lesser General Public
  18. * License along with FFmpeg; if not, write to the Free Software
  19. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  20. */
  21. #ifndef AVCODEC_ARMV4L_MATHOPS_H
  22. #define AVCODEC_ARMV4L_MATHOPS_H
  23. #include <stdint.h>
  24. #include "libavutil/common.h"
  25. #ifdef FRAC_BITS
  26. # define MULL(a, b) \
  27. ({ int lo, hi;\
  28. __asm__("smull %0, %1, %2, %3 \n\t"\
  29. "mov %0, %0, lsr %4\n\t"\
  30. "add %1, %0, %1, lsl %5\n\t"\
  31. : "=&r"(lo), "=&r"(hi)\
  32. : "r"(b), "r"(a), "i"(FRAC_BITS), "i"(32-FRAC_BITS));\
  33. hi; })
  34. #endif
  35. #ifdef HAVE_ARMV6
  36. static inline av_const int MULH(int a, int b)
  37. {
  38. int r;
  39. __asm__ ("smmul %0, %1, %2" : "=r"(r) : "r"(a), "r"(b));
  40. return r;
  41. }
  42. #define MULH MULH
  43. #else
  44. #define MULH(a, b) \
  45. ({ int lo, hi;\
  46. __asm__ ("smull %0, %1, %2, %3" : "=&r"(lo), "=&r"(hi) : "r"(b), "r"(a));\
  47. hi; })
  48. #endif
  49. static inline av_const int64_t MUL64(int a, int b)
  50. {
  51. union { uint64_t x; unsigned hl[2]; } x;
  52. __asm__ ("smull %0, %1, %2, %3"
  53. : "=r"(x.hl[0]), "=r"(x.hl[1]) : "r"(a), "r"(b));
  54. return x.x;
  55. }
  56. #define MUL64 MUL64
  57. static inline av_const int64_t MAC64(int64_t d, int a, int b)
  58. {
  59. union { uint64_t x; unsigned hl[2]; } x = { d };
  60. __asm__ ("smlal %0, %1, %2, %3"
  61. : "+r"(x.hl[0]), "+r"(x.hl[1]) : "r"(a), "r"(b));
  62. return x.x;
  63. }
  64. #define MAC64(d, a, b) ((d) = MAC64(d, a, b))
  65. #define MLS64(d, a, b) MAC64(d, -(a), b)
  66. #if defined(HAVE_ARMV5TE)
  67. /* signed 16x16 -> 32 multiply add accumulate */
  68. # define MAC16(rt, ra, rb) \
  69. __asm__ ("smlabb %0, %2, %3, %0" : "=r" (rt) : "0" (rt), "r" (ra), "r" (rb));
  70. /* signed 16x16 -> 32 multiply */
  71. # define MUL16(ra, rb) \
  72. ({ int __rt; \
  73. __asm__ ("smulbb %0, %1, %2" : "=r" (__rt) : "r" (ra), "r" (rb)); \
  74. __rt; })
  75. #endif
  76. #endif /* AVCODEC_ARMV4L_MATHOPS_H */