1 /* Bison Grammar Scanner -*- C -*-
3 Copyright (C) 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
5 This file is part of Bison, the GNU Compiler Compiler.
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.
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.
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., 51 Franklin Street, Fifth Floor, Boston, MA
23 %option debug nodefault nounput noyywrap never-interactive
24 %option prefix="gram_" outfile="lex.yy.c"
27 /* Work around a bug in flex 2.5.31. See Debian bug 333231
28 <http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=333231>. */
32 #define FLEX_PREFIX(Id) gram_ ## Id
33 #include "flex-scanner.h"
45 #include "scan-gram.h"
47 #define YY_DECL GRAM_LEX_DECL
49 #define YY_USER_INIT \
50 code_start = scanner_cursor = loc->start; \
52 /* Location of scanner cursor. */
53 static boundary scanner_cursor;
55 #define YY_USER_ACTION location_compute (loc, &scanner_cursor, yytext, yyleng);
57 static size_t no_cr_read (FILE *, char *, size_t);
58 #define YY_INPUT(buf, result, size) ((result) = no_cr_read (yyin, buf, size))
60 /* A string representing the most recently saved token. */
64 gram_scanner_last_string_free (void)
69 static void handle_syncline (char *, location);
70 static unsigned long int scan_integer (char const *p, int base, location loc);
71 static int convert_ucn_to_byte (char const *hex_text);
72 static void unexpected_eof (boundary, char const *);
73 static void unexpected_newline (boundary, char const *);
76 /* A C-like comment in directives/rules. */
78 /* Strings and characters in directives/rules. */
79 %x SC_ESCAPED_STRING SC_ESCAPED_CHARACTER
80 /* A identifier was just read in directives/rules. Special state
81 to capture the sequence `identifier :'. */
82 %x SC_AFTER_IDENTIFIER
84 /* Three types of user code:
85 - prologue (code between `%{' `%}' in the first section, before %%);
86 - actions, printers, union, etc, (between braced in the middle section);
87 - epilogue (everything after the second %%). */
88 %x SC_PROLOGUE SC_BRACED_CODE SC_EPILOGUE
89 /* C and C++ comments in code. */
90 %x SC_COMMENT SC_LINE_COMMENT
91 /* Strings and characters in code. */
92 %x SC_STRING SC_CHARACTER
94 letter [.abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ_]
95 id {letter}({letter}|[0-9])*
96 directive %{letter}({letter}|[0-9]|-)*
99 /* POSIX says that a tag must be both an id and a C union member, but
100 historically almost any character is allowed in a tag. We disallow
101 NUL and newline, as this simplifies our implementation. */
104 /* Zero or more instances of backslash-newline. Following GCC, allow
105 white space between the backslash and the newline. */
106 splice (\\[ \f\t\v]*\n)*
110 /* Nesting level of the current code in braces. */
111 int braces_level IF_LINT (= 0);
113 /* Parent context state, when applicable. */
114 int context_state IF_LINT (= 0);
116 /* Location of most recent identifier, when applicable. */
117 location id_loc IF_LINT (= empty_location);
119 /* Where containing code started, when applicable. Its initial
120 value is relevant only when yylex is invoked in the SC_EPILOGUE
122 boundary code_start = scanner_cursor;
124 /* Where containing comment or string or character literal started,
126 boundary token_start IF_LINT (= scanner_cursor);
130 /*-----------------------.
131 | Scanning white space. |
132 `-----------------------*/
134 <INITIAL,SC_AFTER_IDENTIFIER>
136 /* Comments and white space. */
137 "," warn_at (*loc, _("stray `,' treated as white space"));
141 token_start = loc->start;
142 context_state = YY_START;
143 BEGIN SC_YACC_COMMENT;
146 /* #line directives are not documented, and may be withdrawn or
147 modified in future versions of Bison. */
148 ^"#line "{int}" \"".*"\"\n" {
149 handle_syncline (yytext + sizeof "#line " - 1, *loc);
154 /*----------------------------.
155 | Scanning Bison directives. |
156 `----------------------------*/
159 "%after-header" return PERCENT_AFTER_HEADER;
160 "%before-header" return PERCENT_BEFORE_HEADER;
161 "%binary" return PERCENT_NONASSOC;
162 "%debug" return PERCENT_DEBUG;
163 "%default"[-_]"prec" return PERCENT_DEFAULT_PREC;
164 "%define" return PERCENT_DEFINE;
165 "%defines" return PERCENT_DEFINES;
166 "%destructor" return PERCENT_DESTRUCTOR;
167 "%dprec" return PERCENT_DPREC;
168 "%end-header" return PERCENT_END_HEADER;
169 "%error"[-_]"verbose" return PERCENT_ERROR_VERBOSE;
170 "%expect" return PERCENT_EXPECT;
171 "%expect"[-_]"rr" return PERCENT_EXPECT_RR;
172 "%file-prefix" return PERCENT_FILE_PREFIX;
173 "%fixed"[-_]"output"[-_]"files" return PERCENT_YACC;
174 "%initial-action" return PERCENT_INITIAL_ACTION;
175 "%glr-parser" return PERCENT_GLR_PARSER;
176 "%left" return PERCENT_LEFT;
177 "%lex-param" return PERCENT_LEX_PARAM;
178 "%locations" return PERCENT_LOCATIONS;
179 "%merge" return PERCENT_MERGE;
180 "%name"[-_]"prefix" return PERCENT_NAME_PREFIX;
181 "%no"[-_]"default"[-_]"prec" return PERCENT_NO_DEFAULT_PREC;
182 "%no"[-_]"lines" return PERCENT_NO_LINES;
183 "%nonassoc" return PERCENT_NONASSOC;
184 "%nondeterministic-parser" return PERCENT_NONDETERMINISTIC_PARSER;
185 "%nterm" return PERCENT_NTERM;
186 "%output" return PERCENT_OUTPUT;
187 "%parse-param" return PERCENT_PARSE_PARAM;
188 "%prec" return PERCENT_PREC;
189 "%printer" return PERCENT_PRINTER;
190 "%pure"[-_]"parser" return PERCENT_PURE_PARSER;
191 "%require" return PERCENT_REQUIRE;
192 "%right" return PERCENT_RIGHT;
193 "%skeleton" return PERCENT_SKELETON;
194 "%start" return PERCENT_START;
195 "%start-header" return PERCENT_START_HEADER;
196 "%symbol-default" return PERCENT_SYMBOL_DEFAULT;
197 "%term" return PERCENT_TOKEN;
198 "%token" return PERCENT_TOKEN;
199 "%token"[-_]"table" return PERCENT_TOKEN_TABLE;
200 "%type" return PERCENT_TYPE;
201 "%union" return PERCENT_UNION;
202 "%verbose" return PERCENT_VERBOSE;
203 "%yacc" return PERCENT_YACC;
206 complain_at (*loc, _("invalid directive: %s"), quote (yytext));
211 ";" return SEMICOLON;
214 val->uniqstr = uniqstr_new (yytext);
216 BEGIN SC_AFTER_IDENTIFIER;
220 val->integer = scan_integer (yytext, 10, *loc);
223 0[xX][0-9abcdefABCDEF]+ {
224 val->integer = scan_integer (yytext, 16, *loc);
228 /* Characters. We don't check there is only one. */
229 "'" STRING_GROW; token_start = loc->start; BEGIN SC_ESCAPED_CHARACTER;
232 "\"" token_start = loc->start; BEGIN SC_ESCAPED_STRING;
235 "%{" code_start = loc->start; BEGIN SC_PROLOGUE;
237 /* Code in between braces. */
241 code_start = loc->start;
242 BEGIN SC_BRACED_CODE;
247 obstack_grow (&obstack_for_string, yytext + 1, yyleng - 2);
249 val->uniqstr = uniqstr_new (last_string);
255 static int percent_percent_count;
256 if (++percent_percent_count == 2)
258 return PERCENT_PERCENT;
262 complain_at (*loc, _("invalid character: %s"), quote (yytext));
266 loc->start = loc->end = scanner_cursor;
272 /*-----------------------------------------------------------------.
273 | Scanning after an identifier, checking whether a colon is next. |
274 `-----------------------------------------------------------------*/
276 <SC_AFTER_IDENTIFIER>
284 scanner_cursor.column -= mbsnwidth (yytext, yyleng, 0);
298 /*---------------------------------------------------------------.
299 | Scanning a Yacc comment. The initial `/ *' is already eaten. |
300 `---------------------------------------------------------------*/
304 "*/" BEGIN context_state;
306 <<EOF>> unexpected_eof (token_start, "*/"); BEGIN context_state;
310 /*------------------------------------------------------------.
311 | Scanning a C comment. The initial `/ *' is already eaten. |
312 `------------------------------------------------------------*/
316 "*"{splice}"/" STRING_GROW; BEGIN context_state;
317 <<EOF>> unexpected_eof (token_start, "*/"); BEGIN context_state;
321 /*--------------------------------------------------------------.
322 | Scanning a line comment. The initial `//' is already eaten. |
323 `--------------------------------------------------------------*/
327 "\n" STRING_GROW; BEGIN context_state;
328 {splice} STRING_GROW;
329 <<EOF>> BEGIN context_state;
333 /*------------------------------------------------.
334 | Scanning a Bison string, including its escapes. |
335 | The initial quote is already eaten. |
336 `------------------------------------------------*/
341 if (yytext[0] == '\n')
342 unexpected_newline (token_start, "\"");
344 loc->start = token_start;
345 val->chars = last_string;
350 unexpected_eof (token_start, "\"");
352 loc->start = token_start;
353 val->chars = last_string;
359 /*----------------------------------------------------------.
360 | Scanning a Bison character literal, decoding its escapes. |
361 | The initial quote is already eaten. |
362 `----------------------------------------------------------*/
364 <SC_ESCAPED_CHARACTER>
367 if (yytext[0] == '\n')
368 unexpected_newline (token_start, "'");
371 loc->start = token_start;
372 val->character = last_string[1];
378 unexpected_eof (token_start, "'");
380 loc->start = token_start;
381 if (strlen(last_string) > 1)
382 val->character = last_string[1];
384 val->character = last_string[0];
391 <SC_ESCAPED_CHARACTER,SC_ESCAPED_STRING>
393 \0 complain_at (*loc, _("invalid null character"));
397 /*----------------------------.
398 | Decode escaped characters. |
399 `----------------------------*/
401 <SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>
404 unsigned long int c = strtoul (yytext + 1, NULL, 8);
406 complain_at (*loc, _("invalid escape sequence: %s"), quote (yytext));
408 complain_at (*loc, _("invalid null character: %s"), quote (yytext));
410 obstack_1grow (&obstack_for_string, c);
413 \\x[0-9abcdefABCDEF]+ {
414 verify (UCHAR_MAX < ULONG_MAX);
415 unsigned long int c = strtoul (yytext + 2, NULL, 16);
417 complain_at (*loc, _("invalid escape sequence: %s"), quote (yytext));
419 complain_at (*loc, _("invalid null character: %s"), quote (yytext));
421 obstack_1grow (&obstack_for_string, c);
424 \\a obstack_1grow (&obstack_for_string, '\a');
425 \\b obstack_1grow (&obstack_for_string, '\b');
426 \\f obstack_1grow (&obstack_for_string, '\f');
427 \\n obstack_1grow (&obstack_for_string, '\n');
428 \\r obstack_1grow (&obstack_for_string, '\r');
429 \\t obstack_1grow (&obstack_for_string, '\t');
430 \\v obstack_1grow (&obstack_for_string, '\v');
432 /* \\[\"\'?\\] would be shorter, but it confuses xgettext. */
433 \\("\""|"'"|"?"|"\\") obstack_1grow (&obstack_for_string, yytext[1]);
435 \\(u|U[0-9abcdefABCDEF]{4})[0-9abcdefABCDEF]{4} {
436 int c = convert_ucn_to_byte (yytext);
438 complain_at (*loc, _("invalid escape sequence: %s"), quote (yytext));
440 complain_at (*loc, _("invalid null character: %s"), quote (yytext));
442 obstack_1grow (&obstack_for_string, c);
445 complain_at (*loc, _("unrecognized escape sequence: %s"), quote (yytext));
450 /*--------------------------------------------.
451 | Scanning user-code characters and strings. |
452 `--------------------------------------------*/
454 <SC_CHARACTER,SC_STRING>
456 {splice}|\\{splice}[^\n\[\]] STRING_GROW;
461 "'" STRING_GROW; BEGIN context_state;
462 \n unexpected_newline (token_start, "'"); BEGIN context_state;
463 <<EOF>> unexpected_eof (token_start, "'"); BEGIN context_state;
468 "\"" STRING_GROW; BEGIN context_state;
469 \n unexpected_newline (token_start, "\""); BEGIN context_state;
470 <<EOF>> unexpected_eof (token_start, "\""); BEGIN context_state;
474 /*---------------------------------------------------.
475 | Strings, comments etc. can be found in user code. |
476 `---------------------------------------------------*/
478 <SC_BRACED_CODE,SC_PROLOGUE,SC_EPILOGUE>
482 context_state = YY_START;
483 token_start = loc->start;
488 context_state = YY_START;
489 token_start = loc->start;
494 context_state = YY_START;
495 token_start = loc->start;
500 context_state = YY_START;
501 BEGIN SC_LINE_COMMENT;
507 /*-----------------------------------------------------------.
508 | Scanning some code in braces (actions). The initial "{" is |
510 `-----------------------------------------------------------*/
514 "{"|"<"{splice}"%" STRING_GROW; braces_level++;
515 "%"{splice}">" STRING_GROW; braces_level--;
517 obstack_1grow (&obstack_for_string, '}');
520 if (braces_level < 0)
523 loc->start = code_start;
524 val->chars = last_string;
530 /* Tokenize `<<%' correctly (as `<<' `%') rather than incorrrectly
532 "<"{splice}"<" STRING_GROW;
535 unexpected_eof (code_start, "}");
537 loc->start = code_start;
538 val->chars = last_string;
545 /*--------------------------------------------------------------.
546 | Scanning some prologue: from "%{" (already scanned) to "%}". |
547 `--------------------------------------------------------------*/
553 loc->start = code_start;
554 val->chars = last_string;
560 unexpected_eof (code_start, "%}");
562 loc->start = code_start;
563 val->chars = last_string;
570 /*---------------------------------------------------------------.
571 | Scanning the epilogue (everything after the second "%%", which |
572 | has already been eaten). |
573 `---------------------------------------------------------------*/
579 loc->start = code_start;
580 val->chars = last_string;
587 /*-----------------------------------------------------.
588 | By default, grow the string obstack with the input. |
589 `-----------------------------------------------------*/
591 <SC_COMMENT,SC_LINE_COMMENT,SC_BRACED_CODE,SC_PROLOGUE,SC_EPILOGUE,SC_STRING,SC_CHARACTER,SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>. |
592 <SC_COMMENT,SC_LINE_COMMENT,SC_BRACED_CODE,SC_PROLOGUE,SC_EPILOGUE>\n STRING_GROW;
596 /* Read bytes from FP into buffer BUF of size SIZE. Return the
597 number of bytes read. Remove '\r' from input, treating \r\n
598 and isolated \r as \n. */
601 no_cr_read (FILE *fp, char *buf, size_t size)
603 size_t bytes_read = fread (buf, 1, size, fp);
606 char *w = memchr (buf, '\r', bytes_read);
610 char const *lim = buf + bytes_read;
614 /* Found an '\r'. Treat it like '\n', but ignore any
615 '\n' that immediately follows. */
620 if (ch != '\n' && ungetc (ch, fp) != ch)
626 /* Copy until the next '\r'. */
632 while ((*w++ = *r++) != '\r');
644 /*------------------------------------------------------.
645 | Scan NUMBER for a base-BASE integer at location LOC. |
646 `------------------------------------------------------*/
648 static unsigned long int
649 scan_integer (char const *number, int base, location loc)
651 verify (INT_MAX < ULONG_MAX);
652 unsigned long int num = strtoul (number, NULL, base);
656 complain_at (loc, _("integer out of range: %s"), quote (number));
664 /*------------------------------------------------------------------.
665 | Convert universal character name UCN to a single-byte character, |
666 | and return that character. Return -1 if UCN does not correspond |
667 | to a single-byte character. |
668 `------------------------------------------------------------------*/
671 convert_ucn_to_byte (char const *ucn)
673 verify (UCHAR_MAX <= INT_MAX);
674 unsigned long int code = strtoul (ucn + 2, NULL, 16);
676 /* FIXME: Currently we assume Unicode-compatible unibyte characters
677 on ASCII hosts (i.e., Latin-1 on hosts with 8-bit bytes). On
678 non-ASCII hosts we support only the portable C character set.
679 These limitations should be removed once we add support for
680 multibyte characters. */
682 if (UCHAR_MAX < code)
685 #if ! ('$' == 0x24 && '@' == 0x40 && '`' == 0x60 && '~' == 0x7e)
687 /* A non-ASCII host. Use CODE to index into a table of the C
688 basic execution character set, which is guaranteed to exist on
689 all Standard C platforms. This table also includes '$', '@',
690 and '`', which are not in the basic execution character set but
691 which are unibyte characters on all the platforms that we know
693 static signed char const table[] =
695 '\0', -1, -1, -1, -1, -1, -1, '\a',
696 '\b', '\t', '\n', '\v', '\f', '\r', -1, -1,
697 -1, -1, -1, -1, -1, -1, -1, -1,
698 -1, -1, -1, -1, -1, -1, -1, -1,
699 ' ', '!', '"', '#', '$', '%', '&', '\'',
700 '(', ')', '*', '+', ',', '-', '.', '/',
701 '0', '1', '2', '3', '4', '5', '6', '7',
702 '8', '9', ':', ';', '<', '=', '>', '?',
703 '@', 'A', 'B', 'C', 'D', 'E', 'F', 'G',
704 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O',
705 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W',
706 'X', 'Y', 'Z', '[', '\\', ']', '^', '_',
707 '`', 'a', 'b', 'c', 'd', 'e', 'f', 'g',
708 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o',
709 'p', 'q', 'r', 's', 't', 'u', 'v', 'w',
710 'x', 'y', 'z', '{', '|', '}', '~'
713 code = code < sizeof table ? table[code] : -1;
721 /*----------------------------------------------------------------.
722 | Handle `#line INT "FILE"'. ARGS has already skipped `#line '. |
723 `----------------------------------------------------------------*/
726 handle_syncline (char *args, location loc)
729 unsigned long int lineno = strtoul (args, &after_num, 10);
730 char *file = strchr (after_num, '"') + 1;
731 *strchr (file, '"') = '\0';
732 if (INT_MAX <= lineno)
734 warn_at (loc, _("line number overflow"));
737 current_file = uniqstr_new (file);
738 boundary_set (&scanner_cursor, current_file, lineno, 1);
742 /*----------------------------------------------------------------.
743 | For a token or comment starting at START, report message MSGID, |
744 | which should say that an end marker was found before |
745 | the expected TOKEN_END. |
746 `----------------------------------------------------------------*/
749 unexpected_end (boundary start, char const *msgid, char const *token_end)
753 loc.end = scanner_cursor;
754 complain_at (loc, _(msgid), token_end);
758 /*------------------------------------------------------------------------.
759 | Report an unexpected EOF in a token or comment starting at START. |
760 | An end of file was encountered and the expected TOKEN_END was missing. |
761 `------------------------------------------------------------------------*/
764 unexpected_eof (boundary start, char const *token_end)
766 unexpected_end (start, N_("missing `%s' at end of file"), token_end);
770 /*----------------------------------------.
771 | Likewise, but for unexpected newlines. |
772 `----------------------------------------*/
775 unexpected_newline (boundary start, char const *token_end)
777 unexpected_end (start, N_("missing `%s' at end of line"), token_end);
781 /*-------------------------.
782 | Initialize the scanner. |
783 `-------------------------*/
786 gram_scanner_initialize (void)
788 obstack_init (&obstack_for_string);
792 /*-----------------------------------------------.
793 | Free all the memory allocated to the scanner. |
794 `-----------------------------------------------*/
797 gram_scanner_free (void)
799 obstack_free (&obstack_for_string, 0);
800 /* Reclaim Flex's buffers. */
801 yy_delete_buffer (YY_CURRENT_BUFFER);