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