-
Notifications
You must be signed in to change notification settings - Fork 1
/
Downsampler2x3dnow.hpp
470 lines (359 loc) · 11.8 KB
/
Downsampler2x3dnow.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
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
/*****************************************************************************
Downsampler2x3dnow.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_Downsampler2x3dnow_CURRENT_CODEHEADER)
#error Recursive inclusion of Downsampler2x3dnow code header.
#endif
#define hiir_Downsampler2x3dnow_CURRENT_CODEHEADER
#if ! defined (hiir_Downsampler2x3dnow_CODEHEADER_INCLUDED)
#define hiir_Downsampler2x3dnow_CODEHEADER_INCLUDED
/*\\\ INCLUDE FILES \\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\*/
#include "hiir/StageProc3dnow.h"
#include <mm3dnow.h>
#include <cassert>
namespace hiir
{
static const float Downsampler2x3dnow_half [2] = { 0.5f, 0.5f };
/*\\\ PUBLIC \\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\*/
/*
==============================================================================
Name: ctor
Throws: Nothing
==============================================================================
*/
template <int NC>
Downsampler2x3dnow <NC>::Downsampler2x3dnow ()
: _filter ()
{
for (int i = 0; i < NBR_STAGES + 1; ++i)
{
_filter [i]._coefs.m64_f32 [0] = 0;
_filter [i]._coefs.m64_f32 [1] = 0;
}
if (NBR_COEFS < NBR_STAGES * 2)
{
_filter [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 Downsampler2x3dnow <NC>::set_coefs (const double coef_arr [])
{
assert (coef_arr != nullptr);
for (int i = 0; i < NBR_COEFS; ++i)
{
const int stage = (i / STAGE_WIDTH) + 1;
const int pos = (i ^ 1) & (STAGE_WIDTH - 1);
_filter [stage]._coefs.m64_f32 [pos] = DataType (coef_arr [i]);
}
}
/*
==============================================================================
Name: process_sample
Description:
Downsamples (x2) one pair of samples, to generate one output sample.
Input parameters:
- in_ptr: pointer on the two samples to decimate
Returns: Samplerate-reduced sample.
Throws: Nothing
==============================================================================
*/
template <int NC>
float Downsampler2x3dnow <NC>::process_sample (const float in_ptr [2])
{
assert (in_ptr != nullptr);
enum { CURR_CELL = NBR_STAGES * sizeof (_filter [0]) };
StageData3dnow * filter_ptr = &_filter [0];
float result;
__asm
{
mov esi, in_ptr
mov edx, filter_ptr
movq mm0, [esi]
}
StageProc3dnow <NBR_STAGES>::process_sample_pos ();
__asm
{
movq [edx + CURR_CELL + 1*8], mm0
pfmul mm0, Downsampler2x3dnow_half
pfacc mm0, mm0
movd result, mm0
femms
}
return result;
}
/*
==============================================================================
Name: process_block
Description:
Downsamples (x2) a block of samples.
Input and output blocks may overlap, see assert() for details.
Input parameters:
- in_ptr: Input array, containing nbr_spl * 2 samples.
- nbr_spl: Number of samples to output, > 0
Output parameters:
- out_ptr: Array for the output samples, capacity: nbr_spl samples.
Throws: Nothing
==============================================================================
*/
template <int NC>
void Downsampler2x3dnow <NC>::process_block (float out_ptr [], const float in_ptr [], long nbr_spl)
{
assert (in_ptr != nullptr);
assert (out_ptr != nullptr);
assert (out_ptr <= in_ptr || out_ptr >= in_ptr + nbr_spl * 2);
assert (nbr_spl > 0);
enum { CURR_CELL = NBR_STAGES * sizeof (_filter [0]) };
StageData3dnow * filter_ptr = &_filter [0];
__asm
{
mov esi, in_ptr
mov edi, out_ptr
mov eax, nbr_spl
mov edx, filter_ptr
lea esi, [esi + eax*8]
lea edi, [edi + eax*4 - 4]
neg eax
loop_sample:
movq mm0, [esi + eax*8]
}
#if defined (_MSC_VER) && ! defined (NDEBUG)
__asm push eax
#endif
StageProc3dnow <NBR_STAGES>::process_sample_pos ();
#if defined (_MSC_VER) && ! defined (NDEBUG)
__asm pop eax
#endif
__asm
{
movq [edx + CURR_CELL + 1*8], mm0
inc eax
pfmul mm0, Downsampler2x3dnow_half
pfacc mm0, mm0
movd [edi + eax*4], mm0
jl loop_sample
femms
}
}
// We could write the same specialisation for <7>
template <>
void Downsampler2x3dnow <8>::process_block (float out_ptr [], const float in_ptr [], long nbr_spl)
{
StageData3dnow * filter_ptr = &_filter [0];
__asm
{
mov esi, in_ptr
mov edi, out_ptr
mov eax, nbr_spl
lea esi, [esi + eax*8]
lea edi, [edi + eax*4 - 4]
neg eax
mov edx, filter_ptr
movq mm2, [edx + 0*16 + 1*8]
movq mm3, [edx + 1*16 + 1*8]
movq mm4, [edx + 2*16 + 1*8]
movq mm5, [edx + 3*16 + 1*8]
movq mm6, [edx + 4*16 + 1*8]
loop_sample:
movq mm0, [esi + eax*8]
movq mm1, mm2
movq mm2, mm0
pfsub mm0, mm3
pfmul mm0, [edx + 1*16 + 0*8]
inc eax
pfadd mm0, mm1
movq mm1, mm3
movq mm3, mm0
pfsub mm0, mm4
pfmul mm0, [edx + 2*16 + 0*8]
pfadd mm0, mm1
movq mm1, mm4
movq mm4, mm0
pfsub mm0, mm5
pfmul mm0, [edx + 3*16 + 0*8]
pfadd mm0, mm1
movq mm1, mm5
movq mm5, mm0
pfsub mm0, mm6
pfmul mm0, [edx + 4*16 + 0*8]
pfadd mm0, mm1
movq mm6, mm0
pfmul mm0, Downsampler2x3dnow_half
pfacc mm0, mm0
movd [edi + eax*4], mm0
jl loop_sample
movq [edx + 0*16 + 1*8], mm2
movq [edx + 1*16 + 1*8], mm3
movq [edx + 2*16 + 1*8], mm4
movq [edx + 3*16 + 1*8], mm5
movq [edx + 4*16 + 1*8], mm6
femms
}
}
/*
==============================================================================
Name: process_sample_split
Description:
Split (spectrum-wise) in half a pair of samples. The lower part of the
spectrum is a classic downsampling, equivalent to the output of
process_sample().
The higher part is the complementary signal: original filter response
is flipped from left to right, becoming a high-pass filter with the same
cutoff frequency. This signal is then critically sampled (decimation by 2),
flipping the spectrum: Fs/4...Fs/2 becomes Fs/4...0.
Input parameters:
- in_ptr: pointer on the pair of input samples
Output parameters:
- low: output sample, lower part of the spectrum (downsampling)
- high: output sample, higher part of the spectrum.
Throws: Nothing
==============================================================================
*/
template <int NC>
void Downsampler2x3dnow <NC>::process_sample_split (float &low, float &high, const float in_ptr [2])
{
assert (in_ptr != nullptr);
enum { CURR_CELL = NBR_STAGES * sizeof (_filter [0]) };
StageData3dnow * filter_ptr = &_filter [0];
__asm
{
mov esi, in_ptr
mov edx, filter_ptr
mov edi, low
movq mm0, [esi]
}
StageProc3dnow <NBR_STAGES>::process_sample_pos ();
__asm
{
movq [edx + CURR_CELL + 1*8], mm0
movq mm1, mm0
pfmul mm0, Downsampler2x3dnow_half
mov ecx, high
pfacc mm0, mm0
movd [edi], mm0
pfsub mm1, mm0
movd [ecx], mm1
femms
}
// Result storing could be optimized on Athlon with:
// pfmul + pfpnacc + movd + punpckhdq + movd (not tested)
return result;
}
/*
==============================================================================
Name: process_block_split
Description:
Split (spectrum-wise) in half a block of samples. The lower part of the
spectrum is a classic downsampling, equivalent to the output of
process_block().
The higher part is the complementary signal: original filter response
is flipped from left to right, becoming a high-pass filter with the same
cutoff frequency. This signal is then critically sampled (decimation by 2),
flipping the spectrum: Fs/4...Fs/2 becomes Fs/4...0.
Input and output blocks may overlap, see assert() for details.
Input parameters:
- in_ptr: Input array, containing nbr_spl * 2 samples.
- nbr_spl: Number of samples for each output, > 0
Output parameters:
- out_l_ptr: Array for the output samples, lower part of the spectrum
(downsampling). Capacity: nbr_spl samples.
- out_h_ptr: Array for the output samples, higher part of the spectrum.
Capacity: nbr_spl samples.
Throws: Nothing
==============================================================================
*/
template <int NC>
void Downsampler2x3dnow <NC>::process_block_split (float out_l_ptr [], float out_h_ptr [], const float in_ptr [], long nbr_spl)
{
assert (in_ptr != nullptr);
assert (out_l_ptr != nullptr);
assert (out_l_ptr <= in_ptr || out_l_ptr >= in_ptr + nbr_spl * 2);
assert (out_h_ptr != nullptr);
assert (out_h_ptr <= in_ptr || out_h_ptr >= in_ptr + nbr_spl * 2);
assert (out_h_ptr != out_l_ptr);
assert (nbr_spl > 0);
enum { CURR_CELL = NBR_STAGES * sizeof (_filter [0]) };
StageData3dnow * filter_ptr = &_filter [0];
__asm
{
mov esi, in_ptr
mov edi, out_l_ptr
mov ecx, out_h_ptr
mov eax, nbr_spl
mov edx, filter_ptr
lea esi, [esi + eax*8]
lea edi, [edi + eax*4 - 4]
lea ecx, [ecx + eax*4 - 4]
neg eax
loop_sample:
movq mm0, [esi + eax*8]
}
#if defined (_MSC_VER) && ! defined (NDEBUG)
__asm push eax
__asm push ecx
#endif
StageProc3dnow <NBR_STAGES>::process_sample_pos ();
#if defined (_MSC_VER) && ! defined (NDEBUG)
__asm pop ecx
__asm pop eax
#endif
__asm
{
movq [edx + CURR_CELL + 1*8], mm0
movq mm1, mm0
inc eax
pfmul mm0, Downsampler2x3dnow_half
pfacc mm0, mm0
movd [edi + eax*4], mm0
pfsub mm1, mm0
movd [ecx + eax*4], mm1
jl loop_sample
femms
}
// Result storing could be optimized on Athlon with:
// pfmul + pfpnacc + movd + punpckhdq + movd (not tested)
}
/*
==============================================================================
Name: clear_buffers
Description:
Clears filter memory, as if it processed silence since an infinite amount
of time.
Throws: Nothing
==============================================================================
*/
template <int NC>
void Downsampler2x3dnow <NC>::clear_buffers ()
{
for (int i = 0; i < NBR_STAGES + 1; ++i)
{
_filter [i]._mem.m64_f32 [0] = 0;
_filter [i]._mem.m64_f32 [1] = 0;
}
}
/*\\\ PROTECTED \\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\*/
/*\\\ PRIVATE \\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\*/
} // namespace hiir
#endif // hiir_Downsampler2x3dnow_CODEHEADER_INCLUDED
#undef hiir_Downsampler2x3dnow_CURRENT_CODEHEADER
/*\\\ EOF \\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\*/