]>
git.saurik.com Git - bison.git/blob - src/system.h
1 /* System-dependent definitions for Bison.
3 Copyright (C) 2000-2007, 2009-2012 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 3 of the License, or
8 (at your option) any later version.
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, see <http://www.gnu.org/licenses/>. */
18 #ifndef BISON_SYSTEM_H
19 #define BISON_SYSTEM_H
21 /* flex 2.5.31 gratutiously defines macros like INT8_MIN. But this
22 runs afoul of pre-C99 compilers that have <inttypes.h> or
23 <stdint.h>, which are included below if available. It also runs
24 afoul of pre-C99 compilers that define these macros in <limits.h>. */
25 #if ! defined __STDC_VERSION__ || __STDC_VERSION__ < 199901
42 #define ARRAY_CARDINALITY(Array) (sizeof (Array) / sizeof *(Array))
43 #define STREQ(L, R) (strcmp(L, R) == 0)
44 #define STRNEQ(L, R) (!STREQ(L, R))
46 /* Just like strncmp, but the second argument must be a literal string
47 and you don't specify the length. */
48 #define STRNCMP_LIT(S, Literal) \
49 strncmp (S, "" Literal "", sizeof (Literal) - 1)
51 /* Whether Literal is a prefix of S. */
52 #define STRPREFIX_LIT(Literal, S) \
53 (STRNCMP_LIT (S, Literal) == 0)
59 /* This isn't perfect, but it's good enough for Bison, which needs
60 only to hash pointers. */
61 typedef size_t uintptr_t;
65 #define EX_MISMATCH 63
71 #include <unlocked-io.h>
80 /* Use PACIFY_CC to indicate that Code is unimportant to the logic of Bison
81 but that it is necessary for suppressing compiler warnings. For example,
82 Code might be a variable initializer that's always overwritten before the
85 PACIFY_CC is intended to be useful only as a comment as it does not alter
86 Code. It is tempting to redefine PACIFY_CC so that it will suppress Code
87 when configuring without --enable-gcc-warnings. However, that would mean
88 that, for maintainers, Bison would compile with potentially less warnings
89 and safer logic than it would for users. Due to the overhead of M4,
90 suppressing Code is unlikely to offer any significant improvement in
91 Bison's performance anyway. */
92 #define PACIFY_CC(Code) Code
95 /* This feature is available in gcc versions 2.5 and later. */
96 # if (! defined __GNUC__ || __GNUC__ < 2 \
97 || (__GNUC__ == 2 && __GNUC_MINOR__ < 5))
98 # define __attribute__(Spec) /* empty */
102 /* The __-protected variants of `format' and `printf' attributes
103 are accepted by gcc versions 2.6.4 (effectively 2.7) and later. */
104 #if __GNUC__ < 2 || (__GNUC__ == 2 && __GNUC_MINOR__ < 7)
105 # define __format__ format
106 # define __printf__ printf
109 #ifndef ATTRIBUTE_NORETURN
110 # define ATTRIBUTE_NORETURN __attribute__ ((__noreturn__))
113 #ifndef ATTRIBUTE_UNUSED
114 # define ATTRIBUTE_UNUSED __attribute__ ((__unused__))
125 #define _(Msgid) gettext (Msgid)
126 #define N_(Msgid) (Msgid)
141 /* In the past, Bison defined aver to simply invoke abort in the case of
142 a failed assertion. The rationale was that <assert.h>'s assertions
143 were too heavyweight and could be disabled too easily. See
145 <http://lists.gnu.org/archive/html/bison-patches/2006-01/msg00080.html>
146 <http://lists.gnu.org/archive/html/bison-patches/2006-09/msg00111.html>.
148 However, normal assert output can be helpful during development and
149 in bug reports from users. Moreover, it's not clear now that
150 <assert.h>'s assertions are significantly heavyweight. Finally, if
151 users want to experiment with disabling assertions, it's debatable
152 whether it's our responsibility to stop them. See discussion
154 <http://lists.gnu.org/archive/html/bison-patches/2009-09/msg00013.html>.
156 For now, we use assert but we call it aver throughout Bison in case
157 we later wish to try another scheme.
167 #define obstack_chunk_alloc xmalloc
168 #define obstack_chunk_free free
171 /* String-grow: append Str to Obs. */
173 #define obstack_sgrow(Obs, Str) \
174 obstack_grow (Obs, Str, strlen (Str))
176 /* Output Str escaped for our postprocessing (i.e., escape M4 special
179 For instance "[foo]" -> "@{foo@}", "$$" -> "$][$][". */
181 # define obstack_escape(Obs, Str) \
184 for (p__ = Str; *p__; p__++) \
187 case '$': obstack_sgrow (Obs, "$]["); break; \
188 case '@': obstack_sgrow (Obs, "@@" ); break; \
189 case '[': obstack_sgrow (Obs, "@{" ); break; \
190 case ']': obstack_sgrow (Obs, "@}" ); break; \
191 default: obstack_1grow (Obs, *p__ ); break; \
196 /* Output Str both quoted for M4 (i.e., embed in [[...]]), and escaped
197 for our postprocessing (i.e., escape M4 special characters). If
198 Str is empty (or NULL), output "[]" instead of "[[]]" as it make M4
199 programming easier (m4_ifval can be used).
201 For instance "[foo]" -> "[[@{foo@}]]", "$$" -> "[[$][$][]]". */
203 # define obstack_quote(Obs, Str) \
205 char const* obstack_quote_p = Str; \
206 if (obstack_quote_p && obstack_quote_p[0]) \
208 obstack_sgrow (Obs, "[["); \
209 obstack_escape (Obs, obstack_quote_p); \
210 obstack_sgrow (Obs, "]]"); \
213 obstack_sgrow (Obs, "[]"); \
217 /* Append the ending 0, finish Obs, and return the string. */
219 # define obstack_finish0(Obs) \
220 (obstack_1grow (Obs, '\0'), (char *) obstack_finish (Obs))
225 /*-----------------------------------------.
226 | Extensions to use for the output files. |
227 `-----------------------------------------*/
230 # define OUTPUT_EXT ".output"
234 # define TAB_EXT ".tab"
239 /*---------------------.
240 | Free a linked list. |
241 `---------------------*/
243 #define LIST_FREE(Type, List) \
245 Type *_node, *_next; \
246 for (_node = List; _node; _node = _next) \
248 _next = _node->next; \
254 /*---------------------------------------------.
255 | Debugging memory allocation (must be last). |
256 `---------------------------------------------*/
259 # define DMALLOC_FUNC_CHECK
260 # include <dmalloc.h>
261 # endif /* WITH_DMALLOC */
263 #endif /* ! BISON_SYSTEM_H */