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.

81 lines
2.2KB

  1. /*
  2. * Copyright (c) 2009 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 AVCODEC_MIPS_MATHOPS_H
  21. #define AVCODEC_MIPS_MATHOPS_H
  22. #include <stdint.h>
  23. #include "config.h"
  24. #include "libavutil/common.h"
  25. #if HAVE_INLINE_ASM
  26. #if HAVE_LOONGSON
  27. static inline av_const int64_t MAC64(int64_t d, int a, int b)
  28. {
  29. int64_t m;
  30. __asm__ ("dmult.g %1, %2, %3 \n\t"
  31. "daddu %0, %0, %1 \n\t"
  32. : "+r"(d), "=&r"(m) : "r"(a), "r"(b));
  33. return d;
  34. }
  35. #define MAC64(d, a, b) ((d) = MAC64(d, a, b))
  36. static inline av_const int64_t MLS64(int64_t d, int a, int b)
  37. {
  38. int64_t m;
  39. __asm__ ("dmult.g %1, %2, %3 \n\t"
  40. "dsubu %0, %0, %1 \n\t"
  41. : "+r"(d), "=&r"(m) : "r"(a), "r"(b));
  42. return d;
  43. }
  44. #define MLS64(d, a, b) ((d) = MLS64(d, a, b))
  45. #elif ARCH_MIPS64
  46. static inline av_const int64_t MAC64(int64_t d, int a, int b)
  47. {
  48. int64_t m;
  49. __asm__ ("dmult %2, %3 \n\t"
  50. "mflo %1 \n\t"
  51. "daddu %0, %0, %1 \n\t"
  52. : "+r"(d), "=&r"(m) : "r"(a), "r"(b));
  53. return d;
  54. }
  55. #define MAC64(d, a, b) ((d) = MAC64(d, a, b))
  56. static inline av_const int64_t MLS64(int64_t d, int a, int b)
  57. {
  58. int64_t m;
  59. __asm__ ("dmult %2, %3 \n\t"
  60. "mflo %1 \n\t"
  61. "dsubu %0, %0, %1 \n\t"
  62. : "+r"(d), "=&r"(m) : "r"(a), "r"(b));
  63. return d;
  64. }
  65. #define MLS64(d, a, b) ((d) = MLS64(d, a, b))
  66. #endif
  67. #endif /* HAVE_INLINE_ASM */
  68. #endif /* AVCODEC_MIPS_MATHOPS_H */