Fix for incorrect (gcd -2) => -2; should give 2.
[bpt/guile.git] / libguile / numbers.c
index e6fad64..52dfb73 100644 (file)
@@ -1,4 +1,4 @@
-/* Copyright (C) 1995,1996,1997,1998,1999,2000,2001,2002,2003,2004 Free Software Foundation, Inc.
+/* Copyright (C) 1995,1996,1997,1998,1999,2000,2001,2002,2003,2004,2005, 2006, 2007, 2008 Free Software Foundation, Inc.
  *
  * Portions Copyright 1990, 1991, 1992, 1993 by AT&T Bell Laboratories
  * and Bellcore.  See scm_divide.
@@ -16,7 +16,7 @@
  *
  * You should have received a copy of the GNU Lesser General Public
  * License along with this library; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  */
 
 \f
 
  */
 
-/* tell glibc (2.3) to give prototype for C99 trunc() */
-#define _GNU_SOURCE
-
-#if HAVE_CONFIG_H
+#ifdef HAVE_CONFIG_H
 #  include <config.h>
 #endif
 
 #include <math.h>
 #include <ctype.h>
 #include <string.h>
-#include <gmp.h>
+
+#if HAVE_COMPLEX_H
+#include <complex.h>
+#endif
 
 #include "libguile/_scm.h"
 #include "libguile/feature.h"
 
 #include "libguile/eq.h"
 
+#include "libguile/discouraged.h"
+
+/* values per glibc, if not already defined */
+#ifndef M_LOG10E
+#define M_LOG10E   0.43429448190325182765
+#endif
+#ifndef M_PI
+#define M_PI       3.14159265358979323846
+#endif
+
 \f
 
 /*
@@ -78,7 +88,7 @@
   #define SCM_I_NUMTAG_REAL scm_tc16_real
   #define SCM_I_NUMTAG_COMPLEX scm_tc16_complex
   #define SCM_I_NUMTAG(x) \
-    (SCM_INUMP(x) ? SCM_I_NUMTAG_INUM \
+    (SCM_I_INUMP(x) ? SCM_I_NUMTAG_INUM \
        : (SCM_IMP(x) ? SCM_I_NUMTAG_NOTNUM \
          : (((0xfcff & SCM_CELL_TYPE (x)) == scm_tc7_number) ? SCM_TYP16(x) \
            : SCM_I_NUMTAG_NOTNUM)))
 /* FLOBUFLEN is the maximum number of characters neccessary for the
  * printed or scm_string representation of an inexact number.
  */
-#define FLOBUFLEN (10+2*(sizeof(double)/sizeof(char)*SCM_CHAR_BIT*3+9)/10)
+#define FLOBUFLEN (40+2*(sizeof(double)/sizeof(char)*SCM_CHAR_BIT*3+9)/10)
 
 #if defined (SCO)
 #if ! defined (HAVE_ISNAN)
@@ -114,16 +124,19 @@ isinf (double x)
 #endif
 
 
-/* mpz_cmp_d only recognises infinities in gmp 4.2 and up.
-   For prior versions use an explicit check here.  */
-#if __GNU_MP_VERSION < 4                                        \
-  || (__GNU_MP_VERSION == 4 && __GNU_MP_VERSION_MINOR < 2)
+/* mpz_cmp_d in gmp 4.1.3 doesn't recognise infinities, so xmpz_cmp_d uses
+   an explicit check.  In some future gmp (don't know what version number),
+   mpz_cmp_d is supposed to do this itself.  */
+#if 1
 #define xmpz_cmp_d(z, d)                                \
   (xisinf (d) ? (d < 0.0 ? 1 : -1) : mpz_cmp_d (z, d))
 #else
 #define xmpz_cmp_d(z, d)  mpz_cmp_d (z, d)
 #endif
 
+/* For reference, sparc solaris 7 has infinities (IEEE) but doesn't have
+   isinf.  It does have finite and isnan though, hence the use of those.
+   fpclass would be a possibility on that system too.  */
 static int
 xisinf (double x)
 {
@@ -146,14 +159,33 @@ xisnan (double x)
 #endif
 }
 
+#if defined (GUILE_I)
+#if HAVE_COMPLEX_DOUBLE
+
+/* For an SCM object Z which is a complex number (ie. satisfies
+   SCM_COMPLEXP), return its value as a C level "complex double". */
+#define SCM_COMPLEX_VALUE(z)                                    \
+  (SCM_COMPLEX_REAL (z) + GUILE_I * SCM_COMPLEX_IMAG (z))
+
+static inline SCM scm_from_complex_double (complex double z) SCM_UNUSED;
+
+/* Convert a C "complex double" to an SCM value. */
+static inline SCM
+scm_from_complex_double (complex double z)
+{
+  return scm_c_make_rectangular (creal (z), cimag (z));
+}
+
+#endif /* HAVE_COMPLEX_DOUBLE */
+#endif /* GUILE_I */
+
 \f
 
-static SCM abs_most_negative_fixnum;
 static mpz_t z_negative_one;
 
 \f
 
-SCM_C_INLINE_KEYWORD SCM
+SCM
 scm_i_mkbig ()
 {
   /* Return a newly created bignum. */
@@ -162,7 +194,25 @@ scm_i_mkbig ()
   return z;
 }
 
-SCM_C_INLINE_KEYWORD static SCM
+SCM
+scm_i_long2big (long x)
+{
+  /* Return a newly created bignum initialized to X. */
+  SCM z = scm_double_cell (scm_tc16_big, 0, 0, 0);
+  mpz_init_set_si (SCM_I_BIG_MPZ (z), x);
+  return z;
+}
+
+SCM
+scm_i_ulong2big (unsigned long x)
+{
+  /* Return a newly created bignum initialized to X. */
+  SCM z = scm_double_cell (scm_tc16_big, 0, 0, 0);
+  mpz_init_set_ui (SCM_I_BIG_MPZ (z), x);
+  return z;
+}
+
+SCM
 scm_i_clonebig (SCM src_big, int same_sign_p)
 {
   /* Copy src_big's value, negate it if same_sign_p is false, and return. */
@@ -173,7 +223,7 @@ scm_i_clonebig (SCM src_big, int same_sign_p)
   return z;
 }
 
-SCM_C_INLINE_KEYWORD int
+int
 scm_i_bigcmp (SCM x, SCM y)
 {
   /* Return neg if x < y, pos if x > y, and 0 if x == y */
@@ -183,7 +233,7 @@ scm_i_bigcmp (SCM x, SCM y)
   return result;
 }
 
-SCM_C_INLINE_KEYWORD SCM
+SCM
 scm_i_dbl2big (double d)
 {
   /* results are only defined if d is an integer */
@@ -194,7 +244,7 @@ scm_i_dbl2big (double d)
 
 /* Convert a integer in double representation to a SCM number. */
 
-SCM_C_INLINE_KEYWORD SCM
+SCM
 scm_i_dbl2num (double u)
 {
   /* SCM_MOST_POSITIVE_FIXNUM+1 and SCM_MOST_NEGATIVE_FIXNUM are both
@@ -213,7 +263,7 @@ scm_i_dbl2num (double u)
 
   if (u < (double) (SCM_MOST_POSITIVE_FIXNUM+1)
       && u >= (double) SCM_MOST_NEGATIVE_FIXNUM)
-    return SCM_MAKINUM ((long) u);
+    return SCM_I_MAKINUM ((long) u);
   else
     return scm_i_dbl2big (u);
 }
@@ -222,23 +272,29 @@ scm_i_dbl2num (double u)
    with R5RS exact->inexact.
 
    The approach is to use mpz_get_d to pick out the high DBL_MANT_DIG bits
-   (ie. it truncates towards zero), then adjust to get the closest double by
-   examining the next lower bit and adding 1 if necessary.
-
-   Note that bignums exactly half way between representable doubles are
-   rounded to the next higher absolute value (ie. away from zero).  This
-   seems like an adequate interpretation of R5RS "numerically closest", and
-   it's easier and faster than a full "nearest-even" style.
-
-   The bit test is done on the absolute value of the mpz_t, which means we
-   must use mpz_getlimbn.  mpz_tstbit is not right, it treats negatives as
-   twos complement.
-
-   Prior to GMP 4.2, the rounding done by mpz_get_d was unspecified.  It
-   happened to follow the hardware rounding mode, but on the absolute value
-   of its operand.  This is not what we want, so we put the high
-   DBL_MANT_DIG bits into a temporary.  This extra init/clear is a slowdown,
-   but doesn't matter too much since it's only for older GMP.  */
+   (ie. truncate towards zero), then adjust to get the closest double by
+   examining the next lower bit and adding 1 (to the absolute value) if
+   necessary.
+
+   Bignums exactly half way between representable doubles are rounded to the
+   next higher absolute value (ie. away from zero).  This seems like an
+   adequate interpretation of R5RS "numerically closest", and it's easier
+   and faster than a full "nearest-even" style.
+
+   The bit test must be done on the absolute value of the mpz_t, which means
+   we need to use mpz_getlimbn.  mpz_tstbit is not right, it treats
+   negatives as twos complement.
+
+   In current gmp 4.1.3, mpz_get_d rounding is unspecified.  It ends up
+   following the hardware rounding mode, but applied to the absolute value
+   of the mpz_t operand.  This is not what we want so we put the high
+   DBL_MANT_DIG bits into a temporary.  In some future gmp, don't know when,
+   mpz_get_d is supposed to always truncate towards zero.
+
+   ENHANCE-ME: The temporary init+clear to force the rounding in gmp 4.1.3
+   is a slowdown.  It'd be faster to pick out the relevant high bits with
+   mpz_getlimbn if we could be bothered coding that, and if the new
+   truncating gmp doesn't come out.  */
 
 double
 scm_i_big2dbl (SCM b)
@@ -248,10 +304,9 @@ scm_i_big2dbl (SCM b)
 
   bits = mpz_sizeinbase (SCM_I_BIG_MPZ (b), 2);
 
-#if __GNU_MP_VERSION < 4                                        \
-  || (__GNU_MP_VERSION == 4 && __GNU_MP_VERSION_MINOR < 2)
+#if 1
   {
-    /* GMP prior to 4.2, force truncate towards zero */
+    /* Current GMP, eg. 4.1.3, force truncation towards zero */
     mpz_t  tmp;
     if (bits > DBL_MANT_DIG)
       {
@@ -267,7 +322,7 @@ scm_i_big2dbl (SCM b)
       }
   }
 #else
-  /* GMP 4.2 and up */
+  /* Future GMP */
   result = mpz_get_d (SCM_I_BIG_MPZ (b));
 #endif
 
@@ -286,7 +341,7 @@ scm_i_big2dbl (SCM b)
   return result;
 }
 
-SCM_C_INLINE_KEYWORD SCM
+SCM
 scm_i_normbig (SCM b)
 {
   /* convert a big back to a fixnum if it'll fit */
@@ -295,7 +350,7 @@ scm_i_normbig (SCM b)
     {
       long val = mpz_get_si (SCM_I_BIG_MPZ (b));
       if (SCM_FIXABLE (val))
-        b = SCM_MAKINUM (val);
+        b = SCM_I_MAKINUM (val);
     }
   return b;
 }
@@ -308,7 +363,7 @@ scm_i_mpz2num (mpz_t b)
     {
       long val = mpz_get_si (b);
       if (SCM_FIXABLE (val))
-        return SCM_MAKINUM (val);
+        return SCM_I_MAKINUM (val);
     }
 
   {
@@ -321,17 +376,17 @@ scm_i_mpz2num (mpz_t b)
 /* this is needed when we want scm_divide to make a float, not a ratio, even if passed two ints */
 static SCM scm_divide2real (SCM x, SCM y);
 
-SCM
-scm_make_ratio (SCM numerator, SCM denominator)
+static SCM
+scm_i_make_ratio (SCM numerator, SCM denominator)
 #define FUNC_NAME "make-ratio"
 {
   /* First make sure the arguments are proper.
    */
-  if (SCM_INUMP (denominator))
+  if (SCM_I_INUMP (denominator))
     {
-      if (SCM_EQ_P (denominator, SCM_INUM0))
+      if (scm_is_eq (denominator, SCM_INUM0))
        scm_num_overflow ("make-ratio");
-      if (SCM_EQ_P (denominator, SCM_MAKINUM(1)))
+      if (scm_is_eq (denominator, SCM_I_MAKINUM(1)))
        return numerator;
     }
   else 
@@ -339,12 +394,12 @@ scm_make_ratio (SCM numerator, SCM denominator)
       if (!(SCM_BIGP(denominator)))
        SCM_WRONG_TYPE_ARG (2, denominator);
     }
-  if (!SCM_INUMP (numerator) && !SCM_BIGP (numerator))
+  if (!SCM_I_INUMP (numerator) && !SCM_BIGP (numerator))
     SCM_WRONG_TYPE_ARG (1, numerator);
 
   /* Then flip signs so that the denominator is positive.
    */
-  if (SCM_NFALSEP (scm_negative_p (denominator)))
+  if (scm_is_true (scm_negative_p (denominator)))
     {
       numerator = scm_difference (numerator, SCM_UNDEFINED);
       denominator = scm_difference (denominator, SCM_UNDEFINED);
@@ -353,41 +408,44 @@ scm_make_ratio (SCM numerator, SCM denominator)
   /* Now consider for each of the four fixnum/bignum combinations
      whether the rational number is really an integer.
   */
-  if (SCM_INUMP (numerator))
+  if (SCM_I_INUMP (numerator))
     {
-      long  x = SCM_INUM (numerator);
-      if (SCM_EQ_P (numerator, SCM_INUM0))
+      long  x = SCM_I_INUM (numerator);
+      if (scm_is_eq (numerator, SCM_INUM0))
        return SCM_INUM0;
-      if (SCM_INUMP (denominator))
+      if (SCM_I_INUMP (denominator))
        {
          long y;
-         y = SCM_INUM (denominator);
+         y = SCM_I_INUM (denominator);
          if (x == y)
-           return SCM_MAKINUM(1);
+           return SCM_I_MAKINUM(1);
          if ((x % y) == 0)
-           return SCM_MAKINUM (x / y);
+           return SCM_I_MAKINUM (x / y);
        }
       else
         {
           /* When x == SCM_MOST_NEGATIVE_FIXNUM we could have the negative
-             of that value for the denominator, as a bignum.  */
-          long  abs_x = (x >= 0 ? x : -x);
-          if (mpz_cmpabs_ui (SCM_I_BIG_MPZ (denominator), abs_x) == 0)
-           return SCM_MAKINUM(-1);
+             of that value for the denominator, as a bignum.  Apart from
+             that case, abs(bignum) > abs(inum) so inum/bignum is not an
+             integer.  */
+          if (x == SCM_MOST_NEGATIVE_FIXNUM
+              && mpz_cmp_ui (SCM_I_BIG_MPZ (denominator),
+                             - SCM_MOST_NEGATIVE_FIXNUM) == 0)
+           return SCM_I_MAKINUM(-1);
         }
     }
   else if (SCM_BIGP (numerator))
     {
-      if (SCM_INUMP (denominator))
+      if (SCM_I_INUMP (denominator))
        {
-         long yy = SCM_INUM (denominator);
+         long yy = SCM_I_INUM (denominator);
          if (mpz_divisible_ui_p (SCM_I_BIG_MPZ (numerator), yy))
            return scm_divide (numerator, denominator);
        }
       else
        {
-         if (SCM_EQ_P (numerator, denominator))
-           return SCM_MAKINUM(1);
+         if (scm_is_eq (numerator, denominator))
+           return SCM_I_MAKINUM(1);
          if (mpz_divisible_p (SCM_I_BIG_MPZ (numerator),
                               SCM_I_BIG_MPZ (denominator)))
            return scm_divide(numerator, denominator);
@@ -396,34 +454,26 @@ scm_make_ratio (SCM numerator, SCM denominator)
 
   /* No, it's a proper fraction.
    */
-  return scm_double_cell (scm_tc16_fraction,
-                         SCM_UNPACK (numerator),
-                         SCM_UNPACK (denominator), 0);
+  {
+    SCM divisor = scm_gcd (numerator, denominator);
+    if (!(scm_is_eq (divisor, SCM_I_MAKINUM(1))))
+      {
+       numerator = scm_divide (numerator, divisor);
+       denominator = scm_divide (denominator, divisor);
+      }
+      
+    return scm_double_cell (scm_tc16_fraction,
+                           SCM_UNPACK (numerator),
+                           SCM_UNPACK (denominator), 0);
+  }
 }
 #undef FUNC_NAME
 
-static void scm_i_fraction_reduce (SCM z)
-{
-  if (!(SCM_FRACTION_REDUCED (z)))
-    {
-      SCM divisor;
-      divisor = scm_gcd (SCM_FRACTION_NUMERATOR (z), SCM_FRACTION_DENOMINATOR (z));
-      if (!(SCM_EQ_P (divisor, SCM_MAKINUM(1))))
-       {
-         /* is this safe? */
-         SCM_FRACTION_SET_NUMERATOR (z, scm_divide (SCM_FRACTION_NUMERATOR (z), divisor));
-         SCM_FRACTION_SET_DENOMINATOR (z, scm_divide (SCM_FRACTION_DENOMINATOR (z), divisor));
-       }
-      SCM_FRACTION_REDUCED_SET (z);
-    }
-}
-
 double
 scm_i_fraction2double (SCM z)
 {
-  return scm_num2dbl (scm_divide2real (SCM_FRACTION_NUMERATOR (z), 
-                                      SCM_FRACTION_DENOMINATOR (z)),
-                     "fraction2real");
+  return scm_to_double (scm_divide2real (SCM_FRACTION_NUMERATOR (z), 
+                                        SCM_FRACTION_DENOMINATOR (z)));
 }
 
 SCM_DEFINE (scm_exact_p, "exact?", 1, 0, 0, 
@@ -432,7 +482,7 @@ SCM_DEFINE (scm_exact_p, "exact?", 1, 0, 0,
            "otherwise.")
 #define FUNC_NAME s_scm_exact_p
 {
-  if (SCM_INUMP (x))
+  if (SCM_I_INUMP (x))
     return SCM_BOOL_T;
   if (SCM_BIGP (x))
     return SCM_BOOL_T;
@@ -451,18 +501,18 @@ SCM_DEFINE (scm_odd_p, "odd?", 1, 0, 0,
            "otherwise.")
 #define FUNC_NAME s_scm_odd_p
 {
-  if (SCM_INUMP (n))
+  if (SCM_I_INUMP (n))
     {
-      long val = SCM_INUM (n);
-      return SCM_BOOL ((val & 1L) != 0);
+      long val = SCM_I_INUM (n);
+      return scm_from_bool ((val & 1L) != 0);
     }
   else if (SCM_BIGP (n))
     {
       int odd_p = mpz_odd_p (SCM_I_BIG_MPZ (n));
       scm_remember_upto_here_1 (n);
-      return SCM_BOOL (odd_p);
+      return scm_from_bool (odd_p);
     }
-  else if (!SCM_FALSEP (scm_inf_p (n)))
+  else if (scm_is_true (scm_inf_p (n)))
     return SCM_BOOL_T;
   else if (SCM_REALP (n))
     {
@@ -486,18 +536,18 @@ SCM_DEFINE (scm_even_p, "even?", 1, 0, 0,
            "otherwise.")
 #define FUNC_NAME s_scm_even_p
 {
-  if (SCM_INUMP (n))
+  if (SCM_I_INUMP (n))
     {
-      long val = SCM_INUM (n);
-      return SCM_BOOL ((val & 1L) == 0);
+      long val = SCM_I_INUM (n);
+      return scm_from_bool ((val & 1L) == 0);
     }
   else if (SCM_BIGP (n))
     {
       int even_p = mpz_even_p (SCM_I_BIG_MPZ (n));
       scm_remember_upto_here_1 (n);
-      return SCM_BOOL (even_p);
+      return scm_from_bool (even_p);
     }
-  else if (!SCM_FALSEP (scm_inf_p (n)))
+  else if (scm_is_true (scm_inf_p (n)))
     return SCM_BOOL_T;
   else if (SCM_REALP (n))
     {
@@ -515,16 +565,16 @@ SCM_DEFINE (scm_even_p, "even?", 1, 0, 0,
 #undef FUNC_NAME
 
 SCM_DEFINE (scm_inf_p, "inf?", 1, 0, 0, 
-            (SCM n),
-           "Return @code{#t} if @var{n} is infinite, @code{#f}\n"
-           "otherwise.")
+            (SCM x),
+           "Return @code{#t} if @var{x} is either @samp{+inf.0}\n"
+           "or @samp{-inf.0}, @code{#f} otherwise.")
 #define FUNC_NAME s_scm_inf_p
 {
-  if (SCM_REALP (n))
-    return SCM_BOOL (xisinf (SCM_REAL_VALUE (n)));
-  else if (SCM_COMPLEXP (n))
-    return SCM_BOOL (xisinf (SCM_COMPLEX_REAL (n))
-                    || xisinf (SCM_COMPLEX_IMAG (n)));
+  if (SCM_REALP (x))
+    return scm_from_bool (xisinf (SCM_REAL_VALUE (x)));
+  else if (SCM_COMPLEXP (x))
+    return scm_from_bool (xisinf (SCM_COMPLEX_REAL (x))
+                         || xisinf (SCM_COMPLEX_IMAG (x)));
   else
     return SCM_BOOL_F;
 }
@@ -537,9 +587,9 @@ SCM_DEFINE (scm_nan_p, "nan?", 1, 0, 0,
 #define FUNC_NAME s_scm_nan_p
 {
   if (SCM_REALP (n))
-    return SCM_BOOL (xisnan (SCM_REAL_VALUE (n)));
+    return scm_from_bool (xisnan (SCM_REAL_VALUE (n)));
   else if (SCM_COMPLEXP (n))
-    return SCM_BOOL (xisnan (SCM_COMPLEX_REAL (n))
+    return scm_from_bool (xisnan (SCM_COMPLEX_REAL (n))
                     || xisnan (SCM_COMPLEX_IMAG (n)));
   else
     return SCM_BOOL_F;
@@ -570,7 +620,7 @@ guile_ieee_init (void)
 #elif HAVE_DINFINITY
   /* OSF */
   extern unsigned int DINFINITY[2];
-  guile_Inf = (*(X_CAST(double *, DINFINITY)));
+  guile_Inf = (*((double *) (DINFINITY)));
 #else
   double tmp = 1e+10;
   guile_Inf = tmp;
@@ -591,9 +641,11 @@ guile_ieee_init (void)
   /* C99 NAN, when available */
   guile_NaN = NAN;
 #elif HAVE_DQNAN
-  /* OSF */
-  extern unsigned int DQNAN[2];
-  guile_NaN =  (*(X_CAST(double *, DQNAN)));
+  {
+    /* OSF */
+    extern unsigned int DQNAN[2];
+    guile_NaN = (*((double *)(DQNAN)));
+  }
 #else
   guile_NaN = guile_Inf / guile_Inf;
 #endif
@@ -612,7 +664,7 @@ SCM_DEFINE (scm_inf, "inf", 0, 0, 0,
       guile_ieee_init ();
       initialized = 1;
     }
-  return scm_make_real (guile_Inf);
+  return scm_from_double (guile_Inf);
 }
 #undef FUNC_NAME
 
@@ -627,7 +679,7 @@ SCM_DEFINE (scm_nan, "nan", 0, 0, 0,
       guile_ieee_init ();
       initialized = 1;
     }
-  return scm_make_real (guile_NaN);
+  return scm_from_double (guile_NaN);
 }
 #undef FUNC_NAME
 
@@ -637,13 +689,13 @@ SCM_PRIMITIVE_GENERIC (scm_abs, "abs", 1, 0, 0,
                       "Return the absolute value of @var{x}.")
 #define FUNC_NAME
 {
-  if (SCM_INUMP (x))
+  if (SCM_I_INUMP (x))
     {
-      long int xx = SCM_INUM (x);
+      long int xx = SCM_I_INUM (x);
       if (xx >= 0)
        return x;
       else if (SCM_POSFIXABLE (-xx))
-       return SCM_MAKINUM (-xx);
+       return SCM_I_MAKINUM (-xx);
       else
        return scm_i_long2big (-xx);
     }
@@ -660,15 +712,15 @@ SCM_PRIMITIVE_GENERIC (scm_abs, "abs", 1, 0, 0,
       /* note that if x is a NaN then xx<0 is false so we return x unchanged */
       double xx = SCM_REAL_VALUE (x);
       if (xx < 0.0)
-        return scm_make_real (-xx);
+        return scm_from_double (-xx);
       else
         return x;
     }
   else if (SCM_FRACTIONP (x))
     {
-      if (SCM_FALSEP (scm_negative_p (SCM_FRACTION_NUMERATOR (x))))
+      if (scm_is_false (scm_negative_p (SCM_FRACTION_NUMERATOR (x))))
        return x;
-      return scm_make_ratio (scm_difference (SCM_FRACTION_NUMERATOR (x), SCM_UNDEFINED),
+      return scm_i_make_ratio (scm_difference (SCM_FRACTION_NUMERATOR (x), SCM_UNDEFINED),
                             SCM_FRACTION_DENOMINATOR (x));
     }
   else
@@ -683,40 +735,44 @@ SCM_GPROC (s_quotient, "quotient", 2, 0, 0, scm_quotient, g_quotient);
 SCM
 scm_quotient (SCM x, SCM y)
 {
-  if (SCM_INUMP (x))
+  if (SCM_I_INUMP (x))
     {
-      long xx = SCM_INUM (x);
-      if (SCM_INUMP (y))
+      long xx = SCM_I_INUM (x);
+      if (SCM_I_INUMP (y))
        {
-         long yy = SCM_INUM (y);
+         long yy = SCM_I_INUM (y);
          if (yy == 0)
            scm_num_overflow (s_quotient);
          else
            {
              long z = xx / yy;
              if (SCM_FIXABLE (z))
-               return SCM_MAKINUM (z);
+               return SCM_I_MAKINUM (z);
              else
                return scm_i_long2big (z);
            }
        }
       else if (SCM_BIGP (y))
        {
-         if ((SCM_INUM (x) == SCM_MOST_NEGATIVE_FIXNUM)
-             && (scm_i_bigcmp (abs_most_negative_fixnum, y) == 0))
-           /* Special case:  x == fixnum-min && y == abs (fixnum-min) */
-           return SCM_MAKINUM (-1);
+         if ((SCM_I_INUM (x) == SCM_MOST_NEGATIVE_FIXNUM)
+             && (mpz_cmp_ui (SCM_I_BIG_MPZ (y),
+                              - SCM_MOST_NEGATIVE_FIXNUM) == 0))
+            {
+              /* Special case:  x == fixnum-min && y == abs (fixnum-min) */
+             scm_remember_upto_here_1 (y);
+              return SCM_I_MAKINUM (-1);
+            }
          else
-           return SCM_MAKINUM (0);
+           return SCM_I_MAKINUM (0);
        }
       else
        SCM_WTA_DISPATCH_2 (g_quotient, x, y, SCM_ARG2, s_quotient);
     }
   else if (SCM_BIGP (x))
     {
-      if (SCM_INUMP (y))
+      if (SCM_I_INUMP (y))
        {
-         long yy = SCM_INUM (y);
+         long yy = SCM_I_INUM (y);
          if (yy == 0)
            scm_num_overflow (s_quotient);
          else if (yy == 1)
@@ -763,25 +819,29 @@ SCM_GPROC (s_remainder, "remainder", 2, 0, 0, scm_remainder, g_remainder);
 SCM
 scm_remainder (SCM x, SCM y)
 {
-  if (SCM_INUMP (x))
+  if (SCM_I_INUMP (x))
     {
-      if (SCM_INUMP (y))
+      if (SCM_I_INUMP (y))
        {
-         long yy = SCM_INUM (y);
+         long yy = SCM_I_INUM (y);
          if (yy == 0)
            scm_num_overflow (s_remainder);
          else
            {
-             long z = SCM_INUM (x) % yy;
-             return SCM_MAKINUM (z);
+             long z = SCM_I_INUM (x) % yy;
+             return SCM_I_MAKINUM (z);
            }
        }
       else if (SCM_BIGP (y))
        {
-         if ((SCM_INUM (x) == SCM_MOST_NEGATIVE_FIXNUM)
-             && (scm_i_bigcmp (abs_most_negative_fixnum, y) == 0))
-           /* Special case:  x == fixnum-min && y == abs (fixnum-min) */
-           return SCM_MAKINUM (0);
+         if ((SCM_I_INUM (x) == SCM_MOST_NEGATIVE_FIXNUM)
+             && (mpz_cmp_ui (SCM_I_BIG_MPZ (y),
+                              - SCM_MOST_NEGATIVE_FIXNUM) == 0))
+            {
+              /* Special case:  x == fixnum-min && y == abs (fixnum-min) */
+             scm_remember_upto_here_1 (y);
+              return SCM_I_MAKINUM (0);
+            }
          else
            return x;
        }
@@ -790,9 +850,9 @@ scm_remainder (SCM x, SCM y)
     }
   else if (SCM_BIGP (x))
     {
-      if (SCM_INUMP (y))
+      if (SCM_I_INUMP (y))
        {
-         long yy = SCM_INUM (y);
+         long yy = SCM_I_INUM (y);
          if (yy == 0)
            scm_num_overflow (s_remainder);
          else
@@ -832,18 +892,19 @@ SCM_GPROC (s_modulo, "modulo", 2, 0, 0, scm_modulo, g_modulo);
 SCM
 scm_modulo (SCM x, SCM y)
 {
-  if (SCM_INUMP (x))
+  if (SCM_I_INUMP (x))
     {
-      long xx = SCM_INUM (x);
-      if (SCM_INUMP (y))
+      long xx = SCM_I_INUM (x);
+      if (SCM_I_INUMP (y))
        {
-         long yy = SCM_INUM (y);
+         long yy = SCM_I_INUM (y);
          if (yy == 0)
            scm_num_overflow (s_modulo);
          else
            {
-             /* FIXME: I think this may be a bug on some arches -- results
-                of % with negative second arg are undefined... */
+             /* C99 specifies that "%" is the remainder corresponding to a
+                 quotient rounded towards zero, and that's also traditional
+                 for machine division, so z here should be well defined.  */
              long z = xx % yy;
              long result;
 
@@ -861,16 +922,12 @@ scm_modulo (SCM x, SCM y)
                  else
                    result = z;
                }
-             return SCM_MAKINUM (result);
+             return SCM_I_MAKINUM (result);
            }
        }
       else if (SCM_BIGP (y))
        {
          int sgn_y = mpz_sgn (SCM_I_BIG_MPZ (y));
-
-         if (sgn_y == 0)
-           scm_num_overflow (s_modulo);
-         else
            {
              mpz_t z_x;
              SCM result;
@@ -912,9 +969,9 @@ scm_modulo (SCM x, SCM y)
     }
   else if (SCM_BIGP (x))
     {
-      if (SCM_INUMP (y))
+      if (SCM_I_INUMP (y))
        {
-         long yy = SCM_INUM (y);
+         long yy = SCM_I_INUM (y);
          if (yy == 0)
            scm_num_overflow (s_modulo);
          else
@@ -933,10 +990,6 @@ scm_modulo (SCM x, SCM y)
        }
       else if (SCM_BIGP (y))
        {
-         int sgn_y = mpz_sgn (SCM_I_BIG_MPZ (y));
-         if (sgn_y == 0)
-           scm_num_overflow (s_modulo);
-         else
            {
              SCM result = scm_i_mkbig ();
              int y_sgn = mpz_sgn (SCM_I_BIG_MPZ (y));
@@ -969,14 +1022,14 @@ SCM
 scm_gcd (SCM x, SCM y)
 {
   if (SCM_UNBNDP (y))
-    return SCM_UNBNDP (x) ? SCM_INUM0 : x;
+    return SCM_UNBNDP (x) ? SCM_INUM0 : scm_abs (x);
   
-  if (SCM_INUMP (x))
+  if (SCM_I_INUMP (x))
     {
-      if (SCM_INUMP (y))
+      if (SCM_I_INUMP (y))
         {
-          long xx = SCM_INUM (x);
-          long yy = SCM_INUM (y);
+          long xx = SCM_I_INUM (x);
+          long yy = SCM_I_INUM (y);
           long u = xx < 0 ? -xx : xx;
           long v = yy < 0 ? -yy : yy;
           long result;
@@ -1016,30 +1069,25 @@ scm_gcd (SCM x, SCM y)
              result = u * k;
            }
           return (SCM_POSFIXABLE (result)
-                 ? SCM_MAKINUM (result)
+                 ? SCM_I_MAKINUM (result)
                  : scm_i_long2big (result));
         }
       else if (SCM_BIGP (y))
         {
-          SCM result = scm_i_mkbig ();
-          SCM mx = scm_i_mkbig ();
-          mpz_set_si (SCM_I_BIG_MPZ (mx), SCM_INUM (x));
-          scm_remember_upto_here_1 (x);
-          mpz_gcd (SCM_I_BIG_MPZ (result),
-                  SCM_I_BIG_MPZ (mx),
-                  SCM_I_BIG_MPZ (y));
-          scm_remember_upto_here_2 (mx, y);
-          return scm_i_normbig (result);
+          SCM_SWAP (x, y);
+          goto big_inum;
         }
       else
         SCM_WTA_DISPATCH_2 (g_gcd, x, y, SCM_ARG2, s_gcd);
     }
   else if (SCM_BIGP (x))
     {
-      if (SCM_INUMP (y))
+      if (SCM_I_INUMP (y))
         {
           unsigned long result;
-          long yy = SCM_INUM (y);
+          long yy;
+        big_inum:
+          yy = SCM_I_INUM (y);
           if (yy == 0)
             return scm_abs (x);
           if (yy < 0)
@@ -1047,8 +1095,8 @@ scm_gcd (SCM x, SCM y)
           result = mpz_gcd_ui (NULL, SCM_I_BIG_MPZ (x), yy);
           scm_remember_upto_here_1 (x);
           return (SCM_POSFIXABLE (result) 
-                 ? SCM_MAKINUM (result)
-                 : scm_ulong2num (result));
+                 ? SCM_I_MAKINUM (result)
+                 : scm_from_ulong (result));
         }
       else if (SCM_BIGP (y))
         {
@@ -1076,21 +1124,21 @@ scm_lcm (SCM n1, SCM n2)
   if (SCM_UNBNDP (n2))
     {
       if (SCM_UNBNDP (n1))
-        return SCM_MAKINUM (1L);
-      n2 = SCM_MAKINUM (1L);
+        return SCM_I_MAKINUM (1L);
+      n2 = SCM_I_MAKINUM (1L);
     }
 
-  SCM_GASSERT2 (SCM_INUMP (n1) || SCM_BIGP (n1),
+  SCM_GASSERT2 (SCM_I_INUMP (n1) || SCM_BIGP (n1),
                 g_lcm, n1, n2, SCM_ARG1, s_lcm);
-  SCM_GASSERT2 (SCM_INUMP (n2) || SCM_BIGP (n2),
+  SCM_GASSERT2 (SCM_I_INUMP (n2) || SCM_BIGP (n2),
                 g_lcm, n1, n2, SCM_ARGn, s_lcm);
 
-  if (SCM_INUMP (n1))
+  if (SCM_I_INUMP (n1))
     {
-      if (SCM_INUMP (n2))
+      if (SCM_I_INUMP (n2))
         {
           SCM d = scm_gcd (n1, n2);
-          if (SCM_EQ_P (d, SCM_INUM0))
+          if (scm_is_eq (d, SCM_INUM0))
             return d;
           else
             return scm_abs (scm_product (n1, scm_quotient (n2, d)));
@@ -1101,7 +1149,7 @@ scm_lcm (SCM n1, SCM n2)
         inumbig:
           {
             SCM result = scm_i_mkbig ();
-            long nn1 = SCM_INUM (n1);
+            long nn1 = SCM_I_INUM (n1);
             if (nn1 == 0) return SCM_INUM0;
             if (nn1 < 0) nn1 = - nn1;
             mpz_lcm_ui (SCM_I_BIG_MPZ (result), SCM_I_BIG_MPZ (n2), nn1);
@@ -1113,7 +1161,7 @@ scm_lcm (SCM n1, SCM n2)
   else
     {
       /* big n1 */
-      if (SCM_INUMP (n2))
+      if (SCM_I_INUMP (n2))
         {
           SCM_SWAP (n1, n2);
           goto inumbig;
@@ -1131,12 +1179,6 @@ scm_lcm (SCM n1, SCM n2)
     }
 }
 
-#ifndef scm_long2num
-#define SCM_LOGOP_RETURN(x) scm_ulong2num(x)
-#else
-#define SCM_LOGOP_RETURN(x) SCM_MAKINUM(x)
-#endif
-
 /* Emulating 2's complement bignums with sign magnitude arithmetic:
 
    Logand:
@@ -1188,7 +1230,7 @@ SCM_DEFINE1 (scm_logand, "logand", scm_tc7_asubr,
   if (SCM_UNBNDP (n2))
     {
       if (SCM_UNBNDP (n1))
-       return SCM_MAKINUM (-1);
+       return SCM_I_MAKINUM (-1);
       else if (!SCM_NUMBERP (n1))
        SCM_WRONG_TYPE_ARG (SCM_ARG1, n1);
       else if (SCM_NUMBERP (n1))
@@ -1197,13 +1239,13 @@ SCM_DEFINE1 (scm_logand, "logand", scm_tc7_asubr,
        SCM_WRONG_TYPE_ARG (SCM_ARG1, n1);
     }
 
-  if (SCM_INUMP (n1))
+  if (SCM_I_INUMP (n1))
     {
-      nn1 = SCM_INUM (n1);
-      if (SCM_INUMP (n2))
+      nn1 = SCM_I_INUM (n1);
+      if (SCM_I_INUMP (n2))
        {
-         long nn2 = SCM_INUM (n2);
-         return SCM_MAKINUM (nn1 & nn2);
+         long nn2 = SCM_I_INUM (n2);
+         return SCM_I_MAKINUM (nn1 & nn2);
        }
       else if SCM_BIGP (n2)
        {
@@ -1225,10 +1267,10 @@ SCM_DEFINE1 (scm_logand, "logand", scm_tc7_asubr,
     }
   else if (SCM_BIGP (n1))
     {
-      if (SCM_INUMP (n2))
+      if (SCM_I_INUMP (n2))
        {
          SCM_SWAP (n1, n2);
-         nn1 = SCM_INUM (n1);
+         nn1 = SCM_I_INUM (n1);
          goto intbig;
        }
       else if (SCM_BIGP (n2))
@@ -1271,13 +1313,13 @@ SCM_DEFINE1 (scm_logior, "logior", scm_tc7_asubr,
        SCM_WRONG_TYPE_ARG (SCM_ARG1, n1);
     }
 
-  if (SCM_INUMP (n1))
+  if (SCM_I_INUMP (n1))
     {
-      nn1 = SCM_INUM (n1);
-      if (SCM_INUMP (n2))
+      nn1 = SCM_I_INUM (n1);
+      if (SCM_I_INUMP (n2))
        {
-         long nn2 = SCM_INUM (n2);
-         return SCM_MAKINUM (nn1 | nn2);
+         long nn2 = SCM_I_INUM (n2);
+         return SCM_I_MAKINUM (nn1 | nn2);
        }
       else if (SCM_BIGP (n2))
        {
@@ -1291,7 +1333,7 @@ SCM_DEFINE1 (scm_logior, "logior", scm_tc7_asubr,
            mpz_ior (SCM_I_BIG_MPZ (result_z), nn1_z, SCM_I_BIG_MPZ (n2));
            scm_remember_upto_here_1 (n2);
            mpz_clear (nn1_z);
-           return result_z;
+           return scm_i_normbig (result_z);
          }
        }
       else
@@ -1299,10 +1341,10 @@ SCM_DEFINE1 (scm_logior, "logior", scm_tc7_asubr,
     }
   else if (SCM_BIGP (n1))
     {
-      if (SCM_INUMP (n2))
+      if (SCM_I_INUMP (n2))
        {
          SCM_SWAP (n1, n2); 
-         nn1 = SCM_INUM (n1);
+         nn1 = SCM_I_INUM (n1);
          goto intbig;
        }
       else if (SCM_BIGP (n2))
@@ -1312,7 +1354,7 @@ SCM_DEFINE1 (scm_logior, "logior", scm_tc7_asubr,
                   SCM_I_BIG_MPZ (n1),
                   SCM_I_BIG_MPZ (n2));
          scm_remember_upto_here_2 (n1, n2);
-         return result_z;
+         return scm_i_normbig (result_z);
        }
       else
        SCM_WRONG_TYPE_ARG (SCM_ARG2, n2);
@@ -1347,13 +1389,13 @@ SCM_DEFINE1 (scm_logxor, "logxor", scm_tc7_asubr,
        SCM_WRONG_TYPE_ARG (SCM_ARG1, n1);
     }
 
-  if (SCM_INUMP (n1))
+  if (SCM_I_INUMP (n1))
     {
-      nn1 = SCM_INUM (n1);
-      if (SCM_INUMP (n2))
+      nn1 = SCM_I_INUM (n1);
+      if (SCM_I_INUMP (n2))
        {
-         long nn2 = SCM_INUM (n2);
-         return SCM_MAKINUM (nn1 ^ nn2);
+         long nn2 = SCM_I_INUM (n2);
+         return SCM_I_MAKINUM (nn1 ^ nn2);
        }
       else if (SCM_BIGP (n2))
        {
@@ -1373,10 +1415,10 @@ SCM_DEFINE1 (scm_logxor, "logxor", scm_tc7_asubr,
     }
   else if (SCM_BIGP (n1))
     {
-      if (SCM_INUMP (n2))
+      if (SCM_I_INUMP (n2))
        {
          SCM_SWAP (n1, n2);
-         nn1 = SCM_INUM (n1);
+         nn1 = SCM_I_INUM (n1);
          goto intbig;
        }
       else if (SCM_BIGP (n2))
@@ -1399,8 +1441,12 @@ SCM_DEFINE1 (scm_logxor, "logxor", scm_tc7_asubr,
 
 SCM_DEFINE (scm_logtest, "logtest", 2, 0, 0,
             (SCM j, SCM k),
+           "Test whether @var{j} and @var{k} have any 1 bits in common.\n"
+           "This is equivalent to @code{(not (zero? (logand j k)))}, but\n"
+           "without actually calculating the @code{logand}, just testing\n"
+           "for non-zero.\n"
+           "\n"
            "@lisp\n"
-           "(logtest j k) @equiv{} (not (zero? (logand j k)))\n\n"
            "(logtest #b0100 #b1011) @result{} #f\n"
            "(logtest #b0100 #b0111) @result{} #t\n"
            "@end lisp")
@@ -1408,13 +1454,13 @@ SCM_DEFINE (scm_logtest, "logtest", 2, 0, 0,
 {
   long int nj;
 
-  if (SCM_INUMP (j))
+  if (SCM_I_INUMP (j))
     {
-      nj = SCM_INUM (j);
-      if (SCM_INUMP (k))
+      nj = SCM_I_INUM (j);
+      if (SCM_I_INUMP (k))
        {
-         long nk = SCM_INUM (k);
-         return SCM_BOOL (nj & nk);
+         long nk = SCM_I_INUM (k);
+         return scm_from_bool (nj & nk);
        }
       else if (SCM_BIGP (k))
        {
@@ -1427,7 +1473,7 @@ SCM_DEFINE (scm_logtest, "logtest", 2, 0, 0,
            mpz_init_set_si (nj_z, nj);
            mpz_and (nj_z, nj_z, SCM_I_BIG_MPZ (k));
            scm_remember_upto_here_1 (k);
-           result = SCM_BOOL (mpz_sgn (nj_z) != 0);
+           result = scm_from_bool (mpz_sgn (nj_z) != 0);
            mpz_clear (nj_z);
            return result;
          }
@@ -1437,10 +1483,10 @@ SCM_DEFINE (scm_logtest, "logtest", 2, 0, 0,
     }
   else if (SCM_BIGP (j))
     {
-      if (SCM_INUMP (k))
+      if (SCM_I_INUMP (k))
        {
          SCM_SWAP (j, k);
-         nj = SCM_INUM (j);
+         nj = SCM_I_INUM (j);
          goto intbig;
        }
       else if (SCM_BIGP (k))
@@ -1452,7 +1498,7 @@ SCM_DEFINE (scm_logtest, "logtest", 2, 0, 0,
                   SCM_I_BIG_MPZ (j),
                   SCM_I_BIG_MPZ (k));
          scm_remember_upto_here_2 (j, k);
-         result = SCM_BOOL (mpz_sgn (result_z) != 0);
+         result = scm_from_bool (mpz_sgn (result_z) != 0);
          mpz_clear (result_z);
          return result;
        }
@@ -1467,8 +1513,10 @@ SCM_DEFINE (scm_logtest, "logtest", 2, 0, 0,
 
 SCM_DEFINE (scm_logbit_p, "logbit?", 2, 0, 0,
             (SCM index, SCM j),
+           "Test whether bit number @var{index} in @var{j} is set.\n"
+           "@var{index} starts from 0 for the least significant bit.\n"
+           "\n"
            "@lisp\n"
-           "(logbit? index j) @equiv{} (logtest (integer-expt 2 index) j)\n\n"
            "(logbit? 0 #b1101) @result{} #t\n"
            "(logbit? 1 #b1101) @result{} #f\n"
            "(logbit? 2 #b1101) @result{} #t\n"
@@ -1478,17 +1526,19 @@ SCM_DEFINE (scm_logbit_p, "logbit?", 2, 0, 0,
 #define FUNC_NAME s_scm_logbit_p
 {
   unsigned long int iindex;
+  iindex = scm_to_ulong (index);
 
-  SCM_VALIDATE_INUM_MIN (SCM_ARG1, index, 0);
-  iindex = (unsigned long int) SCM_INUM (index);
-
-  if (SCM_INUMP (j))
-    return SCM_BOOL ((1L << iindex) & SCM_INUM (j));
+  if (SCM_I_INUMP (j))
+    {
+      /* bits above what's in an inum follow the sign bit */
+      iindex = min (iindex, SCM_LONG_BIT - 1);
+      return scm_from_bool ((1L << iindex) & SCM_I_INUM (j));
+    }
   else if (SCM_BIGP (j))
     {
       int val = mpz_tstbit (SCM_I_BIG_MPZ (j), iindex);
       scm_remember_upto_here_1 (j);
-      return SCM_BOOL (val);
+      return scm_from_bool (val);
     }
   else
     SCM_WRONG_TYPE_ARG (SCM_ARG2, j);
@@ -1509,12 +1559,12 @@ SCM_DEFINE (scm_lognot, "lognot", 1, 0, 0,
            "@end lisp")
 #define FUNC_NAME s_scm_lognot
 {
-  if (SCM_INUMP (n)) {
+  if (SCM_I_INUMP (n)) {
     /* No overflow here, just need to toggle all the bits making up the inum.
        Enhancement: No need to strip the tag and add it back, could just xor
        a block of 1 bits, if that worked with the various debug versions of
        the SCM typedef.  */
-    return SCM_MAKINUM (~ SCM_INUM (n));
+    return SCM_I_MAKINUM (~ SCM_I_INUM (n));
 
   } else if (SCM_BIGP (n)) {
     SCM result = scm_i_mkbig ();
@@ -1528,54 +1578,160 @@ SCM_DEFINE (scm_lognot, "lognot", 1, 0, 0,
 }
 #undef FUNC_NAME
 
+/* returns 0 if IN is not an integer.  OUT must already be
+   initialized. */
+static int
+coerce_to_big (SCM in, mpz_t out)
+{
+  if (SCM_BIGP (in))
+    mpz_set (out, SCM_I_BIG_MPZ (in));
+  else if (SCM_I_INUMP (in))
+    mpz_set_si (out, SCM_I_INUM (in));
+  else
+    return 0;
+
+  return 1;
+}
+
+SCM_DEFINE (scm_modulo_expt, "modulo-expt", 3, 0, 0,
+            (SCM n, SCM k, SCM m),
+            "Return @var{n} raised to the integer exponent\n"
+           "@var{k}, modulo @var{m}.\n"
+           "\n"
+           "@lisp\n"
+           "(modulo-expt 2 3 5)\n"
+           "   @result{} 3\n"
+           "@end lisp")
+#define FUNC_NAME s_scm_modulo_expt
+{
+  mpz_t n_tmp; 
+  mpz_t k_tmp; 
+  mpz_t m_tmp; 
+    
+  /* There are two classes of error we might encounter --
+     1) Math errors, which we'll report by calling scm_num_overflow,
+     and
+     2) wrong-type errors, which of course we'll report by calling
+     SCM_WRONG_TYPE_ARG.
+     We don't report those errors immediately, however; instead we do
+     some cleanup first.  These variables tell us which error (if
+     any) we should report after cleaning up.  
+  */
+  int report_overflow = 0;
+
+  int position_of_wrong_type = 0;
+  SCM value_of_wrong_type = SCM_INUM0;
+
+  SCM result = SCM_UNDEFINED;
+
+  mpz_init (n_tmp);
+  mpz_init (k_tmp);
+  mpz_init (m_tmp);
+    
+  if (scm_is_eq (m, SCM_INUM0))
+    {
+      report_overflow = 1;
+      goto cleanup;
+    }
+  
+  if (!coerce_to_big (n, n_tmp))
+    {
+      value_of_wrong_type = n;
+      position_of_wrong_type = 1;
+      goto cleanup;
+    }
+
+  if (!coerce_to_big (k, k_tmp))
+    {
+      value_of_wrong_type = k;
+      position_of_wrong_type = 2;
+      goto cleanup;
+    }
+
+  if (!coerce_to_big (m, m_tmp))
+    {
+      value_of_wrong_type = m;
+      position_of_wrong_type = 3;
+      goto cleanup;
+    }
+
+  /* if the exponent K is negative, and we simply call mpz_powm, we
+     will get a divide-by-zero exception when an inverse 1/n mod m
+     doesn't exist (or is not unique).  Since exceptions are hard to
+     handle, we'll attempt the inversion "by hand" -- that way, we get
+     a simple failure code, which is easy to handle. */
+  
+  if (-1 == mpz_sgn (k_tmp))
+    {
+      if (!mpz_invert (n_tmp, n_tmp, m_tmp))
+        {
+          report_overflow = 1;
+          goto cleanup;
+        }
+      mpz_neg (k_tmp, k_tmp);
+    }
+
+  result = scm_i_mkbig ();
+  mpz_powm (SCM_I_BIG_MPZ (result),
+            n_tmp,
+            k_tmp,
+            m_tmp);
+
+  if (mpz_sgn (m_tmp) < 0 && mpz_sgn (SCM_I_BIG_MPZ (result)) != 0)
+    mpz_add (SCM_I_BIG_MPZ (result), SCM_I_BIG_MPZ (result), m_tmp);
+
+ cleanup:
+  mpz_clear (m_tmp);
+  mpz_clear (k_tmp);
+  mpz_clear (n_tmp);
+
+  if (report_overflow)
+    scm_num_overflow (FUNC_NAME);
+
+  if (position_of_wrong_type)
+    SCM_WRONG_TYPE_ARG (position_of_wrong_type,
+                        value_of_wrong_type);
+  
+  return scm_i_normbig (result);
+}
+#undef FUNC_NAME
+
 SCM_DEFINE (scm_integer_expt, "integer-expt", 2, 0, 0,
             (SCM n, SCM k),
-           "Return @var{n} raised to the non-negative integer exponent\n"
-           "@var{k}.\n"
+           "Return @var{n} raised to the power @var{k}.  @var{k} must be an\n"
+           "exact integer, @var{n} can be any number.\n"
+           "\n"
+           "Negative @var{k} is supported, and results in @math{1/n^abs(k)}\n"
+           "in the usual way.  @math{@var{n}^0} is 1, as usual, and that\n"
+           "includes @math{0^0} is 1.\n"
            "\n"
            "@lisp\n"
-           "(integer-expt 2 5)\n"
-           "   @result{} 32\n"
-           "(integer-expt -3 3)\n"
-           "   @result{} -27\n"
+           "(integer-expt 2 5)   @result{} 32\n"
+           "(integer-expt -3 3)  @result{} -27\n"
+           "(integer-expt 5 -3)  @result{} 1/125\n"
+           "(integer-expt 0 0)   @result{} 1\n"
            "@end lisp")
 #define FUNC_NAME s_scm_integer_expt
 {
   long i2 = 0;
   SCM z_i2 = SCM_BOOL_F;
   int i2_is_big = 0;
-  SCM acc = SCM_MAKINUM (1L);
+  SCM acc = SCM_I_MAKINUM (1L);
 
   /* 0^0 == 1 according to R5RS */
-  if (SCM_EQ_P (n, SCM_INUM0) || SCM_EQ_P (n, acc))
-    return SCM_FALSEP (scm_zero_p(k)) ? n : acc;
-  else if (SCM_EQ_P (n, SCM_MAKINUM (-1L)))
-    return SCM_FALSEP (scm_even_p (k)) ? n : acc;
+  if (scm_is_eq (n, SCM_INUM0) || scm_is_eq (n, acc))
+    return scm_is_false (scm_zero_p(k)) ? n : acc;
+  else if (scm_is_eq (n, SCM_I_MAKINUM (-1L)))
+    return scm_is_false (scm_even_p (k)) ? n : acc;
 
-  if (SCM_INUMP (k))
-    i2 = SCM_INUM (k);
+  if (SCM_I_INUMP (k))
+    i2 = SCM_I_INUM (k);
   else if (SCM_BIGP (k))
     {
       z_i2 = scm_i_clonebig (k, 1);
       scm_remember_upto_here_1 (k);
       i2_is_big = 1;
     }
-  else if (SCM_REALP (k))
-    {
-      double r = SCM_REAL_VALUE (k);
-      if (floor (r) != r)
-        SCM_WRONG_TYPE_ARG (2, k);
-      if ((r > SCM_MOST_POSITIVE_FIXNUM) || (r < SCM_MOST_NEGATIVE_FIXNUM))
-        {
-          z_i2 = scm_i_mkbig ();
-          mpz_set_d (SCM_I_BIG_MPZ (z_i2), r);
-          i2_is_big = 1;
-        }
-      else
-        {
-          i2 = r;
-        }
-    }
   else
     SCM_WRONG_TYPE_ARG (2, k);
   
@@ -1629,7 +1785,7 @@ SCM_DEFINE (scm_ash, "ash", 2, 0, 0,
            "Return @var{n} shifted left by @var{cnt} bits, or shifted right\n"
            "if @var{cnt} is negative.  This is an ``arithmetic'' shift.\n"
            "\n"
-           "This is effectively a multiplication by 2^@var{cnt}}, and when\n"
+           "This is effectively a multiplication by 2^@var{cnt}, and when\n"
            "@var{cnt} is negative it's a division, rounded towards negative\n"
            "infinity.  (Note that this is not the same rounding as\n"
            "@code{quotient} does.)\n"
@@ -1648,36 +1804,82 @@ SCM_DEFINE (scm_ash, "ash", 2, 0, 0,
 #define FUNC_NAME s_scm_ash
 {
   long bits_to_shift;
+  bits_to_shift = scm_to_long (cnt);
 
-  SCM_VALIDATE_INUM (2, cnt);
+  if (SCM_I_INUMP (n))
+    {
+      long nn = SCM_I_INUM (n);
 
-  bits_to_shift = SCM_INUM (cnt);
+      if (bits_to_shift > 0)
+        {
+          /* Left shift of bits_to_shift >= SCM_I_FIXNUM_BIT-1 will always
+             overflow a non-zero fixnum.  For smaller shifts we check the
+             bits going into positions above SCM_I_FIXNUM_BIT-1.  If they're
+             all 0s for nn>=0, or all 1s for nn<0 then there's no overflow.
+             Those bits are "nn >> (SCM_I_FIXNUM_BIT-1 -
+             bits_to_shift)".  */
+
+          if (nn == 0)
+            return n;
+
+          if (bits_to_shift < SCM_I_FIXNUM_BIT-1
+              && ((unsigned long)
+                  (SCM_SRS (nn, (SCM_I_FIXNUM_BIT-1 - bits_to_shift)) + 1)
+                  <= 1))
+            {
+              return SCM_I_MAKINUM (nn << bits_to_shift);
+            }
+          else
+            {
+              SCM result = scm_i_long2big (nn);
+              mpz_mul_2exp (SCM_I_BIG_MPZ (result), SCM_I_BIG_MPZ (result),
+                            bits_to_shift);
+              return result;
+            }
+        }
+      else
+        {
+          bits_to_shift = -bits_to_shift;
+          if (bits_to_shift >= SCM_LONG_BIT)
+            return (nn >= 0 ? SCM_I_MAKINUM (0) : SCM_I_MAKINUM(-1));
+          else
+            return SCM_I_MAKINUM (SCM_SRS (nn, bits_to_shift));
+        }
 
-  if (bits_to_shift < 0)
+    }
+  else if (SCM_BIGP (n))
     {
-      /* Shift right by abs(cnt) bits.  This is realized as a division
-         by div:=2^abs(cnt).  However, to guarantee the floor
-         rounding, negative values require some special treatment.
-      */
-      SCM div = scm_integer_expt (SCM_MAKINUM (2),
-                                  SCM_MAKINUM (-bits_to_shift));
+      SCM result;
 
-      /* scm_quotient assumes its arguments are integers, but it's legal to (ash 1/2 -1) */
-      if (SCM_FALSEP (scm_negative_p (n)))
-        return scm_quotient (n, div);
+      if (bits_to_shift == 0)
+        return n;
+
+      result = scm_i_mkbig ();
+      if (bits_to_shift >= 0)
+        {
+          mpz_mul_2exp (SCM_I_BIG_MPZ (result), SCM_I_BIG_MPZ (n),
+                        bits_to_shift);
+          return result;
+        }
       else
-        return scm_sum (SCM_MAKINUM (-1L),
-                        scm_quotient (scm_sum (SCM_MAKINUM (1L), n), div));
+        {
+          /* GMP doesn't have an fdiv_q_2exp variant returning just a long, so
+             we have to allocate a bignum even if the result is going to be a
+             fixnum.  */
+          mpz_fdiv_q_2exp (SCM_I_BIG_MPZ (result), SCM_I_BIG_MPZ (n),
+                           -bits_to_shift);
+          return scm_i_normbig (result);
+        }
+
     }
   else
-    /* Shift left is done by multiplication with 2^CNT */
-    return scm_product (n, scm_integer_expt (SCM_MAKINUM (2), cnt));
+    {
+      SCM_WRONG_TYPE_ARG (SCM_ARG1, n);
+    }
 }
 #undef FUNC_NAME
 
 
-#define MIN(x,y)  ((x) < (y) ? (x) : (y))
-
 SCM_DEFINE (scm_bit_extract, "bit-extract", 3, 0, 0,
             (SCM n, SCM start, SCM end),
            "Return the integer composed of the @var{start} (inclusive)\n"
@@ -1693,22 +1895,20 @@ SCM_DEFINE (scm_bit_extract, "bit-extract", 3, 0, 0,
 #define FUNC_NAME s_scm_bit_extract
 {
   unsigned long int istart, iend, bits;
-  SCM_VALIDATE_INUM_MIN_COPY (2, start,0, istart);
-  SCM_VALIDATE_INUM_MIN_COPY (3, end, 0, iend);
+  istart = scm_to_ulong (start);
+  iend = scm_to_ulong (end);
   SCM_ASSERT_RANGE (3, end, (iend >= istart));
 
   /* how many bits to keep */
   bits = iend - istart;
 
-  if (SCM_INUMP (n))
+  if (SCM_I_INUMP (n))
     {
-      long int in = SCM_INUM (n);
+      long int in = SCM_I_INUM (n);
 
       /* When istart>=SCM_I_FIXNUM_BIT we can just limit the shift to
-         SCM_I_FIXNUM_BIT-1 to get either 0 or -1 per the sign of "in".
-         FIXME: This shift relies on signed right shifts being arithmetic,
-         which is not guaranteed by C99. */
-      in >>= MIN (istart, SCM_I_FIXNUM_BIT-1);
+         SCM_I_FIXNUM_BIT-1 to get either 0 or -1 per the sign of "in". */
+      in = SCM_SRS (in, min (istart, SCM_I_FIXNUM_BIT-1));
 
       if (in < 0 && bits >= SCM_I_FIXNUM_BIT)
        {
@@ -1723,15 +1923,15 @@ SCM_DEFINE (scm_bit_extract, "bit-extract", 3, 0, 0,
        }
 
       /* mask down to requisite bits */
-      bits = MIN (bits, SCM_I_FIXNUM_BIT);
-      return SCM_MAKINUM (in & ((1L << bits) - 1));
+      bits = min (bits, SCM_I_FIXNUM_BIT);
+      return SCM_I_MAKINUM (in & ((1L << bits) - 1));
     }
   else if (SCM_BIGP (n))
     {
       SCM result;
       if (bits == 1)
         {
-          result = SCM_MAKINUM (mpz_tstbit (SCM_I_BIG_MPZ (n), istart));
+          result = SCM_I_MAKINUM (mpz_tstbit (SCM_I_BIG_MPZ (n), istart));
         }
       else
         {
@@ -1773,10 +1973,10 @@ SCM_DEFINE (scm_logcount, "logcount", 1, 0, 0,
            "@end lisp")
 #define FUNC_NAME s_scm_logcount
 {
-  if (SCM_INUMP (n))
+  if (SCM_I_INUMP (n))
     {
       unsigned long int c = 0;
-      long int nn = SCM_INUM (n);
+      long int nn = SCM_I_INUM (n);
       if (nn < 0)
         nn = -1 - nn;
       while (nn)
@@ -1784,7 +1984,7 @@ SCM_DEFINE (scm_logcount, "logcount", 1, 0, 0,
           c += scm_logtab[15 & nn];
           nn >>= 4;
         }
-      return SCM_MAKINUM (c);
+      return SCM_I_MAKINUM (c);
     }
   else if (SCM_BIGP (n))
     {
@@ -1794,7 +1994,7 @@ SCM_DEFINE (scm_logcount, "logcount", 1, 0, 0,
       else
         count = mpz_hamdist (SCM_I_BIG_MPZ (n), z_negative_one);
       scm_remember_upto_here_1 (n);
-      return SCM_MAKINUM (count);
+      return SCM_I_MAKINUM (count);
     }
   else
     SCM_WRONG_TYPE_ARG (SCM_ARG1, n);
@@ -1821,11 +2021,11 @@ SCM_DEFINE (scm_integer_length, "integer-length", 1, 0, 0,
            "@end lisp")
 #define FUNC_NAME s_scm_integer_length
 {
-  if (SCM_INUMP (n))
+  if (SCM_I_INUMP (n))
     {
       unsigned long int c = 0;
       unsigned int l = 4;
-      long int nn = SCM_INUM (n);
+      long int nn = SCM_I_INUM (n);
       if (nn < 0)
        nn = -1 - nn;
       while (nn)
@@ -1834,7 +2034,7 @@ SCM_DEFINE (scm_integer_length, "integer-length", 1, 0, 0,
          l = scm_ilentab [15 & nn];
          nn >>= 4;
        }
-      return SCM_MAKINUM (c - 4 + l);
+      return SCM_I_MAKINUM (c - 4 + l);
     }
   else if (SCM_BIGP (n))
     {
@@ -1847,7 +2047,7 @@ SCM_DEFINE (scm_integer_length, "integer-length", 1, 0, 0,
                        mpz_scan1 (SCM_I_BIG_MPZ (n), 0)) == ULONG_MAX)
        size--;
       scm_remember_upto_here_1 (n);
-      return SCM_MAKINUM (size);
+      return SCM_I_MAKINUM (size);
     }
   else
     SCM_WRONG_TYPE_ARG (SCM_ARG1, n);
@@ -1855,19 +2055,71 @@ SCM_DEFINE (scm_integer_length, "integer-length", 1, 0, 0,
 #undef FUNC_NAME
 
 /*** NUMBERS -> STRINGS ***/
-int scm_dblprec;
-static const double fx[] =
-{  0.0,  5e-1,  5e-2,  5e-3,   5e-4, 5e-5,
-  5e-6,  5e-7,  5e-8,  5e-9,  5e-10,
- 5e-11, 5e-12, 5e-13, 5e-14,  5e-15,
- 5e-16, 5e-17, 5e-18, 5e-19,  5e-20};
+#define SCM_MAX_DBL_PREC  60
+#define SCM_MAX_DBL_RADIX 36
+
+/* this is an array starting with radix 2, and ending with radix SCM_MAX_DBL_RADIX */
+static int scm_dblprec[SCM_MAX_DBL_RADIX - 1];
+static double fx_per_radix[SCM_MAX_DBL_RADIX - 1][SCM_MAX_DBL_PREC];
+
+static
+void init_dblprec(int *prec, int radix) {
+   /* determine floating point precision by adding successively
+      smaller increments to 1.0 until it is considered == 1.0 */
+   double f = ((double)1.0)/radix;
+   double fsum = 1.0 + f;
+
+   *prec = 0;
+   while (fsum != 1.0)
+   {
+      if (++(*prec) > SCM_MAX_DBL_PREC)
+         fsum = 1.0;
+      else
+      {
+         f /= radix;
+         fsum = f + 1.0;
+      }
+   }
+   (*prec) -= 1;
+}
+
+static
+void init_fx_radix(double *fx_list, int radix)
+{
+  /* initialize a per-radix list of tolerances.  When added
+     to a number < 1.0, we can determine if we should raund
+     up and quit converting a number to a string. */
+   int i;
+   fx_list[0] = 0.0;
+   fx_list[1] = 0.5;
+   for( i = 2 ; i < SCM_MAX_DBL_PREC; ++i ) 
+     fx_list[i] = (fx_list[i-1] / radix);
+}
+
+/* use this array as a way to generate a single digit */
+static const char*number_chars="0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ";
 
 static size_t
-idbl2str (double f, char *a)
+idbl2str (double f, char *a, int radix)
 {
-  int efmt, dpt, d, i, wp = scm_dblprec;
-  size_t ch = 0;
-  int exp = 0;
+   int efmt, dpt, d, i, wp;
+   double *fx;
+#ifdef DBL_MIN_10_EXP
+   double f_cpy;
+   int exp_cpy;
+#endif /* DBL_MIN_10_EXP */
+   size_t ch = 0;
+   int exp = 0;
+
+   if(radix < 2 || 
+      radix > SCM_MAX_DBL_RADIX)
+   {
+      /* revert to existing behavior */
+      radix = 10;
+   }
+
+   wp = scm_dblprec[radix-2];
+   fx = fx_per_radix[radix-2];
 
   if (f == 0.0)
     {
@@ -1877,7 +2129,6 @@ idbl2str (double f, char *a)
       if (sgn < 0.0)
        a[ch++] = '-';
 #endif
-
       goto zero;       /*{a[0]='0'; a[1]='.'; a[2]='0'; return 3;} */
     }
 
@@ -1903,10 +2154,15 @@ idbl2str (double f, char *a)
 
 #ifdef DBL_MIN_10_EXP  /* Prevent unnormalized values, as from 
                          make-uniform-vector, from causing infinite loops. */
-  while (f < 1.0)
+  /* just do the checking...if it passes, we do the conversion for our
+     radix again below */
+  f_cpy = f;
+  exp_cpy = exp;
+
+  while (f_cpy < 1.0)
     {
-      f *= 10.0;
-      if (exp-- < DBL_MIN_10_EXP)
+      f_cpy *= 10.0;
+      if (exp_cpy-- < DBL_MIN_10_EXP)
        {
          a[ch++] = '#';
          a[ch++] = '.';
@@ -1914,10 +2170,10 @@ idbl2str (double f, char *a)
          return ch;
        }
     }
-  while (f > 10.0)
+  while (f_cpy > 10.0)
     {
-      f *= 0.10;
-      if (exp++ > DBL_MAX_10_EXP)
+      f_cpy *= 0.10;
+      if (exp_cpy++ > DBL_MAX_10_EXP)
        {
          a[ch++] = '#';
          a[ch++] = '.';
@@ -1925,25 +2181,27 @@ idbl2str (double f, char *a)
          return ch;
        }
     }
-#else
+#endif
+
   while (f < 1.0)
     {
-      f *= 10.0;
+      f *= radix;
       exp--;
     }
-  while (f > 10.0)
+  while (f > radix)
     {
-      f /= 10.0;
+      f /= radix;
       exp++;
     }
-#endif
-  if (f + fx[wp] >= 10.0)
+
+  if (f + fx[wp] >= radix)
     {
       f = 1.0;
       exp++;
     }
  zero:
-#ifdef ENGNOT
+#ifdef ENGNOT 
+  /* adding 9999 makes this equivalent to abs(x) % 3 */
   dpt = (exp + 9999) % 3;
   exp -= dpt++;
   efmt = 1;
@@ -1970,15 +2228,15 @@ idbl2str (double f, char *a)
     {
       d = f;
       f -= d;
-      a[ch++] = d + '0';
+      a[ch++] = number_chars[d];
       if (f < fx[wp])
        break;
       if (f + fx[wp] >= 1.0)
        {
-         a[ch - 1]++;
+          a[ch - 1] = number_chars[d+1]; 
          break;
        }
-      f *= 10.0;
+      f *= radix;
       if (!(--dpt))
        a[ch++] = '.';
     }
@@ -2013,10 +2271,10 @@ idbl2str (double f, char *a)
          exp = -exp;
          a[ch++] = '-';
        }
-      for (i = 10; i <= exp; i *= 10);
-      for (i /= 10; i; i /= 10)
+      for (i = radix; i <= exp; i *= radix);
+      for (i /= radix; i; i /= radix)
        {
-         a[ch++] = exp / i + '0';
+          a[ch++] = number_chars[exp / i];
          exp %= i;
        }
     }
@@ -2025,51 +2283,67 @@ idbl2str (double f, char *a)
 
 
 static size_t
-iflo2str (SCM flt, char *str)
+icmplx2str (double real, double imag, char *str, int radix)
+{
+  size_t i;
+  
+  i = idbl2str (real, str, radix);
+  if (imag != 0.0)
+    {
+      /* Don't output a '+' for negative numbers or for Inf and
+        NaN.  They will provide their own sign. */
+      if (0 <= imag && !xisinf (imag) && !xisnan (imag))
+       str[i++] = '+';
+      i += idbl2str (imag, &str[i], radix);
+      str[i++] = 'i';
+    }
+  return i;
+}
+
+static size_t
+iflo2str (SCM flt, char *str, int radix)
 {
   size_t i;
   if (SCM_REALP (flt))
-    i = idbl2str (SCM_REAL_VALUE (flt), str);
+    i = idbl2str (SCM_REAL_VALUE (flt), str, radix);
   else
+    i = icmplx2str (SCM_COMPLEX_REAL (flt), SCM_COMPLEX_IMAG (flt),
+                   str, radix);
+  return i;
+}
+
+/* convert a scm_t_intmax to a string (unterminated).  returns the number of
+   characters in the result. 
+   rad is output base
+   p is destination: worst case (base 2) is SCM_INTBUFLEN  */
+size_t
+scm_iint2str (scm_t_intmax num, int rad, char *p)
+{
+  if (num < 0)
     {
-      i = idbl2str (SCM_COMPLEX_REAL (flt), str);
-      if (SCM_COMPLEX_IMAG (flt) != 0.0)
-       {
-         double imag = SCM_COMPLEX_IMAG (flt);
-         /* Don't output a '+' for negative numbers or for Inf and
-            NaN.  They will provide their own sign. */
-         if (0 <= imag && !xisinf (imag) && !xisnan (imag))
-           str[i++] = '+';
-         i += idbl2str (imag, &str[i]);
-         str[i++] = 'i';
-       }
+      *p++ = '-';
+      return scm_iuint2str (-num, rad, p) + 1;
     }
-  return i;
+  else
+    return scm_iuint2str (num, rad, p);
 }
 
-/* convert a long to a string (unterminated).  returns the number of
+/* convert a scm_t_intmax to a string (unterminated).  returns the number of
    characters in the result. 
    rad is output base
    p is destination: worst case (base 2) is SCM_INTBUFLEN  */
 size_t
-scm_iint2str (long num, int rad, char *p)
+scm_iuint2str (scm_t_uintmax num, int rad, char *p)
 {
   size_t j = 1;
   size_t i;
-  unsigned long n = (num < 0) ? -num : num;
+  scm_t_uintmax n = num;
 
   for (n /= rad; n > 0; n /= rad)
     j++;
 
   i = j;
-  if (num < 0)
-    {
-      *p++ = '-';
-      j++;
-      n = -num;
-    }
-  else
-    n = num;
+  n = num;
   while (i--)
     {
       int d = n % rad;
@@ -2092,36 +2366,30 @@ SCM_DEFINE (scm_number_to_string, "number->string", 1, 1, 0,
   if (SCM_UNBNDP (radix))
     base = 10;
   else
-    {
-      SCM_VALIDATE_INUM (2, radix);
-      base = SCM_INUM (radix);
-      /* FIXME: ask if range limit was OK, and if so, document */
-      SCM_ASSERT_RANGE (2, radix, (base >= 2) && (base <= 36));
-    }
+    base = scm_to_signed_integer (radix, 2, 36);
 
-  if (SCM_INUMP (n))
+  if (SCM_I_INUMP (n))
     {
       char num_buf [SCM_INTBUFLEN];
-      size_t length = scm_iint2str (SCM_INUM (n), base, num_buf);
-      return scm_mem2string (num_buf, length);
+      size_t length = scm_iint2str (SCM_I_INUM (n), base, num_buf);
+      return scm_from_locale_stringn (num_buf, length);
     }
   else if (SCM_BIGP (n))
     {
       char *str = mpz_get_str (NULL, base, SCM_I_BIG_MPZ (n));
       scm_remember_upto_here_1 (n);
-      return scm_take0str (str);
+      return scm_take_locale_string (str);
     }
   else if (SCM_FRACTIONP (n))
     {
-      scm_i_fraction_reduce (n);
       return scm_string_append (scm_list_3 (scm_number_to_string (SCM_FRACTION_NUMERATOR (n), radix),
-                                           scm_mem2string ("/", 1), 
+                                           scm_from_locale_string ("/"), 
                                            scm_number_to_string (SCM_FRACTION_DENOMINATOR (n), radix)));
     }
   else if (SCM_INEXACTP (n))
     {
       char num_buf [FLOBUFLEN];
-      return scm_mem2string (num_buf, iflo2str (n, num_buf));
+      return scm_from_locale_stringn (num_buf, iflo2str (n, num_buf, base));
     }
   else
     SCM_WRONG_TYPE_ARG (1, n);
@@ -2136,26 +2404,39 @@ int
 scm_print_real (SCM sexp, SCM port, scm_print_state *pstate SCM_UNUSED)
 {
   char num_buf[FLOBUFLEN];
-  scm_lfwrite (num_buf, iflo2str (sexp, num_buf), port);
+  scm_lfwrite (num_buf, iflo2str (sexp, num_buf, 10), port);
   return !0;
 }
 
+void
+scm_i_print_double (double val, SCM port)
+{
+  char num_buf[FLOBUFLEN];
+  scm_lfwrite (num_buf, idbl2str (val, num_buf, 10), port);
+}
+
 int
 scm_print_complex (SCM sexp, SCM port, scm_print_state *pstate SCM_UNUSED)
 
 {
   char num_buf[FLOBUFLEN];
-  scm_lfwrite (num_buf, iflo2str (sexp, num_buf), port);
+  scm_lfwrite (num_buf, iflo2str (sexp, num_buf, 10), port);
   return !0;
 }
 
+void
+scm_i_print_complex (double real, double imag, SCM port)
+{
+  char num_buf[FLOBUFLEN];
+  scm_lfwrite (num_buf, icmplx2str (real, imag, num_buf, 10), port);
+}
+
 int
 scm_i_print_fraction (SCM sexp, SCM port, scm_print_state *pstate SCM_UNUSED)
 {
   SCM str;
-  scm_i_fraction_reduce (sexp);
   str = scm_number_to_string (sexp, SCM_UNDEFINED);
-  scm_lfwrite (SCM_STRING_CHARS (str), SCM_STRING_LENGTH (str), port);
+  scm_lfwrite (scm_i_string_chars (str), scm_i_string_length (str), port);
   scm_remember_upto_here_1 (str);
   return !0;
 }
@@ -2202,7 +2483,10 @@ enum t_exactness {NO_EXACTNESS, INEXACT, EXACT};
 /* R5RS, section 7.1.1, lexical structure of numbers: <uinteger R>. */
 
 /* In non ASCII-style encodings the following macro might not work. */
-#define XDIGIT2UINT(d) (isdigit (d) ? (d) - '0' : tolower (d) - 'a' + 10)
+#define XDIGIT2UINT(d)                                  \
+  (isdigit ((int) (unsigned char) d)                    \
+   ? (d) - '0'                                          \
+   : tolower ((int) (unsigned char) d) - 'a' + 10)
 
 static SCM
 mem2uinteger (const char* mem, size_t len, unsigned int *p_idx,
@@ -2220,18 +2504,18 @@ mem2uinteger (const char* mem, size_t len, unsigned int *p_idx,
     return SCM_BOOL_F;
 
   c = mem[idx];
-  if (!isxdigit (c))
+  if (!isxdigit ((int) (unsigned char) c))
     return SCM_BOOL_F;
   digit_value = XDIGIT2UINT (c);
   if (digit_value >= radix)
     return SCM_BOOL_F;
 
   idx++;
-  result = SCM_MAKINUM (digit_value);
+  result = SCM_I_MAKINUM (digit_value);
   while (idx != len)
     {
       char c = mem[idx];
-      if (isxdigit (c))
+      if (isxdigit ((int) (unsigned char) c))
        {
          if (hash_seen)
            break;
@@ -2250,9 +2534,9 @@ mem2uinteger (const char* mem, size_t len, unsigned int *p_idx,
       idx++;
       if (SCM_MOST_POSITIVE_FIXNUM / radix < shift)
        {
-         result = scm_product (result, SCM_MAKINUM (shift));
+         result = scm_product (result, SCM_I_MAKINUM (shift));
          if (add > 0)
-           result = scm_sum (result, SCM_MAKINUM (add));
+           result = scm_sum (result, SCM_I_MAKINUM (add));
 
          shift = radix;
          add = digit_value;
@@ -2265,9 +2549,9 @@ mem2uinteger (const char* mem, size_t len, unsigned int *p_idx,
     };
 
   if (shift > 1)
-    result = scm_product (result, SCM_MAKINUM (shift));
+    result = scm_product (result, SCM_I_MAKINUM (shift));
   if (add > 0)
-    result = scm_sum (result, SCM_MAKINUM (add));
+    result = scm_sum (result, SCM_I_MAKINUM (add));
 
   *p_idx = idx;
   if (hash_seen)
@@ -2302,13 +2586,13 @@ mem2decimal_from_point (SCM result, const char* mem, size_t len,
       scm_t_bits shift = 1;
       scm_t_bits add = 0;
       unsigned int digit_value;
-      SCM big_shift = SCM_MAKINUM (1);
+      SCM big_shift = SCM_I_MAKINUM (1);
 
       idx++;
       while (idx != len)
        {
          char c = mem[idx];
-         if (isdigit (c))
+         if (isdigit ((int) (unsigned char) c))
            {
              if (x == INEXACT)
                return SCM_BOOL_F;
@@ -2326,10 +2610,10 @@ mem2decimal_from_point (SCM result, const char* mem, size_t len,
          idx++;
          if (SCM_MOST_POSITIVE_FIXNUM / 10 < shift)
            {
-             big_shift = scm_product (big_shift, SCM_MAKINUM (shift));
-             result = scm_product (result, SCM_MAKINUM (shift));
+             big_shift = scm_product (big_shift, SCM_I_MAKINUM (shift));
+             result = scm_product (result, SCM_I_MAKINUM (shift));
              if (add > 0)
-               result = scm_sum (result, SCM_MAKINUM (add));
+               result = scm_sum (result, SCM_I_MAKINUM (add));
              
              shift = 10;
              add = digit_value;
@@ -2343,9 +2627,9 @@ mem2decimal_from_point (SCM result, const char* mem, size_t len,
 
       if (add > 0)
        {
-         big_shift = scm_product (big_shift, SCM_MAKINUM (shift));
-         result = scm_product (result, SCM_MAKINUM (shift));
-         result = scm_sum (result, SCM_MAKINUM (add));
+         big_shift = scm_product (big_shift, SCM_I_MAKINUM (shift));
+         result = scm_product (result, SCM_I_MAKINUM (shift));
+         result = scm_sum (result, SCM_I_MAKINUM (add));
        }
 
       result = scm_divide (result, big_shift);
@@ -2389,7 +2673,7 @@ mem2decimal_from_point (SCM result, const char* mem, size_t len,
          else
            sign = 1;
 
-         if (!isdigit (c))
+         if (!isdigit ((int) (unsigned char) c))
            return SCM_BOOL_F;
 
          idx++;
@@ -2397,7 +2681,7 @@ mem2decimal_from_point (SCM result, const char* mem, size_t len,
          while (idx != len)
            {
              char c = mem[idx];
-             if (isdigit (c))
+             if (isdigit ((int) (unsigned char) c))
                {
                  idx++;
                  if (exponent <= SCM_MAXEXP)
@@ -2410,12 +2694,12 @@ mem2decimal_from_point (SCM result, const char* mem, size_t len,
          if (exponent > SCM_MAXEXP)
            {
              size_t exp_len = idx - start;
-             SCM exp_string = scm_mem2string (&mem[start], exp_len);
+             SCM exp_string = scm_from_locale_stringn (&mem[start], exp_len);
              SCM exp_num = scm_string_to_number (exp_string, SCM_UNDEFINED);
              scm_out_of_range ("string->number", exp_num);
            }
 
-         e = scm_integer_expt (SCM_MAKINUM (10), SCM_MAKINUM (exponent));
+         e = scm_integer_expt (SCM_I_MAKINUM (10), SCM_I_MAKINUM (exponent));
          if (sign == 1)
            result = scm_product (result, e);
          else
@@ -2475,10 +2759,10 @@ mem2ureal (const char* mem, size_t len, unsigned int *p_idx,
        return SCM_BOOL_F;
       else if (idx + 1 == len)
        return SCM_BOOL_F;
-      else if (!isdigit (mem[idx + 1]))
+      else if (!isdigit ((int) (unsigned char) mem[idx + 1]))
        return SCM_BOOL_F;
       else
-       result = mem2decimal_from_point (SCM_MAKINUM (0), mem, len,
+       result = mem2decimal_from_point (SCM_I_MAKINUM (0), mem, len,
                                         p_idx, p_exactness);
     }
   else
@@ -2487,7 +2771,7 @@ mem2ureal (const char* mem, size_t len, unsigned int *p_idx,
       SCM uinteger;
 
       uinteger = mem2uinteger (mem, len, &idx, radix, &x);
-      if (SCM_FALSEP (uinteger))
+      if (scm_is_false (uinteger))
        return SCM_BOOL_F;
 
       if (idx == len)
@@ -2499,16 +2783,16 @@ mem2ureal (const char* mem, size_t len, unsigned int *p_idx,
          idx++;
 
          divisor = mem2uinteger (mem, len, &idx, radix, &x);
-         if (SCM_FALSEP (divisor))
+         if (scm_is_false (divisor))
            return SCM_BOOL_F;
 
          /* both are int/big here, I assume */
-         result = scm_make_ratio (uinteger, divisor);
+         result = scm_i_make_ratio (uinteger, divisor);
        }
       else if (radix == 10)
        {
          result = mem2decimal_from_point (uinteger, mem, len, &idx, &x);
-         if (SCM_FALSEP (result))
+         if (scm_is_false (result))
            return SCM_BOOL_F;
        }
       else
@@ -2522,8 +2806,8 @@ mem2ureal (const char* mem, size_t len, unsigned int *p_idx,
   /* When returning an inexact zero, make sure it is represented as a
      floating point value so that we can change its sign. 
   */
-  if (SCM_EQ_P (result, SCM_MAKINUM(0)) && *p_exactness == INEXACT)
-    result = scm_make_real (0.0);
+  if (scm_is_eq (result, SCM_I_MAKINUM(0)) && *p_exactness == INEXACT)
+    result = scm_from_double (0.0);
 
   return result;
 }
@@ -2558,7 +2842,7 @@ mem2complex (const char* mem, size_t len, unsigned int idx,
     return SCM_BOOL_F;
 
   ureal = mem2ureal (mem, len, &idx, radix, p_exactness);
-  if (SCM_FALSEP (ureal))
+  if (scm_is_false (ureal))
     {
       /* input must be either +i or -i */
 
@@ -2571,14 +2855,14 @@ mem2complex (const char* mem, size_t len, unsigned int idx,
          if (idx != len)
            return SCM_BOOL_F;
          
-         return scm_make_rectangular (SCM_MAKINUM (0), SCM_MAKINUM (sign));
+         return scm_make_rectangular (SCM_I_MAKINUM (0), SCM_I_MAKINUM (sign));
        }
       else
        return SCM_BOOL_F;
     }
   else
     {
-      if (sign == -1 && SCM_FALSEP (scm_nan_p (ureal)))
+      if (sign == -1 && scm_is_false (scm_nan_p (ureal)))
        ureal = scm_difference (ureal, SCM_UNDEFINED);
 
       if (idx == len)
@@ -2595,7 +2879,7 @@ mem2complex (const char* mem, size_t len, unsigned int idx,
            return SCM_BOOL_F;
          if (idx != len)
            return SCM_BOOL_F;
-         return scm_make_rectangular (SCM_MAKINUM (0), ureal);
+         return scm_make_rectangular (SCM_I_MAKINUM (0), ureal);
 
        case '@':
          /* polar input: <real>@<real>. */
@@ -2624,12 +2908,12 @@ mem2complex (const char* mem, size_t len, unsigned int idx,
                sign = 1;
 
              angle = mem2ureal (mem, len, &idx, radix, p_exactness);
-             if (SCM_FALSEP (angle))
+             if (scm_is_false (angle))
                return SCM_BOOL_F;
              if (idx != len)
                return SCM_BOOL_F;
 
-             if (sign == -1 && SCM_FALSEP (scm_nan_p (ureal)))
+             if (sign == -1 && scm_is_false (scm_nan_p (ureal)))
                angle = scm_difference (angle, SCM_UNDEFINED);
 
              result = scm_make_polar (ureal, angle);
@@ -2647,9 +2931,9 @@ mem2complex (const char* mem, size_t len, unsigned int idx,
              int sign = (c == '+') ? 1 : -1;
              SCM imag = mem2ureal (mem, len, &idx, radix, p_exactness);
 
-             if (SCM_FALSEP (imag))
-               imag = SCM_MAKINUM (sign);
-             else if (sign == -1 && SCM_FALSEP (scm_nan_p (ureal)))
+             if (scm_is_false (imag))
+               imag = SCM_I_MAKINUM (sign);
+             else if (sign == -1 && scm_is_false (scm_nan_p (ureal)))
                imag = scm_difference (imag, SCM_UNDEFINED);
 
              if (idx == len)
@@ -2675,7 +2959,8 @@ mem2complex (const char* mem, size_t len, unsigned int idx,
 enum t_radix {NO_RADIX=0, DUAL=2, OCT=8, DEC=10, HEX=16};
 
 SCM
-scm_i_mem2number (const char* mem, size_t len, unsigned int default_radix)
+scm_c_locale_stringn_to_number (const char* mem, size_t len,
+                               unsigned int default_radix)
 {
   unsigned int idx = 0;
   unsigned int radix = NO_RADIX;
@@ -2730,7 +3015,7 @@ scm_i_mem2number (const char* mem, size_t len, unsigned int default_radix)
   else
     result = mem2complex (mem, len, idx, (unsigned int) radix, &implicit_x);
 
-  if (SCM_FALSEP (result))
+  if (scm_is_false (result))
     return SCM_BOOL_F;
 
   switch (forced_x)
@@ -2773,45 +3058,24 @@ SCM_DEFINE (scm_string_to_number, "string->number", 1, 1, 0,
 #define FUNC_NAME s_scm_string_to_number
 {
   SCM answer;
-  int base;
+  unsigned int base;
   SCM_VALIDATE_STRING (1, string);
-  SCM_VALIDATE_INUM_MIN_DEF_COPY (2, radix,2,10, base);
-  answer = scm_i_mem2number (SCM_STRING_CHARS (string),
-                            SCM_STRING_LENGTH (string),
-                            base);
-  return scm_return_first (answer, string);
-}
-#undef FUNC_NAME
-
-
-/*** END strs->nums ***/
-
 
-SCM
-scm_make_real (double x)
-{
-  SCM z = scm_double_cell (scm_tc16_real, 0, 0, 0);
+  if (SCM_UNBNDP (radix))
+    base = 10;
+  else
+    base = scm_to_unsigned_integer (radix, 2, INT_MAX);
 
-  SCM_REAL_VALUE (z) = x;
-  return z;
+  answer = scm_c_locale_stringn_to_number (scm_i_string_chars (string),
+                                          scm_i_string_length (string),
+                                          base);
+  scm_remember_upto_here_1 (string);
+  return answer;
 }
+#undef FUNC_NAME
 
 
-SCM
-scm_make_complex (double x, double y)
-{
-  if (y == 0.0)
-    return scm_make_real (x);
-  else
-    {
-      SCM z;
-      SCM_NEWSMOB (z, scm_tc16_complex, scm_gc_malloc (sizeof (scm_t_complex),
-                                                      "complex"));
-      SCM_COMPLEX_REAL (z) = x;
-      SCM_COMPLEX_IMAG (z) = y;
-      return z;
-    }
-}
+/*** END strs->nums ***/
 
 
 SCM
@@ -2819,30 +3083,28 @@ scm_bigequal (SCM x, SCM y)
 {
   int result = mpz_cmp (SCM_I_BIG_MPZ (x), SCM_I_BIG_MPZ (y));
   scm_remember_upto_here_2 (x, y);
-  return SCM_BOOL (0 == result);
+  return scm_from_bool (0 == result);
 }
 
 SCM
 scm_real_equalp (SCM x, SCM y)
 {
-  return SCM_BOOL (SCM_REAL_VALUE (x) == SCM_REAL_VALUE (y));
+  return scm_from_bool (SCM_REAL_VALUE (x) == SCM_REAL_VALUE (y));
 }
 
 SCM
 scm_complex_equalp (SCM x, SCM y)
 {
-  return SCM_BOOL (SCM_COMPLEX_REAL (x) == SCM_COMPLEX_REAL (y)
+  return scm_from_bool (SCM_COMPLEX_REAL (x) == SCM_COMPLEX_REAL (y)
                   && SCM_COMPLEX_IMAG (x) == SCM_COMPLEX_IMAG (y));
 }
 
 SCM
 scm_i_fraction_equalp (SCM x, SCM y)
 {
-  scm_i_fraction_reduce (x);
-  scm_i_fraction_reduce (y);
-  if (SCM_FALSEP (scm_equal_p (SCM_FRACTION_NUMERATOR (x),
+  if (scm_is_false (scm_equal_p (SCM_FRACTION_NUMERATOR (x),
                               SCM_FRACTION_NUMERATOR (y)))
-      || SCM_FALSEP (scm_equal_p (SCM_FRACTION_DENOMINATOR (x),
+      || scm_is_false (scm_equal_p (SCM_FRACTION_DENOMINATOR (x),
                                  SCM_FRACTION_DENOMINATOR (y))))
     return SCM_BOOL_F;
   else
@@ -2850,26 +3112,30 @@ scm_i_fraction_equalp (SCM x, SCM y)
 }
 
 
-SCM_REGISTER_PROC (s_number_p, "number?", 1, 0, 0, scm_number_p);
-/* "Return @code{#t} if @var{x} is a number, @code{#f}\n"
- * "else.  Note that the sets of complex, real, rational and\n"
- * "integer values form subsets of the set of numbers, i. e. the\n"
- * "predicate will be fulfilled for any number."
- */
-SCM_DEFINE (scm_number_p, "complex?", 1, 0, 0, 
+SCM_DEFINE (scm_number_p, "number?", 1, 0, 0, 
+            (SCM x),
+           "Return @code{#t} if @var{x} is a number, @code{#f}\n"
+           "otherwise.")
+#define FUNC_NAME s_scm_number_p
+{
+  return scm_from_bool (SCM_NUMBERP (x));
+}
+#undef FUNC_NAME
+
+SCM_DEFINE (scm_complex_p, "complex?", 1, 0, 0, 
             (SCM x),
            "Return @code{#t} if @var{x} is a complex number, @code{#f}\n"
            "otherwise.  Note that the sets of real, rational and integer\n"
            "values form subsets of the set of complex numbers, i. e. the\n"
            "predicate will also be fulfilled if @var{x} is a real,\n"
            "rational or integer number.")
-#define FUNC_NAME s_scm_number_p
+#define FUNC_NAME s_scm_complex_p
 {
-  return SCM_BOOL (SCM_NUMBERP (x));
+  /* all numbers are complex. */
+  return scm_number_p (x);
 }
 #undef FUNC_NAME
 
-
 SCM_DEFINE (scm_real_p, "real?", 1, 0, 0, 
             (SCM x),
            "Return @code{#t} if @var{x} is a real number, @code{#f}\n"
@@ -2891,7 +3157,7 @@ SCM_DEFINE (scm_rational_p, "rational?", 1, 0, 0,
            "fulfilled if @var{x} is an integer number.")
 #define FUNC_NAME s_scm_rational_p
 {
-  if (SCM_INUMP (x))
+  if (SCM_I_INUMP (x))
     return SCM_BOOL_T;
   else if (SCM_IMP (x))
     return SCM_BOOL_F;
@@ -2908,7 +3174,6 @@ SCM_DEFINE (scm_rational_p, "rational?", 1, 0, 0,
 }
 #undef FUNC_NAME
 
-
 SCM_DEFINE (scm_integer_p, "integer?", 1, 0, 0, 
             (SCM x),
            "Return @code{#t} if @var{x} is an integer number, @code{#f}\n"
@@ -2916,7 +3181,7 @@ SCM_DEFINE (scm_integer_p, "integer?", 1, 0, 0,
 #define FUNC_NAME s_scm_integer_p
 {
   double r;
-  if (SCM_INUMP (x))
+  if (SCM_I_INUMP (x))
     return SCM_BOOL_T;
   if (SCM_IMP (x))
     return SCM_BOOL_F;
@@ -2927,6 +3192,7 @@ SCM_DEFINE (scm_integer_p, "integer?", 1, 0, 0,
   if (SCM_COMPLEXP (x))
     return SCM_BOOL_F;
   r = SCM_REAL_VALUE (x);
+  /* +/-inf passes r==floor(r), making those #t */
   if (r == floor (r))
     return SCM_BOOL_T;
   return SCM_BOOL_F;
@@ -2955,21 +3221,41 @@ SCM
 scm_num_eq_p (SCM x, SCM y)
 {
  again:
-  if (SCM_INUMP (x))
+  if (SCM_I_INUMP (x))
     {
-      long xx = SCM_INUM (x);
-      if (SCM_INUMP (y))
+      long xx = SCM_I_INUM (x);
+      if (SCM_I_INUMP (y))
        {
-         long yy = SCM_INUM (y);
-         return SCM_BOOL (xx == yy);
+         long yy = SCM_I_INUM (y);
+         return scm_from_bool (xx == yy);
        }
       else if (SCM_BIGP (y))
        return SCM_BOOL_F;
       else if (SCM_REALP (y))
-       return SCM_BOOL ((double) xx == SCM_REAL_VALUE (y));
-      else if (SCM_COMPLEXP (y))
-       return SCM_BOOL (((double) xx == SCM_COMPLEX_REAL (y))
-                        && (0.0 == SCM_COMPLEX_IMAG (y)));
+        {
+          /* On a 32-bit system an inum fits a double, we can cast the inum
+             to a double and compare.
+
+             But on a 64-bit system an inum is bigger than a double and
+             casting it to a double (call that dxx) will round.  dxx is at
+             worst 1 bigger or smaller than xx, so if dxx==yy we know yy is
+             an integer and fits a long.  So we cast yy to a long and
+             compare with plain xx.
+
+             An alternative (for any size system actually) would be to check
+             yy is an integer (with floor) and is in range of an inum
+             (compare against appropriate powers of 2) then test
+             xx==(long)yy.  It's just a matter of which casts/comparisons
+             might be fastest or easiest for the cpu.  */
+
+          double yy = SCM_REAL_VALUE (y);
+          return scm_from_bool ((double) xx == yy
+                               && (DBL_MANT_DIG >= SCM_I_FIXNUM_BIT-1
+                                   || xx == (long) yy));
+        }
+      else if (SCM_COMPLEXP (y))
+       return scm_from_bool (((double) xx == SCM_COMPLEX_REAL (y))
+                        && (0.0 == SCM_COMPLEX_IMAG (y)));
       else if (SCM_FRACTIONP (y))
        return SCM_BOOL_F;
       else
@@ -2977,13 +3263,13 @@ scm_num_eq_p (SCM x, SCM y)
     }
   else if (SCM_BIGP (x))
     {
-      if (SCM_INUMP (y))
+      if (SCM_I_INUMP (y))
        return SCM_BOOL_F;
       else if (SCM_BIGP (y))
        {
          int cmp = mpz_cmp (SCM_I_BIG_MPZ (x), SCM_I_BIG_MPZ (y));
          scm_remember_upto_here_2 (x, y);
-         return SCM_BOOL (0 == cmp);
+         return scm_from_bool (0 == cmp);
        }
       else if (SCM_REALP (y))
        {
@@ -2992,7 +3278,7 @@ scm_num_eq_p (SCM x, SCM y)
            return SCM_BOOL_F;
          cmp = xmpz_cmp_d (SCM_I_BIG_MPZ (x), SCM_REAL_VALUE (y));
          scm_remember_upto_here_1 (x);
-         return SCM_BOOL (0 == cmp);
+         return scm_from_bool (0 == cmp);
        }
       else if (SCM_COMPLEXP (y))
        {
@@ -3003,7 +3289,7 @@ scm_num_eq_p (SCM x, SCM y)
            return SCM_BOOL_F;
          cmp = xmpz_cmp_d (SCM_I_BIG_MPZ (x), SCM_COMPLEX_REAL (y));
          scm_remember_upto_here_1 (x);
-         return SCM_BOOL (0 == cmp);
+         return scm_from_bool (0 == cmp);
        }
       else if (SCM_FRACTIONP (y))
        return SCM_BOOL_F;
@@ -3012,8 +3298,15 @@ scm_num_eq_p (SCM x, SCM y)
     }
   else if (SCM_REALP (x))
     {
-      if (SCM_INUMP (y))
-       return SCM_BOOL (SCM_REAL_VALUE (x) == (double) SCM_INUM (y));
+      double xx = SCM_REAL_VALUE (x);
+      if (SCM_I_INUMP (y))
+        {
+          /* see comments with inum/real above */
+          long yy = SCM_I_INUM (y);
+          return scm_from_bool (xx == (double) yy
+                               && (DBL_MANT_DIG >= SCM_I_FIXNUM_BIT-1
+                                   || (long) xx == yy));
+        }
       else if (SCM_BIGP (y))
        {
          int cmp;
@@ -3021,12 +3314,12 @@ scm_num_eq_p (SCM x, SCM y)
            return SCM_BOOL_F;
          cmp = xmpz_cmp_d (SCM_I_BIG_MPZ (y), SCM_REAL_VALUE (x));
          scm_remember_upto_here_1 (y);
-         return SCM_BOOL (0 == cmp);
+         return scm_from_bool (0 == cmp);
        }
       else if (SCM_REALP (y))
-       return SCM_BOOL (SCM_REAL_VALUE (x) == SCM_REAL_VALUE (y));
+       return scm_from_bool (SCM_REAL_VALUE (x) == SCM_REAL_VALUE (y));
       else if (SCM_COMPLEXP (y))
-       return SCM_BOOL ((SCM_REAL_VALUE (x) == SCM_COMPLEX_REAL (y))
+       return scm_from_bool ((SCM_REAL_VALUE (x) == SCM_COMPLEX_REAL (y))
                         && (0.0 == SCM_COMPLEX_IMAG (y)));
       else if (SCM_FRACTIONP (y))
         {
@@ -3034,7 +3327,7 @@ scm_num_eq_p (SCM x, SCM y)
           if (xisnan (xx))
             return SCM_BOOL_F;
           if (xisinf (xx))
-            return SCM_BOOL (xx < 0.0);
+            return scm_from_bool (xx < 0.0);
           x = scm_inexact_to_exact (x);  /* with x as frac or int */
           goto again;
         }
@@ -3043,8 +3336,8 @@ scm_num_eq_p (SCM x, SCM y)
     }
   else if (SCM_COMPLEXP (x))
     {
-      if (SCM_INUMP (y))
-       return SCM_BOOL ((SCM_COMPLEX_REAL (x) == (double) SCM_INUM (y))
+      if (SCM_I_INUMP (y))
+       return scm_from_bool ((SCM_COMPLEX_REAL (x) == (double) SCM_I_INUM (y))
                         && (SCM_COMPLEX_IMAG (x) == 0.0));
       else if (SCM_BIGP (y))
        {
@@ -3055,13 +3348,13 @@ scm_num_eq_p (SCM x, SCM y)
            return SCM_BOOL_F;
          cmp = xmpz_cmp_d (SCM_I_BIG_MPZ (y), SCM_COMPLEX_REAL (x));
          scm_remember_upto_here_1 (y);
-         return SCM_BOOL (0 == cmp);
+         return scm_from_bool (0 == cmp);
        }
       else if (SCM_REALP (y))
-       return SCM_BOOL ((SCM_COMPLEX_REAL (x) == SCM_REAL_VALUE (y))
+       return scm_from_bool ((SCM_COMPLEX_REAL (x) == SCM_REAL_VALUE (y))
                         && (SCM_COMPLEX_IMAG (x) == 0.0));
       else if (SCM_COMPLEXP (y))
-       return SCM_BOOL ((SCM_COMPLEX_REAL (x) == SCM_COMPLEX_REAL (y))
+       return scm_from_bool ((SCM_COMPLEX_REAL (x) == SCM_COMPLEX_REAL (y))
                         && (SCM_COMPLEX_IMAG (x) == SCM_COMPLEX_IMAG (y)));
       else if (SCM_FRACTIONP (y))
         {
@@ -3072,7 +3365,7 @@ scm_num_eq_p (SCM x, SCM y)
           if (xisnan (xx))
             return SCM_BOOL_F;
           if (xisinf (xx))
-            return SCM_BOOL (xx < 0.0);
+            return scm_from_bool (xx < 0.0);
           x = scm_inexact_to_exact (x);  /* with x as frac or int */
           goto again;
         }
@@ -3081,7 +3374,7 @@ scm_num_eq_p (SCM x, SCM y)
     }
   else if (SCM_FRACTIONP (x))
     {
-      if (SCM_INUMP (y))
+      if (SCM_I_INUMP (y))
        return SCM_BOOL_F;
       else if (SCM_BIGP (y))
        return SCM_BOOL_F;
@@ -3091,7 +3384,7 @@ scm_num_eq_p (SCM x, SCM y)
           if (xisnan (yy))
             return SCM_BOOL_F;
           if (xisinf (yy))
-            return SCM_BOOL (0.0 < yy);
+            return scm_from_bool (0.0 < yy);
           y = scm_inexact_to_exact (y);  /* with y as frac or int */
           goto again;
         }
@@ -3104,7 +3397,7 @@ scm_num_eq_p (SCM x, SCM y)
           if (xisnan (yy))
             return SCM_BOOL_F;
           if (xisinf (yy))
-            return SCM_BOOL (0.0 < yy);
+            return scm_from_bool (0.0 < yy);
           y = scm_inexact_to_exact (y);  /* with y as frac or int */
           goto again;
         }
@@ -3132,22 +3425,22 @@ SCM
 scm_less_p (SCM x, SCM y)
 {
  again:
-  if (SCM_INUMP (x))
+  if (SCM_I_INUMP (x))
     {
-      long xx = SCM_INUM (x);
-      if (SCM_INUMP (y))
+      long xx = SCM_I_INUM (x);
+      if (SCM_I_INUMP (y))
        {
-         long yy = SCM_INUM (y);
-         return SCM_BOOL (xx < yy);
+         long yy = SCM_I_INUM (y);
+         return scm_from_bool (xx < yy);
        }
       else if (SCM_BIGP (y))
        {
          int sgn = mpz_sgn (SCM_I_BIG_MPZ (y));
          scm_remember_upto_here_1 (y);
-         return SCM_BOOL (sgn > 0);
+         return scm_from_bool (sgn > 0);
        }
       else if (SCM_REALP (y))
-       return SCM_BOOL ((double) xx < SCM_REAL_VALUE (y));
+       return scm_from_bool ((double) xx < SCM_REAL_VALUE (y));
       else if (SCM_FRACTIONP (y))
         {
           /* "x < a/b" becomes "x*b < a" */
@@ -3161,17 +3454,17 @@ scm_less_p (SCM x, SCM y)
     }
   else if (SCM_BIGP (x))
     {
-      if (SCM_INUMP (y))
+      if (SCM_I_INUMP (y))
        {
          int sgn = mpz_sgn (SCM_I_BIG_MPZ (x));
          scm_remember_upto_here_1 (x);
-         return SCM_BOOL (sgn < 0);
+         return scm_from_bool (sgn < 0);
        }
       else if (SCM_BIGP (y))
        {
          int cmp = mpz_cmp (SCM_I_BIG_MPZ (x), SCM_I_BIG_MPZ (y));
          scm_remember_upto_here_2 (x, y);
-         return SCM_BOOL (cmp < 0);
+         return scm_from_bool (cmp < 0);
        }
       else if (SCM_REALP (y))
        {
@@ -3180,7 +3473,7 @@ scm_less_p (SCM x, SCM y)
            return SCM_BOOL_F;
          cmp = xmpz_cmp_d (SCM_I_BIG_MPZ (x), SCM_REAL_VALUE (y));
          scm_remember_upto_here_1 (x);
-         return SCM_BOOL (cmp < 0);
+         return scm_from_bool (cmp < 0);
        }
       else if (SCM_FRACTIONP (y))
         goto int_frac;
@@ -3189,8 +3482,8 @@ scm_less_p (SCM x, SCM y)
     }
   else if (SCM_REALP (x))
     {
-      if (SCM_INUMP (y))
-       return SCM_BOOL (SCM_REAL_VALUE (x) < (double) SCM_INUM (y));
+      if (SCM_I_INUMP (y))
+       return scm_from_bool (SCM_REAL_VALUE (x) < (double) SCM_I_INUM (y));
       else if (SCM_BIGP (y))
        {
          int cmp;
@@ -3198,17 +3491,17 @@ scm_less_p (SCM x, SCM y)
            return SCM_BOOL_F;
          cmp = xmpz_cmp_d (SCM_I_BIG_MPZ (y), SCM_REAL_VALUE (x));
          scm_remember_upto_here_1 (y);
-         return SCM_BOOL (cmp > 0);
+         return scm_from_bool (cmp > 0);
        }
       else if (SCM_REALP (y))
-       return SCM_BOOL (SCM_REAL_VALUE (x) < SCM_REAL_VALUE (y));
+       return scm_from_bool (SCM_REAL_VALUE (x) < SCM_REAL_VALUE (y));
       else if (SCM_FRACTIONP (y))
         {
           double  xx = SCM_REAL_VALUE (x);
          if (xisnan (xx))
            return SCM_BOOL_F;
           if (xisinf (xx))
-            return SCM_BOOL (xx < 0.0);
+            return scm_from_bool (xx < 0.0);
           x = scm_inexact_to_exact (x);  /* with x as frac or int */
           goto again;
         }
@@ -3217,7 +3510,7 @@ scm_less_p (SCM x, SCM y)
     }
   else if (SCM_FRACTIONP (x))
     {
-      if (SCM_INUMP (y) || SCM_BIGP (y))
+      if (SCM_I_INUMP (y) || SCM_BIGP (y))
         {
           /* "a/b < y" becomes "a < y*b" */
           y = scm_product (y, SCM_FRACTION_DENOMINATOR (x));
@@ -3230,7 +3523,7 @@ scm_less_p (SCM x, SCM y)
           if (xisnan (yy))
             return SCM_BOOL_F;
           if (xisinf (yy))
-            return SCM_BOOL (0.0 < yy);
+            return scm_from_bool (0.0 < yy);
           y = scm_inexact_to_exact (y);  /* with y as frac or int */
           goto again;
         }
@@ -3283,10 +3576,10 @@ scm_leq_p (SCM x, SCM y)
     SCM_WTA_DISPATCH_2 (g_leq_p, x, y, SCM_ARG1, FUNC_NAME);
   else if (!SCM_NUMBERP (y))
     SCM_WTA_DISPATCH_2 (g_leq_p, x, y, SCM_ARG2, FUNC_NAME);
-  else if (SCM_NFALSEP (scm_nan_p (x)) || SCM_NFALSEP (scm_nan_p (y)))
+  else if (scm_is_true (scm_nan_p (x)) || scm_is_true (scm_nan_p (y)))
     return SCM_BOOL_F;
   else
-    return SCM_BOOL_NOT (scm_less_p (y, x));
+    return scm_not (scm_less_p (y, x));
 }
 #undef FUNC_NAME
 
@@ -3303,10 +3596,10 @@ scm_geq_p (SCM x, SCM y)
     SCM_WTA_DISPATCH_2 (g_geq_p, x, y, SCM_ARG1, FUNC_NAME);
   else if (!SCM_NUMBERP (y))
     SCM_WTA_DISPATCH_2 (g_geq_p, x, y, SCM_ARG2, FUNC_NAME);
-  else if (SCM_NFALSEP (scm_nan_p (x)) || SCM_NFALSEP (scm_nan_p (y)))
+  else if (scm_is_true (scm_nan_p (x)) || scm_is_true (scm_nan_p (y)))
     return SCM_BOOL_F;
   else
-    return SCM_BOOL_NOT (scm_less_p (x, y));
+    return scm_not (scm_less_p (x, y));
 }
 #undef FUNC_NAME
 
@@ -3318,14 +3611,14 @@ SCM_GPROC (s_zero_p, "zero?", 1, 0, 0, scm_zero_p, g_zero_p);
 SCM
 scm_zero_p (SCM z)
 {
-  if (SCM_INUMP (z))
-    return SCM_BOOL (SCM_EQ_P (z, SCM_INUM0));
+  if (SCM_I_INUMP (z))
+    return scm_from_bool (scm_is_eq (z, SCM_INUM0));
   else if (SCM_BIGP (z))
     return SCM_BOOL_F;
   else if (SCM_REALP (z))
-    return SCM_BOOL (SCM_REAL_VALUE (z) == 0.0);
+    return scm_from_bool (SCM_REAL_VALUE (z) == 0.0);
   else if (SCM_COMPLEXP (z))
-    return SCM_BOOL (SCM_COMPLEX_REAL (z) == 0.0
+    return scm_from_bool (SCM_COMPLEX_REAL (z) == 0.0
                     && SCM_COMPLEX_IMAG (z) == 0.0);
   else if (SCM_FRACTIONP (z))
     return SCM_BOOL_F;
@@ -3341,16 +3634,16 @@ SCM_GPROC (s_positive_p, "positive?", 1, 0, 0, scm_positive_p, g_positive_p);
 SCM
 scm_positive_p (SCM x)
 {
-  if (SCM_INUMP (x))
-    return SCM_BOOL (SCM_INUM (x) > 0);
+  if (SCM_I_INUMP (x))
+    return scm_from_bool (SCM_I_INUM (x) > 0);
   else if (SCM_BIGP (x))
     {
       int sgn = mpz_sgn (SCM_I_BIG_MPZ (x));
       scm_remember_upto_here_1 (x);
-      return SCM_BOOL (sgn > 0);
+      return scm_from_bool (sgn > 0);
     }
   else if (SCM_REALP (x))
-    return SCM_BOOL(SCM_REAL_VALUE (x) > 0.0);
+    return scm_from_bool(SCM_REAL_VALUE (x) > 0.0);
   else if (SCM_FRACTIONP (x))
     return scm_positive_p (SCM_FRACTION_NUMERATOR (x));
   else
@@ -3365,16 +3658,16 @@ SCM_GPROC (s_negative_p, "negative?", 1, 0, 0, scm_negative_p, g_negative_p);
 SCM
 scm_negative_p (SCM x)
 {
-  if (SCM_INUMP (x))
-    return SCM_BOOL (SCM_INUM (x) < 0);
+  if (SCM_I_INUMP (x))
+    return scm_from_bool (SCM_I_INUM (x) < 0);
   else if (SCM_BIGP (x))
     {
       int sgn = mpz_sgn (SCM_I_BIG_MPZ (x));
       scm_remember_upto_here_1 (x);
-      return SCM_BOOL (sgn < 0);
+      return scm_from_bool (sgn < 0);
     }
   else if (SCM_REALP (x))
-    return SCM_BOOL(SCM_REAL_VALUE (x) < 0.0);
+    return scm_from_bool(SCM_REAL_VALUE (x) < 0.0);
   else if (SCM_FRACTIONP (x))
     return scm_negative_p (SCM_FRACTION_NUMERATOR (x));
   else
@@ -3398,18 +3691,18 @@ scm_max (SCM x, SCM y)
     {
       if (SCM_UNBNDP (x))
        SCM_WTA_DISPATCH_0 (g_max, s_max);
-      else if (SCM_INUMP(x) || SCM_BIGP(x) || SCM_REALP(x) || SCM_FRACTIONP(x))
+      else if (SCM_I_INUMP(x) || SCM_BIGP(x) || SCM_REALP(x) || SCM_FRACTIONP(x))
        return x;
       else
        SCM_WTA_DISPATCH_1 (g_max, x, SCM_ARG1, s_max);
     }
   
-  if (SCM_INUMP (x))
+  if (SCM_I_INUMP (x))
     {
-      long xx = SCM_INUM (x);
-      if (SCM_INUMP (y))
+      long xx = SCM_I_INUM (x);
+      if (SCM_I_INUMP (y))
        {
-         long yy = SCM_INUM (y);
+         long yy = SCM_I_INUM (y);
          return (xx < yy) ? y : x;
        }
       else if (SCM_BIGP (y))
@@ -3422,19 +3715,19 @@ scm_max (SCM x, SCM y)
        {
          double z = xx;
          /* if y==NaN then ">" is false and we return NaN */
-         return (z > SCM_REAL_VALUE (y)) ? scm_make_real (z) : y;
+         return (z > SCM_REAL_VALUE (y)) ? scm_from_double (z) : y;
        }
       else if (SCM_FRACTIONP (y))
        {
-         double z = xx;
-         return (z > scm_i_fraction2double (y)) ? x : y;
+        use_less:
+          return (scm_is_false (scm_less_p (x, y)) ? x : y);
        }
       else
        SCM_WTA_DISPATCH_2 (g_max, x, y, SCM_ARGn, s_max);
     }
   else if (SCM_BIGP (x))
     {
-      if (SCM_INUMP (y))
+      if (SCM_I_INUMP (y))
        {
          int sgn = mpz_sgn (SCM_I_BIG_MPZ (x));
          scm_remember_upto_here_1 (x);
@@ -3453,30 +3746,26 @@ scm_max (SCM x, SCM y)
         big_real:
           xx = scm_i_big2dbl (x);
           yy = SCM_REAL_VALUE (y);
-         return (xx > yy ? scm_make_real (xx) : y);
+         return (xx > yy ? scm_from_double (xx) : y);
        }
       else if (SCM_FRACTIONP (y))
        {
-         double yy = scm_i_fraction2double (y);
-         int cmp;
-         cmp = xmpz_cmp_d (SCM_I_BIG_MPZ (x), yy);
-         scm_remember_upto_here_1 (x);
-         return (cmp > 0) ? x : y;
+          goto use_less;
        }
       else
        SCM_WTA_DISPATCH_2 (g_max, x, y, SCM_ARGn, s_max);
     }
   else if (SCM_REALP (x))
     {
-      if (SCM_INUMP (y))
+      if (SCM_I_INUMP (y))
        {
-         double z = SCM_INUM (y);
+         double z = SCM_I_INUM (y);
          /* if x==NaN then "<" is false and we return NaN */
-         return (SCM_REAL_VALUE (x) < z) ? scm_make_real (z) : x;
+         return (SCM_REAL_VALUE (x) < z) ? scm_from_double (z) : x;
        }
       else if (SCM_BIGP (y))
        {
-          SCM t = x; x = y; y = t;
+          SCM_SWAP (x, y);
           goto big_real;
        }
       else if (SCM_REALP (y))
@@ -3492,36 +3781,29 @@ scm_max (SCM x, SCM y)
        {
          double yy = scm_i_fraction2double (y);
          double xx = SCM_REAL_VALUE (x);
-         return (xx < yy) ? scm_make_real (yy) : x;
+         return (xx < yy) ? scm_from_double (yy) : x;
        }
       else
        SCM_WTA_DISPATCH_2 (g_max, x, y, SCM_ARGn, s_max);
     }
   else if (SCM_FRACTIONP (x))
     {
-      if (SCM_INUMP (y))
+      if (SCM_I_INUMP (y))
        {
-         double z = SCM_INUM (y);
-         return (scm_i_fraction2double (x) < z) ? y : x;
+          goto use_less;
        }
       else if (SCM_BIGP (y))
        {
-         double xx = scm_i_fraction2double (x);
-         int cmp;
-         cmp = xmpz_cmp_d (SCM_I_BIG_MPZ (y), xx);
-         scm_remember_upto_here_1 (y);
-         return (cmp < 0) ? x : y;
+          goto use_less;
        }
       else if (SCM_REALP (y))
        {
          double xx = scm_i_fraction2double (x);
-         return (xx < SCM_REAL_VALUE (y)) ? y : scm_make_real (xx);
+         return (xx < SCM_REAL_VALUE (y)) ? y : scm_from_double (xx);
        }
       else if (SCM_FRACTIONP (y))
        {
-         double yy = scm_i_fraction2double (y);
-         double xx = scm_i_fraction2double (x);
-         return (xx < yy) ? y : x;
+          goto use_less;
        }
       else
        SCM_WTA_DISPATCH_2 (g_max, x, y, SCM_ARGn, s_max);
@@ -3541,18 +3823,18 @@ scm_min (SCM x, SCM y)
     {
       if (SCM_UNBNDP (x))
        SCM_WTA_DISPATCH_0 (g_min, s_min);
-      else if (SCM_INUMP(x) || SCM_BIGP(x) || SCM_REALP(x) || SCM_FRACTIONP(x))
+      else if (SCM_I_INUMP(x) || SCM_BIGP(x) || SCM_REALP(x) || SCM_FRACTIONP(x))
        return x;
       else
        SCM_WTA_DISPATCH_1 (g_min, x, SCM_ARG1, s_min);
     }
   
-  if (SCM_INUMP (x))
+  if (SCM_I_INUMP (x))
     {
-      long xx = SCM_INUM (x);
-      if (SCM_INUMP (y))
+      long xx = SCM_I_INUM (x);
+      if (SCM_I_INUMP (y))
        {
-         long yy = SCM_INUM (y);
+         long yy = SCM_I_INUM (y);
          return (xx < yy) ? x : y;
        }
       else if (SCM_BIGP (y))
@@ -3565,19 +3847,19 @@ scm_min (SCM x, SCM y)
        {
          double z = xx;
          /* if y==NaN then "<" is false and we return NaN */
-         return (z < SCM_REAL_VALUE (y)) ? scm_make_real (z) : y;
+         return (z < SCM_REAL_VALUE (y)) ? scm_from_double (z) : y;
        }
       else if (SCM_FRACTIONP (y))
        {
-         double z = xx;
-         return (z < scm_i_fraction2double (y)) ? x : y;
+        use_less:
+          return (scm_is_false (scm_less_p (x, y)) ? y : x);
        }
       else
        SCM_WTA_DISPATCH_2 (g_min, x, y, SCM_ARGn, s_min);
     }
   else if (SCM_BIGP (x))
     {
-      if (SCM_INUMP (y))
+      if (SCM_I_INUMP (y))
        {
          int sgn = mpz_sgn (SCM_I_BIG_MPZ (x));
          scm_remember_upto_here_1 (x);
@@ -3596,30 +3878,26 @@ scm_min (SCM x, SCM y)
         big_real:
           xx = scm_i_big2dbl (x);
           yy = SCM_REAL_VALUE (y);
-         return (xx < yy ? scm_make_real (xx) : y);
+         return (xx < yy ? scm_from_double (xx) : y);
        }
       else if (SCM_FRACTIONP (y))
        {
-         double yy = scm_i_fraction2double (y);
-         int cmp;
-         cmp = xmpz_cmp_d (SCM_I_BIG_MPZ (x), yy);
-         scm_remember_upto_here_1 (x);
-         return (cmp > 0) ? y : x;
+          goto use_less;
        }
       else
        SCM_WTA_DISPATCH_2 (g_min, x, y, SCM_ARGn, s_min);
     }
   else if (SCM_REALP (x))
     {
-      if (SCM_INUMP (y))
+      if (SCM_I_INUMP (y))
        {
-         double z = SCM_INUM (y);
+         double z = SCM_I_INUM (y);
          /* if x==NaN then "<" is false and we return NaN */
-         return (z < SCM_REAL_VALUE (x)) ? scm_make_real (z) : x;
+         return (z < SCM_REAL_VALUE (x)) ? scm_from_double (z) : x;
        }
       else if (SCM_BIGP (y))
        {
-          SCM t = x; x = y; y = t;
+          SCM_SWAP (x, y);
           goto big_real;
        }
       else if (SCM_REALP (y))
@@ -3635,36 +3913,29 @@ scm_min (SCM x, SCM y)
        {
          double yy = scm_i_fraction2double (y);
          double xx = SCM_REAL_VALUE (x);
-         return (yy < xx) ? scm_make_real (yy) : x;
+         return (yy < xx) ? scm_from_double (yy) : x;
        }
       else
        SCM_WTA_DISPATCH_2 (g_min, x, y, SCM_ARGn, s_min);
     }
   else if (SCM_FRACTIONP (x))
     {
-      if (SCM_INUMP (y))
+      if (SCM_I_INUMP (y))
        {
-         double z = SCM_INUM (y);
-         return (scm_i_fraction2double (x) < z) ? x : y;
+          goto use_less;
        }
       else if (SCM_BIGP (y))
        {
-         double xx = scm_i_fraction2double (x);
-         int cmp;
-         cmp = xmpz_cmp_d (SCM_I_BIG_MPZ (y), xx);
-         scm_remember_upto_here_1 (y);
-         return (cmp < 0) ? y : x;
+          goto use_less;
        }
       else if (SCM_REALP (y))
        {
          double xx = scm_i_fraction2double (x);
-         return (SCM_REAL_VALUE (y) < xx) ? y : scm_make_real (xx);
+         return (SCM_REAL_VALUE (y) < xx) ? y : scm_from_double (xx);
        }
       else if (SCM_FRACTIONP (y))
        {
-         double yy = scm_i_fraction2double (y);
-         double xx = scm_i_fraction2double (x);
-         return (xx < yy) ? x : y;
+          goto use_less;
        }
       else
        SCM_WTA_DISPATCH_2 (g_max, x, y, SCM_ARGn, s_max);
@@ -3681,21 +3952,21 @@ SCM_GPROC1 (s_sum, "+", scm_tc7_asubr, scm_sum, g_sum);
 SCM
 scm_sum (SCM x, SCM y)
 {
-  if (SCM_UNBNDP (y))
+  if (SCM_UNLIKELY (SCM_UNBNDP (y)))
     {
       if (SCM_NUMBERP (x)) return x;
       if (SCM_UNBNDP (x)) return SCM_INUM0;
       SCM_WTA_DISPATCH_1 (g_sum, x, SCM_ARG1, s_sum);
     }
 
-  if (SCM_INUMP (x))
+  if (SCM_LIKELY (SCM_I_INUMP (x)))
     {
-      if (SCM_INUMP (y))
+      if (SCM_LIKELY (SCM_I_INUMP (y)))
         {
-          long xx = SCM_INUM (x);
-          long yy = SCM_INUM (y);
+          long xx = SCM_I_INUM (x);
+          long yy = SCM_I_INUM (y);
           long int z = xx + yy;
-          return SCM_FIXABLE (z) ? SCM_MAKINUM (z) : scm_i_long2big (z);
+          return SCM_FIXABLE (z) ? SCM_I_MAKINUM (z) : scm_i_long2big (z);
         }
       else if (SCM_BIGP (y))
         {
@@ -3704,29 +3975,29 @@ scm_sum (SCM x, SCM y)
         }
       else if (SCM_REALP (y))
         {
-          long int xx = SCM_INUM (x);
-          return scm_make_real (xx + SCM_REAL_VALUE (y));
+          long int xx = SCM_I_INUM (x);
+          return scm_from_double (xx + SCM_REAL_VALUE (y));
         }
       else if (SCM_COMPLEXP (y))
         {
-          long int xx = SCM_INUM (x);
-          return scm_make_complex (xx + SCM_COMPLEX_REAL (y),
+          long int xx = SCM_I_INUM (x);
+          return scm_c_make_rectangular (xx + SCM_COMPLEX_REAL (y),
                                    SCM_COMPLEX_IMAG (y));
         }
       else if (SCM_FRACTIONP (y))
-       return scm_make_ratio (scm_sum (SCM_FRACTION_NUMERATOR (y), 
+       return scm_i_make_ratio (scm_sum (SCM_FRACTION_NUMERATOR (y), 
                                        scm_product (x, SCM_FRACTION_DENOMINATOR (y))),
                               SCM_FRACTION_DENOMINATOR (y));
       else
         SCM_WTA_DISPATCH_2 (g_sum, x, y, SCM_ARGn, s_sum);
     } else if (SCM_BIGP (x))
       {
-       if (SCM_INUMP (y))
+       if (SCM_I_INUMP (y))
          {
            long int inum;
            int bigsgn;
          add_big_inum:
-           inum = SCM_INUM (y);      
+           inum = SCM_I_INUM (y);      
            if (inum == 0)
              return x;
            bigsgn = mpz_sgn (SCM_I_BIG_MPZ (x));
@@ -3769,17 +4040,17 @@ scm_sum (SCM x, SCM y)
          {
            double result = mpz_get_d (SCM_I_BIG_MPZ (x)) + SCM_REAL_VALUE (y);
            scm_remember_upto_here_1 (x);
-           return scm_make_real (result);
+           return scm_from_double (result);
          }
        else if (SCM_COMPLEXP (y))
          {
            double real_part = (mpz_get_d (SCM_I_BIG_MPZ (x))
                                + SCM_COMPLEX_REAL (y));
            scm_remember_upto_here_1 (x);
-           return scm_make_complex (real_part, SCM_COMPLEX_IMAG (y));
+           return scm_c_make_rectangular (real_part, SCM_COMPLEX_IMAG (y));
          }
        else if (SCM_FRACTIONP (y))
-         return scm_make_ratio (scm_sum (SCM_FRACTION_NUMERATOR (y), 
+         return scm_i_make_ratio (scm_sum (SCM_FRACTION_NUMERATOR (y), 
                                          scm_product (x, SCM_FRACTION_DENOMINATOR (y))),
                                 SCM_FRACTION_DENOMINATOR (y));
        else
@@ -3787,66 +4058,66 @@ scm_sum (SCM x, SCM y)
       }
   else if (SCM_REALP (x))
     {
-      if (SCM_INUMP (y))
-       return scm_make_real (SCM_REAL_VALUE (x) + SCM_INUM (y));
+      if (SCM_I_INUMP (y))
+       return scm_from_double (SCM_REAL_VALUE (x) + SCM_I_INUM (y));
       else if (SCM_BIGP (y))
        {
          double result = mpz_get_d (SCM_I_BIG_MPZ (y)) + SCM_REAL_VALUE (x);
          scm_remember_upto_here_1 (y);
-         return scm_make_real (result);
+         return scm_from_double (result);
        }
       else if (SCM_REALP (y))
-       return scm_make_real (SCM_REAL_VALUE (x) + SCM_REAL_VALUE (y));
+       return scm_from_double (SCM_REAL_VALUE (x) + SCM_REAL_VALUE (y));
       else if (SCM_COMPLEXP (y))
-       return scm_make_complex (SCM_REAL_VALUE (x) + SCM_COMPLEX_REAL (y),
+       return scm_c_make_rectangular (SCM_REAL_VALUE (x) + SCM_COMPLEX_REAL (y),
                                 SCM_COMPLEX_IMAG (y));
       else if (SCM_FRACTIONP (y))
-       return scm_make_real (SCM_REAL_VALUE (x) + scm_i_fraction2double (y));
+       return scm_from_double (SCM_REAL_VALUE (x) + scm_i_fraction2double (y));
       else
        SCM_WTA_DISPATCH_2 (g_sum, x, y, SCM_ARGn, s_sum);
     }
   else if (SCM_COMPLEXP (x))
     {
-      if (SCM_INUMP (y))
-       return scm_make_complex (SCM_COMPLEX_REAL (x) + SCM_INUM (y),
+      if (SCM_I_INUMP (y))
+       return scm_c_make_rectangular (SCM_COMPLEX_REAL (x) + SCM_I_INUM (y),
                                 SCM_COMPLEX_IMAG (x));
       else if (SCM_BIGP (y))
        {
          double real_part = (mpz_get_d (SCM_I_BIG_MPZ (y))
                              + SCM_COMPLEX_REAL (x));
          scm_remember_upto_here_1 (y);
-         return scm_make_complex (real_part, SCM_COMPLEX_IMAG (x));
+         return scm_c_make_rectangular (real_part, SCM_COMPLEX_IMAG (x));
        }
       else if (SCM_REALP (y))
-       return scm_make_complex (SCM_COMPLEX_REAL (x) + SCM_REAL_VALUE (y),
+       return scm_c_make_rectangular (SCM_COMPLEX_REAL (x) + SCM_REAL_VALUE (y),
                                 SCM_COMPLEX_IMAG (x));
       else if (SCM_COMPLEXP (y))
-       return scm_make_complex (SCM_COMPLEX_REAL (x) + SCM_COMPLEX_REAL (y),
+       return scm_c_make_rectangular (SCM_COMPLEX_REAL (x) + SCM_COMPLEX_REAL (y),
                                 SCM_COMPLEX_IMAG (x) + SCM_COMPLEX_IMAG (y));
       else if (SCM_FRACTIONP (y))
-       return scm_make_complex (SCM_COMPLEX_REAL (x) + scm_i_fraction2double (y),
+       return scm_c_make_rectangular (SCM_COMPLEX_REAL (x) + scm_i_fraction2double (y),
                                 SCM_COMPLEX_IMAG (x));
       else
        SCM_WTA_DISPATCH_2 (g_sum, x, y, SCM_ARGn, s_sum);
     }
   else if (SCM_FRACTIONP (x))
     {
-      if (SCM_INUMP (y))
-       return scm_make_ratio (scm_sum (SCM_FRACTION_NUMERATOR (x), 
+      if (SCM_I_INUMP (y))
+       return scm_i_make_ratio (scm_sum (SCM_FRACTION_NUMERATOR (x), 
                                        scm_product (y, SCM_FRACTION_DENOMINATOR (x))),
                               SCM_FRACTION_DENOMINATOR (x));
       else if (SCM_BIGP (y))
-       return scm_make_ratio (scm_sum (SCM_FRACTION_NUMERATOR (x), 
+       return scm_i_make_ratio (scm_sum (SCM_FRACTION_NUMERATOR (x), 
                                        scm_product (y, SCM_FRACTION_DENOMINATOR (x))),
                               SCM_FRACTION_DENOMINATOR (x));
       else if (SCM_REALP (y))
-       return scm_make_real (SCM_REAL_VALUE (y) + scm_i_fraction2double (x));
+       return scm_from_double (SCM_REAL_VALUE (y) + scm_i_fraction2double (x));
       else if (SCM_COMPLEXP (y))
-       return scm_make_complex (SCM_COMPLEX_REAL (y) + scm_i_fraction2double (x),
+       return scm_c_make_rectangular (SCM_COMPLEX_REAL (y) + scm_i_fraction2double (x),
                                 SCM_COMPLEX_IMAG (y));
       else if (SCM_FRACTIONP (y))
        /* a/b + c/d = (ad + bc) / bd */
-       return scm_make_ratio (scm_sum (scm_product (SCM_FRACTION_NUMERATOR (x), SCM_FRACTION_DENOMINATOR (y)),
+       return scm_i_make_ratio (scm_sum (scm_product (SCM_FRACTION_NUMERATOR (x), SCM_FRACTION_DENOMINATOR (y)),
                                        scm_product (SCM_FRACTION_NUMERATOR (y), SCM_FRACTION_DENOMINATOR (x))),
                               scm_product (SCM_FRACTION_DENOMINATOR (x), SCM_FRACTION_DENOMINATOR (y)));
       else
@@ -3857,6 +4128,16 @@ scm_sum (SCM x, SCM y)
 }
 
 
+SCM_DEFINE (scm_oneplus, "1+", 1, 0, 0, 
+            (SCM x),
+           "Return @math{@var{x}+1}.")
+#define FUNC_NAME s_scm_oneplus
+{
+  return scm_sum (x, SCM_I_MAKINUM (1));
+}
+#undef FUNC_NAME
+
+
 SCM_GPROC1 (s_difference, "-", scm_tc7_asubr, scm_difference, g_difference);
 /* If called with one argument @var{z1}, -@var{z1} returned. Otherwise
  * the sum of all but the first argument are subtracted from the first
@@ -3865,50 +4146,51 @@ SCM_GPROC1 (s_difference, "-", scm_tc7_asubr, scm_difference, g_difference);
 SCM
 scm_difference (SCM x, SCM y)
 {
-  if (SCM_UNBNDP (y))
+  if (SCM_UNLIKELY (SCM_UNBNDP (y)))
     {
       if (SCM_UNBNDP (x))
         SCM_WTA_DISPATCH_0 (g_difference, s_difference);
       else 
-        if (SCM_INUMP (x))
+        if (SCM_I_INUMP (x))
           {
-            long xx = -SCM_INUM (x);
+            long xx = -SCM_I_INUM (x);
             if (SCM_FIXABLE (xx))
-              return SCM_MAKINUM (xx);
+              return SCM_I_MAKINUM (xx);
             else
               return scm_i_long2big (xx);
           }
         else if (SCM_BIGP (x))
-          /* FIXME: do we really need to normalize here? */
+          /* Must scm_i_normbig here because -SCM_MOST_NEGATIVE_FIXNUM is a
+             bignum, but negating that gives a fixnum.  */
           return scm_i_normbig (scm_i_clonebig (x, 0));
         else if (SCM_REALP (x))
-          return scm_make_real (-SCM_REAL_VALUE (x));
+          return scm_from_double (-SCM_REAL_VALUE (x));
         else if (SCM_COMPLEXP (x))
-          return scm_make_complex (-SCM_COMPLEX_REAL (x),
+          return scm_c_make_rectangular (-SCM_COMPLEX_REAL (x),
                                    -SCM_COMPLEX_IMAG (x));
        else if (SCM_FRACTIONP (x))
-         return scm_make_ratio (scm_difference (SCM_FRACTION_NUMERATOR (x), SCM_UNDEFINED),
+         return scm_i_make_ratio (scm_difference (SCM_FRACTION_NUMERATOR (x), SCM_UNDEFINED),
                                 SCM_FRACTION_DENOMINATOR (x));
         else
           SCM_WTA_DISPATCH_1 (g_difference, x, SCM_ARG1, s_difference);
     }
   
-  if (SCM_INUMP (x))
+  if (SCM_LIKELY (SCM_I_INUMP (x)))
     {
-      if (SCM_INUMP (y))
+      if (SCM_LIKELY (SCM_I_INUMP (y)))
        {
-         long int xx = SCM_INUM (x);
-         long int yy = SCM_INUM (y);
+         long int xx = SCM_I_INUM (x);
+         long int yy = SCM_I_INUM (y);
          long int z = xx - yy;
          if (SCM_FIXABLE (z))
-           return SCM_MAKINUM (z);
+           return SCM_I_MAKINUM (z);
          else
            return scm_i_long2big (z);
        }
       else if (SCM_BIGP (y))
        {
          /* inum-x - big-y */
-         long xx = SCM_INUM (x);
+         long xx = SCM_I_INUM (x);
 
          if (xx == 0)
            return scm_i_clonebig (y, 0);
@@ -3936,18 +4218,18 @@ scm_difference (SCM x, SCM y)
        }
       else if (SCM_REALP (y))
        {
-         long int xx = SCM_INUM (x);
-         return scm_make_real (xx - SCM_REAL_VALUE (y));
+         long int xx = SCM_I_INUM (x);
+         return scm_from_double (xx - SCM_REAL_VALUE (y));
        }
       else if (SCM_COMPLEXP (y))
        {
-         long int xx = SCM_INUM (x);
-         return scm_make_complex (xx - SCM_COMPLEX_REAL (y),
+         long int xx = SCM_I_INUM (x);
+         return scm_c_make_rectangular (xx - SCM_COMPLEX_REAL (y),
                                   - SCM_COMPLEX_IMAG (y));
        }
       else if (SCM_FRACTIONP (y))
        /* a - b/c = (ac - b) / c */
-       return scm_make_ratio (scm_difference (scm_product (x, SCM_FRACTION_DENOMINATOR (y)),
+       return scm_i_make_ratio (scm_difference (scm_product (x, SCM_FRACTION_DENOMINATOR (y)),
                                               SCM_FRACTION_NUMERATOR (y)),
                               SCM_FRACTION_DENOMINATOR (y));
       else
@@ -3955,15 +4237,16 @@ scm_difference (SCM x, SCM y)
     }
   else if (SCM_BIGP (x))
     {
-      if (SCM_INUMP (y))
+      if (SCM_I_INUMP (y))
        {
          /* big-x - inum-y */
-         long yy = SCM_INUM (y);
+         long yy = SCM_I_INUM (y);
          int sgn_x = mpz_sgn (SCM_I_BIG_MPZ (x));
 
          scm_remember_upto_here_1 (x);
          if (sgn_x == 0)
-           return SCM_FIXABLE (-yy) ? SCM_MAKINUM (-yy) : scm_long2num (-yy);
+           return (SCM_FIXABLE (-yy) ?
+                   SCM_I_MAKINUM (-yy) : scm_from_long (-yy));
          else
            {
              SCM result = scm_i_mkbig ();
@@ -4001,84 +4284,84 @@ scm_difference (SCM x, SCM y)
        {
          double result = mpz_get_d (SCM_I_BIG_MPZ (x)) - SCM_REAL_VALUE (y);
          scm_remember_upto_here_1 (x);
-         return scm_make_real (result);
+         return scm_from_double (result);
        }
       else if (SCM_COMPLEXP (y))
        {
          double real_part = (mpz_get_d (SCM_I_BIG_MPZ (x))
                              - SCM_COMPLEX_REAL (y));
          scm_remember_upto_here_1 (x);
-         return scm_make_complex (real_part, - SCM_COMPLEX_IMAG (y));      
+         return scm_c_make_rectangular (real_part, - SCM_COMPLEX_IMAG (y));      
        }
       else if (SCM_FRACTIONP (y))
-       return scm_make_ratio (scm_difference (scm_product (x, SCM_FRACTION_DENOMINATOR (y)),
+       return scm_i_make_ratio (scm_difference (scm_product (x, SCM_FRACTION_DENOMINATOR (y)),
                                               SCM_FRACTION_NUMERATOR (y)),
                               SCM_FRACTION_DENOMINATOR (y));
       else SCM_WTA_DISPATCH_2 (g_difference, x, y, SCM_ARGn, s_difference);
     }
   else if (SCM_REALP (x))
     {
-      if (SCM_INUMP (y))
-       return scm_make_real (SCM_REAL_VALUE (x) - SCM_INUM (y));
+      if (SCM_I_INUMP (y))
+       return scm_from_double (SCM_REAL_VALUE (x) - SCM_I_INUM (y));
       else if (SCM_BIGP (y))
        {
          double result = SCM_REAL_VALUE (x) - mpz_get_d (SCM_I_BIG_MPZ (y));
          scm_remember_upto_here_1 (x);
-         return scm_make_real (result);      
+         return scm_from_double (result);      
        }
       else if (SCM_REALP (y))
-       return scm_make_real (SCM_REAL_VALUE (x) - SCM_REAL_VALUE (y));
+       return scm_from_double (SCM_REAL_VALUE (x) - SCM_REAL_VALUE (y));
       else if (SCM_COMPLEXP (y))
-       return scm_make_complex (SCM_REAL_VALUE (x) - SCM_COMPLEX_REAL (y),
+       return scm_c_make_rectangular (SCM_REAL_VALUE (x) - SCM_COMPLEX_REAL (y),
                                 -SCM_COMPLEX_IMAG (y));
       else if (SCM_FRACTIONP (y))
-       return scm_make_real (SCM_REAL_VALUE (x) - scm_i_fraction2double (y));
+       return scm_from_double (SCM_REAL_VALUE (x) - scm_i_fraction2double (y));
       else
        SCM_WTA_DISPATCH_2 (g_difference, x, y, SCM_ARGn, s_difference);
     }
   else if (SCM_COMPLEXP (x))
     {
-      if (SCM_INUMP (y))
-       return scm_make_complex (SCM_COMPLEX_REAL (x) - SCM_INUM (y),
+      if (SCM_I_INUMP (y))
+       return scm_c_make_rectangular (SCM_COMPLEX_REAL (x) - SCM_I_INUM (y),
                                 SCM_COMPLEX_IMAG (x));
       else if (SCM_BIGP (y))
        {
          double real_part = (SCM_COMPLEX_REAL (x)
                              - mpz_get_d (SCM_I_BIG_MPZ (y)));
          scm_remember_upto_here_1 (x);
-         return scm_make_complex (real_part, SCM_COMPLEX_IMAG (y));      
+         return scm_c_make_rectangular (real_part, SCM_COMPLEX_IMAG (y));      
        }
       else if (SCM_REALP (y))
-       return scm_make_complex (SCM_COMPLEX_REAL (x) - SCM_REAL_VALUE (y),
+       return scm_c_make_rectangular (SCM_COMPLEX_REAL (x) - SCM_REAL_VALUE (y),
                                 SCM_COMPLEX_IMAG (x));
       else if (SCM_COMPLEXP (y))
-       return scm_make_complex (SCM_COMPLEX_REAL (x) - SCM_COMPLEX_REAL (y),
+       return scm_c_make_rectangular (SCM_COMPLEX_REAL (x) - SCM_COMPLEX_REAL (y),
                                 SCM_COMPLEX_IMAG (x) - SCM_COMPLEX_IMAG (y));
       else if (SCM_FRACTIONP (y))
-       return scm_make_complex (SCM_COMPLEX_REAL (x) - scm_i_fraction2double (y),
+       return scm_c_make_rectangular (SCM_COMPLEX_REAL (x) - scm_i_fraction2double (y),
                                 SCM_COMPLEX_IMAG (x));
       else
        SCM_WTA_DISPATCH_2 (g_difference, x, y, SCM_ARGn, s_difference);
     }
   else if (SCM_FRACTIONP (x))
     {
-      if (SCM_INUMP (y))
+      if (SCM_I_INUMP (y))
        /* a/b - c = (a - cb) / b */
-       return scm_make_ratio (scm_difference (SCM_FRACTION_NUMERATOR (x), 
+       return scm_i_make_ratio (scm_difference (SCM_FRACTION_NUMERATOR (x), 
                                               scm_product(y, SCM_FRACTION_DENOMINATOR (x))),
                               SCM_FRACTION_DENOMINATOR (x));
       else if (SCM_BIGP (y))
-       return scm_make_ratio (scm_difference (SCM_FRACTION_NUMERATOR (x), 
+       return scm_i_make_ratio (scm_difference (SCM_FRACTION_NUMERATOR (x), 
                                               scm_product(y, SCM_FRACTION_DENOMINATOR (x))),
                               SCM_FRACTION_DENOMINATOR (x));
       else if (SCM_REALP (y))
-       return scm_make_real (scm_i_fraction2double (x) - SCM_REAL_VALUE (y));
+       return scm_from_double (scm_i_fraction2double (x) - SCM_REAL_VALUE (y));
       else if (SCM_COMPLEXP (y))
-       return scm_make_complex (scm_i_fraction2double (x) - SCM_COMPLEX_REAL (y),
+       return scm_c_make_rectangular (scm_i_fraction2double (x) - SCM_COMPLEX_REAL (y),
                                 -SCM_COMPLEX_IMAG (y));
       else if (SCM_FRACTIONP (y))
        /* a/b - c/d = (ad - bc) / bd */
-       return scm_make_ratio (scm_difference (scm_product (SCM_FRACTION_NUMERATOR (x), SCM_FRACTION_DENOMINATOR (y)),
+       return scm_i_make_ratio (scm_difference (scm_product (SCM_FRACTION_NUMERATOR (x), SCM_FRACTION_DENOMINATOR (y)),
                                               scm_product (SCM_FRACTION_NUMERATOR (y), SCM_FRACTION_DENOMINATOR (x))),
                               scm_product (SCM_FRACTION_DENOMINATOR (x), SCM_FRACTION_DENOMINATOR (y)));
       else
@@ -4090,6 +4373,16 @@ scm_difference (SCM x, SCM y)
 #undef FUNC_NAME
 
 
+SCM_DEFINE (scm_oneminus, "1-", 1, 0, 0, 
+            (SCM x),
+           "Return @math{@var{x}-1}.")
+#define FUNC_NAME s_scm_oneminus
+{
+  return scm_difference (x, SCM_I_MAKINUM (1));
+}
+#undef FUNC_NAME
+
+
 SCM_GPROC1 (s_product, "*", scm_tc7_asubr, scm_product, g_product);
 /* "Return the product of all arguments.  If called without arguments,\n"
  * "1 is returned."
@@ -4097,22 +4390,22 @@ SCM_GPROC1 (s_product, "*", scm_tc7_asubr, scm_product, g_product);
 SCM
 scm_product (SCM x, SCM y)
 {
-  if (SCM_UNBNDP (y))
+  if (SCM_UNLIKELY (SCM_UNBNDP (y)))
     {
       if (SCM_UNBNDP (x))
-       return SCM_MAKINUM (1L);
+       return SCM_I_MAKINUM (1L);
       else if (SCM_NUMBERP (x))
        return x;
       else
        SCM_WTA_DISPATCH_1 (g_product, x, SCM_ARG1, s_product);
     }
   
-  if (SCM_INUMP (x))
+  if (SCM_LIKELY (SCM_I_INUMP (x)))
     {
       long xx;
 
     intbig:
-      xx = SCM_INUM (x);
+      xx = SCM_I_INUM (x);
 
       switch (xx)
        {
@@ -4120,12 +4413,12 @@ scm_product (SCM x, SCM y)
         case 1: return y; break;
        }
 
-      if (SCM_INUMP (y))
+      if (SCM_LIKELY (SCM_I_INUMP (y)))
        {
-         long yy = SCM_INUM (y);
+         long yy = SCM_I_INUM (y);
          long kk = xx * yy;
-         SCM k = SCM_MAKINUM (kk);
-         if ((kk == SCM_INUM (k)) && (kk / xx == yy))
+         SCM k = SCM_I_MAKINUM (kk);
+         if ((kk == SCM_I_INUM (k)) && (kk / xx == yy))
            return k;
          else
            {
@@ -4142,19 +4435,19 @@ scm_product (SCM x, SCM y)
          return result;
        }
       else if (SCM_REALP (y))
-       return scm_make_real (xx * SCM_REAL_VALUE (y));
+       return scm_from_double (xx * SCM_REAL_VALUE (y));
       else if (SCM_COMPLEXP (y))
-       return scm_make_complex (xx * SCM_COMPLEX_REAL (y),
+       return scm_c_make_rectangular (xx * SCM_COMPLEX_REAL (y),
                                 xx * SCM_COMPLEX_IMAG (y));
       else if (SCM_FRACTIONP (y))
-       return scm_make_ratio (scm_product (x, SCM_FRACTION_NUMERATOR (y)),
+       return scm_i_make_ratio (scm_product (x, SCM_FRACTION_NUMERATOR (y)),
                               SCM_FRACTION_DENOMINATOR (y));
       else
        SCM_WTA_DISPATCH_2 (g_product, x, y, SCM_ARGn, s_product);
     }
   else if (SCM_BIGP (x))
     {
-      if (SCM_INUMP (y))
+      if (SCM_I_INUMP (y))
        {
          SCM_SWAP (x, y);
          goto intbig;
@@ -4172,59 +4465,69 @@ scm_product (SCM x, SCM y)
        {
          double result = mpz_get_d (SCM_I_BIG_MPZ (x)) * SCM_REAL_VALUE (y);
          scm_remember_upto_here_1 (x);
-         return scm_make_real (result);
+         return scm_from_double (result);
        }
       else if (SCM_COMPLEXP (y))
        {
          double z = mpz_get_d (SCM_I_BIG_MPZ (x));
          scm_remember_upto_here_1 (x);
-         return scm_make_complex (z * SCM_COMPLEX_REAL (y),
+         return scm_c_make_rectangular (z * SCM_COMPLEX_REAL (y),
                                   z * SCM_COMPLEX_IMAG (y));
        }
       else if (SCM_FRACTIONP (y))
-       return scm_make_ratio (scm_product (x, SCM_FRACTION_NUMERATOR (y)),
+       return scm_i_make_ratio (scm_product (x, SCM_FRACTION_NUMERATOR (y)),
                               SCM_FRACTION_DENOMINATOR (y));
       else
        SCM_WTA_DISPATCH_2 (g_product, x, y, SCM_ARGn, s_product);
     }
   else if (SCM_REALP (x))
     {
-      if (SCM_INUMP (y))
-       return scm_make_real (SCM_INUM (y) * SCM_REAL_VALUE (x));
+      if (SCM_I_INUMP (y))
+        {
+          /* inexact*exact0 => exact 0, per R5RS "Exactness" section */
+          if (scm_is_eq (y, SCM_INUM0))
+            return y;
+          return scm_from_double (SCM_I_INUM (y) * SCM_REAL_VALUE (x));
+        }
       else if (SCM_BIGP (y))
        {
          double result = mpz_get_d (SCM_I_BIG_MPZ (y)) * SCM_REAL_VALUE (x);
          scm_remember_upto_here_1 (y);
-         return scm_make_real (result);
+         return scm_from_double (result);
        }
       else if (SCM_REALP (y))
-       return scm_make_real (SCM_REAL_VALUE (x) * SCM_REAL_VALUE (y));
+       return scm_from_double (SCM_REAL_VALUE (x) * SCM_REAL_VALUE (y));
       else if (SCM_COMPLEXP (y))
-       return scm_make_complex (SCM_REAL_VALUE (x) * SCM_COMPLEX_REAL (y),
+       return scm_c_make_rectangular (SCM_REAL_VALUE (x) * SCM_COMPLEX_REAL (y),
                                 SCM_REAL_VALUE (x) * SCM_COMPLEX_IMAG (y));
       else if (SCM_FRACTIONP (y))
-       return scm_make_real (SCM_REAL_VALUE (x) * scm_i_fraction2double (y));
+       return scm_from_double (SCM_REAL_VALUE (x) * scm_i_fraction2double (y));
       else
        SCM_WTA_DISPATCH_2 (g_product, x, y, SCM_ARGn, s_product);
     }
   else if (SCM_COMPLEXP (x))
     {
-      if (SCM_INUMP (y))
-       return scm_make_complex (SCM_INUM (y) * SCM_COMPLEX_REAL (x),
-                                SCM_INUM (y) * SCM_COMPLEX_IMAG (x));
+      if (SCM_I_INUMP (y))
+        {
+          /* inexact*exact0 => exact 0, per R5RS "Exactness" section */
+          if (scm_is_eq (y, SCM_INUM0))
+            return y;
+          return scm_c_make_rectangular (SCM_I_INUM (y) * SCM_COMPLEX_REAL (x),
+                                         SCM_I_INUM (y) * SCM_COMPLEX_IMAG (x));
+        }
       else if (SCM_BIGP (y))
        {
          double z = mpz_get_d (SCM_I_BIG_MPZ (y));
          scm_remember_upto_here_1 (y);
-         return scm_make_complex (z * SCM_COMPLEX_REAL (x),
+         return scm_c_make_rectangular (z * SCM_COMPLEX_REAL (x),
                                   z * SCM_COMPLEX_IMAG (x));
        }
       else if (SCM_REALP (y))
-       return scm_make_complex (SCM_REAL_VALUE (y) * SCM_COMPLEX_REAL (x),
+       return scm_c_make_rectangular (SCM_REAL_VALUE (y) * SCM_COMPLEX_REAL (x),
                                 SCM_REAL_VALUE (y) * SCM_COMPLEX_IMAG (x));
       else if (SCM_COMPLEXP (y))
        {
-         return scm_make_complex (SCM_COMPLEX_REAL (x) * SCM_COMPLEX_REAL (y)
+         return scm_c_make_rectangular (SCM_COMPLEX_REAL (x) * SCM_COMPLEX_REAL (y)
                                   - SCM_COMPLEX_IMAG (x) * SCM_COMPLEX_IMAG (y),
                                   SCM_COMPLEX_REAL (x) * SCM_COMPLEX_IMAG (y)
                                   + SCM_COMPLEX_IMAG (x) * SCM_COMPLEX_REAL (y));
@@ -4232,7 +4535,7 @@ scm_product (SCM x, SCM y)
       else if (SCM_FRACTIONP (y))
        {
          double yy = scm_i_fraction2double (y);
-         return scm_make_complex (yy * SCM_COMPLEX_REAL (x),
+         return scm_c_make_rectangular (yy * SCM_COMPLEX_REAL (x),
                                   yy * SCM_COMPLEX_IMAG (x));
        }
       else
@@ -4240,23 +4543,23 @@ scm_product (SCM x, SCM y)
     }
   else if (SCM_FRACTIONP (x))
     {
-      if (SCM_INUMP (y))
-       return scm_make_ratio (scm_product (y, SCM_FRACTION_NUMERATOR (x)),
+      if (SCM_I_INUMP (y))
+       return scm_i_make_ratio (scm_product (y, SCM_FRACTION_NUMERATOR (x)),
                               SCM_FRACTION_DENOMINATOR (x));
       else if (SCM_BIGP (y))
-       return scm_make_ratio (scm_product (y, SCM_FRACTION_NUMERATOR (x)),
+       return scm_i_make_ratio (scm_product (y, SCM_FRACTION_NUMERATOR (x)),
                               SCM_FRACTION_DENOMINATOR (x));
       else if (SCM_REALP (y))
-       return scm_make_real (scm_i_fraction2double (x) * SCM_REAL_VALUE (y));
+       return scm_from_double (scm_i_fraction2double (x) * SCM_REAL_VALUE (y));
       else if (SCM_COMPLEXP (y))
        {
          double xx = scm_i_fraction2double (x);
-         return scm_make_complex (xx * SCM_COMPLEX_REAL (y),
+         return scm_c_make_rectangular (xx * SCM_COMPLEX_REAL (y),
                                   xx * SCM_COMPLEX_IMAG (y));
        }
       else if (SCM_FRACTIONP (y))
        /* a/b * c/d = ac / bd */
-       return scm_make_ratio (scm_product (SCM_FRACTION_NUMERATOR (x),
+       return scm_i_make_ratio (scm_product (SCM_FRACTION_NUMERATOR (x),
                                            SCM_FRACTION_NUMERATOR (y)),
                               scm_product (SCM_FRACTION_DENOMINATOR (x),
                                            SCM_FRACTION_DENOMINATOR (y)));
@@ -4267,27 +4570,6 @@ scm_product (SCM x, SCM y)
     SCM_WTA_DISPATCH_2 (g_product, x, y, SCM_ARG1, s_product);
 }
 
-double
-scm_num2dbl (SCM a, const char *why)
-#define FUNC_NAME why
-{
-  if (SCM_INUMP (a))
-    return (double) SCM_INUM (a);
-  else if (SCM_BIGP (a))
-    {
-      double result = mpz_get_d (SCM_I_BIG_MPZ (a));
-      scm_remember_upto_here_1 (a);
-      return result;
-    }
-  else if (SCM_REALP (a))
-    return (SCM_REAL_VALUE (a));
-  else if (SCM_FRACTIONP (a))
-    return scm_i_fraction2double (a);
-  else
-    SCM_WRONG_TYPE_ARG (SCM_ARGn, a);
-}
-#undef FUNC_NAME
-
 #if ((defined (HAVE_ISINF) && defined (HAVE_ISNAN)) \
      || (defined (HAVE_FINITE) && defined (HAVE_ISNAN)))
 #define ALLOW_DIVIDE_BY_ZERO
@@ -4331,13 +4613,13 @@ scm_i_divide (SCM x, SCM y, int inexact)
 {
   double a;
 
-  if (SCM_UNBNDP (y))
+  if (SCM_UNLIKELY (SCM_UNBNDP (y)))
     {
       if (SCM_UNBNDP (x))
        SCM_WTA_DISPATCH_0 (g_divide, s_divide);
-      else if (SCM_INUMP (x))
+      else if (SCM_I_INUMP (x))
        {
-         long xx = SCM_INUM (x);
+         long xx = SCM_I_INUM (x);
          if (xx == 1 || xx == -1)
            return x;
 #ifndef ALLOW_DIVIDE_BY_EXACT_ZERO
@@ -4347,15 +4629,15 @@ scm_i_divide (SCM x, SCM y, int inexact)
          else
            {
              if (inexact)
-               return scm_make_real (1.0 / (double) xx);
-             else return scm_make_ratio (SCM_MAKINUM(1), x);
+               return scm_from_double (1.0 / (double) xx);
+             else return scm_i_make_ratio (SCM_I_MAKINUM(1), x);
            }
        }
       else if (SCM_BIGP (x))
        {
          if (inexact)
-           return scm_make_real (1.0 / scm_i_big2dbl (x));
-         else return scm_make_ratio (SCM_MAKINUM(1), x);
+           return scm_from_double (1.0 / scm_i_big2dbl (x));
+         else return scm_i_make_ratio (SCM_I_MAKINUM(1), x);
        }
       else if (SCM_REALP (x))
        {
@@ -4365,57 +4647,57 @@ scm_i_divide (SCM x, SCM y, int inexact)
            scm_num_overflow (s_divide);
          else
 #endif
-           return scm_make_real (1.0 / xx);
+           return scm_from_double (1.0 / xx);
        }
       else if (SCM_COMPLEXP (x))
        {
          double r = SCM_COMPLEX_REAL (x);
          double i = SCM_COMPLEX_IMAG (x);
-         if (r <= i)
+         if (fabs(r) <= fabs(i))
            {
              double t = r / i;
              double d = i * (1.0 + t * t);
-             return scm_make_complex (t / d, -1.0 / d);
+             return scm_c_make_rectangular (t / d, -1.0 / d);
            }
          else
            {
              double t = i / r;
              double d = r * (1.0 + t * t);
-             return scm_make_complex (1.0 / d, -t / d);
+             return scm_c_make_rectangular (1.0 / d, -t / d);
            }
        }
       else if (SCM_FRACTIONP (x))
-       return scm_make_ratio (SCM_FRACTION_DENOMINATOR (x),
+       return scm_i_make_ratio (SCM_FRACTION_DENOMINATOR (x),
                               SCM_FRACTION_NUMERATOR (x));
       else
        SCM_WTA_DISPATCH_1 (g_divide, x, SCM_ARG1, s_divide);
     }
 
-  if (SCM_INUMP (x))
+  if (SCM_LIKELY (SCM_I_INUMP (x)))
     {
-      long xx = SCM_INUM (x);
-      if (SCM_INUMP (y))
+      long xx = SCM_I_INUM (x);
+      if (SCM_LIKELY (SCM_I_INUMP (y)))
        {
-         long yy = SCM_INUM (y);
+         long yy = SCM_I_INUM (y);
          if (yy == 0)
            {
 #ifndef ALLOW_DIVIDE_BY_EXACT_ZERO
              scm_num_overflow (s_divide);
 #else
-             return scm_make_real ((double) xx / (double) yy);
+             return scm_from_double ((double) xx / (double) yy);
 #endif
            }
          else if (xx % yy != 0)
            {
              if (inexact)
-               return scm_make_real ((double) xx / (double) yy);
-             else return scm_make_ratio (x, y);
+               return scm_from_double ((double) xx / (double) yy);
+             else return scm_i_make_ratio (x, y);
            }
          else
            {
              long z = xx / yy;
              if (SCM_FIXABLE (z))
-               return SCM_MAKINUM (z);
+               return SCM_I_MAKINUM (z);
              else
                return scm_i_long2big (z);
            }
@@ -4423,8 +4705,8 @@ scm_i_divide (SCM x, SCM y, int inexact)
       else if (SCM_BIGP (y))
        {
          if (inexact)
-           return scm_make_real ((double) xx / scm_i_big2dbl (y));
-         else return scm_make_ratio (x, y);
+           return scm_from_double ((double) xx / scm_i_big2dbl (y));
+         else return scm_i_make_ratio (x, y);
        }
       else if (SCM_REALP (y))
        {
@@ -4434,7 +4716,7 @@ scm_i_divide (SCM x, SCM y, int inexact)
            scm_num_overflow (s_divide);
          else
 #endif
-           return scm_make_real ((double) xx / yy);
+           return scm_from_double ((double) xx / yy);
        }
       else if (SCM_COMPLEXP (y))
        {
@@ -4443,32 +4725,32 @@ scm_i_divide (SCM x, SCM y, int inexact)
          {
            double r = SCM_COMPLEX_REAL (y);
            double i = SCM_COMPLEX_IMAG (y);
-           if (r <= i)
+           if (fabs(r) <= fabs(i))
              {
                double t = r / i;
                double d = i * (1.0 + t * t);
-               return scm_make_complex ((a * t) / d,  -a / d);
+               return scm_c_make_rectangular ((a * t) / d,  -a / d);
              }
            else
              {
                double t = i / r;
                double d = r * (1.0 + t * t);
-               return scm_make_complex (a / d,  -(a * t) / d);
+               return scm_c_make_rectangular (a / d,  -(a * t) / d);
              }
          }
        }
       else if (SCM_FRACTIONP (y))
        /* a / b/c = ac / b */
-       return scm_make_ratio (scm_product (x, SCM_FRACTION_DENOMINATOR (y)),
+       return scm_i_make_ratio (scm_product (x, SCM_FRACTION_DENOMINATOR (y)),
                               SCM_FRACTION_NUMERATOR (y));
       else
        SCM_WTA_DISPATCH_2 (g_divide, x, y, SCM_ARGn, s_divide);
     }
   else if (SCM_BIGP (x))
     {
-      if (SCM_INUMP (y))
+      if (SCM_I_INUMP (y))
        {
-         long int yy = SCM_INUM (y);
+         long int yy = SCM_I_INUM (y);
          if (yy == 0)
            {
 #ifndef ALLOW_DIVIDE_BY_EXACT_ZERO
@@ -4506,8 +4788,8 @@ scm_i_divide (SCM x, SCM y, int inexact)
              else
                {
                  if (inexact)
-                   return scm_make_real (scm_i_big2dbl (x) / (double) yy);
-                 else return scm_make_ratio (x, y);
+                   return scm_from_double (scm_i_big2dbl (x) / (double) yy);
+                 else return scm_i_make_ratio (x, y);
                }
            }
        }
@@ -4527,28 +4809,33 @@ scm_i_divide (SCM x, SCM y, int inexact)
          else
            {
              /* big_x / big_y */
-             int divisible_p = mpz_divisible_p (SCM_I_BIG_MPZ (x),
-                                                SCM_I_BIG_MPZ (y));
-             if (divisible_p)
-               {
-                 SCM result = scm_i_mkbig ();
-                 mpz_divexact (SCM_I_BIG_MPZ (result),
-                               SCM_I_BIG_MPZ (x),
-                               SCM_I_BIG_MPZ (y));
-                 scm_remember_upto_here_2 (x, y);
-                 return scm_i_normbig (result);
-               }
-             else
-               {
-                 if (inexact)
-                   {
-                     double dbx = mpz_get_d (SCM_I_BIG_MPZ (x));
-                     double dby = mpz_get_d (SCM_I_BIG_MPZ (y));
-                     scm_remember_upto_here_2 (x, y);
-                     return scm_make_real (dbx / dby);
-                   }
-                 else return scm_make_ratio (x, y);
-               }
+              if (inexact)
+                {
+                  /* It's easily possible for the ratio x/y to fit a double
+                     but one or both x and y be too big to fit a double,
+                     hence the use of mpq_get_d rather than converting and
+                     dividing.  */
+                  mpq_t q;
+                  *mpq_numref(q) = *SCM_I_BIG_MPZ (x);
+                  *mpq_denref(q) = *SCM_I_BIG_MPZ (y);
+                  return scm_from_double (mpq_get_d (q));
+                }
+              else
+                {
+                  int divisible_p = mpz_divisible_p (SCM_I_BIG_MPZ (x),
+                                                     SCM_I_BIG_MPZ (y));
+                  if (divisible_p)
+                    {
+                      SCM result = scm_i_mkbig ();
+                      mpz_divexact (SCM_I_BIG_MPZ (result),
+                                    SCM_I_BIG_MPZ (x),
+                                    SCM_I_BIG_MPZ (y));
+                      scm_remember_upto_here_2 (x, y);
+                      return scm_i_normbig (result);
+                    }
+                  else
+                    return scm_i_make_ratio (x, y);
+                }
            }
        }
       else if (SCM_REALP (y))
@@ -4559,7 +4846,7 @@ scm_i_divide (SCM x, SCM y, int inexact)
            scm_num_overflow (s_divide);
          else
 #endif
-           return scm_make_real (scm_i_big2dbl (x) / yy);
+           return scm_from_double (scm_i_big2dbl (x) / yy);
        }
       else if (SCM_COMPLEXP (y))
        {
@@ -4567,7 +4854,7 @@ scm_i_divide (SCM x, SCM y, int inexact)
          goto complex_div;
        }
       else if (SCM_FRACTIONP (y))
-       return scm_make_ratio (scm_product (x, SCM_FRACTION_DENOMINATOR (y)),
+       return scm_i_make_ratio (scm_product (x, SCM_FRACTION_DENOMINATOR (y)),
                               SCM_FRACTION_NUMERATOR (y));
       else
        SCM_WTA_DISPATCH_2 (g_divide, x, y, SCM_ARGn, s_divide);
@@ -4575,21 +4862,21 @@ scm_i_divide (SCM x, SCM y, int inexact)
   else if (SCM_REALP (x))
     {
       double rx = SCM_REAL_VALUE (x);
-      if (SCM_INUMP (y))
+      if (SCM_I_INUMP (y))
        {
-         long int yy = SCM_INUM (y);
+         long int yy = SCM_I_INUM (y);
 #ifndef ALLOW_DIVIDE_BY_EXACT_ZERO
          if (yy == 0)
            scm_num_overflow (s_divide);
          else
 #endif
-           return scm_make_real (rx / (double) yy);
+           return scm_from_double (rx / (double) yy);
        }
       else if (SCM_BIGP (y))
        {
          double dby = mpz_get_d (SCM_I_BIG_MPZ (y));
          scm_remember_upto_here_1 (y);
-         return scm_make_real (rx / dby);
+         return scm_from_double (rx / dby);
        }
       else if (SCM_REALP (y))
        {
@@ -4599,7 +4886,7 @@ scm_i_divide (SCM x, SCM y, int inexact)
            scm_num_overflow (s_divide);
          else
 #endif
-           return scm_make_real (rx / yy);
+           return scm_from_double (rx / yy);
        }
       else if (SCM_COMPLEXP (y))
        {
@@ -4607,7 +4894,7 @@ scm_i_divide (SCM x, SCM y, int inexact)
          goto complex_div;
        }
       else if (SCM_FRACTIONP (y))
-       return scm_make_real (rx / scm_i_fraction2double (y));
+       return scm_from_double (rx / scm_i_fraction2double (y));
       else
        SCM_WTA_DISPATCH_2 (g_divide, x, y, SCM_ARGn, s_divide);
     }
@@ -4615,9 +4902,9 @@ scm_i_divide (SCM x, SCM y, int inexact)
     {
       double rx = SCM_COMPLEX_REAL (x);
       double ix = SCM_COMPLEX_IMAG (x);
-      if (SCM_INUMP (y))
+      if (SCM_I_INUMP (y))
        {
-         long int yy = SCM_INUM (y);
+         long int yy = SCM_I_INUM (y);
 #ifndef ALLOW_DIVIDE_BY_EXACT_ZERO
          if (yy == 0)
            scm_num_overflow (s_divide);
@@ -4625,14 +4912,14 @@ scm_i_divide (SCM x, SCM y, int inexact)
 #endif
            {
              double d = yy;
-             return scm_make_complex (rx / d, ix / d);
+             return scm_c_make_rectangular (rx / d, ix / d);
            }
        }
       else if (SCM_BIGP (y))
        {
          double dby = mpz_get_d (SCM_I_BIG_MPZ (y));
          scm_remember_upto_here_1 (y);
-         return scm_make_complex (rx / dby, ix / dby);
+         return scm_c_make_rectangular (rx / dby, ix / dby);
        }
       else if (SCM_REALP (y))
        {
@@ -4642,49 +4929,49 @@ scm_i_divide (SCM x, SCM y, int inexact)
            scm_num_overflow (s_divide);
          else
 #endif
-           return scm_make_complex (rx / yy, ix / yy);
+           return scm_c_make_rectangular (rx / yy, ix / yy);
        }
       else if (SCM_COMPLEXP (y))
        {
          double ry = SCM_COMPLEX_REAL (y);
          double iy = SCM_COMPLEX_IMAG (y);
-         if (ry <= iy)
+         if (fabs(ry) <= fabs(iy))
            {
              double t = ry / iy;
              double d = iy * (1.0 + t * t);
-             return scm_make_complex ((rx * t + ix) / d, (ix * t - rx) / d);
+             return scm_c_make_rectangular ((rx * t + ix) / d, (ix * t - rx) / d);
            }
          else
            {
              double t = iy / ry;
              double d = ry * (1.0 + t * t);
-             return scm_make_complex ((rx + ix * t) / d, (ix - rx * t) / d);
+             return scm_c_make_rectangular ((rx + ix * t) / d, (ix - rx * t) / d);
            }
        }
       else if (SCM_FRACTIONP (y))
        {
          double yy = scm_i_fraction2double (y);
-         return scm_make_complex (rx / yy, ix / yy);
+         return scm_c_make_rectangular (rx / yy, ix / yy);
        }
       else
        SCM_WTA_DISPATCH_2 (g_divide, x, y, SCM_ARGn, s_divide);
     }
   else if (SCM_FRACTIONP (x))
     {
-      if (SCM_INUMP (y)) 
+      if (SCM_I_INUMP (y)) 
        {
-         long int yy = SCM_INUM (y);
+         long int yy = SCM_I_INUM (y);
 #ifndef ALLOW_DIVIDE_BY_EXACT_ZERO
          if (yy == 0)
            scm_num_overflow (s_divide);
          else
 #endif
-           return scm_make_ratio (SCM_FRACTION_NUMERATOR (x),
+           return scm_i_make_ratio (SCM_FRACTION_NUMERATOR (x),
                                   scm_product (SCM_FRACTION_DENOMINATOR (x), y));
        } 
       else if (SCM_BIGP (y)) 
        {
-         return scm_make_ratio (SCM_FRACTION_NUMERATOR (x),
+         return scm_i_make_ratio (SCM_FRACTION_NUMERATOR (x),
                                 scm_product (SCM_FRACTION_DENOMINATOR (x), y));
        } 
       else if (SCM_REALP (y)) 
@@ -4695,7 +4982,7 @@ scm_i_divide (SCM x, SCM y, int inexact)
            scm_num_overflow (s_divide);
          else
 #endif
-           return scm_make_real (scm_i_fraction2double (x) / yy);
+           return scm_from_double (scm_i_fraction2double (x) / yy);
        }
       else if (SCM_COMPLEXP (y)) 
        {
@@ -4703,7 +4990,7 @@ scm_i_divide (SCM x, SCM y, int inexact)
          goto complex_div;
        } 
       else if (SCM_FRACTIONP (y))
-       return scm_make_ratio (scm_product (SCM_FRACTION_NUMERATOR (x), SCM_FRACTION_DENOMINATOR (y)),
+       return scm_i_make_ratio (scm_product (SCM_FRACTION_NUMERATOR (x), SCM_FRACTION_DENOMINATOR (y)),
                               scm_product (SCM_FRACTION_NUMERATOR (y), SCM_FRACTION_DENOMINATOR (x)));
       else 
        SCM_WTA_DISPATCH_2 (g_divide, x, y, SCM_ARGn, s_divide);
@@ -4770,30 +5057,55 @@ SCM_GPROC1 (s_atanh, "$atanh", scm_tc7_dsubr, (SCM (*)()) atanh, g_atanh);
  */
 
 
-/* XXX - eventually, we should remove this definition of scm_round and
-   rename scm_round_number to scm_round.  Likewise for scm_truncate
-   and scm_truncate_number.
- */
-
 double
-scm_truncate (double x)
+scm_c_truncate (double x)
 {
 #if HAVE_TRUNC
   return trunc (x);
 #else
-#define trunc scm_truncate
   if (x < 0.0)
     return -floor (-x);
   return floor (x);
 #endif
 }
 
+/* scm_c_round is done using floor(x+0.5) to round to nearest and with
+   half-way case (ie. when x is an integer plus 0.5) going upwards.
+   Then half-way cases are identified and adjusted down if the
+   round-upwards didn't give the desired even integer.
+
+   "plus_half == result" identifies a half-way case.  If plus_half, which is
+   x + 0.5, is an integer then x must be an integer plus 0.5.
+
+   An odd "result" value is identified with result/2 != floor(result/2).
+   This is done with plus_half, since that value is ready for use sooner in
+   a pipelined cpu, and we're already requiring plus_half == result.
+
+   Note however that we need to be careful when x is big and already an
+   integer.  In that case "x+0.5" may round to an adjacent integer, causing
+   us to return such a value, incorrectly.  For instance if the hardware is
+   in the usual default nearest-even rounding, then for x = 0x1FFFFFFFFFFFFF
+   (ie. 53 one bits) we will have x+0.5 = 0x20000000000000 and that value
+   returned.  Or if the hardware is in round-upwards mode, then other bigger
+   values like say x == 2^128 will see x+0.5 rounding up to the next higher
+   representable value, 2^128+2^76 (or whatever), again incorrect.
+
+   These bad roundings of x+0.5 are avoided by testing at the start whether
+   x is already an integer.  If it is then clearly that's the desired result
+   already.  And if it's not then the exponent must be small enough to allow
+   an 0.5 to be represented, and hence added without a bad rounding.  */
+
 double
-scm_round (double x)
+scm_c_round (double x)
 {
-  double plus_half = x + 0.5;
-  double result = floor (plus_half);
-  /* Adjust so that the scm_round is towards even.  */
+  double plus_half, result;
+
+  if (x == floor (x))
+    return x;
+
+  plus_half = x + 0.5;
+  result = floor (plus_half);
+  /* Adjust so that the rounding is towards even.  */
   return ((plus_half == result && plus_half / 2 != floor (plus_half / 2))
          ? result - 1
          : result);
@@ -4804,7 +5116,7 @@ SCM_DEFINE (scm_truncate_number, "truncate", 1, 0, 0,
            "Round the number @var{x} towards zero.")
 #define FUNC_NAME s_scm_truncate_number
 {
-  if (SCM_FALSEP (scm_negative_p (x)))
+  if (scm_is_false (scm_negative_p (x)))
     return scm_floor (x);
   else
     return scm_ceiling (x);
@@ -4820,14 +5132,24 @@ SCM_DEFINE (scm_round_number, "round", 1, 0, 0,
            "round towards the even one.")
 #define FUNC_NAME s_scm_round_number
 {
-  SCM plus_half = scm_sum (x, exactly_one_half);
-  SCM result = scm_floor (plus_half);
-  /* Adjust so that the scm_round is towards even.  */
-  if (!SCM_FALSEP (scm_num_eq_p (plus_half, result))
-      && !SCM_FALSEP (scm_odd_p (result)))
-    return scm_difference (result, SCM_MAKINUM (1));
+  if (SCM_I_INUMP (x) || SCM_BIGP (x))
+    return x;
+  else if (SCM_REALP (x))
+    return scm_from_double (scm_c_round (SCM_REAL_VALUE (x)));
   else
-    return result;
+    {
+      /* OPTIMIZE-ME: Fraction case could be done more efficiently by a
+         single quotient+remainder division then examining to see which way
+         the rounding should go.  */
+      SCM plus_half = scm_sum (x, exactly_one_half);
+      SCM result = scm_floor (plus_half);
+      /* Adjust so that the rounding is towards even.  */
+      if (scm_is_true (scm_num_eq_p (plus_half, result))
+          && scm_is_true (scm_odd_p (result)))
+        return scm_difference (result, SCM_I_MAKINUM (1));
+      else
+        return result;
+    }
 }
 #undef FUNC_NAME
 
@@ -4836,15 +5158,15 @@ SCM_PRIMITIVE_GENERIC (scm_floor, "floor", 1, 0, 0,
                       "Round the number @var{x} towards minus infinity.")
 #define FUNC_NAME s_scm_floor
 {
-  if (SCM_INUMP (x) || SCM_BIGP (x))
+  if (SCM_I_INUMP (x) || SCM_BIGP (x))
     return x;
   else if (SCM_REALP (x))
-    return scm_make_real (floor (SCM_REAL_VALUE (x)));
+    return scm_from_double (floor (SCM_REAL_VALUE (x)));
   else if (SCM_FRACTIONP (x))
     {
       SCM q = scm_quotient (SCM_FRACTION_NUMERATOR (x),
                            SCM_FRACTION_DENOMINATOR (x));
-      if (SCM_FALSEP (scm_negative_p (x)))
+      if (scm_is_false (scm_negative_p (x)))
        {
          /* For positive x, rounding towards zero is correct. */
          return q;
@@ -4854,7 +5176,7 @@ SCM_PRIMITIVE_GENERIC (scm_floor, "floor", 1, 0, 0,
          /* For negative x, we need to return q-1 unless x is an
             integer.  But fractions are never integer, per our
             assumptions. */
-         return scm_difference (q, SCM_MAKINUM (1));
+         return scm_difference (q, SCM_I_MAKINUM (1));
        }
     }
   else
@@ -4867,15 +5189,15 @@ SCM_PRIMITIVE_GENERIC (scm_ceiling, "ceiling", 1, 0, 0,
                       "Round the number @var{x} towards infinity.")
 #define FUNC_NAME s_scm_ceiling
 {
-  if (SCM_INUMP (x) || SCM_BIGP (x))
+  if (SCM_I_INUMP (x) || SCM_BIGP (x))
     return x;
   else if (SCM_REALP (x))
-    return scm_make_real (ceil (SCM_REAL_VALUE (x)));
+    return scm_from_double (ceil (SCM_REAL_VALUE (x)));
   else if (SCM_FRACTIONP (x))
     {
       SCM q = scm_quotient (SCM_FRACTION_NUMERATOR (x),
                            SCM_FRACTION_DENOMINATOR (x));
-      if (SCM_FALSEP (scm_positive_p (x)))
+      if (scm_is_false (scm_positive_p (x)))
        {
          /* For negative x, rounding towards zero is correct. */
          return q;
@@ -4885,7 +5207,7 @@ SCM_PRIMITIVE_GENERIC (scm_ceiling, "ceiling", 1, 0, 0,
          /* For positive x, we need to return q+1 unless x is an
             integer.  But fractions are never integer, per our
             assumptions. */
-         return scm_sum (q, SCM_MAKINUM (1));
+         return scm_sum (q, SCM_I_MAKINUM (1));
        }
     }
   else
@@ -4946,8 +5268,8 @@ static void scm_two_doubles (SCM x,
 static void
 scm_two_doubles (SCM x, SCM y, const char *sstring, struct dpair *xy)
 {
-  if (SCM_INUMP (x))
-    xy->x = SCM_INUM (x);
+  if (SCM_I_INUMP (x))
+    xy->x = SCM_I_INUM (x);
   else if (SCM_BIGP (x))
     xy->x = scm_i_big2dbl (x);
   else if (SCM_REALP (x))
@@ -4957,8 +5279,8 @@ scm_two_doubles (SCM x, SCM y, const char *sstring, struct dpair *xy)
   else
     scm_wrong_type_arg (sstring, SCM_ARG1, x);
 
-  if (SCM_INUMP (y))
-    xy->y = SCM_INUM (y);
+  if (SCM_I_INUMP (y))
+    xy->y = SCM_I_INUM (y);
   else if (SCM_BIGP (y))
     xy->y = scm_i_big2dbl (y);
   else if (SCM_REALP (y))
@@ -4978,7 +5300,7 @@ SCM_DEFINE (scm_sys_expt, "$expt", 2, 0, 0,
 {
   struct dpair xy;
   scm_two_doubles (x, y, FUNC_NAME, &xy);
-  return scm_make_real (pow (xy.x, xy.y));
+  return scm_from_double (pow (xy.x, xy.y));
 }
 #undef FUNC_NAME
 
@@ -4994,24 +5316,50 @@ SCM_DEFINE (scm_sys_atan2, "$atan2", 2, 0, 0,
 {
   struct dpair xy;
   scm_two_doubles (x, y, FUNC_NAME, &xy);
-  return scm_make_real (atan2 (xy.x, xy.y));
+  return scm_from_double (atan2 (xy.x, xy.y));
 }
 #undef FUNC_NAME
 
+SCM
+scm_c_make_rectangular (double re, double im)
+{
+  if (im == 0.0)
+    return scm_from_double (re);
+  else
+    {
+      SCM z;
+      SCM_NEWSMOB (z, scm_tc16_complex, scm_gc_malloc (sizeof (scm_t_complex),
+                                                      "complex"));
+      SCM_COMPLEX_REAL (z) = re;
+      SCM_COMPLEX_IMAG (z) = im;
+      return z;
+    }
+}
 
 SCM_DEFINE (scm_make_rectangular, "make-rectangular", 2, 0, 0,
-            (SCM real, SCM imaginary),
-           "Return a complex number constructed of the given @var{real} and\n"
-           "@var{imaginary} parts.")
+            (SCM real_part, SCM imaginary_part),
+           "Return a complex number constructed of the given @var{real-part} "
+           "and @var{imaginary-part} parts.")
 #define FUNC_NAME s_scm_make_rectangular
 {
   struct dpair xy;
-  scm_two_doubles (real, imaginary, FUNC_NAME, &xy);
-  return scm_make_complex (xy.x, xy.y);
+  scm_two_doubles (real_part, imaginary_part, FUNC_NAME, &xy);
+  return scm_c_make_rectangular (xy.x, xy.y);
 }
 #undef FUNC_NAME
 
-
+SCM
+scm_c_make_polar (double mag, double ang)
+{
+  double s, c;
+#if HAVE_SINCOS
+  sincos (ang, &s, &c);
+#else
+  s = sin (ang);
+  c = cos (ang);
+#endif
+  return scm_c_make_rectangular (mag * c, mag * s);
+}
 
 SCM_DEFINE (scm_make_polar, "make-polar", 2, 0, 0,
             (SCM x, SCM y),
@@ -5019,15 +5367,8 @@ SCM_DEFINE (scm_make_polar, "make-polar", 2, 0, 0,
 #define FUNC_NAME s_scm_make_polar
 {
   struct dpair xy;
-  double s, c;
   scm_two_doubles (x, y, FUNC_NAME, &xy);
-#if HAVE_SINCOS
-  sincos (xy.y, &s, &c);
-#else
-  s = sin (xy.y);
-  c = cos (xy.y);
-#endif
-  return scm_make_complex (xy.x * c, xy.x * s);
+  return scm_c_make_polar (xy.x, xy.y);
 }
 #undef FUNC_NAME
 
@@ -5038,14 +5379,14 @@ SCM_GPROC (s_real_part, "real-part", 1, 0, 0, scm_real_part, g_real_part);
 SCM
 scm_real_part (SCM z)
 {
-  if (SCM_INUMP (z))
+  if (SCM_I_INUMP (z))
     return z;
   else if (SCM_BIGP (z))
     return z;
   else if (SCM_REALP (z))
     return z;
   else if (SCM_COMPLEXP (z))
-    return scm_make_real (SCM_COMPLEX_REAL (z));
+    return scm_from_double (SCM_COMPLEX_REAL (z));
   else if (SCM_FRACTIONP (z))
     return z;
   else
@@ -5059,14 +5400,14 @@ SCM_GPROC (s_imag_part, "imag-part", 1, 0, 0, scm_imag_part, g_imag_part);
 SCM
 scm_imag_part (SCM z)
 {
-  if (SCM_INUMP (z))
+  if (SCM_I_INUMP (z))
     return SCM_INUM0;
   else if (SCM_BIGP (z))
     return SCM_INUM0;
   else if (SCM_REALP (z))
     return scm_flo0;
   else if (SCM_COMPLEXP (z))
-    return scm_make_real (SCM_COMPLEX_IMAG (z));
+    return scm_from_double (SCM_COMPLEX_IMAG (z));
   else if (SCM_FRACTIONP (z))
     return SCM_INUM0;
   else
@@ -5079,15 +5420,12 @@ SCM_GPROC (s_numerator, "numerator", 1, 0, 0, scm_numerator, g_numerator);
 SCM
 scm_numerator (SCM z)
 {
-  if (SCM_INUMP (z))
+  if (SCM_I_INUMP (z))
     return z;
   else if (SCM_BIGP (z))
     return z;
   else if (SCM_FRACTIONP (z))
-    {
-      scm_i_fraction_reduce (z);
-      return SCM_FRACTION_NUMERATOR (z);
-    }
+    return SCM_FRACTION_NUMERATOR (z);
   else if (SCM_REALP (z))
     return scm_exact_to_inexact (scm_numerator (scm_inexact_to_exact (z)));
   else
@@ -5101,15 +5439,12 @@ SCM_GPROC (s_denominator, "denominator", 1, 0, 0, scm_denominator, g_denominator
 SCM
 scm_denominator (SCM z)
 {
-  if (SCM_INUMP (z))
-    return SCM_MAKINUM (1);
+  if (SCM_I_INUMP (z))
+    return SCM_I_MAKINUM (1);
   else if (SCM_BIGP (z)) 
-    return SCM_MAKINUM (1);
+    return SCM_I_MAKINUM (1);
   else if (SCM_FRACTIONP (z))
-    {
-      scm_i_fraction_reduce (z);
-      return SCM_FRACTION_DENOMINATOR (z);
-    }
+    return SCM_FRACTION_DENOMINATOR (z);
   else if (SCM_REALP (z))
     return scm_exact_to_inexact (scm_denominator (scm_inexact_to_exact (z)));
   else
@@ -5123,13 +5458,13 @@ SCM_GPROC (s_magnitude, "magnitude", 1, 0, 0, scm_magnitude, g_magnitude);
 SCM
 scm_magnitude (SCM z)
 {
-  if (SCM_INUMP (z))
+  if (SCM_I_INUMP (z))
     {
-      long int zz = SCM_INUM (z);
+      long int zz = SCM_I_INUM (z);
       if (zz >= 0)
        return z;
       else if (SCM_POSFIXABLE (-zz))
-       return SCM_MAKINUM (-zz);
+       return SCM_I_MAKINUM (-zz);
       else
        return scm_i_long2big (-zz);
     }
@@ -5143,14 +5478,14 @@ scm_magnitude (SCM z)
        return z;
     }
   else if (SCM_REALP (z))
-    return scm_make_real (fabs (SCM_REAL_VALUE (z)));
+    return scm_from_double (fabs (SCM_REAL_VALUE (z)));
   else if (SCM_COMPLEXP (z))
-    return scm_make_real (hypot (SCM_COMPLEX_REAL (z), SCM_COMPLEX_IMAG (z)));
+    return scm_from_double (hypot (SCM_COMPLEX_REAL (z), SCM_COMPLEX_IMAG (z)));
   else if (SCM_FRACTIONP (z))
     {
-      if (SCM_FALSEP (scm_negative_p (SCM_FRACTION_NUMERATOR (z))))
+      if (scm_is_false (scm_negative_p (SCM_FRACTION_NUMERATOR (z))))
        return z;
-      return scm_make_ratio (scm_difference (SCM_FRACTION_NUMERATOR (z), SCM_UNDEFINED),
+      return scm_i_make_ratio (scm_difference (SCM_FRACTION_NUMERATOR (z), SCM_UNDEFINED),
                             SCM_FRACTION_DENOMINATOR (z));
     }
   else
@@ -5165,22 +5500,22 @@ SCM
 scm_angle (SCM z)
 {
   /* atan(0,-1) is pi and it'd be possible to have that as a constant like
-     scm_flo0 to save allocating a new flonum with scm_make_real each time.
+     scm_flo0 to save allocating a new flonum with scm_from_double each time.
      But if atan2 follows the floating point rounding mode, then the value
      is not a constant.  Maybe it'd be close enough though.  */
-  if (SCM_INUMP (z))
+  if (SCM_I_INUMP (z))
     {
-      if (SCM_INUM (z) >= 0)
+      if (SCM_I_INUM (z) >= 0)
         return scm_flo0;
       else
-       return scm_make_real (atan2 (0.0, -1.0));
+       return scm_from_double (atan2 (0.0, -1.0));
     }
   else if (SCM_BIGP (z))
     {
       int sgn = mpz_sgn (SCM_I_BIG_MPZ (z));
       scm_remember_upto_here_1 (z);
       if (sgn < 0)
-       return scm_make_real (atan2 (0.0, -1.0));
+       return scm_from_double (atan2 (0.0, -1.0));
       else
         return scm_flo0;
     }
@@ -5189,15 +5524,15 @@ scm_angle (SCM z)
       if (SCM_REAL_VALUE (z) >= 0)
         return scm_flo0;
       else
-        return scm_make_real (atan2 (0.0, -1.0));
+        return scm_from_double (atan2 (0.0, -1.0));
     }
   else if (SCM_COMPLEXP (z))
-    return scm_make_real (atan2 (SCM_COMPLEX_IMAG (z), SCM_COMPLEX_REAL (z)));
+    return scm_from_double (atan2 (SCM_COMPLEX_IMAG (z), SCM_COMPLEX_REAL (z)));
   else if (SCM_FRACTIONP (z))
     {
-      if (SCM_FALSEP (scm_negative_p (SCM_FRACTION_NUMERATOR (z))))
+      if (scm_is_false (scm_negative_p (SCM_FRACTION_NUMERATOR (z))))
        return scm_flo0;
-      else return scm_make_real (atan2 (0.0, -1.0));
+      else return scm_from_double (atan2 (0.0, -1.0));
     }
   else
     SCM_WTA_DISPATCH_1 (g_angle, z, SCM_ARG1, s_angle);
@@ -5210,12 +5545,12 @@ SCM_GPROC (s_exact_to_inexact, "exact->inexact", 1, 0, 0, scm_exact_to_inexact,
 SCM
 scm_exact_to_inexact (SCM z)
 {
-  if (SCM_INUMP (z))
-    return scm_make_real ((double) SCM_INUM (z));
+  if (SCM_I_INUMP (z))
+    return scm_from_double ((double) SCM_I_INUM (z));
   else if (SCM_BIGP (z))
-    return scm_make_real (scm_i_big2dbl (z));
+    return scm_from_double (scm_i_big2dbl (z));
   else if (SCM_FRACTIONP (z))
-    return scm_make_real (scm_i_fraction2double (z));
+    return scm_from_double (scm_i_fraction2double (z));
   else if (SCM_INEXACTP (z))
     return z;
   else
@@ -5228,7 +5563,7 @@ SCM_DEFINE (scm_inexact_to_exact, "inexact->exact", 1, 0, 0,
            "Return an exact number that is numerically closest to @var{z}.")
 #define FUNC_NAME s_scm_inexact_to_exact
 {
-  if (SCM_INUMP (z))
+  if (SCM_I_INUMP (z))
     return z;
   else if (SCM_BIGP (z))
     return z;
@@ -5243,10 +5578,10 @@ SCM_DEFINE (scm_inexact_to_exact, "inexact->exact", 1, 0, 0,
          
          mpq_init (frac);
          mpq_set_d (frac, SCM_REAL_VALUE (z));
-         q = scm_make_ratio (scm_i_mpz2num (mpq_numref (frac)),
+         q = scm_i_make_ratio (scm_i_mpz2num (mpq_numref (frac)),
                              scm_i_mpz2num (mpq_denref (frac)));
 
-         /* When scm_make_ratio throws, we leak the memory allocated
+         /* When scm_i_make_ratio throws, we leak the memory allocated
             for frac...
           */
          mpq_clear (frac);
@@ -5261,11 +5596,21 @@ SCM_DEFINE (scm_inexact_to_exact, "inexact->exact", 1, 0, 0,
 #undef FUNC_NAME
 
 SCM_DEFINE (scm_rationalize, "rationalize", 2, 0, 0, 
-            (SCM x, SCM err),
-           "Return an exact number that is within @var{err} of @var{x}.")
+            (SCM x, SCM eps),
+           "Returns the @emph{simplest} rational number differing\n"
+           "from @var{x} by no more than @var{eps}.\n"
+           "\n"
+           "As required by @acronym{R5RS}, @code{rationalize} only returns an\n"
+           "exact result when both its arguments are exact.  Thus, you might need\n"
+           "to use @code{inexact->exact} on the arguments.\n"
+           "\n"
+           "@lisp\n"
+           "(rationalize (inexact->exact 1.2) 1/100)\n"
+           "@result{} 6/5\n"
+           "@end lisp")
 #define FUNC_NAME s_scm_rationalize
 {
-  if (SCM_INUMP (x))
+  if (SCM_I_INUMP (x))
     return x;
   else if (SCM_BIGP (x))
     return x;
@@ -5277,13 +5622,13 @@ SCM_DEFINE (scm_rationalize, "rationalize", 2, 0, 0,
 
       SCM ex = scm_inexact_to_exact (x);
       SCM int_part = scm_floor (ex);
-      SCM tt = SCM_MAKINUM (1);
-      SCM a1 = SCM_MAKINUM (0), a2 = SCM_MAKINUM (1), a = SCM_MAKINUM (0);
-      SCM b1 = SCM_MAKINUM (1), b2 = SCM_MAKINUM (0), b = SCM_MAKINUM (0);
+      SCM tt = SCM_I_MAKINUM (1);
+      SCM a1 = SCM_I_MAKINUM (0), a2 = SCM_I_MAKINUM (1), a = SCM_I_MAKINUM (0);
+      SCM b1 = SCM_I_MAKINUM (1), b2 = SCM_I_MAKINUM (0), b = SCM_I_MAKINUM (0);
       SCM rx;
       int i = 0;
 
-      if (!SCM_FALSEP (scm_num_eq_p (ex, int_part)))
+      if (scm_is_true (scm_num_eq_p (ex, int_part)))
        return ex;
       
       ex = scm_difference (ex, int_part);            /* x = x-int_part */
@@ -5294,19 +5639,19 @@ SCM_DEFINE (scm_rationalize, "rationalize", 2, 0, 0,
         converges after less than a dozen iterations.
       */
 
-      err = scm_abs (err);
+      eps = scm_abs (eps);
       while (++i < 1000000)
        {
          a = scm_sum (scm_product (a1, tt), a2);    /* a = a1*tt + a2 */
          b = scm_sum (scm_product (b1, tt), b2);    /* b = b1*tt + b2 */
-         if (SCM_FALSEP (scm_zero_p (b)) &&         /* b != 0 */
-             SCM_FALSEP 
+         if (scm_is_false (scm_zero_p (b)) &&         /* b != 0 */
+             scm_is_false 
              (scm_gr_p (scm_abs (scm_difference (ex, scm_divide (a, b))),
-                        err)))                      /* abs(x-a/b) <= err */
+                        eps)))                      /* abs(x-a/b) <= eps */
            {
              SCM res = scm_sum (int_part, scm_divide (a, b));
-             if (SCM_FALSEP (scm_exact_p (x))
-                 || SCM_FALSEP (scm_exact_p (err)))
+             if (scm_is_false (scm_exact_p (x))
+                 || scm_is_false (scm_exact_p (eps)))
                return scm_exact_to_inexact (res);
              else
                return res;
@@ -5326,262 +5671,484 @@ SCM_DEFINE (scm_rationalize, "rationalize", 2, 0, 0,
 }
 #undef FUNC_NAME
 
-/* if you need to change this, change test-num2integral.c as well */
-#if SCM_SIZEOF_LONG_LONG != 0
-# ifndef LLONG_MAX
-#  define ULLONG_MAX ((unsigned long long) (-1))
-#  define LLONG_MAX ((long long) (ULLONG_MAX >> 1))
-#  define LLONG_MIN (~LLONG_MAX)
-# endif
-#endif
+/* conversion functions */
 
-/* Parameters for creating integer conversion routines.
+int
+scm_is_integer (SCM val)
+{
+  return scm_is_true (scm_integer_p (val));
+}
 
-   Define the following preprocessor macros before including
-   "libguile/num2integral.i.c":
+int
+scm_is_signed_integer (SCM val, scm_t_intmax min, scm_t_intmax max)
+{
+  if (SCM_I_INUMP (val))
+    {
+      scm_t_signed_bits n = SCM_I_INUM (val);
+      return n >= min && n <= max;
+    }
+  else if (SCM_BIGP (val))
+    {
+      if (min >= SCM_MOST_NEGATIVE_FIXNUM && max <= SCM_MOST_POSITIVE_FIXNUM)
+       return 0;
+      else if (min >= LONG_MIN && max <= LONG_MAX)
+       {
+         if (mpz_fits_slong_p (SCM_I_BIG_MPZ (val)))
+           {
+             long n = mpz_get_si (SCM_I_BIG_MPZ (val));
+             return n >= min && n <= max;
+           }
+         else
+           return 0;
+       }
+      else
+       {
+         scm_t_intmax n;
+         size_t count;
 
-   NUM2INTEGRAL - the name of the function for converting from a
-     Scheme object to the integral type.  This function will be
-     defined when including "num2integral.i.c".
+         if (mpz_sizeinbase (SCM_I_BIG_MPZ (val), 2) 
+             > CHAR_BIT*sizeof (scm_t_uintmax))
+           return 0;
+         
+         mpz_export (&n, &count, 1, sizeof (scm_t_uintmax), 0, 0,
+                     SCM_I_BIG_MPZ (val));
 
-   INTEGRAL2NUM - the name of the function for converting from the
-     integral type to a Scheme object.  This function will be defined.
+         if (mpz_sgn (SCM_I_BIG_MPZ (val)) >= 0)
+           {
+             if (n < 0)
+               return 0;
+           }
+         else
+           {
+             n = -n;
+             if (n >= 0)
+               return 0;
+           }
 
-   INTEGRAL2BIG - the name of an internal function that createas a
-     bignum from the integral type.  This function will be defined.
-     The name should start with "scm_i_".
+         return n >= min && n <= max;
+       }
+    }
+  else
+    return 0;
+}
 
-   ITYPE - the name of the integral type.
+int
+scm_is_unsigned_integer (SCM val, scm_t_uintmax min, scm_t_uintmax max)
+{
+  if (SCM_I_INUMP (val))
+    {
+      scm_t_signed_bits n = SCM_I_INUM (val);
+      return n >= 0 && ((scm_t_uintmax)n) >= min && ((scm_t_uintmax)n) <= max;
+    }
+  else if (SCM_BIGP (val))
+    {
+      if (max <= SCM_MOST_POSITIVE_FIXNUM)
+       return 0;
+      else if (max <= ULONG_MAX)
+       {
+         if (mpz_fits_ulong_p (SCM_I_BIG_MPZ (val)))
+           {
+             unsigned long n = mpz_get_ui (SCM_I_BIG_MPZ (val));
+             return n >= min && n <= max;
+           }
+         else
+           return 0;
+       }
+      else
+       {
+         scm_t_uintmax n;
+         size_t count;
 
-   UNSIGNED - Define this to 1 when ITYPE is an unsigned type.  Define
-   it to 0 otherwise.
+         if (mpz_sgn (SCM_I_BIG_MPZ (val)) < 0)
+           return 0;
 
-   UNSIGNED_ITYPE - the name of the the unsigned variant of the
-     integral type.  If you don't define this, it defaults to
-     "unsigned ITYPE" for signed types and simply "ITYPE" for unsigned
-     ones.
+         if (mpz_sizeinbase (SCM_I_BIG_MPZ (val), 2)
+             > CHAR_BIT*sizeof (scm_t_uintmax))
+           return 0;
+         
+         mpz_export (&n, &count, 1, sizeof (scm_t_uintmax), 0, 0,
+                     SCM_I_BIG_MPZ (val));
 
-   SIZEOF_ITYPE - an expression giving the size of the integral type
-     in bytes.  This expression must be computable by the
-     preprocessor.  (SIZEOF_FOO values are calculated by configure.in
-     for common types).
+         return n >= min && n <= max;
+       }
+    }
+  else
+    return 0;
+}
 
-*/
+static void
+scm_i_range_error (SCM bad_val, SCM min, SCM max)
+{
+  scm_error (scm_out_of_range_key,
+            NULL,
+            "Value out of range ~S to ~S: ~S",
+             scm_list_3 (min, max, bad_val),
+             scm_list_1 (bad_val));
+}
 
-#define NUM2INTEGRAL scm_num2short
-#define INTEGRAL2NUM scm_short2num
-#define INTEGRAL2BIG scm_i_short2big
-#define UNSIGNED 0
-#define ITYPE short
-#define SIZEOF_ITYPE SIZEOF_SHORT
-#include "libguile/num2integral.i.c"
-
-#define NUM2INTEGRAL scm_num2ushort
-#define INTEGRAL2NUM scm_ushort2num
-#define INTEGRAL2BIG scm_i_ushort2big
-#define UNSIGNED 1
-#define ITYPE unsigned short
-#define SIZEOF_ITYPE SIZEOF_UNSIGNED_SHORT
-#include "libguile/num2integral.i.c"
-
-#define NUM2INTEGRAL scm_num2int
-#define INTEGRAL2NUM scm_int2num
-#define INTEGRAL2BIG scm_i_int2big
-#define UNSIGNED 0
-#define ITYPE int
-#define SIZEOF_ITYPE SIZEOF_INT
-#include "libguile/num2integral.i.c"
-
-#define NUM2INTEGRAL scm_num2uint
-#define INTEGRAL2NUM scm_uint2num
-#define INTEGRAL2BIG scm_i_uint2big
-#define UNSIGNED 1
-#define ITYPE unsigned int
-#define SIZEOF_ITYPE SIZEOF_UNSIGNED_INT
-#include "libguile/num2integral.i.c"
-
-#define NUM2INTEGRAL scm_num2long
-#define INTEGRAL2NUM scm_long2num
-#define INTEGRAL2BIG scm_i_long2big
-#define UNSIGNED 0
-#define ITYPE long
-#define SIZEOF_ITYPE SIZEOF_LONG
-#include "libguile/num2integral.i.c"
-
-#define NUM2INTEGRAL scm_num2ulong
-#define INTEGRAL2NUM scm_ulong2num
-#define INTEGRAL2BIG scm_i_ulong2big
-#define UNSIGNED 1
-#define ITYPE unsigned long
-#define SIZEOF_ITYPE SIZEOF_UNSIGNED_LONG
-#include "libguile/num2integral.i.c"
-
-#define NUM2INTEGRAL scm_num2ptrdiff
-#define INTEGRAL2NUM scm_ptrdiff2num
-#define INTEGRAL2BIG scm_i_ptrdiff2big
-#define UNSIGNED 0
-#define ITYPE scm_t_ptrdiff
-#define UNSIGNED_ITYPE size_t
-#define SIZEOF_ITYPE SCM_SIZEOF_SCM_T_PTRDIFF
-#include "libguile/num2integral.i.c"
-
-#define NUM2INTEGRAL scm_num2size
-#define INTEGRAL2NUM scm_size2num
-#define INTEGRAL2BIG scm_i_size2big
-#define UNSIGNED 1
-#define ITYPE size_t
-#define SIZEOF_ITYPE SIZEOF_SIZE_T
-#include "libguile/num2integral.i.c"
-
-#if SCM_SIZEOF_LONG_LONG != 0
-
-#ifndef ULONG_LONG_MAX
-#define ULONG_LONG_MAX (~0ULL)
-#endif
+#define TYPE                     scm_t_intmax
+#define TYPE_MIN                 min
+#define TYPE_MAX                 max
+#define SIZEOF_TYPE              0
+#define SCM_TO_TYPE_PROTO(arg)   scm_to_signed_integer (arg, scm_t_intmax min, scm_t_intmax max)
+#define SCM_FROM_TYPE_PROTO(arg) scm_from_signed_integer (arg)
+#include "libguile/conv-integer.i.c"
+
+#define TYPE                     scm_t_uintmax
+#define TYPE_MIN                 min
+#define TYPE_MAX                 max
+#define SIZEOF_TYPE              0
+#define SCM_TO_TYPE_PROTO(arg)   scm_to_unsigned_integer (arg, scm_t_uintmax min, scm_t_uintmax max)
+#define SCM_FROM_TYPE_PROTO(arg) scm_from_unsigned_integer (arg)
+#include "libguile/conv-uinteger.i.c"
+
+#define TYPE                     scm_t_int8
+#define TYPE_MIN                 SCM_T_INT8_MIN
+#define TYPE_MAX                 SCM_T_INT8_MAX
+#define SIZEOF_TYPE              1
+#define SCM_TO_TYPE_PROTO(arg)   scm_to_int8 (arg)
+#define SCM_FROM_TYPE_PROTO(arg) scm_from_int8 (arg)
+#include "libguile/conv-integer.i.c"
+
+#define TYPE                     scm_t_uint8
+#define TYPE_MIN                 0
+#define TYPE_MAX                 SCM_T_UINT8_MAX
+#define SIZEOF_TYPE              1
+#define SCM_TO_TYPE_PROTO(arg)   scm_to_uint8 (arg)
+#define SCM_FROM_TYPE_PROTO(arg) scm_from_uint8 (arg)
+#include "libguile/conv-uinteger.i.c"
+
+#define TYPE                     scm_t_int16
+#define TYPE_MIN                 SCM_T_INT16_MIN
+#define TYPE_MAX                 SCM_T_INT16_MAX
+#define SIZEOF_TYPE              2
+#define SCM_TO_TYPE_PROTO(arg)   scm_to_int16 (arg)
+#define SCM_FROM_TYPE_PROTO(arg) scm_from_int16 (arg)
+#include "libguile/conv-integer.i.c"
+
+#define TYPE                     scm_t_uint16
+#define TYPE_MIN                 0
+#define TYPE_MAX                 SCM_T_UINT16_MAX
+#define SIZEOF_TYPE              2
+#define SCM_TO_TYPE_PROTO(arg)   scm_to_uint16 (arg)
+#define SCM_FROM_TYPE_PROTO(arg) scm_from_uint16 (arg)
+#include "libguile/conv-uinteger.i.c"
+
+#define TYPE                     scm_t_int32
+#define TYPE_MIN                 SCM_T_INT32_MIN
+#define TYPE_MAX                 SCM_T_INT32_MAX
+#define SIZEOF_TYPE              4
+#define SCM_TO_TYPE_PROTO(arg)   scm_to_int32 (arg)
+#define SCM_FROM_TYPE_PROTO(arg) scm_from_int32 (arg)
+#include "libguile/conv-integer.i.c"
+
+#define TYPE                     scm_t_uint32
+#define TYPE_MIN                 0
+#define TYPE_MAX                 SCM_T_UINT32_MAX
+#define SIZEOF_TYPE              4
+#define SCM_TO_TYPE_PROTO(arg)   scm_to_uint32 (arg)
+#define SCM_FROM_TYPE_PROTO(arg) scm_from_uint32 (arg)
+#include "libguile/conv-uinteger.i.c"
+
+#if SCM_HAVE_T_INT64
+
+#define TYPE                     scm_t_int64
+#define TYPE_MIN                 SCM_T_INT64_MIN
+#define TYPE_MAX                 SCM_T_INT64_MAX
+#define SIZEOF_TYPE              8
+#define SCM_TO_TYPE_PROTO(arg)   scm_to_int64 (arg)
+#define SCM_FROM_TYPE_PROTO(arg) scm_from_int64 (arg)
+#include "libguile/conv-integer.i.c"
+
+#define TYPE                     scm_t_uint64
+#define TYPE_MIN                 0
+#define TYPE_MAX                 SCM_T_UINT64_MAX
+#define SIZEOF_TYPE              8
+#define SCM_TO_TYPE_PROTO(arg)   scm_to_uint64 (arg)
+#define SCM_FROM_TYPE_PROTO(arg) scm_from_uint64 (arg)
+#include "libguile/conv-uinteger.i.c"
 
-#define NUM2INTEGRAL scm_num2long_long
-#define INTEGRAL2NUM scm_long_long2num
-#define INTEGRAL2BIG scm_i_long_long2big
-#define UNSIGNED 0
-#define ITYPE long long
-#define SIZEOF_ITYPE SIZEOF_LONG_LONG
-#include "libguile/num2integral.i.c"
-
-#define NUM2INTEGRAL scm_num2ulong_long
-#define INTEGRAL2NUM scm_ulong_long2num
-#define INTEGRAL2BIG scm_i_ulong_long2big
-#define UNSIGNED 1
-#define ITYPE unsigned long long
-#define SIZEOF_ITYPE SIZEOF_UNSIGNED_LONG_LONG
-#include "libguile/num2integral.i.c"
-
-#endif /* SCM_SIZEOF_LONG_LONG != 0 */
-
-#define NUM2FLOAT scm_num2float
-#define FLOAT2NUM scm_float2num
-#define FTYPE float
-#include "libguile/num2float.i.c"
-
-#define NUM2FLOAT scm_num2double
-#define FLOAT2NUM scm_double2num
-#define FTYPE double
-#include "libguile/num2float.i.c"
-
-#ifdef GUILE_DEBUG
-
-#ifndef SIZE_MAX
-#define SIZE_MAX ((size_t) (-1))
-#endif
-#ifndef PTRDIFF_MIN
-#define PTRDIFF_MIN \
- ((scm_t_ptrdiff) ((scm_t_ptrdiff) 1 \
-  << ((sizeof (scm_t_ptrdiff) * SCM_CHAR_BIT) - 1)))
-#endif
-#ifndef PTRDIFF_MAX
-#define PTRDIFF_MAX (~ PTRDIFF_MIN)
 #endif
 
-#define CHECK(type, v)                                                    \
-  do                                                                      \
-    {                                                                     \
-      if ((v) != scm_num2##type (scm_##type##2num (v), 1, "check_sanity")) \
-       abort ();                                                          \
-    }                                                                     \
-  while (0)
+void
+scm_to_mpz (SCM val, mpz_t rop)
+{
+  if (SCM_I_INUMP (val))
+    mpz_set_si (rop, SCM_I_INUM (val));
+  else if (SCM_BIGP (val))
+    mpz_set (rop, SCM_I_BIG_MPZ (val));
+  else
+    scm_wrong_type_arg_msg (NULL, 0, val, "exact integer");
+}
+
+SCM
+scm_from_mpz (mpz_t val)
+{
+  return scm_i_mpz2num (val);
+}
+
+int
+scm_is_real (SCM val)
+{
+  return scm_is_true (scm_real_p (val));
+}
+
+int
+scm_is_rational (SCM val)
+{
+  return scm_is_true (scm_rational_p (val));
+}
+
+double
+scm_to_double (SCM val)
+{
+  if (SCM_I_INUMP (val))
+    return SCM_I_INUM (val);
+  else if (SCM_BIGP (val))
+    return scm_i_big2dbl (val);
+  else if (SCM_FRACTIONP (val))
+    return scm_i_fraction2double (val);
+  else if (SCM_REALP (val))
+    return SCM_REAL_VALUE (val);
+  else
+    scm_wrong_type_arg_msg (NULL, 0, val, "real number");
+}
+
+SCM
+scm_from_double (double val)
+{
+  SCM z = scm_double_cell (scm_tc16_real, 0, 0, 0);
+  SCM_REAL_VALUE (z) = val;
+  return z;
+}
+
+#if SCM_ENABLE_DISCOURAGED == 1
+
+float
+scm_num2float (SCM num, unsigned long int pos, const char *s_caller)
+{
+  if (SCM_BIGP (num))
+    {
+      float res = mpz_get_d (SCM_I_BIG_MPZ (num));
+      if (!xisinf (res))
+       return res;
+      else
+       scm_out_of_range (NULL, num);
+    }
+  else
+    return scm_to_double (num);
+}
+
+double
+scm_num2double (SCM num, unsigned long int pos, const char *s_caller)
+{
+  if (SCM_BIGP (num))
+    {
+      double res = mpz_get_d (SCM_I_BIG_MPZ (num));
+      if (!xisinf (res))
+       return res;
+      else
+       scm_out_of_range (NULL, num);
+    }
+  else
+    return scm_to_double (num);
+}
 
-static void
-check_sanity ()
-{
-  CHECK (short, 0);
-  CHECK (ushort, 0U);
-  CHECK (int, 0);
-  CHECK (uint, 0U);
-  CHECK (long, 0L);
-  CHECK (ulong, 0UL);
-  CHECK (size, 0);
-  CHECK (ptrdiff, 0);
-
-  CHECK (short, -1);
-  CHECK (int, -1);
-  CHECK (long, -1L);
-  CHECK (ptrdiff, -1);
-
-  CHECK (short, SHRT_MAX);
-  CHECK (short, SHRT_MIN);
-  CHECK (ushort, USHRT_MAX);
-  CHECK (int, INT_MAX);
-  CHECK (int, INT_MIN);
-  CHECK (uint, UINT_MAX);
-  CHECK (long, LONG_MAX);
-  CHECK (long, LONG_MIN);
-  CHECK (ulong, ULONG_MAX);
-  CHECK (size, SIZE_MAX);
-  CHECK (ptrdiff, PTRDIFF_MAX);
-  CHECK (ptrdiff, PTRDIFF_MIN);
-
-#if SCM_SIZEOF_LONG_LONG != 0
-  CHECK (long_long, 0LL);
-  CHECK (ulong_long, 0ULL);
-  CHECK (long_long, -1LL);
-  CHECK (long_long, LLONG_MAX);
-  CHECK (long_long, LLONG_MIN);
-  CHECK (ulong_long, ULLONG_MAX);
 #endif
+
+int
+scm_is_complex (SCM val)
+{
+  return scm_is_true (scm_complex_p (val));
 }
 
-#undef CHECK
+double
+scm_c_real_part (SCM z)
+{
+  if (SCM_COMPLEXP (z))
+    return SCM_COMPLEX_REAL (z);
+  else
+    {
+      /* Use the scm_real_part to get proper error checking and
+        dispatching.
+      */
+      return scm_to_double (scm_real_part (z)); 
+    }
+}
 
-#define CHECK \
-        scm_internal_catch (SCM_BOOL_T, check_body, &data, check_handler, &data); \
-        if (!SCM_FALSEP (data)) abort();
+double
+scm_c_imag_part (SCM z)
+{
+  if (SCM_COMPLEXP (z))
+    return SCM_COMPLEX_IMAG (z);
+  else
+    {
+      /* Use the scm_imag_part to get proper error checking and
+        dispatching.  The result will almost always be 0.0, but not
+        always.
+      */
+      return scm_to_double (scm_imag_part (z));
+    }
+}
 
-static SCM
-check_body (void *data)
+double
+scm_c_magnitude (SCM z)
 {
-  SCM num = *(SCM *) data;
-  scm_num2ulong (num, 1, NULL);
-  
-  return SCM_UNSPECIFIED;
+  return scm_to_double (scm_magnitude (z));
 }
 
-static SCM
-check_handler (void *data, SCM tag, SCM throw_args)
+double
+scm_c_angle (SCM z)
 {
-  SCM *num = (SCM *) data;
-  *num = SCM_BOOL_F;
+  return scm_to_double (scm_angle (z));
+}
 
-  return SCM_UNSPECIFIED;
+int
+scm_is_number (SCM z)
+{
+  return scm_is_true (scm_number_p (z));
 }
-  
-SCM_DEFINE (scm_sys_check_number_conversions, "%check-number-conversions", 0, 0, 0, 
-            (void),
-           "Number conversion sanity checking.")
-#define FUNC_NAME s_scm_sys_check_number_conversions
-{
-  SCM data = SCM_MAKINUM (-1);
-  CHECK;
-  data = scm_int2num (INT_MIN);
-  CHECK;
-  data = scm_ulong2num (ULONG_MAX);
-  data = scm_difference (SCM_INUM0, data);
-  CHECK;
-  data = scm_ulong2num (ULONG_MAX);
-  data = scm_sum (SCM_MAKINUM (1), data); data = scm_difference (SCM_INUM0, data);
-  CHECK;
-  data = scm_int2num (-10000); data = scm_product (data, data); data = scm_product (data, data);
-  CHECK;
-
-  return SCM_UNSPECIFIED;
+
+
+/* In the following functions we dispatch to the real-arg funcs like log()
+   when we know the arg is real, instead of just handing everything to
+   clog() for instance.  This is in case clog() doesn't optimize for a
+   real-only case, and because we have to test SCM_COMPLEXP anyway so may as
+   well use it to go straight to the applicable C func.  */
+
+SCM_DEFINE (scm_log, "log", 1, 0, 0,
+            (SCM z),
+           "Return the natural logarithm of @var{z}.")
+#define FUNC_NAME s_scm_log
+{
+  if (SCM_COMPLEXP (z))
+    {
+#if HAVE_COMPLEX_DOUBLE && HAVE_CLOG && defined (SCM_COMPLEX_VALUE)
+      return scm_from_complex_double (clog (SCM_COMPLEX_VALUE (z)));
+#else
+      double re = SCM_COMPLEX_REAL (z);
+      double im = SCM_COMPLEX_IMAG (z);
+      return scm_c_make_rectangular (log (hypot (re, im)),
+                                     atan2 (im, re));
+#endif
+    }
+  else
+    {
+      /* ENHANCE-ME: When z is a bignum the logarithm will fit a double
+         although the value itself overflows.  */
+      double re = scm_to_double (z);
+      double l = log (fabs (re));
+      if (re >= 0.0)
+        return scm_from_double (l);
+      else
+        return scm_c_make_rectangular (l, M_PI);
+    }
+}
+#undef FUNC_NAME
+
+
+SCM_DEFINE (scm_log10, "log10", 1, 0, 0,
+            (SCM z),
+           "Return the base 10 logarithm of @var{z}.")
+#define FUNC_NAME s_scm_log10
+{
+  if (SCM_COMPLEXP (z))
+    {
+      /* Mingw has clog() but not clog10().  (Maybe it'd be worth using
+         clog() and a multiply by M_LOG10E, rather than the fallback
+         log10+hypot+atan2.)  */
+#if HAVE_COMPLEX_DOUBLE && HAVE_CLOG10 && defined (SCM_COMPLEX_VALUE)
+      return scm_from_complex_double (clog10 (SCM_COMPLEX_VALUE (z)));
+#else
+      double re = SCM_COMPLEX_REAL (z);
+      double im = SCM_COMPLEX_IMAG (z);
+      return scm_c_make_rectangular (log10 (hypot (re, im)),
+                                     M_LOG10E * atan2 (im, re));
+#endif
+    }
+  else
+    {
+      /* ENHANCE-ME: When z is a bignum the logarithm will fit a double
+         although the value itself overflows.  */
+      double re = scm_to_double (z);
+      double l = log10 (fabs (re));
+      if (re >= 0.0)
+        return scm_from_double (l);
+      else
+        return scm_c_make_rectangular (l, M_LOG10E * M_PI);
+    }
+}
+#undef FUNC_NAME
+
+
+SCM_DEFINE (scm_exp, "exp", 1, 0, 0,
+            (SCM z),
+           "Return @math{e} to the power of @var{z}, where @math{e} is the\n"
+           "base of natural logarithms (2.71828@dots{}).")
+#define FUNC_NAME s_scm_exp
+{
+  if (SCM_COMPLEXP (z))
+    {
+#if HAVE_COMPLEX_DOUBLE && HAVE_CEXP && defined (SCM_COMPLEX_VALUE)
+      return scm_from_complex_double (cexp (SCM_COMPLEX_VALUE (z)));
+#else
+      return scm_c_make_polar (exp (SCM_COMPLEX_REAL (z)),
+                               SCM_COMPLEX_IMAG (z));
+#endif
+    }
+  else
+    {
+      /* When z is a negative bignum the conversion to double overflows,
+         giving -infinity, but that's ok, the exp is still 0.0.  */
+      return scm_from_double (exp (scm_to_double (z)));
+    }
 }
 #undef FUNC_NAME
 
+
+SCM_DEFINE (scm_sqrt, "sqrt", 1, 0, 0,
+            (SCM x),
+           "Return the square root of @var{z}.  Of the two possible roots\n"
+           "(positive and negative), the one with the a positive real part\n"
+           "is returned, or if that's zero then a positive imaginary part.\n"
+           "Thus,\n"
+           "\n"
+           "@example\n"
+           "(sqrt 9.0)       @result{} 3.0\n"
+           "(sqrt -9.0)      @result{} 0.0+3.0i\n"
+           "(sqrt 1.0+1.0i)  @result{} 1.09868411346781+0.455089860562227i\n"
+           "(sqrt -1.0-1.0i) @result{} 0.455089860562227-1.09868411346781i\n"
+           "@end example")
+#define FUNC_NAME s_scm_sqrt
+{
+  if (SCM_COMPLEXP (x))
+    {
+#if HAVE_COMPLEX_DOUBLE && HAVE_USABLE_CSQRT && defined (SCM_COMPLEX_VALUE)
+      return scm_from_complex_double (csqrt (SCM_COMPLEX_VALUE (x)));
+#else
+      double re = SCM_COMPLEX_REAL (x);
+      double im = SCM_COMPLEX_IMAG (x);
+      return scm_c_make_polar (sqrt (hypot (re, im)),
+                               0.5 * atan2 (im, re));
 #endif
+    }
+  else
+    {
+      double xx = scm_to_double (x);
+      if (xx < 0)
+        return scm_c_make_rectangular (0.0, sqrt (-xx));
+      else
+        return scm_from_double (sqrt (xx));
+    }
+}
+#undef FUNC_NAME
+
+
 
 void
 scm_init_numbers ()
 {
-  abs_most_negative_fixnum = scm_i_long2big (- SCM_MOST_NEGATIVE_FIXNUM);
-  scm_permanent_object (abs_most_negative_fixnum);
+  int i;
 
   mpz_init_set_si (z_negative_one, -1);
 
@@ -5590,39 +6157,27 @@ scm_init_numbers ()
    * using these values, remember the two rules of program optimization:
    * 1st Rule:  Don't do it.  2nd Rule (experts only):  Don't do it yet. */
   scm_c_define ("most-positive-fixnum",
-               SCM_MAKINUM (SCM_MOST_POSITIVE_FIXNUM));
+               SCM_I_MAKINUM (SCM_MOST_POSITIVE_FIXNUM));
   scm_c_define ("most-negative-fixnum",
-               SCM_MAKINUM (SCM_MOST_NEGATIVE_FIXNUM));
+               SCM_I_MAKINUM (SCM_MOST_NEGATIVE_FIXNUM));
 
   scm_add_feature ("complex");
   scm_add_feature ("inexact");
-  scm_flo0 = scm_make_real (0.0);
-#ifdef DBL_DIG
-  scm_dblprec = (DBL_DIG > 20) ? 20 : DBL_DIG;
-#else
-  {                            /* determine floating point precision */
-    double f = 0.1;
-    double fsum = 1.0 + f;
-    while (fsum != 1.0)
-      {
-       if (++scm_dblprec > 20)
-         fsum = 1.0;
-       else
-         {
-           f /= 10.0;
-           fsum = f + 1.0;
-         }
-      }
-    scm_dblprec = scm_dblprec - 1;
-  }
-#endif /* DBL_DIG */
+  scm_flo0 = scm_from_double (0.0);
 
-#ifdef GUILE_DEBUG
-  check_sanity ();
+  /* determine floating point precision */
+  for (i=2; i <= SCM_MAX_DBL_RADIX; ++i)
+    {
+      init_dblprec(&scm_dblprec[i-2],i);
+      init_fx_radix(fx_per_radix[i-2],i);
+    }
+#ifdef DBL_DIG
+  /* hard code precision for base 10 if the preprocessor tells us to... */
+      scm_dblprec[10-2] = (DBL_DIG > 20) ? 20 : DBL_DIG;
 #endif
 
-  exactly_one_half = scm_permanent_object (scm_divide (SCM_MAKINUM (1),
-                                                      SCM_MAKINUM (2)));
+  exactly_one_half = scm_permanent_object (scm_divide (SCM_I_MAKINUM (1),
+                                                      SCM_I_MAKINUM (2)));
 #include "libguile/numbers.x"
 }