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