numbers.h 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374
  1. /* classes: h_files */
  2. #ifndef NUMBERSH
  3. #define NUMBERSH
  4. /* Copyright (C) 1995,1996,1998,2000,2001, 2004 Free Software Foundation, Inc.
  5. *
  6. * This program is free software; you can redistribute it and/or modify
  7. * it under the terms of the GNU General Public License as published by
  8. * the Free Software Foundation; either version 2, or (at your option)
  9. * any later version.
  10. *
  11. * This program is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. * GNU General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU General Public License
  17. * along with this software; see the file COPYING. If not, write to
  18. * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
  19. * Boston, MA 02110-1301 USA
  20. *
  21. * As a special exception, the Free Software Foundation gives permission
  22. * for additional uses of the text contained in its release of GUILE.
  23. *
  24. * The exception is that, if you link the GUILE library with other files
  25. * to produce an executable, this does not by itself cause the
  26. * resulting executable to be covered by the GNU General Public License.
  27. * Your use of that executable is in no way restricted on account of
  28. * linking the GUILE library code into it.
  29. *
  30. * This exception does not however invalidate any other reasons why
  31. * the executable file might be covered by the GNU General Public License.
  32. *
  33. * This exception applies only to the code released by the
  34. * Free Software Foundation under the name GUILE. If you copy
  35. * code from other Free Software Foundation releases into a copy of
  36. * GUILE, as the General Public License permits, the exception does
  37. * not apply to the code that you add in this way. To avoid misleading
  38. * anyone as to the status of such modified files, you must delete
  39. * this exception notice from them.
  40. *
  41. * If you write modifications of your own for GUILE, it is your choice
  42. * whether to permit this exception to apply to your modifications.
  43. * If you do not wish that, delete this exception notice. */
  44. #include "libguile/__scm.h"
  45. #include "libguile/print.h"
  46. /* Immediate Numbers, also known as fixnums
  47. *
  48. * Inums are exact integer data that fits within an SCM word. */
  49. #define SCM_I_FIXNUM_BIT \
  50. (SCM_LONG_BIT - 2)
  51. #define SCM_MOST_POSITIVE_FIXNUM \
  52. ((((scm_t_signed_bits) 1) << (SCM_I_FIXNUM_BIT - 1)) - 1)
  53. #define SCM_MOST_NEGATIVE_FIXNUM \
  54. (-((scm_t_signed_bits) SCM_MOST_POSITIVE_FIXNUM) - 1)
  55. /* SCM_SRS is signed right shift */
  56. #if (-1 == (((-1) << 2) + 2) >> 2)
  57. # define SCM_SRS(x, y) ((x) >> (y))
  58. #else
  59. # define SCM_SRS(x, y) ((x) < 0 ? ~((~(x)) >> (y)) : ((x) >> (y)))
  60. #endif /* (-1 == (((-1) << 2) + 2) >> 2) */
  61. #define SCM_INUMP(x) (2 & SCM_UNPACK (x))
  62. #define SCM_NINUMP(x) (!SCM_INUMP (x))
  63. #define SCM_MAKINUM(x) (SCM_PACK ((((scm_t_signed_bits) (x)) << 2) + 2))
  64. #define SCM_INUM(x) (SCM_SRS ((scm_t_signed_bits) SCM_UNPACK (x), 2))
  65. /* SCM_FIXABLE is true if its long argument can be encoded in an SCM_INUM. */
  66. #define SCM_POSFIXABLE(n) ((n) <= SCM_MOST_POSITIVE_FIXNUM)
  67. #define SCM_NEGFIXABLE(n) ((n) >= SCM_MOST_NEGATIVE_FIXNUM)
  68. #define SCM_FIXABLE(n) (SCM_POSFIXABLE (n) && SCM_NEGFIXABLE (n))
  69. /* A name for 0. */
  70. #define SCM_INUM0 (SCM_MAKINUM (0))
  71. /* SCM_MAXEXP is the maximum double precision expontent
  72. * SCM_FLTMAX is less than or scm_equal the largest single precision float
  73. */
  74. #ifdef STDC_HEADERS
  75. #ifndef GO32
  76. #include <float.h>
  77. #endif /* ndef GO32 */
  78. #endif /* def STDC_HEADERS */
  79. #ifdef DBL_MAX_10_EXP
  80. #define SCM_MAXEXP DBL_MAX_10_EXP
  81. #else
  82. #define SCM_MAXEXP 308 /* IEEE doubles */
  83. #endif /* def DBL_MAX_10_EXP */
  84. #ifdef FLT_MAX
  85. #define SCM_FLTMAX FLT_MAX
  86. #else
  87. #define SCM_FLTMAX 1e+23
  88. #endif /* def FLT_MAX */
  89. /* SCM_INTBUFLEN is the maximum number of characters neccessary for the
  90. * printed or scm_string representation of an exact immediate.
  91. */
  92. #define SCM_INTBUFLEN (5 + SCM_LONG_BIT)
  93. /* Numbers
  94. */
  95. #define SCM_SLOPPY_INEXACTP(x) (SCM_TYP16S (x) == scm_tc16_real)
  96. #define SCM_SLOPPY_REALP(x) (SCM_TYP16 (x) == scm_tc16_real)
  97. #define SCM_SLOPPY_COMPLEXP(x) (SCM_TYP16 (x) == scm_tc16_complex)
  98. #define SCM_INEXACTP(x) (SCM_NIMP (x) && SCM_TYP16S (x) == scm_tc16_real)
  99. #define SCM_REALP(x) (SCM_NIMP (x) && SCM_TYP16 (x) == scm_tc16_real)
  100. #define SCM_COMPLEXP(x) (SCM_NIMP (x) && SCM_TYP16 (x) == scm_tc16_complex)
  101. #define SCM_REAL_VALUE(x) (((scm_t_double *) SCM2PTR (x))->real)
  102. #define SCM_COMPLEX_MEM(x) ((scm_t_complex *) SCM_CELL_WORD_1 (x))
  103. #define SCM_COMPLEX_REAL(x) (SCM_COMPLEX_MEM (x)->real)
  104. #define SCM_COMPLEX_IMAG(x) (SCM_COMPLEX_MEM (x)->imag)
  105. /* Define SCM_BIGDIG to an integer type whose size is smaller than long if
  106. * you want bignums. SCM_BIGRAD is one greater than the biggest SCM_BIGDIG.
  107. *
  108. * Define SCM_DIGSTOOBIG if the digits equivalent to a long won't fit in a long.
  109. */
  110. #ifdef BIGNUMS
  111. # ifdef _UNICOS
  112. # define SCM_DIGSTOOBIG
  113. # if (1L << 31) <= SCM_USHRT_MAX
  114. # define SCM_BIGDIG unsigned short
  115. # else
  116. # define SCM_BIGDIG unsigned int
  117. # endif /* (1L << 31) <= USHRT_MAX */
  118. # define SCM_BITSPERDIG 32
  119. # else
  120. # define SCM_BIGDIG unsigned short
  121. # define SCM_BITSPERDIG (sizeof(SCM_BIGDIG)*SCM_CHAR_BIT)
  122. # endif /* def _UNICOS */
  123. # define SCM_BIGRAD (1L << SCM_BITSPERDIG)
  124. # define SCM_DIGSPERLONG ((size_t)((sizeof(long)*SCM_CHAR_BIT+SCM_BITSPERDIG-1)/SCM_BITSPERDIG))
  125. # define SCM_I_BIGUP(type, x) ((type)(x) << SCM_BITSPERDIG)
  126. # define SCM_BIGUP(x) SCM_I_BIGUP (unsigned long, x)
  127. # define SCM_LONGLONGBIGUP(x) SCM_I_BIGUP (unsigned long long, x)
  128. # define SCM_BIGDN(x) ((x) >> SCM_BITSPERDIG)
  129. # define SCM_BIGLO(x) ((x) & (SCM_BIGRAD-1))
  130. #endif /* def BIGNUMS */
  131. #ifndef SCM_BIGDIG
  132. /* Definition is not really used but helps various function
  133. * prototypes to compile with conditionalization.
  134. */
  135. # define SCM_BIGDIG unsigned short
  136. #endif /* ndef SCM_BIGDIG */
  137. #define SCM_NUMBERP(x) (SCM_INUMP(x) || SCM_NUMP(x))
  138. #define SCM_NUMP(x) (!SCM_IMP(x) && (0xfcff & SCM_CELL_TYPE (x)) == scm_tc7_smob)
  139. #define SCM_BIGP(x) (!SCM_IMP (x) && (SCM_TYP16 (x) == scm_tc16_big))
  140. #define SCM_BIGSIGNFLAG 0x10000L
  141. #define SCM_BIGSIZEFIELD 17
  142. #define SCM_BIGSIGN(x) (SCM_CELL_WORD_0 (x) & SCM_BIGSIGNFLAG)
  143. #define SCM_BDIGITS(x) ((SCM_BIGDIG *) (SCM_CELL_WORD_1 (x)))
  144. #define SCM_SET_BIGNUM_BASE(n, b) (SCM_SET_CELL_WORD_1 ((n), (b)))
  145. #define SCM_NUMDIGS(x) ((size_t) (SCM_CELL_WORD_0 (x) >> SCM_BIGSIZEFIELD))
  146. #define SCM_SETNUMDIGS(x, v, sign) \
  147. SCM_SET_CELL_WORD_0 (x, \
  148. scm_tc16_big \
  149. | ((sign) ? SCM_BIGSIGNFLAG : 0) \
  150. | (((v) + 0L) << SCM_BIGSIZEFIELD))
  151. typedef struct scm_t_double
  152. {
  153. SCM type;
  154. SCM pad;
  155. double real;
  156. } scm_t_double;
  157. typedef struct scm_t_complex
  158. {
  159. double real;
  160. double imag;
  161. } scm_t_complex;
  162. extern SCM scm_exact_p (SCM x);
  163. extern SCM scm_odd_p (SCM n);
  164. extern SCM scm_even_p (SCM n);
  165. extern SCM scm_abs (SCM x);
  166. extern SCM scm_quotient (SCM x, SCM y);
  167. extern SCM scm_remainder (SCM x, SCM y);
  168. extern SCM scm_modulo (SCM x, SCM y);
  169. extern SCM scm_gcd (SCM x, SCM y);
  170. extern SCM scm_lcm (SCM n1, SCM n2);
  171. extern SCM scm_logand (SCM n1, SCM n2);
  172. extern SCM scm_logior (SCM n1, SCM n2);
  173. extern SCM scm_logxor (SCM n1, SCM n2);
  174. extern SCM scm_logtest (SCM n1, SCM n2);
  175. extern SCM scm_logbit_p (SCM n1, SCM n2);
  176. extern SCM scm_lognot (SCM n);
  177. extern SCM scm_integer_expt (SCM z1, SCM z2);
  178. extern SCM scm_ash (SCM n, SCM cnt);
  179. extern SCM scm_bit_extract (SCM n, SCM start, SCM end);
  180. extern SCM scm_logcount (SCM n);
  181. extern SCM scm_integer_length (SCM n);
  182. extern SCM scm_i_mkbig (size_t nlen, int sign);
  183. extern SCM scm_i_big2inum (SCM b, size_t l);
  184. extern SCM scm_i_adjbig (SCM b, size_t nlen);
  185. extern SCM scm_i_normbig (SCM b);
  186. extern SCM scm_i_copybig (SCM b, int sign);
  187. extern SCM scm_i_short2big (short n);
  188. extern SCM scm_i_ushort2big (unsigned short n);
  189. extern SCM scm_i_int2big (int n);
  190. extern SCM scm_i_uint2big (unsigned int n);
  191. extern SCM scm_i_long2big (long n);
  192. extern SCM scm_i_ulong2big (unsigned long n);
  193. extern SCM scm_i_size2big (size_t n);
  194. extern SCM scm_i_ptrdiff2big (ptrdiff_t n);
  195. #if (SCM_DEBUG_DEPRECATED == 0)
  196. extern SCM scm_big2inum (SCM b, size_t l);
  197. extern SCM scm_mkbig (size_t nlen, int sign);
  198. extern SCM scm_adjbig (SCM b, size_t len);
  199. extern SCM scm_normbig (SCM b);
  200. extern SCM scm_copybig (SCM b, int sign);
  201. #define SCM_FIXNUM_BIT SCM_I_FIXNUM_BIT
  202. #endif
  203. #ifdef HAVE_LONG_LONGS
  204. extern SCM scm_i_long_long2big (long long n);
  205. extern SCM scm_i_ulong_long2big (unsigned long long n);
  206. #endif
  207. #if (SCM_DEBUG_DEPRECATED == 0)
  208. extern SCM scm_2ulong2big (unsigned long * np);
  209. #endif
  210. extern int scm_bigcomp (SCM x, SCM y);
  211. extern long scm_pseudolong (long x);
  212. extern void scm_longdigs (long x, SCM_BIGDIG digs[]);
  213. extern SCM scm_addbig (SCM_BIGDIG *x, size_t nx, int xsgn, SCM bigy, int sgny);
  214. extern SCM scm_mulbig (SCM_BIGDIG *x, size_t nx, SCM_BIGDIG *y, size_t ny, int sgn);
  215. extern unsigned int scm_divbigdig (SCM_BIGDIG *ds, size_t h, SCM_BIGDIG div);
  216. extern size_t scm_iint2str (long num, int rad, char *p);
  217. extern SCM scm_number_to_string (SCM x, SCM radix);
  218. extern int scm_print_real (SCM sexp, SCM port, scm_print_state *pstate);
  219. extern int scm_print_complex (SCM sexp, SCM port, scm_print_state *pstate);
  220. extern int scm_bigprint (SCM exp, SCM port, scm_print_state *pstate);
  221. extern SCM scm_istr2int (char *str, long len, long radix);
  222. extern SCM scm_istr2flo (char *str, long len, long radix);
  223. extern SCM scm_istring2number (char *str, long len, long radix);
  224. extern SCM scm_string_to_number (SCM str, SCM radix);
  225. extern SCM scm_make_real (double x);
  226. extern SCM scm_make_complex (double x, double y);
  227. extern SCM scm_bigequal (SCM x, SCM y);
  228. extern SCM scm_real_equalp (SCM x, SCM y);
  229. extern SCM scm_complex_equalp (SCM x, SCM y);
  230. extern SCM scm_number_p (SCM x);
  231. extern SCM scm_real_p (SCM x);
  232. extern SCM scm_integer_p (SCM x);
  233. extern SCM scm_inexact_p (SCM x);
  234. extern SCM scm_num_eq_p (SCM x, SCM y);
  235. extern SCM scm_less_p (SCM x, SCM y);
  236. extern SCM scm_gr_p (SCM x, SCM y);
  237. extern SCM scm_leq_p (SCM x, SCM y);
  238. extern SCM scm_geq_p (SCM x, SCM y);
  239. extern SCM scm_zero_p (SCM z);
  240. extern SCM scm_positive_p (SCM x);
  241. extern SCM scm_negative_p (SCM x);
  242. extern SCM scm_max (SCM x, SCM y);
  243. extern SCM scm_min (SCM x, SCM y);
  244. extern SCM scm_sum (SCM x, SCM y);
  245. extern SCM scm_difference (SCM x, SCM y);
  246. extern SCM scm_product (SCM x, SCM y);
  247. extern double scm_num2dbl (SCM a, const char * why);
  248. extern SCM scm_divide (SCM x, SCM y);
  249. extern double scm_asinh (double x);
  250. extern double scm_acosh (double x);
  251. extern double scm_atanh (double x);
  252. extern double scm_truncate (double x);
  253. extern double scm_round (double x);
  254. extern double scm_exact_to_inexact (double z);
  255. extern SCM scm_truncate_number (SCM x);
  256. extern SCM scm_round_number (SCM x);
  257. extern SCM scm_floor (SCM x);
  258. extern SCM scm_ceiling (SCM x);
  259. extern SCM scm_sys_expt (SCM z1, SCM z2);
  260. extern SCM scm_sys_atan2 (SCM z1, SCM z2);
  261. extern SCM scm_make_rectangular (SCM z1, SCM z2);
  262. extern SCM scm_make_polar (SCM z1, SCM z2);
  263. extern SCM scm_real_part (SCM z);
  264. extern SCM scm_imag_part (SCM z);
  265. extern SCM scm_magnitude (SCM z);
  266. extern SCM scm_angle (SCM z);
  267. extern SCM scm_inexact_to_exact (SCM z);
  268. extern SCM scm_trunc (SCM x);
  269. extern SCM scm_i_dbl2big (double d);
  270. #if (SCM_DEBUG_DEPRECATED == 0)
  271. extern SCM scm_dbl2big (double d);
  272. #endif
  273. extern double scm_i_big2dbl (SCM b);
  274. #if (SCM_DEBUG_DEPRECATED == 0)
  275. extern double scm_big2dbl (SCM b);
  276. #endif
  277. extern SCM scm_short2num (short n);
  278. extern SCM scm_ushort2num (unsigned short n);
  279. extern SCM scm_int2num (int n);
  280. extern SCM scm_uint2num (unsigned int n);
  281. extern SCM scm_long2num (long n);
  282. extern SCM scm_ulong2num (unsigned long n);
  283. extern SCM scm_size2num (size_t n);
  284. extern SCM scm_ptrdiff2num (ptrdiff_t n);
  285. extern short scm_num2short (SCM num, unsigned long int pos,
  286. const char *s_caller);
  287. extern unsigned short scm_num2ushort (SCM num, unsigned long int pos,
  288. const char *s_caller);
  289. extern int scm_num2int (SCM num, unsigned long int pos,
  290. const char *s_caller);
  291. extern unsigned int scm_num2uint (SCM num, unsigned long int pos,
  292. const char *s_caller);
  293. extern long scm_num2long (SCM num, unsigned long int pos,
  294. const char *s_caller);
  295. extern unsigned long scm_num2ulong (SCM num, unsigned long int pos,
  296. const char *s_caller);
  297. extern ptrdiff_t scm_num2ptrdiff (SCM num, unsigned long int pos,
  298. const char *s_caller);
  299. extern size_t scm_num2size (SCM num, unsigned long int pos,
  300. const char *s_caller);
  301. #ifdef HAVE_LONG_LONGS
  302. extern SCM scm_long_long2num (long long sl);
  303. extern SCM scm_ulong_long2num (unsigned long long sl);
  304. extern long long scm_num2long_long (SCM num, unsigned long int pos,
  305. const char *s_caller);
  306. extern unsigned long long scm_num2ulong_long (SCM num, unsigned long int pos,
  307. const char *s_caller);
  308. #endif
  309. extern float scm_num2float (SCM num, unsigned long int pos,
  310. const char *s_caller);
  311. extern SCM scm_float2num (float n);
  312. extern double scm_num2double (SCM num, unsigned long int pos,
  313. const char *s_caller);
  314. extern SCM scm_double2num (double n);
  315. extern void scm_init_numbers (void);
  316. #endif /* NUMBERSH */
  317. /*
  318. Local Variables:
  319. c-file-style: "gnu"
  320. End:
  321. */