~ubuntu-branches/ubuntu/natty/pd-zexy/natty

« back to all changes in this revision

Viewing changes to src/0x3d0x3d0x7e.c

  • Committer: Bazaar Package Importer
  • Author(s): Jonas Smedegaard, IOhannes m zmölnig, Jonas Smedegaard
  • Date: 2010-08-20 12:17:41 UTC
  • mfrom: (2.1.2 sid)
  • Revision ID: james.westby@ubuntu.com-20100820121741-4kxozn8b9rhee9fr
Tags: 2.2.3-1
* New upstream version

[ IOhannes m zmölnig ]
* Adopt package, on behalf of Multimedia Team.
  Closes: #546964
* Simply debian/rules with CDBS, and don't unconditionally strip
  binaries.
  Closes: #437763
* Install into /usr/lib/pd/extra/zexy/. Document usage in REAME.Debian
  and warn about change in NEWS.
* git'ify package. Add Vcs-* stanzas to control file.
* Use dpkg source format 3.0 (quilt). Drop build-dependency on quilt.

[ Jonas Smedegaard ]
* Enable CDBS copyright-check routine.
* Add copyright and licensing header to debian/rules.
* Add myself as uploader.
* Rewrite debian/copyright using rev. 135 of draft DEP5 format.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/******************************************************
 
2
 *
 
3
 * zexy - implementation file
 
4
 *
 
5
 * copyleft (c) IOhannes m zm�lnig
 
6
 *
 
7
 *   1999:forum::f�r::uml�ute:2004
 
8
 *
 
9
 *   institute of electronic music and acoustics (iem)
 
10
 *
 
11
 ******************************************************
 
12
 *
 
13
 * license: GNU General Public License v.2
 
14
 *
 
15
 ******************************************************/
 
16
 
 
17
/*
 
18
        finally :: some of the missing binops for signals :: ==~
 
19
 
 
20
        1302:forum::f�r::uml�ute:2000
 
21
*/
 
22
 
 
23
#include "zexySIMD.h"
 
24
 
 
25
/* ----------------------------- eq_tilde ----------------------------- */
 
26
static t_class *eq_tilde_class, *scalareq_tilde_class;
 
27
 
 
28
typedef struct _eq_tilde
 
29
{
 
30
  t_object x_obj;
 
31
  t_float x_f;
 
32
} t_eq_tilde;
 
33
 
 
34
typedef struct _scalareq_tilde
 
35
{
 
36
  t_object x_obj;
 
37
  t_float x_f;
 
38
  t_float x_g;              /* inlet value */
 
39
} t_scalareq_tilde;
 
40
 
 
41
static void *eq_tilde_new(t_symbol *s, int argc, t_atom *argv)
 
42
{
 
43
  ZEXY_USEVAR(s);
 
44
  if (argc > 1) post("==~: extra arguments ignored");
 
45
  if (argc) 
 
46
    {
 
47
      t_scalareq_tilde *x = (t_scalareq_tilde *)pd_new(scalareq_tilde_class);
 
48
      floatinlet_new(&x->x_obj, &x->x_g);
 
49
      x->x_g = atom_getfloatarg(0, argc, argv);
 
50
      outlet_new(&x->x_obj, &s_signal);
 
51
      x->x_f = 0;
 
52
      return (x);
 
53
    }
 
54
  else
 
55
    {
 
56
      t_eq_tilde *x = (t_eq_tilde *)pd_new(eq_tilde_class);
 
57
      inlet_new(&x->x_obj, &x->x_obj.ob_pd, &s_signal, &s_signal);
 
58
      outlet_new(&x->x_obj, &s_signal);
 
59
      x->x_f = 0;
 
60
      return (x);
 
61
    }
 
62
}
 
63
 
 
64
static t_int *eq_tilde_perform(t_int *w)
 
65
{
 
66
  t_sample *in1 = (t_sample *)(w[1]);
 
67
  t_sample *in2 = (t_sample *)(w[2]);
 
68
  t_sample *out = (t_sample *)(w[3]);
 
69
  int n = (int)(w[4]);
 
70
  while (n--) *out++ = (*in1++ == *in2++); 
 
71
  return (w+5);
 
72
}
 
73
 
 
74
static t_int *eq_tilde_perf8(t_int *w)
 
75
{
 
76
  t_sample *in1 = (t_sample *)(w[1]);
 
77
  t_sample *in2 = (t_sample *)(w[2]);
 
78
  t_sample *out = (t_sample *)(w[3]);
 
79
  int n = (int)(w[4]);
 
80
  for (; n; n -= 8, in1 += 8, in2 += 8, out += 8)
 
81
    {
 
82
      t_sample f0 = in1[0], f1 = in1[1], f2 = in1[2], f3 = in1[3];
 
83
      t_sample f4 = in1[4], f5 = in1[5], f6 = in1[6], f7 = in1[7];
 
84
      
 
85
      t_sample g0 = in2[0], g1 = in2[1], g2 = in2[2], g3 = in2[3];
 
86
      t_sample g4 = in2[4], g5 = in2[5], g6 = in2[6], g7 = in2[7];
 
87
      
 
88
      out[0] = f0 == g0; out[1] = f1 == g1; out[2] = f2 == g2; out[3] = f3 == g3;
 
89
      out[4] = f4 == g4; out[5] = f5 == g5; out[6] = f6 == g6; out[7] = f7 == g7;
 
90
    }
 
91
  return (w+5);
 
92
}
 
93
 
 
94
static t_int *scalareq_tilde_perform(t_int *w)
 
95
{
 
96
  t_sample *in  = (t_sample *)(w[1]);
 
97
  t_sample f    = *(t_float *)(w[2]);
 
98
  t_sample *out = (t_sample *)(w[3]);
 
99
  int n = (int)(w[4]);
 
100
  while (n--) *out++ = (*in++ == f); 
 
101
  return (w+5);
 
102
}
 
103
 
 
104
static t_int *scalareq_tilde_perf8(t_int *w)
 
105
{
 
106
  t_sample *in  = (t_sample *)(w[1]);
 
107
  t_sample  g   = *(t_float *)(w[2]);
 
108
  t_sample *out = (t_sample *)(w[3]);
 
109
  int n = (int)(w[4]);
 
110
  for (; n; n -= 8, in += 8, out += 8)
 
111
    {
 
112
      t_sample f0 = in[0], f1 = in[1], f2 = in[2], f3 = in[3];
 
113
      t_sample f4 = in[4], f5 = in[5], f6 = in[6], f7 = in[7];
 
114
 
 
115
      out[0] = (f0 == g); out[1] = (f1 == g); out[2] = (f2 == g); out[3] = (f3 == g);
 
116
      out[4] = (f4 == g); out[5] = (f5 == g); out[6] = (f6 == g); out[7] = (f7 == g);
 
117
    }
 
118
  return (w+5);
 
119
}
 
120
 
 
121
#ifdef __SSE__
 
122
static t_int *eq_tilde_performSSE(t_int *w)
 
123
{
 
124
  __m128 *in1 = (__m128 *)(w[1]);
 
125
  __m128 *in2 = (__m128 *)(w[2]);
 
126
  __m128 *out = (__m128 *)(w[3]);
 
127
  int n = (int)(w[4])>>4;
 
128
  const __m128 one    = _mm_set1_ps(1.f);
 
129
 
 
130
  while (n--) {
 
131
    __m128 xmm0, xmm1;
 
132
    xmm0   = _mm_cmpeq_ps(in1[0], in2[0]);
 
133
    out[0] = _mm_and_ps  (xmm0 , one);
 
134
 
 
135
    xmm1   = _mm_cmpeq_ps(in1[1], in2[1]);
 
136
    out[1] = _mm_and_ps  (xmm1 , one);
 
137
 
 
138
    xmm0   = _mm_cmpeq_ps(in1[2], in2[2]);
 
139
    out[2] = _mm_and_ps  (xmm0 , one);
 
140
 
 
141
    xmm1   = _mm_cmpeq_ps(in1[3], in2[3]);
 
142
    out[3] = _mm_and_ps  (xmm1 , one);
 
143
 
 
144
    in1+=4;
 
145
    in2+=4;
 
146
    out+=4;
 
147
  }  
 
148
 
 
149
  return (w+5);
 
150
}
 
151
static t_int *scalareq_tilde_performSSE(t_int *w)
 
152
{
 
153
  __m128 *in = (__m128 *)(w[1]);
 
154
  __m128 *out = (__m128 *)(w[3]);
 
155
  float f = *(float *)(w[2]);
 
156
  __m128 scalar = _mm_set1_ps(f);
 
157
  int n = (int)(w[4])>>4;
 
158
  const __m128 one    = _mm_set1_ps(1.f);
 
159
 
 
160
  while (n--) {
 
161
    __m128 xmm0, xmm1;
 
162
    xmm0   = _mm_cmpeq_ps (in[0], scalar);
 
163
    out[0] = _mm_and_ps   (xmm0,  one);
 
164
 
 
165
    xmm1   = _mm_cmpeq_ps (in[1], scalar);
 
166
    out[1] = _mm_and_ps   (xmm1,  one);
 
167
 
 
168
    xmm0   = _mm_cmpeq_ps (in[2], scalar);
 
169
    out[2] = _mm_and_ps   (xmm0,  one);
 
170
 
 
171
    xmm1   = _mm_cmpeq_ps (in[3], scalar);
 
172
    out[3] = _mm_and_ps   (xmm1,  one);
 
173
 
 
174
    in +=4;
 
175
    out+=4;
 
176
  }
 
177
  return (w+5);
 
178
}
 
179
#endif /* __SSE__ */
 
180
 
 
181
static void eq_tilde_dsp(t_eq_tilde *x, t_signal **sp)
 
182
{
 
183
  t_sample*in1=sp[0]->s_vec;
 
184
  t_sample*in2=sp[1]->s_vec;
 
185
  t_sample*out=sp[2]->s_vec;
 
186
 
 
187
  int n=sp[0]->s_n;
 
188
 
 
189
  ZEXY_USEVAR(x);
 
190
 
 
191
#ifdef __SSE__
 
192
  if(
 
193
     Z_SIMD_CHKBLOCKSIZE(n)&&
 
194
     Z_SIMD_CHKALIGN(in1)&&
 
195
     Z_SIMD_CHKALIGN(in2)&&
 
196
     Z_SIMD_CHKALIGN(out)&&
 
197
     ZEXY_TYPE_EQUAL(t_sample, float)
 
198
     )
 
199
    {
 
200
      dsp_add(eq_tilde_performSSE, 4, in1, in2, out, n);
 
201
    } else
 
202
#endif
 
203
  if (n&7)
 
204
    dsp_add(eq_tilde_perform, 4, in1, in2, out, n);
 
205
  else  
 
206
    dsp_add(eq_tilde_perf8, 4, in1, in2, out, n);
 
207
}
 
208
 
 
209
static void scalareq_tilde_dsp(t_scalareq_tilde *x, t_signal **sp)
 
210
{
 
211
  t_sample*in =sp[0]->s_vec;
 
212
  t_sample*out=sp[1]->s_vec;
 
213
  int n       =sp[0]->s_n;
 
214
 
 
215
#ifdef __SSE__
 
216
  if(
 
217
     Z_SIMD_CHKBLOCKSIZE(n)&&
 
218
     Z_SIMD_CHKALIGN(in)&&
 
219
     Z_SIMD_CHKALIGN(out) &&
 
220
     ZEXY_TYPE_EQUAL(t_sample, float)
 
221
     )
 
222
    {
 
223
      dsp_add(scalareq_tilde_performSSE, 4, in, &x->x_g, out, n);
 
224
    } else
 
225
#endif
 
226
  if (n&7)
 
227
    dsp_add(scalareq_tilde_perform, 4, in, &x->x_g, out, n);
 
228
  else  
 
229
    dsp_add(scalareq_tilde_perf8,   4, in, &x->x_g, out, n);
 
230
}
 
231
 
 
232
static void eq_tilde_help(t_object*x)
 
233
{
 
234
  post("\n%c &&~\t\t:: test 2 signals for equality", HEARTSYMBOL);
 
235
}
 
236
void setup_0x3d0x3d0x7e(void)
 
237
{
 
238
  eq_tilde_class = class_new(gensym("==~"), (t_newmethod)eq_tilde_new, 0,
 
239
                             sizeof(t_eq_tilde), 0, A_GIMME, 0);
 
240
  class_addmethod(eq_tilde_class, (t_method)eq_tilde_dsp, gensym("dsp"), 0);
 
241
  CLASS_MAINSIGNALIN(eq_tilde_class, t_eq_tilde, x_f);
 
242
  class_addmethod  (eq_tilde_class, (t_method)eq_tilde_help, gensym("help"), A_NULL);
 
243
  class_sethelpsymbol(eq_tilde_class, gensym("zigbinops"));
 
244
 
 
245
  scalareq_tilde_class = class_new(gensym("==~"), 0, 0,
 
246
                                   sizeof(t_scalareq_tilde), 0, 0);
 
247
  CLASS_MAINSIGNALIN(scalareq_tilde_class, t_scalareq_tilde, x_f);
 
248
  class_addmethod(scalareq_tilde_class, (t_method)scalareq_tilde_dsp, gensym("dsp"),
 
249
                  0);
 
250
  class_addmethod  (scalareq_tilde_class, (t_method)eq_tilde_help, gensym("help"), A_NULL);
 
251
  class_sethelpsymbol(scalareq_tilde_class, gensym("zigbinops"));
 
252
 
 
253
  zexy_register("==~");
 
254
}