7c05ff6721456d37f6f0101831a160520dfe7d3e
[libfirm] / ir / adt / array.c
1 /*
2  * Copyright (C) 1995-2008 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, int nelts, size_t elts_size)
80 {
81         ir_arr_descr *dp;
82
83         assert(obstack && (nelts >= 0));
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(int nelts, size_t elts_size)
104 {
105         ir_arr_descr *newa;
106
107         assert (nelts >= 0);
108         newa = (ir_arr_descr*) xmalloc (ARR_ELTS_OFFS+elts_size);
109         ARR_SET_DBGINF (newa, ARR_F_MAGIC, nelts ? elts_size/nelts : 0);
110         newa->u.allocated = newa->nelts = nelts;
111         return newa->v.elts;
112 }
113
114 /**
115  * Delete a flexible array.
116  *
117  * @param elts    The flexible array (pointer to the first element).
118  *
119  * @remark Helper function, use DEL_ARR_F() instead.
120  */
121 void ir_del_arr_f(void *elts)
122 {
123         ir_arr_descr *dp = ARR_DESCR (elts);
124
125         ARR_VRFY (elts);
126         assert (dp->magic == ARR_F_MAGIC);
127
128 #ifndef NDEBUG
129         dp->magic = 0xdeadbeef;
130 #endif
131         free(dp);
132 }
133
134 /**
135  * Resize a flexible array, always reallocate data.
136  *
137  * @param elts       The flexible array (pointer to the first element).
138  * @param nelts      The new number of elements.
139  * @param elts_size  The size of the array elements.
140  *
141  * @return A resized flexible array, possibly other address than
142  *         elts.
143  *
144  * @remark Helper function, use ARR_SETLEN() instead.
145  */
146 void *ir_arr_setlen (void *elts, int nelts, size_t elts_size)
147 {
148         ir_arr_descr *dp = ARR_DESCR (elts);
149
150         assert ((dp->magic == ARR_F_MAGIC) && (nelts >= 0));
151         ARR_VRFY (elts);
152         assert (!dp->eltsize || !nelts || (dp->eltsize == elts_size/nelts));
153
154         dp = (ir_arr_descr*) xrealloc (dp, ARR_ELTS_OFFS+elts_size);
155         dp->u.allocated = dp->nelts = nelts;
156
157         return dp->v.elts;
158 }
159
160 /**
161  * Resize a flexible array, allocate more data if needed but do NOT
162  * reduce.
163  *
164  * @param elts     The flexible array (pointer to the first element).
165  * @param nelts    The new number of elements.
166  * @param eltsize  The size of the array elements.
167  *
168  * @return A resized flexible array, possibly other address than
169  *         elts.
170  *
171  * @remark Helper function, use ARR_RESIZE() instead.
172  */
173 void *ir_arr_resize(void *elts, int nelts, size_t eltsize)
174 {
175         ir_arr_descr *dp = ARR_DESCR(elts);
176         int n;
177
178         assert((dp->magic == ARR_F_MAGIC) && (nelts >= 0));
179         ARR_VRFY(elts);
180         assert(dp->eltsize ? dp->eltsize == eltsize : (dp->eltsize = eltsize, 1));
181
182         /* @@@ lots of resizes for small nelts */
183         n = MAX(1, dp->u.allocated);
184         while (nelts > n) n <<= 1;
185         while (3*nelts < n) n >>= 1;
186         assert(n >= nelts);
187
188         if (n != dp->u.allocated) {
189                 dp = (ir_arr_descr*) xrealloc(dp, ARR_ELTS_OFFS+eltsize*n);
190                 dp->u.allocated = n;
191         }
192         dp->nelts = nelts;
193
194         return dp->v.elts;
195 }
196
197 #ifdef DEBUG_libfirm
198 /**
199  * This function returns the length of a flexible array.
200  * Do NOT use is in code, use ARR_LEN() macro!
201  * This function is intended to be called from a debugger.
202  */
203 int array_len(const void *arr);
204 int array_len(const void *arr)
205 {
206         return ARR_LEN(arr);
207 }
208
209 /**
210  * This function returns the array descriptor of a flexible array.
211  * Do NOT use is in code!.
212  * This function is intended to be called from a debugger.
213  */
214 ir_arr_descr *array_descr(const void *arr);
215 ir_arr_descr *array_descr(const void *arr)
216 {
217         if (! arr)
218                 return NULL;
219         return ARR_DESCR(arr);
220 }
221 #endif /* DEBUG_libfirm */