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
|
/*
* fixpoint.c - Fixed point routines.
*
* Written by
* Andreas Dehmel <dehmel@forwiss.tu-muenchen.de>
*
* This file is part of VICE, the Versatile Commodore Emulator.
* See README for copyright notice.
*
* 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., 59 Temple Place, Suite 330, Boston, MA
* 02111-1307 USA.
*
*/
#ifndef _FIXPOINT_C
#define _FIXPOINT_C
#ifdef _FIXPOINT_H
#define FIXPOINT_FROM_HEADER
#endif
#include "fixpoint.h"
#ifdef FIXPOINT_ARITHMETIC
#ifdef INLINE_FIXPOINT_FUNCTIONS
#define FUNC_INLINE_STATEMENT static inline
#else
#define FUNC_INLINE_STATEMENT
#endif
/* Only make the function(s) visible if no inlining or inlining _and_ we're
* not compiling fixpoint.c */
#if (!defined(INLINE_FIXPOINT_FUNCTIONS) || (defined(INLINE_FIXPOINT_FUNCTIONS) && defined(FIXPOINT_FROM_HEADER)))
FUNC_INLINE_STATEMENT vreal_t fixpoint_mult(vreal_t x, vreal_t y)
{
unsigned int a, b, c, d;
int sign = ((x ^ y) < 0) ? 1 : 0;
if (x < 0) x *= -1;
if (y < 0) y *= -1;
a = (((unsigned int) x) >> FIXPOINT_PREC);
b = ( (unsigned int) x) & ~(a << FIXPOINT_PREC);
c = (((unsigned int) y) >> FIXPOINT_PREC);
d = ( (unsigned int) y) & ~(c << FIXPOINT_PREC);
a = (((a * c) << FIXPOINT_PREC)
+ (a * d + b * c)
+ (((b * d) + (1 << (FIXPOINT_PREC - 1))) >> FIXPOINT_PREC));
return sign ? -a : a;
}
FUNC_INLINE_STATEMENT soundclk_t soundclk_mult(soundclk_t a, soundclk_t b)
{
unsigned long ia, ib, fa, fb;
ia = (a>>SOUNDCLK_PREC); fa = a & ((1<<SOUNDCLK_PREC)-1);
ib = (b>>SOUNDCLK_PREC); fb = b & ((1<<SOUNDCLK_PREC)-1);
return (((ia*ib)<<SOUNDCLK_PREC) + (ia*fb+ib*fa) + ((fa*fb)>>SOUNDCLK_PREC));
}
#endif
#endif
#endif
|