mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-06-17 01:00:20 +02:00
add generic array implementation facility
* libguile/array-handle.c (scm_i_register_array_implementation): (scm_i_array_implementation_for_obj): Add generic array facility, which will (in a few commits) detangle the array code. (scm_array_get_handle): Use the generic array facility. Note that scm_t_array_handle no longer has ref and set function pointers; instead it has a pointer to the array implementation. It is unlikely that code out there used these functions, however, as the supported way was through scm_array_handle_ref/set_x. (scm_array_handle_pos): Move this function here from arrays.c. (scm_array_handle_element_type): New function, returns a Scheme value representing the type of element stored in this array. * libguile/array-handle.h (scm_t_array_element_type): New enum, for generically determining the type of an array. (scm_array_handle_rank): (scm_array_handle_dims): These are now just #defines. * libguile/arrays.c: * libguile/bitvectors.c: * libguile/bytevectors.c: * libguile/srfi-4.c: * libguile/strings.c: * libguile/vectors.c: Register array implementations for all of these. * libguile/inline.h: Update for array_handle_ref/set change. * libguile/deprecated.h: Need to include arrays.h now.
This commit is contained in:
parent
2fa901a51f
commit
2a610be594
12 changed files with 365 additions and 265 deletions
|
@ -306,27 +306,6 @@ SCM_DEFINE (scm_shared_array_increments, "shared-array-increments", 1, 0, 0,
|
|||
}
|
||||
#undef FUNC_NAME
|
||||
|
||||
ssize_t
|
||||
scm_array_handle_pos (scm_t_array_handle *h, SCM indices)
|
||||
{
|
||||
scm_t_array_dim *s = scm_array_handle_dims (h);
|
||||
ssize_t pos = 0, i;
|
||||
size_t k = scm_array_handle_rank (h);
|
||||
|
||||
while (k > 0 && scm_is_pair (indices))
|
||||
{
|
||||
i = scm_to_signed_integer (SCM_CAR (indices), s->lbnd, s->ubnd);
|
||||
pos += (i - s->lbnd) * s->inc;
|
||||
k--;
|
||||
s++;
|
||||
indices = SCM_CDR (indices);
|
||||
}
|
||||
if (k > 0 || !scm_is_null (indices))
|
||||
scm_misc_error (NULL, "wrong number of indices, expecting ~a",
|
||||
scm_list_1 (scm_from_size_t (scm_array_handle_rank (h))));
|
||||
return pos;
|
||||
}
|
||||
|
||||
SCM
|
||||
scm_i_make_array (int ndim, int enclosed)
|
||||
{
|
||||
|
@ -1604,6 +1583,38 @@ array_free (SCM ptr)
|
|||
return 0;
|
||||
}
|
||||
|
||||
static SCM
|
||||
array_handle_ref (scm_t_array_handle *h, size_t pos)
|
||||
{
|
||||
return scm_c_generalized_vector_ref (SCM_I_ARRAY_V (h->array), pos);
|
||||
}
|
||||
|
||||
static void
|
||||
array_handle_set (scm_t_array_handle *h, size_t pos, SCM val)
|
||||
{
|
||||
scm_c_generalized_vector_set_x (SCM_I_ARRAY_V (h->array), pos, val);
|
||||
}
|
||||
|
||||
/* FIXME: should be handle for vect? maybe not, because of dims */
|
||||
static void
|
||||
array_get_handle (SCM array, scm_t_array_handle *h)
|
||||
{
|
||||
scm_t_array_handle vh;
|
||||
scm_array_get_handle (SCM_I_ARRAY_V (array), &vh);
|
||||
h->element_type = vh.element_type;
|
||||
h->elements = vh.elements;
|
||||
h->writable_elements = vh.writable_elements;
|
||||
scm_array_handle_release (&vh);
|
||||
|
||||
h->dims = SCM_I_ARRAY_DIMS (array);
|
||||
h->ndims = SCM_I_ARRAY_NDIM (array);
|
||||
h->base = SCM_I_ARRAY_BASE (array);
|
||||
}
|
||||
|
||||
SCM_ARRAY_IMPLEMENTATION (scm_i_tc16_array, 0xffff,
|
||||
array_handle_ref, array_handle_set,
|
||||
array_get_handle);
|
||||
|
||||
void
|
||||
scm_init_arrays ()
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue