]> git.saurik.com Git - bison.git/blob - src/reader.c
829baf8dea477b6efe01ff8141a22a43ff8950c2
[bison.git] / src / reader.c
1 /* Input parser for bison
2 Copyright 1984, 1986, 1989, 1992, 1998, 2000, 2001
3 Free Software Foundation, Inc.
4
5 This file is part of Bison, the GNU Compiler Compiler.
6
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)
10 any later version.
11
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.
16
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. */
21
22
23 #include "system.h"
24 #include "obstack.h"
25 #include "quotearg.h"
26 #include "quote.h"
27 #include "getargs.h"
28 #include "files.h"
29 #include "symtab.h"
30 #include "lex.h"
31 #include "gram.h"
32 #include "complain.h"
33 #include "output.h"
34 #include "reader.h"
35 #include "conflicts.h"
36
37 /* Number of slots allocated (but not necessarily used yet) in `rline' */
38 static int rline_allocated;
39
40 typedef struct symbol_list
41 {
42 struct symbol_list *next;
43 bucket *sym;
44 bucket *ruleprec;
45 }
46 symbol_list;
47
48 int lineno;
49 char **tags;
50 short *user_toknums;
51 static symbol_list *grammar;
52 static int start_flag;
53 static bucket *startval;
54
55 /* Nonzero if components of semantic values are used, implying
56 they must be unions. */
57 static int value_components_used;
58
59 /* Nonzero if %union has been seen. */
60 static int typed;
61
62 /* Incremented for each %left, %right or %nonassoc seen */
63 static int lastprec;
64
65 static bucket *errtoken;
66 static bucket *undeftoken;
67 \f
68
69 /*===================\
70 | Low level lexing. |
71 \===================*/
72
73 static void
74 skip_to_char (int target)
75 {
76 int c;
77 if (target == '\n')
78 complain (_(" Skipping to next \\n"));
79 else
80 complain (_(" Skipping to next %c"), target);
81
82 do
83 c = skip_white_space ();
84 while (c != target && c != EOF);
85 if (c != EOF)
86 ungetc (c, finput);
87 }
88
89
90 /*---------------------------------------------------------.
91 | Read a signed integer from STREAM and return its value. |
92 `---------------------------------------------------------*/
93
94 static inline int
95 read_signed_integer (FILE *stream)
96 {
97 int c = getc (stream);
98 int sign = 1;
99 int n = 0;
100
101 if (c == '-')
102 {
103 c = getc (stream);
104 sign = -1;
105 }
106
107 while (isdigit (c))
108 {
109 n = 10 * n + (c - '0');
110 c = getc (stream);
111 }
112
113 ungetc (c, stream);
114
115 return sign * n;
116 }
117 \f
118 /*--------------------------------------------------------------.
119 | Get the data type (alternative in the union) of the value for |
120 | symbol N in rule RULE. |
121 `--------------------------------------------------------------*/
122
123 static char *
124 get_type_name (int n, symbol_list * rule)
125 {
126 int i;
127 symbol_list *rp;
128
129 if (n < 0)
130 {
131 complain (_("invalid $ value"));
132 return NULL;
133 }
134
135 rp = rule;
136 i = 0;
137
138 while (i < n)
139 {
140 rp = rp->next;
141 if (rp == NULL || rp->sym == NULL)
142 {
143 complain (_("invalid $ value"));
144 return NULL;
145 }
146 i++;
147 }
148
149 return rp->sym->type_name;
150 }
151 \f
152 /*------------------------------------------------------------.
153 | Dump the string from FIN to OOUT if non null. MATCH is the |
154 | delimiter of the string (either ' or "). |
155 `------------------------------------------------------------*/
156
157 static inline void
158 copy_string (FILE *fin, struct obstack *oout, int match)
159 {
160 int c;
161
162 obstack_1grow (oout, match);
163
164 c = getc (fin);
165
166 while (c != match)
167 {
168 if (c == EOF)
169 fatal (_("unterminated string at end of file"));
170 if (c == '\n')
171 {
172 complain (_("unterminated string"));
173 ungetc (c, fin);
174 c = match; /* invent terminator */
175 continue;
176 }
177
178 obstack_1grow (oout, c);
179
180 if (c == '\\')
181 {
182 c = getc (fin);
183 if (c == EOF)
184 fatal (_("unterminated string at end of file"));
185 obstack_1grow (oout, c);
186
187 if (c == '\n')
188 lineno++;
189 }
190
191 c = getc (fin);
192 }
193
194 obstack_1grow (oout, c);
195 }
196
197
198 /*-----------------------------------------------------------------.
199 | Dump the wannabee comment from IN to OUT1 and OUT2 (which can be |
200 | NULL). In fact we just saw a `/', which might or might not be a |
201 | comment. In any case, copy what we saw. |
202 | |
203 | OUT2 might be NULL. |
204 `-----------------------------------------------------------------*/
205
206 static inline void
207 copy_comment2 (FILE *fin, struct obstack *oout1, struct obstack *oout2)
208 {
209 int cplus_comment;
210 int ended;
211 int c;
212
213 /* We read a `/', output it. */
214 obstack_1grow (oout1, '/');
215 if (oout2)
216 obstack_1grow (oout2, '/');
217
218 switch ((c = getc (fin)))
219 {
220 case '/':
221 cplus_comment = 1;
222 break;
223 case '*':
224 cplus_comment = 0;
225 break;
226 default:
227 ungetc (c, fin);
228 return;
229 }
230
231 obstack_1grow (oout1, c);
232 if (oout2)
233 obstack_1grow (oout2, c);
234 c = getc (fin);
235
236 ended = 0;
237 while (!ended)
238 {
239 if (!cplus_comment && c == '*')
240 {
241 while (c == '*')
242 {
243 obstack_1grow (oout1, c);
244 if (oout2)
245 obstack_1grow (oout2, c);
246 c = getc (fin);
247 }
248
249 if (c == '/')
250 {
251 obstack_1grow (oout1, c);
252 if (oout2)
253 obstack_1grow (oout2, c);
254 ended = 1;
255 }
256 }
257 else if (c == '\n')
258 {
259 lineno++;
260 obstack_1grow (oout1, c);
261 if (oout2)
262 obstack_1grow (oout2, c);
263 if (cplus_comment)
264 ended = 1;
265 else
266 c = getc (fin);
267 }
268 else if (c == EOF)
269 fatal (_("unterminated comment"));
270 else
271 {
272 obstack_1grow (oout1, c);
273 if (oout2)
274 obstack_1grow (oout2, c);
275 c = getc (fin);
276 }
277 }
278 }
279
280
281 /*-------------------------------------------------------------------.
282 | Dump the comment (actually the current string starting with a `/') |
283 | from FIN to OOUT. |
284 `-------------------------------------------------------------------*/
285
286 static inline void
287 copy_comment (FILE *fin, struct obstack *oout)
288 {
289 copy_comment2 (fin, oout, NULL);
290 }
291
292
293 /*-----------------------------------------------------------------.
294 | FIN is pointing to a location (i.e., a `@'). Output to OOUT a |
295 | reference to this location. STACK_OFFSET is the number of values |
296 | in the current rule so far, which says where to find `$0' with |
297 | respect to the top of the stack. |
298 `-----------------------------------------------------------------*/
299
300 static inline void
301 copy_at (FILE *fin, struct obstack *oout, int stack_offset)
302 {
303 int c;
304
305 c = getc (fin);
306 if (c == '$')
307 {
308 obstack_sgrow (oout, "yyloc");
309 locations_flag = 1;
310 }
311 else if (isdigit (c) || c == '-')
312 {
313 int n;
314
315 ungetc (c, fin);
316 n = read_signed_integer (fin);
317
318 obstack_fgrow1 (oout, "yylsp[%d]", n - stack_offset);
319 locations_flag = 1;
320 }
321 else
322 {
323 char buf[] = "@c";
324 buf[1] = c;
325 complain (_("%s is invalid"), quote (buf));
326 }
327 }
328
329
330 /*-------------------------------------------------------------------.
331 | FIN is pointing to a wannabee semantic value (i.e., a `$'). |
332 | |
333 | Possible inputs: $[<TYPENAME>]($|integer) |
334 | |
335 | Output to OOUT a reference to this semantic value. STACK_OFFSET is |
336 | the number of values in the current rule so far, which says where |
337 | to find `$0' with respect to the top of the stack. |
338 `-------------------------------------------------------------------*/
339
340 static inline void
341 copy_dollar (FILE *fin, struct obstack *oout,
342 symbol_list *rule, int stack_offset)
343 {
344 int c = getc (fin);
345 const char *type_name = NULL;
346
347 /* Get the type name if explicit. */
348 if (c == '<')
349 {
350 read_type_name (fin);
351 type_name = token_buffer;
352 value_components_used = 1;
353 c = getc (fin);
354 }
355
356 if (c == '$')
357 {
358 obstack_sgrow (oout, "yyval");
359
360 if (!type_name)
361 type_name = get_type_name (0, rule);
362 if (type_name)
363 obstack_fgrow1 (oout, ".%s", type_name);
364 if (!type_name && typed)
365 complain (_("$$ of `%s' has no declared type"),
366 rule->sym->tag);
367 }
368 else if (isdigit (c) || c == '-')
369 {
370 int n;
371 ungetc (c, fin);
372 n = read_signed_integer (fin);
373
374 if (!type_name && n > 0)
375 type_name = get_type_name (n, rule);
376
377 obstack_fgrow1 (oout, "yyvsp[%d]", n - stack_offset);
378
379 if (type_name)
380 obstack_fgrow1 (oout, ".%s", type_name);
381 if (!type_name && typed)
382 complain (_("$%d of `%s' has no declared type"),
383 n, rule->sym->tag);
384 }
385 else
386 {
387 char buf[] = "$c";
388 buf[1] = c;
389 complain (_("%s is invalid"), quote (buf));
390 }
391 }
392 \f
393 /*-------------------------------------------------------------------.
394 | Copy the contents of a `%{ ... %}' into the definitions file. The |
395 | `%{' has already been read. Return after reading the `%}'. |
396 `-------------------------------------------------------------------*/
397
398 static void
399 copy_definition (void)
400 {
401 int c;
402 /* -1 while reading a character if prev char was %. */
403 int after_percent;
404
405 if (!no_lines_flag)
406 obstack_fgrow2 (&attrs_obstack, "#line %d %s\n",
407 lineno, quotearg_style (c_quoting_style, infile));
408
409 after_percent = 0;
410
411 c = getc (finput);
412
413 for (;;)
414 {
415 switch (c)
416 {
417 case '\n':
418 obstack_1grow (&attrs_obstack, c);
419 lineno++;
420 break;
421
422 case '%':
423 after_percent = -1;
424 break;
425
426 case '\'':
427 case '"':
428 copy_string (finput, &attrs_obstack, c);
429 break;
430
431 case '/':
432 copy_comment (finput, &attrs_obstack);
433 break;
434
435 case EOF:
436 fatal ("%s", _("unterminated `%{' definition"));
437
438 default:
439 obstack_1grow (&attrs_obstack, c);
440 }
441
442 c = getc (finput);
443
444 if (after_percent)
445 {
446 if (c == '}')
447 return;
448 obstack_1grow (&attrs_obstack, '%');
449 }
450 after_percent = 0;
451 }
452 }
453
454
455 /*-------------------------------------------------------------------.
456 | Parse what comes after %token or %nterm. For %token, WHAT_IS is |
457 | token_sym and WHAT_IS_NOT is nterm_sym. For %nterm, the arguments |
458 | are reversed. |
459 `-------------------------------------------------------------------*/
460
461 static void
462 parse_token_decl (symbol_class what_is, symbol_class what_is_not)
463 {
464 token_t token = tok_undef;
465 char *typename = NULL;
466
467 /* The symbol being defined. */
468 struct bucket *symbol = NULL;
469
470 /* After `%token' and `%nterm', any number of symbols maybe be
471 defined. */
472 for (;;)
473 {
474 int tmp_char = ungetc (skip_white_space (), finput);
475
476 /* `%' (for instance from `%token', or from `%%' etc.) is the
477 only valid means to end this declaration. */
478 if (tmp_char == '%')
479 return;
480 if (tmp_char == EOF)
481 fatal (_("Premature EOF after %s"), token_buffer);
482
483 token = lex ();
484 if (token == tok_comma)
485 {
486 symbol = NULL;
487 continue;
488 }
489 if (token == tok_typename)
490 {
491 typename = xstrdup (token_buffer);
492 value_components_used = 1;
493 symbol = NULL;
494 }
495 else if (token == tok_identifier && *symval->tag == '\"' && symbol)
496 {
497 if (symval->alias)
498 warn (_("symbol `%s' used more than once as a literal string"),
499 symval->tag);
500 else if (symbol->alias)
501 warn (_("symbol `%s' given more than one literal string"),
502 symbol->tag);
503 else
504 {
505 symval->class = token_sym;
506 symval->type_name = typename;
507 symval->user_token_number = symbol->user_token_number;
508 symbol->user_token_number = SALIAS;
509 symval->alias = symbol;
510 symbol->alias = symval;
511 /* symbol and symval combined are only one symbol */
512 nsyms--;
513 }
514 symbol = NULL;
515 }
516 else if (token == tok_identifier)
517 {
518 int oldclass = symval->class;
519 symbol = symval;
520
521 if (symbol->class == what_is_not)
522 complain (_("symbol %s redefined"), symbol->tag);
523 symbol->class = what_is;
524 if (what_is == nterm_sym && oldclass != nterm_sym)
525 symbol->value = nvars++;
526
527 if (typename)
528 {
529 if (symbol->type_name == NULL)
530 symbol->type_name = typename;
531 else if (strcmp (typename, symbol->type_name) != 0)
532 complain (_("type redeclaration for %s"), symbol->tag);
533 }
534 }
535 else if (symbol && token == tok_number)
536 {
537 symbol->user_token_number = numval;
538 }
539 else
540 {
541 complain (_("`%s' is invalid in %s"),
542 token_buffer, (what_is == token_sym) ? "%token" : "%nterm");
543 skip_to_char ('%');
544 }
545 }
546
547 }
548
549
550 /*------------------------------.
551 | Parse what comes after %start |
552 `------------------------------*/
553
554 static void
555 parse_start_decl (void)
556 {
557 if (start_flag)
558 complain (_("multiple %s declarations"), "%start");
559 if (lex () != tok_identifier)
560 complain (_("invalid %s declaration"), "%start");
561 else
562 {
563 start_flag = 1;
564 startval = symval;
565 }
566 }
567
568 /*-----------------------------------------------------------.
569 | read in a %type declaration and record its information for |
570 | get_type_name to access |
571 `-----------------------------------------------------------*/
572
573 static void
574 parse_type_decl (void)
575 {
576 char *name;
577
578 if (lex () != tok_typename)
579 {
580 complain ("%s", _("%type declaration has no <typename>"));
581 skip_to_char ('%');
582 return;
583 }
584
585 name = xstrdup (token_buffer);
586
587 for (;;)
588 {
589 token_t t;
590 int tmp_char = ungetc (skip_white_space (), finput);
591
592 if (tmp_char == '%')
593 return;
594 if (tmp_char == EOF)
595 fatal (_("Premature EOF after %s"), token_buffer);
596
597 t = lex ();
598
599 switch (t)
600 {
601
602 case tok_comma:
603 case tok_semicolon:
604 break;
605
606 case tok_identifier:
607 if (symval->type_name == NULL)
608 symval->type_name = name;
609 else if (strcmp (name, symval->type_name) != 0)
610 complain (_("type redeclaration for %s"), symval->tag);
611
612 break;
613
614 default:
615 complain (_("invalid %%type declaration due to item: %s"),
616 token_buffer);
617 skip_to_char ('%');
618 }
619 }
620 }
621
622
623
624 /*----------------------------------------------------------------.
625 | Read in a %left, %right or %nonassoc declaration and record its |
626 | information. |
627 `----------------------------------------------------------------*/
628
629 static void
630 parse_assoc_decl (associativity assoc)
631 {
632 char *name = NULL;
633 int prev = 0;
634
635 lastprec++; /* Assign a new precedence level, never 0. */
636
637 for (;;)
638 {
639 token_t t;
640 int tmp_char = ungetc (skip_white_space (), finput);
641
642 if (tmp_char == '%')
643 return;
644 if (tmp_char == EOF)
645 fatal (_("Premature EOF after %s"), token_buffer);
646
647 t = lex ();
648
649 switch (t)
650 {
651 case tok_typename:
652 name = xstrdup (token_buffer);
653 break;
654
655 case tok_comma:
656 break;
657
658 case tok_identifier:
659 if (symval->prec != 0)
660 complain (_("redefining precedence of %s"), symval->tag);
661 symval->prec = lastprec;
662 symval->assoc = assoc;
663 if (symval->class == nterm_sym)
664 complain (_("symbol %s redefined"), symval->tag);
665 symval->class = token_sym;
666 if (name)
667 { /* record the type, if one is specified */
668 if (symval->type_name == NULL)
669 symval->type_name = name;
670 else if (strcmp (name, symval->type_name) != 0)
671 complain (_("type redeclaration for %s"), symval->tag);
672 }
673 break;
674
675 case tok_number:
676 if (prev == tok_identifier)
677 {
678 symval->user_token_number = numval;
679 }
680 else
681 {
682 complain (_
683 ("invalid text (%s) - number should be after identifier"),
684 token_buffer);
685 skip_to_char ('%');
686 }
687 break;
688
689 case tok_semicolon:
690 return;
691
692 default:
693 complain (_("unexpected item: %s"), token_buffer);
694 skip_to_char ('%');
695 }
696
697 prev = t;
698 }
699 }
700
701
702
703 /*--------------------------------------------------------------.
704 | Copy the union declaration into ATTRS_OBSTACK (and fdefines), |
705 | where it is made into the definition of YYSTYPE, the type of |
706 | elements of the parser value stack. |
707 `--------------------------------------------------------------*/
708
709 static void
710 parse_union_decl (void)
711 {
712 int c;
713 int count = 0;
714 const char *prologue = "\
715 #ifndef YYSTYPE\n\
716 typedef union";
717 const char *epilogue = "\
718 yystype;\n\
719 # define YYSTYPE yystype\n\
720 #endif\n";
721
722 if (typed)
723 complain (_("multiple %s declarations"), "%union");
724
725 typed = 1;
726
727 if (!no_lines_flag)
728 obstack_fgrow2 (&attrs_obstack, "\n#line %d %s\n",
729 lineno, quotearg_style (c_quoting_style, infile));
730 else
731 obstack_1grow (&attrs_obstack, '\n');
732
733 obstack_sgrow (&attrs_obstack, prologue);
734 if (defines_flag)
735 obstack_sgrow (&defines_obstack, prologue);
736
737 c = getc (finput);
738
739 while (c != EOF)
740 {
741
742 /* If C contains '/', it is output by copy_comment (). */
743 if (c != '/')
744 {
745 obstack_1grow (&attrs_obstack, c);
746 if (defines_flag)
747 obstack_1grow (&defines_obstack, c);
748 }
749
750 switch (c)
751 {
752 case '\n':
753 lineno++;
754 break;
755
756 case '/':
757 copy_comment2 (finput, &defines_obstack, &attrs_obstack);
758 break;
759
760 case '{':
761 count++;
762 break;
763
764 case '}':
765 if (count == 0)
766 complain (_("unmatched %s"), "`}'");
767 count--;
768 if (count <= 0)
769 {
770 obstack_sgrow (&attrs_obstack, epilogue);
771 if (defines_flag)
772 obstack_sgrow (&defines_obstack, epilogue);
773 /* JF don't choke on trailing semi */
774 c = skip_white_space ();
775 if (c != ';')
776 ungetc (c, finput);
777 return;
778 }
779 }
780
781 c = getc (finput);
782 }
783 }
784
785
786 /*-------------------------------------------------------.
787 | Parse the declaration %expect N which says to expect N |
788 | shift-reduce conflicts. |
789 `-------------------------------------------------------*/
790
791 static void
792 parse_expect_decl (void)
793 {
794 int c = skip_white_space ();
795 ungetc (c, finput);
796
797 if (!isdigit (c))
798 complain (_("argument of %%expect is not an integer"));
799 else
800 expected_conflicts = read_signed_integer (finput);
801 }
802
803
804 /*-------------------------------------------------------------------.
805 | Parse what comes after %thong. the full syntax is |
806 | |
807 | %thong <type> token number literal |
808 | |
809 | the <type> or number may be omitted. The number specifies the |
810 | user_token_number. |
811 | |
812 | Two symbols are entered in the table, one for the token symbol and |
813 | one for the literal. Both are given the <type>, if any, from the |
814 | declaration. The ->user_token_number of the first is SALIAS and |
815 | the ->user_token_number of the second is set to the number, if |
816 | any, from the declaration. The two symbols are linked via |
817 | pointers in their ->alias fields. |
818 | |
819 | During OUTPUT_DEFINES_TABLE, the symbol is reported thereafter, |
820 | only the literal string is retained it is the literal string that |
821 | is output to yytname |
822 `-------------------------------------------------------------------*/
823
824 static void
825 parse_thong_decl (void)
826 {
827 token_t token;
828 struct bucket *symbol;
829 char *typename = 0;
830 int usrtoknum = SUNDEF;
831
832 token = lex (); /* fetch typename or first token */
833 if (token == tok_typename)
834 {
835 typename = xstrdup (token_buffer);
836 value_components_used = 1;
837 token = lex (); /* fetch first token */
838 }
839
840 /* process first token */
841
842 if (token != tok_identifier)
843 {
844 complain (_("unrecognized item %s, expected an identifier"),
845 token_buffer);
846 skip_to_char ('%');
847 return;
848 }
849 symval->class = token_sym;
850 symval->type_name = typename;
851 symval->user_token_number = SALIAS;
852 symbol = symval;
853
854 token = lex (); /* get number or literal string */
855
856 if (token == tok_number)
857 {
858 usrtoknum = numval;
859 token = lex (); /* okay, did number, now get literal */
860 }
861
862 /* process literal string token */
863
864 if (token != tok_identifier || *symval->tag != '\"')
865 {
866 complain (_("expected string constant instead of %s"), token_buffer);
867 skip_to_char ('%');
868 return;
869 }
870 symval->class = token_sym;
871 symval->type_name = typename;
872 symval->user_token_number = usrtoknum;
873
874 symval->alias = symbol;
875 symbol->alias = symval;
876
877 /* symbol and symval combined are only one symbol. */
878 nsyms--;
879 }
880
881
882 /*------------------------------------------------------------------.
883 | Parse a double quoted parameter. It was used for |
884 | %{source,header}_extension. For the moment, It is not used since |
885 | extension features have been removed. |
886 `------------------------------------------------------------------*/
887
888 #if 0
889
890 static const char *
891 parse_dquoted_param (const char *from)
892 {
893 char buff[32];
894 int c;
895 int i;
896
897 c = skip_white_space ();
898
899 if (c != '"')
900 {
901 ungetc (c, finput);
902 complain (_("invalid %s declaration"), from);
903 return NULL;
904 }
905
906 c = getc (finput);
907 for (i = 0; (c >= '!') && (c <= '~'); i++)
908 {
909 if (c == '"')
910 break;
911
912 if (c == '\\')
913 {
914 c = getc (finput);
915 if ((c < '!') && (c > '~'))
916 break;
917 }
918
919 buff[i] = c;
920 c = getc (finput);
921 }
922 buff[i] = '\0';
923
924 if (c != '"')
925 {
926 ungetc (c, finput);
927 complain (_("invalid %s declaration"), from);
928 return NULL;
929 }
930
931 return xstrdup (buff);
932 }
933
934 #endif
935
936
937 /*----------------------------------------------------------------.
938 | Read from finput until `%%' is seen. Discard the `%%'. Handle |
939 | any `%' declarations, and copy the contents of any `%{ ... %}' |
940 | groups to ATTRS_OBSTACK. |
941 `----------------------------------------------------------------*/
942
943 static void
944 read_declarations (void)
945 {
946 for (;;)
947 {
948 int c = skip_white_space ();
949
950 if (c == '%')
951 {
952 token_t tok = parse_percent_token ();
953
954 switch (tok)
955 {
956 case tok_two_percents:
957 return;
958
959 case tok_percent_left_curly:
960 copy_definition ();
961 break;
962
963 case tok_token:
964 parse_token_decl (token_sym, nterm_sym);
965 break;
966
967 case tok_nterm:
968 parse_token_decl (nterm_sym, token_sym);
969 break;
970
971 case tok_type:
972 parse_type_decl ();
973 break;
974
975 case tok_start:
976 parse_start_decl ();
977 break;
978
979 case tok_union:
980 parse_union_decl ();
981 break;
982
983 case tok_expect:
984 parse_expect_decl ();
985 break;
986
987 case tok_thong:
988 parse_thong_decl ();
989 break;
990
991 case tok_left:
992 parse_assoc_decl (left_assoc);
993 break;
994
995 case tok_right:
996 parse_assoc_decl (right_assoc);
997 break;
998
999 case tok_nonassoc:
1000 parse_assoc_decl (non_assoc);
1001 break;
1002
1003 case tok_noop:
1004 break;
1005
1006 case tok_stropt:
1007 case tok_intopt:
1008 case tok_obsolete:
1009 case tok_illegal:
1010 abort ();
1011 break;
1012
1013 default:
1014 complain (_("unrecognized: %s"), token_buffer);
1015 skip_to_char ('%');
1016 }
1017 }
1018 else if (c == EOF)
1019 fatal (_("no input grammar"));
1020 else
1021 {
1022 char buf[] = "c";
1023 buf[0] = c;
1024 complain (_("unknown character: %s"), quote (buf));
1025 skip_to_char ('%');
1026 }
1027 }
1028 }
1029 \f
1030 /*-------------------------------------------------------------------.
1031 | Assuming that a `{' has just been seen, copy everything up to the |
1032 | matching `}' into the actions file. STACK_OFFSET is the number of |
1033 | values in the current rule so far, which says where to find `$0' |
1034 | with respect to the top of the stack. |
1035 `-------------------------------------------------------------------*/
1036
1037 static void
1038 copy_action (symbol_list *rule, int stack_offset)
1039 {
1040 int c;
1041 int count;
1042 char buf[4096];
1043
1044 /* offset is always 0 if parser has already popped the stack pointer */
1045 if (semantic_parser)
1046 stack_offset = 0;
1047
1048 sprintf (buf, "\ncase %d:\n", nrules);
1049 obstack_grow (&action_obstack, buf, strlen (buf));
1050
1051 if (!no_lines_flag)
1052 {
1053 sprintf (buf, "#line %d %s\n",
1054 lineno, quotearg_style (c_quoting_style, infile));
1055 obstack_grow (&action_obstack, buf, strlen (buf));
1056 }
1057 obstack_1grow (&action_obstack, '{');
1058
1059 count = 1;
1060 c = getc (finput);
1061
1062 while (count > 0)
1063 {
1064 while (c != '}')
1065 {
1066 switch (c)
1067 {
1068 case '\n':
1069 obstack_1grow (&action_obstack, c);
1070 lineno++;
1071 break;
1072
1073 case '{':
1074 obstack_1grow (&action_obstack, c);
1075 count++;
1076 break;
1077
1078 case '\'':
1079 case '"':
1080 copy_string (finput, &action_obstack, c);
1081 break;
1082
1083 case '/':
1084 copy_comment (finput, &action_obstack);
1085 break;
1086
1087 case '$':
1088 copy_dollar (finput, &action_obstack,
1089 rule, stack_offset);
1090 break;
1091
1092 case '@':
1093 copy_at (finput, &action_obstack,
1094 stack_offset);
1095 break;
1096
1097 case EOF:
1098 fatal (_("unmatched %s"), "`{'");
1099
1100 default:
1101 obstack_1grow (&action_obstack, c);
1102 }
1103
1104 c = getc (finput);
1105 }
1106
1107 /* above loop exits when c is '}' */
1108
1109 if (--count)
1110 {
1111 obstack_1grow (&action_obstack, c);
1112 c = getc (finput);
1113 }
1114 }
1115
1116 obstack_sgrow (&action_obstack, ";\n break;}");
1117 }
1118 \f
1119 /*-------------------------------------------------------------------.
1120 | After `%guard' is seen in the input file, copy the actual guard |
1121 | into the guards file. If the guard is followed by an action, copy |
1122 | that into the actions file. STACK_OFFSET is the number of values |
1123 | in the current rule so far, which says where to find `$0' with |
1124 | respect to the top of the stack, for the simple parser in which |
1125 | the stack is not popped until after the guard is run. |
1126 `-------------------------------------------------------------------*/
1127
1128 static void
1129 copy_guard (symbol_list *rule, int stack_offset)
1130 {
1131 int c;
1132 int count;
1133 int brace_flag = 0;
1134
1135 /* offset is always 0 if parser has already popped the stack pointer */
1136 if (semantic_parser)
1137 stack_offset = 0;
1138
1139 obstack_fgrow1 (&guard_obstack, "\ncase %d:\n", nrules);
1140 if (!no_lines_flag)
1141 obstack_fgrow2 (&guard_obstack, "#line %d %s\n",
1142 lineno, quotearg_style (c_quoting_style, infile));
1143 obstack_1grow (&guard_obstack, '{');
1144
1145 count = 0;
1146 c = getc (finput);
1147
1148 while (brace_flag ? (count > 0) : (c != ';'))
1149 {
1150 switch (c)
1151 {
1152 case '\n':
1153 obstack_1grow (&guard_obstack, c);
1154 lineno++;
1155 break;
1156
1157 case '{':
1158 obstack_1grow (&guard_obstack, c);
1159 brace_flag = 1;
1160 count++;
1161 break;
1162
1163 case '}':
1164 obstack_1grow (&guard_obstack, c);
1165 if (count > 0)
1166 count--;
1167 else
1168 {
1169 complain (_("unmatched %s"), "`}'");
1170 c = getc (finput); /* skip it */
1171 }
1172 break;
1173
1174 case '\'':
1175 case '"':
1176 copy_string (finput, &guard_obstack, c);
1177 break;
1178
1179 case '/':
1180 copy_comment (finput, &guard_obstack);
1181 break;
1182
1183 case '$':
1184 copy_dollar (finput, &guard_obstack, rule, stack_offset);
1185 break;
1186
1187 case '@':
1188 copy_at (finput, &guard_obstack, stack_offset);
1189 break;
1190
1191 case EOF:
1192 fatal ("%s", _("unterminated %guard clause"));
1193
1194 default:
1195 obstack_1grow (&guard_obstack, c);
1196 }
1197
1198 if (c != '}' || count != 0)
1199 c = getc (finput);
1200 }
1201
1202 c = skip_white_space ();
1203
1204 obstack_sgrow (&guard_obstack, ";\n break;}");
1205 if (c == '{')
1206 copy_action (rule, stack_offset);
1207 else if (c == '=')
1208 {
1209 c = getc (finput); /* why not skip_white_space -wjh */
1210 if (c == '{')
1211 copy_action (rule, stack_offset);
1212 }
1213 else
1214 ungetc (c, finput);
1215 }
1216 \f
1217
1218 static void
1219 record_rule_line (void)
1220 {
1221 /* Record each rule's source line number in rline table. */
1222
1223 if (nrules >= rline_allocated)
1224 {
1225 rline_allocated = nrules * 2;
1226 rline = XREALLOC (rline, short, rline_allocated);
1227 }
1228 rline[nrules] = lineno;
1229 }
1230
1231
1232 /*-------------------------------------------------------------------.
1233 | Generate a dummy symbol, a nonterminal, whose name cannot conflict |
1234 | with the user's names. |
1235 `-------------------------------------------------------------------*/
1236
1237 static bucket *
1238 gensym (void)
1239 {
1240 /* Incremented for each generated symbol */
1241 static int gensym_count = 0;
1242 static char buf[256];
1243
1244 bucket *sym;
1245
1246 sprintf (buf, "@%d", ++gensym_count);
1247 token_buffer = buf;
1248 sym = getsym (token_buffer);
1249 sym->class = nterm_sym;
1250 sym->value = nvars++;
1251 return sym;
1252 }
1253
1254 #if 0
1255 /*------------------------------------------------------------------.
1256 | read in a %type declaration and record its information for |
1257 | get_type_name to access. This is unused. It is only called from |
1258 | the #if 0 part of readgram |
1259 `------------------------------------------------------------------*/
1260
1261 static int
1262 get_type (void)
1263 {
1264 int k;
1265 token_t token;
1266 char *name;
1267
1268 token = lex ();
1269
1270 if (token != tok_typename)
1271 {
1272 complain (_("invalid %s declaration"), "%type");
1273 return t;
1274 }
1275
1276 name = xstrdup (token_buffer);
1277
1278 for (;;)
1279 {
1280 token = lex ();
1281
1282 switch (token)
1283 {
1284 case tok_semicolon:
1285 return lex ();
1286
1287 case tok_comma:
1288 break;
1289
1290 case tok_identifier:
1291 if (symval->type_name == NULL)
1292 symval->type_name = name;
1293 else if (strcmp (name, symval->type_name) != 0)
1294 complain (_("type redeclaration for %s"), symval->tag);
1295
1296 break;
1297
1298 default:
1299 return token;
1300 }
1301 }
1302 }
1303
1304 #endif
1305 \f
1306 /*------------------------------------------------------------------.
1307 | Parse the input grammar into a one symbol_list structure. Each |
1308 | rule is represented by a sequence of symbols: the left hand side |
1309 | followed by the contents of the right hand side, followed by a |
1310 | null pointer instead of a symbol to terminate the rule. The next |
1311 | symbol is the lhs of the following rule. |
1312 | |
1313 | All guards and actions are copied out to the appropriate files, |
1314 | labelled by the rule number they apply to. |
1315 `------------------------------------------------------------------*/
1316
1317 static void
1318 readgram (void)
1319 {
1320 token_t t;
1321 bucket *lhs = NULL;
1322 symbol_list *p;
1323 symbol_list *p1;
1324 bucket *bp;
1325
1326 /* Points to first symbol_list of current rule. its symbol is the
1327 lhs of the rule. */
1328 symbol_list *crule;
1329 /* Points to the symbol_list preceding crule. */
1330 symbol_list *crule1;
1331
1332 p1 = NULL;
1333
1334 t = lex ();
1335
1336 while (t != tok_two_percents && t != tok_eof)
1337 {
1338 if (t == tok_identifier || t == tok_bar)
1339 {
1340 int action_flag = 0;
1341 /* Number of symbols in rhs of this rule so far */
1342 int rulelength = 0;
1343 int xactions = 0; /* JF for error checking */
1344 bucket *first_rhs = 0;
1345
1346 if (t == tok_identifier)
1347 {
1348 lhs = symval;
1349
1350 if (!start_flag)
1351 {
1352 startval = lhs;
1353 start_flag = 1;
1354 }
1355
1356 t = lex ();
1357 if (t != tok_colon)
1358 {
1359 complain (_("ill-formed rule: initial symbol not followed by colon"));
1360 unlex (t);
1361 }
1362 }
1363
1364 if (nrules == 0 && t == tok_bar)
1365 {
1366 complain (_("grammar starts with vertical bar"));
1367 lhs = symval; /* BOGUS: use a random symval */
1368 }
1369 /* start a new rule and record its lhs. */
1370
1371 nrules++;
1372 nitems++;
1373
1374 record_rule_line ();
1375
1376 p = XCALLOC (symbol_list, 1);
1377 p->sym = lhs;
1378
1379 crule1 = p1;
1380 if (p1)
1381 p1->next = p;
1382 else
1383 grammar = p;
1384
1385 p1 = p;
1386 crule = p;
1387
1388 /* mark the rule's lhs as a nonterminal if not already so. */
1389
1390 if (lhs->class == unknown_sym)
1391 {
1392 lhs->class = nterm_sym;
1393 lhs->value = nvars;
1394 nvars++;
1395 }
1396 else if (lhs->class == token_sym)
1397 complain (_("rule given for %s, which is a token"), lhs->tag);
1398
1399 /* read the rhs of the rule. */
1400
1401 for (;;)
1402 {
1403 t = lex ();
1404 if (t == tok_prec)
1405 {
1406 t = lex ();
1407 crule->ruleprec = symval;
1408 t = lex ();
1409 }
1410
1411 if (!(t == tok_identifier || t == tok_left_curly))
1412 break;
1413
1414 /* If next token is an identifier, see if a colon follows it.
1415 If one does, exit this rule now. */
1416 if (t == tok_identifier)
1417 {
1418 bucket *ssave;
1419 token_t t1;
1420
1421 ssave = symval;
1422 t1 = lex ();
1423 unlex (t1);
1424 symval = ssave;
1425 if (t1 == tok_colon)
1426 break;
1427
1428 if (!first_rhs) /* JF */
1429 first_rhs = symval;
1430 /* Not followed by colon =>
1431 process as part of this rule's rhs. */
1432 }
1433
1434 /* If we just passed an action, that action was in the middle
1435 of a rule, so make a dummy rule to reduce it to a
1436 non-terminal. */
1437 if (action_flag)
1438 {
1439 bucket *sdummy;
1440
1441 /* Since the action was written out with this rule's
1442 number, we must give the new rule this number by
1443 inserting the new rule before it. */
1444
1445 /* Make a dummy nonterminal, a gensym. */
1446 sdummy = gensym ();
1447
1448 /* Make a new rule, whose body is empty,
1449 before the current one, so that the action
1450 just read can belong to it. */
1451 nrules++;
1452 nitems++;
1453 record_rule_line ();
1454 p = XCALLOC (symbol_list, 1);
1455 if (crule1)
1456 crule1->next = p;
1457 else
1458 grammar = p;
1459 p->sym = sdummy;
1460 crule1 = XCALLOC (symbol_list, 1);
1461 p->next = crule1;
1462 crule1->next = crule;
1463
1464 /* Insert the dummy generated by that rule into this
1465 rule. */
1466 nitems++;
1467 p = XCALLOC (symbol_list, 1);
1468 p->sym = sdummy;
1469 p1->next = p;
1470 p1 = p;
1471
1472 action_flag = 0;
1473 }
1474
1475 if (t == tok_identifier)
1476 {
1477 nitems++;
1478 p = XCALLOC (symbol_list, 1);
1479 p->sym = symval;
1480 p1->next = p;
1481 p1 = p;
1482 }
1483 else /* handle an action. */
1484 {
1485 copy_action (crule, rulelength);
1486 action_flag = 1;
1487 xactions++; /* JF */
1488 }
1489 rulelength++;
1490 } /* end of read rhs of rule */
1491
1492 /* Put an empty link in the list to mark the end of this rule */
1493 p = XCALLOC (symbol_list, 1);
1494 p1->next = p;
1495 p1 = p;
1496
1497 if (t == tok_prec)
1498 {
1499 complain (_("two @prec's in a row"));
1500 t = lex ();
1501 crule->ruleprec = symval;
1502 t = lex ();
1503 }
1504 if (t == tok_guard)
1505 {
1506 if (!semantic_parser)
1507 complain (_("%%guard present but %%semantic_parser not specified"));
1508
1509 copy_guard (crule, rulelength);
1510 t = lex ();
1511 }
1512 else if (t == tok_left_curly)
1513 {
1514 /* This case never occurs -wjh */
1515 if (action_flag)
1516 complain (_("two actions at end of one rule"));
1517 copy_action (crule, rulelength);
1518 action_flag = 1;
1519 xactions++; /* -wjh */
1520 t = lex ();
1521 }
1522 /* If $$ is being set in default way, report if any type
1523 mismatch. */
1524 else if (!xactions
1525 && first_rhs && lhs->type_name != first_rhs->type_name)
1526 {
1527 if (lhs->type_name == 0
1528 || first_rhs->type_name == 0
1529 || strcmp (lhs->type_name, first_rhs->type_name))
1530 complain (_("type clash (`%s' `%s') on default action"),
1531 lhs->type_name ? lhs->type_name : "",
1532 first_rhs->type_name ? first_rhs->type_name : "");
1533 }
1534 /* Warn if there is no default for $$ but we need one. */
1535 else if (!xactions && !first_rhs && lhs->type_name != 0)
1536 complain (_("empty rule for typed nonterminal, and no action"));
1537 if (t == tok_semicolon)
1538 t = lex ();
1539 }
1540 #if 0
1541 /* these things can appear as alternatives to rules. */
1542 /* NO, they cannot.
1543 a) none of the documentation allows them
1544 b) most of them scan forward until finding a next %
1545 thus they may swallow lots of intervening rules
1546 */
1547 else if (t == tok_token)
1548 {
1549 parse_token_decl (token_sym, nterm_sym);
1550 t = lex ();
1551 }
1552 else if (t == tok_nterm)
1553 {
1554 parse_token_decl (nterm_sym, token_sym);
1555 t = lex ();
1556 }
1557 else if (t == tok_type)
1558 {
1559 t = get_type ();
1560 }
1561 else if (t == tok_union)
1562 {
1563 parse_union_decl ();
1564 t = lex ();
1565 }
1566 else if (t == tok_expect)
1567 {
1568 parse_expect_decl ();
1569 t = lex ();
1570 }
1571 else if (t == tok_start)
1572 {
1573 parse_start_decl ();
1574 t = lex ();
1575 }
1576 #endif
1577
1578 else
1579 {
1580 complain (_("invalid input: %s"), quote (token_buffer));
1581 t = lex ();
1582 }
1583 }
1584
1585 /* grammar has been read. Do some checking */
1586
1587 if (nsyms > MAXSHORT)
1588 fatal (_("too many symbols (tokens plus nonterminals); maximum %d"),
1589 MAXSHORT);
1590 if (nrules == 0)
1591 fatal (_("no rules in the input grammar"));
1592
1593 /* JF put out same default YYSTYPE as YACC does */
1594 if (typed == 0
1595 && !value_components_used)
1596 {
1597 /* We used to use `unsigned long' as YYSTYPE on MSDOS,
1598 but it seems better to be consistent.
1599 Most programs should declare their own type anyway. */
1600 obstack_sgrow (&attrs_obstack,
1601 "#ifndef YYSTYPE\n#define YYSTYPE int\n#endif\n");
1602 if (defines_flag)
1603 obstack_sgrow (&defines_obstack, "\
1604 # ifndef YYSTYPE\n\
1605 # define YYSTYPE int\n\
1606 # endif\n");
1607 }
1608
1609 /* Report any undefined symbols and consider them nonterminals. */
1610
1611 for (bp = firstsymbol; bp; bp = bp->next)
1612 if (bp->class == unknown_sym)
1613 {
1614 complain (_
1615 ("symbol %s is used, but is not defined as a token and has no rules"),
1616 bp->tag);
1617 bp->class = nterm_sym;
1618 bp->value = nvars++;
1619 }
1620
1621 ntokens = nsyms - nvars;
1622 }
1623 \f
1624 /*--------------------------------------------------------------.
1625 | For named tokens, but not literal ones, define the name. The |
1626 | value is the user token number. |
1627 `--------------------------------------------------------------*/
1628
1629 static void
1630 output_token_defines (struct obstack *oout)
1631 {
1632 bucket *bp;
1633 char *cp, *symbol;
1634 char c;
1635
1636 for (bp = firstsymbol; bp; bp = bp->next)
1637 {
1638 symbol = bp->tag; /* get symbol */
1639
1640 if (bp->value >= ntokens)
1641 continue;
1642 if (bp->user_token_number == SALIAS)
1643 continue;
1644 if ('\'' == *symbol)
1645 continue; /* skip literal character */
1646 if (bp == errtoken)
1647 continue; /* skip error token */
1648 if ('\"' == *symbol)
1649 {
1650 /* use literal string only if given a symbol with an alias */
1651 if (bp->alias)
1652 symbol = bp->alias->tag;
1653 else
1654 continue;
1655 }
1656
1657 /* Don't #define nonliteral tokens whose names contain periods. */
1658 cp = symbol;
1659 while ((c = *cp++) && c != '.');
1660 if (c != '\0')
1661 continue;
1662
1663 obstack_fgrow2 (oout, "# define\t%s\t%d\n",
1664 symbol, bp->user_token_number);
1665 if (semantic_parser)
1666 /* FIXME: This is certainly dead wrong, and should be just as
1667 above. --akim. */
1668 obstack_fgrow2 (oout, "# define\tT%s\t%d\n", symbol, bp->value);
1669 }
1670
1671 obstack_1grow (oout, '\n');
1672 }
1673
1674
1675 /*--------------------.
1676 | Output the header. |
1677 `--------------------*/
1678
1679 static void
1680 symbols_output (void)
1681 {
1682 if (defines_flag)
1683 {
1684 output_token_defines (&defines_obstack);
1685
1686 if (!pure_parser)
1687 {
1688 if (spec_name_prefix)
1689 obstack_fgrow1 (&defines_obstack, "\nextern YYSTYPE %slval;\n",
1690 spec_name_prefix);
1691 else
1692 obstack_sgrow (&defines_obstack,
1693 "\nextern YYSTYPE yylval;\n");
1694 }
1695
1696 if (semantic_parser)
1697 {
1698 int i;
1699
1700 for (i = ntokens; i < nsyms; i++)
1701 {
1702 /* don't make these for dummy nonterminals made by gensym. */
1703 if (*tags[i] != '@')
1704 obstack_fgrow2 (&defines_obstack,
1705 "# define\tNT%s\t%d\n", tags[i], i);
1706 }
1707 #if 0
1708 /* `fdefines' is now a temporary file, so we need to copy its
1709 contents in `done', so we can't close it here. */
1710 fclose (fdefines);
1711 fdefines = NULL;
1712 #endif
1713 }
1714 }
1715 }
1716
1717
1718 /*------------------------------------------------------------------.
1719 | Set TOKEN_TRANSLATIONS. Check that no two symbols share the same |
1720 | number. |
1721 `------------------------------------------------------------------*/
1722
1723 static void
1724 token_translations_init (void)
1725 {
1726 bucket *bp = NULL;
1727 int i;
1728
1729 token_translations = XCALLOC (short, max_user_token_number + 1);
1730
1731 /* Initialize all entries for literal tokens to 2, the internal
1732 token number for $undefined., which represents all invalid
1733 inputs. */
1734 for (i = 0; i <= max_user_token_number; i++)
1735 token_translations[i] = 2;
1736
1737 for (bp = firstsymbol; bp; bp = bp->next)
1738 {
1739 /* Non-terminal? */
1740 if (bp->value >= ntokens)
1741 continue;
1742 /* A token string alias? */
1743 if (bp->user_token_number == SALIAS)
1744 continue;
1745
1746 assert (bp->user_token_number != SUNDEF);
1747
1748 /* A token which translation has already been set? */
1749 if (token_translations[bp->user_token_number] != 2)
1750 complain (_("tokens %s and %s both assigned number %d"),
1751 tags[token_translations[bp->user_token_number]],
1752 bp->tag, bp->user_token_number);
1753 token_translations[bp->user_token_number] = bp->value;
1754 }
1755 }
1756
1757
1758 /*------------------------------------------------------------------.
1759 | Assign symbol numbers, and write definition of token names into |
1760 | FDEFINES. Set up vectors TAGS and SPREC of names and precedences |
1761 | of symbols. |
1762 `------------------------------------------------------------------*/
1763
1764 static void
1765 packsymbols (void)
1766 {
1767 bucket *bp = NULL;
1768 int tokno = 1;
1769 int last_user_token_number;
1770 static char DOLLAR[] = "$";
1771
1772 tags = XCALLOC (char *, nsyms + 1);
1773 user_toknums = XCALLOC (short, nsyms + 1);
1774
1775 sprec = XCALLOC (short, nsyms);
1776 sassoc = XCALLOC (short, nsyms);
1777
1778 /* The EOF token. */
1779 tags[0] = DOLLAR;
1780 user_toknums[0] = 0;
1781
1782 max_user_token_number = 256;
1783 last_user_token_number = 256;
1784
1785 for (bp = firstsymbol; bp; bp = bp->next)
1786 {
1787 if (bp->class == nterm_sym)
1788 {
1789 bp->value += ntokens;
1790 }
1791 else if (bp->alias)
1792 {
1793 /* this symbol and its alias are a single token defn.
1794 allocate a tokno, and assign to both check agreement of
1795 ->prec and ->assoc fields and make both the same */
1796 if (bp->value == 0)
1797 bp->value = bp->alias->value = tokno++;
1798
1799 if (bp->prec != bp->alias->prec)
1800 {
1801 if (bp->prec != 0 && bp->alias->prec != 0
1802 && bp->user_token_number == SALIAS)
1803 complain (_("conflicting precedences for %s and %s"),
1804 bp->tag, bp->alias->tag);
1805 if (bp->prec != 0)
1806 bp->alias->prec = bp->prec;
1807 else
1808 bp->prec = bp->alias->prec;
1809 }
1810
1811 if (bp->assoc != bp->alias->assoc)
1812 {
1813 if (bp->assoc != 0 && bp->alias->assoc != 0
1814 && bp->user_token_number == SALIAS)
1815 complain (_("conflicting assoc values for %s and %s"),
1816 bp->tag, bp->alias->tag);
1817 if (bp->assoc != 0)
1818 bp->alias->assoc = bp->assoc;
1819 else
1820 bp->assoc = bp->alias->assoc;
1821 }
1822
1823 if (bp->user_token_number == SALIAS)
1824 continue; /* do not do processing below for SALIASs */
1825
1826 }
1827 else /* bp->class == token_sym */
1828 {
1829 bp->value = tokno++;
1830 }
1831
1832 if (bp->class == token_sym)
1833 {
1834 if (bp->user_token_number == SUNDEF)
1835 bp->user_token_number = ++last_user_token_number;
1836 if (bp->user_token_number > max_user_token_number)
1837 max_user_token_number = bp->user_token_number;
1838 }
1839
1840 tags[bp->value] = bp->tag;
1841 user_toknums[bp->value] = bp->user_token_number;
1842 sprec[bp->value] = bp->prec;
1843 sassoc[bp->value] = bp->assoc;
1844 }
1845
1846 token_translations_init ();
1847
1848 error_token_number = errtoken->value;
1849
1850 if (!no_parser_flag)
1851 output_token_defines (&table_obstack);
1852
1853 if (startval->class == unknown_sym)
1854 fatal (_("the start symbol %s is undefined"), startval->tag);
1855 else if (startval->class == token_sym)
1856 fatal (_("the start symbol %s is a token"), startval->tag);
1857
1858 start_symbol = startval->value;
1859 }
1860
1861
1862 /*---------------------------------------------------------------.
1863 | Convert the rules into the representation using RRHS, RLHS and |
1864 | RITEMS. |
1865 `---------------------------------------------------------------*/
1866
1867 static void
1868 packgram (void)
1869 {
1870 int itemno;
1871 int ruleno;
1872 symbol_list *p;
1873
1874 bucket *ruleprec;
1875
1876 ritem = XCALLOC (short, nitems + 1);
1877 rule_table = XCALLOC (rule_t, nrules) - 1;
1878 rprec = XCALLOC (short, nrules) - 1;
1879 rprecsym = XCALLOC (short, nrules) - 1;
1880 rassoc = XCALLOC (short, nrules) - 1;
1881
1882 itemno = 0;
1883 ruleno = 1;
1884
1885 p = grammar;
1886 while (p)
1887 {
1888 rule_table[ruleno].lhs = p->sym->value;
1889 rule_table[ruleno].rhs = itemno;
1890 ruleprec = p->ruleprec;
1891
1892 p = p->next;
1893 while (p && p->sym)
1894 {
1895 ritem[itemno++] = p->sym->value;
1896 /* A rule gets by default the precedence and associativity
1897 of the last token in it. */
1898 if (p->sym->class == token_sym)
1899 {
1900 rprec[ruleno] = p->sym->prec;
1901 rassoc[ruleno] = p->sym->assoc;
1902 }
1903 if (p)
1904 p = p->next;
1905 }
1906
1907 /* If this rule has a %prec,
1908 the specified symbol's precedence replaces the default. */
1909 if (ruleprec)
1910 {
1911 rprec[ruleno] = ruleprec->prec;
1912 rassoc[ruleno] = ruleprec->assoc;
1913 rprecsym[ruleno] = ruleprec->value;
1914 }
1915
1916 ritem[itemno++] = -ruleno;
1917 ruleno++;
1918
1919 if (p)
1920 p = p->next;
1921 }
1922
1923 ritem[itemno] = 0;
1924 }
1925 \f
1926 /*-------------------------------------------------------------------.
1927 | Read in the grammar specification and record it in the format |
1928 | described in gram.h. All guards are copied into the GUARD_OBSTACK |
1929 | and all actions into ACTION_OBSTACK, in each case forming the body |
1930 | of a C function (YYGUARD or YYACTION) which contains a switch |
1931 | statement to decide which guard or action to execute. |
1932 `-------------------------------------------------------------------*/
1933
1934 void
1935 reader (void)
1936 {
1937 start_flag = 0;
1938 startval = NULL; /* start symbol not specified yet. */
1939
1940 nsyms = 1;
1941 nvars = 0;
1942 nrules = 0;
1943 nitems = 0;
1944 rline_allocated = 10;
1945 rline = XCALLOC (short, rline_allocated);
1946
1947 typed = 0;
1948 lastprec = 0;
1949
1950 semantic_parser = 0;
1951 pure_parser = 0;
1952
1953 grammar = NULL;
1954
1955 lex_init ();
1956 lineno = 1;
1957
1958 /* Initialize the symbol table. */
1959 tabinit ();
1960 /* Construct the error token */
1961 errtoken = getsym ("error");
1962 errtoken->class = token_sym;
1963 errtoken->user_token_number = 256; /* Value specified by POSIX. */
1964 /* Construct a token that represents all undefined literal tokens.
1965 It is always token number 2. */
1966 undeftoken = getsym ("$undefined.");
1967 undeftoken->class = token_sym;
1968 undeftoken->user_token_number = 2;
1969
1970 /* Read the declaration section. Copy %{ ... %} groups to
1971 TABLE_OBSTACK and FDEFINES file. Also notice any %token, %left,
1972 etc. found there. */
1973 obstack_fgrow3 (&table_obstack, "\
1974 /* %s, made from %s\n\
1975 by GNU bison %s. */\n\
1976 \n",
1977 no_parser_flag ? "Bison-generated parse tables" : "A Bison parser",
1978 infile, VERSION);
1979
1980 obstack_sgrow (&table_obstack,
1981 "#define YYBISON 1 /* Identify Bison output. */\n\n");
1982 read_declarations ();
1983 /* Start writing the guard and action files, if they are needed. */
1984 output_headers ();
1985 /* Read in the grammar, build grammar in list form. Write out
1986 guards and actions. */
1987 readgram ();
1988 /* Now we know whether we need the line-number stack. If we do,
1989 write its type into the .tab.h file. */
1990 if (defines_flag)
1991 reader_output_yylsp (&defines_obstack);
1992 /* Write closing delimiters for actions and guards. */
1993 output_trailers ();
1994 if (locations_flag)
1995 obstack_sgrow (&table_obstack, "#define YYLSP_NEEDED 1\n\n");
1996 /* Assign the symbols their symbol numbers. Write #defines for the
1997 token symbols into FDEFINES if requested. */
1998 packsymbols ();
1999 /* Convert the grammar into the format described in gram.h. */
2000 packgram ();
2001 /* Output the headers. */
2002 symbols_output ();
2003 }
2004
2005
2006 /*------------------------------------------------------------------.
2007 | Define YYLTYPE. Cannot be in the skeleton since we might have to |
2008 | output it in the headers if --defines is used. |
2009 `------------------------------------------------------------------*/
2010
2011 void
2012 reader_output_yylsp (struct obstack *oout)
2013 {
2014 if (locations_flag)
2015 obstack_sgrow (oout, "\
2016 \n\
2017 #ifndef YYLTYPE\n\
2018 typedef struct yyltype\n\
2019 {\n\
2020 int first_line;\n\
2021 int first_column;\n\
2022 \n\
2023 int last_line;\n\
2024 int last_column;\n\
2025 } yyltype;\n\
2026 \n\
2027 # define YYLTYPE yyltype\n\
2028 #endif\n\
2029 \n");
2030 }