op-1.h
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:7k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * BK Id: SCCS/s.op-1.h 1.5 05/17/01 18:14:23 cort
  3.  */
  4. /*
  5.  * Basic one-word fraction declaration and manipulation.
  6.  */
  7. #define _FP_FRAC_DECL_1(X) _FP_W_TYPE X##_f
  8. #define _FP_FRAC_COPY_1(D,S) (D##_f = S##_f)
  9. #define _FP_FRAC_SET_1(X,I) (X##_f = I)
  10. #define _FP_FRAC_HIGH_1(X) (X##_f)
  11. #define _FP_FRAC_LOW_1(X) (X##_f)
  12. #define _FP_FRAC_WORD_1(X,w) (X##_f)
  13. #define _FP_FRAC_ADDI_1(X,I) (X##_f += I)
  14. #define _FP_FRAC_SLL_1(X,N)
  15.   do {
  16.     if (__builtin_constant_p(N) && (N) == 1)
  17.       X##_f += X##_f;
  18.     else
  19.       X##_f <<= (N);
  20.   } while (0)
  21. #define _FP_FRAC_SRL_1(X,N) (X##_f >>= N)
  22. /* Right shift with sticky-lsb.  */
  23. #define _FP_FRAC_SRS_1(X,N,sz) __FP_FRAC_SRS_1(X##_f, N, sz)
  24. #define __FP_FRAC_SRS_1(X,N,sz)
  25.    (X = (X >> (N) | (__builtin_constant_p(N) && (N) == 1
  26.      ? X & 1 : (X << (_FP_W_TYPE_SIZE - (N))) != 0)))
  27. #define _FP_FRAC_ADD_1(R,X,Y) (R##_f = X##_f + Y##_f)
  28. #define _FP_FRAC_SUB_1(R,X,Y) (R##_f = X##_f - Y##_f)
  29. #define _FP_FRAC_CLZ_1(z, X) __FP_CLZ(z, X##_f)
  30. /* Predicates */
  31. #define _FP_FRAC_NEGP_1(X) ((_FP_WS_TYPE)X##_f < 0)
  32. #define _FP_FRAC_ZEROP_1(X) (X##_f == 0)
  33. #define _FP_FRAC_OVERP_1(fs,X) (X##_f & _FP_OVERFLOW_##fs)
  34. #define _FP_FRAC_EQ_1(X, Y) (X##_f == Y##_f)
  35. #define _FP_FRAC_GE_1(X, Y) (X##_f >= Y##_f)
  36. #define _FP_FRAC_GT_1(X, Y) (X##_f > Y##_f)
  37. #define _FP_ZEROFRAC_1 0
  38. #define _FP_MINFRAC_1 1
  39. /*
  40.  * Unpack the raw bits of a native fp value.  Do not classify or
  41.  * normalize the data.
  42.  */
  43. #define _FP_UNPACK_RAW_1(fs, X, val)
  44.   do {
  45.     union _FP_UNION_##fs _flo; _flo.flt = (val);
  46.     X##_f = _flo.bits.frac;
  47.     X##_e = _flo.bits.exp;
  48.     X##_s = _flo.bits.sign;
  49.   } while (0)
  50. /*
  51.  * Repack the raw bits of a native fp value.
  52.  */
  53. #define _FP_PACK_RAW_1(fs, val, X)
  54.   do {
  55.     union _FP_UNION_##fs _flo;
  56.     _flo.bits.frac = X##_f;
  57.     _flo.bits.exp  = X##_e;
  58.     _flo.bits.sign = X##_s;
  59.     (val) = _flo.flt;
  60.   } while (0)
  61. /*
  62.  * Multiplication algorithms:
  63.  */
  64. /* Basic.  Assuming the host word size is >= 2*FRACBITS, we can do the
  65.    multiplication immediately.  */
  66. #define _FP_MUL_MEAT_1_imm(fs, R, X, Y)
  67.   do {
  68.     R##_f = X##_f * Y##_f;
  69.     /* Normalize since we know where the msb of the multiplicands
  70.        were (bit B), we know that the msb of the of the product is
  71.        at either 2B or 2B-1.  */
  72.     _FP_FRAC_SRS_1(R, _FP_WFRACBITS_##fs-1, 2*_FP_WFRACBITS_##fs);
  73.   } while (0)
  74. /* Given a 1W * 1W => 2W primitive, do the extended multiplication.  */
  75. #define _FP_MUL_MEAT_1_wide(fs, R, X, Y, doit)
  76.   do {
  77.     _FP_W_TYPE _Z_f0, _Z_f1;
  78.     doit(_Z_f1, _Z_f0, X##_f, Y##_f);
  79.     /* Normalize since we know where the msb of the multiplicands
  80.        were (bit B), we know that the msb of the of the product is
  81.        at either 2B or 2B-1.  */
  82.     _FP_FRAC_SRS_2(_Z, _FP_WFRACBITS_##fs-1, 2*_FP_WFRACBITS_##fs);
  83.     R##_f = _Z_f0;
  84.   } while (0)
  85. /* Finally, a simple widening multiply algorithm.  What fun!  */
  86. #define _FP_MUL_MEAT_1_hard(fs, R, X, Y)
  87.   do {
  88.     _FP_W_TYPE _xh, _xl, _yh, _yl, _z_f0, _z_f1, _a_f0, _a_f1;
  89.     /* split the words in half */
  90.     _xh = X##_f >> (_FP_W_TYPE_SIZE/2);
  91.     _xl = X##_f & (((_FP_W_TYPE)1 << (_FP_W_TYPE_SIZE/2)) - 1);
  92.     _yh = Y##_f >> (_FP_W_TYPE_SIZE/2);
  93.     _yl = Y##_f & (((_FP_W_TYPE)1 << (_FP_W_TYPE_SIZE/2)) - 1);
  94.     /* multiply the pieces */
  95.     _z_f0 = _xl * _yl;
  96.     _a_f0 = _xh * _yl;
  97.     _a_f1 = _xl * _yh;
  98.     _z_f1 = _xh * _yh;
  99.     /* reassemble into two full words */
  100.     if ((_a_f0 += _a_f1) < _a_f1)
  101.       _z_f1 += (_FP_W_TYPE)1 << (_FP_W_TYPE_SIZE/2);
  102.     _a_f1 = _a_f0 >> (_FP_W_TYPE_SIZE/2);
  103.     _a_f0 = _a_f0 << (_FP_W_TYPE_SIZE/2);
  104.     _FP_FRAC_ADD_2(_z, _z, _a);
  105.     /* normalize */
  106.     _FP_FRAC_SRS_2(_z, _FP_WFRACBITS_##fs - 1, 2*_FP_WFRACBITS_##fs);
  107.     R##_f = _z_f0;
  108.   } while (0)
  109. /*
  110.  * Division algorithms:
  111.  */
  112. /* Basic.  Assuming the host word size is >= 2*FRACBITS, we can do the
  113.    division immediately.  Give this macro either _FP_DIV_HELP_imm for
  114.    C primitives or _FP_DIV_HELP_ldiv for the ISO function.  Which you
  115.    choose will depend on what the compiler does with divrem4.  */
  116. #define _FP_DIV_MEAT_1_imm(fs, R, X, Y, doit)
  117.   do {
  118.     _FP_W_TYPE _q, _r;
  119.     X##_f <<= (X##_f < Y##_f
  120.        ? R##_e--, _FP_WFRACBITS_##fs
  121.        : _FP_WFRACBITS_##fs - 1);
  122.     doit(_q, _r, X##_f, Y##_f);
  123.     R##_f = _q | (_r != 0);
  124.   } while (0)
  125. /* GCC's longlong.h defines a 2W / 1W => (1W,1W) primitive udiv_qrnnd
  126.    that may be useful in this situation.  This first is for a primitive
  127.    that requires normalization, the second for one that does not.  Look
  128.    for UDIV_NEEDS_NORMALIZATION to tell which your machine needs.  */
  129. #define _FP_DIV_MEAT_1_udiv_norm(fs, R, X, Y)
  130.   do {
  131.     _FP_W_TYPE _nh, _nl, _q, _r;
  132.     /* Normalize Y -- i.e. make the most significant bit set.  */
  133.     Y##_f <<= _FP_WFRACXBITS_##fs - 1;
  134.     /* Shift X op correspondingly high, that is, up one full word.  */
  135.     if (X##_f <= Y##_f)
  136.       {
  137. _nl = 0;
  138. _nh = X##_f;
  139.       }
  140.     else
  141.       {
  142. R##_e++;
  143. _nl = X##_f << (_FP_W_TYPE_SIZE-1);
  144. _nh = X##_f >> 1;
  145.       }
  146.     
  147.     udiv_qrnnd(_q, _r, _nh, _nl, Y##_f);
  148.     R##_f = _q | (_r != 0);
  149.   } while (0)
  150. #define _FP_DIV_MEAT_1_udiv(fs, R, X, Y)
  151.   do {
  152.     _FP_W_TYPE _nh, _nl, _q, _r;
  153.     if (X##_f < Y##_f)
  154.       {
  155. R##_e--;
  156. _nl = X##_f << _FP_WFRACBITS_##fs;
  157. _nh = X##_f >> _FP_WFRACXBITS_##fs;
  158.       }
  159.     else
  160.       {
  161. _nl = X##_f << (_FP_WFRACBITS_##fs - 1);
  162. _nh = X##_f >> (_FP_WFRACXBITS_##fs + 1);
  163.       }
  164.     udiv_qrnnd(_q, _r, _nh, _nl, Y##_f);
  165.     R##_f = _q | (_r != 0);
  166.   } while (0)
  167.   
  168.   
  169. /*
  170.  * Square root algorithms:
  171.  * We have just one right now, maybe Newton approximation
  172.  * should be added for those machines where division is fast.
  173.  */
  174.  
  175. #define _FP_SQRT_MEAT_1(R, S, T, X, q)
  176.   do {
  177.     while (q)
  178.       {
  179.         T##_f = S##_f + q;
  180.         if (T##_f <= X##_f)
  181.           {
  182.             S##_f = T##_f + q;
  183.             X##_f -= T##_f;
  184.             R##_f += q;
  185.           }
  186.         _FP_FRAC_SLL_1(X, 1);
  187.         q >>= 1;
  188.       }
  189.   } while (0)
  190. /*
  191.  * Assembly/disassembly for converting to/from integral types.  
  192.  * No shifting or overflow handled here.
  193.  */
  194. #define _FP_FRAC_ASSEMBLE_1(r, X, rsize) (r = X##_f)
  195. #define _FP_FRAC_DISASSEMBLE_1(X, r, rsize) (X##_f = r)
  196. /*
  197.  * Convert FP values between word sizes
  198.  */
  199. #define _FP_FRAC_CONV_1_1(dfs, sfs, D, S)
  200.   do {
  201.     D##_f = S##_f;
  202.     if (_FP_WFRACBITS_##sfs > _FP_WFRACBITS_##dfs)
  203.       _FP_FRAC_SRS_1(D, (_FP_WFRACBITS_##sfs-_FP_WFRACBITS_##dfs),
  204.      _FP_WFRACBITS_##sfs);
  205.     else
  206.       D##_f <<= _FP_WFRACBITS_##dfs - _FP_WFRACBITS_##sfs;
  207.   } while (0)