]>
Commit | Line | Data |
---|---|---|
742e4900 | 1 | /* Compute lookahead criteria for Bison. |
5362cd5f | 2 | |
34136e65 | 3 | Copyright (C) 1984, 1986, 1989, 2000-2012 Free Software Foundation, |
575619af | 4 | Inc. |
d0fb370f | 5 | |
340ef489 | 6 | This file is part of Bison, the GNU Compiler Compiler. |
d0fb370f | 7 | |
f16b0819 | 8 | This program is free software: you can redistribute it and/or modify |
340ef489 | 9 | it under the terms of the GNU General Public License as published by |
f16b0819 PE |
10 | the Free Software Foundation, either version 3 of the License, or |
11 | (at your option) any later version. | |
d0fb370f | 12 | |
f16b0819 | 13 | This program is distributed in the hope that it will be useful, |
340ef489 AD |
14 | but WITHOUT ANY WARRANTY; without even the implied warranty of |
15 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
16 | GNU General Public License for more details. | |
d0fb370f | 17 | |
340ef489 | 18 | You should have received a copy of the GNU General Public License |
f16b0819 | 19 | along with this program. If not, see <http://www.gnu.org/licenses/>. */ |
d0fb370f RS |
20 | |
21 | ||
fca9c5ef | 22 | /* Find which rules need lookahead in each state, and which lookahead |
340ef489 | 23 | tokens they accept. */ |
d0fb370f | 24 | |
2cec9080 | 25 | #include <config.h> |
d0fb370f | 26 | #include "system.h" |
5dde5425 PE |
27 | |
28 | #include <bitset.h> | |
29 | #include <bitsetv.h> | |
5dde5425 | 30 | |
b2ca4022 | 31 | #include "LR0.h" |
a0f6b076 | 32 | #include "complain.h" |
340ef489 | 33 | #include "derives.h" |
f67d13aa | 34 | #include "getargs.h" |
5dde5425 PE |
35 | #include "gram.h" |
36 | #include "lalr.h" | |
7254f6a8 | 37 | #include "muscle-tab.h" |
5dde5425 PE |
38 | #include "nullable.h" |
39 | #include "reader.h" | |
40 | #include "relation.h" | |
41 | #include "symtab.h" | |
d0fb370f | 42 | |
4cf44c00 | 43 | goto_number *goto_map; |
db34f798 | 44 | goto_number ngotos; |
4cf44c00 PE |
45 | state_number *from_state; |
46 | state_number *to_state; | |
db34f798 | 47 | bitsetv goto_follows = NULL; |
e68e0410 AD |
48 | |
49 | /* Linked list of goto numbers. */ | |
5dde5425 | 50 | typedef struct goto_list |
e68e0410 | 51 | { |
5dde5425 PE |
52 | struct goto_list *next; |
53 | goto_number value; | |
54 | } goto_list; | |
e68e0410 AD |
55 | |
56 | ||
b09f4f48 | 57 | /* LA is an NLA by NTOKENS matrix of bits. LA[l, i] is 1 if the rule |
3325ddc4 AD |
58 | LArule[l] is applicable in the appropriate state when the next |
59 | token is symbol i. If LA[l, i] and LA[l, j] are both 1 for i != j, | |
60 | it is a conflict. */ | |
61 | ||
62 | static bitsetv LA = NULL; | |
d200e455 | 63 | size_t nLA; |
9703cc49 | 64 | |
d0fb370f | 65 | |
5dde5425 PE |
66 | static goto_number **includes; |
67 | static goto_list **lookback; | |
aa2aab3c AD |
68 | |
69 | ||
720d742f | 70 | |
bb527fc2 | 71 | |
db34f798 | 72 | void |
d2729d44 | 73 | set_goto_map (void) |
d0fb370f | 74 | { |
5dde5425 PE |
75 | state_number s; |
76 | goto_number *temp_map; | |
d0fb370f | 77 | |
da2a7671 PE |
78 | goto_map = xcalloc (nvars + 1, sizeof *goto_map); |
79 | temp_map = xnmalloc (nvars + 1, sizeof *temp_map); | |
d0fb370f RS |
80 | |
81 | ngotos = 0; | |
5dde5425 | 82 | for (s = 0; s < nstates; ++s) |
7215de24 | 83 | { |
5dde5425 | 84 | transitions *sp = states[s]->transitions; |
d57650a5 | 85 | int i; |
ccaf65bc | 86 | for (i = sp->num - 1; i >= 0 && TRANSITION_IS_GOTO (sp, i); --i) |
e9690142 JD |
87 | { |
88 | ngotos++; | |
60e3ecc7 | 89 | |
e9690142 JD |
90 | /* Abort if (ngotos + 1) would overflow. */ |
91 | aver (ngotos != GOTO_NUMBER_MAXIMUM); | |
60e3ecc7 | 92 | |
e9690142 JD |
93 | goto_map[TRANSITION_SYMBOL (sp, i) - ntokens]++; |
94 | } | |
7215de24 | 95 | } |
d0fb370f | 96 | |
d0b0fefa | 97 | { |
60e3ecc7 | 98 | goto_number k = 0; |
d57650a5 | 99 | int i; |
d0b0fefa AD |
100 | for (i = ntokens; i < nsyms; i++) |
101 | { | |
e9690142 JD |
102 | temp_map[i - ntokens] = k; |
103 | k += goto_map[i - ntokens]; | |
d0b0fefa | 104 | } |
d0fb370f | 105 | |
d0b0fefa | 106 | for (i = ntokens; i < nsyms; i++) |
5362cd5f | 107 | goto_map[i - ntokens] = temp_map[i - ntokens]; |
d0fb370f | 108 | |
5362cd5f PE |
109 | goto_map[nsyms - ntokens] = ngotos; |
110 | temp_map[nsyms - ntokens] = ngotos; | |
d0b0fefa | 111 | } |
d0fb370f | 112 | |
da2a7671 PE |
113 | from_state = xcalloc (ngotos, sizeof *from_state); |
114 | to_state = xcalloc (ngotos, sizeof *to_state); | |
d0fb370f | 115 | |
5dde5425 | 116 | for (s = 0; s < nstates; ++s) |
d0fb370f | 117 | { |
5dde5425 | 118 | transitions *sp = states[s]->transitions; |
d57650a5 | 119 | int i; |
ccaf65bc | 120 | for (i = sp->num - 1; i >= 0 && TRANSITION_IS_GOTO (sp, i); --i) |
e9690142 JD |
121 | { |
122 | goto_number k = temp_map[TRANSITION_SYMBOL (sp, i) - ntokens]++; | |
123 | from_state[k] = s; | |
124 | to_state[k] = sp->states[i]->number; | |
125 | } | |
d0fb370f RS |
126 | } |
127 | ||
afbb696d | 128 | free (temp_map); |
d0fb370f RS |
129 | } |
130 | ||
131 | ||
db34f798 | 132 | goto_number |
5dde5425 | 133 | map_goto (state_number s0, symbol_number sym) |
d0fb370f | 134 | { |
60e3ecc7 PE |
135 | goto_number high; |
136 | goto_number low; | |
137 | goto_number middle; | |
5dde5425 | 138 | state_number s; |
d0fb370f | 139 | |
5362cd5f PE |
140 | low = goto_map[sym - ntokens]; |
141 | high = goto_map[sym - ntokens + 1] - 1; | |
d0fb370f | 142 | |
58a84254 | 143 | for (;;) |
d0fb370f | 144 | { |
4f82b42a | 145 | aver (low <= high); |
d0fb370f RS |
146 | middle = (low + high) / 2; |
147 | s = from_state[middle]; | |
5dde5425 | 148 | if (s == s0) |
e9690142 | 149 | return middle; |
5dde5425 | 150 | else if (s < s0) |
e9690142 | 151 | low = middle + 1; |
d0fb370f | 152 | else |
e9690142 | 153 | high = middle - 1; |
d0fb370f | 154 | } |
d0fb370f RS |
155 | } |
156 | ||
157 | ||
4a120d45 | 158 | static void |
d2729d44 | 159 | initialize_F (void) |
d0fb370f | 160 | { |
da2a7671 PE |
161 | goto_number **reads = xnmalloc (ngotos, sizeof *reads); |
162 | goto_number *edge = xnmalloc (ngotos + 1, sizeof *edge); | |
60e3ecc7 | 163 | goto_number nedges = 0; |
d0fb370f | 164 | |
60e3ecc7 | 165 | goto_number i; |
d0fb370f | 166 | |
db34f798 | 167 | goto_follows = bitsetv_create (ngotos, ntokens, BITSET_FIXED); |
d0fb370f | 168 | |
d0fb370f RS |
169 | for (i = 0; i < ngotos; i++) |
170 | { | |
5dde5425 PE |
171 | state_number stateno = to_state[i]; |
172 | transitions *sp = states[stateno]->transitions; | |
d0fb370f | 173 | |
d954473d | 174 | int j; |
640748ee | 175 | FOR_EACH_SHIFT (sp, j) |
e9690142 | 176 | bitset_set (goto_follows[i], TRANSITION_SYMBOL (sp, j)); |
d0fb370f | 177 | |
ccaf65bc | 178 | for (; j < sp->num; j++) |
e9690142 JD |
179 | { |
180 | symbol_number sym = TRANSITION_SYMBOL (sp, j); | |
181 | if (nullable[sym - ntokens]) | |
182 | edge[nedges++] = map_goto (stateno, sym); | |
183 | } | |
a0f6b076 | 184 | |
da2a7671 | 185 | if (nedges == 0) |
e9690142 | 186 | reads[i] = NULL; |
da2a7671 | 187 | else |
e9690142 JD |
188 | { |
189 | reads[i] = xnmalloc (nedges + 1, sizeof reads[i][0]); | |
190 | memcpy (reads[i], edge, nedges * sizeof edge[0]); | |
191 | reads[i][nedges] = END_NODE; | |
192 | nedges = 0; | |
193 | } | |
d0fb370f RS |
194 | } |
195 | ||
db34f798 | 196 | relation_digraph (reads, ngotos, &goto_follows); |
d0fb370f RS |
197 | |
198 | for (i = 0; i < ngotos; i++) | |
afbb696d | 199 | free (reads[i]); |
d0fb370f | 200 | |
afbb696d PE |
201 | free (reads); |
202 | free (edge); | |
d0fb370f RS |
203 | } |
204 | ||
205 | ||
4a120d45 | 206 | static void |
60e3ecc7 | 207 | add_lookback_edge (state *s, rule *r, goto_number gotono) |
d0fb370f | 208 | { |
5dde5425 | 209 | int ri = state_reduction_find (s, r); |
da2a7671 | 210 | goto_list *sp = xmalloc (sizeof *sp); |
742e4900 | 211 | sp->next = lookback[(s->reductions->lookahead_tokens - LA) + ri]; |
d0fb370f | 212 | sp->value = gotono; |
742e4900 | 213 | lookback[(s->reductions->lookahead_tokens - LA) + ri] = sp; |
d0fb370f RS |
214 | } |
215 | ||
216 | ||
d0fb370f | 217 | |
4a120d45 | 218 | static void |
720d742f | 219 | build_relations (void) |
d0fb370f | 220 | { |
da2a7671 PE |
221 | goto_number *edge = xnmalloc (ngotos + 1, sizeof *edge); |
222 | state_number *states1 = xnmalloc (ritem_longest_rhs () + 1, sizeof *states1); | |
60e3ecc7 | 223 | goto_number i; |
720d742f | 224 | |
da2a7671 | 225 | includes = xnmalloc (ngotos, sizeof *includes); |
d0fb370f RS |
226 | |
227 | for (i = 0; i < ngotos; i++) | |
228 | { | |
9887c18a | 229 | int nedges = 0; |
5dde5425 PE |
230 | symbol_number symbol1 = states[to_state[i]]->accessing_symbol; |
231 | rule **rulep; | |
d0fb370f | 232 | |
5362cd5f | 233 | for (rulep = derives[symbol1 - ntokens]; *rulep; rulep++) |
e9690142 JD |
234 | { |
235 | bool done; | |
236 | int length = 1; | |
237 | item_number const *rp; | |
238 | state *s = states[from_state[i]]; | |
239 | states1[0] = s->number; | |
240 | ||
241 | for (rp = (*rulep)->rhs; ! item_number_is_rule_number (*rp); rp++) | |
242 | { | |
243 | s = transitions_to (s->transitions, | |
244 | item_number_as_symbol_number (*rp)); | |
245 | states1[length++] = s->number; | |
246 | } | |
247 | ||
248 | if (!s->consistent) | |
249 | add_lookback_edge (s, *rulep, i); | |
250 | ||
251 | length--; | |
252 | done = false; | |
253 | while (!done) | |
254 | { | |
255 | done = true; | |
256 | /* Each rhs ends in a rule number, and there is a | |
257 | sentinel (ritem[-1]=0) before the first rhs, so it is safe to | |
258 | decrement RP here. */ | |
259 | rp--; | |
260 | if (ISVAR (*rp)) | |
261 | { | |
262 | /* Downcasting from item_number to symbol_number. */ | |
263 | edge[nedges++] = map_goto (states1[--length], | |
264 | item_number_as_symbol_number (*rp)); | |
265 | if (nullable[*rp - ntokens]) | |
266 | done = false; | |
267 | } | |
268 | } | |
269 | } | |
d0fb370f | 270 | |
da2a7671 | 271 | if (nedges == 0) |
e9690142 | 272 | includes[i] = NULL; |
da2a7671 | 273 | else |
e9690142 JD |
274 | { |
275 | int j; | |
276 | includes[i] = xnmalloc (nedges + 1, sizeof includes[i][0]); | |
277 | for (j = 0; j < nedges; j++) | |
278 | includes[i][j] = edge[j]; | |
279 | includes[i][nedges] = END_NODE; | |
280 | } | |
d0fb370f RS |
281 | } |
282 | ||
afbb696d PE |
283 | free (edge); |
284 | free (states1); | |
9887c18a | 285 | |
0e4d5753 | 286 | relation_transpose (&includes, ngotos); |
d0fb370f RS |
287 | } |
288 | ||
289 | ||
720d742f | 290 | |
4a120d45 | 291 | static void |
720d742f | 292 | compute_FOLLOWS (void) |
d0fb370f | 293 | { |
60e3ecc7 | 294 | goto_number i; |
d0fb370f | 295 | |
db34f798 | 296 | relation_digraph (includes, ngotos, &goto_follows); |
d0fb370f RS |
297 | |
298 | for (i = 0; i < ngotos; i++) | |
afbb696d | 299 | free (includes[i]); |
d0fb370f | 300 | |
afbb696d | 301 | free (includes); |
d0fb370f RS |
302 | } |
303 | ||
304 | ||
4a120d45 | 305 | static void |
742e4900 | 306 | compute_lookahead_tokens (void) |
d0fb370f | 307 | { |
d200e455 | 308 | size_t i; |
5dde5425 | 309 | goto_list *sp; |
d0fb370f | 310 | |
d200e455 | 311 | for (i = 0; i < nLA; i++) |
ddcd5fdf | 312 | for (sp = lookback[i]; sp; sp = sp->next) |
db34f798 | 313 | bitset_or (LA[i], LA[i], goto_follows[sp->value]); |
d0fb370f | 314 | |
ddcd5fdf | 315 | /* Free LOOKBACK. */ |
d200e455 | 316 | for (i = 0; i < nLA; i++) |
5dde5425 | 317 | LIST_FREE (goto_list, lookback[i]); |
d0fb370f | 318 | |
afbb696d | 319 | free (lookback); |
720d742f | 320 | } |
d0fb370f | 321 | |
d0fb370f | 322 | |
742e4900 JD |
323 | /*----------------------------------------------------. |
324 | | Count the number of lookahead tokens required for S | | |
325 | | (N_LOOKAHEAD_TOKENS member). | | |
326 | `----------------------------------------------------*/ | |
5edafffd | 327 | |
cd08e51e | 328 | static int |
110ef36a | 329 | state_lookahead_tokens_count (state *s, bool default_reduction_only_for_accept) |
5edafffd | 330 | { |
742e4900 | 331 | int n_lookahead_tokens = 0; |
5dde5425 PE |
332 | reductions *rp = s->reductions; |
333 | transitions *sp = s->transitions; | |
cd08e51e | 334 | |
7254f6a8 JD |
335 | /* Transitions are only disabled during conflict resolution, and that |
336 | hasn't happened yet, so there should be no need to check that | |
337 | transition 0 hasn't been disabled before checking if it is a shift. | |
338 | However, this check was performed at one time, so we leave it as an | |
339 | aver. */ | |
2a6b783d | 340 | aver (sp->num == 0 || !TRANSITION_IS_DISABLED (sp, 0)); |
7254f6a8 JD |
341 | |
342 | /* We need a lookahead either to distinguish different reductions | |
343 | (i.e., there are two or more), or to distinguish a reduction from a | |
344 | shift. Otherwise, it is straightforward, and the state is | |
e459fb0e JD |
345 | `consistent'. However, do not treat a state with any reductions as |
346 | consistent unless it is the accepting state (because there is never | |
347 | a lookahead token that makes sense there, and so no lookahead token | |
348 | should be read) if the user has otherwise disabled default | |
349 | reductions. */ | |
cd08e51e | 350 | if (rp->num > 1 |
7254f6a8 JD |
351 | || (rp->num == 1 && sp->num && TRANSITION_IS_SHIFT (sp, 0)) |
352 | || (rp->num == 1 && rp->rules[0]->number != 0 | |
110ef36a | 353 | && default_reduction_only_for_accept)) |
742e4900 | 354 | n_lookahead_tokens += rp->num; |
cd08e51e | 355 | else |
5dde5425 | 356 | s->consistent = 1; |
cd08e51e | 357 | |
742e4900 | 358 | return n_lookahead_tokens; |
5edafffd AD |
359 | } |
360 | ||
7c6b64d0 | 361 | |
742e4900 JD |
362 | /*----------------------------------------------------. |
363 | | Compute LA, NLA, and the lookahead_tokens members. | | |
364 | `----------------------------------------------------*/ | |
c0263492 | 365 | |
db34f798 | 366 | void |
cd08e51e | 367 | initialize_LA (void) |
c0263492 | 368 | { |
5dde5425 | 369 | state_number i; |
cd08e51e | 370 | bitsetv pLA; |
110ef36a | 371 | bool default_reduction_only_for_accept; |
7254f6a8 | 372 | { |
110ef36a | 373 | char *default_reductions = |
f3bc3386 | 374 | muscle_percent_define_get ("lr.default-reduction"); |
f518dbaf | 375 | default_reduction_only_for_accept = STREQ (default_reductions, "accepting"); |
110ef36a | 376 | free (default_reductions); |
7254f6a8 | 377 | } |
c0263492 | 378 | |
742e4900 | 379 | /* Compute the total number of reductions requiring a lookahead. */ |
cd08e51e AD |
380 | nLA = 0; |
381 | for (i = 0; i < nstates; i++) | |
7254f6a8 | 382 | nLA += |
110ef36a JD |
383 | state_lookahead_tokens_count (states[i], |
384 | default_reduction_only_for_accept); | |
cd08e51e AD |
385 | /* Avoid having to special case 0. */ |
386 | if (!nLA) | |
387 | nLA = 1; | |
388 | ||
389 | pLA = LA = bitsetv_create (nLA, ntokens, BITSET_FIXED); | |
cd08e51e | 390 | |
742e4900 JD |
391 | /* Initialize the members LOOKAHEAD_TOKENS for each state whose reductions |
392 | require lookahead tokens. */ | |
c0263492 AD |
393 | for (i = 0; i < nstates; i++) |
394 | { | |
7254f6a8 | 395 | int count = |
110ef36a JD |
396 | state_lookahead_tokens_count (states[i], |
397 | default_reduction_only_for_accept); | |
cd08e51e | 398 | if (count) |
e9690142 JD |
399 | { |
400 | states[i]->reductions->lookahead_tokens = pLA; | |
401 | pLA += count; | |
402 | } | |
c0263492 AD |
403 | } |
404 | } | |
405 | ||
406 | ||
742e4900 JD |
407 | /*---------------------------------------------. |
408 | | Output the lookahead tokens for each state. | | |
409 | `---------------------------------------------*/ | |
7c6b64d0 AD |
410 | |
411 | static void | |
742e4900 | 412 | lookahead_tokens_print (FILE *out) |
7c6b64d0 | 413 | { |
5dde5425 | 414 | state_number i; |
602bbf31 | 415 | int j, k; |
742e4900 | 416 | fprintf (out, "Lookahead tokens: BEGIN\n"); |
7c6b64d0 AD |
417 | for (i = 0; i < nstates; ++i) |
418 | { | |
5dde5425 | 419 | reductions *reds = states[i]->reductions; |
613f5e1a | 420 | bitset_iterator iter; |
742e4900 | 421 | int n_lookahead_tokens = 0; |
cd08e51e | 422 | |
742e4900 | 423 | if (reds->lookahead_tokens) |
e9690142 JD |
424 | for (k = 0; k < reds->num; ++k) |
425 | if (reds->lookahead_tokens[k]) | |
426 | ++n_lookahead_tokens; | |
613f5e1a | 427 | |
742e4900 | 428 | fprintf (out, "State %d: %d lookahead tokens\n", |
e9690142 | 429 | i, n_lookahead_tokens); |
7c6b64d0 | 430 | |
742e4900 | 431 | if (reds->lookahead_tokens) |
e9690142 JD |
432 | for (j = 0; j < reds->num; ++j) |
433 | BITSET_FOR_EACH (iter, reds->lookahead_tokens[j], k, 0) | |
434 | { | |
435 | fprintf (out, " on %d (%s) -> rule %d\n", | |
436 | k, symbols[k]->tag, | |
437 | reds->rules[j]->number); | |
438 | }; | |
7c6b64d0 | 439 | } |
742e4900 | 440 | fprintf (out, "Lookahead tokens: END\n"); |
7c6b64d0 AD |
441 | } |
442 | ||
720d742f AD |
443 | void |
444 | lalr (void) | |
445 | { | |
720d742f AD |
446 | initialize_LA (); |
447 | set_goto_map (); | |
448 | initialize_F (); | |
db34f798 | 449 | lookback = xcalloc (nLA, sizeof *lookback); |
720d742f AD |
450 | build_relations (); |
451 | compute_FOLLOWS (); | |
742e4900 | 452 | compute_lookahead_tokens (); |
7c6b64d0 | 453 | |
273a74fa | 454 | if (trace_flag & trace_sets) |
742e4900 | 455 | lookahead_tokens_print (stderr); |
d0fb370f | 456 | } |
3325ddc4 AD |
457 | |
458 | ||
5967f0cf JD |
459 | void |
460 | lalr_update_state_numbers (state_number old_to_new[], state_number nstates_old) | |
461 | { | |
462 | goto_number ngotos_reachable = 0; | |
463 | symbol_number nonterminal = 0; | |
464 | aver (nsyms == nvars + ntokens); | |
14462c2b JD |
465 | { |
466 | goto_number i; | |
467 | for (i = 0; i < ngotos; ++i) | |
468 | { | |
469 | while (i == goto_map[nonterminal]) | |
470 | goto_map[nonterminal++] = ngotos_reachable; | |
471 | /* If old_to_new[from_state[i]] = nstates_old, remove this goto | |
472 | entry. */ | |
473 | if (old_to_new[from_state[i]] != nstates_old) | |
474 | { | |
475 | /* from_state[i] is not removed, so it and thus to_state[i] are | |
476 | reachable, so to_state[i] != nstates_old. */ | |
477 | aver (old_to_new[to_state[i]] != nstates_old); | |
478 | from_state[ngotos_reachable] = old_to_new[from_state[i]]; | |
479 | to_state[ngotos_reachable] = old_to_new[to_state[i]]; | |
480 | ++ngotos_reachable; | |
481 | } | |
482 | } | |
483 | } | |
5967f0cf JD |
484 | while (nonterminal <= nvars) |
485 | { | |
486 | aver (ngotos == goto_map[nonterminal]); | |
487 | goto_map[nonterminal++] = ngotos_reachable; | |
488 | } | |
489 | ngotos = ngotos_reachable; | |
490 | } | |
491 | ||
492 | ||
3325ddc4 AD |
493 | void |
494 | lalr_free (void) | |
495 | { | |
5dde5425 | 496 | state_number s; |
3325ddc4 | 497 | for (s = 0; s < nstates; ++s) |
742e4900 | 498 | states[s]->reductions->lookahead_tokens = NULL; |
3325ddc4 | 499 | bitsetv_free (LA); |
3325ddc4 | 500 | } |