107#ifndef _OBSTACK_INTERFACE_VERSION
108# define _OBSTACK_INTERFACE_VERSION 2
114#if __STDC_VERSION__ < 199901L || defined __HP_cc
115# define __FLEXIBLE_ARRAY_MEMBER 1
117# define __FLEXIBLE_ARRAY_MEMBER
120#if _OBSTACK_INTERFACE_VERSION == 1
123# define _OBSTACK_SIZE_T unsigned int
124# define _CHUNK_SIZE_T unsigned long
125# define _OBSTACK_CAST(type, expr) ((type) (expr))
128# define _OBSTACK_SIZE_T size_t
129# define _CHUNK_SIZE_T size_t
130# define _OBSTACK_CAST(type, expr) (expr)
137#define __BPTR_ALIGN(B, P, A) ((B) + (((P) - (B) + (A)) & ~(A)))
146#define __PTR_ALIGN(B, P, A) \
147 __BPTR_ALIGN (sizeof (ptrdiff_t) < sizeof (void *) ? (B) : (char *) 0, \
150#ifndef __attribute_pure__
151# define __attribute_pure__
155#ifndef __attribute_noreturn__
156# if 2 < __GNUC__ + (8 <= __GNUC_MINOR__) || 0x5110 <= __SUNPRO_C
157# define __attribute_noreturn__ __attribute__ ((__noreturn__))
159# define __attribute_noreturn__
191 void *(*plain) (size_t);
192 void *(*extra) (
void *, size_t);
217 void *(*) (
size_t),
void (*) (
void *));
220 void *(*) (
void *,
size_t),
221 void (*) (
void *,
void *),
void *);
239#define obstack_base(h) ((void *) (h)->object_base)
243#define obstack_chunk_size(h) ((h)->chunk_size)
247#define obstack_next_free(h) ((void *) (h)->next_free)
251#define obstack_alignment_mask(h) ((h)->alignment_mask)
254#define obstack_init(h) \
255 _obstack_begin ((h), 0, 0, \
256 _OBSTACK_CAST (void *(*) (size_t), obstack_chunk_alloc), \
257 _OBSTACK_CAST (void (*) (void *), obstack_chunk_free))
259#define obstack_begin(h, size) \
260 _obstack_begin ((h), (size), 0, \
261 _OBSTACK_CAST (void *(*) (size_t), obstack_chunk_alloc), \
262 _OBSTACK_CAST (void (*) (void *), obstack_chunk_free))
264#define obstack_specify_allocation(h, size, alignment, chunkfun, freefun) \
265 _obstack_begin ((h), (size), (alignment), \
266 _OBSTACK_CAST (void *(*) (size_t), chunkfun), \
267 _OBSTACK_CAST (void (*) (void *), freefun))
269#define obstack_specify_allocation_with_arg(h, size, alignment, chunkfun, freefun, arg) \
270 _obstack_begin_1 ((h), (size), (alignment), \
271 _OBSTACK_CAST (void *(*) (void *, size_t), chunkfun), \
272 _OBSTACK_CAST (void (*) (void *, void *), freefun), arg)
274#define obstack_chunkfun(h, newchunkfun) \
275 ((void) ((h)->chunkfun.extra = (void *(*) (void *, size_t)) (newchunkfun)))
277#define obstack_freefun(h, newfreefun) \
278 ((void) ((h)->freefun.extra = (void *(*) (void *, void *)) (newfreefun)))
280#define obstack_1grow_fast(h, achar) ((void) (*((h)->next_free)++ = (achar)))
282#define obstack_blank_fast(h, n) ((void) ((h)->next_free += (n)))
284#define obstack_memory_used(h) _obstack_memory_used (h)
287# if !defined __GNUC_MINOR__ || __GNUC__ * 1000 + __GNUC_MINOR__ < 2008
288# define __extension__
296# define obstack_object_size(OBSTACK) \
298 ({ struct obstack const *__o = (OBSTACK); \
299 (_OBSTACK_SIZE_T) (__o->next_free - __o->object_base); })
303# define obstack_room(OBSTACK) \
305 ({ struct obstack const *__o1 = (OBSTACK); \
306 (_OBSTACK_SIZE_T) (__o1->chunk_limit - __o1->next_free); })
308# define obstack_make_room(OBSTACK, length) \
310 ({ struct obstack *__o = (OBSTACK); \
311 _OBSTACK_SIZE_T __len = (length); \
312 if (obstack_room (__o) < __len) \
313 _obstack_newchunk (__o, __len); \
316# define obstack_empty_p(OBSTACK) \
318 ({ struct obstack const *__o = (OBSTACK); \
319 (__o->chunk->prev == 0 \
320 && __o->next_free == __PTR_ALIGN ((char *) __o->chunk, \
321 __o->chunk->contents, \
322 __o->alignment_mask)); })
324# define obstack_grow(OBSTACK, where, length) \
326 ({ struct obstack *__o = (OBSTACK); \
327 _OBSTACK_SIZE_T __len = (length); \
328 if (obstack_room (__o) < __len) \
329 _obstack_newchunk (__o, __len); \
330 memcpy (__o->next_free, where, __len); \
331 __o->next_free += __len; \
334# define obstack_grow0(OBSTACK, where, length) \
336 ({ struct obstack *__o = (OBSTACK); \
337 _OBSTACK_SIZE_T __len = (length); \
338 if (obstack_room (__o) < __len + 1) \
339 _obstack_newchunk (__o, __len + 1); \
340 memcpy (__o->next_free, where, __len); \
341 __o->next_free += __len; \
342 *(__o->next_free)++ = 0; \
345# define obstack_1grow(OBSTACK, datum) \
347 ({ struct obstack *__o = (OBSTACK); \
348 if (obstack_room (__o) < 1) \
349 _obstack_newchunk (__o, 1); \
350 obstack_1grow_fast (__o, datum); })
356# define obstack_ptr_grow(OBSTACK, datum) \
358 ({ struct obstack *__o = (OBSTACK); \
359 if (obstack_room (__o) < sizeof (void *)) \
360 _obstack_newchunk (__o, sizeof (void *)); \
361 obstack_ptr_grow_fast (__o, datum); })
363# define obstack_int_grow(OBSTACK, datum) \
365 ({ struct obstack *__o = (OBSTACK); \
366 if (obstack_room (__o) < sizeof (int)) \
367 _obstack_newchunk (__o, sizeof (int)); \
368 obstack_int_grow_fast (__o, datum); })
370# define obstack_ptr_grow_fast(OBSTACK, aptr) \
372 ({ struct obstack *__o1 = (OBSTACK); \
373 void *__p1 = __o1->next_free; \
374 *(const void **) __p1 = (aptr); \
375 __o1->next_free += sizeof (const void *); \
378# define obstack_int_grow_fast(OBSTACK, aint) \
380 ({ struct obstack *__o1 = (OBSTACK); \
381 void *__p1 = __o1->next_free; \
382 *(int *) __p1 = (aint); \
383 __o1->next_free += sizeof (int); \
386# define obstack_blank(OBSTACK, length) \
388 ({ struct obstack *__o = (OBSTACK); \
389 _OBSTACK_SIZE_T __len = (length); \
390 if (obstack_room (__o) < __len) \
391 _obstack_newchunk (__o, __len); \
392 obstack_blank_fast (__o, __len); })
394# define obstack_alloc(OBSTACK, length) \
396 ({ struct obstack *__h = (OBSTACK); \
397 obstack_blank (__h, (length)); \
398 obstack_finish (__h); })
400# define obstack_copy(OBSTACK, where, length) \
402 ({ struct obstack *__h = (OBSTACK); \
403 obstack_grow (__h, (where), (length)); \
404 obstack_finish (__h); })
406# define obstack_copy0(OBSTACK, where, length) \
408 ({ struct obstack *__h = (OBSTACK); \
409 obstack_grow0 (__h, (where), (length)); \
410 obstack_finish (__h); })
414# define obstack_finish(OBSTACK) \
416 ({ struct obstack *__o1 = (OBSTACK); \
417 void *__value = (void *) __o1->object_base; \
418 if (__o1->next_free == __value) \
419 __o1->maybe_empty_object = 1; \
421 = __PTR_ALIGN (__o1->object_base, __o1->next_free, \
422 __o1->alignment_mask); \
423 if ((size_t) (__o1->next_free - (char *) __o1->chunk) \
424 > (size_t) (__o1->chunk_limit - (char *) __o1->chunk)) \
425 __o1->next_free = __o1->chunk_limit; \
426 __o1->object_base = __o1->next_free; \
429# define obstack_free(OBSTACK, OBJ) \
431 ({ struct obstack *__o = (OBSTACK); \
432 void *__obj = (void *) (OBJ); \
433 if (__obj > (void *) __o->chunk && __obj < (void *) __o->chunk_limit) \
434 __o->next_free = __o->object_base = (char *) __obj; \
436 _obstack_free (__o, __obj); })
440# define obstack_object_size(h) \
441 ((_OBSTACK_SIZE_T) ((h)->next_free - (h)->object_base))
443# define obstack_room(h) \
444 ((_OBSTACK_SIZE_T) ((h)->chunk_limit - (h)->next_free))
446# define obstack_empty_p(h) \
447 ((h)->chunk->prev == 0 \
448 && (h)->next_free == __PTR_ALIGN ((char *) (h)->chunk, \
449 (h)->chunk->contents, \
450 (h)->alignment_mask))
458# define obstack_make_room(h, length) \
459 ((h)->temp.i = (length), \
460 ((obstack_room (h) < (h)->temp.i) \
461 ? (_obstack_newchunk (h, (h)->temp.i), 0) : 0), \
464# define obstack_grow(h, where, length) \
465 ((h)->temp.i = (length), \
466 ((obstack_room (h) < (h)->temp.i) \
467 ? (_obstack_newchunk ((h), (h)->temp.i), 0) : 0), \
468 memcpy ((h)->next_free, where, (h)->temp.i), \
469 (h)->next_free += (h)->temp.i, \
472# define obstack_grow0(h, where, length) \
473 ((h)->temp.i = (length), \
474 ((obstack_room (h) < (h)->temp.i + 1) \
475 ? (_obstack_newchunk ((h), (h)->temp.i + 1), 0) : 0), \
476 memcpy ((h)->next_free, where, (h)->temp.i), \
477 (h)->next_free += (h)->temp.i, \
478 *((h)->next_free)++ = 0, \
481# define obstack_1grow(h, datum) \
482 (((obstack_room (h) < 1) \
483 ? (_obstack_newchunk ((h), 1), 0) : 0), \
484 obstack_1grow_fast (h, datum))
486# define obstack_ptr_grow(h, datum) \
487 (((obstack_room (h) < sizeof (char *)) \
488 ? (_obstack_newchunk ((h), sizeof (char *)), 0) : 0), \
489 obstack_ptr_grow_fast (h, datum))
491# define obstack_int_grow(h, datum) \
492 (((obstack_room (h) < sizeof (int)) \
493 ? (_obstack_newchunk ((h), sizeof (int)), 0) : 0), \
494 obstack_int_grow_fast (h, datum))
496# define obstack_ptr_grow_fast(h, aptr) \
497 (((const void **) ((h)->next_free += sizeof (void *)))[-1] = (aptr), \
500# define obstack_int_grow_fast(h, aint) \
501 (((int *) ((h)->next_free += sizeof (int)))[-1] = (aint), \
504# define obstack_blank(h, length) \
505 ((h)->temp.i = (length), \
506 ((obstack_room (h) < (h)->temp.i) \
507 ? (_obstack_newchunk ((h), (h)->temp.i), 0) : 0), \
508 obstack_blank_fast (h, (h)->temp.i))
510# define obstack_alloc(h, length) \
511 (obstack_blank ((h), (length)), obstack_finish ((h)))
513# define obstack_copy(h, where, length) \
514 (obstack_grow ((h), (where), (length)), obstack_finish ((h)))
516# define obstack_copy0(h, where, length) \
517 (obstack_grow0 ((h), (where), (length)), obstack_finish ((h)))
519# define obstack_finish(h) \
520 (((h)->next_free == (h)->object_base \
521 ? (((h)->maybe_empty_object = 1), 0) \
523 (h)->temp.p = (h)->object_base, \
525 = __PTR_ALIGN ((h)->object_base, (h)->next_free, \
526 (h)->alignment_mask), \
527 (((size_t) ((h)->next_free - (char *) (h)->chunk) \
528 > (size_t) ((h)->chunk_limit - (char *) (h)->chunk)) \
529 ? ((h)->next_free = (h)->chunk_limit) : 0), \
530 (h)->object_base = (h)->next_free, \
533# define obstack_free(h, obj) \
534 ((h)->temp.p = (void *) (obj), \
535 (((h)->temp.p > (void *) (h)->chunk \
536 && (h)->temp.p < (void *) (h)->chunk_limit) \
537 ? (void) ((h)->next_free = (h)->object_base = (char *) (h)->temp.p) \
538 : _obstack_free ((h), (h)->temp.p)))
int _obstack_begin_1(struct obstack *, _OBSTACK_SIZE_T, _OBSTACK_SIZE_T, void *(*)(void *, size_t), void(*)(void *, void *), void *)
__attribute_noreturn__ void(* obstack_alloc_failed_handler)(void)
#define _OBSTACK_SIZE_T
Definition obstack.h:128
int _obstack_begin(struct obstack *, _OBSTACK_SIZE_T, _OBSTACK_SIZE_T, void *(*)(size_t), void(*)(void *))
void _obstack_newchunk(struct obstack *, _OBSTACK_SIZE_T)
Definition xheader_k.c:653
#define __FLEXIBLE_ARRAY_MEMBER
Definition obstack.h:115
_OBSTACK_SIZE_T _obstack_memory_used(struct obstack *) __attribute_pure__
#define __attribute_pure__
Definition obstack.h:151
#define __attribute_noreturn__
Definition obstack.h:159
void _obstack_free(struct obstack *, void *)
Definition xheader_k.c:602
#define _CHUNK_SIZE_T
Definition obstack.h:129
char * limit
Definition obstack.h:169
char contents[__FLEXIBLE_ARRAY_MEMBER]
Definition obstack.h:171
struct _obstack_chunk * prev
Definition obstack.h:170
unsigned use_extra_arg
Definition obstack.h:201
void * p
Definition obstack.h:184
void *(* plain)(size_t)
Definition obstack.h:191
_OBSTACK_SIZE_T i
Definition obstack.h:183
char * next_free
Definition obstack.h:179
void *(* extra)(void *, size_t)
Definition obstack.h:192
unsigned maybe_empty_object
Definition obstack.h:202
struct _obstack_chunk * chunk
Definition obstack.h:177
union obstack::@4 freefun
char * chunk_limit
Definition obstack.h:180
void * extra_arg
Definition obstack.h:200
_CHUNK_SIZE_T chunk_size
Definition obstack.h:176
unsigned alloc_failed
Definition obstack.h:206
char * object_base
Definition obstack.h:178
_OBSTACK_SIZE_T alignment_mask
Definition obstack.h:186
union obstack::@3 chunkfun