mirror of
https://git.savannah.gnu.org/git/bison.git
synced 2026-03-23 03:03:02 +00:00
* src/getargs.h (trace_e): Add trace_scan, and trace_parse.
* src/getargs.c (trace_types, trace_args): Adjust. * src/reader.c (grammar_current_rule_prec_set) (grammar_current_rule_dprec_set, grammar_current_rule_merge_set): Standardize error messages. And s/@prec/%prec/! (reader): Use trace_flag to enable scanner/parser debugging, instead of an adhoc scheme. * src/scan-gram.l: Remove trailing debugging code.
This commit is contained in:
12
ChangeLog
12
ChangeLog
@@ -1,3 +1,15 @@
|
|||||||
|
2002-10-17 Akim Demaille <akim@epita.fr>
|
||||||
|
|
||||||
|
* src/getargs.h (trace_e): Add trace_scan, and trace_parse.
|
||||||
|
* src/getargs.c (trace_types, trace_args): Adjust.
|
||||||
|
* src/reader.c (grammar_current_rule_prec_set)
|
||||||
|
(grammar_current_rule_dprec_set, grammar_current_rule_merge_set):
|
||||||
|
Standardize error messages.
|
||||||
|
And s/@prec/%prec/!
|
||||||
|
(reader): Use trace_flag to enable scanner/parser debugging,
|
||||||
|
instead of an adhoc scheme.
|
||||||
|
* src/scan-gram.l: Remove trailing debugging code.
|
||||||
|
|
||||||
2002-10-16 Paul Eggert <eggert@twinsun.com>
|
2002-10-16 Paul Eggert <eggert@twinsun.com>
|
||||||
|
|
||||||
* src/muscle_tab.h (MUSCLE_TAB_H_): Was misspelled as
|
* src/muscle_tab.h (MUSCLE_TAB_H_): Was misspelled as
|
||||||
|
|||||||
@@ -52,6 +52,8 @@ static const char * const trace_args[] =
|
|||||||
/* In a series of synonyms, present the most meaningful first, so
|
/* In a series of synonyms, present the most meaningful first, so
|
||||||
that argmatch_valid be more readable. */
|
that argmatch_valid be more readable. */
|
||||||
"none - no report",
|
"none - no report",
|
||||||
|
"scan - scanner traces",
|
||||||
|
"parse - parser traces",
|
||||||
"automaton - contruction of the automaton",
|
"automaton - contruction of the automaton",
|
||||||
"bitsets - use of bitsets",
|
"bitsets - use of bitsets",
|
||||||
"grammar - reading, reducing of the grammar",
|
"grammar - reading, reducing of the grammar",
|
||||||
@@ -66,6 +68,8 @@ static const char * const trace_args[] =
|
|||||||
static const int trace_types[] =
|
static const int trace_types[] =
|
||||||
{
|
{
|
||||||
trace_none,
|
trace_none,
|
||||||
|
trace_scan,
|
||||||
|
trace_parse,
|
||||||
trace_automaton,
|
trace_automaton,
|
||||||
trace_bitsets,
|
trace_bitsets,
|
||||||
trace_grammar,
|
trace_grammar,
|
||||||
|
|||||||
@@ -39,13 +39,15 @@ extern int yacc_flag; /* for -y */
|
|||||||
enum trace_e
|
enum trace_e
|
||||||
{
|
{
|
||||||
trace_none = 0,
|
trace_none = 0,
|
||||||
trace_resource = 1 << 0,
|
trace_scan = 1 << 0,
|
||||||
trace_sets = 1 << 1,
|
trace_parse = 1 << 1,
|
||||||
trace_bitsets = 1 << 2,
|
trace_resource = 1 << 2,
|
||||||
trace_tools = 1 << 3,
|
trace_sets = 1 << 3,
|
||||||
trace_automaton = 1 << 4,
|
trace_bitsets = 1 << 4,
|
||||||
trace_grammar = 1 << 5,
|
trace_tools = 1 << 5,
|
||||||
trace_time = 1 << 6,
|
trace_automaton = 1 << 6,
|
||||||
|
trace_grammar = 1 << 7,
|
||||||
|
trace_time = 1 << 8,
|
||||||
trace_all = ~0
|
trace_all = ~0
|
||||||
};
|
};
|
||||||
extern int trace_flag;
|
extern int trace_flag;
|
||||||
|
|||||||
17
src/reader.c
17
src/reader.c
@@ -341,7 +341,7 @@ void
|
|||||||
grammar_current_rule_prec_set (symbol_t *precsym, location_t location)
|
grammar_current_rule_prec_set (symbol_t *precsym, location_t location)
|
||||||
{
|
{
|
||||||
if (current_rule->ruleprec)
|
if (current_rule->ruleprec)
|
||||||
complain_at (location, _("two @prec's in a row"));
|
complain_at (location, _("only one %s allowed per rule"), "%prec");
|
||||||
current_rule->ruleprec = precsym;
|
current_rule->ruleprec = precsym;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -351,11 +351,12 @@ void
|
|||||||
grammar_current_rule_dprec_set (int dprec, location_t location)
|
grammar_current_rule_dprec_set (int dprec, location_t location)
|
||||||
{
|
{
|
||||||
if (! glr_parser)
|
if (! glr_parser)
|
||||||
warn_at (location, _("%%dprec affects only GLR parsers"));
|
warn_at (location, _("%s affects only GLR parsers"), "%dprec");
|
||||||
if (dprec <= 0)
|
if (dprec <= 0)
|
||||||
complain_at (location, _("%%dprec must be followed by positive number"));
|
complain_at (location,
|
||||||
|
_("%s must be followed by positive number"), "%dprec");
|
||||||
else if (current_rule->dprec != 0)
|
else if (current_rule->dprec != 0)
|
||||||
complain_at (location, _("only one %%dprec allowed per rule"));
|
complain_at (location, _("only one %s allowed per rule"), "%dprec");
|
||||||
current_rule->dprec = dprec;
|
current_rule->dprec = dprec;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -366,9 +367,9 @@ void
|
|||||||
grammar_current_rule_merge_set (const char* name, location_t location)
|
grammar_current_rule_merge_set (const char* name, location_t location)
|
||||||
{
|
{
|
||||||
if (! glr_parser)
|
if (! glr_parser)
|
||||||
warn_at (location, _("%%merge affects only GLR parsers"));
|
warn_at (location, _("%s affects only GLR parsers"), "%merge");
|
||||||
if (current_rule->merger != 0)
|
if (current_rule->merger != 0)
|
||||||
complain_at (location, _("only one %%merge allowed per rule"));
|
complain_at (location, _("only one %s allowed per rule"), "%merge");
|
||||||
current_rule->merger =
|
current_rule->merger =
|
||||||
get_merge_function (name, current_rule->sym->type_name, location);
|
get_merge_function (name, current_rule->sym->type_name, location);
|
||||||
}
|
}
|
||||||
@@ -499,8 +500,8 @@ reader (void)
|
|||||||
finput = xfopen (infile, "r");
|
finput = xfopen (infile, "r");
|
||||||
gram_in = finput;
|
gram_in = finput;
|
||||||
|
|
||||||
gram_debug = !!getenv ("parse");
|
gram__flex_debug = trace_flag & trace_scan;
|
||||||
gram__flex_debug = !!getenv ("scan");
|
gram_debug = trace_flag & trace_parse;
|
||||||
scanner_initialize ();
|
scanner_initialize ();
|
||||||
gram_parse (&gram_control);
|
gram_parse (&gram_control);
|
||||||
|
|
||||||
|
|||||||
263
src/scan-gram.c
263
src/scan-gram.c
@@ -42,6 +42,12 @@
|
|||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#ifndef _WIN32
|
#ifndef _WIN32
|
||||||
#include <unistd.h>
|
#include <unistd.h>
|
||||||
|
#else
|
||||||
|
#ifndef YY_ALWAYS_INTERACTIVE
|
||||||
|
#ifndef YY_NEVER_INTERACTIVE
|
||||||
|
extern int isatty YY_PROTO(( int ));
|
||||||
|
#endif
|
||||||
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/* Use prototypes in function declarations. */
|
/* Use prototypes in function declarations. */
|
||||||
@@ -709,16 +715,16 @@ int yy_flex_debug = 1;
|
|||||||
|
|
||||||
static yyconst short int yy_rule_linenum[101] =
|
static yyconst short int yy_rule_linenum[101] =
|
||||||
{ 0,
|
{ 0,
|
||||||
130, 131, 132, 133, 134, 135, 136, 137, 138, 139,
|
119, 120, 121, 122, 123, 124, 125, 126, 127, 128,
|
||||||
140, 141, 142, 143, 144, 145, 146, 147, 148, 149,
|
129, 130, 131, 132, 133, 134, 135, 136, 137, 138,
|
||||||
150, 151, 152, 153, 154, 155, 156, 157, 158, 159,
|
139, 140, 141, 142, 143, 144, 145, 146, 147, 148,
|
||||||
160, 161, 163, 164, 165, 166, 168, 169, 170, 176,
|
149, 150, 152, 153, 154, 155, 157, 158, 159, 165,
|
||||||
179, 182, 185, 186, 189, 192, 195, 203, 209, 225,
|
168, 171, 174, 175, 178, 181, 184, 192, 198, 214,
|
||||||
226, 237, 249, 250, 251, 268, 278, 280, 300, 316,
|
215, 226, 238, 239, 240, 257, 267, 269, 289, 305,
|
||||||
318, 338, 350, 354, 355, 356, 357, 358, 359, 360,
|
307, 327, 339, 343, 344, 345, 346, 347, 348, 349,
|
||||||
361, 362, 368, 379, 385, 386, 388, 390, 408, 414,
|
350, 351, 357, 368, 374, 375, 377, 379, 397, 403,
|
||||||
415, 417, 419, 437, 440, 443, 444, 447, 458, 470,
|
404, 406, 408, 426, 429, 432, 433, 436, 447, 459,
|
||||||
472, 474, 477, 478, 481, 501, 508, 509, 510, 530
|
461, 463, 466, 467, 470, 490, 497, 498, 499, 519
|
||||||
|
|
||||||
} ;
|
} ;
|
||||||
|
|
||||||
@@ -837,7 +843,7 @@ static void handle_at PARAMS ((braced_code_t code_kind,
|
|||||||
#define SC_PROLOGUE 7
|
#define SC_PROLOGUE 7
|
||||||
#define SC_EPILOGUE 8
|
#define SC_EPILOGUE 8
|
||||||
|
|
||||||
#line 841 "scan-gram.c"
|
#line 847 "scan-gram.c"
|
||||||
|
|
||||||
/* Macros after this point can all be overridden by user definitions in
|
/* Macros after this point can all be overridden by user definitions in
|
||||||
* section 1.
|
* section 1.
|
||||||
@@ -1004,25 +1010,14 @@ YY_DECL
|
|||||||
|
|
||||||
/* At each yylex invocation, mark the current position as the
|
/* At each yylex invocation, mark the current position as the
|
||||||
start of the next token. */
|
start of the next token. */
|
||||||
#define TR_POS 0
|
|
||||||
#if TR_POS
|
|
||||||
fprintf (stderr, "FOO1: %p: ", yylloc);
|
|
||||||
LOCATION_PRINT (stderr, *yylloc);
|
|
||||||
fprintf (stderr, "\n");
|
|
||||||
#endif
|
|
||||||
YY_STEP;
|
YY_STEP;
|
||||||
#if TR_POS
|
|
||||||
fprintf (stderr, "BAR1: ");
|
|
||||||
LOCATION_PRINT (stderr, *yylloc);
|
|
||||||
fprintf (stderr, "\n");
|
|
||||||
#endif
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/*----------------------------.
|
/*----------------------------.
|
||||||
| Scanning Bison directives. |
|
| Scanning Bison directives. |
|
||||||
`----------------------------*/
|
`----------------------------*/
|
||||||
#line 1026 "scan-gram.c"
|
#line 1021 "scan-gram.c"
|
||||||
|
|
||||||
if ( yy_init )
|
if ( yy_init )
|
||||||
{
|
{
|
||||||
@@ -1124,197 +1119,197 @@ do_action: /* This label is used only to access EOF actions. */
|
|||||||
|
|
||||||
case 1:
|
case 1:
|
||||||
YY_RULE_SETUP
|
YY_RULE_SETUP
|
||||||
#line 130 "scan-gram.l"
|
#line 119 "scan-gram.l"
|
||||||
return PERCENT_NONASSOC;
|
return PERCENT_NONASSOC;
|
||||||
YY_BREAK
|
YY_BREAK
|
||||||
case 2:
|
case 2:
|
||||||
YY_RULE_SETUP
|
YY_RULE_SETUP
|
||||||
#line 131 "scan-gram.l"
|
#line 120 "scan-gram.l"
|
||||||
return PERCENT_DEBUG;
|
return PERCENT_DEBUG;
|
||||||
YY_BREAK
|
YY_BREAK
|
||||||
case 3:
|
case 3:
|
||||||
YY_RULE_SETUP
|
YY_RULE_SETUP
|
||||||
#line 132 "scan-gram.l"
|
#line 121 "scan-gram.l"
|
||||||
return PERCENT_DEFINE;
|
return PERCENT_DEFINE;
|
||||||
YY_BREAK
|
YY_BREAK
|
||||||
case 4:
|
case 4:
|
||||||
YY_RULE_SETUP
|
YY_RULE_SETUP
|
||||||
#line 133 "scan-gram.l"
|
#line 122 "scan-gram.l"
|
||||||
return PERCENT_DEFINES;
|
return PERCENT_DEFINES;
|
||||||
YY_BREAK
|
YY_BREAK
|
||||||
case 5:
|
case 5:
|
||||||
YY_RULE_SETUP
|
YY_RULE_SETUP
|
||||||
#line 134 "scan-gram.l"
|
#line 123 "scan-gram.l"
|
||||||
return PERCENT_DESTRUCTOR;
|
return PERCENT_DESTRUCTOR;
|
||||||
YY_BREAK
|
YY_BREAK
|
||||||
case 6:
|
case 6:
|
||||||
YY_RULE_SETUP
|
YY_RULE_SETUP
|
||||||
#line 135 "scan-gram.l"
|
#line 124 "scan-gram.l"
|
||||||
return PERCENT_DPREC;
|
return PERCENT_DPREC;
|
||||||
YY_BREAK
|
YY_BREAK
|
||||||
case 7:
|
case 7:
|
||||||
YY_RULE_SETUP
|
YY_RULE_SETUP
|
||||||
#line 136 "scan-gram.l"
|
#line 125 "scan-gram.l"
|
||||||
return PERCENT_ERROR_VERBOSE;
|
return PERCENT_ERROR_VERBOSE;
|
||||||
YY_BREAK
|
YY_BREAK
|
||||||
case 8:
|
case 8:
|
||||||
YY_RULE_SETUP
|
YY_RULE_SETUP
|
||||||
#line 137 "scan-gram.l"
|
#line 126 "scan-gram.l"
|
||||||
return PERCENT_EXPECT;
|
return PERCENT_EXPECT;
|
||||||
YY_BREAK
|
YY_BREAK
|
||||||
case 9:
|
case 9:
|
||||||
YY_RULE_SETUP
|
YY_RULE_SETUP
|
||||||
#line 138 "scan-gram.l"
|
#line 127 "scan-gram.l"
|
||||||
return PERCENT_FILE_PREFIX;
|
return PERCENT_FILE_PREFIX;
|
||||||
YY_BREAK
|
YY_BREAK
|
||||||
case 10:
|
case 10:
|
||||||
YY_RULE_SETUP
|
YY_RULE_SETUP
|
||||||
#line 139 "scan-gram.l"
|
#line 128 "scan-gram.l"
|
||||||
return PERCENT_YACC;
|
return PERCENT_YACC;
|
||||||
YY_BREAK
|
YY_BREAK
|
||||||
case 11:
|
case 11:
|
||||||
YY_RULE_SETUP
|
YY_RULE_SETUP
|
||||||
#line 140 "scan-gram.l"
|
#line 129 "scan-gram.l"
|
||||||
return PERCENT_GLR_PARSER;
|
return PERCENT_GLR_PARSER;
|
||||||
YY_BREAK
|
YY_BREAK
|
||||||
case 12:
|
case 12:
|
||||||
YY_RULE_SETUP
|
YY_RULE_SETUP
|
||||||
#line 141 "scan-gram.l"
|
#line 130 "scan-gram.l"
|
||||||
return PERCENT_LEFT;
|
return PERCENT_LEFT;
|
||||||
YY_BREAK
|
YY_BREAK
|
||||||
case 13:
|
case 13:
|
||||||
YY_RULE_SETUP
|
YY_RULE_SETUP
|
||||||
#line 142 "scan-gram.l"
|
#line 131 "scan-gram.l"
|
||||||
return PERCENT_LOCATIONS;
|
return PERCENT_LOCATIONS;
|
||||||
YY_BREAK
|
YY_BREAK
|
||||||
case 14:
|
case 14:
|
||||||
YY_RULE_SETUP
|
YY_RULE_SETUP
|
||||||
#line 143 "scan-gram.l"
|
#line 132 "scan-gram.l"
|
||||||
return PERCENT_MERGE;
|
return PERCENT_MERGE;
|
||||||
YY_BREAK
|
YY_BREAK
|
||||||
case 15:
|
case 15:
|
||||||
YY_RULE_SETUP
|
YY_RULE_SETUP
|
||||||
#line 144 "scan-gram.l"
|
#line 133 "scan-gram.l"
|
||||||
return PERCENT_NAME_PREFIX;
|
return PERCENT_NAME_PREFIX;
|
||||||
YY_BREAK
|
YY_BREAK
|
||||||
case 16:
|
case 16:
|
||||||
YY_RULE_SETUP
|
YY_RULE_SETUP
|
||||||
#line 145 "scan-gram.l"
|
#line 134 "scan-gram.l"
|
||||||
return PERCENT_NO_LINES;
|
return PERCENT_NO_LINES;
|
||||||
YY_BREAK
|
YY_BREAK
|
||||||
case 17:
|
case 17:
|
||||||
YY_RULE_SETUP
|
YY_RULE_SETUP
|
||||||
#line 146 "scan-gram.l"
|
#line 135 "scan-gram.l"
|
||||||
return PERCENT_NONASSOC;
|
return PERCENT_NONASSOC;
|
||||||
YY_BREAK
|
YY_BREAK
|
||||||
case 18:
|
case 18:
|
||||||
YY_RULE_SETUP
|
YY_RULE_SETUP
|
||||||
#line 147 "scan-gram.l"
|
#line 136 "scan-gram.l"
|
||||||
return PERCENT_NTERM;
|
return PERCENT_NTERM;
|
||||||
YY_BREAK
|
YY_BREAK
|
||||||
case 19:
|
case 19:
|
||||||
YY_RULE_SETUP
|
YY_RULE_SETUP
|
||||||
#line 148 "scan-gram.l"
|
#line 137 "scan-gram.l"
|
||||||
return PERCENT_OUTPUT;
|
return PERCENT_OUTPUT;
|
||||||
YY_BREAK
|
YY_BREAK
|
||||||
case 20:
|
case 20:
|
||||||
YY_RULE_SETUP
|
YY_RULE_SETUP
|
||||||
#line 149 "scan-gram.l"
|
#line 138 "scan-gram.l"
|
||||||
{ rule_length--; return PERCENT_PREC; }
|
{ rule_length--; return PERCENT_PREC; }
|
||||||
YY_BREAK
|
YY_BREAK
|
||||||
case 21:
|
case 21:
|
||||||
YY_RULE_SETUP
|
YY_RULE_SETUP
|
||||||
#line 150 "scan-gram.l"
|
#line 139 "scan-gram.l"
|
||||||
return PERCENT_PRINTER;
|
return PERCENT_PRINTER;
|
||||||
YY_BREAK
|
YY_BREAK
|
||||||
case 22:
|
case 22:
|
||||||
YY_RULE_SETUP
|
YY_RULE_SETUP
|
||||||
#line 151 "scan-gram.l"
|
#line 140 "scan-gram.l"
|
||||||
return PERCENT_PURE_PARSER;
|
return PERCENT_PURE_PARSER;
|
||||||
YY_BREAK
|
YY_BREAK
|
||||||
case 23:
|
case 23:
|
||||||
YY_RULE_SETUP
|
YY_RULE_SETUP
|
||||||
#line 152 "scan-gram.l"
|
#line 141 "scan-gram.l"
|
||||||
return PERCENT_RIGHT;
|
return PERCENT_RIGHT;
|
||||||
YY_BREAK
|
YY_BREAK
|
||||||
case 24:
|
case 24:
|
||||||
YY_RULE_SETUP
|
YY_RULE_SETUP
|
||||||
#line 153 "scan-gram.l"
|
#line 142 "scan-gram.l"
|
||||||
return PERCENT_SKELETON;
|
return PERCENT_SKELETON;
|
||||||
YY_BREAK
|
YY_BREAK
|
||||||
case 25:
|
case 25:
|
||||||
YY_RULE_SETUP
|
YY_RULE_SETUP
|
||||||
#line 154 "scan-gram.l"
|
#line 143 "scan-gram.l"
|
||||||
return PERCENT_START;
|
return PERCENT_START;
|
||||||
YY_BREAK
|
YY_BREAK
|
||||||
case 26:
|
case 26:
|
||||||
YY_RULE_SETUP
|
YY_RULE_SETUP
|
||||||
#line 155 "scan-gram.l"
|
#line 144 "scan-gram.l"
|
||||||
return PERCENT_TOKEN;
|
return PERCENT_TOKEN;
|
||||||
YY_BREAK
|
YY_BREAK
|
||||||
case 27:
|
case 27:
|
||||||
YY_RULE_SETUP
|
YY_RULE_SETUP
|
||||||
#line 156 "scan-gram.l"
|
#line 145 "scan-gram.l"
|
||||||
return PERCENT_TOKEN;
|
return PERCENT_TOKEN;
|
||||||
YY_BREAK
|
YY_BREAK
|
||||||
case 28:
|
case 28:
|
||||||
YY_RULE_SETUP
|
YY_RULE_SETUP
|
||||||
#line 157 "scan-gram.l"
|
#line 146 "scan-gram.l"
|
||||||
return PERCENT_TOKEN_TABLE;
|
return PERCENT_TOKEN_TABLE;
|
||||||
YY_BREAK
|
YY_BREAK
|
||||||
case 29:
|
case 29:
|
||||||
YY_RULE_SETUP
|
YY_RULE_SETUP
|
||||||
#line 158 "scan-gram.l"
|
#line 147 "scan-gram.l"
|
||||||
return PERCENT_TYPE;
|
return PERCENT_TYPE;
|
||||||
YY_BREAK
|
YY_BREAK
|
||||||
case 30:
|
case 30:
|
||||||
YY_RULE_SETUP
|
YY_RULE_SETUP
|
||||||
#line 159 "scan-gram.l"
|
#line 148 "scan-gram.l"
|
||||||
return PERCENT_UNION;
|
return PERCENT_UNION;
|
||||||
YY_BREAK
|
YY_BREAK
|
||||||
case 31:
|
case 31:
|
||||||
YY_RULE_SETUP
|
YY_RULE_SETUP
|
||||||
#line 160 "scan-gram.l"
|
#line 149 "scan-gram.l"
|
||||||
return PERCENT_VERBOSE;
|
return PERCENT_VERBOSE;
|
||||||
YY_BREAK
|
YY_BREAK
|
||||||
case 32:
|
case 32:
|
||||||
YY_RULE_SETUP
|
YY_RULE_SETUP
|
||||||
#line 161 "scan-gram.l"
|
#line 150 "scan-gram.l"
|
||||||
return PERCENT_YACC;
|
return PERCENT_YACC;
|
||||||
YY_BREAK
|
YY_BREAK
|
||||||
case 33:
|
case 33:
|
||||||
YY_RULE_SETUP
|
YY_RULE_SETUP
|
||||||
#line 163 "scan-gram.l"
|
#line 152 "scan-gram.l"
|
||||||
return EQUAL;
|
return EQUAL;
|
||||||
YY_BREAK
|
YY_BREAK
|
||||||
case 34:
|
case 34:
|
||||||
YY_RULE_SETUP
|
YY_RULE_SETUP
|
||||||
#line 164 "scan-gram.l"
|
#line 153 "scan-gram.l"
|
||||||
{ rule_length = 0; return COLON; }
|
{ rule_length = 0; return COLON; }
|
||||||
YY_BREAK
|
YY_BREAK
|
||||||
case 35:
|
case 35:
|
||||||
YY_RULE_SETUP
|
YY_RULE_SETUP
|
||||||
#line 165 "scan-gram.l"
|
#line 154 "scan-gram.l"
|
||||||
{ rule_length = 0; return PIPE; }
|
{ rule_length = 0; return PIPE; }
|
||||||
YY_BREAK
|
YY_BREAK
|
||||||
case 36:
|
case 36:
|
||||||
YY_RULE_SETUP
|
YY_RULE_SETUP
|
||||||
#line 166 "scan-gram.l"
|
#line 155 "scan-gram.l"
|
||||||
return SEMICOLON;
|
return SEMICOLON;
|
||||||
YY_BREAK
|
YY_BREAK
|
||||||
case 37:
|
case 37:
|
||||||
YY_RULE_SETUP
|
YY_RULE_SETUP
|
||||||
#line 168 "scan-gram.l"
|
#line 157 "scan-gram.l"
|
||||||
YY_LINES; YY_STEP;
|
YY_LINES; YY_STEP;
|
||||||
YY_BREAK
|
YY_BREAK
|
||||||
case 38:
|
case 38:
|
||||||
YY_RULE_SETUP
|
YY_RULE_SETUP
|
||||||
#line 169 "scan-gram.l"
|
#line 158 "scan-gram.l"
|
||||||
YY_STEP;
|
YY_STEP;
|
||||||
YY_BREAK
|
YY_BREAK
|
||||||
case 39:
|
case 39:
|
||||||
YY_RULE_SETUP
|
YY_RULE_SETUP
|
||||||
#line 170 "scan-gram.l"
|
#line 159 "scan-gram.l"
|
||||||
{
|
{
|
||||||
yylval->symbol = symbol_get (yytext, *yylloc);
|
yylval->symbol = symbol_get (yytext, *yylloc);
|
||||||
rule_length++;
|
rule_length++;
|
||||||
@@ -1323,48 +1318,48 @@ YY_RULE_SETUP
|
|||||||
YY_BREAK
|
YY_BREAK
|
||||||
case 40:
|
case 40:
|
||||||
YY_RULE_SETUP
|
YY_RULE_SETUP
|
||||||
#line 176 "scan-gram.l"
|
#line 165 "scan-gram.l"
|
||||||
yylval->integer = strtol (yytext, 0, 10); return INT;
|
yylval->integer = strtol (yytext, 0, 10); return INT;
|
||||||
YY_BREAK
|
YY_BREAK
|
||||||
/* Characters. We don't check there is only one. */
|
/* Characters. We don't check there is only one. */
|
||||||
case 41:
|
case 41:
|
||||||
YY_RULE_SETUP
|
YY_RULE_SETUP
|
||||||
#line 179 "scan-gram.l"
|
#line 168 "scan-gram.l"
|
||||||
YY_OBS_GROW; yy_push_state (SC_ESCAPED_CHARACTER);
|
YY_OBS_GROW; yy_push_state (SC_ESCAPED_CHARACTER);
|
||||||
YY_BREAK
|
YY_BREAK
|
||||||
/* Strings. */
|
/* Strings. */
|
||||||
case 42:
|
case 42:
|
||||||
YY_RULE_SETUP
|
YY_RULE_SETUP
|
||||||
#line 182 "scan-gram.l"
|
#line 171 "scan-gram.l"
|
||||||
YY_OBS_GROW; yy_push_state (SC_ESCAPED_STRING);
|
YY_OBS_GROW; yy_push_state (SC_ESCAPED_STRING);
|
||||||
YY_BREAK
|
YY_BREAK
|
||||||
/* Comments. */
|
/* Comments. */
|
||||||
case 43:
|
case 43:
|
||||||
YY_RULE_SETUP
|
YY_RULE_SETUP
|
||||||
#line 185 "scan-gram.l"
|
#line 174 "scan-gram.l"
|
||||||
yy_push_state (SC_COMMENT);
|
yy_push_state (SC_COMMENT);
|
||||||
YY_BREAK
|
YY_BREAK
|
||||||
case 44:
|
case 44:
|
||||||
YY_RULE_SETUP
|
YY_RULE_SETUP
|
||||||
#line 186 "scan-gram.l"
|
#line 175 "scan-gram.l"
|
||||||
YY_STEP;
|
YY_STEP;
|
||||||
YY_BREAK
|
YY_BREAK
|
||||||
/* Prologue. */
|
/* Prologue. */
|
||||||
case 45:
|
case 45:
|
||||||
YY_RULE_SETUP
|
YY_RULE_SETUP
|
||||||
#line 189 "scan-gram.l"
|
#line 178 "scan-gram.l"
|
||||||
yy_push_state (SC_PROLOGUE);
|
yy_push_state (SC_PROLOGUE);
|
||||||
YY_BREAK
|
YY_BREAK
|
||||||
/* Code in between braces. */
|
/* Code in between braces. */
|
||||||
case 46:
|
case 46:
|
||||||
YY_RULE_SETUP
|
YY_RULE_SETUP
|
||||||
#line 192 "scan-gram.l"
|
#line 181 "scan-gram.l"
|
||||||
YY_OBS_GROW; ++braces_level; yy_push_state (SC_BRACED_CODE);
|
YY_OBS_GROW; ++braces_level; yy_push_state (SC_BRACED_CODE);
|
||||||
YY_BREAK
|
YY_BREAK
|
||||||
/* A type. */
|
/* A type. */
|
||||||
case 47:
|
case 47:
|
||||||
YY_RULE_SETUP
|
YY_RULE_SETUP
|
||||||
#line 195 "scan-gram.l"
|
#line 184 "scan-gram.l"
|
||||||
{
|
{
|
||||||
obstack_grow (&string_obstack, yytext + 1, yyleng - 2);
|
obstack_grow (&string_obstack, yytext + 1, yyleng - 2);
|
||||||
YY_OBS_FINISH;
|
YY_OBS_FINISH;
|
||||||
@@ -1374,7 +1369,7 @@ YY_RULE_SETUP
|
|||||||
YY_BREAK
|
YY_BREAK
|
||||||
case 48:
|
case 48:
|
||||||
YY_RULE_SETUP
|
YY_RULE_SETUP
|
||||||
#line 203 "scan-gram.l"
|
#line 192 "scan-gram.l"
|
||||||
{
|
{
|
||||||
if (++percent_percent_count == 2)
|
if (++percent_percent_count == 2)
|
||||||
yy_push_state (SC_EPILOGUE);
|
yy_push_state (SC_EPILOGUE);
|
||||||
@@ -1383,7 +1378,7 @@ YY_RULE_SETUP
|
|||||||
YY_BREAK
|
YY_BREAK
|
||||||
case 49:
|
case 49:
|
||||||
YY_RULE_SETUP
|
YY_RULE_SETUP
|
||||||
#line 209 "scan-gram.l"
|
#line 198 "scan-gram.l"
|
||||||
{
|
{
|
||||||
LOCATION_PRINT (stderr, *yylloc);
|
LOCATION_PRINT (stderr, *yylloc);
|
||||||
fprintf (stderr, _(": invalid character: `%c'\n"), *yytext);
|
fprintf (stderr, _(": invalid character: `%c'\n"), *yytext);
|
||||||
@@ -1400,12 +1395,12 @@ YY_RULE_SETUP
|
|||||||
|
|
||||||
case 50:
|
case 50:
|
||||||
YY_RULE_SETUP
|
YY_RULE_SETUP
|
||||||
#line 225 "scan-gram.l"
|
#line 214 "scan-gram.l"
|
||||||
if (YY_START != SC_COMMENT) obstack_sgrow (&string_obstack, "@<:@");
|
if (YY_START != SC_COMMENT) obstack_sgrow (&string_obstack, "@<:@");
|
||||||
YY_BREAK
|
YY_BREAK
|
||||||
case 51:
|
case 51:
|
||||||
YY_RULE_SETUP
|
YY_RULE_SETUP
|
||||||
#line 226 "scan-gram.l"
|
#line 215 "scan-gram.l"
|
||||||
if (YY_START != SC_COMMENT) obstack_sgrow (&string_obstack, "@:>@");
|
if (YY_START != SC_COMMENT) obstack_sgrow (&string_obstack, "@:>@");
|
||||||
YY_BREAK
|
YY_BREAK
|
||||||
|
|
||||||
@@ -1416,7 +1411,7 @@ if (YY_START != SC_COMMENT) obstack_sgrow (&string_obstack, "@:>@");
|
|||||||
|
|
||||||
case 52:
|
case 52:
|
||||||
YY_RULE_SETUP
|
YY_RULE_SETUP
|
||||||
#line 237 "scan-gram.l"
|
#line 226 "scan-gram.l"
|
||||||
{ /* End of the comment. */
|
{ /* End of the comment. */
|
||||||
if (yy_top_state () == INITIAL)
|
if (yy_top_state () == INITIAL)
|
||||||
{
|
{
|
||||||
@@ -1431,21 +1426,21 @@ YY_RULE_SETUP
|
|||||||
YY_BREAK
|
YY_BREAK
|
||||||
case 53:
|
case 53:
|
||||||
YY_RULE_SETUP
|
YY_RULE_SETUP
|
||||||
#line 249 "scan-gram.l"
|
#line 238 "scan-gram.l"
|
||||||
if (yy_top_state () != INITIAL) YY_OBS_GROW;
|
if (yy_top_state () != INITIAL) YY_OBS_GROW;
|
||||||
YY_BREAK
|
YY_BREAK
|
||||||
case 54:
|
case 54:
|
||||||
YY_RULE_SETUP
|
YY_RULE_SETUP
|
||||||
#line 250 "scan-gram.l"
|
#line 239 "scan-gram.l"
|
||||||
if (yy_top_state () != INITIAL) YY_OBS_GROW; YY_LINES;
|
if (yy_top_state () != INITIAL) YY_OBS_GROW; YY_LINES;
|
||||||
YY_BREAK
|
YY_BREAK
|
||||||
case 55:
|
case 55:
|
||||||
YY_RULE_SETUP
|
YY_RULE_SETUP
|
||||||
#line 251 "scan-gram.l"
|
#line 240 "scan-gram.l"
|
||||||
/* Stray `*'. */if (yy_top_state () != INITIAL) YY_OBS_GROW;
|
/* Stray `*'. */if (yy_top_state () != INITIAL) YY_OBS_GROW;
|
||||||
YY_BREAK
|
YY_BREAK
|
||||||
case YY_STATE_EOF(SC_COMMENT):
|
case YY_STATE_EOF(SC_COMMENT):
|
||||||
#line 253 "scan-gram.l"
|
#line 242 "scan-gram.l"
|
||||||
{
|
{
|
||||||
LOCATION_PRINT (stderr, *yylloc);
|
LOCATION_PRINT (stderr, *yylloc);
|
||||||
fprintf (stderr, _(": unexpected end of file in a comment\n"));
|
fprintf (stderr, _(": unexpected end of file in a comment\n"));
|
||||||
@@ -1461,7 +1456,7 @@ case YY_STATE_EOF(SC_COMMENT):
|
|||||||
|
|
||||||
case 56:
|
case 56:
|
||||||
YY_RULE_SETUP
|
YY_RULE_SETUP
|
||||||
#line 268 "scan-gram.l"
|
#line 257 "scan-gram.l"
|
||||||
{
|
{
|
||||||
assert (yy_top_state () == INITIAL);
|
assert (yy_top_state () == INITIAL);
|
||||||
YY_OBS_GROW;
|
YY_OBS_GROW;
|
||||||
@@ -1474,16 +1469,16 @@ YY_RULE_SETUP
|
|||||||
YY_BREAK
|
YY_BREAK
|
||||||
case 57:
|
case 57:
|
||||||
YY_RULE_SETUP
|
YY_RULE_SETUP
|
||||||
#line 278 "scan-gram.l"
|
#line 267 "scan-gram.l"
|
||||||
YY_OBS_GROW;
|
YY_OBS_GROW;
|
||||||
YY_BREAK
|
YY_BREAK
|
||||||
case 58:
|
case 58:
|
||||||
YY_RULE_SETUP
|
YY_RULE_SETUP
|
||||||
#line 280 "scan-gram.l"
|
#line 269 "scan-gram.l"
|
||||||
obstack_1grow (&string_obstack, '\n'); YY_LINES;
|
obstack_1grow (&string_obstack, '\n'); YY_LINES;
|
||||||
YY_BREAK
|
YY_BREAK
|
||||||
case YY_STATE_EOF(SC_ESCAPED_STRING):
|
case YY_STATE_EOF(SC_ESCAPED_STRING):
|
||||||
#line 282 "scan-gram.l"
|
#line 271 "scan-gram.l"
|
||||||
{
|
{
|
||||||
LOCATION_PRINT (stderr, *yylloc);
|
LOCATION_PRINT (stderr, *yylloc);
|
||||||
fprintf (stderr, _(": unexpected end of file in a string\n"));
|
fprintf (stderr, _(": unexpected end of file in a string\n"));
|
||||||
@@ -1503,7 +1498,7 @@ case YY_STATE_EOF(SC_ESCAPED_STRING):
|
|||||||
|
|
||||||
case 59:
|
case 59:
|
||||||
YY_RULE_SETUP
|
YY_RULE_SETUP
|
||||||
#line 300 "scan-gram.l"
|
#line 289 "scan-gram.l"
|
||||||
{
|
{
|
||||||
YY_OBS_GROW;
|
YY_OBS_GROW;
|
||||||
assert (yy_top_state () == INITIAL);
|
assert (yy_top_state () == INITIAL);
|
||||||
@@ -1522,16 +1517,16 @@ YY_RULE_SETUP
|
|||||||
YY_BREAK
|
YY_BREAK
|
||||||
case 60:
|
case 60:
|
||||||
YY_RULE_SETUP
|
YY_RULE_SETUP
|
||||||
#line 316 "scan-gram.l"
|
#line 305 "scan-gram.l"
|
||||||
YY_OBS_GROW;
|
YY_OBS_GROW;
|
||||||
YY_BREAK
|
YY_BREAK
|
||||||
case 61:
|
case 61:
|
||||||
YY_RULE_SETUP
|
YY_RULE_SETUP
|
||||||
#line 318 "scan-gram.l"
|
#line 307 "scan-gram.l"
|
||||||
obstack_1grow (&string_obstack, '\n'); YY_LINES;
|
obstack_1grow (&string_obstack, '\n'); YY_LINES;
|
||||||
YY_BREAK
|
YY_BREAK
|
||||||
case YY_STATE_EOF(SC_ESCAPED_CHARACTER):
|
case YY_STATE_EOF(SC_ESCAPED_CHARACTER):
|
||||||
#line 320 "scan-gram.l"
|
#line 309 "scan-gram.l"
|
||||||
{
|
{
|
||||||
LOCATION_PRINT (stderr, *yylloc);
|
LOCATION_PRINT (stderr, *yylloc);
|
||||||
fprintf (stderr, _(": unexpected end of file in a character\n"));
|
fprintf (stderr, _(": unexpected end of file in a character\n"));
|
||||||
@@ -1550,7 +1545,7 @@ case YY_STATE_EOF(SC_ESCAPED_CHARACTER):
|
|||||||
|
|
||||||
case 62:
|
case 62:
|
||||||
YY_RULE_SETUP
|
YY_RULE_SETUP
|
||||||
#line 338 "scan-gram.l"
|
#line 327 "scan-gram.l"
|
||||||
{
|
{
|
||||||
long c = strtol (yytext + 1, 0, 8);
|
long c = strtol (yytext + 1, 0, 8);
|
||||||
if (c > 255)
|
if (c > 255)
|
||||||
@@ -1565,54 +1560,54 @@ YY_RULE_SETUP
|
|||||||
YY_BREAK
|
YY_BREAK
|
||||||
case 63:
|
case 63:
|
||||||
YY_RULE_SETUP
|
YY_RULE_SETUP
|
||||||
#line 350 "scan-gram.l"
|
#line 339 "scan-gram.l"
|
||||||
{
|
{
|
||||||
obstack_1grow (&string_obstack, strtol (yytext + 2, 0, 16));
|
obstack_1grow (&string_obstack, strtol (yytext + 2, 0, 16));
|
||||||
}
|
}
|
||||||
YY_BREAK
|
YY_BREAK
|
||||||
case 64:
|
case 64:
|
||||||
YY_RULE_SETUP
|
YY_RULE_SETUP
|
||||||
#line 354 "scan-gram.l"
|
#line 343 "scan-gram.l"
|
||||||
obstack_1grow (&string_obstack, '\a');
|
obstack_1grow (&string_obstack, '\a');
|
||||||
YY_BREAK
|
YY_BREAK
|
||||||
case 65:
|
case 65:
|
||||||
YY_RULE_SETUP
|
YY_RULE_SETUP
|
||||||
#line 355 "scan-gram.l"
|
#line 344 "scan-gram.l"
|
||||||
obstack_1grow (&string_obstack, '\b');
|
obstack_1grow (&string_obstack, '\b');
|
||||||
YY_BREAK
|
YY_BREAK
|
||||||
case 66:
|
case 66:
|
||||||
YY_RULE_SETUP
|
YY_RULE_SETUP
|
||||||
#line 356 "scan-gram.l"
|
#line 345 "scan-gram.l"
|
||||||
obstack_1grow (&string_obstack, '\f');
|
obstack_1grow (&string_obstack, '\f');
|
||||||
YY_BREAK
|
YY_BREAK
|
||||||
case 67:
|
case 67:
|
||||||
YY_RULE_SETUP
|
YY_RULE_SETUP
|
||||||
#line 357 "scan-gram.l"
|
#line 346 "scan-gram.l"
|
||||||
obstack_1grow (&string_obstack, '\n');
|
obstack_1grow (&string_obstack, '\n');
|
||||||
YY_BREAK
|
YY_BREAK
|
||||||
case 68:
|
case 68:
|
||||||
YY_RULE_SETUP
|
YY_RULE_SETUP
|
||||||
#line 358 "scan-gram.l"
|
#line 347 "scan-gram.l"
|
||||||
obstack_1grow (&string_obstack, '\r');
|
obstack_1grow (&string_obstack, '\r');
|
||||||
YY_BREAK
|
YY_BREAK
|
||||||
case 69:
|
case 69:
|
||||||
YY_RULE_SETUP
|
YY_RULE_SETUP
|
||||||
#line 359 "scan-gram.l"
|
#line 348 "scan-gram.l"
|
||||||
obstack_1grow (&string_obstack, '\t');
|
obstack_1grow (&string_obstack, '\t');
|
||||||
YY_BREAK
|
YY_BREAK
|
||||||
case 70:
|
case 70:
|
||||||
YY_RULE_SETUP
|
YY_RULE_SETUP
|
||||||
#line 360 "scan-gram.l"
|
#line 349 "scan-gram.l"
|
||||||
obstack_1grow (&string_obstack, '\v');
|
obstack_1grow (&string_obstack, '\v');
|
||||||
YY_BREAK
|
YY_BREAK
|
||||||
case 71:
|
case 71:
|
||||||
YY_RULE_SETUP
|
YY_RULE_SETUP
|
||||||
#line 361 "scan-gram.l"
|
#line 350 "scan-gram.l"
|
||||||
obstack_1grow (&string_obstack, yytext[1]);
|
obstack_1grow (&string_obstack, yytext[1]);
|
||||||
YY_BREAK
|
YY_BREAK
|
||||||
case 72:
|
case 72:
|
||||||
YY_RULE_SETUP
|
YY_RULE_SETUP
|
||||||
#line 362 "scan-gram.l"
|
#line 351 "scan-gram.l"
|
||||||
{
|
{
|
||||||
LOCATION_PRINT (stderr, *yylloc);
|
LOCATION_PRINT (stderr, *yylloc);
|
||||||
fprintf (stderr, _(": unrecognized escape: %s\n"), quote (yytext));
|
fprintf (stderr, _(": unrecognized escape: %s\n"), quote (yytext));
|
||||||
@@ -1622,7 +1617,7 @@ YY_RULE_SETUP
|
|||||||
/* FLex wants this rule, in case of a `\<<EOF>>'. */
|
/* FLex wants this rule, in case of a `\<<EOF>>'. */
|
||||||
case 73:
|
case 73:
|
||||||
YY_RULE_SETUP
|
YY_RULE_SETUP
|
||||||
#line 368 "scan-gram.l"
|
#line 357 "scan-gram.l"
|
||||||
YY_OBS_GROW;
|
YY_OBS_GROW;
|
||||||
YY_BREAK
|
YY_BREAK
|
||||||
|
|
||||||
@@ -1634,7 +1629,7 @@ YY_OBS_GROW;
|
|||||||
|
|
||||||
case 74:
|
case 74:
|
||||||
YY_RULE_SETUP
|
YY_RULE_SETUP
|
||||||
#line 379 "scan-gram.l"
|
#line 368 "scan-gram.l"
|
||||||
{
|
{
|
||||||
YY_OBS_GROW;
|
YY_OBS_GROW;
|
||||||
assert (yy_top_state () != INITIAL);
|
assert (yy_top_state () != INITIAL);
|
||||||
@@ -1643,27 +1638,27 @@ YY_RULE_SETUP
|
|||||||
YY_BREAK
|
YY_BREAK
|
||||||
case 75:
|
case 75:
|
||||||
YY_RULE_SETUP
|
YY_RULE_SETUP
|
||||||
#line 385 "scan-gram.l"
|
#line 374 "scan-gram.l"
|
||||||
YY_OBS_GROW;
|
YY_OBS_GROW;
|
||||||
YY_BREAK
|
YY_BREAK
|
||||||
case 76:
|
case 76:
|
||||||
YY_RULE_SETUP
|
YY_RULE_SETUP
|
||||||
#line 386 "scan-gram.l"
|
#line 375 "scan-gram.l"
|
||||||
YY_OBS_GROW;
|
YY_OBS_GROW;
|
||||||
YY_BREAK
|
YY_BREAK
|
||||||
/* FLex wants this rule, in case of a `\<<EOF>>'. */
|
/* FLex wants this rule, in case of a `\<<EOF>>'. */
|
||||||
case 77:
|
case 77:
|
||||||
YY_RULE_SETUP
|
YY_RULE_SETUP
|
||||||
#line 388 "scan-gram.l"
|
#line 377 "scan-gram.l"
|
||||||
YY_OBS_GROW;
|
YY_OBS_GROW;
|
||||||
YY_BREAK
|
YY_BREAK
|
||||||
case 78:
|
case 78:
|
||||||
YY_RULE_SETUP
|
YY_RULE_SETUP
|
||||||
#line 390 "scan-gram.l"
|
#line 379 "scan-gram.l"
|
||||||
YY_OBS_GROW; YY_LINES;
|
YY_OBS_GROW; YY_LINES;
|
||||||
YY_BREAK
|
YY_BREAK
|
||||||
case YY_STATE_EOF(SC_CHARACTER):
|
case YY_STATE_EOF(SC_CHARACTER):
|
||||||
#line 392 "scan-gram.l"
|
#line 381 "scan-gram.l"
|
||||||
{
|
{
|
||||||
LOCATION_PRINT (stderr, *yylloc);
|
LOCATION_PRINT (stderr, *yylloc);
|
||||||
fprintf (stderr, _(": unexpected end of file in a character\n"));
|
fprintf (stderr, _(": unexpected end of file in a character\n"));
|
||||||
@@ -1680,7 +1675,7 @@ case YY_STATE_EOF(SC_CHARACTER):
|
|||||||
|
|
||||||
case 79:
|
case 79:
|
||||||
YY_RULE_SETUP
|
YY_RULE_SETUP
|
||||||
#line 408 "scan-gram.l"
|
#line 397 "scan-gram.l"
|
||||||
{
|
{
|
||||||
assert (yy_top_state () != INITIAL);
|
assert (yy_top_state () != INITIAL);
|
||||||
YY_OBS_GROW;
|
YY_OBS_GROW;
|
||||||
@@ -1689,27 +1684,27 @@ YY_RULE_SETUP
|
|||||||
YY_BREAK
|
YY_BREAK
|
||||||
case 80:
|
case 80:
|
||||||
YY_RULE_SETUP
|
YY_RULE_SETUP
|
||||||
#line 414 "scan-gram.l"
|
#line 403 "scan-gram.l"
|
||||||
YY_OBS_GROW;
|
YY_OBS_GROW;
|
||||||
YY_BREAK
|
YY_BREAK
|
||||||
case 81:
|
case 81:
|
||||||
YY_RULE_SETUP
|
YY_RULE_SETUP
|
||||||
#line 415 "scan-gram.l"
|
#line 404 "scan-gram.l"
|
||||||
YY_OBS_GROW;
|
YY_OBS_GROW;
|
||||||
YY_BREAK
|
YY_BREAK
|
||||||
/* FLex wants this rule, in case of a `\<<EOF>>'. */
|
/* FLex wants this rule, in case of a `\<<EOF>>'. */
|
||||||
case 82:
|
case 82:
|
||||||
YY_RULE_SETUP
|
YY_RULE_SETUP
|
||||||
#line 417 "scan-gram.l"
|
#line 406 "scan-gram.l"
|
||||||
YY_OBS_GROW;
|
YY_OBS_GROW;
|
||||||
YY_BREAK
|
YY_BREAK
|
||||||
case 83:
|
case 83:
|
||||||
YY_RULE_SETUP
|
YY_RULE_SETUP
|
||||||
#line 419 "scan-gram.l"
|
#line 408 "scan-gram.l"
|
||||||
YY_OBS_GROW; YY_LINES;
|
YY_OBS_GROW; YY_LINES;
|
||||||
YY_BREAK
|
YY_BREAK
|
||||||
case YY_STATE_EOF(SC_STRING):
|
case YY_STATE_EOF(SC_STRING):
|
||||||
#line 421 "scan-gram.l"
|
#line 410 "scan-gram.l"
|
||||||
{
|
{
|
||||||
LOCATION_PRINT (stderr, *yylloc);
|
LOCATION_PRINT (stderr, *yylloc);
|
||||||
fprintf (stderr, _(": unexpected end of file in a string\n"));
|
fprintf (stderr, _(": unexpected end of file in a string\n"));
|
||||||
@@ -1726,30 +1721,30 @@ case YY_STATE_EOF(SC_STRING):
|
|||||||
/* Characters. We don't check there is only one. */
|
/* Characters. We don't check there is only one. */
|
||||||
case 84:
|
case 84:
|
||||||
YY_RULE_SETUP
|
YY_RULE_SETUP
|
||||||
#line 437 "scan-gram.l"
|
#line 426 "scan-gram.l"
|
||||||
YY_OBS_GROW; yy_push_state (SC_CHARACTER);
|
YY_OBS_GROW; yy_push_state (SC_CHARACTER);
|
||||||
YY_BREAK
|
YY_BREAK
|
||||||
/* Strings. */
|
/* Strings. */
|
||||||
case 85:
|
case 85:
|
||||||
YY_RULE_SETUP
|
YY_RULE_SETUP
|
||||||
#line 440 "scan-gram.l"
|
#line 429 "scan-gram.l"
|
||||||
YY_OBS_GROW; yy_push_state (SC_STRING);
|
YY_OBS_GROW; yy_push_state (SC_STRING);
|
||||||
YY_BREAK
|
YY_BREAK
|
||||||
/* Comments. */
|
/* Comments. */
|
||||||
case 86:
|
case 86:
|
||||||
YY_RULE_SETUP
|
YY_RULE_SETUP
|
||||||
#line 443 "scan-gram.l"
|
#line 432 "scan-gram.l"
|
||||||
YY_OBS_GROW; yy_push_state (SC_COMMENT);
|
YY_OBS_GROW; yy_push_state (SC_COMMENT);
|
||||||
YY_BREAK
|
YY_BREAK
|
||||||
case 87:
|
case 87:
|
||||||
YY_RULE_SETUP
|
YY_RULE_SETUP
|
||||||
#line 444 "scan-gram.l"
|
#line 433 "scan-gram.l"
|
||||||
YY_OBS_GROW;
|
YY_OBS_GROW;
|
||||||
YY_BREAK
|
YY_BREAK
|
||||||
/* Not comments. */
|
/* Not comments. */
|
||||||
case 88:
|
case 88:
|
||||||
YY_RULE_SETUP
|
YY_RULE_SETUP
|
||||||
#line 447 "scan-gram.l"
|
#line 436 "scan-gram.l"
|
||||||
YY_OBS_GROW;
|
YY_OBS_GROW;
|
||||||
YY_BREAK
|
YY_BREAK
|
||||||
|
|
||||||
@@ -1761,7 +1756,7 @@ YY_OBS_GROW;
|
|||||||
|
|
||||||
case 89:
|
case 89:
|
||||||
YY_RULE_SETUP
|
YY_RULE_SETUP
|
||||||
#line 458 "scan-gram.l"
|
#line 447 "scan-gram.l"
|
||||||
{
|
{
|
||||||
YY_OBS_GROW;
|
YY_OBS_GROW;
|
||||||
if (--braces_level == 0)
|
if (--braces_level == 0)
|
||||||
@@ -1776,39 +1771,39 @@ YY_RULE_SETUP
|
|||||||
YY_BREAK
|
YY_BREAK
|
||||||
case 90:
|
case 90:
|
||||||
YY_RULE_SETUP
|
YY_RULE_SETUP
|
||||||
#line 470 "scan-gram.l"
|
#line 459 "scan-gram.l"
|
||||||
YY_OBS_GROW; braces_level++;
|
YY_OBS_GROW; braces_level++;
|
||||||
YY_BREAK
|
YY_BREAK
|
||||||
case 91:
|
case 91:
|
||||||
YY_RULE_SETUP
|
YY_RULE_SETUP
|
||||||
#line 472 "scan-gram.l"
|
#line 461 "scan-gram.l"
|
||||||
{ handle_dollar (current_braced_code,
|
{ handle_dollar (current_braced_code,
|
||||||
yytext, *yylloc); }
|
yytext, *yylloc); }
|
||||||
YY_BREAK
|
YY_BREAK
|
||||||
case 92:
|
case 92:
|
||||||
YY_RULE_SETUP
|
YY_RULE_SETUP
|
||||||
#line 474 "scan-gram.l"
|
#line 463 "scan-gram.l"
|
||||||
{ handle_at (current_braced_code,
|
{ handle_at (current_braced_code,
|
||||||
yytext, *yylloc); }
|
yytext, *yylloc); }
|
||||||
YY_BREAK
|
YY_BREAK
|
||||||
case 93:
|
case 93:
|
||||||
YY_RULE_SETUP
|
YY_RULE_SETUP
|
||||||
#line 477 "scan-gram.l"
|
#line 466 "scan-gram.l"
|
||||||
YY_OBS_GROW;
|
YY_OBS_GROW;
|
||||||
YY_BREAK
|
YY_BREAK
|
||||||
case 94:
|
case 94:
|
||||||
YY_RULE_SETUP
|
YY_RULE_SETUP
|
||||||
#line 478 "scan-gram.l"
|
#line 467 "scan-gram.l"
|
||||||
YY_OBS_GROW; YY_LINES;
|
YY_OBS_GROW; YY_LINES;
|
||||||
YY_BREAK
|
YY_BREAK
|
||||||
/* A lose $, or /, or etc. */
|
/* A lose $, or /, or etc. */
|
||||||
case 95:
|
case 95:
|
||||||
YY_RULE_SETUP
|
YY_RULE_SETUP
|
||||||
#line 481 "scan-gram.l"
|
#line 470 "scan-gram.l"
|
||||||
YY_OBS_GROW;
|
YY_OBS_GROW;
|
||||||
YY_BREAK
|
YY_BREAK
|
||||||
case YY_STATE_EOF(SC_BRACED_CODE):
|
case YY_STATE_EOF(SC_BRACED_CODE):
|
||||||
#line 483 "scan-gram.l"
|
#line 472 "scan-gram.l"
|
||||||
{
|
{
|
||||||
LOCATION_PRINT (stderr, *yylloc);
|
LOCATION_PRINT (stderr, *yylloc);
|
||||||
fprintf (stderr, _(": unexpected end of file in a braced code\n"));
|
fprintf (stderr, _(": unexpected end of file in a braced code\n"));
|
||||||
@@ -1826,7 +1821,7 @@ case YY_STATE_EOF(SC_BRACED_CODE):
|
|||||||
|
|
||||||
case 96:
|
case 96:
|
||||||
YY_RULE_SETUP
|
YY_RULE_SETUP
|
||||||
#line 501 "scan-gram.l"
|
#line 490 "scan-gram.l"
|
||||||
{
|
{
|
||||||
yy_pop_state ();
|
yy_pop_state ();
|
||||||
YY_OBS_FINISH;
|
YY_OBS_FINISH;
|
||||||
@@ -1836,21 +1831,21 @@ YY_RULE_SETUP
|
|||||||
YY_BREAK
|
YY_BREAK
|
||||||
case 97:
|
case 97:
|
||||||
YY_RULE_SETUP
|
YY_RULE_SETUP
|
||||||
#line 508 "scan-gram.l"
|
#line 497 "scan-gram.l"
|
||||||
YY_OBS_GROW;
|
YY_OBS_GROW;
|
||||||
YY_BREAK
|
YY_BREAK
|
||||||
case 98:
|
case 98:
|
||||||
YY_RULE_SETUP
|
YY_RULE_SETUP
|
||||||
#line 509 "scan-gram.l"
|
#line 498 "scan-gram.l"
|
||||||
YY_OBS_GROW;
|
YY_OBS_GROW;
|
||||||
YY_BREAK
|
YY_BREAK
|
||||||
case 99:
|
case 99:
|
||||||
YY_RULE_SETUP
|
YY_RULE_SETUP
|
||||||
#line 510 "scan-gram.l"
|
#line 499 "scan-gram.l"
|
||||||
YY_OBS_GROW; YY_LINES;
|
YY_OBS_GROW; YY_LINES;
|
||||||
YY_BREAK
|
YY_BREAK
|
||||||
case YY_STATE_EOF(SC_PROLOGUE):
|
case YY_STATE_EOF(SC_PROLOGUE):
|
||||||
#line 512 "scan-gram.l"
|
#line 501 "scan-gram.l"
|
||||||
{
|
{
|
||||||
LOCATION_PRINT (stderr, *yylloc);
|
LOCATION_PRINT (stderr, *yylloc);
|
||||||
fprintf (stderr, _(": unexpected end of file in a prologue\n"));
|
fprintf (stderr, _(": unexpected end of file in a prologue\n"));
|
||||||
@@ -1869,11 +1864,11 @@ case YY_STATE_EOF(SC_PROLOGUE):
|
|||||||
|
|
||||||
case 100:
|
case 100:
|
||||||
YY_RULE_SETUP
|
YY_RULE_SETUP
|
||||||
#line 530 "scan-gram.l"
|
#line 519 "scan-gram.l"
|
||||||
YY_OBS_GROW;
|
YY_OBS_GROW;
|
||||||
YY_BREAK
|
YY_BREAK
|
||||||
case YY_STATE_EOF(SC_EPILOGUE):
|
case YY_STATE_EOF(SC_EPILOGUE):
|
||||||
#line 532 "scan-gram.l"
|
#line 521 "scan-gram.l"
|
||||||
{
|
{
|
||||||
yy_pop_state ();
|
yy_pop_state ();
|
||||||
YY_OBS_FINISH;
|
YY_OBS_FINISH;
|
||||||
@@ -1884,10 +1879,10 @@ case YY_STATE_EOF(SC_EPILOGUE):
|
|||||||
|
|
||||||
case 101:
|
case 101:
|
||||||
YY_RULE_SETUP
|
YY_RULE_SETUP
|
||||||
#line 541 "scan-gram.l"
|
#line 530 "scan-gram.l"
|
||||||
YY_FATAL_ERROR( "flex scanner jammed" );
|
YY_FATAL_ERROR( "flex scanner jammed" );
|
||||||
YY_BREAK
|
YY_BREAK
|
||||||
#line 1891 "scan-gram.c"
|
#line 1886 "scan-gram.c"
|
||||||
case YY_STATE_EOF(INITIAL):
|
case YY_STATE_EOF(INITIAL):
|
||||||
yyterminate();
|
yyterminate();
|
||||||
|
|
||||||
@@ -2777,7 +2772,7 @@ int main()
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
#line 541 "scan-gram.l"
|
#line 530 "scan-gram.l"
|
||||||
|
|
||||||
|
|
||||||
/*------------------------------------------------------------------.
|
/*------------------------------------------------------------------.
|
||||||
|
|||||||
@@ -107,18 +107,7 @@ blanks [ \t\f]+
|
|||||||
%{
|
%{
|
||||||
/* At each yylex invocation, mark the current position as the
|
/* At each yylex invocation, mark the current position as the
|
||||||
start of the next token. */
|
start of the next token. */
|
||||||
#define TR_POS 0
|
|
||||||
#if TR_POS
|
|
||||||
fprintf (stderr, "FOO1: %p: ", yylloc);
|
|
||||||
LOCATION_PRINT (stderr, *yylloc);
|
|
||||||
fprintf (stderr, "\n");
|
|
||||||
#endif
|
|
||||||
YY_STEP;
|
YY_STEP;
|
||||||
#if TR_POS
|
|
||||||
fprintf (stderr, "BAR1: ");
|
|
||||||
LOCATION_PRINT (stderr, *yylloc);
|
|
||||||
fprintf (stderr, "\n");
|
|
||||||
#endif
|
|
||||||
%}
|
%}
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user