diff options
author | dnovillo <dnovillo@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-05-13 06:41:07 +0000 |
---|---|---|
committer | dnovillo <dnovillo@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-05-13 06:41:07 +0000 |
commit | 4ee9c6840ad3fc92a9034343278a1e476ad6872a (patch) | |
tree | a2568888a519c077427b133de9ece5879a8484a5 /libbanshee/engine/array.c | |
parent | ebb338380ab170c91e64d38038e6b5ce930d69a1 (diff) | |
download | linaro-gcc-4ee9c6840ad3fc92a9034343278a1e476ad6872a.tar.gz linaro-gcc-4ee9c6840ad3fc92a9034343278a1e476ad6872a.tar.bz2 linaro-gcc-4ee9c6840ad3fc92a9034343278a1e476ad6872a.zip |
Merge tree-ssa-20020619-branch into mainline.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@81764 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libbanshee/engine/array.c')
-rw-r--r-- | libbanshee/engine/array.c | 96 |
1 files changed, 96 insertions, 0 deletions
diff --git a/libbanshee/engine/array.c b/libbanshee/engine/array.c new file mode 100644 index 00000000000..be297533fa6 --- /dev/null +++ b/libbanshee/engine/array.c @@ -0,0 +1,96 @@ +/* + * Copyright (c) 2000-2001 + * The Regents of the University of California. All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * 1. Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * 2. Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * 3. Neither the name of the University nor the names of its contributors + * may be used to endorse or promote products derived from this software + * without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND + * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE + * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL + * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS + * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) + * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF + * SUCH DAMAGE. + * + */ + +#include <regions.h> +#include <assert.h> +#include <limits.h> +#include "array.h" + +struct array { + region sameregion r; + void *sameregion data; + size_t elemsize; + type_t elemtype; + size_t nelems, nalloc; +}; + +struct array *new_array(region r, size_t initialsize, + size_t typesize, type_t typeinfo) +{ + struct array *a = ralloc(r, struct array); + + a->r = r; + a->data = typed_rarrayalloc(r, initialsize, typesize, typeinfo); + a->elemsize = typesize; + a->elemtype = typeinfo; + a->nelems = 0; + a->nalloc = initialsize; + + return a; +} + +void *array_extend(struct array *a, int by) +{ + size_t oldelems = a->nelems; + + if (by < 0) + assert(((unsigned int)-by) <= a->nelems && by != INT_MIN); + else if (a->nelems + by > a->nalloc) + { + size_t newsize = a->nalloc * 2 + by; + void *newdata = typed_rarrayalloc(a->r, newsize, a->elemsize, a->elemtype); + + /* XXX: could work harder to support really large array sizes + (this code will fail for a->nalloc >= (max(size_t)-by)/2) */ + assert(newsize > a->nalloc); /* die when we get really big */ + typed_rarraycopy(newdata, a->data, a->nelems, a->elemsize, a->elemtype); + a->data = newdata; + a->nalloc = newsize; + } + a->nelems += by; + + return (char *)a->data + a->elemsize * oldelems; +} + +void array_reset(struct array *a) +{ + a->nelems = 0; +} + +size_t array_length(struct array *a) +{ + return a->nelems; +} + +void *array_data(struct array *a) +{ + return a->data; +} + |