| [10] | 1 | /* obstack.c - subroutines used implicitly by object stack macros
|
|---|
| 2 | Copyright (C) 1988,89,90,91,92,93,94,96,97 Free Software Foundation, Inc.
|
|---|
| 3 |
|
|---|
| 4 |
|
|---|
| 5 | NOTE: This source is derived from an old version taken from the GNU C
|
|---|
| 6 | Library (glibc).
|
|---|
| 7 |
|
|---|
| 8 | This program is free software; you can redistribute it and/or modify it
|
|---|
| 9 | under the terms of the GNU General Public License as published by the
|
|---|
| 10 | Free Software Foundation; either version 2, or (at your option) any
|
|---|
| 11 | later version.
|
|---|
| 12 |
|
|---|
| 13 | This program is distributed in the hope that it will be useful,
|
|---|
| 14 | but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|---|
| 15 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|---|
| 16 | GNU General Public License for more details.
|
|---|
| 17 |
|
|---|
| 18 | You should have received a copy of the GNU General Public License
|
|---|
| 19 | along with this program; if not, write to the Free Software
|
|---|
| 20 | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307,
|
|---|
| 21 | USA. */
|
|---|
| 22 |
|
|---|
| 23 | #ifdef HAVE_CONFIG_H
|
|---|
| 24 | #include <config.h>
|
|---|
| 25 | #endif
|
|---|
| 26 |
|
|---|
| 27 | #include "obstack.h"
|
|---|
| 28 |
|
|---|
| 29 | /* NOTE BEFORE MODIFYING THIS FILE: This version number must be
|
|---|
| 30 | incremented whenever callers compiled using an old obstack.h can no
|
|---|
| 31 | longer properly call the functions in this obstack.c. */
|
|---|
| 32 | #define OBSTACK_INTERFACE_VERSION 1
|
|---|
| 33 |
|
|---|
| 34 | /* Comment out all this code if we are using the GNU C Library, and are not
|
|---|
| 35 | actually compiling the library itself, and the installed library
|
|---|
| 36 | supports the same library interface we do. This code is part of the GNU
|
|---|
| 37 | C Library, but also included in many other GNU distributions. Compiling
|
|---|
| 38 | and linking in this code is a waste when using the GNU C library
|
|---|
| 39 | (especially if it is a shared library). Rather than having every GNU
|
|---|
| 40 | program understand `configure --with-gnu-libc' and omit the object
|
|---|
| 41 | files, it is simpler to just do this in the source for each such file. */
|
|---|
| 42 |
|
|---|
| 43 | #include <stdio.h> /* Random thing to get __GNU_LIBRARY__. */
|
|---|
| 44 | #if !defined (_LIBC) && defined (__GNU_LIBRARY__) && __GNU_LIBRARY__ > 1
|
|---|
| 45 | #include <gnu-versions.h>
|
|---|
| 46 | #if _GNU_OBSTACK_INTERFACE_VERSION == OBSTACK_INTERFACE_VERSION
|
|---|
| 47 | #define ELIDE_CODE
|
|---|
| 48 | #endif
|
|---|
| 49 | #endif
|
|---|
| 50 |
|
|---|
| 51 |
|
|---|
| 52 | #ifndef ELIDE_CODE
|
|---|
| 53 |
|
|---|
| 54 |
|
|---|
| 55 | #if defined (__STDC__) && __STDC__
|
|---|
| 56 | #define POINTER void *
|
|---|
| 57 | #else
|
|---|
| 58 | #define POINTER char *
|
|---|
| 59 | #endif
|
|---|
| 60 |
|
|---|
| 61 | /* Determine default alignment. */
|
|---|
| 62 | struct fooalign {char x; double d;};
|
|---|
| 63 | #define DEFAULT_ALIGNMENT \
|
|---|
| 64 | ((PTR_INT_TYPE) ((char *) &((struct fooalign *) 0)->d - (char *) 0))
|
|---|
| 65 | /* If malloc were really smart, it would round addresses to DEFAULT_ALIGNMENT.
|
|---|
| 66 | But in fact it might be less smart and round addresses to as much as
|
|---|
| 67 | DEFAULT_ROUNDING. So we prepare for it to do that. */
|
|---|
| 68 | union fooround {long x; double d;};
|
|---|
| 69 | #define DEFAULT_ROUNDING (sizeof (union fooround))
|
|---|
| 70 |
|
|---|
| 71 | /* When we copy a long block of data, this is the unit to do it with.
|
|---|
| 72 | On some machines, copying successive ints does not work;
|
|---|
| 73 | in such a case, redefine COPYING_UNIT to `long' (if that works)
|
|---|
| 74 | or `char' as a last resort. */
|
|---|
| 75 | #ifndef COPYING_UNIT
|
|---|
| 76 | #define COPYING_UNIT int
|
|---|
| 77 | #endif
|
|---|
| 78 |
|
|---|
| 79 |
|
|---|
| 80 | /* The functions allocating more room by calling `obstack_chunk_alloc'
|
|---|
| 81 | jump to the handler pointed to by `obstack_alloc_failed_handler'.
|
|---|
| 82 | This variable by default points to the internal function
|
|---|
| 83 | `print_and_abort'. */
|
|---|
| 84 | #if defined (__STDC__) && __STDC__
|
|---|
| 85 | static void print_and_abort (void);
|
|---|
| 86 | void (*obstack_alloc_failed_handler) (void) = print_and_abort;
|
|---|
| 87 | #else
|
|---|
| 88 | static void print_and_abort ();
|
|---|
| 89 | void (*obstack_alloc_failed_handler) () = print_and_abort;
|
|---|
| 90 | #endif
|
|---|
| 91 |
|
|---|
| 92 | /* Exit value used when `print_and_abort' is used. */
|
|---|
| 93 | #if defined __GNU_LIBRARY__ || defined HAVE_STDLIB_H
|
|---|
| 94 | #include <stdlib.h>
|
|---|
| 95 | #endif
|
|---|
| 96 | #ifndef EXIT_FAILURE
|
|---|
| 97 | #define EXIT_FAILURE 1
|
|---|
| 98 | #endif
|
|---|
| 99 | int obstack_exit_failure = EXIT_FAILURE;
|
|---|
| 100 |
|
|---|
| 101 | /* The non-GNU-C macros copy the obstack into this global variable
|
|---|
| 102 | to avoid multiple evaluation. */
|
|---|
| 103 |
|
|---|
| 104 | struct obstack *_obstack;
|
|---|
| 105 |
|
|---|
| 106 | /* Define a macro that either calls functions with the traditional malloc/free
|
|---|
| 107 | calling interface, or calls functions with the mmalloc/mfree interface
|
|---|
| 108 | (that adds an extra first argument), based on the state of use_extra_arg.
|
|---|
| 109 | For free, do not use ?:, since some compilers, like the MIPS compilers,
|
|---|
| 110 | do not allow (expr) ? void : void. */
|
|---|
| 111 |
|
|---|
| 112 | #if defined (__STDC__) && __STDC__
|
|---|
| 113 | #define CALL_CHUNKFUN(h, size) \
|
|---|
| 114 | (((h) -> use_extra_arg) \
|
|---|
| 115 | ? (*(h)->chunkfun) ((h)->extra_arg, (size)) \
|
|---|
| 116 | : (*(struct _obstack_chunk *(*) (long)) (h)->chunkfun) ((size)))
|
|---|
| 117 |
|
|---|
| 118 | #define CALL_FREEFUN(h, old_chunk) \
|
|---|
| 119 | do { \
|
|---|
| 120 | if ((h) -> use_extra_arg) \
|
|---|
| 121 | (*(h)->freefun) ((h)->extra_arg, (old_chunk)); \
|
|---|
| 122 | else \
|
|---|
| 123 | (*(void (*) (void *)) (h)->freefun) ((old_chunk)); \
|
|---|
| 124 | } while (0)
|
|---|
| 125 | #else
|
|---|
| 126 | #define CALL_CHUNKFUN(h, size) \
|
|---|
| 127 | (((h) -> use_extra_arg) \
|
|---|
| 128 | ? (*(h)->chunkfun) ((h)->extra_arg, (size)) \
|
|---|
| 129 | : (*(struct _obstack_chunk *(*) ()) (h)->chunkfun) ((size)))
|
|---|
| 130 |
|
|---|
| 131 | #define CALL_FREEFUN(h, old_chunk) \
|
|---|
| 132 | do { \
|
|---|
| 133 | if ((h) -> use_extra_arg) \
|
|---|
| 134 | (*(h)->freefun) ((h)->extra_arg, (old_chunk)); \
|
|---|
| 135 | else \
|
|---|
| 136 | (*(void (*) ()) (h)->freefun) ((old_chunk)); \
|
|---|
| 137 | } while (0)
|
|---|
| 138 | #endif
|
|---|
| 139 |
|
|---|
| 140 | |
|---|
| 141 |
|
|---|
| 142 | /* Initialize an obstack H for use. Specify chunk size SIZE (0 means default).
|
|---|
| 143 | Objects start on multiples of ALIGNMENT (0 means use default).
|
|---|
| 144 | CHUNKFUN is the function to use to allocate chunks,
|
|---|
| 145 | and FREEFUN the function to free them.
|
|---|
| 146 |
|
|---|
| 147 | Return nonzero if successful, zero if out of memory.
|
|---|
| 148 | To recover from an out of memory error,
|
|---|
| 149 | free up some memory, then call this again. */
|
|---|
| 150 |
|
|---|
| 151 | int
|
|---|
| 152 | _obstack_begin (h, size, alignment, chunkfun, freefun)
|
|---|
| |
|---|