1 /* Input parser for bison
2 Copyright (C) 1984, 1986, 1989, 1992, 1998, 2000, 2001, 2002
3 Free Software Foundation, Inc.
5 This file is part of Bison, the GNU Compiler Compiler.
7 Bison is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2, or (at your option)
12 Bison is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with Bison; see the file COPYING. If not, write to
19 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
20 Boston, MA 02111-1307, USA. */
34 #include "conflicts.h"
35 #include "muscle_tab.h"
38 static symbol_list_t
*grammar
= NULL
;
39 static int start_flag
= 0;
40 merger_list
*merge_functions
;
42 /* Nonzero if %union has been seen. */
45 /*-----------------------.
46 | Set the start symbol. |
47 `-----------------------*/
50 grammar_start_symbol_set (symbol_t
*s
, location_t l
)
53 complain_at (l
, _("multiple %s declarations"), "%start");
58 startsymbol_location
= l
;
63 /*----------------------------------------------------------------.
64 | There are two prologues: one before %union, one after. Augment |
66 `----------------------------------------------------------------*/
69 prologue_augment (const char *prologue
, location_t location
)
71 struct obstack
*oout
=
72 !typed
? &pre_prologue_obstack
: &post_prologue_obstack
;
76 obstack_fgrow2 (oout
, muscle_find ("linef"),
78 quotearg_style (c_quoting_style
,
79 muscle_find ("filename")));
81 obstack_sgrow (oout
, prologue
);
87 /*----------------------.
88 | Handle the epilogue. |
89 `----------------------*/
92 epilogue_set (const char *epilogue
, location_t location
)
96 obstack_fgrow2 (&muscle_obstack
, muscle_find ("linef"),
98 quotearg_style (c_quoting_style
,
99 muscle_find ("filename")));
101 obstack_sgrow (&muscle_obstack
, epilogue
);
102 obstack_1grow (&muscle_obstack
, 0);
103 muscle_insert ("epilogue", obstack_finish (&muscle_obstack
));
109 /*-------------------------------------------------------------------.
110 | Return the merger index for a merging function named NAME, whose |
111 | arguments have type TYPE. Records the function, if new, in |
113 `-------------------------------------------------------------------*/
116 get_merge_function (const char* name
, const char* type
)
128 head
.next
= merge_functions
;
129 for (syms
= &head
, n
= 1; syms
->next
!= NULL
; syms
= syms
->next
, n
+= 1)
130 if (strcmp (name
, syms
->next
->name
) == 0)
132 if (syms
->next
== NULL
) {
133 syms
->next
= XMALLOC (merger_list
, 1);
134 syms
->next
->name
= strdup (name
);
135 syms
->next
->type
= strdup (type
);
136 syms
->next
->next
= NULL
;
137 merge_functions
= head
.next
;
138 } else if (strcmp (type
, syms
->next
->type
) != 0)
139 warn (_("result type clash on merge function %s: `%s' vs. `%s'"),
140 name
, type
, syms
->next
->type
);
144 /*--------------------------------------.
145 | Free all merge-function definitions. |
146 `--------------------------------------*/
149 free_merger_functions (void)
154 L0
= merge_functions
;
157 merger_list
*L1
= L0
->next
;
163 /*-------------------------------------------------------------------.
164 | Generate a dummy symbol, a nonterminal, whose name cannot conflict |
165 | with the user's names. |
166 `-------------------------------------------------------------------*/
169 gensym (location_t location
)
171 /* Incremented for each generated symbol */
172 static int gensym_count
= 0;
173 static char buf
[256];
177 sprintf (buf
, "@%d", ++gensym_count
);
178 sym
= getsym (buf
, location
);
179 sym
->class = nterm_sym
;
180 sym
->number
= nvars
++;
184 /*-------------------------------------------------------------------.
185 | Parse the input grammar into a one symbol_list_t structure. Each |
186 | rule is represented by a sequence of symbols: the left hand side |
187 | followed by the contents of the right hand side, followed by a |
188 | null pointer instead of a symbol to terminate the rule. The next |
189 | symbol is the lhs of the following rule. |
191 | All actions are copied out, labelled by the rule number they apply |
194 | Bison used to allow some %directives in the rules sections, but |
195 | this is no longer consider appropriate: (i) the documented grammar |
196 | doesn't claim it, (ii), it would promote bad style, (iii), error |
197 | recovery for %directives consists in skipping the junk until a `%' |
198 | is seen and helrp synchronizing. This scheme is definitely wrong |
199 | in the rules section. |
200 `-------------------------------------------------------------------*/
202 /* The (currently) last symbol of GRAMMAR. */
203 symbol_list_t
*grammar_end
= NULL
;
205 /* Append S to the GRAMMAR. */
207 grammar_symbol_append (symbol_t
*symbol
, location_t location
)
209 symbol_list_t
*p
= symbol_list_new (symbol
, location
);
212 grammar_end
->next
= p
;
219 /* The rule currently being defined, and the previous rule.
220 CURRENT_RULE points to the first LHS of the current rule, while
221 PREVIOUS_RULE_END points to the *end* of the previous rule (NULL). */
222 symbol_list_t
*current_rule
= NULL
;
223 symbol_list_t
*previous_rule_end
= NULL
;
226 /*----------------------------------------------.
227 | Create a new rule for LHS in to the GRAMMAR. |
228 `----------------------------------------------*/
231 grammar_rule_begin (symbol_t
*lhs
, location_t location
)
236 startsymbol_location
= location
;
240 /* Start a new rule and record its lhs. */
244 previous_rule_end
= grammar_end
;
245 grammar_symbol_append (lhs
, location
);
246 current_rule
= grammar_end
;
248 /* Mark the rule's lhs as a nonterminal if not already so. */
250 if (lhs
->class == unknown_sym
)
252 lhs
->class = nterm_sym
;
256 else if (lhs
->class == token_sym
)
257 complain_at (location
, _("rule given for %s, which is a token"), lhs
->tag
);
260 /* Check that the last rule (CURRENT_RULE) is properly defined. For
261 instance, there should be no type clash on the default action. */
264 grammar_current_rule_check (void)
266 symbol_t
*lhs
= current_rule
->sym
;
267 symbol_t
*first_rhs
= current_rule
->next
->sym
;
269 /* If there is an action, then there is nothing we can do: the user
270 is allowed to shoot in her foot. */
271 if (current_rule
->action
)
274 /* If $$ is being set in default way, report if any type mismatch.
278 const char *lhs_type
= lhs
->type_name
? lhs
->type_name
: "";
279 const char *rhs_type
= first_rhs
->type_name
? first_rhs
->type_name
: "";
280 if (strcmp (lhs_type
, rhs_type
))
281 complain_at (current_rule
->location
,
282 _("type clash (`%s' `%s') on default action"),
285 /* Warn if there is no default for $$ but we need one. */
289 complain_at (current_rule
->location
,
290 _("empty rule for typed nonterminal, and no action"));
295 /*-------------------------------------.
296 | End the currently being grown rule. |
297 `-------------------------------------*/
300 grammar_rule_end (location_t location
)
302 /* Put an empty link in the list to mark the end of this rule */
303 grammar_symbol_append (NULL
, grammar_end
->location
);
304 current_rule
->location
= location
;
305 grammar_current_rule_check ();
309 /*-------------------------------------------------------------------.
310 | The previous action turns out the be a mid-rule action. Attach it |
311 | to the current rule, i.e., create a dummy symbol, attach it this |
312 | mid-rule action, and append this dummy nonterminal to the current |
314 `-------------------------------------------------------------------*/
317 grammar_midrule_action (void)
319 /* Since the action was written out with this rule's number, we must
320 give the new rule this number by inserting the new rule before
323 /* Make a DUMMY nonterminal, whose location is that of the midrule
324 action. Create the MIDRULE. */
325 location_t dummy_location
= current_rule
->action_location
;
326 symbol_t
*dummy
= gensym (dummy_location
);
327 symbol_list_t
*midrule
= symbol_list_new (dummy
, dummy_location
);
329 /* Make a new rule, whose body is empty, before the current one, so
330 that the action just read can belong to it. */
333 /* Attach its location and actions to that of the DUMMY. */
334 midrule
->location
= dummy_location
;
335 midrule
->action
= current_rule
->action
;
336 midrule
->action_location
= dummy_location
;
337 current_rule
->action
= NULL
;
339 if (previous_rule_end
)
340 previous_rule_end
->next
= midrule
;
344 /* End the dummy's rule. */
345 previous_rule_end
= symbol_list_new (NULL
, dummy_location
);
346 previous_rule_end
->next
= current_rule
;
348 midrule
->next
= previous_rule_end
;
350 /* Insert the dummy nonterminal replacing the midrule action into
352 grammar_current_rule_symbol_append (dummy
, dummy_location
);
355 /* Set the precedence symbol of the current rule to PRECSYM. */
358 grammar_current_rule_prec_set (symbol_t
*precsym
, location_t location
)
360 if (current_rule
->ruleprec
)
361 complain_at (location
, _("two @prec's in a row"));
362 current_rule
->ruleprec
= precsym
;
365 /* Attach dynamic precedence DPREC to the current rule. */
368 grammar_current_rule_dprec_set (int dprec
, location_t location
)
371 warn_at (location
, _("%%dprec affects only GLR parsers"));
373 complain_at (location
, _("%%dprec must be followed by positive number"));
374 else if (current_rule
->dprec
!= 0)
375 complain_at (location
, _("only one %%dprec allowed per rule"));
376 current_rule
->dprec
= dprec
;
379 /* Attach a merge function NAME with argument type TYPE to current
383 grammar_current_rule_merge_set (const char* name
, location_t location
)
386 warn_at (location
, _("%%merge affects only GLR parsers"));
387 if (current_rule
->merger
!= 0)
388 complain_at (location
, _("only one %%merge allowed per rule"));
389 current_rule
->merger
=
390 get_merge_function (name
, current_rule
->sym
->type_name
);
393 /* Attach a SYMBOL to the current rule. If needed, move the previous
394 action as a mid-rule action. */
397 grammar_current_rule_symbol_append (symbol_t
*symbol
, location_t location
)
399 if (current_rule
->action
)
400 grammar_midrule_action ();
402 grammar_symbol_append (symbol
, location
);
405 /* Attach an ACTION to the current rule. If needed, move the previous
406 action as a mid-rule action. */
409 grammar_current_rule_action_append (const char *action
, location_t location
)
411 if (current_rule
->action
)
412 grammar_midrule_action ();
413 current_rule
->action
= action
;
414 current_rule
->action_location
= location
;
418 /*---------------------------------------------------------------.
419 | Convert the rules into the representation using RRHS, RLHS and |
421 `---------------------------------------------------------------*/
430 ritem
= XCALLOC (item_number_t
, nritems
);
431 rules
= XCALLOC (rule_t
, nrules
) - 1;
439 symbol_t
*ruleprec
= p
->ruleprec
;
440 rules
[ruleno
].user_number
= ruleno
;
441 rules
[ruleno
].number
= ruleno
;
442 rules
[ruleno
].lhs
= p
->sym
;
443 rules
[ruleno
].rhs
= ritem
+ itemno
;
444 rules
[ruleno
].location
= p
->location
;
445 rules
[ruleno
].useful
= TRUE
;
446 rules
[ruleno
].action
= p
->action
;
447 rules
[ruleno
].action_location
= p
->action_location
;
448 rules
[ruleno
].dprec
= p
->dprec
;
449 rules
[ruleno
].merger
= p
->merger
;
454 /* item_number_t = symbol_number_t.
455 But the former needs to contain more: negative rule numbers. */
456 ritem
[itemno
++] = symbol_number_as_item_number (p
->sym
->number
);
457 /* A rule gets by default the precedence and associativity
458 of the last token in it. */
459 if (p
->sym
->class == token_sym
)
460 rules
[ruleno
].prec
= p
->sym
;
465 /* If this rule has a %prec,
466 the specified symbol's precedence replaces the default. */
469 rules
[ruleno
].precsym
= ruleprec
;
470 rules
[ruleno
].prec
= ruleprec
;
472 ritem
[itemno
++] = -ruleno
;
479 assert (itemno
== nritems
);
482 ritem_print (stderr
);
485 /*------------------------------------------------------------------.
486 | Read in the grammar specification and record it in the format |
487 | described in gram.h. All actions are copied into ACTION_OBSTACK, |
488 | in each case forming the body of a C function (YYACTION) which |
489 | contains a switch statement to decide which action to execute. |
490 `------------------------------------------------------------------*/
495 gram_control_t gram_control
;
498 /* Initialize the symbol table. */
501 /* Construct the axiom symbol. */
502 axiom
= getsym ("$axiom", empty_location
);
503 axiom
->class = nterm_sym
;
504 axiom
->number
= nvars
++;
506 /* Construct the error token */
507 errtoken
= getsym ("error", empty_location
);
508 errtoken
->class = token_sym
;
509 errtoken
->number
= ntokens
++;
511 /* Construct a token that represents all undefined literal tokens.
512 It is always token number 2. */
513 undeftoken
= getsym ("$undefined.", empty_location
);
514 undeftoken
->class = token_sym
;
515 undeftoken
->number
= ntokens
++;
517 /* Initialize the obstacks. */
518 obstack_init (&pre_prologue_obstack
);
519 obstack_init (&post_prologue_obstack
);
521 finput
= xfopen (infile
, "r");
524 gram_debug
= !!getenv ("parse");
525 gram__flex_debug
= !!getenv ("scan");
526 scanner_initialize ();
527 gram_parse (&gram_control
);
529 /* Grammar has been read. Do some checking */
531 fatal (_("no rules in the input grammar"));
533 /* Report any undefined symbols and consider them nonterminals. */
534 symbols_check_defined ();
536 /* If the user did not define her EOFTOKEN, do it now. */
539 eoftoken
= getsym ("$", empty_location
);
540 eoftoken
->class = token_sym
;
541 eoftoken
->number
= 0;
542 /* Value specified by POSIX. */
543 eoftoken
->user_token_number
= 0;
546 /* Insert the initial rule, which line is that of the first rule
547 (not that of the start symbol):
549 axiom: %start EOF. */
551 symbol_list_t
*p
= symbol_list_new (axiom
, empty_location
);
552 p
->location
= grammar
->location
;
553 p
->next
= symbol_list_new (startsymbol
, empty_location
);
554 p
->next
->next
= symbol_list_new (eoftoken
, empty_location
);
555 p
->next
->next
->next
= symbol_list_new (NULL
, empty_location
);
556 p
->next
->next
->next
->next
= grammar
;
562 if (nsyms
> SHRT_MAX
)
563 fatal (_("too many symbols (tokens plus nonterminals); maximum %d"),
566 assert (nsyms
== ntokens
+ nvars
);
570 /* Assign the symbols their symbol numbers. Write #defines for the
571 token symbols into FDEFINES if requested. */
574 /* Convert the grammar into the format described in gram.h. */
577 /* The grammar as a symbol_list_t is no longer needed. */
578 LIST_FREE (symbol_list_t
, grammar
);