]>
git.saurik.com Git - bison.git/blob - src/system.h
1 /* System-dependent definitions for Bison.
3 Copyright (C) 2000, 2001, 2002, 2003, 2004 Free Software Foundation, Inc.
5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 2, or (at your option)
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
15 You should have received a copy of the GNU General Public License
16 along with this program; if not, write to the Free Software Foundation,
17 Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
19 #ifndef BISON_SYSTEM_H
20 #define BISON_SYSTEM_H
32 /* Verify a requirement at compile-time (unlike assert, which is runtime). */
33 #define verify(name, assertion) struct name {char name[(assertion) ? 1 : -1];}
36 # include <sys/types.h>
44 # include <inttypes.h>
51 /* This isn't perfect, but it's good enough for Bison, which needs
52 only to hash pointers. */
53 typedef size_t uintptr_t;
57 #define CALLOC(P, N) ((P) = xcalloc (N, sizeof *(P)))
58 #define MALLOC(P, N) ((P) = xnmalloc (N, sizeof *(P)))
59 #define REALLOC(P, N) ((P) = xnrealloc (P, N, sizeof *(P)))
62 /*---------------------.
63 | Missing prototypes. |
64 `---------------------*/
73 /* Use this to suppress gcc's `...may be used before initialized'
76 # define IF_LINT(Code) Code
78 # define IF_LINT(Code) /* empty */
82 /* This feature is available in gcc versions 2.5 and later. */
83 # if !defined (__GNUC__) || __GNUC__ < 2 || \
84 (__GNUC__ == 2 && __GNUC_MINOR__ < 5) || __STRICT_ANSI__
85 # define __attribute__(Spec) /* empty */
89 /* The __-protected variants of `format' and `printf' attributes
90 are accepted by gcc versions 2.6.4 (effectively 2.7) and later. */
91 #if __GNUC__ < 2 || (__GNUC__ == 2 && __GNUC_MINOR__ < 7)
92 # define __format__ format
93 # define __printf__ printf
96 #ifndef ATTRIBUTE_NORETURN
97 # define ATTRIBUTE_NORETURN __attribute__ ((__noreturn__))
100 #ifndef ATTRIBUTE_UNUSED
101 # define ATTRIBUTE_UNUSED __attribute__ ((__unused__))
111 #define _(Msgid) gettext (Msgid)
112 #define N_(Msgid) (Msgid)
115 /*-------------------------------.
116 | Fix broken compilation flags. |
117 `-------------------------------*/
120 # define LOCALEDIR "/usr/local/share/locale"
135 # define obstack_chunk_alloc xmalloc
136 # define obstack_chunk_free free
137 # include <obstack.h>
139 #define obstack_sgrow(Obs, Str) \
140 obstack_grow (Obs, Str, strlen (Str))
142 #define obstack_fgrow1(Obs, Format, Arg1) \
145 sprintf (buf, Format, Arg1); \
146 obstack_grow (Obs, buf, strlen (buf)); \
149 #define obstack_fgrow2(Obs, Format, Arg1, Arg2) \
152 sprintf (buf, Format, Arg1, Arg2); \
153 obstack_grow (Obs, buf, strlen (buf)); \
156 #define obstack_fgrow3(Obs, Format, Arg1, Arg2, Arg3) \
159 sprintf (buf, Format, Arg1, Arg2, Arg3); \
160 obstack_grow (Obs, buf, strlen (buf)); \
163 #define obstack_fgrow4(Obs, Format, Arg1, Arg2, Arg3, Arg4) \
166 sprintf (buf, Format, Arg1, Arg2, Arg3, Arg4); \
167 obstack_grow (Obs, buf, strlen (buf)); \
172 /*-----------------------------------------.
173 | Extensions to use for the output files. |
174 `-----------------------------------------*/
178 # define TAB_EXT "_tab"
179 # define OUTPUT_EXT ".output"
183 # define TAB_EXT "_tab"
184 # define OUTPUT_EXT ".out"
187 # define TAB_EXT ".tab"
188 # define OUTPUT_EXT ".output"
189 # endif /* ! MSDOS */
192 #ifndef DEFAULT_TMPDIR
193 # define DEFAULT_TMPDIR "/tmp"
198 /*---------------------.
199 | Free a linked list. |
200 `---------------------*/
202 #define LIST_FREE(Type, List) \
204 Type *_node, *_next; \
205 for (_node = List; _node; _node = _next) \
207 _next = _node->next; \
213 /*---------------------------------------------.
214 | Debugging memory allocation (must be last). |
215 `---------------------------------------------*/
218 # define DMALLOC_FUNC_CHECK
219 # include <dmalloc.h>
220 # endif /* WITH_DMALLOC */
222 #endif /* ! BISON_SYSTEM_H */