You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

304 lines
9.4 KiB

25 years ago
  1. // Public short float operations.
  2. #ifndef _CL_SFLOAT_H
  3. #define _CL_SFLOAT_H
  4. #include "cl_number.h"
  5. #include "cl_sfloat_class.h"
  6. #include "cl_integer_class.h"
  7. #include "cl_float.h"
  8. CL_DEFINE_AS_CONVERSION(cl_SF)
  9. // Liefert zu einem Short-Float x : (- x), ein SF.
  10. extern const cl_SF operator- (const cl_SF& x);
  11. // cl_compare(x,y) vergleicht zwei Short-Floats x und y.
  12. // Ergebnis: 0 falls x=y, +1 falls x>y, -1 falls x<y.
  13. extern cl_signean cl_compare (const cl_SF& x, const cl_SF& y);
  14. // cl_equal_hashcode(x) liefert einen cl_equal-invarianten Hashcode f�r x.
  15. extern uint32 cl_equal_hashcode (const cl_SF& x);
  16. inline bool operator== (const cl_SF& x, const cl_SF& y)
  17. { return cl_compare(x,y)==0; }
  18. inline bool operator!= (const cl_SF& x, const cl_SF& y)
  19. { return cl_compare(x,y)!=0; }
  20. inline bool operator<= (const cl_SF& x, const cl_SF& y)
  21. { return cl_compare(x,y)<=0; }
  22. inline bool operator< (const cl_SF& x, const cl_SF& y)
  23. { return cl_compare(x,y)<0; }
  24. inline bool operator>= (const cl_SF& x, const cl_SF& y)
  25. { return cl_compare(x,y)>=0; }
  26. inline bool operator> (const cl_SF& x, const cl_SF& y)
  27. { return cl_compare(x,y)>0; }
  28. // minusp(x) == (< x 0)
  29. extern cl_boolean minusp (const cl_SF& x);
  30. // zerop(x) stellt fest, ob ein Short-Float x = 0.0 ist.
  31. extern cl_boolean zerop (const cl_SF& x);
  32. // plusp(x) == (> x 0)
  33. extern cl_boolean plusp (const cl_SF& x);
  34. // Liefert zu zwei Short-Float x und y : (+ x y), ein SF.
  35. extern const cl_SF operator+ (const cl_SF& x, const cl_SF& y);
  36. // Liefert zu zwei Short-Float x und y : (- x y), ein SF.
  37. extern const cl_SF operator- (const cl_SF& x, const cl_SF& y);
  38. // Liefert zu zwei Short-Float x und y : (* x y), ein SF.
  39. extern const cl_SF operator* (const cl_SF& x, const cl_SF& y);
  40. // Liefert zu einem Short-Float x : (* x x), ein SF.
  41. inline const cl_SF square (const cl_SF& x) { return x*x; }
  42. // Liefert zu zwei Short-Float x und y : (/ x y), ein SF.
  43. extern const cl_SF operator/ (const cl_SF& x, const cl_SF& y);
  44. // Liefert zu einem Short-Float x>=0 : (sqrt x), ein SF.
  45. extern const cl_SF sqrt (const cl_SF& x);
  46. // recip(x) liefert (/ x), wo x ein Short-Float ist.
  47. extern const cl_SF recip (const cl_SF& x);
  48. // abs(x) liefert (abs x), wo x ein Short-Float ist.
  49. extern const cl_SF abs (const cl_SF& x);
  50. // (1+ x), wo x ein Short-Float ist.
  51. inline const cl_SF plus1 (const cl_SF& x)
  52. {
  53. extern const cl_SF cl_I_to_SF (const cl_I&);
  54. return x + cl_I_to_SF(cl_I(1));
  55. }
  56. // (1- x), wo x ein Short-Float ist.
  57. inline const cl_SF minus1 (const cl_SF& x)
  58. {
  59. extern const cl_SF cl_I_to_SF (const cl_I&);
  60. return x + cl_I_to_SF(cl_I(-1));
  61. }
  62. // ffloor(x) liefert (ffloor x), wo x ein SF ist.
  63. extern const cl_SF ffloor (const cl_SF& x);
  64. // fceiling(x) liefert (fceiling x), wo x ein SF ist.
  65. extern const cl_SF fceiling (const cl_SF& x);
  66. // ftruncate(x) liefert (ftruncate x), wo x ein SF ist.
  67. extern const cl_SF ftruncate (const cl_SF& x);
  68. // fround(x) liefert (fround x), wo x ein SF ist.
  69. extern const cl_SF fround (const cl_SF& x);
  70. // Return type for frounding operators.
  71. // x / y --> (q,r) with x = y*q+r.
  72. struct cl_SF_fdiv_t {
  73. cl_SF quotient;
  74. cl_SF remainder;
  75. // Constructor.
  76. cl_SF_fdiv_t () {}
  77. cl_SF_fdiv_t (const cl_SF& q, const cl_SF& r) : quotient(q), remainder(r) {}
  78. };
  79. // ffloor2(x) liefert (ffloor x), wo x ein SF ist.
  80. inline const cl_SF_fdiv_t ffloor2 (const cl_SF& x)
  81. { cl_SF q = ffloor(x); return cl_SF_fdiv_t(q,x-q); }
  82. // fceiling2(x) liefert (fceiling x), wo x ein SF ist.
  83. inline const cl_SF_fdiv_t fceiling2 (const cl_SF& x)
  84. { cl_SF q = fceiling(x); return cl_SF_fdiv_t(q,x-q); }
  85. // ftruncate2(x) liefert (ftruncate x), wo x ein SF ist.
  86. inline const cl_SF_fdiv_t ftruncate2 (const cl_SF& x)
  87. { cl_SF q = ftruncate(x); return cl_SF_fdiv_t(q,x-q); }
  88. // fround2(x) liefert (fround x), wo x ein SF ist.
  89. inline const cl_SF_fdiv_t fround2 (const cl_SF& x)
  90. { cl_SF q = fround(x); return cl_SF_fdiv_t(q,x-q); }
  91. // Return type for rounding operators.
  92. // x / y --> (q,r) with x = y*q+r.
  93. struct cl_SF_div_t {
  94. cl_I quotient;
  95. cl_SF remainder;
  96. // Constructor.
  97. cl_SF_div_t () {}
  98. cl_SF_div_t (const cl_I& q, const cl_SF& r) : quotient(q), remainder(r) {}
  99. };
  100. // floor2(x) liefert (floor x), wo x ein SF ist.
  101. inline const cl_SF_div_t floor2 (const cl_SF& x)
  102. {
  103. extern const cl_I cl_SF_to_I (const cl_SF& x);
  104. cl_SF q = ffloor(x);
  105. return cl_SF_div_t(cl_SF_to_I(q),x-q);
  106. }
  107. inline const cl_I floor1 (const cl_SF& x)
  108. {
  109. extern const cl_I cl_SF_to_I (const cl_SF& x);
  110. return cl_SF_to_I(ffloor(x));
  111. }
  112. // ceiling2(x) liefert (ceiling x), wo x ein SF ist.
  113. inline const cl_SF_div_t ceiling2 (const cl_SF& x)
  114. {
  115. extern const cl_I cl_SF_to_I (const cl_SF& x);
  116. cl_SF q = fceiling(x);
  117. return cl_SF_div_t(cl_SF_to_I(q),x-q);
  118. }
  119. inline const cl_I ceiling1 (const cl_SF& x)
  120. {
  121. extern const cl_I cl_SF_to_I (const cl_SF& x);
  122. return cl_SF_to_I(fceiling(x));
  123. }
  124. // truncate2(x) liefert (truncate x), wo x ein SF ist.
  125. inline const cl_SF_div_t truncate2 (const cl_SF& x)
  126. {
  127. extern const cl_I cl_SF_to_I (const cl_SF& x);
  128. cl_SF q = ftruncate(x);
  129. return cl_SF_div_t(cl_SF_to_I(q),x-q);
  130. }
  131. inline const cl_I truncate1 (const cl_SF& x)
  132. {
  133. extern const cl_I cl_SF_to_I (const cl_SF& x);
  134. return cl_SF_to_I(ftruncate(x));
  135. }
  136. // round2(x) liefert (round x), wo x ein SF ist.
  137. inline const cl_SF_div_t round2 (const cl_SF& x)
  138. {
  139. extern const cl_I cl_SF_to_I (const cl_SF& x);
  140. cl_SF q = fround(x);
  141. return cl_SF_div_t(cl_SF_to_I(q),x-q);
  142. }
  143. inline const cl_I round1 (const cl_SF& x)
  144. {
  145. extern const cl_I cl_SF_to_I (const cl_SF& x);
  146. return cl_SF_to_I(fround(x));
  147. }
  148. // floor2(x,y) liefert (floor x y).
  149. extern const cl_SF_div_t floor2 (const cl_SF& x, const cl_SF& y);
  150. inline const cl_I floor1 (const cl_SF& x, const cl_SF& y) { return floor1(x/y); }
  151. // ceiling2(x,y) liefert (ceiling x y).
  152. extern const cl_SF_div_t ceiling2 (const cl_SF& x, const cl_SF& y);
  153. inline const cl_I ceiling1 (const cl_SF& x, const cl_SF& y) { return ceiling1(x/y); }
  154. // truncate2(x,y) liefert (truncate x y).
  155. extern const cl_SF_div_t truncate2 (const cl_SF& x, const cl_SF& y);
  156. inline const cl_I truncate1 (const cl_SF& x, const cl_SF& y) { return truncate1(x/y); }
  157. // round2(x,y) liefert (round x y).
  158. extern const cl_SF_div_t round2 (const cl_SF& x, const cl_SF& y);
  159. inline const cl_I round1 (const cl_SF& x, const cl_SF& y) { return round1(x/y); }
  160. // Return type for decode_float:
  161. struct cl_decoded_sfloat {
  162. cl_SF mantissa;
  163. cl_I exponent;
  164. cl_SF sign;
  165. // Constructor.
  166. cl_decoded_sfloat () {}
  167. cl_decoded_sfloat (const cl_SF& m, const cl_I& e, const cl_SF& s) : mantissa(m), exponent(e), sign(s) {}
  168. };
  169. // decode_float(x) liefert zu einem Float x: (decode-float x).
  170. // x = 0.0 liefert (0.0, 0, 1.0).
  171. // x = (-1)^s * 2^e * m liefert ((-1)^0 * 2^0 * m, e als Integer, (-1)^s).
  172. extern const cl_decoded_sfloat decode_float (const cl_SF& x);
  173. // float_exponent(x) liefert zu einem Float x:
  174. // den Exponenten von (decode-float x).
  175. // x = 0.0 liefert 0.
  176. // x = (-1)^s * 2^e * m liefert e.
  177. extern sintL float_exponent (const cl_SF& x);
  178. // float_radix(x) liefert (float-radix x), wo x ein Float ist.
  179. inline sintL float_radix (const cl_SF& x)
  180. {
  181. (void)x; // unused x
  182. return 2;
  183. }
  184. // float_sign(x) liefert (float-sign x), wo x ein Float ist.
  185. extern const cl_SF float_sign (const cl_SF& x);
  186. // float_digits(x) liefert (float-digits x), wo x ein Float ist.
  187. // < ergebnis: ein uintL >0
  188. extern uintL float_digits (const cl_SF& x);
  189. // float_precision(x) liefert (float-precision x), wo x ein Float ist.
  190. // < ergebnis: ein uintL >=0
  191. extern uintL float_precision (const cl_SF& x);
  192. // integer_decode_float(x) liefert zu einem Float x: (integer-decode-float x).
  193. // x = 0.0 liefert (0, 0, 1).
  194. // x = (-1)^s * 2^e * m bei Float-Precision p liefert
  195. // (Mantisse 2^p * m als Integer, e-p als Integer, (-1)^s als Fixnum).
  196. extern const cl_idecoded_float integer_decode_float (const cl_SF& x);
  197. // scale_float(x,delta) liefert x*2^delta, wo x ein SF ist.
  198. extern const cl_SF scale_float (const cl_SF& x, sintL delta);
  199. extern const cl_SF scale_float (const cl_SF& x, const cl_I& delta);
  200. // max(x,y) liefert (max x y), wo x und y Floats sind.
  201. extern const cl_SF max (const cl_SF& x, const cl_SF& y);
  202. // min(x,y) liefert (min x y), wo x und y Floats sind.
  203. extern const cl_SF min (const cl_SF& x, const cl_SF& y);
  204. // signum(x) liefert (signum x), wo x ein Float ist.
  205. extern const cl_SF signum (const cl_SF& x);
  206. // Konversion zu einem C "float".
  207. extern float cl_float_approx (const cl_SF& x);
  208. // Konversion zu einem C "double".
  209. extern double cl_double_approx (const cl_SF& x);
  210. #ifdef WANT_OBFUSCATING_OPERATORS
  211. // This could be optimized to use in-place operations.
  212. inline cl_SF& operator+= (cl_SF& x, const cl_SF& y) { return x = x + y; }
  213. inline cl_SF& operator++ /* prefix */ (cl_SF& x) { return x = plus1(x); }
  214. inline void operator++ /* postfix */ (cl_SF& x, int dummy) { (void)dummy; x = plus1(x); }
  215. inline cl_SF& operator-= (cl_SF& x, const cl_SF& y) { return x = x - y; }
  216. inline cl_SF& operator-- /* prefix */ (cl_SF& x) { return x = minus1(x); }
  217. inline void operator-- /* postfix */ (cl_SF& x, int dummy) { (void)dummy; x = minus1(x); }
  218. inline cl_SF& operator*= (cl_SF& x, const cl_SF& y) { return x = x * y; }
  219. inline cl_SF& operator/= (cl_SF& x, const cl_SF& y) { return x = x / y; }
  220. #endif
  221. // Runtime typing support.
  222. extern cl_class cl_class_sfloat;
  223. static const void* const cl_SF_classes_dummy[] = { &cl_SF_classes_dummy,
  224. &cl_class_sfloat
  225. };
  226. // Debugging support.
  227. #ifdef CL_DEBUG
  228. extern int cl_SF_debug_module;
  229. static void* const cl_SF_debug_dummy[] = { &cl_SF_debug_dummy,
  230. &cl_SF_debug_module
  231. };
  232. #endif
  233. #endif /* _CL_SFLOAT_H */