1 /* Bison Grammar Scanner -*- C -*-
3 Copyright (C) 2002, 2003, 2004, 2005 Free Software Foundation, Inc.
5 This file is part of Bison, the GNU Compiler Compiler.
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2 of the License, or
10 (at your option) any later version.
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with this program; if not, write to the Free Software
19 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
23 %option debug nodefault nounput noyywrap never-interactive
24 %option prefix="gram_" outfile="lex.yy.c"
30 #include <get-errno.h>
41 #define YY_USER_INIT \
44 scanner_cursor.file = current_file; \
45 scanner_cursor.line = 1; \
46 scanner_cursor.column = 1; \
47 code_start = scanner_cursor; \
51 /* Pacify "gcc -Wmissing-prototypes" when flex 2.5.31 is used. */
52 int gram_get_lineno (void);
53 FILE *gram_get_in (void);
54 FILE *gram_get_out (void);
55 int gram_get_leng (void);
56 char *gram_get_text (void);
57 void gram_set_lineno (int);
58 void gram_set_in (FILE *);
59 void gram_set_out (FILE *);
60 int gram_get_debug (void);
61 void gram_set_debug (int);
62 int gram_lex_destroy (void);
64 /* Location of scanner cursor. */
65 boundary scanner_cursor;
67 static void adjust_location (location *, char const *, size_t);
68 #define YY_USER_ACTION adjust_location (loc, yytext, yyleng);
70 static size_t no_cr_read (FILE *, char *, size_t);
71 #define YY_INPUT(buf, result, size) ((result) = no_cr_read (yyin, buf, size))
74 /* OBSTACK_FOR_STRING -- Used to store all the characters that we need to
75 keep (to construct ID, STRINGS etc.). Use the following macros to
78 Use STRING_GROW to append what has just been matched, and
79 STRING_FINISH to end the string (it puts the ending 0).
80 STRING_FINISH also stores this string in LAST_STRING, which can be
81 used, and which is used by STRING_FREE to free the last string. */
83 static struct obstack obstack_for_string;
85 /* A string representing the most recently saved token. */
86 static char *last_string;
90 obstack_grow (&obstack_for_string, yytext, yyleng)
92 #define STRING_FINISH \
94 obstack_1grow (&obstack_for_string, '\0'); \
95 last_string = obstack_finish (&obstack_for_string); \
99 obstack_free (&obstack_for_string, last_string)
102 scanner_last_string_free (void)
107 /* Within well-formed rules, RULE_LENGTH is the number of values in
108 the current rule so far, which says where to find `$0' with respect
109 to the top of the stack. It is not the same as the rule->length in
110 the case of mid rule actions.
112 Outside of well-formed rules, RULE_LENGTH has an undefined value. */
113 static int rule_length;
115 static void handle_dollar (int token_type, char *cp, location loc);
116 static void handle_at (int token_type, char *cp, location loc);
117 static void handle_syncline (char *args);
118 static unsigned long int scan_integer (char const *p, int base, location loc);
119 static int convert_ucn_to_byte (char const *hex_text);
120 static void unexpected_eof (boundary, char const *);
121 static void unexpected_newline (boundary, char const *);
124 %x SC_COMMENT SC_LINE_COMMENT SC_YACC_COMMENT
125 %x SC_STRING SC_CHARACTER
126 %x SC_AFTER_IDENTIFIER
127 %x SC_ESCAPED_STRING SC_ESCAPED_CHARACTER
128 %x SC_PRE_CODE SC_BRACED_CODE SC_PROLOGUE SC_EPILOGUE
130 letter [.abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ_]
131 id {letter}({letter}|[0-9])*
132 directive %{letter}({letter}|[0-9]|-)*
135 /* POSIX says that a tag must be both an id and a C union member, but
136 historically almost any character is allowed in a tag. We disallow
137 NUL and newline, as this simplifies our implementation. */
140 /* Zero or more instances of backslash-newline. Following GCC, allow
141 white space between the backslash and the newline. */
142 splice (\\[ \f\t\v]*\n)*
146 /* Nesting level of the current code in braces. */
147 int braces_level IF_LINT (= 0);
149 /* Parent context state, when applicable. */
150 int context_state IF_LINT (= 0);
152 /* Token type to return, when applicable. */
153 int token_type IF_LINT (= 0);
155 /* Location of most recent identifier, when applicable. */
156 location id_loc IF_LINT (= empty_location);
158 /* Where containing code started, when applicable. Its initial
159 value is relevant only when yylex is invoked in the SC_EPILOGUE
161 boundary code_start = scanner_cursor;
163 /* Where containing comment or string or character literal started,
165 boundary token_start IF_LINT (= scanner_cursor);
169 /*-----------------------.
170 | Scanning white space. |
171 `-----------------------*/
173 <INITIAL,SC_AFTER_IDENTIFIER,SC_PRE_CODE>
175 /* Comments and white space. */
176 "," warn_at (*loc, _("stray `,' treated as white space"));
180 token_start = loc->start;
181 context_state = YY_START;
182 BEGIN SC_YACC_COMMENT;
185 /* #line directives are not documented, and may be withdrawn or
186 modified in future versions of Bison. */
187 ^"#line "{int}" \"".*"\"\n" {
188 handle_syncline (yytext + sizeof "#line " - 1);
193 /*----------------------------.
194 | Scanning Bison directives. |
195 `----------------------------*/
198 "%binary" return PERCENT_NONASSOC;
199 "%debug" return PERCENT_DEBUG;
200 "%default"[-_]"prec" return PERCENT_DEFAULT_PREC;
201 "%define" return PERCENT_DEFINE;
202 "%defines" return PERCENT_DEFINES;
203 "%destructor" token_type = PERCENT_DESTRUCTOR; BEGIN SC_PRE_CODE;
204 "%dprec" return PERCENT_DPREC;
205 "%error"[-_]"verbose" return PERCENT_ERROR_VERBOSE;
206 "%expect" return PERCENT_EXPECT;
207 "%expect"[-_]"rr" return PERCENT_EXPECT_RR;
208 "%file-prefix" return PERCENT_FILE_PREFIX;
209 "%fixed"[-_]"output"[-_]"files" return PERCENT_YACC;
210 "%initial-action" token_type = PERCENT_INITIAL_ACTION; BEGIN SC_PRE_CODE;
211 "%glr-parser" return PERCENT_GLR_PARSER;
212 "%left" return PERCENT_LEFT;
213 "%lex-param" token_type = PERCENT_LEX_PARAM; BEGIN SC_PRE_CODE;
214 "%locations" return PERCENT_LOCATIONS;
215 "%merge" return PERCENT_MERGE;
216 "%name"[-_]"prefix" return PERCENT_NAME_PREFIX;
217 "%no"[-_]"default"[-_]"prec" return PERCENT_NO_DEFAULT_PREC;
218 "%no"[-_]"lines" return PERCENT_NO_LINES;
219 "%nonassoc" return PERCENT_NONASSOC;
220 "%nondeterministic-parser" return PERCENT_NONDETERMINISTIC_PARSER;
221 "%nterm" return PERCENT_NTERM;
222 "%output" return PERCENT_OUTPUT;
223 "%parse-param" token_type = PERCENT_PARSE_PARAM; BEGIN SC_PRE_CODE;
224 "%prec" rule_length--; return PERCENT_PREC;
225 "%printer" token_type = PERCENT_PRINTER; BEGIN SC_PRE_CODE;
226 "%pure"[-_]"parser" return PERCENT_PURE_PARSER;
227 "%right" return PERCENT_RIGHT;
228 "%skeleton" return PERCENT_SKELETON;
229 "%start" return PERCENT_START;
230 "%term" return PERCENT_TOKEN;
231 "%token" return PERCENT_TOKEN;
232 "%token"[-_]"table" return PERCENT_TOKEN_TABLE;
233 "%type" return PERCENT_TYPE;
234 "%union" token_type = PERCENT_UNION; BEGIN SC_PRE_CODE;
235 "%verbose" return PERCENT_VERBOSE;
236 "%yacc" return PERCENT_YACC;
239 complain_at (*loc, _("invalid directive: %s"), quote (yytext));
243 "|" rule_length = 0; return PIPE;
244 ";" return SEMICOLON;
247 val->symbol = symbol_get (yytext, *loc);
250 BEGIN SC_AFTER_IDENTIFIER;
254 val->integer = scan_integer (yytext, 10, *loc);
257 0[xX][0-9abcdefABCDEF]+ {
258 val->integer = scan_integer (yytext, 16, *loc);
262 /* Characters. We don't check there is only one. */
263 "'" STRING_GROW; token_start = loc->start; BEGIN SC_ESCAPED_CHARACTER;
266 "\"" token_start = loc->start; BEGIN SC_ESCAPED_STRING;
269 "%{" code_start = loc->start; BEGIN SC_PROLOGUE;
271 /* Code in between braces. */
274 token_type = BRACED_CODE;
276 code_start = loc->start;
277 BEGIN SC_BRACED_CODE;
282 obstack_grow (&obstack_for_string, yytext + 1, yyleng - 2);
284 val->uniqstr = uniqstr_new (last_string);
290 static int percent_percent_count;
291 if (++percent_percent_count == 2)
293 return PERCENT_PERCENT;
297 complain_at (*loc, _("invalid character: %s"), quote (yytext));
301 loc->start = loc->end = scanner_cursor;
307 /*-----------------------------------------------------------------.
308 | Scanning after an identifier, checking whether a colon is next. |
309 `-----------------------------------------------------------------*/
311 <SC_AFTER_IDENTIFIER>
320 scanner_cursor.column -= mbsnwidth (yytext, yyleng, 0);
334 /*---------------------------------------------------------------.
335 | Scanning a Yacc comment. The initial `/ *' is already eaten. |
336 `---------------------------------------------------------------*/
340 "*/" BEGIN context_state;
342 <<EOF>> unexpected_eof (token_start, "*/"); BEGIN context_state;
346 /*------------------------------------------------------------.
347 | Scanning a C comment. The initial `/ *' is already eaten. |
348 `------------------------------------------------------------*/
352 "*"{splice}"/" STRING_GROW; BEGIN context_state;
353 <<EOF>> unexpected_eof (token_start, "*/"); BEGIN context_state;
357 /*--------------------------------------------------------------.
358 | Scanning a line comment. The initial `//' is already eaten. |
359 `--------------------------------------------------------------*/
363 "\n" STRING_GROW; BEGIN context_state;
364 {splice} STRING_GROW;
365 <<EOF>> BEGIN context_state;
369 /*------------------------------------------------.
370 | Scanning a Bison string, including its escapes. |
371 | The initial quote is already eaten. |
372 `------------------------------------------------*/
378 loc->start = token_start;
379 val->chars = last_string;
384 \n unexpected_newline (token_start, "\""); BEGIN INITIAL;
385 <<EOF>> unexpected_eof (token_start, "\""); BEGIN INITIAL;
388 /*----------------------------------------------------------.
389 | Scanning a Bison character literal, decoding its escapes. |
390 | The initial quote is already eaten. |
391 `----------------------------------------------------------*/
393 <SC_ESCAPED_CHARACTER>
396 unsigned char last_string_1;
399 loc->start = token_start;
400 val->symbol = symbol_get (quotearg_style (escape_quoting_style,
403 symbol_class_set (val->symbol, token_sym, *loc);
404 last_string_1 = last_string[1];
405 symbol_user_token_number_set (val->symbol, last_string_1, *loc);
411 \n unexpected_newline (token_start, "'"); BEGIN INITIAL;
412 <<EOF>> unexpected_eof (token_start, "'"); BEGIN INITIAL;
415 <SC_ESCAPED_CHARACTER,SC_ESCAPED_STRING>
417 \0 complain_at (*loc, _("invalid null character"));
421 /*----------------------------.
422 | Decode escaped characters. |
423 `----------------------------*/
425 <SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>
428 unsigned long int c = strtoul (yytext + 1, 0, 8);
430 complain_at (*loc, _("invalid escape sequence: %s"), quote (yytext));
432 complain_at (*loc, _("invalid null character: %s"), quote (yytext));
434 obstack_1grow (&obstack_for_string, c);
437 \\x[0-9abcdefABCDEF]+ {
440 c = strtoul (yytext + 2, 0, 16);
441 if (UCHAR_MAX < c || get_errno ())
442 complain_at (*loc, _("invalid escape sequence: %s"), quote (yytext));
444 complain_at (*loc, _("invalid null character: %s"), quote (yytext));
446 obstack_1grow (&obstack_for_string, c);
449 \\a obstack_1grow (&obstack_for_string, '\a');
450 \\b obstack_1grow (&obstack_for_string, '\b');
451 \\f obstack_1grow (&obstack_for_string, '\f');
452 \\n obstack_1grow (&obstack_for_string, '\n');
453 \\r obstack_1grow (&obstack_for_string, '\r');
454 \\t obstack_1grow (&obstack_for_string, '\t');
455 \\v obstack_1grow (&obstack_for_string, '\v');
457 /* \\[\"\'?\\] would be shorter, but it confuses xgettext. */
458 \\("\""|"'"|"?"|"\\") obstack_1grow (&obstack_for_string, yytext[1]);
460 \\(u|U[0-9abcdefABCDEF]{4})[0-9abcdefABCDEF]{4} {
461 int c = convert_ucn_to_byte (yytext);
463 complain_at (*loc, _("invalid escape sequence: %s"), quote (yytext));
465 complain_at (*loc, _("invalid null character: %s"), quote (yytext));
467 obstack_1grow (&obstack_for_string, c);
470 complain_at (*loc, _("unrecognized escape sequence: %s"), quote (yytext));
475 /*--------------------------------------------.
476 | Scanning user-code characters and strings. |
477 `--------------------------------------------*/
479 <SC_CHARACTER,SC_STRING>
481 {splice}|\\{splice}[^\n$@\[\]] STRING_GROW;
486 "'" STRING_GROW; BEGIN context_state;
487 \n unexpected_newline (token_start, "'"); BEGIN context_state;
488 <<EOF>> unexpected_eof (token_start, "'"); BEGIN context_state;
493 "\"" STRING_GROW; BEGIN context_state;
494 \n unexpected_newline (token_start, "\""); BEGIN context_state;
495 <<EOF>> unexpected_eof (token_start, "\""); BEGIN context_state;
499 /*---------------------------------------------------.
500 | Strings, comments etc. can be found in user code. |
501 `---------------------------------------------------*/
503 <SC_BRACED_CODE,SC_PROLOGUE,SC_EPILOGUE>
507 context_state = YY_START;
508 token_start = loc->start;
513 context_state = YY_START;
514 token_start = loc->start;
519 context_state = YY_START;
520 token_start = loc->start;
525 context_state = YY_START;
526 BEGIN SC_LINE_COMMENT;
531 /*---------------------------------------------------------------.
532 | Scanning after %union etc., possibly followed by white space. |
533 | For %union only, allow arbitrary C code to appear before the |
534 | following brace, as an extension to POSIX. |
535 `---------------------------------------------------------------*/
540 bool valid = yytext[0] == '{' || token_type == PERCENT_UNION;
541 scanner_cursor.column -= mbsnwidth (yytext, yyleng, 0);
547 code_start = loc->start;
548 BEGIN SC_BRACED_CODE;
552 complain_at (*loc, _("missing `{' in %s"),
553 token_name (token_type));
554 obstack_sgrow (&obstack_for_string, "{}");
556 val->chars = last_string;
562 <<EOF>> unexpected_eof (scanner_cursor, "{}"); BEGIN INITIAL;
566 /*---------------------------------------------------------------.
567 | Scanning some code in braces (%union and actions). The initial |
568 | "{" is already eaten. |
569 `---------------------------------------------------------------*/
573 "{"|"<"{splice}"%" STRING_GROW; braces_level++;
574 "%"{splice}">" STRING_GROW; braces_level--;
576 bool outer_brace = --braces_level < 0;
578 /* As an undocumented Bison extension, append `;' before the last
579 brace in braced code, so that the user code can omit trailing
580 `;'. But do not append `;' if emulating Yacc, since Yacc does
583 FIXME: Bison should warn if a semicolon seems to be necessary
584 here, and should omit the semicolon if it seems unnecessary
585 (e.g., after ';', '{', or '}', each followed by comments or
586 white space). Such a warning shouldn't depend on --yacc; it
587 should depend on a new --pedantic option, which would cause
588 Bison to warn if it detects an extension to POSIX. --pedantic
589 should also diagnose other Bison extensions like %yacc.
590 Perhaps there should also be a GCC-style --pedantic-errors
591 option, so that such warnings are diagnosed as errors. */
592 if (outer_brace && token_type == BRACED_CODE && ! yacc_flag)
593 obstack_1grow (&obstack_for_string, ';');
595 obstack_1grow (&obstack_for_string, '}');
601 loc->start = code_start;
602 val->chars = last_string;
608 /* Tokenize `<<%' correctly (as `<<' `%') rather than incorrrectly
610 "<"{splice}"<" STRING_GROW;
612 "$"("<"{tag}">")?(-?[0-9]+|"$") handle_dollar (token_type, yytext, *loc);
613 "@"(-?[0-9]+|"$") handle_at (token_type, yytext, *loc);
615 <<EOF>> unexpected_eof (code_start, "}"); BEGIN INITIAL;
619 /*--------------------------------------------------------------.
620 | Scanning some prologue: from "%{" (already scanned) to "%}". |
621 `--------------------------------------------------------------*/
627 loc->start = code_start;
628 val->chars = last_string;
633 <<EOF>> unexpected_eof (code_start, "%}"); BEGIN INITIAL;
637 /*---------------------------------------------------------------.
638 | Scanning the epilogue (everything after the second "%%", which |
639 | has already been eaten). |
640 `---------------------------------------------------------------*/
646 loc->start = code_start;
647 val->chars = last_string;
654 /*-----------------------------------------.
655 | Escape M4 quoting characters in C code. |
656 `-----------------------------------------*/
658 <SC_COMMENT,SC_LINE_COMMENT,SC_STRING,SC_CHARACTER,SC_BRACED_CODE,SC_PROLOGUE,SC_EPILOGUE>
660 \$ obstack_sgrow (&obstack_for_string, "$][");
661 \@ obstack_sgrow (&obstack_for_string, "@@");
662 \[ obstack_sgrow (&obstack_for_string, "@{");
663 \] obstack_sgrow (&obstack_for_string, "@}");
667 /*-----------------------------------------------------.
668 | By default, grow the string obstack with the input. |
669 `-----------------------------------------------------*/
671 <SC_COMMENT,SC_LINE_COMMENT,SC_BRACED_CODE,SC_PROLOGUE,SC_EPILOGUE,SC_STRING,SC_CHARACTER,SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>. |
672 <SC_COMMENT,SC_LINE_COMMENT,SC_BRACED_CODE,SC_PROLOGUE,SC_EPILOGUE>\n STRING_GROW;
676 /* Keeps track of the maximum number of semantic values to the left of
677 a handle (those referenced by $0, $-1, etc.) are required by the
678 semantic actions of this grammar. */
679 int max_left_semantic_context = 0;
681 /* Set *LOC and adjust scanner cursor to account for token TOKEN of
685 adjust_location (location *loc, char const *token, size_t size)
687 int line = scanner_cursor.line;
688 int column = scanner_cursor.column;
689 char const *p0 = token;
690 char const *p = token;
691 char const *lim = token + size;
693 loc->start = scanner_cursor;
695 for (p = token; p < lim; p++)
705 column += mbsnwidth (p0, p - p0, 0);
706 column += 8 - ((column - 1) & 7);
711 scanner_cursor.line = line;
712 scanner_cursor.column = column + mbsnwidth (p0, p - p0, 0);
714 loc->end = scanner_cursor;
718 /* Read bytes from FP into buffer BUF of size SIZE. Return the
719 number of bytes read. Remove '\r' from input, treating \r\n
720 and isolated \r as \n. */
723 no_cr_read (FILE *fp, char *buf, size_t size)
725 size_t bytes_read = fread (buf, 1, size, fp);
728 char *w = memchr (buf, '\r', bytes_read);
732 char const *lim = buf + bytes_read;
736 /* Found an '\r'. Treat it like '\n', but ignore any
737 '\n' that immediately follows. */
742 if (ch != '\n' && ungetc (ch, fp) != ch)
748 /* Copy until the next '\r'. */
754 while ((*w++ = *r++) != '\r');
765 /*------------------------------------------------------------------.
766 | TEXT is pointing to a wannabee semantic value (i.e., a `$'). |
768 | Possible inputs: $[<TYPENAME>]($|integer) |
770 | Output to OBSTACK_FOR_STRING a reference to this semantic value. |
771 `------------------------------------------------------------------*/
774 handle_action_dollar (char *text, location loc)
776 const char *type_name = NULL;
782 /* Get the type name if explicit. */
795 type_name = symbol_list_n_type_name_get (current_rule, loc, 0);
796 if (!type_name && typed)
797 complain_at (loc, _("$$ of `%s' has no declared type"),
798 current_rule->sym->tag);
801 obstack_fgrow1 (&obstack_for_string,
802 "]b4_lhs_value([%s])[", type_name);
808 num = strtol (cp, 0, 10);
810 if (INT_MIN <= num && num <= rule_length && ! get_errno ())
813 if (1-n > max_left_semantic_context)
814 max_left_semantic_context = 1-n;
815 if (!type_name && n > 0)
816 type_name = symbol_list_n_type_name_get (current_rule, loc, n);
817 if (!type_name && typed)
818 complain_at (loc, _("$%d of `%s' has no declared type"),
819 n, current_rule->sym->tag);
822 obstack_fgrow3 (&obstack_for_string,
823 "]b4_rhs_value(%d, %d, [%s])[",
824 rule_length, n, type_name);
827 complain_at (loc, _("integer out of range: %s"), quote (text));
834 /*----------------------------------------------------------------.
835 | Map `$?' onto the proper M4 symbol, depending on its TOKEN_TYPE |
836 | (are we in an action?). |
837 `----------------------------------------------------------------*/
840 handle_dollar (int token_type, char *text, location loc)
845 if (handle_action_dollar (text, loc))
849 case PERCENT_DESTRUCTOR:
850 case PERCENT_INITIAL_ACTION:
851 case PERCENT_PRINTER:
854 obstack_sgrow (&obstack_for_string, "]b4_dollar_dollar[");
863 complain_at (loc, _("invalid value: %s"), quote (text));
867 /*------------------------------------------------------.
868 | TEXT is a location token (i.e., a `@...'). Output to |
869 | OBSTACK_FOR_STRING a reference to this location. |
870 `------------------------------------------------------*/
873 handle_action_at (char *text, location loc)
876 locations_flag = true;
882 obstack_sgrow (&obstack_for_string, "]b4_lhs_location[");
887 num = strtol (cp, 0, 10);
889 if (INT_MIN <= num && num <= rule_length && ! get_errno ())
892 obstack_fgrow2 (&obstack_for_string, "]b4_rhs_location(%d, %d)[",
896 complain_at (loc, _("integer out of range: %s"), quote (text));
903 /*----------------------------------------------------------------.
904 | Map `@?' onto the proper M4 symbol, depending on its TOKEN_TYPE |
905 | (are we in an action?). |
906 `----------------------------------------------------------------*/
909 handle_at (int token_type, char *text, location loc)
914 handle_action_at (text, loc);
917 case PERCENT_INITIAL_ACTION:
918 case PERCENT_DESTRUCTOR:
919 case PERCENT_PRINTER:
922 obstack_sgrow (&obstack_for_string, "]b4_at_dollar[");
931 complain_at (loc, _("invalid value: %s"), quote (text));
935 /*------------------------------------------------------.
936 | Scan NUMBER for a base-BASE integer at location LOC. |
937 `------------------------------------------------------*/
939 static unsigned long int
940 scan_integer (char const *number, int base, location loc)
942 unsigned long int num;
944 num = strtoul (number, 0, base);
945 if (INT_MAX < num || get_errno ())
947 complain_at (loc, _("integer out of range: %s"), quote (number));
954 /*------------------------------------------------------------------.
955 | Convert universal character name UCN to a single-byte character, |
956 | and return that character. Return -1 if UCN does not correspond |
957 | to a single-byte character. |
958 `------------------------------------------------------------------*/
961 convert_ucn_to_byte (char const *ucn)
963 unsigned long int code = strtoul (ucn + 2, 0, 16);
965 /* FIXME: Currently we assume Unicode-compatible unibyte characters
966 on ASCII hosts (i.e., Latin-1 on hosts with 8-bit bytes). On
967 non-ASCII hosts we support only the portable C character set.
968 These limitations should be removed once we add support for
969 multibyte characters. */
971 if (UCHAR_MAX < code)
974 #if ! ('$' == 0x24 && '@' == 0x40 && '`' == 0x60 && '~' == 0x7e)
976 /* A non-ASCII host. Use CODE to index into a table of the C
977 basic execution character set, which is guaranteed to exist on
978 all Standard C platforms. This table also includes '$', '@',
979 and '`', which are not in the basic execution character set but
980 which are unibyte characters on all the platforms that we know
982 static signed char const table[] =
984 '\0', -1, -1, -1, -1, -1, -1, '\a',
985 '\b', '\t', '\n', '\v', '\f', '\r', -1, -1,
986 -1, -1, -1, -1, -1, -1, -1, -1,
987 -1, -1, -1, -1, -1, -1, -1, -1,
988 ' ', '!', '"', '#', '$', '%', '&', '\'',
989 '(', ')', '*', '+', ',', '-', '.', '/',
990 '0', '1', '2', '3', '4', '5', '6', '7',
991 '8', '9', ':', ';', '<', '=', '>', '?',
992 '@', 'A', 'B', 'C', 'D', 'E', 'F', 'G',
993 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O',
994 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W',
995 'X', 'Y', 'Z', '[', '\\', ']', '^', '_',
996 '`', 'a', 'b', 'c', 'd', 'e', 'f', 'g',
997 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o',
998 'p', 'q', 'r', 's', 't', 'u', 'v', 'w',
999 'x', 'y', 'z', '{', '|', '}', '~'
1002 code = code < sizeof table ? table[code] : -1;
1010 /*----------------------------------------------------------------.
1011 | Handle `#line INT "FILE"'. ARGS has already skipped `#line '. |
1012 `----------------------------------------------------------------*/
1015 handle_syncline (char *args)
1017 int lineno = strtol (args, &args, 10);
1018 const char *file = NULL;
1019 file = strchr (args, '"') + 1;
1020 *strchr (file, '"') = 0;
1021 scanner_cursor.file = current_file = uniqstr_new (file);
1022 scanner_cursor.line = lineno;
1023 scanner_cursor.column = 1;
1027 /*----------------------------------------------------------------.
1028 | For a token or comment starting at START, report message MSGID, |
1029 | which should say that an end marker was found before |
1030 | the expected TOKEN_END. |
1031 `----------------------------------------------------------------*/
1034 unexpected_end (boundary start, char const *msgid, char const *token_end)
1038 loc.end = scanner_cursor;
1039 complain_at (loc, _(msgid), token_end);
1043 /*------------------------------------------------------------------------.
1044 | Report an unexpected EOF in a token or comment starting at START. |
1045 | An end of file was encountered and the expected TOKEN_END was missing. |
1046 `------------------------------------------------------------------------*/
1049 unexpected_eof (boundary start, char const *token_end)
1051 unexpected_end (start, N_("missing `%s' at end of file"), token_end);
1055 /*----------------------------------------.
1056 | Likewise, but for unexpected newlines. |
1057 `----------------------------------------*/
1060 unexpected_newline (boundary start, char const *token_end)
1062 unexpected_end (start, N_("missing `%s' at end of line"), token_end);
1066 /*-------------------------.
1067 | Initialize the scanner. |
1068 `-------------------------*/
1071 scanner_initialize (void)
1073 obstack_init (&obstack_for_string);
1077 /*-----------------------------------------------.
1078 | Free all the memory allocated to the scanner. |
1079 `-----------------------------------------------*/
1084 obstack_free (&obstack_for_string, 0);
1085 /* Reclaim Flex's buffers. */
1086 yy_delete_buffer (YY_CURRENT_BUFFER);