]>
Commit | Line | Data |
---|---|---|
122c0aac | 1 | /* Part of the bison parser generator, |
aa7815f5 | 2 | Copyright 1984, 1989, 2000 Free Software Foundation, Inc. |
122c0aac | 3 | |
3519ec76 | 4 | This file is part of Bison, the GNU Compiler Compiler. |
122c0aac | 5 | |
3519ec76 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. | |
122c0aac | 10 | |
3519ec76 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. | |
122c0aac | 15 | |
3519ec76 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. */ | |
122c0aac RS |
20 | |
21 | ||
3519ec76 AD |
22 | /* Set up NULLABLE, a vector saying which nonterminals can expand into |
23 | the null string. NULLABLE[I - NTOKENS] is nonzero if symbol I can | |
ceed8467 | 24 | do so. */ |
122c0aac | 25 | |
122c0aac RS |
26 | #include "system.h" |
27 | #include "types.h" | |
28 | #include "gram.h" | |
d7913476 | 29 | #include "xalloc.h" |
3519ec76 | 30 | #include "nullable.h" |
122c0aac | 31 | |
3519ec76 | 32 | char *nullable = NULL; |
122c0aac RS |
33 | |
34 | void | |
d2729d44 | 35 | set_nullable (void) |
122c0aac | 36 | { |
3519ec76 AD |
37 | short *r; |
38 | short *s1; | |
39 | short *s2; | |
40 | int ruleno; | |
41 | int symbol; | |
42 | shorts *p; | |
122c0aac RS |
43 | |
44 | short *squeue; | |
45 | short *rcount; | |
46 | shorts **rsets; | |
47 | shorts *relts; | |
48 | char any_tokens; | |
49 | short *r1; | |
50 | ||
51 | #ifdef TRACE | |
3519ec76 | 52 | fprintf (stderr, _("Entering set_nullable")); |
122c0aac RS |
53 | #endif |
54 | ||
d7913476 | 55 | nullable = XCALLOC (char, nvars) - ntokens; |
122c0aac | 56 | |
d7913476 | 57 | squeue = XCALLOC (short, nvars); |
122c0aac RS |
58 | s1 = s2 = squeue; |
59 | ||
d7913476 AD |
60 | rcount = XCALLOC (short, nrules + 1); |
61 | rsets = XCALLOC (shorts *, nvars) - ntokens; | |
122c0aac RS |
62 | /* This is said to be more elements than we actually use. |
63 | Supposedly nitems - nrules is enough. | |
64 | But why take the risk? */ | |
d7913476 | 65 | relts = XCALLOC (shorts, nitems + nvars + 1); |
122c0aac RS |
66 | p = relts; |
67 | ||
68 | r = ritem; | |
69 | while (*r) | |
70 | { | |
71 | if (*r < 0) | |
72 | { | |
73 | symbol = rlhs[-(*r++)]; | |
74 | if (symbol >= 0 && !nullable[symbol]) | |
75 | { | |
76 | nullable[symbol] = 1; | |
77 | *s2++ = symbol; | |
78 | } | |
79 | } | |
80 | else | |
81 | { | |
82 | r1 = r; | |
83 | any_tokens = 0; | |
84 | for (symbol = *r++; symbol > 0; symbol = *r++) | |
85 | { | |
3519ec76 | 86 | if (ISTOKEN (symbol)) |
122c0aac RS |
87 | any_tokens = 1; |
88 | } | |
89 | ||
90 | if (!any_tokens) | |
91 | { | |
92 | ruleno = -symbol; | |
93 | r = r1; | |
94 | for (symbol = *r++; symbol > 0; symbol = *r++) | |
95 | { | |
96 | rcount[ruleno]++; | |
97 | p->next = rsets[symbol]; | |
98 | p->value = ruleno; | |
99 | rsets[symbol] = p; | |
100 | p++; | |
101 | } | |
102 | } | |
103 | } | |
104 | } | |
105 | ||
106 | while (s1 < s2) | |
107 | { | |
108 | p = rsets[*s1++]; | |
109 | while (p) | |
110 | { | |
111 | ruleno = p->value; | |
112 | p = p->next; | |
113 | if (--rcount[ruleno] == 0) | |
114 | { | |
115 | symbol = rlhs[ruleno]; | |
116 | if (symbol >= 0 && !nullable[symbol]) | |
117 | { | |
118 | nullable[symbol] = 1; | |
119 | *s2++ = symbol; | |
120 | } | |
121 | } | |
122 | } | |
123 | } | |
124 | ||
d7913476 AD |
125 | XFREE (squeue); |
126 | XFREE (rcount); | |
127 | XFREE (rsets + ntokens); | |
128 | XFREE (relts); | |
122c0aac RS |
129 | } |
130 | ||
131 | ||
132 | void | |
d2729d44 | 133 | free_nullable (void) |
122c0aac | 134 | { |
d7913476 | 135 | XFREE (nullable + ntokens); |
122c0aac | 136 | } |