Merged features/mp-sched -r8915:9335 into the trunk. The trunk now
[debian/gnuradio] / gnuradio-core / src / lib / filter / gr_altivec.h
1 /* -*- c++ -*- */
2 /*
3  * Copyright 2008 Free Software Foundation, Inc.
4  * 
5  * This file is part of GNU Radio
6  * 
7  * GNU Radio is free software; you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License as published by
9  * the Free Software Foundation; either version 3, or (at your option)
10  * any later version.
11  * 
12  * GNU Radio is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU General Public License for more details.
16  * 
17  * You should have received a copy of the GNU General Public License along
18  * with this program; if not, write to the Free Software Foundation, Inc.,
19  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
20  */
21 #ifndef INCLUDED_GR_ALTIVEC_H
22 #define INCLUDED_GR_ALTIVEC_H
23
24 #include <altivec.h>
25 #include <stddef.h>
26 #include <stdio.h>
27
28 #ifdef __cplusplus
29 extern "C" {
30 #endif
31
32 #define VS             sizeof(vector float)
33 #define FLOATS_PER_VEC (sizeof(vector float)/sizeof(float))
34
35 union v_float_u {
36   vector float  v;
37   float         f[FLOATS_PER_VEC];
38 };
39
40 void gr_print_vector_float(FILE *fp, vector float v);
41 void gr_pvf(FILE *fp, const char *label, vector float v);
42
43 static inline float
44 horizontal_add_f(vector float v)
45 {
46   union v_float_u u;
47   vector float    t0 = vec_add(v, vec_sld(v, v, 8));
48   vector float    t1 = vec_add(t0, vec_sld(t0, t0, 4));
49   u.v = t1;
50   return u.f[0];
51 }
52
53 #ifdef __cplusplus
54 }
55 #endif
56
57 #endif /* INCLUDED_GR_ALTIVEC_H */