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