mixer_sse2.cpp 3.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. /**
  2. * OpenAL cross platform audio library
  3. * Copyright (C) 2014 by Timothy Arceri <[email protected]>.
  4. * This library is free software; you can redistribute it and/or
  5. * modify it under the terms of the GNU Library General Public
  6. * License as published by the Free Software Foundation; either
  7. * version 2 of the License, or (at your option) any later version.
  8. *
  9. * This library is distributed in the hope that it will be useful,
  10. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  12. * Library General Public License for more details.
  13. *
  14. * You should have received a copy of the GNU Library General Public
  15. * License along with this library; if not, write to the
  16. * Free Software Foundation, Inc.,
  17. * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
  18. * Or go to http://www.gnu.org/copyleft/lgpl.html
  19. */
  20. #include "config.h"
  21. #include <xmmintrin.h>
  22. #include <emmintrin.h>
  23. #include "alu.h"
  24. #include "defs.h"
  25. template<>
  26. const ALfloat *Resample_<LerpTag,SSE2Tag>(const InterpState*, const ALfloat *RESTRICT src,
  27. ALuint frac, ALuint increment, const al::span<float> dst)
  28. {
  29. const __m128i increment4{_mm_set1_epi32(static_cast<int>(increment*4))};
  30. const __m128 fracOne4{_mm_set1_ps(1.0f/FRACTIONONE)};
  31. const __m128i fracMask4{_mm_set1_epi32(FRACTIONMASK)};
  32. alignas(16) ALuint pos_[4], frac_[4];
  33. InitPosArrays(frac, increment, frac_, pos_, 4);
  34. __m128i frac4{_mm_setr_epi32(static_cast<int>(frac_[0]), static_cast<int>(frac_[1]),
  35. static_cast<int>(frac_[2]), static_cast<int>(frac_[3]))};
  36. __m128i pos4{_mm_setr_epi32(static_cast<int>(pos_[0]), static_cast<int>(pos_[1]),
  37. static_cast<int>(pos_[2]), static_cast<int>(pos_[3]))};
  38. auto dst_iter = dst.begin();
  39. const auto aligned_end = (dst.size()&~3u) + dst_iter;
  40. while(dst_iter != aligned_end)
  41. {
  42. const int pos0{_mm_cvtsi128_si32(_mm_shuffle_epi32(pos4, _MM_SHUFFLE(0, 0, 0, 0)))};
  43. const int pos1{_mm_cvtsi128_si32(_mm_shuffle_epi32(pos4, _MM_SHUFFLE(1, 1, 1, 1)))};
  44. const int pos2{_mm_cvtsi128_si32(_mm_shuffle_epi32(pos4, _MM_SHUFFLE(2, 2, 2, 2)))};
  45. const int pos3{_mm_cvtsi128_si32(_mm_shuffle_epi32(pos4, _MM_SHUFFLE(3, 3, 3, 3)))};
  46. const __m128 val1{_mm_setr_ps(src[pos0 ], src[pos1 ], src[pos2 ], src[pos3 ])};
  47. const __m128 val2{_mm_setr_ps(src[pos0+1], src[pos1+1], src[pos2+1], src[pos3+1])};
  48. /* val1 + (val2-val1)*mu */
  49. const __m128 r0{_mm_sub_ps(val2, val1)};
  50. const __m128 mu{_mm_mul_ps(_mm_cvtepi32_ps(frac4), fracOne4)};
  51. const __m128 out{_mm_add_ps(val1, _mm_mul_ps(mu, r0))};
  52. _mm_store_ps(dst_iter, out);
  53. dst_iter += 4;
  54. frac4 = _mm_add_epi32(frac4, increment4);
  55. pos4 = _mm_add_epi32(pos4, _mm_srli_epi32(frac4, FRACTIONBITS));
  56. frac4 = _mm_and_si128(frac4, fracMask4);
  57. }
  58. if(dst_iter != dst.end())
  59. {
  60. src += static_cast<ALuint>(_mm_cvtsi128_si32(pos4));
  61. frac = static_cast<ALuint>(_mm_cvtsi128_si32(frac4));
  62. do {
  63. *(dst_iter++) = lerp(src[0], src[1], static_cast<float>(frac) * (1.0f/FRACTIONONE));
  64. frac += increment;
  65. src += frac>>FRACTIONBITS;
  66. frac &= FRACTIONMASK;
  67. } while(dst_iter != dst.end());
  68. }
  69. return dst.begin();
  70. }