]> git.saurik.com Git - bison.git/blob - src/lalr.c
9dda7f05647331a319e6d8ff7a9b24d7ac7d42a5
[bison.git] / src / lalr.c
1 /* Compute look-ahead criteria for bison,
2 Copyright 1984, 1986, 1989, 2000, 2001 Free Software Foundation, Inc.
3
4 This file is part of Bison, the GNU Compiler Compiler.
5
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.
10
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.
15
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. */
20
21
22 /* Compute how to make the finite state machine deterministic; find
23 which rules need lookahead in each state, and which lookahead
24 tokens they accept. */
25
26 #include "system.h"
27 #include "bitset.h"
28 #include "reader.h"
29 #include "types.h"
30 #include "LR0.h"
31 #include "symtab.h"
32 #include "gram.h"
33 #include "complain.h"
34 #include "lalr.h"
35 #include "nullable.h"
36 #include "derives.h"
37 #include "getargs.h"
38
39 /* All the decorated states, indexed by the state number. */
40 state_t **states = NULL;
41
42 short *LAruleno = NULL;
43 bitset *LA = NULL;
44 size_t nLA;
45
46 static int ngotos;
47 short *goto_map = NULL;
48 short *from_state = NULL;
49 short *to_state = NULL;
50
51 /* And for the famous F variable, which name is so descriptive that a
52 comment is hardly needed. <grin>. */
53 static bitset *F = NULL;
54
55 static short **includes;
56 static shorts **lookback;
57
58
59 /*---------------------------------------------------------------.
60 | digraph & traverse. |
61 | |
62 | The following variables are used as common storage between the |
63 | two. |
64 `---------------------------------------------------------------*/
65
66 static short **R;
67 static short *INDEX;
68 static short *VERTICES;
69 static int top;
70 static int infinity;
71
72 static void
73 traverse (int i)
74 {
75 int j;
76 int height;
77
78 VERTICES[++top] = i;
79 INDEX[i] = height = top;
80
81 if (R[i])
82 for (j = 0; R[i][j] >= 0; ++j)
83 {
84 if (INDEX[R[i][j]] == 0)
85 traverse (R[i][j]);
86
87 if (INDEX[i] > INDEX[R[i][j]])
88 INDEX[i] = INDEX[R[i][j]];
89
90 bitset_or (F[i], F[i], F[R[i][j]]);
91 }
92
93 if (INDEX[i] == height)
94 for (;;)
95 {
96 j = VERTICES[top--];
97 INDEX[j] = infinity;
98
99 if (i == j)
100 break;
101
102 bitset_copy (F[j], F[i]);
103 }
104 }
105
106
107 static void
108 digraph (short **relation)
109 {
110 int i;
111
112 infinity = ngotos + 2;
113 INDEX = XCALLOC (short, ngotos + 1);
114 VERTICES = XCALLOC (short, ngotos + 1);
115 top = 0;
116
117 R = relation;
118
119 for (i = 0; i < ngotos; i++)
120 INDEX[i] = 0;
121
122 for (i = 0; i < ngotos; i++)
123 if (INDEX[i] == 0 && R[i])
124 traverse (i);
125
126 XFREE (INDEX);
127 XFREE (VERTICES);
128 }
129
130
131 static void
132 initialize_LA (void)
133 {
134 size_t i;
135 int j;
136 short *np;
137
138 /* Avoid having to special case 0. */
139 if (!nLA)
140 nLA = 1;
141
142 LA = XCALLOC (bitset, nLA);
143 for (i = 0; i < nLA; ++i)
144 LA[i] = bitset_create (ntokens, BITSET_FIXED);
145 LAruleno = XCALLOC (short, nLA);
146 lookback = XCALLOC (shorts *, nLA);
147
148 np = LAruleno;
149 for (i = 0; i < nstates; i++)
150 if (!states[i]->consistent)
151 for (j = 0; j < states[i]->reductions->nreds; j++)
152 *np++ = states[i]->reductions->rules[j];
153 }
154
155
156 static void
157 set_goto_map (void)
158 {
159 size_t state;
160 int i;
161 short *temp_map;
162
163 goto_map = XCALLOC (short, nvars + 1) - ntokens;
164 temp_map = XCALLOC (short, nvars + 1) - ntokens;
165
166 ngotos = 0;
167 for (state = 0; state < nstates; ++state)
168 {
169 shifts *sp = states[state]->shifts;
170 for (i = sp->nshifts - 1; i >= 0 && SHIFT_IS_GOTO (sp, i); --i)
171 {
172 if (ngotos == MAXSHORT)
173 fatal (_("too many gotos (max %d)"), MAXSHORT);
174
175 ngotos++;
176 goto_map[SHIFT_SYMBOL (sp, i)]++;
177 }
178 }
179
180 {
181 int k = 0;
182 for (i = ntokens; i < nsyms; i++)
183 {
184 temp_map[i] = k;
185 k += goto_map[i];
186 }
187
188 for (i = ntokens; i < nsyms; i++)
189 goto_map[i] = temp_map[i];
190
191 goto_map[nsyms] = ngotos;
192 temp_map[nsyms] = ngotos;
193 }
194
195 from_state = XCALLOC (short, ngotos);
196 to_state = XCALLOC (short, ngotos);
197
198 for (state = 0; state < nstates; ++state)
199 {
200 shifts *sp = states[state]->shifts;
201 for (i = sp->nshifts - 1; i >= 0 && SHIFT_IS_GOTO (sp, i); --i)
202 {
203 int k = temp_map[SHIFT_SYMBOL (sp, i)]++;
204 from_state[k] = state;
205 to_state[k] = sp->shifts[i];
206 }
207 }
208
209 XFREE (temp_map + ntokens);
210 }
211
212
213
214 /*----------------------------------------------------------.
215 | Map a state/symbol pair into its numeric representation. |
216 `----------------------------------------------------------*/
217
218 static int
219 map_goto (int state, int symbol)
220 {
221 int high;
222 int low;
223 int middle;
224 int s;
225
226 low = goto_map[symbol];
227 high = goto_map[symbol + 1] - 1;
228
229 while (low <= high)
230 {
231 middle = (low + high) / 2;
232 s = from_state[middle];
233 if (s == state)
234 return middle;
235 else if (s < state)
236 low = middle + 1;
237 else
238 high = middle - 1;
239 }
240
241 assert (0);
242 /* NOTREACHED */
243 return 0;
244 }
245
246
247 static void
248 initialize_F (void)
249 {
250 short **reads = XCALLOC (short *, ngotos);
251 short *edge = XCALLOC (short, ngotos + 1);
252 int nedges = 0;
253
254 int i;
255
256 F = XCALLOC (bitset, ngotos);
257 for (i = 0; i < ngotos; ++i)
258 F[i] = bitset_create (ntokens, BITSET_FIXED);
259
260 for (i = 0; i < ngotos; i++)
261 {
262 int stateno = to_state[i];
263 shifts *sp = states[stateno]->shifts;
264
265 int j;
266 for (j = 0; j < sp->nshifts && SHIFT_IS_SHIFT (sp, j); j++)
267 bitset_set (F[i], SHIFT_SYMBOL (sp, j));
268
269 for (; j < sp->nshifts; j++)
270 {
271 int symbol = SHIFT_SYMBOL (sp, j);
272 if (nullable[symbol])
273 edge[nedges++] = map_goto (stateno, symbol);
274 }
275
276 if (nedges)
277 {
278 reads[i] = XCALLOC (short, nedges + 1);
279 shortcpy (reads[i], edge, nedges);
280 reads[i][nedges] = -1;
281 nedges = 0;
282 }
283 }
284
285 digraph (reads);
286
287 for (i = 0; i < ngotos; i++)
288 XFREE (reads[i]);
289
290 XFREE (reads);
291 XFREE (edge);
292 }
293
294
295 static void
296 add_lookback_edge (state_t *state, int ruleno, int gotono)
297 {
298 int i;
299 shorts *sp;
300
301 for (i = 0; i < state->nlookaheads; ++i)
302 if (LAruleno[state->lookaheadsp + i] == ruleno)
303 break;
304
305 assert (LAruleno[state->lookaheadsp + i] == ruleno);
306
307 sp = XCALLOC (shorts, 1);
308 sp->next = lookback[state->lookaheadsp + i];
309 sp->value = gotono;
310 lookback[state->lookaheadsp + i] = sp;
311 }
312
313
314 static void
315 matrix_print (FILE *out, short **matrix, int n)
316 {
317 int i, j;
318
319 for (i = 0; i < n; ++i)
320 {
321 fprintf (out, "%3d: ", i);
322 if (matrix[i])
323 for (j = 0; matrix[i][j] != -1; ++j)
324 fprintf (out, "%3d ", matrix[i][j]);
325 fputc ('\n', out);
326 }
327 fputc ('\n', out);
328 }
329
330 /*-------------------------------------------------------------------.
331 | Return the transpose of R_ARG, of size N. Destroy R_ARG, as it is |
332 | replaced with the result. |
333 | |
334 | R_ARG[I] is NULL or a -1 terminated list of numbers. |
335 | |
336 | RESULT[NUM] is NULL or the -1 terminated list of the I such as NUM |
337 | is in R_ARG[I]. |
338 `-------------------------------------------------------------------*/
339
340 static short **
341 transpose (short **R_arg, int n)
342 {
343 /* The result. */
344 short **new_R = XCALLOC (short *, n);
345 /* END_R[I] -- next entry of NEW_R[I]. */
346 short **end_R = XCALLOC (short *, n);
347 /* NEDGES[I] -- total size of NEW_R[I]. */
348 short *nedges = XCALLOC (short, n);
349 int i, j;
350
351 if (trace_flag)
352 {
353 fputs ("transpose: input\n", stderr);
354 matrix_print (stderr, R_arg, n);
355 }
356
357 /* Count. */
358 for (i = 0; i < n; i++)
359 if (R_arg[i])
360 for (j = 0; R_arg[i][j] >= 0; ++j)
361 ++nedges[R_arg[i][j]];
362
363 /* Allocate. */
364 for (i = 0; i < n; i++)
365 if (nedges[i] > 0)
366 {
367 short *sp = XCALLOC (short, nedges[i] + 1);
368 sp[nedges[i]] = -1;
369 new_R[i] = sp;
370 end_R[i] = sp;
371 }
372
373 /* Store. */
374 for (i = 0; i < n; i++)
375 if (R_arg[i])
376 for (j = 0; R_arg[i][j] >= 0; ++j)
377 {
378 *end_R[R_arg[i][j]] = i;
379 ++end_R[R_arg[i][j]];
380 }
381
382 free (nedges);
383 free (end_R);
384
385 /* Free the input: it is replaced with the result. */
386 for (i = 0; i < n; i++)
387 XFREE (R_arg[i]);
388 free (R_arg);
389
390 if (trace_flag)
391 {
392 fputs ("transpose: output\n", stderr);
393 matrix_print (stderr, new_R, n);
394 }
395
396 return new_R;
397 }
398
399
400 static void
401 build_relations (void)
402 {
403 short *edge = XCALLOC (short, ngotos + 1);
404 short *states1 = XCALLOC (short, ritem_longest_rhs () + 1);
405 int i;
406
407 includes = XCALLOC (short *, ngotos);
408
409 for (i = 0; i < ngotos; i++)
410 {
411 int nedges = 0;
412 int symbol1 = states[to_state[i]]->accessing_symbol;
413 short *rulep;
414
415 for (rulep = derives[symbol1]; *rulep > 0; rulep++)
416 {
417 int done;
418 int length = 1;
419 short *rp;
420 state_t *state = states[from_state[i]];
421 states1[0] = state->number;
422
423 for (rp = &ritem[rules[*rulep].rhs]; *rp >= 0; rp++)
424 {
425 shifts *sp = state->shifts;
426 int j;
427 for (j = 0; j < sp->nshifts; j++)
428 {
429 state = states[sp->shifts[j]];
430 if (state->accessing_symbol == *rp)
431 break;
432 }
433
434 states1[length++] = state->number;
435 }
436
437 if (!state->consistent)
438 add_lookback_edge (state, *rulep, i);
439
440 length--;
441 done = 0;
442 while (!done)
443 {
444 done = 1;
445 rp--;
446 /* JF added rp>=ritem && I hope to god its right! */
447 if (rp >= ritem && ISVAR (*rp))
448 {
449 edge[nedges++] = map_goto (states1[--length], *rp);
450 if (nullable[*rp])
451 done = 0;
452 }
453 }
454 }
455
456 if (nedges)
457 {
458 int j;
459 includes[i] = XCALLOC (short, nedges + 1);
460 for (j = 0; j < nedges; j++)
461 includes[i][j] = edge[j];
462 includes[i][nedges] = -1;
463 }
464 }
465
466 XFREE (edge);
467 XFREE (states1);
468
469 includes = transpose (includes, ngotos);
470 }
471
472
473
474 static void
475 compute_FOLLOWS (void)
476 {
477 int i;
478
479 digraph (includes);
480
481 for (i = 0; i < ngotos; i++)
482 XFREE (includes[i]);
483
484 XFREE (includes);
485 }
486
487
488 static void
489 compute_lookaheads (void)
490 {
491 size_t i;
492 shorts *sp;
493
494 for (i = 0; i < nLA; i++)
495 for (sp = lookback[i]; sp; sp = sp->next)
496 bitset_or (LA[i], LA[i], F[sp->value]);
497
498 /* Free LOOKBACK. */
499 for (i = 0; i < nLA; i++)
500 LIST_FREE (shorts, lookback[i]);
501
502 XFREE (lookback);
503 for (i = 0; i < (unsigned) ngotos; ++i)
504 bitset_free (F[i]);
505 XFREE (F);
506 }
507
508
509 /*--------------------------------------.
510 | Initializing the lookaheads members. |
511 `--------------------------------------*/
512
513 static void
514 initialize_lookaheads (void)
515 {
516 size_t i;
517 nLA = 0;
518 for (i = 0; i < nstates; i++)
519 {
520 int k;
521 int nlookaheads = 0;
522 reductions *rp = states[i]->reductions;
523 shifts *sp = states[i]->shifts;
524
525 /* We need a lookahead either to distinguish different
526 reductions (i.e., there are two or more), or to distinguish a
527 reduction from a shift. Otherwise, it is straightforward,
528 and the state is `consistent'. */
529 if (rp->nreds > 1
530 || (rp->nreds == 1 && sp->nshifts && SHIFT_IS_SHIFT (sp, 0)))
531 nlookaheads += rp->nreds;
532 else
533 states[i]->consistent = 1;
534
535 for (k = 0; k < sp->nshifts; k++)
536 if (SHIFT_IS_ERROR (sp, k))
537 {
538 states[i]->consistent = 0;
539 break;
540 }
541
542 states[i]->nlookaheads = nlookaheads;
543 states[i]->lookaheadsp = nLA;
544 nLA += nlookaheads;
545 }
546 }
547
548
549 /*---------------------------------------.
550 | Output the lookaheads for each state. |
551 `---------------------------------------*/
552
553 static void
554 lookaheads_print (FILE *out)
555 {
556 size_t i;
557 int j, k;
558 fprintf (out, "Lookaheads: BEGIN\n");
559 for (i = 0; i < nstates; ++i)
560 {
561 fprintf (out, "State %d: %d lookaheads\n",
562 i, states[i]->nlookaheads);
563
564 for (j = 0; j < states[i]->nlookaheads; ++j)
565 for (k = 0; k < ntokens; ++k)
566 if (bitset_test (LA[states[i]->lookaheadsp + j], j))
567 fprintf (out, " on %d (%s) -> rule %d\n",
568 k, symbols[k]->tag,
569 -LAruleno[states[i]->lookaheadsp + j] - 1);
570 }
571 fprintf (out, "Lookaheads: END\n");
572 }
573
574 void
575 lalr (void)
576 {
577 initialize_lookaheads ();
578 initialize_LA ();
579 set_goto_map ();
580 initialize_F ();
581 build_relations ();
582 compute_FOLLOWS ();
583 compute_lookaheads ();
584
585 if (trace_flag)
586 lookaheads_print (stderr);
587 }