Coverage Report

Created: 2025-12-10 06:12

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/speex/libspeex/vq_sse.h
Line
Count
Source
1
/* Copyright (C) 2004 Jean-Marc Valin */
2
/**
3
   @file vq_sse.h
4
   @brief SSE-optimized vq routine
5
*/
6
/*
7
   Redistribution and use in source and binary forms, with or without
8
   modification, are permitted provided that the following conditions
9
   are met:
10
11
   - Redistributions of source code must retain the above copyright
12
   notice, this list of conditions and the following disclaimer.
13
14
   - Redistributions in binary form must reproduce the above copyright
15
   notice, this list of conditions and the following disclaimer in the
16
   documentation and/or other materials provided with the distribution.
17
18
   - Neither the name of the Xiph.org Foundation nor the names of its
19
   contributors may be used to endorse or promote products derived from
20
   this software without specific prior written permission.
21
22
   THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
23
   ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
24
   LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
25
   A PARTICULAR PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR
26
   CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
27
   EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
28
   PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
29
   PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
30
   LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
31
   NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
32
   SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
33
*/
34
35
#define OVERRIDE_VQ_NBEST
36
void vq_nbest(spx_word16_t *_in, const __m128 *codebook, int len, int entries, __m128 *E, int N, int *nbest, spx_word32_t *best_dist, char *stack)
37
254k
{
38
254k
   int i,j,k,used;
39
254k
   VARDECL(float *dist);
40
254k
   VARDECL(__m128 *in);
41
254k
   __m128 half;
42
254k
   used = 0;
43
254k
   ALLOC(dist, entries, float);
44
254k
   half = _mm_set_ps1(.5f);
45
254k
   ALLOC(in, len, __m128);
46
2.02M
   for (i=0;i<len;i++)
47
1.77M
      in[i] = _mm_set_ps1(_in[i]);
48
6.64M
   for (i=0;i<entries>>2;i++)
49
6.38M
   {
50
6.38M
      __m128 d = _mm_mul_ps(E[i], half);
51
44.1M
      for (j=0;j<len;j++)
52
37.7M
         d = _mm_sub_ps(d, _mm_mul_ps(in[j], *codebook++));
53
6.38M
      _mm_storeu_ps(dist+4*i, d);
54
6.38M
   }
55
25.8M
   for (i=0;i<entries;i++)
56
25.5M
   {
57
25.5M
      if (i<N || dist[i]<best_dist[N-1])
58
4.42M
      {
59
15.0M
         for (k=N-1; (k >= 1) && (k > used || dist[i] < best_dist[k-1]); k--)
60
10.5M
         {
61
10.5M
            best_dist[k]=best_dist[k-1];
62
10.5M
            nbest[k] = nbest[k-1];
63
10.5M
         }
64
4.42M
         best_dist[k]=dist[i];
65
4.42M
         nbest[k]=i;
66
4.42M
         used++;
67
4.42M
      }
68
25.5M
   }
69
254k
}
70
71
72
73
74
#define OVERRIDE_VQ_NBEST_SIGN
75
void vq_nbest_sign(spx_word16_t *_in, const __m128 *codebook, int len, int entries, __m128 *E, int N, int *nbest, spx_word32_t *best_dist, char *stack)
76
40.8k
{
77
40.8k
   int i,j,k,used;
78
40.8k
   VARDECL(float *dist);
79
40.8k
   VARDECL(__m128 *in);
80
81
40.8k
   used = 0;
82
40.8k
   ALLOC(dist, entries, float);
83
84
40.8k
   ALLOC(in, len, __m128);
85
367k
   for (i=0;i<len;i++)
86
326k
      in[i] = _mm_set_ps1(_in[i]);
87
1.34M
   for (i=0;i<entries>>2;i++)
88
1.30M
   {
89
1.30M
      __m128 d = _mm_setzero_ps();
90
11.7M
      for (j=0;j<len;j++)
91
10.4M
         d = _mm_add_ps(d, _mm_mul_ps(in[j], *codebook++));
92
1.30M
      _mm_storeu_ps(dist+4*i, d);
93
1.30M
   }
94
5.26M
   for (i=0;i<entries;i++)
95
5.22M
   {
96
5.22M
      int sign;
97
5.22M
      if (dist[i]>0)
98
2.64M
      {
99
2.64M
         sign=0;
100
2.64M
         dist[i]=-dist[i];
101
2.64M
      } else
102
2.57M
      {
103
2.57M
         sign=1;
104
2.57M
      }
105
5.22M
      dist[i] += .5f*((float*)E)[i];
106
5.22M
      if (i<N || dist[i]<best_dist[N-1])
107
672k
      {
108
2.07M
         for (k=N-1; (k >= 1) && (k > used || dist[i] < best_dist[k-1]); k--)
109
1.40M
         {
110
1.40M
            best_dist[k]=best_dist[k-1];
111
1.40M
            nbest[k] = nbest[k-1];
112
1.40M
         }
113
672k
         best_dist[k]=dist[i];
114
672k
         nbest[k]=i;
115
672k
         used++;
116
672k
         if (sign)
117
317k
            nbest[k]+=entries;
118
672k
      }
119
5.22M
   }
120
40.8k
}