blob: 4a98d23700803dbc497f032163d9448d3f495811 [file] [log] [blame]
drh82415f22015-11-09 19:33:42 +00001/*
2** 2000-05-29
drh75897232000-05-29 14:26:00 +00003**
drh82415f22015-11-09 19:33:42 +00004** The author disclaims copyright to this source code. In place of
5** a legal notice, here is a blessing:
6**
7** May you do good and not evil.
8** May you find forgiveness for yourself and forgive others.
9** May you share freely, never taking more than you give.
10**
11*************************************************************************
12** Driver template for the LEMON parser generator.
13**
14** The "lemon" program processes an LALR(1) input grammar file, then uses
15** this template to construct a parser. The "lemon" program inserts text
16** at each "%%" line. Also, any "P-a-r-s-e" identifer prefix (without the
17** interstitial "-" characters) contained in this template is changed into
18** the value of the %name directive from the grammar. Otherwise, the content
19** of this template is copied straight through into the generate parser
20** source file.
21**
22** The following is the concatenation of all %include directives from the
23** input grammar file:
drh75897232000-05-29 14:26:00 +000024*/
drh82415f22015-11-09 19:33:42 +000025#include <stdio.h>
26/************ Begin %include sections from the grammar ************************/
drh75897232000-05-29 14:26:00 +000027%%
drh82415f22015-11-09 19:33:42 +000028/**************** End of %include directives **********************************/
29/* These constants specify the various numeric values for terminal symbols
30** in a format understandable to "makeheaders". This section is blank unless
31** "lemon" is run with the "-m" command-line option.
32***************** Begin makeheaders token definitions *************************/
33%%
34/**************** End makeheaders token definitions ***************************/
drh822a62f2015-11-09 19:35:18 +000035
36/* The next sections is a series of control #defines.
drh75897232000-05-29 14:26:00 +000037** various aspects of the generated parser.
drh82415f22015-11-09 19:33:42 +000038** YYCODETYPE is the data type used to store the integer codes
39** that represent terminal and non-terminal symbols.
40** "unsigned char" is used if there are fewer than
41** 256 symbols. Larger types otherwise.
42** YYNOCODE is a number of type YYCODETYPE that is not used for
43** any terminal or nonterminal symbol.
drh0bd1f4e2002-06-06 18:54:39 +000044** YYFALLBACK If defined, this indicates that one or more tokens
drh82415f22015-11-09 19:33:42 +000045** (also known as: "terminal symbols") have fall-back
46** values which should be used if the original symbol
47** would not parse. This permits keywords to sometimes
48** be used as identifiers, for example.
49** YYACTIONTYPE is the data type used for "action codes" - numbers
50** that indicate what to do in response to the next
51** token.
52** ParseTOKENTYPE is the data type used for minor type for terminal
53** symbols. Background: A "minor type" is a semantic
54** value associated with a terminal or non-terminal
55** symbols. For example, for an "ID" terminal symbol,
56** the minor type might be the name of the identifier.
57** Each non-terminal can have a different minor type.
58** Terminal symbols all have the same minor type, though.
59** This macros defines the minor type for terminal
60** symbols.
61** YYMINORTYPE is the data type used for all minor types.
drh75897232000-05-29 14:26:00 +000062** This is typically a union of many types, one of
63** which is ParseTOKENTYPE. The entry in the union
drh82415f22015-11-09 19:33:42 +000064** for terminal symbols is called "yy0".
drhb19fd012007-03-29 01:44:45 +000065** YYSTACKDEPTH is the maximum depth of the parser's stack. If
66** zero the stack is dynamically sized using realloc()
drh1f245e42002-03-11 13:55:50 +000067** ParseARG_SDECL A static variable declaration for the %extra_argument
68** ParseARG_PDECL A parameter declaration for the %extra_argument
69** ParseARG_STORE Code to store %extra_argument into yypParser
70** ParseARG_FETCH Code to extract %extra_argument from yypParser
drh75897232000-05-29 14:26:00 +000071** YYERRORSYMBOL is the code number of the error symbol. If not
72** defined, then do no error processing.
drh3bd48ab2015-09-07 18:23:37 +000073** YYNSTATE the combined number of states.
74** YYNRULE the number of rules in the grammar
75** YY_MAX_SHIFT Maximum value for shift actions
76** YY_MIN_SHIFTREDUCE Minimum value for shift-reduce actions
77** YY_MAX_SHIFTREDUCE Maximum value for shift-reduce actions
78** YY_MIN_REDUCE Maximum value for reduce actions
79** YY_ERROR_ACTION The yy_action[] code for syntax error
80** YY_ACCEPT_ACTION The yy_action[] code for accept
81** YY_NO_ACTION The yy_action[] code for no-op
drh75897232000-05-29 14:26:00 +000082*/
drh82415f22015-11-09 19:33:42 +000083#ifndef INTERFACE
84# define INTERFACE 1
85#endif
86/************* Begin control #defines *****************************************/
drh75897232000-05-29 14:26:00 +000087%%
drh82415f22015-11-09 19:33:42 +000088/************* End control #defines *******************************************/
drh75897232000-05-29 14:26:00 +000089
drh8a415d32009-06-12 13:53:51 +000090/* Define the yytestcase() macro to be a no-op if is not already defined
91** otherwise.
92**
93** Applications can choose to define yytestcase() in the %include section
94** to a macro that can assist in verifying code coverage. For production
95** code the yytestcase() macro should be turned off. But it is useful
96** for testing.
97*/
98#ifndef yytestcase
99# define yytestcase(X)
100#endif
101
drh26c9b5e2008-04-11 14:56:53 +0000102
drh34ff57b2008-07-14 12:27:51 +0000103/* Next are the tables used to determine what action to take based on the
drh8b582012003-10-21 13:16:03 +0000104** current state and lookahead token. These tables are used to implement
105** functions that take a state number and lookahead value and return an
106** action integer.
drh75897232000-05-29 14:26:00 +0000107**
drh8548a052003-10-22 22:15:27 +0000108** Suppose the action integer is N. Then the action is determined as
109** follows
drh75897232000-05-29 14:26:00 +0000110**
drh3bd48ab2015-09-07 18:23:37 +0000111** 0 <= N <= YY_MAX_SHIFT Shift N. That is, push the lookahead
drh8548a052003-10-22 22:15:27 +0000112** token onto the stack and goto state N.
113**
drh3bd48ab2015-09-07 18:23:37 +0000114** N between YY_MIN_SHIFTREDUCE Shift to an arbitrary state then
115** and YY_MAX_SHIFTREDUCE reduce by rule N-YY_MIN_SHIFTREDUCE.
drh8548a052003-10-22 22:15:27 +0000116**
drh3bd48ab2015-09-07 18:23:37 +0000117** N between YY_MIN_REDUCE Reduce by rule N-YY_MIN_REDUCE
118** and YY_MAX_REDUCE
drh701b6882016-08-10 13:30:43 +0000119**
drh3bd48ab2015-09-07 18:23:37 +0000120** N == YY_ERROR_ACTION A syntax error has occurred.
drh8548a052003-10-22 22:15:27 +0000121**
drh3bd48ab2015-09-07 18:23:37 +0000122** N == YY_ACCEPT_ACTION The parser accepts its input.
drh8548a052003-10-22 22:15:27 +0000123**
drh3bd48ab2015-09-07 18:23:37 +0000124** N == YY_NO_ACTION No such action. Denotes unused
drh8548a052003-10-22 22:15:27 +0000125** slots in the yy_action[] table.
126**
127** The action table is constructed as a single large table named yy_action[].
drh701b6882016-08-10 13:30:43 +0000128** Given state S and lookahead X, the action is computed as either:
drh75897232000-05-29 14:26:00 +0000129**
drh701b6882016-08-10 13:30:43 +0000130** (A) N = yy_action[ yy_shift_ofst[S] + X ]
131** (B) N = yy_default[S]
drh8b582012003-10-21 13:16:03 +0000132**
drh701b6882016-08-10 13:30:43 +0000133** The (A) formula is preferred. The B formula is used instead if:
134** (1) The yy_shift_ofst[S]+X value is out of range, or
135** (2) yy_lookahead[yy_shift_ofst[S]+X] is not equal to X, or
136** (3) yy_shift_ofst[S] equal YY_SHIFT_USE_DFLT.
137** (Implementation note: YY_SHIFT_USE_DFLT is chosen so that
138** YY_SHIFT_USE_DFLT+X will be out of range for all possible lookaheads X.
139** Hence only tests (1) and (2) need to be evaluated.)
drh8b582012003-10-21 13:16:03 +0000140**
drh701b6882016-08-10 13:30:43 +0000141** The formulas above are for computing the action when the lookahead is
drh8b582012003-10-21 13:16:03 +0000142** a terminal symbol. If the lookahead is a non-terminal (as occurs after
143** a reduce action) then the yy_reduce_ofst[] array is used in place of
144** the yy_shift_ofst[] array and YY_REDUCE_USE_DFLT is used in place of
145** YY_SHIFT_USE_DFLT.
146**
147** The following are the tables generated in this section:
148**
149** yy_action[] A single table containing all actions.
150** yy_lookahead[] A table containing the lookahead for each entry in
151** yy_action. Used to detect hash collisions.
152** yy_shift_ofst[] For each state, the offset into yy_action for
153** shifting terminals.
154** yy_reduce_ofst[] For each state, the offset into yy_action for
155** shifting non-terminals after a reduce.
156** yy_default[] Default action for each state.
drh82415f22015-11-09 19:33:42 +0000157**
158*********** Begin parsing tables **********************************************/
drh75897232000-05-29 14:26:00 +0000159%%
drh82415f22015-11-09 19:33:42 +0000160/********** End of lemon-generated parsing tables *****************************/
drh75897232000-05-29 14:26:00 +0000161
drh82415f22015-11-09 19:33:42 +0000162/* The next table maps tokens (terminal symbols) into fallback tokens.
163** If a construct like the following:
drh0bd1f4e2002-06-06 18:54:39 +0000164**
165** %fallback ID X Y Z.
166**
drh34ff57b2008-07-14 12:27:51 +0000167** appears in the grammar, then ID becomes a fallback token for X, Y,
drh0bd1f4e2002-06-06 18:54:39 +0000168** and Z. Whenever one of the tokens X, Y, or Z is input to the parser
169** but it does not parse, the type of the token is changed to ID and
170** the parse is retried before an error is thrown.
drh82415f22015-11-09 19:33:42 +0000171**
172** This feature can be used, for example, to cause some keywords in a language
173** to revert to identifiers if they keyword does not apply in the context where
174** it appears.
drh0bd1f4e2002-06-06 18:54:39 +0000175*/
176#ifdef YYFALLBACK
177static const YYCODETYPE yyFallback[] = {
178%%
179};
180#endif /* YYFALLBACK */
181
drh75897232000-05-29 14:26:00 +0000182/* The following structure represents a single element of the
183** parser's stack. Information stored includes:
184**
185** + The state number for the parser at this level of the stack.
186**
187** + The value of the token stored at this level of the stack.
188** (In other words, the "major" token.)
189**
190** + The semantic value stored at this level of the stack. This is
191** the information used by the action routines in the grammar.
192** It is sometimes called the "minor" token.
drha248a722015-09-07 19:52:55 +0000193**
194** After the "shift" half of a SHIFTREDUCE action, the stateno field
195** actually contains the reduce action for the second half of the
196** SHIFTREDUCE.
drh75897232000-05-29 14:26:00 +0000197*/
198struct yyStackEntry {
drha248a722015-09-07 19:52:55 +0000199 YYACTIONTYPE stateno; /* The state-number, or reduce action in SHIFTREDUCE */
drh2abcd582008-07-24 23:34:07 +0000200 YYCODETYPE major; /* The major token value. This is the code
201 ** number for the token at this stack level */
202 YYMINORTYPE minor; /* The user-supplied minor token value. This
203 ** is the value of the token */
drh75897232000-05-29 14:26:00 +0000204};
drh1f245e42002-03-11 13:55:50 +0000205typedef struct yyStackEntry yyStackEntry;
drh75897232000-05-29 14:26:00 +0000206
207/* The state of the parser is completely contained in an instance of
208** the following structure */
209struct yyParser {
drh118ab652016-05-23 21:56:24 +0000210 yyStackEntry *yytos; /* Pointer to top element of the stack */
drhec424a52008-07-25 15:39:03 +0000211#ifdef YYTRACKMAXSTACKDEPTH
drh118ab652016-05-23 21:56:24 +0000212 int yyhwm; /* High-water mark of the stack */
drhec424a52008-07-25 15:39:03 +0000213#endif
drhdab943c2016-02-16 01:01:43 +0000214#ifndef YYNOERRORRECOVERY
drh1f245e42002-03-11 13:55:50 +0000215 int yyerrcnt; /* Shifts left before out of the error */
drhdab943c2016-02-16 01:01:43 +0000216#endif
drh1f245e42002-03-11 13:55:50 +0000217 ParseARG_SDECL /* A place to hold %extra_argument */
drhb19fd012007-03-29 01:44:45 +0000218#if YYSTACKDEPTH<=0
219 int yystksz; /* Current side of the stack */
220 yyStackEntry *yystack; /* The parser's stack */
drh8dc82472016-05-27 04:10:47 +0000221 yyStackEntry yystk0; /* First stack entry */
drhb19fd012007-03-29 01:44:45 +0000222#else
drh1f245e42002-03-11 13:55:50 +0000223 yyStackEntry yystack[YYSTACKDEPTH]; /* The parser's stack */
drh8b471e72017-06-28 15:01:35 +0000224 yyStackEntry *yystackEnd; /* Last entry in the stack */
drhb19fd012007-03-29 01:44:45 +0000225#endif
drh75897232000-05-29 14:26:00 +0000226};
227typedef struct yyParser yyParser;
228
229#ifndef NDEBUG
230#include <stdio.h>
231static FILE *yyTraceFILE = 0;
232static char *yyTracePrompt = 0;
drh0bd1f4e2002-06-06 18:54:39 +0000233#endif /* NDEBUG */
drh75897232000-05-29 14:26:00 +0000234
drh0bd1f4e2002-06-06 18:54:39 +0000235#ifndef NDEBUG
drh75897232000-05-29 14:26:00 +0000236/*
237** Turn parser tracing on by giving a stream to which to write the trace
238** and a prompt to preface each trace message. Tracing is turned off
239** by making either argument NULL
240**
241** Inputs:
242** <ul>
243** <li> A FILE* to which trace output should be written.
244** If NULL, then tracing is turned off.
245** <li> A prefix string written at the beginning of every
246** line of trace output. If NULL, then tracing is
247** turned off.
248** </ul>
249**
250** Outputs:
251** None.
252*/
drh75897232000-05-29 14:26:00 +0000253void ParseTrace(FILE *TraceFILE, char *zTracePrompt){
254 yyTraceFILE = TraceFILE;
255 yyTracePrompt = zTracePrompt;
256 if( yyTraceFILE==0 ) yyTracePrompt = 0;
257 else if( yyTracePrompt==0 ) yyTraceFILE = 0;
258}
drh0bd1f4e2002-06-06 18:54:39 +0000259#endif /* NDEBUG */
drh75897232000-05-29 14:26:00 +0000260
drh0bd1f4e2002-06-06 18:54:39 +0000261#ifndef NDEBUG
drh75897232000-05-29 14:26:00 +0000262/* For tracing shifts, the names of all terminals and nonterminals
263** are required. The following table supplies these names */
drh57196282004-10-06 15:41:16 +0000264static const char *const yyTokenName[] = {
drh75897232000-05-29 14:26:00 +0000265%%
266};
drh0bd1f4e2002-06-06 18:54:39 +0000267#endif /* NDEBUG */
drh75897232000-05-29 14:26:00 +0000268
drh0bd1f4e2002-06-06 18:54:39 +0000269#ifndef NDEBUG
270/* For tracing reduce actions, the names of all rules are required.
271*/
drh57196282004-10-06 15:41:16 +0000272static const char *const yyRuleName[] = {
drh0bd1f4e2002-06-06 18:54:39 +0000273%%
274};
275#endif /* NDEBUG */
drha1b351a2001-09-14 16:42:12 +0000276
drh960e8c62001-04-03 16:53:21 +0000277
drhb19fd012007-03-29 01:44:45 +0000278#if YYSTACKDEPTH<=0
279/*
drh8dc82472016-05-27 04:10:47 +0000280** Try to increase the size of the parser stack. Return the number
281** of errors. Return 0 on success.
drhb19fd012007-03-29 01:44:45 +0000282*/
drh8dc82472016-05-27 04:10:47 +0000283static int yyGrowStack(yyParser *p){
drhb19fd012007-03-29 01:44:45 +0000284 int newSize;
drhabecc0b2016-05-24 00:40:54 +0000285 int idx;
drhb19fd012007-03-29 01:44:45 +0000286 yyStackEntry *pNew;
287
288 newSize = p->yystksz*2 + 100;
drhabecc0b2016-05-24 00:40:54 +0000289 idx = p->yytos ? (int)(p->yytos - p->yystack) : 0;
drh8dc82472016-05-27 04:10:47 +0000290 if( p->yystack==&p->yystk0 ){
291 pNew = malloc(newSize*sizeof(pNew[0]));
292 if( pNew ) pNew[0] = p->yystk0;
293 }else{
294 pNew = realloc(p->yystack, newSize*sizeof(pNew[0]));
295 }
drhb19fd012007-03-29 01:44:45 +0000296 if( pNew ){
297 p->yystack = pNew;
drhabecc0b2016-05-24 00:40:54 +0000298 p->yytos = &p->yystack[idx];
drhb19fd012007-03-29 01:44:45 +0000299#ifndef NDEBUG
300 if( yyTraceFILE ){
drh8dc82472016-05-27 04:10:47 +0000301 fprintf(yyTraceFILE,"%sStack grows from %d to %d entries.\n",
302 yyTracePrompt, p->yystksz, newSize);
drhb19fd012007-03-29 01:44:45 +0000303 }
304#endif
drh8dc82472016-05-27 04:10:47 +0000305 p->yystksz = newSize;
drhb19fd012007-03-29 01:44:45 +0000306 }
drh8dc82472016-05-27 04:10:47 +0000307 return pNew==0;
drhb19fd012007-03-29 01:44:45 +0000308}
309#endif
310
drh82415f22015-11-09 19:33:42 +0000311/* Datatype of the argument to the memory allocated passed as the
312** second argument to ParseAlloc() below. This can be changed by
313** putting an appropriate #define in the %include section of the input
314** grammar.
315*/
316#ifndef YYMALLOCARGTYPE
317# define YYMALLOCARGTYPE size_t
318#endif
319
drhd26cc542017-01-28 20:46:37 +0000320/* Initialize a new parser that has already been allocated.
321*/
322void ParseInit(void *yypParser){
323 yyParser *pParser = (yyParser*)yypParser;
324#ifdef YYTRACKMAXSTACKDEPTH
325 pParser->yyhwm = 0;
326#endif
327#if YYSTACKDEPTH<=0
328 pParser->yytos = NULL;
329 pParser->yystack = NULL;
330 pParser->yystksz = 0;
331 if( yyGrowStack(pParser) ){
332 pParser->yystack = &pParser->yystk0;
333 pParser->yystksz = 1;
334 }
335#endif
336#ifndef YYNOERRORRECOVERY
337 pParser->yyerrcnt = -1;
338#endif
339 pParser->yytos = pParser->yystack;
340 pParser->yystack[0].stateno = 0;
341 pParser->yystack[0].major = 0;
drh8b471e72017-06-28 15:01:35 +0000342 pParser->yystackEnd = &pParser->yystack[YYSTACKDEPTH-1];
drhd26cc542017-01-28 20:46:37 +0000343}
344
345#ifndef Parse_ENGINEALWAYSONSTACK
drh75897232000-05-29 14:26:00 +0000346/*
347** This function allocates a new parser.
348** The only argument is a pointer to a function which works like
349** malloc.
350**
351** Inputs:
352** A pointer to the function used to allocate memory.
353**
354** Outputs:
355** A pointer to a parser. This pointer is used in subsequent calls
356** to Parse and ParseFree.
357*/
drh82415f22015-11-09 19:33:42 +0000358void *ParseAlloc(void *(*mallocProc)(YYMALLOCARGTYPE)){
drh75897232000-05-29 14:26:00 +0000359 yyParser *pParser;
drh82415f22015-11-09 19:33:42 +0000360 pParser = (yyParser*)(*mallocProc)( (YYMALLOCARGTYPE)sizeof(yyParser) );
drhd26cc542017-01-28 20:46:37 +0000361 if( pParser ) ParseInit(pParser);
drh75897232000-05-29 14:26:00 +0000362 return pParser;
363}
drhd26cc542017-01-28 20:46:37 +0000364#endif /* Parse_ENGINEALWAYSONSTACK */
365
drh75897232000-05-29 14:26:00 +0000366
drh82415f22015-11-09 19:33:42 +0000367/* The following function deletes the "minor type" or semantic value
368** associated with a symbol. The symbol can be either a terminal
369** or nonterminal. "yymajor" is the symbol code, and "yypminor" is
370** a pointer to the value to be deleted. The code used to do the
371** deletions is derived from the %destructor and/or %token_destructor
372** directives of the input grammar.
drh75897232000-05-29 14:26:00 +0000373*/
drh633e6d52008-07-28 19:34:53 +0000374static void yy_destructor(
375 yyParser *yypParser, /* The parser */
376 YYCODETYPE yymajor, /* Type code for object to destroy */
377 YYMINORTYPE *yypminor /* The object to be destroyed */
378){
379 ParseARG_FETCH;
drh75897232000-05-29 14:26:00 +0000380 switch( yymajor ){
381 /* Here is inserted the actions which take place when a
382 ** terminal or non-terminal is destroyed. This can happen
383 ** when the symbol is popped from the stack during a
384 ** reduce or during error processing or when a parser is
385 ** being destroyed before it is finished parsing.
386 **
387 ** Note: during a reduce, the only symbols destroyed are those
drh82415f22015-11-09 19:33:42 +0000388 ** which appear on the RHS of the rule, but which are *not* used
drh75897232000-05-29 14:26:00 +0000389 ** inside the C code.
390 */
drh82415f22015-11-09 19:33:42 +0000391/********* Begin destructor definitions ***************************************/
drh75897232000-05-29 14:26:00 +0000392%%
drh82415f22015-11-09 19:33:42 +0000393/********* End destructor definitions *****************************************/
drh75897232000-05-29 14:26:00 +0000394 default: break; /* If no destructor action specified: do nothing */
395 }
396}
397
398/*
399** Pop the parser's stack once.
400**
401** If there is a destructor routine associated with the token which
402** is popped from the stack, then call it.
drh75897232000-05-29 14:26:00 +0000403*/
drh3781f012015-11-09 14:11:37 +0000404static void yy_pop_parser_stack(yyParser *pParser){
405 yyStackEntry *yytos;
drh118ab652016-05-23 21:56:24 +0000406 assert( pParser->yytos!=0 );
drh240c7fa2016-07-05 12:47:28 +0000407 assert( pParser->yytos > pParser->yystack );
drh118ab652016-05-23 21:56:24 +0000408 yytos = pParser->yytos--;
drh75897232000-05-29 14:26:00 +0000409#ifndef NDEBUG
drh3781f012015-11-09 14:11:37 +0000410 if( yyTraceFILE ){
drh75897232000-05-29 14:26:00 +0000411 fprintf(yyTraceFILE,"%sPopping %s\n",
412 yyTracePrompt,
drh3ddfdf72003-12-22 14:53:19 +0000413 yyTokenName[yytos->major]);
drh75897232000-05-29 14:26:00 +0000414 }
415#endif
drh3781f012015-11-09 14:11:37 +0000416 yy_destructor(pParser, yytos->major, &yytos->minor);
drh75897232000-05-29 14:26:00 +0000417}
418
drhd26cc542017-01-28 20:46:37 +0000419/*
420** Clear all secondary memory allocations from the parser
421*/
422void ParseFinalize(void *p){
423 yyParser *pParser = (yyParser*)p;
424 while( pParser->yytos>pParser->yystack ) yy_pop_parser_stack(pParser);
425#if YYSTACKDEPTH<=0
426 if( pParser->yystack!=&pParser->yystk0 ) free(pParser->yystack);
427#endif
428}
429
430#ifndef Parse_ENGINEALWAYSONSTACK
drh75897232000-05-29 14:26:00 +0000431/*
drh82415f22015-11-09 19:33:42 +0000432** Deallocate and destroy a parser. Destructors are called for
drh75897232000-05-29 14:26:00 +0000433** all stack elements before shutting the parser down.
434**
drh82415f22015-11-09 19:33:42 +0000435** If the YYPARSEFREENEVERNULL macro exists (for example because it
436** is defined in a %include section of the input grammar) then it is
437** assumed that the input pointer is never NULL.
drh75897232000-05-29 14:26:00 +0000438*/
drh75897232000-05-29 14:26:00 +0000439void ParseFree(
drh960e8c62001-04-03 16:53:21 +0000440 void *p, /* The parser to be deleted */
441 void (*freeProc)(void*) /* Function used to reclaim memory */
drh75897232000-05-29 14:26:00 +0000442){
drh82415f22015-11-09 19:33:42 +0000443#ifndef YYPARSEFREENEVERNULL
drhd26cc542017-01-28 20:46:37 +0000444 if( p==0 ) return;
drh82415f22015-11-09 19:33:42 +0000445#endif
drhd26cc542017-01-28 20:46:37 +0000446 ParseFinalize(p);
447 (*freeProc)(p);
drh75897232000-05-29 14:26:00 +0000448}
drhd26cc542017-01-28 20:46:37 +0000449#endif /* Parse_ENGINEALWAYSONSTACK */
drh75897232000-05-29 14:26:00 +0000450
451/*
drhec424a52008-07-25 15:39:03 +0000452** Return the peak depth of the stack for a parser.
453*/
454#ifdef YYTRACKMAXSTACKDEPTH
455int ParseStackPeak(void *p){
456 yyParser *pParser = (yyParser*)p;
drh118ab652016-05-23 21:56:24 +0000457 return pParser->yyhwm;
drhec424a52008-07-25 15:39:03 +0000458}
459#endif
460
461/*
drh8b582012003-10-21 13:16:03 +0000462** Find the appropriate action for a parser given the terminal
463** look-ahead token iLookAhead.
drh75897232000-05-29 14:26:00 +0000464*/
drh4ef07702016-03-16 19:45:54 +0000465static unsigned int yy_find_shift_action(
drh75897232000-05-29 14:26:00 +0000466 yyParser *pParser, /* The parser */
drhd9f291e2006-06-13 11:15:47 +0000467 YYCODETYPE iLookAhead /* The look-ahead token */
drh75897232000-05-29 14:26:00 +0000468){
drh8b582012003-10-21 13:16:03 +0000469 int i;
drh118ab652016-05-23 21:56:24 +0000470 int stateno = pParser->yytos->stateno;
drha4414042015-11-09 15:06:26 +0000471
472 if( stateno>=YY_MIN_REDUCE ) return stateno;
drhae2a4082015-09-07 20:02:39 +0000473 assert( stateno <= YY_SHIFT_COUNT );
drha4414042015-11-09 15:06:26 +0000474 do{
475 i = yy_shift_ofst[stateno];
drha4414042015-11-09 15:06:26 +0000476 assert( iLookAhead!=YYNOCODE );
477 i += iLookAhead;
478 if( i<0 || i>=YY_ACTTAB_COUNT || yy_lookahead[i]!=iLookAhead ){
drh4767d972006-06-14 15:03:49 +0000479#ifdef YYFALLBACK
drhc83db9e2016-08-10 01:43:30 +0000480 YYCODETYPE iFallback; /* Fallback token */
481 if( iLookAhead<sizeof(yyFallback)/sizeof(yyFallback[0])
482 && (iFallback = yyFallback[iLookAhead])!=0 ){
drh4767d972006-06-14 15:03:49 +0000483#ifndef NDEBUG
drhc83db9e2016-08-10 01:43:30 +0000484 if( yyTraceFILE ){
485 fprintf(yyTraceFILE, "%sFALLBACK %s => %s\n",
486 yyTracePrompt, yyTokenName[iLookAhead], yyTokenName[iFallback]);
drhe09daa92006-06-10 13:29:31 +0000487 }
drha4414042015-11-09 15:06:26 +0000488#endif
drhc83db9e2016-08-10 01:43:30 +0000489 assert( yyFallback[iFallback]==0 ); /* Fallback loop must terminate */
490 iLookAhead = iFallback;
491 continue;
492 }
493#endif
drha4414042015-11-09 15:06:26 +0000494#ifdef YYWILDCARD
drhc83db9e2016-08-10 01:43:30 +0000495 {
496 int j = i - iLookAhead + YYWILDCARD;
497 if(
drha4414042015-11-09 15:06:26 +0000498#if YY_SHIFT_MIN+YYWILDCARD<0
drhc83db9e2016-08-10 01:43:30 +0000499 j>=0 &&
drha4414042015-11-09 15:06:26 +0000500#endif
501#if YY_SHIFT_MAX+YYWILDCARD>=YY_ACTTAB_COUNT
drhc83db9e2016-08-10 01:43:30 +0000502 j<YY_ACTTAB_COUNT &&
drha4414042015-11-09 15:06:26 +0000503#endif
drhc83db9e2016-08-10 01:43:30 +0000504 yy_lookahead[j]==YYWILDCARD && iLookAhead>0
505 ){
drha4414042015-11-09 15:06:26 +0000506#ifndef NDEBUG
drhc83db9e2016-08-10 01:43:30 +0000507 if( yyTraceFILE ){
508 fprintf(yyTraceFILE, "%sWILDCARD %s => %s\n",
509 yyTracePrompt, yyTokenName[iLookAhead],
510 yyTokenName[YYWILDCARD]);
drha4414042015-11-09 15:06:26 +0000511 }
drhc83db9e2016-08-10 01:43:30 +0000512#endif /* NDEBUG */
513 return yy_action[j];
drha4414042015-11-09 15:06:26 +0000514 }
drha4414042015-11-09 15:06:26 +0000515 }
drhc83db9e2016-08-10 01:43:30 +0000516#endif /* YYWILDCARD */
drha4414042015-11-09 15:06:26 +0000517 return yy_default[stateno];
518 }else{
519 return yy_action[i];
drh0bd1f4e2002-06-06 18:54:39 +0000520 }
drha4414042015-11-09 15:06:26 +0000521 }while(1);
drh8b582012003-10-21 13:16:03 +0000522}
523
524/*
525** Find the appropriate action for a parser given the non-terminal
526** look-ahead token iLookAhead.
drh8b582012003-10-21 13:16:03 +0000527*/
528static int yy_find_reduce_action(
drh161aba32005-02-01 04:09:36 +0000529 int stateno, /* Current state number */
drhd9f291e2006-06-13 11:15:47 +0000530 YYCODETYPE iLookAhead /* The look-ahead token */
drh8b582012003-10-21 13:16:03 +0000531){
532 int i;
drh7f7c2572008-04-27 18:45:10 +0000533#ifdef YYERRORSYMBOL
drhf16371d2009-11-03 19:18:31 +0000534 if( stateno>YY_REDUCE_COUNT ){
drh7f7c2572008-04-27 18:45:10 +0000535 return yy_default[stateno];
536 }
537#else
drhf16371d2009-11-03 19:18:31 +0000538 assert( stateno<=YY_REDUCE_COUNT );
drh7f7c2572008-04-27 18:45:10 +0000539#endif
drh01495b92008-01-23 12:52:40 +0000540 i = yy_reduce_ofst[stateno];
541 assert( i!=YY_REDUCE_USE_DFLT );
542 assert( iLookAhead!=YYNOCODE );
drh8b582012003-10-21 13:16:03 +0000543 i += iLookAhead;
drh7f7c2572008-04-27 18:45:10 +0000544#ifdef YYERRORSYMBOL
drhf16371d2009-11-03 19:18:31 +0000545 if( i<0 || i>=YY_ACTTAB_COUNT || yy_lookahead[i]!=iLookAhead ){
drh7f7c2572008-04-27 18:45:10 +0000546 return yy_default[stateno];
547 }
548#else
drhf16371d2009-11-03 19:18:31 +0000549 assert( i>=0 && i<YY_ACTTAB_COUNT );
drh01495b92008-01-23 12:52:40 +0000550 assert( yy_lookahead[i]==iLookAhead );
drh7f7c2572008-04-27 18:45:10 +0000551#endif
drh01495b92008-01-23 12:52:40 +0000552 return yy_action[i];
drh75897232000-05-29 14:26:00 +0000553}
554
555/*
drhb19fd012007-03-29 01:44:45 +0000556** The following routine is called if the stack overflows.
557*/
drh45f31be2016-02-16 21:19:49 +0000558static void yyStackOverflow(yyParser *yypParser){
drhb19fd012007-03-29 01:44:45 +0000559 ParseARG_FETCH;
drhb19fd012007-03-29 01:44:45 +0000560#ifndef NDEBUG
561 if( yyTraceFILE ){
562 fprintf(yyTraceFILE,"%sStack Overflow!\n",yyTracePrompt);
563 }
564#endif
drhabecc0b2016-05-24 00:40:54 +0000565 while( yypParser->yytos>yypParser->yystack ) yy_pop_parser_stack(yypParser);
drhb19fd012007-03-29 01:44:45 +0000566 /* Here code is inserted which will execute if the parser
567 ** stack every overflows */
drh82415f22015-11-09 19:33:42 +0000568/******** Begin %stack_overflow code ******************************************/
drhb19fd012007-03-29 01:44:45 +0000569%%
drh82415f22015-11-09 19:33:42 +0000570/******** End %stack_overflow code ********************************************/
drhb19fd012007-03-29 01:44:45 +0000571 ParseARG_STORE; /* Suppress warning about unused %extra_argument var */
572}
573
574/*
drha248a722015-09-07 19:52:55 +0000575** Print tracing information for a SHIFT action
576*/
577#ifndef NDEBUG
578static void yyTraceShift(yyParser *yypParser, int yyNewState){
579 if( yyTraceFILE ){
drha248a722015-09-07 19:52:55 +0000580 if( yyNewState<YYNSTATE ){
drh0c4105e2015-11-10 14:51:22 +0000581 fprintf(yyTraceFILE,"%sShift '%s', go to state %d\n",
drh118ab652016-05-23 21:56:24 +0000582 yyTracePrompt,yyTokenName[yypParser->yytos->major],
drh0c4105e2015-11-10 14:51:22 +0000583 yyNewState);
drha248a722015-09-07 19:52:55 +0000584 }else{
drh0c4105e2015-11-10 14:51:22 +0000585 fprintf(yyTraceFILE,"%sShift '%s'\n",
drh118ab652016-05-23 21:56:24 +0000586 yyTracePrompt,yyTokenName[yypParser->yytos->major]);
drha248a722015-09-07 19:52:55 +0000587 }
588 }
589}
590#else
591# define yyTraceShift(X,Y)
592#endif
593
594/*
drh82415f22015-11-09 19:33:42 +0000595** Perform a shift action.
drh75897232000-05-29 14:26:00 +0000596*/
drha248a722015-09-07 19:52:55 +0000597static void yy_shift(
drh75897232000-05-29 14:26:00 +0000598 yyParser *yypParser, /* The parser to be shifted */
599 int yyNewState, /* The new state to shift in */
600 int yyMajor, /* The major token to shift in */
drh45f31be2016-02-16 21:19:49 +0000601 ParseTOKENTYPE yyMinor /* The minor token to shift in */
drh75897232000-05-29 14:26:00 +0000602){
drh3ddfdf72003-12-22 14:53:19 +0000603 yyStackEntry *yytos;
drh118ab652016-05-23 21:56:24 +0000604 yypParser->yytos++;
drhec424a52008-07-25 15:39:03 +0000605#ifdef YYTRACKMAXSTACKDEPTH
drh118ab652016-05-23 21:56:24 +0000606 if( (int)(yypParser->yytos - yypParser->yystack)>yypParser->yyhwm ){
607 yypParser->yyhwm++;
608 assert( yypParser->yyhwm == (int)(yypParser->yytos - yypParser->yystack) );
drhec424a52008-07-25 15:39:03 +0000609 }
610#endif
drhb19fd012007-03-29 01:44:45 +0000611#if YYSTACKDEPTH>0
drh8b471e72017-06-28 15:01:35 +0000612 if( yypParser->yytos>yypParser->yystackEnd ){
drh63413312016-12-06 17:59:05 +0000613 yypParser->yytos--;
drh45f31be2016-02-16 21:19:49 +0000614 yyStackOverflow(yypParser);
drha248a722015-09-07 19:52:55 +0000615 return;
drh75897232000-05-29 14:26:00 +0000616 }
drhb19fd012007-03-29 01:44:45 +0000617#else
drh118ab652016-05-23 21:56:24 +0000618 if( yypParser->yytos>=&yypParser->yystack[yypParser->yystksz] ){
drh8dc82472016-05-27 04:10:47 +0000619 if( yyGrowStack(yypParser) ){
drh63413312016-12-06 17:59:05 +0000620 yypParser->yytos--;
drh45f31be2016-02-16 21:19:49 +0000621 yyStackOverflow(yypParser);
drha248a722015-09-07 19:52:55 +0000622 return;
drhb19fd012007-03-29 01:44:45 +0000623 }
624 }
625#endif
drh0efd37f2016-06-06 18:17:36 +0000626 if( yyNewState > YY_MAX_SHIFT ){
627 yyNewState += YY_MIN_REDUCE - YY_MIN_SHIFTREDUCE;
628 }
drh118ab652016-05-23 21:56:24 +0000629 yytos = yypParser->yytos;
drhb27b7f52008-12-10 18:03:45 +0000630 yytos->stateno = (YYACTIONTYPE)yyNewState;
631 yytos->major = (YYCODETYPE)yyMajor;
drh45f31be2016-02-16 21:19:49 +0000632 yytos->minor.yy0 = yyMinor;
drha248a722015-09-07 19:52:55 +0000633 yyTraceShift(yypParser, yyNewState);
drh75897232000-05-29 14:26:00 +0000634}
635
636/* The following table contains information about every rule that
637** is used during the reduce.
638*/
drh57196282004-10-06 15:41:16 +0000639static const struct {
drh6be95362017-06-28 13:47:56 +0000640 YYCODETYPE lhs; /* Symbol on the left-hand side of the rule */
641 signed char nrhs; /* Negative of the number of RHS symbols in the rule */
drh75897232000-05-29 14:26:00 +0000642} yyRuleInfo[] = {
643%%
644};
645
drh1f245e42002-03-11 13:55:50 +0000646static void yy_accept(yyParser*); /* Forward Declaration */
drh75897232000-05-29 14:26:00 +0000647
648/*
649** Perform a reduce action and the shift that must immediately
650** follow the reduce.
651*/
652static void yy_reduce(
653 yyParser *yypParser, /* The parser */
drh4ef07702016-03-16 19:45:54 +0000654 unsigned int yyruleno /* Number of the rule by which to reduce */
drh75897232000-05-29 14:26:00 +0000655){
656 int yygoto; /* The next state */
657 int yyact; /* The next action */
drh1f245e42002-03-11 13:55:50 +0000658 yyStackEntry *yymsp; /* The top of the parser's stack */
drh75897232000-05-29 14:26:00 +0000659 int yysize; /* Amount to pop the stack */
drh1f245e42002-03-11 13:55:50 +0000660 ParseARG_FETCH;
drh118ab652016-05-23 21:56:24 +0000661 yymsp = yypParser->yytos;
drh0bd1f4e2002-06-06 18:54:39 +0000662#ifndef NDEBUG
drh4ef07702016-03-16 19:45:54 +0000663 if( yyTraceFILE && yyruleno<(int)(sizeof(yyRuleName)/sizeof(yyRuleName[0])) ){
drh3bd48ab2015-09-07 18:23:37 +0000664 yysize = yyRuleInfo[yyruleno].nrhs;
drh0c4105e2015-11-10 14:51:22 +0000665 fprintf(yyTraceFILE, "%sReduce [%s], go to state %d.\n", yyTracePrompt,
drh6be95362017-06-28 13:47:56 +0000666 yyRuleName[yyruleno], yymsp[yysize].stateno);
drh0bd1f4e2002-06-06 18:54:39 +0000667 }
668#endif /* NDEBUG */
drh45f31be2016-02-16 21:19:49 +0000669
670 /* Check that the stack is large enough to grow by a single entry
671 ** if the RHS of the rule is empty. This ensures that there is room
672 ** enough on the stack to push the LHS value */
673 if( yyRuleInfo[yyruleno].nrhs==0 ){
674#ifdef YYTRACKMAXSTACKDEPTH
drh118ab652016-05-23 21:56:24 +0000675 if( (int)(yypParser->yytos - yypParser->yystack)>yypParser->yyhwm ){
676 yypParser->yyhwm++;
677 assert( yypParser->yyhwm == (int)(yypParser->yytos - yypParser->yystack));
drh45f31be2016-02-16 21:19:49 +0000678 }
679#endif
680#if YYSTACKDEPTH>0
drh8b471e72017-06-28 15:01:35 +0000681 if( yypParser->yytos>=yypParser->yystackEnd ){
drh45f31be2016-02-16 21:19:49 +0000682 yyStackOverflow(yypParser);
683 return;
684 }
685#else
drh118ab652016-05-23 21:56:24 +0000686 if( yypParser->yytos>=&yypParser->yystack[yypParser->yystksz-1] ){
drh8dc82472016-05-27 04:10:47 +0000687 if( yyGrowStack(yypParser) ){
drh45f31be2016-02-16 21:19:49 +0000688 yyStackOverflow(yypParser);
689 return;
690 }
drh8dc82472016-05-27 04:10:47 +0000691 yymsp = yypParser->yytos;
drh45f31be2016-02-16 21:19:49 +0000692 }
693#endif
694 }
drhcb6c5652007-01-16 18:19:12 +0000695
drh75897232000-05-29 14:26:00 +0000696 switch( yyruleno ){
697 /* Beginning here are the reduction cases. A typical example
698 ** follows:
699 ** case 0:
drh75897232000-05-29 14:26:00 +0000700 ** #line <lineno> <grammarfile>
701 ** { ... } // User supplied code
702 ** #line <lineno> <thisfile>
703 ** break;
704 */
drh82415f22015-11-09 19:33:42 +0000705/********** Begin reduce actions **********************************************/
drh75897232000-05-29 14:26:00 +0000706%%
drh82415f22015-11-09 19:33:42 +0000707/********** End reduce actions ************************************************/
drh75897232000-05-29 14:26:00 +0000708 };
drh4ef07702016-03-16 19:45:54 +0000709 assert( yyruleno<sizeof(yyRuleInfo)/sizeof(yyRuleInfo[0]) );
drh75897232000-05-29 14:26:00 +0000710 yygoto = yyRuleInfo[yyruleno].lhs;
711 yysize = yyRuleInfo[yyruleno].nrhs;
drh6be95362017-06-28 13:47:56 +0000712 yyact = yy_find_reduce_action(yymsp[yysize].stateno,(YYCODETYPE)yygoto);
drhbd8fcc12017-06-28 11:56:18 +0000713
714 /* There are no SHIFTREDUCE actions on nonterminals because the table
715 ** generator has simplified them to pure REDUCE actions. */
716 assert( !(yyact>YY_MAX_SHIFT && yyact<=YY_MAX_SHIFTREDUCE) );
717
718 /* It is not possible for a REDUCE to be followed by an error */
719 assert( yyact!=YY_ERROR_ACTION );
720
721 if( yyact==YY_ACCEPT_ACTION ){
drh6be95362017-06-28 13:47:56 +0000722 yypParser->yytos += yysize;
drhbd8fcc12017-06-28 11:56:18 +0000723 yy_accept(yypParser);
724 }else{
drh6be95362017-06-28 13:47:56 +0000725 yymsp += yysize+1;
drh118ab652016-05-23 21:56:24 +0000726 yypParser->yytos = yymsp;
drh45f31be2016-02-16 21:19:49 +0000727 yymsp->stateno = (YYACTIONTYPE)yyact;
728 yymsp->major = (YYCODETYPE)yygoto;
drh45f31be2016-02-16 21:19:49 +0000729 yyTraceShift(yypParser, yyact);
drh75897232000-05-29 14:26:00 +0000730 }
731}
732
733/*
734** The following code executes when the parse fails
735*/
drhd3ec02d2009-06-12 02:27:14 +0000736#ifndef YYNOERRORRECOVERY
drh75897232000-05-29 14:26:00 +0000737static void yy_parse_failed(
738 yyParser *yypParser /* The parser */
drh75897232000-05-29 14:26:00 +0000739){
drh1f245e42002-03-11 13:55:50 +0000740 ParseARG_FETCH;
drh75897232000-05-29 14:26:00 +0000741#ifndef NDEBUG
742 if( yyTraceFILE ){
743 fprintf(yyTraceFILE,"%sFail!\n",yyTracePrompt);
744 }
745#endif
drhabecc0b2016-05-24 00:40:54 +0000746 while( yypParser->yytos>yypParser->yystack ) yy_pop_parser_stack(yypParser);
drh75897232000-05-29 14:26:00 +0000747 /* Here code is inserted which will be executed whenever the
748 ** parser fails */
drh82415f22015-11-09 19:33:42 +0000749/************ Begin %parse_failure code ***************************************/
drh75897232000-05-29 14:26:00 +0000750%%
drh82415f22015-11-09 19:33:42 +0000751/************ End %parse_failure code *****************************************/
drh1f245e42002-03-11 13:55:50 +0000752 ParseARG_STORE; /* Suppress warning about unused %extra_argument variable */
drh75897232000-05-29 14:26:00 +0000753}
drhd3ec02d2009-06-12 02:27:14 +0000754#endif /* YYNOERRORRECOVERY */
drh75897232000-05-29 14:26:00 +0000755
756/*
757** The following code executes when a syntax error first occurs.
758*/
759static void yy_syntax_error(
760 yyParser *yypParser, /* The parser */
761 int yymajor, /* The major type of the error token */
drh45f31be2016-02-16 21:19:49 +0000762 ParseTOKENTYPE yyminor /* The minor type of the error token */
drh75897232000-05-29 14:26:00 +0000763){
drh1f245e42002-03-11 13:55:50 +0000764 ParseARG_FETCH;
drh45f31be2016-02-16 21:19:49 +0000765#define TOKEN yyminor
drh82415f22015-11-09 19:33:42 +0000766/************ Begin %syntax_error code ****************************************/
drh75897232000-05-29 14:26:00 +0000767%%
drh82415f22015-11-09 19:33:42 +0000768/************ End %syntax_error code ******************************************/
drh1f245e42002-03-11 13:55:50 +0000769 ParseARG_STORE; /* Suppress warning about unused %extra_argument variable */
drh75897232000-05-29 14:26:00 +0000770}
771
772/*
773** The following is executed when the parser accepts
774*/
775static void yy_accept(
776 yyParser *yypParser /* The parser */
drh75897232000-05-29 14:26:00 +0000777){
drh1f245e42002-03-11 13:55:50 +0000778 ParseARG_FETCH;
drh75897232000-05-29 14:26:00 +0000779#ifndef NDEBUG
780 if( yyTraceFILE ){
781 fprintf(yyTraceFILE,"%sAccept!\n",yyTracePrompt);
782 }
783#endif
drhdd703e22016-07-12 19:54:49 +0000784#ifndef YYNOERRORRECOVERY
785 yypParser->yyerrcnt = -1;
786#endif
drh756b41e2016-05-24 18:55:08 +0000787 assert( yypParser->yytos==yypParser->yystack );
drh75897232000-05-29 14:26:00 +0000788 /* Here code is inserted which will be executed whenever the
789 ** parser accepts */
drh82415f22015-11-09 19:33:42 +0000790/*********** Begin %parse_accept code *****************************************/
drh75897232000-05-29 14:26:00 +0000791%%
drh82415f22015-11-09 19:33:42 +0000792/*********** End %parse_accept code *******************************************/
drh1f245e42002-03-11 13:55:50 +0000793 ParseARG_STORE; /* Suppress warning about unused %extra_argument variable */
drh75897232000-05-29 14:26:00 +0000794}
795
796/* The main parser program.
797** The first argument is a pointer to a structure obtained from
798** "ParseAlloc" which describes the current state of the parser.
799** The second argument is the major token number. The third is
800** the minor token. The fourth optional argument is whatever the
801** user wants (and specified in the grammar) and is available for
802** use by the action routines.
803**
804** Inputs:
805** <ul>
806** <li> A pointer to the parser (an opaque structure.)
807** <li> The major token number.
808** <li> The minor token number.
809** <li> An option argument of a grammar-specified type.
810** </ul>
811**
812** Outputs:
813** None.
814*/
drh75897232000-05-29 14:26:00 +0000815void Parse(
816 void *yyp, /* The parser */
817 int yymajor, /* The major token code number */
818 ParseTOKENTYPE yyminor /* The value for the token */
drh1f245e42002-03-11 13:55:50 +0000819 ParseARG_PDECL /* Optional %extra_argument parameter */
drh75897232000-05-29 14:26:00 +0000820){
821 YYMINORTYPE yyminorunion;
drh4ef07702016-03-16 19:45:54 +0000822 unsigned int yyact; /* The parser action. */
drha4414042015-11-09 15:06:26 +0000823#if !defined(YYERRORSYMBOL) && !defined(YYNOERRORRECOVERY)
drh75897232000-05-29 14:26:00 +0000824 int yyendofinput; /* True if we are at the end of input */
drha4414042015-11-09 15:06:26 +0000825#endif
drhc4dd3fd2008-01-22 01:48:05 +0000826#ifdef YYERRORSYMBOL
drh75897232000-05-29 14:26:00 +0000827 int yyerrorhit = 0; /* True if yymajor has invoked an error */
drhc4dd3fd2008-01-22 01:48:05 +0000828#endif
drh75897232000-05-29 14:26:00 +0000829 yyParser *yypParser; /* The parser */
830
drh75897232000-05-29 14:26:00 +0000831 yypParser = (yyParser*)yyp;
drhabecc0b2016-05-24 00:40:54 +0000832 assert( yypParser->yytos!=0 );
drha4414042015-11-09 15:06:26 +0000833#if !defined(YYERRORSYMBOL) && !defined(YYNOERRORRECOVERY)
drh75897232000-05-29 14:26:00 +0000834 yyendofinput = (yymajor==0);
drha4414042015-11-09 15:06:26 +0000835#endif
drh1f245e42002-03-11 13:55:50 +0000836 ParseARG_STORE;
drh75897232000-05-29 14:26:00 +0000837
838#ifndef NDEBUG
839 if( yyTraceFILE ){
drh0c4105e2015-11-10 14:51:22 +0000840 fprintf(yyTraceFILE,"%sInput '%s'\n",yyTracePrompt,yyTokenName[yymajor]);
drh75897232000-05-29 14:26:00 +0000841 }
842#endif
843
844 do{
drh3abbd392008-12-10 23:04:13 +0000845 yyact = yy_find_shift_action(yypParser,(YYCODETYPE)yymajor);
drh3bd48ab2015-09-07 18:23:37 +0000846 if( yyact <= YY_MAX_SHIFTREDUCE ){
drh45f31be2016-02-16 21:19:49 +0000847 yy_shift(yypParser,yyact,yymajor,yyminor);
drhdab943c2016-02-16 01:01:43 +0000848#ifndef YYNOERRORRECOVERY
drha248a722015-09-07 19:52:55 +0000849 yypParser->yyerrcnt--;
drhdab943c2016-02-16 01:01:43 +0000850#endif
drha248a722015-09-07 19:52:55 +0000851 yymajor = YYNOCODE;
drh3bd48ab2015-09-07 18:23:37 +0000852 }else if( yyact <= YY_MAX_REDUCE ){
853 yy_reduce(yypParser,yyact-YY_MIN_REDUCE);
drhc4dd3fd2008-01-22 01:48:05 +0000854 }else{
855 assert( yyact == YY_ERROR_ACTION );
drh45f31be2016-02-16 21:19:49 +0000856 yyminorunion.yy0 = yyminor;
drhc4dd3fd2008-01-22 01:48:05 +0000857#ifdef YYERRORSYMBOL
drh3ddfdf72003-12-22 14:53:19 +0000858 int yymx;
drhc4dd3fd2008-01-22 01:48:05 +0000859#endif
drh75897232000-05-29 14:26:00 +0000860#ifndef NDEBUG
861 if( yyTraceFILE ){
862 fprintf(yyTraceFILE,"%sSyntax Error!\n",yyTracePrompt);
863 }
864#endif
865#ifdef YYERRORSYMBOL
866 /* A syntax error has occurred.
867 ** The response to an error depends upon whether or not the
868 ** grammar defines an error token "ERROR".
869 **
870 ** This is what we do if the grammar does define ERROR:
871 **
872 ** * Call the %syntax_error function.
873 **
874 ** * Begin popping the stack until we enter a state where
875 ** it is legal to shift the error symbol, then shift
876 ** the error symbol.
877 **
878 ** * Set the error count to three.
879 **
880 ** * Begin accepting and shifting new tokens. No new error
881 ** processing will occur until three tokens have been
882 ** shifted successfully.
883 **
884 */
drh1f245e42002-03-11 13:55:50 +0000885 if( yypParser->yyerrcnt<0 ){
drh45f31be2016-02-16 21:19:49 +0000886 yy_syntax_error(yypParser,yymajor,yyminor);
drh75897232000-05-29 14:26:00 +0000887 }
drh118ab652016-05-23 21:56:24 +0000888 yymx = yypParser->yytos->major;
drh3ddfdf72003-12-22 14:53:19 +0000889 if( yymx==YYERRORSYMBOL || yyerrorhit ){
drh75897232000-05-29 14:26:00 +0000890#ifndef NDEBUG
891 if( yyTraceFILE ){
892 fprintf(yyTraceFILE,"%sDiscard input token %s\n",
893 yyTracePrompt,yyTokenName[yymajor]);
894 }
895#endif
drh45f31be2016-02-16 21:19:49 +0000896 yy_destructor(yypParser, (YYCODETYPE)yymajor, &yyminorunion);
drh75897232000-05-29 14:26:00 +0000897 yymajor = YYNOCODE;
898 }else{
drh4eda15e2016-10-04 12:20:12 +0000899 while( yypParser->yytos >= yypParser->yystack
drh118ab652016-05-23 21:56:24 +0000900 && yymx != YYERRORSYMBOL
901 && (yyact = yy_find_reduce_action(
902 yypParser->yytos->stateno,
drh3bd48ab2015-09-07 18:23:37 +0000903 YYERRORSYMBOL)) >= YY_MIN_REDUCE
drh75897232000-05-29 14:26:00 +0000904 ){
905 yy_pop_parser_stack(yypParser);
906 }
drh118ab652016-05-23 21:56:24 +0000907 if( yypParser->yytos < yypParser->yystack || yymajor==0 ){
drhb27b7f52008-12-10 18:03:45 +0000908 yy_destructor(yypParser,(YYCODETYPE)yymajor,&yyminorunion);
drh1f245e42002-03-11 13:55:50 +0000909 yy_parse_failed(yypParser);
drh240c7fa2016-07-05 12:47:28 +0000910#ifndef YYNOERRORRECOVERY
911 yypParser->yyerrcnt = -1;
912#endif
drh75897232000-05-29 14:26:00 +0000913 yymajor = YYNOCODE;
drh3ddfdf72003-12-22 14:53:19 +0000914 }else if( yymx!=YYERRORSYMBOL ){
drh45f31be2016-02-16 21:19:49 +0000915 yy_shift(yypParser,yyact,YYERRORSYMBOL,yyminor);
drh75897232000-05-29 14:26:00 +0000916 }
917 }
drh1f245e42002-03-11 13:55:50 +0000918 yypParser->yyerrcnt = 3;
drh75897232000-05-29 14:26:00 +0000919 yyerrorhit = 1;
drhd3ec02d2009-06-12 02:27:14 +0000920#elif defined(YYNOERRORRECOVERY)
921 /* If the YYNOERRORRECOVERY macro is defined, then do not attempt to
922 ** do any kind of error recovery. Instead, simply invoke the syntax
923 ** error routine and continue going as if nothing had happened.
924 **
925 ** Applications can set this macro (for example inside %include) if
926 ** they intend to abandon the parse upon the first syntax error seen.
927 */
drh45f31be2016-02-16 21:19:49 +0000928 yy_syntax_error(yypParser,yymajor, yyminor);
drhd3ec02d2009-06-12 02:27:14 +0000929 yy_destructor(yypParser,(YYCODETYPE)yymajor,&yyminorunion);
930 yymajor = YYNOCODE;
931
drh75897232000-05-29 14:26:00 +0000932#else /* YYERRORSYMBOL is not defined */
933 /* This is what we do if the grammar does not define ERROR:
934 **
935 ** * Report an error message, and throw away the input token.
936 **
937 ** * If the input token is $, then fail the parse.
938 **
939 ** As before, subsequent error messages are suppressed until
940 ** three input tokens have been successfully shifted.
941 */
drh1f245e42002-03-11 13:55:50 +0000942 if( yypParser->yyerrcnt<=0 ){
drh45f31be2016-02-16 21:19:49 +0000943 yy_syntax_error(yypParser,yymajor, yyminor);
drh75897232000-05-29 14:26:00 +0000944 }
drh1f245e42002-03-11 13:55:50 +0000945 yypParser->yyerrcnt = 3;
drhb27b7f52008-12-10 18:03:45 +0000946 yy_destructor(yypParser,(YYCODETYPE)yymajor,&yyminorunion);
drh75897232000-05-29 14:26:00 +0000947 if( yyendofinput ){
drh1f245e42002-03-11 13:55:50 +0000948 yy_parse_failed(yypParser);
drhd3d4b3c2016-07-08 19:54:38 +0000949#ifndef YYNOERRORRECOVERY
950 yypParser->yyerrcnt = -1;
951#endif
drh75897232000-05-29 14:26:00 +0000952 }
953 yymajor = YYNOCODE;
954#endif
drh75897232000-05-29 14:26:00 +0000955 }
drhabecc0b2016-05-24 00:40:54 +0000956 }while( yymajor!=YYNOCODE && yypParser->yytos>yypParser->yystack );
drh3bd48ab2015-09-07 18:23:37 +0000957#ifndef NDEBUG
958 if( yyTraceFILE ){
drh118ab652016-05-23 21:56:24 +0000959 yyStackEntry *i;
960 char cDiv = '[';
drh0c4105e2015-11-10 14:51:22 +0000961 fprintf(yyTraceFILE,"%sReturn. Stack=",yyTracePrompt);
drh118ab652016-05-23 21:56:24 +0000962 for(i=&yypParser->yystack[1]; i<=yypParser->yytos; i++){
963 fprintf(yyTraceFILE,"%c%s", cDiv, yyTokenName[i->major]);
964 cDiv = ' ';
965 }
drh0c4105e2015-11-10 14:51:22 +0000966 fprintf(yyTraceFILE,"]\n");
drh3bd48ab2015-09-07 18:23:37 +0000967 }
968#endif
drh75897232000-05-29 14:26:00 +0000969 return;
970}