]>
git.saurik.com Git - bison.git/blob - src/lalr.c
1dfb293d7f0168f2854caf86d92e3e592c22fd60
1 /* Compute look-ahead criteria for bison,
2 Copyright 1984, 1986, 1989, 2000, 2001 Free Software Foundation, Inc.
4 This file is part of Bison, the GNU Compiler Compiler.
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)
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.
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. */
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. */
36 /* All the decorated states, indexed by the state number. */
37 state_t
**state_table
= NULL
;
49 /* And for the famous F variable, which name is so descriptive that a
50 comment is hardly needed. <grin>. */
51 static unsigned *F
= NULL
;
52 #define F(Rule) (F + (Rule) * tokensetsize)
54 static short **includes
;
55 static shorts
**lookback
;
58 /*---------------------------------------------------------------.
59 | digraph & traverse. |
61 | The following variables are used as common storage between the |
63 `---------------------------------------------------------------*/
67 static short *VERTICES
;
77 size_t size
= F (i
+ 1) - F(i
);
80 INDEX
[i
] = height
= top
;
83 for (j
= 0; R
[i
][j
] >= 0; ++j
)
85 if (INDEX
[R
[i
][j
]] == 0)
88 if (INDEX
[i
] > INDEX
[R
[i
][j
]])
89 INDEX
[i
] = INDEX
[R
[i
][j
]];
91 for (k
= 0; k
< size
; ++k
)
92 F (i
)[k
] |= F (R
[i
][j
])[k
];
95 if (INDEX
[i
] == height
)
104 for (k
= 0; k
< size
; ++k
)
111 digraph (short **relation
)
115 infinity
= ngotos
+ 2;
116 INDEX
= XCALLOC (short, ngotos
+ 1);
117 VERTICES
= XCALLOC (short, ngotos
+ 1);
122 for (i
= 0; i
< ngotos
; i
++)
125 for (i
= 0; i
< ngotos
; i
++)
126 if (INDEX
[i
] == 0 && R
[i
])
142 /* Avoid having to special case 0. */
146 LA
= XCALLOC (unsigned, nLA
* tokensetsize
);
147 LAruleno
= XCALLOC (short, nLA
);
148 lookback
= XCALLOC (shorts
*, nLA
);
151 for (i
= 0; i
< nstates
; i
++)
152 if (!state_table
[i
]->consistent
)
153 if ((rp
= state_table
[i
]->reductions
))
154 for (j
= 0; j
< rp
->nreds
; j
++)
155 *np
++ = rp
->rules
[j
];
165 goto_map
= XCALLOC (short, nvars
+ 1) - ntokens
;
166 temp_map
= XCALLOC (short, nvars
+ 1) - ntokens
;
169 for (state
= 0; state
< nstates
; ++state
)
171 shifts
*sp
= state_table
[state
]->shifts
;
172 for (i
= sp
->nshifts
- 1; i
>= 0 && SHIFT_IS_GOTO (sp
, i
); --i
)
174 int symbol
= state_table
[sp
->shifts
[i
]]->accessing_symbol
;
176 if (ngotos
== MAXSHORT
)
177 fatal (_("too many gotos (max %d)"), MAXSHORT
);
186 for (i
= ntokens
; i
< nsyms
; i
++)
192 for (i
= ntokens
; i
< nsyms
; i
++)
193 goto_map
[i
] = temp_map
[i
];
195 goto_map
[nsyms
] = ngotos
;
196 temp_map
[nsyms
] = ngotos
;
199 from_state
= XCALLOC (short, ngotos
);
200 to_state
= XCALLOC (short, ngotos
);
202 for (state
= 0; state
< nstates
; ++state
)
204 shifts
*sp
= state_table
[state
]->shifts
;
205 for (i
= sp
->nshifts
- 1; i
>= 0 && SHIFT_IS_GOTO (sp
, i
); --i
)
207 int state2
= sp
->shifts
[i
];
208 int symbol
= state_table
[state2
]->accessing_symbol
;
210 int k
= temp_map
[symbol
]++;
211 from_state
[k
] = state
;
212 to_state
[k
] = state2
;
216 XFREE (temp_map
+ ntokens
);
221 /*----------------------------------------------------------.
222 | Map a state/symbol pair into its numeric representation. |
223 `----------------------------------------------------------*/
226 map_goto (int state
, int symbol
)
233 low
= goto_map
[symbol
];
234 high
= goto_map
[symbol
+ 1] - 1;
238 middle
= (low
+ high
) / 2;
239 s
= from_state
[middle
];
257 short **reads
= XCALLOC (short *, ngotos
);
258 short *edge
= XCALLOC (short, ngotos
+ 1);
263 F
= XCALLOC (unsigned, ngotos
* tokensetsize
);
265 for (i
= 0; i
< ngotos
; i
++)
267 int stateno
= to_state
[i
];
268 shifts
*sp
= state_table
[stateno
]->shifts
;
271 for (j
= 0; j
< sp
->nshifts
&& SHIFT_IS_SHIFT (sp
, j
); j
++)
273 int symbol
= state_table
[sp
->shifts
[j
]]->accessing_symbol
;
274 SETBIT (F (i
), symbol
);
277 for (; j
< sp
->nshifts
; j
++)
279 int symbol
= state_table
[sp
->shifts
[j
]]->accessing_symbol
;
280 if (nullable
[symbol
])
281 edge
[nedges
++] = map_goto (stateno
, symbol
);
286 reads
[i
] = XCALLOC (short, nedges
+ 1);
287 shortcpy (reads
[i
], edge
, nedges
);
288 reads
[i
][nedges
] = -1;
295 for (i
= 0; i
< ngotos
; i
++)
304 add_lookback_edge (int stateno
, int ruleno
, int gotono
)
309 for (i
= 0; i
< state_table
[stateno
]->nlookaheads
; ++i
)
310 if (LAruleno
[state_table
[stateno
]->lookaheadsp
+ i
] == ruleno
)
313 assert (LAruleno
[state_table
[stateno
]->lookaheadsp
+ i
] == ruleno
);
315 sp
= XCALLOC (shorts
, 1);
316 sp
->next
= lookback
[state_table
[stateno
]->lookaheadsp
+ i
];
318 lookback
[state_table
[stateno
]->lookaheadsp
+ i
] = sp
;
323 matrix_print (FILE *out
, short **matrix
, int n
)
327 for (i
= 0; i
< n
; ++i
)
329 fprintf (out
, "%3d: ", i
);
331 for (j
= 0; matrix
[i
][j
] != -1; ++j
)
332 fprintf (out
, "%3d ", matrix
[i
][j
]);
338 /*-------------------------------------------------------------------.
339 | Return the transpose of R_ARG, of size N. Destroy R_ARG, as it is |
340 | replaced with the result. |
342 | R_ARG[I] is NULL or a -1 terminated list of numbers. |
344 | RESULT[NUM] is NULL or the -1 terminated list of the I such as NUM |
346 `-------------------------------------------------------------------*/
349 transpose (short **R_arg
, int n
)
352 short **new_R
= XCALLOC (short *, n
);
353 /* END_R[I] -- next entry of NEW_R[I]. */
354 short **end_R
= XCALLOC (short *, n
);
355 /* NEDGES[I] -- total size of NEW_R[I]. */
356 short *nedges
= XCALLOC (short, n
);
361 fputs ("transpose: input\n", stderr
);
362 matrix_print (stderr
, R_arg
, n
);
366 for (i
= 0; i
< n
; i
++)
368 for (j
= 0; R_arg
[i
][j
] >= 0; ++j
)
369 ++nedges
[R_arg
[i
][j
]];
372 for (i
= 0; i
< n
; i
++)
375 short *sp
= XCALLOC (short, nedges
[i
] + 1);
382 for (i
= 0; i
< n
; i
++)
384 for (j
= 0; R_arg
[i
][j
] >= 0; ++j
)
386 *end_R
[R_arg
[i
][j
]] = i
;
387 ++end_R
[R_arg
[i
][j
]];
393 /* Free the input: it is replaced with the result. */
394 for (i
= 0; i
< n
; i
++)
400 fputs ("transpose: output\n", stderr
);
401 matrix_print (stderr
, new_R
, n
);
409 build_relations (void)
411 short *edge
= XCALLOC (short, ngotos
+ 1);
412 short *states
= XCALLOC (short, ritem_longest_rhs () + 1);
415 includes
= XCALLOC (short *, ngotos
);
417 for (i
= 0; i
< ngotos
; i
++)
420 int state1
= from_state
[i
];
421 int symbol1
= state_table
[to_state
[i
]]->accessing_symbol
;
424 for (rulep
= derives
[symbol1
]; *rulep
> 0; rulep
++)
428 int stateno
= state1
;
432 for (rp
= ritem
+ rule_table
[*rulep
].rhs
; *rp
> 0; rp
++)
434 shifts
*sp
= state_table
[stateno
]->shifts
;
436 for (j
= 0; j
< sp
->nshifts
; j
++)
438 stateno
= sp
->shifts
[j
];
439 if (state_table
[stateno
]->accessing_symbol
== *rp
)
443 states
[length
++] = stateno
;
446 if (!state_table
[stateno
]->consistent
)
447 add_lookback_edge (stateno
, *rulep
, i
);
455 /* JF added rp>=ritem && I hope to god its right! */
456 if (rp
>= ritem
&& ISVAR (*rp
))
458 stateno
= states
[--length
];
459 edge
[nedges
++] = map_goto (stateno
, *rp
);
469 includes
[i
] = XCALLOC (short, nedges
+ 1);
470 for (j
= 0; j
< nedges
; j
++)
471 includes
[i
][j
] = edge
[j
];
472 includes
[i
][nedges
] = -1;
479 includes
= transpose (includes
, ngotos
);
485 compute_FOLLOWS (void)
491 for (i
= 0; i
< ngotos
; i
++)
499 compute_lookaheads (void)
504 for (i
= 0; i
< nLA
; i
++)
505 for (sp
= lookback
[i
]; sp
; sp
= sp
->next
)
507 int size
= LA (i
+ 1) - LA (i
);
509 for (j
= 0; j
< size
; ++j
)
510 LA (i
)[j
] |= F (sp
->value
)[j
];
514 for (i
= 0; i
< nLA
; i
++)
515 LIST_FREE (shorts
, lookback
[i
]);
522 /*--------------------------------------.
523 | Initializing the lookaheads members. |
524 `--------------------------------------*/
527 initialize_lookaheads (void)
531 for (i
= 0; i
< nstates
; i
++)
535 reductions
*rp
= state_table
[i
]->reductions
;
536 shifts
*sp
= state_table
[i
]->shifts
;
539 && (rp
->nreds
> 1 || (sp
->nshifts
&& SHIFT_IS_SHIFT (sp
, 0))))
540 nlookaheads
+= rp
->nreds
;
542 state_table
[i
]->consistent
= 1;
544 for (k
= 0; k
< sp
->nshifts
; k
++)
545 if (SHIFT_IS_ERROR (sp
, k
))
547 state_table
[i
]->consistent
= 0;
551 state_table
[i
]->nlookaheads
= nlookaheads
;
552 state_table
[i
]->lookaheadsp
= nLA
;
560 tokensetsize
= WORDSIZE (ntokens
);
562 initialize_lookaheads ();
568 compute_lookaheads ();