-
Notifications
You must be signed in to change notification settings - Fork 5
/
oscillators.asm
611 lines (431 loc) · 14.4 KB
/
oscillators.asm
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
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
global ondaTriangular
global ondaSierra
global ondaPulso
global ondaCuadrada
global limpiarBuffer
section .data
align 16 ;Alineo
cuatros: dd 4.0, 4.0, 4.0, 4.0
medios: dd 0.5, 0.5, 0.5, 0.5
sumadorCounter: dd 0.0, 1.0, 2.0, 3.0
medioMedios: dd 0.25, 0.25, 0.25, 0.25
menosUnos: dd -1.0, -1.0, -1.0, -1.0
unos: dd 1.0, 1.0, 1.0, 1.0
dos: dd 2.0, 2.0, 2.0, 2.0
puntoDos: dd 0.2, 0.2, 0.2, 0.2
ceros: dd 0.0, 0.0, 0.0, 0.0
section .text
;void limpiarBuffers(uint32_t from, uint32_t to, float* buffer);
;void limpiarBuffers
;uint32_i from edi
;uint32_i to esi
;float* buffer rdx
limpiarBuffer:
push rbp
mov rbp, rsp
push rbx ;rbx es i
push r12 ;
push r13 ;
push r14 ;
;----seteo variables
mov ebx, edi ;ebx es i
movdqa xmm10, [rel ceros] ;xmm10 = 0.0 | 0.0 | 0.0 | 0.0
.ciclo:
cmp ebx, esi ;si i es to, termino
jae .fin
mov r14d, ebx
imul r14d, 4 ;r14d es i * 4
add r14, rdx ;r14d es la posicion a escribir del buffer
movdqu [r14], xmm10 ;guardo ceros
;---incrementaciones
add ebx, 4 ;incremento el contador i
jmp .ciclo
.fin:
pop r14
pop r13
pop r12
pop rbx
pop rbp
ret
; byte = 8b = char
; word = 2B = short
; dw = 4B = int = float
; qw = 8B = r = double
; dqw = 16B = xmm
; void OndaSierra(uint32_t from, uint32_t to, uint32_t counter, float* buffer, float subperiod, float vol, float env){
; for (uint32_t i = from; i < to; ++i, counter++) {
; buffer[i] += vol * (2. * fmod(counter, subperiod) / subperiod - 1) * env;
; }
; }
; buffer[0] = &buffer + 0
; buffer[1] = &buffer + 4
; buffer[2] = &buffer + 8
; buffer[3] = &buffer + 12
; buffer[4] = &buffer + 16
;void ondaSierra
;uint32_i from edi
;uint32_i to esi
;uint32_t counter edx
;float* buffer rcx
;float subperiod xmm0
;float vol xmm1
;float env xmm2
ondaSierra:
push rbp
mov rbp, rsp
push rbx ;rbx es i
push r12 ;
push r13 ;
push r14 ;
;----seteo variables
mov ebx, edi ;ebx es i
movdqa xmm10, [rel unos] ;xmm10 = 1.0 | 1.0 | 1.0 | 1.0
;movdqu xmm4, [rel cuatros]
movdqu xmm4, xmm10
addps xmm4, xmm4
addps xmm4, xmm4 ;xmm4 es 4.0 | 4.0 | 4.0 | 4.0
;----broadcasteo variables
pshufd xmm0, xmm0, 0 ;broadcasteo subperiod
;movdqu xmm6, [rel dos]
movdqu xmm6, xmm10
addps xmm6, xmm6 ;xmm6 tiene 2.0 | 2.0 | 2.0 | 2.0
divps xmm6, xmm0 ;xmm6 tiene 2/subperiod | 2/subperiod | 2/subperiod | 2/subperiod
pshufd xmm1, xmm1, 0 ;broadcasteo vol
pshufd xmm2, xmm2, 0 ;broadcasteo env
movd xmm3, edx
pshufd xmm3, xmm3, 0 ;broadcasteo counter, en xmm3
cvtdq2ps xmm3, xmm3
addps xmm3, [rel sumadorCounter] ;xmm3= counter | counter+1 | counter+2 | counter +3
.ciclo:
cmp ebx, esi ;si i es to, termino
jae .fin
mov r14d, ebx
imul r14d, 4 ;r16d es i * 4
add r14, rcx ;r16d es la posicion a escribir del buffer
movdqu xmm7, [r14] ;levanto *buffer + i a xmm7
;---en xmm5 calculo el valor a sumarle a buffer
;--xmm5 = fmod(counter, subperiod)
;No hay fmod, así que me las arreglo:
;--xmm5 = (((counter/subperiod) - truncf(counter/subperiod))*subperiod)
movdqu xmm5, xmm3 ;xmm5 = counter
divps xmm5, xmm0 ;xmm5 = counter/subperiod
movdqu xmm8, xmm5 ;xmm8 = counter/subperiod
roundps xmm8, xmm8, 3 ;xmm8 = roundps(counter/subperiod, 3), trunco xmm8
subps xmm5, xmm8 ;xmm5 = (counter/subperiod) - truncf(counter/subperiod)
mulps xmm5, xmm0 ;xmm8 = ((counter/subperiod) - truncf(counter/subperiod))*subperiod
;----
;buffer[i] += vol * (2. * fmod(counter, subperiod) / subperiod - 1) * env;
mulps xmm5, xmm6 ;lo multiplico por 2.0 /subperiod
subps xmm5, xmm10 ;le resto unos
mulps xmm5, xmm1 ;lo multiplico por vol
mulps xmm5, xmm2 ;lo multiplico por env
;---counter = xmm7 + xmm5
addps xmm5, xmm7 ;le agrego el previo valor del buffer
movdqu [r14], xmm5 ;guardo
;---incrementaciones
addps xmm3, xmm4 ;a counter le sumo 4 | 4 | 4 | 4
add ebx, 4 ;incremento el contador i
jmp .ciclo
.fin:
pop r14
pop r13
pop r12
pop rbx
pop rbp
ret
; void ondaCuadrada(uint32_t from, uint32_t to, uint32_t counter, float* buffer, float subperiod, float vol, float env){
; for (uint32_t i = from; i < to; ++i, counter++) {
; buffer[i] += vol * (2. * ((fmod(counter, subperiod) / subperiod - .5) < 0)-1) * env;
; }
; }
;void ondaCuadrada - una sierra que cuando vale > .5 es un 1, y en cc es un 0
;uint32_i from edi
;uint32_i to esi
;uint32_t counter edx
;float* buffer rcx
;float subperiod xmm0
;float vol xmm1
;float env xmm2
ondaCuadrada:
push rbp
mov rbp, rsp
push rbx ;rbx es i
push r12 ;dasd
push r13 ;
push r14 ;
;----seteo variables y constantes
mov ebx, edi ;ebx es i
mov r14d, 0xFFFFFFFF
movq xmm14, r14
pshufd xmm14, xmm14, 0 ;xmm14 es full 1
movdqa xmm11, [rel medios] ;xmm11 = 0.5 | 0.5 | 0.5 | 0.5
;movdqu xmm10, [rel unos]
movdqu xmm10, xmm11
addps xmm10, xmm10 ;xmm10 = 1.0 | 1.0 | 1.0 | 1.0
;movdqu xmm4, [rel cuatros]
movdqu xmm4, xmm10
addps xmm4, xmm4
addps xmm4, xmm4 ;xmm4 es 4.0 | 4.0 | 4.0 | 4.0
;movdqu xmm12, [rel ceros] ;xmm12 es 0.0 | 0.0 | 0.0 | 0.0
movdqa xmm12, xmm4
subps xmm12, xmm12
pshufd xmm0, xmm0, 0 ;broadcasteo subperiod
;movdqu xmm6, [rel dos]
movdqu xmm6, xmm10
addps xmm6, xmm6 ;xmm6 es 2.0 | 2.0 | 2.0 | 2.0
pshufd xmm1, xmm1, 0 ;broadcasteo vol
pshufd xmm2, xmm2, 0 ;broadcasteo env
movd xmm3, edx
pshufd xmm3, xmm3, 0 ;broadcasteo counter, en xmm3
cvtdq2ps xmm3, xmm3
addps xmm3, [rel sumadorCounter] ;xmm3= counter | counter+1 | counter+2 | counter +3
.ciclo:
cmp ebx, esi ;si i es to, termino
jae .fin
mov r14d, ebx
imul r14d, 4 ;r16d es i * 4
add r14, rcx ;r16d es la posicion a escribir del buffer
movdqu xmm7, [r14] ;levanto *buffer + i a xmm7
;---en xmm5 calculo el valor a sumarle a buffer
;--xmm5 = fmod(counter, subperiod)
;No hay fmod, así que me las arreglo:
;--xmm5 = (((counter/subperiod) - truncf(counter/subperiod))*subperiod)
movdqu xmm5, xmm3 ;xmm5 = counter
divps xmm5, xmm0 ;xmm5 = counter/subperiod
movdqu xmm8, xmm5 ;xmm8 = counter/subperiod
roundps xmm8, xmm8, 3 ;xmm8 = roundps(counter/subperiod, 3), trunco xmm8
subps xmm5, xmm8 ;xmm5 = (counter/subperiod) - truncf(counter/subperiod)
mulps xmm5, xmm0 ;xmm8 = ((counter/subperiod) - truncf(counter/subperiod))*subperiod
;----
;buffer[i] += vol * (2. * ((fmod(counter, subperiod) / subperiod - .5) < 0)-1) * env;
divps xmm5, xmm0 ;lo divido por subperiod
subps xmm5, xmm11 ;le resto .5
cmpps xmm5, xmm12, 1 ;donde xmm5 < 0 hay unos, si no, hay ceros
movdqu xmm13, xmm14 ;xmm13 es full 1
pxor xmm13, xmm5 ;donde xmm5 >= 0 hay unos, si no, hay ceros
pand xmm5, xmm10 ;donde xmm5 < 0, hay un 1.0. donde no, hay ceros
pand xmm13, xmm12 ;donde xmm5>= 0 hay un 0.0, donde no, hay ceros.
por xmm5, xmm13 ;donde xmm5<0 hay 1.0. donde no, hay 0.0.
mulps xmm5, xmm6 ;lo multiplico por 2
subps xmm5, xmm10 ;le resto unos
mulps xmm5, xmm1 ;lo multiplico por vol
mulps xmm5, xmm2 ;lo multiplico por env
;---counter = xmm7 + xmm5
addps xmm5, xmm7 ;le agrego el previo valor del buffer
movdqu [r14], xmm5 ;guardo
;---incrementaciones
addps xmm3, xmm4 ;a counter le sumo 4 | 4 | 4 | 4
add ebx, 4 ;incremento el contador i
jmp .ciclo
.fin:
pop r14
pop r13
pop r12
pop rbx
pop rbp
ret
; void ondaPulso(uint32_t from, uint32_t to, uint32_t counter, float* buffer, float subperiod, float vol, float env){
; for (uint32_t i = from; i < to; ++i, counter++) {
; buffer[i] += vol * (2. * ((fmod(counter, subperiod) / subperiod - .2) < 0)-1) * env;
; }
; }
;void ondaPulso - idem cuadrada, pero con .2 en vez de .5
;uint32_i from edi
;uint32_i to esi
;uint32_t counter edx
;float* buffer ecx
;float subperiod xmm0
;float vol xmm1
;float env xmm2
ondaPulso:
push rbp
mov rbp, rsp
push rbx ;rbx es i
push r12 ;
push r13 ;
push r14 ;
;----seteo variables y constantes
mov ebx, edi ;ebx es i
mov r14d, 0xFFFFFFFF
movq xmm14, r14
pshufd xmm14, xmm14, 0 ;xmm14 es full 1
movdqa xmm15, [rel puntoDos] ;xmm11 = 0.2 | 0.2 | 0.2 | 0.2
; movdqu xmm11, [rel medios]
; movdqu xmm10, [rel unos]
movdqa xmm10, xmm15 ;.2
addps xmm10, xmm10 ;.4
addps xmm10, xmm10 ;.8
addps xmm10, xmm15 ;1. ;xmm10 = 1.0 | 1.0 | 1.0 | 1.0
; movdqu xmm4, [rel cuatros]
movdqa xmm4, xmm10 ;1
addps xmm4, xmm4 ;2
addps xmm4, xmm4 ;xmm4 es 4.0 | 4.0 | 4.0 | 4.0
;movdqu xmm12, [rel ceros] ;xmm12 es 0.0 | 0.0 | 0.0 | 0.0
movdqa xmm12, xmm4 ;4.
subps xmm12, xmm12 ;0.
pshufd xmm0, xmm0, 0 ;broadcasteo subperiod
;movdqu xmm6, [rel dos]
movdqa xmm6, xmm10
addps xmm6, xmm6 ;xmm6 es 2.0 | 2.0 | 2.0 | 2.0
pshufd xmm1, xmm1, 0 ;broadcasteo vol
pshufd xmm2, xmm2, 0 ;broadcasteo env
movd xmm3, edx
pshufd xmm3, xmm3, 0 ;broadcasteo counter, en xmm3
cvtdq2ps xmm3, xmm3
addps xmm3, [rel sumadorCounter] ;xmm3= counter | counter+1 | counter+2 | counter +3
.ciclo:
cmp ebx, esi ;si i es to, termino
jae .fin
mov r14d, ebx
imul r14d, 4 ;r16d es i * 4
add r14, rcx ;r16d es la posicion a escribir del buffer
movdqu xmm7, [r14] ;levanto *buffer + i a xmm7
;---en xmm5 calculo el valor a sumarle a buffer
;--xmm5 = fmod(counter, subperiod)
;No hay fmod, así que me las arreglo:
;--xmm5 = (((counter/subperiod) - truncf(counter/subperiod))*subperiod)
movdqu xmm5, xmm3 ;xmm5 = counter
divps xmm5, xmm0 ;xmm5 = counter/subperiod
movdqu xmm8, xmm5 ;xmm8 = counter/subperiod
roundps xmm8, xmm8, 3 ;xmm8 = roundps(counter/subperiod, 3), trunco xmm8
subps xmm5, xmm8 ;xmm5 = (counter/subperiod) - truncf(counter/subperiod)
mulps xmm5, xmm0 ;xmm8 = ((counter/subperiod) - truncf(counter/subperiod))*subperiod
;----
;buffer[i] += vol * (2. * ((fmod(counter, subperiod) / subperiod - .5) < 0)-1) * env;
divps xmm5, xmm0 ;lo divido por subperiod
subps xmm5, xmm15 ;le resto .2
cmpps xmm5, xmm12, 1 ;donde xmm5 < 0 hay unos, si no, hay ceros
movdqu xmm13, xmm14 ;xmm13 es full 1
pxor xmm13, xmm5 ;donde xmm5 >= 0 hay unos, si no, hay ceros
pand xmm5, xmm10 ;donde xmm5 < 0, hay un 1.0. donde no, hay ceros
pand xmm13, xmm12 ;donde xmm5>= 0 hay un 0.0, donde no, hay ceros.
por xmm5, xmm13 ;donde xmm5<0 hay 1.0. donde no, hay 0.0.
mulps xmm5, xmm6 ;lo multiplico por 2
subps xmm5, xmm10 ;le resto unos
mulps xmm5, xmm1 ;lo multiplico por vol
mulps xmm5, xmm2 ;lo multiplico por env
;---counter = xmm7 + xmm5
addps xmm5, xmm7 ;le agrego el previo valor del buffer
movdqu [r14], xmm5 ;guardo
;---incrementaciones
addps xmm3, xmm4 ;a counter le sumo 4 | 4 | 4 | 4
add ebx, 4 ;incremento el contador i
jmp .ciclo
.fin:
pop r14
pop r13
pop r12
pop rbx
pop rbp
ret
;void ondaTriangular(uint32_t from, uint32_t to, uint32_t counter, float* buffer, float subperiod, float vol, float env){
; for (uint32_t i = from; i < to; ++i, counter++) {
; buffer[i] += vol * (4. * (fabs(fmod((counter + subperiod/4.), subperiod) /
; subperiod - .5)-.25)) * env;
; }
;}
;void ondaTriangular (
;uint32_i from edi
;uint32_i to esi
;uint32_t counter edx
;float* buffer ecx
;float subperiod xmm0
;float vol xmm1
;float env xmm2
ondaTriangular:
push rbp
mov rbp, rsp
push rbx ;rbx es i
push r12 ;
push r13 ;
push r14 ;
;seteo variables
mov ebx, edi ;ebx es i
;----broadcasteo variables
pshufd xmm0, xmm0, 0 ;broadcasteo subperiod
pshufd xmm1, xmm1, 0 ;broadcasteo vol
pshufd xmm2, xmm2, 0 ;broadcasteo env
;muevo counter a xmm3, broadcasteo y lo sumo con 0 | 1 | 2 | 3
movd xmm3, edx
pshufd xmm3, xmm3, 0
cvtdq2ps xmm3, xmm3
addps xmm3, [rel sumadorCounter]
;----seteo constantes - en vez de hacer accesos a memoria los calculo del que tiene .25
movdqu xmm14, [rel medioMedios] ;xmm14 va a tener cuatro .25
;movdqu xmm4, [rel cuatros] ;xmm4 va a tener cuatro cuatros en floats
movdqu xmm4, xmm14
addps xmm4, xmm4 ;.5
addps xmm4, xmm4 ;1.
addps xmm4, xmm4 ;2.
addps xmm4, xmm4 ;4.
movdqu xmm13, xmm0
divps xmm13, xmm4 ;xmm13 va a tener cuatro subperiod/4 en floats
;movdqa xmm5, [rel medios] ;xmm5 va a tener cuatro .5 en floats
movdqa xmm5, xmm14 ;.25
addps xmm5, xmm5 ;.5
;movdqu xmm10, [rel ceros] ;xmm10 va a tener cuatro ceros
movdqa xmm10, xmm5 ;.5
subps xmm10, xmm10 ;0.
;movdqu xmm15, [rel menosUnos] ;xmm15 va a tener cuatro -1
movdqu xmm15, xmm5 ;.5
subps xmm15, xmm5 ;0.
subps xmm15, xmm5 ;-.5
subps xmm15, xmm5 ;-1.
mov r14d, 0xFFFFFFFF
movd xmm11, r14d
pshufd xmm11, xmm11, 0 ;xmm11 va a tener full 1
.ciclo:
cmp ebx, esi ;si i es to, termino
jae .fin
;buffer[i] += vol * (4. * [fabs(fmod[(counter + subperiod/4.), subperiod] / subperiod - .5)-.25]) * env;
;aux = counter + subperiod/4
movdqu xmm6, xmm3 ;xmm6 = counter
addps xmm6, xmm13 ;xmm6 = counter + subperiod/4.
;--xmm6 = fmod(aux, subperiod)
;No hay fmod, así que me las arreglo:
;--xmm6 = (((aux/subperiod) - truncf(aux/subperiod))*subperiod)
divps xmm6, xmm0 ;xmm6 = aux/subperiod
movdqu xmm8, xmm6 ;xmm8 = aux/subperiod
roundps xmm8, xmm8, 3 ;xmm8 = roundps(aux/subperiod, 3), trunco xmm8
subps xmm6, xmm8 ;xmm6 = (aux/subperiod) - truncf(aux/subperiod))
;mulps xmm6, xmm0 ;xmm6 = ((aux/subperiod) - truncf(aux/subperiod))*subperiod
;----
;aux = aux / subperiod
;divps xmm6, xmm0 ;se tacha con el mulps de arriba
;aux = aux - .5
subps xmm6, xmm5
;----xmm6 = fabs(xmm6);
;como no existe para simd, me las arreglo
movdqu xmm8, xmm6 ;copio a xmm8
movdqu xmm7, xmm6 ;copio a xmm7
cmpps xmm8, xmm10, 1 ;es equivalente a cmpltps xmm8, [ceros] -> da unos donde era negativo
movdqu xmm9, xmm8
pxor xmm9, xmm11 ;en xmm9 tengo unos donde era positivo
pand xmm9, xmm6 ;en xmm9 tengo el valor donde era positivo. 0 cc
mulps xmm7, xmm15 ;en xmm7 tengo los valores multiplicados por -1
pand xmm8, xmm7 ;en xmm8 tengo el valor multiplicado por -1, si era negativo. 0 cc
por xmm8, xmm9 ;en xmm8 tengo los valores cuando eran pos, y los valores *-1 cuando eran neg
;----
subps xmm8, xmm14 ;le resto .25
mulps xmm8, xmm4 ;multiplico por 4
mulps xmm8, xmm2 ;multiplico por env
mulps xmm8, xmm1 ;multiplico por vol
lea r14, [rcx + rbx *4] ;r14d es &buffer + i * 4 - lea es mas eficiente
; mov r14d, ebx
; imul r14d, 4 ;r16d es i * 4
; add r14d, ecx ;r16d es la posicion a escribir del buffer
movdqu xmm9, [r14]
addps xmm8, xmm9
;addps xmm8, [r14d] ;levanto del buffer y sumo
movdqu [r14], xmm8 ;escribo en el buffer
;---incrementaciones
addps xmm3, xmm4 ;a counter le sumo 4 | 4 | 4 | 4
add ebx, 4 ;incremento el contador i
jmp .ciclo
.fin:
pop r14
pop r13
pop r12
pop rbx
pop rbp
ret