]>
Commit | Line | Data |
---|---|---|
f7d4d87a | 1 | /* Allocate input grammar variables for bison, |
8b3df748 | 2 | Copyright (C) 1984, 1986, 1989, 2001, 2002 Free Software Foundation, Inc. |
f7d4d87a | 3 | |
076ab033 | 4 | This file is part of Bison, the GNU Compiler Compiler. |
f7d4d87a | 5 | |
076ab033 AD |
6 | Bison is free software; you can redistribute it and/or modify |
7 | it under the terms of the GNU General Public License as published by | |
8 | the Free Software Foundation; either version 2, or (at your option) | |
9 | any later version. | |
f7d4d87a | 10 | |
076ab033 AD |
11 | Bison is distributed in the hope that it will be useful, |
12 | but WITHOUT ANY WARRANTY; without even the implied warranty of | |
13 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
14 | GNU General Public License for more details. | |
f7d4d87a | 15 | |
076ab033 AD |
16 | You should have received a copy of the GNU General Public License |
17 | along with Bison; see the file COPYING. If not, write to | |
18 | the Free Software Foundation, Inc., 59 Temple Place - Suite 330, | |
19 | Boston, MA 02111-1307, USA. */ | |
f7d4d87a DM |
20 | |
21 | ||
4a120d45 | 22 | #include "system.h" |
8b3df748 | 23 | #include "quotearg.h" |
b2ed6e58 | 24 | #include "gram.h" |
0e78e603 | 25 | #include "symtab.h" |
3067fbef | 26 | #include "reader.h" |
4a120d45 | 27 | |
f7d4d87a DM |
28 | /* comments for these variables are in gram.h */ |
29 | ||
280a38c3 AD |
30 | int nitems = 0; |
31 | int nrules = 0; | |
32 | int nsyms = 0; | |
33 | int ntokens = 0; | |
34 | int nvars = 0; | |
f7d4d87a | 35 | |
342b8b6e | 36 | short *ritem = NULL; |
280a38c3 | 37 | int nritems = 0; |
75142d45 | 38 | |
1a2b5d37 | 39 | rule_t *rules = NULL; |
0e78e603 AD |
40 | |
41 | struct bucket **symbols = NULL; | |
342b8b6e | 42 | short *token_translations = NULL; |
f7d4d87a | 43 | |
280a38c3 | 44 | int start_symbol = 0; |
f7d4d87a | 45 | |
280a38c3 | 46 | int max_user_token_number = 256; |
f7d4d87a | 47 | |
280a38c3 | 48 | int semantic_parser = 0; |
f7d4d87a | 49 | |
280a38c3 | 50 | int pure_parser = 0; |
f7d4d87a | 51 | |
280a38c3 | 52 | int error_token_number = 0; |
f7d4d87a | 53 | |
c2713865 | 54 | |
c3b407f4 AD |
55 | /*--------------------------------------. |
56 | | Return the number of symbols in RHS. | | |
57 | `--------------------------------------*/ | |
58 | ||
59 | int | |
60 | rule_rhs_length (rule_t *rule) | |
61 | { | |
62 | int res = 0; | |
63 | short *rhsp; | |
64 | for (rhsp = rule->rhs; *rhsp >= 0; ++rhsp) | |
65 | ++res; | |
66 | return res; | |
67 | } | |
68 | ||
69 | ||
c2713865 AD |
70 | /*------------------------. |
71 | | Dump RITEM for traces. | | |
72 | `------------------------*/ | |
73 | ||
cbbe7505 | 74 | void |
3067fbef | 75 | ritem_print (FILE *out) |
f7d4d87a | 76 | { |
3067fbef AD |
77 | int i; |
78 | fputs ("RITEM\n", out); | |
75142d45 AD |
79 | for (i = 0; i < nritems; ++i) |
80 | if (ritem[i] >= 0) | |
8b3df748 AD |
81 | fprintf (out, " %s", quotearg_style (escape_quoting_style, |
82 | symbols[ritem[i]]->tag)); | |
3067fbef | 83 | else |
29d29c8f | 84 | fprintf (out, " (rule %d)\n", -ritem[i] - 1); |
3067fbef | 85 | fputs ("\n\n", out); |
f7d4d87a | 86 | } |
c2713865 AD |
87 | |
88 | ||
89 | /*------------------------------------------. | |
90 | | Return the size of the longest rule RHS. | | |
91 | `------------------------------------------*/ | |
92 | ||
93 | size_t | |
94 | ritem_longest_rhs (void) | |
95 | { | |
c3b407f4 | 96 | int max = 0; |
9e7f6bbd | 97 | int i; |
c2713865 | 98 | |
c3b407f4 AD |
99 | for (i = 1; i < nrules + 1; ++i) |
100 | { | |
101 | int length = rule_rhs_length (&rules[i]); | |
102 | if (length > max) | |
103 | max = length; | |
104 | } | |
c2713865 AD |
105 | |
106 | return max; | |
107 | } |