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"
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>. */
35 #include <get-errno.h>
46 #define YY_USER_INIT \
49 scanner_cursor.file = current_file; \
50 scanner_cursor.line = 1; \
51 scanner_cursor.column = 1; \
52 code_start = scanner_cursor; \
56 /* Pacify "gcc -Wmissing-prototypes" when flex 2.5.31 is used. */
57 int gram_get_lineno (void);
58 FILE *gram_get_in (void);
59 FILE *gram_get_out (void);
60 int gram_get_leng (void);
61 char *gram_get_text (void);
62 void gram_set_lineno (int);
63 void gram_set_in (FILE *);
64 void gram_set_out (FILE *);
65 int gram_get_debug (void);
66 void gram_set_debug (int);
67 int gram_lex_destroy (void);
69 /* Location of scanner cursor. */
70 boundary scanner_cursor;
72 static void adjust_location (location *, char const *, size_t);
73 #define YY_USER_ACTION adjust_location (loc, yytext, yyleng);
75 static size_t no_cr_read (FILE *, char *, size_t);
76 #define YY_INPUT(buf, result, size) ((result) = no_cr_read (yyin, buf, size))
79 /* OBSTACK_FOR_STRING -- Used to store all the characters that we need to
80 keep (to construct ID, STRINGS etc.). Use the following macros to
83 Use STRING_GROW to append what has just been matched, and
84 STRING_FINISH to end the string (it puts the ending 0).
85 STRING_FINISH also stores this string in LAST_STRING, which can be
86 used, and which is used by STRING_FREE to free the last string. */
88 static struct obstack obstack_for_string;
90 /* A string representing the most recently saved token. */
91 static char *last_string;
95 obstack_grow (&obstack_for_string, yytext, yyleng)
97 #define STRING_FINISH \
99 obstack_1grow (&obstack_for_string, '\0'); \
100 last_string = obstack_finish (&obstack_for_string); \
103 #define STRING_FREE \
104 obstack_free (&obstack_for_string, last_string)
107 scanner_last_string_free (void)
112 /* Within well-formed rules, RULE_LENGTH is the number of values in
113 the current rule so far, which says where to find `$0' with respect
114 to the top of the stack. It is not the same as the rule->length in
115 the case of mid rule actions.
117 Outside of well-formed rules, RULE_LENGTH has an undefined value. */
118 static int rule_length;
120 static void handle_dollar (int token_type, char *cp, location loc);
121 static void handle_at (int token_type, char *cp, location loc);
122 static void handle_syncline (char *args);
123 static unsigned long int scan_integer (char const *p, int base, location loc);
124 static int convert_ucn_to_byte (char const *hex_text);
125 static void unexpected_eof (boundary, char const *);
126 static void unexpected_newline (boundary, char const *);
129 %x SC_COMMENT SC_LINE_COMMENT SC_YACC_COMMENT
130 %x SC_STRING SC_CHARACTER
131 %x SC_AFTER_IDENTIFIER
132 %x SC_ESCAPED_STRING SC_ESCAPED_CHARACTER
133 %x SC_PRE_CODE SC_BRACED_CODE SC_PROLOGUE SC_EPILOGUE
135 letter [.abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ_]
136 id {letter}({letter}|[0-9])*
137 directive %{letter}({letter}|[0-9]|-)*
140 /* POSIX says that a tag must be both an id and a C union member, but
141 historically almost any character is allowed in a tag. We disallow
142 NUL and newline, as this simplifies our implementation. */
145 /* Zero or more instances of backslash-newline. Following GCC, allow
146 white space between the backslash and the newline. */
147 splice (\\[ \f\t\v]*\n)*
151 /* Nesting level of the current code in braces. */
152 int braces_level IF_LINT (= 0);
154 /* Parent context state, when applicable. */
155 int context_state IF_LINT (= 0);
157 /* Token type to return, when applicable. */
158 int token_type IF_LINT (= 0);
160 /* Location of most recent identifier, when applicable. */
161 location id_loc IF_LINT (= empty_location);
163 /* Where containing code started, when applicable. Its initial
164 value is relevant only when yylex is invoked in the SC_EPILOGUE
166 boundary code_start = scanner_cursor;
168 /* Where containing comment or string or character literal started,
170 boundary token_start IF_LINT (= scanner_cursor);
174 /*-----------------------.
175 | Scanning white space. |
176 `-----------------------*/
178 <INITIAL,SC_AFTER_IDENTIFIER,SC_PRE_CODE>
180 /* Comments and white space. */
181 "," warn_at (*loc, _("stray `,' treated as white space"));
185 token_start = loc->start;
186 context_state = YY_START;
187 BEGIN SC_YACC_COMMENT;
190 /* #line directives are not documented, and may be withdrawn or
191 modified in future versions of Bison. */
192 ^"#line "{int}" \"".*"\"\n" {
193 handle_syncline (yytext + sizeof "#line " - 1);
198 /*----------------------------.
199 | Scanning Bison directives. |
200 `----------------------------*/
203 "%binary" return PERCENT_NONASSOC;
204 "%debug" return PERCENT_DEBUG;
205 "%default"[-_]"prec" return PERCENT_DEFAULT_PREC;
206 "%define" return PERCENT_DEFINE;
207 "%defines" return PERCENT_DEFINES;
208 "%destructor" token_type = PERCENT_DESTRUCTOR; BEGIN SC_PRE_CODE;
209 "%dprec" return PERCENT_DPREC;
210 "%error"[-_]"verbose" return PERCENT_ERROR_VERBOSE;
211 "%expect" return PERCENT_EXPECT;
212 "%expect"[-_]"rr" return PERCENT_EXPECT_RR;
213 "%file-prefix" return PERCENT_FILE_PREFIX;
214 "%fixed"[-_]"output"[-_]"files" return PERCENT_YACC;
215 "%initial-action" token_type = PERCENT_INITIAL_ACTION; BEGIN SC_PRE_CODE;
216 "%glr-parser" return PERCENT_GLR_PARSER;
217 "%left" return PERCENT_LEFT;
218 "%lex-param" token_type = PERCENT_LEX_PARAM; BEGIN SC_PRE_CODE;
219 "%locations" return PERCENT_LOCATIONS;
220 "%merge" return PERCENT_MERGE;
221 "%name"[-_]"prefix" return PERCENT_NAME_PREFIX;
222 "%no"[-_]"default"[-_]"prec" return PERCENT_NO_DEFAULT_PREC;
223 "%no"[-_]"lines" return PERCENT_NO_LINES;
224 "%nonassoc" return PERCENT_NONASSOC;
225 "%nondeterministic-parser" return PERCENT_NONDETERMINISTIC_PARSER;
226 "%nterm" return PERCENT_NTERM;
227 "%output" return PERCENT_OUTPUT;
228 "%parse-param" token_type = PERCENT_PARSE_PARAM; BEGIN SC_PRE_CODE;
229 "%prec" rule_length--; return PERCENT_PREC;
230 "%printer" token_type = PERCENT_PRINTER; BEGIN SC_PRE_CODE;
231 "%pure"[-_]"parser" return PERCENT_PURE_PARSER;
232 "%require" return PERCENT_REQUIRE;
233 "%right" return PERCENT_RIGHT;
234 "%skeleton" return PERCENT_SKELETON;
235 "%start" return PERCENT_START;
236 "%term" return PERCENT_TOKEN;
237 "%token" return PERCENT_TOKEN;
238 "%token"[-_]"table" return PERCENT_TOKEN_TABLE;
239 "%type" return PERCENT_TYPE;
240 "%union" token_type = PERCENT_UNION; BEGIN SC_PRE_CODE;
241 "%verbose" return PERCENT_VERBOSE;
242 "%yacc" return PERCENT_YACC;
245 complain_at (*loc, _("invalid directive: %s"), quote (yytext));
249 "|" rule_length = 0; return PIPE;
250 ";" return SEMICOLON;
253 val->symbol = symbol_get (yytext, *loc);
256 BEGIN SC_AFTER_IDENTIFIER;
260 val->integer = scan_integer (yytext, 10, *loc);
263 0[xX][0-9abcdefABCDEF]+ {
264 val->integer = scan_integer (yytext, 16, *loc);
268 /* Characters. We don't check there is only one. */
269 "'" STRING_GROW; token_start = loc->start; BEGIN SC_ESCAPED_CHARACTER;
272 "\"" token_start = loc->start; BEGIN SC_ESCAPED_STRING;
275 "%{" code_start = loc->start; BEGIN SC_PROLOGUE;
277 /* Code in between braces. */
280 token_type = BRACED_CODE;
282 code_start = loc->start;
283 BEGIN SC_BRACED_CODE;
288 obstack_grow (&obstack_for_string, yytext + 1, yyleng - 2);
290 val->uniqstr = uniqstr_new (last_string);
296 static int percent_percent_count;
297 if (++percent_percent_count == 2)
299 return PERCENT_PERCENT;
303 complain_at (*loc, _("invalid character: %s"), quote (yytext));
307 loc->start = loc->end = scanner_cursor;
313 /*-----------------------------------------------------------------.
314 | Scanning after an identifier, checking whether a colon is next. |
315 `-----------------------------------------------------------------*/
317 <SC_AFTER_IDENTIFIER>
326 scanner_cursor.column -= mbsnwidth (yytext, yyleng, 0);
340 /*---------------------------------------------------------------.
341 | Scanning a Yacc comment. The initial `/ *' is already eaten. |
342 `---------------------------------------------------------------*/
346 "*/" BEGIN context_state;
348 <<EOF>> unexpected_eof (token_start, "*/"); BEGIN context_state;
352 /*------------------------------------------------------------.
353 | Scanning a C comment. The initial `/ *' is already eaten. |
354 `------------------------------------------------------------*/
358 "*"{splice}"/" STRING_GROW; BEGIN context_state;
359 <<EOF>> unexpected_eof (token_start, "*/"); BEGIN context_state;
363 /*--------------------------------------------------------------.
364 | Scanning a line comment. The initial `//' is already eaten. |
365 `--------------------------------------------------------------*/
369 "\n" STRING_GROW; BEGIN context_state;
370 {splice} STRING_GROW;
371 <<EOF>> BEGIN context_state;
375 /*------------------------------------------------.
376 | Scanning a Bison string, including its escapes. |
377 | The initial quote is already eaten. |
378 `------------------------------------------------*/
384 loc->start = token_start;
385 val->chars = last_string;
390 \n unexpected_newline (token_start, "\""); BEGIN INITIAL;
391 <<EOF>> unexpected_eof (token_start, "\""); BEGIN INITIAL;
394 /*----------------------------------------------------------.
395 | Scanning a Bison character literal, decoding its escapes. |
396 | The initial quote is already eaten. |
397 `----------------------------------------------------------*/
399 <SC_ESCAPED_CHARACTER>
402 unsigned char last_string_1;
405 loc->start = token_start;
406 val->symbol = symbol_get (quotearg_style (escape_quoting_style,
409 symbol_class_set (val->symbol, token_sym, *loc);
410 last_string_1 = last_string[1];
411 symbol_user_token_number_set (val->symbol, last_string_1, *loc);
417 \n unexpected_newline (token_start, "'"); BEGIN INITIAL;
418 <<EOF>> unexpected_eof (token_start, "'"); BEGIN INITIAL;
421 <SC_ESCAPED_CHARACTER,SC_ESCAPED_STRING>
423 \0 complain_at (*loc, _("invalid null character"));
427 /*----------------------------.
428 | Decode escaped characters. |
429 `----------------------------*/
431 <SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>
434 unsigned long int c = strtoul (yytext + 1, 0, 8);
436 complain_at (*loc, _("invalid escape sequence: %s"), quote (yytext));
438 complain_at (*loc, _("invalid null character: %s"), quote (yytext));
440 obstack_1grow (&obstack_for_string, c);
443 \\x[0-9abcdefABCDEF]+ {
446 c = strtoul (yytext + 2, 0, 16);
447 if (UCHAR_MAX < c || get_errno ())
448 complain_at (*loc, _("invalid escape sequence: %s"), quote (yytext));
450 complain_at (*loc, _("invalid null character: %s"), quote (yytext));
452 obstack_1grow (&obstack_for_string, c);
455 \\a obstack_1grow (&obstack_for_string, '\a');
456 \\b obstack_1grow (&obstack_for_string, '\b');
457 \\f obstack_1grow (&obstack_for_string, '\f');
458 \\n obstack_1grow (&obstack_for_string, '\n');
459 \\r obstack_1grow (&obstack_for_string, '\r');
460 \\t obstack_1grow (&obstack_for_string, '\t');
461 \\v obstack_1grow (&obstack_for_string, '\v');
463 /* \\[\"\'?\\] would be shorter, but it confuses xgettext. */
464 \\("\""|"'"|"?"|"\\") obstack_1grow (&obstack_for_string, yytext[1]);
466 \\(u|U[0-9abcdefABCDEF]{4})[0-9abcdefABCDEF]{4} {
467 int c = convert_ucn_to_byte (yytext);
469 complain_at (*loc, _("invalid escape sequence: %s"), quote (yytext));
471 complain_at (*loc, _("invalid null character: %s"), quote (yytext));
473 obstack_1grow (&obstack_for_string, c);
476 complain_at (*loc, _("unrecognized escape sequence: %s"), quote (yytext));
481 /*--------------------------------------------.
482 | Scanning user-code characters and strings. |
483 `--------------------------------------------*/
485 <SC_CHARACTER,SC_STRING>
487 {splice}|\\{splice}[^\n$@\[\]] STRING_GROW;
492 "'" STRING_GROW; BEGIN context_state;
493 \n unexpected_newline (token_start, "'"); BEGIN context_state;
494 <<EOF>> unexpected_eof (token_start, "'"); BEGIN context_state;
499 "\"" STRING_GROW; BEGIN context_state;
500 \n unexpected_newline (token_start, "\""); BEGIN context_state;
501 <<EOF>> unexpected_eof (token_start, "\""); BEGIN context_state;
505 /*---------------------------------------------------.
506 | Strings, comments etc. can be found in user code. |
507 `---------------------------------------------------*/
509 <SC_BRACED_CODE,SC_PROLOGUE,SC_EPILOGUE>
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 token_start = loc->start;
531 context_state = YY_START;
532 BEGIN SC_LINE_COMMENT;
537 /*---------------------------------------------------------------.
538 | Scanning after %union etc., possibly followed by white space. |
539 | For %union only, allow arbitrary C code to appear before the |
540 | following brace, as an extension to POSIX. |
541 `---------------------------------------------------------------*/
546 bool valid = yytext[0] == '{' || token_type == PERCENT_UNION;
547 scanner_cursor.column -= mbsnwidth (yytext, yyleng, 0);
553 code_start = loc->start;
554 BEGIN SC_BRACED_CODE;
558 complain_at (*loc, _("missing `{' in %s"),
559 token_name (token_type));
560 obstack_sgrow (&obstack_for_string, "{}");
562 val->chars = last_string;
568 <<EOF>> unexpected_eof (scanner_cursor, "{}"); BEGIN INITIAL;
572 /*---------------------------------------------------------------.
573 | Scanning some code in braces (%union and actions). The initial |
574 | "{" is already eaten. |
575 `---------------------------------------------------------------*/
579 "{"|"<"{splice}"%" STRING_GROW; braces_level++;
580 "%"{splice}">" STRING_GROW; braces_level--;
582 bool outer_brace = --braces_level < 0;
584 /* As an undocumented Bison extension, append `;' before the last
585 brace in braced code, so that the user code can omit trailing
586 `;'. But do not append `;' if emulating Yacc, since Yacc does
589 FIXME: Bison should warn if a semicolon seems to be necessary
590 here, and should omit the semicolon if it seems unnecessary
591 (e.g., after ';', '{', or '}', each followed by comments or
592 white space). Such a warning shouldn't depend on --yacc; it
593 should depend on a new --pedantic option, which would cause
594 Bison to warn if it detects an extension to POSIX. --pedantic
595 should also diagnose other Bison extensions like %yacc.
596 Perhaps there should also be a GCC-style --pedantic-errors
597 option, so that such warnings are diagnosed as errors. */
598 if (outer_brace && token_type == BRACED_CODE && ! yacc_flag)
599 obstack_1grow (&obstack_for_string, ';');
601 obstack_1grow (&obstack_for_string, '}');
607 loc->start = code_start;
608 val->chars = last_string;
614 /* Tokenize `<<%' correctly (as `<<' `%') rather than incorrrectly
616 "<"{splice}"<" STRING_GROW;
618 "$"("<"{tag}">")?(-?[0-9]+|"$") handle_dollar (token_type, yytext, *loc);
619 "@"(-?[0-9]+|"$") handle_at (token_type, yytext, *loc);
621 <<EOF>> unexpected_eof (code_start, "}"); BEGIN INITIAL;
625 /*--------------------------------------------------------------.
626 | Scanning some prologue: from "%{" (already scanned) to "%}". |
627 `--------------------------------------------------------------*/
633 loc->start = code_start;
634 val->chars = last_string;
639 <<EOF>> unexpected_eof (code_start, "%}"); BEGIN INITIAL;
643 /*---------------------------------------------------------------.
644 | Scanning the epilogue (everything after the second "%%", which |
645 | has already been eaten). |
646 `---------------------------------------------------------------*/
652 loc->start = code_start;
653 val->chars = last_string;
660 /*-----------------------------------------.
661 | Escape M4 quoting characters in C code. |
662 `-----------------------------------------*/
664 <SC_COMMENT,SC_LINE_COMMENT,SC_STRING,SC_CHARACTER,SC_BRACED_CODE,SC_PROLOGUE,SC_EPILOGUE>
666 \$ obstack_sgrow (&obstack_for_string, "$][");
667 \@ obstack_sgrow (&obstack_for_string, "@@");
668 \[ obstack_sgrow (&obstack_for_string, "@{");
669 \] obstack_sgrow (&obstack_for_string, "@}");
673 /*-----------------------------------------------------.
674 | By default, grow the string obstack with the input. |
675 `-----------------------------------------------------*/
677 <SC_COMMENT,SC_LINE_COMMENT,SC_BRACED_CODE,SC_PROLOGUE,SC_EPILOGUE,SC_STRING,SC_CHARACTER,SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>. |
678 <SC_COMMENT,SC_LINE_COMMENT,SC_BRACED_CODE,SC_PROLOGUE,SC_EPILOGUE>\n STRING_GROW;
682 /* Keeps track of the maximum number of semantic values to the left of
683 a handle (those referenced by $0, $-1, etc.) are required by the
684 semantic actions of this grammar. */
685 int max_left_semantic_context = 0;
687 /* Set *LOC and adjust scanner cursor to account for token TOKEN of
691 adjust_location (location *loc, char const *token, size_t size)
693 int line = scanner_cursor.line;
694 int column = scanner_cursor.column;
695 char const *p0 = token;
696 char const *p = token;
697 char const *lim = token + size;
699 loc->start = scanner_cursor;
701 for (p = token; p < lim; p++)
711 column += mbsnwidth (p0, p - p0, 0);
712 column += 8 - ((column - 1) & 7);
717 scanner_cursor.line = line;
718 scanner_cursor.column = column + mbsnwidth (p0, p - p0, 0);
720 loc->end = scanner_cursor;
724 /* Read bytes from FP into buffer BUF of size SIZE. Return the
725 number of bytes read. Remove '\r' from input, treating \r\n
726 and isolated \r as \n. */
729 no_cr_read (FILE *fp, char *buf, size_t size)
731 size_t bytes_read = fread (buf, 1, size, fp);
734 char *w = memchr (buf, '\r', bytes_read);
738 char const *lim = buf + bytes_read;
742 /* Found an '\r'. Treat it like '\n', but ignore any
743 '\n' that immediately follows. */
748 if (ch != '\n' && ungetc (ch, fp) != ch)
754 /* Copy until the next '\r'. */
760 while ((*w++ = *r++) != '\r');
771 /*------------------------------------------------------------------.
772 | TEXT is pointing to a wannabee semantic value (i.e., a `$'). |
774 | Possible inputs: $[<TYPENAME>]($|integer) |
776 | Output to OBSTACK_FOR_STRING a reference to this semantic value. |
777 `------------------------------------------------------------------*/
780 handle_action_dollar (char *text, location loc)
782 const char *type_name = NULL;
788 /* Get the type name if explicit. */
801 type_name = symbol_list_n_type_name_get (current_rule, loc, 0);
802 if (!type_name && typed)
803 complain_at (loc, _("$$ of `%s' has no declared type"),
804 current_rule->sym->tag);
807 obstack_fgrow1 (&obstack_for_string,
808 "]b4_lhs_value([%s])[", type_name);
814 num = strtol (cp, 0, 10);
816 if (INT_MIN <= num && num <= rule_length && ! get_errno ())
819 if (1-n > max_left_semantic_context)
820 max_left_semantic_context = 1-n;
821 if (!type_name && n > 0)
822 type_name = symbol_list_n_type_name_get (current_rule, loc, n);
823 if (!type_name && typed)
824 complain_at (loc, _("$%d of `%s' has no declared type"),
825 n, current_rule->sym->tag);
828 obstack_fgrow3 (&obstack_for_string,
829 "]b4_rhs_value(%d, %d, [%s])[",
830 rule_length, n, type_name);
833 complain_at (loc, _("integer out of range: %s"), quote (text));
840 /*----------------------------------------------------------------.
841 | Map `$?' onto the proper M4 symbol, depending on its TOKEN_TYPE |
842 | (are we in an action?). |
843 `----------------------------------------------------------------*/
846 handle_dollar (int token_type, char *text, location loc)
851 if (handle_action_dollar (text, loc))
855 case PERCENT_DESTRUCTOR:
856 case PERCENT_INITIAL_ACTION:
857 case PERCENT_PRINTER:
860 obstack_sgrow (&obstack_for_string, "]b4_dollar_dollar[");
869 complain_at (loc, _("invalid value: %s"), quote (text));
873 /*------------------------------------------------------.
874 | TEXT is a location token (i.e., a `@...'). Output to |
875 | OBSTACK_FOR_STRING a reference to this location. |
876 `------------------------------------------------------*/
879 handle_action_at (char *text, location loc)
882 locations_flag = true;
888 obstack_sgrow (&obstack_for_string, "]b4_lhs_location[");
893 num = strtol (cp, 0, 10);
895 if (INT_MIN <= num && num <= rule_length && ! get_errno ())
898 obstack_fgrow2 (&obstack_for_string, "]b4_rhs_location(%d, %d)[",
902 complain_at (loc, _("integer out of range: %s"), quote (text));
909 /*----------------------------------------------------------------.
910 | Map `@?' onto the proper M4 symbol, depending on its TOKEN_TYPE |
911 | (are we in an action?). |
912 `----------------------------------------------------------------*/
915 handle_at (int token_type, char *text, location loc)
920 handle_action_at (text, loc);
923 case PERCENT_INITIAL_ACTION:
924 case PERCENT_DESTRUCTOR:
925 case PERCENT_PRINTER:
928 obstack_sgrow (&obstack_for_string, "]b4_at_dollar[");
937 complain_at (loc, _("invalid value: %s"), quote (text));
941 /*------------------------------------------------------.
942 | Scan NUMBER for a base-BASE integer at location LOC. |
943 `------------------------------------------------------*/
945 static unsigned long int
946 scan_integer (char const *number, int base, location loc)
948 unsigned long int num;
950 num = strtoul (number, 0, base);
951 if (INT_MAX < num || get_errno ())
953 complain_at (loc, _("integer out of range: %s"), quote (number));
960 /*------------------------------------------------------------------.
961 | Convert universal character name UCN to a single-byte character, |
962 | and return that character. Return -1 if UCN does not correspond |
963 | to a single-byte character. |
964 `------------------------------------------------------------------*/
967 convert_ucn_to_byte (char const *ucn)
969 unsigned long int code = strtoul (ucn + 2, 0, 16);
971 /* FIXME: Currently we assume Unicode-compatible unibyte characters
972 on ASCII hosts (i.e., Latin-1 on hosts with 8-bit bytes). On
973 non-ASCII hosts we support only the portable C character set.
974 These limitations should be removed once we add support for
975 multibyte characters. */
977 if (UCHAR_MAX < code)
980 #if ! ('$' == 0x24 && '@' == 0x40 && '`' == 0x60 && '~' == 0x7e)
982 /* A non-ASCII host. Use CODE to index into a table of the C
983 basic execution character set, which is guaranteed to exist on
984 all Standard C platforms. This table also includes '$', '@',
985 and '`', which are not in the basic execution character set but
986 which are unibyte characters on all the platforms that we know
988 static signed char const table[] =
990 '\0', -1, -1, -1, -1, -1, -1, '\a',
991 '\b', '\t', '\n', '\v', '\f', '\r', -1, -1,
992 -1, -1, -1, -1, -1, -1, -1, -1,
993 -1, -1, -1, -1, -1, -1, -1, -1,
994 ' ', '!', '"', '#', '$', '%', '&', '\'',
995 '(', ')', '*', '+', ',', '-', '.', '/',
996 '0', '1', '2', '3', '4', '5', '6', '7',
997 '8', '9', ':', ';', '<', '=', '>', '?',
998 '@', 'A', 'B', 'C', 'D', 'E', 'F', 'G',
999 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O',
1000 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W',
1001 'X', 'Y', 'Z', '[', '\\', ']', '^', '_',
1002 '`', 'a', 'b', 'c', 'd', 'e', 'f', 'g',
1003 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o',
1004 'p', 'q', 'r', 's', 't', 'u', 'v', 'w',
1005 'x', 'y', 'z', '{', '|', '}', '~'
1008 code = code < sizeof table ? table[code] : -1;
1016 /*----------------------------------------------------------------.
1017 | Handle `#line INT "FILE"'. ARGS has already skipped `#line '. |
1018 `----------------------------------------------------------------*/
1021 handle_syncline (char *args)
1023 int lineno = strtol (args, &args, 10);
1024 const char *file = NULL;
1025 file = strchr (args, '"') + 1;
1026 *strchr (file, '"') = 0;
1027 scanner_cursor.file = current_file = uniqstr_new (file);
1028 scanner_cursor.line = lineno;
1029 scanner_cursor.column = 1;
1033 /*----------------------------------------------------------------.
1034 | For a token or comment starting at START, report message MSGID, |
1035 | which should say that an end marker was found before |
1036 | the expected TOKEN_END. |
1037 `----------------------------------------------------------------*/
1040 unexpected_end (boundary start, char const *msgid, char const *token_end)
1044 loc.end = scanner_cursor;
1045 complain_at (loc, _(msgid), token_end);
1049 /*------------------------------------------------------------------------.
1050 | Report an unexpected EOF in a token or comment starting at START. |
1051 | An end of file was encountered and the expected TOKEN_END was missing. |
1052 `------------------------------------------------------------------------*/
1055 unexpected_eof (boundary start, char const *token_end)
1057 unexpected_end (start, N_("missing `%s' at end of file"), token_end);
1061 /*----------------------------------------.
1062 | Likewise, but for unexpected newlines. |
1063 `----------------------------------------*/
1066 unexpected_newline (boundary start, char const *token_end)
1068 unexpected_end (start, N_("missing `%s' at end of line"), token_end);
1072 /*-------------------------.
1073 | Initialize the scanner. |
1074 `-------------------------*/
1077 scanner_initialize (void)
1079 obstack_init (&obstack_for_string);
1083 /*-----------------------------------------------.
1084 | Free all the memory allocated to the scanner. |
1085 `-----------------------------------------------*/
1090 obstack_free (&obstack_for_string, 0);
1091 /* Reclaim Flex's buffers. */
1092 yy_delete_buffer (YY_CURRENT_BUFFER);