]> git.saurik.com Git - bison.git/blob - src/reader.c
* data/glr.c: Reformat whitespace with tabs.
[bison.git] / src / reader.c
1 /* Input parser for Bison
2
3 Copyright (C) 1984, 1986, 1989, 1992, 1998, 2000, 2001, 2002, 2003,
4 2005 Free Software Foundation, Inc.
5
6 This file is part of Bison, the GNU Compiler Compiler.
7
8 Bison is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 2, or (at your option)
11 any later version.
12
13 Bison is distributed in the hope that it will be useful,
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.
17
18 You should have received a copy of the GNU General Public License
19 along with Bison; see the file COPYING. If not, write to
20 the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
21 Boston, MA 02110-1301, USA. */
22
23 #include <config.h>
24 #include "system.h"
25
26 #include <quotearg.h>
27
28 #include "complain.h"
29 #include "conflicts.h"
30 #include "files.h"
31 #include "getargs.h"
32 #include "gram.h"
33 #include "muscle_tab.h"
34 #include "output.h"
35 #include "reader.h"
36 #include "symlist.h"
37 #include "symtab.h"
38
39 static symbol_list *grammar = NULL;
40 static bool start_flag = false;
41 merger_list *merge_functions;
42
43 /* Was %union seen? */
44 bool typed = false;
45
46 /* Should rules have a default precedence? */
47 bool default_prec = true;
48 \f
49 /*-----------------------.
50 | Set the start symbol. |
51 `-----------------------*/
52
53 void
54 grammar_start_symbol_set (symbol *sym, location loc)
55 {
56 if (start_flag)
57 complain_at (loc, _("multiple %s declarations"), "%start");
58 else
59 {
60 start_flag = true;
61 startsymbol = sym;
62 startsymbol_location = loc;
63 }
64 }
65
66
67 /*----------------------------------------------------------------.
68 | There are two prologues: one before %union, one after. Augment |
69 | the current one. |
70 `----------------------------------------------------------------*/
71
72 void
73 prologue_augment (const char *prologue, location loc)
74 {
75 struct obstack *oout =
76 !typed ? &pre_prologue_obstack : &post_prologue_obstack;
77
78 obstack_fgrow1 (oout, "]b4_syncline(%d, [[", loc.start.line);
79 MUSCLE_OBSTACK_SGROW (oout,
80 quotearg_style (c_quoting_style, loc.start.file));
81 obstack_sgrow (oout, "]])[\n");
82 obstack_sgrow (oout, prologue);
83 }
84
85 \f
86
87 /*-------------------------------------------------------------------.
88 | Return the merger index for a merging function named NAME, whose |
89 | arguments have type TYPE. Records the function, if new, in |
90 | MERGER_LIST. |
91 `-------------------------------------------------------------------*/
92
93 static int
94 get_merge_function (uniqstr name, uniqstr type, location loc)
95 {
96 merger_list *syms;
97 merger_list head;
98 int n;
99
100 if (! glr_parser)
101 return 0;
102
103 if (type == NULL)
104 type = uniqstr_new ("");
105
106 head.next = merge_functions;
107 for (syms = &head, n = 1; syms->next; syms = syms->next, n += 1)
108 if (UNIQSTR_EQ (name, syms->next->name))
109 break;
110 if (syms->next == NULL)
111 {
112 syms->next = xmalloc (sizeof syms->next[0]);
113 syms->next->name = uniqstr_new (name);
114 syms->next->type = uniqstr_new (type);
115 syms->next->next = NULL;
116 merge_functions = head.next;
117 }
118 else if (!UNIQSTR_EQ (type, syms->next->type))
119 warn_at (loc, _("result type clash on merge function %s: <%s> != <%s>"),
120 name, type, syms->next->type);
121 return n;
122 }
123
124 /*--------------------------------------.
125 | Free all merge-function definitions. |
126 `--------------------------------------*/
127
128 void
129 free_merger_functions (void)
130 {
131 merger_list *L0 = merge_functions;
132 while (L0)
133 {
134 merger_list *L1 = L0->next;
135 free (L0);
136 L0 = L1;
137 }
138 }
139
140 \f
141 /*-------------------------------------------------------------------.
142 | Parse the input grammar into a one symbol_list structure. Each |
143 | rule is represented by a sequence of symbols: the left hand side |
144 | followed by the contents of the right hand side, followed by a |
145 | null pointer instead of a symbol to terminate the rule. The next |
146 | symbol is the lhs of the following rule. |
147 | |
148 | All actions are copied out, labelled by the rule number they apply |
149 | to. |
150 `-------------------------------------------------------------------*/
151
152 /* The (currently) last symbol of GRAMMAR. */
153 static symbol_list *grammar_end = NULL;
154
155 /* Append SYM to the grammar. */
156 static void
157 grammar_symbol_append (symbol *sym, location loc)
158 {
159 symbol_list *p = symbol_list_new (sym, loc);
160
161 if (grammar_end)
162 grammar_end->next = p;
163 else
164 grammar = p;
165
166 grammar_end = p;
167
168 /* A null SYM stands for an end of rule; it is not an actual
169 part of it. */
170 if (sym)
171 ++nritems;
172 }
173
174 /* The rule currently being defined, and the previous rule.
175 CURRENT_RULE points to the first LHS of the current rule, while
176 PREVIOUS_RULE_END points to the *end* of the previous rule (NULL). */
177 symbol_list *current_rule = NULL;
178 static symbol_list *previous_rule_end = NULL;
179
180
181 /*----------------------------------------------.
182 | Create a new rule for LHS in to the GRAMMAR. |
183 `----------------------------------------------*/
184
185 void
186 grammar_current_rule_begin (symbol *lhs, location loc)
187 {
188 if (!start_flag)
189 {
190 startsymbol = lhs;
191 startsymbol_location = loc;
192 start_flag = true;
193 }
194
195 /* Start a new rule and record its lhs. */
196 ++nrules;
197 previous_rule_end = grammar_end;
198 grammar_symbol_append (lhs, loc);
199 current_rule = grammar_end;
200
201 /* Mark the rule's lhs as a nonterminal if not already so. */
202 if (lhs->class == unknown_sym)
203 {
204 lhs->class = nterm_sym;
205 lhs->number = nvars;
206 ++nvars;
207 }
208 else if (lhs->class == token_sym)
209 complain_at (loc, _("rule given for %s, which is a token"), lhs->tag);
210 }
211
212
213 /*----------------------------------------------------------------.
214 | Check that the rule R is properly defined. For instance, there |
215 | should be no type clash on the default action. |
216 `----------------------------------------------------------------*/
217
218 static void
219 grammar_rule_check (const symbol_list *r)
220 {
221 /* Type check.
222
223 If there is an action, then there is nothing we can do: the user
224 is allowed to shoot herself in the foot.
225
226 Don't worry about the default action if $$ is untyped, since $$'s
227 value can't be used. */
228 if (!r->action && r->sym->type_name)
229 {
230 symbol *first_rhs = r->next->sym;
231 /* If $$ is being set in default way, report if any type mismatch. */
232 if (first_rhs)
233 {
234 char const *lhs_type = r->sym->type_name;
235 const char *rhs_type =
236 first_rhs->type_name ? first_rhs->type_name : "";
237 if (!UNIQSTR_EQ (lhs_type, rhs_type))
238 warn_at (r->location,
239 _("type clash on default action: <%s> != <%s>"),
240 lhs_type, rhs_type);
241 }
242 /* Warn if there is no default for $$ but we need one. */
243 else
244 warn_at (r->location,
245 _("empty rule for typed nonterminal, and no action"));
246 }
247
248 /* Check that typed symbol values are used. */
249 {
250 symbol_list const *l = r;
251 int n = 0;
252 for (; l && l->sym; l = l->next, ++n)
253 if (! (l->used
254 || !l->sym->type_name
255 /* The default action, $$ = $1, `uses' both. */
256 || (!r->action && (n == 0 || n == 1))))
257 {
258 if (n)
259 warn_at (r->location, _("unused value: $%d"), n);
260 else
261 warn_at (r->location, _("unset value: $$"));
262 }
263 }
264 }
265
266
267 /*-------------------------------------.
268 | End the currently being grown rule. |
269 `-------------------------------------*/
270
271 void
272 grammar_current_rule_end (location loc)
273 {
274 /* Put an empty link in the list to mark the end of this rule */
275 grammar_symbol_append (NULL, grammar_end->location);
276 current_rule->location = loc;
277 grammar_rule_check (current_rule);
278 }
279
280
281 /*-------------------------------------------------------------------.
282 | The previous action turns out the be a mid-rule action. Attach it |
283 | to the current rule, i.e., create a dummy symbol, attach it this |
284 | mid-rule action, and append this dummy nonterminal to the current |
285 | rule. |
286 `-------------------------------------------------------------------*/
287
288 static void
289 grammar_midrule_action (void)
290 {
291 /* Since the action was written out with this rule's number, we must
292 give the new rule this number by inserting the new rule before
293 it. */
294
295 /* Make a DUMMY nonterminal, whose location is that of the midrule
296 action. Create the MIDRULE. */
297 location dummy_location = current_rule->action_location;
298 symbol *dummy = dummy_symbol_get (dummy_location);
299 symbol_list *midrule = symbol_list_new (dummy, dummy_location);
300
301 /* Make a new rule, whose body is empty, before the current one, so
302 that the action just read can belong to it. */
303 ++nrules;
304 ++nritems;
305 /* Attach its location and actions to that of the DUMMY. */
306 midrule->location = dummy_location;
307 midrule->action = current_rule->action;
308 midrule->action_location = dummy_location;
309 current_rule->action = NULL;
310
311 if (previous_rule_end)
312 previous_rule_end->next = midrule;
313 else
314 grammar = midrule;
315
316 /* End the dummy's rule. */
317 previous_rule_end = symbol_list_new (NULL, dummy_location);
318 previous_rule_end->next = current_rule;
319
320 midrule->next = previous_rule_end;
321
322 /* Insert the dummy nonterminal replacing the midrule action into
323 the current rule. */
324 grammar_current_rule_symbol_append (dummy, dummy_location);
325 }
326
327 /* Set the precedence symbol of the current rule to PRECSYM. */
328
329 void
330 grammar_current_rule_prec_set (symbol *precsym, location loc)
331 {
332 if (current_rule->ruleprec)
333 complain_at (loc, _("only one %s allowed per rule"), "%prec");
334 current_rule->ruleprec = precsym;
335 }
336
337 /* Attach dynamic precedence DPREC to the current rule. */
338
339 void
340 grammar_current_rule_dprec_set (int dprec, location loc)
341 {
342 if (! glr_parser)
343 warn_at (loc, _("%s affects only GLR parsers"), "%dprec");
344 if (dprec <= 0)
345 complain_at (loc, _("%s must be followed by positive number"), "%dprec");
346 else if (current_rule->dprec != 0)
347 complain_at (loc, _("only one %s allowed per rule"), "%dprec");
348 current_rule->dprec = dprec;
349 }
350
351 /* Attach a merge function NAME with argument type TYPE to current
352 rule. */
353
354 void
355 grammar_current_rule_merge_set (uniqstr name, location loc)
356 {
357 if (! glr_parser)
358 warn_at (loc, _("%s affects only GLR parsers"), "%merge");
359 if (current_rule->merger != 0)
360 complain_at (loc, _("only one %s allowed per rule"), "%merge");
361 current_rule->merger =
362 get_merge_function (name, current_rule->sym->type_name, loc);
363 }
364
365 /* Attach SYM to the current rule. If needed, move the previous
366 action as a mid-rule action. */
367
368 void
369 grammar_current_rule_symbol_append (symbol *sym, location loc)
370 {
371 if (current_rule->action)
372 grammar_midrule_action ();
373 grammar_symbol_append (sym, loc);
374 }
375
376 /* Attach an ACTION to the current rule. If needed, move the previous
377 action as a mid-rule action. */
378
379 void
380 grammar_current_rule_action_append (const char *action, location loc)
381 {
382 if (current_rule->action)
383 grammar_midrule_action ();
384 current_rule->action = action;
385 current_rule->action_location = loc;
386 }
387
388 \f
389 /*---------------------------------------------------------------.
390 | Convert the rules into the representation using RRHS, RLHS and |
391 | RITEM. |
392 `---------------------------------------------------------------*/
393
394 static void
395 packgram (void)
396 {
397 unsigned int itemno = 0;
398 rule_number ruleno = 0;
399 symbol_list *p = grammar;
400
401 ritem = xnmalloc (nritems, sizeof *ritem);
402 rules = xnmalloc (nrules, sizeof *rules);
403
404 while (p)
405 {
406 symbol *ruleprec = p->ruleprec;
407 rules[ruleno].user_number = ruleno;
408 rules[ruleno].number = ruleno;
409 rules[ruleno].lhs = p->sym;
410 rules[ruleno].rhs = ritem + itemno;
411 rules[ruleno].prec = NULL;
412 rules[ruleno].dprec = p->dprec;
413 rules[ruleno].merger = p->merger;
414 rules[ruleno].precsym = NULL;
415 rules[ruleno].location = p->location;
416 rules[ruleno].useful = true;
417 rules[ruleno].action = p->action;
418 rules[ruleno].action_location = p->action_location;
419
420 p = p->next;
421 while (p && p->sym)
422 {
423 /* item_number = symbol_number.
424 But the former needs to contain more: negative rule numbers. */
425 ritem[itemno++] = symbol_number_as_item_number (p->sym->number);
426 /* A rule gets by default the precedence and associativity
427 of the last token in it. */
428 if (p->sym->class == token_sym && default_prec)
429 rules[ruleno].prec = p->sym;
430 if (p)
431 p = p->next;
432 }
433
434 /* If this rule has a %prec,
435 the specified symbol's precedence replaces the default. */
436 if (ruleprec)
437 {
438 rules[ruleno].precsym = ruleprec;
439 rules[ruleno].prec = ruleprec;
440 }
441 ritem[itemno++] = rule_number_as_item_number (ruleno);
442 ++ruleno;
443
444 if (p)
445 p = p->next;
446 }
447
448 if (itemno != nritems)
449 abort ();
450
451 if (trace_flag & trace_sets)
452 ritem_print (stderr);
453 }
454 \f
455 /*------------------------------------------------------------------.
456 | Read in the grammar specification and record it in the format |
457 | described in gram.h. All actions are copied into ACTION_OBSTACK, |
458 | in each case forming the body of a C function (YYACTION) which |
459 | contains a switch statement to decide which action to execute. |
460 `------------------------------------------------------------------*/
461
462 void
463 reader (void)
464 {
465 /* Initialize the symbol table. */
466 symbols_new ();
467
468 /* Construct the accept symbol. */
469 accept = symbol_get ("$accept", empty_location);
470 accept->class = nterm_sym;
471 accept->number = nvars++;
472
473 /* Construct the error token */
474 errtoken = symbol_get ("error", empty_location);
475 errtoken->class = token_sym;
476 errtoken->number = ntokens++;
477
478 /* Construct a token that represents all undefined literal tokens.
479 It is always token number 2. */
480 undeftoken = symbol_get ("$undefined", empty_location);
481 undeftoken->class = token_sym;
482 undeftoken->number = ntokens++;
483
484 /* Initialize the obstacks. */
485 obstack_init (&pre_prologue_obstack);
486 obstack_init (&post_prologue_obstack);
487
488 gram_in = xfopen (grammar_file, "r");
489
490 gram__flex_debug = trace_flag & trace_scan;
491 gram_debug = trace_flag & trace_parse;
492 scanner_initialize ();
493 gram_parse ();
494
495 /* If something went wrong during the parsing, don't try to
496 continue. */
497 if (complaint_issued)
498 return;
499
500 /* Grammar has been read. Do some checking */
501 if (nrules == 0)
502 fatal (_("no rules in the input grammar"));
503
504 /* Report any undefined symbols and consider them nonterminals. */
505 symbols_check_defined ();
506
507 /* If the user did not define her ENDTOKEN, do it now. */
508 if (!endtoken)
509 {
510 endtoken = symbol_get ("$end", empty_location);
511 endtoken->class = token_sym;
512 endtoken->number = 0;
513 /* Value specified by POSIX. */
514 endtoken->user_token_number = 0;
515 }
516
517 /* Insert the initial rule, which line is that of the first rule
518 (not that of the start symbol):
519
520 accept: %start EOF. */
521 {
522 symbol_list *p = symbol_list_new (accept, empty_location);
523 p->location = grammar->location;
524 p->next = symbol_list_new (startsymbol, empty_location);
525 p->next->next = symbol_list_new (endtoken, empty_location);
526 p->next->next->next = symbol_list_new (NULL, empty_location);
527 p->next->next->next->next = grammar;
528 nrules += 1;
529 nritems += 3;
530 grammar = p;
531 }
532
533 if (! (nsyms <= SYMBOL_NUMBER_MAXIMUM && nsyms == ntokens + nvars))
534 abort ();
535
536 xfclose (gram_in);
537
538 /* Assign the symbols their symbol numbers. Write #defines for the
539 token symbols into FDEFINES if requested. */
540 symbols_pack ();
541
542 /* Convert the grammar into the format described in gram.h. */
543 packgram ();
544
545 /* The grammar as a symbol_list is no longer needed. */
546 LIST_FREE (symbol_list, grammar);
547 }