428
|
1 /* Simple 'n' stupid dynamic-array module.
|
|
2 Copyright (C) 1993 Sun Microsystems, Inc.
|
|
3
|
|
4 This file is part of XEmacs.
|
|
5
|
|
6 XEmacs is free software; you can redistribute it and/or modify it
|
|
7 under the terms of the GNU General Public License as published by the
|
|
8 Free Software Foundation; either version 2, or (at your option) any
|
|
9 later version.
|
|
10
|
|
11 XEmacs is distributed in the hope that it will be useful, but WITHOUT
|
|
12 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
13 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
|
14 for more details.
|
|
15
|
|
16 You should have received a copy of the GNU General Public License
|
|
17 along with XEmacs; see the file COPYING. If not, write to
|
|
18 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
19 Boston, MA 02111-1307, USA. */
|
|
20
|
|
21 /* Synched up with: Not in FSF. */
|
|
22
|
|
23 /* Written by Ben Wing, December 1993. */
|
|
24
|
|
25 /*
|
|
26
|
|
27 A "dynamic array" is a contiguous array of fixed-size elements where there
|
|
28 is no upper limit (except available memory) on the number of elements in the
|
|
29 array. Because the elements are maintained contiguously, space is used
|
|
30 efficiently (no per-element pointers necessary) and random access to a
|
|
31 particular element is in constant time. At any one point, the block of memory
|
|
32 that holds the array has an upper limit; if this limit is exceeded, the
|
|
33 memory is realloc()ed into a new array that is twice as big. Assuming that
|
|
34 the time to grow the array is on the order of the new size of the array
|
|
35 block, this scheme has a provably constant amortized time (i.e. average
|
|
36 time over all additions).
|
|
37
|
|
38 When you add elements or retrieve elements, pointers are used. Note that
|
|
39 the element itself (of whatever size it is), and not the pointer to it,
|
|
40 is stored in the array; thus you do not have to allocate any heap memory
|
|
41 on your own. Also, returned pointers are only guaranteed to be valid
|
|
42 until the next operation that changes the length of the array.
|
|
43
|
|
44 This is a container object. Declare a dynamic array of a specific type
|
|
45 as follows:
|
|
46
|
|
47 typedef struct
|
|
48 {
|
|
49 Dynarr_declare (mytype);
|
|
50 } mytype_dynarr;
|
|
51
|
|
52 Use the following functions/macros:
|
|
53
|
|
54 void *Dynarr_new(type)
|
|
55 [MACRO] Create a new dynamic-array object, with each element of the
|
|
56 specified type. The return value is cast to (type##_dynarr).
|
|
57 This requires following the convention that types are declared in
|
|
58 such a way that this type concatenation works. In particular, TYPE
|
|
59 must be a symbol, not an arbitrary C type.
|
|
60
|
|
61 Dynarr_add(d, el)
|
|
62 [MACRO] Add an element to the end of a dynamic array. EL is a pointer
|
|
63 to the element; the element itself is stored in the array, however.
|
|
64 No function call is performed unless the array needs to be resized.
|
|
65
|
|
66 Dynarr_add_many(d, base, len)
|
|
67 [MACRO] Add LEN elements to the end of the dynamic array. The elements
|
|
68 should be contiguous in memory, starting at BASE.
|
|
69
|
|
70 Dynarr_insert_many_at_start(d, base, len)
|
|
71 [MACRO] Append LEN elements to the beginning of the dynamic array.
|
|
72 The elements should be contiguous in memory, starting at BASE.
|
|
73
|
|
74 Dynarr_insert_many(d, base, len, start)
|
|
75 Insert LEN elements to the dynamic array starting at position
|
|
76 START. The elements should be contiguous in memory, starting at BASE.
|
|
77
|
|
78 int Dynarr_length(d)
|
|
79 [MACRO] Return the number of elements currently in a dynamic array.
|
|
80
|
|
81 int Dynarr_largest(d)
|
|
82 [MACRO] Return the maximum value that Dynarr_length(d) would
|
|
83 ever have returned.
|
|
84
|
|
85 type Dynarr_at(d, i)
|
|
86 [MACRO] Return the element at the specified index (no bounds checking
|
|
87 done on the index). The element itself is returned, not a pointer
|
|
88 to it.
|
|
89
|
|
90 type *Dynarr_atp(d, i)
|
|
91 [MACRO] Return a pointer to the element at the specified index (no
|
|
92 bounds checking done on the index). The pointer may not be valid
|
|
93 after an element is added to or removed from the array.
|
|
94
|
|
95 Dynarr_reset(d)
|
|
96 [MACRO] Reset the length of a dynamic array to 0.
|
|
97
|
|
98 Dynarr_free(d)
|
|
99 Destroy a dynamic array and the memory allocated to it.
|
|
100
|
|
101 Use the following global variable:
|
|
102
|
|
103 Dynarr_min_size
|
440
|
104 Minimum allowable size for a dynamic array when it is resized.
|
428
|
105
|
|
106 */
|
|
107
|
|
108 #include <config.h>
|
|
109 #include "lisp.h"
|
|
110
|
440
|
111 static int Dynarr_min_size = 8;
|
428
|
112
|
|
113 static void
|
|
114 Dynarr_realloc (Dynarr *dy, int new_size)
|
|
115 {
|
|
116 if (DUMPEDP (dy->base))
|
|
117 {
|
|
118 void *new_base = malloc (new_size);
|
|
119 memcpy (new_base, dy->base, dy->max > new_size ? new_size : dy->max);
|
|
120 dy->base = new_base;
|
|
121 }
|
|
122 else
|
|
123 dy->base = xrealloc (dy->base, new_size);
|
|
124 }
|
|
125
|
|
126 void *
|
|
127 Dynarr_newf (int elsize)
|
|
128 {
|
|
129 Dynarr *d = xnew_and_zero (Dynarr);
|
|
130 d->elsize = elsize;
|
|
131
|
|
132 return d;
|
|
133 }
|
|
134
|
|
135 void
|
|
136 Dynarr_resize (void *d, int size)
|
|
137 {
|
|
138 int newsize;
|
|
139 double multiplier;
|
|
140 Dynarr *dy = (Dynarr *) d;
|
|
141
|
|
142 if (dy->max <= 8)
|
|
143 multiplier = 2;
|
|
144 else
|
|
145 multiplier = 1.5;
|
|
146
|
|
147 for (newsize = dy->max; newsize < size;)
|
|
148 newsize = max (Dynarr_min_size, (int) (multiplier * newsize));
|
|
149
|
|
150 /* Don't do anything if the array is already big enough. */
|
|
151 if (newsize > dy->max)
|
|
152 {
|
|
153 Dynarr_realloc (dy, newsize*dy->elsize);
|
|
154 dy->max = newsize;
|
|
155 }
|
|
156 }
|
|
157
|
|
158 /* Add a number of contiguous elements to the array starting at START. */
|
|
159 void
|
442
|
160 Dynarr_insert_many (void *d, const void *el, int len, int start)
|
428
|
161 {
|
|
162 Dynarr *dy = (Dynarr *) d;
|
|
163
|
|
164 Dynarr_resize (dy, dy->cur+len);
|
|
165 /* Silently adjust start to be valid. */
|
|
166 if (start > dy->cur)
|
|
167 start = dy->cur;
|
|
168 else if (start < 0)
|
|
169 start = 0;
|
|
170
|
|
171 if (start != dy->cur)
|
|
172 {
|
|
173 memmove ((char *) dy->base + (start + len)*dy->elsize,
|
|
174 (char *) dy->base + start*dy->elsize,
|
|
175 (dy->cur - start)*dy->elsize);
|
|
176 }
|
|
177 memcpy ((char *) dy->base + start*dy->elsize, el, len*dy->elsize);
|
|
178 dy->cur += len;
|
|
179
|
|
180 if (dy->cur > dy->largest)
|
|
181 dy->largest = dy->cur;
|
|
182 }
|
|
183
|
|
184 void
|
|
185 Dynarr_delete_many (void *d, int start, int len)
|
|
186 {
|
|
187 Dynarr *dy = (Dynarr *) d;
|
|
188
|
|
189 assert (start >= 0 && len >= 0 && start + len <= dy->cur);
|
|
190 memmove ((char *) dy->base + start*dy->elsize,
|
|
191 (char *) dy->base + (start + len)*dy->elsize,
|
|
192 (dy->cur - start - len)*dy->elsize);
|
|
193 dy->cur -= len;
|
|
194 }
|
|
195
|
|
196 void
|
|
197 Dynarr_free (void *d)
|
|
198 {
|
|
199 Dynarr *dy = (Dynarr *) d;
|
|
200
|
|
201 if (dy->base && !DUMPEDP (dy->base))
|
|
202 xfree (dy->base);
|
|
203 if(!DUMPEDP (dy))
|
|
204 xfree (dy);
|
|
205 }
|
|
206
|
|
207 #ifdef MEMORY_USAGE_STATS
|
|
208
|
|
209 /* Return memory usage for Dynarr D. The returned value is the total
|
|
210 amount of bytes actually being used for the Dynarr, including all
|
|
211 overhead. The extra amount of space in the Dynarr that is
|
|
212 allocated beyond what was requested is returned in DYNARR_OVERHEAD
|
|
213 in STATS. The extra amount of space that malloc() allocates beyond
|
|
214 what was requested of it is returned in MALLOC_OVERHEAD in STATS.
|
|
215 See the comment above the definition of this structure. */
|
|
216
|
|
217 size_t
|
|
218 Dynarr_memory_usage (void *d, struct overhead_stats *stats)
|
|
219 {
|
|
220 size_t total = 0;
|
|
221 Dynarr *dy = (Dynarr *) d;
|
|
222
|
|
223 /* We have to be a bit tricky here because not all of the
|
|
224 memory that malloc() will claim as "requested" was actually
|
|
225 requested. */
|
|
226
|
|
227 if (dy->base)
|
|
228 {
|
|
229 size_t malloc_used = malloced_storage_size (dy->base,
|
|
230 dy->elsize * dy->max, 0);
|
|
231 /* #### This may or may not be correct. Some Dynarrs would
|
|
232 prefer that we use dy->cur instead of dy->largest here. */
|
|
233 int was_requested = dy->elsize * dy->largest;
|
|
234 int dynarr_overhead = dy->elsize * (dy->max - dy->largest);
|
|
235
|
|
236 total += malloc_used;
|
|
237 stats->was_requested += was_requested;
|
|
238 stats->dynarr_overhead += dynarr_overhead;
|
|
239 /* And the remainder must be malloc overhead. */
|
|
240 stats->malloc_overhead +=
|
|
241 malloc_used - was_requested - dynarr_overhead;
|
|
242 }
|
|
243
|
|
244 total += malloced_storage_size (d, sizeof (*dy), stats);
|
|
245
|
|
246 return total;
|
|
247 }
|
|
248
|
|
249 #endif /* MEMORY_USAGE_STATS */
|