Switch array to size_t for length parameter ...
[libfirm] / ir / adt / array.c
1 /*
2  * Copyright (C) 1995-2011 University of Karlsruhe.  All right reserved.
3  *
4  * This file is part of libFirm.
5  *
6  * This file may be distributed and/or modified under the terms of the
7  * GNU General Public License version 2 as published by the Free Software
8  * Foundation and appearing in the file LICENSE.GPL included in the
9  * packaging of this file.
10  *
11  * Licensees holding valid libFirm Professional Edition licenses may use
12  * this file in accordance with the libFirm Commercial License.
13  * Agreement provided with the Software.
14  *
15  * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
16  * WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR
17  * PURPOSE.
18  */
19
20 /**
21  * @file
22  * @brief       Array --- dynamic & flexible arrays.
23  * @author      Markus Armbruster
24  * @version     $Id$
25  */
26
27 #include "config.h"
28
29 #include <stdlib.h>
30
31 #include "array_t.h"
32 #include "xmalloc.h"
33
34 /* Undefine the macros to get the functions instead, cf tmalloc.c.  */
35 #undef xmalloc
36 #undef xrealloc
37 #undef xstrdup
38 #undef xfree
39
40 #ifndef MAX
41 # define MAX(a,b) ((a) > (b) ? (a) : (b))
42 #endif
43 #ifndef MIN
44 # define MIN(a,b) ((a) > (b) ? (b) : (a))
45 #endif
46
47 /**
48  * An empty dynamic array descriptor.
49  */
50 ir_arr_descr arr_mt_descr = { ARR_D_MAGIC, 0, {0}, 0, {{{0}}} };
51
52 void ir_verify_arr(const void *arr)
53 {
54 #ifndef NDEBUG
55         ir_arr_descr *descr = ARR_DESCR(arr);
56         assert(descr->magic == ARR_D_MAGIC || descr->magic == ARR_A_MAGIC
57                          || descr->magic == ARR_F_MAGIC);
58         if (descr->magic == ARR_F_MAGIC) {
59                 assert(descr->u.allocated >= descr->nelts);
60         }
61         assert(descr->nelts >= 0);
62 #else
63         (void) arr;
64 #endif
65 }
66
67 /**
68  * Creates a dynamic array on a obstack.
69  *
70  * @param obstack    An struct obstack * were the data will be allocated
71  * @param nelts      The number of elements
72  * @param elts_size  The size of the array elements.
73  *
74  * @return A pointer to the dynamic array (can be used as a pointer to the
75  *         first element of this array).
76  *
77  * @remark Helper function, use NEW_ARR_D() instead.
78  */
79 void *ir_new_arr_d(struct obstack *obstack, size_t nelts, size_t elts_size)
80 {
81         ir_arr_descr *dp;
82
83         assert(obstack);
84
85         dp = (ir_arr_descr*)obstack_alloc(obstack, ARR_ELTS_OFFS + elts_size);
86         ARR_SET_DBGINF(dp, ARR_D_MAGIC, elts_size/nelts);
87         dp->u.obstack = obstack;
88         dp->nelts = nelts;
89         return dp->v.elts;
90 }
91
92 /**
93  * Creates a flexible array.
94  *
95  * @param nelts      The number of elements
96  * @param elts_size  The size of the array elements.
97  *
98  * @return A pointer to the flexible array (can be used as a pointer to the
99  *         first element of this array).
100  *
101  * @remark Helper function, use NEW_ARR_F() instead.
102  */
103 void *ir_new_arr_f(size_t nelts, size_t elts_size)
104 {
105         ir_arr_descr *newa;
106
107         newa = (ir_arr_descr*)xmalloc(ARR_ELTS_OFFS+elts_size);
108         ARR_SET_DBGINF(newa, ARR_F_MAGIC, nelts ? elts_size/nelts : 0);
109         newa->u.allocated = newa->nelts = nelts;
110         return newa->v.elts;
111 }
112
113 /**
114  * Delete a flexible array.
115  *
116  * @param elts    The flexible array (pointer to the first element).
117  *
118  * @remark Helper function, use DEL_ARR_F() instead.
119  */
120 void ir_del_arr_f(void *elts)
121 {
122         ir_arr_descr *dp = ARR_DESCR (elts);
123
124         ARR_VRFY(elts);
125         assert(dp->magic == ARR_F_MAGIC);
126
127 #ifndef NDEBUG
128         dp->magic = 0xdeadbeef;
129 #endif
130         free(dp);
131 }
132
133 /**
134  * Resize a flexible array, always reallocate data.
135  *
136  * @param elts       The flexible array (pointer to the first element).
137  * @param nelts      The new number of elements.
138  * @param elts_size  The size of the array elements.
139  *
140  * @return A resized flexible array, possibly other address than
141  *         elts.
142  *
143  * @remark Helper function, use ARR_SETLEN() instead.
144  */
145 void *ir_arr_setlen (void *elts, size_t nelts, size_t elts_size)
146 {
147         ir_arr_descr *dp = ARR_DESCR (elts);
148
149         assert(dp->magic == ARR_F_MAGIC);
150         ARR_VRFY(elts);
151         assert(!dp->eltsize || !nelts || (dp->eltsize == elts_size/nelts));
152
153         dp = (ir_arr_descr*) xrealloc(dp, ARR_ELTS_OFFS+elts_size);
154         dp->u.allocated = dp->nelts = nelts;
155
156         return dp->v.elts;
157 }
158
159 /**
160  * Resize a flexible array, allocate more data if needed but do NOT
161  * reduce.
162  *
163  * @param elts     The flexible array (pointer to the first element).
164  * @param nelts    The new number of elements.
165  * @param eltsize  The size of the array elements.
166  *
167  * @return A resized flexible array, possibly other address than
168  *         elts.
169  *
170  * @remark Helper function, use ARR_RESIZE() instead.
171  */
172 void *ir_arr_resize(void *elts, size_t nelts, size_t eltsize)
173 {
174         ir_arr_descr *dp = ARR_DESCR(elts);
175         size_t n;
176
177         assert(dp->magic == ARR_F_MAGIC);
178         ARR_VRFY(elts);
179         assert(dp->eltsize ? dp->eltsize == eltsize : (dp->eltsize = eltsize, 1));
180
181         /* @@@ lots of resizes for small nelts */
182         n = MAX(1, dp->u.allocated);
183         while (nelts > n) n <<= 1;
184         while (3*nelts < n) n >>= 1;
185         assert(n >= nelts);
186
187         if (n != dp->u.allocated) {
188                 dp = (ir_arr_descr*) xrealloc(dp, ARR_ELTS_OFFS+eltsize*n);
189                 dp->u.allocated = n;
190         }
191         dp->nelts = nelts;
192
193         return dp->v.elts;
194 }
195
196 #ifdef DEBUG_libfirm
197 /**
198  * This function returns the length of a flexible array.
199  * Do NOT use is in code, use ARR_LEN() macro!
200  * This function is intended to be called from a debugger.
201  */
202 size_t array_len(const void *arr)
203 {
204         return ARR_LEN(arr);
205 }
206
207 /**
208  * This function returns the array descriptor of a flexible array.
209  * Do NOT use is in code!.
210  * This function is intended to be called from a debugger.
211  */
212 ir_arr_descr *array_descr(const void *arr)
213 {
214         if (! arr)
215                 return NULL;
216         return ARR_DESCR(arr);
217 }
218 #endif /* DEBUG_libfirm */