drh | 82415f2 | 2015-11-09 19:33:42 +0000 | [diff] [blame] | 1 | /* |
| 2 | ** 2000-05-29 |
drh | 7589723 | 2000-05-29 14:26:00 +0000 | [diff] [blame] | 3 | ** |
drh | 82415f2 | 2015-11-09 19:33:42 +0000 | [diff] [blame] | 4 | ** 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: |
drh | 7589723 | 2000-05-29 14:26:00 +0000 | [diff] [blame] | 24 | */ |
drh | 82415f2 | 2015-11-09 19:33:42 +0000 | [diff] [blame] | 25 | #include <stdio.h> |
| 26 | /************ Begin %include sections from the grammar ************************/ |
drh | 7589723 | 2000-05-29 14:26:00 +0000 | [diff] [blame] | 27 | %% |
drh | 82415f2 | 2015-11-09 19:33:42 +0000 | [diff] [blame] | 28 | /**************** 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 ***************************/ |
drh | 822a62f | 2015-11-09 19:35:18 +0000 | [diff] [blame] | 35 | |
| 36 | /* The next sections is a series of control #defines. |
drh | 7589723 | 2000-05-29 14:26:00 +0000 | [diff] [blame] | 37 | ** various aspects of the generated parser. |
drh | 82415f2 | 2015-11-09 19:33:42 +0000 | [diff] [blame] | 38 | ** 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. |
drh | 0bd1f4e | 2002-06-06 18:54:39 +0000 | [diff] [blame] | 44 | ** YYFALLBACK If defined, this indicates that one or more tokens |
drh | 82415f2 | 2015-11-09 19:33:42 +0000 | [diff] [blame] | 45 | ** (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. |
drh | 7589723 | 2000-05-29 14:26:00 +0000 | [diff] [blame] | 62 | ** This is typically a union of many types, one of |
| 63 | ** which is ParseTOKENTYPE. The entry in the union |
drh | 82415f2 | 2015-11-09 19:33:42 +0000 | [diff] [blame] | 64 | ** for terminal symbols is called "yy0". |
drh | b19fd01 | 2007-03-29 01:44:45 +0000 | [diff] [blame] | 65 | ** YYSTACKDEPTH is the maximum depth of the parser's stack. If |
| 66 | ** zero the stack is dynamically sized using realloc() |
drh | 1f245e4 | 2002-03-11 13:55:50 +0000 | [diff] [blame] | 67 | ** 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 |
drh | 7589723 | 2000-05-29 14:26:00 +0000 | [diff] [blame] | 71 | ** YYERRORSYMBOL is the code number of the error symbol. If not |
| 72 | ** defined, then do no error processing. |
drh | 3bd48ab | 2015-09-07 18:23:37 +0000 | [diff] [blame] | 73 | ** 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 |
drh | 7589723 | 2000-05-29 14:26:00 +0000 | [diff] [blame] | 82 | */ |
drh | 82415f2 | 2015-11-09 19:33:42 +0000 | [diff] [blame] | 83 | #ifndef INTERFACE |
| 84 | # define INTERFACE 1 |
| 85 | #endif |
| 86 | /************* Begin control #defines *****************************************/ |
drh | 7589723 | 2000-05-29 14:26:00 +0000 | [diff] [blame] | 87 | %% |
drh | 82415f2 | 2015-11-09 19:33:42 +0000 | [diff] [blame] | 88 | /************* End control #defines *******************************************/ |
drh | 7589723 | 2000-05-29 14:26:00 +0000 | [diff] [blame] | 89 | |
drh | 8a415d3 | 2009-06-12 13:53:51 +0000 | [diff] [blame] | 90 | /* 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 | |
drh | 26c9b5e | 2008-04-11 14:56:53 +0000 | [diff] [blame] | 102 | |
drh | 34ff57b | 2008-07-14 12:27:51 +0000 | [diff] [blame] | 103 | /* Next are the tables used to determine what action to take based on the |
drh | 8b58201 | 2003-10-21 13:16:03 +0000 | [diff] [blame] | 104 | ** 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. |
drh | 7589723 | 2000-05-29 14:26:00 +0000 | [diff] [blame] | 107 | ** |
drh | 8548a05 | 2003-10-22 22:15:27 +0000 | [diff] [blame] | 108 | ** Suppose the action integer is N. Then the action is determined as |
| 109 | ** follows |
drh | 7589723 | 2000-05-29 14:26:00 +0000 | [diff] [blame] | 110 | ** |
drh | 3bd48ab | 2015-09-07 18:23:37 +0000 | [diff] [blame] | 111 | ** 0 <= N <= YY_MAX_SHIFT Shift N. That is, push the lookahead |
drh | 8548a05 | 2003-10-22 22:15:27 +0000 | [diff] [blame] | 112 | ** token onto the stack and goto state N. |
| 113 | ** |
drh | 3bd48ab | 2015-09-07 18:23:37 +0000 | [diff] [blame] | 114 | ** N between YY_MIN_SHIFTREDUCE Shift to an arbitrary state then |
| 115 | ** and YY_MAX_SHIFTREDUCE reduce by rule N-YY_MIN_SHIFTREDUCE. |
drh | 8548a05 | 2003-10-22 22:15:27 +0000 | [diff] [blame] | 116 | ** |
drh | 3bd48ab | 2015-09-07 18:23:37 +0000 | [diff] [blame] | 117 | ** N between YY_MIN_REDUCE Reduce by rule N-YY_MIN_REDUCE |
| 118 | ** and YY_MAX_REDUCE |
drh | 701b688 | 2016-08-10 13:30:43 +0000 | [diff] [blame] | 119 | ** |
drh | 3bd48ab | 2015-09-07 18:23:37 +0000 | [diff] [blame] | 120 | ** N == YY_ERROR_ACTION A syntax error has occurred. |
drh | 8548a05 | 2003-10-22 22:15:27 +0000 | [diff] [blame] | 121 | ** |
drh | 3bd48ab | 2015-09-07 18:23:37 +0000 | [diff] [blame] | 122 | ** N == YY_ACCEPT_ACTION The parser accepts its input. |
drh | 8548a05 | 2003-10-22 22:15:27 +0000 | [diff] [blame] | 123 | ** |
drh | 3bd48ab | 2015-09-07 18:23:37 +0000 | [diff] [blame] | 124 | ** N == YY_NO_ACTION No such action. Denotes unused |
drh | 8548a05 | 2003-10-22 22:15:27 +0000 | [diff] [blame] | 125 | ** slots in the yy_action[] table. |
| 126 | ** |
| 127 | ** The action table is constructed as a single large table named yy_action[]. |
drh | 701b688 | 2016-08-10 13:30:43 +0000 | [diff] [blame] | 128 | ** Given state S and lookahead X, the action is computed as either: |
drh | 7589723 | 2000-05-29 14:26:00 +0000 | [diff] [blame] | 129 | ** |
drh | 701b688 | 2016-08-10 13:30:43 +0000 | [diff] [blame] | 130 | ** (A) N = yy_action[ yy_shift_ofst[S] + X ] |
| 131 | ** (B) N = yy_default[S] |
drh | 8b58201 | 2003-10-21 13:16:03 +0000 | [diff] [blame] | 132 | ** |
drh | 701b688 | 2016-08-10 13:30:43 +0000 | [diff] [blame] | 133 | ** 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.) |
drh | 8b58201 | 2003-10-21 13:16:03 +0000 | [diff] [blame] | 140 | ** |
drh | 701b688 | 2016-08-10 13:30:43 +0000 | [diff] [blame] | 141 | ** The formulas above are for computing the action when the lookahead is |
drh | 8b58201 | 2003-10-21 13:16:03 +0000 | [diff] [blame] | 142 | ** 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. |
drh | 82415f2 | 2015-11-09 19:33:42 +0000 | [diff] [blame] | 157 | ** |
| 158 | *********** Begin parsing tables **********************************************/ |
drh | 7589723 | 2000-05-29 14:26:00 +0000 | [diff] [blame] | 159 | %% |
drh | 82415f2 | 2015-11-09 19:33:42 +0000 | [diff] [blame] | 160 | /********** End of lemon-generated parsing tables *****************************/ |
drh | 7589723 | 2000-05-29 14:26:00 +0000 | [diff] [blame] | 161 | |
drh | 82415f2 | 2015-11-09 19:33:42 +0000 | [diff] [blame] | 162 | /* The next table maps tokens (terminal symbols) into fallback tokens. |
| 163 | ** If a construct like the following: |
drh | 0bd1f4e | 2002-06-06 18:54:39 +0000 | [diff] [blame] | 164 | ** |
| 165 | ** %fallback ID X Y Z. |
| 166 | ** |
drh | 34ff57b | 2008-07-14 12:27:51 +0000 | [diff] [blame] | 167 | ** appears in the grammar, then ID becomes a fallback token for X, Y, |
drh | 0bd1f4e | 2002-06-06 18:54:39 +0000 | [diff] [blame] | 168 | ** 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. |
drh | 82415f2 | 2015-11-09 19:33:42 +0000 | [diff] [blame] | 171 | ** |
| 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. |
drh | 0bd1f4e | 2002-06-06 18:54:39 +0000 | [diff] [blame] | 175 | */ |
| 176 | #ifdef YYFALLBACK |
| 177 | static const YYCODETYPE yyFallback[] = { |
| 178 | %% |
| 179 | }; |
| 180 | #endif /* YYFALLBACK */ |
| 181 | |
drh | 7589723 | 2000-05-29 14:26:00 +0000 | [diff] [blame] | 182 | /* 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. |
drh | a248a72 | 2015-09-07 19:52:55 +0000 | [diff] [blame] | 193 | ** |
| 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. |
drh | 7589723 | 2000-05-29 14:26:00 +0000 | [diff] [blame] | 197 | */ |
| 198 | struct yyStackEntry { |
drh | a248a72 | 2015-09-07 19:52:55 +0000 | [diff] [blame] | 199 | YYACTIONTYPE stateno; /* The state-number, or reduce action in SHIFTREDUCE */ |
drh | 2abcd58 | 2008-07-24 23:34:07 +0000 | [diff] [blame] | 200 | 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 */ |
drh | 7589723 | 2000-05-29 14:26:00 +0000 | [diff] [blame] | 204 | }; |
drh | 1f245e4 | 2002-03-11 13:55:50 +0000 | [diff] [blame] | 205 | typedef struct yyStackEntry yyStackEntry; |
drh | 7589723 | 2000-05-29 14:26:00 +0000 | [diff] [blame] | 206 | |
| 207 | /* The state of the parser is completely contained in an instance of |
| 208 | ** the following structure */ |
| 209 | struct yyParser { |
drh | 118ab65 | 2016-05-23 21:56:24 +0000 | [diff] [blame] | 210 | yyStackEntry *yytos; /* Pointer to top element of the stack */ |
drh | ec424a5 | 2008-07-25 15:39:03 +0000 | [diff] [blame] | 211 | #ifdef YYTRACKMAXSTACKDEPTH |
drh | 118ab65 | 2016-05-23 21:56:24 +0000 | [diff] [blame] | 212 | int yyhwm; /* High-water mark of the stack */ |
drh | ec424a5 | 2008-07-25 15:39:03 +0000 | [diff] [blame] | 213 | #endif |
drh | dab943c | 2016-02-16 01:01:43 +0000 | [diff] [blame] | 214 | #ifndef YYNOERRORRECOVERY |
drh | 1f245e4 | 2002-03-11 13:55:50 +0000 | [diff] [blame] | 215 | int yyerrcnt; /* Shifts left before out of the error */ |
drh | dab943c | 2016-02-16 01:01:43 +0000 | [diff] [blame] | 216 | #endif |
drh | 1f245e4 | 2002-03-11 13:55:50 +0000 | [diff] [blame] | 217 | ParseARG_SDECL /* A place to hold %extra_argument */ |
drh | b19fd01 | 2007-03-29 01:44:45 +0000 | [diff] [blame] | 218 | #if YYSTACKDEPTH<=0 |
| 219 | int yystksz; /* Current side of the stack */ |
| 220 | yyStackEntry *yystack; /* The parser's stack */ |
drh | 8dc8247 | 2016-05-27 04:10:47 +0000 | [diff] [blame] | 221 | yyStackEntry yystk0; /* First stack entry */ |
drh | b19fd01 | 2007-03-29 01:44:45 +0000 | [diff] [blame] | 222 | #else |
drh | 1f245e4 | 2002-03-11 13:55:50 +0000 | [diff] [blame] | 223 | yyStackEntry yystack[YYSTACKDEPTH]; /* The parser's stack */ |
drh | b19fd01 | 2007-03-29 01:44:45 +0000 | [diff] [blame] | 224 | #endif |
drh | 7589723 | 2000-05-29 14:26:00 +0000 | [diff] [blame] | 225 | }; |
| 226 | typedef struct yyParser yyParser; |
| 227 | |
| 228 | #ifndef NDEBUG |
| 229 | #include <stdio.h> |
| 230 | static FILE *yyTraceFILE = 0; |
| 231 | static char *yyTracePrompt = 0; |
drh | 0bd1f4e | 2002-06-06 18:54:39 +0000 | [diff] [blame] | 232 | #endif /* NDEBUG */ |
drh | 7589723 | 2000-05-29 14:26:00 +0000 | [diff] [blame] | 233 | |
drh | 0bd1f4e | 2002-06-06 18:54:39 +0000 | [diff] [blame] | 234 | #ifndef NDEBUG |
drh | 7589723 | 2000-05-29 14:26:00 +0000 | [diff] [blame] | 235 | /* |
| 236 | ** Turn parser tracing on by giving a stream to which to write the trace |
| 237 | ** and a prompt to preface each trace message. Tracing is turned off |
| 238 | ** by making either argument NULL |
| 239 | ** |
| 240 | ** Inputs: |
| 241 | ** <ul> |
| 242 | ** <li> A FILE* to which trace output should be written. |
| 243 | ** If NULL, then tracing is turned off. |
| 244 | ** <li> A prefix string written at the beginning of every |
| 245 | ** line of trace output. If NULL, then tracing is |
| 246 | ** turned off. |
| 247 | ** </ul> |
| 248 | ** |
| 249 | ** Outputs: |
| 250 | ** None. |
| 251 | */ |
drh | 7589723 | 2000-05-29 14:26:00 +0000 | [diff] [blame] | 252 | void ParseTrace(FILE *TraceFILE, char *zTracePrompt){ |
| 253 | yyTraceFILE = TraceFILE; |
| 254 | yyTracePrompt = zTracePrompt; |
| 255 | if( yyTraceFILE==0 ) yyTracePrompt = 0; |
| 256 | else if( yyTracePrompt==0 ) yyTraceFILE = 0; |
| 257 | } |
drh | 0bd1f4e | 2002-06-06 18:54:39 +0000 | [diff] [blame] | 258 | #endif /* NDEBUG */ |
drh | 7589723 | 2000-05-29 14:26:00 +0000 | [diff] [blame] | 259 | |
drh | 0bd1f4e | 2002-06-06 18:54:39 +0000 | [diff] [blame] | 260 | #ifndef NDEBUG |
drh | 7589723 | 2000-05-29 14:26:00 +0000 | [diff] [blame] | 261 | /* For tracing shifts, the names of all terminals and nonterminals |
| 262 | ** are required. The following table supplies these names */ |
drh | 5719628 | 2004-10-06 15:41:16 +0000 | [diff] [blame] | 263 | static const char *const yyTokenName[] = { |
drh | 7589723 | 2000-05-29 14:26:00 +0000 | [diff] [blame] | 264 | %% |
| 265 | }; |
drh | 0bd1f4e | 2002-06-06 18:54:39 +0000 | [diff] [blame] | 266 | #endif /* NDEBUG */ |
drh | 7589723 | 2000-05-29 14:26:00 +0000 | [diff] [blame] | 267 | |
drh | 0bd1f4e | 2002-06-06 18:54:39 +0000 | [diff] [blame] | 268 | #ifndef NDEBUG |
| 269 | /* For tracing reduce actions, the names of all rules are required. |
| 270 | */ |
drh | 5719628 | 2004-10-06 15:41:16 +0000 | [diff] [blame] | 271 | static const char *const yyRuleName[] = { |
drh | 0bd1f4e | 2002-06-06 18:54:39 +0000 | [diff] [blame] | 272 | %% |
| 273 | }; |
| 274 | #endif /* NDEBUG */ |
drh | a1b351a | 2001-09-14 16:42:12 +0000 | [diff] [blame] | 275 | |
drh | 960e8c6 | 2001-04-03 16:53:21 +0000 | [diff] [blame] | 276 | |
drh | b19fd01 | 2007-03-29 01:44:45 +0000 | [diff] [blame] | 277 | #if YYSTACKDEPTH<=0 |
| 278 | /* |
drh | 8dc8247 | 2016-05-27 04:10:47 +0000 | [diff] [blame] | 279 | ** Try to increase the size of the parser stack. Return the number |
| 280 | ** of errors. Return 0 on success. |
drh | b19fd01 | 2007-03-29 01:44:45 +0000 | [diff] [blame] | 281 | */ |
drh | 8dc8247 | 2016-05-27 04:10:47 +0000 | [diff] [blame] | 282 | static int yyGrowStack(yyParser *p){ |
drh | b19fd01 | 2007-03-29 01:44:45 +0000 | [diff] [blame] | 283 | int newSize; |
drh | abecc0b | 2016-05-24 00:40:54 +0000 | [diff] [blame] | 284 | int idx; |
drh | b19fd01 | 2007-03-29 01:44:45 +0000 | [diff] [blame] | 285 | yyStackEntry *pNew; |
| 286 | |
| 287 | newSize = p->yystksz*2 + 100; |
drh | abecc0b | 2016-05-24 00:40:54 +0000 | [diff] [blame] | 288 | idx = p->yytos ? (int)(p->yytos - p->yystack) : 0; |
drh | 8dc8247 | 2016-05-27 04:10:47 +0000 | [diff] [blame] | 289 | if( p->yystack==&p->yystk0 ){ |
| 290 | pNew = malloc(newSize*sizeof(pNew[0])); |
| 291 | if( pNew ) pNew[0] = p->yystk0; |
| 292 | }else{ |
| 293 | pNew = realloc(p->yystack, newSize*sizeof(pNew[0])); |
| 294 | } |
drh | b19fd01 | 2007-03-29 01:44:45 +0000 | [diff] [blame] | 295 | if( pNew ){ |
| 296 | p->yystack = pNew; |
drh | abecc0b | 2016-05-24 00:40:54 +0000 | [diff] [blame] | 297 | p->yytos = &p->yystack[idx]; |
drh | b19fd01 | 2007-03-29 01:44:45 +0000 | [diff] [blame] | 298 | #ifndef NDEBUG |
| 299 | if( yyTraceFILE ){ |
drh | 8dc8247 | 2016-05-27 04:10:47 +0000 | [diff] [blame] | 300 | fprintf(yyTraceFILE,"%sStack grows from %d to %d entries.\n", |
| 301 | yyTracePrompt, p->yystksz, newSize); |
drh | b19fd01 | 2007-03-29 01:44:45 +0000 | [diff] [blame] | 302 | } |
| 303 | #endif |
drh | 8dc8247 | 2016-05-27 04:10:47 +0000 | [diff] [blame] | 304 | p->yystksz = newSize; |
drh | b19fd01 | 2007-03-29 01:44:45 +0000 | [diff] [blame] | 305 | } |
drh | 8dc8247 | 2016-05-27 04:10:47 +0000 | [diff] [blame] | 306 | return pNew==0; |
drh | b19fd01 | 2007-03-29 01:44:45 +0000 | [diff] [blame] | 307 | } |
| 308 | #endif |
| 309 | |
drh | 82415f2 | 2015-11-09 19:33:42 +0000 | [diff] [blame] | 310 | /* Datatype of the argument to the memory allocated passed as the |
| 311 | ** second argument to ParseAlloc() below. This can be changed by |
| 312 | ** putting an appropriate #define in the %include section of the input |
| 313 | ** grammar. |
| 314 | */ |
| 315 | #ifndef YYMALLOCARGTYPE |
| 316 | # define YYMALLOCARGTYPE size_t |
| 317 | #endif |
| 318 | |
drh | d26cc54 | 2017-01-28 20:46:37 +0000 | [diff] [blame] | 319 | /* Initialize a new parser that has already been allocated. |
| 320 | */ |
| 321 | void ParseInit(void *yypParser){ |
| 322 | yyParser *pParser = (yyParser*)yypParser; |
| 323 | #ifdef YYTRACKMAXSTACKDEPTH |
| 324 | pParser->yyhwm = 0; |
| 325 | #endif |
| 326 | #if YYSTACKDEPTH<=0 |
| 327 | pParser->yytos = NULL; |
| 328 | pParser->yystack = NULL; |
| 329 | pParser->yystksz = 0; |
| 330 | if( yyGrowStack(pParser) ){ |
| 331 | pParser->yystack = &pParser->yystk0; |
| 332 | pParser->yystksz = 1; |
| 333 | } |
| 334 | #endif |
| 335 | #ifndef YYNOERRORRECOVERY |
| 336 | pParser->yyerrcnt = -1; |
| 337 | #endif |
| 338 | pParser->yytos = pParser->yystack; |
| 339 | pParser->yystack[0].stateno = 0; |
| 340 | pParser->yystack[0].major = 0; |
| 341 | } |
| 342 | |
| 343 | #ifndef Parse_ENGINEALWAYSONSTACK |
drh | 7589723 | 2000-05-29 14:26:00 +0000 | [diff] [blame] | 344 | /* |
| 345 | ** This function allocates a new parser. |
| 346 | ** The only argument is a pointer to a function which works like |
| 347 | ** malloc. |
| 348 | ** |
| 349 | ** Inputs: |
| 350 | ** A pointer to the function used to allocate memory. |
| 351 | ** |
| 352 | ** Outputs: |
| 353 | ** A pointer to a parser. This pointer is used in subsequent calls |
| 354 | ** to Parse and ParseFree. |
| 355 | */ |
drh | 82415f2 | 2015-11-09 19:33:42 +0000 | [diff] [blame] | 356 | void *ParseAlloc(void *(*mallocProc)(YYMALLOCARGTYPE)){ |
drh | 7589723 | 2000-05-29 14:26:00 +0000 | [diff] [blame] | 357 | yyParser *pParser; |
drh | 82415f2 | 2015-11-09 19:33:42 +0000 | [diff] [blame] | 358 | pParser = (yyParser*)(*mallocProc)( (YYMALLOCARGTYPE)sizeof(yyParser) ); |
drh | d26cc54 | 2017-01-28 20:46:37 +0000 | [diff] [blame] | 359 | if( pParser ) ParseInit(pParser); |
drh | 7589723 | 2000-05-29 14:26:00 +0000 | [diff] [blame] | 360 | return pParser; |
| 361 | } |
drh | d26cc54 | 2017-01-28 20:46:37 +0000 | [diff] [blame] | 362 | #endif /* Parse_ENGINEALWAYSONSTACK */ |
| 363 | |
drh | 7589723 | 2000-05-29 14:26:00 +0000 | [diff] [blame] | 364 | |
drh | 82415f2 | 2015-11-09 19:33:42 +0000 | [diff] [blame] | 365 | /* The following function deletes the "minor type" or semantic value |
| 366 | ** associated with a symbol. The symbol can be either a terminal |
| 367 | ** or nonterminal. "yymajor" is the symbol code, and "yypminor" is |
| 368 | ** a pointer to the value to be deleted. The code used to do the |
| 369 | ** deletions is derived from the %destructor and/or %token_destructor |
| 370 | ** directives of the input grammar. |
drh | 7589723 | 2000-05-29 14:26:00 +0000 | [diff] [blame] | 371 | */ |
drh | 633e6d5 | 2008-07-28 19:34:53 +0000 | [diff] [blame] | 372 | static void yy_destructor( |
| 373 | yyParser *yypParser, /* The parser */ |
| 374 | YYCODETYPE yymajor, /* Type code for object to destroy */ |
| 375 | YYMINORTYPE *yypminor /* The object to be destroyed */ |
| 376 | ){ |
| 377 | ParseARG_FETCH; |
drh | 7589723 | 2000-05-29 14:26:00 +0000 | [diff] [blame] | 378 | switch( yymajor ){ |
| 379 | /* Here is inserted the actions which take place when a |
| 380 | ** terminal or non-terminal is destroyed. This can happen |
| 381 | ** when the symbol is popped from the stack during a |
| 382 | ** reduce or during error processing or when a parser is |
| 383 | ** being destroyed before it is finished parsing. |
| 384 | ** |
| 385 | ** Note: during a reduce, the only symbols destroyed are those |
drh | 82415f2 | 2015-11-09 19:33:42 +0000 | [diff] [blame] | 386 | ** which appear on the RHS of the rule, but which are *not* used |
drh | 7589723 | 2000-05-29 14:26:00 +0000 | [diff] [blame] | 387 | ** inside the C code. |
| 388 | */ |
drh | 82415f2 | 2015-11-09 19:33:42 +0000 | [diff] [blame] | 389 | /********* Begin destructor definitions ***************************************/ |
drh | 7589723 | 2000-05-29 14:26:00 +0000 | [diff] [blame] | 390 | %% |
drh | 82415f2 | 2015-11-09 19:33:42 +0000 | [diff] [blame] | 391 | /********* End destructor definitions *****************************************/ |
drh | 7589723 | 2000-05-29 14:26:00 +0000 | [diff] [blame] | 392 | default: break; /* If no destructor action specified: do nothing */ |
| 393 | } |
| 394 | } |
| 395 | |
| 396 | /* |
| 397 | ** Pop the parser's stack once. |
| 398 | ** |
| 399 | ** If there is a destructor routine associated with the token which |
| 400 | ** is popped from the stack, then call it. |
drh | 7589723 | 2000-05-29 14:26:00 +0000 | [diff] [blame] | 401 | */ |
drh | 3781f01 | 2015-11-09 14:11:37 +0000 | [diff] [blame] | 402 | static void yy_pop_parser_stack(yyParser *pParser){ |
| 403 | yyStackEntry *yytos; |
drh | 118ab65 | 2016-05-23 21:56:24 +0000 | [diff] [blame] | 404 | assert( pParser->yytos!=0 ); |
drh | 240c7fa | 2016-07-05 12:47:28 +0000 | [diff] [blame] | 405 | assert( pParser->yytos > pParser->yystack ); |
drh | 118ab65 | 2016-05-23 21:56:24 +0000 | [diff] [blame] | 406 | yytos = pParser->yytos--; |
drh | 7589723 | 2000-05-29 14:26:00 +0000 | [diff] [blame] | 407 | #ifndef NDEBUG |
drh | 3781f01 | 2015-11-09 14:11:37 +0000 | [diff] [blame] | 408 | if( yyTraceFILE ){ |
drh | 7589723 | 2000-05-29 14:26:00 +0000 | [diff] [blame] | 409 | fprintf(yyTraceFILE,"%sPopping %s\n", |
| 410 | yyTracePrompt, |
drh | 3ddfdf7 | 2003-12-22 14:53:19 +0000 | [diff] [blame] | 411 | yyTokenName[yytos->major]); |
drh | 7589723 | 2000-05-29 14:26:00 +0000 | [diff] [blame] | 412 | } |
| 413 | #endif |
drh | 3781f01 | 2015-11-09 14:11:37 +0000 | [diff] [blame] | 414 | yy_destructor(pParser, yytos->major, &yytos->minor); |
drh | 7589723 | 2000-05-29 14:26:00 +0000 | [diff] [blame] | 415 | } |
| 416 | |
drh | d26cc54 | 2017-01-28 20:46:37 +0000 | [diff] [blame] | 417 | /* |
| 418 | ** Clear all secondary memory allocations from the parser |
| 419 | */ |
| 420 | void ParseFinalize(void *p){ |
| 421 | yyParser *pParser = (yyParser*)p; |
| 422 | while( pParser->yytos>pParser->yystack ) yy_pop_parser_stack(pParser); |
| 423 | #if YYSTACKDEPTH<=0 |
| 424 | if( pParser->yystack!=&pParser->yystk0 ) free(pParser->yystack); |
| 425 | #endif |
| 426 | } |
| 427 | |
| 428 | #ifndef Parse_ENGINEALWAYSONSTACK |
drh | 7589723 | 2000-05-29 14:26:00 +0000 | [diff] [blame] | 429 | /* |
drh | 82415f2 | 2015-11-09 19:33:42 +0000 | [diff] [blame] | 430 | ** Deallocate and destroy a parser. Destructors are called for |
drh | 7589723 | 2000-05-29 14:26:00 +0000 | [diff] [blame] | 431 | ** all stack elements before shutting the parser down. |
| 432 | ** |
drh | 82415f2 | 2015-11-09 19:33:42 +0000 | [diff] [blame] | 433 | ** If the YYPARSEFREENEVERNULL macro exists (for example because it |
| 434 | ** is defined in a %include section of the input grammar) then it is |
| 435 | ** assumed that the input pointer is never NULL. |
drh | 7589723 | 2000-05-29 14:26:00 +0000 | [diff] [blame] | 436 | */ |
drh | 7589723 | 2000-05-29 14:26:00 +0000 | [diff] [blame] | 437 | void ParseFree( |
drh | 960e8c6 | 2001-04-03 16:53:21 +0000 | [diff] [blame] | 438 | void *p, /* The parser to be deleted */ |
| 439 | void (*freeProc)(void*) /* Function used to reclaim memory */ |
drh | 7589723 | 2000-05-29 14:26:00 +0000 | [diff] [blame] | 440 | ){ |
drh | 82415f2 | 2015-11-09 19:33:42 +0000 | [diff] [blame] | 441 | #ifndef YYPARSEFREENEVERNULL |
drh | d26cc54 | 2017-01-28 20:46:37 +0000 | [diff] [blame] | 442 | if( p==0 ) return; |
drh | 82415f2 | 2015-11-09 19:33:42 +0000 | [diff] [blame] | 443 | #endif |
drh | d26cc54 | 2017-01-28 20:46:37 +0000 | [diff] [blame] | 444 | ParseFinalize(p); |
| 445 | (*freeProc)(p); |
drh | 7589723 | 2000-05-29 14:26:00 +0000 | [diff] [blame] | 446 | } |
drh | d26cc54 | 2017-01-28 20:46:37 +0000 | [diff] [blame] | 447 | #endif /* Parse_ENGINEALWAYSONSTACK */ |
drh | 7589723 | 2000-05-29 14:26:00 +0000 | [diff] [blame] | 448 | |
| 449 | /* |
drh | ec424a5 | 2008-07-25 15:39:03 +0000 | [diff] [blame] | 450 | ** Return the peak depth of the stack for a parser. |
| 451 | */ |
| 452 | #ifdef YYTRACKMAXSTACKDEPTH |
| 453 | int ParseStackPeak(void *p){ |
| 454 | yyParser *pParser = (yyParser*)p; |
drh | 118ab65 | 2016-05-23 21:56:24 +0000 | [diff] [blame] | 455 | return pParser->yyhwm; |
drh | ec424a5 | 2008-07-25 15:39:03 +0000 | [diff] [blame] | 456 | } |
| 457 | #endif |
| 458 | |
| 459 | /* |
drh | 8b58201 | 2003-10-21 13:16:03 +0000 | [diff] [blame] | 460 | ** Find the appropriate action for a parser given the terminal |
| 461 | ** look-ahead token iLookAhead. |
drh | 7589723 | 2000-05-29 14:26:00 +0000 | [diff] [blame] | 462 | */ |
drh | 4ef0770 | 2016-03-16 19:45:54 +0000 | [diff] [blame] | 463 | static unsigned int yy_find_shift_action( |
drh | 7589723 | 2000-05-29 14:26:00 +0000 | [diff] [blame] | 464 | yyParser *pParser, /* The parser */ |
drh | d9f291e | 2006-06-13 11:15:47 +0000 | [diff] [blame] | 465 | YYCODETYPE iLookAhead /* The look-ahead token */ |
drh | 7589723 | 2000-05-29 14:26:00 +0000 | [diff] [blame] | 466 | ){ |
drh | 8b58201 | 2003-10-21 13:16:03 +0000 | [diff] [blame] | 467 | int i; |
drh | 118ab65 | 2016-05-23 21:56:24 +0000 | [diff] [blame] | 468 | int stateno = pParser->yytos->stateno; |
drh | a441404 | 2015-11-09 15:06:26 +0000 | [diff] [blame] | 469 | |
| 470 | if( stateno>=YY_MIN_REDUCE ) return stateno; |
drh | ae2a408 | 2015-09-07 20:02:39 +0000 | [diff] [blame] | 471 | assert( stateno <= YY_SHIFT_COUNT ); |
drh | a441404 | 2015-11-09 15:06:26 +0000 | [diff] [blame] | 472 | do{ |
| 473 | i = yy_shift_ofst[stateno]; |
drh | a441404 | 2015-11-09 15:06:26 +0000 | [diff] [blame] | 474 | assert( iLookAhead!=YYNOCODE ); |
| 475 | i += iLookAhead; |
| 476 | if( i<0 || i>=YY_ACTTAB_COUNT || yy_lookahead[i]!=iLookAhead ){ |
drh | 4767d97 | 2006-06-14 15:03:49 +0000 | [diff] [blame] | 477 | #ifdef YYFALLBACK |
drh | c83db9e | 2016-08-10 01:43:30 +0000 | [diff] [blame] | 478 | YYCODETYPE iFallback; /* Fallback token */ |
| 479 | if( iLookAhead<sizeof(yyFallback)/sizeof(yyFallback[0]) |
| 480 | && (iFallback = yyFallback[iLookAhead])!=0 ){ |
drh | 4767d97 | 2006-06-14 15:03:49 +0000 | [diff] [blame] | 481 | #ifndef NDEBUG |
drh | c83db9e | 2016-08-10 01:43:30 +0000 | [diff] [blame] | 482 | if( yyTraceFILE ){ |
| 483 | fprintf(yyTraceFILE, "%sFALLBACK %s => %s\n", |
| 484 | yyTracePrompt, yyTokenName[iLookAhead], yyTokenName[iFallback]); |
drh | e09daa9 | 2006-06-10 13:29:31 +0000 | [diff] [blame] | 485 | } |
drh | a441404 | 2015-11-09 15:06:26 +0000 | [diff] [blame] | 486 | #endif |
drh | c83db9e | 2016-08-10 01:43:30 +0000 | [diff] [blame] | 487 | assert( yyFallback[iFallback]==0 ); /* Fallback loop must terminate */ |
| 488 | iLookAhead = iFallback; |
| 489 | continue; |
| 490 | } |
| 491 | #endif |
drh | a441404 | 2015-11-09 15:06:26 +0000 | [diff] [blame] | 492 | #ifdef YYWILDCARD |
drh | c83db9e | 2016-08-10 01:43:30 +0000 | [diff] [blame] | 493 | { |
| 494 | int j = i - iLookAhead + YYWILDCARD; |
| 495 | if( |
drh | a441404 | 2015-11-09 15:06:26 +0000 | [diff] [blame] | 496 | #if YY_SHIFT_MIN+YYWILDCARD<0 |
drh | c83db9e | 2016-08-10 01:43:30 +0000 | [diff] [blame] | 497 | j>=0 && |
drh | a441404 | 2015-11-09 15:06:26 +0000 | [diff] [blame] | 498 | #endif |
| 499 | #if YY_SHIFT_MAX+YYWILDCARD>=YY_ACTTAB_COUNT |
drh | c83db9e | 2016-08-10 01:43:30 +0000 | [diff] [blame] | 500 | j<YY_ACTTAB_COUNT && |
drh | a441404 | 2015-11-09 15:06:26 +0000 | [diff] [blame] | 501 | #endif |
drh | c83db9e | 2016-08-10 01:43:30 +0000 | [diff] [blame] | 502 | yy_lookahead[j]==YYWILDCARD && iLookAhead>0 |
| 503 | ){ |
drh | a441404 | 2015-11-09 15:06:26 +0000 | [diff] [blame] | 504 | #ifndef NDEBUG |
drh | c83db9e | 2016-08-10 01:43:30 +0000 | [diff] [blame] | 505 | if( yyTraceFILE ){ |
| 506 | fprintf(yyTraceFILE, "%sWILDCARD %s => %s\n", |
| 507 | yyTracePrompt, yyTokenName[iLookAhead], |
| 508 | yyTokenName[YYWILDCARD]); |
drh | a441404 | 2015-11-09 15:06:26 +0000 | [diff] [blame] | 509 | } |
drh | c83db9e | 2016-08-10 01:43:30 +0000 | [diff] [blame] | 510 | #endif /* NDEBUG */ |
| 511 | return yy_action[j]; |
drh | a441404 | 2015-11-09 15:06:26 +0000 | [diff] [blame] | 512 | } |
drh | a441404 | 2015-11-09 15:06:26 +0000 | [diff] [blame] | 513 | } |
drh | c83db9e | 2016-08-10 01:43:30 +0000 | [diff] [blame] | 514 | #endif /* YYWILDCARD */ |
drh | a441404 | 2015-11-09 15:06:26 +0000 | [diff] [blame] | 515 | return yy_default[stateno]; |
| 516 | }else{ |
| 517 | return yy_action[i]; |
drh | 0bd1f4e | 2002-06-06 18:54:39 +0000 | [diff] [blame] | 518 | } |
drh | a441404 | 2015-11-09 15:06:26 +0000 | [diff] [blame] | 519 | }while(1); |
drh | 8b58201 | 2003-10-21 13:16:03 +0000 | [diff] [blame] | 520 | } |
| 521 | |
| 522 | /* |
| 523 | ** Find the appropriate action for a parser given the non-terminal |
| 524 | ** look-ahead token iLookAhead. |
drh | 8b58201 | 2003-10-21 13:16:03 +0000 | [diff] [blame] | 525 | */ |
| 526 | static int yy_find_reduce_action( |
drh | 161aba3 | 2005-02-01 04:09:36 +0000 | [diff] [blame] | 527 | int stateno, /* Current state number */ |
drh | d9f291e | 2006-06-13 11:15:47 +0000 | [diff] [blame] | 528 | YYCODETYPE iLookAhead /* The look-ahead token */ |
drh | 8b58201 | 2003-10-21 13:16:03 +0000 | [diff] [blame] | 529 | ){ |
| 530 | int i; |
drh | 7f7c257 | 2008-04-27 18:45:10 +0000 | [diff] [blame] | 531 | #ifdef YYERRORSYMBOL |
drh | f16371d | 2009-11-03 19:18:31 +0000 | [diff] [blame] | 532 | if( stateno>YY_REDUCE_COUNT ){ |
drh | 7f7c257 | 2008-04-27 18:45:10 +0000 | [diff] [blame] | 533 | return yy_default[stateno]; |
| 534 | } |
| 535 | #else |
drh | f16371d | 2009-11-03 19:18:31 +0000 | [diff] [blame] | 536 | assert( stateno<=YY_REDUCE_COUNT ); |
drh | 7f7c257 | 2008-04-27 18:45:10 +0000 | [diff] [blame] | 537 | #endif |
drh | 01495b9 | 2008-01-23 12:52:40 +0000 | [diff] [blame] | 538 | i = yy_reduce_ofst[stateno]; |
| 539 | assert( i!=YY_REDUCE_USE_DFLT ); |
| 540 | assert( iLookAhead!=YYNOCODE ); |
drh | 8b58201 | 2003-10-21 13:16:03 +0000 | [diff] [blame] | 541 | i += iLookAhead; |
drh | 7f7c257 | 2008-04-27 18:45:10 +0000 | [diff] [blame] | 542 | #ifdef YYERRORSYMBOL |
drh | f16371d | 2009-11-03 19:18:31 +0000 | [diff] [blame] | 543 | if( i<0 || i>=YY_ACTTAB_COUNT || yy_lookahead[i]!=iLookAhead ){ |
drh | 7f7c257 | 2008-04-27 18:45:10 +0000 | [diff] [blame] | 544 | return yy_default[stateno]; |
| 545 | } |
| 546 | #else |
drh | f16371d | 2009-11-03 19:18:31 +0000 | [diff] [blame] | 547 | assert( i>=0 && i<YY_ACTTAB_COUNT ); |
drh | 01495b9 | 2008-01-23 12:52:40 +0000 | [diff] [blame] | 548 | assert( yy_lookahead[i]==iLookAhead ); |
drh | 7f7c257 | 2008-04-27 18:45:10 +0000 | [diff] [blame] | 549 | #endif |
drh | 01495b9 | 2008-01-23 12:52:40 +0000 | [diff] [blame] | 550 | return yy_action[i]; |
drh | 7589723 | 2000-05-29 14:26:00 +0000 | [diff] [blame] | 551 | } |
| 552 | |
| 553 | /* |
drh | b19fd01 | 2007-03-29 01:44:45 +0000 | [diff] [blame] | 554 | ** The following routine is called if the stack overflows. |
| 555 | */ |
drh | 45f31be | 2016-02-16 21:19:49 +0000 | [diff] [blame] | 556 | static void yyStackOverflow(yyParser *yypParser){ |
drh | b19fd01 | 2007-03-29 01:44:45 +0000 | [diff] [blame] | 557 | ParseARG_FETCH; |
drh | b19fd01 | 2007-03-29 01:44:45 +0000 | [diff] [blame] | 558 | #ifndef NDEBUG |
| 559 | if( yyTraceFILE ){ |
| 560 | fprintf(yyTraceFILE,"%sStack Overflow!\n",yyTracePrompt); |
| 561 | } |
| 562 | #endif |
drh | abecc0b | 2016-05-24 00:40:54 +0000 | [diff] [blame] | 563 | while( yypParser->yytos>yypParser->yystack ) yy_pop_parser_stack(yypParser); |
drh | b19fd01 | 2007-03-29 01:44:45 +0000 | [diff] [blame] | 564 | /* Here code is inserted which will execute if the parser |
| 565 | ** stack every overflows */ |
drh | 82415f2 | 2015-11-09 19:33:42 +0000 | [diff] [blame] | 566 | /******** Begin %stack_overflow code ******************************************/ |
drh | b19fd01 | 2007-03-29 01:44:45 +0000 | [diff] [blame] | 567 | %% |
drh | 82415f2 | 2015-11-09 19:33:42 +0000 | [diff] [blame] | 568 | /******** End %stack_overflow code ********************************************/ |
drh | b19fd01 | 2007-03-29 01:44:45 +0000 | [diff] [blame] | 569 | ParseARG_STORE; /* Suppress warning about unused %extra_argument var */ |
| 570 | } |
| 571 | |
| 572 | /* |
drh | a248a72 | 2015-09-07 19:52:55 +0000 | [diff] [blame] | 573 | ** Print tracing information for a SHIFT action |
| 574 | */ |
| 575 | #ifndef NDEBUG |
| 576 | static void yyTraceShift(yyParser *yypParser, int yyNewState){ |
| 577 | if( yyTraceFILE ){ |
drh | a248a72 | 2015-09-07 19:52:55 +0000 | [diff] [blame] | 578 | if( yyNewState<YYNSTATE ){ |
drh | 0c4105e | 2015-11-10 14:51:22 +0000 | [diff] [blame] | 579 | fprintf(yyTraceFILE,"%sShift '%s', go to state %d\n", |
drh | 118ab65 | 2016-05-23 21:56:24 +0000 | [diff] [blame] | 580 | yyTracePrompt,yyTokenName[yypParser->yytos->major], |
drh | 0c4105e | 2015-11-10 14:51:22 +0000 | [diff] [blame] | 581 | yyNewState); |
drh | a248a72 | 2015-09-07 19:52:55 +0000 | [diff] [blame] | 582 | }else{ |
drh | 0c4105e | 2015-11-10 14:51:22 +0000 | [diff] [blame] | 583 | fprintf(yyTraceFILE,"%sShift '%s'\n", |
drh | 118ab65 | 2016-05-23 21:56:24 +0000 | [diff] [blame] | 584 | yyTracePrompt,yyTokenName[yypParser->yytos->major]); |
drh | a248a72 | 2015-09-07 19:52:55 +0000 | [diff] [blame] | 585 | } |
| 586 | } |
| 587 | } |
| 588 | #else |
| 589 | # define yyTraceShift(X,Y) |
| 590 | #endif |
| 591 | |
| 592 | /* |
drh | 82415f2 | 2015-11-09 19:33:42 +0000 | [diff] [blame] | 593 | ** Perform a shift action. |
drh | 7589723 | 2000-05-29 14:26:00 +0000 | [diff] [blame] | 594 | */ |
drh | a248a72 | 2015-09-07 19:52:55 +0000 | [diff] [blame] | 595 | static void yy_shift( |
drh | 7589723 | 2000-05-29 14:26:00 +0000 | [diff] [blame] | 596 | yyParser *yypParser, /* The parser to be shifted */ |
| 597 | int yyNewState, /* The new state to shift in */ |
| 598 | int yyMajor, /* The major token to shift in */ |
drh | 45f31be | 2016-02-16 21:19:49 +0000 | [diff] [blame] | 599 | ParseTOKENTYPE yyMinor /* The minor token to shift in */ |
drh | 7589723 | 2000-05-29 14:26:00 +0000 | [diff] [blame] | 600 | ){ |
drh | 3ddfdf7 | 2003-12-22 14:53:19 +0000 | [diff] [blame] | 601 | yyStackEntry *yytos; |
drh | 118ab65 | 2016-05-23 21:56:24 +0000 | [diff] [blame] | 602 | yypParser->yytos++; |
drh | ec424a5 | 2008-07-25 15:39:03 +0000 | [diff] [blame] | 603 | #ifdef YYTRACKMAXSTACKDEPTH |
drh | 118ab65 | 2016-05-23 21:56:24 +0000 | [diff] [blame] | 604 | if( (int)(yypParser->yytos - yypParser->yystack)>yypParser->yyhwm ){ |
| 605 | yypParser->yyhwm++; |
| 606 | assert( yypParser->yyhwm == (int)(yypParser->yytos - yypParser->yystack) ); |
drh | ec424a5 | 2008-07-25 15:39:03 +0000 | [diff] [blame] | 607 | } |
| 608 | #endif |
drh | b19fd01 | 2007-03-29 01:44:45 +0000 | [diff] [blame] | 609 | #if YYSTACKDEPTH>0 |
drh | 118ab65 | 2016-05-23 21:56:24 +0000 | [diff] [blame] | 610 | if( yypParser->yytos>=&yypParser->yystack[YYSTACKDEPTH] ){ |
drh | 6341331 | 2016-12-06 17:59:05 +0000 | [diff] [blame] | 611 | yypParser->yytos--; |
drh | 45f31be | 2016-02-16 21:19:49 +0000 | [diff] [blame] | 612 | yyStackOverflow(yypParser); |
drh | a248a72 | 2015-09-07 19:52:55 +0000 | [diff] [blame] | 613 | return; |
drh | 7589723 | 2000-05-29 14:26:00 +0000 | [diff] [blame] | 614 | } |
drh | b19fd01 | 2007-03-29 01:44:45 +0000 | [diff] [blame] | 615 | #else |
drh | 118ab65 | 2016-05-23 21:56:24 +0000 | [diff] [blame] | 616 | if( yypParser->yytos>=&yypParser->yystack[yypParser->yystksz] ){ |
drh | 8dc8247 | 2016-05-27 04:10:47 +0000 | [diff] [blame] | 617 | if( yyGrowStack(yypParser) ){ |
drh | 6341331 | 2016-12-06 17:59:05 +0000 | [diff] [blame] | 618 | yypParser->yytos--; |
drh | 45f31be | 2016-02-16 21:19:49 +0000 | [diff] [blame] | 619 | yyStackOverflow(yypParser); |
drh | a248a72 | 2015-09-07 19:52:55 +0000 | [diff] [blame] | 620 | return; |
drh | b19fd01 | 2007-03-29 01:44:45 +0000 | [diff] [blame] | 621 | } |
| 622 | } |
| 623 | #endif |
drh | 0efd37f | 2016-06-06 18:17:36 +0000 | [diff] [blame] | 624 | if( yyNewState > YY_MAX_SHIFT ){ |
| 625 | yyNewState += YY_MIN_REDUCE - YY_MIN_SHIFTREDUCE; |
| 626 | } |
drh | 118ab65 | 2016-05-23 21:56:24 +0000 | [diff] [blame] | 627 | yytos = yypParser->yytos; |
drh | b27b7f5 | 2008-12-10 18:03:45 +0000 | [diff] [blame] | 628 | yytos->stateno = (YYACTIONTYPE)yyNewState; |
| 629 | yytos->major = (YYCODETYPE)yyMajor; |
drh | 45f31be | 2016-02-16 21:19:49 +0000 | [diff] [blame] | 630 | yytos->minor.yy0 = yyMinor; |
drh | a248a72 | 2015-09-07 19:52:55 +0000 | [diff] [blame] | 631 | yyTraceShift(yypParser, yyNewState); |
drh | 7589723 | 2000-05-29 14:26:00 +0000 | [diff] [blame] | 632 | } |
| 633 | |
| 634 | /* The following table contains information about every rule that |
| 635 | ** is used during the reduce. |
| 636 | */ |
drh | 5719628 | 2004-10-06 15:41:16 +0000 | [diff] [blame] | 637 | static const struct { |
drh | 7589723 | 2000-05-29 14:26:00 +0000 | [diff] [blame] | 638 | YYCODETYPE lhs; /* Symbol on the left-hand side of the rule */ |
| 639 | unsigned char nrhs; /* Number of right-hand side symbols in the rule */ |
| 640 | } yyRuleInfo[] = { |
| 641 | %% |
| 642 | }; |
| 643 | |
drh | 1f245e4 | 2002-03-11 13:55:50 +0000 | [diff] [blame] | 644 | static void yy_accept(yyParser*); /* Forward Declaration */ |
drh | 7589723 | 2000-05-29 14:26:00 +0000 | [diff] [blame] | 645 | |
| 646 | /* |
| 647 | ** Perform a reduce action and the shift that must immediately |
| 648 | ** follow the reduce. |
| 649 | */ |
| 650 | static void yy_reduce( |
| 651 | yyParser *yypParser, /* The parser */ |
drh | 4ef0770 | 2016-03-16 19:45:54 +0000 | [diff] [blame] | 652 | unsigned int yyruleno /* Number of the rule by which to reduce */ |
drh | 7589723 | 2000-05-29 14:26:00 +0000 | [diff] [blame] | 653 | ){ |
| 654 | int yygoto; /* The next state */ |
| 655 | int yyact; /* The next action */ |
drh | 1f245e4 | 2002-03-11 13:55:50 +0000 | [diff] [blame] | 656 | yyStackEntry *yymsp; /* The top of the parser's stack */ |
drh | 7589723 | 2000-05-29 14:26:00 +0000 | [diff] [blame] | 657 | int yysize; /* Amount to pop the stack */ |
drh | 1f245e4 | 2002-03-11 13:55:50 +0000 | [diff] [blame] | 658 | ParseARG_FETCH; |
drh | 118ab65 | 2016-05-23 21:56:24 +0000 | [diff] [blame] | 659 | yymsp = yypParser->yytos; |
drh | 0bd1f4e | 2002-06-06 18:54:39 +0000 | [diff] [blame] | 660 | #ifndef NDEBUG |
drh | 4ef0770 | 2016-03-16 19:45:54 +0000 | [diff] [blame] | 661 | if( yyTraceFILE && yyruleno<(int)(sizeof(yyRuleName)/sizeof(yyRuleName[0])) ){ |
drh | 3bd48ab | 2015-09-07 18:23:37 +0000 | [diff] [blame] | 662 | yysize = yyRuleInfo[yyruleno].nrhs; |
drh | 0c4105e | 2015-11-10 14:51:22 +0000 | [diff] [blame] | 663 | fprintf(yyTraceFILE, "%sReduce [%s], go to state %d.\n", yyTracePrompt, |
drh | 3bd48ab | 2015-09-07 18:23:37 +0000 | [diff] [blame] | 664 | yyRuleName[yyruleno], yymsp[-yysize].stateno); |
drh | 0bd1f4e | 2002-06-06 18:54:39 +0000 | [diff] [blame] | 665 | } |
| 666 | #endif /* NDEBUG */ |
drh | 45f31be | 2016-02-16 21:19:49 +0000 | [diff] [blame] | 667 | |
| 668 | /* Check that the stack is large enough to grow by a single entry |
| 669 | ** if the RHS of the rule is empty. This ensures that there is room |
| 670 | ** enough on the stack to push the LHS value */ |
| 671 | if( yyRuleInfo[yyruleno].nrhs==0 ){ |
| 672 | #ifdef YYTRACKMAXSTACKDEPTH |
drh | 118ab65 | 2016-05-23 21:56:24 +0000 | [diff] [blame] | 673 | if( (int)(yypParser->yytos - yypParser->yystack)>yypParser->yyhwm ){ |
| 674 | yypParser->yyhwm++; |
| 675 | assert( yypParser->yyhwm == (int)(yypParser->yytos - yypParser->yystack)); |
drh | 45f31be | 2016-02-16 21:19:49 +0000 | [diff] [blame] | 676 | } |
| 677 | #endif |
| 678 | #if YYSTACKDEPTH>0 |
drh | 118ab65 | 2016-05-23 21:56:24 +0000 | [diff] [blame] | 679 | if( yypParser->yytos>=&yypParser->yystack[YYSTACKDEPTH-1] ){ |
drh | 45f31be | 2016-02-16 21:19:49 +0000 | [diff] [blame] | 680 | yyStackOverflow(yypParser); |
| 681 | return; |
| 682 | } |
| 683 | #else |
drh | 118ab65 | 2016-05-23 21:56:24 +0000 | [diff] [blame] | 684 | if( yypParser->yytos>=&yypParser->yystack[yypParser->yystksz-1] ){ |
drh | 8dc8247 | 2016-05-27 04:10:47 +0000 | [diff] [blame] | 685 | if( yyGrowStack(yypParser) ){ |
drh | 45f31be | 2016-02-16 21:19:49 +0000 | [diff] [blame] | 686 | yyStackOverflow(yypParser); |
| 687 | return; |
| 688 | } |
drh | 8dc8247 | 2016-05-27 04:10:47 +0000 | [diff] [blame] | 689 | yymsp = yypParser->yytos; |
drh | 45f31be | 2016-02-16 21:19:49 +0000 | [diff] [blame] | 690 | } |
| 691 | #endif |
| 692 | } |
drh | cb6c565 | 2007-01-16 18:19:12 +0000 | [diff] [blame] | 693 | |
drh | 7589723 | 2000-05-29 14:26:00 +0000 | [diff] [blame] | 694 | switch( yyruleno ){ |
| 695 | /* Beginning here are the reduction cases. A typical example |
| 696 | ** follows: |
| 697 | ** case 0: |
drh | 7589723 | 2000-05-29 14:26:00 +0000 | [diff] [blame] | 698 | ** #line <lineno> <grammarfile> |
| 699 | ** { ... } // User supplied code |
| 700 | ** #line <lineno> <thisfile> |
| 701 | ** break; |
| 702 | */ |
drh | 82415f2 | 2015-11-09 19:33:42 +0000 | [diff] [blame] | 703 | /********** Begin reduce actions **********************************************/ |
drh | 7589723 | 2000-05-29 14:26:00 +0000 | [diff] [blame] | 704 | %% |
drh | 82415f2 | 2015-11-09 19:33:42 +0000 | [diff] [blame] | 705 | /********** End reduce actions ************************************************/ |
drh | 7589723 | 2000-05-29 14:26:00 +0000 | [diff] [blame] | 706 | }; |
drh | 4ef0770 | 2016-03-16 19:45:54 +0000 | [diff] [blame] | 707 | assert( yyruleno<sizeof(yyRuleInfo)/sizeof(yyRuleInfo[0]) ); |
drh | 7589723 | 2000-05-29 14:26:00 +0000 | [diff] [blame] | 708 | yygoto = yyRuleInfo[yyruleno].lhs; |
| 709 | yysize = yyRuleInfo[yyruleno].nrhs; |
drh | 3abbd39 | 2008-12-10 23:04:13 +0000 | [diff] [blame] | 710 | yyact = yy_find_reduce_action(yymsp[-yysize].stateno,(YYCODETYPE)yygoto); |
drh | a248a72 | 2015-09-07 19:52:55 +0000 | [diff] [blame] | 711 | if( yyact <= YY_MAX_SHIFTREDUCE ){ |
drh | 118ab65 | 2016-05-23 21:56:24 +0000 | [diff] [blame] | 712 | if( yyact>YY_MAX_SHIFT ){ |
| 713 | yyact += YY_MIN_REDUCE - YY_MIN_SHIFTREDUCE; |
| 714 | } |
drh | 45f31be | 2016-02-16 21:19:49 +0000 | [diff] [blame] | 715 | yymsp -= yysize-1; |
drh | 118ab65 | 2016-05-23 21:56:24 +0000 | [diff] [blame] | 716 | yypParser->yytos = yymsp; |
drh | 45f31be | 2016-02-16 21:19:49 +0000 | [diff] [blame] | 717 | yymsp->stateno = (YYACTIONTYPE)yyact; |
| 718 | yymsp->major = (YYCODETYPE)yygoto; |
drh | 45f31be | 2016-02-16 21:19:49 +0000 | [diff] [blame] | 719 | yyTraceShift(yypParser, yyact); |
drh | 4b2f936 | 2008-01-22 23:37:09 +0000 | [diff] [blame] | 720 | }else{ |
drh | 3bd48ab | 2015-09-07 18:23:37 +0000 | [diff] [blame] | 721 | assert( yyact == YY_ACCEPT_ACTION ); |
drh | 118ab65 | 2016-05-23 21:56:24 +0000 | [diff] [blame] | 722 | yypParser->yytos -= yysize; |
drh | 1f245e4 | 2002-03-11 13:55:50 +0000 | [diff] [blame] | 723 | yy_accept(yypParser); |
drh | 7589723 | 2000-05-29 14:26:00 +0000 | [diff] [blame] | 724 | } |
| 725 | } |
| 726 | |
| 727 | /* |
| 728 | ** The following code executes when the parse fails |
| 729 | */ |
drh | d3ec02d | 2009-06-12 02:27:14 +0000 | [diff] [blame] | 730 | #ifndef YYNOERRORRECOVERY |
drh | 7589723 | 2000-05-29 14:26:00 +0000 | [diff] [blame] | 731 | static void yy_parse_failed( |
| 732 | yyParser *yypParser /* The parser */ |
drh | 7589723 | 2000-05-29 14:26:00 +0000 | [diff] [blame] | 733 | ){ |
drh | 1f245e4 | 2002-03-11 13:55:50 +0000 | [diff] [blame] | 734 | ParseARG_FETCH; |
drh | 7589723 | 2000-05-29 14:26:00 +0000 | [diff] [blame] | 735 | #ifndef NDEBUG |
| 736 | if( yyTraceFILE ){ |
| 737 | fprintf(yyTraceFILE,"%sFail!\n",yyTracePrompt); |
| 738 | } |
| 739 | #endif |
drh | abecc0b | 2016-05-24 00:40:54 +0000 | [diff] [blame] | 740 | while( yypParser->yytos>yypParser->yystack ) yy_pop_parser_stack(yypParser); |
drh | 7589723 | 2000-05-29 14:26:00 +0000 | [diff] [blame] | 741 | /* Here code is inserted which will be executed whenever the |
| 742 | ** parser fails */ |
drh | 82415f2 | 2015-11-09 19:33:42 +0000 | [diff] [blame] | 743 | /************ Begin %parse_failure code ***************************************/ |
drh | 7589723 | 2000-05-29 14:26:00 +0000 | [diff] [blame] | 744 | %% |
drh | 82415f2 | 2015-11-09 19:33:42 +0000 | [diff] [blame] | 745 | /************ End %parse_failure code *****************************************/ |
drh | 1f245e4 | 2002-03-11 13:55:50 +0000 | [diff] [blame] | 746 | ParseARG_STORE; /* Suppress warning about unused %extra_argument variable */ |
drh | 7589723 | 2000-05-29 14:26:00 +0000 | [diff] [blame] | 747 | } |
drh | d3ec02d | 2009-06-12 02:27:14 +0000 | [diff] [blame] | 748 | #endif /* YYNOERRORRECOVERY */ |
drh | 7589723 | 2000-05-29 14:26:00 +0000 | [diff] [blame] | 749 | |
| 750 | /* |
| 751 | ** The following code executes when a syntax error first occurs. |
| 752 | */ |
| 753 | static void yy_syntax_error( |
| 754 | yyParser *yypParser, /* The parser */ |
| 755 | int yymajor, /* The major type of the error token */ |
drh | 45f31be | 2016-02-16 21:19:49 +0000 | [diff] [blame] | 756 | ParseTOKENTYPE yyminor /* The minor type of the error token */ |
drh | 7589723 | 2000-05-29 14:26:00 +0000 | [diff] [blame] | 757 | ){ |
drh | 1f245e4 | 2002-03-11 13:55:50 +0000 | [diff] [blame] | 758 | ParseARG_FETCH; |
drh | 45f31be | 2016-02-16 21:19:49 +0000 | [diff] [blame] | 759 | #define TOKEN yyminor |
drh | 82415f2 | 2015-11-09 19:33:42 +0000 | [diff] [blame] | 760 | /************ Begin %syntax_error code ****************************************/ |
drh | 7589723 | 2000-05-29 14:26:00 +0000 | [diff] [blame] | 761 | %% |
drh | 82415f2 | 2015-11-09 19:33:42 +0000 | [diff] [blame] | 762 | /************ End %syntax_error code ******************************************/ |
drh | 1f245e4 | 2002-03-11 13:55:50 +0000 | [diff] [blame] | 763 | ParseARG_STORE; /* Suppress warning about unused %extra_argument variable */ |
drh | 7589723 | 2000-05-29 14:26:00 +0000 | [diff] [blame] | 764 | } |
| 765 | |
| 766 | /* |
| 767 | ** The following is executed when the parser accepts |
| 768 | */ |
| 769 | static void yy_accept( |
| 770 | yyParser *yypParser /* The parser */ |
drh | 7589723 | 2000-05-29 14:26:00 +0000 | [diff] [blame] | 771 | ){ |
drh | 1f245e4 | 2002-03-11 13:55:50 +0000 | [diff] [blame] | 772 | ParseARG_FETCH; |
drh | 7589723 | 2000-05-29 14:26:00 +0000 | [diff] [blame] | 773 | #ifndef NDEBUG |
| 774 | if( yyTraceFILE ){ |
| 775 | fprintf(yyTraceFILE,"%sAccept!\n",yyTracePrompt); |
| 776 | } |
| 777 | #endif |
drh | dd703e2 | 2016-07-12 19:54:49 +0000 | [diff] [blame] | 778 | #ifndef YYNOERRORRECOVERY |
| 779 | yypParser->yyerrcnt = -1; |
| 780 | #endif |
drh | 756b41e | 2016-05-24 18:55:08 +0000 | [diff] [blame] | 781 | assert( yypParser->yytos==yypParser->yystack ); |
drh | 7589723 | 2000-05-29 14:26:00 +0000 | [diff] [blame] | 782 | /* Here code is inserted which will be executed whenever the |
| 783 | ** parser accepts */ |
drh | 82415f2 | 2015-11-09 19:33:42 +0000 | [diff] [blame] | 784 | /*********** Begin %parse_accept code *****************************************/ |
drh | 7589723 | 2000-05-29 14:26:00 +0000 | [diff] [blame] | 785 | %% |
drh | 82415f2 | 2015-11-09 19:33:42 +0000 | [diff] [blame] | 786 | /*********** End %parse_accept code *******************************************/ |
drh | 1f245e4 | 2002-03-11 13:55:50 +0000 | [diff] [blame] | 787 | ParseARG_STORE; /* Suppress warning about unused %extra_argument variable */ |
drh | 7589723 | 2000-05-29 14:26:00 +0000 | [diff] [blame] | 788 | } |
| 789 | |
| 790 | /* The main parser program. |
| 791 | ** The first argument is a pointer to a structure obtained from |
| 792 | ** "ParseAlloc" which describes the current state of the parser. |
| 793 | ** The second argument is the major token number. The third is |
| 794 | ** the minor token. The fourth optional argument is whatever the |
| 795 | ** user wants (and specified in the grammar) and is available for |
| 796 | ** use by the action routines. |
| 797 | ** |
| 798 | ** Inputs: |
| 799 | ** <ul> |
| 800 | ** <li> A pointer to the parser (an opaque structure.) |
| 801 | ** <li> The major token number. |
| 802 | ** <li> The minor token number. |
| 803 | ** <li> An option argument of a grammar-specified type. |
| 804 | ** </ul> |
| 805 | ** |
| 806 | ** Outputs: |
| 807 | ** None. |
| 808 | */ |
drh | 7589723 | 2000-05-29 14:26:00 +0000 | [diff] [blame] | 809 | void Parse( |
| 810 | void *yyp, /* The parser */ |
| 811 | int yymajor, /* The major token code number */ |
| 812 | ParseTOKENTYPE yyminor /* The value for the token */ |
drh | 1f245e4 | 2002-03-11 13:55:50 +0000 | [diff] [blame] | 813 | ParseARG_PDECL /* Optional %extra_argument parameter */ |
drh | 7589723 | 2000-05-29 14:26:00 +0000 | [diff] [blame] | 814 | ){ |
| 815 | YYMINORTYPE yyminorunion; |
drh | 4ef0770 | 2016-03-16 19:45:54 +0000 | [diff] [blame] | 816 | unsigned int yyact; /* The parser action. */ |
drh | a441404 | 2015-11-09 15:06:26 +0000 | [diff] [blame] | 817 | #if !defined(YYERRORSYMBOL) && !defined(YYNOERRORRECOVERY) |
drh | 7589723 | 2000-05-29 14:26:00 +0000 | [diff] [blame] | 818 | int yyendofinput; /* True if we are at the end of input */ |
drh | a441404 | 2015-11-09 15:06:26 +0000 | [diff] [blame] | 819 | #endif |
drh | c4dd3fd | 2008-01-22 01:48:05 +0000 | [diff] [blame] | 820 | #ifdef YYERRORSYMBOL |
drh | 7589723 | 2000-05-29 14:26:00 +0000 | [diff] [blame] | 821 | int yyerrorhit = 0; /* True if yymajor has invoked an error */ |
drh | c4dd3fd | 2008-01-22 01:48:05 +0000 | [diff] [blame] | 822 | #endif |
drh | 7589723 | 2000-05-29 14:26:00 +0000 | [diff] [blame] | 823 | yyParser *yypParser; /* The parser */ |
| 824 | |
drh | 7589723 | 2000-05-29 14:26:00 +0000 | [diff] [blame] | 825 | yypParser = (yyParser*)yyp; |
drh | abecc0b | 2016-05-24 00:40:54 +0000 | [diff] [blame] | 826 | assert( yypParser->yytos!=0 ); |
drh | a441404 | 2015-11-09 15:06:26 +0000 | [diff] [blame] | 827 | #if !defined(YYERRORSYMBOL) && !defined(YYNOERRORRECOVERY) |
drh | 7589723 | 2000-05-29 14:26:00 +0000 | [diff] [blame] | 828 | yyendofinput = (yymajor==0); |
drh | a441404 | 2015-11-09 15:06:26 +0000 | [diff] [blame] | 829 | #endif |
drh | 1f245e4 | 2002-03-11 13:55:50 +0000 | [diff] [blame] | 830 | ParseARG_STORE; |
drh | 7589723 | 2000-05-29 14:26:00 +0000 | [diff] [blame] | 831 | |
| 832 | #ifndef NDEBUG |
| 833 | if( yyTraceFILE ){ |
drh | 0c4105e | 2015-11-10 14:51:22 +0000 | [diff] [blame] | 834 | fprintf(yyTraceFILE,"%sInput '%s'\n",yyTracePrompt,yyTokenName[yymajor]); |
drh | 7589723 | 2000-05-29 14:26:00 +0000 | [diff] [blame] | 835 | } |
| 836 | #endif |
| 837 | |
| 838 | do{ |
drh | 3abbd39 | 2008-12-10 23:04:13 +0000 | [diff] [blame] | 839 | yyact = yy_find_shift_action(yypParser,(YYCODETYPE)yymajor); |
drh | 3bd48ab | 2015-09-07 18:23:37 +0000 | [diff] [blame] | 840 | if( yyact <= YY_MAX_SHIFTREDUCE ){ |
drh | 45f31be | 2016-02-16 21:19:49 +0000 | [diff] [blame] | 841 | yy_shift(yypParser,yyact,yymajor,yyminor); |
drh | dab943c | 2016-02-16 01:01:43 +0000 | [diff] [blame] | 842 | #ifndef YYNOERRORRECOVERY |
drh | a248a72 | 2015-09-07 19:52:55 +0000 | [diff] [blame] | 843 | yypParser->yyerrcnt--; |
drh | dab943c | 2016-02-16 01:01:43 +0000 | [diff] [blame] | 844 | #endif |
drh | a248a72 | 2015-09-07 19:52:55 +0000 | [diff] [blame] | 845 | yymajor = YYNOCODE; |
drh | 3bd48ab | 2015-09-07 18:23:37 +0000 | [diff] [blame] | 846 | }else if( yyact <= YY_MAX_REDUCE ){ |
| 847 | yy_reduce(yypParser,yyact-YY_MIN_REDUCE); |
drh | c4dd3fd | 2008-01-22 01:48:05 +0000 | [diff] [blame] | 848 | }else{ |
| 849 | assert( yyact == YY_ERROR_ACTION ); |
drh | 45f31be | 2016-02-16 21:19:49 +0000 | [diff] [blame] | 850 | yyminorunion.yy0 = yyminor; |
drh | c4dd3fd | 2008-01-22 01:48:05 +0000 | [diff] [blame] | 851 | #ifdef YYERRORSYMBOL |
drh | 3ddfdf7 | 2003-12-22 14:53:19 +0000 | [diff] [blame] | 852 | int yymx; |
drh | c4dd3fd | 2008-01-22 01:48:05 +0000 | [diff] [blame] | 853 | #endif |
drh | 7589723 | 2000-05-29 14:26:00 +0000 | [diff] [blame] | 854 | #ifndef NDEBUG |
| 855 | if( yyTraceFILE ){ |
| 856 | fprintf(yyTraceFILE,"%sSyntax Error!\n",yyTracePrompt); |
| 857 | } |
| 858 | #endif |
| 859 | #ifdef YYERRORSYMBOL |
| 860 | /* A syntax error has occurred. |
| 861 | ** The response to an error depends upon whether or not the |
| 862 | ** grammar defines an error token "ERROR". |
| 863 | ** |
| 864 | ** This is what we do if the grammar does define ERROR: |
| 865 | ** |
| 866 | ** * Call the %syntax_error function. |
| 867 | ** |
| 868 | ** * Begin popping the stack until we enter a state where |
| 869 | ** it is legal to shift the error symbol, then shift |
| 870 | ** the error symbol. |
| 871 | ** |
| 872 | ** * Set the error count to three. |
| 873 | ** |
| 874 | ** * Begin accepting and shifting new tokens. No new error |
| 875 | ** processing will occur until three tokens have been |
| 876 | ** shifted successfully. |
| 877 | ** |
| 878 | */ |
drh | 1f245e4 | 2002-03-11 13:55:50 +0000 | [diff] [blame] | 879 | if( yypParser->yyerrcnt<0 ){ |
drh | 45f31be | 2016-02-16 21:19:49 +0000 | [diff] [blame] | 880 | yy_syntax_error(yypParser,yymajor,yyminor); |
drh | 7589723 | 2000-05-29 14:26:00 +0000 | [diff] [blame] | 881 | } |
drh | 118ab65 | 2016-05-23 21:56:24 +0000 | [diff] [blame] | 882 | yymx = yypParser->yytos->major; |
drh | 3ddfdf7 | 2003-12-22 14:53:19 +0000 | [diff] [blame] | 883 | if( yymx==YYERRORSYMBOL || yyerrorhit ){ |
drh | 7589723 | 2000-05-29 14:26:00 +0000 | [diff] [blame] | 884 | #ifndef NDEBUG |
| 885 | if( yyTraceFILE ){ |
| 886 | fprintf(yyTraceFILE,"%sDiscard input token %s\n", |
| 887 | yyTracePrompt,yyTokenName[yymajor]); |
| 888 | } |
| 889 | #endif |
drh | 45f31be | 2016-02-16 21:19:49 +0000 | [diff] [blame] | 890 | yy_destructor(yypParser, (YYCODETYPE)yymajor, &yyminorunion); |
drh | 7589723 | 2000-05-29 14:26:00 +0000 | [diff] [blame] | 891 | yymajor = YYNOCODE; |
| 892 | }else{ |
drh | 4eda15e | 2016-10-04 12:20:12 +0000 | [diff] [blame] | 893 | while( yypParser->yytos >= yypParser->yystack |
drh | 118ab65 | 2016-05-23 21:56:24 +0000 | [diff] [blame] | 894 | && yymx != YYERRORSYMBOL |
| 895 | && (yyact = yy_find_reduce_action( |
| 896 | yypParser->yytos->stateno, |
drh | 3bd48ab | 2015-09-07 18:23:37 +0000 | [diff] [blame] | 897 | YYERRORSYMBOL)) >= YY_MIN_REDUCE |
drh | 7589723 | 2000-05-29 14:26:00 +0000 | [diff] [blame] | 898 | ){ |
| 899 | yy_pop_parser_stack(yypParser); |
| 900 | } |
drh | 118ab65 | 2016-05-23 21:56:24 +0000 | [diff] [blame] | 901 | if( yypParser->yytos < yypParser->yystack || yymajor==0 ){ |
drh | b27b7f5 | 2008-12-10 18:03:45 +0000 | [diff] [blame] | 902 | yy_destructor(yypParser,(YYCODETYPE)yymajor,&yyminorunion); |
drh | 1f245e4 | 2002-03-11 13:55:50 +0000 | [diff] [blame] | 903 | yy_parse_failed(yypParser); |
drh | 240c7fa | 2016-07-05 12:47:28 +0000 | [diff] [blame] | 904 | #ifndef YYNOERRORRECOVERY |
| 905 | yypParser->yyerrcnt = -1; |
| 906 | #endif |
drh | 7589723 | 2000-05-29 14:26:00 +0000 | [diff] [blame] | 907 | yymajor = YYNOCODE; |
drh | 3ddfdf7 | 2003-12-22 14:53:19 +0000 | [diff] [blame] | 908 | }else if( yymx!=YYERRORSYMBOL ){ |
drh | 45f31be | 2016-02-16 21:19:49 +0000 | [diff] [blame] | 909 | yy_shift(yypParser,yyact,YYERRORSYMBOL,yyminor); |
drh | 7589723 | 2000-05-29 14:26:00 +0000 | [diff] [blame] | 910 | } |
| 911 | } |
drh | 1f245e4 | 2002-03-11 13:55:50 +0000 | [diff] [blame] | 912 | yypParser->yyerrcnt = 3; |
drh | 7589723 | 2000-05-29 14:26:00 +0000 | [diff] [blame] | 913 | yyerrorhit = 1; |
drh | d3ec02d | 2009-06-12 02:27:14 +0000 | [diff] [blame] | 914 | #elif defined(YYNOERRORRECOVERY) |
| 915 | /* If the YYNOERRORRECOVERY macro is defined, then do not attempt to |
| 916 | ** do any kind of error recovery. Instead, simply invoke the syntax |
| 917 | ** error routine and continue going as if nothing had happened. |
| 918 | ** |
| 919 | ** Applications can set this macro (for example inside %include) if |
| 920 | ** they intend to abandon the parse upon the first syntax error seen. |
| 921 | */ |
drh | 45f31be | 2016-02-16 21:19:49 +0000 | [diff] [blame] | 922 | yy_syntax_error(yypParser,yymajor, yyminor); |
drh | d3ec02d | 2009-06-12 02:27:14 +0000 | [diff] [blame] | 923 | yy_destructor(yypParser,(YYCODETYPE)yymajor,&yyminorunion); |
| 924 | yymajor = YYNOCODE; |
| 925 | |
drh | 7589723 | 2000-05-29 14:26:00 +0000 | [diff] [blame] | 926 | #else /* YYERRORSYMBOL is not defined */ |
| 927 | /* This is what we do if the grammar does not define ERROR: |
| 928 | ** |
| 929 | ** * Report an error message, and throw away the input token. |
| 930 | ** |
| 931 | ** * If the input token is $, then fail the parse. |
| 932 | ** |
| 933 | ** As before, subsequent error messages are suppressed until |
| 934 | ** three input tokens have been successfully shifted. |
| 935 | */ |
drh | 1f245e4 | 2002-03-11 13:55:50 +0000 | [diff] [blame] | 936 | if( yypParser->yyerrcnt<=0 ){ |
drh | 45f31be | 2016-02-16 21:19:49 +0000 | [diff] [blame] | 937 | yy_syntax_error(yypParser,yymajor, yyminor); |
drh | 7589723 | 2000-05-29 14:26:00 +0000 | [diff] [blame] | 938 | } |
drh | 1f245e4 | 2002-03-11 13:55:50 +0000 | [diff] [blame] | 939 | yypParser->yyerrcnt = 3; |
drh | b27b7f5 | 2008-12-10 18:03:45 +0000 | [diff] [blame] | 940 | yy_destructor(yypParser,(YYCODETYPE)yymajor,&yyminorunion); |
drh | 7589723 | 2000-05-29 14:26:00 +0000 | [diff] [blame] | 941 | if( yyendofinput ){ |
drh | 1f245e4 | 2002-03-11 13:55:50 +0000 | [diff] [blame] | 942 | yy_parse_failed(yypParser); |
drh | d3d4b3c | 2016-07-08 19:54:38 +0000 | [diff] [blame] | 943 | #ifndef YYNOERRORRECOVERY |
| 944 | yypParser->yyerrcnt = -1; |
| 945 | #endif |
drh | 7589723 | 2000-05-29 14:26:00 +0000 | [diff] [blame] | 946 | } |
| 947 | yymajor = YYNOCODE; |
| 948 | #endif |
drh | 7589723 | 2000-05-29 14:26:00 +0000 | [diff] [blame] | 949 | } |
drh | abecc0b | 2016-05-24 00:40:54 +0000 | [diff] [blame] | 950 | }while( yymajor!=YYNOCODE && yypParser->yytos>yypParser->yystack ); |
drh | 3bd48ab | 2015-09-07 18:23:37 +0000 | [diff] [blame] | 951 | #ifndef NDEBUG |
| 952 | if( yyTraceFILE ){ |
drh | 118ab65 | 2016-05-23 21:56:24 +0000 | [diff] [blame] | 953 | yyStackEntry *i; |
| 954 | char cDiv = '['; |
drh | 0c4105e | 2015-11-10 14:51:22 +0000 | [diff] [blame] | 955 | fprintf(yyTraceFILE,"%sReturn. Stack=",yyTracePrompt); |
drh | 118ab65 | 2016-05-23 21:56:24 +0000 | [diff] [blame] | 956 | for(i=&yypParser->yystack[1]; i<=yypParser->yytos; i++){ |
| 957 | fprintf(yyTraceFILE,"%c%s", cDiv, yyTokenName[i->major]); |
| 958 | cDiv = ' '; |
| 959 | } |
drh | 0c4105e | 2015-11-10 14:51:22 +0000 | [diff] [blame] | 960 | fprintf(yyTraceFILE,"]\n"); |
drh | 3bd48ab | 2015-09-07 18:23:37 +0000 | [diff] [blame] | 961 | } |
| 962 | #endif |
drh | 7589723 | 2000-05-29 14:26:00 +0000 | [diff] [blame] | 963 | return; |
| 964 | } |