- renamed unique_id() to ia32_unique_id() and make it public
[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         ir_arr_descr *dp;
81
82         assert(obstack && (nelts >= 0));
83
84         dp = obstack_alloc(obstack, ARR_ELTS_OFFS + elts_size);
85         ARR_SET_DBGINF(dp, ARR_D_MAGIC, elts_size/nelts);
86         dp->u.obstack = obstack;
87         dp->nelts = nelts;
88         return dp->v.elts;
89 }
90
91 /**
92  * Creates a flexible array.
93  *
94  * @param nelts      The number of elements
95  * @param elts_size  The size of the array elements.
96  *
97  * @return A pointer to the flexible array (can be used as a pointer to the
98  *         first element of this array).
99  *
100  * @remark Helper function, use NEW_ARR_F() instead.
101  */
102 void *ir_new_arr_f(int nelts, size_t elts_size) {
103         ir_arr_descr *new;
104
105         assert (nelts >= 0);
106         new = xmalloc (ARR_ELTS_OFFS+elts_size);
107         ARR_SET_DBGINF (new, ARR_F_MAGIC, nelts ? elts_size/nelts : 0);
108         new->u.allocated = new->nelts = nelts;
109         return new->v.elts;
110 }
111
112 /**
113  * Delete a flexible array.
114  *
115  * @param elts    The flexible array (pointer to the first element).
116  *
117  * @remark Helper function, use DEL_ARR_F() instead.
118  */
119 void ir_del_arr_f(void *elts) {
120         ir_arr_descr *dp = ARR_DESCR (elts);
121
122         ARR_VRFY (elts);
123         assert (dp->magic == ARR_F_MAGIC);
124
125 #ifndef NDEBUG
126         {
127                 ir_arr_descr *wdp = (ir_arr_descr *)dp;
128                 wdp->magic = 0xdeadbeef;
129         }
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         ir_arr_descr *dp = ARR_DESCR (elts);
148
149         assert ((dp->magic == ARR_F_MAGIC) && (nelts >= 0));
150         ARR_VRFY (elts);
151         assert (!dp->eltsize || !nelts || (dp->eltsize == elts_size/nelts));
152
153         dp = 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, int nelts, size_t eltsize) {
173         ir_arr_descr *dp = ARR_DESCR(elts);
174         int n;
175
176         assert((dp->magic == ARR_F_MAGIC) && (nelts >= 0));
177         ARR_VRFY(elts);
178         assert(dp->eltsize ? dp->eltsize == eltsize : (dp->eltsize = eltsize, 1));
179
180         /* @@@ lots of resizes for small nelts */
181         n = MAX(1, dp->u.allocated);
182         while (nelts > n) n <<= 1;
183         while (3*nelts < n) n >>= 1;
184         assert(n >= nelts);
185
186         if (n != dp->u.allocated) {
187                 dp = xrealloc(dp, ARR_ELTS_OFFS+eltsize*n);
188                 dp->u.allocated = n;
189 #if defined(DEBUG) && defined(HAVE_GNU_MALLOC)
190         } else {
191                 tmalloc_tag = NULL;
192 #endif
193         }
194         dp->nelts = nelts;
195
196         return dp->v.elts;
197 }
198
199 #ifdef DEBUG_libfirm
200 /**
201  * This function returns the length of a flexible array.
202  * Do NOT use is in code, use ARR_LEN() macro!
203  * This function is intended to be called from a debugger.
204  */
205 int array_len(const void *arr) {
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         if (! arr)
216                 return NULL;
217         return ARR_DESCR(arr);
218 }
219 #endif /* DEBUG_libfirm */