Merge branch 'master' into boehm-demers-weiser-gc
[bpt/guile.git] / libguile / vectors.h
CommitLineData
0f2d19dd
JB
1/* classes: h_files */
2
dcb410ec
DH
3#ifndef SCM_VECTORS_H
4#define SCM_VECTORS_H
dee01b01 5
102dbb6f 6/* Copyright (C) 1995,1996,1998,2000,2001,2002,2004,2005, 2006, 2008 Free Software Foundation, Inc.
dee01b01 7 *
73be1d9e
MV
8 * This library is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Lesser General Public
10 * License as published by the Free Software Foundation; either
11 * version 2.1 of the License, or (at your option) any later version.
dee01b01 12 *
73be1d9e 13 * This library is distributed in the hope that it will be useful,
0f2d19dd 14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
73be1d9e
MV
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * Lesser General Public License for more details.
dee01b01 17 *
73be1d9e
MV
18 * You should have received a copy of the GNU Lesser General Public
19 * License along with this library; if not, write to the Free Software
92205699 20 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
73be1d9e 21 */
d3a6bc94 22
0f2d19dd
JB
23\f
24
b4309c3c 25#include "libguile/__scm.h"
6e708ef2 26#include "libguile/unif.h"
0f2d19dd
JB
27
28\f
29
33b001fd
MV
30SCM_API SCM scm_vector_p (SCM x);
31SCM_API SCM scm_vector_length (SCM v);
32SCM_API SCM scm_vector (SCM l);
33SCM_API SCM scm_vector_ref (SCM v, SCM k);
34SCM_API SCM scm_vector_set_x (SCM v, SCM k, SCM obj);
35SCM_API SCM scm_make_vector (SCM k, SCM fill);
36SCM_API SCM scm_vector_to_list (SCM v);
37SCM_API SCM scm_vector_fill_x (SCM v, SCM fill_x);
33b001fd
MV
38SCM_API SCM scm_vector_move_left_x (SCM vec1, SCM start1, SCM end1,
39 SCM vec2, SCM start2);
40SCM_API SCM scm_vector_move_right_x (SCM vec1, SCM start1, SCM end1,
41 SCM vec2, SCM start2);
6e708ef2 42SCM_API SCM scm_vector_copy (SCM vec);
88797580
MV
43
44SCM_API int scm_is_vector (SCM obj);
6e708ef2 45SCM_API int scm_is_simple_vector (SCM obj);
88797580
MV
46SCM_API SCM scm_c_make_vector (size_t len, SCM fill);
47SCM_API size_t scm_c_vector_length (SCM vec);
48SCM_API SCM scm_c_vector_ref (SCM vec, size_t k);
de5c0f58 49SCM_API void scm_c_vector_set_x (SCM vec, size_t k, SCM obj);
354116f7
MV
50SCM_API const SCM *scm_vector_elements (SCM vec,
51 scm_t_array_handle *h,
52 size_t *lenp, ssize_t *incp);
53SCM_API SCM *scm_vector_writable_elements (SCM vec,
54 scm_t_array_handle *h,
55 size_t *lenp, ssize_t *incp);
6e708ef2
MV
56
57/* Fast, non-checking accessors for simple vectors.
58 */
59#define SCM_SIMPLE_VECTOR_LENGTH(x) SCM_I_VECTOR_LENGTH(x)
60#define SCM_SIMPLE_VECTOR_REF(x,idx) ((SCM_I_VECTOR_ELTS(x))[idx])
61#define SCM_SIMPLE_VECTOR_SET(x,idx,val) ((SCM_I_VECTOR_WELTS(x))[idx]=(val))
88797580
MV
62
63/* Generalized vectors */
64
65SCM_API SCM scm_generalized_vector_p (SCM v);
66SCM_API SCM scm_generalized_vector_length (SCM v);
67SCM_API SCM scm_generalized_vector_ref (SCM v, SCM idx);
68SCM_API SCM scm_generalized_vector_set_x (SCM v, SCM idx, SCM val);
69SCM_API SCM scm_generalized_vector_to_list (SCM v);
70
71SCM_API int scm_is_generalized_vector (SCM obj);
72SCM_API size_t scm_c_generalized_vector_length (SCM v);
73SCM_API SCM scm_c_generalized_vector_ref (SCM v, size_t idx);
74SCM_API void scm_c_generalized_vector_set_x (SCM v, size_t idx, SCM val);
354116f7
MV
75SCM_API void scm_generalized_vector_get_handle (SCM vec,
76 scm_t_array_handle *h);
1d0df896 77
6e708ef2
MV
78/* Internals */
79
80#define SCM_I_IS_VECTOR(x) (!SCM_IMP(x) && (SCM_TYP7S(x)==scm_tc7_vector))
81#define SCM_I_VECTOR_ELTS(x) ((const SCM *) SCM_CELL_WORD_1 (x))
82#define SCM_I_VECTOR_WELTS(x) ((SCM *) SCM_CELL_WORD_1 (x))
83#define SCM_I_VECTOR_LENGTH(x) (((size_t) SCM_CELL_WORD_0 (x)) >> 8)
84
102dbb6f
LC
85SCM_INTERNAL void scm_i_vector_free (SCM vec);
86SCM_INTERNAL SCM scm_i_vector_equal_p (SCM x, SCM y);
6e708ef2
MV
87
88/* Weak vectors share implementation details with ordinary vectors,
354116f7 89 but no one else should.
6e708ef2
MV
90 */
91
92#define SCM_I_WVECTP(x) (!SCM_IMP (x) && \
93 SCM_TYP7 (x) == scm_tc7_wvect)
94#define SCM_I_WVECT_LENGTH SCM_I_VECTOR_LENGTH
95#define SCM_I_WVECT_VELTS SCM_I_VECTOR_ELTS
96#define SCM_I_WVECT_GC_WVELTS SCM_I_VECTOR_WELTS
06c1d900
MV
97#define SCM_I_WVECT_EXTRA(x) (SCM_CELL_WORD_2 (x))
98#define SCM_I_SET_WVECT_EXTRA(x, t) (SCM_SET_CELL_WORD_2 ((x),(t)))
bc6580eb
MV
99#define SCM_I_WVECT_GC_CHAIN(x) (SCM_CELL_OBJECT_3 (x))
100#define SCM_I_SET_WVECT_GC_CHAIN(x, o) (SCM_SET_CELL_OBJECT_3 ((x), (o)))
6e708ef2 101
6f03035f
LC
102SCM_INTERNAL SCM scm_i_make_weak_vector (scm_t_bits type, SCM size, SCM fill);
103SCM_INTERNAL SCM scm_i_make_weak_vector_from_list (scm_t_bits type, SCM lst);
6e708ef2 104
102dbb6f 105SCM_INTERNAL void scm_init_vectors (void);
0f2d19dd 106
dcb410ec 107#endif /* SCM_VECTORS_H */
89e00824
ML
108
109/*
110 Local Variables:
111 c-file-style: "gnu"
112 End:
113*/