1 /* Bison Grammar Scanner -*- C -*-
3 Copyright (C) 2002, 2003 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., 59 Temple Place, Suite 330, Boston, MA
23 %option debug nodefault noyywrap never-interactive
24 %option prefix="gram_" outfile="lex.yy.c"
30 #include <get-errno.h>
40 #define YY_USER_INIT \
43 scanner_cursor.file = current_file; \
44 scanner_cursor.line = 1; \
45 scanner_cursor.column = 1; \
49 /* Location of scanner cursor. */
50 boundary scanner_cursor;
52 static void adjust_location (location *, char const *, size_t);
53 #define YY_USER_ACTION adjust_location (loc, yytext, yyleng);
55 static size_t no_cr_read (FILE *, char *, size_t);
56 #define YY_INPUT(buf, result, size) ((result) = no_cr_read (yyin, buf, size))
59 /* OBSTACK_FOR_STRING -- Used to store all the characters that we need to
60 keep (to construct ID, STRINGS etc.). Use the following macros to
63 Use STRING_GROW to append what has just been matched, and
64 STRING_FINISH to end the string (it puts the ending 0).
65 STRING_FINISH also stores this string in LAST_STRING, which can be
66 used, and which is used by STRING_FREE to free the last string. */
68 static struct obstack obstack_for_string;
70 /* A string representing the most recently saved token. */
71 static char *last_string;
75 obstack_grow (&obstack_for_string, yytext, yyleng)
77 #define STRING_FINISH \
79 obstack_1grow (&obstack_for_string, '\0'); \
80 last_string = obstack_finish (&obstack_for_string); \
84 obstack_free (&obstack_for_string, last_string)
87 scanner_last_string_free (void)
92 /* Within well-formed rules, RULE_LENGTH is the number of values in
93 the current rule so far, which says where to find `$0' with respect
94 to the top of the stack. It is not the same as the rule->length in
95 the case of mid rule actions.
97 Outside of well-formed rules, RULE_LENGTH has an undefined value. */
98 static int rule_length;
100 static void handle_dollar (int token_type, char *cp, location loc);
101 static void handle_at (int token_type, char *cp, location loc);
102 static void handle_syncline (char *args);
103 static int convert_ucn_to_byte (char const *hex_text);
104 static void unexpected_end_of_file (boundary, char const *);
107 %x SC_COMMENT SC_LINE_COMMENT SC_YACC_COMMENT
108 %x SC_STRING SC_CHARACTER
109 %x SC_AFTER_IDENTIFIER
110 %x SC_ESCAPED_STRING SC_ESCAPED_CHARACTER
111 %x SC_PRE_CODE SC_BRACED_CODE SC_PROLOGUE SC_EPILOGUE
113 letter [.abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ_]
114 id {letter}({letter}|[0-9])*
115 directive %{letter}({letter}|[0-9]|-)*
118 /* POSIX says that a tag must be both an id and a C union member, but
119 historically almost any character is allowed in a tag. We disallow
120 NUL and newline, as this simplifies our implementation. */
123 /* Zero or more instances of backslash-newline. Following GCC, allow
124 white space between the backslash and the newline. */
125 splice (\\[ \f\t\v]*\n)*
129 /* Nesting level of the current code in braces. */
130 int braces_level IF_LINT (= 0);
132 /* Parent context state, when applicable. */
133 int context_state IF_LINT (= 0);
135 /* Token type to return, when applicable. */
136 int token_type IF_LINT (= 0);
138 /* Location of most recent identifier, when applicable. */
139 location id_loc IF_LINT (= *loc);
141 /* Where containing code started, when applicable. */
142 boundary code_start IF_LINT (= loc->start);
144 /* Where containing comment or string or character literal started,
146 boundary token_start IF_LINT (= loc->start);
150 /*-----------------------.
151 | Scanning white space. |
152 `-----------------------*/
154 <INITIAL,SC_AFTER_IDENTIFIER,SC_PRE_CODE>
157 "," warn_at (*loc, _("stray `,' treated as white space"));
162 token_start = loc->start;
163 context_state = YY_START;
164 BEGIN SC_YACC_COMMENT;
167 /* #line directives are not documented, and may be withdrawn or
168 modified in future versions of Bison. */
169 ^"#line "{int}" \"".*"\"\n" {
170 handle_syncline (yytext + sizeof "#line " - 1);
175 /*----------------------------.
176 | Scanning Bison directives. |
177 `----------------------------*/
180 "%binary" return PERCENT_NONASSOC;
181 "%debug" return PERCENT_DEBUG;
182 "%define" return PERCENT_DEFINE;
183 "%defines" return PERCENT_DEFINES;
184 "%destructor" token_type = PERCENT_DESTRUCTOR; BEGIN SC_PRE_CODE;
185 "%dprec" return PERCENT_DPREC;
186 "%error"[-_]"verbose" return PERCENT_ERROR_VERBOSE;
187 "%expect" return PERCENT_EXPECT;
188 "%file-prefix" return PERCENT_FILE_PREFIX;
189 "%fixed"[-_]"output"[-_]"files" return PERCENT_YACC;
190 "%glr-parser" return PERCENT_GLR_PARSER;
191 "%left" return PERCENT_LEFT;
192 "%lex-param" token_type = PERCENT_LEX_PARAM; BEGIN SC_PRE_CODE;
193 "%locations" return PERCENT_LOCATIONS;
194 "%merge" return PERCENT_MERGE;
195 "%name"[-_]"prefix" return PERCENT_NAME_PREFIX;
196 "%no"[-_]"lines" return PERCENT_NO_LINES;
197 "%nonassoc" return PERCENT_NONASSOC;
198 "%nterm" return PERCENT_NTERM;
199 "%output" return PERCENT_OUTPUT;
200 "%parse-param" token_type = PERCENT_PARSE_PARAM; BEGIN SC_PRE_CODE;
201 "%prec" rule_length--; return PERCENT_PREC;
202 "%printer" token_type = PERCENT_PRINTER; BEGIN SC_PRE_CODE;
203 "%pure"[-_]"parser" return PERCENT_PURE_PARSER;
204 "%right" return PERCENT_RIGHT;
205 "%skeleton" return PERCENT_SKELETON;
206 "%start" return PERCENT_START;
207 "%term" return PERCENT_TOKEN;
208 "%token" return PERCENT_TOKEN;
209 "%token"[-_]"table" return PERCENT_TOKEN_TABLE;
210 "%type" return PERCENT_TYPE;
211 "%union" token_type = PERCENT_UNION; BEGIN SC_PRE_CODE;
212 "%verbose" return PERCENT_VERBOSE;
213 "%yacc" return PERCENT_YACC;
216 complain_at (*loc, _("invalid directive: %s"), quote (yytext));
220 "|" rule_length = 0; return PIPE;
221 ";" return SEMICOLON;
224 val->symbol = symbol_get (yytext, *loc);
227 BEGIN SC_AFTER_IDENTIFIER;
233 num = strtoul (yytext, 0, 10);
234 if (INT_MAX < num || get_errno ())
236 complain_at (*loc, _("integer out of range: %s"), quote (yytext));
243 /* Characters. We don't check there is only one. */
244 "'" STRING_GROW; token_start = loc->start; BEGIN SC_ESCAPED_CHARACTER;
247 "\"" STRING_GROW; token_start = loc->start; BEGIN SC_ESCAPED_STRING;
250 "%{" code_start = loc->start; BEGIN SC_PROLOGUE;
252 /* Code in between braces. */
255 token_type = BRACED_CODE;
257 code_start = loc->start;
258 BEGIN SC_BRACED_CODE;
263 obstack_grow (&obstack_for_string, yytext + 1, yyleng - 2);
265 val->uniqstr = uniqstr_new (last_string);
271 static int percent_percent_count;
272 if (++percent_percent_count == 2)
274 code_start = loc->start;
277 return PERCENT_PERCENT;
281 complain_at (*loc, _("invalid character: %s"), quote (yytext));
286 /*-----------------------------------------------------------------.
287 | Scanning after an identifier, checking whether a colon is next. |
288 `-----------------------------------------------------------------*/
290 <SC_AFTER_IDENTIFIER>
299 scanner_cursor.column -= mbsnwidth (yytext, yyleng, 0);
313 /*---------------------------------------------------------------.
314 | Scanning a Yacc comment. The initial `/ *' is already eaten. |
315 `---------------------------------------------------------------*/
319 "*/" BEGIN context_state;
321 <<EOF>> unexpected_end_of_file (token_start, "*/");
325 /*------------------------------------------------------------.
326 | Scanning a C comment. The initial `/ *' is already eaten. |
327 `------------------------------------------------------------*/
331 "*"{splice}"/" STRING_GROW; BEGIN context_state;
332 <<EOF>> unexpected_end_of_file (token_start, "*/");
336 /*--------------------------------------------------------------.
337 | Scanning a line comment. The initial `//' is already eaten. |
338 `--------------------------------------------------------------*/
342 "\n" STRING_GROW; BEGIN context_state;
343 {splice} STRING_GROW;
344 <<EOF>> BEGIN context_state;
348 /*----------------------------------------------------------------.
349 | Scanning a C string, including its escapes. The initial `"' is |
351 `----------------------------------------------------------------*/
358 loc->start = token_start;
359 val->chars = last_string;
366 <<EOF>> unexpected_end_of_file (token_start, "\"");
369 /*---------------------------------------------------------------.
370 | Scanning a C character, decoding its escapes. The initial "'" |
371 | is already eaten. |
372 `---------------------------------------------------------------*/
374 <SC_ESCAPED_CHARACTER>
377 unsigned char last_string_1;
380 loc->start = token_start;
381 val->symbol = symbol_get (last_string, *loc);
382 symbol_class_set (val->symbol, token_sym, *loc);
383 last_string_1 = last_string[1];
384 symbol_user_token_number_set (val->symbol, last_string_1, *loc);
392 <<EOF>> unexpected_end_of_file (token_start, "'");
396 /*----------------------------.
397 | Decode escaped characters. |
398 `----------------------------*/
400 <SC_ESCAPED_STRING,SC_ESCAPED_CHARACTER>
403 unsigned long c = strtoul (yytext + 1, 0, 8);
405 complain_at (*loc, _("invalid escape sequence: %s"), quote (yytext));
407 obstack_1grow (&obstack_for_string, c);
410 \\x[0-9abcdefABCDEF]+ {
413 c = strtoul (yytext + 2, 0, 16);
414 if (UCHAR_MAX < c || get_errno ())
415 complain_at (*loc, _("invalid escape sequence: %s"), quote (yytext));
417 obstack_1grow (&obstack_for_string, c);
420 \\a obstack_1grow (&obstack_for_string, '\a');
421 \\b obstack_1grow (&obstack_for_string, '\b');
422 \\f obstack_1grow (&obstack_for_string, '\f');
423 \\n obstack_1grow (&obstack_for_string, '\n');
424 \\r obstack_1grow (&obstack_for_string, '\r');
425 \\t obstack_1grow (&obstack_for_string, '\t');
426 \\v obstack_1grow (&obstack_for_string, '\v');
428 /* \\[\"\'?\\] would be shorter, but it confuses xgettext. */
429 \\("\""|"'"|"?"|"\\") obstack_1grow (&obstack_for_string, yytext[1]);
431 \\(u|U[0-9abcdefABCDEF]{4})[0-9abcdefABCDEF]{4} {
432 int c = convert_ucn_to_byte (yytext);
434 complain_at (*loc, _("invalid escape sequence: %s"), quote (yytext));
436 obstack_1grow (&obstack_for_string, c);
439 complain_at (*loc, _("unrecognized escape sequence: %s"), quote (yytext));
445 /*----------------------------------------------------------.
446 | Scanning a C character without decoding its escapes. The |
447 | initial "'" is already eaten. |
448 `----------------------------------------------------------*/
452 "'" STRING_GROW; BEGIN context_state;
453 \\{splice}[^$@\[\]] STRING_GROW;
454 <<EOF>> unexpected_end_of_file (token_start, "'");
458 /*----------------------------------------------------------------.
459 | Scanning a C string, without decoding its escapes. The initial |
460 | `"' is already eaten. |
461 `----------------------------------------------------------------*/
465 "\"" STRING_GROW; BEGIN context_state;
466 \\{splice}[^$@\[\]] STRING_GROW;
467 <<EOF>> unexpected_end_of_file (token_start, "\"");
471 /*---------------------------------------------------.
472 | Strings, comments etc. can be found in user code. |
473 `---------------------------------------------------*/
475 <SC_BRACED_CODE,SC_PROLOGUE,SC_EPILOGUE>
479 context_state = YY_START;
480 token_start = loc->start;
485 context_state = YY_START;
486 token_start = loc->start;
491 context_state = YY_START;
492 token_start = loc->start;
497 context_state = YY_START;
498 BEGIN SC_LINE_COMMENT;
503 /*---------------------------------------------------------------.
504 | Scanning after %union etc., possibly followed by white space. |
505 | For %union only, allow arbitrary C code to appear before the |
506 | following brace, as an extension to POSIX. |
507 `---------------------------------------------------------------*/
512 bool valid = yytext[0] == '{' || token_type == PERCENT_UNION;
513 scanner_cursor.column -= mbsnwidth (yytext, yyleng, 0);
519 code_start = loc->start;
520 BEGIN SC_BRACED_CODE;
524 complain_at (*loc, _("missing `{' in `%s'"),
525 token_name (token_type));
526 obstack_sgrow (&obstack_for_string, "{}");
528 val->chars = last_string;
536 /*---------------------------------------------------------------.
537 | Scanning some code in braces (%union and actions). The initial |
538 | "{" is already eaten. |
539 `---------------------------------------------------------------*/
543 "{"|"<"{splice}"%" STRING_GROW; braces_level++;
544 "%"{splice}">" STRING_GROW; braces_level--;
546 bool outer_brace = --braces_level < 0;
548 /* As an undocumented Bison extension, append `;' before the last
549 brace in braced code, so that the user code can omit trailing
550 `;'. But do not append `;' if emulating Yacc, since Yacc does
553 FIXME: Bison should warn if a semicolon seems to be necessary
554 here, and should omit the semicolon if it seems unnecessary
555 (e.g., after ';', '{', or '}', each followed by comments or
556 white space). Such a warning shouldn't depend on --yacc; it
557 should depend on a new --pedantic option, which would cause
558 Bison to warn if it detects an extension to POSIX. --pedantic
559 should also diagnose other Bison extensions like %yacc.
560 Perhaps there should also be a GCC-style --pedantic-errors
561 option, so that such warnings are diagnosed as errors. */
562 if (outer_brace && token_type == BRACED_CODE && ! yacc_flag)
563 obstack_1grow (&obstack_for_string, ';');
565 obstack_1grow (&obstack_for_string, '}');
571 loc->start = code_start;
572 val->chars = last_string;
578 /* Tokenize `<<%' correctly (as `<<' `%') rather than incorrrectly
580 "<"{splice}"<" STRING_GROW;
582 "$"("<"{tag}">")?(-?[0-9]+|"$") handle_dollar (token_type, yytext, *loc);
583 "@"(-?[0-9]+|"$") handle_at (token_type, yytext, *loc);
585 <<EOF>> unexpected_end_of_file (code_start, "}");
589 /*--------------------------------------------------------------.
590 | Scanning some prologue: from "%{" (already scanned) to "%}". |
591 `--------------------------------------------------------------*/
597 loc->start = code_start;
598 val->chars = last_string;
603 <<EOF>> unexpected_end_of_file (code_start, "%}");
607 /*---------------------------------------------------------------.
608 | Scanning the epilogue (everything after the second "%%", which |
609 | has already been eaten). |
610 `---------------------------------------------------------------*/
616 loc->start = code_start;
617 val->chars = last_string;
624 /*----------------------------------------------------------------.
625 | By default, grow the string obstack with the input, escaping M4 |
626 | quoting characters. |
627 `----------------------------------------------------------------*/
629 <SC_COMMENT,SC_LINE_COMMENT,SC_STRING,SC_CHARACTER,SC_BRACED_CODE,SC_PROLOGUE,SC_EPILOGUE>
631 \$ obstack_sgrow (&obstack_for_string, "$][");
632 \@ obstack_sgrow (&obstack_for_string, "@@");
633 \[ obstack_sgrow (&obstack_for_string, "@{");
634 \] obstack_sgrow (&obstack_for_string, "@}");
641 /* Set *LOC and adjust scanner cursor to account for token TOKEN of
645 adjust_location (location *loc, char const *token, size_t size)
647 int line = scanner_cursor.line;
648 int column = scanner_cursor.column;
649 char const *p0 = token;
650 char const *p = token;
651 char const *lim = token + size;
653 loc->start = scanner_cursor;
655 for (p = token; p < lim; p++)
665 column += mbsnwidth (p0, p - p0, 0);
666 column += 8 - ((column - 1) & 7);
671 scanner_cursor.line = line;
672 scanner_cursor.column = column + mbsnwidth (p0, p - p0, 0);
674 loc->end = scanner_cursor;
678 /* Read bytes from FP into buffer BUF of size SIZE. Return the
679 number of bytes read. Remove '\r' from input, treating \r\n
680 and isolated \r as \n. */
683 no_cr_read (FILE *fp, char *buf, size_t size)
685 size_t bytes_read = fread (buf, 1, size, fp);
688 char *w = memchr (buf, '\r', bytes_read);
692 char const *lim = buf + bytes_read;
696 /* Found an '\r'. Treat it like '\n', but ignore any
697 '\n' that immediately follows. */
702 if (ch != '\n' && ungetc (ch, fp) != ch)
708 /* Copy until the next '\r'. */
714 while ((*w++ = *r++) != '\r');
725 /*------------------------------------------------------------------.
726 | TEXT is pointing to a wannabee semantic value (i.e., a `$'). |
728 | Possible inputs: $[<TYPENAME>]($|integer) |
730 | Output to OBSTACK_FOR_STRING a reference to this semantic value. |
731 `------------------------------------------------------------------*/
734 handle_action_dollar (char *text, location loc)
736 const char *type_name = NULL;
742 /* Get the type name if explicit. */
755 type_name = symbol_list_n_type_name_get (current_rule, loc, 0);
756 if (!type_name && typed)
757 complain_at (loc, _("$$ of `%s' has no declared type"),
758 current_rule->sym->tag);
761 obstack_fgrow1 (&obstack_for_string,
762 "]b4_lhs_value([%s])[", type_name);
768 num = strtol (cp, 0, 10);
770 if (INT_MIN <= num && num <= rule_length && ! get_errno ())
773 if (!type_name && n > 0)
774 type_name = symbol_list_n_type_name_get (current_rule, loc, n);
775 if (!type_name && typed)
776 complain_at (loc, _("$%d of `%s' has no declared type"),
777 n, current_rule->sym->tag);
780 obstack_fgrow3 (&obstack_for_string,
781 "]b4_rhs_value([%d], [%d], [%s])[",
782 rule_length, n, type_name);
785 complain_at (loc, _("integer out of range: %s"), quote (text));
792 /*-----------------------------------------------------------------.
793 | Dispatch onto handle_action_dollar, or handle_destructor_dollar, |
794 | depending upon TOKEN_TYPE. |
795 `-----------------------------------------------------------------*/
798 handle_dollar (int token_type, char *text, location loc)
803 if (handle_action_dollar (text, loc))
807 case PERCENT_DESTRUCTOR:
808 case PERCENT_PRINTER:
811 obstack_sgrow (&obstack_for_string, "]b4_dollar_dollar[");
820 complain_at (loc, _("invalid value: %s"), quote (text));
824 /*------------------------------------------------------.
825 | TEXT is a location token (i.e., a `@...'). Output to |
826 | OBSTACK_FOR_STRING a reference to this location. |
827 `------------------------------------------------------*/
830 handle_action_at (char *text, location loc)
839 obstack_sgrow (&obstack_for_string, "]b4_lhs_location[");
844 num = strtol (cp, 0, 10);
846 if (INT_MIN <= num && num <= rule_length && ! get_errno ())
849 obstack_fgrow2 (&obstack_for_string, "]b4_rhs_location([%d], [%d])[",
853 complain_at (loc, _("integer out of range: %s"), quote (text));
860 /*-------------------------------------------------------------------.
861 | Dispatch onto handle_action_at, or handle_destructor_at, depending |
863 `-------------------------------------------------------------------*/
866 handle_at (int token_type, char *text, location loc)
871 handle_action_at (text, loc);
874 case PERCENT_DESTRUCTOR:
875 case PERCENT_PRINTER:
878 obstack_sgrow (&obstack_for_string, "]b4_at_dollar[");
887 complain_at (loc, _("invalid value: %s"), quote (text));
891 /*------------------------------------------------------------------.
892 | Convert universal character name UCN to a single-byte character, |
893 | and return that character. Return -1 if UCN does not correspond |
894 | to a single-byte character. |
895 `------------------------------------------------------------------*/
898 convert_ucn_to_byte (char const *ucn)
900 unsigned long code = strtoul (ucn + 2, 0, 16);
902 /* FIXME: Currently we assume Unicode-compatible unibyte characters
903 on ASCII hosts (i.e., Latin-1 on hosts with 8-bit bytes). On
904 non-ASCII hosts we support only the portable C character set.
905 These limitations should be removed once we add support for
906 multibyte characters. */
908 if (UCHAR_MAX < code)
911 #if ! ('$' == 0x24 && '@' == 0x40 && '`' == 0x60 && '~' == 0x7e)
913 /* A non-ASCII host. Use CODE to index into a table of the C
914 basic execution character set, which is guaranteed to exist on
915 all Standard C platforms. This table also includes '$', '@',
916 and '`', which are not in the basic execution character set but
917 which are unibyte characters on all the platforms that we know
919 static signed char const table[] =
921 '\0', -1, -1, -1, -1, -1, -1, '\a',
922 '\b', '\t', '\n', '\v', '\f', '\r', -1, -1,
923 -1, -1, -1, -1, -1, -1, -1, -1,
924 -1, -1, -1, -1, -1, -1, -1, -1,
925 ' ', '!', '"', '#', '$', '%', '&', '\'',
926 '(', ')', '*', '+', ',', '-', '.', '/',
927 '0', '1', '2', '3', '4', '5', '6', '7',
928 '8', '9', ':', ';', '<', '=', '>', '?',
929 '@', 'A', 'B', 'C', 'D', 'E', 'F', 'G',
930 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O',
931 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W',
932 'X', 'Y', 'Z', '[', '\\', ']', '^', '_',
933 '`', 'a', 'b', 'c', 'd', 'e', 'f', 'g',
934 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o',
935 'p', 'q', 'r', 's', 't', 'u', 'v', 'w',
936 'x', 'y', 'z', '{', '|', '}', '~'
939 code = code < sizeof table ? table[code] : -1;
947 /*----------------------------------------------------------------.
948 | Handle `#line INT "FILE"'. ARGS has already skipped `#line '. |
949 `----------------------------------------------------------------*/
952 handle_syncline (char *args)
954 int lineno = strtol (args, &args, 10);
955 const char *file = NULL;
956 file = strchr (args, '"') + 1;
957 *strchr (file, '"') = 0;
958 scanner_cursor.file = current_file = xstrdup (file);
959 scanner_cursor.line = lineno;
960 scanner_cursor.column = 1;
964 /*------------------------------------------------------------------------.
965 | Report an unexpected EOF in a token or comment starting at START. |
966 | An end of file was encountered and the expected TOKEN_END was missing. |
967 | After reporting the problem, pretend that TOKEN_END was found. |
968 `------------------------------------------------------------------------*/
971 unexpected_end_of_file (boundary start, char const *token_end)
973 size_t i = strlen (token_end);
977 loc.end = scanner_cursor;
978 complain_at (loc, _("missing `%s' at end of file"), token_end);
980 /* Adjust scanner cursor so that any later message does not count
981 the characters about to be inserted. */
982 scanner_cursor.column -= i;
985 unput (token_end[--i]);
989 /*-------------------------.
990 | Initialize the scanner. |
991 `-------------------------*/
994 scanner_initialize (void)
996 obstack_init (&obstack_for_string);
1000 /*-----------------------------------------------.
1001 | Free all the memory allocated to the scanner. |
1002 `-----------------------------------------------*/
1007 obstack_free (&obstack_for_string, 0);
1008 /* Reclaim Flex's buffers. */
1009 yy_delete_buffer (YY_CURRENT_BUFFER);