File: xtrxdsp.c

package info (click to toggle)
libxtrxdsp 0.0.1%2Bgit20190830.eec2864-2
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 268 kB
  • sloc: ansic: 2,538; makefile: 5
file content (587 lines) | stat: -rw-r--r-- 18,155 bytes parent folder | download | duplicates (2)
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
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
/*
 * xtrxdsp source file
 * Copyright (c) 2017 Sergey Kostanbaev <sergey.kostanbaev@fairwaves.co>
 * For more information, please visit: http://xtrx.io
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
 */

#include "xtrxdsp.h"

typedef void (*func_xtrxdsp_iq16_sc32_t)(const int16_t *__restrict,float *__restrict, float, size_t);
typedef uint64_t (*func_xtrxdsp_iq12_sc32_t)(const void *__restrict,float *__restrict, size_t, uint64_t prevstate);
typedef void (*func_xtrxdsp_iq8_sc32_t)(const int8_t *__restrict,float *__restrict, size_t);
typedef void (*func_xtrxdsp_iq8_ic16_t)(const int8_t *__restrict,int16_t *__restrict, size_t);

typedef void (*func_xtrxdsp_iq16_sc32i_t)(const int16_t *__restrict, float *__restrict, float *__restrict, float, size_t);
typedef void (*func_xtrxdsp_iq16_ic16i_t)(const int16_t *__restrict, int16_t *__restrict, int16_t *__restrict, size_t);

typedef void (*func_xtrxdsp_iq8_sc32i_t)(const int8_t *__restrict,float *__restrict,float *__restrict, size_t);
typedef void (*func_xtrxdsp_iq8_ic16i_t)(const int8_t *__restrict,int16_t *__restrict,int16_t *__restrict, size_t);
typedef void (*func_xtrxdsp_iq8_ic8i_t)(const int8_t *__restrict,int8_t *__restrict,int8_t *__restrict, size_t);

typedef void (*func_xtrxdsp_sc32_iq16_t)(const float *__restrict, int16_t *__restrict, float, size_t);
typedef void (*func_xtrxdsp_sc32i_iq16_t)(const float *__restrict i, const float *__restrict, int16_t *__restrict, float, size_t);

typedef void (*func_xtrxdsp_ic16i_iq16_t)(const int16_t *__restrict i, const int16_t *__restrict, int16_t *__restrict, size_t);

#ifndef NOPRINT
#include <stdio.h>
#define INFORM(x, ...) fprintf(stderr, x, ##__VA_ARGS__)
#else
#define INFORM(x, ...)
#endif

#include <stdbool.h>

#if defined(__x86_64__) || defined(__i386__)
#define GCC_VERSION (__GNUC__ * 10000 \
                     + __GNUC_MINOR__ * 100 \
                     + __GNUC_PATCHLEVEL__)

#if GCC_VERSION > 50000
#define RUNTIME_CHECK_FMA()  __builtin_cpu_supports("fma");
#else
#define RUNTIME_CHECK_FMA()  0
#endif

typedef struct cpu_features {
	bool sse2;
	bool sse41;
	bool avx;
	bool fma;
} cpu_features_t;

static void cpu_features_init(cpu_features_t* features)
{
	__builtin_cpu_init();

	features->sse2 = __builtin_cpu_supports("sse2");
	features->sse41 = __builtin_cpu_supports("sse4.1");
	features->avx = __builtin_cpu_supports("avx");
	features->fma = RUNTIME_CHECK_FMA();

	INFORM("CPU Features: SSE2%c SSE4.1%c AVX%c FMA%c\n",
		   features->sse2 ? '+' : '-',
		   features->sse41 ? '+' : '-',
		   features->avx ? '+' : '-',
		   features->fma ? '+' : '-');
}

#elif defined(__arm__) || defined(__aarch64__)
typedef struct cpu_features {
	bool neon;
} cpu_features_t;

static void cpu_features_init(cpu_features_t* features)
{
	features->neon = false; //TODO
}
#else

#warning Unknown platform!

typedef struct cpu_features {
	bool _nothing
} cpu_features_t;

static void cpu_features_init(cpu_features_t* features)
{
}

#endif

static bool s_cpu_features_init = false;
static cpu_features_t s_cpu_features;

void xtrxdsp_init(void)
{
	if (!s_cpu_features_init) {
		cpu_features_init(&s_cpu_features);
		s_cpu_features_init = true;
	}
}


#define STRINGIFY2(x) #x
#define STRINGIFY(x)  STRINGIFY2(x)

#define SELECT_FUNC(method, func, suffix) \
	do { \
		INFORM("Using " method " for " STRINGIFY(func) "\n"); \
		return func##_##suffix;	\
	} while (0)


#define CHECK_FUNC_BODY_EX2(func, suffix, gccstring, gccstring2) \
	do { \
		if (s_cpu_features.gccstring && s_cpu_features.gccstring2) { \
			SELECT_FUNC(STRINGIFY(suffix), func, suffix); \
		} \
	} while (0)

#define CHECK_FUNC_BODY_EX(func, suffix, gccstring) \
	do { \
		if (s_cpu_features.gccstring) { \
			SELECT_FUNC(STRINGIFY(suffix), func, suffix); \
		} \
	} while (0)

#define CHECK_FUNC_BODY(func, suffix) \
	CHECK_FUNC_BODY_EX(func, suffix, suffix)


#ifdef XTRXDSP_HAS__AVX2__
#define CHECK_FUNC_AVX2(func) CHECK_FUNC_BODY(func, avx2)
#else
#define CHECK_FUNC_AVX2(func)
#endif

#if defined(XTRXDSP_HAS__AVX__) && defined(XTRXDSP_HAS__FMA__)
#define CHECK_FUNC_AVX_FMA(func) CHECK_FUNC_BODY_EX2(func, avx_fma, avx, fma)
#else
#define CHECK_FUNC_AVX_FMA(func)
#endif

#ifdef XTRXDSP_HAS__AVX__
#define CHECK_FUNC_AVX(func) CHECK_FUNC_BODY(func, avx)
#else
#define CHECK_FUNC_AVX(func)
#endif

#ifdef XTRXDSP_HAS__SSE4_1__
#define CHECK_FUNC_SSE4_1(func) CHECK_FUNC_BODY(func, sse41)
#else
#define CHECK_FUNC_SSE4_1(func)
#endif

#ifdef XTRXDSP_HAS__SSSE3__
#define CHECK_FUNC_SSSE3(func) CHECK_FUNC_BODY(func, ssse3)
#else
#define CHECK_FUNC_SSSE3(func)
#endif

#ifdef XTRXDSP_HAS__SSE2__
#define CHECK_FUNC_SSE2(func) CHECK_FUNC_BODY(func, sse2)
#else
#define CHECK_FUNC_SSE2(func)
#endif

#if defined(__x86_64__) || defined(__i386__)

static func_xtrxdsp_iq16_sc32_t resolve_xtrxdsp_iq16_sc32(void)
{
	xtrxdsp_init();
	CHECK_FUNC_AVX2(xtrxdsp_iq16_sc32);
	CHECK_FUNC_AVX(xtrxdsp_iq16_sc32);
	CHECK_FUNC_SSE2(xtrxdsp_iq16_sc32);
	SELECT_FUNC("generic", xtrxdsp_iq16_sc32, no);
}


static func_xtrxdsp_iq12_sc32_t resolve_xtrxdsp_iq12_sc32(void)
{
	xtrxdsp_init();
	CHECK_FUNC_AVX2(xtrxdsp_iq12_sc32);
	CHECK_FUNC_AVX(xtrxdsp_iq12_sc32);
	CHECK_FUNC_SSSE3(xtrxdsp_iq12_sc32);
	CHECK_FUNC_SSE2(xtrxdsp_iq12_sc32);
	SELECT_FUNC("generic", xtrxdsp_iq12_sc32, no);
}


static func_xtrxdsp_iq8_sc32_t resolve_xtrxdsp_iq8_sc32(void)
{
	xtrxdsp_init();
	CHECK_FUNC_AVX2(xtrxdsp_iq8_sc32);
	CHECK_FUNC_AVX(xtrxdsp_iq8_sc32);
	CHECK_FUNC_SSE4_1(xtrxdsp_iq8_sc32);
	CHECK_FUNC_SSE2(xtrxdsp_iq8_sc32);
	SELECT_FUNC("generic", xtrxdsp_iq8_sc32, no);
}

static func_xtrxdsp_iq8_ic16_t resolve_xtrxdsp_iq8_ic16(void)
{
	xtrxdsp_init();
	CHECK_FUNC_AVX(xtrxdsp_iq8_ic16);
	CHECK_FUNC_SSE2(xtrxdsp_iq8_ic16);
	SELECT_FUNC("generic", xtrxdsp_iq8_ic16, no);
}

static func_xtrxdsp_iq16_sc32i_t resolve_xtrxdsp_iq16_sc32i(void)
{
	xtrxdsp_init();
	CHECK_FUNC_AVX2(xtrxdsp_iq16_sc32i);
	CHECK_FUNC_AVX(xtrxdsp_iq16_sc32i);
	CHECK_FUNC_SSE2(xtrxdsp_iq16_sc32i);
	SELECT_FUNC("generic", xtrxdsp_iq16_sc32i, no);
}

static func_xtrxdsp_iq16_ic16i_t resolve_xtrxdsp_iq16_ic16i(void)
{
	xtrxdsp_init();
	CHECK_FUNC_AVX2(xtrxdsp_iq16_ic16i);
	CHECK_FUNC_AVX(xtrxdsp_iq16_ic16i);
	CHECK_FUNC_SSE2(xtrxdsp_iq16_ic16i);
	SELECT_FUNC("generic", xtrxdsp_iq16_ic16i, no);
}

static func_xtrxdsp_iq8_sc32i_t resolve_xtrxdsp_iq8_sc32i(void)
{
	xtrxdsp_init();
	CHECK_FUNC_AVX2(xtrxdsp_iq8_sc32i);
	CHECK_FUNC_AVX(xtrxdsp_iq8_sc32i);
	CHECK_FUNC_SSE4_1(xtrxdsp_iq8_sc32i);
	CHECK_FUNC_SSE2(xtrxdsp_iq8_sc32i);
	SELECT_FUNC("generic", xtrxdsp_iq8_sc32i, no);
}

static func_xtrxdsp_iq8_ic16i_t resolve_xtrxdsp_iq8_ic16i(void)
{
	xtrxdsp_init();
	CHECK_FUNC_AVX2(xtrxdsp_iq8_ic16i);
	CHECK_FUNC_AVX(xtrxdsp_iq8_ic16i);
	CHECK_FUNC_SSE2(xtrxdsp_iq8_ic16i);
	SELECT_FUNC("generic", xtrxdsp_iq8_ic16i, no);
}

static func_xtrxdsp_iq8_ic8i_t resolve_xtrxdsp_iq8_ic8i(void)
{
	xtrxdsp_init();
	CHECK_FUNC_AVX2(xtrxdsp_iq8_ic8i);
	CHECK_FUNC_AVX(xtrxdsp_iq8_ic8i);
	CHECK_FUNC_SSE2(xtrxdsp_iq8_ic8i);
	SELECT_FUNC("generic", xtrxdsp_iq8_ic8i, no);
}

static func_xtrxdsp_sc32_iq16_t resolve_xtrxdsp_sc32_iq16(void)
{
	xtrxdsp_init();
	CHECK_FUNC_AVX2(xtrxdsp_sc32_iq16);
	CHECK_FUNC_AVX(xtrxdsp_sc32_iq16);
	CHECK_FUNC_SSE2(xtrxdsp_sc32_iq16);
	SELECT_FUNC("generic", xtrxdsp_sc32_iq16, no);
}

static func_xtrxdsp_sc32i_iq16_t resolve_xtrxdsp_sc32i_iq16(void)
{
	xtrxdsp_init();
	CHECK_FUNC_AVX2(xtrxdsp_sc32i_iq16);
	CHECK_FUNC_AVX(xtrxdsp_sc32i_iq16);
	CHECK_FUNC_SSE2(xtrxdsp_sc32i_iq16);
	SELECT_FUNC("generic", xtrxdsp_sc32i_iq16, no);
}

static func_xtrxdsp_ic16i_iq16_t resolve_xtrxdsp_ic16i_iq16(void)
{
	xtrxdsp_init();
	CHECK_FUNC_AVX2(xtrxdsp_ic16i_iq16);
	CHECK_FUNC_AVX(xtrxdsp_ic16i_iq16);
	CHECK_FUNC_SSE2(xtrxdsp_ic16i_iq16);
	SELECT_FUNC("generic", xtrxdsp_ic16i_iq16, no);
}

func_xtrxdsp_sc32_conv64_t resolve_xtrxdsp_sc32_conv64(void)
{
	xtrxdsp_init();
	CHECK_FUNC_AVX_FMA(xtrxdsp_sc32_conv64);
	CHECK_FUNC_AVX(xtrxdsp_sc32_conv64);
	CHECK_FUNC_SSE2(xtrxdsp_sc32_conv64);
	SELECT_FUNC("generic", xtrxdsp_sc32_conv64, no);
}

func_xtrxdsp_bx_expand_t resolve_xtrxdsp_b8_expand_x2(void)
{
	//CHECK_FUNC_AVX(xtrxdsp_b8_expand_x2);
	//CHECK_FUNC_SSE2(xtrxdsp_b8_expand_x2);
	SELECT_FUNC("generic", xtrxdsp_b8_expand_x2, no);
}

func_xtrxdsp_bx_expand_t resolve_xtrxdsp_b8_expand_x4(void)
{
	//CHECK_FUNC_AVX(xtrxdsp_b8_expand_x4);
	//CHECK_FUNC_SSE2(xtrxdsp_b8_expand_x4);
	SELECT_FUNC("generic", xtrxdsp_b8_expand_x4, no);
}

func_xtrxdsp_iq16_conv64_t resolve_xtrxdsp_iq16_conv64(void)
{
	xtrxdsp_init();
	CHECK_FUNC_AVX(xtrxdsp_iq16_conv64);
	CHECK_FUNC_SSE2(xtrxdsp_iq16_conv64);
	SELECT_FUNC("generic", xtrxdsp_iq16_conv64, no);
}

func_xtrxdsp_bx_expand_t resolve_xtrxdsp_b4_expand_x2(void)
{
//	CHECK_FUNC_AVX(xtrxdsp_b8_expand_x2);
//	CHECK_FUNC_SSE2(xtrxdsp_b8_expand_x2);
	SELECT_FUNC("generic", xtrxdsp_b4_expand_x2, no);
}

func_xtrxdsp_bx_expand_t resolve_xtrxdsp_b4_expand_x4(void)
{
//	CHECK_FUNC_AVX(xtrxdsp_b4_expand_x4);
//	CHECK_FUNC_SSE2(xtrxdsp_b4_expand_x4);
	SELECT_FUNC("generic", xtrxdsp_b4_expand_x4, no);
}

#else

static func_xtrxdsp_iq16_sc32_t resolve_xtrxdsp_iq16_sc32(void)
{ xtrxdsp_init(); SELECT_FUNC("generic", xtrxdsp_iq16_sc32, no); }

static func_xtrxdsp_iq12_sc32_t resolve_xtrxdsp_iq12_sc32(void)
{ xtrxdsp_init(); SELECT_FUNC("generic", xtrxdsp_iq12_sc32, no); }

static func_xtrxdsp_iq8_sc32_t resolve_xtrxdsp_iq8_sc32(void)
{ xtrxdsp_init(); SELECT_FUNC("generic", xtrxdsp_iq8_sc32, no); }

static func_xtrxdsp_iq8_ic16_t resolve_xtrxdsp_iq8_ic16(void)
{ xtrxdsp_init(); SELECT_FUNC("generic", xtrxdsp_iq8_ic16, no); }

static func_xtrxdsp_iq16_sc32i_t resolve_xtrxdsp_iq16_sc32i(void)
{ xtrxdsp_init(); SELECT_FUNC("generic", xtrxdsp_iq16_sc32i, no); }

static func_xtrxdsp_iq16_ic16i_t resolve_xtrxdsp_iq16_ic16i(void)
{ xtrxdsp_init(); SELECT_FUNC("generic", xtrxdsp_iq16_ic16i, no); }

static func_xtrxdsp_iq8_sc32i_t resolve_xtrxdsp_iq8_sc32i(void)
{ xtrxdsp_init(); SELECT_FUNC("generic", xtrxdsp_iq8_sc32i, no); }

static func_xtrxdsp_sc32_iq16_t resolve_xtrxdsp_sc32_iq16(void)
{ xtrxdsp_init(); SELECT_FUNC("generic", xtrxdsp_sc32_iq16, no); }

static func_xtrxdsp_sc32i_iq16_t resolve_xtrxdsp_sc32i_iq16(void)
{ xtrxdsp_init(); SELECT_FUNC("generic", xtrxdsp_sc32i_iq16, no); }

static func_xtrxdsp_ic16i_iq16_t resolve_xtrxdsp_ic16i_iq16(void)
{ xtrxdsp_init(); SELECT_FUNC("generic", xtrxdsp_ic16i_iq16, no); }

static func_xtrxdsp_iq8_ic16i_t resolve_xtrxdsp_iq8_ic16i(void)
{ xtrxdsp_init(); SELECT_FUNC("generic", xtrxdsp_iq8_ic16i, no); }

static func_xtrxdsp_iq8_ic8i_t resolve_xtrxdsp_iq8_ic8i(void)
{ xtrxdsp_init(); SELECT_FUNC("generic", xtrxdsp_iq8_ic8i, no); }


func_xtrxdsp_sc32_conv64_t resolve_xtrxdsp_sc32_conv64(void)
{ return xtrxdsp_sc32_conv64_no; }

func_xtrxdsp_bx_expand_t resolve_xtrxdsp_b8_expand_x2(void)
{ return xtrxdsp_b8_expand_x2_no; }

func_xtrxdsp_bx_expand_t resolve_xtrxdsp_b8_expand_x4(void)
{ return xtrxdsp_b8_expand_x4_no; }

func_xtrxdsp_iq16_conv64_t resolve_xtrxdsp_iq16_conv64(void)
{ return xtrxdsp_iq16_conv64_no; }

func_xtrxdsp_bx_expand_t resolve_xtrxdsp_b4_expand_x2(void)
{ return xtrxdsp_b4_expand_x2_no; }

func_xtrxdsp_bx_expand_t resolve_xtrxdsp_b4_expand_x4(void)
{ return xtrxdsp_b4_expand_x4_no; }

#endif

#if defined(__linux) && (defined(__x86_64__) || defined(__i386__))
// ifunc is available not on all platforms!

void xtrxdsp_iq16_sc32(const int16_t *__restrict iq,
					   float *__restrict out,
					   float scale,
					   size_t bytes)
__attribute__ ((ifunc ("resolve_xtrxdsp_iq16_sc32")));


uint64_t xtrxdsp_iq12_sc32(const void *__restrict iq,
						   float *__restrict out,
						   size_t inbytes,
						   uint64_t prevstate)
__attribute__ ((ifunc ("resolve_xtrxdsp_iq12_sc32")));


void xtrxdsp_iq8_sc32(const int8_t *__restrict iq,
					  float *__restrict out,
					  size_t bytes)
__attribute__ ((ifunc ("resolve_xtrxdsp_iq8_sc32")));

void xtrxdsp_iq8_ic16(const int8_t *__restrict iq,
					  int16_t *__restrict out,
					  size_t bytes)
__attribute__ ((ifunc ("resolve_xtrxdsp_iq8_ic16")));

void xtrxdsp_iq16_sc32i(const int16_t *__restrict iq,
						float *__restrict outa,
						float *__restrict outb,
						float scale,
						size_t bytes)
__attribute__ ((ifunc ("resolve_xtrxdsp_iq16_sc32i")));

void xtrxdsp_iq16_ic16i(const int16_t *__restrict iq,
						int16_t *__restrict outa,
						int16_t *__restrict outb,
						size_t bytes)
__attribute__ ((ifunc ("resolve_xtrxdsp_iq16_ic16i")));

void xtrxdsp_iq8_sc32i(const int8_t *__restrict iq,
					   float *__restrict outa,
					   float *__restrict outb,
					   size_t bytes)
__attribute__ ((ifunc ("resolve_xtrxdsp_iq8_sc32i")));

void xtrxdsp_iq8_ic16i(const int8_t *__restrict iq,
					   int16_t *__restrict outa,
					   int16_t *__restrict outb,
					   size_t bytes)
__attribute__ ((ifunc ("resolve_xtrxdsp_iq8_ic16i")));

void xtrxdsp_iq8_ic8i(const int8_t *__restrict iq,
					   int8_t *__restrict outa,
					   int8_t *__restrict outb,
					   size_t bytes)
__attribute__ ((ifunc ("resolve_xtrxdsp_iq8_ic8i")));


void xtrxdsp_sc32_iq16(const float *__restrict iq,
					   int16_t *__restrict out,
					   float scale,
					   size_t outbytes)
__attribute__ ((ifunc ("resolve_xtrxdsp_sc32_iq16")));

void xtrxdsp_sc32i_iq16(const float *__restrict i,
						const float *__restrict q,
						int16_t *__restrict out,
						float scale,
						size_t outbytes)
__attribute__ ((ifunc ("resolve_xtrxdsp_sc32i_iq16")));

void xtrxdsp_ic16i_iq16(const int16_t *__restrict i,
						const int16_t *__restrict q,
						int16_t *__restrict out,
						size_t outbytes)
__attribute__ ((ifunc ("resolve_xtrxdsp_ic16i_iq16")));

DECLARE_SC32_CONV64_FUNC() __attribute__ ((ifunc ("resolve_xtrxdsp_sc32_conv64")));

DECLARE_B8_EXPAND_X2_FUNC() __attribute__ ((ifunc ("resolve_xtrxdsp_b8_expand_x2")));

DECLARE_B8_EXPAND_X4_FUNC() __attribute__ ((ifunc ("resolve_xtrxdsp_b8_expand_x4")));

DECLARE_IQ16_CONV64_FUNC() __attribute__ ((ifunc ("resolve_xtrxdsp_iq16_conv64")));

DECLARE_B4_EXPAND_X2_FUNC() __attribute__ ((ifunc ("resolve_xtrxdsp_b4_expand_x2")));

DECLARE_B4_EXPAND_X4_FUNC() __attribute__ ((ifunc ("resolve_xtrxdsp_b4_expand_x4")));

#else
#define STATIC_RESOLVE(x, ...) \
	static func_##x##_t r_func; \
	if (r_func == NULL) r_func = resolve_##x(); \
	r_func(__VA_ARGS__);

#define STATIC_RESOLVE_RET(x, ...) \
	static func_##x##_t r_func; \
	if (r_func == NULL) r_func = resolve_##x(); \
	return r_func(__VA_ARGS__);

void xtrxdsp_iq16_sc32(const int16_t *__restrict iq,
					   float *__restrict out,
					   float scale,
					   size_t bytes)
{ STATIC_RESOLVE(xtrxdsp_iq16_sc32, iq, out, scale, bytes); }

uint64_t xtrxdsp_iq12_sc32(const void *__restrict iq,
						   float *__restrict out,
						   size_t inbytes,
						   uint64_t prevstate)
{ STATIC_RESOLVE_RET(xtrxdsp_iq12_sc32, iq, out, inbytes, prevstate); }

void xtrxdsp_iq8_sc32(const int8_t *__restrict iq,
					  float *__restrict out,
					  size_t bytes)
{ STATIC_RESOLVE(xtrxdsp_iq8_sc32, iq, out, bytes); }


void xtrxdsp_iq16_sc32i(const int16_t *__restrict iq,
						float *__restrict outa,
						float *__restrict outb,
						float scale,
						size_t bytes)
{ STATIC_RESOLVE(xtrxdsp_iq16_sc32i, iq, outa, outb, scale, bytes); }

void xtrxdsp_iq8_sc32i(const int8_t *__restrict iq,
					   float *__restrict outa,
					   float *__restrict outb,
					   size_t bytes)
{ STATIC_RESOLVE(xtrxdsp_iq8_sc32i, iq, outa, outb, bytes); }


void xtrxdsp_sc32_iq16(const float *__restrict iq,
					   int16_t *__restrict out,
					   float scale,
					   size_t outbytes)
{ STATIC_RESOLVE(xtrxdsp_sc32_iq16, iq, out, scale, outbytes); }

void xtrxdsp_sc32i_iq16(const float *__restrict i,
						const float *__restrict q,
						int16_t *__restrict out,
						float scale,
						size_t outbytes)
{ STATIC_RESOLVE(xtrxdsp_sc32i_iq16, i, q, out, scale, outbytes); }

void xtrxdsp_iq8_ic16(const int8_t *__restrict a, int16_t *__restrict b, size_t c)
{ STATIC_RESOLVE(xtrxdsp_iq8_ic16, a, b, c); }

void xtrxdsp_iq16_ic16i(const int16_t *__restrict a, int16_t *__restrict b, int16_t *__restrict c, size_t d)
{ STATIC_RESOLVE(xtrxdsp_iq16_ic16i, a, b, c, d); }

void xtrxdsp_iq8_ic16i(const int8_t *__restrict a, int16_t *__restrict b, int16_t *__restrict c, size_t d)
{ STATIC_RESOLVE(xtrxdsp_iq8_ic16i, a, b, c, d); }

void xtrxdsp_iq8_ic8i(const int8_t *__restrict a, int8_t *__restrict b, int8_t *__restrict c, size_t d)
{ STATIC_RESOLVE(xtrxdsp_iq8_ic8i, a, b, c, d); }

void xtrxdsp_ic16i_iq16(const int16_t *__restrict a, const int16_t *__restrict b, int16_t *__restrict c, size_t d)
{ STATIC_RESOLVE(xtrxdsp_ic16i_iq16, a, b, c, d); }

DECLARE_SC32_CONV64_FUNC()
{ STATIC_RESOLVE(xtrxdsp_sc32_conv64, data, conv, out, count, decim_bits); }

DECLARE_IQ16_CONV64_FUNC()
{ STATIC_RESOLVE(xtrxdsp_iq16_conv64, data, conv, out, count, decim_bits); }

// TODO get rid of it
typedef func_xtrxdsp_bx_expand_t func_xtrxdsp_b8_expand_x2_t;
typedef func_xtrxdsp_bx_expand_t func_xtrxdsp_b4_expand_x2_t;
typedef func_xtrxdsp_bx_expand_t func_xtrxdsp_b8_expand_x4_t;
typedef func_xtrxdsp_bx_expand_t func_xtrxdsp_b4_expand_x4_t;

DECLARE_B8_EXPAND_X2_FUNC()
{ STATIC_RESOLVE(xtrxdsp_b8_expand_x2, data, out, count_blocks); }

DECLARE_B8_EXPAND_X4_FUNC()
{ STATIC_RESOLVE(xtrxdsp_b8_expand_x4, data, out, count_blocks); }

DECLARE_B4_EXPAND_X2_FUNC()
{ STATIC_RESOLVE(xtrxdsp_b4_expand_x2, data, out, count_blocks); }

DECLARE_B4_EXPAND_X4_FUNC()
{ STATIC_RESOLVE(xtrxdsp_b4_expand_x4, data, out, count_blocks); }

#endif