dsputil_mmx_qns.h 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  1. /*
  2. * DSP utils : QNS functions are compiled 3 times for mmx/3dnow/ssse3
  3. * Copyright (c) 2004 Michael Niedermayer
  4. *
  5. * MMX optimization by Michael Niedermayer <michaelni@gmx.at>
  6. * 3DNow! and SSSE3 optimization by Zuxy Meng <zuxy.meng@gmail.com>
  7. *
  8. * This file is part of FFmpeg.
  9. *
  10. * FFmpeg is free software; you can redistribute it and/or
  11. * modify it under the terms of the GNU Lesser General Public
  12. * License as published by the Free Software Foundation; either
  13. * version 2.1 of the License, or (at your option) any later version.
  14. *
  15. * FFmpeg is distributed in the hope that it will be useful,
  16. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  17. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  18. * Lesser General Public License for more details.
  19. *
  20. * You should have received a copy of the GNU Lesser General Public
  21. * License along with FFmpeg; if not, write to the Free Software
  22. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  23. */
  24. /* This header intentionally has no multiple inclusion guards. It is meant to
  25. * be included multiple times and generates different code depending on the
  26. * value of certain #defines. */
  27. #define MAX_ABS (512 >> (SCALE_OFFSET>0 ? SCALE_OFFSET : 0))
  28. static int DEF(try_8x8basis)(int16_t rem[64], int16_t weight[64], int16_t basis[64], int scale)
  29. {
  30. x86_reg i=0;
  31. assert(FFABS(scale) < MAX_ABS);
  32. scale<<= 16 + SCALE_OFFSET - BASIS_SHIFT + RECON_SHIFT;
  33. SET_RND(mm6);
  34. asm volatile(
  35. "pxor %%mm7, %%mm7 \n\t"
  36. "movd %4, %%mm5 \n\t"
  37. "punpcklwd %%mm5, %%mm5 \n\t"
  38. "punpcklwd %%mm5, %%mm5 \n\t"
  39. ASMALIGN(4)
  40. "1: \n\t"
  41. "movq (%1, %0), %%mm0 \n\t"
  42. "movq 8(%1, %0), %%mm1 \n\t"
  43. PMULHRW(%%mm0, %%mm1, %%mm5, %%mm6)
  44. "paddw (%2, %0), %%mm0 \n\t"
  45. "paddw 8(%2, %0), %%mm1 \n\t"
  46. "psraw $6, %%mm0 \n\t"
  47. "psraw $6, %%mm1 \n\t"
  48. "pmullw (%3, %0), %%mm0 \n\t"
  49. "pmullw 8(%3, %0), %%mm1 \n\t"
  50. "pmaddwd %%mm0, %%mm0 \n\t"
  51. "pmaddwd %%mm1, %%mm1 \n\t"
  52. "paddd %%mm1, %%mm0 \n\t"
  53. "psrld $4, %%mm0 \n\t"
  54. "paddd %%mm0, %%mm7 \n\t"
  55. "add $16, %0 \n\t"
  56. "cmp $128, %0 \n\t" //FIXME optimize & bench
  57. " jb 1b \n\t"
  58. PHADDD(%%mm7, %%mm6)
  59. "psrld $2, %%mm7 \n\t"
  60. "movd %%mm7, %0 \n\t"
  61. : "+r" (i)
  62. : "r"(basis), "r"(rem), "r"(weight), "g"(scale)
  63. );
  64. return i;
  65. }
  66. static void DEF(add_8x8basis)(int16_t rem[64], int16_t basis[64], int scale)
  67. {
  68. x86_reg i=0;
  69. if(FFABS(scale) < MAX_ABS){
  70. scale<<= 16 + SCALE_OFFSET - BASIS_SHIFT + RECON_SHIFT;
  71. SET_RND(mm6);
  72. asm volatile(
  73. "movd %3, %%mm5 \n\t"
  74. "punpcklwd %%mm5, %%mm5 \n\t"
  75. "punpcklwd %%mm5, %%mm5 \n\t"
  76. ASMALIGN(4)
  77. "1: \n\t"
  78. "movq (%1, %0), %%mm0 \n\t"
  79. "movq 8(%1, %0), %%mm1 \n\t"
  80. PMULHRW(%%mm0, %%mm1, %%mm5, %%mm6)
  81. "paddw (%2, %0), %%mm0 \n\t"
  82. "paddw 8(%2, %0), %%mm1 \n\t"
  83. "movq %%mm0, (%2, %0) \n\t"
  84. "movq %%mm1, 8(%2, %0) \n\t"
  85. "add $16, %0 \n\t"
  86. "cmp $128, %0 \n\t" // FIXME optimize & bench
  87. " jb 1b \n\t"
  88. : "+r" (i)
  89. : "r"(basis), "r"(rem), "g"(scale)
  90. );
  91. }else{
  92. for(i=0; i<8*8; i++){
  93. rem[i] += (basis[i]*scale + (1<<(BASIS_SHIFT - RECON_SHIFT-1)))>>(BASIS_SHIFT - RECON_SHIFT);
  94. }
  95. }
  96. }