1 /* Data definitions for internal representation of bison's input,
2 Copyright (C) 1984, 1986, 1989, 1992, 2001, 2002
3 Free Software Foundation, Inc.
5 This file is part of Bison, the GNU Compiler Compiler.
7 Bison is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2, or (at your option)
12 Bison is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with Bison; see the file COPYING. If not, write to
19 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
20 Boston, MA 02111-1307, USA. */
25 /* Representation of the grammar rules:
27 NTOKENS is the number of tokens, and NVARS is the number of
28 variables (nonterminals). NSYMS is the total number, ntokens +
31 Each symbol (either token or variable) receives a symbol number.
32 Numbers 0 to NTOKENS - 1 are for tokens, and NTOKENS to NSYMS - 1
33 are for variables. Symbol number zero is the end-of-input token.
34 This token is counted in ntokens. The true number of token values
35 assigned is NTOKENS reduced by one for each alias declaration.
37 The rules receive rule numbers 1 to NRULES in the order they are
38 written. More precisely Bison augments the grammar with the
39 initial rule, `$axiom: START-SYMBOL EOF', which is numbered 1, all
40 the user rules are 2, 3 etc. Each time a rule number is presented
41 to the user, we subtract 1, so *displayed* rule numbers are 0, 1,
44 Internally, we cannot use the number 0 for a rule because for
45 instance RITEM stores both symbol (the RHS) and rule numbers: the
46 symbols are shorts >= 0, and rule number are stored negative.
47 Therefore 0 cannot be used, since it would be both the rule number
48 0, and the token EOF).
50 Actions are accessed via the rule number.
52 The rules themselves are described by several arrays: amongst which
55 RULES is an array of struct rule_s, which members are:
57 RULES[R].lhs -- the symbol of the left hand side of rule R.
59 RULES[R].rhs -- the index in RITEM of the beginning of the portion
62 RULES[R].prec -- the symbol providing the precedence level of R.
64 RULES[R].precsym -- the symbol attached (via %prec) to give its
65 precedence to R. Of course, if set, it is equal to `prec', but we
66 need to distinguish one from the other when reducing: a symbol used
67 in a %prec is not useless.
69 RULES[R].assoc -- the associativity of R.
71 RULES[R].line -- the line where R was defined.
73 RULES[R].useful -- TRUE iff the rule is used (i.e., FALSE if thrown
76 The right hand side is stored as symbol numbers in a portion of
79 The length of the portion is one greater than the number of symbols
80 in the rule's right hand side. The last element in the portion
81 contains minus R, which identifies it as the end of a portion and
82 says which rule it is for.
84 The portions of RITEM come in order of increasing rule number.
85 NRITEMS is the total length of RITEM. Each element of RITEM is
86 called an "item" and its index in RITEM is an item number.
88 Item numbers are used in the finite state machine to represent
89 places that parsing can get to.
91 SYMBOLS[I]->prec records the precedence level of each symbol.
93 Precedence levels are assigned in increasing order starting with 1
94 so that numerically higher precedence values mean tighter binding
95 as they ought to. Zero as a symbol or rule's precedence means none
98 Associativities are recorded similarly in SYMBOLS[I]->assoc. */
100 # include "location.h"
103 # define ISTOKEN(s) ((s) < ntokens)
104 # define ISVAR(s) ((s) >= ntokens)
111 # define ITEM_NUMBER_MAX INT_MAX
112 typedef int item_number_t
;
113 extern item_number_t
*ritem
;
114 extern unsigned int nritems
;
116 /* There is weird relationship between item_number_t and
117 symbol_number_t: we store symbol_number_t in item_number_t, but in
118 the latter we also store, as negative numbers, the rule numbers.
120 Therefore, an symbol_number_t must be a valid item_number_t, and we
121 sometimes have to perform the converse transformation. */
122 # define symbol_number_as_item_number(Tok) ((item_number_t) (Tok))
123 # define item_number_as_symbol_number(Ite) ((symbol_number_t) (Ite))
125 extern symbol_number_t start_symbol
;
128 typedef struct rule_s
130 /* The number of the rule in the source. It is usually the index in
131 RULES too, except if there are useless rules. */
134 /* The index in RULES. Usually the rule number in the source,
135 except if some rules are useless. */
141 /* This symbol provides both the associativity, and the precedence. */
144 /* This symbol was attached to the rule via %prec. */
151 location_t action_location
;
154 extern struct rule_s
*rules
;
156 /* Table of the symbols, indexed by the symbol number. */
157 extern symbol_t
**symbols
;
159 /* TOKEN_TRANSLATION -- a table indexed by a token number as returned
160 by the user's yylex routine, it yields the internal token number
161 used by the parser and throughout bison. */
162 extern symbol_number_t
*token_translations
;
163 extern int max_user_token_number
;
166 /* PURE_PARSER is nonzero if should generate a parser that is all pure
169 extern int pure_parser
;
171 /* Return the length of the RHS. */
172 int rule_rhs_length
PARAMS ((rule_t
*rule
));
174 /* Print this RULE's RHS on OUT. */
175 void rule_rhs_print
PARAMS ((rule_t
*rule
, FILE *out
));
177 /* Print this RULE on OUT. */
178 void rule_print
PARAMS ((rule_t
*rule
, FILE *out
));
180 /* Dump RITEM for traces. */
181 void ritem_print
PARAMS ((FILE *out
));
183 /* Return the size of the longest rule RHS. */
184 size_t ritem_longest_rhs
PARAMS ((void));
186 /* Print the grammar's rules on OUT. */
187 void grammar_rules_print
PARAMS ((FILE *out
));
189 /* Dump the grammar. */
190 void grammar_dump
PARAMS ((FILE *out
, const char *title
));
192 /* Free the packed grammar. */
193 void grammar_free
PARAMS ((void));
195 #endif /* !GRAM_H_ */