1 /* Bison Grammar Scanner -*- C -*-
2 Copyright (C) 2002 Free Software Foundation, Inc.
4 This file is part of Bison, the GNU Compiler Compiler.
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2 of the License, or
9 (at your option) any later version.
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with this program; if not, write to the Free Software
18 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
22 %option debug nodefault noyywrap nounput never-interactive stack
23 %option prefix="gram_" outfile="lex.yy.c"
33 /* Each time we match a string, move the end cursor to its end. */
34 #define YY_USER_INIT \
36 LOCATION_RESET (*yylloc); \
37 /* This is only to avoid GCC warnings. */ \
41 #define YY_USER_ACTION LOCATION_COLUMNS (*yylloc, yyleng)
42 #define YY_LINES LOCATION_LINES (*yylloc, yyleng); lineno += yyleng;
43 #define YY_STEP LOCATION_STEP (*yylloc)
45 /* STRING_OBSTACK -- Used to store all the characters that we need to
46 keep (to construct ID, STRINGS etc.). Use the following macros to
49 Use YY_OBS_GROW to append what has just been matched, and
50 YY_OBS_FINISH to end the string (it puts the ending 0).
51 YY_OBS_FINISH also stores this string in LAST_STRING, which can be
52 used, and which is used by YY_OBS_FREE to free the last string. */
54 static struct obstack string_obstack;
58 obstack_grow (&string_obstack, yytext, yyleng)
60 #define YY_OBS_FINISH \
62 obstack_1grow (&string_obstack, '\0'); \
63 last_string = obstack_finish (&string_obstack); \
68 obstack_free (&string_obstack, last_string); \
72 scanner_last_string_free (void)
78 static int braces_level = 0;
79 static int percent_percent_count = 0;
81 static void handle_dollar PARAMS ((braced_code_t code_kind,
82 char *cp, location_t location));
83 static void handle_at PARAMS ((braced_code_t code_kind,
84 char *cp, location_t location));
88 %x SC_STRING SC_CHARACTER
89 %x SC_ESCAPED_STRING SC_ESCAPED_CHARACTER
90 %x SC_BRACED_CODE SC_PROLOGUE SC_EPILOGUE
92 id [.a-zA-Z][.a-zA-Z_0-9]*
94 eols (\n|\r|\n\r|\r\n)+
99 /* At each yylex invocation, mark the current position as the
100 start of the next token. */
103 fprintf (stderr, "FOO1: %p: ", yylloc);
104 LOCATION_PRINT (stderr, *yylloc);
105 fprintf (stderr, "\n");
109 fprintf (stderr, "BAR1: ");
110 LOCATION_PRINT (stderr, *yylloc);
111 fprintf (stderr, "\n");
116 /*----------------------------.
117 | Scanning Bison directives. |
118 `----------------------------*/
121 "%binary" return PERCENT_NONASSOC;
122 "%debug" return PERCENT_DEBUG;
123 "%define" return PERCENT_DEFINE;
124 "%defines" return PERCENT_DEFINES;
125 "%destructor" return PERCENT_DESTRUCTOR;
126 "%dprec" return PERCENT_DPREC;
127 "%error"[-_]"verbose" return PERCENT_ERROR_VERBOSE;
128 "%expect" return PERCENT_EXPECT;
129 "%file-prefix" return PERCENT_FILE_PREFIX;
130 "%fixed"[-_]"output"[-_]"files" return PERCENT_YACC;
131 "%glr"[-_]"parser" return PERCENT_GLR_PARSER;
132 "%left" return PERCENT_LEFT;
133 "%locations" return PERCENT_LOCATIONS;
134 "%merge" return PERCENT_MERGE;
135 "%name"[-_]"prefix" return PERCENT_NAME_PREFIX;
136 "%no"[-_]"lines" return PERCENT_NO_LINES;
137 "%nonassoc" return PERCENT_NONASSOC;
138 "%nterm" return PERCENT_NTERM;
139 "%output" return PERCENT_OUTPUT;
140 "%prec" return PERCENT_PREC;
141 "%printer" return PERCENT_PRINTER;
142 "%pure"[-_]"parser" return PERCENT_PURE_PARSER;
143 "%right" return PERCENT_RIGHT;
144 "%skeleton" return PERCENT_SKELETON;
145 "%start" return PERCENT_START;
146 "%term" return PERCENT_TOKEN;
147 "%token" return PERCENT_TOKEN;
148 "%token"[-_]"table" return PERCENT_TOKEN_TABLE;
149 "%type" return PERCENT_TYPE;
150 "%union" return PERCENT_UNION;
151 "%verbose" return PERCENT_VERBOSE;
152 "%yacc" return PERCENT_YACC;
157 ";" return SEMICOLON;
159 {eols} YY_LINES; YY_STEP;
162 yylval->symbol = symbol_get (yytext, *yylloc);
166 {int} yylval->integer = strtol (yytext, 0, 10); return INT;
168 /* Characters. We don't check there is only one. */
169 \' YY_OBS_GROW; yy_push_state (SC_ESCAPED_CHARACTER);
172 \" YY_OBS_GROW; yy_push_state (SC_ESCAPED_STRING);
175 "/*" yy_push_state (SC_COMMENT);
179 "%{" yy_push_state (SC_PROLOGUE);
181 /* Code in between braces. */
182 "{" YY_OBS_GROW; ++braces_level; yy_push_state (SC_BRACED_CODE);
186 obstack_grow (&string_obstack, yytext + 1, yyleng - 2);
188 yylval->string = last_string;
194 if (++percent_percent_count == 2)
195 yy_push_state (SC_EPILOGUE);
196 return PERCENT_PERCENT;
200 LOCATION_PRINT (stderr, *yylloc);
201 fprintf (stderr, ": invalid character: `%c'\n", *yytext);
207 /*------------------------------------------------------------.
208 | Whatever the start condition (but those which correspond to |
209 | entity `swallowed' by Bison: SC_ESCAPED_STRING and |
210 | SC_ESCAPED_CHARACTER), no M4 character must escape as is. |
211 `------------------------------------------------------------*/
213 <SC_COMMENT,SC_STRING,SC_CHARACTER,SC_BRACED_CODE,SC_PROLOGUE,SC_EPILOGUE>
215 \[ if (YY_START != SC_COMMENT) obstack_sgrow (&string_obstack, "@<:@");
216 \] if (YY_START != SC_COMMENT) obstack_sgrow (&string_obstack, "@:>@");
221 /*-----------------------------------------------------------.
222 | Scanning a C comment. The initial `/ *' is already eaten. |
223 `-----------------------------------------------------------*/
227 "*/" { /* End of the comment. */
228 if (yy_top_state () == INITIAL)
239 [^\[\]*\n\r]+ if (yy_top_state () != INITIAL) YY_OBS_GROW;
240 {eols} if (yy_top_state () != INITIAL) YY_OBS_GROW; YY_LINES;
241 . /* Stray `*'. */if (yy_top_state () != INITIAL) YY_OBS_GROW;
244 LOCATION_PRINT (stderr, *yylloc);
245 fprintf (stderr, ": unexpected end of file in a comment\n");
251 /*----------------------------------------------------------------.
252 | Scanning a C string, including its escapes. The initial `"' is |
254 `----------------------------------------------------------------*/
259 assert (yy_top_state () == INITIAL);
262 yylval->string = last_string;
267 [^\"\n\r\\]+ YY_OBS_GROW;
269 {eols} obstack_1grow (&string_obstack, '\n'); YY_LINES;
272 LOCATION_PRINT (stderr, *yylloc);
273 fprintf (stderr, ": unexpected end of file in a string\n");
274 assert (yy_top_state () == INITIAL);
276 yylval->string = last_string;
282 /*---------------------------------------------------------------.
283 | Scanning a C character, decoding its escapes. The initial "'" |
284 | is already eaten. |
285 `---------------------------------------------------------------*/
287 <SC_ESCAPED_CHARACTER>
291 assert (yy_top_state () == INITIAL);
294 yylval->symbol = symbol_get (last_string, *yylloc);
295 symbol_class_set (yylval->symbol, token_sym, *yylloc);
296 symbol_user_token_number_set (yylval->symbol,
297 (unsigned char) last_string[1], *yylloc);
304 [^\'\n\r\\] YY_OBS_GROW;
306 {eols} obstack_1grow (&string_obstack, '\n'); YY_LINES;
309 LOCATION_PRINT (stderr, *yylloc);
310 fprintf (stderr, ": unexpected end of file in a character\n");
311 assert (yy_top_state () == INITIAL);
313 yylval->string = last_string;
320 /*----------------------------.
321 | Decode escaped characters. |
322 `----------------------------*/
324 <SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>
327 long c = strtol (yytext + 1, 0, 8);
330 LOCATION_PRINT (stderr, *yylloc);
331 fprintf (stderr, ": invalid escape: %s\n", quote (yytext));
335 obstack_1grow (&string_obstack, c);
339 obstack_1grow (&string_obstack, strtol (yytext + 2, 0, 16));
342 \\a obstack_1grow (&string_obstack, '\a');
343 \\b obstack_1grow (&string_obstack, '\b');
344 \\f obstack_1grow (&string_obstack, '\f');
345 \\n obstack_1grow (&string_obstack, '\n');
346 \\r obstack_1grow (&string_obstack, '\r');
347 \\t obstack_1grow (&string_obstack, '\t');
348 \\v obstack_1grow (&string_obstack, '\v');
349 \\[\\""] obstack_1grow (&string_obstack, yytext[1]);
351 LOCATION_PRINT (stderr, *yylloc);
352 fprintf (stderr, ": unrecognized escape: %s\n", quote (yytext));
355 /* FLex wants this rule, in case of a `\<<EOF>>'. */
360 /*----------------------------------------------------------.
361 | Scanning a C character without decoding its escapes. The |
362 | initial "'" is already eaten. |
363 `----------------------------------------------------------*/
369 assert (yy_top_state () != INITIAL);
373 [^\[\]\'\n\r\\]+ YY_OBS_GROW;
374 \\(.|\n) YY_OBS_GROW;
375 /* FLex wants this rule, in case of a `\<<EOF>>'. */
378 {eols} YY_OBS_GROW; YY_LINES;
381 LOCATION_PRINT (stderr, *yylloc);
382 fprintf (stderr, ": unexpected end of file in a character\n");
383 assert (yy_top_state () != INITIAL);
389 /*----------------------------------------------------------------.
390 | Scanning a C string, without decoding its escapes. The initial |
391 | `"' is already eaten. |
392 `----------------------------------------------------------------*/
397 assert (yy_top_state () != INITIAL);
402 [^\[\]\"\n\r\\]+ YY_OBS_GROW;
403 \\(.|\n) YY_OBS_GROW;
404 /* FLex wants this rule, in case of a `\<<EOF>>'. */
407 {eols} YY_OBS_GROW; YY_LINES;
410 LOCATION_PRINT (stderr, *yylloc);
411 fprintf (stderr, ": unexpected end of file in a string\n");
412 assert (yy_top_state () != INITIAL);
418 /*---------------------------------------------------.
419 | Strings, comments etc. can be found in user code. |
420 `---------------------------------------------------*/
422 <SC_BRACED_CODE,SC_PROLOGUE,SC_EPILOGUE>
424 /* Characters. We don't check there is only one. */
425 \' YY_OBS_GROW; yy_push_state (SC_CHARACTER);
428 \" YY_OBS_GROW; yy_push_state (SC_STRING);
431 "/*" YY_OBS_GROW; yy_push_state (SC_COMMENT);
439 /*---------------------------------------------------------------.
440 | Scanning some code in braces (%union and actions). The initial |
441 | "{" is already eaten. |
442 `---------------------------------------------------------------*/
448 if (--braces_level == 0)
452 yylval->string = last_string;
457 "{" YY_OBS_GROW; braces_level++;
459 "$"("<"[^>]+">")?(-?[0-9]+|"$") { handle_dollar (current_braced_code,
461 "@"(-?[0-9]+|"$") { handle_at (current_braced_code,
464 [^$@\[\]/\'\"\{\}\n\r]+ YY_OBS_GROW;
465 {eols} YY_OBS_GROW; YY_LINES;
467 /* A lose $, or /, or etc. */
471 LOCATION_PRINT (stderr, *yylloc);
472 fprintf (stderr, ": unexpected end of file in a braced code\n");
475 yylval->string = last_string;
482 /*--------------------------------------------------------------.
483 | Scanning some prologue: from "%{" (already scanned) to "%}". |
484 `--------------------------------------------------------------*/
491 yylval->string = last_string;
495 [^%\[\]/\'\"\n\r]+ YY_OBS_GROW;
497 {eols} YY_OBS_GROW; YY_LINES;
500 LOCATION_PRINT (stderr, *yylloc);
501 fprintf (stderr, ": unexpected end of file in a prologue\n");
504 yylval->string = last_string;
510 /*---------------------------------------------------------------.
511 | Scanning the epilogue (everything after the second "%%", which |
512 | has already been eaten. |
513 `---------------------------------------------------------------*/
517 ([^\[\]]|{eols})+ YY_OBS_GROW;
522 yylval->string = last_string;
530 /*------------------------------------------------------------------.
531 | TEXT is pointing to a wannabee semantic value (i.e., a `$'). |
533 | Possible inputs: $[<TYPENAME>]($|integer) |
535 | Output to the STRING_OBSTACK a reference to this semantic value. |
536 `------------------------------------------------------------------*/
539 handle_action_dollar (char *text, location_t location)
541 const char *type_name = NULL;
544 /* Get the type name if explicit. */
557 type_name = symbol_list_n_type_name_get (current_rule, location, 0);
558 if (!type_name && typed)
559 complain_at (location, _("$$ of `%s' has no declared type"),
560 current_rule->sym->tag);
563 obstack_fgrow1 (&string_obstack,
564 "]b4_lhs_value([%s])[", type_name);
566 else if (isdigit (*cp) || *cp == '-')
568 /* RULE_LENGTH is the number of values in the current rule so
569 far, which says where to find `$0' with respect to the top of
570 the stack. It is not the same as the rule->length in the
571 case of mid rule actions. */
572 int rule_length = symbol_list_length (current_rule->next);
573 int n = strtol (cp, &cp, 10);
576 complain_at (location, _("invalid value: %s%d"), "$", n);
579 if (!type_name && n > 0)
580 type_name = symbol_list_n_type_name_get (current_rule, location,
582 if (!type_name && typed)
583 complain_at (location, _("$%d of `%s' has no declared type"),
584 n, current_rule->sym->tag);
587 obstack_fgrow3 (&string_obstack,
588 "]b4_rhs_value([%d], [%d], [%s])[",
589 rule_length, n, type_name);
594 complain_at (location, _("%s is invalid"), quote (text));
599 /*---------------------------------------------------------------.
600 | TEXT is expexted tp be $$ in some code associated to a symbol: |
601 | destructor or printer. |
602 `---------------------------------------------------------------*/
605 handle_symbol_code_dollar (char *text, location_t location)
609 obstack_sgrow (&string_obstack, "]b4_dollar_dollar[");
611 complain_at (location, _("%s is invalid"), quote (text));
615 /*-----------------------------------------------------------------.
616 | Dispatch onto handle_action_dollar, or handle_destructor_dollar, |
617 | depending upon CODE_KIND. |
618 `-----------------------------------------------------------------*/
621 handle_dollar (braced_code_t braced_code_kind,
622 char *text, location_t location)
624 switch (braced_code_kind)
626 case action_braced_code:
627 handle_action_dollar (text, location);
630 case destructor_braced_code:
631 case printer_braced_code:
632 handle_symbol_code_dollar (text, location);
638 /*------------------------------------------------------.
639 | TEXT is a location token (i.e., a `@...'). Output to |
640 | STRING_OBSTACK a reference to this location. |
641 `------------------------------------------------------*/
644 handle_action_at (char *text, location_t location)
651 obstack_sgrow (&string_obstack, "]b4_lhs_location[");
653 else if (isdigit (*cp) || *cp == '-')
655 /* RULE_LENGTH is the number of values in the current rule so
656 far, which says where to find `$0' with respect to the top of
657 the stack. It is not the same as the rule->length in the
658 case of mid rule actions. */
659 int rule_length = symbol_list_length (current_rule->next);
660 int n = strtol (cp, &cp, 10);
663 complain_at (location, _("invalid value: %s%d"), "@", n);
665 obstack_fgrow2 (&string_obstack, "]b4_rhs_location([%d], [%d])[",
670 complain_at (location, _("%s is invalid"), quote (text));
675 /*---------------------------------------------------------------.
676 | TEXT is expexted tp be @$ in some code associated to a symbol: |
677 | destructor or printer. |
678 `---------------------------------------------------------------*/
681 handle_symbol_code_at (char *text, location_t location)
685 obstack_sgrow (&string_obstack, "]b4_at_dollar[");
687 complain_at (location, _("%s is invalid"), quote (text));
691 /*-------------------------------------------------------------------.
692 | Dispatch onto handle_action_at, or handle_destructor_at, depending |
694 `-------------------------------------------------------------------*/
697 handle_at (braced_code_t braced_code_kind,
698 char *text, location_t location)
700 switch (braced_code_kind)
702 case action_braced_code:
703 handle_action_at (text, location);
706 case destructor_braced_code:
707 case printer_braced_code:
708 handle_symbol_code_at (text, location);
714 /*-------------------------.
715 | Initialize the scanner. |
716 `-------------------------*/
719 scanner_initialize (void)
721 obstack_init (&string_obstack);
725 /*-----------------------------------------------.
726 | Free all the memory allocated to the scanner. |
727 `-----------------------------------------------*/
732 obstack_free (&string_obstack, 0);
733 /* Reclaim Flex's buffers. */
734 yy_delete_buffer (YY_CURRENT_BUFFER);