home *** CD-ROM | disk | FTP | other *** search
/ GEMini Atari / GEMini_Atari_CD-ROM_Walnut_Creek_December_1993.iso / zip / gnu / gxxinc.lzh / GXXINC / XFIX24.H < prev    next >
C/C++ Source or Header  |  1991-07-07  |  12KB  |  596 lines

  1. // This may look like C code, but it is really -*- C++ -*-
  2. /* 
  3. Copyright (C) 1988 Free Software Foundation
  4.     written by Kurt Baudendistel (gt-eedsp!baud@gatech.edu)
  5.     adapted for libg++ by Doug Lea (dl@rocky.oswego.edu)
  6.  
  7. This file is part of GNU CC.
  8.  
  9. GNU CC is distributed in the hope that it will be useful,
  10. but WITHOUT ANY WARRANTY.  No author or distributor
  11. accepts responsibility to anyone for the consequences of using it
  12. or for whether it serves any particular purpose or works at all,
  13. unless he says so in writing.  Refer to the GNU CC General Public
  14. License for full details.
  15.  
  16. Everyone is granted permission to copy, modify and redistribute
  17. GNU CC, but only under the conditions described in the
  18. GNU CC General Public License.   A copy of this license is
  19. supposed to have been given to you along with GNU CC so you
  20. can know your rights and responsibilities.  It should be in a
  21. file named COPYING.  Among other things, the copyright notice
  22. and this notice must be preserved on all copies.  
  23. */
  24.  
  25. #ifndef _Fix24_h
  26. #ifdef __GNUG__
  27. #pragma once
  28. #pragma interface
  29. #endif
  30. #define _Fix24_h 1
  31.  
  32. #include <stream.h>
  33. #include <std.h>
  34.  
  35. // extra type definitions 
  36.  
  37. typedef struct {
  38.   long                 u;
  39.   unsigned long           l;
  40. } twolongs;
  41.  
  42. // constant definitions
  43.  
  44. static const int
  45.   Fix24_shift = 31;
  46.           
  47. static const double
  48.   Fix24_fs = 2147483648.,        // 2^Fix24_shift
  49.   Fix24_mult = Fix24_fs,
  50.   Fix24_div = 1./Fix24_fs,
  51.   Fix24_max = 1. - .5/Fix24_fs,
  52.   Fix24_min = -1.;
  53.       
  54. static const unsigned long
  55.   Fix24_msb = 0x80000000L,
  56.   Fix24_lsb = 0x00000100L,
  57.   Fix24_m_max = 0x7fffff00L,
  58.   Fix24_m_min = 0x80000000L;
  59.  
  60. static const double
  61.   Fix48_fs = 36028797018963968.,    // 2^(24+Fix24_shift)
  62.   Fix48_max = 1. - .5/Fix48_fs,
  63.   Fix48_min = -1.,
  64.   Fix48_div_u = 1./Fix24_fs,
  65.   Fix48_div_l = 1./Fix48_fs;
  66.    
  67. static const twolongs
  68.   Fix48_msb = { 0x80000000L, 0L },
  69.   Fix48_lsb = { 0L, 0x00000100L },
  70.   Fix48_m_max = { 0x7fffff00L, 0xffffff00L },
  71.   Fix48_m_min = { 0x80000000L, 0L };
  72.           
  73. //
  74. // Fix24    class: 24-bit Fixed point data type
  75. //
  76. //    consists of a 24-bit mantissa (sign bit & 23 data bits).
  77. //
  78.  
  79. class Fix24 
  80.   friend class          Fix48;
  81.  
  82.   long                  m;
  83.  
  84.   long                  assign(double d);
  85.          operator       double();
  86.                         Fix24(long i);
  87.                         Fix24(int i);
  88.  
  89.  
  90. public:
  91.                         Fix24();
  92.                         Fix24(Fix24&  f);
  93.                         Fix24(double d);
  94.                         Fix24(Fix48& f);
  95.  
  96.                         ~Fix24();
  97.  
  98.   Fix24&                operator=(Fix24&  f);
  99.   Fix24&                operator=(double d);
  100.   Fix24&                operator=(Fix48& f);
  101.  
  102.   friend long&          mantissa(Fix24&  f);
  103.   friend double         value(Fix24&  f);
  104.  
  105.   Fix24                 operator +  ();
  106.   Fix24                 operator -  ();
  107.  
  108.   friend Fix24          operator +  (Fix24&  f, Fix24&  g);
  109.   friend Fix24          operator -  (Fix24&  f, Fix24&  g);
  110.   friend Fix48          operator *  (Fix24&  f, Fix24&  g);
  111.   friend Fix24          operator *  (Fix24&  f, long     g);
  112.   friend Fix24          operator *  (long     g, Fix24&  f);
  113.   friend Fix24          operator /  (Fix24&  f, Fix24&  g);
  114.   friend Fix24          operator << (Fix24&  f, int b);
  115.   friend Fix24          operator >> (Fix24&  f, int b);
  116.  
  117.   Fix24&                operator += (Fix24&  f);
  118.   Fix24&                operator -= (Fix24&  f);
  119.   Fix24&                operator *= (Fix24&  f);
  120.   Fix24&                operator *= (long    b);
  121.   Fix24&                operator /= (Fix24&  f);
  122.  
  123.   Fix24&                operator <<=(int b);
  124.   Fix24&                operator >>=(int b);
  125.  
  126.   friend int            operator == (Fix24&  f, Fix24&  g);
  127.   friend int            operator != (Fix24&  f, Fix24&  g);
  128.   friend int            operator >= (Fix24&  f, Fix24&  g);
  129.   friend int            operator <= (Fix24&  f, Fix24&  g);
  130.   friend int            operator >  (Fix24&  f, Fix24&  g);
  131.   friend int            operator <  (Fix24&  f, Fix24&  g);
  132.  
  133.   friend istream&       operator >> (istream& s, Fix24&  f);
  134.   friend ostream&       operator << (ostream& s, Fix24&  f);
  135.  
  136.   void                  overflow(long&);
  137.   void                  range_error(long&);
  138. };
  139.  
  140.  
  141. //
  142. // Fix48 class: 48-bit Fixed point data type
  143. //
  144. //    consists of a 48-bit mantissa (sign bit & 47 data bits).
  145. //
  146.  
  147. class Fix48 
  148.   friend class         Fix24;
  149.  
  150.   twolongs             m;
  151.  
  152.   twolongs             assign(double d);
  153.          operator      double();
  154.                        Fix48(twolongs i);
  155.  
  156. public:
  157.                        Fix48();
  158.                        Fix48(Fix48& f);
  159.                        Fix48(Fix24&  f);
  160.                        Fix48(double d);
  161.                        ~Fix48();
  162.  
  163.   Fix48&               operator =  (Fix48& f);
  164.   Fix48&               operator =  (Fix24&  f);
  165.   Fix48&               operator =  (double d);
  166.  
  167.   friend twolongs&     mantissa(Fix48& f);
  168.   friend double        value(Fix48& f);
  169.  
  170.   Fix48                operator +  ();
  171.   Fix48                operator -  ();
  172.  
  173.   friend Fix48         operator +  (Fix48& f, Fix48& g);
  174.   friend Fix48         operator -  (Fix48& f, Fix48& g);
  175.   friend Fix48         operator *  (Fix48& f, long   g);
  176.   friend Fix48         operator *  (long   g, Fix48& f);
  177.   friend Fix48         operator << (Fix48& f, int b);
  178.   friend Fix48         operator >> (Fix48& f, int b);
  179.  
  180.   friend Fix48         operator *  (Fix24&  f, Fix24&  g);
  181.  
  182.   Fix48&               operator += (Fix48& f);
  183.   Fix48&               operator -= (Fix48& f);
  184.   Fix48&               operator *= (long   b);
  185.   Fix48&               operator <<=(int b);
  186.   Fix48&               operator >>=(int b);
  187.  
  188.   friend int           operator == (Fix48& f, Fix48& g);
  189.   friend int           operator != (Fix48& f, Fix48& g);
  190.   friend int           operator >= (Fix48& f, Fix48& g);
  191.   friend int           operator <= (Fix48& f, Fix48& g);
  192.   friend int           operator >  (Fix48& f, Fix48& g);
  193.   friend int           operator <  (Fix48& f, Fix48& g);
  194.  
  195.   friend istream&      operator >> (istream& s, Fix48& f);
  196.   friend ostream&      operator << (ostream& s, Fix48& f);
  197.  
  198.   void                 overflow(twolongs& i);
  199.   void                 range_error(twolongs& i);
  200. };
  201.  
  202.  
  203. // active error handler declarations
  204.  
  205. typedef void (*Fix24_peh)(long&);
  206. typedef void (*Fix48_peh)(twolongs&);
  207.  
  208. extern Fix24_peh Fix24_overflow_handler;
  209. extern Fix48_peh Fix48_overflow_handler;
  210.  
  211. extern Fix24_peh Fix24_range_error_handler;
  212. extern Fix48_peh Fix48_range_error_handler;
  213.  
  214.  
  215. // error handler declarations
  216.  
  217. #if defined(SHORT_NAMES) || defined(VMS)
  218. #define    set_overflow_handler    sohndl
  219. #define set_range_error_handler    srnghdl
  220. #endif
  221.  
  222. extern Fix24_peh set_Fix24_overflow_handler(Fix24_peh);
  223. extern Fix48_peh set_Fix48_overflow_handler(Fix48_peh);
  224. extern void set_overflow_handler(Fix24_peh, Fix48_peh);
  225.  
  226. extern Fix24_peh set_Fix24_range_error_handler(Fix24_peh);
  227. extern Fix48_peh set_Fix48_range_error_handler(Fix48_peh);
  228. extern void set_range_error_handler(Fix24_peh, Fix48_peh);
  229.  
  230. extern void
  231.   Fix24_ignore(long&),
  232.   Fix24_overflow_saturate(long&),
  233.   Fix24_overflow_warning_saturate(long&),
  234.   Fix24_warning(long&),
  235.   Fix24_abort(long&);
  236.  
  237. extern void
  238.   Fix48_ignore(twolongs&),
  239.   Fix48_overflow_saturate(twolongs&),
  240.   Fix48_overflow_warning_saturate(twolongs&),
  241.   Fix48_warning(twolongs&),
  242.   Fix48_abort(twolongs&);
  243.  
  244. #if defined(__OPTIMIZE__) || defined(USE_LIBGXX_INLINES)
  245.  
  246. inline Fix24::~Fix24() {}
  247.  
  248. inline Fix24::Fix24(long i)        
  249.   m = i; 
  250. }
  251.  
  252. inline Fix24::Fix24(int i)        
  253.   m = i; 
  254. }
  255.  
  256. inline Fix24::operator double() 
  257.   return  Fix24_div * m; 
  258. }
  259.  
  260. inline Fix24::Fix24()                 
  261.   m = 0; 
  262. }
  263.  
  264. inline Fix24::Fix24(Fix24&  f)        
  265.   m = f.m; 
  266. }
  267.  
  268. inline Fix24::Fix24(double d)        
  269. {
  270.   m = assign(d);
  271. }
  272.  
  273. inline Fix24::Fix24(Fix48& f)        
  274.   m = f.m.u;
  275. }
  276.  
  277. inline Fix24&  Fix24::operator=(Fix24&  f)    
  278.   m = f.m; 
  279.   return *this; 
  280. }
  281.  
  282. inline Fix24&  Fix24::operator=(double d) 
  283.   m = assign(d); 
  284.   return *this; 
  285. }
  286.  
  287. inline Fix24&  Fix24::operator=(Fix48& f)
  288.   m = f.m.u;
  289.   return *this; 
  290. }
  291.  
  292. inline long& mantissa(Fix24&  f)    
  293.   return f.m; 
  294. }
  295.  
  296. inline double value(Fix24&  f)        
  297.   return double(f); 
  298. }
  299.  
  300. inline Fix24 Fix24::operator+()         
  301.   return m; 
  302. }
  303.  
  304. inline Fix24 Fix24::operator-()         
  305.   return -m; 
  306. }
  307.  
  308. inline Fix24 operator+(Fix24&  f, Fix24&  g) 
  309. {
  310.   long sum = f.m + g.m;
  311.   if ( (f.m ^ sum) & (g.m ^ sum) & Fix24_msb )
  312.     f.overflow(sum);
  313.   return sum;
  314. }
  315.  
  316. inline Fix24 operator-(Fix24&  f, Fix24&  g) 
  317. {
  318.   long sum = f.m - g.m;
  319.   if ( (f.m ^ sum) & (-g.m ^ sum) & Fix24_msb )
  320.     f.overflow(sum);
  321.   return sum;
  322. }
  323.  
  324. inline Fix24 operator*(Fix24& a, long b)     
  325.   return a.m * b; 
  326. }
  327.  
  328. inline Fix24 operator*(long b, Fix24& a)     
  329.   return a * b; 
  330. }
  331.  
  332. inline Fix24 operator<<(Fix24& a, int b)     
  333.   return a.m << b; 
  334. }
  335.  
  336. inline Fix24 operator>>(Fix24& a, int b)     
  337.   return (a.m >> b) & 0xffffff00L; 
  338. }
  339.  
  340. inline  Fix24&  Fix24:: operator+=(Fix24&  f)
  341.   return *this = *this + f; 
  342. }
  343.  
  344. inline Fix24&  Fix24:: operator-=(Fix24&  f)     
  345.   return *this = *this - f; 
  346. }
  347.  
  348. inline Fix24& Fix24::operator*=(Fix24& f)     
  349.   return *this = *this * f; 
  350. }
  351.  
  352. inline Fix24&  Fix24:: operator/=(Fix24&  f)     
  353.   return *this = *this / f; 
  354. }
  355.  
  356. inline Fix24&  Fix24:: operator<<=(int b)    
  357.   return *this = *this << b;
  358. }
  359.  
  360. inline Fix24&  Fix24:: operator>>=(int b)    
  361.   return *this = *this >> b;
  362. }
  363.  
  364. inline Fix24& Fix24::operator*=(long b)
  365.   return *this = *this * b; 
  366. }
  367.  
  368. inline int operator==(Fix24&  f, Fix24&  g)    
  369.   return f.m == g.m;
  370. }
  371.  
  372. inline int operator!=(Fix24&  f, Fix24&  g)    
  373.   return f.m != g.m;
  374. }
  375.  
  376. inline int operator>=(Fix24&  f, Fix24&  g)    
  377.   return f.m >= g.m;
  378. }
  379.  
  380. inline int operator<=(Fix24&  f, Fix24&  g)    
  381.   return f.m <= g.m;
  382. }
  383.  
  384. inline int operator>(Fix24&  f, Fix24&  g)    
  385.   return f.m > g.m;
  386. }
  387.  
  388. inline int operator<(Fix24&  f, Fix24&  g)    
  389.   return f.m < g.m;
  390. }
  391.  
  392. inline istream&  operator>>(istream& s, Fix24&  f)
  393.   double d;
  394.   s >> d; 
  395.   f = d; 
  396.   return s; 
  397. }
  398.  
  399. inline ostream&  operator<<(ostream& s, Fix24&  f)
  400.   return s << double(f);
  401. }
  402.  
  403. inline Fix48::~Fix48() {}
  404.  
  405. inline Fix48::Fix48(twolongs i)        
  406.   m = i;
  407. }
  408.  
  409. inline Fix48:: operator double()        
  410. /*
  411.  * Note: can't simply do Fix48_div_u * m.u + Fix48_div_l * m.l, because
  412.  * m.u is signed and m.l is unsigned.
  413.  */
  414.   return (m.u >= 0)? Fix48_div_u * m.u + Fix48_div_l * m.l :
  415.       (Fix48_div_u * ((unsigned long)(m.u & 0xffffff00)) 
  416.       + Fix48_div_l * m.l) - 2;
  417. }
  418.  
  419. inline Fix48::Fix48()                
  420.   m.u = 0;
  421.   m.l = 0;
  422. }
  423.  
  424. inline Fix48::Fix48(Fix48& f)        
  425.   m = f.m;
  426. }
  427.  
  428. inline Fix48::Fix48(Fix24&  f)    
  429.   m.u = f.m;
  430.   m.l = 0;
  431. }
  432.  
  433. inline Fix48::Fix48(double d)        
  434.   m = assign(d);
  435. }
  436.  
  437. inline Fix48& Fix48::operator=(Fix48& f)    
  438.   m = f.m;
  439.   return *this; 
  440. }
  441.  
  442. inline Fix48& Fix48::operator=(Fix24&  f)    
  443.   m.u = f.m;
  444.   m.l = 0;
  445.   return *this;
  446. }
  447.  
  448. inline Fix48& Fix48::operator=(double d)    
  449.   m = assign(d);
  450.   return *this; 
  451. }
  452.  
  453. inline twolongs& mantissa(Fix48& f)    
  454.   return f.m;
  455. }
  456.  
  457. inline double value(Fix48& f)        
  458.   return double(f);
  459. }
  460.  
  461. inline Fix48 Fix48::operator+()         
  462.   return m;
  463. }
  464.  
  465. inline Fix48 Fix48::operator-()         
  466.   twolongs n;
  467.   n.l = -m.l;
  468.   n.u = ~m.u + ((n.l ^ m.l) & Fix24_msb ? 0 : Fix24_lsb);
  469.   return Fix48(n);
  470. }
  471.  
  472. inline Fix48 operator*(long b, Fix48& a)     
  473.   return a * b; 
  474. }
  475.  
  476. inline Fix48& Fix48::operator+=(Fix48& f)     
  477.   return *this = *this + f;
  478. }
  479.  
  480. inline Fix48& Fix48::operator-=(Fix48& f)     
  481.   return *this = *this - f;
  482. }
  483.  
  484. inline Fix48& Fix48::operator*=(long b)    
  485.   return *this = *this * b;
  486. }
  487.  
  488. inline Fix48& Fix48::operator<<=(int b)    
  489.   return *this = *this << b;
  490. }
  491.  
  492. inline Fix48& Fix48::operator>>=(int b)    
  493.   return *this = *this >> b;
  494. }
  495.  
  496. inline int operator==(Fix48& f, Fix48& g)    
  497.   return f.m.u == g.m.u && f.m.l == g.m.l;
  498. }
  499.  
  500. inline int operator!=(Fix48& f, Fix48& g)    
  501.   return f.m.u != g.m.u || f.m.l != g.m.l;
  502. }
  503.  
  504. inline int operator>=(Fix48& f, Fix48& g)    
  505.   return f.m.u >= g.m.u || (f.m.u == g.m.u && f.m.l >= g.m.l);
  506. }
  507.  
  508. inline int operator<=(Fix48& f, Fix48& g)    
  509.   return f.m.u <= g.m.u || (f.m.u == g.m.u && f.m.l <= g.m.l);
  510. }
  511.  
  512. inline int operator>(Fix48& f, Fix48& g)    
  513.   return f.m.u > g.m.u || (f.m.u == g.m.u && f.m.l > g.m.l);
  514. }
  515.  
  516. inline int operator<(Fix48& f, Fix48& g)    
  517.   return f.m.u < g.m.u || (f.m.u == g.m.u && f.m.l < g.m.l);
  518. }
  519.  
  520. inline istream& operator>>(istream& s, Fix48& f)
  521.   double d;
  522.   s >> d; 
  523.   f = d; 
  524.   return s; 
  525. }
  526.  
  527. inline ostream& operator<<(ostream& s, Fix48& f)
  528.   return s << double(f);
  529. }
  530.  
  531.  
  532. #endif
  533. #endif
  534.  
  535.