musix 0.3.5

Music player library for esoteric audio formats (music from C64,Amiga etc)
Documentation
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
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
 *   Mupen64plus - fpu.h                                                   *
 *   Mupen64Plus homepage: http://code.google.com/p/mupen64plus/           *
 *   Copyright (C) 2010 Ari64                                              *
 *                                                                         *
 *   This program is free software; you can redistribute it and/or modify  *
 *   it under the terms of the GNU General Public License as published by  *
 *   the Free Software Foundation; either version 2 of the License, or     *
 *   (at your option) any later version.                                   *
 *                                                                         *
 *   This program 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 General Public License for more details.                          *
 *                                                                         *
 *   You should have received a copy of the GNU General Public License     *
 *   along with this program; if not, write to the                         *
 *   Free Software Foundation, Inc.,                                       *
 *   51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.          *
 * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */

#ifndef M64P_R4300_FPU_H
#define M64P_R4300_FPU_H

#include <math.h>

#include "usf/usf.h"

#include "usf/usf_internal.h"

#include "r4300.h"

#ifdef _MSC_VER_32_DUMMY
  #define M64P_FPU_INLINE static __inline
  #include <float.h>
  typedef enum { FE_TONEAREST = 0, FE_TOWARDZERO, FE_UPWARD, FE_DOWNWARD } eRoundType;
  static void fesetround(eRoundType RoundType)
  {
    static const unsigned int msRound[4] = { _RC_NEAR, _RC_CHOP, _RC_UP, _RC_DOWN };
    unsigned int oldX87, oldSSE2;
    __control87_2(msRound[RoundType], _MCW_RC, &oldX87, &oldSSE2);
  }
  static __inline double round(double x) { return floor(x + 0.5); }
  static __inline float roundf(float x) { return (float) floor(x + 0.5); }
  static __inline double trunc(double x) { return (double) (int) x; }
  static __inline float truncf(float x) { return (float) (int) x; }
  #define isnan _isnan
#else
  #define M64P_FPU_INLINE static inline
  #include <fenv.h>
#endif


M64P_FPU_INLINE void set_rounding(usf_state_t * state)
{
  switch(state->rounding_mode) {
  case 0x33F:
    fesetround(FE_TONEAREST);
    break;
  case 0xF3F:
    fesetround(FE_TOWARDZERO);
    break;
  case 0xB3F:
    fesetround(FE_UPWARD);
    break;
  case 0x73F:
    fesetround(FE_DOWNWARD);
    break;
  }
}

M64P_FPU_INLINE void cvt_s_w(usf_state_t * state, int *source,float *dest)
{
  set_rounding(state);
  *dest = (float) *source;
}
M64P_FPU_INLINE void cvt_d_w(usf_state_t * state, int *source,double *dest)
{
  (void)state;
  *dest = (double) *source;
}
M64P_FPU_INLINE void cvt_s_l(usf_state_t * state, long long *source,float *dest)
{
  set_rounding(state);
  *dest = (float) *source;
}
M64P_FPU_INLINE void cvt_d_l(usf_state_t * state, long long *source,double *dest)
{
  set_rounding(state);
  *dest = (double) *source;
}
M64P_FPU_INLINE void cvt_d_s(usf_state_t * state, float *source,double *dest)
{
  (void)state;
  *dest = (double) *source;
}
M64P_FPU_INLINE void cvt_s_d(usf_state_t * state, double *source,float *dest)
{
  set_rounding(state);
  *dest = (float) *source;
}

M64P_FPU_INLINE void round_l_s(float *source,long long *dest)
{
  *dest = (long long) roundf(*source);
}
M64P_FPU_INLINE void round_w_s(float *source,int *dest)
{
  *dest = (int) roundf(*source);
}
M64P_FPU_INLINE void trunc_l_s(float *source,long long *dest)
{
  *dest = (long long) truncf(*source);
}
M64P_FPU_INLINE void trunc_w_s(float *source,int *dest)
{
  *dest = (int) truncf(*source);
}
M64P_FPU_INLINE void ceil_l_s(float *source,long long *dest)
{
  *dest = (long long) ceilf(*source);
}
M64P_FPU_INLINE void ceil_w_s(float *source,int *dest)
{
  *dest = (int) ceilf(*source);
}
M64P_FPU_INLINE void floor_l_s(float *source,long long *dest)
{
  *dest = (long long) floorf(*source);
}
M64P_FPU_INLINE void floor_w_s(float *source,int *dest)
{
  *dest = (int) floorf(*source);
}

M64P_FPU_INLINE void round_l_d(double *source,long long *dest)
{
  *dest = (long long) round(*source);
}
M64P_FPU_INLINE void round_w_d(double *source,int *dest)
{
  *dest = (int) round(*source);
}
M64P_FPU_INLINE void trunc_l_d(double *source,long long *dest)
{
  *dest = (long long) trunc(*source);
}
M64P_FPU_INLINE void trunc_w_d(double *source,int *dest)
{
  *dest = (int) trunc(*source);
}
M64P_FPU_INLINE void ceil_l_d(double *source,long long *dest)
{
  *dest = (long long) ceil(*source);
}
M64P_FPU_INLINE void ceil_w_d(double *source,int *dest)
{
  *dest = (int) ceil(*source);
}
M64P_FPU_INLINE void floor_l_d(double *source,long long *dest)
{
  *dest = (long long) floor(*source);
}
M64P_FPU_INLINE void floor_w_d(double *source,int *dest)
{
  *dest = (int) floor(*source);
}

M64P_FPU_INLINE void cvt_w_s(usf_state_t * state, float *source,int *dest)
{
  switch(state->FCR31&3)
  {
    case 0: round_w_s(source,dest);return;
    case 1: trunc_w_s(source,dest);return;
    case 2: ceil_w_s(source,dest);return;
    case 3: floor_w_s(source,dest);return;
  }
}
M64P_FPU_INLINE void cvt_w_d(usf_state_t * state, double *source,int *dest)
{
  switch(state->FCR31&3)
  {
    case 0: round_w_d(source,dest);return;
    case 1: trunc_w_d(source,dest);return;
    case 2: ceil_w_d(source,dest);return;
    case 3: floor_w_d(source,dest);return;
  }
}
M64P_FPU_INLINE void cvt_l_s(usf_state_t * state, float *source,long long *dest)
{
  switch(state->FCR31&3)
  {
    case 0: round_l_s(source,dest);return;
    case 1: trunc_l_s(source,dest);return;
    case 2: ceil_l_s(source,dest);return;
    case 3: floor_l_s(source,dest);return;
  }
}
M64P_FPU_INLINE void cvt_l_d(usf_state_t * state, double *source,long long *dest)
{
  switch(state->FCR31&3)
  {
    case 0: round_l_d(source,dest);return;
    case 1: trunc_l_d(source,dest);return;
    case 2: ceil_l_d(source,dest);return;
    case 3: floor_l_d(source,dest);return;
  }
}

M64P_FPU_INLINE void c_f_s(usf_state_t * state)
{
  state->FCR31 &= ~0x800000;
}
M64P_FPU_INLINE void c_un_s(usf_state_t * state, float *source,float *target)
{
  state->FCR31=(isnan(*source) || isnan(*target)) ? state->FCR31|0x800000 : state->FCR31&~0x800000;
}
                          
M64P_FPU_INLINE void c_eq_s(usf_state_t * state, float *source,float *target)
{
  if (isnan(*source) || isnan(*target)) {state->FCR31&=~0x800000;return;}
  state->FCR31 = *source==*target ? state->FCR31|0x800000 : state->FCR31&~0x800000;
}
M64P_FPU_INLINE void c_ueq_s(usf_state_t * state, float *source,float *target)
{
  if (isnan(*source) || isnan(*target)) {state->FCR31|=0x800000;return;}
  state->FCR31 = *source==*target ? state->FCR31|0x800000 : state->FCR31&~0x800000;
}

M64P_FPU_INLINE void c_olt_s(usf_state_t * state, float *source,float *target)
{
  if (isnan(*source) || isnan(*target)) {state->FCR31&=~0x800000;return;}
  state->FCR31 = *source<*target ? state->FCR31|0x800000 : state->FCR31&~0x800000;
}
M64P_FPU_INLINE void c_ult_s(usf_state_t * state, float *source,float *target)
{
  if (isnan(*source) || isnan(*target)) {state->FCR31|=0x800000;return;}
  state->FCR31 = *source<*target ? state->FCR31|0x800000 : state->FCR31&~0x800000;
}

M64P_FPU_INLINE void c_ole_s(usf_state_t * state, float *source,float *target)
{
  if (isnan(*source) || isnan(*target)) {state->FCR31&=~0x800000;return;}
  state->FCR31 = *source<=*target ? state->FCR31|0x800000 : state->FCR31&~0x800000;
}
M64P_FPU_INLINE void c_ule_s(usf_state_t * state, float *source,float *target)
{
  if (isnan(*source) || isnan(*target)) {state->FCR31|=0x800000;return;}
  state->FCR31 = *source<=*target ? state->FCR31|0x800000 : state->FCR31&~0x800000;
}

M64P_FPU_INLINE void c_sf_s(usf_state_t * state, float *source,float *target)
{
  //if (isnan(*source) || isnan(*target)) // FIXME - exception
  state->FCR31&=~0x800000;
}
M64P_FPU_INLINE void c_ngle_s(usf_state_t * state, float *source,float *target)
{
  //if (isnan(*source) || isnan(*target)) // FIXME - exception
  state->FCR31&=~0x800000;
}

M64P_FPU_INLINE void c_seq_s(usf_state_t * state, float *source,float *target)
{
  //if (isnan(*source) || isnan(*target)) // FIXME - exception
  state->FCR31 = *source==*target ? state->FCR31|0x800000 : state->FCR31&~0x800000;
}
M64P_FPU_INLINE void c_ngl_s(usf_state_t * state, float *source,float *target)
{
  //if (isnan(*source) || isnan(*target)) // FIXME - exception
  state->FCR31 = *source==*target ? state->FCR31|0x800000 : state->FCR31&~0x800000;
}

M64P_FPU_INLINE void c_lt_s(usf_state_t * state, float *source,float *target)
{
  //if (isnan(*source) || isnan(*target)) // FIXME - exception
  state->FCR31 = *source<*target ? state->FCR31|0x800000 : state->FCR31&~0x800000;
}
M64P_FPU_INLINE void c_nge_s(usf_state_t * state, float *source,float *target)
{
  //if (isnan(*source) || isnan(*target)) // FIXME - exception
  state->FCR31 = *source<*target ? state->FCR31|0x800000 : state->FCR31&~0x800000;
}

M64P_FPU_INLINE void c_le_s(usf_state_t * state, float *source,float *target)
{
  //if (isnan(*source) || isnan(*target)) // FIXME - exception
  state->FCR31 = *source<=*target ? state->FCR31|0x800000 : state->FCR31&~0x800000;
}
M64P_FPU_INLINE void c_ngt_s(usf_state_t * state, float *source,float *target)
{
  //if (isnan(*source) || isnan(*target)) // FIXME - exception
  state->FCR31 = *source<=*target ? state->FCR31|0x800000 : state->FCR31&~0x800000;
}

M64P_FPU_INLINE void c_f_d(usf_state_t * state)
{
  state->FCR31 &= ~0x800000;
}
M64P_FPU_INLINE void c_un_d(usf_state_t * state, double *source,double *target)
{
  state->FCR31=(isnan(*source) || isnan(*target)) ? state->FCR31|0x800000 : state->FCR31&~0x800000;
}
                          
M64P_FPU_INLINE void c_eq_d(usf_state_t * state, double *source,double *target)
{
  if (isnan(*source) || isnan(*target)) {state->FCR31&=~0x800000;return;}
  state->FCR31 = *source==*target ? state->FCR31|0x800000 : state->FCR31&~0x800000;
}
M64P_FPU_INLINE void c_ueq_d(usf_state_t * state, double *source,double *target)
{
  if (isnan(*source) || isnan(*target)) {state->FCR31|=0x800000;return;}
  state->FCR31 = *source==*target ? state->FCR31|0x800000 : state->FCR31&~0x800000;
}

M64P_FPU_INLINE void c_olt_d(usf_state_t * state, double *source,double *target)
{
  if (isnan(*source) || isnan(*target)) {state->FCR31&=~0x800000;return;}
  state->FCR31 = *source<*target ? state->FCR31|0x800000 : state->FCR31&~0x800000;
}
M64P_FPU_INLINE void c_ult_d(usf_state_t * state, double *source,double *target)
{
  if (isnan(*source) || isnan(*target)) {state->FCR31|=0x800000;return;}
  state->FCR31 = *source<*target ? state->FCR31|0x800000 : state->FCR31&~0x800000;
}

M64P_FPU_INLINE void c_ole_d(usf_state_t * state, double *source,double *target)
{
  if (isnan(*source) || isnan(*target)) {state->FCR31&=~0x800000;return;}
  state->FCR31 = *source<=*target ? state->FCR31|0x800000 : state->FCR31&~0x800000;
}
M64P_FPU_INLINE void c_ule_d(usf_state_t * state, double *source,double *target)
{
  if (isnan(*source) || isnan(*target)) {state->FCR31|=0x800000;return;}
  state->FCR31 = *source<=*target ? state->FCR31|0x800000 : state->FCR31&~0x800000;
}

M64P_FPU_INLINE void c_sf_d(usf_state_t * state, double *source,double *target)
{
  (void)source; (void)target;
  //if (isnan(*source) || isnan(*target)) // FIXME - exception
  state->FCR31&=~0x800000;
}
M64P_FPU_INLINE void c_ngle_d(usf_state_t * state, double *source,double *target)
{
  //if (isnan(*source) || isnan(*target)) // FIXME - exception
  state->FCR31&=~0x800000;
}

M64P_FPU_INLINE void c_seq_d(usf_state_t * state, double *source,double *target)
{
  //if (isnan(*source) || isnan(*target)) // FIXME - exception
  state->FCR31 = *source==*target ? state->FCR31|0x800000 : state->FCR31&~0x800000;
}
M64P_FPU_INLINE void c_ngl_d(usf_state_t * state, double *source,double *target)
{
  //if (isnan(*source) || isnan(*target)) // FIXME - exception
  state->FCR31 = *source==*target ? state->FCR31|0x800000 : state->FCR31&~0x800000;
}

M64P_FPU_INLINE void c_lt_d(usf_state_t * state, double *source,double *target)
{
  //if (isnan(*source) || isnan(*target)) // FIXME - exception
  state->FCR31 = *source<*target ? state->FCR31|0x800000 : state->FCR31&~0x800000;
}
M64P_FPU_INLINE void c_nge_d(usf_state_t * state, double *source,double *target)
{
  //if (isnan(*source) || isnan(*target)) // FIXME - exception
  state->FCR31 = *source<*target ? state->FCR31|0x800000 : state->FCR31&~0x800000;
}

M64P_FPU_INLINE void c_le_d(usf_state_t * state, double *source,double *target)
{
  //if (isnan(*source) || isnan(*target)) // FIXME - exception
  state->FCR31 = *source<=*target ? state->FCR31|0x800000 : state->FCR31&~0x800000;
}
M64P_FPU_INLINE void c_ngt_d(usf_state_t * state, double *source,double *target)
{
  //if (isnan(*source) || isnan(*target)) // FIXME - exception
  state->FCR31 = *source<=*target ? state->FCR31|0x800000 : state->FCR31&~0x800000;
}


M64P_FPU_INLINE void add_s(usf_state_t * state, float *source1,float *source2,float *target)
{
  set_rounding(state);
  *target=(*source1)+(*source2);
}
M64P_FPU_INLINE void sub_s(usf_state_t * state, float *source1,float *source2,float *target)
{
  set_rounding(state);
  *target=(*source1)-(*source2);
}
M64P_FPU_INLINE void mul_s(usf_state_t * state, float *source1,float *source2,float *target)
{
  set_rounding(state);
  *target=(*source1)*(*source2);
}
M64P_FPU_INLINE void div_s(usf_state_t * state, float *source1,float *source2,float *target)
{
  set_rounding(state);
  *target=(*source1)/(*source2);
}
M64P_FPU_INLINE void sqrt_s(usf_state_t * state, float *source,float *target)
{
  set_rounding(state);
  *target=sqrtf(*source);
}
M64P_FPU_INLINE void abs_s(usf_state_t * state, float *source,float *target)
{
  (void)state;
  *target=fabsf(*source);
}
M64P_FPU_INLINE void mov_s(usf_state_t * state, float *source,float *target)
{
  (void)state;
  *target=*source;
}
M64P_FPU_INLINE void neg_s(usf_state_t * state, float *source,float *target)
{
  (void)state;
  *target=-(*source);
}
M64P_FPU_INLINE void add_d(usf_state_t * state, double *source1,double *source2,double *target)
{
  set_rounding(state);
  *target=(*source1)+(*source2);
}
M64P_FPU_INLINE void sub_d(usf_state_t * state, double *source1,double *source2,double *target)
{
  set_rounding(state);
  *target=(*source1)-(*source2);
}
M64P_FPU_INLINE void mul_d(usf_state_t * state, double *source1,double *source2,double *target)
{
  set_rounding(state);
  *target=(*source1)*(*source2);
}
M64P_FPU_INLINE void div_d(usf_state_t * state, double *source1,double *source2,double *target)
{
  set_rounding(state);
  *target=(*source1)/(*source2);
}
M64P_FPU_INLINE void sqrt_d(usf_state_t * state, double *source,double *target)
{
  set_rounding(state);
  *target=sqrt(*source);
}
M64P_FPU_INLINE void abs_d(usf_state_t * state, double *source,double *target)
{
  (void)state;
  *target=fabs(*source);
}
M64P_FPU_INLINE void mov_d(usf_state_t * state, double *source,double *target)
{
  (void)state;
  *target=*source;
}
M64P_FPU_INLINE void neg_d(usf_state_t * state, double *source,double *target)
{
  (void)state;
  *target=-(*source);
}

#endif /* M64P_R4300_FPU_H */