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