]> git.saurik.com Git - bison.git/blob - src/scan-gram.l
* src/scan-gram.l (code_start): Always initialize it when entering
[bison.git] / src / scan-gram.l
1 /* Bison Grammar Scanner -*- C -*-
2
3 Copyright (C) 2002, 2003 Free Software Foundation, Inc.
4
5 This file is part of Bison, the GNU Compiler Compiler.
6
7 This program 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 of the License, or
10 (at your option) any later version.
11
12 This program 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 this program; if not, write to the Free Software
19 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
20 02111-1307 USA
21 */
22
23 %option debug nodefault noyywrap never-interactive
24 %option prefix="gram_" outfile="lex.yy.c"
25
26 %{
27 #include "system.h"
28
29 #include <mbswidth.h>
30 #include <get-errno.h>
31 #include <quote.h>
32
33 #include "complain.h"
34 #include "files.h"
35 #include "getargs.h"
36 #include "gram.h"
37 #include "reader.h"
38 #include "uniqstr.h"
39
40 #define YY_USER_INIT \
41 do \
42 { \
43 scanner_cursor.file = current_file; \
44 scanner_cursor.line = 1; \
45 scanner_cursor.column = 1; \
46 } \
47 while (0)
48
49 /* Location of scanner cursor. */
50 boundary scanner_cursor;
51
52 static void adjust_location (location *, char const *, size_t);
53 #define YY_USER_ACTION adjust_location (loc, yytext, yyleng);
54
55 static size_t no_cr_read (FILE *, char *, size_t);
56 #define YY_INPUT(buf, result, size) ((result) = no_cr_read (yyin, buf, size))
57
58
59 /* OBSTACK_FOR_STRING -- Used to store all the characters that we need to
60 keep (to construct ID, STRINGS etc.). Use the following macros to
61 use it.
62
63 Use STRING_GROW to append what has just been matched, and
64 STRING_FINISH to end the string (it puts the ending 0).
65 STRING_FINISH also stores this string in LAST_STRING, which can be
66 used, and which is used by STRING_FREE to free the last string. */
67
68 static struct obstack obstack_for_string;
69
70 /* A string representing the most recently saved token. */
71 static char *last_string;
72
73
74 #define STRING_GROW \
75 obstack_grow (&obstack_for_string, yytext, yyleng)
76
77 #define STRING_FINISH \
78 do { \
79 obstack_1grow (&obstack_for_string, '\0'); \
80 last_string = obstack_finish (&obstack_for_string); \
81 } while (0)
82
83 #define STRING_FREE \
84 obstack_free (&obstack_for_string, last_string)
85
86 void
87 scanner_last_string_free (void)
88 {
89 STRING_FREE;
90 }
91
92 /* Within well-formed rules, RULE_LENGTH is the number of values in
93 the current rule so far, which says where to find `$0' with respect
94 to the top of the stack. It is not the same as the rule->length in
95 the case of mid rule actions.
96
97 Outside of well-formed rules, RULE_LENGTH has an undefined value. */
98 static int rule_length;
99
100 static void handle_dollar (int token_type, char *cp, location loc);
101 static void handle_at (int token_type, char *cp, location loc);
102 static void handle_syncline (char *args);
103 static int convert_ucn_to_byte (char const *hex_text);
104 static void unexpected_end_of_file (boundary, char const *);
105
106 %}
107 %x SC_COMMENT SC_LINE_COMMENT SC_YACC_COMMENT
108 %x SC_STRING SC_CHARACTER
109 %x SC_AFTER_IDENTIFIER
110 %x SC_ESCAPED_STRING SC_ESCAPED_CHARACTER
111 %x SC_PRE_CODE SC_BRACED_CODE SC_PROLOGUE SC_EPILOGUE
112
113 letter [.abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ_]
114 id {letter}({letter}|[0-9])*
115 directive %{letter}({letter}|[0-9]|-)*
116 int [0-9]+
117
118 /* POSIX says that a tag must be both an id and a C union member, but
119 historically almost any character is allowed in a tag. We disallow
120 NUL and newline, as this simplifies our implementation. */
121 tag [^\0\n>]+
122
123 /* Zero or more instances of backslash-newline. Following GCC, allow
124 white space between the backslash and the newline. */
125 splice (\\[ \f\t\v]*\n)*
126
127 %%
128 %{
129 /* Nesting level of the current code in braces. */
130 int braces_level IF_LINT (= 0);
131
132 /* Parent context state, when applicable. */
133 int context_state IF_LINT (= 0);
134
135 /* Token type to return, when applicable. */
136 int token_type IF_LINT (= 0);
137
138 /* Location of most recent identifier, when applicable. */
139 location id_loc IF_LINT (= *loc);
140
141 /* Where containing code started, when applicable.
142 Once the second %% seen, we are looking for the epilogue. */
143 boundary code_start = loc->end;
144
145 /* Where containing comment or string or character literal started,
146 when applicable. */
147 boundary token_start IF_LINT (= loc->start);
148 %}
149
150
151 /*-----------------------.
152 | Scanning white space. |
153 `-----------------------*/
154
155 <INITIAL,SC_AFTER_IDENTIFIER,SC_PRE_CODE>
156 {
157 [ \f\n\t\v] ;
158 "," warn_at (*loc, _("stray `,' treated as white space"));
159
160 /* Comments. */
161 "//".* ;
162 "/*" {
163 token_start = loc->start;
164 context_state = YY_START;
165 BEGIN SC_YACC_COMMENT;
166 }
167
168 /* #line directives are not documented, and may be withdrawn or
169 modified in future versions of Bison. */
170 ^"#line "{int}" \"".*"\"\n" {
171 handle_syncline (yytext + sizeof "#line " - 1);
172 }
173 }
174
175
176 /*----------------------------.
177 | Scanning Bison directives. |
178 `----------------------------*/
179 <INITIAL>
180 {
181 "%binary" return PERCENT_NONASSOC;
182 "%debug" return PERCENT_DEBUG;
183 "%define" return PERCENT_DEFINE;
184 "%defines" return PERCENT_DEFINES;
185 "%destructor" token_type = PERCENT_DESTRUCTOR; BEGIN SC_PRE_CODE;
186 "%dprec" return PERCENT_DPREC;
187 "%error"[-_]"verbose" return PERCENT_ERROR_VERBOSE;
188 "%expect" return PERCENT_EXPECT;
189 "%file-prefix" return PERCENT_FILE_PREFIX;
190 "%fixed"[-_]"output"[-_]"files" return PERCENT_YACC;
191 "%glr-parser" return PERCENT_GLR_PARSER;
192 "%left" return PERCENT_LEFT;
193 "%lex-param" token_type = PERCENT_LEX_PARAM; BEGIN SC_PRE_CODE;
194 "%locations" return PERCENT_LOCATIONS;
195 "%merge" return PERCENT_MERGE;
196 "%name"[-_]"prefix" return PERCENT_NAME_PREFIX;
197 "%no"[-_]"lines" return PERCENT_NO_LINES;
198 "%nonassoc" return PERCENT_NONASSOC;
199 "%nterm" return PERCENT_NTERM;
200 "%output" return PERCENT_OUTPUT;
201 "%parse-param" token_type = PERCENT_PARSE_PARAM; BEGIN SC_PRE_CODE;
202 "%prec" rule_length--; return PERCENT_PREC;
203 "%printer" token_type = PERCENT_PRINTER; BEGIN SC_PRE_CODE;
204 "%pure"[-_]"parser" return PERCENT_PURE_PARSER;
205 "%right" return PERCENT_RIGHT;
206 "%skeleton" return PERCENT_SKELETON;
207 "%start" return PERCENT_START;
208 "%term" return PERCENT_TOKEN;
209 "%token" return PERCENT_TOKEN;
210 "%token"[-_]"table" return PERCENT_TOKEN_TABLE;
211 "%type" return PERCENT_TYPE;
212 "%union" token_type = PERCENT_UNION; BEGIN SC_PRE_CODE;
213 "%verbose" return PERCENT_VERBOSE;
214 "%yacc" return PERCENT_YACC;
215
216 {directive} {
217 complain_at (*loc, _("invalid directive: %s"), quote (yytext));
218 }
219
220 "=" return EQUAL;
221 "|" rule_length = 0; return PIPE;
222 ";" return SEMICOLON;
223
224 {id} {
225 val->symbol = symbol_get (yytext, *loc);
226 id_loc = *loc;
227 rule_length++;
228 BEGIN SC_AFTER_IDENTIFIER;
229 }
230
231 {int} {
232 unsigned long num;
233 set_errno (0);
234 num = strtoul (yytext, 0, 10);
235 if (INT_MAX < num || get_errno ())
236 {
237 complain_at (*loc, _("integer out of range: %s"), quote (yytext));
238 num = INT_MAX;
239 }
240 val->integer = num;
241 return INT;
242 }
243
244 /* Characters. We don't check there is only one. */
245 "'" STRING_GROW; token_start = loc->start; BEGIN SC_ESCAPED_CHARACTER;
246
247 /* Strings. */
248 "\"" STRING_GROW; token_start = loc->start; BEGIN SC_ESCAPED_STRING;
249
250 /* Prologue. */
251 "%{" code_start = loc->start; BEGIN SC_PROLOGUE;
252
253 /* Code in between braces. */
254 "{" {
255 STRING_GROW;
256 token_type = BRACED_CODE;
257 braces_level = 0;
258 code_start = loc->start;
259 BEGIN SC_BRACED_CODE;
260 }
261
262 /* A type. */
263 "<"{tag}">" {
264 obstack_grow (&obstack_for_string, yytext + 1, yyleng - 2);
265 STRING_FINISH;
266 val->uniqstr = uniqstr_new (last_string);
267 STRING_FREE;
268 return TYPE;
269 }
270
271 "%%" {
272 static int percent_percent_count;
273 if (++percent_percent_count == 2)
274 {
275 code_start = loc->start;
276 BEGIN SC_EPILOGUE;
277 }
278 return PERCENT_PERCENT;
279 }
280
281 . {
282 complain_at (*loc, _("invalid character: %s"), quote (yytext));
283 }
284 }
285
286
287 /*-----------------------------------------------------------------.
288 | Scanning after an identifier, checking whether a colon is next. |
289 `-----------------------------------------------------------------*/
290
291 <SC_AFTER_IDENTIFIER>
292 {
293 ":" {
294 rule_length = 0;
295 *loc = id_loc;
296 BEGIN INITIAL;
297 return ID_COLON;
298 }
299 . {
300 scanner_cursor.column -= mbsnwidth (yytext, yyleng, 0);
301 yyless (0);
302 *loc = id_loc;
303 BEGIN INITIAL;
304 return ID;
305 }
306 <<EOF>> {
307 *loc = id_loc;
308 BEGIN INITIAL;
309 return ID;
310 }
311 }
312
313
314 /*---------------------------------------------------------------.
315 | Scanning a Yacc comment. The initial `/ *' is already eaten. |
316 `---------------------------------------------------------------*/
317
318 <SC_YACC_COMMENT>
319 {
320 "*/" BEGIN context_state;
321 .|\n ;
322 <<EOF>> unexpected_end_of_file (token_start, "*/");
323 }
324
325
326 /*------------------------------------------------------------.
327 | Scanning a C comment. The initial `/ *' is already eaten. |
328 `------------------------------------------------------------*/
329
330 <SC_COMMENT>
331 {
332 "*"{splice}"/" STRING_GROW; BEGIN context_state;
333 <<EOF>> unexpected_end_of_file (token_start, "*/");
334 }
335
336
337 /*--------------------------------------------------------------.
338 | Scanning a line comment. The initial `//' is already eaten. |
339 `--------------------------------------------------------------*/
340
341 <SC_LINE_COMMENT>
342 {
343 "\n" STRING_GROW; BEGIN context_state;
344 {splice} STRING_GROW;
345 <<EOF>> BEGIN context_state;
346 }
347
348
349 /*----------------------------------------------------------------.
350 | Scanning a C string, including its escapes. The initial `"' is |
351 | already eaten. |
352 `----------------------------------------------------------------*/
353
354 <SC_ESCAPED_STRING>
355 {
356 "\"" {
357 STRING_GROW;
358 STRING_FINISH;
359 loc->start = token_start;
360 val->chars = last_string;
361 rule_length++;
362 BEGIN INITIAL;
363 return STRING;
364 }
365
366 .|\n STRING_GROW;
367 <<EOF>> unexpected_end_of_file (token_start, "\"");
368 }
369
370 /*---------------------------------------------------------------.
371 | Scanning a C character, decoding its escapes. The initial "'" |
372 | is already eaten. |
373 `---------------------------------------------------------------*/
374
375 <SC_ESCAPED_CHARACTER>
376 {
377 "'" {
378 unsigned char last_string_1;
379 STRING_GROW;
380 STRING_FINISH;
381 loc->start = token_start;
382 val->symbol = symbol_get (last_string, *loc);
383 symbol_class_set (val->symbol, token_sym, *loc);
384 last_string_1 = last_string[1];
385 symbol_user_token_number_set (val->symbol, last_string_1, *loc);
386 STRING_FREE;
387 rule_length++;
388 BEGIN INITIAL;
389 return ID;
390 }
391
392 .|\n STRING_GROW;
393 <<EOF>> unexpected_end_of_file (token_start, "'");
394 }
395
396
397 /*----------------------------.
398 | Decode escaped characters. |
399 `----------------------------*/
400
401 <SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>
402 {
403 \\[0-7]{1,3} {
404 unsigned long c = strtoul (yytext + 1, 0, 8);
405 if (UCHAR_MAX < c)
406 complain_at (*loc, _("invalid escape sequence: %s"), quote (yytext));
407 else
408 obstack_1grow (&obstack_for_string, c);
409 }
410
411 \\x[0-9abcdefABCDEF]+ {
412 unsigned long c;
413 set_errno (0);
414 c = strtoul (yytext + 2, 0, 16);
415 if (UCHAR_MAX < c || get_errno ())
416 complain_at (*loc, _("invalid escape sequence: %s"), quote (yytext));
417 else
418 obstack_1grow (&obstack_for_string, c);
419 }
420
421 \\a obstack_1grow (&obstack_for_string, '\a');
422 \\b obstack_1grow (&obstack_for_string, '\b');
423 \\f obstack_1grow (&obstack_for_string, '\f');
424 \\n obstack_1grow (&obstack_for_string, '\n');
425 \\r obstack_1grow (&obstack_for_string, '\r');
426 \\t obstack_1grow (&obstack_for_string, '\t');
427 \\v obstack_1grow (&obstack_for_string, '\v');
428
429 /* \\[\"\'?\\] would be shorter, but it confuses xgettext. */
430 \\("\""|"'"|"?"|"\\") obstack_1grow (&obstack_for_string, yytext[1]);
431
432 \\(u|U[0-9abcdefABCDEF]{4})[0-9abcdefABCDEF]{4} {
433 int c = convert_ucn_to_byte (yytext);
434 if (c < 0)
435 complain_at (*loc, _("invalid escape sequence: %s"), quote (yytext));
436 else
437 obstack_1grow (&obstack_for_string, c);
438 }
439 \\(.|\n) {
440 complain_at (*loc, _("unrecognized escape sequence: %s"), quote (yytext));
441 STRING_GROW;
442 }
443 }
444
445
446 /*----------------------------------------------------------.
447 | Scanning a C character without decoding its escapes. The |
448 | initial "'" is already eaten. |
449 `----------------------------------------------------------*/
450
451 <SC_CHARACTER>
452 {
453 "'" STRING_GROW; BEGIN context_state;
454 \\{splice}[^$@\[\]] STRING_GROW;
455 <<EOF>> unexpected_end_of_file (token_start, "'");
456 }
457
458
459 /*----------------------------------------------------------------.
460 | Scanning a C string, without decoding its escapes. The initial |
461 | `"' is already eaten. |
462 `----------------------------------------------------------------*/
463
464 <SC_STRING>
465 {
466 "\"" STRING_GROW; BEGIN context_state;
467 \\{splice}[^$@\[\]] STRING_GROW;
468 <<EOF>> unexpected_end_of_file (token_start, "\"");
469 }
470
471
472 /*---------------------------------------------------.
473 | Strings, comments etc. can be found in user code. |
474 `---------------------------------------------------*/
475
476 <SC_BRACED_CODE,SC_PROLOGUE,SC_EPILOGUE>
477 {
478 "'" {
479 STRING_GROW;
480 context_state = YY_START;
481 token_start = loc->start;
482 BEGIN SC_CHARACTER;
483 }
484 "\"" {
485 STRING_GROW;
486 context_state = YY_START;
487 token_start = loc->start;
488 BEGIN SC_STRING;
489 }
490 "/"{splice}"*" {
491 STRING_GROW;
492 context_state = YY_START;
493 token_start = loc->start;
494 BEGIN SC_COMMENT;
495 }
496 "/"{splice}"/" {
497 STRING_GROW;
498 context_state = YY_START;
499 BEGIN SC_LINE_COMMENT;
500 }
501 }
502
503
504 /*---------------------------------------------------------------.
505 | Scanning after %union etc., possibly followed by white space. |
506 | For %union only, allow arbitrary C code to appear before the |
507 | following brace, as an extension to POSIX. |
508 `---------------------------------------------------------------*/
509
510 <SC_PRE_CODE>
511 {
512 . {
513 bool valid = yytext[0] == '{' || token_type == PERCENT_UNION;
514 scanner_cursor.column -= mbsnwidth (yytext, yyleng, 0);
515 yyless (0);
516
517 if (valid)
518 {
519 braces_level = -1;
520 code_start = loc->start;
521 BEGIN SC_BRACED_CODE;
522 }
523 else
524 {
525 complain_at (*loc, _("missing `{' in `%s'"),
526 token_name (token_type));
527 obstack_sgrow (&obstack_for_string, "{}");
528 STRING_FINISH;
529 val->chars = last_string;
530 BEGIN INITIAL;
531 return token_type;
532 }
533 }
534 }
535
536
537 /*---------------------------------------------------------------.
538 | Scanning some code in braces (%union and actions). The initial |
539 | "{" is already eaten. |
540 `---------------------------------------------------------------*/
541
542 <SC_BRACED_CODE>
543 {
544 "{"|"<"{splice}"%" STRING_GROW; braces_level++;
545 "%"{splice}">" STRING_GROW; braces_level--;
546 "}" {
547 bool outer_brace = --braces_level < 0;
548
549 /* As an undocumented Bison extension, append `;' before the last
550 brace in braced code, so that the user code can omit trailing
551 `;'. But do not append `;' if emulating Yacc, since Yacc does
552 not append one.
553
554 FIXME: Bison should warn if a semicolon seems to be necessary
555 here, and should omit the semicolon if it seems unnecessary
556 (e.g., after ';', '{', or '}', each followed by comments or
557 white space). Such a warning shouldn't depend on --yacc; it
558 should depend on a new --pedantic option, which would cause
559 Bison to warn if it detects an extension to POSIX. --pedantic
560 should also diagnose other Bison extensions like %yacc.
561 Perhaps there should also be a GCC-style --pedantic-errors
562 option, so that such warnings are diagnosed as errors. */
563 if (outer_brace && token_type == BRACED_CODE && ! yacc_flag)
564 obstack_1grow (&obstack_for_string, ';');
565
566 obstack_1grow (&obstack_for_string, '}');
567
568 if (outer_brace)
569 {
570 STRING_FINISH;
571 rule_length++;
572 loc->start = code_start;
573 val->chars = last_string;
574 BEGIN INITIAL;
575 return token_type;
576 }
577 }
578
579 /* Tokenize `<<%' correctly (as `<<' `%') rather than incorrrectly
580 (as `<' `<%'). */
581 "<"{splice}"<" STRING_GROW;
582
583 "$"("<"{tag}">")?(-?[0-9]+|"$") handle_dollar (token_type, yytext, *loc);
584 "@"(-?[0-9]+|"$") handle_at (token_type, yytext, *loc);
585
586 <<EOF>> unexpected_end_of_file (code_start, "}");
587 }
588
589
590 /*--------------------------------------------------------------.
591 | Scanning some prologue: from "%{" (already scanned) to "%}". |
592 `--------------------------------------------------------------*/
593
594 <SC_PROLOGUE>
595 {
596 "%}" {
597 STRING_FINISH;
598 loc->start = code_start;
599 val->chars = last_string;
600 BEGIN INITIAL;
601 return PROLOGUE;
602 }
603
604 <<EOF>> unexpected_end_of_file (code_start, "%}");
605 }
606
607
608 /*---------------------------------------------------------------.
609 | Scanning the epilogue (everything after the second "%%", which |
610 | has already been eaten). |
611 `---------------------------------------------------------------*/
612
613 <SC_EPILOGUE>
614 {
615 <<EOF>> {
616 STRING_FINISH;
617 loc->start = code_start;
618 val->chars = last_string;
619 BEGIN INITIAL;
620 return EPILOGUE;
621 }
622 }
623
624
625 /*----------------------------------------------------------------.
626 | By default, grow the string obstack with the input, escaping M4 |
627 | quoting characters. |
628 `----------------------------------------------------------------*/
629
630 <SC_COMMENT,SC_LINE_COMMENT,SC_STRING,SC_CHARACTER,SC_BRACED_CODE,SC_PROLOGUE,SC_EPILOGUE>
631 {
632 \$ obstack_sgrow (&obstack_for_string, "$][");
633 \@ obstack_sgrow (&obstack_for_string, "@@");
634 \[ obstack_sgrow (&obstack_for_string, "@{");
635 \] obstack_sgrow (&obstack_for_string, "@}");
636 .|\n STRING_GROW;
637 }
638
639
640 %%
641
642 /* Set *LOC and adjust scanner cursor to account for token TOKEN of
643 size SIZE. */
644
645 static void
646 adjust_location (location *loc, char const *token, size_t size)
647 {
648 int line = scanner_cursor.line;
649 int column = scanner_cursor.column;
650 char const *p0 = token;
651 char const *p = token;
652 char const *lim = token + size;
653
654 loc->start = scanner_cursor;
655
656 for (p = token; p < lim; p++)
657 switch (*p)
658 {
659 case '\n':
660 line++;
661 column = 1;
662 p0 = p + 1;
663 break;
664
665 case '\t':
666 column += mbsnwidth (p0, p - p0, 0);
667 column += 8 - ((column - 1) & 7);
668 p0 = p + 1;
669 break;
670 }
671
672 scanner_cursor.line = line;
673 scanner_cursor.column = column + mbsnwidth (p0, p - p0, 0);
674
675 loc->end = scanner_cursor;
676 }
677
678
679 /* Read bytes from FP into buffer BUF of size SIZE. Return the
680 number of bytes read. Remove '\r' from input, treating \r\n
681 and isolated \r as \n. */
682
683 static size_t
684 no_cr_read (FILE *fp, char *buf, size_t size)
685 {
686 size_t bytes_read = fread (buf, 1, size, fp);
687 if (bytes_read)
688 {
689 char *w = memchr (buf, '\r', bytes_read);
690 if (w)
691 {
692 char const *r = ++w;
693 char const *lim = buf + bytes_read;
694
695 for (;;)
696 {
697 /* Found an '\r'. Treat it like '\n', but ignore any
698 '\n' that immediately follows. */
699 w[-1] = '\n';
700 if (r == lim)
701 {
702 int ch = getc (fp);
703 if (ch != '\n' && ungetc (ch, fp) != ch)
704 break;
705 }
706 else if (*r == '\n')
707 r++;
708
709 /* Copy until the next '\r'. */
710 do
711 {
712 if (r == lim)
713 return w - buf;
714 }
715 while ((*w++ = *r++) != '\r');
716 }
717
718 return w - buf;
719 }
720 }
721
722 return bytes_read;
723 }
724
725
726 /*------------------------------------------------------------------.
727 | TEXT is pointing to a wannabee semantic value (i.e., a `$'). |
728 | |
729 | Possible inputs: $[<TYPENAME>]($|integer) |
730 | |
731 | Output to OBSTACK_FOR_STRING a reference to this semantic value. |
732 `------------------------------------------------------------------*/
733
734 static inline bool
735 handle_action_dollar (char *text, location loc)
736 {
737 const char *type_name = NULL;
738 char *cp = text + 1;
739
740 if (! current_rule)
741 return false;
742
743 /* Get the type name if explicit. */
744 if (*cp == '<')
745 {
746 type_name = ++cp;
747 while (*cp != '>')
748 ++cp;
749 *cp = '\0';
750 ++cp;
751 }
752
753 if (*cp == '$')
754 {
755 if (!type_name)
756 type_name = symbol_list_n_type_name_get (current_rule, loc, 0);
757 if (!type_name && typed)
758 complain_at (loc, _("$$ of `%s' has no declared type"),
759 current_rule->sym->tag);
760 if (!type_name)
761 type_name = "";
762 obstack_fgrow1 (&obstack_for_string,
763 "]b4_lhs_value([%s])[", type_name);
764 }
765 else
766 {
767 long num;
768 set_errno (0);
769 num = strtol (cp, 0, 10);
770
771 if (INT_MIN <= num && num <= rule_length && ! get_errno ())
772 {
773 int n = num;
774 if (!type_name && n > 0)
775 type_name = symbol_list_n_type_name_get (current_rule, loc, n);
776 if (!type_name && typed)
777 complain_at (loc, _("$%d of `%s' has no declared type"),
778 n, current_rule->sym->tag);
779 if (!type_name)
780 type_name = "";
781 obstack_fgrow3 (&obstack_for_string,
782 "]b4_rhs_value([%d], [%d], [%s])[",
783 rule_length, n, type_name);
784 }
785 else
786 complain_at (loc, _("integer out of range: %s"), quote (text));
787 }
788
789 return true;
790 }
791
792
793 /*-----------------------------------------------------------------.
794 | Dispatch onto handle_action_dollar, or handle_destructor_dollar, |
795 | depending upon TOKEN_TYPE. |
796 `-----------------------------------------------------------------*/
797
798 static void
799 handle_dollar (int token_type, char *text, location loc)
800 {
801 switch (token_type)
802 {
803 case BRACED_CODE:
804 if (handle_action_dollar (text, loc))
805 return;
806 break;
807
808 case PERCENT_DESTRUCTOR:
809 case PERCENT_PRINTER:
810 if (text[1] == '$')
811 {
812 obstack_sgrow (&obstack_for_string, "]b4_dollar_dollar[");
813 return;
814 }
815 break;
816
817 default:
818 break;
819 }
820
821 complain_at (loc, _("invalid value: %s"), quote (text));
822 }
823
824
825 /*------------------------------------------------------.
826 | TEXT is a location token (i.e., a `@...'). Output to |
827 | OBSTACK_FOR_STRING a reference to this location. |
828 `------------------------------------------------------*/
829
830 static inline bool
831 handle_action_at (char *text, location loc)
832 {
833 char *cp = text + 1;
834 locations_flag = 1;
835
836 if (! current_rule)
837 return false;
838
839 if (*cp == '$')
840 obstack_sgrow (&obstack_for_string, "]b4_lhs_location[");
841 else
842 {
843 long num;
844 set_errno (0);
845 num = strtol (cp, 0, 10);
846
847 if (INT_MIN <= num && num <= rule_length && ! get_errno ())
848 {
849 int n = num;
850 obstack_fgrow2 (&obstack_for_string, "]b4_rhs_location([%d], [%d])[",
851 rule_length, n);
852 }
853 else
854 complain_at (loc, _("integer out of range: %s"), quote (text));
855 }
856
857 return true;
858 }
859
860
861 /*-------------------------------------------------------------------.
862 | Dispatch onto handle_action_at, or handle_destructor_at, depending |
863 | upon CODE_KIND. |
864 `-------------------------------------------------------------------*/
865
866 static void
867 handle_at (int token_type, char *text, location loc)
868 {
869 switch (token_type)
870 {
871 case BRACED_CODE:
872 handle_action_at (text, loc);
873 return;
874
875 case PERCENT_DESTRUCTOR:
876 case PERCENT_PRINTER:
877 if (text[1] == '$')
878 {
879 obstack_sgrow (&obstack_for_string, "]b4_at_dollar[");
880 return;
881 }
882 break;
883
884 default:
885 break;
886 }
887
888 complain_at (loc, _("invalid value: %s"), quote (text));
889 }
890
891
892 /*------------------------------------------------------------------.
893 | Convert universal character name UCN to a single-byte character, |
894 | and return that character. Return -1 if UCN does not correspond |
895 | to a single-byte character. |
896 `------------------------------------------------------------------*/
897
898 static int
899 convert_ucn_to_byte (char const *ucn)
900 {
901 unsigned long code = strtoul (ucn + 2, 0, 16);
902
903 /* FIXME: Currently we assume Unicode-compatible unibyte characters
904 on ASCII hosts (i.e., Latin-1 on hosts with 8-bit bytes). On
905 non-ASCII hosts we support only the portable C character set.
906 These limitations should be removed once we add support for
907 multibyte characters. */
908
909 if (UCHAR_MAX < code)
910 return -1;
911
912 #if ! ('$' == 0x24 && '@' == 0x40 && '`' == 0x60 && '~' == 0x7e)
913 {
914 /* A non-ASCII host. Use CODE to index into a table of the C
915 basic execution character set, which is guaranteed to exist on
916 all Standard C platforms. This table also includes '$', '@',
917 and '`', which are not in the basic execution character set but
918 which are unibyte characters on all the platforms that we know
919 about. */
920 static signed char const table[] =
921 {
922 '\0', -1, -1, -1, -1, -1, -1, '\a',
923 '\b', '\t', '\n', '\v', '\f', '\r', -1, -1,
924 -1, -1, -1, -1, -1, -1, -1, -1,
925 -1, -1, -1, -1, -1, -1, -1, -1,
926 ' ', '!', '"', '#', '$', '%', '&', '\'',
927 '(', ')', '*', '+', ',', '-', '.', '/',
928 '0', '1', '2', '3', '4', '5', '6', '7',
929 '8', '9', ':', ';', '<', '=', '>', '?',
930 '@', 'A', 'B', 'C', 'D', 'E', 'F', 'G',
931 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O',
932 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W',
933 'X', 'Y', 'Z', '[', '\\', ']', '^', '_',
934 '`', 'a', 'b', 'c', 'd', 'e', 'f', 'g',
935 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o',
936 'p', 'q', 'r', 's', 't', 'u', 'v', 'w',
937 'x', 'y', 'z', '{', '|', '}', '~'
938 };
939
940 code = code < sizeof table ? table[code] : -1;
941 }
942 #endif
943
944 return code;
945 }
946
947
948 /*----------------------------------------------------------------.
949 | Handle `#line INT "FILE"'. ARGS has already skipped `#line '. |
950 `----------------------------------------------------------------*/
951
952 static void
953 handle_syncline (char *args)
954 {
955 int lineno = strtol (args, &args, 10);
956 const char *file = NULL;
957 file = strchr (args, '"') + 1;
958 *strchr (file, '"') = 0;
959 scanner_cursor.file = current_file = xstrdup (file);
960 scanner_cursor.line = lineno;
961 scanner_cursor.column = 1;
962 }
963
964
965 /*------------------------------------------------------------------------.
966 | Report an unexpected EOF in a token or comment starting at START. |
967 | An end of file was encountered and the expected TOKEN_END was missing. |
968 | After reporting the problem, pretend that TOKEN_END was found. |
969 `------------------------------------------------------------------------*/
970
971 static void
972 unexpected_end_of_file (boundary start, char const *token_end)
973 {
974 size_t i = strlen (token_end);
975
976 location loc;
977 loc.start = start;
978 loc.end = scanner_cursor;
979 complain_at (loc, _("missing `%s' at end of file"), token_end);
980
981 /* Adjust scanner cursor so that any later message does not count
982 the characters about to be inserted. */
983 scanner_cursor.column -= i;
984
985 while (i != 0)
986 unput (token_end[--i]);
987 }
988
989
990 /*-------------------------.
991 | Initialize the scanner. |
992 `-------------------------*/
993
994 void
995 scanner_initialize (void)
996 {
997 obstack_init (&obstack_for_string);
998 }
999
1000
1001 /*-----------------------------------------------.
1002 | Free all the memory allocated to the scanner. |
1003 `-----------------------------------------------*/
1004
1005 void
1006 scanner_free (void)
1007 {
1008 obstack_free (&obstack_for_string, 0);
1009 /* Reclaim Flex's buffers. */
1010 yy_delete_buffer (YY_CURRENT_BUFFER);
1011 }