flacdsp_mmx.c 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139
  1. /*
  2. * MMX optimized FLAC DSP utils
  3. * Copyright (c) 2007 Loren Merritt
  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. #include "libavutil/x86_cpu.h"
  22. #include "dsputil_mmx.h"
  23. static void apply_welch_window_sse2(const int32_t *data, int len, double *w_data)
  24. {
  25. double c = 2.0 / (len-1.0);
  26. int n2 = len>>1;
  27. x86_reg i = -n2*sizeof(int32_t);
  28. x86_reg j = n2*sizeof(int32_t);
  29. __asm__ volatile(
  30. "movsd %0, %%xmm7 \n\t"
  31. "movapd "MANGLE(ff_pd_1)", %%xmm6 \n\t"
  32. "movapd "MANGLE(ff_pd_2)", %%xmm5 \n\t"
  33. "movlhps %%xmm7, %%xmm7 \n\t"
  34. "subpd %%xmm5, %%xmm7 \n\t"
  35. "addsd %%xmm6, %%xmm7 \n\t"
  36. ::"m"(c)
  37. );
  38. #define WELCH(MOVPD, offset)\
  39. __asm__ volatile(\
  40. "1: \n\t"\
  41. "movapd %%xmm7, %%xmm1 \n\t"\
  42. "mulpd %%xmm1, %%xmm1 \n\t"\
  43. "movapd %%xmm6, %%xmm0 \n\t"\
  44. "subpd %%xmm1, %%xmm0 \n\t"\
  45. "pshufd $0x4e, %%xmm0, %%xmm1 \n\t"\
  46. "cvtpi2pd (%3,%0), %%xmm2 \n\t"\
  47. "cvtpi2pd "#offset"*4(%3,%1), %%xmm3 \n\t"\
  48. "mulpd %%xmm0, %%xmm2 \n\t"\
  49. "mulpd %%xmm1, %%xmm3 \n\t"\
  50. "movapd %%xmm2, (%2,%0,2) \n\t"\
  51. MOVPD" %%xmm3, "#offset"*8(%2,%1,2) \n\t"\
  52. "subpd %%xmm5, %%xmm7 \n\t"\
  53. "sub $8, %1 \n\t"\
  54. "add $8, %0 \n\t"\
  55. "jl 1b \n\t"\
  56. :"+&r"(i), "+&r"(j)\
  57. :"r"(w_data+n2), "r"(data+n2)\
  58. );
  59. if(len&1)
  60. WELCH("movupd", -1)
  61. else
  62. WELCH("movapd", -2)
  63. #undef WELCH
  64. }
  65. void ff_flac_compute_autocorr_sse2(const int32_t *data, int len, int lag,
  66. double *autoc)
  67. {
  68. double tmp[len + lag + 2];
  69. double *data1 = tmp + lag;
  70. int j;
  71. if((x86_reg)data1 & 15)
  72. data1++;
  73. apply_welch_window_sse2(data, len, data1);
  74. for(j=0; j<lag; j++)
  75. data1[j-lag]= 0.0;
  76. data1[len] = 0.0;
  77. for(j=0; j<lag; j+=2){
  78. x86_reg i = -len*sizeof(double);
  79. if(j == lag-2) {
  80. __asm__ volatile(
  81. "movsd "MANGLE(ff_pd_1)", %%xmm0 \n\t"
  82. "movsd "MANGLE(ff_pd_1)", %%xmm1 \n\t"
  83. "movsd "MANGLE(ff_pd_1)", %%xmm2 \n\t"
  84. "1: \n\t"
  85. "movapd (%4,%0), %%xmm3 \n\t"
  86. "movupd -8(%5,%0), %%xmm4 \n\t"
  87. "movapd (%5,%0), %%xmm5 \n\t"
  88. "mulpd %%xmm3, %%xmm4 \n\t"
  89. "mulpd %%xmm3, %%xmm5 \n\t"
  90. "mulpd -16(%5,%0), %%xmm3 \n\t"
  91. "addpd %%xmm4, %%xmm1 \n\t"
  92. "addpd %%xmm5, %%xmm0 \n\t"
  93. "addpd %%xmm3, %%xmm2 \n\t"
  94. "add $16, %0 \n\t"
  95. "jl 1b \n\t"
  96. "movhlps %%xmm0, %%xmm3 \n\t"
  97. "movhlps %%xmm1, %%xmm4 \n\t"
  98. "movhlps %%xmm2, %%xmm5 \n\t"
  99. "addsd %%xmm3, %%xmm0 \n\t"
  100. "addsd %%xmm4, %%xmm1 \n\t"
  101. "addsd %%xmm5, %%xmm2 \n\t"
  102. "movsd %%xmm0, %1 \n\t"
  103. "movsd %%xmm1, %2 \n\t"
  104. "movsd %%xmm2, %3 \n\t"
  105. :"+&r"(i), "=m"(autoc[j]), "=m"(autoc[j+1]), "=m"(autoc[j+2])
  106. :"r"(data1+len), "r"(data1+len-j)
  107. );
  108. } else {
  109. __asm__ volatile(
  110. "movsd "MANGLE(ff_pd_1)", %%xmm0 \n\t"
  111. "movsd "MANGLE(ff_pd_1)", %%xmm1 \n\t"
  112. "1: \n\t"
  113. "movapd (%3,%0), %%xmm3 \n\t"
  114. "movupd -8(%4,%0), %%xmm4 \n\t"
  115. "mulpd %%xmm3, %%xmm4 \n\t"
  116. "mulpd (%4,%0), %%xmm3 \n\t"
  117. "addpd %%xmm4, %%xmm1 \n\t"
  118. "addpd %%xmm3, %%xmm0 \n\t"
  119. "add $16, %0 \n\t"
  120. "jl 1b \n\t"
  121. "movhlps %%xmm0, %%xmm3 \n\t"
  122. "movhlps %%xmm1, %%xmm4 \n\t"
  123. "addsd %%xmm3, %%xmm0 \n\t"
  124. "addsd %%xmm4, %%xmm1 \n\t"
  125. "movsd %%xmm0, %1 \n\t"
  126. "movsd %%xmm1, %2 \n\t"
  127. :"+&r"(i), "=m"(autoc[j]), "=m"(autoc[j+1])
  128. :"r"(data1+len), "r"(data1+len-j)
  129. );
  130. }
  131. }
  132. }