* gc.h, gc.c (scm_gc_sweep): Issue deprecation warning when
[bpt/guile.git] / libguile / unif.c
index 3eeaa85..4e9c572 100644 (file)
@@ -1,4 +1,4 @@
-/*     Copyright (C) 1995,1996,1997,1998, 2000 Free Software Foundation, Inc.
+/* Copyright (C) 1995,1996,1997,1998,2000,2001 Free Software Foundation, Inc.
  * 
  * This program is free software; you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
@@ -39,8 +39,6 @@
  * whether to permit this exception to apply to your modifications.
  * If you do not wish that, delete this exception notice.  */
 
-/* Software engineering face-lift by Greg J. Badros, 11-Dec-1999,
-   gjb@cs.washington.edu, http://www.cs.washington.edu/homes/gjb */
 
 /*
   This file has code for arrays in lots of variants (double, integer,
 \f
 
 #include <stdio.h>
-#include "_scm.h"
-#include "chars.h"
-#include "eval.h"
-#include "fports.h"
-#include "smob.h"
-#include "strop.h"
-#include "feature.h"
-#include "root.h"
-#include "strings.h"
-#include "vectors.h"
-
-#include "validate.h"
-#include "unif.h"
-#include "ramap.h"
+#include <errno.h>
+#include <string.h>
+
+#include "libguile/_scm.h"
+#include "libguile/chars.h"
+#include "libguile/eval.h"
+#include "libguile/fports.h"
+#include "libguile/smob.h"
+#include "libguile/strop.h"
+#include "libguile/feature.h"
+#include "libguile/root.h"
+#include "libguile/strings.h"
+#include "libguile/vectors.h"
+
+#include "libguile/validate.h"
+#include "libguile/unif.h"
+#include "libguile/ramap.h"
 
 #ifdef HAVE_UNISTD_H
 #include <unistd.h>
 #endif
 
+#ifdef HAVE_IO_H
+#include <io.h>
+#endif
+
 \f
 /* The set of uniform scm_vector types is:
  *  Vector of:          Called:
  * long long           llvect
  */
 
-long scm_tc16_array;
+scm_t_bits scm_tc16_array;
 
 /* return the size of an element in a uniform array or 0 if type not
    found.  */
-scm_sizet
+size_t
 scm_uniform_element_size (SCM obj)
 {
-  scm_sizet result;
+  size_t result;
 
   switch (SCM_TYP7 (obj))
     {
@@ -113,7 +118,7 @@ scm_uniform_element_size (SCM obj)
 
 #ifdef HAVE_LONG_LONGS
     case scm_tc7_llvect:
-      result = sizeof (long_long);
+      result = sizeof (long long);
       break;
 #endif 
 
@@ -153,23 +158,34 @@ singp (SCM obj)
 
 SCM 
 scm_make_uve (long k, SCM prot)
+#define FUNC_NAME "scm_make_uve"
 {
   SCM v;
   long i, type;
-  if (SCM_TRUE_P (prot))
+
+  if (SCM_EQ_P (prot, SCM_BOOL_T))
     {
-      i = sizeof (long) * ((k + SCM_LONG_BIT - 1) / SCM_LONG_BIT);
-      type = scm_tc7_bvect;
+      if (k > 0)
+       {
+         SCM_ASSERT_RANGE (1,
+                           scm_long2num (k), k <= SCM_BITVECTOR_MAX_LENGTH);
+         i = sizeof (long) * ((k + SCM_LONG_BIT - 1) / SCM_LONG_BIT);
+         v = scm_alloc_cell (SCM_MAKE_BITVECTOR_TAG (k), 
+                             (scm_t_bits) scm_gc_malloc (i, "vector"));
+       }
+      else
+       v = scm_alloc_cell (SCM_MAKE_BITVECTOR_TAG (0), 0);
+      return v;
     }
   else if (SCM_CHARP (prot) && (SCM_CHAR (prot) == '\0'))
     {
       i = sizeof (char) * k;
       type = scm_tc7_byvect;
-    }    
+    }
   else if (SCM_CHARP (prot))
     {
       i = sizeof (char) * k;
-      type = scm_tc7_string;
+      return scm_allocate_string (i);
     }
   else if (SCM_INUMP (prot))
     {
@@ -179,11 +195,11 @@ scm_make_uve (long k, SCM prot)
       else
        type = scm_tc7_ivect;
     }
-  else if (SCM_SYMBOLP (prot) && (1 == SCM_LENGTH (prot)))
+  else if (SCM_SYMBOLP (prot) && (1 == SCM_SYMBOL_LENGTH (prot)))
     {
       char s;
 
-      s = SCM_CHARS (prot)[0];
+      s = SCM_SYMBOL_CHARS (prot)[0];
       if (s == 's')
        {
          i = sizeof (short) * k;
@@ -192,26 +208,25 @@ scm_make_uve (long k, SCM prot)
 #ifdef HAVE_LONG_LONGS
       else if (s == 'l')
        {
-         i = sizeof (long_long) * k;
+         i = sizeof (long long) * k;
          type = scm_tc7_llvect;
        }
 #endif
       else
        {
-         return scm_make_vector (SCM_MAKINUM (k), SCM_UNDEFINED);
+         return scm_c_make_vector (k, SCM_UNDEFINED);
        }
     }
-  else
-  if (SCM_IMP (prot) || !SCM_INEXP (prot))
+  else if (!SCM_INEXACTP (prot))
     /* Huge non-unif vectors are NOT supported. */
     /* no special scm_vector */
-    return scm_make_vector (SCM_MAKINUM (k), SCM_UNDEFINED);
+    return scm_c_make_vector (k, SCM_UNDEFINED);
   else if (singp (prot))
     {
       i = sizeof (float) * k;
       type = scm_tc7_fvect;
     }
-  else if (SCM_CPLXP (prot))
+  else if (SCM_COMPLEXP (prot))
     {
       i = 2 * sizeof (double) * k;
       type = scm_tc7_cvect;
@@ -222,49 +237,51 @@ scm_make_uve (long k, SCM prot)
       type = scm_tc7_dvect;
     }
 
-  SCM_NEWCELL (v);
-  SCM_DEFER_INTS;
-  SCM_SETCHARS (v, (char *) scm_must_malloc (i ? i : 1, "vector"));
-  SCM_SETLENGTH (v, (k < SCM_LENGTH_MAX ? k : SCM_LENGTH_MAX), type);
-  SCM_ALLOW_INTS;
-  return v;
+  SCM_ASSERT_RANGE (1, scm_long2num (k), k <= SCM_UVECTOR_MAX_LENGTH);
+
+  return scm_alloc_cell (SCM_MAKE_UVECTOR_TAG (k, type),
+                        (scm_t_bits) scm_gc_malloc (i, "vector"));
 }
+#undef FUNC_NAME
+
 
 SCM_DEFINE (scm_uniform_vector_length, "uniform-vector-length", 1, 0, 0, 
-           (SCM v),
-           "Returns the number of elements in @var{uve}.")
+           (SCM v),
+           "Return the number of elements in @var{uve}.")
 #define FUNC_NAME s_scm_uniform_vector_length
 {
   SCM_ASRTGO (SCM_NIMP (v), badarg1);
-  switch SCM_TYP7
-    (v)
+  switch SCM_TYP7 (v)
     {
     default:
-    badarg1:SCM_WTA(1,v);
-    case scm_tc7_bvect:
+    badarg1:SCM_WRONG_TYPE_ARG (1, v);
+    case scm_tc7_vector:
+    case scm_tc7_wvect:
+      return SCM_MAKINUM (SCM_VECTOR_LENGTH (v));
     case scm_tc7_string:
+      return SCM_MAKINUM (SCM_STRING_LENGTH (v));
+    case scm_tc7_bvect:
+      return SCM_MAKINUM (SCM_BITVECTOR_LENGTH (v));
     case scm_tc7_byvect:
     case scm_tc7_uvect:
     case scm_tc7_ivect:
     case scm_tc7_fvect:
     case scm_tc7_dvect:
     case scm_tc7_cvect:
-    case scm_tc7_vector:
-    case scm_tc7_wvect:
     case scm_tc7_svect:
 #ifdef HAVE_LONG_LONGS
     case scm_tc7_llvect:
 #endif
-      return SCM_MAKINUM (SCM_LENGTH (v));
+      return SCM_MAKINUM (SCM_UVECTOR_LENGTH (v));
     }
 }
 #undef FUNC_NAME
 
 SCM_DEFINE (scm_array_p, "array?", 1, 1, 0,
            (SCM v, SCM prot),
-           "Returns @code{#t} if the @var{obj} is an array, and @code{#f} if not.\n\n"
-           "The @var{prototype} argument is used with uniform arrays and is described\n"
-           "elsewhere.")
+           "Return @code{#t} if the @var{obj} is an array, and @code{#f} if\n"
+           "not.  The @var{prototype} argument is used with uniform arrays\n"
+           "and is described elsewhere.")
 #define FUNC_NAME s_scm_array_p
 {
   int nprot;
@@ -293,7 +310,7 @@ SCM_DEFINE (scm_array_p, "array?", 1, 1, 0,
       switch (SCM_TYP7 (v))
        {
        case scm_tc7_bvect:
-         protp = (SCM_TRUE_P (prot));
+         protp = (SCM_EQ_P (prot, SCM_BOOL_T));
        case scm_tc7_string:
          protp = SCM_CHARP(prot) && (SCM_CHAR (prot) != '\0');
        case scm_tc7_byvect:
@@ -305,20 +322,20 @@ SCM_DEFINE (scm_array_p, "array?", 1, 1, 0,
           
        case scm_tc7_svect:
          protp = SCM_SYMBOLP (prot)
-           && (1 == SCM_LENGTH (prot))
-           && ('s' == SCM_CHARS (prot)[0]);
+           && (1 == SCM_SYMBOL_LENGTH (prot))
+           && ('s' == SCM_SYMBOL_CHARS (prot)[0]);
 #ifdef HAVE_LONG_LONGS
        case scm_tc7_llvect:
          protp = SCM_SYMBOLP (prot)
-           && (1 == SCM_LENGTH (prot))
-           && ('s' == SCM_CHARS (prot)[0]);
+           && (1 == SCM_SYMBOL_LENGTH (prot))
+           && ('s' == SCM_SYMBOL_CHARS (prot)[0]);
 #endif
        case scm_tc7_fvect:
          protp = singp (prot);
        case scm_tc7_dvect:
          protp = SCM_REALP(prot);
        case scm_tc7_cvect:
-         protp = SCM_CPLXP(prot);
+         protp = SCM_COMPLEXP(prot);
        case scm_tc7_vector:
        case scm_tc7_wvect:
          protp = SCM_NULLP(prot);
@@ -334,8 +351,8 @@ SCM_DEFINE (scm_array_p, "array?", 1, 1, 0,
 
 SCM_DEFINE (scm_array_rank, "array-rank", 1, 0, 0, 
            (SCM ra),
-           "Returns the number of dimensions of @var{obj}.  If @var{obj} is not an\n"
-           "array, @code{0} is returned.")
+           "Return the number of dimensions of @var{obj}.  If @var{obj} is\n"
+           "not an array, @code{0} is returned.")
 #define FUNC_NAME s_scm_array_rank
 {
   if (SCM_IMP (ra))
@@ -371,14 +388,14 @@ SCM_DEFINE (scm_array_dimensions, "array-dimensions", 1, 0, 0,
            (SCM ra),
            "@code{Array-dimensions} is similar to @code{array-shape} but replaces\n"
            "elements with a @code{0} minimum with one greater than the maximum. So:\n"
-           "@example\n"
+           "@lisp\n"
            "(array-dimensions (make-array 'foo '(-1 3) 5)) @result{} ((-1 3) 5)\n"
-           "@end example")
+           "@end lisp")
 #define FUNC_NAME s_scm_array_dimensions
 {
   SCM res = SCM_EOL;
-  scm_sizet k;
-  scm_array_dim *s;
+  size_t k;
+  scm_t_array_dim *s;
   if (SCM_IMP (ra))
     return SCM_BOOL_F;
   switch (SCM_TYP7 (ra))
@@ -399,65 +416,113 @@ SCM_DEFINE (scm_array_dimensions, "array-dimensions", 1, 0, 0,
 #ifdef HAVE_LONG_LONGS
     case scm_tc7_llvect:
 #endif
-      return scm_cons (SCM_MAKINUM (SCM_LENGTH (ra)), SCM_EOL);
+      return scm_cons (scm_uniform_vector_length (ra), SCM_EOL);
     case scm_tc7_smob:
       if (!SCM_ARRAYP (ra))
        return SCM_BOOL_F;
       k = SCM_ARRAY_NDIM (ra);
       s = SCM_ARRAY_DIMS (ra);
       while (k--)
-       res = scm_cons (s[k].lbnd ? scm_cons2 (SCM_MAKINUM (s[k].lbnd), SCM_MAKINUM (s[k].ubnd), SCM_EOL) :
-                       SCM_MAKINUM (1 + (s[k].ubnd))
-                       , res);
+       res = scm_cons (s[k].lbnd
+                       ? scm_cons2 (SCM_MAKINUM (s[k].lbnd),
+                                    SCM_MAKINUM (s[k].ubnd),
+                                    SCM_EOL)
+                       : SCM_MAKINUM (1 + s[k].ubnd),
+                       res);
       return res;
     }
 }
 #undef FUNC_NAME
 
 
+SCM_DEFINE (scm_shared_array_root, "shared-array-root", 1, 0, 0, 
+           (SCM ra),
+           "Return the root vector of a shared array.")
+#define FUNC_NAME s_scm_shared_array_root
+{
+  SCM_ASSERT (SCM_ARRAYP (ra), ra, SCM_ARG1, FUNC_NAME);
+  return SCM_ARRAY_V (ra);
+}
+#undef FUNC_NAME
+
+
+SCM_DEFINE (scm_shared_array_offset, "shared-array-offset", 1, 0, 0, 
+           (SCM ra),
+           "Return the root vector index of the first element in the array.")
+#define FUNC_NAME s_scm_shared_array_offset
+{
+  SCM_ASSERT (SCM_ARRAYP (ra), ra, SCM_ARG1, FUNC_NAME);
+  return SCM_MAKINUM (SCM_ARRAY_BASE (ra));
+}
+#undef FUNC_NAME
+
+
+SCM_DEFINE (scm_shared_array_increments, "shared-array-increments", 1, 0, 0, 
+           (SCM ra),
+           "For each dimension, return the distance between elements in the root vector.")
+#define FUNC_NAME s_scm_shared_array_increments
+{
+  SCM res = SCM_EOL;
+  size_t k;
+  scm_t_array_dim *s;
+  SCM_ASSERT (SCM_ARRAYP (ra), ra, SCM_ARG1, FUNC_NAME);
+  k = SCM_ARRAY_NDIM (ra);
+  s = SCM_ARRAY_DIMS (ra);
+  while (k--)
+    res = scm_cons (SCM_MAKINUM (s[k].inc), res);
+  return res;
+}
+#undef FUNC_NAME
+
+
 static char s_bad_ind[] = "Bad scm_array index";
 
 
 long 
 scm_aind (SCM ra, SCM args, const char *what)
+#define FUNC_NAME what
 {
   SCM ind;
   register long j;
-  register scm_sizet pos = SCM_ARRAY_BASE (ra);
-  register scm_sizet k = SCM_ARRAY_NDIM (ra);
-  scm_array_dim *s = SCM_ARRAY_DIMS (ra);
+  register unsigned long pos = SCM_ARRAY_BASE (ra);
+  register unsigned long k = SCM_ARRAY_NDIM (ra);
+  scm_t_array_dim *s = SCM_ARRAY_DIMS (ra);
   if (SCM_INUMP (args))
     {
-      SCM_ASSERT (1 == k, scm_makfrom0str (what), SCM_WNA, NULL);
+      if (k != 1)
+       scm_error_num_args_subr (what);
       return pos + (SCM_INUM (args) - s->lbnd) * (s->inc);
     }
-  while (k && SCM_NIMP (args))
+  while (k && !SCM_NULLP (args))
     {
       ind = SCM_CAR (args);
       args = SCM_CDR (args);
-      SCM_ASSERT (SCM_INUMP (ind), ind, s_bad_ind, what);
+      if (!SCM_INUMP (ind))
+       scm_misc_error (what, s_bad_ind, SCM_EOL);
       j = SCM_INUM (ind);
-      SCM_ASSERT (j >= (s->lbnd) && j <= (s->ubnd), ind, SCM_OUTOFRANGE, what);
+      if (j < s->lbnd || j > s->ubnd)
+       scm_out_of_range (what, ind);
       pos += (j - s->lbnd) * (s->inc);
       k--;
       s++;
     }
-  SCM_ASSERT (0 == k && SCM_NULLP (args), scm_makfrom0str (what), SCM_WNA,
-             NULL);
+  if (k != 0 || !SCM_NULLP (args))
+    scm_error_num_args_subr (what);
+
   return pos;
 }
-
+#undef FUNC_NAME
 
 
 SCM 
 scm_make_ra (int ndim)
 {
   SCM ra;
-  SCM_NEWCELL (ra);
   SCM_DEFER_INTS;
-  SCM_NEWSMOB(ra, ((long) ndim << 17) + scm_tc16_array,
-              scm_must_malloc ((long) (sizeof (scm_array) + ndim * sizeof (scm_array_dim)),
-                              "array"));
+  SCM_NEWSMOB(ra, ((scm_t_bits) ndim << 17) + scm_tc16_array,
+              scm_gc_malloc ((sizeof (scm_t_array) +
+                             ndim * sizeof (scm_t_array_dim)),
+                            "array"));
   SCM_ARRAY_V (ra) = scm_nullvect;
   SCM_ALLOW_INTS;
   return ra;
@@ -470,34 +535,36 @@ static char s_bad_spec[] = "Bad scm_array dimension";
 SCM 
 scm_shap2ra (SCM args, const char *what)
 {
-  scm_array_dim *s;
+  scm_t_array_dim *s;
   SCM ra, spec, sp;
   int ndim = scm_ilength (args);
-  SCM_ASSERT (0 <= ndim, args, s_bad_spec, what);
+  if (ndim < 0)
+    scm_misc_error (what, s_bad_spec, SCM_EOL);
+
   ra = scm_make_ra (ndim);
   SCM_ARRAY_BASE (ra) = 0;
   s = SCM_ARRAY_DIMS (ra);
-  for (; SCM_NIMP (args); s++, args = SCM_CDR (args))
+  for (; !SCM_NULLP (args); s++, args = SCM_CDR (args))
     {
       spec = SCM_CAR (args);
-      if (SCM_IMP (spec))
-
+      if (SCM_INUMP (spec))
        {
-         SCM_ASSERT (SCM_INUMP (spec) && SCM_INUM (spec) >= 0, spec,
-                     s_bad_spec, what);
+         if (SCM_INUM (spec) < 0)
+           scm_misc_error (what, s_bad_spec, SCM_EOL);
          s->lbnd = 0;
          s->ubnd = SCM_INUM (spec) - 1;
          s->inc = 1;
        }
       else
        {
-         SCM_ASSERT (SCM_CONSP (spec) && SCM_INUMP (SCM_CAR (spec)), spec,
-                     s_bad_spec, what);
+         if (!SCM_CONSP (spec) || !SCM_INUMP (SCM_CAR (spec)))
+           scm_misc_error (what, s_bad_spec, SCM_EOL);
          s->lbnd = SCM_INUM (SCM_CAR (spec));
          sp = SCM_CDR (spec);
-         SCM_ASSERT (SCM_CONSP (sp)
-                     && SCM_INUMP (SCM_CAR (sp)) && SCM_NULLP (SCM_CDR (sp)),
-                     spec, s_bad_spec, what);
+         if (!SCM_CONSP (sp) 
+             || !SCM_INUMP (SCM_CAR (sp))
+             || !SCM_NULLP (SCM_CDR (sp)))
+           scm_misc_error (what, s_bad_spec, SCM_EOL);
          s->ubnd = SCM_INUM (SCM_CAR (sp));
          s->inc = 1;
        }
@@ -506,86 +573,54 @@ scm_shap2ra (SCM args, const char *what)
 }
 
 SCM_DEFINE (scm_dimensions_to_uniform_array, "dimensions->uniform-array", 2, 1, 0,
-           (SCM dims, SCM prot, SCM fill),
-           "@deffnx primitive make-uniform-vector length prototype [fill]\n"
-           "Creates and returns a uniform array or vector of type corresponding to\n"
-           "@var{prototype} with dimensions @var{dims} or length @var{length}.  If\n"
-           "@var{fill} is supplied, it's used to fill the array, otherwise \n"
-           "@var{prototype} is used.")
+           (SCM dims, SCM prot, SCM fill),
+           "@deffnx {Scheme Procedure} make-uniform-vector length prototype [fill]\n"
+           "Create and return a uniform array or vector of type\n"
+           "corresponding to @var{prototype} with dimensions @var{dims} or\n"
+           "length @var{length}.  If @var{fill} is supplied, it's used to\n"
+           "fill the array, otherwise @var{prototype} is used.")
 #define FUNC_NAME s_scm_dimensions_to_uniform_array
 {
-  scm_sizet k, vlen = 1;
-  long rlen = 1;
-  scm_array_dim *s;
+  size_t k;
+  unsigned long rlen = 1;
+  scm_t_array_dim *s;
   SCM ra;
+  
   if (SCM_INUMP (dims))
     {
-      if (SCM_INUM (dims) < SCM_LENGTH_MAX)
-       {
-         SCM answer = scm_make_uve (SCM_INUM (dims), prot);
-
-         if (!SCM_UNBNDP (fill))
-           scm_array_fill_x (answer, fill);
-         else if (SCM_SYMBOLP (prot))
-           scm_array_fill_x (answer, SCM_MAKINUM (0));
-         else
-           scm_array_fill_x (answer, prot);
-         return answer;
-       }
-    else
-      dims = scm_cons (dims, SCM_EOL);
+      SCM answer = scm_make_uve (SCM_INUM (dims), prot);
+      if (!SCM_UNBNDP (fill))
+       scm_array_fill_x (answer, fill);
+      else if (SCM_SYMBOLP (prot))
+       scm_array_fill_x (answer, SCM_MAKINUM (0));
+      else
+       scm_array_fill_x (answer, prot);
+      return answer;
     }
+  
   SCM_ASSERT (SCM_NULLP (dims) || SCM_CONSP (dims),
               dims, SCM_ARG1, FUNC_NAME);
   ra = scm_shap2ra (dims, FUNC_NAME);
-  SCM_SETOR_CAR (ra, SCM_ARRAY_CONTIGUOUS);
+  SCM_SET_ARRAY_CONTIGUOUS_FLAG (ra);
   s = SCM_ARRAY_DIMS (ra);
   k = SCM_ARRAY_NDIM (ra);
+
   while (k--)
     {
-      s[k].inc = (rlen > 0 ? rlen : 0);
+      s[k].inc = rlen;
+      SCM_ASSERT_RANGE (1, dims, s[k].lbnd <= s[k].ubnd);
       rlen = (s[k].ubnd - s[k].lbnd + 1) * s[k].inc;
-      vlen *= (s[k].ubnd - s[k].lbnd + 1);
-    }
-  if (rlen < SCM_LENGTH_MAX)
-    SCM_ARRAY_V (ra) = scm_make_uve ((rlen > 0 ? rlen : 0L), prot);
-  else
-    {
-      scm_sizet bit;
-      switch (SCM_TYP7 (scm_make_uve (0L, prot)))
-       {
-       default:
-         bit = SCM_LONG_BIT;
-         break;
-       case scm_tc7_bvect:
-         bit = 1;
-         break;
-       case scm_tc7_string:
-         bit = SCM_CHAR_BIT;
-         break;
-       case scm_tc7_fvect:
-         bit = sizeof (float) * SCM_CHAR_BIT / sizeof (char);
-         break;
-       case scm_tc7_dvect:
-         bit = sizeof (double) * SCM_CHAR_BIT / sizeof (char);
-         break;
-       case scm_tc7_cvect:
-         bit = 2 * sizeof (double) * SCM_CHAR_BIT / sizeof (char);
-         break;
-       }
-      SCM_ARRAY_BASE (ra) = (SCM_LONG_BIT + bit - 1) / bit;
-      rlen += SCM_ARRAY_BASE (ra);
-      SCM_ARRAY_V (ra) = scm_make_uve (rlen, prot);
-      *((long *) SCM_VELTS (SCM_ARRAY_V (ra))) = rlen;
     }
+
+  SCM_ARRAY_V (ra) = scm_make_uve (rlen, prot);
+
   if (!SCM_UNBNDP (fill))
-    {
-      scm_array_fill_x (ra, fill);
-    }
+    scm_array_fill_x (ra, fill);
   else if (SCM_SYMBOLP (prot))
     scm_array_fill_x (ra, SCM_MAKINUM (0));
   else
     scm_array_fill_x (ra, prot);
+
   if (1 == SCM_ARRAY_NDIM (ra) && 0 == SCM_ARRAY_BASE (ra))
     if (s->ubnd < s->lbnd || (0 == s->lbnd && 1 == s->inc))
       return SCM_ARRAY_V (ra);
@@ -597,7 +632,7 @@ SCM_DEFINE (scm_dimensions_to_uniform_array, "dimensions->uniform-array", 2, 1,
 void 
 scm_ra_set_contp (SCM ra)
 {
-  scm_sizet k = SCM_ARRAY_NDIM (ra);
+  size_t k = SCM_ARRAY_NDIM (ra);
   if (k)
     {
       long inc = SCM_ARRAY_DIMS (ra)[k - 1].inc;
@@ -605,14 +640,14 @@ scm_ra_set_contp (SCM ra)
        {
          if (inc != SCM_ARRAY_DIMS (ra)[k].inc)
            {
-             SCM_SETAND_CAR (ra, ~SCM_ARRAY_CONTIGUOUS);
+             SCM_CLR_ARRAY_CONTIGUOUS_FLAG (ra);
              return;
            }
          inc *= (SCM_ARRAY_DIMS (ra)[k].ubnd 
                  - SCM_ARRAY_DIMS (ra)[k].lbnd + 1);
        }
     }
-  SCM_SETOR_CAR (ra, SCM_ARRAY_CONTIGUOUS);
+  SCM_SET_ARRAY_CONTIGUOUS_FLAG (ra);
 }
 
 
@@ -623,7 +658,7 @@ SCM_DEFINE (scm_make_shared_array, "make-shared-array", 2, 0, 1,
            "the new array into coordinates in the old array.  A @var{mapper} must be\n"
            "linear, and its range must stay within the bounds of the old array, but\n"
            "it can be otherwise arbitrary.  A simple example:\n"
-           "@example\n"
+           "@lisp\n"
            "(define fred (make-array #f 8 8))\n"
            "(define freds-diagonal\n"
            "  (make-shared-array fred (lambda (i) (list i i)) 8))\n"
@@ -632,15 +667,17 @@ SCM_DEFINE (scm_make_shared_array, "make-shared-array", 2, 0, 1,
            "(define freds-center\n"
            "  (make-shared-array fred (lambda (i j) (list (+ 3 i) (+ 3 j))) 2 2))\n"
            "(array-ref freds-center 0 0) @result{} foo\n"
-           "@end example")
+           "@end lisp")
 #define FUNC_NAME s_scm_make_shared_array
 {
   SCM ra;
   SCM inds, indptr;
   SCM imap;
-  scm_sizet i, k;
+  size_t k, i;
   long old_min, new_min, old_max, new_max;
-  scm_array_dim *s;
+  scm_t_array_dim *s;
+
+  SCM_VALIDATE_REST_ARGUMENT (dims);
   SCM_VALIDATE_ARRAY (1,oldra);
   SCM_VALIDATE_PROC (2,mapfunc);
   ra = scm_shap2ra (dims, FUNC_NAME);
@@ -662,7 +699,7 @@ SCM_DEFINE (scm_make_shared_array, "make-shared-array", 2, 0, 1,
     {
       SCM_ARRAY_V (ra) = oldra;
       old_min = 0;
-      old_max = (long) SCM_LENGTH (oldra) - 1;
+      old_max = SCM_INUM (scm_uniform_vector_length (oldra)) - 1;
     }
   inds = SCM_EOL;
   s = SCM_ARRAY_DIMS (ra);
@@ -678,16 +715,16 @@ SCM_DEFINE (scm_make_shared_array, "make-shared-array", 2, 0, 1,
          return ra;
        }
     }
-  imap = scm_apply (mapfunc, scm_reverse (inds), SCM_EOL);
+  imap = scm_apply_0 (mapfunc, scm_reverse (inds));
   if (SCM_ARRAYP (oldra))
-      i = (scm_sizet) scm_aind (oldra, imap, FUNC_NAME);
+      i = (size_t) scm_aind (oldra, imap, FUNC_NAME);
   else
     {
       if (SCM_NINUMP (imap))
 
        {
-         SCM_ASSERT (1 == scm_ilength (imap) && SCM_INUMP (SCM_CAR (imap)),
-                 imap, s_bad_ind, FUNC_NAME);
+         if (scm_ilength (imap) != 1 || !SCM_INUMP (SCM_CAR (imap)))
+           SCM_MISC_ERROR (s_bad_ind, SCM_EOL);
          imap = SCM_CAR (imap);
        }
       i = SCM_INUM (imap);
@@ -700,17 +737,16 @@ SCM_DEFINE (scm_make_shared_array, "make-shared-array", 2, 0, 1,
       if (s[k].ubnd > s[k].lbnd)
        {
          SCM_SETCAR (indptr, SCM_MAKINUM (SCM_INUM (SCM_CAR (indptr)) + 1));
-         imap = scm_apply (mapfunc, scm_reverse (inds), SCM_EOL);
+         imap = scm_apply_0 (mapfunc, scm_reverse (inds));
          if (SCM_ARRAYP (oldra))
 
              s[k].inc = scm_aind (oldra, imap, FUNC_NAME) - i;
          else
            {
              if (SCM_NINUMP (imap))
-
                {
-                 SCM_ASSERT (1 == scm_ilength (imap) && SCM_INUMP (SCM_CAR (imap)),
-                              imap, s_bad_ind, FUNC_NAME);
+                 if (scm_ilength (imap) != 1 || !SCM_INUMP (SCM_CAR (imap)))
+                   SCM_MISC_ERROR (s_bad_ind, SCM_EOL);
                  imap = SCM_CAR (imap);
                }
              s[k].inc = (long) SCM_INUM (imap) - i;
@@ -725,13 +761,14 @@ SCM_DEFINE (scm_make_shared_array, "make-shared-array", 2, 0, 1,
        s[k].inc = new_max - new_min + 1;       /* contiguous by default */
       indptr = SCM_CDR (indptr);
     }
-  SCM_ASSERT (old_min <= new_min && old_max >= new_max, SCM_UNDEFINED,
-         "mapping out of range", FUNC_NAME);
+  if (old_min > new_min || old_max < new_max)
+    SCM_MISC_ERROR ("mapping out of range", SCM_EOL);
   if (1 == SCM_ARRAY_NDIM (ra) && 0 == SCM_ARRAY_BASE (ra))
     {
-      if (1 == s->inc && 0 == s->lbnd
-         && SCM_LENGTH (SCM_ARRAY_V (ra)) == 1 + s->ubnd)
-       return SCM_ARRAY_V (ra);
+      SCM v = SCM_ARRAY_V (ra);
+      unsigned long int length = SCM_INUM (scm_uniform_vector_length (v));
+      if (1 == s->inc && 0 == s->lbnd && length == 1 + s->ubnd)
+       return v;
       if (s->ubnd < s->lbnd)
        return scm_make_uve (0L, scm_array_prototype (ra));
     }
@@ -742,39 +779,39 @@ SCM_DEFINE (scm_make_shared_array, "make-shared-array", 2, 0, 1,
 
 
 /* args are RA . DIMS */
-SCM_DEFINE (scm_transpose_array, "transpose-array", 0, 0, 1, 
-           (SCM args),
-           "Returns an array sharing contents with @var{array}, but with dimensions\n"
-           "arranged in a different order.  There must be one @var{dim} argument for\n"
-           "each dimension of @var{array}.  @var{dim0}, @var{dim1}, @dots{} should\n"
-           "be integers between 0 and the rank of the array to be returned.  Each\n"
-           "integer in that range must appear at least once in the argument list.\n\n"
-           "The values of @var{dim0}, @var{dim1}, @dots{} correspond to dimensions\n"
-           "in the array to be returned, their positions in the argument list to\n"
-           "dimensions of @var{array}.  Several @var{dim}s may have the same value,\n"
-           "in which case the returned array will have smaller rank than\n"
-           "@var{array}.\n\n"
-           "examples:\n"
-           "@example\n"
+SCM_DEFINE (scm_transpose_array, "transpose-array", 1, 0, 1, 
+           (SCM ra, SCM args),
+           "Return an array sharing contents with @var{array}, but with\n"
+           "dimensions arranged in a different order.  There must be one\n"
+           "@var{dim} argument for each dimension of @var{array}.\n"
+           "@var{dim0}, @var{dim1}, @dots{} should be integers between 0\n"
+           "and the rank of the array to be returned.  Each integer in that\n"
+           "range must appear at least once in the argument list.\n"
+           "\n"
+           "The values of @var{dim0}, @var{dim1}, @dots{} correspond to\n"
+           "dimensions in the array to be returned, their positions in the\n"
+           "argument list to dimensions of @var{array}.  Several @var{dim}s\n"
+           "may have the same value, in which case the returned array will\n"
+           "have smaller rank than @var{array}.\n"
+           "\n"
+           "@lisp\n"
            "(transpose-array '#2((a b) (c d)) 1 0) @result{} #2((a c) (b d))\n"
            "(transpose-array '#2((a b) (c d)) 0 0) @result{} #1(a d)\n"
            "(transpose-array '#3(((a b c) (d e f)) ((1 2 3) (4 5 6))) 1 1 0) @result{}\n"
            "                #2((a 4) (b 5) (c 6))\n"
-           "@end example")
+           "@end lisp")
 #define FUNC_NAME s_scm_transpose_array
 {
-  SCM ra, res, vargs, *ve = &vargs;
-  scm_array_dim *s, *r;
+  SCM res, vargs, *ve = &vargs;
+  scm_t_array_dim *s, *r;
   int ndim, i, k;
-  SCM_ASSERT (SCM_NNULLP (args), scm_makfrom0str (FUNC_NAME),
-             SCM_WNA, NULL);
-  ra = SCM_CAR (args);
+
+  SCM_VALIDATE_REST_ARGUMENT (args);
   SCM_ASSERT (SCM_NIMP (ra), ra, SCM_ARG1, FUNC_NAME);
-  args = SCM_CDR (args);
   switch (SCM_TYP7 (ra))
     {
     default:
-    badarg:SCM_WTA (1,ra);
+    badarg:SCM_WRONG_TYPE_ARG (1, ra);
     case scm_tc7_bvect:
     case scm_tc7_string:
     case scm_tc7_byvect:
@@ -787,27 +824,26 @@ SCM_DEFINE (scm_transpose_array, "transpose-array", 0, 0, 1,
 #ifdef HAVE_LONG_LONGS
     case scm_tc7_llvect:
 #endif
-      SCM_ASSERT (SCM_NIMP (args) && SCM_NULLP (SCM_CDR (args)),
-                 scm_makfrom0str (FUNC_NAME), SCM_WNA, NULL);
-      SCM_ASSERT (SCM_INUMP (SCM_CAR (args)), SCM_CAR (args), SCM_ARG2,
-                 FUNC_NAME);
-      SCM_ASSERT (SCM_EQ_P (SCM_INUM0, SCM_CAR (args)), SCM_CAR (args), SCM_OUTOFRANGE,
-                 FUNC_NAME);
+      if (SCM_NULLP (args) || !SCM_NULLP (SCM_CDR (args)))
+       SCM_WRONG_NUM_ARGS ();
+      SCM_VALIDATE_INUM (SCM_ARG2, SCM_CAR (args));
+      SCM_ASSERT_RANGE (SCM_ARG2, SCM_CAR (args), 
+                       SCM_EQ_P (SCM_INUM0, SCM_CAR (args)));
       return ra;
     case scm_tc7_smob:
       SCM_ASRTGO (SCM_ARRAYP (ra), badarg);
       vargs = scm_vector (args);
-      SCM_ASSERT (SCM_LENGTH (vargs) == SCM_ARRAY_NDIM (ra),
-                 scm_makfrom0str (FUNC_NAME), SCM_WNA, NULL);
-                 ve = SCM_VELTS (vargs);
+      if (SCM_VECTOR_LENGTH (vargs) != SCM_ARRAY_NDIM (ra))
+       SCM_WRONG_NUM_ARGS ();
+      ve = SCM_VELTS (vargs);
       ndim = 0;
       for (k = 0; k < SCM_ARRAY_NDIM (ra); k++)
        {
          SCM_ASSERT (SCM_INUMP (ve[k]), ve[k], (SCM_ARG2 + k),
                      FUNC_NAME);
          i = SCM_INUM (ve[k]);
-         SCM_ASSERT (i >= 0 && i < SCM_ARRAY_NDIM (ra), ve[k],
-                     SCM_OUTOFRANGE, FUNC_NAME);
+         if (i < 0 || i >= SCM_ARRAY_NDIM (ra))
+           scm_out_of_range (FUNC_NAME, ve[k]);
          if (ndim < i)
            ndim = i;
        }
@@ -844,7 +880,8 @@ SCM_DEFINE (scm_transpose_array, "transpose-array", 0, 0, 1,
              r->inc += s->inc;
            }
        }
-      SCM_ASSERT (ndim <= 0, args, "bad argument list", FUNC_NAME);
+      if (ndim > 0)
+       SCM_MISC_ERROR ("bad argument list", SCM_EOL);
       scm_ra_set_contp (res);
       return res;
     }
@@ -852,8 +889,8 @@ SCM_DEFINE (scm_transpose_array, "transpose-array", 0, 0, 1,
 #undef FUNC_NAME
 
 /* args are RA . AXES */
-SCM_DEFINE (scm_enclose_array, "enclose-array", 0, 0, 1, 
-           (SCM axes),
+SCM_DEFINE (scm_enclose_array, "enclose-array", 1, 0, 1, 
+           (SCM ra, SCM axes),
            "@var{dim0}, @var{dim1} @dots{} should be nonnegative integers less than\n"
            "the rank of @var{array}.  @var{enclose-array} returns an array\n"
            "resembling an array of shared arrays.  The dimensions of each shared\n"
@@ -866,31 +903,30 @@ SCM_DEFINE (scm_enclose_array, "enclose-array", 0, 0, 1,
            "@code{eq?}.  The value returned by @var{array-prototype} when given an\n"
            "enclosed array is unspecified.\n\n"
            "examples:\n"
-           "@example\n"
+           "@lisp\n"
            "(enclose-array '#3(((a b c) (d e f)) ((1 2 3) (4 5 6))) 1) @result{}\n"
            "   #<enclosed-array (#1(a d) #1(b e) #1(c f)) (#1(1 4) #1(2 5) #1(3 6))>\n\n"
            "(enclose-array '#3(((a b c) (d e f)) ((1 2 3) (4 5 6))) 1 0) @result{}\n"
            "   #<enclosed-array #2((a 1) (d 4)) #2((b 2) (e 5)) #2((c 3) (f 6))>\n"
-           "@end example")
+           "@end lisp")
 #define FUNC_NAME s_scm_enclose_array
 {
-  SCM axv, ra, res, ra_inr;
-  scm_array_dim vdim, *s = &vdim;
+  SCM axv, res, ra_inr;
+  scm_t_array_dim vdim, *s = &vdim;
   int ndim, j, k, ninr, noutr;
-  SCM_ASSERT (SCM_NIMP (axes), scm_makfrom0str (FUNC_NAME), SCM_WNA,
-             NULL);
-  ra = SCM_CAR (axes);
-  axes = SCM_CDR (axes);
+
+  SCM_VALIDATE_REST_ARGUMENT (axes);
   if (SCM_NULLP (axes))
       axes = scm_cons ((SCM_ARRAYP (ra) ? SCM_MAKINUM (SCM_ARRAY_NDIM (ra) - 1) : SCM_INUM0), SCM_EOL);
   ninr = scm_ilength (axes);
+  if (ninr < 0)
+    SCM_WRONG_NUM_ARGS ();
   ra_inr = scm_make_ra (ninr);
   SCM_ASRTGO (SCM_NIMP (ra), badarg1);
-  switch SCM_TYP7
-    (ra)
+  switch SCM_TYP7 (ra)
     {
     default:
-    badarg1:SCM_WTA (1,ra);
+    badarg1:SCM_WRONG_TYPE_ARG (1, ra);
     case scm_tc7_string:
     case scm_tc7_bvect:
     case scm_tc7_byvect:
@@ -906,7 +942,7 @@ SCM_DEFINE (scm_enclose_array, "enclose-array", 0, 0, 1,
     case scm_tc7_llvect:
 #endif
       s->lbnd = 0;
-      s->ubnd = SCM_LENGTH (ra) - 1;
+      s->ubnd = SCM_INUM (scm_uniform_vector_length (ra)) - 1;
       s->inc = 1;
       SCM_ARRAY_V (ra_inr) = ra;
       SCM_ARRAY_BASE (ra_inr) = 0;
@@ -921,24 +957,25 @@ SCM_DEFINE (scm_enclose_array, "enclose-array", 0, 0, 1,
       break;
     }
   noutr = ndim - ninr;
+  if (noutr < 0)
+    SCM_WRONG_NUM_ARGS ();
   axv = scm_make_string (SCM_MAKINUM (ndim), SCM_MAKE_CHAR (0));
-  SCM_ASSERT (0 <= noutr && 0 <= ninr, scm_makfrom0str (FUNC_NAME),
-             SCM_WNA, NULL);
   res = scm_make_ra (noutr);
   SCM_ARRAY_BASE (res) = SCM_ARRAY_BASE (ra_inr);
   SCM_ARRAY_V (res) = ra_inr;
   for (k = 0; k < ninr; k++, axes = SCM_CDR (axes))
     {
-      SCM_ASSERT (SCM_INUMP (SCM_CAR (axes)), SCM_CAR (axes), "bad axis", FUNC_NAME);
+      if (!SCM_INUMP (SCM_CAR (axes)))
+       SCM_MISC_ERROR ("bad axis", SCM_EOL);
       j = SCM_INUM (SCM_CAR (axes));
       SCM_ARRAY_DIMS (ra_inr)[k].lbnd = s[j].lbnd;
       SCM_ARRAY_DIMS (ra_inr)[k].ubnd = s[j].ubnd;
       SCM_ARRAY_DIMS (ra_inr)[k].inc = s[j].inc;
-      SCM_CHARS (axv)[j] = 1;
+      SCM_STRING_CHARS (axv)[j] = 1;
     }
   for (j = 0, k = 0; k < noutr; k++, j++)
     {
-      while (SCM_CHARS (axv)[j])
+      while (SCM_STRING_CHARS (axv)[j])
        j++;
       SCM_ARRAY_DIMS (res)[k].lbnd = s[j].lbnd;
       SCM_ARRAY_DIMS (res)[k].ubnd = s[j].ubnd;
@@ -952,20 +989,19 @@ SCM_DEFINE (scm_enclose_array, "enclose-array", 0, 0, 1,
 
 
 
-SCM_DEFINE (scm_array_in_bounds_p, "array-in-bounds?", 0, 0, 1, 
-           (SCM args),
-           "Returns @code{#t} if its arguments would be acceptable to array-ref.")
+SCM_DEFINE (scm_array_in_bounds_p, "array-in-bounds?", 1, 0, 1, 
+           (SCM v, SCM args),
+           "Return @code{#t} if its arguments would be acceptable to\n"
+           "@code{array-ref}.")
 #define FUNC_NAME s_scm_array_in_bounds_p
 {
-  SCM v, ind = SCM_EOL;
+  SCM ind = SCM_EOL;
   long pos = 0;
-  register scm_sizet k;
+  register size_t k;
   register long j;
-  scm_array_dim *s;
-  SCM_ASSERT (SCM_NIMP (args), scm_makfrom0str (FUNC_NAME),
-             SCM_WNA, NULL);
-  v = SCM_CAR (args);
-  args = SCM_CDR (args);
+  scm_t_array_dim *s;
+
+  SCM_VALIDATE_REST_ARGUMENT (args);
   SCM_ASRTGO (SCM_NIMP (v), badarg1);
   if (SCM_NIMP (args))
 
@@ -976,12 +1012,11 @@ SCM_DEFINE (scm_array_in_bounds_p, "array-in-bounds?", 0, 0, 1,
       pos = SCM_INUM (ind);
     }
 tail:
-  switch SCM_TYP7
-    (v)
+  switch SCM_TYP7 (v)
     {
     default:
-    badarg1:SCM_WTA (1,v);
-    wna: scm_wrong_num_args (scm_makfrom0str (FUNC_NAME));
+    badarg1:SCM_WRONG_TYPE_ARG (1, v);
+    wna: SCM_WRONG_NUM_ARGS ();
     case scm_tc7_smob:
       k = SCM_ARRAY_NDIM (v);
       s = SCM_ARRAY_DIMS (v);
@@ -1006,7 +1041,8 @@ tail:
            ind = SCM_CAR (args);
            args = SCM_CDR (args);
            s++;
-           SCM_ASSERT (SCM_INUMP (ind), ind, s_bad_ind, FUNC_NAME);
+           if (!SCM_INUMP (ind))
+             SCM_MISC_ERROR (s_bad_ind, SCM_EOL);
          }
       SCM_ASRTGO (0 == k, wna);
       v = SCM_ARRAY_V (v);
@@ -1025,8 +1061,11 @@ tail:
 #endif
     case scm_tc7_vector:
     case scm_tc7_wvect:
-      SCM_ASRTGO (SCM_NULLP (args) && SCM_INUMP (ind), wna);
-      return SCM_BOOL(pos >= 0 && pos < SCM_LENGTH (v));
+      {
+       unsigned long int length = SCM_INUM (scm_uniform_vector_length (v));
+       SCM_ASRTGO (SCM_NULLP (args) && SCM_INUMP (ind), wna);
+       return SCM_BOOL(pos >= 0 && pos < length);
+      }
     }
 }
 #undef FUNC_NAME
@@ -1037,7 +1076,9 @@ SCM_REGISTER_PROC(s_array_ref, "array-ref", 1, 0, 1, scm_uniform_vector_ref);
 
 SCM_DEFINE (scm_uniform_vector_ref, "uniform-vector-ref", 2, 0, 0,
            (SCM v, SCM args),
-           "Returns the element at the @code{(index1, index2)} element in @var{array}.")
+           "@deffnx {Scheme Procedure} array-ref v . args\n"
+           "Return the element at the @code{(index1, index2)} element in\n"
+           "@var{array}.")
 #define FUNC_NAME s_scm_uniform_vector_ref
 {
   long pos;
@@ -1054,8 +1095,8 @@ SCM_DEFINE (scm_uniform_vector_ref, "uniform-vector-ref", 2, 0, 0,
     }
   else
     {
+      unsigned long int length;
       if (SCM_NIMP (args))
-
        {
          SCM_ASSERT (SCM_CONSP (args) && SCM_INUMP (SCM_CAR (args)), args, SCM_ARG2, FUNC_NAME);
          pos = SCM_INUM (SCM_CAR (args));
@@ -1066,22 +1107,22 @@ SCM_DEFINE (scm_uniform_vector_ref, "uniform-vector-ref", 2, 0, 0,
           SCM_VALIDATE_INUM (2,args);
          pos = SCM_INUM (args);
        }
-      SCM_ASRTGO (pos >= 0 && pos < SCM_LENGTH (v), outrng);
+      length = SCM_INUM (scm_uniform_vector_length (v));
+      SCM_ASRTGO (pos >= 0 && pos < length, outrng);
     }
-  switch SCM_TYP7
-    (v)
+  switch SCM_TYP7 (v)
     {
     default:
       if (SCM_NULLP (args))
  return v;
     badarg:
-      SCM_WTA (1,v);
-      abort ();
+      SCM_WRONG_TYPE_ARG (1, v);
+      /* not reached */
 
     outrng:
       scm_out_of_range (FUNC_NAME, SCM_MAKINUM (pos));
     wna:
-      scm_wrong_num_args (SCM_FUNC_NAME);
+      SCM_WRONG_NUM_ARGS ();
     case scm_tc7_smob:
       {                                /* enclosed */
        int k = SCM_ARRAY_NDIM (v);
@@ -1102,19 +1143,19 @@ SCM_DEFINE (scm_uniform_vector_ref, "uniform-vector-ref", 2, 0, 0,
       else
        return SCM_BOOL_F;
     case scm_tc7_string:
-      return SCM_MAKE_CHAR (SCM_UCHARS (v)[pos]);
+      return SCM_MAKE_CHAR (SCM_STRING_UCHARS (v)[pos]);
     case scm_tc7_byvect:
-      return SCM_MAKINUM (((char *)SCM_CHARS (v))[pos]);
+      return SCM_MAKINUM (((char *) SCM_UVECTOR_BASE (v))[pos]);
   case scm_tc7_uvect:
-    return scm_ulong2num((unsigned long ) SCM_VELTS(v)[pos]);
+    return scm_ulong2num (((unsigned long *) SCM_VELTS (v))[pos]);
   case scm_tc7_ivect:
-    return scm_long2num((long) SCM_VELTS(v)[pos]);
+    return scm_long2num (((signed long *) SCM_VELTS (v))[pos]);
 
     case scm_tc7_svect:
       return SCM_MAKINUM (((short *) SCM_CELL_WORD_1 (v))[pos]);
 #ifdef HAVE_LONG_LONGS
     case scm_tc7_llvect:
-      return scm_long_long2num (((long_long *) SCM_CELL_WORD_1 (v))[pos]);
+      return scm_long_long2num (((long long *) SCM_CELL_WORD_1 (v))[pos]);
 #endif
 
     case scm_tc7_fvect:
@@ -1135,40 +1176,41 @@ SCM_DEFINE (scm_uniform_vector_ref, "uniform-vector-ref", 2, 0, 0,
    tries to recycle conses.  (Make *sure* you want them recycled.) */
 
 SCM 
-scm_cvref (SCM v, scm_sizet pos, SCM last)
+scm_cvref (SCM v, unsigned long pos, SCM last)
+#define FUNC_NAME "scm_cvref"
 {
   switch SCM_TYP7 (v)
     {
     default:
-      scm_wta (v, (char *) SCM_ARG1, "PROGRAMMING ERROR: scm_cvref");
+      SCM_WRONG_TYPE_ARG (SCM_ARG1, v);
     case scm_tc7_bvect:
       if (SCM_BITVEC_REF(v,pos))
        return SCM_BOOL_T;
       else
        return SCM_BOOL_F;
     case scm_tc7_string:
-      return SCM_MAKE_CHAR (SCM_UCHARS (v)[pos]);
+      return SCM_MAKE_CHAR (SCM_STRING_UCHARS (v)[pos]);
     case scm_tc7_byvect:
-      return SCM_MAKINUM (((char *)SCM_CHARS (v))[pos]);
+      return SCM_MAKINUM (((char *) SCM_UVECTOR_BASE (v))[pos]);
     case scm_tc7_uvect:
-      return scm_ulong2num((unsigned long) SCM_VELTS(v)[pos]);
+      return scm_ulong2num(((unsigned long *) SCM_VELTS (v))[pos]);
     case scm_tc7_ivect:
-      return scm_long2num((long) SCM_VELTS(v)[pos]);
+      return scm_long2num(((signed long *) SCM_VELTS (v))[pos]);
     case scm_tc7_svect:
       return SCM_MAKINUM (((short *) SCM_CELL_WORD_1 (v))[pos]);
 #ifdef HAVE_LONG_LONGS
     case scm_tc7_llvect:
-      return scm_long_long2num (((long_long *) SCM_CELL_WORD_1 (v))[pos]);
+      return scm_long_long2num (((long long *) SCM_CELL_WORD_1 (v))[pos]);
 #endif
     case scm_tc7_fvect:
-      if (SCM_NIMP (last) && last != scm_flo0 && SCM_SLOPPY_REALP (last))
+      if (SCM_NIMP (last) && !SCM_EQ_P (last, scm_flo0) && SCM_SLOPPY_REALP (last))
        {
          SCM_REAL_VALUE (last) = ((float *) SCM_CELL_WORD_1 (v))[pos];
          return last;
        }
       return scm_make_real (((float *) SCM_CELL_WORD_1 (v))[pos]);
     case scm_tc7_dvect:
-      if (SCM_NIMP (last) && last != scm_flo0 && SCM_SLOPPY_REALP (last))
+      if (SCM_NIMP (last) && !SCM_EQ_P (last, scm_flo0) && SCM_SLOPPY_REALP (last))
        {
          SCM_REAL_VALUE (last) = ((double *) SCM_CELL_WORD_1 (v))[pos];
          return last;
@@ -1202,6 +1244,8 @@ scm_cvref (SCM v, scm_sizet pos, SCM last)
       }
     }
 }
+#undef FUNC_NAME
+
 
 SCM_REGISTER_PROC(s_uniform_array_set1_x, "uniform-array-set1!", 3, 0, 0, scm_array_set_x);
 
@@ -1210,11 +1254,13 @@ SCM_REGISTER_PROC(s_uniform_array_set1_x, "uniform-array-set1!", 3, 0, 0, scm_ar
    PROC is used (and it's called from C too).  */
 SCM_DEFINE (scm_array_set_x, "array-set!", 2, 0, 1, 
            (SCM v, SCM obj, SCM args),
-           "Sets the element at the @code{(index1, index2)} element in @var{array} to\n"
+           "@deffnx {Scheme Procedure} uniform-array-set1! v obj args\n"
+           "Set the element at the @code{(index1, index2)} element in @var{array} to\n"
            "@var{new-value}.  The value returned by array-set! is unspecified.")
 #define FUNC_NAME s_scm_array_set_x           
 {
   long pos = 0;
+
   SCM_ASRTGO (SCM_NIMP (v), badarg1);
   if (SCM_ARRAYP (v))
     {
@@ -1223,10 +1269,10 @@ SCM_DEFINE (scm_array_set_x, "array-set!", 2, 0, 1,
     }
   else
     {
-      if (SCM_NIMP (args))
+      unsigned long int length;
+      if (SCM_CONSP (args))
        {
-         SCM_ASSERT (SCM_CONSP(args) && SCM_INUMP (SCM_CAR (args)), args,
-                SCM_ARG3, FUNC_NAME);
+         SCM_ASSERT (SCM_INUMP (SCM_CAR (args)), args, SCM_ARG3, FUNC_NAME);
          SCM_ASRTGO (SCM_NULLP (SCM_CDR (args)), wna);
          pos = SCM_INUM (SCM_CAR (args));
        }
@@ -1234,64 +1280,73 @@ SCM_DEFINE (scm_array_set_x, "array-set!", 2, 0, 1,
        {
           SCM_VALIDATE_INUM_COPY (3,args,pos);
        }
-      SCM_ASRTGO (pos >= 0 && pos < SCM_LENGTH (v), outrng);
+      length = SCM_INUM (scm_uniform_vector_length (v));
+      SCM_ASRTGO (pos >= 0 && pos < length, outrng);
     }
   switch (SCM_TYP7 (v))
     {
     default: badarg1:
-      SCM_WTA (1,v);
-      abort ();
+      SCM_WRONG_TYPE_ARG (1, v);
+      /* not reached */
     outrng:
       scm_out_of_range (FUNC_NAME, SCM_MAKINUM (pos));
     wna:
-      scm_wrong_num_args (SCM_FUNC_NAME);
+      SCM_WRONG_NUM_ARGS ();
     case scm_tc7_smob:         /* enclosed */
       goto badarg1;
     case scm_tc7_bvect:
       if (SCM_FALSEP (obj))
        SCM_BITVEC_CLR(v,pos);
-      else if (SCM_TRUE_P (obj))
+      else if (SCM_EQ_P (obj, SCM_BOOL_T))
        SCM_BITVEC_SET(v,pos);
       else
-      badobj:SCM_WTA (2,obj);
+       badobj:SCM_WRONG_TYPE_ARG (2, obj);
       break;
     case scm_tc7_string:
       SCM_ASRTGO (SCM_CHARP (obj), badobj);
-      SCM_UCHARS (v)[pos] = SCM_CHAR (obj);
+      SCM_STRING_UCHARS (v)[pos] = SCM_CHAR (obj);
       break;
     case scm_tc7_byvect:
       if (SCM_CHARP (obj))
        obj = SCM_MAKINUM ((char) SCM_CHAR (obj));
       SCM_ASRTGO (SCM_INUMP (obj), badobj);
-      ((char *)SCM_CHARS (v))[pos] = SCM_INUM (obj);
+      ((char *) SCM_UVECTOR_BASE (v))[pos] = SCM_INUM (obj);
       break;
     case scm_tc7_uvect:
-      SCM_VELTS(v)[pos] = SCM_PACK (scm_num2ulong(obj, (char *)SCM_ARG2, FUNC_NAME));
+      ((unsigned long *) SCM_UVECTOR_BASE (v))[pos] 
+       = scm_num2ulong (obj, SCM_ARG2, FUNC_NAME);
       break;
     case scm_tc7_ivect:
-      SCM_VELTS(v)[pos] = SCM_PACK (scm_num2long(obj, (char *)SCM_ARG2, FUNC_NAME));
+      ((long *) SCM_UVECTOR_BASE (v))[pos] 
+       = scm_num2long (obj, SCM_ARG2, FUNC_NAME);
       break;
     case scm_tc7_svect:
       SCM_ASRTGO (SCM_INUMP (obj), badobj);
-      ((short *) SCM_CELL_WORD_1 (v))[pos] = SCM_INUM (obj);
+      ((short *) SCM_UVECTOR_BASE (v))[pos] = SCM_INUM (obj);
       break;
 #ifdef HAVE_LONG_LONGS
     case scm_tc7_llvect:
-      ((long_long *) SCM_CELL_WORD_1 (v))[pos] = scm_num2long_long (obj, (char *)SCM_ARG2, FUNC_NAME);
+      ((long long *) SCM_UVECTOR_BASE (v))[pos]
+       = scm_num2long_long (obj, SCM_ARG2, FUNC_NAME);
       break;
 #endif
-
-
     case scm_tc7_fvect:
-      ((float *) SCM_CELL_WORD_1 (v))[pos] = (float) scm_num2dbl (obj, FUNC_NAME);
+      ((float *) SCM_UVECTOR_BASE (v))[pos]
+       = (float) scm_num2dbl (obj, FUNC_NAME);
       break;
     case scm_tc7_dvect:
-      ((double *) SCM_CELL_WORD_1 (v))[pos] = scm_num2dbl (obj, FUNC_NAME);
+      ((double *) SCM_UVECTOR_BASE (v))[pos]
+       = scm_num2dbl (obj, FUNC_NAME);
       break;
     case scm_tc7_cvect:
-      SCM_ASRTGO (SCM_INEXP (obj), badobj);
-      ((double *) SCM_CELL_WORD_1 (v))[2 * pos] = SCM_REALPART (obj);
-      ((double *) SCM_CELL_WORD_1 (v))[2 * pos + 1] = SCM_CPLXP (obj) ? SCM_IMAG (obj) : 0.0;
+      SCM_ASRTGO (SCM_INEXACTP (obj), badobj);
+      if (SCM_REALP (obj)) {
+       ((double *) SCM_UVECTOR_BASE (v))[2 * pos] = SCM_REAL_VALUE (obj);
+       ((double *) SCM_UVECTOR_BASE (v))[2 * pos + 1] = 0.0;
+      } else {
+       ((double *) SCM_UVECTOR_BASE (v))[2 * pos] = SCM_COMPLEX_REAL (obj);
+       ((double *) SCM_UVECTOR_BASE (v))[2 * pos + 1] = SCM_COMPLEX_IMAG (obj);
+      }
       break;
     case scm_tc7_vector:
     case scm_tc7_wvect:
@@ -1308,7 +1363,6 @@ SCM_DEFINE (scm_array_set_x, "array-set!", 2, 0, 1,
                     wouldn't have contiguous elements.  */
 SCM_DEFINE (scm_array_contents, "array-contents", 1, 1, 0,
            (SCM ra, SCM strict),
-           "@deffnx primitive array-contents array strict\n"
            "If @var{array} may be @dfn{unrolled} into a one dimensional shared array\n"
            "without changing their order (last subscript changing fastest), then\n"
            "@code{array-contents} returns that shared array, otherwise it returns\n"
@@ -1344,7 +1398,7 @@ SCM_DEFINE (scm_array_contents, "array-contents", 1, 1, 0,
       return ra;
     case scm_tc7_smob:
       {
-       scm_sizet k, ndim = SCM_ARRAY_NDIM (ra), len = 1;
+       size_t k, ndim = SCM_ARRAY_NDIM (ra), len = 1;
        if (!SCM_ARRAYP (ra) || !SCM_ARRAY_CONTP (ra))
          return SCM_BOOL_F;
        for (k = 0; k < ndim; k++)
@@ -1355,14 +1409,20 @@ SCM_DEFINE (scm_array_contents, "array-contents", 1, 1, 0,
              return SCM_BOOL_F;
            if (scm_tc7_bvect == SCM_TYP7 (SCM_ARRAY_V (ra)))
              {
-               if (len != SCM_LENGTH (SCM_ARRAY_V (ra)) ||
+               if (len != SCM_BITVECTOR_LENGTH (SCM_ARRAY_V (ra)) ||
                    SCM_ARRAY_BASE (ra) % SCM_LONG_BIT ||
                    len % SCM_LONG_BIT)
                  return SCM_BOOL_F;
              }
          }
-       if ((len == SCM_LENGTH (SCM_ARRAY_V (ra))) && 0 == SCM_ARRAY_BASE (ra) && SCM_ARRAY_DIMS (ra)->inc)
-         return SCM_ARRAY_V (ra);
+
+       {
+         SCM v = SCM_ARRAY_V (ra);
+         unsigned long int length = SCM_INUM (scm_uniform_vector_length (v));
+         if ((len == length) && 0 == SCM_ARRAY_BASE (ra) && SCM_ARRAY_DIMS (ra)->inc)
+           return v;
+       }
+
        sra = scm_make_ra (1);
        SCM_ARRAY_DIMS (sra)->lbnd = 0;
        SCM_ARRAY_DIMS (sra)->ubnd = len - 1;
@@ -1381,15 +1441,15 @@ scm_ra2contig (SCM ra, int copy)
 {
   SCM ret;
   long inc = 1;
-  scm_sizet k, len = 1;
+  size_t k, len = 1;
   for (k = SCM_ARRAY_NDIM (ra); k--;)
     len *= SCM_ARRAY_DIMS (ra)[k].ubnd - SCM_ARRAY_DIMS (ra)[k].lbnd + 1;
   k = SCM_ARRAY_NDIM (ra);
   if (SCM_ARRAY_CONTP (ra) && ((0 == k) || (1 == SCM_ARRAY_DIMS (ra)[k - 1].inc)))
     {
-      if (scm_tc7_bvect != SCM_TYP7 (ra))
+      if (scm_tc7_bvect != SCM_TYP7 (SCM_ARRAY_V (ra)))
        return ra;
-      if ((len == SCM_LENGTH (SCM_ARRAY_V (ra)) &&
+      if ((len == SCM_BITVECTOR_LENGTH (SCM_ARRAY_V (ra)) &&
           0 == SCM_ARRAY_BASE (ra) % SCM_LONG_BIT &&
           0 == len % SCM_LONG_BIT))
        return ra;
@@ -1403,7 +1463,7 @@ scm_ra2contig (SCM ra, int copy)
       SCM_ARRAY_DIMS (ret)[k].inc = inc;
       inc *= SCM_ARRAY_DIMS (ra)[k].ubnd - SCM_ARRAY_DIMS (ra)[k].lbnd + 1;
     }
-  SCM_ARRAY_V (ret) = scm_make_uve ((inc - 1), scm_array_prototype (ra));
+  SCM_ARRAY_V (ret) = scm_make_uve (inc, scm_array_prototype (ra));
   if (copy)
     scm_array_copy_x (ra, ret);
   return ret;
@@ -1413,11 +1473,11 @@ scm_ra2contig (SCM ra, int copy)
 
 SCM_DEFINE (scm_uniform_array_read_x, "uniform-array-read!", 1, 3, 0,
            (SCM ra, SCM port_or_fd, SCM start, SCM end),
-           "@deffnx primitive uniform-vector-read! uve [port-or-fdes] [start] [end]\n"
-           "Attempts to read all elements of @var{ura}, in lexicographic order, as\n"
+           "@deffnx {Scheme Procedure} uniform-vector-read! uve [port-or-fdes] [start] [end]\n"
+           "Attempt to read all elements of @var{ura}, in lexicographic order, as\n"
            "binary objects from @var{port-or-fdes}.\n"
-           "If an end of file is encountered during\n"
-           "uniform-array-read! the objects up to that point only are put into @var{ura}\n"
+           "If an end of file is encountered,\n"
+           "the objects up to that point are put into @var{ura}\n"
            "(starting at the beginning) and the remainder of the array is\n"
            "unchanged.\n\n"
            "The optional arguments @var{start} and @var{end} allow\n"
@@ -1433,6 +1493,7 @@ SCM_DEFINE (scm_uniform_array_read_x, "uniform-array-read!", 1, 3, 0,
   long cstart = 0;
   long cend;
   long offset = 0;
+  char *base;
 
   SCM_ASRTGO (SCM_NIMP (v), badarg1);
   if (SCM_UNBNDP (port_or_fd))
@@ -1441,13 +1502,15 @@ SCM_DEFINE (scm_uniform_array_read_x, "uniform-array-read!", 1, 3, 0,
     SCM_ASSERT (SCM_INUMP (port_or_fd)
                || (SCM_OPINPORTP (port_or_fd)),
                port_or_fd, SCM_ARG2, FUNC_NAME);
-  vlen = SCM_LENGTH (v);
+  vlen = (SCM_TYP7 (v) == scm_tc7_smob
+         ? 0
+         : SCM_INUM (scm_uniform_vector_length (v)));
 
 loop:
   switch SCM_TYP7 (v)
     {
     default:
-    badarg1:SCM_WTA (SCM_ARG1,v);
+    badarg1:SCM_WRONG_TYPE_ARG (SCM_ARG1, v);
     case scm_tc7_smob:
       SCM_ASRTGO (SCM_ARRAYP (v), badarg1);
       cra = scm_ra2contig (ra, 0);
@@ -1457,35 +1520,48 @@ loop:
       v = SCM_ARRAY_V (cra);
       goto loop;
     case scm_tc7_string:
-    case scm_tc7_byvect:
+      base = SCM_STRING_CHARS (v);
       sz = sizeof (char);
       break;
     case scm_tc7_bvect:
+      base = (char *) SCM_BITVECTOR_BASE (v);
       vlen = (vlen + SCM_LONG_BIT - 1) / SCM_LONG_BIT;
       cstart /= SCM_LONG_BIT;
+      sz = sizeof (long);
+      break;
+    case scm_tc7_byvect:
+      base = (char *) SCM_UVECTOR_BASE (v);
+      sz = sizeof (char);
+      break;
     case scm_tc7_uvect:
     case scm_tc7_ivect:
+      base = (char *) SCM_UVECTOR_BASE (v);
       sz = sizeof (long);
       break;
     case scm_tc7_svect:
+      base = (char *) SCM_UVECTOR_BASE (v);
       sz = sizeof (short);
       break;
 #ifdef HAVE_LONG_LONGS
     case scm_tc7_llvect:
-      sz = sizeof (long_long);
+      base = (char *) SCM_UVECTOR_BASE (v);
+      sz = sizeof (long long);
       break;
 #endif
     case scm_tc7_fvect:
+      base = (char *) SCM_UVECTOR_BASE (v);
       sz = sizeof (float);
       break;
     case scm_tc7_dvect:
+      base = (char *) SCM_UVECTOR_BASE (v);
       sz = sizeof (double);
       break;
     case scm_tc7_cvect:
+      base = (char *) SCM_UVECTOR_BASE (v);
       sz = 2 * sizeof (double);
       break;
     }
-  
+
   cend = vlen;
   if (!SCM_UNBNDP (start))
     {
@@ -1508,9 +1584,9 @@ loop:
 
   if (SCM_NIMP (port_or_fd))
     {
-      scm_port *pt = SCM_PTAB_ENTRY (port_or_fd);
+      scm_t_port *pt = SCM_PTAB_ENTRY (port_or_fd);
       int remaining = (cend - offset) * sz;
-      char *dest = SCM_CHARS (v) + (cstart + offset) * sz;
+      char *dest = base + (cstart + offset) * sz;
 
       if (pt->rw_active == SCM_PORT_WRITE)
        scm_flush (port_or_fd);
@@ -1548,15 +1624,15 @@ loop:
   else /* file descriptor.  */
     {
       SCM_SYSCALL (ans = read (SCM_INUM (port_or_fd),
-                              SCM_CHARS (v) + (cstart + offset) * sz,
-                              (scm_sizet) (sz * (cend - offset))));
+                              base + (cstart + offset) * sz,
+                              (sz * (cend - offset))));
       if (ans == -1)
        SCM_SYSERROR;
     }
   if (SCM_TYP7 (v) == scm_tc7_bvect)
     ans *= SCM_LONG_BIT;
 
-  if (v != ra && cra != ra)
+  if (!SCM_EQ_P (v, ra) && !SCM_EQ_P (cra, ra))
     scm_array_copy_x (cra, ra);
 
   return SCM_MAKINUM (ans);
@@ -1565,13 +1641,13 @@ loop:
 
 SCM_DEFINE (scm_uniform_array_write, "uniform-array-write", 1, 3, 0,
            (SCM v, SCM port_or_fd, SCM start, SCM end),
-           "@deffnx primitive uniform-vector-write uve [port-or-fdes] [start] [end]\n"
+           "@deffnx {Scheme Procedure} uniform-vector-write uve [port-or-fdes] [start] [end]\n"
            "Writes all elements of @var{ura} as binary objects to\n"
            "@var{port-or-fdes}.\n\n"
            "The optional arguments @var{start}\n"
            "and @var{end} allow\n"
            "a specified region of a vector (or linearized array) to be written.\n\n"
-           "The number of objects actually written is returned. \n"
+           "The number of objects actually written is returned.\n"
            "@var{port-or-fdes} may be\n"
            "omitted, in which case it defaults to the value returned by\n"
            "@code{(current-output-port)}.")
@@ -1581,6 +1657,7 @@ SCM_DEFINE (scm_uniform_array_write, "uniform-array-write", 1, 3, 0,
   long offset = 0;
   long cstart = 0;
   long cend;
+  char *base;
 
   port_or_fd = SCM_COERCE_OUTPORT (port_or_fd);
 
@@ -1591,47 +1668,62 @@ SCM_DEFINE (scm_uniform_array_write, "uniform-array-write", 1, 3, 0,
     SCM_ASSERT (SCM_INUMP (port_or_fd)
                || (SCM_OPOUTPORTP (port_or_fd)),
                port_or_fd, SCM_ARG2, FUNC_NAME);
-  vlen = SCM_LENGTH (v);
-
+  vlen = (SCM_TYP7 (v) == scm_tc7_smob
+         ? 0
+         : SCM_INUM (scm_uniform_vector_length (v)));
+  
 loop:
   switch SCM_TYP7 (v)
     {
     default:
-    badarg1:SCM_WTA (1, v);
+    badarg1:SCM_WRONG_TYPE_ARG (1, v);
     case scm_tc7_smob:
       SCM_ASRTGO (SCM_ARRAYP (v), badarg1);
       v = scm_ra2contig (v, 1);
       cstart = SCM_ARRAY_BASE (v);
-      vlen = SCM_ARRAY_DIMS (v)->inc
-       * (SCM_ARRAY_DIMS (v)->ubnd - SCM_ARRAY_DIMS (v)->lbnd + 1);
+      vlen = (SCM_ARRAY_DIMS (v)->inc
+             * (SCM_ARRAY_DIMS (v)->ubnd - SCM_ARRAY_DIMS (v)->lbnd + 1));
       v = SCM_ARRAY_V (v);
       goto loop;
     case scm_tc7_string:
-    case scm_tc7_byvect:
+      base = SCM_STRING_CHARS (v);
       sz = sizeof (char);
       break;
     case scm_tc7_bvect:
+      base = (char *) SCM_BITVECTOR_BASE (v);
       vlen = (vlen + SCM_LONG_BIT - 1) / SCM_LONG_BIT;
       cstart /= SCM_LONG_BIT;
+      sz = sizeof (long);
+      break;
+    case scm_tc7_byvect:
+      base = (char *) SCM_UVECTOR_BASE (v);
+      sz = sizeof (char);
+      break;
     case scm_tc7_uvect:
     case scm_tc7_ivect:
+      base = (char *) SCM_UVECTOR_BASE (v);
       sz = sizeof (long);
       break;
     case scm_tc7_svect:
+      base = (char *) SCM_UVECTOR_BASE (v);
       sz = sizeof (short);
       break;
 #ifdef HAVE_LONG_LONGS
     case scm_tc7_llvect:
-      sz = sizeof (long_long);
+      base = (char *) SCM_UVECTOR_BASE (v);
+      sz = sizeof (long long);
       break;
 #endif
     case scm_tc7_fvect:
+      base = (char *) SCM_UVECTOR_BASE (v);
       sz = sizeof (float);
       break;
     case scm_tc7_dvect:
+      base = (char *) SCM_UVECTOR_BASE (v);
       sz = sizeof (double);
       break;
     case scm_tc7_cvect:
+      base = (char *) SCM_UVECTOR_BASE (v);
       sz = 2 * sizeof (double);
       break;
     }
@@ -1658,7 +1750,7 @@ loop:
 
   if (SCM_NIMP (port_or_fd))
     {
-      char *source = SCM_CHARS (v) + (cstart + offset) * sz;
+      char *source = base + (cstart + offset) * sz;
 
       ans = cend - offset;
       scm_lfwrite (source, ans * sz, port_or_fd);
@@ -1666,8 +1758,8 @@ loop:
   else /* file descriptor.  */
     {
       SCM_SYSCALL (ans = write (SCM_INUM (port_or_fd),
-                               SCM_CHARS (v) + (cstart + offset) * sz,
-                               (scm_sizet) (sz * (cend - offset))));
+                               base + (cstart + offset) * sz,
+                               (sz * (cend - offset))));
       if (ans == -1)
        SCM_SYSERROR;
     }
@@ -1683,160 +1775,154 @@ static char cnt_tab[16] =
 {0, 1, 1, 2, 1, 2, 2, 3, 1, 2, 2, 3, 2, 3, 3, 4};
 
 SCM_DEFINE (scm_bit_count, "bit-count", 2, 0, 0,
-           (SCM item, SCM seq),
-           "Returns the number occurrences of @var{bool} in @var{bv}.")
+           (SCM b, SCM bitvector),
+           "Return the number of occurrences of the boolean @var{b} in\n"
+           "@var{bitvector}.")
 #define FUNC_NAME s_scm_bit_count
 {
-  long i;
-  register unsigned long cnt = 0;
-  register unsigned long w;
-  SCM_VALIDATE_INUM (2,seq);
-  switch SCM_TYP7 (seq)
-    {
-    default:
-      SCM_WTA (2,seq);
-    case scm_tc7_bvect:
-      if (0 == SCM_LENGTH (seq))
-       return SCM_INUM0;
-      i = (SCM_LENGTH (seq) - 1) / SCM_LONG_BIT;
-      w = SCM_UNPACK (SCM_VELTS (seq)[i]);
-      if (SCM_FALSEP (item))
-       w = ~w;
-      w <<= SCM_LONG_BIT - 1 - ((SCM_LENGTH (seq) - 1) % SCM_LONG_BIT);
-      while (!0)
-       {
-         for (; w; w >>= 4)
-           cnt += cnt_tab[w & 0x0f];
-         if (0 == i--)
-           return SCM_MAKINUM (cnt);
-         w = SCM_UNPACK (SCM_VELTS (seq)[i]);
-         if (SCM_FALSEP (item))
-           w = ~w;
+  SCM_VALIDATE_BOOL (1, b);
+  SCM_ASSERT (SCM_BITVECTOR_P (bitvector), bitvector, 2, FUNC_NAME);
+  if (SCM_BITVECTOR_LENGTH (bitvector) == 0) {
+    return SCM_INUM0;
+  } else {
+    unsigned long int count = 0;
+    unsigned long int i = (SCM_BITVECTOR_LENGTH (bitvector) - 1) / SCM_LONG_BIT;
+    unsigned long int w = SCM_UNPACK (SCM_VELTS (bitvector)[i]);
+    if (SCM_FALSEP (b)) {
+      w = ~w;
+    };
+    w <<= SCM_LONG_BIT - 1 - ((SCM_BITVECTOR_LENGTH (bitvector) - 1) % SCM_LONG_BIT);
+    while (1) {
+      while (w) {
+       count += cnt_tab[w & 0x0f];
+       w >>= 4;
+      }
+      if (i == 0) {
+       return SCM_MAKINUM (count);
+      } else {
+       --i;
+       w = SCM_UNPACK (SCM_VELTS (bitvector)[i]);
+       if (SCM_FALSEP (b)) {
+         w = ~w;
        }
+      }
     }
+  }
 }
 #undef FUNC_NAME
 
 
 SCM_DEFINE (scm_bit_position, "bit-position", 3, 0, 0,
            (SCM item, SCM v, SCM k),
-           "Returns the minimum index of an occurrence of @var{bool} in @var{bv}\n"
-           "which is at least @var{k}.  If no @var{bool} occurs within the specified\n"
-           "range @code{#f} is returned.")
+           "Return the minimum index of an occurrence of @var{bool} in\n"
+           "@var{bv} which is at least @var{k}.  If no @var{bool} occurs\n"
+           "within the specified range @code{#f} is returned.")
 #define FUNC_NAME s_scm_bit_position
 {
   long i, lenw, xbits, pos;
   register unsigned long w;
-  SCM_VALIDATE_NIM (2,v);
+
+  SCM_VALIDATE_BOOL (1, item);
+  SCM_ASSERT (SCM_BITVECTOR_P (v), v, SCM_ARG2, FUNC_NAME);
   SCM_VALIDATE_INUM_COPY (3,k,pos);
-  SCM_ASSERT ((pos <= SCM_LENGTH (v)) && (pos >= 0),
-         k, SCM_OUTOFRANGE, FUNC_NAME);
-  if (pos == SCM_LENGTH (v))
+  SCM_ASSERT_RANGE (3, k, (pos <= SCM_BITVECTOR_LENGTH (v)) && (pos >= 0));
+
+  if (pos == SCM_BITVECTOR_LENGTH (v))
     return SCM_BOOL_F;
-  switch SCM_TYP7 (v)
-    {
-    default:
-      SCM_WTA (2,v);
-    case scm_tc7_bvect:
-      if (0 == SCM_LENGTH (v))
-       return SCM_MAKINUM (-1L);
-      lenw = (SCM_LENGTH (v) - 1) / SCM_LONG_BIT;      /* watch for part words */
-      i = pos / SCM_LONG_BIT;
+
+  lenw = (SCM_BITVECTOR_LENGTH (v) - 1) / SCM_LONG_BIT;   /* watch for part words */
+  i = pos / SCM_LONG_BIT;
+  w = SCM_UNPACK (SCM_VELTS (v)[i]);
+  if (SCM_FALSEP (item))
+    w = ~w;
+  xbits = (pos % SCM_LONG_BIT);
+  pos -= xbits;
+  w = ((w >> xbits) << xbits);
+  xbits = SCM_LONG_BIT - 1 - (SCM_BITVECTOR_LENGTH (v) - 1) % SCM_LONG_BIT;
+  while (!0)
+    {
+      if (w && (i == lenw))
+       w = ((w << xbits) >> xbits);
+      if (w)
+       while (w)
+         switch (w & 0x0f)
+           {
+           default:
+             return SCM_MAKINUM (pos);
+           case 2:
+           case 6:
+           case 10:
+           case 14:
+             return SCM_MAKINUM (pos + 1);
+           case 4:
+           case 12:
+             return SCM_MAKINUM (pos + 2);
+           case 8:
+             return SCM_MAKINUM (pos + 3);
+           case 0:
+             pos += 4;
+             w >>= 4;
+           }
+      if (++i > lenw)
+       break;
+      pos += SCM_LONG_BIT;
       w = SCM_UNPACK (SCM_VELTS (v)[i]);
       if (SCM_FALSEP (item))
        w = ~w;
-      xbits = (pos % SCM_LONG_BIT);
-      pos -= xbits;
-      w = ((w >> xbits) << xbits);
-      xbits = SCM_LONG_BIT - 1 - (SCM_LENGTH (v) - 1) % SCM_LONG_BIT;
-      while (!0)
-       {
-         if (w && (i == lenw))
-           w = ((w << xbits) >> xbits);
-         if (w)
-           while (w)
-             switch (w & 0x0f)
-               {
-               default:
-                 return SCM_MAKINUM (pos);
-               case 2:
-               case 6:
-               case 10:
-               case 14:
-                 return SCM_MAKINUM (pos + 1);
-               case 4:
-               case 12:
-                 return SCM_MAKINUM (pos + 2);
-               case 8:
-                 return SCM_MAKINUM (pos + 3);
-               case 0:
-                 pos += 4;
-                 w >>= 4;
-               }
-         if (++i > lenw)
-           break;
-         pos += SCM_LONG_BIT;
-         w = SCM_UNPACK (SCM_VELTS (v)[i]);
-         if (SCM_FALSEP (item))
-           w = ~w;
-       }
-      return SCM_BOOL_F;
     }
+  return SCM_BOOL_F;
 }
 #undef FUNC_NAME
 
 
 SCM_DEFINE (scm_bit_set_star_x, "bit-set*!", 3, 0, 0,
-           (SCM v, SCM kv, SCM obj),
-           "If uve is a bit-vector @var{bv} and uve must be of the same length.  If\n"
-           "@var{bool} is @code{#t}, uve is OR'ed into @var{bv}; If @var{bool} is @code{#f}, the\n"
-           "inversion of uve is AND'ed into @var{bv}.\n\n"
-           "If uve is a unsigned integer vector all the elements of uve must be\n"
-           "between 0 and the @code{LENGTH} of @var{bv}.  The bits of @var{bv}\n"
-           "corresponding to the indexes in uve are set to @var{bool}.\n\n"
-           "The return value is unspecified.")
+           (SCM v, SCM kv, SCM obj),
+           "If uve is a bit-vector @var{bv} and uve must be of the same\n"
+           "length.  If @var{bool} is @code{#t}, uve is OR'ed into\n"
+           "@var{bv}; If @var{bool} is @code{#f}, the inversion of uve is\n"
+           "AND'ed into @var{bv}.\n\n"
+           "If uve is a unsigned long integer vector all the elements of uve\n"
+           "must be between 0 and the @code{length} of @var{bv}.  The bits\n"
+           "of @var{bv} corresponding to the indexes in uve are set to\n"
+           "@var{bool}.  The return value is unspecified.")
 #define FUNC_NAME s_scm_bit_set_star_x
 {
   register long i, k, vlen;
-  SCM_ASRTGO (SCM_NIMP (v), badarg1);
+  SCM_ASSERT (SCM_BITVECTOR_P (v), v, SCM_ARG1, FUNC_NAME);
   SCM_ASRTGO (SCM_NIMP (kv), badarg2);
   switch SCM_TYP7 (kv)
     {
     default:
-    badarg2:SCM_WTA (2,kv);
+    badarg2:SCM_WRONG_TYPE_ARG (2, kv);
     case scm_tc7_uvect:
-      switch SCM_TYP7 (v)
-       {
-       default:
-       badarg1:  SCM_WTA (1,v);
-       case scm_tc7_bvect:
-         vlen = SCM_LENGTH (v);
-         if (SCM_FALSEP (obj))
-           for (i = SCM_LENGTH (kv); i;)
-             {
-               k = SCM_UNPACK (SCM_VELTS (kv)[--i]);
-               SCM_ASSERT ((k < vlen), SCM_MAKINUM (k), SCM_OUTOFRANGE, FUNC_NAME);
-               SCM_BITVEC_CLR(v,k);
-             }
-         else if (SCM_TRUE_P (obj))
-           for (i = SCM_LENGTH (kv); i;)
-             {
-               k = SCM_UNPACK (SCM_VELTS (kv)[--i]);
-               SCM_ASSERT ((k < vlen), SCM_MAKINUM (k), SCM_OUTOFRANGE, FUNC_NAME);
-               SCM_BITVEC_SET(v,k);
-             }
-         else
-         badarg3:SCM_WTA (3,obj);
-       }
+      vlen = SCM_BITVECTOR_LENGTH (v);
+      if (SCM_FALSEP (obj))
+       for (i = SCM_UVECTOR_LENGTH (kv); i;)
+         {
+           k = SCM_UNPACK (SCM_VELTS (kv)[--i]);
+           if (k >= vlen)
+             scm_out_of_range (FUNC_NAME, SCM_MAKINUM (k));
+           SCM_BITVEC_CLR(v,k);
+         }
+      else if (SCM_EQ_P (obj, SCM_BOOL_T))
+       for (i = SCM_UVECTOR_LENGTH (kv); i;)
+         {
+           k = SCM_UNPACK (SCM_VELTS (kv)[--i]);
+           if (k >= vlen)
+             scm_out_of_range (FUNC_NAME, SCM_MAKINUM (k));
+           SCM_BITVEC_SET(v,k);
+         }
+      else
+       badarg3:SCM_WRONG_TYPE_ARG (3, obj);
       break;
     case scm_tc7_bvect:
-      SCM_ASRTGO (SCM_TYP7 (v) == scm_tc7_bvect && SCM_LENGTH (v) == SCM_LENGTH (kv), badarg1);
+      SCM_ASSERT (SCM_BITVECTOR_LENGTH (v) == SCM_BITVECTOR_LENGTH (kv), v, SCM_ARG1, FUNC_NAME);
       if (SCM_FALSEP (obj))
-       for (k = (SCM_LENGTH (v) + SCM_LONG_BIT - 1) / SCM_LONG_BIT; k--;)
-         SCM_UNPACK (SCM_VELTS (v)[k]) &= ~ SCM_UNPACK(SCM_VELTS (kv)[k]);
-      else if (SCM_TRUE_P (obj))
-       for (k = (SCM_LENGTH (v) + SCM_LONG_BIT - 1) / SCM_LONG_BIT; k--;)
-         SCM_UNPACK (SCM_VELTS (v)[k]) |= SCM_UNPACK (SCM_VELTS (kv)[k]);
+       for (k = (SCM_BITVECTOR_LENGTH (v) + SCM_LONG_BIT - 1) / SCM_LONG_BIT; k--;)
+         SCM_BITVECTOR_BASE (v) [k] &= ~SCM_BITVECTOR_BASE (kv) [k];
+      else if (SCM_EQ_P (obj, SCM_BOOL_T))
+       for (k = (SCM_BITVECTOR_LENGTH (v) + SCM_LONG_BIT - 1) / SCM_LONG_BIT; k--;)
+         SCM_BITVECTOR_BASE (v) [k] |= SCM_BITVECTOR_BASE (kv) [k];
       else
        goto badarg3;
       break;
@@ -1848,10 +1934,10 @@ SCM_DEFINE (scm_bit_set_star_x, "bit-set*!", 3, 0, 0,
 
 SCM_DEFINE (scm_bit_count_star, "bit-count*", 3, 0, 0,
            (SCM v, SCM kv, SCM obj),
-           "Returns\n"
-           "@example\n"
+           "Return\n"
+           "@lisp\n"
            "(bit-count (bit-set*! (if bool bv (bit-invert! bv)) uve #t) #t).\n"
-           "@end example\n"
+           "@end lisp\n"
            "@var{bv} is not modified.")
 #define FUNC_NAME s_scm_bit_count_star
 {
@@ -1859,51 +1945,45 @@ SCM_DEFINE (scm_bit_count_star, "bit-count*", 3, 0, 0,
   register unsigned long k;
   int fObj = 0;
   
-  SCM_ASRTGO (SCM_NIMP (v), badarg1);
+  SCM_ASSERT (SCM_BITVECTOR_P (v), v, SCM_ARG1, FUNC_NAME);
   SCM_ASRTGO (SCM_NIMP (kv), badarg2);
   switch SCM_TYP7 (kv)
     {
     default:
     badarg2:
-        SCM_WTA (2,kv);
+        SCM_WRONG_TYPE_ARG (2, kv);
     case scm_tc7_uvect:
-      switch SCM_TYP7
-       (v)
-       {
-       default:
-       badarg1:
-         SCM_WTA (1,v);
-       case scm_tc7_bvect:
-         vlen = SCM_LENGTH (v);
-         if (SCM_FALSEP (obj))
-           for (i = SCM_LENGTH (kv); i;)
-             {
-               k = SCM_UNPACK (SCM_VELTS (kv)[--i]);
-               SCM_ASSERT ((k < vlen), SCM_MAKINUM (k), SCM_OUTOFRANGE, FUNC_NAME);
-               if (!SCM_BITVEC_REF(v,k))
-                 count++;
-             }
-         else if (SCM_TRUE_P (obj))
-           for (i = SCM_LENGTH (kv); i;)
-             {
-               k = SCM_UNPACK (SCM_VELTS (kv)[--i]);
-               SCM_ASSERT ((k < vlen), SCM_MAKINUM (k), SCM_OUTOFRANGE, FUNC_NAME);
-               if (SCM_BITVEC_REF (v,k))
-                 count++;
-             }
-         else
-         badarg3:SCM_WTA (3,obj);
-       }
+      vlen = SCM_BITVECTOR_LENGTH (v);
+      if (SCM_FALSEP (obj))
+       for (i = SCM_UVECTOR_LENGTH (kv); i;)
+         {
+           k = SCM_UNPACK (SCM_VELTS (kv)[--i]);
+           if (k >= vlen)
+             scm_out_of_range (FUNC_NAME, SCM_MAKINUM (k));
+           if (!SCM_BITVEC_REF(v,k))
+             count++;
+         }
+      else if (SCM_EQ_P (obj, SCM_BOOL_T))
+       for (i = SCM_UVECTOR_LENGTH (kv); i;)
+         {
+           k = SCM_UNPACK (SCM_VELTS (kv)[--i]);
+           if (k >= vlen)
+             scm_out_of_range (FUNC_NAME, SCM_MAKINUM (k));
+           if (SCM_BITVEC_REF (v,k))
+             count++;
+         }
+      else
+       badarg3:SCM_WRONG_TYPE_ARG (3, obj);
       break;
     case scm_tc7_bvect:
-      SCM_ASRTGO (SCM_TYP7 (v) == scm_tc7_bvect && SCM_LENGTH (v) == SCM_LENGTH (kv), badarg1);
-      if (0 == SCM_LENGTH (v))
+      SCM_ASSERT (SCM_BITVECTOR_LENGTH (v) == SCM_BITVECTOR_LENGTH (kv), v, SCM_ARG1, FUNC_NAME);
+      if (0 == SCM_BITVECTOR_LENGTH (v))
        return SCM_INUM0;
       SCM_ASRTGO (SCM_BOOLP (obj), badarg3);
-      fObj = SCM_TRUE_P (obj);
-      i = (SCM_LENGTH (v) - 1) / SCM_LONG_BIT;
+      fObj = SCM_EQ_P (obj, SCM_BOOL_T);
+      i = (SCM_BITVECTOR_LENGTH (v) - 1) / SCM_LONG_BIT;
       k = SCM_UNPACK (SCM_VELTS (kv)[i]) & (fObj ? SCM_UNPACK (SCM_VELTS (v)[i]) : ~ SCM_UNPACK (SCM_VELTS (v)[i]));
-      k <<= SCM_LONG_BIT - 1 - ((SCM_LENGTH (v) - 1) % SCM_LONG_BIT);
+      k <<= SCM_LONG_BIT - 1 - ((SCM_BITVECTOR_LENGTH (v) - 1) % SCM_LONG_BIT);
       while (1)
        {
          for (; k; k >>= 4)
@@ -1922,22 +2002,17 @@ SCM_DEFINE (scm_bit_count_star, "bit-count*", 3, 0, 0,
 
 SCM_DEFINE (scm_bit_invert_x, "bit-invert!", 1, 0, 0, 
            (SCM v),
-           "Modifies @var{bv} by replacing each element with its negation.")
+           "Modify @var{bv} by replacing each element with its negation.")
 #define FUNC_NAME s_scm_bit_invert_x
 {
-  register long k;
-  SCM_ASRTGO (SCM_NIMP (v), badarg1);
-  k = SCM_LENGTH (v);
-  switch SCM_TYP7
-    (v)
-    {
-    case scm_tc7_bvect:
-      for (k = (k + SCM_LONG_BIT - 1) / SCM_LONG_BIT; k--;)
-       SCM_UNPACK (SCM_VELTS (v)[k]) = ~SCM_UNPACK(SCM_VELTS (v)[k]);
-      break;
-    default:
-    badarg1:SCM_WTA (1,v);
-    }
+  long int k;
+
+  SCM_ASSERT (SCM_BITVECTOR_P (v), v, SCM_ARG1, FUNC_NAME);
+
+  k = SCM_BITVECTOR_LENGTH (v);
+  for (k = (k + SCM_LONG_BIT - 1) / SCM_LONG_BIT; k--;)
+    SCM_BITVECTOR_BASE (v) [k] = ~SCM_BITVECTOR_BASE (v) [k];
+
   return SCM_UNSPECIFIED;
 }
 #undef FUNC_NAME
@@ -1975,11 +2050,11 @@ scm_istr2bve (char *str, long len)
 
 
 static SCM 
-ra2l (SCM ra,scm_sizet base,scm_sizet k)
+ra2l (SCM ra,unsigned long base,unsigned long k)
 {
   register SCM res = SCM_EOL;
   register long inc = SCM_ARRAY_DIMS (ra)[k].inc;
-  register scm_sizet i;
+  register size_t i;
   if (SCM_ARRAY_DIMS (ra)[k].ubnd < SCM_ARRAY_DIMS (ra)[k].lbnd)
     return SCM_EOL;
   i = base + (1 + SCM_ARRAY_DIMS (ra)[k].ubnd - SCM_ARRAY_DIMS (ra)[k].lbnd) * inc;
@@ -2003,19 +2078,19 @@ ra2l (SCM ra,scm_sizet base,scm_sizet k)
 }
 
 
-SCM_DEFINE (scm_array_to_list, "array->list", 1, 0, 0, 
+SCM_DEFINE (scm_t_arrayo_list, "array->list", 1, 0, 0, 
            (SCM v),
-           "Returns a list consisting of all the elements, in order, of @var{array}.")
-#define FUNC_NAME s_scm_array_to_list
+           "Return a list consisting of all the elements, in order, of\n"
+           "@var{array}.")
+#define FUNC_NAME s_scm_t_arrayo_list
 {
   SCM res = SCM_EOL;
   register long k;
   SCM_ASRTGO (SCM_NIMP (v), badarg1);
-  switch SCM_TYP7
-    (v)
+  switch SCM_TYP7 (v)
     {
     default:
-    badarg1:SCM_WTA (1,v);
+    badarg1:SCM_WRONG_TYPE_ARG (1, v);
     case scm_tc7_smob:
       SCM_ASRTGO (SCM_ARRAYP (v), badarg1);
       return ra2l (v, SCM_ARRAY_BASE (v), 0);
@@ -2028,62 +2103,70 @@ SCM_DEFINE (scm_array_to_list, "array->list", 1, 0, 0,
       {
        long *data = (long *) SCM_VELTS (v);
        register unsigned long mask;
-       for (k = (SCM_LENGTH (v) - 1) / SCM_LONG_BIT; k > 0; k--)
+       for (k = (SCM_BITVECTOR_LENGTH (v) - 1) / SCM_LONG_BIT; k > 0; k--)
          for (mask = 1UL << (SCM_LONG_BIT - 1); mask; mask >>= 1)
            res = scm_cons (SCM_BOOL(((long *) data)[k] & mask), res);
-       for (mask = 1L << ((SCM_LENGTH (v) % SCM_LONG_BIT) - 1); mask; mask >>= 1)
+       for (mask = 1L << ((SCM_BITVECTOR_LENGTH (v) % SCM_LONG_BIT) - 1); mask; mask >>= 1)
          res = scm_cons (SCM_BOOL(((long *) data)[k] & mask), res);
        return res;
       }
-  case scm_tc7_uvect: {
-    long *data = (long *)SCM_VELTS(v);
-    for (k = SCM_LENGTH(v) - 1; k >= 0; k--)
-      res = scm_cons(scm_ulong2num(data[k]), res);
-    return res;
-  }
-  case scm_tc7_ivect: {
-    long *data = (long *)SCM_VELTS(v);
-    for (k = SCM_LENGTH(v) - 1; k >= 0; k--)
-      res = scm_cons(scm_long2num(data[k]), res);
-    return res;
-  }
-    case scm_tc7_svect: {
-      short *data;
-      data = (short *)SCM_VELTS(v);
-      for (k = SCM_LENGTH(v) - 1; k >= 0; k--)
-       res = scm_cons(SCM_MAKINUM (data[k]), res);
-      return res;
-    }
+    case scm_tc7_byvect:
+      {
+       signed char *data = (signed char *) SCM_VELTS (v);
+       unsigned long k = SCM_UVECTOR_LENGTH (v);
+       while (k != 0)
+         res = scm_cons (SCM_MAKINUM (data[--k]), res);
+       return res;
+      }
+    case scm_tc7_uvect:
+      {
+       long *data = (long *)SCM_VELTS(v);
+       for (k = SCM_UVECTOR_LENGTH(v) - 1; k >= 0; k--)
+         res = scm_cons(scm_ulong2num(data[k]), res);
+       return res;
+      }
+    case scm_tc7_ivect:
+      {
+       long *data = (long *)SCM_VELTS(v);
+       for (k = SCM_UVECTOR_LENGTH(v) - 1; k >= 0; k--)
+         res = scm_cons(scm_long2num(data[k]), res);
+       return res;
+      }
+    case scm_tc7_svect:
+      {
+       short *data = (short *)SCM_VELTS(v);
+       for (k = SCM_UVECTOR_LENGTH(v) - 1; k >= 0; k--)
+         res = scm_cons(scm_short2num (data[k]), res);
+       return res;
+      }
 #ifdef HAVE_LONG_LONGS
-    case scm_tc7_llvect: {
-      long_long *data;
-      data = (long_long *)SCM_VELTS(v);
-      for (k = SCM_LENGTH(v) - 1; k >= 0; k--)
-       res = scm_cons(scm_long_long2num(data[k]), res);
-      return res;
-    }
+    case scm_tc7_llvect:
+      {
+       long long *data = (long long *)SCM_VELTS(v);
+       for (k = SCM_UVECTOR_LENGTH(v) - 1; k >= 0; k--)
+         res = scm_cons(scm_long_long2num(data[k]), res);
+       return res;
+      }
 #endif
-
-
     case scm_tc7_fvect:
       {
        float *data = (float *) SCM_VELTS (v);
-       for (k = SCM_LENGTH (v) - 1; k >= 0; k--)
+       for (k = SCM_UVECTOR_LENGTH (v) - 1; k >= 0; k--)
          res = scm_cons (scm_make_real (data[k]), res);
        return res;
       }
     case scm_tc7_dvect:
       {
        double *data = (double *) SCM_VELTS (v);
-       for (k = SCM_LENGTH (v) - 1; k >= 0; k--)
-         res = scm_cons (scm_makdbl (data[k], 0.0), res);
+       for (k = SCM_UVECTOR_LENGTH (v) - 1; k >= 0; k--)
+         res = scm_cons (scm_make_real (data[k]), res);
        return res;
       }
     case scm_tc7_cvect:
       {
        double (*data)[2] = (double (*)[2]) SCM_VELTS (v);
-       for (k = SCM_LENGTH (v) - 1; k >= 0; k--)
-         res = scm_cons (scm_makdbl (data[k][0], data[k][1]), res);
+       for (k = SCM_UVECTOR_LENGTH (v) - 1; k >= 0; k--)
+         res = scm_cons (scm_make_complex (data[k][0], data[k][1]), res);
        return res;
       }
     }
@@ -2091,22 +2174,21 @@ SCM_DEFINE (scm_array_to_list, "array->list", 1, 0, 0,
 #undef FUNC_NAME
 
 
-static char s_bad_ralst[] = "Bad scm_array contents list";
-
-static int l2ra(SCM lst, SCM ra, scm_sizet base, scm_sizet k);
+static int l2ra(SCM lst, SCM ra, unsigned long base, unsigned long k);
 
 SCM_DEFINE (scm_list_to_uniform_array, "list->uniform-array", 3, 0, 0,
            (SCM ndim, SCM prot, SCM lst),
-           "@deffnx procedure list->uniform-vector prot lst\n"
-           "Returns a uniform array of the type indicated by prototype @var{prot}\n"
-           "with elements the same as those of @var{lst}.  Elements must be of the\n"
-           "appropriate type, no coercions are done.")
+           "@deffnx {Scheme Procedure} list->uniform-vector prot lst\n"
+           "Return a uniform array of the type indicated by prototype\n"
+           "@var{prot} with elements the same as those of @var{lst}.\n"
+           "Elements must be of the appropriate type, no coercions are\n"
+           "done.")
 #define FUNC_NAME s_scm_list_to_uniform_array
 {
   SCM shp = SCM_EOL;
   SCM row = lst;
   SCM ra;
-  scm_sizet k;
+  unsigned long k;
   long n;
   SCM_VALIDATE_INUM_COPY (1,ndim,k);
   while (k--)
@@ -2120,7 +2202,6 @@ SCM_DEFINE (scm_list_to_uniform_array, "list->uniform-array", 3, 0, 0,
   ra = scm_dimensions_to_uniform_array (scm_reverse (shp), prot,
                                        SCM_UNDEFINED);
   if (SCM_NULLP (shp))
-
     {
       SCM_ASRTGO (1 == scm_ilength (lst), badlst);
       scm_array_set_x (ra, SCM_CAR (lst), SCM_EOL);
@@ -2128,20 +2209,21 @@ SCM_DEFINE (scm_list_to_uniform_array, "list->uniform-array", 3, 0, 0,
     }
   if (!SCM_ARRAYP (ra))
     {
-      for (k = 0; k < SCM_LENGTH (ra); k++, lst = SCM_CDR (lst))
+      unsigned long int length = SCM_INUM (scm_uniform_vector_length (ra));
+      for (k = 0; k < length; k++, lst = SCM_CDR (lst))
        scm_array_set_x (ra, SCM_CAR (lst), SCM_MAKINUM (k));
       return ra;
     }
   if (l2ra (lst, ra, SCM_ARRAY_BASE (ra), 0))
     return ra;
   else
-    badlst:scm_wta (lst, s_bad_ralst, FUNC_NAME);
-  return SCM_BOOL_F;
+    badlst:SCM_MISC_ERROR ("Bad scm_array contents list: ~S",
+                          scm_list_1 (lst));
 }
 #undef FUNC_NAME
 
 static int 
-l2ra (SCM lst, SCM ra, scm_sizet base, scm_sizet k)
+l2ra (SCM lst, SCM ra, unsigned long base, unsigned long k)
 {
   register long inc = SCM_ARRAY_DIMS (ra)[k].inc;
   register long n = (1 + SCM_ARRAY_DIMS (ra)[k].ubnd - SCM_ARRAY_DIMS (ra)[k].lbnd);
@@ -2167,22 +2249,24 @@ l2ra (SCM lst, SCM ra, scm_sizet base, scm_sizet k)
        {
          if (SCM_IMP (lst) || SCM_NCONSP (lst))
            return 0;
-         ok = ok && scm_array_set_x (SCM_ARRAY_V (ra), SCM_CAR (lst), SCM_MAKINUM (base));
+         scm_array_set_x (SCM_ARRAY_V (ra), SCM_CAR (lst), SCM_MAKINUM (base));
          base += inc;
          lst = SCM_CDR (lst);
        }
       if (SCM_NNULLP (lst))
- return 0;
      return 0;
     }
   return ok;
 }
 
 
 static void 
-rapr1 (SCM ra,scm_sizet j,scm_sizet k,SCM port,scm_print_state *pstate)
+rapr1 (SCM ra,unsigned long j,unsigned long k,SCM port,scm_print_state *pstate)
 {
   long inc = 1;
-  long n = SCM_LENGTH (ra);
+  long n = (SCM_TYP7 (ra) == scm_tc7_smob
+           ? 0
+           : SCM_INUM (scm_uniform_vector_length (ra)));
   int enclosed = 0;
 tail:
   switch SCM_TYP7 (ra)
@@ -2220,8 +2304,7 @@ tail:
            }
          break;
        }
-      if SCM_ARRAY_NDIM
-       (ra)
+      if (SCM_ARRAY_NDIM (ra) > 0)
        {                       /* Could be zero-dimensional */
          inc = SCM_ARRAY_DIMS (ra)[k].inc;
          n = (SCM_ARRAY_DIMS (ra)[k].ubnd - SCM_ARRAY_DIMS (ra)[k].lbnd + 1);
@@ -2242,16 +2325,16 @@ tail:
       break;
     case scm_tc7_string:
       if (n-- > 0)
-       scm_iprin1 (SCM_MAKE_CHAR (SCM_UCHARS (ra)[j]), port, pstate);
+       scm_iprin1 (SCM_MAKE_CHAR (SCM_STRING_UCHARS (ra)[j]), port, pstate);
       if (SCM_WRITINGP (pstate))
        for (j += inc; n-- > 0; j += inc)
          {
            scm_putc (' ', port);
-           scm_iprin1 (SCM_MAKE_CHAR (SCM_UCHARS (ra)[j]), port, pstate);
+           scm_iprin1 (SCM_MAKE_CHAR (SCM_STRING_UCHARS (ra)[j]), port, pstate);
          }
       else
        for (j += inc; n-- > 0; j += inc)
-         scm_putc (SCM_CHARS (ra)[j], port);
+         scm_putc (SCM_STRING_CHARS (ra)[j], port);
       break;
     case scm_tc7_byvect:
       if (n-- > 0)
@@ -2270,23 +2353,23 @@ tail:
        if (n-- > 0)
          {
            /* intprint can't handle >= 2^31.  */
-           sprintf (str, "%lu", (unsigned long) SCM_VELTS (ra)[j]);
+           sprintf (str, "%lu", ((unsigned long *) SCM_VELTS (ra))[j]);
            scm_puts (str, port);
          }
        for (j += inc; n-- > 0; j += inc)
          {
            scm_putc (' ', port);
-           sprintf (str, "%lu", (unsigned long) SCM_VELTS (ra)[j]);
+           sprintf (str, "%lu", ((unsigned long *) SCM_VELTS (ra))[j]);
            scm_puts (str, port);
          }
       }
     case scm_tc7_ivect:
       if (n-- > 0)
-       scm_intprint ((int)SCM_VELTS (ra)[j], 10, port);
+       scm_intprint (((signed long *) SCM_VELTS (ra))[j], 10, port);
       for (j += inc; n-- > 0; j += inc)
        {
          scm_putc (' ', port);
-         scm_intprint ((int)SCM_VELTS (ra)[j], 10, port);
+         scm_intprint (((signed long *) SCM_VELTS (ra))[j], 10, port);
        }
       break;
 
@@ -2357,7 +2440,7 @@ int
 scm_raprin1 (SCM exp, SCM port, scm_print_state *pstate)
 {
   SCM v = exp;
-  scm_sizet base = 0;
+  unsigned long base = 0;
   scm_putc ('#', port);
 tail:
   switch SCM_TYP7 (v)
@@ -2382,23 +2465,23 @@ tail:
          }
       }
     case scm_tc7_bvect:
-      if (exp == v)
+      if (SCM_EQ_P (exp, v))
        {                       /* a uve, not an scm_array */
          register long i, j, w;
          scm_putc ('*', port);
-         for (i = 0; i < (SCM_LENGTH (exp)) / SCM_LONG_BIT; i++)
+         for (i = 0; i < (SCM_BITVECTOR_LENGTH (exp)) / SCM_LONG_BIT; i++)
            {
-             scm_bits_t w = SCM_UNPACK (SCM_VELTS (exp)[i]);
+             scm_t_bits w = SCM_UNPACK (SCM_VELTS (exp)[i]);
              for (j = SCM_LONG_BIT; j; j--)
                {
                  scm_putc (w & 1 ? '1' : '0', port);
                  w >>= 1;
                }
            }
-         j = SCM_LENGTH (exp) % SCM_LONG_BIT;
+         j = SCM_BITVECTOR_LENGTH (exp) % SCM_LONG_BIT;
          if (j)
            {
-             w = SCM_UNPACK (SCM_VELTS (exp)[SCM_LENGTH (exp) / SCM_LONG_BIT]);
+             w = SCM_UNPACK (SCM_VELTS (exp)[SCM_BITVECTOR_LENGTH (exp) / SCM_LONG_BIT]);
              for (; j; j--)
                {
                  scm_putc (w & 1 ? '1' : '0', port);
@@ -2448,19 +2531,18 @@ tail:
 
 SCM_DEFINE (scm_array_prototype, "array-prototype", 1, 0, 0, 
            (SCM ra),
-           "Returns an object that would produce an array of the same type as\n"
-           "@var{array}, if used as the @var{prototype} for\n"
+           "Return an object that would produce an array of the same type\n"
+           "as @var{array}, if used as the @var{prototype} for\n"
            "@code{make-uniform-array}.")
 #define FUNC_NAME s_scm_array_prototype
 {
   int enclosed = 0;
   SCM_ASRTGO (SCM_NIMP (ra), badarg);
 loop:
-  switch SCM_TYP7
-    (ra)
+  switch SCM_TYP7 (ra)
     {
     default:
-    badarg:SCM_WTA (1,ra);
+    badarg:SCM_WRONG_TYPE_ARG (1, ra);
     case scm_tc7_smob:
       SCM_ASRTGO (SCM_ARRAYP (ra), badarg);
       if (enclosed++)
@@ -2481,10 +2563,10 @@ loop:
     case scm_tc7_ivect:
       return SCM_MAKINUM (-1L);
     case scm_tc7_svect:
-      return SCM_CDR (scm_intern ("s", 1));
+      return scm_str2symbol ("s");
 #ifdef HAVE_LONG_LONGS
     case scm_tc7_llvect:
-      return SCM_CDR (scm_intern ("l", 1));
+      return scm_str2symbol ("l");
 #endif
     case scm_tc7_fvect:
       return scm_make_real (1.0);
@@ -2498,29 +2580,34 @@ loop:
 
 
 static SCM
-markra (SCM ptr)
+array_mark (SCM ptr)
 {
   return SCM_ARRAY_V (ptr);
 }
 
 
-static scm_sizet
-freera (SCM ptr)
+static size_t
+array_free (SCM ptr)
 {
-  scm_must_free (SCM_CHARS (ptr));
-  return sizeof (scm_array) + SCM_ARRAY_NDIM (ptr) * sizeof (scm_array_dim);
+  scm_gc_free (SCM_ARRAY_MEM (ptr),
+              (sizeof (scm_t_array) 
+               + SCM_ARRAY_NDIM (ptr) * sizeof (scm_t_array_dim)),
+              "array");
+  return 0;
 }
 
 void
 scm_init_unif ()
 {
-  scm_tc16_array = scm_make_smob_type_mfpe ("array", 0,
-                                           markra,
-                                           freera,
-                                           scm_raprin1,
-                                           scm_array_equal_p);
+  scm_tc16_array = scm_make_smob_type ("array", 0);
+  scm_set_smob_mark (scm_tc16_array, array_mark);
+  scm_set_smob_free (scm_tc16_array, array_free);
+  scm_set_smob_print (scm_tc16_array, scm_raprin1);
+  scm_set_smob_equalp (scm_tc16_array, scm_array_equal_p);
   scm_add_feature ("array");
-#include "unif.x"
+#ifndef SCM_MAGIC_SNARFER
+#include "libguile/unif.x"
+#endif
 }
 
 /*