-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathPhaseHalfPi3dnow.hpp
310 lines (231 loc) · 7.26 KB
/
PhaseHalfPi3dnow.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
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
/*****************************************************************************
PhaseHalfPi3dnow.hpp
Author: Laurent de Soras, 2005
--- 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_PhaseHalfPi3dnow_CURRENT_CODEHEADER)
#error Recursive inclusion of PhaseHalfPi3dnow code header.
#endif
#define hiir_PhaseHalfPi3dnow_CURRENT_CODEHEADER
#if ! defined (hiir_PhaseHalfPi3dnow_CODEHEADER_INCLUDED)
#define hiir_PhaseHalfPi3dnow_CODEHEADER_INCLUDED
/*\\\ INCLUDE FILES \\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\*/
#include "hiir/StageProc3dnow.h"
#include <mm3dnow.h>
#include <cassert>
namespace hiir
{
/*\\\ PUBLIC \\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\*/
/*
==============================================================================
Name: ctor
Throws: Nothing
==============================================================================
*/
template <int NC>
PhaseHalfPi3dnow <NC>::PhaseHalfPi3dnow ()
: _filter ()
, _prev (0)
, _phase (0)
{
for (int phase = 0; phase < NBR_PHASES; ++phase)
{
for (int i = 0; i < NBR_STAGES + 1; ++i)
{
_filter [phase] [i]._coefs.m64_f32 [0] = 0;
_filter [phase] [i]._coefs.m64_f32 [1] = 0;
}
if (NBR_COEFS < NBR_STAGES * 2)
{
_filter [phase] [NBR_STAGES]._coefs.m64_f32 [0] = 1;
}
}
clear_buffers ();
}
/*
==============================================================================
Name: set_coefs
Description:
Sets filter coefficients. Generate them with the PolyphaseIir2Designer
class.
Call this function before doing any processing.
Input parameters:
- coef_arr: Array of coefficients. There should be as many coefficients as
mentioned in the class template parameter.
Throws: Nothing
==============================================================================
*/
template <int NC>
void PhaseHalfPi3dnow <NC>::set_coefs (const double coef_arr [])
{
assert (coef_arr != nullptr);
for (int phase = 0; phase < NBR_PHASES; ++phase)
{
for (int i = 0; i < NBR_COEFS; ++i)
{
const int stage = (i / STAGE_WIDTH) + 1;
const int pos = (i ^ 1) & (STAGE_WIDTH - 1);
_filter [phase] [stage]._coefs.m64_f32 [pos] = DataType (coef_arr [i]);
}
}
}
/*
==============================================================================
Name: process_sample
Description:
From one input sample, generates two samples with a pi/2 phase shift.
Input parameters:
- input: The input sample.
Output parameters:
- out_0: Output sample, ahead.
- out_1: Output sample, late.
Throws: Nothing
==============================================================================
*/
template <int NC>
void PhaseHalfPi3dnow <NC>::process_sample (float &out_0, float &out_1, float input)
{
enum { CURR_CELL = NBR_STAGES * sizeof (_filter [0] [0]) };
StageData3dnow * filter_ptr = &_filter [_phase] [0];
__m64 result;
result.m64_f32 [0] = _prev;
result.m64_f32 [1] = input;
__asm
{
mov edx, filter_ptr
movq mm0, result
}
StageProc3dnow <NBR_STAGES>::process_sample_neg ();
__asm
{
movq [edx + CURR_CELL + 1*8], mm0
femms
}
out_0 = filter_ptr [NBR_STAGES]._mem.m64_f32 [1];
out_1 = filter_ptr [NBR_STAGES]._mem.m64_f32 [0];
_prev = input;
_phase = 1 - _phase;
}
/*
==============================================================================
Name: process_block
Description:
From a block of samples, generates two blocks of samples, with a pi/2
phase shift between these signals.
Input and output blocks may overlap, see assert() for details.
Input parameters:
- in_ptr: Input array, containing nbr_spl samples.
- nbr_spl: Number of input samples to process, > 0
Output parameters:
- out_0_ptr: Output sample array (ahead), capacity: nbr_spl samples.
- out_1_ptr: Output sample array (late), capacity: nbr_spl samples.
Throws: Nothing
==============================================================================
*/
#if defined (_MSC_VER)
#pragma warning (push)
#pragma warning (4 : 4731 4748)
#endif
template <int NC>
void PhaseHalfPi3dnow <NC>::process_block (float out_0_ptr [], float out_1_ptr [], const float in_ptr [], long nbr_spl)
{
assert (out_0_ptr != nullptr);
assert (out_1_ptr != nullptr);
assert (in_ptr != nullptr);
assert (out_0_ptr <= in_ptr || out_0_ptr >= in_ptr + nbr_spl);
assert (out_1_ptr <= in_ptr || out_1_ptr >= in_ptr + nbr_spl);
assert (out_0_ptr + nbr_spl <= out_1_ptr || out_1_ptr + nbr_spl <= out_0_ptr);
assert (nbr_spl > 0);
long pos = 0;
if (_phase == 1)
{
process_sample (out_0_ptr [0], out_1_ptr [0], in_ptr [0]);
++ pos;
}
if (pos < nbr_spl)
{
float prev = _prev;
enum { CURR_CELL = NBR_STAGES * sizeof (_filter [0] [0]) };
StageData3dnow * filter_ptr = &_filter [0] [0];
StageData3dnow * filter2_ptr = &_filter [1] [0];
__asm
{
push ebx
mov esi, in_ptr
mov edi, out_0_ptr
mov ecx, out_1_ptr
mov eax, nbr_spl
mov edx, filter_ptr
mov ebx, filter2_ptr
lea esi, [esi + eax*4]
lea edi, [edi + eax*4 - 4]
lea ecx, [ecx + eax*4 - 4]
neg eax
add eax, pos
movd mm0, prev
loop_sample:
movd mm3, [esi + eax*4]
punpckldq mm0, mm3
}
#if defined (_MSC_VER) && ! defined (NDEBUG)
__asm push eax
__asm push ecx
#endif
StageProc3dnow <NBR_STAGES>::process_sample_neg ();
#if defined (_MSC_VER) && ! defined (NDEBUG)
__asm pop ecx
__asm pop eax
#endif
__asm
{
inc eax
movq [edx + CURR_CELL + 1*8], mm0
xchg edx, ebx
movd [ecx + eax*4], mm0
punpckhdq mm0, mm0
movd [edi + eax*4], mm0
movq mm0, mm3
jl loop_sample
movd prev, mm3
femms
pop ebx
}
_phase = (nbr_spl - pos) & 1;
_prev = prev;
}
}
#if defined (_MSC_VER)
#pragma warning (pop)
#endif
/*
==============================================================================
Name: clear_buffers
Description:
Clears filter memory, as if it processed silence since an infinite amount
of time.
Throws: Nothing
==============================================================================
*/
template <int NC>
void PhaseHalfPi3dnow <NC>::clear_buffers ()
{
for (int phase = 0; phase < NBR_PHASES; ++phase)
{
for (int i = 0; i < NBR_STAGES + 1; ++i)
{
_filter [phase] [i]._mem.m64_f32 [0] = 0;
_filter [phase] [i]._mem.m64_f32 [1] = 0;
}
}
}
/*\\\ PROTECTED \\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\*/
/*\\\ PRIVATE \\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\*/
} // namespace hiir
#endif // hiir_PhaseHalfPi3dnow_CODEHEADER_INCLUDED
#undef hiir_PhaseHalfPi3dnow_CURRENT_CODEHEADER
/*\\\ EOF \\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\*/