-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathStageProc4Neon.hpp
174 lines (112 loc) · 4.32 KB
/
StageProc4Neon.hpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
/*****************************************************************************
StageProc4Neon.hpp
Author: Laurent de Soras, 2016
--- Legal stuff ---
This program is free software. It comes without any warranty, to
the extent permitted by applicable law. You can redistribute it
and/or modify it under the terms of the Do What The Fuck You Want
To Public License, Version 2, as published by Sam Hocevar. See
http://sam.zoy.org/wtfpl/COPYING for more details.
*Tab=3***********************************************************************/
#if ! defined (hiir_StageProc4Neon_CODEHEADER_INCLUDED)
#define hiir_StageProc4Neon_CODEHEADER_INCLUDED
/*\\\ INCLUDE FILES \\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\*/
#include "hiir/StageDataNeonV4.h"
#include "hiir/fnc_neon.h"
namespace hiir
{
/*\\\ PUBLIC \\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\*/
template <>
inline void StageProc4Neon <1>::process_sample_pos (const int nbr_coefs, float32x4_t &spl_0, float32x4_t &spl_1, StageDataNeonV4 *stage_arr)
{
const int cnt = nbr_coefs + 2 - 1;
const float32x4_t tmp_0 = vmlaq_f32 (
load4a (stage_arr [cnt - 2]._mem ),
spl_0 - load4a (stage_arr [cnt ]._mem ),
load4a (stage_arr [cnt ]._coef)
);
storea (stage_arr [cnt - 2]._mem, spl_0);
storea (stage_arr [cnt - 1]._mem, spl_1);
storea (stage_arr [cnt ]._mem, tmp_0);
spl_0 = tmp_0;
}
template <>
inline void StageProc4Neon <0>::process_sample_pos (const int nbr_coefs, float32x4_t &spl_0, float32x4_t &spl_1, StageDataNeonV4 *stage_arr)
{
const int cnt = nbr_coefs + 2;
storea (stage_arr [cnt - 2]._mem, spl_0);
storea (stage_arr [cnt - 1]._mem, spl_1);
}
template <int REMAINING>
void StageProc4Neon <REMAINING>::process_sample_pos (const int nbr_coefs, float32x4_t &spl_0, float32x4_t &spl_1, StageDataNeonV4 *stage_arr)
{
const int cnt = nbr_coefs + 2 - REMAINING;
const float32x4_t tmp_0 = vmlaq_f32 (
load4a (stage_arr [cnt - 2]._mem ),
spl_0 - load4a (stage_arr [cnt ]._mem ),
load4a (stage_arr [cnt ]._coef)
);
const float32x4_t tmp_1 = vmlaq_f32 (
load4a (stage_arr [cnt - 1]._mem ),
spl_1 - load4a (stage_arr [cnt + 1]._mem ),
load4a (stage_arr [cnt + 1]._coef)
);
storea (stage_arr [cnt - 2]._mem, spl_0);
storea (stage_arr [cnt - 1]._mem, spl_1);
spl_0 = tmp_0;
spl_1 = tmp_1;
StageProc4Neon <REMAINING - 2>::process_sample_pos (
nbr_coefs,
spl_0,
spl_1,
stage_arr
);
}
template <>
inline void StageProc4Neon <1>::process_sample_neg (const int nbr_coefs, float32x4_t &spl_0, float32x4_t &spl_1, StageDataNeonV4 *stage_arr)
{
const int cnt = nbr_coefs + 2 - 1;
float32x4_t tmp_0 = spl_0;
tmp_0 += load4a (stage_arr [cnt ]._mem );
tmp_0 *= load4a (stage_arr [cnt ]._coef);
tmp_0 -= load4a (stage_arr [cnt - 2]._mem );
storea (stage_arr [cnt - 2]._mem, spl_0);
storea (stage_arr [cnt - 1]._mem, spl_1);
storea (stage_arr [cnt ]._mem, tmp_0);
spl_0 = tmp_0;
}
template <>
inline void StageProc4Neon <0>::process_sample_neg (const int nbr_coefs, float32x4_t &spl_0, float32x4_t &spl_1, StageDataNeonV4 *stage_arr)
{
const int cnt = nbr_coefs + 2;
storea (stage_arr [cnt - 2]._mem, spl_0);
storea (stage_arr [cnt - 1]._mem, spl_1);
}
template <int REMAINING>
void StageProc4Neon <REMAINING>::process_sample_neg (const int nbr_coefs, float32x4_t &spl_0, float32x4_t &spl_1, StageDataNeonV4 *stage_arr)
{
const int cnt = nbr_coefs + 2 - REMAINING;
float32x4_t tmp_0 = spl_0;
tmp_0 += load4a (stage_arr [cnt ]._mem );
tmp_0 *= load4a (stage_arr [cnt ]._coef);
tmp_0 -= load4a (stage_arr [cnt - 2]._mem );
float32x4_t tmp_1 = spl_1;
tmp_1 += load4a (stage_arr [cnt + 1]._mem );
tmp_1 *= load4a (stage_arr [cnt + 1]._coef);
tmp_1 -= load4a (stage_arr [cnt - 1]._mem );
storea (stage_arr [cnt - 2]._mem, spl_0);
storea (stage_arr [cnt - 1]._mem, spl_1);
spl_0 = tmp_0;
spl_1 = tmp_1;
StageProc4Neon <REMAINING - 2>::process_sample_neg (
nbr_coefs,
spl_0,
spl_1,
stage_arr
);
}
/*\\\ PROTECTED \\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\*/
/*\\\ PRIVATE \\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\*/
} // namespace hiir
#endif // hiir_StageProc4Neon_CODEHEADER_INCLUDED
/*\\\ EOF \\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\*/