1 /* Bison Grammar Scanner -*- C -*-
3 Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007 Free Software Foundation,
6 This file is part of Bison, the GNU Compiler Compiler.
8 This program is free software: you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation, either version 3 of the License, or
11 (at your option) any later version.
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with this program. If not, see <http://www.gnu.org/licenses/>. */
21 %option debug nodefault nounput noyywrap never-interactive
22 %option prefix="gram_" outfile="lex.yy.c"
25 /* Work around a bug in flex 2.5.31. See Debian bug 333231
26 <http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=333231>. */
30 #define FLEX_PREFIX(Id) gram_ ## Id
31 #include "flex-scanner.h"
43 #include "scan-gram.h"
45 #define YY_DECL GRAM_LEX_DECL
47 #define YY_USER_INIT \
48 code_start = scanner_cursor = loc->start; \
50 /* Location of scanner cursor. */
51 static boundary scanner_cursor;
53 #define YY_USER_ACTION location_compute (loc, &scanner_cursor, yytext, yyleng);
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))
58 /* A string representing the most recently saved token. */
59 static char *last_string;
62 gram_scanner_last_string_free (void)
67 static void handle_syncline (char *, location);
68 static unsigned long int scan_integer (char const *p, int base, location loc);
69 static int convert_ucn_to_byte (char const *hex_text);
70 static void unexpected_eof (boundary, char const *);
71 static void unexpected_newline (boundary, char const *);
74 /* A C-like comment in directives/rules. */
76 /* Strings and characters in directives/rules. */
77 %x SC_ESCAPED_STRING SC_ESCAPED_CHARACTER
78 /* A identifier was just read in directives/rules. Special state
79 to capture the sequence `identifier :'. */
80 %x SC_AFTER_IDENTIFIER
82 /* Three types of user code:
83 - prologue (code between `%{' `%}' in the first section, before %%);
84 - actions, printers, union, etc, (between braced in the middle section);
85 - epilogue (everything after the second %%). */
86 %x SC_PROLOGUE SC_BRACED_CODE SC_EPILOGUE
87 /* C and C++ comments in code. */
88 %x SC_COMMENT SC_LINE_COMMENT
89 /* Strings and characters in code. */
90 %x SC_STRING SC_CHARACTER
92 letter [.abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ_]
93 id {letter}({letter}|[0-9])*
94 directive %{letter}({letter}|[0-9]|-)*
97 /* POSIX says that a tag must be both an id and a C union member, but
98 historically almost any character is allowed in a tag. We disallow
99 NUL and newline, as this simplifies our implementation. */
102 /* Zero or more instances of backslash-newline. Following GCC, allow
103 white space between the backslash and the newline. */
104 splice (\\[ \f\t\v]*\n)*
108 /* Nesting level of the current code in braces. */
109 int braces_level IF_LINT (= 0);
111 /* Parent context state, when applicable. */
112 int context_state IF_LINT (= 0);
114 /* Location of most recent identifier, when applicable. */
115 location id_loc IF_LINT (= empty_location);
117 /* Where containing code started, when applicable. Its initial
118 value is relevant only when yylex is invoked in the SC_EPILOGUE
120 boundary code_start = scanner_cursor;
122 /* Where containing comment or string or character literal started,
124 boundary token_start IF_LINT (= scanner_cursor);
128 /*-----------------------.
129 | Scanning white space. |
130 `-----------------------*/
132 <INITIAL,SC_AFTER_IDENTIFIER>
134 /* Comments and white space. */
135 "," warn_at (*loc, _("stray `,' treated as white space"));
139 token_start = loc->start;
140 context_state = YY_START;
141 BEGIN SC_YACC_COMMENT;
144 /* #line directives are not documented, and may be withdrawn or
145 modified in future versions of Bison. */
146 ^"#line "{int}" \"".*"\"\n" {
147 handle_syncline (yytext + sizeof "#line " - 1, *loc);
152 /*----------------------------.
153 | Scanning Bison directives. |
154 `----------------------------*/
157 "%binary" return PERCENT_NONASSOC;
158 "%code" return PERCENT_CODE;
159 "%debug" return PERCENT_DEBUG;
160 "%default"[-_]"prec" return PERCENT_DEFAULT_PREC;
161 "%define" return PERCENT_DEFINE;
162 "%defines" return PERCENT_DEFINES;
163 "%destructor" return PERCENT_DESTRUCTOR;
164 "%dprec" return PERCENT_DPREC;
165 "%error"[-_]"verbose" return PERCENT_ERROR_VERBOSE;
166 "%expect" return PERCENT_EXPECT;
167 "%expect"[-_]"rr" return PERCENT_EXPECT_RR;
168 "%file-prefix" return PERCENT_FILE_PREFIX;
169 "%fixed"[-_]"output"[-_]"files" return PERCENT_YACC;
170 "%initial-action" return PERCENT_INITIAL_ACTION;
171 "%glr-parser" return PERCENT_GLR_PARSER;
172 "%language" return PERCENT_LANGUAGE;
173 "%left" return PERCENT_LEFT;
174 "%lex-param" return PERCENT_LEX_PARAM;
175 "%locations" return PERCENT_LOCATIONS;
176 "%merge" return PERCENT_MERGE;
177 "%name"[-_]"prefix" return PERCENT_NAME_PREFIX;
178 "%no"[-_]"default"[-_]"prec" return PERCENT_NO_DEFAULT_PREC;
179 "%no"[-_]"lines" return PERCENT_NO_LINES;
180 "%nonassoc" return PERCENT_NONASSOC;
181 "%nondeterministic-parser" return PERCENT_NONDETERMINISTIC_PARSER;
182 "%nterm" return PERCENT_NTERM;
183 "%output" return PERCENT_OUTPUT;
184 "%parse-param" return PERCENT_PARSE_PARAM;
185 "%prec" return PERCENT_PREC;
186 "%printer" return PERCENT_PRINTER;
187 "%pure"[-_]"parser" return PERCENT_PURE_PARSER;
188 "%require" return PERCENT_REQUIRE;
189 "%right" return PERCENT_RIGHT;
190 "%skeleton" return PERCENT_SKELETON;
191 "%start" return PERCENT_START;
192 "%term" return PERCENT_TOKEN;
193 "%token" return PERCENT_TOKEN;
194 "%token"[-_]"table" return PERCENT_TOKEN_TABLE;
195 "%type" return PERCENT_TYPE;
196 "%union" return PERCENT_UNION;
197 "%verbose" return PERCENT_VERBOSE;
198 "%yacc" return PERCENT_YACC;
201 complain_at (*loc, _("invalid directive: %s"), quote (yytext));
206 ";" return SEMICOLON;
207 "<*>" return TYPE_TAG_ANY;
208 "<>" return TYPE_TAG_NONE;
211 val->uniqstr = uniqstr_new (yytext);
213 BEGIN SC_AFTER_IDENTIFIER;
217 val->integer = scan_integer (yytext, 10, *loc);
220 0[xX][0-9abcdefABCDEF]+ {
221 val->integer = scan_integer (yytext, 16, *loc);
225 /* Characters. We don't check there is only one. */
226 "'" STRING_GROW; token_start = loc->start; BEGIN SC_ESCAPED_CHARACTER;
229 "\"" token_start = loc->start; BEGIN SC_ESCAPED_STRING;
232 "%{" code_start = loc->start; BEGIN SC_PROLOGUE;
234 /* Code in between braces. */
238 code_start = loc->start;
239 BEGIN SC_BRACED_CODE;
244 obstack_grow (&obstack_for_string, yytext + 1, yyleng - 2);
246 val->uniqstr = uniqstr_new (last_string);
252 static int percent_percent_count;
253 if (++percent_percent_count == 2)
255 return PERCENT_PERCENT;
259 complain_at (*loc, _("invalid character: %s"), quote (yytext));
263 loc->start = loc->end = scanner_cursor;
269 /*-----------------------------------------------------------------.
270 | Scanning after an identifier, checking whether a colon is next. |
271 `-----------------------------------------------------------------*/
273 <SC_AFTER_IDENTIFIER>
281 scanner_cursor.column -= mbsnwidth (yytext, yyleng, 0);
295 /*---------------------------------------------------------------.
296 | Scanning a Yacc comment. The initial `/ *' is already eaten. |
297 `---------------------------------------------------------------*/
301 "*/" BEGIN context_state;
303 <<EOF>> unexpected_eof (token_start, "*/"); BEGIN context_state;
307 /*------------------------------------------------------------.
308 | Scanning a C comment. The initial `/ *' is already eaten. |
309 `------------------------------------------------------------*/
313 "*"{splice}"/" STRING_GROW; BEGIN context_state;
314 <<EOF>> unexpected_eof (token_start, "*/"); BEGIN context_state;
318 /*--------------------------------------------------------------.
319 | Scanning a line comment. The initial `//' is already eaten. |
320 `--------------------------------------------------------------*/
324 "\n" STRING_GROW; BEGIN context_state;
325 {splice} STRING_GROW;
326 <<EOF>> BEGIN context_state;
330 /*------------------------------------------------.
331 | Scanning a Bison string, including its escapes. |
332 | The initial quote is already eaten. |
333 `------------------------------------------------*/
338 if (yytext[0] == '\n')
339 unexpected_newline (token_start, "\"");
341 loc->start = token_start;
342 val->chars = last_string;
347 unexpected_eof (token_start, "\"");
349 loc->start = token_start;
350 val->chars = last_string;
356 /*----------------------------------------------------------.
357 | Scanning a Bison character literal, decoding its escapes. |
358 | The initial quote is already eaten. |
359 `----------------------------------------------------------*/
361 <SC_ESCAPED_CHARACTER>
364 if (yytext[0] == '\n')
365 unexpected_newline (token_start, "'");
368 loc->start = token_start;
369 val->character = last_string[1];
375 unexpected_eof (token_start, "'");
377 loc->start = token_start;
378 if (strlen(last_string) > 1)
379 val->character = last_string[1];
381 val->character = last_string[0];
388 <SC_ESCAPED_CHARACTER,SC_ESCAPED_STRING>
390 \0 complain_at (*loc, _("invalid null character"));
394 /*----------------------------.
395 | Decode escaped characters. |
396 `----------------------------*/
398 <SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>
401 unsigned long int c = strtoul (yytext + 1, NULL, 8);
403 complain_at (*loc, _("invalid escape sequence: %s"), quote (yytext));
405 complain_at (*loc, _("invalid null character: %s"), quote (yytext));
407 obstack_1grow (&obstack_for_string, c);
410 \\x[0-9abcdefABCDEF]+ {
411 verify (UCHAR_MAX < ULONG_MAX);
412 unsigned long int c = strtoul (yytext + 2, NULL, 16);
414 complain_at (*loc, _("invalid escape sequence: %s"), quote (yytext));
416 complain_at (*loc, _("invalid null character: %s"), quote (yytext));
418 obstack_1grow (&obstack_for_string, c);
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');
429 /* \\[\"\'?\\] would be shorter, but it confuses xgettext. */
430 \\("\""|"'"|"?"|"\\") obstack_1grow (&obstack_for_string, yytext[1]);
432 \\(u|U[0-9abcdefABCDEF]{4})[0-9abcdefABCDEF]{4} {
433 int c = convert_ucn_to_byte (yytext);
435 complain_at (*loc, _("invalid escape sequence: %s"), quote (yytext));
437 complain_at (*loc, _("invalid null character: %s"), quote (yytext));
439 obstack_1grow (&obstack_for_string, c);
442 complain_at (*loc, _("unrecognized escape sequence: %s"), quote (yytext));
447 /*--------------------------------------------.
448 | Scanning user-code characters and strings. |
449 `--------------------------------------------*/
451 <SC_CHARACTER,SC_STRING>
453 {splice}|\\{splice}[^\n\[\]] STRING_GROW;
458 "'" STRING_GROW; BEGIN context_state;
459 \n unexpected_newline (token_start, "'"); BEGIN context_state;
460 <<EOF>> unexpected_eof (token_start, "'"); BEGIN context_state;
465 "\"" STRING_GROW; BEGIN context_state;
466 \n unexpected_newline (token_start, "\""); BEGIN context_state;
467 <<EOF>> unexpected_eof (token_start, "\""); BEGIN context_state;
471 /*---------------------------------------------------.
472 | Strings, comments etc. can be found in user code. |
473 `---------------------------------------------------*/
475 <SC_BRACED_CODE,SC_PROLOGUE,SC_EPILOGUE>
479 context_state = YY_START;
480 token_start = loc->start;
485 context_state = YY_START;
486 token_start = loc->start;
491 context_state = YY_START;
492 token_start = loc->start;
497 context_state = YY_START;
498 BEGIN SC_LINE_COMMENT;
504 /*-----------------------------------------------------------.
505 | Scanning some code in braces (actions). The initial "{" is |
507 `-----------------------------------------------------------*/
511 "{"|"<"{splice}"%" STRING_GROW; braces_level++;
512 "%"{splice}">" STRING_GROW; braces_level--;
514 obstack_1grow (&obstack_for_string, '}');
517 if (braces_level < 0)
520 loc->start = code_start;
521 val->code = last_string;
527 /* Tokenize `<<%' correctly (as `<<' `%') rather than incorrrectly
529 "<"{splice}"<" STRING_GROW;
532 unexpected_eof (code_start, "}");
534 loc->start = code_start;
535 val->code = last_string;
542 /*--------------------------------------------------------------.
543 | Scanning some prologue: from "%{" (already scanned) to "%}". |
544 `--------------------------------------------------------------*/
550 loc->start = code_start;
551 val->chars = last_string;
557 unexpected_eof (code_start, "%}");
559 loc->start = code_start;
560 val->chars = last_string;
567 /*---------------------------------------------------------------.
568 | Scanning the epilogue (everything after the second "%%", which |
569 | has already been eaten). |
570 `---------------------------------------------------------------*/
576 loc->start = code_start;
577 val->chars = last_string;
584 /*-----------------------------------------------------.
585 | By default, grow the string obstack with the input. |
586 `-----------------------------------------------------*/
588 <SC_COMMENT,SC_LINE_COMMENT,SC_BRACED_CODE,SC_PROLOGUE,SC_EPILOGUE,SC_STRING,SC_CHARACTER,SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>. |
589 <SC_COMMENT,SC_LINE_COMMENT,SC_BRACED_CODE,SC_PROLOGUE,SC_EPILOGUE>\n STRING_GROW;
593 /* Read bytes from FP into buffer BUF of size SIZE. Return the
594 number of bytes read. Remove '\r' from input, treating \r\n
595 and isolated \r as \n. */
598 no_cr_read (FILE *fp, char *buf, size_t size)
600 size_t bytes_read = fread (buf, 1, size, fp);
603 char *w = memchr (buf, '\r', bytes_read);
607 char const *lim = buf + bytes_read;
611 /* Found an '\r'. Treat it like '\n', but ignore any
612 '\n' that immediately follows. */
617 if (ch != '\n' && ungetc (ch, fp) != ch)
623 /* Copy until the next '\r'. */
629 while ((*w++ = *r++) != '\r');
641 /*------------------------------------------------------.
642 | Scan NUMBER for a base-BASE integer at location LOC. |
643 `------------------------------------------------------*/
645 static unsigned long int
646 scan_integer (char const *number, int base, location loc)
648 verify (INT_MAX < ULONG_MAX);
649 unsigned long int num = strtoul (number, NULL, base);
653 complain_at (loc, _("integer out of range: %s"), quote (number));
661 /*------------------------------------------------------------------.
662 | Convert universal character name UCN to a single-byte character, |
663 | and return that character. Return -1 if UCN does not correspond |
664 | to a single-byte character. |
665 `------------------------------------------------------------------*/
668 convert_ucn_to_byte (char const *ucn)
670 verify (UCHAR_MAX <= INT_MAX);
671 unsigned long int code = strtoul (ucn + 2, NULL, 16);
673 /* FIXME: Currently we assume Unicode-compatible unibyte characters
674 on ASCII hosts (i.e., Latin-1 on hosts with 8-bit bytes). On
675 non-ASCII hosts we support only the portable C character set.
676 These limitations should be removed once we add support for
677 multibyte characters. */
679 if (UCHAR_MAX < code)
682 #if ! ('$' == 0x24 && '@' == 0x40 && '`' == 0x60 && '~' == 0x7e)
684 /* A non-ASCII host. Use CODE to index into a table of the C
685 basic execution character set, which is guaranteed to exist on
686 all Standard C platforms. This table also includes '$', '@',
687 and '`', which are not in the basic execution character set but
688 which are unibyte characters on all the platforms that we know
690 static signed char const table[] =
692 '\0', -1, -1, -1, -1, -1, -1, '\a',
693 '\b', '\t', '\n', '\v', '\f', '\r', -1, -1,
694 -1, -1, -1, -1, -1, -1, -1, -1,
695 -1, -1, -1, -1, -1, -1, -1, -1,
696 ' ', '!', '"', '#', '$', '%', '&', '\'',
697 '(', ')', '*', '+', ',', '-', '.', '/',
698 '0', '1', '2', '3', '4', '5', '6', '7',
699 '8', '9', ':', ';', '<', '=', '>', '?',
700 '@', 'A', 'B', 'C', 'D', 'E', 'F', 'G',
701 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O',
702 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W',
703 'X', 'Y', 'Z', '[', '\\', ']', '^', '_',
704 '`', 'a', 'b', 'c', 'd', 'e', 'f', 'g',
705 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o',
706 'p', 'q', 'r', 's', 't', 'u', 'v', 'w',
707 'x', 'y', 'z', '{', '|', '}', '~'
710 code = code < sizeof table ? table[code] : -1;
718 /*----------------------------------------------------------------.
719 | Handle `#line INT "FILE"'. ARGS has already skipped `#line '. |
720 `----------------------------------------------------------------*/
723 handle_syncline (char *args, location loc)
726 unsigned long int lineno = strtoul (args, &after_num, 10);
727 char *file = strchr (after_num, '"') + 1;
728 *strchr (file, '"') = '\0';
729 if (INT_MAX <= lineno)
731 warn_at (loc, _("line number overflow"));
734 current_file = uniqstr_new (file);
735 boundary_set (&scanner_cursor, current_file, lineno, 1);
739 /*----------------------------------------------------------------.
740 | For a token or comment starting at START, report message MSGID, |
741 | which should say that an end marker was found before |
742 | the expected TOKEN_END. |
743 `----------------------------------------------------------------*/
746 unexpected_end (boundary start, char const *msgid, char const *token_end)
750 loc.end = scanner_cursor;
751 complain_at (loc, _(msgid), token_end);
755 /*------------------------------------------------------------------------.
756 | Report an unexpected EOF in a token or comment starting at START. |
757 | An end of file was encountered and the expected TOKEN_END was missing. |
758 `------------------------------------------------------------------------*/
761 unexpected_eof (boundary start, char const *token_end)
763 unexpected_end (start, N_("missing `%s' at end of file"), token_end);
767 /*----------------------------------------.
768 | Likewise, but for unexpected newlines. |
769 `----------------------------------------*/
772 unexpected_newline (boundary start, char const *token_end)
774 unexpected_end (start, N_("missing `%s' at end of line"), token_end);
778 /*-------------------------.
779 | Initialize the scanner. |
780 `-------------------------*/
783 gram_scanner_initialize (void)
785 obstack_init (&obstack_for_string);
789 /*-----------------------------------------------.
790 | Free all the memory allocated to the scanner. |
791 `-----------------------------------------------*/
794 gram_scanner_free (void)
796 obstack_free (&obstack_for_string, 0);
797 /* Reclaim Flex's buffers. */