X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=ir%2Fadt%2Farray.c;h=75ce38bca8fd32ce5793962e8b26986b38eddb35;hb=c79fe4adc914d8d867772053bedf449a4f85645d;hp=f6d8486e3b8e1c37612ca1c4674ab87fc39f257d;hpb=974215da1a935f250766874d0f7a7ddfa34bc4ef;p=libfirm diff --git a/ir/adt/array.c b/ir/adt/array.c index f6d8486e3..75ce38bca 100644 --- a/ir/adt/array.c +++ b/ir/adt/array.c @@ -1,5 +1,5 @@ /* - * Copyright (C) 1995-2007 University of Karlsruhe. All right reserved. + * Copyright (C) 1995-2008 University of Karlsruhe. All right reserved. * * This file is part of libFirm. * @@ -24,15 +24,11 @@ * @version $Id$ */ -#ifdef HAVE_CONFIG_H -# include "config.h" -#endif +#include "config.h" -#ifdef HAVE_STDLIB_H -# include -#endif +#include -#include "array.h" +#include "array_t.h" #include "xmalloc.h" /* Undefine the macros to get the functions instead, cf tmalloc.c. */ @@ -49,13 +45,24 @@ #endif /** - * An empty dynamic array + * An empty dynamic array descriptor. */ -_arr_descr arr_mt_descr +ir_arr_descr arr_mt_descr = { ARR_D_MAGIC, 0, {0}, 0, {{{0}}} }; + +void ir_verify_arr(const void *arr) +{ #ifndef NDEBUG - = { ARR_D_MAGIC } + ir_arr_descr *descr = ARR_DESCR(arr); + assert(descr->magic == ARR_D_MAGIC || descr->magic == ARR_A_MAGIC + || descr->magic == ARR_F_MAGIC); + if (descr->magic == ARR_F_MAGIC) { + assert(descr->u.allocated >= descr->nelts); + } + assert(descr->nelts >= 0); +#else + (void) arr; #endif -; +} /** * Creates a dynamic array on a obstack. @@ -69,18 +76,17 @@ _arr_descr arr_mt_descr * * @remark Helper function, use NEW_ARR_D() instead. */ -void * -_new_arr_d (struct obstack *obstack, int nelts, size_t elts_size) +void *ir_new_arr_d(struct obstack *obstack, int nelts, size_t elts_size) { - _arr_descr *new; + ir_arr_descr *dp; - assert (obstack && (nelts >= 0)); + assert(obstack && (nelts >= 0)); - new = obstack_alloc (obstack, _ARR_ELTS_OFFS+elts_size); - _ARR_SET_DBGINF (new, ARR_D_MAGIC, elts_size/nelts); - new->u.obstack = obstack; - new->nelts = nelts; - return new->v.elts; + dp = obstack_alloc(obstack, ARR_ELTS_OFFS + elts_size); + ARR_SET_DBGINF(dp, ARR_D_MAGIC, elts_size/nelts); + dp->u.obstack = obstack; + dp->nelts = nelts; + return dp->v.elts; } /** @@ -94,16 +100,15 @@ _new_arr_d (struct obstack *obstack, int nelts, size_t elts_size) * * @remark Helper function, use NEW_ARR_F() instead. */ -void * -_new_arr_f (int nelts, size_t elts_size) +void *ir_new_arr_f(int nelts, size_t elts_size) { - _arr_descr *new; + ir_arr_descr *new; - assert (nelts >= 0); - new = xmalloc (_ARR_ELTS_OFFS+elts_size); - _ARR_SET_DBGINF (new, ARR_F_MAGIC, nelts ? elts_size/nelts : 0); - new->u.allocated = new->nelts = nelts; - return new->v.elts; + assert (nelts >= 0); + new = xmalloc (ARR_ELTS_OFFS+elts_size); + ARR_SET_DBGINF (new, ARR_F_MAGIC, nelts ? elts_size/nelts : 0); + new->u.allocated = new->nelts = nelts; + return new->v.elts; } /** @@ -113,18 +118,20 @@ _new_arr_f (int nelts, size_t elts_size) * * @remark Helper function, use DEL_ARR_F() instead. */ -void -_del_arr_f (void *elts) +void ir_del_arr_f(void *elts) { - _arr_descr *dp = _ARR_DESCR (elts); + ir_arr_descr *dp = ARR_DESCR (elts); - ARR_VRFY (elts); - assert (dp->magic == ARR_F_MAGIC); + ARR_VRFY (elts); + assert (dp->magic == ARR_F_MAGIC); #ifndef NDEBUG - dp->magic = 0xdeadbeef; + { + ir_arr_descr *wdp = (ir_arr_descr *)dp; + wdp->magic = 0xdeadbeef; + } #endif - free (dp); + free(dp); } /** @@ -139,19 +146,18 @@ _del_arr_f (void *elts) * * @remark Helper function, use ARR_SETLEN() instead. */ -void * -_arr_setlen (void *elts, int nelts, size_t elts_size) +void *ir_arr_setlen (void *elts, int nelts, size_t elts_size) { - _arr_descr *dp = _ARR_DESCR (elts); + ir_arr_descr *dp = ARR_DESCR (elts); - assert ((dp->magic == ARR_F_MAGIC) && (nelts >= 0)); - ARR_VRFY (elts); - assert (!dp->eltsize || !nelts || (dp->eltsize == elts_size/nelts)); + assert ((dp->magic == ARR_F_MAGIC) && (nelts >= 0)); + ARR_VRFY (elts); + assert (!dp->eltsize || !nelts || (dp->eltsize == elts_size/nelts)); - dp = xrealloc (dp, _ARR_ELTS_OFFS+elts_size); - dp->u.allocated = dp->nelts = nelts; + dp = xrealloc (dp, ARR_ELTS_OFFS+elts_size); + dp->u.allocated = dp->nelts = nelts; - return dp->v.elts; + return dp->v.elts; } /** @@ -167,33 +173,32 @@ _arr_setlen (void *elts, int nelts, size_t elts_size) * * @remark Helper function, use ARR_RESIZE() instead. */ -void * -_arr_resize (void *elts, int nelts, size_t eltsize) +void *ir_arr_resize(void *elts, int nelts, size_t eltsize) { - _arr_descr *dp = _ARR_DESCR (elts); - int n; - - assert ((dp->magic == ARR_F_MAGIC) && (nelts >= 0)); - ARR_VRFY (elts); - assert (dp->eltsize ? dp->eltsize == eltsize : (dp->eltsize = eltsize, 1)); - - /* @@@ lots of resizes for small nelts */ - n = MAX (1, dp->u.allocated); - while (nelts > n) n <<= 1; - while (3*nelts < n) n >>= 1; - assert (n >= nelts); - - if (n != dp->u.allocated) { - dp = xrealloc (dp, _ARR_ELTS_OFFS+eltsize*n); - dp->u.allocated = n; + ir_arr_descr *dp = ARR_DESCR(elts); + int n; + + assert((dp->magic == ARR_F_MAGIC) && (nelts >= 0)); + ARR_VRFY(elts); + assert(dp->eltsize ? dp->eltsize == eltsize : (dp->eltsize = eltsize, 1)); + + /* @@@ lots of resizes for small nelts */ + n = MAX(1, dp->u.allocated); + while (nelts > n) n <<= 1; + while (3*nelts < n) n >>= 1; + assert(n >= nelts); + + if (n != dp->u.allocated) { + dp = xrealloc(dp, ARR_ELTS_OFFS+eltsize*n); + dp->u.allocated = n; #if defined(DEBUG) && defined(HAVE_GNU_MALLOC) - } else { - tmalloc_tag = NULL; + } else { + tmalloc_tag = NULL; #endif - } - dp->nelts = nelts; + } + dp->nelts = nelts; - return dp->v.elts; + return dp->v.elts; } #ifdef DEBUG_libfirm @@ -202,8 +207,10 @@ _arr_resize (void *elts, int nelts, size_t eltsize) * Do NOT use is in code, use ARR_LEN() macro! * This function is intended to be called from a debugger. */ -int array_len(void *arr) { - return ARR_LEN(arr); +int array_len(const void *arr); +int array_len(const void *arr) +{ + return ARR_LEN(arr); } /** @@ -211,9 +218,11 @@ int array_len(void *arr) { * Do NOT use is in code!. * This function is intended to be called from a debugger. */ -_arr_descr *array_descr(void *arr) { - if (! arr) - return NULL; - return _ARR_DESCR(arr); +ir_arr_descr *array_descr(const void *arr); +ir_arr_descr *array_descr(const void *arr) +{ + if (! arr) + return NULL; + return ARR_DESCR(arr); } #endif /* DEBUG_libfirm */