(__INT_TO_PTR): Revert change of 2003-03-13; it breaks C++ compilation.
[gnulib.git] / lib / obstack.h
1 /* obstack.h - object stack macros
2    Copyright (C) 1988,89,90,91,92,93,94,96,97,98,99,2003 Free Software Foundation, Inc.
3
4    This file is part of the GNU C Library.  Its master source is NOT part of
5    the C library, however.  The master source lives in /gd/gnu/lib.
6
7    NOTE: The canonical source of this file is maintained with the GNU C Library.
8    Bugs can be reported to bug-glibc@gnu.org.
9
10    This program is free software; you can redistribute it and/or modify
11    it under the terms of the GNU General Public License as published by
12    the Free Software Foundation; either version 2, or (at your option)
13    any later version.
14
15    This program is distributed in the hope that it will be useful,
16    but WITHOUT ANY WARRANTY; without even the implied warranty of
17    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18    GNU General Public License for more details.
19
20    You should have received a copy of the GNU General Public License along
21    with this program; if not, write to the Free Software Foundation,
22    Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.  */
23
24 /* Summary:
25
26 All the apparent functions defined here are macros. The idea
27 is that you would use these pre-tested macros to solve a
28 very specific set of problems, and they would run fast.
29 Caution: no side-effects in arguments please!! They may be
30 evaluated MANY times!!
31
32 These macros operate a stack of objects.  Each object starts life
33 small, and may grow to maturity.  (Consider building a word syllable
34 by syllable.)  An object can move while it is growing.  Once it has
35 been "finished" it never changes address again.  So the "top of the
36 stack" is typically an immature growing object, while the rest of the
37 stack is of mature, fixed size and fixed address objects.
38
39 These routines grab large chunks of memory, using a function you
40 supply, called `obstack_chunk_alloc'.  On occasion, they free chunks,
41 by calling `obstack_chunk_free'.  You must define them and declare
42 them before using any obstack macros.
43
44 Each independent stack is represented by a `struct obstack'.
45 Each of the obstack macros expects a pointer to such a structure
46 as the first argument.
47
48 One motivation for this package is the problem of growing char strings
49 in symbol tables.  Unless you are "fascist pig with a read-only mind"
50 --Gosper's immortal quote from HAKMEM item 154, out of context--you
51 would not like to put any arbitrary upper limit on the length of your
52 symbols.
53
54 In practice this often means you will build many short symbols and a
55 few long symbols.  At the time you are reading a symbol you don't know
56 how long it is.  One traditional method is to read a symbol into a
57 buffer, realloc()ating the buffer every time you try to read a symbol
58 that is longer than the buffer.  This is beaut, but you still will
59 want to copy the symbol from the buffer to a more permanent
60 symbol-table entry say about half the time.
61
62 With obstacks, you can work differently.  Use one obstack for all symbol
63 names.  As you read a symbol, grow the name in the obstack gradually.
64 When the name is complete, finalize it.  Then, if the symbol exists already,
65 free the newly read name.
66
67 The way we do this is to take a large chunk, allocating memory from
68 low addresses.  When you want to build a symbol in the chunk you just
69 add chars above the current "high water mark" in the chunk.  When you
70 have finished adding chars, because you got to the end of the symbol,
71 you know how long the chars are, and you can create a new object.
72 Mostly the chars will not burst over the highest address of the chunk,
73 because you would typically expect a chunk to be (say) 100 times as
74 long as an average object.
75
76 In case that isn't clear, when we have enough chars to make up
77 the object, THEY ARE ALREADY CONTIGUOUS IN THE CHUNK (guaranteed)
78 so we just point to it where it lies.  No moving of chars is
79 needed and this is the second win: potentially long strings need
80 never be explicitly shuffled. Once an object is formed, it does not
81 change its address during its lifetime.
82
83 When the chars burst over a chunk boundary, we allocate a larger
84 chunk, and then copy the partly formed object from the end of the old
85 chunk to the beginning of the new larger chunk.  We then carry on
86 accreting characters to the end of the object as we normally would.
87
88 A special macro is provided to add a single char at a time to a
89 growing object.  This allows the use of register variables, which
90 break the ordinary 'growth' macro.
91
92 Summary:
93         We allocate large chunks.
94         We carve out one object at a time from the current chunk.
95         Once carved, an object never moves.
96         We are free to append data of any size to the currently
97           growing object.
98         Exactly one object is growing in an obstack at any one time.
99         You can run one obstack per control block.
100         You may have as many control blocks as you dare.
101         Because of the way we do it, you can `unwind' an obstack
102           back to a previous state. (You may remove objects much
103           as you would with a stack.)
104 */
105
106
107 /* Don't do the contents of this file more than once.  */
108
109 #ifndef _OBSTACK_H
110 #define _OBSTACK_H 1
111
112 #ifdef __cplusplus
113 extern "C" {
114 #endif
115 \f
116 /* We use subtraction of (char *) 0 instead of casting to int
117    because on word-addressable machines a simple cast to int
118    may ignore the byte-within-word field of the pointer.  */
119
120 #ifndef __PTR_TO_INT
121 # define __PTR_TO_INT(P) ((P) - (char *) 0)
122 #endif
123
124 #ifndef __INT_TO_PTR
125 # define __INT_TO_PTR(P) ((P) + (char *) 0)
126 #endif
127
128 /* We need the type of the resulting object.  If __PTRDIFF_TYPE__ is
129    defined, as with GNU C, use that; that way we don't pollute the
130    namespace with <stddef.h>'s symbols.  Otherwise, if <stddef.h> is
131    available, include it and use ptrdiff_t.  In traditional C, long is
132    the best that we can do.  */
133
134 #ifdef __PTRDIFF_TYPE__
135 # define PTR_INT_TYPE __PTRDIFF_TYPE__
136 #else
137 # ifdef HAVE_STDDEF_H
138 #  include <stddef.h>
139 #  define PTR_INT_TYPE ptrdiff_t
140 # else
141 #  define PTR_INT_TYPE long
142 # endif
143 #endif
144
145 #if defined _LIBC || defined HAVE_STRING_H
146 # include <string.h>
147 # define _obstack_memcpy(To, From, N) memcpy ((To), (From), (N))
148 #else
149 # ifdef memcpy
150 #  define _obstack_memcpy(To, From, N) memcpy ((To), (From), (N))
151 # else
152 #  define _obstack_memcpy(To, From, N) bcopy ((From), (To), (N))
153 # endif
154 #endif
155
156 struct _obstack_chunk           /* Lives at front of each chunk. */
157 {
158   char  *limit;                 /* 1 past end of this chunk */
159   struct _obstack_chunk *prev;  /* address of prior chunk or NULL */
160   char  contents[4];            /* objects begin here */
161 };
162
163 struct obstack          /* control current object in current chunk */
164 {
165   long  chunk_size;             /* preferred size to allocate chunks in */
166   struct _obstack_chunk *chunk; /* address of current struct obstack_chunk */
167   char  *object_base;           /* address of object we are building */
168   char  *next_free;             /* where to add next char to current object */
169   char  *chunk_limit;           /* address of char after current chunk */
170   PTR_INT_TYPE temp;            /* Temporary for some macros.  */
171   int   alignment_mask;         /* Mask of alignment for each object. */
172 #if defined __STDC__ && __STDC__
173   /* These prototypes vary based on `use_extra_arg', and we use
174      casts to the prototypeless function type in all assignments,
175      but having prototypes here quiets -Wstrict-prototypes.  */
176   struct _obstack_chunk *(*chunkfun) (void *, long);
177   void (*freefun) (void *, struct _obstack_chunk *);
178   void *extra_arg;              /* first arg for chunk alloc/dealloc funcs */
179 #else
180   struct _obstack_chunk *(*chunkfun) (); /* User's fcn to allocate a chunk.  */
181   void (*freefun) ();           /* User's function to free a chunk.  */
182   char *extra_arg;              /* first arg for chunk alloc/dealloc funcs */
183 #endif
184   unsigned use_extra_arg:1;     /* chunk alloc/dealloc funcs take extra arg */
185   unsigned maybe_empty_object:1;/* There is a possibility that the current
186                                    chunk contains a zero-length object.  This
187                                    prevents freeing the chunk if we allocate
188                                    a bigger chunk to replace it. */
189   unsigned alloc_failed:1;      /* No longer used, as we now call the failed
190                                    handler on error, but retained for binary
191                                    compatibility.  */
192 };
193
194 /* Declare the external functions we use; they are in obstack.c.  */
195
196 #if defined __STDC__ && __STDC__
197 extern void _obstack_newchunk (struct obstack *, int);
198 extern void _obstack_free (struct obstack *, void *);
199 extern int _obstack_begin (struct obstack *, int, int,
200                             void *(*) (long), void (*) (void *));
201 extern int _obstack_begin_1 (struct obstack *, int, int,
202                              void *(*) (void *, long),
203                              void (*) (void *, void *), void *);
204 extern int _obstack_memory_used (struct obstack *);
205 #else
206 extern void _obstack_newchunk ();
207 extern void _obstack_free ();
208 extern int _obstack_begin ();
209 extern int _obstack_begin_1 ();
210 extern int _obstack_memory_used ();
211 #endif
212 \f
213 #if defined __STDC__ && __STDC__
214
215 /* Do the function-declarations after the structs
216    but before defining the macros.  */
217
218 void obstack_init (struct obstack *obstack);
219
220 void * obstack_alloc (struct obstack *obstack, int size);
221
222 void * obstack_copy (struct obstack *obstack, const void *address, int size);
223 void * obstack_copy0 (struct obstack *obstack, const void *address, int size);
224
225 void obstack_free (struct obstack *obstack, void *block);
226
227 void obstack_blank (struct obstack *obstack, int size);
228
229 void obstack_grow (struct obstack *obstack, const void *data, int size);
230 void obstack_grow0 (struct obstack *obstack, const void *data, int size);
231
232 void obstack_1grow (struct obstack *obstack, int data_char);
233 void obstack_ptr_grow (struct obstack *obstack, const void *data);
234 void obstack_int_grow (struct obstack *obstack, int data);
235
236 void * obstack_finish (struct obstack *obstack);
237
238 int obstack_object_size (struct obstack *obstack);
239
240 int obstack_room (struct obstack *obstack);
241 void obstack_make_room (struct obstack *obstack, int size);
242 void obstack_1grow_fast (struct obstack *obstack, int data_char);
243 void obstack_ptr_grow_fast (struct obstack *obstack, const void *data);
244 void obstack_int_grow_fast (struct obstack *obstack, int data);
245 void obstack_blank_fast (struct obstack *obstack, int size);
246
247 void * obstack_base (struct obstack *obstack);
248 void * obstack_next_free (struct obstack *obstack);
249 int obstack_alignment_mask (struct obstack *obstack);
250 int obstack_chunk_size (struct obstack *obstack);
251 int obstack_memory_used (struct obstack *obstack);
252
253 #endif /* __STDC__ */
254
255 /* Non-ANSI C cannot really support alternative functions for these macros,
256    so we do not declare them.  */
257
258 /* Error handler called when `obstack_chunk_alloc' failed to allocate
259    more memory.  This can be set to a user defined function which
260    should either abort gracefully or use longjump - but shouldn't
261    return.  The default action is to print a message and abort.  */
262 #if defined __STDC__ && __STDC__
263 extern void (*obstack_alloc_failed_handler) (void);
264 #else
265 extern void (*obstack_alloc_failed_handler) ();
266 #endif
267
268 /* Exit value used when `print_and_abort' is used.  */
269 extern int obstack_exit_failure;
270 \f
271 /* Pointer to beginning of object being allocated or to be allocated next.
272    Note that this might not be the final address of the object
273    because a new chunk might be needed to hold the final size.  */
274
275 #define obstack_base(h) ((h)->object_base)
276
277 /* Size for allocating ordinary chunks.  */
278
279 #define obstack_chunk_size(h) ((h)->chunk_size)
280
281 /* Pointer to next byte not yet allocated in current chunk.  */
282
283 #define obstack_next_free(h)    ((h)->next_free)
284
285 /* Mask specifying low bits that should be clear in address of an object.  */
286
287 #define obstack_alignment_mask(h) ((h)->alignment_mask)
288
289 /* To prevent prototype warnings provide complete argument list in
290    standard C version.  */
291 #if defined __STDC__ && __STDC__
292
293 # define obstack_init(h)                                        \
294   _obstack_begin ((h), 0, 0,                                    \
295                   (void *(*) (long)) obstack_chunk_alloc,       \
296                   (void (*) (void *)) obstack_chunk_free)
297
298 # define obstack_begin(h, size)                                 \
299   _obstack_begin ((h), (size), 0,                               \
300                   (void *(*) (long)) obstack_chunk_alloc,       \
301                   (void (*) (void *)) obstack_chunk_free)
302
303 # define obstack_specify_allocation(h, size, alignment, chunkfun, freefun) \
304   _obstack_begin ((h), (size), (alignment),                                \
305                   (void *(*) (long)) (chunkfun),                           \
306                   (void (*) (void *)) (freefun))
307
308 # define obstack_specify_allocation_with_arg(h, size, alignment, chunkfun, freefun, arg) \
309   _obstack_begin_1 ((h), (size), (alignment),                           \
310                     (void *(*) (void *, long)) (chunkfun),              \
311                     (void (*) (void *, void *)) (freefun), (arg))
312
313 # define obstack_chunkfun(h, newchunkfun) \
314   ((h) -> chunkfun = (struct _obstack_chunk *(*)(void *, long)) (newchunkfun))
315
316 # define obstack_freefun(h, newfreefun) \
317   ((h) -> freefun = (void (*)(void *, struct _obstack_chunk *)) (newfreefun))
318
319 #else
320
321 # define obstack_init(h)                                                \
322   _obstack_begin ((h), 0, 0,                                            \
323                   (void *(*) ()) obstack_chunk_alloc,                   \
324                   (void (*) ()) obstack_chunk_free)
325
326 # define obstack_begin(h, size)                                         \
327   _obstack_begin ((h), (size), 0,                                       \
328                   (void *(*) ()) obstack_chunk_alloc,                   \
329                   (void (*) ()) obstack_chunk_free)
330
331 # define obstack_specify_allocation(h, size, alignment, chunkfun, freefun) \
332   _obstack_begin ((h), (size), (alignment),                                \
333                   (void *(*) ()) (chunkfun),                               \
334                   (void (*) ()) (freefun))
335
336 # define obstack_specify_allocation_with_arg(h, size, alignment, chunkfun, freefun, arg) \
337   _obstack_begin_1 ((h), (size), (alignment),                           \
338                     (void *(*) ()) (chunkfun),                          \
339                     (void (*) ()) (freefun), (arg))
340
341 # define obstack_chunkfun(h, newchunkfun) \
342   ((h) -> chunkfun = (struct _obstack_chunk *(*)()) (newchunkfun))
343
344 # define obstack_freefun(h, newfreefun) \
345   ((h) -> freefun = (void (*)()) (newfreefun))
346
347 #endif
348
349 #define obstack_1grow_fast(h,achar) (*((h)->next_free)++ = achar)
350
351 #define obstack_blank_fast(h,n) ((h)->next_free += (n))
352
353 #define obstack_memory_used(h) _obstack_memory_used (h)
354 \f
355 #if defined __GNUC__ && defined __STDC__ && __STDC__
356 /* NextStep 2.0 cc is really gcc 1.93 but it defines __GNUC__ = 2 and
357    does not implement __extension__.  But that compiler doesn't define
358    __GNUC_MINOR__.  */
359 # if __GNUC__ < 2 || (__NeXT__ && !__GNUC_MINOR__)
360 #  define __extension__
361 # endif
362
363 /* For GNU C, if not -traditional,
364    we can define these macros to compute all args only once
365    without using a global variable.
366    Also, we can avoid using the `temp' slot, to make faster code.  */
367
368 # define obstack_object_size(OBSTACK)                                   \
369   __extension__                                                         \
370   ({ struct obstack const *__o = (OBSTACK);                             \
371      (unsigned) (__o->next_free - __o->object_base); })
372
373 # define obstack_room(OBSTACK)                                          \
374   __extension__                                                         \
375   ({ struct obstack const *__o = (OBSTACK);                             \
376      (unsigned) (__o->chunk_limit - __o->next_free); })
377
378 # define obstack_make_room(OBSTACK,length)                              \
379 __extension__                                                           \
380 ({ struct obstack *__o = (OBSTACK);                                     \
381    int __len = (length);                                                \
382    if (__o->chunk_limit - __o->next_free < __len)                       \
383      _obstack_newchunk (__o, __len);                                    \
384    (void) 0; })
385
386 # define obstack_empty_p(OBSTACK)                                       \
387   __extension__                                                         \
388   ({ struct obstack const *__o = (OBSTACK);                             \
389      (__o->chunk->prev == 0 && __o->next_free - __o->chunk->contents == 0); })
390
391 # define obstack_grow(OBSTACK,where,length)                             \
392 __extension__                                                           \
393 ({ struct obstack *__o = (OBSTACK);                                     \
394    int __len = (length);                                                \
395    if (__o->next_free + __len > __o->chunk_limit)                       \
396      _obstack_newchunk (__o, __len);                                    \
397    _obstack_memcpy (__o->next_free, (where), __len);                    \
398    __o->next_free += __len;                                             \
399    (void) 0; })
400
401 # define obstack_grow0(OBSTACK,where,length)                            \
402 __extension__                                                           \
403 ({ struct obstack *__o = (OBSTACK);                                     \
404    int __len = (length);                                                \
405    if (__o->next_free + __len + 1 > __o->chunk_limit)                   \
406      _obstack_newchunk (__o, __len + 1);                                \
407    _obstack_memcpy (__o->next_free, (where), __len);                    \
408    __o->next_free += __len;                                             \
409    *(__o->next_free)++ = 0;                                             \
410    (void) 0; })
411
412 # define obstack_1grow(OBSTACK,datum)                                   \
413 __extension__                                                           \
414 ({ struct obstack *__o = (OBSTACK);                                     \
415    if (__o->next_free + 1 > __o->chunk_limit)                           \
416      _obstack_newchunk (__o, 1);                                        \
417    *(__o->next_free)++ = (datum);                                       \
418    (void) 0; })
419
420 /* These assume that the obstack alignment is good enough for pointers
421    or ints, and that the data added so far to the current object
422    shares that much alignment.  */
423
424 # define obstack_ptr_grow(OBSTACK,datum)                                \
425 __extension__                                                           \
426 ({ struct obstack *__o = (OBSTACK);                                     \
427    if (__o->next_free + sizeof (void *) > __o->chunk_limit)             \
428      _obstack_newchunk (__o, sizeof (void *));                          \
429    *((void **)__o->next_free)++ = (datum);                              \
430    (void) 0; })
431
432 # define obstack_int_grow(OBSTACK,datum)                                \
433 __extension__                                                           \
434 ({ struct obstack *__o = (OBSTACK);                                     \
435    if (__o->next_free + sizeof (int) > __o->chunk_limit)                \
436      _obstack_newchunk (__o, sizeof (int));                             \
437    *((int *)__o->next_free)++ = (datum);                                \
438    (void) 0; })
439
440 # define obstack_ptr_grow_fast(h,aptr)                                  \
441   (*((void **) (h)->next_free)++ = (aptr))
442
443 # define obstack_int_grow_fast(h,aint)                                  \
444   (*((int *) (h)->next_free)++ = (aint))
445
446 # define obstack_blank(OBSTACK,length)                                  \
447 __extension__                                                           \
448 ({ struct obstack *__o = (OBSTACK);                                     \
449    int __len = (length);                                                \
450    if (__o->chunk_limit - __o->next_free < __len)                       \
451      _obstack_newchunk (__o, __len);                                    \
452    __o->next_free += __len;                                             \
453    (void) 0; })
454
455 # define obstack_alloc(OBSTACK,length)                                  \
456 __extension__                                                           \
457 ({ struct obstack *__h = (OBSTACK);                                     \
458    obstack_blank (__h, (length));                                       \
459    obstack_finish (__h); })
460
461 # define obstack_copy(OBSTACK,where,length)                             \
462 __extension__                                                           \
463 ({ struct obstack *__h = (OBSTACK);                                     \
464    obstack_grow (__h, (where), (length));                               \
465    obstack_finish (__h); })
466
467 # define obstack_copy0(OBSTACK,where,length)                            \
468 __extension__                                                           \
469 ({ struct obstack *__h = (OBSTACK);                                     \
470    obstack_grow0 (__h, (where), (length));                              \
471    obstack_finish (__h); })
472
473 /* The local variable is named __o1 to avoid a name conflict
474    when obstack_blank is called.  */
475 # define obstack_finish(OBSTACK)                                        \
476 __extension__                                                           \
477 ({ struct obstack *__o1 = (OBSTACK);                                    \
478    void *value;                                                         \
479    value = (void *) __o1->object_base;                                  \
480    if (__o1->next_free == value)                                        \
481      __o1->maybe_empty_object = 1;                                      \
482    __o1->next_free                                                      \
483      = __INT_TO_PTR ((__PTR_TO_INT (__o1->next_free)+__o1->alignment_mask)\
484                      & ~ (__o1->alignment_mask));                       \
485    if (__o1->next_free - (char *)__o1->chunk                            \
486        > __o1->chunk_limit - (char *)__o1->chunk)                       \
487      __o1->next_free = __o1->chunk_limit;                               \
488    __o1->object_base = __o1->next_free;                                 \
489    value; })
490
491 # define obstack_free(OBSTACK, OBJ)                                     \
492 __extension__                                                           \
493 ({ struct obstack *__o = (OBSTACK);                                     \
494    void *__obj = (OBJ);                                                 \
495    if (__obj > (void *)__o->chunk && __obj < (void *)__o->chunk_limit)  \
496      __o->next_free = __o->object_base = (char *)__obj;                 \
497    else (obstack_free) (__o, __obj); })
498 \f
499 #else /* not __GNUC__ or not __STDC__ */
500
501 # define obstack_object_size(h) \
502  (unsigned) ((h)->next_free - (h)->object_base)
503
504 # define obstack_room(h)                \
505  (unsigned) ((h)->chunk_limit - (h)->next_free)
506
507 # define obstack_empty_p(h) \
508  ((h)->chunk->prev == 0 && (h)->next_free - (h)->chunk->contents == 0)
509
510 /* Note that the call to _obstack_newchunk is enclosed in (..., 0)
511    so that we can avoid having void expressions
512    in the arms of the conditional expression.
513    Casting the third operand to void was tried before,
514    but some compilers won't accept it.  */
515
516 # define obstack_make_room(h,length)                                    \
517 ( (h)->temp = (length),                                                 \
518   (((h)->next_free + (h)->temp > (h)->chunk_limit)                      \
519    ? (_obstack_newchunk ((h), (h)->temp), 0) : 0))
520
521 # define obstack_grow(h,where,length)                                   \
522 ( (h)->temp = (length),                                                 \
523   (((h)->next_free + (h)->temp > (h)->chunk_limit)                      \
524    ? (_obstack_newchunk ((h), (h)->temp), 0) : 0),                      \
525   _obstack_memcpy ((h)->next_free, (where), (h)->temp),                 \
526   (h)->next_free += (h)->temp)
527
528 # define obstack_grow0(h,where,length)                                  \
529 ( (h)->temp = (length),                                                 \
530   (((h)->next_free + (h)->temp + 1 > (h)->chunk_limit)                  \
531    ? (_obstack_newchunk ((h), (h)->temp + 1), 0) : 0),                  \
532   _obstack_memcpy ((h)->next_free, (where), (h)->temp),                 \
533   (h)->next_free += (h)->temp,                                          \
534   *((h)->next_free)++ = 0)
535
536 # define obstack_1grow(h,datum)                                         \
537 ( (((h)->next_free + 1 > (h)->chunk_limit)                              \
538    ? (_obstack_newchunk ((h), 1), 0) : 0),                              \
539   (*((h)->next_free)++ = (datum)))
540
541 # define obstack_ptr_grow(h,datum)                                      \
542 ( (((h)->next_free + sizeof (char *) > (h)->chunk_limit)                \
543    ? (_obstack_newchunk ((h), sizeof (char *)), 0) : 0),                \
544   (*((const char **) (((h)->next_free+=sizeof(char *))-sizeof(char *))) = (datum)))
545
546 # define obstack_int_grow(h,datum)                                      \
547 ( (((h)->next_free + sizeof (int) > (h)->chunk_limit)                   \
548    ? (_obstack_newchunk ((h), sizeof (int)), 0) : 0),                   \
549   (*((int *) (((h)->next_free+=sizeof(int))-sizeof(int))) = (datum)))
550
551 # define obstack_ptr_grow_fast(h,aptr)                                  \
552   (*((const char **) (h)->next_free)++ = (aptr))
553
554 # define obstack_int_grow_fast(h,aint)                                  \
555   (*((int *) (h)->next_free)++ = (aint))
556
557 # define obstack_blank(h,length)                                        \
558 ( (h)->temp = (length),                                                 \
559   (((h)->chunk_limit - (h)->next_free < (h)->temp)                      \
560    ? (_obstack_newchunk ((h), (h)->temp), 0) : 0),                      \
561   ((h)->next_free += (h)->temp))
562
563 # define obstack_alloc(h,length)                                        \
564  (obstack_blank ((h), (length)), obstack_finish ((h)))
565
566 # define obstack_copy(h,where,length)                                   \
567  (obstack_grow ((h), (where), (length)), obstack_finish ((h)))
568
569 # define obstack_copy0(h,where,length)                                  \
570  (obstack_grow0 ((h), (where), (length)), obstack_finish ((h)))
571
572 # define obstack_finish(h)                                              \
573 ( ((h)->next_free == (h)->object_base                                   \
574    ? (((h)->maybe_empty_object = 1), 0)                                 \
575    : 0),                                                                \
576   (h)->temp = __PTR_TO_INT ((h)->object_base),                          \
577   (h)->next_free                                                        \
578     = __INT_TO_PTR ((__PTR_TO_INT ((h)->next_free)+(h)->alignment_mask) \
579                     & ~ ((h)->alignment_mask)),                         \
580   (((h)->next_free - (char *) (h)->chunk                                \
581     > (h)->chunk_limit - (char *) (h)->chunk)                           \
582    ? ((h)->next_free = (h)->chunk_limit) : 0),                          \
583   (h)->object_base = (h)->next_free,                                    \
584   (void *) __INT_TO_PTR ((h)->temp))
585
586 # if defined __STDC__ && __STDC__
587 #  define obstack_free(h,obj)                                           \
588 ( (h)->temp = (char *) (obj) - (char *) (h)->chunk,                     \
589   (((h)->temp > 0 && (h)->temp < (h)->chunk_limit - (char *) (h)->chunk)\
590    ? (int) ((h)->next_free = (h)->object_base                           \
591             = (h)->temp + (char *) (h)->chunk)                          \
592    : (((obstack_free) ((h), (h)->temp + (char *) (h)->chunk), 0), 0)))
593 # else
594 #  define obstack_free(h,obj)                                           \
595 ( (h)->temp = (char *) (obj) - (char *) (h)->chunk,                     \
596   (((h)->temp > 0 && (h)->temp < (h)->chunk_limit - (char *) (h)->chunk)\
597    ? (int) ((h)->next_free = (h)->object_base                           \
598             = (h)->temp + (char *) (h)->chunk)                          \
599    : (_obstack_free ((h), (h)->temp + (char *) (h)->chunk), 0)))
600 # endif
601
602 #endif /* not __GNUC__ or not __STDC__ */
603
604 #ifdef __cplusplus
605 }       /* C++ */
606 #endif
607
608 #endif /* obstack.h */