From: Michael Wallner Date: Tue, 6 Nov 2018 16:33:35 +0000 (+0100) Subject: basic support for builtins X-Git-Url: https://git.m6w6.name/?p=m6w6%2Fext-psi;a=commitdiff_plain;h=a7ac1c0a3c855321f21682c127a4b707de33a303 basic support for builtins --- diff --git a/.gitignore b/.gitignore index ce94c07..320a3eb 100644 --- a/.gitignore +++ b/.gitignore @@ -63,3 +63,4 @@ tests/*/*.sh /php_psi_posix.h /types/ /calc/ +*.bak diff --git a/.travis.yml b/.travis.yml index db53c03..7fe182c 100644 --- a/.travis.yml +++ b/.travis.yml @@ -25,8 +25,8 @@ before_install: - touch src/parser_proc_grammar.y - touch src/parser_proc.c - touch src/parser_proc.h - - touch src/parser.re - - touch src/parser.c + - touch src/parser_scan.re + - touch src/parser_scan.c - touch src/parser.h install: diff --git a/Makefile.frag b/Makefile.frag index 5a7a877..589785d 100644 --- a/Makefile.frag +++ b/Makefile.frag @@ -18,9 +18,9 @@ $(PHP_PSI_SRCDIR)/src/parser_proc.c: $(PHP_PSI_SRCDIR)/src/parser_proc_grammar.y # trickery needed for relative #line directives cd $(PHP_PSI_SRCDIR) && bison -Wall -v -d -o $(patsubst $(PHP_PSI_SRCDIR)/%,%,$@) $(patsubst $(PHP_PSI_SRCDIR)/%,%,$<) -$(PHP_PSI_SRCDIR)/src/parser.re: $(PHP_PSI_SRCDIR)/src/parser_proc.h +$(PHP_PSI_SRCDIR)/src/parser_scan.re: $(PHP_PSI_SRCDIR)/src/parser_proc.h touch $@ -$(PHP_PSI_SRCDIR)/src/parser.c: $(PHP_PSI_SRCDIR)/src/parser.re +$(PHP_PSI_SRCDIR)/src/parser_scan.c: $(PHP_PSI_SRCDIR)/src/parser_scan.re # trickery needed for relative #line directives cd $(PHP_PSI_SRCDIR) && $(RE2C) -o $(patsubst $(PHP_PSI_SRCDIR)/%,%,$@) $(patsubst $(PHP_PSI_SRCDIR)/%,%,$<) @@ -31,7 +31,7 @@ $(PHP_PSI_SRCDIR)/src/calc.h: | $(PHP_PSI_SRCDIR)/src/calc/basic.h $(PHP_PSI_SRC .PHONY: psi-generated psi-generated: $(PHP_PSI_GENERATED) - + PHP_PSI_DEPEND = $(patsubst $(PHP_PSI_SRCDIR)/%,$(PHP_PSI_BUILDDIR)/%,$(PHP_PSI_SOURCES:.c=.dep)) @@ -82,7 +82,7 @@ psi-watch: -while inotifywait -q -e modify -r $(PHP_PSI_SRCDIR); do $(MAKE); done install-headers: psi-build-headers -clean: psi-clean-headers psi-clean-aux +clean: psi-clean-headers ifneq ($(PSI_DEPS),) clean: psi-clean-depend endif diff --git a/TODO b/TODO index 3e6e55a..e029536 100644 --- a/TODO +++ b/TODO @@ -7,3 +7,14 @@ * improve varargs support, currently it's impossible to map e.g. curl_easy_setopt * impl_var.name: remove leading '$' * really solve the array/pointer problem + +* variadic macros +* predefined macros + * __COUNTER__ counter starting from 0, incremented each time expanded + * __BASE_FILE__ current PSI file + * __INCLUDE_LEVEL__ include level + * __TIMESTAMP__ lmod of current source file +* builtins +* int128 +* very small real numbers +* cache tokens of files and copy tokens if used for further processing diff --git a/config.m4 b/config.m4 index d621ffc..1a6fbec 100644 --- a/config.m4 +++ b/config.m4 @@ -55,12 +55,13 @@ if test "$PHP_PSI" != no; then AC_MSG_RESULT([$PHP_PSI_SRCDIR]) AC_MSG_CHECKING([psi build dir]) AC_MSG_RESULT([$PHP_PSI_BUILDDIR]) - + PSI_CHECK_LIBJIT PSI_CHECK_LIBFFI AC_FUNC_FNMATCH AC_FUNC_MMAP + AC_CHECK_FUNCS([mknodat eaccess]) PSI_CONFIG_INIT PSI_CHECK_STD_TYPES @@ -83,15 +84,15 @@ if test "$PHP_PSI" != no; then src/calc/unary.h src/calc/cmp.h src/calc/oper.h \ `(cd $PHP_PSI_SRCDIR/src && ls *.h types/*.h)` \ " - # parser* should come first + # parser_* should come first PHP_PSI_SOURCES=" \ - src/parser_proc.c src/parser.c \ + src/parser_proc.c src/parser_scan.c \ `(cd $PHP_PSI_SRCDIR && ls src/*.c src/types/*.c \ - | $EGREP -v '^src/parser' \ + | $EGREP -v '^src/parser_' \ )` \ " PHP_PSI_GENERATED=" \ - src/parser_proc.c src/parser.c \ + src/parser_proc.c src/parser_scan.c \ src/calc/basic.h src/calc/bin.h src/calc/bool.h src/calc/cast.h \ src/calc/unary.h src/calc/cmp.h src/calc/oper.h \ " diff --git a/m4/psi/psi.m4 b/m4/psi/psi.m4 index f292c3e..bb8254b 100644 --- a/m4/psi/psi.m4 +++ b/m4/psi/psi.m4 @@ -12,7 +12,7 @@ AC_DEFUN(PSI_CONFIG_INIT, [ AC_PROG_AWK AC_MSG_CHECKING(for preprocessor defaults) - psi_cpp_predef=`$CPP -Wp,-dM $CPPFLAGS -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 - &1 >/dev/null \ | $AWK ' /include.*search.*start/ { diff --git a/php_psi.h b/php_psi.h index 91f3030..01582c5 100644 --- a/php_psi.h +++ b/php_psi.h @@ -47,7 +47,7 @@ extern zend_module_entry psi_module_entry; static inline int psi_check_env(const char *var) { char *set = getenv(var); - return (set && *set && '0' != *set); + return (set && *set && (*set != '0' || set[1])); } typedef struct psi_object { diff --git a/php_psi_posix.h.in b/php_psi_posix.h.in index bc2d356..a0527c5 100644 --- a/php_psi_posix.h.in +++ b/php_psi_posix.h.in @@ -61,7 +61,9 @@ static struct psi_func_redir { {"fstatat", (psi_func_ptr) fstatat}, {"lstat", (psi_func_ptr) lstat}, {"mknod", (psi_func_ptr) mknod}, +#ifdef HAVE_MKNODAT {"mknodat", (psi_func_ptr) mknodat}, +#endif {"stat", (psi_func_ptr) stat}, {0} }; diff --git a/psi.d/stdlib.psi b/psi.d/stdlib.psi index bf67899..70b1c65 100644 --- a/psi.d/stdlib.psi +++ b/psi.d/stdlib.psi @@ -1,4 +1,6 @@ +#ifdef linux lib "crypt"; +#endif #include @@ -19,7 +21,7 @@ function psi\ldiv(int $numerator, int $denominator) : array { let numerator = intval($numerator); let denominator = intval($denominator); pre_assert denominator != 0; - return ldiv(numerator, denominator) + return ldiv(numerator, denominator) as to_array(ldiv, to_int(quot), to_int(rem)); } @@ -27,14 +29,14 @@ function psi\lldiv(int $numerator, int $denominator) : array { let numerator = intval($numerator); let denominator = intval($denominator); pre_assert denominator != 0; - return lldiv(numerator, denominator) + return lldiv(numerator, denominator) as to_array(lldiv, to_int(quot), to_int(rem)); } function psi\strtold(string $str, string &$end = null) : float { let nptr = strval($str); let endptr = &NULL; - return strtold(nptr, endptr) + return strtold(nptr, endptr) as to_float(strtold); set $end = to_string(*endptr); } @@ -62,4 +64,4 @@ function psi\realloc(object $obj, int $size) : object { let size = intval($size); pre_assert size >= 0; return realloc(ptr, size) as to_object(realloc); -} +} diff --git a/scripts/gen_travis_yml.php b/scripts/gen_travis_yml.php index 5de7ab9..8b4185b 100755 --- a/scripts/gen_travis_yml.php +++ b/scripts/gen_travis_yml.php @@ -39,8 +39,8 @@ before_install: - touch src/parser_proc_grammar.y - touch src/parser_proc.c - touch src/parser_proc.h - - touch src/parser.re - - touch src/parser.c + - touch src/parser_scan.re + - touch src/parser_scan.c - touch src/parser.h install: diff --git a/src/builtin.c b/src/builtin.c new file mode 100644 index 0000000..e4e2e9b --- /dev/null +++ b/src/builtin.c @@ -0,0 +1,180 @@ +/******************************************************************************* + Copyright (c) 2018, Michael Wallner . + All rights reserved. + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions are met: + + * Redistributions of source code must retain the above copyright notice, + this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE + FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL + DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, + OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE + OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +*******************************************************************************/ + +#include "php_psi_stdinc.h" + +#include "php_psi.h" +#include "builtin.h" +#include "parser.h" +#include "cpp.h" + +#include + +HashTable psi_builtins; + +static bool has_include(struct psi_cpp *cpp, struct psi_token *target, struct psi_plist **args, struct psi_plist **res); +static bool has_include_next(struct psi_cpp *cpp, struct psi_token *target, struct psi_plist **args, struct psi_plist **res); +static bool builtin_constant_p(struct psi_cpp *cpp, struct psi_token *target, struct psi_plist **args, struct psi_plist **res); +static bool COUNTER__(struct psi_cpp *cpp, struct psi_token *target, struct psi_plist **args, struct psi_plist **res); + +static inline struct psi_plist *builtin_sig(token_t typ, ...) +{ + struct psi_plist *sig; + size_t n = 0; + va_list args; + + if (typ == (token_t) - 1) { + return NULL; + } + + sig = psi_plist_init((psi_plist_dtor) psi_token_free); + va_start(args, typ); + while (typ) { + char a = 'a' + n++; + struct psi_token *arg; + + arg = psi_token_init(typ, &a, 1, 0, 0, zend_empty_string); + sig = psi_plist_add(sig, &arg); + typ = va_arg(args, token_t); + } + va_end(args); + + return sig; +} + +static void free_builtin(zval *p) +{ + struct psi_builtin *b = Z_PTR_P(p); + + if (b) { + zend_string_release(b->name); + psi_cpp_macro_decl_free(&b->decl); + pefree(b, 1); + } +} + +PHP_MINIT_FUNCTION(psi_builtin) +{ +#define PSI_BUILTIN(builtin, ...) do { \ + struct psi_builtin entry; \ + struct psi_plist *sig = builtin_sig(__VA_ARGS__, 0); \ + struct psi_cpp_macro_decl *decl = psi_cpp_macro_decl_init(sig, NULL, NULL); \ + decl->token = psi_token_init(PSI_T_NAME, "__" #builtin, sizeof("__" #builtin)-1, \ + 0, 0, zend_empty_string); \ + entry.name = zend_string_copy(decl->token->text); \ + entry.func = &builtin; \ + entry.decl = decl; \ + zend_hash_add_mem(&psi_builtins, entry.name, &entry, sizeof(entry)); \ +} while(0) + + zend_hash_init(&psi_builtins, 0, NULL, free_builtin, 1); + PSI_BUILTIN(has_include, PSI_T_CPP_HEADER); + PSI_BUILTIN(has_include_next, PSI_T_CPP_HEADER); + PSI_BUILTIN(builtin_constant_p, PSI_T_NAME); + PSI_BUILTIN(COUNTER__, -1); + + return SUCCESS; +} + +PHP_MSHUTDOWN_FUNCTION(psi_builtin) +{ + zend_hash_destroy(&psi_builtins); + return SUCCESS; +} + +bool psi_builtin_exists(zend_string *name) +{ + return zend_hash_exists(&psi_builtins, name); +} + +struct psi_builtin *psi_builtin_get(zend_string *name) +{ + return zend_hash_find_ptr(&psi_builtins, name); +} + +static bool has_include(struct psi_cpp *cpp, struct psi_token *target, + struct psi_plist **args, struct psi_plist **res) +{ + struct psi_plist *arg = args[0]; + struct psi_token *tok; + + switch (psi_plist_count(arg)) { + case 1: + if (psi_plist_get(arg, 0, &tok)) { + const char *cpp_search = cpp->search; + bool has = psi_cpp_has_include(cpp, tok, 0, NULL); + cpp->search = cpp_search; + return has; + } + /* no break */ + default: + cpp->parser->error(PSI_DATA(cpp->parser), target, PSI_WARNING, + "Erroneous usage of builtin __%s", __FUNCTION__); + } + return false; +} + +static bool has_include_next(struct psi_cpp *cpp, struct psi_token *target, + struct psi_plist **args, struct psi_plist **res) +{ + struct psi_plist *arg = args[0]; + struct psi_token *tok; + + switch (psi_plist_count(arg)) { + case 1: + if (psi_plist_get(arg, 0, &tok)) { + const char *cpp_search = cpp->search; + bool has = psi_cpp_has_include(cpp, tok, PSI_CPP_INCLUDE_NEXT, NULL); + cpp->search = cpp_search; + return has; + } + /* no break */ + default: + cpp->parser->error(PSI_DATA(cpp->parser), target, PSI_WARNING, + "Erroneous usage of builtin __%s", __FUNCTION__); + } + return false; +} + +static bool builtin_constant_p(struct psi_cpp *cpp, struct psi_token *target, + struct psi_plist **args, struct psi_plist **res_ptr) +{ + /* we want functions, not macros for e.g. htonl() */ + return false; +} + +static bool COUNTER__(struct psi_cpp *cpp, struct psi_token *target, + struct psi_plist **args, struct psi_plist **res) +{ + struct psi_token *tok; + char buf[0x20]; + size_t len = sprintf(buf, "%u", cpp->counter++); + + tok = psi_token_init(PSI_T_NUMBER, buf, len, target->col, target->line, target->file); + *res = psi_plist_init((psi_plist_dtor) psi_token_free); + *res = psi_plist_add(*res, &tok); + + return true; +} diff --git a/src/builtin.h b/src/builtin.h new file mode 100644 index 0000000..13b8c83 --- /dev/null +++ b/src/builtin.h @@ -0,0 +1,42 @@ +/******************************************************************************* + Copyright (c) 2018, Michael Wallner . + All rights reserved. + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions are met: + + * Redistributions of source code must retain the above copyright notice, + this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE + FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL + DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, + OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE + OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +*******************************************************************************/ + +#ifndef PSI_BUILTIN_H +#define PSI_BUILTIN_H + +struct psi_cpp; +struct psi_plist; +struct psi_token; + +struct psi_builtin { + zend_string *name; + bool (*func)(struct psi_cpp *cpp, struct psi_token *target, struct psi_plist **args_list, struct psi_plist **res); + struct psi_cpp_macro_decl *decl; +}; + +bool psi_builtin_exists(zend_string *name); +struct psi_builtin *psi_builtin_get(zend_string *name); + +#endif /* PSI_BUILTIN_H */ diff --git a/src/calc.h b/src/calc.h index 21ece7b..0c2678c 100644 --- a/src/calc.h +++ b/src/calc.h @@ -30,7 +30,7 @@ #include "types/impl_val.h" #define PRIfval ".13gF" -#define PRIdval ".53lg" +#define PRIdval ".53g" #define PRIldval ".64LgL" typedef token_t (*psi_calc)(token_t t1, impl_val *v1, token_t t2, impl_val *v2, impl_val *res); diff --git a/src/context.c b/src/context.c index 1d5e230..be8bae9 100644 --- a/src/context.c +++ b/src/context.c @@ -98,7 +98,9 @@ PHP_MINIT_FUNCTION(psi_context) PHP_MSHUTDOWN_FUNCTION(psi_context) { if (psi_check_env("PSI_DUMP")) { - psi_context_dump(PSI_G(context), STDOUT_FILENO); + struct psi_dump dump = {{.hn = stdout}, (psi_dump_cb) fprintf}; + + psi_context_dump(&dump, PSI_G(context)); } psi_context_free(&PSI_G(context)); @@ -148,7 +150,7 @@ static bool psi_context_add(struct psi_context *C, struct psi_parser *P) D = psi_data_exchange(&C->data[C->count++], PSI_DATA(P)); psi_validate_scope_ctor(&scope); - scope.defs = &P->preproc->defs; + scope.cpp = P->preproc; valid = psi_validate(&scope, PSI_DATA(C), D); psi_validate_scope_dtor(&scope); @@ -234,7 +236,7 @@ zend_function_entry *psi_context_compile(struct psi_context *C) zc.name = zend_string_copy(c->name); - switch (c->type->type) { + switch (c->type ? c->type->type : c->val->type) { case PSI_T_BOOL: ZVAL_BOOL(&zc.value, c->val->ival.zend.bval); break; @@ -376,15 +378,21 @@ void psi_context_free(struct psi_context **C) } } -void psi_context_dump(struct psi_context *C, int fd) +void psi_context_dump(struct psi_dump *dump, struct psi_context *C) { size_t i; - dprintf(fd, "// psi.engine=%s\n// %lu files\n", + PSI_DUMP(dump, "// psi.engine=%s\n// %lu files\n", (char *) C->ops->query(C, PSI_CONTEXT_QUERY_SELF, NULL), C->count); - for (i = 0; i < C->count; ++i) { - psi_data_dump(fd, &C->data[i]); + psi_data_dump(dump, PSI_DATA(C)); + +#if 0 + if (C->flags & PSI_DEBUG) { + for (i = 0; i < C->count; ++i) { + psi_data_dump(fd, &C->data[i]); + } } +#endif } diff --git a/src/context.h b/src/context.h index 73d13cd..248efbb 100644 --- a/src/context.h +++ b/src/context.h @@ -75,7 +75,7 @@ struct psi_context *psi_context_init(struct psi_context *C, struct psi_context_o void psi_context_build(struct psi_context *C, const char *path); zend_function_entry *psi_context_compile(struct psi_context *C); ZEND_RESULT_CODE psi_context_call(struct psi_context *C, zend_execute_data *execute_data, zval *return_value, struct psi_impl *impl); -void psi_context_dump(struct psi_context *C, int fd); +void psi_context_dump(struct psi_dump *dump, struct psi_context *C); void psi_context_dtor(struct psi_context *C); void psi_context_free(struct psi_context **C); diff --git a/src/cpp.c b/src/cpp.c index e01c3e6..4982c78 100644 --- a/src/cpp.c +++ b/src/cpp.c @@ -46,7 +46,7 @@ PHP_MINIT_FUNCTION(psi_cpp) PSI_G(search_path) = pemalloc(strlen(PSI_G(directory)) + strlen(psi_cpp_search) + 1 + 1, 1); sprintf(PSI_G(search_path), "%s:%s", PSI_G(directory), psi_cpp_search); - if (!psi_parser_init(&parser, NULL, 0)) { + if (!psi_parser_init(&parser, psi_error_wrapper, PSI_SILENT)) { return FAILURE; } @@ -108,13 +108,18 @@ struct psi_cpp *psi_cpp_init(struct psi_parser *P) return cpp; } -#if PSI_CPP_DEBUG +static char *include_flavor[] = { + "include", + "include next", + "include once" +}; + +#if PSI_CPP_DEBUG > 1 static int dump_def(zval *p) { struct psi_cpp_macro_decl *decl = Z_PTR_P(p); if (decl) { - fflush(stderr); dprintf(2, "PSI: CPP decl -> #define "); psi_cpp_macro_decl_dump(2, decl); dprintf(2, "\n"); @@ -128,7 +133,7 @@ void psi_cpp_free(struct psi_cpp **cpp_ptr) if (*cpp_ptr) { struct psi_cpp *cpp = *cpp_ptr; -#if PSI_CPP_DEBUG +#if PSI_CPP_DEBUG > 1 zend_hash_apply(&cpp->defs, dump_def); #endif *cpp_ptr = NULL; @@ -251,7 +256,7 @@ static bool psi_cpp_stage2(struct psi_cpp *cpp) } } else if (current->type == PSI_T_EOL) { #if PSI_CPP_DEBUG - fprintf(stderr, "PSI: CPP do_expansion=true, PSI_T_EOL\n"); + PSI_DEBUG_PRINT(cpp->parser, "PSI: CPP do_expansion=true, PSI_T_EOL\n"); #endif is_eol = true; skip_all = false; @@ -267,7 +272,7 @@ static bool psi_cpp_stage2(struct psi_cpp *cpp) switch (current->type) { case PSI_T_DEFINE: #if PSI_CPP_DEBUG - fprintf(stderr, "PSI: CPP do_expansion=false, PSI_T_DEFINE, skip_all\n"); + PSI_DEBUG_PRINT(cpp->parser, "PSI: CPP do_expansion=false, PSI_T_DEFINE, skip_all\n"); #endif do_expansion = false; skip_all = true; @@ -279,7 +284,7 @@ static bool psi_cpp_stage2(struct psi_cpp *cpp) case PSI_T_IFNDEF: case PSI_T_UNDEF: #if PSI_CPP_DEBUG - fprintf(stderr, "PSI: CPP do_expansion=false, PSI_T_{IF{,N},UN}DEF\n"); + PSI_DEBUG_PRINT(cpp->parser, "PSI: CPP do_expansion=false, PSI_T_{IF{,N},UN}DEF\n"); #endif do_expansion = false; break; @@ -291,7 +296,7 @@ static bool psi_cpp_stage2(struct psi_cpp *cpp) } else { do_expansion = true; #if PSI_CPP_DEBUG - fprintf(stderr, "PSI: CPP do_expansion=true, PSI_T_LPAREN, !skip_all, !skip_paren\n"); + PSI_DEBUG_PRINT(cpp->parser, "PSI: CPP do_expansion=true, PSI_T_LPAREN, !skip_all, !skip_paren\n"); #endif } } @@ -301,7 +306,7 @@ static bool psi_cpp_stage2(struct psi_cpp *cpp) default: do_expansion = !skip_all; #if PSI_CPP_DEBUG - fprintf(stderr, "PSI: CPP do_expansion=%s, <- !skip_all\n", do_expansion?"true":"false"); + PSI_DEBUG_PRINT(cpp->parser, "PSI: CPP do_expansion=%s, <- !skip_all\n", do_expansion?"true":"false"); #endif } } @@ -310,8 +315,8 @@ static bool psi_cpp_stage2(struct psi_cpp *cpp) if (cpp->skip) { if (!do_cpp) { #if PSI_CPP_DEBUG - fprintf(stderr, "PSI: CPP skip "); - psi_token_dump(2, current); + PSI_DEBUG_PRINT(cpp->parser, "PSI: CPP skip "); + PSI_DEBUG_DUMP(cpp->parser, psi_token_dump, current); #endif psi_cpp_tokiter_del_cur(cpp, true); continue; @@ -352,7 +357,7 @@ static bool psi_cpp_stage2(struct psi_cpp *cpp) } #if PSI_CPP_DEBUG > 1 - psi_cpp_tokiter_dump(2, cpp); + PSI_DEBUG_DUMP(cpp->parser, psi_cpp_tokiter_dump, cpp); #endif continue; @@ -370,7 +375,7 @@ static bool psi_cpp_stage2(struct psi_cpp *cpp) bool psi_cpp_process(struct psi_cpp *cpp, struct psi_plist **tokens) { bool parsed = false; - struct psi_cpp temp = *cpp; + struct psi_cpp temp = *cpp; cpp->level = temp.level; cpp->tokens.iter = *tokens; cpp->tokens.next = NULL; @@ -390,8 +395,11 @@ bool psi_cpp_process(struct psi_cpp *cpp, struct psi_plist **tokens) if (temp.tokens.iter) { cpp->tokens.iter = temp.tokens.iter; cpp->tokens.next = temp.tokens.next; - cpp->index = temp.index; } + cpp->index = temp.index; + cpp->skip = temp.skip; + cpp->level = temp.level; + cpp->seen = temp.seen; return parsed; } @@ -401,18 +409,21 @@ bool psi_cpp_defined(struct psi_cpp *cpp, struct psi_token *tok) bool defined; if (tok->type == PSI_T_NAME) { - defined = zend_hash_exists(&cpp->defs, tok->text); + defined = zend_hash_exists(&cpp->defs, tok->text) + || psi_builtin_exists(tok->text); } else { defined = false; } #if PSI_CPP_DEBUG - fprintf(stderr, "PSI: CPP defined -> %s ", defined ? "true" : "false"); + PSI_DEBUG_PRINT(cpp->parser, "PSI: CPP defined -> %s ", defined ? "true" : "false"); if (defined) { struct psi_cpp_macro_decl *macro = zend_hash_find_ptr(&cpp->defs, tok->text); - fprintf(stderr, " @ %s:%u ", macro->token->file->val, macro->token->line); + if (macro) { + PSI_DEBUG_PRINT(cpp->parser, " @ %s:%u ", macro->token->file->val, macro->token->line); + } } - psi_token_dump(2, tok); + PSI_DEBUG_DUMP(cpp->parser, psi_token_dump, tok); #endif return defined; @@ -430,12 +441,12 @@ void psi_cpp_define(struct psi_cpp *cpp, struct psi_cpp_macro_decl *decl) } #if PSI_CPP_DEBUG if (decl->exp) { - fprintf(stderr, "PSI: CPP MACRO num_exp -> %s ", decl->token->text->val); + PSI_DEBUG_PRINT(cpp->parser, "PSI: CPP MACRO num_exp -> "); } else { - fprintf(stderr, "PSI: CPP MACRO decl -> %s ", decl->token->text->val); + PSI_DEBUG_PRINT(cpp->parser, "PSI: CPP MACRO decl -> "); } - psi_cpp_macro_decl_dump(2, decl); - fprintf(stderr, "\n"); + PSI_DEBUG_DUMP(cpp->parser, psi_cpp_macro_decl_dump, decl); + PSI_DEBUG_PRINT(cpp->parser, "\n"); #endif zend_hash_update_ptr(&cpp->defs, decl->token->text, decl); } @@ -449,93 +460,105 @@ bool psi_cpp_if(struct psi_cpp *cpp, struct psi_cpp_exp *exp) { struct psi_validate_scope scope = {0}; - scope.defs = &cpp->defs; + scope.cpp = cpp; if (!psi_num_exp_validate(PSI_DATA(cpp->parser), exp->data.num, &scope)) { return false; } - if (!psi_num_exp_get_long(exp->data.num, NULL, &cpp->defs)) { + if (!psi_num_exp_get_long(exp->data.num, NULL, cpp)) { return false; } return true; } -static inline bool try_include(struct psi_cpp *cpp, const char *path, bool *parsed) +bool psi_cpp_include(struct psi_cpp *cpp, const struct psi_token *file, unsigned flags) { + bool parsed = false; + char path[PATH_MAX]; + struct psi_plist *tokens; struct psi_parser_input *include; - PSI_DEBUG_PRINT(cpp->parser, "PSI: CPP include trying %s\n", path); - - include = psi_parser_open_file(cpp->parser, path, false); - if (include) { - struct psi_plist *tokens; - - PSI_DEBUG_PRINT(cpp->parser, "PSI: CPP include scanning %s\n", path); - - tokens = psi_parser_scan(cpp->parser, include); - if (tokens) { - *parsed = psi_cpp_process(cpp, &tokens); - - if (*parsed) { - size_t num_tokens = psi_plist_count(tokens); + if (!psi_cpp_has_include(cpp, file, flags, path)) { + return false; + } - ++cpp->expanded; - psi_cpp_tokiter_add_range(cpp, num_tokens, psi_plist_eles(tokens)); - free(tokens); - } else { - psi_plist_free(tokens); - } + if (flags & PSI_CPP_INCLUDE_ONCE) { + if (zend_hash_str_exists(&cpp->once, path, strlen(path))) { + return true; } - psi_parser_input_free(&include); + } + + PSI_DEBUG_PRINT(cpp->parser, "PSI: CPP %s opening %s\n", + include_flavor[flags], path); - zend_hash_str_add_empty_element(&cpp->once, path, strlen(path)); - return true; + include = psi_parser_open_file(cpp->parser, path, false); + if (!include) { + return false; } - return false; -} -static inline void include_path(const struct psi_token *file, char **path) -{ - if (file->text->val[0] == '/') { - *path = file->text->val; - } else { - char *dir; - size_t len; + zend_hash_str_add_empty_element(&cpp->once, path, strlen(path)); - strncpy(*path, file->file->val, PATH_MAX); + PSI_DEBUG_PRINT(cpp->parser, "PSI: CPP include scanning %s\n", path); - dir = dirname(*path); - len = strlen(dir); + tokens = psi_parser_scan(cpp->parser, include); + psi_parser_input_free(&include); - assert(len + file->text->len + 1 < PATH_MAX); + if (!tokens) { + return false; + } - memmove(*path, dir, len); - (*path)[len] = '/'; - memcpy(&(*path)[len + 1], file->text->val, file->text->len + 1); + parsed = psi_cpp_process(cpp, &tokens); + if (!parsed) { + psi_plist_free(tokens); + return false; } + + psi_cpp_tokiter_add_range(cpp, psi_plist_count(tokens), psi_plist_eles(tokens)); + free(tokens); + + ++cpp->expanded; + return true; } -bool psi_cpp_include(struct psi_cpp *cpp, const struct psi_token *file, unsigned flags) +#ifndef HAVE_EACCESS +# define eaccess access +#endif +bool psi_cpp_has_include(struct psi_cpp *cpp, const struct psi_token *file, unsigned flags, char *path) { - bool parsed = false; + char temp[PATH_MAX]; + + if (!path) { + path = temp; + } if (file->type == PSI_T_QUOTED_STRING && (!(flags & PSI_CPP_INCLUDE_NEXT) || file->text->val[0] == '/')) { /* first try as is, full or relative path */ - char temp[PATH_MAX], *path = temp; + if (file->text->val[0] == '/') { + path = file->text->val; + } else { + char *dir; + size_t len; - include_path(file, &path); + strncpy(path, file->file->val, PATH_MAX); - if ((flags & PSI_CPP_INCLUDE_ONCE) && zend_hash_str_exists(&cpp->once, path, strlen(path))) { - return true; + dir = dirname(path); + len = strlen(dir); + + assert(len + file->text->len + 1 < PATH_MAX); + + memmove(path, dir, len); + path[len] = '/'; + memcpy(&(path)[len + 1], file->text->val, file->text->len + 1); } - if (try_include(cpp, path, &parsed)) { - /* found */ - return parsed; + + PSI_DEBUG_PRINT(cpp->parser, "PSI: CPP %s trying %s\n", + include_flavor[flags], path); + if (0 == eaccess(path, R_OK)) { + return true; } } /* look through search paths */ if (file->text->val[0] != '/') { - char path[PATH_MAX]; const char *sep; int p_len; @@ -559,12 +582,11 @@ bool psi_cpp_include(struct psi_cpp *cpp, const struct psi_token *file, unsigned d_len = sep ? sep - cpp->search : strlen(cpp->search); if (PATH_MAX > (p_len = snprintf(path, PATH_MAX, "%.*s/%.*s", d_len, cpp->search, (int) file->text->len, file->text->val))) { - if ((flags & PSI_CPP_INCLUDE_ONCE) && zend_hash_str_exists(&cpp->once, path, p_len)) { - return true; - } - if (try_include(cpp, path, &parsed)) { - break; - } + PSI_DEBUG_PRINT(cpp->parser, "PSI: CPP %s trying %s\n", + include_flavor[flags], path); + if (0 == eaccess(path, R_OK)) { + return true; + } } if (sep) { @@ -573,5 +595,5 @@ bool psi_cpp_include(struct psi_cpp *cpp, const struct psi_token *file, unsigned } while (sep); } - return parsed; + return false; } diff --git a/src/cpp.h b/src/cpp.h index ae607c5..ed766e3 100644 --- a/src/cpp.h +++ b/src/cpp.h @@ -29,7 +29,7 @@ #include "data.h" #ifndef PSI_CPP_DEBUG -# define PSI_CPP_DEBUG 0 +# define PSI_CPP_DEBUG 1 #endif struct psi_cpp { @@ -46,6 +46,7 @@ struct psi_cpp { unsigned skip; unsigned seen; unsigned expanded; + unsigned counter; }; struct psi_cpp *psi_cpp_init(struct psi_parser *parser); @@ -61,6 +62,7 @@ bool psi_cpp_undef(struct psi_cpp *cpp, struct psi_token *tok); #define PSI_CPP_INCLUDE_NEXT 0x1 #define PSI_CPP_INCLUDE_ONCE 0x2 +bool psi_cpp_has_include(struct psi_cpp *cpp, const struct psi_token *file, unsigned flags, char *path); bool psi_cpp_include(struct psi_cpp *cpp, const struct psi_token *file, unsigned flags); void psi_cpp_tokiter_reset(struct psi_cpp *cpp); diff --git a/src/cpp_tokiter.c b/src/cpp_tokiter.c index 5611d3a..c2bcb95 100644 --- a/src/cpp_tokiter.c +++ b/src/cpp_tokiter.c @@ -56,15 +56,18 @@ void psi_cpp_tokiter_dump(int fd, struct psi_cpp *cpp) void psi_cpp_tokiter_reset(struct psi_cpp *cpp) { #if PSI_CPP_DEBUG - fprintf(stderr, "PSI: CPP reset -> iter.count=%zu, next.count=%zu\n", + PSI_DEBUG_PRINT(cpp->parser, "PSI: CPP reset -> iter.count=%zu, next.count=%zu\n", psi_plist_count(cpp->tokens.iter), psi_plist_count(cpp->tokens.next)); # if PSI_CPP_DEBUG > 1 - psi_cpp_tokiter_dump(2, cpp); + PSI_DEBUG_DUMP(cpp->parser, psi_cpp_tokiter_dump, cpp); # endif #endif cpp->index = 0; cpp->expanded = 0; + cpp->skip = 0; + cpp->seen = 0; + cpp->level = 0; if (cpp->tokens.next) { free(cpp->tokens.iter); @@ -108,9 +111,9 @@ bool psi_cpp_tokiter_add_cur(struct psi_cpp *cpp) cpp->tokens.next = tokens; #if PSI_CPP_DEBUG - fprintf(stderr, "PSI: CPP add_cur -> index=%zu, iter.count=%zu, next.count=%zu ", - cpp->index, psi_plist_count(cpp->tokens.iter), psi_plist_count(cpp->tokens.next)); - psi_token_dump(2, cur); + PSI_DEBUG_PRINT(cpp->parser, "PSI: CPP add_cur -> index=%zu, iter.count=%zu, next.count=%zu ", + cpp->index, psi_plist_count(cpp->tokens.iter), psi_plist_count(cpp->tokens.next)); + PSI_DEBUG_DUMP(cpp->parser, psi_token_dump, cur); #endif return true; @@ -130,9 +133,9 @@ bool psi_cpp_tokiter_add(struct psi_cpp *cpp, struct psi_token *tok) cpp->tokens.next = tokens; #if PSI_CPP_DEBUG - fprintf(stderr, "PSI: CPP add -> index=%zu, iter.count=%zu, next.count=%zu ", + PSI_DEBUG_PRINT(cpp->parser, "PSI: CPP add -> index=%zu, iter.count=%zu, next.count=%zu ", cpp->index, psi_plist_count(cpp->tokens.iter), psi_plist_count(cpp->tokens.next)); - psi_token_dump(2, tok); + PSI_DEBUG_DUMP(cpp->parser, psi_token_dump, tok); #endif return true; @@ -154,7 +157,7 @@ bool psi_cpp_tokiter_add_range(struct psi_cpp *cpp, size_t num_eles, void **eles cpp->tokens.next = tokens; #if PSI_CPP_DEBUG - fprintf(stderr, "PSI: CPP add_range -> index=%zu, num_eles=%zu, iter.count=%zu, next.count=%zu\n", + PSI_DEBUG_PRINT(cpp->parser, "PSI: CPP add_range -> index=%zu, num_eles=%zu, iter.count=%zu, next.count=%zu\n", cpp->index, num_eles, psi_plist_count(cpp->tokens.iter), psi_plist_count(cpp->tokens.next)); #endif @@ -165,7 +168,7 @@ bool psi_cpp_tokiter_add_range(struct psi_cpp *cpp, size_t num_eles, void **eles void psi_cpp_tokiter_next(struct psi_cpp *cpp) { #if 0 && PSI_CPP_DEBUG - fprintf(stderr, "PSI: CPP next -> index=%zu -> index=%zu\n", + PSI_DEBUG_PRINT(cpp->parser, "PSI: CPP next -> index=%zu -> index=%zu\n", cpp->index, cpp->index+1); #endif ++cpp->index; @@ -174,7 +177,7 @@ void psi_cpp_tokiter_next(struct psi_cpp *cpp) bool psi_cpp_tokiter_valid(struct psi_cpp *cpp) { #if 0 && PSI_CPP_DEBUG - fprintf(stderr, "PSI: CPP valid -> index=%zu -> %d\n", + PSI_DEBUG_PRINT(cpp->parser, "PSI: CPP valid -> index=%zu -> %d\n", cpp->index, cpp->index < psi_plist_count(cpp->tokens.iter)); #endif return cpp->index < psi_plist_count(cpp->tokens.iter); @@ -185,8 +188,8 @@ bool psi_cpp_tokiter_del_prev(struct psi_cpp *cpp, bool free_token) struct psi_token *cur = NULL; #if PSI_CPP_DEBUG - fprintf(stderr, "PSI: CPP del_prev -> index=%zu, iter.count=%zu, next.count\n", - cpp->index, psi_plist_count(cpp->tokens.iter)); + PSI_DEBUG_PRINT(cpp->parser, "PSI: CPP del_prev -> index=%zu, iter.count=%zu, next.count=%zu\n", + cpp->index, psi_plist_count(cpp->tokens.iter), psi_plist_count(cpp->tokens.next)); #endif if (psi_plist_pop(cpp->tokens.next, NULL) && psi_plist_get(cpp->tokens.iter, cpp->index - 1, &cur)) { @@ -204,13 +207,13 @@ bool psi_cpp_tokiter_del_cur(struct psi_cpp *cpp, bool free_token) struct psi_token *cur = NULL; #if PSI_CPP_DEBUG - fprintf(stderr, "PSI: CPP del_cur -> index=%zu, iter.count=%zu, next.count=%zu ", + PSI_DEBUG_PRINT(cpp->parser, "PSI: CPP del_cur -> index=%zu, iter.count=%zu, next.count=%zu ", cpp->index, psi_plist_count(cpp->tokens.iter), psi_plist_count(cpp->tokens.next)); #endif if (psi_plist_get(cpp->tokens.iter, cpp->index, &cur)) { #if PSI_CPP_DEBUG - psi_token_dump(2, cur); + PSI_DEBUG_DUMP(cpp->parser, psi_token_dump, cur); #endif psi_plist_unset(cpp->tokens.iter, cpp->index); if (free_token && cur) { @@ -229,7 +232,7 @@ bool psi_cpp_tokiter_del_range(struct psi_cpp *cpp, size_t offset, size_t num_el size_t i; #if PSI_CPP_DEBUG - fprintf(stderr, "PSI: CPP del_range -> index=%zu, offset=%zu, num_eles=%zu, iter.count=%zu, next.count=%zu\n", + PSI_DEBUG_PRINT(cpp->parser, "PSI: CPP del_range -> index=%zu, offset=%zu, num_eles=%zu, iter.count=%zu, next.count=%zu\n", cpp->index, offset, num_eles, psi_plist_count(cpp->tokens.iter), psi_plist_count(cpp->tokens.next)); #endif @@ -238,8 +241,8 @@ bool psi_cpp_tokiter_del_range(struct psi_cpp *cpp, size_t offset, size_t num_el return false; } #if PSI_CPP_DEBUG - fprintf(stderr, "PSI: CPP del_range -> "); - psi_token_dump(2, ptr); + PSI_DEBUG_PRINT(cpp->parser, "PSI: CPP del_range -> "); + PSI_DEBUG_DUMP(cpp->parser, psi_token_dump, ptr); #endif psi_plist_unset(cpp->tokens.iter, i); if (free_tokens && ptr) { @@ -266,7 +269,7 @@ bool psi_cpp_tokiter_ins_range(struct psi_cpp *cpp, size_t num_eles, void **eles cpp->tokens.iter = tokens; #if PSI_CPP_DEBUG - fprintf(stderr, "PSI: CPP ins_range -> index=%zu, num_eles=%zu, iter.count=%zu, next.count=%zu\n", + PSI_DEBUG_PRINT(cpp->parser, "PSI: CPP ins_range -> index=%zu, num_eles=%zu, iter.count=%zu, next.count=%zu\n", cpp->index, num_eles, psi_plist_count(cpp->tokens.iter), psi_plist_count(cpp->tokens.next)); #endif @@ -284,67 +287,100 @@ bool psi_cpp_tokiter_defined(struct psi_cpp *cpp) return false; } -static size_t psi_cpp_tokiter_expand_tokens(struct psi_cpp *cpp, +static inline size_t psi_cpp_tokiter_expand_tokens(struct psi_cpp *cpp, struct psi_token *target, struct psi_plist *tokens) { - if (tokens && psi_plist_count(tokens)) { - size_t i = 0, n = 0; - bool stringify = false, paste = false; - struct psi_token *tok, **exp_tokens = pecalloc(psi_plist_count(tokens), sizeof(*exp_tokens), 1); + size_t i = 0, n = 0; + bool stringify = false, paste = false; + struct psi_token *tok; + struct psi_plist *exp; - while (psi_plist_get(tokens, i++, &tok)) { - struct psi_token *new_tok; + if (!psi_plist_count(tokens)) { + return 0; + } - if (tok->type == PSI_T_EOL) { - continue; - } - if (tok->type == PSI_T_HASH) { - stringify = true; - continue; - } - if (tok->type == PSI_T_CPP_PASTE) { - paste = true; - continue; - } + exp = psi_plist_init(NULL); + while (psi_plist_get(tokens, i++, &tok)) { + struct psi_token *new_tok; + + if (tok->type == PSI_T_EOL) { + continue; + } + if (tok->type == PSI_T_HASH) { + stringify = true; + continue; + } + if (tok->type == PSI_T_CPP_PASTE) { + paste = true; + continue; + } - if (paste && n > 0 && exp_tokens[n - 1]) { - struct psi_token *tmp_tok, *old_tok = exp_tokens[n - 1]; + if (paste && psi_plist_count(exp)) { + struct psi_token *old_tok; + struct psi_parser_input *toscan; - tmp_tok = psi_token_init(old_tok->type, "", 0, - target->col, target->line, - target->file ? target->file : zend_empty_string); + psi_plist_pop(exp, &old_tok); + new_tok = psi_token_cat(NULL, 2, old_tok, tok); - new_tok = psi_token_cat(NULL, 3, tmp_tok, old_tok, tok); - psi_token_free(&old_tok); - psi_token_free(&tmp_tok); + /* reclassify token(s) */ + if ((toscan = psi_parser_open_string(cpp->parser, new_tok->text->val, new_tok->text->len))) { + struct psi_plist *scanned; - exp_tokens[n - 1] = new_tok; - } else { - new_tok = psi_token_init(stringify ? PSI_T_QUOTED_STRING : tok->type, - tok->text->val, tok->text->len, target->col, target->line, - target->file ?: zend_empty_string); + scanned = psi_parser_scan(cpp->parser, toscan); + if (psi_plist_count(scanned)) { + size_t i = 0; + struct psi_token *tmp_tok; + + exp = psi_plist_add_r(exp, psi_plist_count(scanned), psi_plist_eles(scanned)); - exp_tokens[n++] = new_tok; + /* fix meta info */ + while (psi_plist_get(scanned, i++, &tmp_tok)) { + zend_string_release(tmp_tok->file); + tmp_tok->file = zend_string_copy(new_tok->file); + tmp_tok->line = new_tok->line; + tmp_tok->col = new_tok->col; + } + + psi_token_free(&new_tok); + psi_plist_top(scanned, &new_tok); + } else { + exp = psi_plist_add(exp, &new_tok); + } + if (scanned) { + free(scanned); + } + psi_parser_input_free(&toscan); + } else { + exp = psi_plist_add(exp, &new_tok); } -#if PSI_CPP_DEBUG - fprintf(stderr, "PSI: CPP expand > "); - psi_token_dump(2, tok); -#endif + psi_token_free(&old_tok); + } else { + new_tok = psi_token_init(stringify ? PSI_T_QUOTED_STRING : tok->type, + tok->text->val, tok->text->len, target->col, target->line, + target->file ?: zend_empty_string); - paste = false; - stringify = false; + exp = psi_plist_add(exp, &new_tok); } - psi_cpp_tokiter_ins_range(cpp, n, (void *) exp_tokens); - free(exp_tokens); - return n; - } else { - return 0; +#if PSI_CPP_DEBUG + PSI_DEBUG_PRINT(cpp->parser, "PSI: CPP expand > "); + PSI_DEBUG_DUMP(cpp->parser, psi_token_dump, new_tok); +#endif + + paste = false; + stringify = false; } + + n = psi_plist_count(exp); + psi_cpp_tokiter_ins_range(cpp, n, psi_plist_eles(exp)); + free(exp); + + return n; } -static void psi_cpp_tokiter_free_call_tokens(struct psi_plist **arg_tokens_list, size_t arg_count, bool free_tokens) +static inline void psi_cpp_tokiter_free_call_tokens( + struct psi_plist **arg_tokens_list, size_t arg_count, bool free_tokens) { size_t i; @@ -363,10 +399,10 @@ static void psi_cpp_tokiter_free_call_tokens(struct psi_plist **arg_tokens_list, free(arg_tokens_list); } -static struct psi_plist **psi_cpp_tokiter_read_call_tokens( +static inline struct psi_plist **psi_cpp_tokiter_read_call_tokens( struct psi_cpp *cpp, size_t arg_count) { - size_t arg_index = 0, lparens = 1, rparens = 0; + size_t arg_index = 0, lparens = 1, rparens = 0, start = psi_cpp_tokiter_index(cpp); struct psi_plist **arg_tokens = pecalloc(arg_count, sizeof(*arg_tokens), 1); struct psi_plist *free_tokens = psi_plist_init((psi_plist_dtor) psi_token_free); struct psi_token *tok; @@ -424,7 +460,10 @@ static struct psi_plist **psi_cpp_tokiter_read_call_tokens( } } + /* ditch arg tokens */ + psi_cpp_tokiter_del_range(cpp, start, psi_cpp_tokiter_index(cpp) - start + 1, false); psi_plist_free(free_tokens); + return arg_tokens; fail: @@ -432,23 +471,31 @@ fail: return NULL; } -static void psi_cpp_tokiter_expand_call_tokens(struct psi_cpp *cpp, +static inline void psi_cpp_tokiter_expand_call_tokens(struct psi_cpp *cpp, struct psi_token *target, struct psi_cpp_macro_decl *macro, struct psi_plist **arg_tokens_list) { size_t i; struct psi_token *tok; struct psi_plist *tokens = psi_plist_init(NULL); + bool prescan = true; for (i = 0; psi_plist_get(macro->tokens, i, &tok); ++i) { struct psi_plist *arg_tokens = NULL; - if (tok->type == PSI_T_NAME) { + if (tok->type == PSI_T_HASH || tok->type == PSI_T_CPP_PASTE) { + prescan = false; + } else if (tok->type == PSI_T_NAME) { size_t s; struct psi_token *arg_name; for (s = 0; psi_plist_get(macro->sig, s, &arg_name); ++s) { if (zend_string_equals(arg_name->text, tok->text)) { + if (prescan) { + bool processed = psi_cpp_process(cpp, &arg_tokens_list[s]); + + assert(processed); + } arg_tokens = arg_tokens_list[s]; break; } @@ -466,36 +513,92 @@ static void psi_cpp_tokiter_expand_call_tokens(struct psi_cpp *cpp, psi_plist_free(tokens); } -static bool psi_cpp_tokiter_expand_call(struct psi_cpp *cpp, +static inline bool psi_cpp_tokiter_expand_call(struct psi_cpp *cpp, struct psi_token *target, struct psi_cpp_macro_decl *macro) { /* function-like macro * #define FOO(a,b) a>b // macro->sig == {a, b}, macro->tokens = {a, >, b} * # if FOO(1,2) // expands to if 1 > 2 */ - size_t start = psi_cpp_tokiter_index(cpp); + size_t start = psi_cpp_tokiter_index(cpp), argc = psi_plist_count(macro->sig); struct psi_plist **arg_tokens_list; + /* read in tokens, until we have balanced parens */ - arg_tokens_list = psi_cpp_tokiter_read_call_tokens(cpp, psi_plist_count(macro->sig)); + arg_tokens_list = psi_cpp_tokiter_read_call_tokens(cpp, argc); if (!arg_tokens_list) { psi_cpp_tokiter_seek(cpp, start); return false; } - /* ditch arg tokens */ - psi_cpp_tokiter_del_range(cpp, start, psi_cpp_tokiter_index(cpp) - start + 1, false); - /* insert and expand macro tokens */ psi_cpp_tokiter_expand_call_tokens(cpp, target, macro, arg_tokens_list); - psi_cpp_tokiter_free_call_tokens(arg_tokens_list, psi_plist_count(macro->sig), true); + psi_cpp_tokiter_free_call_tokens(arg_tokens_list, argc, true); psi_token_free(&target); ++cpp->expanded; return true; } -static bool psi_cpp_tokiter_expand_def(struct psi_cpp *cpp, +static inline void psi_cpp_tokiter_expand_builtin_tokens(struct psi_cpp *cpp, + struct psi_token *target, struct psi_builtin *builtin, + struct psi_plist **arg_tokens_list) +{ + size_t s; + struct psi_plist *res = NULL; + size_t argc = psi_plist_count(builtin->decl->sig); + + /* prescan */ + for (s = 0; s < argc; ++s) { + bool processed = psi_cpp_process(cpp, &arg_tokens_list[s]); + assert(processed); + } + + /* insert and expand macro tokens */ + if (!builtin->func(cpp, target, arg_tokens_list, &res)) { + struct psi_token *zero = psi_token_init(PSI_T_NUMBER, "0", 1, + target->col, target->line, target->file); + psi_cpp_tokiter_ins_range(cpp, 1, (void *) &zero); + } else if (!res) { + struct psi_token *one = psi_token_init(PSI_T_NUMBER, "1", 1, + target->col, target->line, target->file); + psi_cpp_tokiter_ins_range(cpp, 1, (void *) &one); + } else { + psi_cpp_tokiter_expand_tokens(cpp, target, res); + psi_plist_free(res); + } +} + +static inline bool psi_cpp_tokiter_expand_builtin(struct psi_cpp *cpp, + struct psi_token *target, struct psi_builtin *builtin) +{ + size_t start = psi_cpp_tokiter_index(cpp), argc = 0; + struct psi_plist **arg_tokens_list = NULL; + + if (builtin->decl->sig) { + argc = psi_plist_count(builtin->decl->sig); + /* read in tokens, until we have balanced parens */ + arg_tokens_list = psi_cpp_tokiter_read_call_tokens(cpp, argc); + if (!arg_tokens_list) { + psi_cpp_tokiter_seek(cpp, start); + return false; + } + } else { + psi_cpp_tokiter_next(cpp); + } + + psi_cpp_tokiter_expand_builtin_tokens(cpp, target, builtin, arg_tokens_list); + if (arg_tokens_list) { + psi_cpp_tokiter_free_call_tokens(arg_tokens_list, argc, true); + } + + psi_token_free(&target); + ++cpp->expanded; + return true; +} + + +static inline bool psi_cpp_tokiter_expand_def(struct psi_cpp *cpp, struct psi_token *target, struct psi_cpp_macro_decl *macro) { /* delete current token from stream */ @@ -514,35 +617,56 @@ static inline int psi_cpp_tokiter_expand_cmp(struct psi_token *t, if (psi_plist_count(m->tokens) == 1) { struct psi_token *r; - psi_plist_get(m->tokens, 0, &r); - - return !zend_string_equals(r->text, t->text); + if (psi_plist_get(m->tokens, 0, &r) && r->text) { + return !zend_string_equals(r->text, t->text); + } } return -1; } +static inline bool psi_cpp_tokiter_expand_decl(struct psi_cpp *cpp, + struct psi_token *target, struct psi_cpp_macro_decl *macro) +{ + if (!macro) { + return false; + } + + /* don't expand itself */ + if (macro->token == target) { + return false; + } + + if (macro->sig) { + return psi_cpp_tokiter_expand_call(cpp, target, macro); + } else if (psi_cpp_tokiter_expand_cmp(target, macro)) { + return psi_cpp_tokiter_expand_def(cpp, target, macro); + } else { + return false; + } +} + bool psi_cpp_tokiter_expand(struct psi_cpp *cpp) { - if (psi_cpp_tokiter_valid(cpp)) { - struct psi_token *current = psi_cpp_tokiter_current(cpp); + struct psi_token *current; - if (current) { - struct psi_cpp_macro_decl *macro = zend_hash_find_ptr( - &cpp->defs, current->text); + if (!psi_cpp_tokiter_valid(cpp)) { + return false; + } - /* don't expand itself */ - if (macro && macro->token != current) { + current = psi_cpp_tokiter_current(cpp); + if (!current) { + return false; + } #if PSI_CPP_DEBUG - fprintf(stderr, "PSI: CPP expand < "); - psi_token_dump(2, current); + PSI_DEBUG_PRINT(cpp->parser, "PSI: CPP expand < "); + PSI_DEBUG_DUMP(cpp->parser, psi_token_dump, current); #endif - if (macro->sig) { - return psi_cpp_tokiter_expand_call(cpp, current, macro); - } else if (psi_cpp_tokiter_expand_cmp(current, macro)) { - return psi_cpp_tokiter_expand_def(cpp, current, macro); - } - } - } + + if (psi_builtin_exists(current->text)) { + return psi_cpp_tokiter_expand_builtin(cpp, current, + psi_builtin_get(current->text)); + } else { + return psi_cpp_tokiter_expand_decl(cpp, current, + zend_hash_find_ptr(&cpp->defs, current->text)); } - return false; } diff --git a/src/data.c b/src/data.c index b1fbc49..0fb9816 100644 --- a/src/data.c +++ b/src/data.c @@ -27,10 +27,66 @@ #include "data.h" #include "php_globals.h" +#include "php_network.h" #include #include +static void psi_data_ctor_internal(struct psi_data *data, + psi_error_cb error, unsigned flags) +{ + data->error = error; + data->flags = flags; + + if (data->flags & PSI_DEBUG) { + char *debug = getenv("PSI_DEBUG"); + + if (debug) { + int fd = -1; + char *addr = strstr(debug, "://"); + + if (addr) { + addr += 3; + } + if (addr && *addr) { + struct sockaddr_storage sa = {0}; + socklen_t ss = 0; + int rc = php_network_parse_network_address_with_port(addr, + strlen(addr), (struct sockaddr *) &sa, &ss); + + if (SUCCESS == rc) { + int styp = strncmp(debug, "udp:", 4) + ? SOCK_STREAM + : SOCK_DGRAM; + int sfam = sa.ss_family == AF_INET6 + ? ((struct sockaddr_in6 *) &sa)->sin6_family + : ((struct sockaddr_in *) &sa)->sin_family; + + fd = socket(sfam, styp, 0); + + if (fd > 0 && 0 != connect(fd, (struct sockaddr *) &sa, ss)) { + perror(debug); + close(fd); + fd = -1; + } + } + } else if (!strcmp(debug, "stdout")) { + fd = STDOUT_FILENO; + } else if (!strcmp(debug, "stderr")) { + fd = STDERR_FILENO; + } else if (!(fd = atoi(debug))) { + fd = open(debug, O_WRONLY|O_APPEND|O_CREAT|O_CLOEXEC, 0664); + } + + if (fd > 0) { + data->debug_fd = fd; + } else { + data->debug_fd = STDERR_FILENO; + } + } + } +} + struct psi_data *psi_data_ctor_with_dtors(struct psi_data *data, psi_error_cb error, unsigned flags) { @@ -38,8 +94,8 @@ struct psi_data *psi_data_ctor_with_dtors(struct psi_data *data, data = pecalloc(1, sizeof(*data), 1); } - data->error = error; - data->flags = flags; + psi_data_ctor_internal(data, error, flags); + if (!data->file.libnames) { data->file.libnames = psi_plist_init((psi_plist_dtor) psi_names_free); } @@ -81,8 +137,7 @@ struct psi_data *psi_data_ctor(struct psi_data *data, psi_error_cb error, data = pecalloc(1, sizeof(*data), 1); } - data->error = error; - data->flags = flags; + psi_data_ctor_internal(data, error, flags); if (!data->file.libnames) { data->file.libnames = psi_plist_init(NULL); @@ -130,6 +185,9 @@ struct psi_data *psi_data_exchange(struct psi_data *dest, struct psi_data *src) void psi_data_dtor(struct psi_data *data) { + if (data->debug_fd) { + close(data->debug_fd); + } if (data->consts) { psi_plist_free(data->consts); } @@ -158,27 +216,27 @@ void psi_data_dtor(struct psi_data *data) psi_decl_file_dtor(&data->file); } -void psi_data_dump(int fd, struct psi_data *D) +void psi_data_dump(struct psi_dump *dump, struct psi_data *D) { size_t i = 0; char *libname; if (D->file.filename) { - dprintf(fd, "// filename=%s (%u errors)\n", D->file.filename->val, D->errors); + PSI_DUMP(dump, "// filename=%s (%u errors)\n", D->file.filename->val, D->errors); } while (psi_plist_get(D->file.libnames, i++, &libname)) { - dprintf(fd, "lib \"%s\";\n", libname); + PSI_DUMP(dump, "lib \"%s\";\n", libname); } if (psi_plist_count(D->types)) { size_t i = 0; struct psi_decl_arg *def; while (psi_plist_get(D->types, i++, &def)) { - dprintf(fd, "typedef "); - psi_decl_arg_dump(fd, def, 0); - dprintf(fd, ";\n"); + PSI_DUMP(dump, "typedef "); + psi_decl_arg_dump(dump, def, 0); + PSI_DUMP(dump, ";\n"); } - dprintf(fd, "\n"); + PSI_DUMP(dump, "\n"); } if (psi_plist_count(D->unions)) { size_t i = 0; @@ -187,10 +245,10 @@ void psi_data_dump(int fd, struct psi_data *D) while (psi_plist_get(D->unions, i++, &unn)) { if (!psi_decl_type_is_anon(unn->name, "union")) { psi_decl_union_dump(fd, unn); - dprintf(fd, "\n"); + PSI_DUMP(dump, "\n"); } } - dprintf(fd, "\n"); + PSI_DUMP(dump, "\n"); } if (psi_plist_count(D->structs)) { size_t i = 0; @@ -198,11 +256,11 @@ void psi_data_dump(int fd, struct psi_data *D) while (psi_plist_get(D->structs, i++, &strct)) { if (!psi_decl_type_is_anon(strct->name, "struct")) { - psi_decl_struct_dump(fd, strct); - dprintf(fd, "\n"); + psi_decl_struct_dump(dump, strct); + PSI_DUMP(dump, "\n"); } } - dprintf(fd, "\n"); + PSI_DUMP(dump, "\n"); } if (psi_plist_count(D->enums)) { size_t i = 0; @@ -210,21 +268,21 @@ void psi_data_dump(int fd, struct psi_data *D) while (psi_plist_get(D->enums, i++, &enm)) { if (!psi_decl_type_is_anon(enm->name, "enum")) { - psi_decl_enum_dump(fd, enm, 0); - dprintf(fd, "\n"); + psi_decl_enum_dump(dump, enm, 0); + PSI_DUMP(dump, "\n"); } } - dprintf(fd, "\n"); + PSI_DUMP(dump, "\n"); } if (psi_plist_count(D->consts)) { size_t i = 0; struct psi_const *c; while (psi_plist_get(D->consts, i++, &c)) { - psi_const_dump(fd, c); - dprintf(fd, "\n"); + psi_const_dump(dump, c); + PSI_DUMP(dump, "\n"); } - dprintf(fd, "\n"); + PSI_DUMP(dump, "\n"); } if (psi_plist_count(D->decls)) { size_t i = 0; @@ -232,33 +290,33 @@ void psi_data_dump(int fd, struct psi_data *D) while (psi_plist_get(D->decls, i++, &decl)) { if (decl->extvar) { - dprintf(fd, "/* extvar accessor\n"); + PSI_DUMP(dump, "/* extvar accessor\n"); } - psi_decl_dump(fd, decl); - dprintf(fd, "\n"); + psi_decl_dump(dump, decl); + PSI_DUMP(dump, "\n"); if (decl->extvar) { - dprintf(fd, " extvar accessor */\n"); + PSI_DUMP(dump, " extvar accessor */\n"); } } - dprintf(fd, "\n"); + PSI_DUMP(dump, "\n"); } if (psi_plist_count(D->vars)) { size_t i = 0; struct psi_decl_extvar *evar; while (psi_plist_get(D->vars, i++, &evar)) { - psi_decl_extvar_dump(fd, evar); + psi_decl_extvar_dump(dump, evar); } - dprintf(fd, "\n"); + PSI_DUMP(dump, "\n"); } if (psi_plist_count(D->impls)) { size_t i = 0; struct psi_impl *impl; while (psi_plist_get(D->impls, i++, &impl)) { - psi_impl_dump(fd, impl); - dprintf(fd, "\n"); + psi_impl_dump(dump, impl); + PSI_DUMP(dump, "\n"); } - dprintf(fd, "\n"); + PSI_DUMP(dump, "\n"); } } diff --git a/src/data.h b/src/data.h index 964b468..1d8414f 100644 --- a/src/data.h +++ b/src/data.h @@ -35,13 +35,65 @@ #define PSI_SILENT 0x2 #include +#include -#define PSI_DEBUG_PRINT(ctx, msg, ...) do { \ +#ifndef RTLD_NEXT +# define RTLD_NEXT ((void *) -1l) +#endif +#ifndef RTLD_DEFAULT +# define RTLD_DEFAULT ((void *) 0) +#endif + +static inline void *psi_dlsym(struct psi_plist *dllist, const char *name, const char *redir) +{ + void *dl, *sym = NULL; + const char *test = redir ?: name; + +again: + if (dllist) { + size_t i = 0; + + while (!sym && psi_plist_get(dllist, i++, &dl)) { + sym = dlsym(dl, test); + } + } + if (!sym) { + sym = dlsym(RTLD_DEFAULT, test); + } + if (!sym && test == redir) { + test = name; + goto again; + } + + return sym; +} + +#define PSI_DEBUG_PRINT(ctx, ...) do { \ if ((ctx) && (PSI_DATA(ctx)->flags & PSI_DEBUG)) { \ - fprintf(stderr, msg, __VA_ARGS__); \ + dprintf(PSI_DATA(ctx)->debug_fd, __VA_ARGS__); \ } \ } while(0) +#define PSI_DEBUG_PRINTV(ctx, msg, argv) do { \ + if ((ctx) && (PSI_DATA(ctx)->flags & PSI_DEBUG)) { \ + vdprintf(PSI_DATA(ctx)->debug_fd, msg, argv); \ + } \ +} while(0) +#define PSI_DEBUG_DUMP(ctx, dump_func, ...) do { \ + if ((ctx) && (PSI_DATA(ctx)->flags & PSI_DEBUG)) { \ + dump_func(PSI_DATA(ctx)->debug_fd, __VA_ARGS__); \ + } \ +} while (0) +union psi_dump_arg { + void *hn; + int fd; +}; +typedef void (*psi_dump_cb)(union psi_dump_arg, const char *msg, ...); +struct psi_dump { + union psi_dump_arg ctx; + psi_dump_cb fun; +}; +#define PSI_DUMP(dump, ...) (dump)->fun((dump)->ctx, __VA_ARGS__) #define PSI_DATA(D) ((struct psi_data *) (D)) @@ -58,7 +110,8 @@ psi_error_cb error; \ char last_error[0x1000]; \ unsigned errors; \ - unsigned flags + unsigned flags; \ + int debug_fd struct psi_data { PSI_DATA_MEMBERS; diff --git a/src/error.c b/src/error.c index 486867b..af336a2 100644 --- a/src/error.c +++ b/src/error.c @@ -71,6 +71,7 @@ void psi_error_wrapper(struct psi_data *context, struct psi_token *t, int type, va_start(argv, msg); psi_verror(type, fn, ln, msg, argv); + PSI_DEBUG_PRINTV(context, msg, argv); va_end(argv); if (context) { diff --git a/src/error.h b/src/error.h index c155d39..ebbd60b 100644 --- a/src/error.h +++ b/src/error.h @@ -41,4 +41,9 @@ void psi_error_wrapper(struct psi_data *context, struct psi_token *t, int type, void psi_error(int type, const char *fn, unsigned ln, const char *msg, ...); void psi_verror(int type, const char *fn, unsigned ln, const char *msg, va_list argv); +union psi_debug_ctx { + FILE *stdio; + int socket; +}; + #endif /* PSI_ERROR_H */ diff --git a/src/module.c b/src/module.c index 9de278f..0edd74f 100644 --- a/src/module.c +++ b/src/module.c @@ -217,7 +217,7 @@ static PHP_FUNCTION(psi_validate) psi_parser_parse(&P, I); psi_data_ctor(&D, P.error, P.flags); psi_validate_scope_ctor(&S); - S.defs = &P.preproc->defs; + S.cpp = P.preproc; RETVAL_BOOL(psi_validate(&S, &D, PSI_DATA(&P))); @@ -269,7 +269,7 @@ static PHP_FUNCTION(psi_validate_string) psi_parser_parse(&P, I); psi_data_ctor(&D, P.error, P.flags); psi_validate_scope_ctor(&S); - S.defs = &P.preproc->defs; + S.cpp = P.preproc; RETVAL_BOOL(psi_validate(&S, &D, PSI_DATA(&P))); @@ -286,6 +286,7 @@ static PHP_FUNCTION(psi_validate_string) } PHP_MINIT_FUNCTION(psi_cpp); +PHP_MINIT_FUNCTION(psi_builtin); PHP_MINIT_FUNCTION(psi_context); static PHP_MINIT_FUNCTION(psi) { @@ -305,6 +306,9 @@ static PHP_MINIT_FUNCTION(psi) psi_object_handlers.free_obj = psi_object_free; psi_object_handlers.clone_obj = NULL; + if (SUCCESS != PHP_MINIT(psi_builtin)(type, module_number)) { + return FAILURE; + } if (SUCCESS != PHP_MINIT(psi_cpp)(type, module_number)) { return FAILURE; } @@ -316,11 +320,13 @@ static PHP_MINIT_FUNCTION(psi) } PHP_MSHUTDOWN_FUNCTION(psi_cpp); +PHP_MSHUTDOWN_FUNCTION(psi_builtin); PHP_MSHUTDOWN_FUNCTION(psi_context); static PHP_MSHUTDOWN_FUNCTION(psi) { PHP_MSHUTDOWN(psi_context)(type, module_number); PHP_MSHUTDOWN(psi_cpp)(type, module_number); + PHP_MSHUTDOWN(psi_builtin)(type, module_number); UNREGISTER_INI_ENTRIES(); diff --git a/src/parser.c b/src/parser.c index 50bfa31..e747ed2 100644 --- a/src/parser.c +++ b/src/parser.c @@ -1,5 +1,3 @@ -/* Generated by re2c 1.1.1 on Fri Nov 2 10:19:25 2018 */ -#line 1 "src/parser.re" /******************************************************************************* Copyright (c) 2016, Michael Wallner . All rights reserved. @@ -35,12 +33,6 @@ #include "parser.h" -#define YYMAXFILL 15 - -#ifndef YYMAXFILL -# define YYMAXFILL 256 -#endif - struct psi_parser *psi_parser_init(struct psi_parser *P, psi_error_cb error, unsigned flags) { if (!P) { @@ -70,11 +62,11 @@ struct psi_parser_input *psi_parser_open_file(struct psi_parser *P, const char * return NULL; } - if (!(fb = pemalloc(sizeof(*fb) + sb.st_size + YYMAXFILL, 1))) { + if (!(fb = pemalloc(sizeof(*fb) + sb.st_size + psi_parser_maxfill(), 1))) { if (report_errors) { P->error(PSI_DATA(P), NULL, PSI_WARNING, "Could not allocate %zu bytes for reading '%s': %s", - sb.st_size + YYMAXFILL, filename, strerror(errno)); + sb.st_size + psi_parser_maxfill(), filename, strerror(errno)); } return NULL; } @@ -95,10 +87,13 @@ struct psi_parser_input *psi_parser_open_file(struct psi_parser *P, const char * if (report_errors) { P->error(PSI_DATA(P), NULL, PSI_WARNING, "Could not read %zu bytes from '%s': %s", - sb.st_size + YYMAXFILL, filename, strerror(errno)); + sb.st_size + psi_parser_maxfill(), filename, strerror(errno)); } return NULL; } + fclose(fp); + + memset(fb->buffer + sb.st_size, 0, psi_parser_maxfill()); fb->length = sb.st_size; fb->file = zend_string_init_interned(filename, strlen(filename), 1); @@ -110,15 +105,15 @@ struct psi_parser_input *psi_parser_open_string(struct psi_parser *P, const char { struct psi_parser_input *sb; - if (!(sb = pemalloc(sizeof(*sb) + length + YYMAXFILL, 1))) { + if (!(sb = pemalloc(sizeof(*sb) + length + psi_parser_maxfill(), 1))) { P->error(PSI_DATA(P), NULL, PSI_WARNING, "Could not allocate %zu bytes: %s", - length + YYMAXFILL, strerror(errno)); + length + psi_parser_maxfill(), strerror(errno)); return NULL; } memcpy(sb->buffer, string, length); - memset(sb->buffer + length, 0, YYMAXFILL); + memset(sb->buffer + length, 0, psi_parser_maxfill()); sb->length = length; sb->file = zend_string_init_interned("", strlen(""), 1); @@ -142,6 +137,38 @@ bool psi_parser_process(struct psi_parser *P, struct psi_plist *tokens, size_t * return true; } +static inline zend_string *macro_to_constant(struct psi_parser *parser, + zend_string *name, struct psi_validate_scope *scope) +{ + smart_str str = {0}; + + size_t i = 0; + struct psi_token *tok; + + smart_str_append_printf(&str, "\nconst psi\\%s = ", name->val); + if (scope->macro->exp) { + impl_val res = {0}; + token_t typ = psi_num_exp_exec(scope->macro->exp, &res, NULL, scope->cpp); + + switch (typ) { + CASE_IMPLVAL_NUM_PRINTF(smart_str_append_printf, &str, res); + default: + assert(0); + } + } else while (psi_plist_get(scope->macro->tokens, i++, &tok)) { + if (tok->type == PSI_T_QUOTED_STRING) { + smart_str_appendc(&str, '"'); + } + smart_str_append(&str, tok->text); + if (tok->type == PSI_T_QUOTED_STRING) { + smart_str_appendc(&str, '"'); + } + smart_str_appendc(&str, ' '); + } + smart_str_appendl(&str, ";\n", 2); + return smart_str_extract(&str); +} + void psi_parser_postprocess(struct psi_parser *P) { unsigned flags; @@ -149,64 +176,57 @@ void psi_parser_postprocess(struct psi_parser *P) struct psi_validate_scope scope = {0}; psi_validate_scope_ctor(&scope); - scope.defs = &P->preproc->defs; + scope.cpp = P->preproc; flags = P->flags; - P->flags |= PSI_SILENT; + //P->flags |= PSI_SILENT; - /* register const macros */ ZEND_HASH_FOREACH_STR_KEY_PTR(&P->preproc->defs, name, scope.macro) { - if (scope.macro->sig) { - } else if (scope.macro->exp) { - if (psi_num_exp_validate(PSI_DATA(P), scope.macro->exp, &scope)) { - struct psi_impl_type *type; - struct psi_impl_def_val *def; - struct psi_const *cnst; - struct psi_num_exp *num; - smart_str ns_name = {0}; - zend_string *name_str, *type_str; + bool parsed; + size_t processed = 0; + struct psi_plist *scanned, *preproc; + struct psi_parser_input *I; + zend_string *cnst; - smart_str_appendl_ex(&ns_name, ZEND_STRL("psi\\"), 1); - smart_str_append_ex(&ns_name, name, 1); - name_str = smart_str_extract(&ns_name); - type_str = zend_string_init_interned(ZEND_STRL(""), 1); + if (scope.macro->sig) { + continue; + } else if (!scope.macro->exp) { + struct psi_token *tok; + if (psi_plist_count(scope.macro->tokens) != 1) { + continue; + } else if (!psi_plist_get(scope.macro->tokens, 0, &tok)) { + continue; + } else if (tok->type != PSI_T_QUOTED_STRING) { + continue; + } + } else if (!psi_num_exp_validate(PSI_DATA(P), scope.macro->exp, &scope)) { + continue; + } - num = psi_num_exp_copy(scope.macro->exp); - def = psi_impl_def_val_init(PSI_T_NUMBER, num); - type = psi_impl_type_init(PSI_T_NUMBER, type_str); - cnst = psi_const_init(type, name_str, def); - P->consts = psi_plist_add(P->consts, &cnst); - zend_string_release(name_str); - zend_string_release(type_str); - } - } else { - if (psi_plist_count(scope.macro->tokens) == 1) { - struct psi_token *t; + cnst = macro_to_constant(P, name, &scope); + if (!cnst) { + continue; + } - if (psi_plist_get(scope.macro->tokens, 0, &t)) { - if (t->type == PSI_T_QUOTED_STRING) { - struct psi_impl_type *type; - struct psi_impl_def_val *def; - struct psi_const *cnst; - smart_str ns_name = {0}; - zend_string *name_str, *type_str; + I = psi_parser_open_string(P, ZSTR_VAL(cnst), ZSTR_LEN(cnst)); + zend_string_release(cnst); - smart_str_appendl_ex(&ns_name, ZEND_STRL("psi\\"), 1); - smart_str_append_ex(&ns_name, name, 1); - name_str = smart_str_extract(&ns_name); - type_str = zend_string_init_interned(ZEND_STRL("string"), 1); + if (!(scanned = psi_parser_scan(P, I))) { + psi_parser_input_free(&I); + continue; + } + psi_parser_input_free(&I); - type = psi_impl_type_init(PSI_T_STRING, type_str); - def = psi_impl_def_val_init(PSI_T_QUOTED_STRING, t->text); - cnst = psi_const_init(type, name_str, def); - P->consts = psi_plist_add(P->consts, &cnst); - zend_string_release(name_str); - zend_string_release(type_str); - } - } - } + if (!(preproc = psi_parser_preprocess(P, &scanned))) { + psi_plist_free(scanned); + continue; } + + parsed = psi_parser_process(P, preproc, &processed); + PSI_DEBUG_PRINT(PSI_DATA(P), "PSI: processed=%zu success=%d\n", + processed, (int) parsed); + psi_plist_free(preproc); } ZEND_HASH_FOREACH_END(); @@ -257,9982 +277,3 @@ void psi_parser_free(struct psi_parser **P) } } -#define NEWLINE() \ - eol = cur; \ - ++I->lines - -#define NEWTOKEN(t) \ - if (t == PSI_T_COMMENT || t == PSI_T_WHITESPACE) { \ - token = psi_token_init(t, "", 0, tok - eol + 1, I->lines, I->file); \ - } else { \ - token = psi_token_init(t, tok, cur - tok, tok - eol + 1, I->lines, I->file); \ - } \ - tokens = psi_plist_add(tokens, &token); \ - if (P->flags & PSI_DEBUG) { \ - fprintf(stderr, "PSI< "); \ - psi_token_dump(2, token); \ - } - - - - -struct psi_plist *psi_parser_scan(struct psi_parser *P, struct psi_parser_input *I) -{ - struct psi_plist *tokens; - struct psi_token *token; - const char *tok, *cur, *lim, *mrk, *eol, *ctxmrk; - unsigned parens; - bool escaped; - token_t char_width; - - PSI_DEBUG_PRINT(P, "PSI: scanning %s\n", I->file->val); - - tok = mrk = eol = cur = I->buffer; - lim = I->buffer + I->length; - I->lines = 1; - tokens = psi_plist_init((psi_plist_dtor) psi_token_free); - - start: ; - char_width = 1; - ctxmrk = NULL; - tok = cur; - - (void) ctxmrk; - - -#line 304 "src/parser.c" - { - unsigned char yych; - unsigned int yyaccept = 0; - if ((lim - cur) < 15) if (cur >= lim) goto done;; - yych = *cur; - switch (yych) { - case 0x00: - case 0x01: - case 0x02: - case 0x03: - case 0x04: - case 0x05: - case 0x06: - case 0x07: - case 0x08: - case '\v': - case 0x0E: - case 0x0F: - case 0x10: - case 0x11: - case 0x12: - case 0x13: - case 0x14: - case 0x15: - case 0x16: - case 0x17: - case 0x18: - case 0x19: - case 0x1A: - case 0x1B: - case 0x1C: - case 0x1D: - case 0x1E: - case 0x1F: - case '@': - case '`': - case 0x7F: goto yy2; - case '\t': - case '\f': - case ' ': goto yy4; - case '\n': - case '\r': goto yy7; - case '!': goto yy9; - case '"': goto yy11; - case '#': goto yy13; - case '$': goto yy15; - case '%': goto yy16; - case '&': goto yy18; - case '\'': goto yy20; - case '(': goto yy22; - case ')': goto yy24; - case '*': goto yy26; - case '+': goto yy28; - case ',': goto yy30; - case '-': goto yy32; - case '.': goto yy34; - case '/': goto yy36; - case '0': goto yy38; - case '1': - case '2': - case '3': - case '4': - case '5': - case '6': - case '7': - case '8': - case '9': goto yy40; - case ':': goto yy42; - case ';': goto yy44; - case '<': goto yy46; - case '=': goto yy48; - case '>': goto yy50; - case '?': goto yy52; - case 'A': - case 'a': goto yy54; - case 'B': goto yy56; - case 'C': goto yy57; - case 'D': goto yy58; - case 'E': goto yy59; - case 'F': goto yy60; - case 'I': goto yy63; - case 'L': goto yy64; - case 'M': - case 'm': goto yy65; - case 'N': - case 'n': goto yy66; - case 'O': - case 'o': goto yy67; - case 'P': goto yy68; - case 'R': - case 'r': goto yy69; - case 'S': goto yy70; - case 'T': goto yy71; - case 'U': goto yy72; - case 'W': - case 'w': goto yy73; - case 'Z': - case 'z': goto yy74; - case '[': goto yy75; - case '\\': goto yy77; - case ']': goto yy79; - case '^': goto yy81; - case '_': goto yy83; - case 'b': goto yy84; - case 'c': goto yy85; - case 'd': goto yy86; - case 'e': goto yy87; - case 'f': goto yy88; - case 'i': goto yy89; - case 'l': goto yy90; - case 'p': goto yy91; - case 's': goto yy92; - case 't': goto yy93; - case 'u': goto yy94; - case 'v': goto yy95; - case '{': goto yy96; - case '|': goto yy98; - case '}': goto yy100; - case '~': goto yy102; - default: goto yy61; - } -yy2: - ++cur; -yy3: -#line 469 "src/parser.re" - { NEWTOKEN(-2); goto error; } -#line 431 "src/parser.c" -yy4: - ++cur; - if (lim <= cur) if (cur >= lim) goto done;; - yych = *cur; - switch (yych) { - case '\t': - case '\f': - case ' ': goto yy4; - default: goto yy6; - } -yy6: -#line 468 "src/parser.re" - { NEWTOKEN(PSI_T_WHITESPACE); goto start; } -#line 445 "src/parser.c" -yy7: - ++cur; -#line 467 "src/parser.re" - { NEWTOKEN(PSI_T_EOL); NEWLINE(); goto start; } -#line 450 "src/parser.c" -yy9: - yych = *++cur; - switch (yych) { - case '=': goto yy104; - default: goto yy10; - } -yy10: -#line 370 "src/parser.re" - { NEWTOKEN(PSI_T_NOT); goto start; } -#line 460 "src/parser.c" -yy11: - ++cur; -#line 343 "src/parser.re" - { escaped = false; tok += 1; goto string; } -#line 465 "src/parser.c" -yy13: - yych = *++cur; - switch (yych) { - case '#': goto yy106; - default: goto yy14; - } -yy14: -#line 353 "src/parser.re" - { NEWTOKEN(PSI_T_HASH); goto start; } -#line 475 "src/parser.c" -yy15: - yych = *++cur; - switch (yych) { - case 0x00: - case 0x01: - case 0x02: - case 0x03: - case 0x04: - case 0x05: - case 0x06: - case 0x07: - case 0x08: - case '\t': - case '\n': - case '\v': - case '\f': - case '\r': - case 0x0E: - case 0x0F: - case 0x10: - case 0x11: - case 0x12: - case 0x13: - case 0x14: - case 0x15: - case 0x16: - case 0x17: - case 0x18: - case 0x19: - case 0x1A: - case 0x1B: - case 0x1C: - case 0x1D: - case 0x1E: - case 0x1F: - case ' ': - case '!': - case '"': - case '#': - case '$': - case '%': - case '&': - case '\'': - case '(': - case ')': - case '*': - case '+': - case ',': - case '-': - case '.': - case '/': - case ':': - case ';': - case '<': - case '=': - case '>': - case '?': - case '@': - case '[': - case '\\': - case ']': - case '^': - case '`': - case '{': - case '|': - case '}': - case '~': - case 0x7F: goto yy3; - default: goto yy108; - } -yy16: - ++cur; -#line 371 "src/parser.re" - { NEWTOKEN(PSI_T_MODULO); goto start; } -#line 550 "src/parser.c" -yy18: - yych = *++cur; - switch (yych) { - case '&': goto yy111; - default: goto yy19; - } -yy19: -#line 372 "src/parser.re" - { NEWTOKEN(PSI_T_AMPERSAND); goto start; } -#line 560 "src/parser.c" -yy20: - ++cur; -#line 342 "src/parser.re" - { escaped = false; tok += 1; goto character; } -#line 565 "src/parser.c" -yy22: - ++cur; -#line 354 "src/parser.re" - { NEWTOKEN(PSI_T_LPAREN); goto start; } -#line 570 "src/parser.c" -yy24: - ++cur; -#line 355 "src/parser.re" - { NEWTOKEN(PSI_T_RPAREN); goto start; } -#line 575 "src/parser.c" -yy26: - ++cur; -#line 368 "src/parser.re" - { NEWTOKEN(PSI_T_ASTERISK); goto start; } -#line 580 "src/parser.c" -yy28: - yyaccept = 0; - yych = *(mrk = ++cur); - switch (yych) { - case '.': goto yy113; - case '0': goto yy38; - case '1': - case '2': - case '3': - case '4': - case '5': - case '6': - case '7': - case '8': - case '9': goto yy40; - default: goto yy29; - } -yy29: -#line 373 "src/parser.re" - { NEWTOKEN(PSI_T_PLUS); goto start; } -#line 601 "src/parser.c" -yy30: - ++cur; -#line 357 "src/parser.re" - { NEWTOKEN(PSI_T_COMMA); goto start; } -#line 606 "src/parser.c" -yy32: - yyaccept = 1; - yych = *(mrk = ++cur); - switch (yych) { - case '.': goto yy113; - case '0': goto yy38; - case '1': - case '2': - case '3': - case '4': - case '5': - case '6': - case '7': - case '8': - case '9': goto yy40; - default: goto yy33; - } -yy33: -#line 374 "src/parser.re" - { NEWTOKEN(PSI_T_MINUS); goto start; } -#line 627 "src/parser.c" -yy34: - yyaccept = 2; - yych = *(mrk = ++cur); - switch (yych) { - case '.': goto yy115; - case '0': - case '1': - case '2': - case '3': - case '4': - case '5': - case '6': - case '7': - case '8': - case '9': goto yy116; - default: goto yy35; - } -yy35: -#line 385 "src/parser.re" - { NEWTOKEN(PSI_T_PERIOD); goto start; } -#line 648 "src/parser.c" -yy36: - yych = *++cur; - switch (yych) { - case '*': goto yy119; - case '/': goto yy121; - default: goto yy37; - } -yy37: -#line 375 "src/parser.re" - { NEWTOKEN(PSI_T_SLASH); goto start; } -#line 659 "src/parser.c" -yy38: - yyaccept = 3; - yych = *(mrk = ++cur); - switch (yych) { - case '.': goto yy123; - case 'E': - case 'e': goto yy127; - case 'X': - case 'x': goto yy132; - default: goto yy126; - } -yy39: -#line 329 "src/parser.re" - { NEWTOKEN(PSI_T_NUMBER); token->flags = PSI_NUMBER_INT; goto start; } -#line 674 "src/parser.c" -yy40: - yyaccept = 3; - mrk = ++cur; - if ((lim - cur) < 3) if (cur >= lim) goto done;; - yych = *cur; - switch (yych) { - case '.': goto yy123; - case '0': - case '1': - case '2': - case '3': - case '4': - case '5': - case '6': - case '7': - case '8': - case '9': goto yy40; - case 'E': - case 'e': goto yy127; - case 'L': - case 'l': goto yy128; - case 'U': - case 'u': goto yy130; - default: goto yy39; - } -yy42: - ++cur; -#line 358 "src/parser.re" - { NEWTOKEN(PSI_T_COLON); goto start; } -#line 704 "src/parser.c" -yy44: - ++cur; -#line 356 "src/parser.re" - { NEWTOKEN(PSI_T_EOS); goto start; } -#line 709 "src/parser.c" -yy46: - yyaccept = 4; - yych = *(mrk = ++cur); - switch (yych) { - case '-': - case '.': - case '/': - case '0': - case '1': - case '2': - case '3': - case '4': - case '5': - case '6': - case '7': - case '8': - case '9': - case 'A': - case 'B': - case 'C': - case 'D': - case 'E': - case 'F': - case 'G': - case 'H': - case 'I': - case 'J': - case 'K': - case 'L': - case 'M': - case 'N': - case 'O': - case 'P': - case 'Q': - case 'R': - case 'S': - case 'T': - case 'U': - case 'V': - case 'W': - case 'X': - case 'Y': - case 'Z': - case '_': - case 'a': - case 'b': - case 'c': - case 'd': - case 'e': - case 'f': - case 'g': - case 'h': - case 'i': - case 'j': - case 'k': - case 'l': - case 'm': - case 'n': - case 'o': - case 'p': - case 'q': - case 'r': - case 's': - case 't': - case 'u': - case 'v': - case 'w': - case 'x': - case 'y': - case 'z': goto yy133; - case '<': goto yy135; - case '=': goto yy137; - default: goto yy47; - } -yy47: -#line 383 "src/parser.re" - { NEWTOKEN(PSI_T_LCHEVR); goto start; } -#line 787 "src/parser.c" -yy48: - yych = *++cur; - switch (yych) { - case '=': goto yy139; - default: goto yy49; - } -yy49: -#line 367 "src/parser.re" - { NEWTOKEN(PSI_T_EQUALS); goto start; } -#line 797 "src/parser.c" -yy50: - yych = *++cur; - switch (yych) { - case '=': goto yy141; - case '>': goto yy143; - default: goto yy51; - } -yy51: -#line 384 "src/parser.re" - { NEWTOKEN(PSI_T_RCHEVR); goto start; } -#line 808 "src/parser.c" -yy52: - ++cur; -#line 387 "src/parser.re" - { NEWTOKEN(PSI_T_IIF); goto start; } -#line 813 "src/parser.c" -yy54: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 'R': - case 'r': goto yy145; - case 'S': - case 's': goto yy146; - default: goto yy62; - } -yy55: -#line 462 "src/parser.re" - { NEWTOKEN(PSI_T_NAME); goto start; } -#line 827 "src/parser.c" -yy56: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 'O': - case 'o': goto yy149; - default: goto yy62; - } -yy57: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 'A': - case 'a': goto yy150; - case 'O': - case 'o': goto yy151; - default: goto yy62; - } -yy58: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 'E': - case 'e': goto yy152; - default: goto yy62; - } -yy59: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 'L': - case 'l': goto yy153; - case 'N': - case 'n': goto yy154; - case 'R': - case 'r': goto yy155; - default: goto yy62; - } -yy60: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 'A': - case 'a': goto yy156; - case 'L': - case 'l': goto yy157; - case 'R': - case 'r': goto yy158; - case 'U': - case 'u': goto yy159; - default: goto yy62; - } -yy61: - yyaccept = 5; - mrk = ++cur; - if (lim <= cur) if (cur >= lim) goto done;; - yych = *cur; -yy62: - switch (yych) { - case 0x00: - case 0x01: - case 0x02: - case 0x03: - case 0x04: - case 0x05: - case 0x06: - case 0x07: - case 0x08: - case '\t': - case '\n': - case '\v': - case '\f': - case '\r': - case 0x0E: - case 0x0F: - case 0x10: - case 0x11: - case 0x12: - case 0x13: - case 0x14: - case 0x15: - case 0x16: - case 0x17: - case 0x18: - case 0x19: - case 0x1A: - case 0x1B: - case 0x1C: - case 0x1D: - case 0x1E: - case 0x1F: - case ' ': - case '!': - case '"': - case '#': - case '$': - case '%': - case '&': - case '\'': - case '(': - case ')': - case '*': - case '+': - case ',': - case '-': - case '.': - case '/': - case ':': - case ';': - case '<': - case '=': - case '>': - case '?': - case '@': - case '[': - case ']': - case '^': - case '`': - case '{': - case '|': - case '}': - case '~': - case 0x7F: goto yy55; - case '\\': goto yy148; - default: goto yy61; - } -yy63: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 'F': - case 'f': goto yy160; - case 'N': - case 'n': goto yy162; - default: goto yy62; - } -yy64: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case '"': - case '\'': goto yy163; - case 'E': - case 'e': goto yy165; - case 'I': - case 'i': goto yy166; - default: goto yy62; - } -yy65: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 'I': - case 'i': goto yy167; - default: goto yy62; - } -yy66: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 'U': - case 'u': goto yy168; - default: goto yy62; - } -yy67: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 'B': - case 'b': goto yy169; - default: goto yy62; - } -yy68: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 'A': - case 'a': goto yy170; - case 'O': - case 'o': goto yy171; - case 'R': - case 'r': goto yy172; - default: goto yy62; - } -yy69: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 'E': - case 'e': goto yy173; - default: goto yy62; - } -yy70: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 'E': - case 'e': goto yy174; - case 'T': - case 't': goto yy175; - default: goto yy62; - } -yy71: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 'E': - case 'e': goto yy176; - case 'O': - case 'o': goto yy177; - case 'R': - case 'r': goto yy178; - default: goto yy62; - } -yy72: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case '"': - case '\'': goto yy179; - case 'N': - case 'n': goto yy181; - default: goto yy62; - } -yy73: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 'A': - case 'a': goto yy182; - default: goto yy62; - } -yy74: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 'V': - case 'v': goto yy183; - default: goto yy62; - } -yy75: - ++cur; -#line 361 "src/parser.re" - { NEWTOKEN(PSI_T_LBRACKET); goto start; } -#line 1072 "src/parser.c" -yy77: - yych = *++cur; - switch (yych) { - case 0x00: - case 0x01: - case 0x02: - case 0x03: - case 0x04: - case 0x05: - case 0x06: - case 0x07: - case 0x08: - case '\t': - case '\n': - case '\v': - case '\f': - case '\r': - case 0x0E: - case 0x0F: - case 0x10: - case 0x11: - case 0x12: - case 0x13: - case 0x14: - case 0x15: - case 0x16: - case 0x17: - case 0x18: - case 0x19: - case 0x1A: - case 0x1B: - case 0x1C: - case 0x1D: - case 0x1E: - case 0x1F: - case ' ': - case '!': - case '"': - case '#': - case '$': - case '%': - case '&': - case '\'': - case '(': - case ')': - case '*': - case '+': - case ',': - case '-': - case '.': - case '/': - case '0': - case '1': - case '2': - case '3': - case '4': - case '5': - case '6': - case '7': - case '8': - case '9': - case ':': - case ';': - case '<': - case '=': - case '>': - case '?': - case '@': - case '[': - case '\\': - case ']': - case '^': - case '`': - case '{': - case '|': - case '}': - case '~': - case 0x7F: goto yy78; - default: goto yy184; - } -yy78: -#line 376 "src/parser.re" - { NEWTOKEN(PSI_T_BSLASH); goto start; } -#line 1156 "src/parser.c" -yy79: - ++cur; -#line 362 "src/parser.re" - { NEWTOKEN(PSI_T_RBRACKET); goto start; } -#line 1161 "src/parser.c" -yy81: - ++cur; -#line 378 "src/parser.re" - { NEWTOKEN(PSI_T_CARET); goto start; } -#line 1166 "src/parser.c" -yy83: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case '_': goto yy187; - default: goto yy62; - } -yy84: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 'O': goto yy149; - case 'o': goto yy188; - default: goto yy62; - } -yy85: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 'A': - case 'a': goto yy150; - case 'O': goto yy151; - case 'h': goto yy189; - case 'o': goto yy190; - default: goto yy62; - } -yy86: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 'E': - case 'e': goto yy152; - case 'o': goto yy191; - default: goto yy62; - } -yy87: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 'L': - case 'l': goto yy153; - case 'N': goto yy154; - case 'R': - case 'r': goto yy155; - case 'n': goto yy192; - default: goto yy62; - } -yy88: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 'A': - case 'a': goto yy156; - case 'L': goto yy157; - case 'R': - case 'r': goto yy158; - case 'U': - case 'u': goto yy159; - case 'l': goto yy193; - default: goto yy62; - } -yy89: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 'F': - case 'f': goto yy160; - case 'N': goto yy162; - case 'n': goto yy194; - default: goto yy62; - } -yy90: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 'E': - case 'e': goto yy165; - case 'I': goto yy166; - case 'i': goto yy195; - case 'o': goto yy196; - default: goto yy62; - } -yy91: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 'A': - case 'a': goto yy170; - case 'O': - case 'o': goto yy171; - case 'R': goto yy172; - case 'r': goto yy197; - default: goto yy62; - } -yy92: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 'E': - case 'e': goto yy174; - case 'T': goto yy175; - case 'h': goto yy198; - case 'i': goto yy199; - case 't': goto yy200; - default: goto yy62; - } -yy93: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 'E': - case 'e': goto yy176; - case 'O': - case 'o': goto yy177; - case 'R': - case 'r': goto yy178; - case 'y': goto yy201; - default: goto yy62; - } -yy94: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case '"': - case '\'': goto yy202; - case '8': goto yy204; - case 'N': goto yy181; - case 'n': goto yy205; - default: goto yy62; - } -yy95: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 'o': goto yy206; - default: goto yy62; - } -yy96: - ++cur; -#line 359 "src/parser.re" - { NEWTOKEN(PSI_T_LBRACE); goto start; } -#line 1308 "src/parser.c" -yy98: - yych = *++cur; - switch (yych) { - case '|': goto yy207; - default: goto yy99; - } -yy99: -#line 377 "src/parser.re" - { NEWTOKEN(PSI_T_PIPE); goto start; } -#line 1318 "src/parser.c" -yy100: - ++cur; -#line 360 "src/parser.re" - { NEWTOKEN(PSI_T_RBRACE); goto start; } -#line 1323 "src/parser.c" -yy102: - ++cur; -#line 369 "src/parser.re" - { NEWTOKEN(PSI_T_TILDE); goto start; } -#line 1328 "src/parser.c" -yy104: - ++cur; -#line 363 "src/parser.re" - { NEWTOKEN(PSI_T_CMP_NE); goto start; } -#line 1333 "src/parser.c" -yy106: - ++cur; -#line 352 "src/parser.re" - { NEWTOKEN(PSI_T_CPP_PASTE); goto start; } -#line 1338 "src/parser.c" -yy108: - ++cur; - if (lim <= cur) if (cur >= lim) goto done;; - yych = *cur; - switch (yych) { - case 0x00: - case 0x01: - case 0x02: - case 0x03: - case 0x04: - case 0x05: - case 0x06: - case 0x07: - case 0x08: - case '\t': - case '\n': - case '\v': - case '\f': - case '\r': - case 0x0E: - case 0x0F: - case 0x10: - case 0x11: - case 0x12: - case 0x13: - case 0x14: - case 0x15: - case 0x16: - case 0x17: - case 0x18: - case 0x19: - case 0x1A: - case 0x1B: - case 0x1C: - case 0x1D: - case 0x1E: - case 0x1F: - case ' ': - case '!': - case '"': - case '#': - case '$': - case '%': - case '&': - case '\'': - case '(': - case ')': - case '*': - case '+': - case ',': - case '-': - case '.': - case '/': - case ':': - case ';': - case '<': - case '=': - case '>': - case '?': - case '@': - case '[': - case '\\': - case ']': - case '^': - case '`': - case '{': - case '|': - case '}': - case '~': - case 0x7F: goto yy110; - default: goto yy108; - } -yy110: -#line 464 "src/parser.re" - { NEWTOKEN(PSI_T_DOLLAR_NAME); goto start; } -#line 1414 "src/parser.c" -yy111: - ++cur; -#line 365 "src/parser.re" - { NEWTOKEN(PSI_T_AND); goto start; } -#line 1419 "src/parser.c" -yy113: - yych = *++cur; - switch (yych) { - case '0': - case '1': - case '2': - case '3': - case '4': - case '5': - case '6': - case '7': - case '8': - case '9': goto yy116; - default: goto yy114; - } -yy114: - cur = mrk; - switch (yyaccept) { - case 0: goto yy29; - case 1: goto yy33; - case 2: goto yy35; - case 3: goto yy39; - case 4: goto yy47; - case 5: goto yy55; - case 6: goto yy118; - case 7: goto yy129; - case 8: goto yy147; - case 9: goto yy161; - case 10: goto yy186; - case 11: goto yy242; - case 12: goto yy244; - case 13: goto yy253; - case 14: goto yy273; - case 15: goto yy305; - case 16: goto yy307; - case 17: goto yy313; - case 18: goto yy321; - case 19: goto yy333; - case 20: goto yy341; - case 21: goto yy345; - case 22: goto yy352; - case 23: goto yy354; - case 24: goto yy358; - case 25: goto yy361; - case 26: goto yy363; - case 27: goto yy373; - case 28: goto yy376; - case 29: goto yy383; - case 30: goto yy386; - case 31: goto yy388; - case 32: goto yy390; - case 33: goto yy394; - case 34: goto yy399; - case 35: goto yy417; - case 36: goto yy425; - case 37: goto yy428; - case 38: goto yy431; - case 39: goto yy437; - case 40: goto yy441; - case 41: goto yy446; - case 42: goto yy448; - case 43: goto yy452; - case 44: goto yy455; - case 45: goto yy457; - case 46: goto yy459; - case 47: goto yy464; - case 48: goto yy466; - case 49: goto yy468; - case 50: goto yy470; - case 51: goto yy472; - case 52: goto yy477; - case 53: goto yy487; - case 54: goto yy489; - case 55: goto yy491; - case 56: goto yy493; - case 57: goto yy495; - case 58: goto yy500; - case 59: goto yy504; - case 60: goto yy508; - case 61: goto yy510; - case 62: goto yy515; - case 63: goto yy520; - case 64: goto yy522; - case 65: goto yy530; - case 66: goto yy534; - case 67: goto yy536; - case 68: goto yy538; - case 69: goto yy540; - case 70: goto yy545; - case 71: goto yy547; - case 72: goto yy553; - case 73: goto yy558; - case 74: goto yy560; - case 75: goto yy565; - case 76: goto yy567; - case 77: goto yy575; - case 78: goto yy579; - case 79: goto yy583; - case 80: goto yy587; - case 81: goto yy589; - default: goto yy594; - } -yy115: - yych = *++cur; - switch (yych) { - case '.': goto yy209; - default: goto yy114; - } -yy116: - yyaccept = 6; - mrk = ++cur; - if ((lim - cur) < 2) if (cur >= lim) goto done;; - yych = *cur; - switch (yych) { - case '0': - case '1': - case '2': - case '3': - case '4': - case '5': - case '6': - case '7': - case '8': - case '9': goto yy116; - case 'D': - case 'd': goto yy211; - case 'F': - case 'f': goto yy212; - case 'L': - case 'l': goto yy214; - default: goto yy118; - } -yy118: -#line 335 "src/parser.re" - { NEWTOKEN(PSI_T_NUMBER); token->flags = PSI_NUMBER_FLT; goto start; } -#line 1555 "src/parser.c" -yy119: - ++cur; -#line 349 "src/parser.re" - { goto comment; } -#line 1560 "src/parser.c" -yy121: - ++cur; -#line 350 "src/parser.re" - { goto comment_sl; } -#line 1565 "src/parser.c" -yy123: - yyaccept = 6; - mrk = ++cur; - if ((lim - cur) < 3) if (cur >= lim) goto done;; - yych = *cur; - switch (yych) { - case '0': - case '1': - case '2': - case '3': - case '4': - case '5': - case '6': - case '7': - case '8': - case '9': goto yy123; - case 'D': - case 'd': goto yy211; - case 'E': - case 'e': goto yy127; - case 'F': - case 'f': goto yy212; - case 'L': - case 'l': goto yy214; - default: goto yy118; - } -yy125: - ++cur; - if ((lim - cur) < 3) if (cur >= lim) goto done;; - yych = *cur; -yy126: - switch (yych) { - case '0': - case '1': - case '2': - case '3': - case '4': - case '5': - case '6': - case '7': goto yy125; - case 'L': - case 'l': goto yy128; - case 'U': - case 'u': goto yy130; - default: goto yy39; - } -yy127: - yych = *++cur; - switch (yych) { - case '+': - case '-': goto yy113; - case '0': - case '1': - case '2': - case '3': - case '4': - case '5': - case '6': - case '7': - case '8': - case '9': goto yy116; - default: goto yy114; - } -yy128: - yyaccept = 7; - yych = *(mrk = ++cur); - switch (yych) { - case 'L': - case 'l': goto yy216; - case 'U': - case 'u': goto yy217; - default: goto yy129; - } -yy129: - cur -= 1; -#line 331 "src/parser.re" - { NEWTOKEN(PSI_T_NUMBER); token->flags = PSI_NUMBER_INT | PSI_NUMBER_L; cur += 1; goto start; } -#line 1643 "src/parser.c" -yy130: - yych = *++cur; - switch (yych) { - case 'L': - case 'l': goto yy219; - default: goto yy131; - } -yy131: - cur -= 1; -#line 330 "src/parser.re" - { NEWTOKEN(PSI_T_NUMBER); token->flags = PSI_NUMBER_INT | PSI_NUMBER_U; cur += 1; goto start; } -#line 1655 "src/parser.c" -yy132: - yych = *++cur; - switch (yych) { - case '0': - case '1': - case '2': - case '3': - case '4': - case '5': - case '6': - case '7': - case '8': - case '9': - case 'A': - case 'B': - case 'C': - case 'D': - case 'E': - case 'F': - case 'a': - case 'b': - case 'c': - case 'd': - case 'e': - case 'f': goto yy220; - default: goto yy114; - } -yy133: - ++cur; - if (lim <= cur) if (cur >= lim) goto done;; - yych = *cur; - switch (yych) { - case '-': - case '.': - case '/': - case '0': - case '1': - case '2': - case '3': - case '4': - case '5': - case '6': - case '7': - case '8': - case '9': - case 'A': - case 'B': - case 'C': - case 'D': - case 'E': - case 'F': - case 'G': - case 'H': - case 'I': - case 'J': - case 'K': - case 'L': - case 'M': - case 'N': - case 'O': - case 'P': - case 'Q': - case 'R': - case 'S': - case 'T': - case 'U': - case 'V': - case 'W': - case 'X': - case 'Y': - case 'Z': - case '_': - case 'a': - case 'b': - case 'c': - case 'd': - case 'e': - case 'f': - case 'g': - case 'h': - case 'i': - case 'j': - case 'k': - case 'l': - case 'm': - case 'n': - case 'o': - case 'p': - case 'q': - case 'r': - case 's': - case 't': - case 'u': - case 'v': - case 'w': - case 'x': - case 'y': - case 'z': goto yy133; - case '>': goto yy222; - default: goto yy114; - } -yy135: - ++cur; -#line 379 "src/parser.re" - { NEWTOKEN(PSI_T_LSHIFT); goto start; } -#line 1761 "src/parser.c" -yy137: - ++cur; -#line 381 "src/parser.re" - { NEWTOKEN(PSI_T_CMP_LE); goto start; } -#line 1766 "src/parser.c" -yy139: - ++cur; -#line 364 "src/parser.re" - { NEWTOKEN(PSI_T_CMP_EQ); goto start; } -#line 1771 "src/parser.c" -yy141: - ++cur; -#line 382 "src/parser.re" - { NEWTOKEN(PSI_T_CMP_GE); goto start; } -#line 1776 "src/parser.c" -yy143: - ++cur; -#line 380 "src/parser.re" - { NEWTOKEN(PSI_T_RSHIFT); goto start; } -#line 1781 "src/parser.c" -yy145: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 'R': - case 'r': goto yy224; - default: goto yy62; - } -yy146: - yyaccept = 8; - yych = *(mrk = ++cur); - switch (yych) { - case 0x00: - case 0x01: - case 0x02: - case 0x03: - case 0x04: - case 0x05: - case 0x06: - case 0x07: - case 0x08: - case '\t': - case '\n': - case '\v': - case '\f': - case '\r': - case 0x0E: - case 0x0F: - case 0x10: - case 0x11: - case 0x12: - case 0x13: - case 0x14: - case 0x15: - case 0x16: - case 0x17: - case 0x18: - case 0x19: - case 0x1A: - case 0x1B: - case 0x1C: - case 0x1D: - case 0x1E: - case 0x1F: - case ' ': - case '!': - case '"': - case '#': - case '$': - case '%': - case '&': - case '\'': - case '(': - case ')': - case '*': - case '+': - case ',': - case '-': - case '.': - case '/': - case ':': - case ';': - case '<': - case '=': - case '>': - case '?': - case '@': - case '[': - case ']': - case '^': - case '`': - case '{': - case '|': - case '}': - case '~': - case 0x7F: goto yy147; - case '\\': goto yy148; - default: goto yy61; - } -yy147: -#line 442 "src/parser.re" - { NEWTOKEN(PSI_T_AS); goto start; } -#line 1864 "src/parser.c" -yy148: - ++cur; - if (lim <= cur) if (cur >= lim) goto done;; - yych = *cur; - switch (yych) { - case 0x00: - case 0x01: - case 0x02: - case 0x03: - case 0x04: - case 0x05: - case 0x06: - case 0x07: - case 0x08: - case '\t': - case '\n': - case '\v': - case '\f': - case '\r': - case 0x0E: - case 0x0F: - case 0x10: - case 0x11: - case 0x12: - case 0x13: - case 0x14: - case 0x15: - case 0x16: - case 0x17: - case 0x18: - case 0x19: - case 0x1A: - case 0x1B: - case 0x1C: - case 0x1D: - case 0x1E: - case 0x1F: - case ' ': - case '!': - case '"': - case '#': - case '$': - case '%': - case '&': - case '\'': - case '(': - case ')': - case '*': - case '+': - case ',': - case '-': - case '.': - case '/': - case '0': - case '1': - case '2': - case '3': - case '4': - case '5': - case '6': - case '7': - case '8': - case '9': - case ':': - case ';': - case '<': - case '=': - case '>': - case '?': - case '@': - case '[': - case '\\': - case ']': - case '^': - case '`': - case '{': - case '|': - case '}': - case '~': - case 0x7F: goto yy114; - default: goto yy184; - } -yy149: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 'O': - case 'o': goto yy225; - default: goto yy62; - } -yy150: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 'L': - case 'l': goto yy226; - default: goto yy62; - } -yy151: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 'U': - case 'u': goto yy227; - default: goto yy62; - } -yy152: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 'F': - case 'f': goto yy228; - default: goto yy62; - } -yy153: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 'I': - case 'i': goto yy229; - case 'S': - case 's': goto yy230; - default: goto yy62; - } -yy154: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 'D': - case 'd': goto yy231; - default: goto yy62; - } -yy155: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 'R': - case 'r': goto yy232; - default: goto yy62; - } -yy156: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 'L': - case 'l': goto yy233; - default: goto yy62; - } -yy157: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 'O': - case 'o': goto yy234; - default: goto yy62; - } -yy158: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 'E': - case 'e': goto yy235; - default: goto yy62; - } -yy159: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 'N': - case 'n': goto yy236; - default: goto yy62; - } -yy160: - yyaccept = 9; - yych = *(mrk = ++cur); - switch (yych) { - case 0x00: - case 0x01: - case 0x02: - case 0x03: - case 0x04: - case 0x05: - case 0x06: - case 0x07: - case 0x08: - case '\t': - case '\n': - case '\v': - case '\f': - case '\r': - case 0x0E: - case 0x0F: - case 0x10: - case 0x11: - case 0x12: - case 0x13: - case 0x14: - case 0x15: - case 0x16: - case 0x17: - case 0x18: - case 0x19: - case 0x1A: - case 0x1B: - case 0x1C: - case 0x1D: - case 0x1E: - case 0x1F: - case ' ': - case '!': - case '"': - case '#': - case '$': - case '%': - case '&': - case '\'': - case '(': - case ')': - case '*': - case '+': - case ',': - case '-': - case '.': - case '/': - case ':': - case ';': - case '<': - case '=': - case '>': - case '?': - case '@': - case '[': - case ']': - case '^': - case '`': - case '{': - case '|': - case '}': - case '~': - case 0x7F: goto yy161; - case 'D': - case 'd': goto yy237; - case 'N': - case 'n': goto yy238; - case '\\': goto yy148; - default: goto yy61; - } -yy161: -#line 412 "src/parser.re" - { NEWTOKEN(PSI_T_IF); goto start; } -#line 2115 "src/parser.c" -yy162: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 'C': - case 'c': goto yy239; - case 'T': - case 't': goto yy240; - default: goto yy62; - } -yy163: - ++cur; - cur -= 1; -#line 347 "src/parser.re" - { char_width = sizeof(wchar_t)/8; } -#line 2131 "src/parser.c" -yy165: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 'T': - case 't': goto yy241; - default: goto yy62; - } -yy166: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 'B': - case 'b': goto yy243; - default: goto yy62; - } -yy167: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 'X': - case 'x': goto yy245; - default: goto yy62; - } -yy168: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 'L': - case 'l': goto yy246; - default: goto yy62; - } -yy169: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 'J': - case 'j': goto yy247; - default: goto yy62; - } -yy170: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 'T': - case 't': goto yy248; - default: goto yy62; - } -yy171: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 'S': - case 's': goto yy249; - default: goto yy62; - } -yy172: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 'E': - case 'e': goto yy250; - default: goto yy62; - } -yy173: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 'T': - case 't': goto yy251; - default: goto yy62; - } -yy174: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 'T': - case 't': goto yy252; - default: goto yy62; - } -yy175: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 'A': - case 'a': goto yy254; - case 'R': - case 'r': goto yy255; - default: goto yy62; - } -yy176: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 'M': - case 'm': goto yy256; - default: goto yy62; - } -yy177: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case '_': goto yy257; - default: goto yy62; - } -yy178: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 'U': - case 'u': goto yy258; - default: goto yy62; - } -yy179: - ++cur; - cur -= 1; -#line 346 "src/parser.re" - { char_width = 4; } -#line 2250 "src/parser.c" -yy181: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 'D': - case 'd': goto yy259; - default: goto yy62; - } -yy182: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 'R': - case 'r': goto yy260; - default: goto yy62; - } -yy183: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 'A': - case 'a': goto yy261; - default: goto yy62; - } -yy184: - yyaccept = 10; - mrk = ++cur; - if (lim <= cur) if (cur >= lim) goto done;; - yych = *cur; - switch (yych) { - case 0x00: - case 0x01: - case 0x02: - case 0x03: - case 0x04: - case 0x05: - case 0x06: - case 0x07: - case 0x08: - case '\t': - case '\n': - case '\v': - case '\f': - case '\r': - case 0x0E: - case 0x0F: - case 0x10: - case 0x11: - case 0x12: - case 0x13: - case 0x14: - case 0x15: - case 0x16: - case 0x17: - case 0x18: - case 0x19: - case 0x1A: - case 0x1B: - case 0x1C: - case 0x1D: - case 0x1E: - case 0x1F: - case ' ': - case '!': - case '"': - case '#': - case '$': - case '%': - case '&': - case '\'': - case '(': - case ')': - case '*': - case '+': - case ',': - case '-': - case '.': - case '/': - case ':': - case ';': - case '<': - case '=': - case '>': - case '?': - case '@': - case '[': - case ']': - case '^': - case '`': - case '{': - case '|': - case '}': - case '~': - case 0x7F: goto yy186; - case '\\': goto yy148; - default: goto yy184; - } -yy186: -#line 463 "src/parser.re" - { NEWTOKEN(PSI_T_NSNAME); goto start; } -#line 2351 "src/parser.c" -yy187: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 'a': goto yy262; - case 'e': goto yy263; - case 'i': goto yy264; - case 'r': goto yy265; - default: goto yy62; - } -yy188: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 'O': goto yy225; - case 'o': goto yy266; - default: goto yy62; - } -yy189: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 'a': goto yy267; - default: goto yy62; - } -yy190: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 'U': - case 'u': goto yy227; - case 'n': goto yy268; - default: goto yy62; - } -yy191: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 'u': goto yy269; - default: goto yy62; - } -yy192: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 'D': - case 'd': goto yy231; - case 'u': goto yy270; - default: goto yy62; - } -yy193: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 'O': goto yy234; - case 'o': goto yy271; - default: goto yy62; - } -yy194: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 'C': - case 'c': goto yy239; - case 'T': goto yy240; - case 't': goto yy272; - default: goto yy62; - } -yy195: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 'B': - case 'b': goto yy243; - case 'n': goto yy274; - default: goto yy62; - } -yy196: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 'n': goto yy275; - default: goto yy62; - } -yy197: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 'E': - case 'e': goto yy250; - case 'a': goto yy276; - default: goto yy62; - } -yy198: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 'o': goto yy277; - default: goto yy62; - } -yy199: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 'g': goto yy278; - case 'z': goto yy279; - default: goto yy62; - } -yy200: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 'A': - case 'a': goto yy254; - case 'R': goto yy255; - case 'r': goto yy280; - default: goto yy62; - } -yy201: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 'p': goto yy281; - default: goto yy62; - } -yy202: - ++cur; - cur -= 1; -#line 345 "src/parser.re" - { char_width = 2; } -#line 2482 "src/parser.c" -yy204: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case '"': goto yy282; - default: goto yy62; - } -yy205: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 'D': - case 'd': goto yy259; - case 'i': goto yy284; - case 's': goto yy285; - default: goto yy62; - } -yy206: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 'i': goto yy286; - case 'l': goto yy287; - default: goto yy62; - } -yy207: - ++cur; -#line 366 "src/parser.re" - { NEWTOKEN(PSI_T_OR); goto start; } -#line 2512 "src/parser.c" -yy209: - ++cur; -#line 386 "src/parser.re" - { NEWTOKEN(PSI_T_ELLIPSIS); goto start; } -#line 2517 "src/parser.c" -yy211: - yych = *++cur; - switch (yych) { - case 'D': - case 'd': goto yy288; - case 'F': - case 'f': goto yy290; - case 'L': - case 'l': goto yy292; - default: goto yy114; - } -yy212: - ++cur; - cur -= 1; -#line 336 "src/parser.re" - { NEWTOKEN(PSI_T_NUMBER); token->flags = PSI_NUMBER_FLT | PSI_NUMBER_F; cur += 1; goto start; } -#line 2534 "src/parser.c" -yy214: - ++cur; - cur -= 1; -#line 337 "src/parser.re" - { NEWTOKEN(PSI_T_NUMBER); token->flags = PSI_NUMBER_FLT | PSI_NUMBER_L; cur += 1; goto start; } -#line 2540 "src/parser.c" -yy216: - yych = *++cur; - switch (yych) { - case 'U': - case 'u': goto yy294; - default: goto yy114; - } -yy217: - ++cur; -yy218: - cur -= 2; -#line 332 "src/parser.re" - { NEWTOKEN(PSI_T_NUMBER); token->flags = PSI_NUMBER_INT | PSI_NUMBER_UL; cur += 2; goto start; } -#line 2554 "src/parser.c" -yy219: - yych = *++cur; - switch (yych) { - case 'L': - case 'l': goto yy294; - default: goto yy218; - } -yy220: - yyaccept = 3; - mrk = ++cur; - if ((lim - cur) < 3) if (cur >= lim) goto done;; - yych = *cur; - switch (yych) { - case '.': goto yy296; - case '0': - case '1': - case '2': - case '3': - case '4': - case '5': - case '6': - case '7': - case '8': - case '9': - case 'A': - case 'B': - case 'C': - case 'D': - case 'E': - case 'F': - case 'a': - case 'b': - case 'c': - case 'd': - case 'e': - case 'f': goto yy220; - case 'L': - case 'l': goto yy128; - case 'P': - case 'p': goto yy127; - case 'U': - case 'u': goto yy130; - default: goto yy39; - } -yy222: - ++cur; -#line 465 "src/parser.re" - { tok += 1; cur -= 1; NEWTOKEN(PSI_T_CPP_HEADER); cur += 1; goto start; } -#line 2603 "src/parser.c" -yy224: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 'A': - case 'a': goto yy298; - case 'V': - case 'v': goto yy299; - default: goto yy62; - } -yy225: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 'L': - case 'l': goto yy300; - default: goto yy62; - } -yy226: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 'L': - case 'l': goto yy301; - default: goto yy62; - } -yy227: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 'N': - case 'n': goto yy302; - default: goto yy62; - } -yy228: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 'I': - case 'i': goto yy303; - default: goto yy62; - } -yy229: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 'F': - case 'f': goto yy304; - default: goto yy62; - } -yy230: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 'E': - case 'e': goto yy306; - default: goto yy62; - } -yy231: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 'I': - case 'i': goto yy308; - default: goto yy62; - } -yy232: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 'O': - case 'o': goto yy309; - default: goto yy62; - } -yy233: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 'S': - case 's': goto yy310; - default: goto yy62; - } -yy234: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 'A': - case 'a': goto yy311; - default: goto yy62; - } -yy235: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 'E': - case 'e': goto yy312; - default: goto yy62; - } -yy236: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 'C': - case 'c': goto yy314; - default: goto yy62; - } -yy237: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 'E': - case 'e': goto yy315; - default: goto yy62; - } -yy238: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 'D': - case 'd': goto yy316; - default: goto yy62; - } -yy239: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 'L': - case 'l': goto yy317; - default: goto yy62; - } -yy240: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 'V': - case 'v': goto yy318; - default: goto yy62; - } -yy241: - yyaccept = 11; - yych = *(mrk = ++cur); - switch (yych) { - case 0x00: - case 0x01: - case 0x02: - case 0x03: - case 0x04: - case 0x05: - case 0x06: - case 0x07: - case 0x08: - case '\t': - case '\n': - case '\v': - case '\f': - case '\r': - case 0x0E: - case 0x0F: - case 0x10: - case 0x11: - case 0x12: - case 0x13: - case 0x14: - case 0x15: - case 0x16: - case 0x17: - case 0x18: - case 0x19: - case 0x1A: - case 0x1B: - case 0x1C: - case 0x1D: - case 0x1E: - case 0x1F: - case ' ': - case '!': - case '"': - case '#': - case '$': - case '%': - case '&': - case '\'': - case '(': - case ')': - case '*': - case '+': - case ',': - case '-': - case '.': - case '/': - case ':': - case ';': - case '<': - case '=': - case '>': - case '?': - case '@': - case '[': - case ']': - case '^': - case '`': - case '{': - case '|': - case '}': - case '~': - case 0x7F: goto yy242; - case '\\': goto yy148; - default: goto yy61; - } -yy242: -#line 437 "src/parser.re" - { NEWTOKEN(PSI_T_LET); goto start; } -#line 2816 "src/parser.c" -yy243: - yyaccept = 12; - yych = *(mrk = ++cur); - switch (yych) { - case 0x00: - case 0x01: - case 0x02: - case 0x03: - case 0x04: - case 0x05: - case 0x06: - case 0x07: - case 0x08: - case '\t': - case '\n': - case '\v': - case '\f': - case '\r': - case 0x0E: - case 0x0F: - case 0x10: - case 0x11: - case 0x12: - case 0x13: - case 0x14: - case 0x15: - case 0x16: - case 0x17: - case 0x18: - case 0x19: - case 0x1A: - case 0x1B: - case 0x1C: - case 0x1D: - case 0x1E: - case 0x1F: - case ' ': - case '!': - case '"': - case '#': - case '$': - case '%': - case '&': - case '\'': - case '(': - case ')': - case '*': - case '+': - case ',': - case '-': - case '.': - case '/': - case ':': - case ';': - case '<': - case '=': - case '>': - case '?': - case '@': - case '[': - case ']': - case '^': - case '`': - case '{': - case '|': - case '}': - case '~': - case 0x7F: goto yy244; - case '\\': goto yy148; - default: goto yy61; - } -yy244: -#line 436 "src/parser.re" - { NEWTOKEN(PSI_T_LIB); goto start; } -#line 2891 "src/parser.c" -yy245: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 'E': - case 'e': goto yy319; - default: goto yy62; - } -yy246: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 'L': - case 'l': goto yy320; - default: goto yy62; - } -yy247: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 'E': - case 'e': goto yy322; - case 'V': - case 'v': goto yy323; - default: goto yy62; - } -yy248: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 'H': - case 'h': goto yy324; - default: goto yy62; - } -yy249: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 'T': - case 't': goto yy325; - default: goto yy62; - } -yy250: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case '_': goto yy326; - default: goto yy62; - } -yy251: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 'U': - case 'u': goto yy327; - default: goto yy62; - } -yy252: - yyaccept = 13; - yych = *(mrk = ++cur); - switch (yych) { - case 0x00: - case 0x01: - case 0x02: - case 0x03: - case 0x04: - case 0x05: - case 0x06: - case 0x07: - case 0x08: - case '\t': - case '\n': - case '\v': - case '\f': - case '\r': - case 0x0E: - case 0x0F: - case 0x10: - case 0x11: - case 0x12: - case 0x13: - case 0x14: - case 0x15: - case 0x16: - case 0x17: - case 0x18: - case 0x19: - case 0x1A: - case 0x1B: - case 0x1C: - case 0x1D: - case 0x1E: - case 0x1F: - case ' ': - case '!': - case '"': - case '#': - case '$': - case '%': - case '&': - case '\'': - case '(': - case ')': - case '*': - case '+': - case ',': - case '-': - case '.': - case '/': - case ':': - case ';': - case '<': - case '=': - case '>': - case '?': - case '@': - case '[': - case ']': - case '^': - case '`': - case '{': - case '|': - case '}': - case '~': - case 0x7F: goto yy253; - case '\\': goto yy148; - default: goto yy61; - } -yy253: -#line 438 "src/parser.re" - { NEWTOKEN(PSI_T_SET); goto start; } -#line 3023 "src/parser.c" -yy254: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 'T': - case 't': goto yy328; - default: goto yy62; - } -yy255: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 'I': - case 'i': goto yy329; - case 'L': - case 'l': goto yy330; - case 'V': - case 'v': goto yy331; - default: goto yy62; - } -yy256: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 'P': - case 'p': goto yy332; - default: goto yy62; - } -yy257: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 'A': - case 'a': goto yy334; - case 'B': - case 'b': goto yy335; - case 'F': - case 'f': goto yy336; - case 'I': - case 'i': goto yy337; - case 'O': - case 'o': goto yy338; - case 'S': - case 's': goto yy339; - default: goto yy62; - } -yy258: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 'E': - case 'e': goto yy340; - default: goto yy62; - } -yy259: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 'E': - case 'e': goto yy342; - default: goto yy62; - } -yy260: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 'N': - case 'n': goto yy343; - default: goto yy62; - } -yy261: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 'L': - case 'l': goto yy344; - default: goto yy62; - } -yy262: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 's': goto yy346; - case 't': goto yy347; - default: goto yy62; - } -yy263: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 'x': goto yy348; - default: goto yy62; - } -yy264: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 'n': goto yy349; - default: goto yy62; - } -yy265: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 'e': goto yy350; - default: goto yy62; - } -yy266: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 'L': goto yy300; - case 'l': goto yy351; - default: goto yy62; - } -yy267: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 'r': goto yy353; - default: goto yy62; - } -yy268: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 's': goto yy355; - default: goto yy62; - } -yy269: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 'b': goto yy356; - default: goto yy62; - } -yy270: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 'm': goto yy357; - default: goto yy62; - } -yy271: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 'A': goto yy311; - case 'a': goto yy359; - default: goto yy62; - } -yy272: - yyaccept = 14; - yych = *(mrk = ++cur); - switch (yych) { - case 0x00: - case 0x01: - case 0x02: - case 0x03: - case 0x04: - case 0x05: - case 0x06: - case 0x07: - case 0x08: - case '\t': - case '\n': - case '\v': - case '\f': - case '\r': - case 0x0E: - case 0x0F: - case 0x10: - case 0x11: - case 0x12: - case 0x13: - case 0x14: - case 0x15: - case 0x16: - case 0x17: - case 0x18: - case 0x19: - case 0x1A: - case 0x1B: - case 0x1C: - case 0x1D: - case 0x1E: - case 0x1F: - case ' ': - case '!': - case '"': - case '#': - case '$': - case '%': - case '&': - case '\'': - case '(': - case ')': - case '*': - case '+': - case ',': - case '-': - case '.': - case '/': - case ':': - case ';': - case '<': - case '=': - case '>': - case '?': - case '@': - case '[': - case ']': - case '^': - case '`': - case '{': - case '|': - case '}': - case '~': - case 0x7F: goto yy273; - case 'V': - case 'v': goto yy318; - case '\\': goto yy148; - default: goto yy61; - } -yy273: -#line 406 "src/parser.re" - { NEWTOKEN(PSI_T_INT); goto start; } -#line 3251 "src/parser.c" -yy274: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 'e': goto yy360; - default: goto yy62; - } -yy275: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 'g': goto yy362; - default: goto yy62; - } -yy276: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 'g': goto yy364; - default: goto yy62; - } -yy277: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 'r': goto yy365; - default: goto yy62; - } -yy278: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 'n': goto yy366; - default: goto yy62; - } -yy279: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 'e': goto yy367; - default: goto yy62; - } -yy280: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 'I': - case 'i': goto yy329; - case 'L': - case 'l': goto yy330; - case 'V': - case 'v': goto yy331; - case 'u': goto yy368; - default: goto yy62; - } -yy281: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 'e': goto yy369; - default: goto yy62; - } -yy282: - ++cur; - cur -= 1; -#line 344 "src/parser.re" - { char_width = 1; } -#line 3319 "src/parser.c" -yy284: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 'o': goto yy370; - default: goto yy62; - } -yy285: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 'i': goto yy371; - default: goto yy62; - } -yy286: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 'd': goto yy372; - default: goto yy62; - } -yy287: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 'a': goto yy374; - default: goto yy62; - } -yy288: - ++cur; - cur -= 2; -#line 339 "src/parser.re" - { NEWTOKEN(PSI_T_NUMBER); token->flags = PSI_NUMBER_FLT | PSI_NUMBER_DD; cur += 2; goto start; } -#line 3353 "src/parser.c" -yy290: - ++cur; - cur -= 2; -#line 338 "src/parser.re" - { NEWTOKEN(PSI_T_NUMBER); token->flags = PSI_NUMBER_FLT | PSI_NUMBER_DF; cur += 2; goto start; } -#line 3359 "src/parser.c" -yy292: - ++cur; - cur -= 2; -#line 340 "src/parser.re" - { NEWTOKEN(PSI_T_NUMBER); token->flags = PSI_NUMBER_FLT | PSI_NUMBER_DL; cur += 2; goto start; } -#line 3365 "src/parser.c" -yy294: - ++cur; - cur -= 3; -#line 333 "src/parser.re" - { NEWTOKEN(PSI_T_NUMBER); token->flags = PSI_NUMBER_INT | PSI_NUMBER_ULL; cur += 3; goto start; } -#line 3371 "src/parser.c" -yy296: - ++cur; - if ((lim - cur) < 3) if (cur >= lim) goto done;; - yych = *cur; - switch (yych) { - case '0': - case '1': - case '2': - case '3': - case '4': - case '5': - case '6': - case '7': - case '8': - case '9': - case 'A': - case 'B': - case 'C': - case 'D': - case 'E': - case 'F': - case 'a': - case 'b': - case 'c': - case 'd': - case 'e': - case 'f': goto yy296; - case 'P': - case 'p': goto yy127; - default: goto yy114; - } -yy298: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 'Y': - case 'y': goto yy375; - default: goto yy62; - } -yy299: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 'A': - case 'a': goto yy377; - default: goto yy62; - } -yy300: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 'V': - case 'v': goto yy378; - default: goto yy62; - } -yy301: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 'A': - case 'a': goto yy379; - case 'B': - case 'b': goto yy380; - case 'O': - case 'o': goto yy381; - default: goto yy62; - } -yy302: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 'T': - case 't': goto yy382; - default: goto yy62; - } -yy303: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 'N': - case 'n': goto yy384; - default: goto yy62; - } -yy304: - yyaccept = 15; - yych = *(mrk = ++cur); - switch (yych) { - case 0x00: - case 0x01: - case 0x02: - case 0x03: - case 0x04: - case 0x05: - case 0x06: - case 0x07: - case 0x08: - case '\t': - case '\n': - case '\v': - case '\f': - case '\r': - case 0x0E: - case 0x0F: - case 0x10: - case 0x11: - case 0x12: - case 0x13: - case 0x14: - case 0x15: - case 0x16: - case 0x17: - case 0x18: - case 0x19: - case 0x1A: - case 0x1B: - case 0x1C: - case 0x1D: - case 0x1E: - case 0x1F: - case ' ': - case '!': - case '"': - case '#': - case '$': - case '%': - case '&': - case '\'': - case '(': - case ')': - case '*': - case '+': - case ',': - case '-': - case '.': - case '/': - case ':': - case ';': - case '<': - case '=': - case '>': - case '?': - case '@': - case '[': - case ']': - case '^': - case '`': - case '{': - case '|': - case '}': - case '~': - case 0x7F: goto yy305; - case '\\': goto yy148; - default: goto yy61; - } -yy305: -#line 416 "src/parser.re" - { NEWTOKEN(PSI_T_ELIF); goto start; } -#line 3529 "src/parser.c" -yy306: - yyaccept = 16; - yych = *(mrk = ++cur); - switch (yych) { - case 0x00: - case 0x01: - case 0x02: - case 0x03: - case 0x04: - case 0x05: - case 0x06: - case 0x07: - case 0x08: - case '\t': - case '\n': - case '\v': - case '\f': - case '\r': - case 0x0E: - case 0x0F: - case 0x10: - case 0x11: - case 0x12: - case 0x13: - case 0x14: - case 0x15: - case 0x16: - case 0x17: - case 0x18: - case 0x19: - case 0x1A: - case 0x1B: - case 0x1C: - case 0x1D: - case 0x1E: - case 0x1F: - case ' ': - case '!': - case '"': - case '#': - case '$': - case '%': - case '&': - case '\'': - case '(': - case ')': - case '*': - case '+': - case ',': - case '-': - case '.': - case '/': - case ':': - case ';': - case '<': - case '=': - case '>': - case '?': - case '@': - case '[': - case ']': - case '^': - case '`': - case '{': - case '|': - case '}': - case '~': - case 0x7F: goto yy307; - case '\\': goto yy148; - default: goto yy61; - } -yy307: -#line 415 "src/parser.re" - { NEWTOKEN(PSI_T_ELSE); goto start; } -#line 3604 "src/parser.c" -yy308: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 'F': - case 'f': goto yy385; - default: goto yy62; - } -yy309: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 'R': - case 'r': goto yy387; - default: goto yy62; - } -yy310: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 'E': - case 'e': goto yy389; - default: goto yy62; - } -yy311: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 'T': - case 't': goto yy391; - default: goto yy62; - } -yy312: - yyaccept = 17; - yych = *(mrk = ++cur); - switch (yych) { - case 0x00: - case 0x01: - case 0x02: - case 0x03: - case 0x04: - case 0x05: - case 0x06: - case 0x07: - case 0x08: - case '\t': - case '\n': - case '\v': - case '\f': - case '\r': - case 0x0E: - case 0x0F: - case 0x10: - case 0x11: - case 0x12: - case 0x13: - case 0x14: - case 0x15: - case 0x16: - case 0x17: - case 0x18: - case 0x19: - case 0x1A: - case 0x1B: - case 0x1C: - case 0x1D: - case 0x1E: - case 0x1F: - case ' ': - case '!': - case '"': - case '#': - case '$': - case '%': - case '&': - case '\'': - case '(': - case ')': - case '*': - case '+': - case ',': - case '-': - case '.': - case '/': - case ':': - case ';': - case '<': - case '=': - case '>': - case '?': - case '@': - case '[': - case ']': - case '^': - case '`': - case '{': - case '|': - case '}': - case '~': - case 0x7F: goto yy313; - case '\\': goto yy148; - default: goto yy61; - } -yy313: -#line 443 "src/parser.re" - { NEWTOKEN(PSI_T_FREE); goto start; } -#line 3711 "src/parser.c" -yy314: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 'T': - case 't': goto yy392; - default: goto yy62; - } -yy315: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 'F': - case 'f': goto yy393; - default: goto yy62; - } -yy316: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 'E': - case 'e': goto yy395; - default: goto yy62; - } -yy317: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 'U': - case 'u': goto yy396; - default: goto yy62; - } -yy318: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 'A': - case 'a': goto yy397; - default: goto yy62; - } -yy319: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 'D': - case 'd': goto yy398; - default: goto yy62; - } -yy320: - yyaccept = 18; - yych = *(mrk = ++cur); - switch (yych) { - case 0x00: - case 0x01: - case 0x02: - case 0x03: - case 0x04: - case 0x05: - case 0x06: - case 0x07: - case 0x08: - case '\t': - case '\n': - case '\v': - case '\f': - case '\r': - case 0x0E: - case 0x0F: - case 0x10: - case 0x11: - case 0x12: - case 0x13: - case 0x14: - case 0x15: - case 0x16: - case 0x17: - case 0x18: - case 0x19: - case 0x1A: - case 0x1B: - case 0x1C: - case 0x1D: - case 0x1E: - case 0x1F: - case ' ': - case '!': - case '"': - case '#': - case '$': - case '%': - case '&': - case '\'': - case '(': - case ')': - case '*': - case '+': - case ',': - case '-': - case '.': - case '/': - case ':': - case ';': - case '<': - case '=': - case '>': - case '?': - case '@': - case '[': - case ']': - case '^': - case '`': - case '{': - case '|': - case '}': - case '~': - case 0x7F: goto yy321; - case '\\': goto yy148; - default: goto yy61; - } -yy321: -#line 427 "src/parser.re" - { NEWTOKEN(PSI_T_NULL); goto start; } -#line 3834 "src/parser.c" -yy322: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 'C': - case 'c': goto yy400; - default: goto yy62; - } -yy323: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 'A': - case 'a': goto yy401; - default: goto yy62; - } -yy324: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 'V': - case 'v': goto yy402; - default: goto yy62; - } -yy325: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case '_': goto yy403; - default: goto yy62; - } -yy326: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 'A': - case 'a': goto yy404; - default: goto yy62; - } -yy327: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 'R': - case 'r': goto yy405; - default: goto yy62; - } -yy328: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 'I': - case 'i': goto yy406; - default: goto yy62; - } -yy329: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 'N': - case 'n': goto yy407; - default: goto yy62; - } -yy330: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 'E': - case 'e': goto yy408; - default: goto yy62; - } -yy331: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 'A': - case 'a': goto yy409; - default: goto yy62; - } -yy332: - yyaccept = 19; - yych = *(mrk = ++cur); - switch (yych) { - case 0x00: - case 0x01: - case 0x02: - case 0x03: - case 0x04: - case 0x05: - case 0x06: - case 0x07: - case 0x08: - case '\t': - case '\n': - case '\v': - case '\f': - case '\r': - case 0x0E: - case 0x0F: - case 0x10: - case 0x11: - case 0x12: - case 0x13: - case 0x14: - case 0x15: - case 0x16: - case 0x17: - case 0x18: - case 0x19: - case 0x1A: - case 0x1B: - case 0x1C: - case 0x1D: - case 0x1E: - case 0x1F: - case ' ': - case '!': - case '"': - case '#': - case '$': - case '%': - case '&': - case '\'': - case '(': - case ')': - case '*': - case '+': - case ',': - case '-': - case '.': - case '/': - case ':': - case ';': - case '<': - case '=': - case '>': - case '?': - case '@': - case '[': - case ']': - case '^': - case '`': - case '{': - case '|': - case '}': - case '~': - case 0x7F: goto yy333; - case '\\': goto yy148; - default: goto yy61; - } -yy333: -#line 444 "src/parser.re" - { NEWTOKEN(PSI_T_TEMP); goto start; } -#line 3988 "src/parser.c" -yy334: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 'R': - case 'r': goto yy410; - default: goto yy62; - } -yy335: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 'O': - case 'o': goto yy411; - default: goto yy62; - } -yy336: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 'L': - case 'l': goto yy412; - default: goto yy62; - } -yy337: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 'N': - case 'n': goto yy413; - default: goto yy62; - } -yy338: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 'B': - case 'b': goto yy414; - default: goto yy62; - } -yy339: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 'T': - case 't': goto yy415; - default: goto yy62; - } -yy340: - yyaccept = 20; - yych = *(mrk = ++cur); - switch (yych) { - case 0x00: - case 0x01: - case 0x02: - case 0x03: - case 0x04: - case 0x05: - case 0x06: - case 0x07: - case 0x08: - case '\t': - case '\n': - case '\v': - case '\f': - case '\r': - case 0x0E: - case 0x0F: - case 0x10: - case 0x11: - case 0x12: - case 0x13: - case 0x14: - case 0x15: - case 0x16: - case 0x17: - case 0x18: - case 0x19: - case 0x1A: - case 0x1B: - case 0x1C: - case 0x1D: - case 0x1E: - case 0x1F: - case ' ': - case '!': - case '"': - case '#': - case '$': - case '%': - case '&': - case '\'': - case '(': - case ')': - case '*': - case '+': - case ',': - case '-': - case '.': - case '/': - case ':': - case ';': - case '<': - case '=': - case '>': - case '?': - case '@': - case '[': - case ']': - case '^': - case '`': - case '{': - case '|': - case '}': - case '~': - case 0x7F: goto yy341; - case '\\': goto yy148; - default: goto yy61; - } -yy341: -#line 425 "src/parser.re" - { NEWTOKEN(PSI_T_TRUE); goto start; } -#line 4111 "src/parser.c" -yy342: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 'F': - case 'f': goto yy416; - default: goto yy62; - } -yy343: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 'I': - case 'i': goto yy418; - default: goto yy62; - } -yy344: - yyaccept = 21; - yych = *(mrk = ++cur); - switch (yych) { - case 0x00: - case 0x01: - case 0x02: - case 0x03: - case 0x04: - case 0x05: - case 0x06: - case 0x07: - case 0x08: - case '\t': - case '\n': - case '\v': - case '\f': - case '\r': - case 0x0E: - case 0x0F: - case 0x10: - case 0x11: - case 0x12: - case 0x13: - case 0x14: - case 0x15: - case 0x16: - case 0x17: - case 0x18: - case 0x19: - case 0x1A: - case 0x1B: - case 0x1C: - case 0x1D: - case 0x1E: - case 0x1F: - case ' ': - case '!': - case '"': - case '#': - case '$': - case '%': - case '&': - case '\'': - case '(': - case ')': - case '*': - case '+': - case ',': - case '-': - case '.': - case '/': - case ':': - case ';': - case '<': - case '=': - case '>': - case '?': - case '@': - case '[': - case ']': - case '^': - case '`': - case '{': - case '|': - case '}': - case '~': - case 0x7F: goto yy345; - case '\\': goto yy148; - default: goto yy61; - } -yy345: -#line 453 "src/parser.re" - { NEWTOKEN(PSI_T_ZVAL); goto start; } -#line 4202 "src/parser.c" -yy346: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 'm': goto yy419; - default: goto yy62; - } -yy347: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 't': goto yy420; - default: goto yy62; - } -yy348: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 't': goto yy421; - default: goto yy62; - } -yy349: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 'l': goto yy422; - default: goto yy62; - } -yy350: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 's': goto yy423; - default: goto yy62; - } -yy351: - yyaccept = 22; - yych = *(mrk = ++cur); - switch (yych) { - case 0x00: - case 0x01: - case 0x02: - case 0x03: - case 0x04: - case 0x05: - case 0x06: - case 0x07: - case 0x08: - case '\t': - case '\n': - case '\v': - case '\f': - case '\r': - case 0x0E: - case 0x0F: - case 0x10: - case 0x11: - case 0x12: - case 0x13: - case 0x14: - case 0x15: - case 0x16: - case 0x17: - case 0x18: - case 0x19: - case 0x1A: - case 0x1B: - case 0x1C: - case 0x1D: - case 0x1E: - case 0x1F: - case ' ': - case '!': - case '"': - case '#': - case '$': - case '%': - case '&': - case '\'': - case '(': - case ')': - case '*': - case '+': - case ',': - case '-': - case '.': - case '/': - case ':': - case ';': - case '<': - case '=': - case '>': - case '?': - case '@': - case '[': - case ']': - case '^': - case '`': - case '{': - case '|': - case '}': - case '~': - case 0x7F: goto yy352; - case 'V': - case 'v': goto yy378; - case '\\': goto yy148; - default: goto yy61; - } -yy352: -#line 403 "src/parser.re" - { NEWTOKEN(PSI_T_BOOL); goto start; } -#line 4314 "src/parser.c" -yy353: - yyaccept = 23; - yych = *(mrk = ++cur); - switch (yych) { - case 0x00: - case 0x01: - case 0x02: - case 0x03: - case 0x04: - case 0x05: - case 0x06: - case 0x07: - case 0x08: - case '\t': - case '\n': - case '\v': - case '\f': - case '\r': - case 0x0E: - case 0x0F: - case 0x10: - case 0x11: - case 0x12: - case 0x13: - case 0x14: - case 0x15: - case 0x16: - case 0x17: - case 0x18: - case 0x19: - case 0x1A: - case 0x1B: - case 0x1C: - case 0x1D: - case 0x1E: - case 0x1F: - case ' ': - case '!': - case '"': - case '#': - case '$': - case '%': - case '&': - case '\'': - case '(': - case ')': - case '*': - case '+': - case ',': - case '-': - case '.': - case '/': - case ':': - case ';': - case '<': - case '=': - case '>': - case '?': - case '@': - case '[': - case ']': - case '^': - case '`': - case '{': - case '|': - case '}': - case '~': - case 0x7F: goto yy354; - case '\\': goto yy148; - default: goto yy61; - } -yy354: -#line 404 "src/parser.re" - { NEWTOKEN(PSI_T_CHAR); goto start; } -#line 4389 "src/parser.c" -yy355: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 't': goto yy424; - default: goto yy62; - } -yy356: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 'l': goto yy426; - default: goto yy62; - } -yy357: - yyaccept = 24; - yych = *(mrk = ++cur); - switch (yych) { - case 0x00: - case 0x01: - case 0x02: - case 0x03: - case 0x04: - case 0x05: - case 0x06: - case 0x07: - case 0x08: - case '\t': - case '\n': - case '\v': - case '\f': - case '\r': - case 0x0E: - case 0x0F: - case 0x10: - case 0x11: - case 0x12: - case 0x13: - case 0x14: - case 0x15: - case 0x16: - case 0x17: - case 0x18: - case 0x19: - case 0x1A: - case 0x1B: - case 0x1C: - case 0x1D: - case 0x1E: - case 0x1F: - case ' ': - case '!': - case '"': - case '#': - case '$': - case '%': - case '&': - case '\'': - case '(': - case ')': - case '*': - case '+': - case ',': - case '-': - case '.': - case '/': - case ':': - case ';': - case '<': - case '=': - case '>': - case '?': - case '@': - case '[': - case ']': - case '^': - case '`': - case '{': - case '|': - case '}': - case '~': - case 0x7F: goto yy358; - case '\\': goto yy148; - default: goto yy61; - } -yy358: -#line 400 "src/parser.re" - { NEWTOKEN(PSI_T_ENUM); goto start; } -#line 4478 "src/parser.c" -yy359: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 'T': goto yy391; - case 't': goto yy427; - default: goto yy62; - } -yy360: - yyaccept = 25; - yych = *(mrk = ++cur); - switch (yych) { - case 0x00: - case 0x01: - case 0x02: - case 0x03: - case 0x04: - case 0x05: - case 0x06: - case 0x07: - case 0x08: - case '\t': - case '\n': - case '\v': - case '\f': - case '\r': - case 0x0E: - case 0x0F: - case 0x10: - case 0x11: - case 0x12: - case 0x13: - case 0x14: - case 0x15: - case 0x16: - case 0x17: - case 0x18: - case 0x19: - case 0x1A: - case 0x1B: - case 0x1C: - case 0x1D: - case 0x1E: - case 0x1F: - case ' ': - case '!': - case '"': - case '#': - case '$': - case '%': - case '&': - case '\'': - case '(': - case ')': - case '*': - case '+': - case ',': - case '-': - case '.': - case '/': - case ':': - case ';': - case '<': - case '=': - case '>': - case '?': - case '@': - case '[': - case ']': - case '^': - case '`': - case '{': - case '|': - case '}': - case '~': - case 0x7F: goto yy361; - case '\\': goto yy148; - default: goto yy61; - } -yy361: -#line 396 "src/parser.re" - { NEWTOKEN(PSI_T_LINE); goto start; } -#line 4561 "src/parser.c" -yy362: - yyaccept = 26; - yych = *(mrk = ++cur); - switch (yych) { - case 0x00: - case 0x01: - case 0x02: - case 0x03: - case 0x04: - case 0x05: - case 0x06: - case 0x07: - case 0x08: - case '\t': - case '\n': - case '\v': - case '\f': - case '\r': - case 0x0E: - case 0x0F: - case 0x10: - case 0x11: - case 0x12: - case 0x13: - case 0x14: - case 0x15: - case 0x16: - case 0x17: - case 0x18: - case 0x19: - case 0x1A: - case 0x1B: - case 0x1C: - case 0x1D: - case 0x1E: - case 0x1F: - case ' ': - case '!': - case '"': - case '#': - case '$': - case '%': - case '&': - case '\'': - case '(': - case ')': - case '*': - case '+': - case ',': - case '-': - case '.': - case '/': - case ':': - case ';': - case '<': - case '=': - case '>': - case '?': - case '@': - case '[': - case ']': - case '^': - case '`': - case '{': - case '|': - case '}': - case '~': - case 0x7F: goto yy363; - case '\\': goto yy148; - default: goto yy61; - } -yy363: -#line 407 "src/parser.re" - { NEWTOKEN(PSI_T_LONG); goto start; } -#line 4636 "src/parser.c" -yy364: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 'm': goto yy429; - default: goto yy62; - } -yy365: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 't': goto yy430; - default: goto yy62; - } -yy366: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 'e': goto yy432; - default: goto yy62; - } -yy367: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 'o': goto yy433; - default: goto yy62; - } -yy368: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 'c': goto yy434; - default: goto yy62; - } -yy369: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 'd': goto yy435; - default: goto yy62; - } -yy370: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 'n': goto yy436; - default: goto yy62; - } -yy371: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 'g': goto yy438; - default: goto yy62; - } -yy372: - yyaccept = 27; - yych = *(mrk = ++cur); - switch (yych) { - case 0x00: - case 0x01: - case 0x02: - case 0x03: - case 0x04: - case 0x05: - case 0x06: - case 0x07: - case 0x08: - case '\t': - case '\n': - case '\v': - case '\f': - case '\r': - case 0x0E: - case 0x0F: - case 0x10: - case 0x11: - case 0x12: - case 0x13: - case 0x14: - case 0x15: - case 0x16: - case 0x17: - case 0x18: - case 0x19: - case 0x1A: - case 0x1B: - case 0x1C: - case 0x1D: - case 0x1E: - case 0x1F: - case ' ': - case '!': - case '"': - case '#': - case '$': - case '%': - case '&': - case '\'': - case '(': - case ')': - case '*': - case '+': - case ',': - case '-': - case '.': - case '/': - case ':': - case ';': - case '<': - case '=': - case '>': - case '?': - case '@': - case '[': - case ']': - case '^': - case '`': - case '{': - case '|': - case '}': - case '~': - case 0x7F: goto yy373; - case '\\': goto yy148; - default: goto yy61; - } -yy373: -#line 402 "src/parser.re" - { NEWTOKEN(PSI_T_VOID); goto start; } -#line 4767 "src/parser.c" -yy374: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 't': goto yy439; - default: goto yy62; - } -yy375: - yyaccept = 28; - yych = *(mrk = ++cur); - switch (yych) { - case 0x00: - case 0x01: - case 0x02: - case 0x03: - case 0x04: - case 0x05: - case 0x06: - case 0x07: - case 0x08: - case '\t': - case '\n': - case '\v': - case '\f': - case '\r': - case 0x0E: - case 0x0F: - case 0x10: - case 0x11: - case 0x12: - case 0x13: - case 0x14: - case 0x15: - case 0x16: - case 0x17: - case 0x18: - case 0x19: - case 0x1A: - case 0x1B: - case 0x1C: - case 0x1D: - case 0x1E: - case 0x1F: - case ' ': - case '!': - case '"': - case '#': - case '$': - case '%': - case '&': - case '\'': - case '(': - case ')': - case '*': - case '+': - case ',': - case '-': - case '.': - case '/': - case ':': - case ';': - case '<': - case '=': - case '>': - case '?': - case '@': - case '[': - case ']': - case '^': - case '`': - case '{': - case '|': - case '}': - case '~': - case 0x7F: goto yy376; - case '\\': goto yy148; - default: goto yy61; - } -yy376: -#line 431 "src/parser.re" - { NEWTOKEN(PSI_T_ARRAY); goto start; } -#line 4849 "src/parser.c" -yy377: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 'L': - case 'l': goto yy440; - default: goto yy62; - } -yy378: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 'A': - case 'a': goto yy442; - default: goto yy62; - } -yy379: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 'B': - case 'b': goto yy443; - default: goto yy62; - } -yy380: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 'A': - case 'a': goto yy444; - default: goto yy62; - } -yy381: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 'C': - case 'c': goto yy445; - default: goto yy62; - } -yy382: - yyaccept = 29; - yych = *(mrk = ++cur); - switch (yych) { - case 0x00: - case 0x01: - case 0x02: - case 0x03: - case 0x04: - case 0x05: - case 0x06: - case 0x07: - case 0x08: - case '\t': - case '\n': - case '\v': - case '\f': - case '\r': - case 0x0E: - case 0x0F: - case 0x10: - case 0x11: - case 0x12: - case 0x13: - case 0x14: - case 0x15: - case 0x16: - case 0x17: - case 0x18: - case 0x19: - case 0x1A: - case 0x1B: - case 0x1C: - case 0x1D: - case 0x1E: - case 0x1F: - case ' ': - case '!': - case '"': - case '#': - case '$': - case '%': - case '&': - case '\'': - case '(': - case ')': - case '*': - case '+': - case ',': - case '-': - case '.': - case '/': - case ':': - case ';': - case '<': - case '=': - case '>': - case '?': - case '@': - case '[': - case ']': - case '^': - case '`': - case '{': - case '|': - case '}': - case '~': - case 0x7F: goto yy383; - case '\\': goto yy148; - default: goto yy61; - } -yy383: -#line 454 "src/parser.re" - { NEWTOKEN(PSI_T_COUNT); goto start; } -#line 4964 "src/parser.c" -yy384: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 'E': - case 'e': goto yy447; - default: goto yy62; - } -yy385: - yyaccept = 30; - yych = *(mrk = ++cur); - switch (yych) { - case 0x00: - case 0x01: - case 0x02: - case 0x03: - case 0x04: - case 0x05: - case 0x06: - case 0x07: - case 0x08: - case '\t': - case '\n': - case '\v': - case '\f': - case '\r': - case 0x0E: - case 0x0F: - case 0x10: - case 0x11: - case 0x12: - case 0x13: - case 0x14: - case 0x15: - case 0x16: - case 0x17: - case 0x18: - case 0x19: - case 0x1A: - case 0x1B: - case 0x1C: - case 0x1D: - case 0x1E: - case 0x1F: - case ' ': - case '!': - case '"': - case '#': - case '$': - case '%': - case '&': - case '\'': - case '(': - case ')': - case '*': - case '+': - case ',': - case '-': - case '.': - case '/': - case ':': - case ';': - case '<': - case '=': - case '>': - case '?': - case '@': - case '[': - case ']': - case '^': - case '`': - case '{': - case '|': - case '}': - case '~': - case 0x7F: goto yy386; - case '\\': goto yy148; - default: goto yy61; - } -yy386: -#line 417 "src/parser.re" - { NEWTOKEN(PSI_T_ENDIF); goto start; } -#line 5047 "src/parser.c" -yy387: - yyaccept = 31; - yych = *(mrk = ++cur); - switch (yych) { - case 0x00: - case 0x01: - case 0x02: - case 0x03: - case 0x04: - case 0x05: - case 0x06: - case 0x07: - case 0x08: - case '\t': - case '\n': - case '\v': - case '\f': - case '\r': - case 0x0E: - case 0x0F: - case 0x10: - case 0x11: - case 0x12: - case 0x13: - case 0x14: - case 0x15: - case 0x16: - case 0x17: - case 0x18: - case 0x19: - case 0x1A: - case 0x1B: - case 0x1C: - case 0x1D: - case 0x1E: - case 0x1F: - case ' ': - case '!': - case '"': - case '#': - case '$': - case '%': - case '&': - case '\'': - case '(': - case ')': - case '*': - case '+': - case ',': - case '-': - case '.': - case '/': - case ':': - case ';': - case '<': - case '=': - case '>': - case '?': - case '@': - case '[': - case ']': - case '^': - case '`': - case '{': - case '|': - case '}': - case '~': - case 0x7F: goto yy388; - case '\\': goto yy148; - default: goto yy61; - } -yy388: -#line 422 "src/parser.re" - { NEWTOKEN(PSI_T_ERROR); goto start; } -#line 5122 "src/parser.c" -yy389: - yyaccept = 32; - yych = *(mrk = ++cur); - switch (yych) { - case 0x00: - case 0x01: - case 0x02: - case 0x03: - case 0x04: - case 0x05: - case 0x06: - case 0x07: - case 0x08: - case '\t': - case '\n': - case '\v': - case '\f': - case '\r': - case 0x0E: - case 0x0F: - case 0x10: - case 0x11: - case 0x12: - case 0x13: - case 0x14: - case 0x15: - case 0x16: - case 0x17: - case 0x18: - case 0x19: - case 0x1A: - case 0x1B: - case 0x1C: - case 0x1D: - case 0x1E: - case 0x1F: - case ' ': - case '!': - case '"': - case '#': - case '$': - case '%': - case '&': - case '\'': - case '(': - case ')': - case '*': - case '+': - case ',': - case '-': - case '.': - case '/': - case ':': - case ';': - case '<': - case '=': - case '>': - case '?': - case '@': - case '[': - case ']': - case '^': - case '`': - case '{': - case '|': - case '}': - case '~': - case 0x7F: goto yy390; - case '\\': goto yy148; - default: goto yy61; - } -yy390: -#line 426 "src/parser.re" - { NEWTOKEN(PSI_T_FALSE); goto start; } -#line 5197 "src/parser.c" -yy391: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 'V': - case 'v': goto yy449; - default: goto yy62; - } -yy392: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 'I': - case 'i': goto yy450; - default: goto yy62; - } -yy393: - yyaccept = 33; - yych = *(mrk = ++cur); - switch (yych) { - case 0x00: - case 0x01: - case 0x02: - case 0x03: - case 0x04: - case 0x05: - case 0x06: - case 0x07: - case 0x08: - case '\t': - case '\n': - case '\v': - case '\f': - case '\r': - case 0x0E: - case 0x0F: - case 0x10: - case 0x11: - case 0x12: - case 0x13: - case 0x14: - case 0x15: - case 0x16: - case 0x17: - case 0x18: - case 0x19: - case 0x1A: - case 0x1B: - case 0x1C: - case 0x1D: - case 0x1E: - case 0x1F: - case ' ': - case '!': - case '"': - case '#': - case '$': - case '%': - case '&': - case '\'': - case '(': - case ')': - case '*': - case '+': - case ',': - case '-': - case '.': - case '/': - case ':': - case ';': - case '<': - case '=': - case '>': - case '?': - case '@': - case '[': - case ']': - case '^': - case '`': - case '{': - case '|': - case '}': - case '~': - case 0x7F: goto yy394; - case '\\': goto yy148; - default: goto yy61; - } -yy394: -#line 413 "src/parser.re" - { NEWTOKEN(PSI_T_IFDEF); goto start; } -#line 5288 "src/parser.c" -yy395: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 'F': - case 'f': goto yy451; - default: goto yy62; - } -yy396: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 'D': - case 'd': goto yy453; - default: goto yy62; - } -yy397: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 'L': - case 'l': goto yy454; - default: goto yy62; - } -yy398: - yyaccept = 34; - yych = *(mrk = ++cur); - switch (yych) { - case 0x00: - case 0x01: - case 0x02: - case 0x03: - case 0x04: - case 0x05: - case 0x06: - case 0x07: - case 0x08: - case '\t': - case '\n': - case '\v': - case '\f': - case '\r': - case 0x0E: - case 0x0F: - case 0x10: - case 0x11: - case 0x12: - case 0x13: - case 0x14: - case 0x15: - case 0x16: - case 0x17: - case 0x18: - case 0x19: - case 0x1A: - case 0x1B: - case 0x1C: - case 0x1D: - case 0x1E: - case 0x1F: - case ' ': - case '!': - case '"': - case '#': - case '$': - case '%': - case '&': - case '\'': - case '(': - case ')': - case '*': - case '+': - case ',': - case '-': - case '.': - case '/': - case ':': - case ';': - case '<': - case '=': - case '>': - case '?': - case '@': - case '[': - case ']': - case '^': - case '`': - case '{': - case '|': - case '}': - case '~': - case 0x7F: goto yy399; - case '\\': goto yy148; - default: goto yy61; - } -yy399: -#line 428 "src/parser.re" - { NEWTOKEN(PSI_T_MIXED); goto start; } -#line 5387 "src/parser.c" -yy400: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 'T': - case 't': goto yy456; - default: goto yy62; - } -yy401: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 'L': - case 'l': goto yy458; - default: goto yy62; - } -yy402: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 'A': - case 'a': goto yy460; - default: goto yy62; - } -yy403: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 'A': - case 'a': goto yy461; - default: goto yy62; - } -yy404: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 'S': - case 's': goto yy462; - default: goto yy62; - } -yy405: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 'N': - case 'n': goto yy463; - default: goto yy62; - } -yy406: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 'C': - case 'c': goto yy465; - default: goto yy62; - } -yy407: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 'G': - case 'g': goto yy467; - default: goto yy62; - } -yy408: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 'N': - case 'n': goto yy469; - default: goto yy62; - } -yy409: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 'L': - case 'l': goto yy471; - default: goto yy62; - } -yy410: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 'R': - case 'r': goto yy473; - default: goto yy62; - } -yy411: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 'O': - case 'o': goto yy474; - default: goto yy62; - } -yy412: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 'O': - case 'o': goto yy475; - default: goto yy62; - } -yy413: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 'T': - case 't': goto yy476; - default: goto yy62; - } -yy414: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 'J': - case 'j': goto yy478; - default: goto yy62; - } -yy415: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 'R': - case 'r': goto yy479; - default: goto yy62; - } -yy416: - yyaccept = 35; - yych = *(mrk = ++cur); - switch (yych) { - case 0x00: - case 0x01: - case 0x02: - case 0x03: - case 0x04: - case 0x05: - case 0x06: - case 0x07: - case 0x08: - case '\t': - case '\n': - case '\v': - case '\f': - case '\r': - case 0x0E: - case 0x0F: - case 0x10: - case 0x11: - case 0x12: - case 0x13: - case 0x14: - case 0x15: - case 0x16: - case 0x17: - case 0x18: - case 0x19: - case 0x1A: - case 0x1B: - case 0x1C: - case 0x1D: - case 0x1E: - case 0x1F: - case ' ': - case '!': - case '"': - case '#': - case '$': - case '%': - case '&': - case '\'': - case '(': - case ')': - case '*': - case '+': - case ',': - case '-': - case '.': - case '/': - case ':': - case ';': - case '<': - case '=': - case '>': - case '?': - case '@': - case '[': - case ']': - case '^': - case '`': - case '{': - case '|': - case '}': - case '~': - case 0x7F: goto yy417; - case '\\': goto yy148; - default: goto yy61; - } -yy417: -#line 420 "src/parser.re" - { NEWTOKEN(PSI_T_UNDEF); goto start; } -#line 5590 "src/parser.c" -yy418: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 'N': - case 'n': goto yy480; - default: goto yy62; - } -yy419: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case '_': goto yy481; - default: goto yy62; - } -yy420: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 'r': goto yy482; - default: goto yy62; - } -yy421: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 'e': goto yy483; - default: goto yy62; - } -yy422: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 'i': goto yy484; - default: goto yy62; - } -yy423: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 't': goto yy485; - default: goto yy62; - } -yy424: - yyaccept = 36; - yych = *(mrk = ++cur); - switch (yych) { - case 0x00: - case 0x01: - case 0x02: - case 0x03: - case 0x04: - case 0x05: - case 0x06: - case 0x07: - case 0x08: - case '\t': - case '\n': - case '\v': - case '\f': - case '\r': - case 0x0E: - case 0x0F: - case 0x10: - case 0x11: - case 0x12: - case 0x13: - case 0x14: - case 0x15: - case 0x16: - case 0x17: - case 0x18: - case 0x19: - case 0x1A: - case 0x1B: - case 0x1C: - case 0x1D: - case 0x1E: - case 0x1F: - case ' ': - case '!': - case '"': - case '#': - case '$': - case '%': - case '&': - case '\'': - case '(': - case ')': - case '*': - case '+': - case ',': - case '-': - case '.': - case '/': - case ':': - case ';': - case '<': - case '=': - case '>': - case '?': - case '@': - case '[': - case ']': - case '^': - case '`': - case '{': - case '|': - case '}': - case '~': - case 0x7F: goto yy425; - case '\\': goto yy148; - default: goto yy61; - } -yy425: -#line 401 "src/parser.re" - { NEWTOKEN(PSI_T_CONST); goto start; } -#line 5708 "src/parser.c" -yy426: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 'e': goto yy486; - default: goto yy62; - } -yy427: - yyaccept = 37; - yych = *(mrk = ++cur); - switch (yych) { - case 0x00: - case 0x01: - case 0x02: - case 0x03: - case 0x04: - case 0x05: - case 0x06: - case 0x07: - case 0x08: - case '\t': - case '\n': - case '\v': - case '\f': - case '\r': - case 0x0E: - case 0x0F: - case 0x10: - case 0x11: - case 0x12: - case 0x13: - case 0x14: - case 0x15: - case 0x16: - case 0x17: - case 0x18: - case 0x19: - case 0x1A: - case 0x1B: - case 0x1C: - case 0x1D: - case 0x1E: - case 0x1F: - case ' ': - case '!': - case '"': - case '#': - case '$': - case '%': - case '&': - case '\'': - case '(': - case ')': - case '*': - case '+': - case ',': - case '-': - case '.': - case '/': - case ':': - case ';': - case '<': - case '=': - case '>': - case '?': - case '@': - case '[': - case ']': - case '^': - case '`': - case '{': - case '|': - case '}': - case '~': - case 0x7F: goto yy428; - case 'V': - case 'v': goto yy449; - case '\\': goto yy148; - default: goto yy61; - } -yy428: -#line 408 "src/parser.re" - { NEWTOKEN(PSI_T_FLOAT); goto start; } -#line 5792 "src/parser.c" -yy429: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 'a': goto yy488; - default: goto yy62; - } -yy430: - yyaccept = 38; - yych = *(mrk = ++cur); - switch (yych) { - case 0x00: - case 0x01: - case 0x02: - case 0x03: - case 0x04: - case 0x05: - case 0x06: - case 0x07: - case 0x08: - case '\t': - case '\n': - case '\v': - case '\f': - case '\r': - case 0x0E: - case 0x0F: - case 0x10: - case 0x11: - case 0x12: - case 0x13: - case 0x14: - case 0x15: - case 0x16: - case 0x17: - case 0x18: - case 0x19: - case 0x1A: - case 0x1B: - case 0x1C: - case 0x1D: - case 0x1E: - case 0x1F: - case ' ': - case '!': - case '"': - case '#': - case '$': - case '%': - case '&': - case '\'': - case '(': - case ')': - case '*': - case '+': - case ',': - case '-': - case '.': - case '/': - case ':': - case ';': - case '<': - case '=': - case '>': - case '?': - case '@': - case '[': - case ']': - case '^': - case '`': - case '{': - case '|': - case '}': - case '~': - case 0x7F: goto yy431; - case '\\': goto yy148; - default: goto yy61; - } -yy431: -#line 405 "src/parser.re" - { NEWTOKEN(PSI_T_SHORT); goto start; } -#line 5874 "src/parser.c" -yy432: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 'd': goto yy490; - default: goto yy62; - } -yy433: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 'f': goto yy492; - default: goto yy62; - } -yy434: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 't': goto yy494; - default: goto yy62; - } -yy435: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 'e': goto yy496; - default: goto yy62; - } -yy436: - yyaccept = 39; - yych = *(mrk = ++cur); - switch (yych) { - case 0x00: - case 0x01: - case 0x02: - case 0x03: - case 0x04: - case 0x05: - case 0x06: - case 0x07: - case 0x08: - case '\t': - case '\n': - case '\v': - case '\f': - case '\r': - case 0x0E: - case 0x0F: - case 0x10: - case 0x11: - case 0x12: - case 0x13: - case 0x14: - case 0x15: - case 0x16: - case 0x17: - case 0x18: - case 0x19: - case 0x1A: - case 0x1B: - case 0x1C: - case 0x1D: - case 0x1E: - case 0x1F: - case ' ': - case '!': - case '"': - case '#': - case '$': - case '%': - case '&': - case '\'': - case '(': - case ')': - case '*': - case '+': - case ',': - case '-': - case '.': - case '/': - case ':': - case ';': - case '<': - case '=': - case '>': - case '?': - case '@': - case '[': - case ']': - case '^': - case '`': - case '{': - case '|': - case '}': - case '~': - case 0x7F: goto yy437; - case '\\': goto yy148; - default: goto yy61; - } -yy437: -#line 399 "src/parser.re" - { NEWTOKEN(PSI_T_UNION); goto start; } -#line 5977 "src/parser.c" -yy438: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 'n': goto yy497; - default: goto yy62; - } -yy439: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 'i': goto yy498; - default: goto yy62; - } -yy440: - yyaccept = 40; - yych = *(mrk = ++cur); - switch (yych) { - case 0x00: - case 0x01: - case 0x02: - case 0x03: - case 0x04: - case 0x05: - case 0x06: - case 0x07: - case 0x08: - case '\t': - case '\n': - case '\v': - case '\f': - case '\r': - case 0x0E: - case 0x0F: - case 0x10: - case 0x11: - case 0x12: - case 0x13: - case 0x14: - case 0x15: - case 0x16: - case 0x17: - case 0x18: - case 0x19: - case 0x1A: - case 0x1B: - case 0x1C: - case 0x1D: - case 0x1E: - case 0x1F: - case ' ': - case '!': - case '"': - case '#': - case '$': - case '%': - case '&': - case '\'': - case '(': - case ')': - case '*': - case '+': - case ',': - case '-': - case '.': - case '/': - case ':': - case ';': - case '<': - case '=': - case '>': - case '?': - case '@': - case '[': - case ']': - case '^': - case '`': - case '{': - case '|': - case '}': - case '~': - case 0x7F: goto yy441; - case '\\': goto yy148; - default: goto yy61; - } -yy441: -#line 451 "src/parser.re" - { NEWTOKEN(PSI_T_ARRVAL); goto start; } -#line 6066 "src/parser.c" -yy442: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 'L': - case 'l': goto yy499; - default: goto yy62; - } -yy443: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 'L': - case 'l': goto yy501; - default: goto yy62; - } -yy444: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 'C': - case 'c': goto yy502; - default: goto yy62; - } -yy445: - yyaccept = 41; - yych = *(mrk = ++cur); - switch (yych) { - case 0x00: - case 0x01: - case 0x02: - case 0x03: - case 0x04: - case 0x05: - case 0x06: - case 0x07: - case 0x08: - case '\t': - case '\n': - case '\v': - case '\f': - case '\r': - case 0x0E: - case 0x0F: - case 0x10: - case 0x11: - case 0x12: - case 0x13: - case 0x14: - case 0x15: - case 0x16: - case 0x17: - case 0x18: - case 0x19: - case 0x1A: - case 0x1B: - case 0x1C: - case 0x1D: - case 0x1E: - case 0x1F: - case ' ': - case '!': - case '"': - case '#': - case '$': - case '%': - case '&': - case '\'': - case '(': - case ')': - case '*': - case '+': - case ',': - case '-': - case '.': - case '/': - case ':': - case ';': - case '<': - case '=': - case '>': - case '?': - case '@': - case '[': - case ']': - case '^': - case '`': - case '{': - case '|': - case '}': - case '~': - case 0x7F: goto yy446; - case '\\': goto yy148; - default: goto yy61; - } -yy446: -#line 455 "src/parser.re" - { NEWTOKEN(PSI_T_CALLOC); goto start; } -#line 6165 "src/parser.c" -yy447: - yyaccept = 42; - yych = *(mrk = ++cur); - switch (yych) { - case 0x00: - case 0x01: - case 0x02: - case 0x03: - case 0x04: - case 0x05: - case 0x06: - case 0x07: - case 0x08: - case '\t': - case '\n': - case '\v': - case '\f': - case '\r': - case 0x0E: - case 0x0F: - case 0x10: - case 0x11: - case 0x12: - case 0x13: - case 0x14: - case 0x15: - case 0x16: - case 0x17: - case 0x18: - case 0x19: - case 0x1A: - case 0x1B: - case 0x1C: - case 0x1D: - case 0x1E: - case 0x1F: - case ' ': - case '!': - case '"': - case '#': - case '$': - case '%': - case '&': - case '\'': - case '(': - case ')': - case '*': - case '+': - case ',': - case '-': - case '.': - case '/': - case ':': - case ';': - case '<': - case '=': - case '>': - case '?': - case '@': - case '[': - case ']': - case '^': - case '`': - case '{': - case '|': - case '}': - case '~': - case 0x7F: goto yy448; - case 'D': - case 'd': goto yy503; - case '\\': goto yy148; - default: goto yy61; - } -yy448: -#line 418 "src/parser.re" - { NEWTOKEN(PSI_T_DEFINE); goto start; } -#line 6242 "src/parser.c" -yy449: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 'A': - case 'a': goto yy505; - default: goto yy62; - } -yy450: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 'O': - case 'o': goto yy506; - default: goto yy62; - } -yy451: - yyaccept = 43; - yych = *(mrk = ++cur); - switch (yych) { - case 0x00: - case 0x01: - case 0x02: - case 0x03: - case 0x04: - case 0x05: - case 0x06: - case 0x07: - case 0x08: - case '\t': - case '\n': - case '\v': - case '\f': - case '\r': - case 0x0E: - case 0x0F: - case 0x10: - case 0x11: - case 0x12: - case 0x13: - case 0x14: - case 0x15: - case 0x16: - case 0x17: - case 0x18: - case 0x19: - case 0x1A: - case 0x1B: - case 0x1C: - case 0x1D: - case 0x1E: - case 0x1F: - case ' ': - case '!': - case '"': - case '#': - case '$': - case '%': - case '&': - case '\'': - case '(': - case ')': - case '*': - case '+': - case ',': - case '-': - case '.': - case '/': - case ':': - case ';': - case '<': - case '=': - case '>': - case '?': - case '@': - case '[': - case ']': - case '^': - case '`': - case '{': - case '|': - case '}': - case '~': - case 0x7F: goto yy452; - case '\\': goto yy148; - default: goto yy61; - } -yy452: -#line 414 "src/parser.re" - { NEWTOKEN(PSI_T_IFNDEF); goto start; } -#line 6333 "src/parser.c" -yy453: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 'E': - case 'e': goto yy507; - default: goto yy62; - } -yy454: - yyaccept = 44; - yych = *(mrk = ++cur); - switch (yych) { - case 0x00: - case 0x01: - case 0x02: - case 0x03: - case 0x04: - case 0x05: - case 0x06: - case 0x07: - case 0x08: - case '\t': - case '\n': - case '\v': - case '\f': - case '\r': - case 0x0E: - case 0x0F: - case 0x10: - case 0x11: - case 0x12: - case 0x13: - case 0x14: - case 0x15: - case 0x16: - case 0x17: - case 0x18: - case 0x19: - case 0x1A: - case 0x1B: - case 0x1C: - case 0x1D: - case 0x1E: - case 0x1F: - case ' ': - case '!': - case '"': - case '#': - case '$': - case '%': - case '&': - case '\'': - case '(': - case ')': - case '*': - case '+': - case ',': - case '-': - case '.': - case '/': - case ':': - case ';': - case '<': - case '=': - case '>': - case '?': - case '@': - case '[': - case ']': - case '^': - case '`': - case '{': - case '|': - case '}': - case '~': - case 0x7F: goto yy455; - case '\\': goto yy148; - default: goto yy61; - } -yy455: -#line 448 "src/parser.re" - { NEWTOKEN(PSI_T_INTVAL); goto start; } -#line 6416 "src/parser.c" -yy456: - yyaccept = 45; - yych = *(mrk = ++cur); - switch (yych) { - case 0x00: - case 0x01: - case 0x02: - case 0x03: - case 0x04: - case 0x05: - case 0x06: - case 0x07: - case 0x08: - case '\t': - case '\n': - case '\v': - case '\f': - case '\r': - case 0x0E: - case 0x0F: - case 0x10: - case 0x11: - case 0x12: - case 0x13: - case 0x14: - case 0x15: - case 0x16: - case 0x17: - case 0x18: - case 0x19: - case 0x1A: - case 0x1B: - case 0x1C: - case 0x1D: - case 0x1E: - case 0x1F: - case ' ': - case '!': - case '"': - case '#': - case '$': - case '%': - case '&': - case '\'': - case '(': - case ')': - case '*': - case '+': - case ',': - case '-': - case '.': - case '/': - case ':': - case ';': - case '<': - case '=': - case '>': - case '?': - case '@': - case '[': - case ']': - case '^': - case '`': - case '{': - case '|': - case '}': - case '~': - case 0x7F: goto yy457; - case '\\': goto yy148; - default: goto yy61; - } -yy457: -#line 432 "src/parser.re" - { NEWTOKEN(PSI_T_OBJECT); goto start; } -#line 6491 "src/parser.c" -yy458: - yyaccept = 46; - yych = *(mrk = ++cur); - switch (yych) { - case 0x00: - case 0x01: - case 0x02: - case 0x03: - case 0x04: - case 0x05: - case 0x06: - case 0x07: - case 0x08: - case '\t': - case '\n': - case '\v': - case '\f': - case '\r': - case 0x0E: - case 0x0F: - case 0x10: - case 0x11: - case 0x12: - case 0x13: - case 0x14: - case 0x15: - case 0x16: - case 0x17: - case 0x18: - case 0x19: - case 0x1A: - case 0x1B: - case 0x1C: - case 0x1D: - case 0x1E: - case 0x1F: - case ' ': - case '!': - case '"': - case '#': - case '$': - case '%': - case '&': - case '\'': - case '(': - case ')': - case '*': - case '+': - case ',': - case '-': - case '.': - case '/': - case ':': - case ';': - case '<': - case '=': - case '>': - case '?': - case '@': - case '[': - case ']': - case '^': - case '`': - case '{': - case '|': - case '}': - case '~': - case 0x7F: goto yy459; - case '\\': goto yy148; - default: goto yy61; - } -yy459: -#line 452 "src/parser.re" - { NEWTOKEN(PSI_T_OBJVAL); goto start; } -#line 6566 "src/parser.c" -yy460: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 'L': - case 'l': goto yy509; - default: goto yy62; - } -yy461: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 'S': - case 's': goto yy511; - default: goto yy62; - } -yy462: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 'S': - case 's': goto yy512; - default: goto yy62; - } -yy463: - yyaccept = 47; - yych = *(mrk = ++cur); - switch (yych) { - case 0x00: - case 0x01: - case 0x02: - case 0x03: - case 0x04: - case 0x05: - case 0x06: - case 0x07: - case 0x08: - case '\t': - case '\n': - case '\v': - case '\f': - case '\r': - case 0x0E: - case 0x0F: - case 0x10: - case 0x11: - case 0x12: - case 0x13: - case 0x14: - case 0x15: - case 0x16: - case 0x17: - case 0x18: - case 0x19: - case 0x1A: - case 0x1B: - case 0x1C: - case 0x1D: - case 0x1E: - case 0x1F: - case ' ': - case '!': - case '"': - case '#': - case '$': - case '%': - case '&': - case '\'': - case '(': - case ')': - case '*': - case '+': - case ',': - case '-': - case '.': - case '/': - case ':': - case ';': - case '<': - case '=': - case '>': - case '?': - case '@': - case '[': - case ']': - case '^': - case '`': - case '{': - case '|': - case '}': - case '~': - case 0x7F: goto yy464; - case '\\': goto yy148; - default: goto yy61; - } -yy464: -#line 441 "src/parser.re" - { NEWTOKEN(PSI_T_RETURN); goto start; } -#line 6665 "src/parser.c" -yy465: - yyaccept = 48; - yych = *(mrk = ++cur); - switch (yych) { - case 0x00: - case 0x01: - case 0x02: - case 0x03: - case 0x04: - case 0x05: - case 0x06: - case 0x07: - case 0x08: - case '\t': - case '\n': - case '\v': - case '\f': - case '\r': - case 0x0E: - case 0x0F: - case 0x10: - case 0x11: - case 0x12: - case 0x13: - case 0x14: - case 0x15: - case 0x16: - case 0x17: - case 0x18: - case 0x19: - case 0x1A: - case 0x1B: - case 0x1C: - case 0x1D: - case 0x1E: - case 0x1F: - case ' ': - case '!': - case '"': - case '#': - case '$': - case '%': - case '&': - case '\'': - case '(': - case ')': - case '*': - case '+': - case ',': - case '-': - case '.': - case '/': - case ':': - case ';': - case '<': - case '=': - case '>': - case '?': - case '@': - case '[': - case ']': - case '^': - case '`': - case '{': - case '|': - case '}': - case '~': - case 0x7F: goto yy466; - case '\\': goto yy148; - default: goto yy61; - } -yy466: -#line 434 "src/parser.re" - { NEWTOKEN(PSI_T_STATIC); goto start; } -#line 6740 "src/parser.c" -yy467: - yyaccept = 49; - yych = *(mrk = ++cur); - switch (yych) { - case 0x00: - case 0x01: - case 0x02: - case 0x03: - case 0x04: - case 0x05: - case 0x06: - case 0x07: - case 0x08: - case '\t': - case '\n': - case '\v': - case '\f': - case '\r': - case 0x0E: - case 0x0F: - case 0x10: - case 0x11: - case 0x12: - case 0x13: - case 0x14: - case 0x15: - case 0x16: - case 0x17: - case 0x18: - case 0x19: - case 0x1A: - case 0x1B: - case 0x1C: - case 0x1D: - case 0x1E: - case 0x1F: - case ' ': - case '!': - case '"': - case '#': - case '$': - case '%': - case '&': - case '\'': - case '(': - case ')': - case '*': - case '+': - case ',': - case '-': - case '.': - case '/': - case ':': - case ';': - case '<': - case '=': - case '>': - case '?': - case '@': - case '[': - case ']': - case '^': - case '`': - case '{': - case '|': - case '}': - case '~': - case 0x7F: goto yy468; - case '\\': goto yy148; - default: goto yy61; - } -yy468: -#line 430 "src/parser.re" - { NEWTOKEN(PSI_T_STRING); goto start; } -#line 6815 "src/parser.c" -yy469: - yyaccept = 50; - yych = *(mrk = ++cur); - switch (yych) { - case 0x00: - case 0x01: - case 0x02: - case 0x03: - case 0x04: - case 0x05: - case 0x06: - case 0x07: - case 0x08: - case '\t': - case '\n': - case '\v': - case '\f': - case '\r': - case 0x0E: - case 0x0F: - case 0x10: - case 0x11: - case 0x12: - case 0x13: - case 0x14: - case 0x15: - case 0x16: - case 0x17: - case 0x18: - case 0x19: - case 0x1A: - case 0x1B: - case 0x1C: - case 0x1D: - case 0x1E: - case 0x1F: - case ' ': - case '!': - case '"': - case '#': - case '$': - case '%': - case '&': - case '\'': - case '(': - case ')': - case '*': - case '+': - case ',': - case '-': - case '.': - case '/': - case ':': - case ';': - case '<': - case '=': - case '>': - case '?': - case '@': - case '[': - case ']': - case '^': - case '`': - case '{': - case '|': - case '}': - case '~': - case 0x7F: goto yy470; - case '\\': goto yy148; - default: goto yy61; - } -yy470: -#line 445 "src/parser.re" - { NEWTOKEN(PSI_T_STRLEN); goto start; } -#line 6890 "src/parser.c" -yy471: - yyaccept = 51; - yych = *(mrk = ++cur); - switch (yych) { - case 0x00: - case 0x01: - case 0x02: - case 0x03: - case 0x04: - case 0x05: - case 0x06: - case 0x07: - case 0x08: - case '\t': - case '\n': - case '\v': - case '\f': - case '\r': - case 0x0E: - case 0x0F: - case 0x10: - case 0x11: - case 0x12: - case 0x13: - case 0x14: - case 0x15: - case 0x16: - case 0x17: - case 0x18: - case 0x19: - case 0x1A: - case 0x1B: - case 0x1C: - case 0x1D: - case 0x1E: - case 0x1F: - case ' ': - case '!': - case '"': - case '#': - case '$': - case '%': - case '&': - case '\'': - case '(': - case ')': - case '*': - case '+': - case ',': - case '-': - case '.': - case '/': - case ':': - case ';': - case '<': - case '=': - case '>': - case '?': - case '@': - case '[': - case ']': - case '^': - case '`': - case '{': - case '|': - case '}': - case '~': - case 0x7F: goto yy472; - case '\\': goto yy148; - default: goto yy61; - } -yy472: -#line 446 "src/parser.re" - { NEWTOKEN(PSI_T_STRVAL); goto start; } -#line 6965 "src/parser.c" -yy473: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 'A': - case 'a': goto yy513; - default: goto yy62; - } -yy474: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 'L': - case 'l': goto yy514; - default: goto yy62; - } -yy475: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 'A': - case 'a': goto yy516; - default: goto yy62; - } -yy476: - yyaccept = 52; - yych = *(mrk = ++cur); - switch (yych) { - case 0x00: - case 0x01: - case 0x02: - case 0x03: - case 0x04: - case 0x05: - case 0x06: - case 0x07: - case 0x08: - case '\t': - case '\n': - case '\v': - case '\f': - case '\r': - case 0x0E: - case 0x0F: - case 0x10: - case 0x11: - case 0x12: - case 0x13: - case 0x14: - case 0x15: - case 0x16: - case 0x17: - case 0x18: - case 0x19: - case 0x1A: - case 0x1B: - case 0x1C: - case 0x1D: - case 0x1E: - case 0x1F: - case ' ': - case '!': - case '"': - case '#': - case '$': - case '%': - case '&': - case '\'': - case '(': - case ')': - case '*': - case '+': - case ',': - case '-': - case '.': - case '/': - case ':': - case ';': - case '<': - case '=': - case '>': - case '?': - case '@': - case '[': - case ']': - case '^': - case '`': - case '{': - case '|': - case '}': - case '~': - case 0x7F: goto yy477; - case '\\': goto yy148; - default: goto yy61; - } -yy477: -#line 459 "src/parser.re" - { NEWTOKEN(PSI_T_TO_INT); goto start; } -#line 7064 "src/parser.c" -yy478: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 'E': - case 'e': goto yy517; - default: goto yy62; - } -yy479: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 'I': - case 'i': goto yy518; - default: goto yy62; - } -yy480: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 'G': - case 'g': goto yy519; - default: goto yy62; - } -yy481: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case '_': goto yy521; - default: goto yy62; - } -yy482: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 'i': goto yy523; - default: goto yy62; - } -yy483: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 'n': goto yy524; - default: goto yy62; - } -yy484: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 'n': goto yy525; - default: goto yy62; - } -yy485: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 'r': goto yy526; - default: goto yy62; - } -yy486: - yyaccept = 53; - yych = *(mrk = ++cur); - switch (yych) { - case 0x00: - case 0x01: - case 0x02: - case 0x03: - case 0x04: - case 0x05: - case 0x06: - case 0x07: - case 0x08: - case '\t': - case '\n': - case '\v': - case '\f': - case '\r': - case 0x0E: - case 0x0F: - case 0x10: - case 0x11: - case 0x12: - case 0x13: - case 0x14: - case 0x15: - case 0x16: - case 0x17: - case 0x18: - case 0x19: - case 0x1A: - case 0x1B: - case 0x1C: - case 0x1D: - case 0x1E: - case 0x1F: - case ' ': - case '!': - case '"': - case '#': - case '$': - case '%': - case '&': - case '\'': - case '(': - case ')': - case '*': - case '+': - case ',': - case '-': - case '.': - case '/': - case ':': - case ';': - case '<': - case '=': - case '>': - case '?': - case '@': - case '[': - case ']': - case '^': - case '`': - case '{': - case '|': - case '}': - case '~': - case 0x7F: goto yy487; - case '\\': goto yy148; - default: goto yy61; - } -yy487: -#line 409 "src/parser.re" - { NEWTOKEN(PSI_T_DOUBLE); goto start; } -#line 7198 "src/parser.c" -yy488: - yyaccept = 54; - yych = *(mrk = ++cur); - switch (yych) { - case 0x00: - case 0x01: - case 0x02: - case 0x03: - case 0x04: - case 0x05: - case 0x06: - case 0x07: - case 0x08: - case '\t': - case '\n': - case '\v': - case '\f': - case '\r': - case 0x0E: - case 0x0F: - case 0x10: - case 0x11: - case 0x12: - case 0x13: - case 0x14: - case 0x15: - case 0x16: - case 0x17: - case 0x18: - case 0x19: - case 0x1A: - case 0x1B: - case 0x1C: - case 0x1D: - case 0x1E: - case 0x1F: - case ' ': - case '!': - case '"': - case '#': - case '$': - case '%': - case '&': - case '\'': - case '(': - case ')': - case '*': - case '+': - case ',': - case '-': - case '.': - case '/': - case ':': - case ';': - case '<': - case '=': - case '>': - case '?': - case '@': - case '[': - case ']': - case '^': - case '`': - case '{': - case '|': - case '}': - case '~': - case 0x7F: goto yy489; - case '\\': goto yy148; - default: goto yy527; - } -yy489: -#line 388 "src/parser.re" - { NEWTOKEN(PSI_T_PRAGMA); goto start; } -#line 7273 "src/parser.c" -yy490: - yyaccept = 55; - yych = *(mrk = ++cur); - switch (yych) { - case 0x00: - case 0x01: - case 0x02: - case 0x03: - case 0x04: - case 0x05: - case 0x06: - case 0x07: - case 0x08: - case '\t': - case '\n': - case '\v': - case '\f': - case '\r': - case 0x0E: - case 0x0F: - case 0x10: - case 0x11: - case 0x12: - case 0x13: - case 0x14: - case 0x15: - case 0x16: - case 0x17: - case 0x18: - case 0x19: - case 0x1A: - case 0x1B: - case 0x1C: - case 0x1D: - case 0x1E: - case 0x1F: - case ' ': - case '!': - case '"': - case '#': - case '$': - case '%': - case '&': - case '\'': - case '(': - case ')': - case '*': - case '+': - case ',': - case '-': - case '.': - case '/': - case ':': - case ';': - case '<': - case '=': - case '>': - case '?': - case '@': - case '[': - case ']': - case '^': - case '`': - case '{': - case '|': - case '}': - case '~': - case 0x7F: goto yy491; - case '\\': goto yy148; - default: goto yy61; - } -yy491: -#line 411 "src/parser.re" - { NEWTOKEN(PSI_T_SIGNED); goto start; } -#line 7348 "src/parser.c" -yy492: - yyaccept = 56; - yych = *(mrk = ++cur); - switch (yych) { - case 0x00: - case 0x01: - case 0x02: - case 0x03: - case 0x04: - case 0x05: - case 0x06: - case 0x07: - case 0x08: - case '\t': - case '\n': - case '\v': - case '\f': - case '\r': - case 0x0E: - case 0x0F: - case 0x10: - case 0x11: - case 0x12: - case 0x13: - case 0x14: - case 0x15: - case 0x16: - case 0x17: - case 0x18: - case 0x19: - case 0x1A: - case 0x1B: - case 0x1C: - case 0x1D: - case 0x1E: - case 0x1F: - case ' ': - case '!': - case '"': - case '#': - case '$': - case '%': - case '&': - case '\'': - case '(': - case ')': - case '*': - case '+': - case ',': - case '-': - case '.': - case '/': - case ':': - case ';': - case '<': - case '=': - case '>': - case '?': - case '@': - case '[': - case ']': - case '^': - case '`': - case '{': - case '|': - case '}': - case '~': - case 0x7F: goto yy493; - case '\\': goto yy148; - default: goto yy61; - } -yy493: -#line 395 "src/parser.re" - { NEWTOKEN(PSI_T_SIZEOF); goto start; } -#line 7423 "src/parser.c" -yy494: - yyaccept = 57; - yych = *(mrk = ++cur); - switch (yych) { - case 0x00: - case 0x01: - case 0x02: - case 0x03: - case 0x04: - case 0x05: - case 0x06: - case 0x07: - case 0x08: - case '\t': - case '\n': - case '\v': - case '\f': - case '\r': - case 0x0E: - case 0x0F: - case 0x10: - case 0x11: - case 0x12: - case 0x13: - case 0x14: - case 0x15: - case 0x16: - case 0x17: - case 0x18: - case 0x19: - case 0x1A: - case 0x1B: - case 0x1C: - case 0x1D: - case 0x1E: - case 0x1F: - case ' ': - case '!': - case '"': - case '#': - case '$': - case '%': - case '&': - case '\'': - case '(': - case ')': - case '*': - case '+': - case ',': - case '-': - case '.': - case '/': - case ':': - case ';': - case '<': - case '=': - case '>': - case '?': - case '@': - case '[': - case ']': - case '^': - case '`': - case '{': - case '|': - case '}': - case '~': - case 0x7F: goto yy495; - case '\\': goto yy148; - default: goto yy61; - } -yy495: -#line 398 "src/parser.re" - { NEWTOKEN(PSI_T_STRUCT); goto start; } -#line 7498 "src/parser.c" -yy496: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 'f': goto yy529; - default: goto yy62; - } -yy497: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 'e': goto yy531; - default: goto yy62; - } -yy498: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 'l': goto yy532; - default: goto yy62; - } -yy499: - yyaccept = 58; - yych = *(mrk = ++cur); - switch (yych) { - case 0x00: - case 0x01: - case 0x02: - case 0x03: - case 0x04: - case 0x05: - case 0x06: - case 0x07: - case 0x08: - case '\t': - case '\n': - case '\v': - case '\f': - case '\r': - case 0x0E: - case 0x0F: - case 0x10: - case 0x11: - case 0x12: - case 0x13: - case 0x14: - case 0x15: - case 0x16: - case 0x17: - case 0x18: - case 0x19: - case 0x1A: - case 0x1B: - case 0x1C: - case 0x1D: - case 0x1E: - case 0x1F: - case ' ': - case '!': - case '"': - case '#': - case '$': - case '%': - case '&': - case '\'': - case '(': - case ')': - case '*': - case '+': - case ',': - case '-': - case '.': - case '/': - case ':': - case ';': - case '<': - case '=': - case '>': - case '?': - case '@': - case '[': - case ']': - case '^': - case '`': - case '{': - case '|': - case '}': - case '~': - case 0x7F: goto yy500; - case '\\': goto yy148; - default: goto yy61; - } -yy500: -#line 450 "src/parser.re" - { NEWTOKEN(PSI_T_BOOLVAL); goto start; } -#line 7594 "src/parser.c" -yy501: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 'E': - case 'e': goto yy533; - default: goto yy62; - } -yy502: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 'K': - case 'k': goto yy535; - default: goto yy62; - } -yy503: - yyaccept = 59; - yych = *(mrk = ++cur); - switch (yych) { - case 0x00: - case 0x01: - case 0x02: - case 0x03: - case 0x04: - case 0x05: - case 0x06: - case 0x07: - case 0x08: - case '\t': - case '\n': - case '\v': - case '\f': - case '\r': - case 0x0E: - case 0x0F: - case 0x10: - case 0x11: - case 0x12: - case 0x13: - case 0x14: - case 0x15: - case 0x16: - case 0x17: - case 0x18: - case 0x19: - case 0x1A: - case 0x1B: - case 0x1C: - case 0x1D: - case 0x1E: - case 0x1F: - case ' ': - case '!': - case '"': - case '#': - case '$': - case '%': - case '&': - case '\'': - case '(': - case ')': - case '*': - case '+': - case ',': - case '-': - case '.': - case '/': - case ':': - case ';': - case '<': - case '=': - case '>': - case '?': - case '@': - case '[': - case ']': - case '^': - case '`': - case '{': - case '|': - case '}': - case '~': - case 0x7F: goto yy504; - case '\\': goto yy148; - default: goto yy61; - } -yy504: -#line 419 "src/parser.re" - { NEWTOKEN(PSI_T_DEFINED); goto start; } -#line 7685 "src/parser.c" -yy505: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 'L': - case 'l': goto yy537; - default: goto yy62; - } -yy506: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 'N': - case 'n': goto yy539; - default: goto yy62; - } -yy507: - yyaccept = 60; - yych = *(mrk = ++cur); - switch (yych) { - case 0x00: - case 0x01: - case 0x02: - case 0x03: - case 0x04: - case 0x05: - case 0x06: - case 0x07: - case 0x08: - case '\t': - case '\n': - case '\v': - case '\f': - case '\r': - case 0x0E: - case 0x0F: - case 0x10: - case 0x11: - case 0x12: - case 0x13: - case 0x14: - case 0x15: - case 0x16: - case 0x17: - case 0x18: - case 0x19: - case 0x1A: - case 0x1B: - case 0x1C: - case 0x1D: - case 0x1E: - case 0x1F: - case ' ': - case '!': - case '"': - case '#': - case '$': - case '%': - case '&': - case '\'': - case '(': - case ')': - case '*': - case '+': - case ',': - case '-': - case '.': - case '/': - case ':': - case ';': - case '<': - case '=': - case '>': - case '?': - case '@': - case '[': - case ']': - case '^': - case '`': - case '{': - case '|': - case '}': - case '~': - case 0x7F: goto yy508; - case '\\': goto yy148; - case '_': goto yy541; - default: goto yy61; - } -yy508: -#line 423 "src/parser.re" - { NEWTOKEN(PSI_T_INCLUDE); goto start; } -#line 7777 "src/parser.c" -yy509: - yyaccept = 61; - yych = *(mrk = ++cur); - switch (yych) { - case 0x00: - case 0x01: - case 0x02: - case 0x03: - case 0x04: - case 0x05: - case 0x06: - case 0x07: - case 0x08: - case '\t': - case '\n': - case '\v': - case '\f': - case '\r': - case 0x0E: - case 0x0F: - case 0x10: - case 0x11: - case 0x12: - case 0x13: - case 0x14: - case 0x15: - case 0x16: - case 0x17: - case 0x18: - case 0x19: - case 0x1A: - case 0x1B: - case 0x1C: - case 0x1D: - case 0x1E: - case 0x1F: - case ' ': - case '!': - case '"': - case '#': - case '$': - case '%': - case '&': - case '\'': - case '(': - case ')': - case '*': - case '+': - case ',': - case '-': - case '.': - case '/': - case ':': - case ';': - case '<': - case '=': - case '>': - case '?': - case '@': - case '[': - case ']': - case '^': - case '`': - case '{': - case '|': - case '}': - case '~': - case 0x7F: goto yy510; - case '\\': goto yy148; - default: goto yy61; - } -yy510: -#line 447 "src/parser.re" - { NEWTOKEN(PSI_T_PATHVAL); goto start; } -#line 7852 "src/parser.c" -yy511: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 'S': - case 's': goto yy542; - default: goto yy62; - } -yy512: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 'E': - case 'e': goto yy543; - default: goto yy62; - } -yy513: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 'Y': - case 'y': goto yy544; - default: goto yy62; - } -yy514: - yyaccept = 62; - yych = *(mrk = ++cur); - switch (yych) { - case 0x00: - case 0x01: - case 0x02: - case 0x03: - case 0x04: - case 0x05: - case 0x06: - case 0x07: - case 0x08: - case '\t': - case '\n': - case '\v': - case '\f': - case '\r': - case 0x0E: - case 0x0F: - case 0x10: - case 0x11: - case 0x12: - case 0x13: - case 0x14: - case 0x15: - case 0x16: - case 0x17: - case 0x18: - case 0x19: - case 0x1A: - case 0x1B: - case 0x1C: - case 0x1D: - case 0x1E: - case 0x1F: - case ' ': - case '!': - case '"': - case '#': - case '$': - case '%': - case '&': - case '\'': - case '(': - case ')': - case '*': - case '+': - case ',': - case '-': - case '.': - case '/': - case ':': - case ';': - case '<': - case '=': - case '>': - case '?': - case '@': - case '[': - case ']': - case '^': - case '`': - case '{': - case '|': - case '}': - case '~': - case 0x7F: goto yy515; - case '\\': goto yy148; - default: goto yy61; - } -yy515: -#line 461 "src/parser.re" - { NEWTOKEN(PSI_T_TO_BOOL); goto start; } -#line 7951 "src/parser.c" -yy516: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 'T': - case 't': goto yy546; - default: goto yy62; - } -yy517: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 'C': - case 'c': goto yy548; - default: goto yy62; - } -yy518: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 'N': - case 'n': goto yy549; - default: goto yy62; - } -yy519: - yyaccept = 63; - yych = *(mrk = ++cur); - switch (yych) { - case 0x00: - case 0x01: - case 0x02: - case 0x03: - case 0x04: - case 0x05: - case 0x06: - case 0x07: - case 0x08: - case '\t': - case '\n': - case '\v': - case '\f': - case '\r': - case 0x0E: - case 0x0F: - case 0x10: - case 0x11: - case 0x12: - case 0x13: - case 0x14: - case 0x15: - case 0x16: - case 0x17: - case 0x18: - case 0x19: - case 0x1A: - case 0x1B: - case 0x1C: - case 0x1D: - case 0x1E: - case 0x1F: - case ' ': - case '!': - case '"': - case '#': - case '$': - case '%': - case '&': - case '\'': - case '(': - case ')': - case '*': - case '+': - case ',': - case '-': - case '.': - case '/': - case ':': - case ';': - case '<': - case '=': - case '>': - case '?': - case '@': - case '[': - case ']': - case '^': - case '`': - case '{': - case '|': - case '}': - case '~': - case 0x7F: goto yy520; - case '\\': goto yy148; - default: goto yy61; - } -yy520: -#line 421 "src/parser.re" - { NEWTOKEN(PSI_T_WARNING); goto start; } -#line 8050 "src/parser.c" -yy521: - yyaccept = 64; - yych = *(mrk = ++cur); - switch (yych) { - case 0x00: - case 0x01: - case 0x02: - case 0x03: - case 0x04: - case 0x05: - case 0x06: - case 0x07: - case 0x08: - case '\t': - case '\n': - case '\v': - case '\f': - case '\r': - case 0x0E: - case 0x0F: - case 0x10: - case 0x11: - case 0x12: - case 0x13: - case 0x14: - case 0x15: - case 0x16: - case 0x17: - case 0x18: - case 0x19: - case 0x1A: - case 0x1B: - case 0x1C: - case 0x1D: - case 0x1E: - case 0x1F: - case ' ': - case '!': - case '"': - case '#': - case '$': - case '%': - case '&': - case '\'': - case '(': - case ')': - case '*': - case '+': - case ',': - case '-': - case '.': - case '/': - case ':': - case ';': - case '<': - case '=': - case '>': - case '?': - case '@': - case '[': - case ']': - case '^': - case '`': - case '{': - case '|': - case '}': - case '~': - case 0x7F: goto yy522; - case '\\': goto yy148; - default: goto yy61; - } -yy522: -#line 393 "src/parser.re" - { NEWTOKEN(PSI_T_CPP_ASM); goto start; } -#line 8125 "src/parser.c" -yy523: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 'b': goto yy550; - default: goto yy62; - } -yy524: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 's': goto yy551; - default: goto yy62; - } -yy525: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 'e': goto yy552; - default: goto yy62; - } -yy526: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 'i': goto yy554; - default: goto yy62; - } -yy527: - yyaccept = 5; - mrk = ++cur; - if (lim <= cur) if (cur >= lim) goto done;; - yych = *cur; - switch (yych) { - case 0x00: - case 0x01: - case 0x02: - case 0x03: - case 0x04: - case 0x05: - case 0x06: - case 0x07: - case 0x08: - case '\t': - case '\n': - case '\v': - case '\f': - case '\r': - case 0x0E: - case 0x0F: - case 0x10: - case 0x11: - case 0x12: - case 0x13: - case 0x14: - case 0x15: - case 0x16: - case 0x17: - case 0x18: - case 0x19: - case 0x1A: - case 0x1B: - case 0x1C: - case 0x1D: - case 0x1E: - case 0x1F: - case ' ': - case '!': - case '"': - case '#': - case '$': - case '%': - case '&': - case '\'': - case '(': - case ')': - case '*': - case '+': - case ',': - case '-': - case '.': - case '/': - case ':': - case ';': - case '<': - case '=': - case '>': - case '?': - case '@': - case '[': - case ']': - case '^': - case '`': - case '{': - case '|': - case '}': - case '~': - case 0x7F: goto yy55; - case '\\': goto yy148; - case 'o': goto yy555; - default: goto yy527; - } -yy529: - yyaccept = 65; - yych = *(mrk = ++cur); - switch (yych) { - case 0x00: - case 0x01: - case 0x02: - case 0x03: - case 0x04: - case 0x05: - case 0x06: - case 0x07: - case 0x08: - case '\t': - case '\n': - case '\v': - case '\f': - case '\r': - case 0x0E: - case 0x0F: - case 0x10: - case 0x11: - case 0x12: - case 0x13: - case 0x14: - case 0x15: - case 0x16: - case 0x17: - case 0x18: - case 0x19: - case 0x1A: - case 0x1B: - case 0x1C: - case 0x1D: - case 0x1E: - case 0x1F: - case ' ': - case '!': - case '"': - case '#': - case '$': - case '%': - case '&': - case '\'': - case '(': - case ')': - case '*': - case '+': - case ',': - case '-': - case '.': - case '/': - case ':': - case ';': - case '<': - case '=': - case '>': - case '?': - case '@': - case '[': - case ']': - case '^': - case '`': - case '{': - case '|': - case '}': - case '~': - case 0x7F: goto yy530; - case '\\': goto yy148; - default: goto yy61; - } -yy530: -#line 397 "src/parser.re" - { NEWTOKEN(PSI_T_TYPEDEF); goto start; } -#line 8302 "src/parser.c" -yy531: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 'd': goto yy557; - default: goto yy62; - } -yy532: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 'e': goto yy559; - default: goto yy62; - } -yy533: - yyaccept = 66; - yych = *(mrk = ++cur); - switch (yych) { - case 0x00: - case 0x01: - case 0x02: - case 0x03: - case 0x04: - case 0x05: - case 0x06: - case 0x07: - case 0x08: - case '\t': - case '\n': - case '\v': - case '\f': - case '\r': - case 0x0E: - case 0x0F: - case 0x10: - case 0x11: - case 0x12: - case 0x13: - case 0x14: - case 0x15: - case 0x16: - case 0x17: - case 0x18: - case 0x19: - case 0x1A: - case 0x1B: - case 0x1C: - case 0x1D: - case 0x1E: - case 0x1F: - case ' ': - case '!': - case '"': - case '#': - case '$': - case '%': - case '&': - case '\'': - case '(': - case ')': - case '*': - case '+': - case ',': - case '-': - case '.': - case '/': - case ':': - case ';': - case '<': - case '=': - case '>': - case '?': - case '@': - case '[': - case ']': - case '^': - case '`': - case '{': - case '|': - case '}': - case '~': - case 0x7F: goto yy534; - case '\\': goto yy148; - default: goto yy61; - } -yy534: -#line 429 "src/parser.re" - { NEWTOKEN(PSI_T_CALLABLE); goto start; } -#line 8391 "src/parser.c" -yy535: - yyaccept = 67; - yych = *(mrk = ++cur); - switch (yych) { - case 0x00: - case 0x01: - case 0x02: - case 0x03: - case 0x04: - case 0x05: - case 0x06: - case 0x07: - case 0x08: - case '\t': - case '\n': - case '\v': - case '\f': - case '\r': - case 0x0E: - case 0x0F: - case 0x10: - case 0x11: - case 0x12: - case 0x13: - case 0x14: - case 0x15: - case 0x16: - case 0x17: - case 0x18: - case 0x19: - case 0x1A: - case 0x1B: - case 0x1C: - case 0x1D: - case 0x1E: - case 0x1F: - case ' ': - case '!': - case '"': - case '#': - case '$': - case '%': - case '&': - case '\'': - case '(': - case ')': - case '*': - case '+': - case ',': - case '-': - case '.': - case '/': - case ':': - case ';': - case '<': - case '=': - case '>': - case '?': - case '@': - case '[': - case ']': - case '^': - case '`': - case '{': - case '|': - case '}': - case '~': - case 0x7F: goto yy536; - case '\\': goto yy148; - default: goto yy61; - } -yy536: -#line 433 "src/parser.re" - { NEWTOKEN(PSI_T_CALLBACK); goto start; } -#line 8466 "src/parser.c" -yy537: - yyaccept = 68; - yych = *(mrk = ++cur); - switch (yych) { - case 0x00: - case 0x01: - case 0x02: - case 0x03: - case 0x04: - case 0x05: - case 0x06: - case 0x07: - case 0x08: - case '\t': - case '\n': - case '\v': - case '\f': - case '\r': - case 0x0E: - case 0x0F: - case 0x10: - case 0x11: - case 0x12: - case 0x13: - case 0x14: - case 0x15: - case 0x16: - case 0x17: - case 0x18: - case 0x19: - case 0x1A: - case 0x1B: - case 0x1C: - case 0x1D: - case 0x1E: - case 0x1F: - case ' ': - case '!': - case '"': - case '#': - case '$': - case '%': - case '&': - case '\'': - case '(': - case ')': - case '*': - case '+': - case ',': - case '-': - case '.': - case '/': - case ':': - case ';': - case '<': - case '=': - case '>': - case '?': - case '@': - case '[': - case ']': - case '^': - case '`': - case '{': - case '|': - case '}': - case '~': - case 0x7F: goto yy538; - case '\\': goto yy148; - default: goto yy61; - } -yy538: -#line 449 "src/parser.re" - { NEWTOKEN(PSI_T_FLOATVAL); goto start; } -#line 8541 "src/parser.c" -yy539: - yyaccept = 69; - yych = *(mrk = ++cur); - switch (yych) { - case 0x00: - case 0x01: - case 0x02: - case 0x03: - case 0x04: - case 0x05: - case 0x06: - case 0x07: - case 0x08: - case '\t': - case '\n': - case '\v': - case '\f': - case '\r': - case 0x0E: - case 0x0F: - case 0x10: - case 0x11: - case 0x12: - case 0x13: - case 0x14: - case 0x15: - case 0x16: - case 0x17: - case 0x18: - case 0x19: - case 0x1A: - case 0x1B: - case 0x1C: - case 0x1D: - case 0x1E: - case 0x1F: - case ' ': - case '!': - case '"': - case '#': - case '$': - case '%': - case '&': - case '\'': - case '(': - case ')': - case '*': - case '+': - case ',': - case '-': - case '.': - case '/': - case ':': - case ';': - case '<': - case '=': - case '>': - case '?': - case '@': - case '[': - case ']': - case '^': - case '`': - case '{': - case '|': - case '}': - case '~': - case 0x7F: goto yy540; - case '\\': goto yy148; - default: goto yy61; - } -yy540: -#line 435 "src/parser.re" - { NEWTOKEN(PSI_T_FUNCTION); goto start; } -#line 8616 "src/parser.c" -yy541: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 'N': - case 'n': goto yy561; - default: goto yy62; - } -yy542: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 'E': - case 'e': goto yy562; - default: goto yy62; - } -yy543: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 'R': - case 'r': goto yy563; - default: goto yy62; - } -yy544: - yyaccept = 70; - yych = *(mrk = ++cur); - switch (yych) { - case 0x00: - case 0x01: - case 0x02: - case 0x03: - case 0x04: - case 0x05: - case 0x06: - case 0x07: - case 0x08: - case '\t': - case '\n': - case '\v': - case '\f': - case '\r': - case 0x0E: - case 0x0F: - case 0x10: - case 0x11: - case 0x12: - case 0x13: - case 0x14: - case 0x15: - case 0x16: - case 0x17: - case 0x18: - case 0x19: - case 0x1A: - case 0x1B: - case 0x1C: - case 0x1D: - case 0x1E: - case 0x1F: - case ' ': - case '!': - case '"': - case '#': - case '$': - case '%': - case '&': - case '\'': - case '(': - case ')': - case '*': - case '+': - case ',': - case '-': - case '.': - case '/': - case ':': - case ';': - case '<': - case '=': - case '>': - case '?': - case '@': - case '[': - case ']': - case '^': - case '`': - case '{': - case '|': - case '}': - case '~': - case 0x7F: goto yy545; - case '\\': goto yy148; - default: goto yy61; - } -yy545: -#line 457 "src/parser.re" - { NEWTOKEN(PSI_T_TO_ARRAY); goto start; } -#line 8715 "src/parser.c" -yy546: - yyaccept = 71; - yych = *(mrk = ++cur); - switch (yych) { - case 0x00: - case 0x01: - case 0x02: - case 0x03: - case 0x04: - case 0x05: - case 0x06: - case 0x07: - case 0x08: - case '\t': - case '\n': - case '\v': - case '\f': - case '\r': - case 0x0E: - case 0x0F: - case 0x10: - case 0x11: - case 0x12: - case 0x13: - case 0x14: - case 0x15: - case 0x16: - case 0x17: - case 0x18: - case 0x19: - case 0x1A: - case 0x1B: - case 0x1C: - case 0x1D: - case 0x1E: - case 0x1F: - case ' ': - case '!': - case '"': - case '#': - case '$': - case '%': - case '&': - case '\'': - case '(': - case ')': - case '*': - case '+': - case ',': - case '-': - case '.': - case '/': - case ':': - case ';': - case '<': - case '=': - case '>': - case '?': - case '@': - case '[': - case ']': - case '^': - case '`': - case '{': - case '|': - case '}': - case '~': - case 0x7F: goto yy547; - case '\\': goto yy148; - default: goto yy61; - } -yy547: -#line 460 "src/parser.re" - { NEWTOKEN(PSI_T_TO_FLOAT); goto start; } -#line 8790 "src/parser.c" -yy548: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 'T': - case 't': goto yy564; - default: goto yy62; - } -yy549: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 'G': - case 'g': goto yy566; - default: goto yy62; - } -yy550: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 'u': goto yy568; - default: goto yy62; - } -yy551: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 'i': goto yy569; - default: goto yy62; - } -yy552: - yyaccept = 72; - yych = *(mrk = ++cur); - switch (yych) { - case 0x00: - case 0x01: - case 0x02: - case 0x03: - case 0x04: - case 0x05: - case 0x06: - case 0x07: - case 0x08: - case '\t': - case '\n': - case '\v': - case '\f': - case '\r': - case 0x0E: - case 0x0F: - case 0x10: - case 0x11: - case 0x12: - case 0x13: - case 0x14: - case 0x15: - case 0x16: - case 0x17: - case 0x18: - case 0x19: - case 0x1A: - case 0x1B: - case 0x1C: - case 0x1D: - case 0x1E: - case 0x1F: - case ' ': - case '!': - case '"': - case '#': - case '$': - case '%': - case '&': - case '\'': - case '(': - case ')': - case '*': - case '+': - case ',': - case '-': - case '.': - case '/': - case ':': - case ';': - case '<': - case '=': - case '>': - case '?': - case '@': - case '[': - case ']': - case '^': - case '`': - case '{': - case '|': - case '}': - case '~': - case 0x7F: goto yy553; - case '\\': goto yy148; - default: goto yy61; - } -yy553: -#line 390 "src/parser.re" - { NEWTOKEN(PSI_T_CPP_INLINE); goto start; } -#line 8895 "src/parser.c" -yy554: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 'c': goto yy570; - default: goto yy62; - } -yy555: - yyaccept = 5; - mrk = ++cur; - if (lim <= cur) if (cur >= lim) goto done;; - yych = *cur; - switch (yych) { - case 0x00: - case 0x01: - case 0x02: - case 0x03: - case 0x04: - case 0x05: - case 0x06: - case 0x07: - case 0x08: - case '\t': - case '\n': - case '\v': - case '\f': - case '\r': - case 0x0E: - case 0x0F: - case 0x10: - case 0x11: - case 0x12: - case 0x13: - case 0x14: - case 0x15: - case 0x16: - case 0x17: - case 0x18: - case 0x19: - case 0x1A: - case 0x1B: - case 0x1C: - case 0x1D: - case 0x1E: - case 0x1F: - case ' ': - case '!': - case '"': - case '#': - case '$': - case '%': - case '&': - case '\'': - case '(': - case ')': - case '*': - case '+': - case ',': - case '-': - case '.': - case '/': - case ':': - case ';': - case '<': - case '=': - case '>': - case '?': - case '@': - case '[': - case ']': - case '^': - case '`': - case '{': - case '|': - case '}': - case '~': - case 0x7F: goto yy55; - case '\\': goto yy148; - case 'n': goto yy571; - case 'o': goto yy555; - default: goto yy527; - } -yy557: - yyaccept = 73; - yych = *(mrk = ++cur); - switch (yych) { - case 0x00: - case 0x01: - case 0x02: - case 0x03: - case 0x04: - case 0x05: - case 0x06: - case 0x07: - case 0x08: - case '\t': - case '\n': - case '\v': - case '\f': - case '\r': - case 0x0E: - case 0x0F: - case 0x10: - case 0x11: - case 0x12: - case 0x13: - case 0x14: - case 0x15: - case 0x16: - case 0x17: - case 0x18: - case 0x19: - case 0x1A: - case 0x1B: - case 0x1C: - case 0x1D: - case 0x1E: - case 0x1F: - case ' ': - case '!': - case '"': - case '#': - case '$': - case '%': - case '&': - case '\'': - case '(': - case ')': - case '*': - case '+': - case ',': - case '-': - case '.': - case '/': - case ':': - case ';': - case '<': - case '=': - case '>': - case '?': - case '@': - case '[': - case ']': - case '^': - case '`': - case '{': - case '|': - case '}': - case '~': - case 0x7F: goto yy558; - case '\\': goto yy148; - default: goto yy61; - } -yy558: -#line 410 "src/parser.re" - { NEWTOKEN(PSI_T_UNSIGNED); goto start; } -#line 9052 "src/parser.c" -yy559: - yyaccept = 74; - yych = *(mrk = ++cur); - switch (yych) { - case 0x00: - case 0x01: - case 0x02: - case 0x03: - case 0x04: - case 0x05: - case 0x06: - case 0x07: - case 0x08: - case '\t': - case '\n': - case '\v': - case '\f': - case '\r': - case 0x0E: - case 0x0F: - case 0x10: - case 0x11: - case 0x12: - case 0x13: - case 0x14: - case 0x15: - case 0x16: - case 0x17: - case 0x18: - case 0x19: - case 0x1A: - case 0x1B: - case 0x1C: - case 0x1D: - case 0x1E: - case 0x1F: - case ' ': - case '!': - case '"': - case '#': - case '$': - case '%': - case '&': - case '\'': - case '(': - case ')': - case '*': - case '+': - case ',': - case '-': - case '.': - case '/': - case ':': - case ';': - case '<': - case '=': - case '>': - case '?': - case '@': - case '[': - case ']': - case '^': - case '`': - case '{': - case '|': - case '}': - case '~': - case 0x7F: goto yy560; - case '\\': goto yy148; - default: goto yy61; - } -yy560: -#line 394 "src/parser.re" - { NEWTOKEN(PSI_T_VOLATILE); goto start; } -#line 9127 "src/parser.c" -yy561: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 'E': - case 'e': goto yy572; - default: goto yy62; - } -yy562: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 'R': - case 'r': goto yy573; - default: goto yy62; - } -yy563: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 'T': - case 't': goto yy574; - default: goto yy62; - } -yy564: - yyaccept = 75; - yych = *(mrk = ++cur); - switch (yych) { - case 0x00: - case 0x01: - case 0x02: - case 0x03: - case 0x04: - case 0x05: - case 0x06: - case 0x07: - case 0x08: - case '\t': - case '\n': - case '\v': - case '\f': - case '\r': - case 0x0E: - case 0x0F: - case 0x10: - case 0x11: - case 0x12: - case 0x13: - case 0x14: - case 0x15: - case 0x16: - case 0x17: - case 0x18: - case 0x19: - case 0x1A: - case 0x1B: - case 0x1C: - case 0x1D: - case 0x1E: - case 0x1F: - case ' ': - case '!': - case '"': - case '#': - case '$': - case '%': - case '&': - case '\'': - case '(': - case ')': - case '*': - case '+': - case ',': - case '-': - case '.': - case '/': - case ':': - case ';': - case '<': - case '=': - case '>': - case '?': - case '@': - case '[': - case ']': - case '^': - case '`': - case '{': - case '|': - case '}': - case '~': - case 0x7F: goto yy565; - case '\\': goto yy148; - default: goto yy61; - } -yy565: -#line 456 "src/parser.re" - { NEWTOKEN(PSI_T_TO_OBJECT); goto start; } -#line 9226 "src/parser.c" -yy566: - yyaccept = 76; - yych = *(mrk = ++cur); - switch (yych) { - case 0x00: - case 0x01: - case 0x02: - case 0x03: - case 0x04: - case 0x05: - case 0x06: - case 0x07: - case 0x08: - case '\t': - case '\n': - case '\v': - case '\f': - case '\r': - case 0x0E: - case 0x0F: - case 0x10: - case 0x11: - case 0x12: - case 0x13: - case 0x14: - case 0x15: - case 0x16: - case 0x17: - case 0x18: - case 0x19: - case 0x1A: - case 0x1B: - case 0x1C: - case 0x1D: - case 0x1E: - case 0x1F: - case ' ': - case '!': - case '"': - case '#': - case '$': - case '%': - case '&': - case '\'': - case '(': - case ')': - case '*': - case '+': - case ',': - case '-': - case '.': - case '/': - case ':': - case ';': - case '<': - case '=': - case '>': - case '?': - case '@': - case '[': - case ']': - case '^': - case '`': - case '{': - case '|': - case '}': - case '~': - case 0x7F: goto yy567; - case '\\': goto yy148; - default: goto yy61; - } -yy567: -#line 458 "src/parser.re" - { NEWTOKEN(PSI_T_TO_STRING); goto start; } -#line 9301 "src/parser.c" -yy568: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 't': goto yy576; - default: goto yy62; - } -yy569: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 'o': goto yy577; - default: goto yy62; - } -yy570: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 't': goto yy578; - default: goto yy62; - } -yy571: - yyaccept = 5; - mrk = ++cur; - if (lim <= cur) if (cur >= lim) goto done;; - yych = *cur; - switch (yych) { - case 0x00: - case 0x01: - case 0x02: - case 0x03: - case 0x04: - case 0x05: - case 0x06: - case 0x07: - case 0x08: - case '\t': - case '\n': - case '\v': - case '\f': - case '\r': - case 0x0E: - case 0x0F: - case 0x10: - case 0x11: - case 0x12: - case 0x13: - case 0x14: - case 0x15: - case 0x16: - case 0x17: - case 0x18: - case 0x19: - case 0x1A: - case 0x1B: - case 0x1C: - case 0x1D: - case 0x1E: - case 0x1F: - case ' ': - case '!': - case '"': - case '#': - case '$': - case '%': - case '&': - case '\'': - case '(': - case ')': - case '*': - case '+': - case ',': - case '-': - case '.': - case '/': - case ':': - case ';': - case '<': - case '=': - case '>': - case '?': - case '@': - case '[': - case ']': - case '^': - case '`': - case '{': - case '|': - case '}': - case '~': - case 0x7F: goto yy55; - case '\\': goto yy148; - case 'c': goto yy580; - case 'o': goto yy555; - default: goto yy527; - } -yy572: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 'X': - case 'x': goto yy581; - default: goto yy62; - } -yy573: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 'T': - case 't': goto yy582; - default: goto yy62; - } -yy574: - yyaccept = 77; - yych = *(mrk = ++cur); - switch (yych) { - case 0x00: - case 0x01: - case 0x02: - case 0x03: - case 0x04: - case 0x05: - case 0x06: - case 0x07: - case 0x08: - case '\t': - case '\n': - case '\v': - case '\f': - case '\r': - case 0x0E: - case 0x0F: - case 0x10: - case 0x11: - case 0x12: - case 0x13: - case 0x14: - case 0x15: - case 0x16: - case 0x17: - case 0x18: - case 0x19: - case 0x1A: - case 0x1B: - case 0x1C: - case 0x1D: - case 0x1E: - case 0x1F: - case ' ': - case '!': - case '"': - case '#': - case '$': - case '%': - case '&': - case '\'': - case '(': - case ')': - case '*': - case '+': - case ',': - case '-': - case '.': - case '/': - case ':': - case ';': - case '<': - case '=': - case '>': - case '?': - case '@': - case '[': - case ']': - case '^': - case '`': - case '{': - case '|': - case '}': - case '~': - case 0x7F: goto yy575; - case '\\': goto yy148; - default: goto yy61; - } -yy575: -#line 439 "src/parser.re" - { NEWTOKEN(PSI_T_PRE_ASSERT); goto start; } -#line 9488 "src/parser.c" -yy576: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 'e': goto yy584; - default: goto yy62; - } -yy577: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 'n': goto yy585; - default: goto yy62; - } -yy578: - yyaccept = 78; - yych = *(mrk = ++cur); - switch (yych) { - case 0x00: - case 0x01: - case 0x02: - case 0x03: - case 0x04: - case 0x05: - case 0x06: - case 0x07: - case 0x08: - case '\t': - case '\n': - case '\v': - case '\f': - case '\r': - case 0x0E: - case 0x0F: - case 0x10: - case 0x11: - case 0x12: - case 0x13: - case 0x14: - case 0x15: - case 0x16: - case 0x17: - case 0x18: - case 0x19: - case 0x1A: - case 0x1B: - case 0x1C: - case 0x1D: - case 0x1E: - case 0x1F: - case ' ': - case '!': - case '"': - case '#': - case '$': - case '%': - case '&': - case '\'': - case '(': - case ')': - case '*': - case '+': - case ',': - case '-': - case '.': - case '/': - case ':': - case ';': - case '<': - case '=': - case '>': - case '?': - case '@': - case '[': - case ']': - case '^': - case '`': - case '{': - case '|': - case '}': - case '~': - case 0x7F: goto yy579; - case '\\': goto yy148; - default: goto yy61; - } -yy579: -#line 391 "src/parser.re" - { NEWTOKEN(PSI_T_CPP_RESTRICT); goto start; } -#line 9577 "src/parser.c" -yy580: - yyaccept = 5; - mrk = ++cur; - if (lim <= cur) if (cur >= lim) goto done;; - yych = *cur; - switch (yych) { - case 0x00: - case 0x01: - case 0x02: - case 0x03: - case 0x04: - case 0x05: - case 0x06: - case 0x07: - case 0x08: - case '\t': - case '\n': - case '\v': - case '\f': - case '\r': - case 0x0E: - case 0x0F: - case 0x10: - case 0x11: - case 0x12: - case 0x13: - case 0x14: - case 0x15: - case 0x16: - case 0x17: - case 0x18: - case 0x19: - case 0x1A: - case 0x1B: - case 0x1C: - case 0x1D: - case 0x1E: - case 0x1F: - case ' ': - case '!': - case '"': - case '#': - case '$': - case '%': - case '&': - case '\'': - case '(': - case ')': - case '*': - case '+': - case ',': - case '-': - case '.': - case '/': - case ':': - case ';': - case '<': - case '=': - case '>': - case '?': - case '@': - case '[': - case ']': - case '^': - case '`': - case '{': - case '|': - case '}': - case '~': - case 0x7F: goto yy55; - case '\\': goto yy148; - case 'e': goto yy586; - case 'o': goto yy555; - default: goto yy527; - } -yy581: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case 'T': - case 't': goto yy588; - default: goto yy62; - } -yy582: - yyaccept = 79; - yych = *(mrk = ++cur); - switch (yych) { - case 0x00: - case 0x01: - case 0x02: - case 0x03: - case 0x04: - case 0x05: - case 0x06: - case 0x07: - case 0x08: - case '\t': - case '\n': - case '\v': - case '\f': - case '\r': - case 0x0E: - case 0x0F: - case 0x10: - case 0x11: - case 0x12: - case 0x13: - case 0x14: - case 0x15: - case 0x16: - case 0x17: - case 0x18: - case 0x19: - case 0x1A: - case 0x1B: - case 0x1C: - case 0x1D: - case 0x1E: - case 0x1F: - case ' ': - case '!': - case '"': - case '#': - case '$': - case '%': - case '&': - case '\'': - case '(': - case ')': - case '*': - case '+': - case ',': - case '-': - case '.': - case '/': - case ':': - case ';': - case '<': - case '=': - case '>': - case '?': - case '@': - case '[': - case ']': - case '^': - case '`': - case '{': - case '|': - case '}': - case '~': - case 0x7F: goto yy583; - case '\\': goto yy148; - default: goto yy61; - } -yy583: -#line 440 "src/parser.re" - { NEWTOKEN(PSI_T_POST_ASSERT); goto start; } -#line 9735 "src/parser.c" -yy584: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case '_': goto yy590; - default: goto yy62; - } -yy585: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case '_': goto yy591; - default: goto yy62; - } -yy586: - yyaccept = 80; - mrk = ++cur; - if (lim <= cur) if (cur >= lim) goto done;; - yych = *cur; - switch (yych) { - case 0x00: - case 0x01: - case 0x02: - case 0x03: - case 0x04: - case 0x05: - case 0x06: - case 0x07: - case 0x08: - case '\t': - case '\n': - case '\v': - case '\f': - case '\r': - case 0x0E: - case 0x0F: - case 0x10: - case 0x11: - case 0x12: - case 0x13: - case 0x14: - case 0x15: - case 0x16: - case 0x17: - case 0x18: - case 0x19: - case 0x1A: - case 0x1B: - case 0x1C: - case 0x1D: - case 0x1E: - case 0x1F: - case ' ': - case '!': - case '"': - case '#': - case '$': - case '%': - case '&': - case '\'': - case '(': - case ')': - case '*': - case '+': - case ',': - case '-': - case '.': - case '/': - case ':': - case ';': - case '<': - case '=': - case '>': - case '?': - case '@': - case '[': - case ']': - case '^': - case '`': - case '{': - case '|': - case '}': - case '~': - case 0x7F: goto yy587; - case '\\': goto yy148; - case 'o': goto yy555; - default: goto yy527; - } -yy587: -#line 389 "src/parser.re" - { NEWTOKEN(PSI_T_PRAGMA_ONCE); goto start; } -#line 9827 "src/parser.c" -yy588: - yyaccept = 81; - yych = *(mrk = ++cur); - switch (yych) { - case 0x00: - case 0x01: - case 0x02: - case 0x03: - case 0x04: - case 0x05: - case 0x06: - case 0x07: - case 0x08: - case '\t': - case '\n': - case '\v': - case '\f': - case '\r': - case 0x0E: - case 0x0F: - case 0x10: - case 0x11: - case 0x12: - case 0x13: - case 0x14: - case 0x15: - case 0x16: - case 0x17: - case 0x18: - case 0x19: - case 0x1A: - case 0x1B: - case 0x1C: - case 0x1D: - case 0x1E: - case 0x1F: - case ' ': - case '!': - case '"': - case '#': - case '$': - case '%': - case '&': - case '\'': - case '(': - case ')': - case '*': - case '+': - case ',': - case '-': - case '.': - case '/': - case ':': - case ';': - case '<': - case '=': - case '>': - case '?': - case '@': - case '[': - case ']': - case '^': - case '`': - case '{': - case '|': - case '}': - case '~': - case 0x7F: goto yy589; - case '\\': goto yy148; - default: goto yy61; - } -yy589: -#line 424 "src/parser.re" - { NEWTOKEN(PSI_T_INCLUDE_NEXT); goto start; } -#line 9902 "src/parser.c" -yy590: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case '_': goto yy592; - default: goto yy62; - } -yy591: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case '_': goto yy593; - default: goto yy62; - } -yy592: - yyaccept = 5; - yych = *(mrk = ++cur); - switch (yych) { - case '\t': - case '\f': - case ' ': goto yy595; - case '(': goto yy597; - default: goto yy62; - } -yy593: - yyaccept = 82; - yych = *(mrk = ++cur); - switch (yych) { - case 0x00: - case 0x01: - case 0x02: - case 0x03: - case 0x04: - case 0x05: - case 0x06: - case 0x07: - case 0x08: - case '\t': - case '\n': - case '\v': - case '\f': - case '\r': - case 0x0E: - case 0x0F: - case 0x10: - case 0x11: - case 0x12: - case 0x13: - case 0x14: - case 0x15: - case 0x16: - case 0x17: - case 0x18: - case 0x19: - case 0x1A: - case 0x1B: - case 0x1C: - case 0x1D: - case 0x1E: - case 0x1F: - case ' ': - case '!': - case '"': - case '#': - case '$': - case '%': - case '&': - case '\'': - case '(': - case ')': - case '*': - case '+': - case ',': - case '-': - case '.': - case '/': - case ':': - case ';': - case '<': - case '=': - case '>': - case '?': - case '@': - case '[': - case ']': - case '^': - case '`': - case '{': - case '|': - case '}': - case '~': - case 0x7F: goto yy594; - case '\\': goto yy148; - default: goto yy61; - } -yy594: -#line 392 "src/parser.re" - { NEWTOKEN(PSI_T_CPP_EXTENSION); goto start; } -#line 10001 "src/parser.c" -yy595: - ++cur; - if ((lim - cur) < 2) if (cur >= lim) goto done;; - yych = *cur; - switch (yych) { - case '\t': - case '\f': - case ' ': goto yy595; - case '(': goto yy597; - default: goto yy114; - } -yy597: - yych = *++cur; - switch (yych) { - case '(': goto yy598; - default: goto yy114; - } -yy598: - ++cur; -#line 466 "src/parser.re" - { parens = 2; goto cpp_attribute; } -#line 10023 "src/parser.c" - } -#line 472 "src/parser.re" - - - character: ; - -#line 10030 "src/parser.c" - { - unsigned char yych; - if (lim <= cur) if (cur >= lim) goto done;; - yych = *cur; - switch (yych) { - case '\n': - case '\r': goto yy604; - case '\'': goto yy606; - case '\\': goto yy608; - default: goto yy602; - } -yy602: - ++cur; -#line 490 "src/parser.re" - { escaped = false; goto character; } -#line 10046 "src/parser.c" -yy604: - ++cur; -#line 477 "src/parser.re" - { NEWLINE(); goto character; } -#line 10051 "src/parser.c" -yy606: - ++cur; -#line 479 "src/parser.re" - { - if (escaped) { - escaped = false; - goto character; - } - cur -= 1; - NEWTOKEN(PSI_T_QUOTED_CHAR); - cur += 1; - token->flags = char_width; - goto start; - } -#line 10066 "src/parser.c" -yy608: - ++cur; -#line 478 "src/parser.re" - { escaped = !escaped; goto character; } -#line 10071 "src/parser.c" - } -#line 492 "src/parser.re" - - - string: ; - -#line 10078 "src/parser.c" - { - unsigned char yych; - if (lim <= cur) if (cur >= lim) goto done;; - yych = *cur; - switch (yych) { - case '\n': - case '\r': goto yy614; - case '"': goto yy616; - case '\\': goto yy618; - default: goto yy612; - } -yy612: - ++cur; -#line 510 "src/parser.re" - { escaped = false; goto string; } -#line 10094 "src/parser.c" -yy614: - ++cur; -#line 497 "src/parser.re" - { NEWLINE(); goto string; } -#line 10099 "src/parser.c" -yy616: - ++cur; -#line 499 "src/parser.re" - { - if (escaped) { - escaped = false; - goto string; - } - cur -= 1; - NEWTOKEN(PSI_T_QUOTED_STRING); - cur += 1; - token->flags = char_width; - goto start; - } -#line 10114 "src/parser.c" -yy618: - ++cur; -#line 498 "src/parser.re" - { escaped = !escaped; goto string; } -#line 10119 "src/parser.c" - } -#line 512 "src/parser.re" - - - comment: ; - -#line 10126 "src/parser.c" - { - unsigned char yych; - if ((lim - cur) < 2) if (cur >= lim) goto done;; - yych = *cur; - switch (yych) { - case '\n': - case '\r': goto yy624; - case '*': goto yy626; - default: goto yy622; - } -yy622: - ++cur; -yy623: -#line 519 "src/parser.re" - { goto comment; } -#line 10142 "src/parser.c" -yy624: - ++cur; -#line 517 "src/parser.re" - { NEWLINE(); goto comment; } -#line 10147 "src/parser.c" -yy626: - yych = *++cur; - switch (yych) { - case '/': goto yy627; - default: goto yy623; - } -yy627: - ++cur; -#line 518 "src/parser.re" - { NEWTOKEN(PSI_T_COMMENT); goto start; } -#line 10158 "src/parser.c" - } -#line 521 "src/parser.re" - - - comment_sl: ; - -#line 10165 "src/parser.c" - { - unsigned char yych; - if (lim <= cur) if (cur >= lim) goto done;; - yych = *cur; - switch (yych) { - case '\n': - case '\r': goto yy633; - default: goto yy631; - } -yy631: - ++cur; -#line 527 "src/parser.re" - { goto comment_sl; } -#line 10179 "src/parser.c" -yy633: - ++cur; -#line 526 "src/parser.re" - { NEWTOKEN(PSI_T_COMMENT); NEWLINE(); goto start; } -#line 10184 "src/parser.c" - } -#line 529 "src/parser.re" - - - cpp_attribute: ; - - -#line 10192 "src/parser.c" - { - unsigned char yych; - if (lim <= cur) if (cur >= lim) goto done;; - yych = *cur; - switch (yych) { - case '\n': - case '\r': goto yy639; - case '(': goto yy641; - case ')': goto yy643; - default: goto yy637; - } -yy637: - ++cur; -#line 538 "src/parser.re" - { goto cpp_attribute; } -#line 10208 "src/parser.c" -yy639: - ++cur; -#line 537 "src/parser.re" - { NEWLINE(); goto cpp_attribute; } -#line 10213 "src/parser.c" -yy641: - ++cur; -#line 535 "src/parser.re" - { ++parens; goto cpp_attribute; } -#line 10218 "src/parser.c" -yy643: - ++cur; -#line 536 "src/parser.re" - { if (parens == 1) { NEWTOKEN(PSI_T_CPP_ATTRIBUTE); goto start; } else { --parens; goto cpp_attribute; } } -#line 10223 "src/parser.c" - } -#line 540 "src/parser.re" - -error: ; - - P->error(PSI_DATA(P), token, PSI_WARNING, "PSI syntax error: unexpected input (%d) '%.*s' at col %tu", - token->type, token->text->len, token->text->val, tok - eol + 1); - psi_plist_free(tokens); - return NULL; - -done: - - PSI_DEBUG_PRINT(P, "PSI: EOF cur=%p lim=%p\n", cur, lim); - - return tokens; -} diff --git a/src/parser.h b/src/parser.h index 7aef5f5..0650ef5 100644 --- a/src/parser.h +++ b/src/parser.h @@ -64,6 +64,7 @@ static inline void psi_parser_input_free(struct psi_parser_input **I) { struct psi_parser *psi_parser_init(struct psi_parser *P, psi_error_cb error, unsigned flags); struct psi_parser_input *psi_parser_open_file(struct psi_parser *P, const char *filename, bool report_errors); struct psi_parser_input *psi_parser_open_string(struct psi_parser *P, const char *string, size_t length); +size_t psi_parser_maxfill(void); struct psi_plist *psi_parser_scan(struct psi_parser *P, struct psi_parser_input *I); struct psi_plist *psi_parser_preprocess(struct psi_parser *P, struct psi_plist **tokens); bool psi_parser_process(struct psi_parser *P, struct psi_plist *tokens, size_t *processed); diff --git a/src/parser.re b/src/parser.re deleted file mode 100644 index ebd1e16..0000000 --- a/src/parser.re +++ /dev/null @@ -1,553 +0,0 @@ -/******************************************************************************* - Copyright (c) 2016, Michael Wallner . - All rights reserved. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions are met: - - * Redistributions of source code must retain the above copyright notice, - this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - - THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" - AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE - DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE - FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR - SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER - CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, - OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE - OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -*******************************************************************************/ - -#include "php_psi_stdinc.h" -#include -#include -#include -#include - -#include - -#include "parser.h" - -/*!max:re2c*/ -#ifndef YYMAXFILL -# define YYMAXFILL 256 -#endif - -struct psi_parser *psi_parser_init(struct psi_parser *P, psi_error_cb error, unsigned flags) -{ - if (!P) { - P = pemalloc(sizeof(*P), 1); - } - memset(P, 0, sizeof(*P)); - - psi_data_ctor_with_dtors(PSI_DATA(P), error, flags); - - P->preproc = psi_cpp_init(P); - - return P; -} - -struct psi_parser_input *psi_parser_open_file(struct psi_parser *P, const char *filename, bool report_errors) -{ - struct stat sb; - FILE *fp; - struct psi_parser_input *fb; - - if (stat(filename, &sb)) { - if (report_errors) { - P->error(PSI_DATA(P), NULL, PSI_WARNING, - "Could not stat '%s': %s", - filename, strerror(errno)); - } - return NULL; - } - - if (!(fb = pemalloc(sizeof(*fb) + sb.st_size + YYMAXFILL, 1))) { - if (report_errors) { - P->error(PSI_DATA(P), NULL, PSI_WARNING, - "Could not allocate %zu bytes for reading '%s': %s", - sb.st_size + YYMAXFILL, filename, strerror(errno)); - } - return NULL; - } - - if (!(fp = fopen(filename, "r"))) { - free(fb); - if (report_errors) { - P->error(PSI_DATA(P), NULL, PSI_WARNING, - "Could not open '%s' for reading: %s", - filename, strerror(errno)); - } - return NULL; - } - - if (sb.st_size != fread(fb->buffer, 1, sb.st_size, fp)) { - free(fb); - fclose(fp); - if (report_errors) { - P->error(PSI_DATA(P), NULL, PSI_WARNING, - "Could not read %zu bytes from '%s': %s", - sb.st_size + YYMAXFILL, filename, strerror(errno)); - } - return NULL; - } - - fb->length = sb.st_size; - fb->file = zend_string_init_interned(filename, strlen(filename), 1); - - return fb; -} - -struct psi_parser_input *psi_parser_open_string(struct psi_parser *P, const char *string, size_t length) -{ - struct psi_parser_input *sb; - - if (!(sb = pemalloc(sizeof(*sb) + length + YYMAXFILL, 1))) { - P->error(PSI_DATA(P), NULL, PSI_WARNING, - "Could not allocate %zu bytes: %s", - length + YYMAXFILL, strerror(errno)); - return NULL; - } - - memcpy(sb->buffer, string, length); - memset(sb->buffer + length, 0, YYMAXFILL); - - sb->length = length; - sb->file = zend_string_init_interned("", strlen(""), 1); - - return sb; -} - -struct psi_plist *psi_parser_preprocess(struct psi_parser *P, struct psi_plist **tokens) -{ - if (psi_cpp_process(P->preproc, tokens)) { - return *tokens; - } - return NULL; -} - -bool psi_parser_process(struct psi_parser *P, struct psi_plist *tokens, size_t *processed) -{ - if (psi_plist_count(tokens)) { - return 0 == psi_parser_proc_parse(P, tokens, processed); - } - return true; -} - -void psi_parser_postprocess(struct psi_parser *P) -{ - unsigned flags; - zend_string *name; - struct psi_validate_scope scope = {0}; - - psi_validate_scope_ctor(&scope); - scope.defs = &P->preproc->defs; - - flags = P->flags; - P->flags |= PSI_SILENT; - - /* register const macros */ - ZEND_HASH_FOREACH_STR_KEY_PTR(&P->preproc->defs, name, scope.macro) - { - if (scope.macro->sig) { - } else if (scope.macro->exp) { - if (psi_num_exp_validate(PSI_DATA(P), scope.macro->exp, &scope)) { - struct psi_impl_type *type; - struct psi_impl_def_val *def; - struct psi_const *cnst; - struct psi_num_exp *num; - smart_str ns_name = {0}; - zend_string *name_str, *type_str; - - smart_str_appendl_ex(&ns_name, ZEND_STRL("psi\\"), 1); - smart_str_append_ex(&ns_name, name, 1); - name_str = smart_str_extract(&ns_name); - type_str = zend_string_init_interned(ZEND_STRL(""), 1); - - num = psi_num_exp_copy(scope.macro->exp); - def = psi_impl_def_val_init(PSI_T_NUMBER, num); - type = psi_impl_type_init(PSI_T_NUMBER, type_str); - cnst = psi_const_init(type, name_str, def); - P->consts = psi_plist_add(P->consts, &cnst); - zend_string_release(name_str); - zend_string_release(type_str); - } - } else { - if (psi_plist_count(scope.macro->tokens) == 1) { - struct psi_token *t; - - if (psi_plist_get(scope.macro->tokens, 0, &t)) { - if (t->type == PSI_T_QUOTED_STRING) { - struct psi_impl_type *type; - struct psi_impl_def_val *def; - struct psi_const *cnst; - smart_str ns_name = {0}; - zend_string *name_str, *type_str; - - smart_str_appendl_ex(&ns_name, ZEND_STRL("psi\\"), 1); - smart_str_append_ex(&ns_name, name, 1); - name_str = smart_str_extract(&ns_name); - type_str = zend_string_init_interned(ZEND_STRL("string"), 1); - - type = psi_impl_type_init(PSI_T_STRING, type_str); - def = psi_impl_def_val_init(PSI_T_QUOTED_STRING, t->text); - cnst = psi_const_init(type, name_str, def); - P->consts = psi_plist_add(P->consts, &cnst); - zend_string_release(name_str); - zend_string_release(type_str); - } - } - } - } - } - ZEND_HASH_FOREACH_END(); - - P->flags = flags; - - psi_validate_scope_dtor(&scope); -} - -bool psi_parser_parse(struct psi_parser *P, struct psi_parser_input *I) -{ - struct psi_plist *scanned, *preproc; - size_t processed = 0; - - if (!(scanned = psi_parser_scan(P, I))) { - return false; - } - - if (!(preproc = psi_parser_preprocess(P, &scanned))) { - psi_plist_free(scanned); - return false; - } - - if (!psi_parser_process(P, preproc, &processed)) { - psi_plist_free(preproc); - return false; - } - - psi_parser_postprocess(P); - - psi_plist_free(preproc); - return true; -} - -void psi_parser_dtor(struct psi_parser *P) -{ - psi_cpp_free(&P->preproc); - psi_data_dtor(PSI_DATA(P)); - - memset(P, 0, sizeof(*P)); -} - -void psi_parser_free(struct psi_parser **P) -{ - if (*P) { - psi_parser_dtor(*P); - free(*P); - *P = NULL; - } -} - -#define NEWLINE() \ - eol = cur; \ - ++I->lines - -#define NEWTOKEN(t) \ - if (t == PSI_T_COMMENT || t == PSI_T_WHITESPACE) { \ - token = psi_token_init(t, "", 0, tok - eol + 1, I->lines, I->file); \ - } else { \ - token = psi_token_init(t, tok, cur - tok, tok - eol + 1, I->lines, I->file); \ - } \ - tokens = psi_plist_add(tokens, &token); \ - if (P->flags & PSI_DEBUG) { \ - fprintf(stderr, "PSI< "); \ - psi_token_dump(2, token); \ - } - - - - -struct psi_plist *psi_parser_scan(struct psi_parser *P, struct psi_parser_input *I) -{ - struct psi_plist *tokens; - struct psi_token *token; - const char *tok, *cur, *lim, *mrk, *eol, *ctxmrk; - unsigned parens; - bool escaped; - token_t char_width; - - PSI_DEBUG_PRINT(P, "PSI: scanning %s\n", I->file->val); - - tok = mrk = eol = cur = I->buffer; - lim = I->buffer + I->length; - I->lines = 1; - tokens = psi_plist_init((psi_plist_dtor) psi_token_free); - - start: ; - char_width = 1; - ctxmrk = NULL; - tok = cur; - - (void) ctxmrk; - - /*!re2c - - re2c:indent:top = 2; - re2c:define:YYCTYPE = "unsigned char"; - re2c:define:YYCURSOR = cur; - re2c:define:YYLIMIT = lim; - re2c:define:YYMARKER = mrk; - re2c:define:YYCTXMARKER = ctxmrk; - re2c:define:YYFILL = "if (cur >= lim) goto done;"; - re2c:yyfill:parameter = 0; - - W = [a-zA-Z0-9_\x80-\xff]; - SP = [ \t\f]; - EOL = [\r\n]; - NAME = [a-zA-Z_\x80-\xff] W*; - NSNAME = (NAME)? ("\\" NAME)+; - DOLLAR_NAME = '$' W+; - CPP_HEADER = "<" [-._/a-zA-Z0-9]+ ">"; - CPP_ATTRIBUTE = "__attribute__" SP* "(("; - - DEC_CONST = [1-9] [0-9]*; - OCT_CONST = "0" [0-7]*; - HEX_CONST = '0x' [0-9a-fA-F]+; - INT_CONST = (DEC_CONST | OCT_CONST | HEX_CONST); - - FLT_HEX_CONST = HEX_CONST ("." [0-9a-fA-F]*)? 'p' [+-]? [0-9]+; - FLT_DEC_NUM = "0" | DEC_CONST; - FLT_DEC_CONST = (FLT_DEC_NUM ("." [0-9]*)? 'e' [+-]? [0-9]+) | (FLT_DEC_NUM "." [0-9]*) | ("." [0-9]+); - FLT_CONST = (FLT_DEC_CONST | FLT_HEX_CONST); - - [+-]? INT_CONST { NEWTOKEN(PSI_T_NUMBER); token->flags = PSI_NUMBER_INT; goto start; } - [+-]? INT_CONST / 'u' { NEWTOKEN(PSI_T_NUMBER); token->flags = PSI_NUMBER_INT | PSI_NUMBER_U; cur += 1; goto start; } - [+-]? INT_CONST / 'l' { NEWTOKEN(PSI_T_NUMBER); token->flags = PSI_NUMBER_INT | PSI_NUMBER_L; cur += 1; goto start; } - [+-]? INT_CONST / ('lu' | 'ul') { NEWTOKEN(PSI_T_NUMBER); token->flags = PSI_NUMBER_INT | PSI_NUMBER_UL; cur += 2; goto start; } - [+-]? INT_CONST / ('llu' | 'ull') { NEWTOKEN(PSI_T_NUMBER); token->flags = PSI_NUMBER_INT | PSI_NUMBER_ULL; cur += 3; goto start; } - - [+-]? FLT_CONST { NEWTOKEN(PSI_T_NUMBER); token->flags = PSI_NUMBER_FLT; goto start; } - [+-]? FLT_CONST / 'f' { NEWTOKEN(PSI_T_NUMBER); token->flags = PSI_NUMBER_FLT | PSI_NUMBER_F; cur += 1; goto start; } - [+-]? FLT_CONST / 'l' { NEWTOKEN(PSI_T_NUMBER); token->flags = PSI_NUMBER_FLT | PSI_NUMBER_L; cur += 1; goto start; } - [+-]? FLT_CONST / 'df' { NEWTOKEN(PSI_T_NUMBER); token->flags = PSI_NUMBER_FLT | PSI_NUMBER_DF; cur += 2; goto start; } - [+-]? FLT_CONST / 'dd' { NEWTOKEN(PSI_T_NUMBER); token->flags = PSI_NUMBER_FLT | PSI_NUMBER_DD; cur += 2; goto start; } - [+-]? FLT_CONST / 'dl' { NEWTOKEN(PSI_T_NUMBER); token->flags = PSI_NUMBER_FLT | PSI_NUMBER_DL; cur += 2; goto start; } - - "'" { escaped = false; tok += 1; goto character; } - "\"" { escaped = false; tok += 1; goto string; } - "u8" / "\"" { char_width = 1; } - "u" / ['"] { char_width = 2; } - "U" / ['"] { char_width = 4; } - "L" / ['"] { char_width = sizeof(wchar_t)/8; } - - "/*" { goto comment; } - "//" { goto comment_sl; } - - "##" { NEWTOKEN(PSI_T_CPP_PASTE); goto start; } - "#" { NEWTOKEN(PSI_T_HASH); goto start; } - "(" { NEWTOKEN(PSI_T_LPAREN); goto start; } - ")" { NEWTOKEN(PSI_T_RPAREN); goto start; } - ";" { NEWTOKEN(PSI_T_EOS); goto start; } - "," { NEWTOKEN(PSI_T_COMMA); goto start; } - ":" { NEWTOKEN(PSI_T_COLON); goto start; } - "{" { NEWTOKEN(PSI_T_LBRACE); goto start; } - "}" { NEWTOKEN(PSI_T_RBRACE); goto start; } - "[" { NEWTOKEN(PSI_T_LBRACKET); goto start; } - "]" { NEWTOKEN(PSI_T_RBRACKET); goto start; } - "!=" { NEWTOKEN(PSI_T_CMP_NE); goto start; } - "==" { NEWTOKEN(PSI_T_CMP_EQ); goto start; } - "&&" { NEWTOKEN(PSI_T_AND); goto start; } - "||" { NEWTOKEN(PSI_T_OR); goto start; } - "=" { NEWTOKEN(PSI_T_EQUALS); goto start; } - "*" { NEWTOKEN(PSI_T_ASTERISK); goto start; } - "~" { NEWTOKEN(PSI_T_TILDE); goto start; } - "!" { NEWTOKEN(PSI_T_NOT); goto start; } - "%" { NEWTOKEN(PSI_T_MODULO); goto start; } - "&" { NEWTOKEN(PSI_T_AMPERSAND); goto start; } - "+" { NEWTOKEN(PSI_T_PLUS); goto start; } - "-" { NEWTOKEN(PSI_T_MINUS); goto start; } - "/" { NEWTOKEN(PSI_T_SLASH); goto start; } - "\\" { NEWTOKEN(PSI_T_BSLASH); goto start; } - "|" { NEWTOKEN(PSI_T_PIPE); goto start; } - "^" { NEWTOKEN(PSI_T_CARET); goto start; } - "<<" { NEWTOKEN(PSI_T_LSHIFT); goto start; } - ">>" { NEWTOKEN(PSI_T_RSHIFT); goto start; } - "<=" { NEWTOKEN(PSI_T_CMP_LE); goto start; } - ">=" { NEWTOKEN(PSI_T_CMP_GE); goto start; } - "<" { NEWTOKEN(PSI_T_LCHEVR); goto start; } - ">" { NEWTOKEN(PSI_T_RCHEVR); goto start; } - "." { NEWTOKEN(PSI_T_PERIOD); goto start; } - "..." { NEWTOKEN(PSI_T_ELLIPSIS); goto start; } - "?" { NEWTOKEN(PSI_T_IIF); goto start; } - "pragma" { NEWTOKEN(PSI_T_PRAGMA); goto start; } - "pragma" W+ "once" { NEWTOKEN(PSI_T_PRAGMA_ONCE); goto start; } - "__inline" { NEWTOKEN(PSI_T_CPP_INLINE); goto start; } - "__restrict" { NEWTOKEN(PSI_T_CPP_RESTRICT); goto start; } - "__extension__" { NEWTOKEN(PSI_T_CPP_EXTENSION); goto start; } - "__asm__" { NEWTOKEN(PSI_T_CPP_ASM); goto start; } - "volatile" { NEWTOKEN(PSI_T_VOLATILE); goto start; } - "sizeof" { NEWTOKEN(PSI_T_SIZEOF); goto start; } - "line" { NEWTOKEN(PSI_T_LINE); goto start; } - "typedef" { NEWTOKEN(PSI_T_TYPEDEF); goto start; } - "struct" { NEWTOKEN(PSI_T_STRUCT); goto start; } - "union" { NEWTOKEN(PSI_T_UNION); goto start; } - "enum" { NEWTOKEN(PSI_T_ENUM); goto start; } - "const" { NEWTOKEN(PSI_T_CONST); goto start; } - "void" { NEWTOKEN(PSI_T_VOID); goto start; } - "bool" { NEWTOKEN(PSI_T_BOOL); goto start; } - "char" { NEWTOKEN(PSI_T_CHAR); goto start; } - "short" { NEWTOKEN(PSI_T_SHORT); goto start; } - "int" { NEWTOKEN(PSI_T_INT); goto start; } - "long" { NEWTOKEN(PSI_T_LONG); goto start; } - "float" { NEWTOKEN(PSI_T_FLOAT); goto start; } - "double" { NEWTOKEN(PSI_T_DOUBLE); goto start; } - "unsigned" { NEWTOKEN(PSI_T_UNSIGNED); goto start; } - "signed" { NEWTOKEN(PSI_T_SIGNED); goto start; } - 'IF' { NEWTOKEN(PSI_T_IF); goto start; } - 'IFDEF' { NEWTOKEN(PSI_T_IFDEF); goto start; } - 'IFNDEF' { NEWTOKEN(PSI_T_IFNDEF); goto start; } - 'ELSE' { NEWTOKEN(PSI_T_ELSE); goto start; } - 'ELIF' { NEWTOKEN(PSI_T_ELIF); goto start; } - 'ENDIF' { NEWTOKEN(PSI_T_ENDIF); goto start; } - 'DEFINE' { NEWTOKEN(PSI_T_DEFINE); goto start; } - 'DEFINED' { NEWTOKEN(PSI_T_DEFINED); goto start; } - 'UNDEF' { NEWTOKEN(PSI_T_UNDEF); goto start; } - 'WARNING' { NEWTOKEN(PSI_T_WARNING); goto start; } - 'ERROR' { NEWTOKEN(PSI_T_ERROR); goto start; } - 'INCLUDE' { NEWTOKEN(PSI_T_INCLUDE); goto start; } - 'INCLUDE_NEXT' { NEWTOKEN(PSI_T_INCLUDE_NEXT); goto start; } - 'TRUE' { NEWTOKEN(PSI_T_TRUE); goto start; } - 'FALSE' { NEWTOKEN(PSI_T_FALSE); goto start; } - 'NULL' { NEWTOKEN(PSI_T_NULL); goto start; } - 'MIXED' { NEWTOKEN(PSI_T_MIXED); goto start; } - 'CALLABLE' { NEWTOKEN(PSI_T_CALLABLE); goto start; } - 'STRING' { NEWTOKEN(PSI_T_STRING); goto start; } - 'ARRAY' { NEWTOKEN(PSI_T_ARRAY); goto start; } - 'OBJECT' { NEWTOKEN(PSI_T_OBJECT); goto start; } - 'CALLBACK' { NEWTOKEN(PSI_T_CALLBACK); goto start; } - 'STATIC' { NEWTOKEN(PSI_T_STATIC); goto start; } - 'FUNCTION' { NEWTOKEN(PSI_T_FUNCTION); goto start; } - 'LIB' { NEWTOKEN(PSI_T_LIB); goto start; } - 'LET' { NEWTOKEN(PSI_T_LET); goto start; } - 'SET' { NEWTOKEN(PSI_T_SET); goto start; } - 'PRE_ASSERT' { NEWTOKEN(PSI_T_PRE_ASSERT); goto start; } - 'POST_ASSERT' { NEWTOKEN(PSI_T_POST_ASSERT); goto start; } - 'RETURN' { NEWTOKEN(PSI_T_RETURN); goto start; } - 'AS' { NEWTOKEN(PSI_T_AS); goto start; } - 'FREE' { NEWTOKEN(PSI_T_FREE); goto start; } - 'TEMP' { NEWTOKEN(PSI_T_TEMP); goto start; } - 'STRLEN' { NEWTOKEN(PSI_T_STRLEN); goto start; } - 'STRVAL' { NEWTOKEN(PSI_T_STRVAL); goto start; } - 'PATHVAL' { NEWTOKEN(PSI_T_PATHVAL); goto start; } - 'INTVAL' { NEWTOKEN(PSI_T_INTVAL); goto start; } - 'FLOATVAL' { NEWTOKEN(PSI_T_FLOATVAL); goto start; } - 'BOOLVAL' { NEWTOKEN(PSI_T_BOOLVAL); goto start; } - 'ARRVAL' { NEWTOKEN(PSI_T_ARRVAL); goto start; } - 'OBJVAL' { NEWTOKEN(PSI_T_OBJVAL); goto start; } - 'ZVAL' { NEWTOKEN(PSI_T_ZVAL); goto start; } - 'COUNT' { NEWTOKEN(PSI_T_COUNT); goto start; } - 'CALLOC' { NEWTOKEN(PSI_T_CALLOC); goto start; } - 'TO_OBJECT' { NEWTOKEN(PSI_T_TO_OBJECT); goto start; } - 'TO_ARRAY' { NEWTOKEN(PSI_T_TO_ARRAY); goto start; } - 'TO_STRING' { NEWTOKEN(PSI_T_TO_STRING); goto start; } - 'TO_INT' { NEWTOKEN(PSI_T_TO_INT); goto start; } - 'TO_FLOAT' { NEWTOKEN(PSI_T_TO_FLOAT); goto start; } - 'TO_BOOL' { NEWTOKEN(PSI_T_TO_BOOL); goto start; } - NAME { NEWTOKEN(PSI_T_NAME); goto start; } - NSNAME { NEWTOKEN(PSI_T_NSNAME); goto start; } - DOLLAR_NAME { NEWTOKEN(PSI_T_DOLLAR_NAME); goto start; } - CPP_HEADER { tok += 1; cur -= 1; NEWTOKEN(PSI_T_CPP_HEADER); cur += 1; goto start; } - CPP_ATTRIBUTE { parens = 2; goto cpp_attribute; } - EOL { NEWTOKEN(PSI_T_EOL); NEWLINE(); goto start; } - SP+ { NEWTOKEN(PSI_T_WHITESPACE); goto start; } - [^] { NEWTOKEN(-2); goto error; } - * { NEWTOKEN(-1); goto error; } - - */ - - character: ; - /*!re2c - - EOL { NEWLINE(); goto character; } - "\\" { escaped = !escaped; goto character; } - "'" { - if (escaped) { - escaped = false; - goto character; - } - cur -= 1; - NEWTOKEN(PSI_T_QUOTED_CHAR); - cur += 1; - token->flags = char_width; - goto start; - } - * { escaped = false; goto character; } - - */ - - string: ; - /*!re2c - - EOL { NEWLINE(); goto string; } - "\\" { escaped = !escaped; goto string; } - "\"" { - if (escaped) { - escaped = false; - goto string; - } - cur -= 1; - NEWTOKEN(PSI_T_QUOTED_STRING); - cur += 1; - token->flags = char_width; - goto start; - } - * { escaped = false; goto string; } - - */ - - comment: ; - /*!re2c - - EOL { NEWLINE(); goto comment; } - "*" "/" { NEWTOKEN(PSI_T_COMMENT); goto start; } - * { goto comment; } - - */ - - comment_sl: ; - /*!re2c - - EOL { NEWTOKEN(PSI_T_COMMENT); NEWLINE(); goto start; } - * { goto comment_sl; } - - */ - - cpp_attribute: ; - - /*!re2c - - "(" { ++parens; goto cpp_attribute; } - ")" { if (parens == 1) { NEWTOKEN(PSI_T_CPP_ATTRIBUTE); goto start; } else { --parens; goto cpp_attribute; } } - EOL { NEWLINE(); goto cpp_attribute; } - * { goto cpp_attribute; } - - */ -error: ; - - P->error(PSI_DATA(P), token, PSI_WARNING, "PSI syntax error: unexpected input (%d) '%.*s' at col %tu", - token->type, token->text->len, token->text->val, tok - eol + 1); - psi_plist_free(tokens); - return NULL; - -done: - - PSI_DEBUG_PRINT(P, "PSI: EOF cur=%p lim=%p\n", cur, lim); - - return tokens; -} diff --git a/src/parser_proc.c b/src/parser_proc.c index b239d6d..90c4d2f 100644 --- a/src/parser_proc.c +++ b/src/parser_proc.c @@ -130,37 +130,12 @@ static inline void psi_parser_proc_add_enum(struct psi_parser *P, struct psi_dec } P->enums = psi_plist_add(P->enums, &e); } -static inline void psi_parser_proc_deanon_typedef(struct psi_decl_arg *def) -{ - switch (def->type->type) { - case PSI_T_STRUCT: - if (!psi_decl_type_is_anon(def->type->name, "struct")) { - return; - } - break; - case PSI_T_UNION: - if (!psi_decl_type_is_anon(def->type->name, "union")) { - return; - } - break; - case PSI_T_ENUM: - if (!psi_decl_type_is_anon(def->type->name, "enum")) { - return; - } - break; - default: - return; - } - zend_string_release(def->type->name); - def->type->name = zend_string_copy(def->var->name); -} static inline void psi_parser_proc_add_typedef(struct psi_parser *P, struct psi_decl_arg *def) { assert(def); if (!P->types) { P->types = psi_plist_init((psi_plist_dtor) psi_decl_arg_free); } - //psi_parser_proc_deanon_typedef(def); P->types = psi_plist_add(P->types, &def); } static inline void psi_parser_proc_add_const(struct psi_parser *P, struct psi_const *cnst) { @@ -173,7 +148,7 @@ static inline void psi_parser_proc_add_const(struct psi_parser *P, struct psi_co } static inline void psi_parser_proc_add_decl(struct psi_parser *P, struct psi_decl *decl) { assert(decl); - + if (psi_decl_is_blacklisted(decl->func->var->name->val)) { psi_decl_free(&decl); return; @@ -202,7 +177,7 @@ static inline void psi_parser_proc_add_impl(struct psi_parser *P, struct psi_imp /* end code */ -#line 206 "src/parser_proc.c" /* glr.c:264 */ +#line 181 "src/parser_proc.c" /* glr.c:264 */ #include #include @@ -307,18 +282,18 @@ static inline void psi_parser_proc_add_impl(struct psi_parser *P, struct psi_imp #endif /* YYFINAL -- State number of the termination state. */ -#define YYFINAL 161 +#define YYFINAL 166 /* YYLAST -- Last index in YYTABLE. */ -#define YYLAST 7687 +#define YYLAST 8213 /* YYNTOKENS -- Number of terminals. */ #define YYNTOKENS 140 /* YYNNTS -- Number of nonterminals. */ #define YYNNTS 142 /* YYNRULES -- Number of rules. */ -#define YYNRULES 630 +#define YYNRULES 637 /* YYNRULES -- Number of states. */ -#define YYNSTATES 935 +#define YYNSTATES 950 /* YYMAXRHS -- Maximum number of symbols on right-hand side of rule. */ #define YYMAXRHS 16 /* YYMAXLEFT -- Maximum number of symbols to the left of a handle @@ -381,70 +356,70 @@ static const unsigned char yytranslate[] = /* YYRLINE[YYN] -- source line where rule number YYN was defined. */ static const unsigned short yyrline[] = { - 0, 433, 433, 433, 433, 433, 433, 433, 433, 433, - 433, 433, 433, 433, 433, 433, 433, 433, 433, 433, - 434, 434, 434, 434, 435, 435, 435, 435, 435, 435, - 435, 435, 435, 435, 435, 435, 435, 435, 435, 435, - 435, 435, 435, 436, 436, 436, 436, 436, 436, 436, - 436, 436, 436, 436, 436, 436, 436, 436, 436, 436, - 436, 436, 436, 436, 436, 436, 436, 436, 436, 436, - 436, 436, 436, 436, 436, 436, 436, 436, 436, 436, - 436, 436, 436, 436, 436, 436, 436, 436, 436, 436, - 436, 436, 436, 436, 436, 436, 436, 436, 436, 436, - 436, 436, 436, 436, 436, 436, 436, 436, 436, 436, - 436, 436, 436, 436, 436, 436, 436, 436, 436, 436, - 436, 436, 436, 436, 436, 436, 436, 436, 436, 436, - 436, 436, 436, 436, 436, 436, 436, 436, 436, 436, - 436, 436, 436, 436, 436, 436, 436, 436, 436, 436, - 436, 436, 436, 436, 436, 436, 436, 436, 436, 436, - 436, 437, 437, 437, 437, 437, 437, 437, 437, 437, - 437, 437, 437, 437, 437, 437, 437, 437, 437, 437, - 437, 437, 437, 437, 437, 437, 437, 437, 437, 437, - 437, 437, 437, 437, 437, 437, 437, 437, 437, 437, - 437, 437, 437, 437, 437, 437, 437, 437, 437, 437, - 437, 437, 437, 437, 437, 437, 437, 437, 437, 437, - 437, 437, 437, 437, 437, 437, 437, 437, 437, 437, - 437, 437, 437, 437, 437, 437, 437, 437, 437, 437, - 437, 437, 437, 437, 437, 437, 437, 437, 437, 437, - 437, 437, 437, 437, 437, 437, 437, 437, 437, 437, - 437, 437, 437, 437, 437, 437, 437, 437, 437, 437, - 437, 437, 437, 437, 437, 437, 437, 441, 442, 445, - 446, 449, 450, 451, 452, 458, 462, 465, 468, 471, - 477, 480, 483, 486, 489, 495, 501, 504, 510, 533, - 537, 541, 546, 550, 554, 558, 565, 566, 570, 571, - 575, 576, 577, 581, 582, 586, 587, 591, 592, 593, - 597, 598, 602, 607, 612, 617, 626, 629, 632, 633, - 639, 644, 652, 655, 659, 663, 670, 674, 678, 682, - 687, 698, 709, 714, 719, 723, 729, 739, 742, 746, - 750, 756, 763, 767, 771, 778, 779, 780, 784, 798, - 804, 807, 813, 816, 822, 823, 831, 842, 851, 863, - 864, 868, 878, 887, 899, 900, 903, 909, 910, 914, - 918, 922, 927, 932, 940, 941, 942, 945, 951, 954, - 957, 963, 964, 968, 971, 974, 980, 983, 986, 994, - 1006, 1009, 1012, 1015, 1022, 1025, 1035, 1038, 1041, 1044, - 1045, 1046, 1050, 1053, 1056, 1067, 1074, 1084, 1087, 1093, - 1096, 1103, 1134, 1137, 1143, 1146, 1152, 1158, 1159, 1160, - 1161, 1162, 1163, 1167, 1171, 1172, 1176, 1177, 1181, 1182, - 1189, 1190, 1194, 1201, 1212, 1219, 1227, 1251, 1280, 1287, - 1298, 1344, 1385, 1400, 1403, 1406, 1412, 1415, 1421, 1436, - 1439, 1468, 1476, 1504, 1509, 1517, 1527, 1537, 1540, 1544, - 1550, 1564, 1581, 1584, 1590, 1597, 1607, 1614, 1617, 1623, - 1628, 1636, 1640, 1644, 1648, 1652, 1656, 1663, 1667, 1671, - 1675, 1679, 1683, 1689, 1693, 1700, 1703, 1715, 1719, 1723, - 1730, 1743, 1756, 1769, 1772, 1779, 1780, 1784, 1787, 1790, - 1793, 1799, 1803, 1810, 1813, 1816, 1831, 1832, 1833, 1834, - 1838, 1841, 1847, 1848, 1854, 1857, 1863, 1864, 1868, 1869, - 1879, 1882, 1889, 1894, 1899, 1909, 1912, 1918, 1921, 1927, - 1934, 1941, 1948, 1949, 1953, 1954, 1955, 1956, 1960, 1961, - 1962, 1963, 1964, 1968, 1971, 1977, 1980, 1983, 1986, 1989, - 1995, 1999, 2007, 2008, 2012, 2019, 2022, 2025, 2028, 2032, - 2035, 2041, 2045, 2053, 2060, 2065, 2073, 2081, 2082, 2083, - 2084, 2085, 2086, 2087, 2088, 2089, 2090, 2094, 2097, 2103, - 2106, 2112, 2113, 2117, 2120, 2126, 2129, 2135, 2142, 2146, - 2153, 2156, 2159, 2165, 2172, 2175, 2178, 2185, 2190, 2198, - 2199, 2200, 2201, 2202, 2203, 2204, 2205, 2209, 2212, 2218, - 2221, 2227, 2234, 2235, 2239, 2246, 2249, 2255, 2263, 2266, - 2272 + 0, 408, 408, 408, 408, 408, 408, 408, 408, 408, + 408, 408, 408, 408, 408, 408, 408, 408, 408, 408, + 409, 409, 409, 409, 410, 410, 410, 410, 410, 410, + 410, 410, 410, 410, 410, 410, 410, 410, 410, 410, + 410, 410, 410, 410, 410, 410, 411, 411, 411, 411, + 411, 411, 411, 411, 411, 411, 411, 411, 411, 411, + 411, 411, 411, 411, 411, 411, 411, 411, 411, 411, + 411, 411, 411, 411, 411, 411, 411, 411, 411, 411, + 411, 411, 411, 411, 411, 411, 411, 411, 411, 411, + 411, 411, 411, 411, 411, 411, 411, 411, 411, 411, + 411, 411, 411, 411, 411, 411, 411, 411, 411, 411, + 411, 411, 411, 411, 411, 411, 411, 411, 411, 411, + 411, 411, 411, 411, 411, 411, 411, 411, 411, 411, + 411, 411, 411, 411, 411, 411, 411, 411, 411, 411, + 411, 411, 411, 411, 411, 411, 411, 411, 411, 411, + 411, 411, 411, 411, 411, 411, 411, 411, 411, 411, + 411, 411, 411, 411, 412, 412, 412, 412, 412, 412, + 412, 412, 412, 412, 412, 412, 412, 412, 412, 412, + 412, 412, 412, 412, 412, 412, 412, 412, 412, 412, + 412, 412, 412, 412, 412, 412, 412, 412, 412, 412, + 412, 412, 412, 412, 412, 412, 412, 412, 412, 412, + 412, 412, 412, 412, 412, 412, 412, 412, 412, 412, + 412, 412, 412, 412, 412, 412, 412, 412, 412, 412, + 412, 412, 412, 412, 412, 412, 412, 412, 412, 412, + 412, 412, 412, 412, 412, 412, 412, 412, 412, 412, + 412, 412, 412, 412, 412, 412, 412, 412, 412, 412, + 412, 412, 412, 412, 412, 412, 412, 412, 412, 412, + 412, 412, 412, 412, 412, 412, 412, 412, 412, 412, + 416, 417, 420, 421, 424, 425, 426, 427, 433, 437, + 440, 443, 446, 452, 455, 458, 461, 464, 470, 476, + 479, 485, 508, 512, 516, 521, 525, 529, 533, 540, + 541, 545, 546, 550, 551, 552, 556, 557, 561, 562, + 566, 567, 568, 572, 573, 577, 582, 587, 592, 601, + 604, 607, 608, 614, 619, 627, 630, 634, 638, 645, + 649, 653, 657, 662, 673, 684, 689, 694, 698, 704, + 715, 718, 722, 730, 734, 740, 744, 751, 755, 759, + 766, 767, 768, 772, 786, 792, 795, 801, 804, 810, + 811, 819, 830, 839, 851, 852, 856, 866, 875, 887, + 888, 891, 897, 898, 902, 906, 910, 915, 920, 928, + 929, 930, 933, 939, 942, 945, 951, 952, 956, 959, + 962, 968, 971, 974, 982, 994, 997, 1000, 1003, 1010, + 1013, 1023, 1026, 1029, 1032, 1033, 1034, 1038, 1041, 1044, + 1055, 1062, 1072, 1075, 1081, 1084, 1091, 1127, 1130, 1136, + 1139, 1145, 1151, 1152, 1153, 1154, 1155, 1156, 1160, 1164, + 1165, 1169, 1170, 1174, 1175, 1182, 1183, 1187, 1194, 1205, + 1212, 1220, 1244, 1273, 1280, 1291, 1337, 1378, 1393, 1396, + 1399, 1405, 1408, 1414, 1429, 1432, 1461, 1469, 1497, 1502, + 1510, 1520, 1530, 1533, 1537, 1543, 1557, 1574, 1577, 1583, + 1590, 1597, 1605, 1616, 1623, 1626, 1632, 1637, 1645, 1649, + 1653, 1657, 1661, 1665, 1672, 1676, 1680, 1684, 1688, 1692, + 1698, 1702, 1709, 1712, 1724, 1728, 1732, 1739, 1752, 1765, + 1778, 1781, 1788, 1789, 1793, 1796, 1799, 1802, 1808, 1812, + 1819, 1822, 1825, 1840, 1841, 1842, 1843, 1847, 1850, 1856, + 1857, 1863, 1866, 1872, 1873, 1877, 1878, 1888, 1891, 1898, + 1903, 1908, 1918, 1921, 1927, 1930, 1936, 1943, 1950, 1957, + 1958, 1962, 1963, 1964, 1965, 1966, 1970, 1971, 1972, 1973, + 1977, 1980, 1986, 1989, 1992, 1995, 1998, 2004, 2008, 2016, + 2017, 2021, 2028, 2031, 2034, 2037, 2041, 2044, 2050, 2054, + 2062, 2069, 2074, 2082, 2090, 2091, 2092, 2093, 2094, 2095, + 2096, 2097, 2098, 2099, 2103, 2106, 2112, 2115, 2121, 2122, + 2126, 2129, 2135, 2138, 2144, 2151, 2155, 2162, 2165, 2168, + 2174, 2181, 2184, 2187, 2194, 2199, 2207, 2208, 2209, 2210, + 2211, 2212, 2213, 2214, 2218, 2221, 2227, 2230, 2236, 2243, + 2244, 2248, 2255, 2258, 2264, 2272, 2275, 2281 }; #endif @@ -514,107 +489,108 @@ static const char *const yytname[] = }; #endif -#define YYPACT_NINF -714 -#define YYTABLE_NINF -629 +#define YYPACT_NINF -731 +#define YYTABLE_NINF -636 /* YYPACT[STATE-NUM] -- Index in YYTABLE of the portion describing STATE-NUM. */ static const short yypact[] = { - 494, -714, -714, -714, -714, -714, 99, -714, -714, -714, - 541, -714, -714, -714, 742, 1371, 7421, 7421, 7421, 149, - 50, -34, 112, -714, 237, -714, 188, 494, -714, -714, - -714, -714, -714, 6679, 597, -714, -714, -714, -714, 129, - 219, -714, -714, -714, -714, 1629, 45, -714, -714, 75, - 196, 204, -714, -714, -714, -714, 161, -714, 166, -714, - -714, -714, 7421, 7421, 7421, -714, -714, -714, 179, -714, - -714, -714, -714, -714, -714, -714, -714, -714, -714, -714, - -714, 846, -714, -714, -714, -714, 209, 972, 972, 27, - -714, 972, 6453, 7421, 7421, 1742, 218, -714, -714, -714, - 220, 7421, 215, 215, -714, -714, -714, 5436, -714, -714, - -714, -714, -714, -714, -714, -714, -714, -714, -714, -714, - -714, -714, -714, -714, -714, -714, -714, -714, -714, -714, - -714, -714, -714, -714, -714, -714, -714, -714, 59, -714, - -714, 59, 221, -714, -714, -714, -714, -714, 232, -714, - 229, -714, 226, -714, 240, -714, 1855, 1371, 141, -714, - 45, -714, -714, 42, 235, -714, -714, 242, 7421, 7, - -714, -714, -714, 269, -714, 136, -714, -714, -714, 135, - -714, 249, 258, 260, 1968, 1968, 7421, 85, -714, -714, - -714, 6905, 262, -714, 1481, -714, -714, -714, -714, -714, - -714, -714, -714, 1594, -714, -714, -714, -714, 1707, 1820, - -714, -714, -714, 1933, -714, -714, -714, -714, -714, -714, - -714, -714, -714, -714, -714, -714, -714, -714, -714, -714, - -714, -714, -714, -714, -714, -714, -714, -714, -714, -714, - -714, -714, -714, -714, -714, -714, -714, -714, -714, -714, - -714, -714, -714, -714, -714, -714, 2046, 2159, 2272, 2385, - 2498, -714, -714, -714, -714, -714, -714, -714, -714, -714, - -714, -714, -714, -714, -714, -714, 2611, -714, 2724, 2837, - 2950, 3063, 3176, 3289, -714, 3402, -714, -714, 3515, 3628, - 3741, 3854, 3967, 4080, 4193, 4306, 4419, 4532, 4645, 4758, - 4871, 4984, 5097, 5210, -714, -714, -714, -714, -714, -714, - -714, 5323, 972, -714, -714, -714, -714, -714, -714, -714, - -714, -714, -714, -714, -714, -714, -714, -714, -714, -714, - -714, -714, -714, -714, -714, -714, -714, -714, -714, -714, - -714, -714, -714, -714, -714, -714, -714, -714, -714, -714, - -714, 972, -714, -714, -714, -714, -714, -714, -714, 142, - 6453, -714, -714, -714, -714, 7018, 6453, 267, 7550, -714, - 61, -714, 89, -714, -714, -714, -714, 259, 266, 266, - 68, 68, 272, -714, 85, 281, 283, -714, 285, -714, - -714, -714, 1338, -714, 268, 235, -714, -714, -714, -714, - -714, 312, -714, -714, 1224, -714, 301, -714, 103, 6679, - -714, 299, 115, 298, -714, -714, 131, 293, 300, -714, - 6905, 6114, 6905, 7421, 6905, -714, -714, 23, -714, -714, - -714, -714, -714, 6340, -714, 302, -714, 7421, -714, -714, - 303, 7550, 311, -714, -714, -714, -714, 6599, 316, -714, - 6784, 7421, -714, -714, 6453, -714, -714, -714, -714, -714, - -714, -714, -714, -714, -714, -714, -714, -714, -714, -714, - -714, -714, -714, 6453, 6453, 308, 1459, 6905, 6905, -714, - -714, -714, -714, 5662, 263, 255, -714, -714, -714, -714, - -714, -714, -714, 5549, -714, -714, 6340, -714, 7526, -714, - -714, 304, 7131, -714, -714, -714, -714, -714, -714, -714, - -714, -714, -714, -714, -714, -714, -714, -714, -714, -714, - -714, -714, -714, -714, -714, -714, -714, -714, -714, -714, - -714, -714, -714, -714, -714, -714, -714, -714, -714, -714, - -714, -714, -714, -714, -714, -714, -714, -714, -714, -714, - -714, -714, -714, -714, -714, -714, -714, -714, -714, -714, - -714, -714, -714, -714, -714, -714, -714, -714, -714, -714, - -714, -714, -714, -714, -714, -714, -714, -714, -714, -714, - -714, -714, -714, -714, -714, -714, -714, -714, -714, -714, - -714, -714, -714, -714, -714, -714, -714, -714, -714, -714, - -714, -714, -714, -714, -714, -714, -714, -714, -714, -714, - -714, -714, -714, -714, -714, -714, -714, -714, -714, -714, - -714, -714, -714, -714, 1098, -714, 39, 309, 1968, 235, - 278, 1629, 235, 284, 6340, 7421, 310, 305, 318, 7574, - 313, 319, -714, 322, 339, 324, 333, 170, -714, 334, - 336, -714, -714, -714, 6667, 6905, 7190, -714, 268, 335, - -714, -714, -714, 338, 7550, 340, 343, 7284, -714, 344, - 1742, 337, -714, -714, 6566, 719, 7421, 215, 215, -714, - -714, 30, -714, -714, 347, -714, 311, 7574, -714, -714, - -714, -714, -714, -714, 346, 182, -714, 112, -714, -714, - -714, 33, 40, 41, 6886, -714, -714, 6340, 6340, -714, - 268, 143, -714, -714, -714, 268, 185, -714, 349, -714, - -714, 351, 7574, -714, -714, 5775, -714, 6114, -714, 6905, - -714, 112, 6905, -714, 7421, 7303, -714, -714, -714, -714, - -714, 353, 345, -714, -714, -714, -714, 6453, 6453, 354, - -714, 63, 356, -714, 337, 266, 266, -714, 747, 360, - 747, 358, 6340, -714, 7502, -714, 7421, 1968, -714, 6792, - 235, 341, 235, 235, 165, 292, 203, 372, 7574, -714, - -714, -714, -714, 374, 6227, -714, 376, 6905, 189, -714, - 378, 302, 379, 972, 7362, 7550, 7598, 388, 380, 382, - 6905, 385, 356, 6905, 6905, -714, 747, -714, 112, 5662, - -714, 6340, 384, 386, -714, -714, 387, -714, -714, 372, - -714, -714, -714, 7303, -714, 390, 6340, 112, -714, 5888, - 391, 394, -714, 321, -714, -714, -714, 393, 392, 405, - 337, 397, -714, 402, -714, 62, -714, 7622, 403, 401, - 235, 406, 112, 7122, 404, 408, -714, 409, -714, -714, - 95, -714, 410, 412, -714, 6905, -714, 423, 1968, 417, - -714, 355, 422, 6340, 5775, 428, -714, 6114, -714, -714, - 430, 411, 441, 337, 434, 435, 1968, 176, 6001, 7009, - 305, -714, -714, -714, 421, 6227, -714, -714, 436, 438, - -714, 440, 444, 446, 449, 450, 439, -714, -714, 5775, - -714, 457, -714, 747, 452, 235, 112, 454, 6114, -714, - 456, -714, 1968, -714, 453, -714, -714, -714, 461, 6001, - 235, 462, -714, 463, -714 + 529, -731, -731, -731, -731, -731, 128, -731, -731, -731, + 582, -731, -731, -731, 555, 722, 7975, 7975, 7975, 348, + 77, -23, 80, -731, 281, -731, 132, 529, -731, -731, + -731, -731, -731, 7120, 109, -731, -731, -731, -731, 409, + 161, -731, -731, -731, -731, 493, 26, -731, -731, 30, + 96, 126, -731, -731, -731, -731, 125, -731, 142, -731, + -731, -731, 7975, 7975, 7975, -731, -731, -731, 145, -731, + -731, -731, -731, -731, -731, -731, -731, -731, -731, -731, + -731, 861, -731, -731, -731, -731, 151, 987, 987, 33, + -731, 987, 6894, 7975, 7975, 1728, 154, -731, -731, -731, + 165, 7975, 164, 164, -731, -731, -731, -731, -731, -731, + 1353, -731, -731, -731, -731, -731, -731, -731, -731, -731, + -731, -731, -731, -731, -731, -731, -731, -731, -731, -731, + -731, -731, -731, -731, -731, -731, -731, -731, -731, -731, + -731, 114, -731, -731, 114, 181, -731, -731, -731, -731, + -731, -731, 201, 192, -731, 214, -731, 218, -731, 234, + -731, 1841, 722, 138, -731, 26, -731, -731, 46, 224, + -731, -731, 232, 7975, 17, -731, -731, -731, 261, -731, + 101, -731, -731, -731, 507, -731, 233, 244, 248, 1954, + 1954, 7975, 230, -731, -731, -731, 7459, 26, -731, 1693, + -731, -731, -731, -731, -731, -731, -731, -731, 1806, 1919, + 2032, 2145, -731, 2258, 2371, -731, -731, -731, 2484, -731, + -731, -731, -731, -731, -731, -731, -731, -731, -731, -731, + -731, -731, -731, -731, -731, -731, -731, -731, -731, -731, + -731, -731, -731, -731, -731, -731, -731, -731, -731, -731, + -731, -731, -731, -731, -731, -731, -731, -731, -731, -731, + -731, 2597, 2710, 2823, 2936, 3049, -731, -731, -731, -731, + -731, -731, -731, -731, -731, -731, -731, -731, -731, -731, + -731, 3162, -731, 3275, 3388, 3501, 3614, 3727, 3840, -731, + 3953, -731, -731, 4066, 4179, 4292, 4405, 4518, 4631, 4744, + 4857, 4970, 5083, 5196, 5309, 5422, 5535, 5648, 5761, -731, + -731, -731, -731, -731, -731, -731, 5874, 987, -731, -731, + -731, -731, -731, -731, -731, -731, -731, -731, -731, -731, + -731, -731, -731, -731, -731, -731, -731, -731, -731, -731, + -731, -731, -731, -731, -731, -731, -731, -731, -731, -731, + -731, -731, -731, -731, -731, -731, -731, -731, -731, 987, + -731, -731, -731, -731, -731, -731, -731, 116, 6894, -731, + -731, -731, -731, 7572, 6894, 250, 8076, -731, 111, -731, + 169, -731, -731, -731, -731, 245, 247, 247, 91, 91, + 6103, 256, -731, 230, 252, 266, -731, 268, -731, -731, + -731, 1467, -731, 255, 224, -731, -731, -731, -731, -731, + 301, -731, -731, 1239, -731, 283, -731, 52, 7120, -731, + 279, 173, 284, -731, -731, 175, 277, 286, -731, 7459, + 6555, 7459, 7975, 7459, -731, -731, 129, -731, -731, -731, + -731, -731, 6781, -731, 287, -731, 7975, 299, -731, 317, + 8076, 307, -731, -731, -731, -731, 755, 331, -731, 7108, + 7975, -731, -731, 1580, -731, -731, -731, -731, -731, -731, + -731, -731, -731, -731, -731, -731, -731, -731, -731, -731, + -731, -731, 6894, 6894, 323, 1420, 7459, 7459, -731, -731, + -731, -731, 153, -731, -731, -731, -731, -731, 5990, 6781, + 325, -731, 307, -731, 8100, -731, -731, 6103, 179, 427, + -731, -731, -731, -731, -731, -731, 8052, 320, 7685, -731, + -731, -731, -731, -731, -731, -731, -731, -731, -731, -731, + -731, -731, -731, -731, -731, -731, -731, -731, -731, -731, + -731, -731, -731, -731, -731, -731, -731, -731, -731, -731, + -731, -731, -731, -731, -731, -731, -731, -731, -731, -731, + -731, -731, -731, -731, -731, -731, -731, -731, -731, -731, + -731, -731, -731, -731, -731, -731, -731, -731, -731, -731, + -731, -731, -731, -731, -731, -731, -731, -731, -731, -731, + -731, -731, -731, -731, -731, -731, -731, -731, -731, -731, + -731, -731, -731, -731, -731, -731, -731, -731, -731, -731, + -731, -731, -731, -731, -731, -731, -731, -731, -731, -731, + -731, -731, -731, -731, -731, -731, -731, -731, -731, -731, + -731, -731, -731, -731, -731, -731, -731, -731, -731, -731, + 1113, -731, 76, 56, 1954, 224, 308, 493, 224, 309, + 6781, 7975, 338, 346, 356, 8100, 351, 357, -731, 360, + 369, 354, 363, 122, -731, 370, 376, -731, -731, -731, + 769, 7459, -731, 7744, -731, 255, 375, -731, -731, -731, + 378, -731, 8076, 379, 388, 7676, -731, 398, 1728, 389, + -731, -731, 7007, 229, 7975, 164, 164, -731, -731, 36, + 38, 47, 7225, -731, -731, 6781, 6781, 394, -731, -731, + -731, -731, -731, 391, 186, -731, 80, -731, -731, -731, + -731, -731, 255, 180, -731, -731, -731, 255, -731, 196, + -731, 399, -731, -731, 403, 8100, -731, -731, 6216, -731, + 6555, -731, 7459, -731, 80, 7459, -731, 7975, 7857, -731, + -731, -731, -731, -731, 405, 393, -731, -731, -731, -731, + 6894, 6894, 411, -731, 71, 412, -731, 389, 247, 247, + 6781, -731, 7838, -731, -731, 641, 413, 641, 407, 7975, + 1954, -731, 7233, 224, 392, 224, 224, 158, 350, 238, + 431, 8100, -731, -731, -731, -731, 434, 6668, -731, 433, + 7459, 219, -731, 436, 287, 440, 987, 7916, 8076, 8124, + 449, 441, 443, 7346, 446, 412, 7459, 7459, -731, 6781, + -731, 641, -731, 80, 6103, 448, 452, -731, -731, 453, + -731, -731, 431, -731, -731, -731, 7857, -731, 455, 6781, + 80, -731, 6329, 456, 460, -731, 395, -731, -731, -731, + 462, 458, 471, 389, 472, -731, -731, 474, 8148, -731, + 48, -731, 476, 484, 224, 488, 80, 7563, 489, 491, + -731, 492, -731, -731, 61, -731, 495, 494, -731, 7346, + -731, 506, 1954, 500, -731, 445, 511, 6781, 6216, 512, + -731, 6555, -731, -731, 515, 519, 523, 389, -731, 516, + 520, 1954, 276, 6442, 7442, 346, -731, -731, -731, 518, + 6668, -731, -731, 522, 521, -731, 526, 524, 530, 534, + 535, 528, -731, -731, 6216, -731, 542, -731, 641, 537, + 224, 80, 538, 6555, -731, 539, -731, 1954, -731, 541, + -731, -731, -731, 543, 6442, 224, 548, -731, 549, -731 }; /* YYDEFACT[STATE-NUM] -- Default reduction number in state STATE-NUM. @@ -622,140 +598,141 @@ static const short yypact[] = means the default is an error. */ static const unsigned short yydefact[] = { - 277, 396, 393, 397, 391, 392, 394, 388, 389, 387, - 386, 378, 282, 281, 0, 0, 0, 0, 503, 377, - 0, 427, 628, 283, 0, 431, 0, 278, 279, 285, - 284, 286, 290, 520, 0, 374, 380, 379, 385, 400, - 412, 384, 287, 288, 289, 0, 417, 438, 440, 441, - 0, 0, 452, 292, 291, 293, 0, 294, 0, 395, - 390, 386, 0, 0, 0, 377, 432, 439, 422, 296, - 307, 304, 306, 308, 309, 320, 317, 318, 315, 321, - 316, 0, 319, 310, 311, 312, 0, 332, 332, 0, - 300, 0, 0, 503, 503, 0, 0, 360, 365, 461, - 364, 0, 511, 511, 33, 34, 616, 577, 24, 39, - 38, 37, 35, 36, 32, 31, 25, 29, 28, 26, - 27, 40, 585, 584, 582, 580, 581, 583, 579, 578, - 586, 30, 614, 612, 611, 613, 610, 609, 381, 41, - 42, 382, 383, 500, 544, 545, 546, 547, 0, 541, - 0, 428, 0, 630, 0, 629, 386, 0, 0, 429, - 417, 1, 280, 526, 513, 376, 462, 0, 521, 522, - 524, 375, 402, 406, 404, 408, 401, 398, 413, 400, - 399, 0, 0, 0, 453, 453, 0, 0, 381, 382, - 383, 0, 0, 68, 43, 44, 45, 46, 47, 48, - 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, - 59, 60, 61, 62, 63, 64, 65, 66, 67, 158, - 159, 69, 70, 71, 72, 73, 74, 75, 76, 77, - 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, - 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, - 98, 99, 100, 101, 102, 108, 106, 107, 105, 103, - 104, 109, 110, 111, 112, 113, 114, 115, 116, 117, - 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, - 128, 129, 130, 131, 132, 160, 133, 134, 135, 136, - 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, - 147, 148, 149, 150, 151, 152, 156, 153, 154, 155, - 157, 0, 332, 302, 297, 43, 52, 57, 58, 62, - 106, 107, 105, 103, 104, 124, 126, 127, 128, 129, - 130, 131, 160, 135, 136, 137, 138, 139, 140, 141, - 142, 143, 144, 145, 146, 147, 148, 149, 150, 334, - 305, 333, 298, 313, 314, 299, 301, 342, 343, 0, - 0, 22, 23, 20, 21, 0, 0, 345, 303, 344, - 381, 502, 382, 501, 361, 358, 366, 0, 0, 0, - 0, 0, 0, 295, 0, 0, 0, 430, 0, 529, - 528, 527, 516, 464, 520, 513, 523, 525, 407, 403, - 409, 410, 405, 414, 0, 426, 0, 415, 387, 520, - 458, 0, 0, 455, 456, 459, 0, 479, 505, 477, - 0, 628, 0, 0, 0, 622, 623, 0, 553, 556, - 555, 557, 558, 0, 559, 423, 424, 0, 421, 419, - 0, 324, 325, 322, 335, 499, 498, 0, 0, 494, - 0, 0, 340, 337, 347, 2, 3, 4, 5, 6, - 7, 8, 9, 10, 11, 13, 12, 14, 15, 16, - 17, 18, 19, 0, 0, 0, 0, 0, 0, 467, - 466, 468, 465, 0, 0, 0, 359, 416, 490, 488, - 487, 489, 518, 0, 519, 517, 0, 491, 0, 481, - 492, 0, 0, 521, 463, 411, 186, 161, 162, 163, - 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, - 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, - 184, 185, 274, 275, 187, 188, 189, 190, 191, 192, - 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, - 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, - 213, 214, 215, 216, 217, 218, 224, 222, 223, 221, - 219, 220, 225, 226, 227, 228, 229, 230, 231, 232, - 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, - 243, 244, 245, 246, 247, 248, 276, 249, 250, 251, - 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, - 262, 263, 264, 265, 266, 267, 268, 272, 269, 270, - 271, 273, 436, 437, 0, 434, 0, 460, 453, 513, - 0, 0, 513, 0, 0, 506, 0, 0, 0, 605, - 0, 0, 604, 42, 0, 0, 0, 0, 625, 0, - 0, 599, 530, 554, 0, 0, 326, 420, 520, 0, - 495, 497, 336, 0, 349, 0, 348, 0, 338, 0, - 0, 507, 369, 362, 370, 0, 371, 511, 511, 368, - 367, 490, 356, 357, 0, 352, 354, 353, 531, 549, - 550, 551, 552, 548, 0, 0, 535, 628, 540, 542, - 543, 616, 24, 0, 0, 485, 515, 0, 0, 514, - 520, 0, 433, 435, 418, 520, 0, 444, 0, 457, - 442, 0, 480, 478, 476, 0, 560, 628, 603, 0, - 539, 628, 0, 624, 0, 600, 597, 621, 425, 327, - 330, 0, 328, 496, 493, 341, 346, 0, 0, 0, - 363, 0, 472, 469, 507, 0, 0, 351, 0, 0, - 0, 537, 0, 483, 0, 484, 0, 453, 450, 0, - 513, 0, 513, 513, 490, 0, 31, 30, 566, 571, - 567, 569, 570, 41, 0, 606, 617, 0, 0, 626, - 616, 602, 0, 332, 0, 350, 339, 0, 508, 0, - 0, 0, 472, 373, 372, 532, 0, 536, 628, 0, - 482, 0, 0, 0, 451, 448, 0, 445, 443, 0, - 568, 591, 577, 600, 592, 0, 0, 628, 572, 628, - 0, 0, 627, 0, 323, 329, 331, 0, 0, 0, - 507, 473, 470, 0, 533, 0, 538, 486, 0, 0, - 513, 0, 628, 0, 587, 0, 619, 618, 607, 561, - 0, 512, 0, 0, 474, 0, 471, 0, 453, 0, - 449, 0, 0, 0, 0, 0, 608, 628, 615, 598, - 0, 0, 0, 507, 0, 0, 453, 0, 593, 0, - 491, 589, 564, 562, 588, 0, 576, 620, 0, 0, - 475, 0, 0, 0, 0, 0, 594, 595, 573, 0, - 563, 0, 509, 0, 0, 513, 628, 0, 628, 590, - 0, 534, 453, 446, 0, 574, 596, 510, 0, 593, - 513, 0, 447, 0, 575 + 280, 401, 398, 402, 396, 397, 399, 393, 394, 392, + 391, 383, 285, 284, 0, 0, 0, 0, 510, 382, + 0, 432, 635, 286, 0, 436, 0, 281, 282, 288, + 287, 289, 293, 527, 0, 379, 385, 384, 390, 405, + 417, 389, 290, 291, 292, 0, 422, 443, 445, 446, + 0, 0, 457, 295, 294, 296, 0, 297, 0, 400, + 395, 391, 0, 0, 0, 382, 437, 444, 427, 299, + 310, 307, 309, 311, 312, 323, 320, 321, 318, 324, + 319, 0, 322, 313, 314, 315, 0, 335, 335, 0, + 303, 0, 0, 510, 510, 0, 0, 365, 370, 466, + 369, 0, 518, 518, 33, 34, 35, 36, 37, 623, + 584, 24, 42, 41, 40, 38, 39, 32, 31, 25, + 29, 28, 26, 27, 43, 592, 591, 589, 587, 588, + 590, 586, 585, 593, 30, 621, 619, 618, 620, 617, + 616, 386, 44, 45, 387, 388, 507, 551, 552, 553, + 554, 555, 0, 0, 548, 0, 433, 0, 637, 0, + 636, 391, 0, 0, 434, 422, 1, 283, 533, 520, + 381, 467, 0, 528, 529, 531, 380, 407, 411, 409, + 413, 406, 403, 418, 405, 404, 0, 0, 0, 458, + 458, 0, 0, 386, 387, 388, 0, 422, 71, 46, + 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, + 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, + 67, 68, 69, 70, 161, 162, 72, 73, 74, 75, + 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, + 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, + 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, + 111, 109, 110, 108, 106, 107, 112, 113, 114, 115, + 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, + 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, + 163, 136, 137, 138, 139, 140, 141, 142, 143, 144, + 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, + 155, 159, 156, 157, 158, 160, 0, 335, 305, 300, + 46, 55, 56, 57, 58, 60, 61, 65, 109, 110, + 108, 106, 107, 127, 129, 130, 131, 132, 133, 134, + 163, 138, 139, 140, 141, 142, 143, 144, 145, 146, + 147, 148, 149, 150, 151, 152, 153, 337, 308, 336, + 301, 316, 317, 302, 304, 345, 346, 0, 0, 22, + 23, 20, 21, 0, 0, 348, 306, 347, 386, 509, + 387, 508, 366, 363, 371, 0, 0, 0, 0, 0, + 0, 0, 298, 0, 0, 0, 435, 0, 536, 535, + 534, 523, 469, 527, 520, 530, 532, 412, 408, 414, + 415, 410, 419, 0, 431, 0, 420, 392, 527, 463, + 0, 0, 460, 461, 464, 0, 486, 512, 484, 0, + 635, 0, 0, 0, 629, 630, 0, 560, 563, 562, + 564, 565, 0, 566, 428, 429, 0, 0, 424, 0, + 327, 328, 325, 338, 506, 505, 0, 0, 501, 0, + 0, 343, 340, 350, 2, 3, 4, 5, 6, 7, + 8, 9, 10, 11, 13, 12, 14, 15, 16, 17, + 18, 19, 0, 0, 0, 0, 0, 0, 472, 471, + 473, 470, 497, 361, 362, 495, 494, 496, 0, 0, + 0, 357, 359, 498, 358, 488, 499, 0, 0, 0, + 364, 421, 497, 525, 526, 524, 0, 0, 0, 528, + 468, 416, 189, 164, 165, 166, 167, 168, 169, 170, + 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, + 181, 182, 183, 184, 185, 186, 187, 188, 277, 278, + 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, + 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, + 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, + 220, 221, 227, 225, 226, 224, 222, 223, 228, 229, + 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, + 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, + 250, 251, 279, 252, 253, 254, 255, 256, 257, 258, + 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, + 269, 270, 271, 275, 272, 273, 274, 276, 441, 442, + 0, 439, 0, 520, 458, 520, 0, 0, 520, 0, + 0, 513, 0, 0, 0, 612, 0, 0, 611, 45, + 0, 0, 0, 0, 632, 0, 0, 606, 537, 561, + 0, 0, 426, 329, 425, 527, 0, 502, 504, 339, + 0, 352, 353, 0, 351, 0, 341, 0, 0, 514, + 374, 367, 375, 0, 376, 518, 518, 373, 372, 623, + 24, 0, 0, 492, 356, 0, 0, 0, 538, 557, + 558, 559, 556, 0, 0, 542, 635, 547, 549, 550, + 522, 521, 527, 0, 438, 440, 423, 527, 465, 0, + 449, 0, 462, 447, 0, 487, 485, 483, 0, 567, + 635, 610, 0, 546, 635, 0, 631, 0, 607, 604, + 628, 430, 330, 333, 0, 331, 503, 500, 344, 349, + 0, 0, 0, 368, 0, 477, 474, 514, 0, 0, + 0, 490, 0, 491, 355, 0, 0, 0, 544, 0, + 458, 455, 0, 520, 0, 520, 520, 497, 0, 31, + 30, 573, 578, 574, 576, 577, 44, 0, 613, 624, + 0, 0, 633, 623, 609, 0, 335, 0, 354, 342, + 0, 515, 0, 514, 0, 477, 378, 377, 489, 0, + 539, 0, 543, 635, 0, 0, 0, 456, 453, 0, + 450, 448, 0, 575, 598, 584, 607, 599, 0, 0, + 635, 579, 635, 0, 0, 634, 0, 326, 332, 334, + 0, 0, 0, 514, 478, 481, 475, 0, 493, 540, + 0, 545, 0, 0, 520, 0, 635, 0, 594, 0, + 626, 625, 614, 568, 0, 519, 0, 0, 479, 514, + 476, 0, 458, 0, 454, 0, 0, 0, 0, 0, + 615, 635, 622, 605, 0, 0, 0, 514, 482, 0, + 0, 458, 0, 600, 0, 498, 596, 571, 569, 595, + 0, 583, 627, 0, 0, 480, 0, 0, 0, 0, + 0, 601, 602, 580, 0, 570, 0, 516, 0, 0, + 520, 635, 0, 635, 597, 0, 541, 458, 451, 0, + 581, 603, 517, 0, 600, 520, 0, 452, 0, 582 }; /* YYPGOTO[NTERM-NUM]. */ static const short yypgoto[] = { - -714, -339, -74, -14, -55, -714, -714, -714, 479, -714, - -714, -714, -714, -714, -714, -714, -714, -714, -714, -714, - -714, -714, -80, -714, -283, -714, -714, -714, -302, -714, - -714, 352, -167, 28, -158, -178, -16, -19, -714, -714, - -714, 473, -714, -714, 348, -714, -714, -714, -714, 357, - -259, -714, -714, -179, -714, -714, 350, -714, -110, 491, - 36, -4, 58, -714, -714, -714, -714, -180, -714, -113, - 10, -33, -714, -714, 138, -348, -714, -282, -714, 14, - -714, -109, -333, -714, -71, -714, 81, -714, -441, -437, - 137, -714, -710, -87, -376, -714, -371, -24, -714, 361, - -714, -714, 501, -714, -231, -665, -713, -714, -714, 514, - -714, 150, -352, -714, -373, -683, 117, -237, -714, -714, - -692, -714, -714, -345, -386, -714, -714, -714, -279, -714, - -408, -402, -397, -714, -714, -714, -714, -714, -714, -177, - -21, -685 + -731, -351, -73, -11, -47, -731, -731, -731, 547, -731, + -731, -731, -731, -731, -731, -731, -731, -731, -731, -731, + -731, -731, -86, -731, -281, -731, -731, -731, -476, -731, + -731, 421, -118, 41, -104, -179, -19, -5, -731, -731, + -731, 554, -731, -731, 416, -731, -731, -731, -731, -76, + -261, -731, -731, -181, -731, -731, 410, -731, -45, 573, + 39, -3, 50, -731, -731, -731, -731, -182, -731, -44, + 3, -33, -731, -731, 213, -349, -731, -210, -731, 9, + -731, -41, -369, -731, -66, -731, 150, -731, -446, -444, + 166, -731, -709, -87, -380, -731, -375, -29, -731, 459, + -731, -731, 586, -731, -158, -683, -730, -731, -731, 620, + -731, 249, -373, -731, -283, -696, 220, -145, -731, -731, + -692, -731, -731, -254, -284, -731, -731, -731, -175, -731, + -408, -410, -413, -731, -731, -731, -731, -731, -731, -83, + -21, -698 }; /* YYDEFGOTO[NTERM-NUM]. */ static const short yydefgoto[] = { - -1, 708, 496, 164, 349, 622, 26, 27, 28, 29, - 30, 86, 87, 88, 89, 355, 90, 91, 92, 313, - 741, 742, 350, 351, 368, 665, 666, 31, 684, 685, - 32, 96, 671, 672, 673, 33, 34, 35, 36, 37, - 38, 39, 40, 41, 177, 399, 402, 180, 42, 183, - 686, 43, 192, 791, 44, 45, 623, 624, 625, 46, - 47, 48, 99, 410, 50, 411, 51, 412, 413, 414, - 415, 497, 53, 54, 480, 481, 675, 801, 841, 101, - 418, 419, 639, 499, 500, 659, 449, 56, 102, 103, - 143, 636, 752, 378, 393, 501, 167, 437, 169, 170, - 391, 57, 58, 695, 696, 640, 697, 148, 698, 699, - 700, 427, 428, 429, 891, 892, 893, 780, 781, 782, - 139, 875, 894, 825, 905, 906, 430, 650, 792, 431, - 907, 642, 140, 830, 857, 432, 433, 434, 647, 648, - 644, 155 + -1, 706, 499, 169, 357, 638, 26, 27, 28, 29, + 30, 86, 87, 88, 89, 363, 90, 91, 92, 318, + 754, 755, 358, 359, 376, 683, 684, 31, 500, 501, + 32, 96, 689, 690, 691, 33, 34, 35, 36, 37, + 38, 39, 40, 41, 182, 408, 411, 185, 42, 188, + 502, 43, 197, 804, 44, 45, 639, 640, 641, 46, + 47, 48, 99, 419, 50, 420, 51, 421, 422, 423, + 424, 503, 53, 54, 489, 490, 693, 814, 854, 101, + 427, 428, 655, 505, 506, 676, 458, 56, 102, 103, + 146, 652, 765, 386, 402, 517, 172, 446, 174, 175, + 400, 57, 58, 714, 715, 656, 716, 153, 717, 718, + 719, 436, 437, 438, 906, 907, 908, 793, 794, 795, + 142, 889, 909, 838, 920, 921, 439, 666, 805, 440, + 922, 658, 143, 843, 871, 441, 442, 443, 663, 664, + 660, 160 }; /* YYTABLE[YYPACT[STATE-NUM]] -- What to do in state STATE-NUM. If @@ -763,986 +740,1128 @@ static const short yydefgoto[] = number is the opposite. If YYTABLE_NINF, syntax error. */ static const short yytable[] = { - 166, 154, 138, 141, 142, 416, 409, 409, 352, 168, - 52, 98, 435, 641, 55, 171, 379, 165, 366, 504, - 68, 369, 651, 502, 643, 100, 312, 643, 441, 474, - 477, 478, 761, 783, 52, 677, 356, 52, 627, 678, - 784, 55, 779, 97, 802, 805, 67, 808, 188, 189, - 190, 380, 442, 353, 381, 52, 163, 22, 49, 498, - 652, -355, -387, -355, -355, 657, -387, 311, 49, -386, - 11, 389, 714, -24, 762, 653, 150, 450, 367, 370, - 372, 181, 49, 453, 824, 49, 730, 376, 798, 151, - -511, 98, 783, 844, 377, -511, -381, -504, 799, 479, - 654, 828, 474, 49, 476, 100, -441, -461, 59, -461, - 60, 474, 106, 878, 474, 420, 421, 422, 423, 424, - -387, 425, 426, 374, -382, -504, 867, -386, 65, 390, - 864, 396, 653, 172, 173, 174, -387, -387, 175, 172, - 173, 174, 400, 761, 175, 401, 354, 626, 629, 630, - 687, 176, 144, 98, 395, 145, 153, 176, 436, 146, - 704, 147, 854, 705, 632, 633, 52, 100, 445, 446, - 182, 664, 417, 900, 447, 767, 768, 420, 421, 422, - 423, 424, 783, 425, 426, 97, 448, 872, 161, 895, - 667, 668, 67, 821, 822, 824, -490, 186, -490, -490, - 921, 733, 187, 783, 734, 132, 133, 134, 135, 136, - 137, -452, 910, 191, 49, 759, 760, 783, 770, 771, - 821, 822, 832, 655, 895, 178, 4, 5, 184, 677, - 371, 373, 443, 678, 677, 823, 185, 366, 678, 314, - 369, 1, 2, 3, 4, 5, 6, 7, 8, 375, - 377, 924, -452, 717, 9, 382, 720, -504, 144, 156, - 383, 145, 384, 385, 387, 146, 11, 147, 689, 690, - 691, 692, 693, 392, 394, 398, 122, 123, 124, 125, - 126, 127, 128, 129, 130, 404, 366, 743, 694, 369, - 406, 407, 366, 438, 475, 369, 444, 367, 674, 454, - 688, 722, 476, 122, 123, 124, 125, 126, 127, 128, - 129, 130, 483, 485, 486, 703, 487, 163, 505, 785, - 157, 62, 63, 64, 65, 474, 158, 439, 474, 474, - 643, 628, 631, 634, 635, 656, 655, 657, 661, 766, - 669, 715, 718, 709, 769, 725, 367, 724, 721, 726, - 728, 452, 367, 727, 729, 420, 421, 422, 423, 424, - 159, 425, 426, 730, 731, 732, 735, 736, 744, 749, - 503, 745, 751, 746, 764, 765, 166, 747, 757, 794, - 366, 758, 772, 369, 773, 168, 793, 637, 797, 645, - 800, 649, 778, 165, 815, 806, 817, 818, 809, 366, - 366, 819, 369, 369, 826, 816, 827, 803, 804, 646, - 829, -601, 833, 837, 839, 838, 842, 848, 860, 849, - 850, 856, 852, 395, 858, 859, 861, 862, 658, 810, - 863, 865, 643, 866, 869, 868, 898, 663, 874, 871, - 367, 876, 881, 877, 679, 680, 882, 884, 716, 886, - 409, 778, 887, 409, 888, 909, 474, 474, 879, 367, - 367, 896, 729, 880, 795, 796, 899, 901, 902, 897, - 911, 912, 98, 918, 870, 913, 687, 914, 847, 915, - 643, 916, 920, 917, 922, 929, 100, 925, 711, 927, - 676, 643, 674, 853, 930, 933, 934, 674, 1, 2, - 3, 4, 5, 6, 7, 8, 162, 846, 754, 386, - 926, 9, 750, 179, 713, 160, 10, 388, 719, 482, - 843, 643, 152, 11, 12, 13, 723, 403, 660, 807, - 397, 405, 643, 149, 484, 14, 919, 638, 820, 923, - 889, 778, 904, 931, 851, 1, 2, 3, 4, 5, - 6, 7, 8, 788, 932, 0, 0, 789, 9, 0, - 0, 0, 778, 61, 0, 0, 0, 0, 0, 0, - 11, 0, 0, 0, 0, 0, 778, 15, 16, 17, - 18, 19, 20, 21, 0, 22, 0, 813, 0, 409, - 755, 756, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 1, 2, 3, 4, 5, 6, 7, 8, 0, - 23, 0, 0, 0, 9, 24, 0, 25, 0, 61, - 0, 417, 738, 0, 0, 62, 63, 64, 65, 0, - 0, 0, 0, 0, 503, 0, 0, 0, 0, 0, - 0, 166, 740, 0, 0, 0, 0, 0, 0, 0, - 168, 0, 0, 0, 0, 0, 0, 0, 165, 0, - 0, 0, 376, 0, 66, 0, 98, 0, 0, 0, - 0, 98, 0, 366, 366, 0, 369, 369, 0, 0, - 100, 62, 63, 64, 676, 100, 503, 165, 885, 676, - 409, 503, 0, 0, 0, 0, 786, 0, 0, 436, - 0, 0, 436, 0, 0, 0, 903, 0, 409, 0, - 787, 0, 0, 834, 0, 0, 0, 0, 0, 0, - 646, 0, 0, 1, 2, 3, 4, 5, 6, 7, - 8, 0, 0, 367, 367, 0, 9, 0, 0, 0, - 0, 61, 928, 0, 409, 0, 0, 0, 11, 0, - 144, 0, 812, 145, 831, 711, 753, 146, 0, 147, - 689, 690, 691, 692, 693, 0, 0, 840, 0, 0, - 679, 680, 69, 0, 0, 0, 0, 0, 0, 0, - 836, 0, 0, 0, 0, 0, 0, 845, 0, 0, - 436, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 93, 94, 18, 65, 0, 70, 71, - 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, - 0, 82, 83, 84, 85, 0, 0, 0, 0, 0, - 0, 0, 883, 0, 0, 0, 0, 0, 0, 0, - 670, 890, 0, 0, 0, 0, 193, 0, 0, 194, - 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, + 171, 159, 360, 52, 173, 141, 144, 145, 425, 55, + 418, 418, 98, 68, 170, 444, 387, 659, 100, 374, + 659, 504, 657, 667, 520, 483, 377, 52, 518, 176, + 52, 707, 516, 778, 317, 450, 55, 486, 487, 695, + 797, 696, 792, 643, 364, 820, 796, 823, 52, 67, + 49, 193, 194, 195, 388, 451, 97, 389, 815, 361, + 49, -446, -466, 669, -466, -392, 168, -391, 22, -392, + 316, -24, 743, 670, 49, 398, 11, 49, 109, 892, + 770, 375, 378, 380, 186, -392, -392, 459, 727, 397, + 384, 859, 98, 462, 401, 49, 811, 837, 100, 483, + 156, 841, 674, 155, 855, 796, 812, 409, 483, 726, + 410, 483, 881, 1, 2, 3, 4, 5, 6, 7, + 8, 447, 488, -392, 158, -391, 9, 485, 189, 702, + 703, 61, 166, 399, 65, 669, 382, 59, 504, 60, + 778, 405, 454, 455, 878, -518, -386, -511, 456, 385, + -518, 187, 362, 746, 642, -446, 747, 868, 190, 98, + 457, 191, 404, 445, 52, 100, 668, 183, 4, 5, + 898, 135, 136, 137, 138, 139, 140, -457, 192, 196, + 426, 319, 682, 886, -360, 383, -360, -360, 915, -497, + 910, -497, -497, 62, 63, 64, 796, -457, 936, 385, + 67, 685, 686, 97, -387, -511, 645, 646, 648, 649, + 837, 49, 780, 781, 925, 391, 708, -511, 796, 776, + 777, 429, 430, 431, 432, 433, 910, 434, 435, 783, + 784, 452, 796, 1, 2, 3, 4, 5, 6, 7, + 8, 390, 695, 374, 696, 392, 9, 695, 939, 696, + 377, 61, 845, 671, 393, 834, 835, 394, 11, 379, + 381, 396, 401, 728, 403, 730, 766, 407, 733, 413, + 836, 429, 430, 431, 432, 433, 415, 434, 435, 416, + 484, 735, 463, 485, 509, 1, 2, 3, 4, 5, + 6, 7, 8, 834, 835, 374, 507, 510, 9, 511, + 756, 374, 377, 161, 168, 375, 692, 521, 377, 448, + 11, 644, 453, 93, 94, 18, 65, 650, 647, 701, + 651, 671, 429, 430, 431, 432, 433, 659, 434, 435, + 672, 483, 798, 674, 483, 483, 772, 773, 125, 126, + 127, 128, 129, 130, 131, 132, 133, 779, 861, 673, + 688, 147, 782, 678, 148, 687, 704, 375, 149, 721, + 150, 151, 461, 375, 162, 62, 63, 64, 65, 791, + 163, 152, 731, 734, 519, 737, 125, 126, 127, 128, + 129, 130, 131, 132, 133, 171, 738, 739, 741, 173, + 374, 740, 742, 743, 744, 745, 653, 377, 661, 170, + 665, 818, 748, 828, 164, 830, 831, 749, 757, 374, + 374, 758, 759, 177, 178, 179, 377, 377, 180, 816, + 817, 662, 760, 762, 764, 774, 775, 807, 791, 659, + 147, 181, 785, 148, 870, 404, 786, 149, 806, 150, + 151, 709, 710, 711, 712, 810, 813, 824, 821, 680, + 858, 675, 375, 697, 698, 504, 829, 483, 483, 832, + 713, 894, 729, 839, 893, 418, 840, 842, 418, -608, + 867, 375, 375, 846, 850, 852, 851, 856, 659, 808, + 809, 862, 98, 912, 884, 863, 864, 866, 100, 872, + 659, 873, 874, 876, 694, 875, 877, 1, 2, 3, + 4, 5, 6, 7, 8, 880, 879, 723, 882, 692, + 9, 177, 178, 179, 692, 61, 180, 883, 904, 791, + 659, 885, 11, 888, 890, 941, 891, 895, 896, 181, + 899, 659, 901, 1, 2, 3, 4, 5, 6, 7, + 8, 791, 902, 903, 913, 911, 9, 742, 914, 916, + 938, 10, 924, 917, 927, 791, 926, 929, 11, 12, + 13, 928, 933, 930, 801, 947, 931, 935, 932, 937, + 14, 940, 942, 944, 167, 767, 945, 62, 63, 64, + 65, 948, 949, 395, 763, 69, 1, 2, 3, 4, + 5, 6, 7, 8, 184, 725, 414, 165, 826, 9, + 412, 418, 491, 732, 61, 857, 677, 157, 768, 769, + 736, 11, 15, 16, 17, 18, 19, 20, 21, 822, + 22, 70, 71, 72, 73, 74, 75, 76, 77, 78, + 79, 80, 81, 406, 82, 83, 84, 85, 751, 154, + 426, 934, 508, 833, 147, 23, 519, 148, 919, 654, + 24, 149, 25, 150, 151, 709, 710, 711, 712, 171, + 946, 865, 753, 173, 802, 0, 62, 63, 64, 65, + 0, 0, 0, 170, 0, 0, 0, 0, 0, 0, + 0, 0, 170, 384, 0, 98, 0, 374, 374, 0, + 98, 100, 0, 519, 377, 377, 100, 694, 519, 0, + 900, 0, 694, 418, 0, 66, 0, 0, 0, 799, + 0, 0, 445, 0, 0, 445, 0, 0, 0, 918, + 847, 0, 418, 800, 0, 0, 1, 2, 3, 4, + 5, 6, 7, 8, 0, 0, 662, 0, 0, 9, + 0, 0, 0, 0, 61, 0, 0, 0, 0, 375, + 375, 11, 0, 0, 0, 943, 0, 0, 418, 1, + 2, 3, 4, 5, 6, 7, 8, 844, 825, 0, + 0, 723, 9, 0, 0, 0, 0, 61, 0, 0, + 853, 454, 455, 697, 698, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 849, 0, 0, 457, + 750, 0, 860, 445, 0, 0, 93, 94, 18, 65, + 0, 464, 465, 466, 467, 468, 469, 470, 471, 472, + 473, 474, 475, 476, 477, 478, 479, 480, 481, 0, + 0, 0, 0, 0, 705, 0, 0, 0, 0, 62, + 63, 64, 0, 95, 0, 0, 897, 0, 0, 0, + 0, 0, 0, 0, 0, 905, 0, 0, 0, 0, + 0, 198, 0, 0, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, - 215, 216, 217, 218, 219, 220, 890, 221, 222, 223, - 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, + 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, + 225, 905, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, - 264, 265, 266, 267, 268, 269, 0, 270, 0, 271, - 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, + 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, + 274, 0, 275, 0, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, - 302, 303, 304, 0, 0, 305, 0, 306, 307, 308, - 309, 310, 193, 0, 0, 315, 195, 196, 197, 198, - 199, 200, 201, 202, 316, 204, 205, 206, 207, 317, - 318, 210, 211, 212, 319, 214, 215, 216, 217, 218, - 219, 220, 0, 221, 222, 223, 224, 225, 226, 227, + 302, 303, 304, 305, 306, 307, 308, 309, 0, 0, + 310, 0, 311, 312, 313, 314, 315, 198, 0, 0, + 320, 200, 201, 202, 203, 204, 205, 206, 207, 321, + 322, 323, 324, 212, 325, 326, 215, 216, 217, 327, + 219, 220, 221, 222, 223, 224, 225, 0, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, - 248, 249, 250, 251, 252, 253, 254, 255, 320, 321, - 322, 323, 324, 261, 262, 263, 264, 265, 266, 267, - 268, 269, 0, 270, 0, 271, 272, 273, 274, 275, - 325, 277, 326, 327, 328, 329, 330, 331, 284, 332, - 286, 287, 333, 334, 335, 336, 337, 338, 339, 340, - 341, 342, 343, 344, 345, 346, 347, 348, 304, 0, - 0, 305, 0, 306, 307, 308, 309, 310, 506, 0, - 0, 507, 508, 509, 510, 511, 512, 513, 514, 515, - 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, - 526, 527, 528, 529, 530, 531, 532, 533, 0, 534, - 535, 536, 537, 538, 404, 712, 539, 540, 541, 542, - 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, - 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, - 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, - 573, 574, 575, 576, 577, 578, 579, 580, 0, 581, - 0, 582, 583, 584, 585, 586, 587, 588, 589, 590, - 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, - 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, - 611, 612, 613, 614, 615, 0, 0, 616, 0, 617, - 618, 619, 620, 621, 506, 0, 0, 507, 508, 509, - 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, - 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, - 530, 531, 532, 533, 0, 534, 535, 536, 537, 538, - 404, 0, 539, 540, 541, 542, 543, 544, 545, 546, - 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, - 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, - 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, - 577, 578, 579, 580, 0, 581, 0, 582, 583, 584, - 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, - 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, - 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, - 615, 104, 0, 616, 0, 617, 618, 619, 620, 621, - 105, 0, 0, 0, 0, 106, 107, 488, 0, 0, - 108, 489, 0, 490, 0, 491, 359, 492, 0, 0, - 493, 0, 0, 0, 0, 1, 2, 3, 4, 5, - 6, 7, 8, 0, 0, 361, 362, 163, 9, 0, - 0, 0, 0, 61, 0, 0, 0, 0, 363, 364, - 11, 0, 0, 0, 109, 110, 111, 112, 113, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 494, 114, 0, 115, 116, - 117, 118, 119, 120, 0, 121, 0, 0, 122, 123, - 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, - 134, 135, 136, 137, 0, 93, 94, 18, 65, 0, - 0, 0, 495, 1, 2, 3, 4, 5, 6, 7, - 8, 0, 0, 0, 0, 0, 9, 0, 0, 0, - 0, 61, 0, 0, -33, 0, 0, 0, 11, 0, - 0, 0, 95, -33, 0, 0, 0, 0, -33, -33, - 0, 0, 0, -33, 0, 0, -33, -33, -33, -33, - 0, 0, 0, -33, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, -33, -33, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, -33, -33, 93, 94, 18, 65, -33, -33, -33, - -33, -33, 0, 0, 0, 0, 0, 0, 0, -33, - 0, 0, 0, 0, 0, 0, 0, 0, 0, -33, - 0, -33, -33, -33, -33, -33, -33, 0, -33, 0, - 670, -33, -33, -33, -33, -33, -33, -33, -33, -33, - -33, -33, -33, -33, -33, -33, -33, -34, 0, -33, - 0, 0, 0, 0, 0, 0, -34, 0, 0, 0, - 0, -34, -34, 0, 0, 0, -34, 0, 0, -34, - -34, -34, -34, 0, 0, 0, -34, 0, 0, 0, - 0, 0, 0, 1, 2, 3, 4, 5, 6, 7, - 8, -34, -34, 0, 0, 0, 9, 0, 0, 0, - 0, 61, 0, 0, -34, -34, 0, 0, 11, 0, - -34, -34, -34, -34, -34, 0, 0, 0, 0, 0, - 0, 0, -34, 0, 0, 0, 0, 0, 0, 0, - 0, 0, -34, 0, -34, -34, -34, -34, -34, -34, - 0, -34, 0, 0, -34, -34, -34, -34, -34, -34, - -34, -34, -34, -34, -34, -34, -34, -34, -34, -34, - -57, 0, -34, 62, 63, 64, 65, 0, 0, -57, - 0, 0, 0, 0, -57, -57, 0, 0, 0, -57, - 0, 0, -57, -57, -57, -57, 0, 0, 0, -57, - 0, 0, 0, 0, 0, 0, 1, 2, 3, 4, - 5, 6, 7, 8, -57, -57, 0, 0, 0, 9, - 0, 0, 0, 0, 61, 0, 0, -57, -57, 0, - 0, 11, 0, -57, -57, -57, -57, -57, 0, 0, - 0, 0, 0, 0, 0, -57, 0, 0, 0, 0, - 0, 0, 0, 0, 0, -57, 0, -57, -57, -57, - -57, -57, -57, 0, -57, 0, 0, -57, -57, -57, - -57, -57, -57, -57, -57, -57, -57, -57, -57, -57, - -57, -57, -57, -58, 0, -616, 93, 94, 18, 65, - 0, 0, -58, 0, 0, 0, 0, -58, -58, 0, - 0, 0, -58, 0, 0, -58, -58, -58, -58, 0, - 0, 0, -58, 0, 0, 0, 0, 0, 0, 1, - 2, 3, 4, 5, 6, 7, 8, -58, -58, 0, - 0, 0, 9, 0, 0, 0, 0, 61, 0, 0, - -58, -58, 0, 0, 11, 0, -58, -58, -58, -58, - -58, 0, 0, 0, 0, 0, 0, 0, -58, 0, - 0, 0, 0, 0, 0, 0, 0, 0, -58, 0, - -58, -58, -58, -58, -58, -58, 0, -58, 0, 0, - -58, -58, -58, -58, -58, -58, -58, -58, -58, -58, - -58, -58, -58, -58, -58, -58, -24, 0, -577, 62, - 63, 64, 65, 0, 0, -24, 0, 0, 0, 0, - -24, -24, 0, 0, 0, -24, 0, 0, -24, -24, - -24, -24, 0, 0, 0, -24, 0, 0, 0, 0, + 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, + 258, 259, 260, 328, 329, 330, 331, 332, 266, 267, + 268, 269, 270, 271, 272, 273, 274, 0, 275, 0, + 276, 277, 278, 279, 280, 333, 282, 334, 335, 336, + 337, 338, 339, 289, 340, 291, 292, 341, 342, 343, + 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, + 354, 355, 356, 309, 0, 0, 310, 0, 311, 312, + 313, 314, 315, 522, 0, 0, 523, 524, 525, 526, + 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, + 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, + 547, 548, 549, 0, 550, 551, 552, 553, 554, 413, + 724, 555, 556, 557, 558, 559, 560, 561, 562, 563, + 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, + 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, + 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, + 594, 595, 596, 0, 597, 0, 598, 599, 600, 601, + 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, + 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, + 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, + 0, 0, 632, 0, 633, 634, 635, 636, 637, 522, + 0, 0, 523, 524, 525, 526, 527, 528, 529, 530, + 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, + 541, 542, 543, 544, 545, 546, 547, 548, 549, 0, + 550, 551, 552, 553, 554, 413, 0, 555, 556, 557, + 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, + 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, + 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, + 588, 589, 590, 591, 592, 593, 594, 595, 596, 0, + 597, 0, 598, 599, 600, 601, 602, 603, 604, 605, + 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, + 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, + 626, 627, 628, 629, 630, 631, -584, 0, 632, 0, + 633, 634, 635, 636, 637, -584, -584, -584, -584, 0, + -584, -584, 0, 0, 0, -584, 0, 0, 0, 0, + 0, 0, -584, -584, -584, -584, -584, -584, -584, -584, + -584, -584, -584, -584, 0, -584, -584, -584, -584, -584, + -584, -584, -584, -584, -584, -584, -584, -584, -584, -584, + -584, -584, -584, 0, 0, 0, 0, 0, -584, -584, + -584, -584, -584, -584, 1, 2, 3, 4, 5, 6, + 7, 8, 0, 0, 0, 0, 0, 9, 0, 0, + -584, -584, 61, -584, -584, -584, -584, -584, -584, 11, + -584, 0, 0, -584, -584, -584, -584, -584, -584, -584, + -584, -584, -584, -584, -584, -584, -584, -584, -584, 0, + 104, 0, 0, 0, 0, 0, 0, 0, -584, 105, + 106, 107, 108, 0, 109, 110, 512, 0, 0, 111, + 495, 0, 496, 0, 497, 367, 513, 0, 0, 498, + 0, 0, 0, 0, 93, 94, 18, 65, 0, 0, + 0, 0, 0, 0, 369, 370, 168, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 371, 372, 0, + 0, 0, 0, 112, 113, 114, 115, 116, 0, 0, + 0, 688, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 514, 117, 0, 118, 119, 120, + 121, 122, 123, 0, 124, 0, 0, 125, 126, 127, + 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, + 138, 139, 140, 104, 0, 0, 0, 0, 0, 0, + 0, 515, 105, 106, 107, 108, 0, 109, 110, 0, + 0, 0, 111, 0, 0, 365, 0, 366, 367, 0, + 0, 0, 368, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 369, 370, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 371, 372, 0, 0, 0, 0, 112, 113, 114, 115, + 116, 0, 0, 0, 0, 0, 0, 0, 373, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 117, 0, + 118, 119, 120, 121, 122, 123, 0, 124, 0, 0, + 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, + 135, 136, 137, 138, 139, 140, -33, 0, 0, 681, + 0, 0, 0, 0, 0, -33, -33, -33, -33, 0, + -33, -33, 0, 0, 0, -33, 0, 0, -33, -33, + -33, -33, 0, 0, 0, -33, 0, 0, 0, 0, 0, 0, 1, 2, 3, 4, 5, 6, 7, 8, - -24, -24, 0, 0, 0, 408, 0, 0, 0, 0, - 61, 0, 0, -24, -24, 0, 0, 11, 0, -24, - -24, -24, -24, -24, 0, 0, 0, 0, 0, 0, - 0, -24, 0, 0, 0, 0, 0, 0, 0, 0, - 0, -24, 0, -24, -24, -24, -24, -24, -24, 0, - -24, 0, 0, -24, -24, -24, -24, -24, -24, -24, - -24, -24, -24, -24, -24, -24, -24, -24, -24, -39, - 0, -24, 62, 63, 64, 65, 0, 0, -39, 0, - 0, 0, 0, -39, -39, 0, 0, 0, -39, 0, - 0, -39, -39, -39, -39, 0, 0, 0, -39, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, -39, -39, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, -39, -39, 0, 0, - 0, 0, -39, -39, -39, -39, -39, 0, 0, 0, - 0, 0, 0, 0, -39, 0, 0, 0, 0, 0, - 0, 0, 0, 0, -39, 0, -39, -39, -39, -39, - -39, -39, 0, -39, 0, 0, -39, -39, -39, -39, - -39, -39, -39, -39, -39, -39, -39, -39, -39, -39, - -39, -39, -38, 0, -39, 0, 0, 0, 0, 0, - 0, -38, 0, 0, 0, 0, -38, -38, 0, 0, - 0, -38, 0, 0, -38, -38, -38, -38, 0, 0, - 0, -38, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, -38, -38, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, -38, - -38, 0, 0, 0, 0, -38, -38, -38, -38, -38, - 0, 0, 0, 0, 0, 0, 0, -38, 0, 0, - 0, 0, 0, 0, 0, 0, 0, -38, 0, -38, - -38, -38, -38, -38, -38, 0, -38, 0, 0, -38, - -38, -38, -38, -38, -38, -38, -38, -38, -38, -38, - -38, -38, -38, -38, -38, -37, 0, -38, 0, 0, - 0, 0, 0, 0, -37, 0, 0, 0, 0, -37, - -37, 0, 0, 0, -37, 0, 0, -37, -37, -37, - -37, 0, 0, 0, -37, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, -37, - -37, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, -37, -37, 0, 0, 0, 0, -37, -37, - -37, -37, -37, 0, 0, 0, 0, 0, 0, 0, - -37, 0, 0, 0, 0, 0, 0, 0, 0, 0, - -37, 0, -37, -37, -37, -37, -37, -37, 0, -37, - 0, 0, -37, -37, -37, -37, -37, -37, -37, -37, - -37, -37, -37, -37, -37, -37, -37, -37, -35, 0, - -37, 0, 0, 0, 0, 0, 0, -35, 0, 0, - 0, 0, -35, -35, 0, 0, 0, -35, 0, 0, - -35, -35, -35, -35, 0, 0, 0, -35, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, -35, -35, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, -35, -35, 0, 0, 0, - 0, -35, -35, -35, -35, -35, 0, 0, 0, 0, - 0, 0, 0, -35, 0, 0, 0, 0, 0, 0, - 0, 0, 0, -35, 0, -35, -35, -35, -35, -35, - -35, 0, -35, 0, 0, -35, -35, -35, -35, -35, + -33, -33, 0, 0, 0, 9, 0, 0, 0, 0, + 61, 0, 0, -33, -33, 0, 0, 11, 0, -33, + -33, -33, -33, -33, 0, 0, 0, 0, 0, 0, + 0, -33, 0, 0, 0, 0, 0, 0, 0, 0, + 0, -33, 0, -33, -33, -33, -33, -33, -33, 0, + -33, 0, 0, -33, -33, -33, -33, -33, -33, -33, + -33, -33, -33, -33, -33, -33, -33, -33, -33, -34, + 0, -33, 93, 94, 18, 65, 0, 0, -34, -34, + -34, -34, 0, -34, -34, 0, 0, 0, -34, 0, + 0, -34, -34, -34, -34, 0, 0, 0, -34, 0, + 0, 0, 0, 0, 0, 1, 2, 3, 4, 5, + 6, 7, 8, -34, -34, 0, 0, 0, 9, 0, + 0, 0, 0, 61, 0, 0, -34, -34, 0, 0, + 11, 0, -34, -34, -34, -34, -34, 0, 0, 0, + 0, 0, 0, 0, -34, 0, 0, 0, 0, 0, + 0, 0, 0, 0, -34, 0, -34, -34, -34, -34, + -34, -34, 0, -34, 0, 0, -34, -34, -34, -34, + -34, -34, -34, -34, -34, -34, -34, -34, -34, -34, + -34, -34, -35, 0, -34, 62, 63, 64, 65, 0, + 0, -35, -35, -35, -35, 0, -35, -35, 0, 0, + 0, -35, 0, 0, -35, -35, -35, -35, 0, 0, + 0, -35, 0, 0, 0, 0, 0, 0, 1, 2, + 3, 4, 5, 6, 7, 8, -35, -35, 0, 0, + 0, 417, 0, 0, 0, 0, 61, 0, 0, -35, + -35, 0, 0, 11, 0, -35, -35, -35, -35, -35, + 0, 0, 0, 0, 0, 0, 0, -35, 0, 0, + 0, 0, 0, 0, 0, 0, 0, -35, 0, -35, + -35, -35, -35, -35, -35, 0, -35, 0, 0, -35, -35, -35, -35, -35, -35, -35, -35, -35, -35, -35, - -35, -36, 0, -35, 0, 0, 0, 0, 0, 0, - -36, 0, 0, 0, 0, -36, -36, 0, 0, 0, - -36, 0, 0, -36, -36, -36, -36, 0, 0, 0, + -35, -35, -35, -35, -35, -36, 0, -35, 62, 63, + 64, 65, 0, 0, -36, -36, -36, -36, 0, -36, + -36, 0, 0, 0, -36, 0, 0, -36, -36, -36, + -36, 0, 0, 0, -36, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, -36, + -36, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, -36, -36, 0, 0, 0, 0, -36, -36, + -36, -36, -36, 0, 0, 0, 0, 0, 0, 0, -36, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, -36, -36, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, -36, -36, - 0, 0, 0, 0, -36, -36, -36, -36, -36, 0, - 0, 0, 0, 0, 0, 0, -36, 0, 0, 0, - 0, 0, 0, 0, 0, 0, -36, 0, -36, -36, - -36, -36, -36, -36, 0, -36, 0, 0, -36, -36, - -36, -36, -36, -36, -36, -36, -36, -36, -36, -36, - -36, -36, -36, -36, -32, 0, -36, 0, 0, 0, - 0, 0, 0, -32, 0, 0, 0, 0, -32, -32, - 0, 0, 0, -32, 0, 0, -32, -32, -32, -32, - 0, 0, 0, -32, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, -32, -32, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, -32, -32, 0, 0, 0, 0, -32, -32, -32, - -32, -32, 0, 0, 0, 0, 0, 0, 0, -32, + -36, 0, -36, -36, -36, -36, -36, -36, 0, -36, + 0, 0, -36, -36, -36, -36, -36, -36, -36, -36, + -36, -36, -36, -36, -36, -36, -36, -36, -37, 0, + -36, 0, 0, 0, 0, 0, 0, -37, -37, -37, + -37, 0, -37, -37, 0, 0, 0, -37, 0, 0, + -37, -37, -37, -37, 0, 0, 0, -37, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, -37, -37, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, -37, -37, 0, 0, 0, + 0, -37, -37, -37, -37, -37, 0, 0, 0, 0, + 0, 0, 0, -37, 0, 0, 0, 0, 0, 0, + 0, 0, 0, -37, 0, -37, -37, -37, -37, -37, + -37, 0, -37, 0, 0, -37, -37, -37, -37, -37, + -37, -37, -37, -37, -37, -37, -37, -37, -37, -37, + -37, -60, 0, -37, 0, 0, 0, 0, 0, 0, + -60, -60, -60, -60, 0, -60, -60, 0, 0, 0, + -60, 0, 0, -60, -60, -60, -60, 0, 0, 0, + -60, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, -60, -60, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, -60, -60, + 0, 0, 0, 0, -60, -60, -60, -60, -60, 0, + 0, 0, 0, 0, 0, 0, -60, 0, 0, 0, + 0, 0, 0, 0, 0, 0, -60, 0, -60, -60, + -60, -60, -60, -60, 0, -60, 0, 0, -60, -60, + -60, -60, -60, -60, -60, -60, -60, -60, -60, -60, + -60, -60, -60, -60, -61, 0, -623, 0, 0, 0, + 0, 0, 0, -61, -61, -61, -61, 0, -61, -61, + 0, 0, 0, -61, 0, 0, -61, -61, -61, -61, + 0, 0, 0, -61, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, -61, -61, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, -61, -61, 0, 0, 0, 0, -61, -61, -61, + -61, -61, 0, 0, 0, 0, 0, 0, 0, -61, + 0, 0, 0, 0, 0, 0, 0, 0, 0, -61, + 0, -61, -61, -61, -61, -61, -61, 0, -61, 0, + 0, -61, -61, -61, -61, -61, -61, -61, -61, -61, + -61, -61, -61, -61, -61, -61, -61, -24, 0, -584, + 0, 0, 0, 0, 0, 0, -24, -24, -24, -24, + 0, -24, -24, 0, 0, 0, -24, 0, 0, -24, + -24, -24, -24, 0, 0, 0, -24, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, -24, -24, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, -24, -24, 0, 0, 0, 0, + -24, -24, -24, -24, -24, 0, 0, 0, 0, 0, + 0, 0, -24, 0, 0, 0, 0, 0, 0, 0, + 0, 0, -24, 0, -24, -24, -24, -24, -24, -24, + 0, -24, 0, 0, -24, -24, -24, -24, -24, -24, + -24, -24, -24, -24, -24, -24, -24, -24, -24, -24, + -42, 0, -24, 0, 0, 0, 0, 0, 0, -42, + -42, -42, -42, 0, -42, -42, 0, 0, 0, -42, + 0, 0, -42, -42, -42, -42, 0, 0, 0, -42, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, -42, -42, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, -42, -42, 0, + 0, 0, 0, -42, -42, -42, -42, -42, 0, 0, + 0, 0, 0, 0, 0, -42, 0, 0, 0, 0, + 0, 0, 0, 0, 0, -42, 0, -42, -42, -42, + -42, -42, -42, 0, -42, 0, 0, -42, -42, -42, + -42, -42, -42, -42, -42, -42, -42, -42, -42, -42, + -42, -42, -42, -41, 0, -42, 0, 0, 0, 0, + 0, 0, -41, -41, -41, -41, 0, -41, -41, 0, + 0, 0, -41, 0, 0, -41, -41, -41, -41, 0, + 0, 0, -41, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, -41, -41, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + -41, -41, 0, 0, 0, 0, -41, -41, -41, -41, + -41, 0, 0, 0, 0, 0, 0, 0, -41, 0, + 0, 0, 0, 0, 0, 0, 0, 0, -41, 0, + -41, -41, -41, -41, -41, -41, 0, -41, 0, 0, + -41, -41, -41, -41, -41, -41, -41, -41, -41, -41, + -41, -41, -41, -41, -41, -41, -40, 0, -41, 0, + 0, 0, 0, 0, 0, -40, -40, -40, -40, 0, + -40, -40, 0, 0, 0, -40, 0, 0, -40, -40, + -40, -40, 0, 0, 0, -40, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + -40, -40, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, -40, -40, 0, 0, 0, 0, -40, + -40, -40, -40, -40, 0, 0, 0, 0, 0, 0, + 0, -40, 0, 0, 0, 0, 0, 0, 0, 0, + 0, -40, 0, -40, -40, -40, -40, -40, -40, 0, + -40, 0, 0, -40, -40, -40, -40, -40, -40, -40, + -40, -40, -40, -40, -40, -40, -40, -40, -40, -38, + 0, -40, 0, 0, 0, 0, 0, 0, -38, -38, + -38, -38, 0, -38, -38, 0, 0, 0, -38, 0, + 0, -38, -38, -38, -38, 0, 0, 0, -38, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, -38, -38, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, -38, -38, 0, 0, + 0, 0, -38, -38, -38, -38, -38, 0, 0, 0, + 0, 0, 0, 0, -38, 0, 0, 0, 0, 0, + 0, 0, 0, 0, -38, 0, -38, -38, -38, -38, + -38, -38, 0, -38, 0, 0, -38, -38, -38, -38, + -38, -38, -38, -38, -38, -38, -38, -38, -38, -38, + -38, -38, -39, 0, -38, 0, 0, 0, 0, 0, + 0, -39, -39, -39, -39, 0, -39, -39, 0, 0, + 0, -39, 0, 0, -39, -39, -39, -39, 0, 0, + 0, -39, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, -39, -39, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, -39, + -39, 0, 0, 0, 0, -39, -39, -39, -39, -39, + 0, 0, 0, 0, 0, 0, 0, -39, 0, 0, + 0, 0, 0, 0, 0, 0, 0, -39, 0, -39, + -39, -39, -39, -39, -39, 0, -39, 0, 0, -39, + -39, -39, -39, -39, -39, -39, -39, -39, -39, -39, + -39, -39, -39, -39, -39, -32, 0, -39, 0, 0, + 0, 0, 0, 0, -32, -32, -32, -32, 0, -32, + -32, 0, 0, 0, -32, 0, 0, -32, -32, -32, + -32, 0, 0, 0, -32, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -32, - 0, -32, -32, -32, -32, -32, -32, 0, -32, 0, - 0, -32, -32, -32, -32, -32, -32, -32, -32, -32, - -32, -32, -32, -32, -32, -32, -32, -31, 0, -32, - 0, 0, 0, 0, 0, 0, -31, 0, 0, 0, - 0, -31, -31, 0, 0, 0, -31, 0, 0, -31, - -31, -31, -31, 0, 0, 0, -31, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, -31, -31, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, -31, -31, 0, 0, 0, 0, - -31, -31, -31, -31, -31, 0, 0, 0, 0, 0, - 0, 0, -31, 0, 0, 0, 0, 0, 0, 0, - 0, 0, -31, 0, -31, -31, -31, -31, -31, -31, - 0, -31, 0, 0, -31, -31, -31, -31, -31, -31, + -32, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, -32, -32, 0, 0, 0, 0, -32, -32, + -32, -32, -32, 0, 0, 0, 0, 0, 0, 0, + -32, 0, 0, 0, 0, 0, 0, 0, 0, 0, + -32, 0, -32, -32, -32, -32, -32, -32, 0, -32, + 0, 0, -32, -32, -32, -32, -32, -32, -32, -32, + -32, -32, -32, -32, -32, -32, -32, -32, -31, 0, + -32, 0, 0, 0, 0, 0, 0, -31, -31, -31, + -31, 0, -31, -31, 0, 0, 0, -31, 0, 0, + -31, -31, -31, -31, 0, 0, 0, -31, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, -31, -31, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, -31, -31, 0, 0, 0, + 0, -31, -31, -31, -31, -31, 0, 0, 0, 0, + 0, 0, 0, -31, 0, 0, 0, 0, 0, 0, + 0, 0, 0, -31, 0, -31, -31, -31, -31, -31, + -31, 0, -31, 0, 0, -31, -31, -31, -31, -31, -31, -31, -31, -31, -31, -31, -31, -31, -31, -31, - -25, 0, -31, 0, 0, 0, 0, 0, 0, -25, - 0, 0, 0, 0, -25, -25, 0, 0, 0, -25, - 0, 0, -25, -25, -25, -25, 0, 0, 0, -25, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, -25, -25, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, -25, -25, 0, - 0, 0, 0, -25, -25, -25, -25, -25, 0, 0, - 0, 0, 0, 0, 0, -25, 0, 0, 0, 0, - 0, 0, 0, 0, 0, -25, 0, -25, -25, -25, - -25, -25, -25, 0, -25, 0, 0, -25, -25, -25, + -31, -25, 0, -31, 0, 0, 0, 0, 0, 0, + -25, -25, -25, -25, 0, -25, -25, 0, 0, 0, + -25, 0, 0, -25, -25, -25, -25, 0, 0, 0, + -25, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, -25, -25, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, -25, -25, + 0, 0, 0, 0, -25, -25, -25, -25, -25, 0, + 0, 0, 0, 0, 0, 0, -25, 0, 0, 0, + 0, 0, 0, 0, 0, 0, -25, 0, -25, -25, + -25, -25, -25, -25, 0, -25, 0, 0, -25, -25, -25, -25, -25, -25, -25, -25, -25, -25, -25, -25, - -25, -25, -25, -29, 0, -25, 0, 0, 0, 0, - 0, 0, -29, 0, 0, 0, 0, -29, -29, 0, - 0, 0, -29, 0, 0, -29, -29, -29, -29, 0, - 0, 0, -29, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, -29, -29, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - -29, -29, 0, 0, 0, 0, -29, -29, -29, -29, - -29, 0, 0, 0, 0, 0, 0, 0, -29, 0, - 0, 0, 0, 0, 0, 0, 0, 0, -29, 0, - -29, -29, -29, -29, -29, -29, 0, -29, 0, 0, - -29, -29, -29, -29, -29, -29, -29, -29, -29, -29, - -29, -29, -29, -29, -29, -29, -28, 0, -29, 0, - 0, 0, 0, 0, 0, -28, 0, 0, 0, 0, - -28, -28, 0, 0, 0, -28, 0, 0, -28, -28, - -28, -28, 0, 0, 0, -28, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - -28, -28, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, -28, -28, 0, 0, 0, 0, -28, - -28, -28, -28, -28, 0, 0, 0, 0, 0, 0, - 0, -28, 0, 0, 0, 0, 0, 0, 0, 0, - 0, -28, 0, -28, -28, -28, -28, -28, -28, 0, - -28, 0, 0, -28, -28, -28, -28, -28, -28, -28, - -28, -28, -28, -28, -28, -28, -28, -28, -28, -26, - 0, -28, 0, 0, 0, 0, 0, 0, -26, 0, - 0, 0, 0, -26, -26, 0, 0, 0, -26, 0, - 0, -26, -26, -26, -26, 0, 0, 0, -26, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, -26, -26, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, -26, -26, 0, 0, - 0, 0, -26, -26, -26, -26, -26, 0, 0, 0, - 0, 0, 0, 0, -26, 0, 0, 0, 0, 0, - 0, 0, 0, 0, -26, 0, -26, -26, -26, -26, - -26, -26, 0, -26, 0, 0, -26, -26, -26, -26, + -25, -25, -25, -25, -29, 0, -25, 0, 0, 0, + 0, 0, 0, -29, -29, -29, -29, 0, -29, -29, + 0, 0, 0, -29, 0, 0, -29, -29, -29, -29, + 0, 0, 0, -29, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, -29, -29, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, -29, -29, 0, 0, 0, 0, -29, -29, -29, + -29, -29, 0, 0, 0, 0, 0, 0, 0, -29, + 0, 0, 0, 0, 0, 0, 0, 0, 0, -29, + 0, -29, -29, -29, -29, -29, -29, 0, -29, 0, + 0, -29, -29, -29, -29, -29, -29, -29, -29, -29, + -29, -29, -29, -29, -29, -29, -29, -28, 0, -29, + 0, 0, 0, 0, 0, 0, -28, -28, -28, -28, + 0, -28, -28, 0, 0, 0, -28, 0, 0, -28, + -28, -28, -28, 0, 0, 0, -28, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, -28, -28, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, -28, -28, 0, 0, 0, 0, + -28, -28, -28, -28, -28, 0, 0, 0, 0, 0, + 0, 0, -28, 0, 0, 0, 0, 0, 0, 0, + 0, 0, -28, 0, -28, -28, -28, -28, -28, -28, + 0, -28, 0, 0, -28, -28, -28, -28, -28, -28, + -28, -28, -28, -28, -28, -28, -28, -28, -28, -28, + -26, 0, -28, 0, 0, 0, 0, 0, 0, -26, + -26, -26, -26, 0, -26, -26, 0, 0, 0, -26, + 0, 0, -26, -26, -26, -26, 0, 0, 0, -26, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, -26, -26, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, -26, -26, 0, + 0, 0, 0, -26, -26, -26, -26, -26, 0, 0, + 0, 0, 0, 0, 0, -26, 0, 0, 0, 0, + 0, 0, 0, 0, 0, -26, 0, -26, -26, -26, + -26, -26, -26, 0, -26, 0, 0, -26, -26, -26, -26, -26, -26, -26, -26, -26, -26, -26, -26, -26, - -26, -26, -27, 0, -26, 0, 0, 0, 0, 0, - 0, -27, 0, 0, 0, 0, -27, -27, 0, 0, - 0, -27, 0, 0, -27, -27, -27, -27, 0, 0, - 0, -27, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, -27, -27, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, -27, - -27, 0, 0, 0, 0, -27, -27, -27, -27, -27, - 0, 0, 0, 0, 0, 0, 0, -27, 0, 0, - 0, 0, 0, 0, 0, 0, 0, -27, 0, -27, - -27, -27, -27, -27, -27, 0, -27, 0, 0, -27, + -26, -26, -26, -27, 0, -26, 0, 0, 0, 0, + 0, 0, -27, -27, -27, -27, 0, -27, -27, 0, + 0, 0, -27, 0, 0, -27, -27, -27, -27, 0, + 0, 0, -27, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, -27, -27, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + -27, -27, 0, 0, 0, 0, -27, -27, -27, -27, + -27, 0, 0, 0, 0, 0, 0, 0, -27, 0, + 0, 0, 0, 0, 0, 0, 0, 0, -27, 0, + -27, -27, -27, -27, -27, -27, 0, -27, 0, 0, -27, -27, -27, -27, -27, -27, -27, -27, -27, -27, - -27, -27, -27, -27, -27, -40, 0, -27, 0, 0, - 0, 0, 0, 0, -40, 0, 0, 0, 0, -40, - -40, 0, 0, 0, -40, 0, 0, -40, -40, -40, - -40, 0, 0, 0, -40, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, -40, - -40, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, -40, -40, 0, 0, 0, 0, -40, -40, - -40, -40, -40, 0, 0, 0, 0, 0, 0, 0, - -40, 0, 0, 0, 0, 0, 0, 0, 0, 0, - -40, 0, -40, -40, -40, -40, -40, -40, 0, -40, - 0, 0, -40, -40, -40, -40, -40, -40, -40, -40, - -40, -40, -40, -40, -40, -40, -40, -40, -135, 0, - -40, 0, 0, 0, 0, 0, 0, -135, 0, 0, - 0, 0, -135, -135, 0, 0, 0, -135, 0, 0, - -135, -135, -135, -135, 0, 0, 0, -135, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, -135, -135, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, -135, -135, 0, 0, 0, - 0, -135, -135, -135, -135, -135, 0, 0, 0, 0, - 0, 0, 0, -135, 0, 0, 0, 0, 0, 0, - 0, 0, 0, -135, 0, -135, -135, -135, -135, -135, - -135, 0, -135, 0, 0, -135, -135, -135, -135, -135, - -135, -135, -135, -135, -135, -135, -135, -135, -135, -135, - -135, -136, 0, -585, 0, 0, 0, 0, 0, 0, - -136, 0, 0, 0, 0, -136, -136, 0, 0, 0, - -136, 0, 0, -136, -136, -136, -136, 0, 0, 0, - -136, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, -136, -136, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, -136, -136, - 0, 0, 0, 0, -136, -136, -136, -136, -136, 0, - 0, 0, 0, 0, 0, 0, -136, 0, 0, 0, - 0, 0, 0, 0, 0, 0, -136, 0, -136, -136, - -136, -136, -136, -136, 0, -136, 0, 0, -136, -136, - -136, -136, -136, -136, -136, -136, -136, -136, -136, -136, - -136, -136, -136, -136, -137, 0, -584, 0, 0, 0, - 0, 0, 0, -137, 0, 0, 0, 0, -137, -137, - 0, 0, 0, -137, 0, 0, -137, -137, -137, -137, - 0, 0, 0, -137, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, -137, -137, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, -137, -137, 0, 0, 0, 0, -137, -137, -137, - -137, -137, 0, 0, 0, 0, 0, 0, 0, -137, - 0, 0, 0, 0, 0, 0, 0, 0, 0, -137, - 0, -137, -137, -137, -137, -137, -137, 0, -137, 0, - 0, -137, -137, -137, -137, -137, -137, -137, -137, -137, - -137, -137, -137, -137, -137, -137, -137, -138, 0, -582, - 0, 0, 0, 0, 0, 0, -138, 0, 0, 0, - 0, -138, -138, 0, 0, 0, -138, 0, 0, -138, - -138, -138, -138, 0, 0, 0, -138, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, -138, -138, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, -138, -138, 0, 0, 0, 0, - -138, -138, -138, -138, -138, 0, 0, 0, 0, 0, - 0, 0, -138, 0, 0, 0, 0, 0, 0, 0, - 0, 0, -138, 0, -138, -138, -138, -138, -138, -138, - 0, -138, 0, 0, -138, -138, -138, -138, -138, -138, + -27, -27, -27, -27, -27, -27, -43, 0, -27, 0, + 0, 0, 0, 0, 0, -43, -43, -43, -43, 0, + -43, -43, 0, 0, 0, -43, 0, 0, -43, -43, + -43, -43, 0, 0, 0, -43, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + -43, -43, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, -43, -43, 0, 0, 0, 0, -43, + -43, -43, -43, -43, 0, 0, 0, 0, 0, 0, + 0, -43, 0, 0, 0, 0, 0, 0, 0, 0, + 0, -43, 0, -43, -43, -43, -43, -43, -43, 0, + -43, 0, 0, -43, -43, -43, -43, -43, -43, -43, + -43, -43, -43, -43, -43, -43, -43, -43, -43, -138, + 0, -43, 0, 0, 0, 0, 0, 0, -138, -138, + -138, -138, 0, -138, -138, 0, 0, 0, -138, 0, + 0, -138, -138, -138, -138, 0, 0, 0, -138, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, -138, -138, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, -138, -138, 0, 0, + 0, 0, -138, -138, -138, -138, -138, 0, 0, 0, + 0, 0, 0, 0, -138, 0, 0, 0, 0, 0, + 0, 0, 0, 0, -138, 0, -138, -138, -138, -138, + -138, -138, 0, -138, 0, 0, -138, -138, -138, -138, -138, -138, -138, -138, -138, -138, -138, -138, -138, -138, - -139, 0, -580, 0, 0, 0, 0, 0, 0, -139, - 0, 0, 0, 0, -139, -139, 0, 0, 0, -139, - 0, 0, -139, -139, -139, -139, 0, 0, 0, -139, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, -139, -139, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, -139, -139, 0, - 0, 0, 0, -139, -139, -139, -139, -139, 0, 0, - 0, 0, 0, 0, 0, -139, 0, 0, 0, 0, - 0, 0, 0, 0, 0, -139, 0, -139, -139, -139, - -139, -139, -139, 0, -139, 0, 0, -139, -139, -139, + -138, -138, -139, 0, -592, 0, 0, 0, 0, 0, + 0, -139, -139, -139, -139, 0, -139, -139, 0, 0, + 0, -139, 0, 0, -139, -139, -139, -139, 0, 0, + 0, -139, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, -139, -139, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, -139, + -139, 0, 0, 0, 0, -139, -139, -139, -139, -139, + 0, 0, 0, 0, 0, 0, 0, -139, 0, 0, + 0, 0, 0, 0, 0, 0, 0, -139, 0, -139, + -139, -139, -139, -139, -139, 0, -139, 0, 0, -139, -139, -139, -139, -139, -139, -139, -139, -139, -139, -139, - -139, -139, -139, -140, 0, -581, 0, 0, 0, 0, - 0, 0, -140, 0, 0, 0, 0, -140, -140, 0, - 0, 0, -140, 0, 0, -140, -140, -140, -140, 0, - 0, 0, -140, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, -140, -140, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - -140, -140, 0, 0, 0, 0, -140, -140, -140, -140, - -140, 0, 0, 0, 0, 0, 0, 0, -140, 0, - 0, 0, 0, 0, 0, 0, 0, 0, -140, 0, - -140, -140, -140, -140, -140, -140, 0, -140, 0, 0, - -140, -140, -140, -140, -140, -140, -140, -140, -140, -140, - -140, -140, -140, -140, -140, -140, -141, 0, -583, 0, - 0, 0, 0, 0, 0, -141, 0, 0, 0, 0, - -141, -141, 0, 0, 0, -141, 0, 0, -141, -141, - -141, -141, 0, 0, 0, -141, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - -141, -141, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, -141, -141, 0, 0, 0, 0, -141, - -141, -141, -141, -141, 0, 0, 0, 0, 0, 0, - 0, -141, 0, 0, 0, 0, 0, 0, 0, 0, - 0, -141, 0, -141, -141, -141, -141, -141, -141, 0, - -141, 0, 0, -141, -141, -141, -141, -141, -141, -141, - -141, -141, -141, -141, -141, -141, -141, -141, -141, -142, - 0, -579, 0, 0, 0, 0, 0, 0, -142, 0, - 0, 0, 0, -142, -142, 0, 0, 0, -142, 0, - 0, -142, -142, -142, -142, 0, 0, 0, -142, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, -142, -142, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, -142, -142, 0, 0, - 0, 0, -142, -142, -142, -142, -142, 0, 0, 0, - 0, 0, 0, 0, -142, 0, 0, 0, 0, 0, - 0, 0, 0, 0, -142, 0, -142, -142, -142, -142, - -142, -142, 0, -142, 0, 0, -142, -142, -142, -142, + -139, -139, -139, -139, -139, -140, 0, -591, 0, 0, + 0, 0, 0, 0, -140, -140, -140, -140, 0, -140, + -140, 0, 0, 0, -140, 0, 0, -140, -140, -140, + -140, 0, 0, 0, -140, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, -140, + -140, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, -140, -140, 0, 0, 0, 0, -140, -140, + -140, -140, -140, 0, 0, 0, 0, 0, 0, 0, + -140, 0, 0, 0, 0, 0, 0, 0, 0, 0, + -140, 0, -140, -140, -140, -140, -140, -140, 0, -140, + 0, 0, -140, -140, -140, -140, -140, -140, -140, -140, + -140, -140, -140, -140, -140, -140, -140, -140, -141, 0, + -589, 0, 0, 0, 0, 0, 0, -141, -141, -141, + -141, 0, -141, -141, 0, 0, 0, -141, 0, 0, + -141, -141, -141, -141, 0, 0, 0, -141, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, -141, -141, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, -141, -141, 0, 0, 0, + 0, -141, -141, -141, -141, -141, 0, 0, 0, 0, + 0, 0, 0, -141, 0, 0, 0, 0, 0, 0, + 0, 0, 0, -141, 0, -141, -141, -141, -141, -141, + -141, 0, -141, 0, 0, -141, -141, -141, -141, -141, + -141, -141, -141, -141, -141, -141, -141, -141, -141, -141, + -141, -142, 0, -587, 0, 0, 0, 0, 0, 0, + -142, -142, -142, -142, 0, -142, -142, 0, 0, 0, + -142, 0, 0, -142, -142, -142, -142, 0, 0, 0, + -142, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, -142, -142, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, -142, -142, + 0, 0, 0, 0, -142, -142, -142, -142, -142, 0, + 0, 0, 0, 0, 0, 0, -142, 0, 0, 0, + 0, 0, 0, 0, 0, 0, -142, 0, -142, -142, + -142, -142, -142, -142, 0, -142, 0, 0, -142, -142, -142, -142, -142, -142, -142, -142, -142, -142, -142, -142, - -142, -142, -143, 0, -578, 0, 0, 0, 0, 0, - 0, -143, 0, 0, 0, 0, -143, -143, 0, 0, - 0, -143, 0, 0, -143, -143, -143, -143, 0, 0, - 0, -143, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, -143, -143, 0, 0, + -142, -142, -142, -142, -143, 0, -588, 0, 0, 0, + 0, 0, 0, -143, -143, -143, -143, 0, -143, -143, + 0, 0, 0, -143, 0, 0, -143, -143, -143, -143, + 0, 0, 0, -143, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, -143, -143, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, -143, -143, 0, 0, 0, 0, -143, -143, -143, + -143, -143, 0, 0, 0, 0, 0, 0, 0, -143, 0, 0, 0, 0, 0, 0, 0, 0, 0, -143, - -143, 0, 0, 0, 0, -143, -143, -143, -143, -143, - 0, 0, 0, 0, 0, 0, 0, -143, 0, 0, - 0, 0, 0, 0, 0, 0, 0, -143, 0, -143, - -143, -143, -143, -143, -143, 0, -143, 0, 0, -143, - -143, -143, -143, -143, -143, -143, -143, -143, -143, -143, - -143, -143, -143, -143, -143, -30, 0, -586, 0, 0, - 0, 0, 0, 0, -30, 0, 0, 0, 0, -30, - -30, 0, 0, 0, -30, 0, 0, -30, -30, -30, - -30, 0, 0, 0, -30, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, -30, - -30, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, -30, -30, 0, 0, 0, 0, -30, -30, - -30, -30, -30, 0, 0, 0, 0, 0, 0, 0, - -30, 0, 0, 0, 0, 0, 0, 0, 0, 0, - -30, 0, -30, -30, -30, -30, -30, -30, 0, -30, - 0, 0, -30, -30, -30, -30, -30, -30, -30, -30, - -30, -30, -30, -30, -30, -30, -30, -30, -145, 0, - -30, 0, 0, 0, 0, 0, 0, -145, 0, 0, - 0, 0, -145, -145, 0, 0, 0, -145, 0, 0, - -145, -145, -145, -145, 0, 0, 0, -145, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, -145, -145, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, -145, -145, 0, 0, 0, - 0, -145, -145, -145, -145, -145, 0, 0, 0, 0, - 0, 0, 0, -145, 0, 0, 0, 0, 0, 0, - 0, 0, 0, -145, 0, -145, -145, -145, -145, -145, - -145, 0, -145, 0, 0, -145, -145, -145, -145, -145, + 0, -143, -143, -143, -143, -143, -143, 0, -143, 0, + 0, -143, -143, -143, -143, -143, -143, -143, -143, -143, + -143, -143, -143, -143, -143, -143, -143, -144, 0, -590, + 0, 0, 0, 0, 0, 0, -144, -144, -144, -144, + 0, -144, -144, 0, 0, 0, -144, 0, 0, -144, + -144, -144, -144, 0, 0, 0, -144, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, -144, -144, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, -144, -144, 0, 0, 0, 0, + -144, -144, -144, -144, -144, 0, 0, 0, 0, 0, + 0, 0, -144, 0, 0, 0, 0, 0, 0, 0, + 0, 0, -144, 0, -144, -144, -144, -144, -144, -144, + 0, -144, 0, 0, -144, -144, -144, -144, -144, -144, + -144, -144, -144, -144, -144, -144, -144, -144, -144, -144, + -145, 0, -586, 0, 0, 0, 0, 0, 0, -145, + -145, -145, -145, 0, -145, -145, 0, 0, 0, -145, + 0, 0, -145, -145, -145, -145, 0, 0, 0, -145, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, -145, -145, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, -145, -145, 0, + 0, 0, 0, -145, -145, -145, -145, -145, 0, 0, + 0, 0, 0, 0, 0, -145, 0, 0, 0, 0, + 0, 0, 0, 0, 0, -145, 0, -145, -145, -145, + -145, -145, -145, 0, -145, 0, 0, -145, -145, -145, -145, -145, -145, -145, -145, -145, -145, -145, -145, -145, - -145, -146, 0, -614, 0, 0, 0, 0, 0, 0, - -146, 0, 0, 0, 0, -146, -146, 0, 0, 0, - -146, 0, 0, -146, -146, -146, -146, 0, 0, 0, - -146, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, -146, -146, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, -146, -146, - 0, 0, 0, 0, -146, -146, -146, -146, -146, 0, - 0, 0, 0, 0, 0, 0, -146, 0, 0, 0, - 0, 0, 0, 0, 0, 0, -146, 0, -146, -146, - -146, -146, -146, -146, 0, -146, 0, 0, -146, -146, + -145, -145, -145, -146, 0, -585, 0, 0, 0, 0, + 0, 0, -146, -146, -146, -146, 0, -146, -146, 0, + 0, 0, -146, 0, 0, -146, -146, -146, -146, 0, + 0, 0, -146, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, -146, -146, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + -146, -146, 0, 0, 0, 0, -146, -146, -146, -146, + -146, 0, 0, 0, 0, 0, 0, 0, -146, 0, + 0, 0, 0, 0, 0, 0, 0, 0, -146, 0, + -146, -146, -146, -146, -146, -146, 0, -146, 0, 0, -146, -146, -146, -146, -146, -146, -146, -146, -146, -146, - -146, -146, -146, -146, -147, 0, -612, 0, 0, 0, - 0, 0, 0, -147, 0, 0, 0, 0, -147, -147, - 0, 0, 0, -147, 0, 0, -147, -147, -147, -147, - 0, 0, 0, -147, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, -147, -147, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, -147, -147, 0, 0, 0, 0, -147, -147, -147, - -147, -147, 0, 0, 0, 0, 0, 0, 0, -147, - 0, 0, 0, 0, 0, 0, 0, 0, 0, -147, - 0, -147, -147, -147, -147, -147, -147, 0, -147, 0, - 0, -147, -147, -147, -147, -147, -147, -147, -147, -147, - -147, -147, -147, -147, -147, -147, -147, -148, 0, -611, - 0, 0, 0, 0, 0, 0, -148, 0, 0, 0, - 0, -148, -148, 0, 0, 0, -148, 0, 0, -148, - -148, -148, -148, 0, 0, 0, -148, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, -148, -148, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, -148, -148, 0, 0, 0, 0, - -148, -148, -148, -148, -148, 0, 0, 0, 0, 0, - 0, 0, -148, 0, 0, 0, 0, 0, 0, 0, - 0, 0, -148, 0, -148, -148, -148, -148, -148, -148, - 0, -148, 0, 0, -148, -148, -148, -148, -148, -148, + -146, -146, -146, -146, -146, -146, -30, 0, -593, 0, + 0, 0, 0, 0, 0, -30, -30, -30, -30, 0, + -30, -30, 0, 0, 0, -30, 0, 0, -30, -30, + -30, -30, 0, 0, 0, -30, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + -30, -30, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, -30, -30, 0, 0, 0, 0, -30, + -30, -30, -30, -30, 0, 0, 0, 0, 0, 0, + 0, -30, 0, 0, 0, 0, 0, 0, 0, 0, + 0, -30, 0, -30, -30, -30, -30, -30, -30, 0, + -30, 0, 0, -30, -30, -30, -30, -30, -30, -30, + -30, -30, -30, -30, -30, -30, -30, -30, -30, -148, + 0, -30, 0, 0, 0, 0, 0, 0, -148, -148, + -148, -148, 0, -148, -148, 0, 0, 0, -148, 0, + 0, -148, -148, -148, -148, 0, 0, 0, -148, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, -148, -148, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, -148, -148, 0, 0, + 0, 0, -148, -148, -148, -148, -148, 0, 0, 0, + 0, 0, 0, 0, -148, 0, 0, 0, 0, 0, + 0, 0, 0, 0, -148, 0, -148, -148, -148, -148, + -148, -148, 0, -148, 0, 0, -148, -148, -148, -148, -148, -148, -148, -148, -148, -148, -148, -148, -148, -148, - -149, 0, -613, 0, 0, 0, 0, 0, 0, -149, - 0, 0, 0, 0, -149, -149, 0, 0, 0, -149, - 0, 0, -149, -149, -149, -149, 0, 0, 0, -149, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, -149, -149, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, -149, -149, 0, - 0, 0, 0, -149, -149, -149, -149, -149, 0, 0, - 0, 0, 0, 0, 0, -149, 0, 0, 0, 0, - 0, 0, 0, 0, 0, -149, 0, -149, -149, -149, - -149, -149, -149, 0, -149, 0, 0, -149, -149, -149, + -148, -148, -149, 0, -621, 0, 0, 0, 0, 0, + 0, -149, -149, -149, -149, 0, -149, -149, 0, 0, + 0, -149, 0, 0, -149, -149, -149, -149, 0, 0, + 0, -149, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, -149, -149, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, -149, + -149, 0, 0, 0, 0, -149, -149, -149, -149, -149, + 0, 0, 0, 0, 0, 0, 0, -149, 0, 0, + 0, 0, 0, 0, 0, 0, 0, -149, 0, -149, + -149, -149, -149, -149, -149, 0, -149, 0, 0, -149, -149, -149, -149, -149, -149, -149, -149, -149, -149, -149, - -149, -149, -149, -150, 0, -610, 0, 0, 0, 0, - 0, 0, -150, 0, 0, 0, 0, -150, -150, 0, - 0, 0, -150, 0, 0, -150, -150, -150, -150, 0, - 0, 0, -150, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, -150, -150, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - -150, -150, 0, 0, 0, 0, -150, -150, -150, -150, - -150, 0, 0, 0, 0, 0, 0, 0, -150, 0, - 0, 0, 0, 0, 0, 0, 0, 0, -150, 0, - -150, -150, -150, -150, -150, -150, 0, -150, 0, 0, - -150, -150, -150, -150, -150, -150, -150, -150, -150, -150, - -150, -150, -150, -150, -150, -150, 104, 0, -609, 0, - 0, 0, 0, 0, 0, 105, 0, 0, 0, 0, - 106, 107, 0, 0, 0, 108, 0, 0, 357, 439, - 358, 359, 0, 0, 0, 360, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 361, 362, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 363, 364, 0, 0, 0, 0, 109, - 110, 111, 112, 113, 0, 0, 0, 0, 0, 0, - 0, 365, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 114, 0, 115, 116, 117, 118, 119, 120, 0, - 121, 0, 0, 122, 123, 124, 125, 126, 127, 128, - 129, 130, 131, 132, 133, 134, 135, 136, 137, -577, - 0, 440, 0, 0, 0, 0, 0, 0, -577, 0, - 0, 0, 0, -577, -577, 0, 0, 0, -577, 0, - 0, 0, 0, 0, 0, -577, -577, -577, -577, -577, - -577, -577, -577, -577, -577, -577, -577, 0, -577, -577, - -577, -577, -577, -577, -577, -577, -577, -577, -577, -577, - -577, -577, -577, -577, -577, -577, 0, 0, 0, 0, - 0, -577, -577, -577, -577, -577, -577, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, -577, -577, 0, -577, -577, -577, -577, - -577, -577, 0, -577, 0, 0, -577, -577, -577, -577, - -577, -577, -577, -577, -577, -577, -577, -577, -577, -577, - -577, -577, 104, 1, 2, 3, 4, 5, 6, 7, - 8, 105, 0, 0, 0, 0, 701, 107, 488, 0, - 0, 702, 489, 0, 490, 0, 491, 359, 11, 0, - 0, 493, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 361, 362, 163, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 363, - 364, 0, 0, 0, 0, 109, 110, 111, 112, 113, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 62, 63, 64, 65, 114, 0, 115, - 116, 117, 118, 119, 120, 0, 121, 0, 0, 122, - 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, - 133, 134, 135, 136, 137, 104, 0, 0, 0, 0, - 0, 0, 0, 0, 105, 0, 0, 0, 0, 106, - 107, 681, 682, 683, 108, 489, 0, 490, 439, 491, - 359, 0, 0, 0, 493, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 361, - 362, 163, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 363, 364, 0, 0, 0, 0, 109, 110, - 111, 112, 113, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 114, 0, 115, 116, 117, 118, 119, 120, 0, 121, - 0, 0, 122, 123, 124, 125, 126, 127, 128, 129, - 130, 131, 132, 133, 134, 135, 136, 137, 104, 0, - 0, 0, 0, 0, 0, 0, 0, 105, 0, 0, - 0, 0, 106, 107, 774, 0, 0, 108, 489, 0, - 490, 0, 491, 359, 0, 0, 0, 493, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 153, - 0, 0, 361, 362, 163, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 363, 364, 0, 0, 0, - 0, 109, 110, 111, 112, 113, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 114, 775, 776, 116, 117, 118, 119, - 120, 0, 121, 0, 0, 122, 123, 124, 125, 126, - 127, 128, 129, 130, 777, 132, 133, 134, 135, 136, - 137, 104, 0, 0, 0, 0, 0, 0, 0, 0, - 105, 0, 0, 0, 0, 106, 107, 488, 0, 0, - 108, 489, 0, 490, 0, 491, 359, 0, 0, 0, - 493, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 153, 0, 0, 361, 362, 163, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 363, 364, - 0, 0, 855, 0, 109, 110, 111, 112, 113, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 114, 0, 115, 116, - 117, 118, 119, 120, 0, 121, 0, 0, 122, 123, - 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, - 134, 135, 136, 137, 104, 0, 0, 0, 0, 0, - 0, 0, 0, 105, 0, 0, 0, 0, 106, 107, - 488, 0, 0, 108, 489, -628, 490, 0, 491, 359, - 0, 0, 0, 493, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 153, 0, 0, 361, 362, - 163, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 363, 364, 0, 0, 0, 0, 109, 110, 111, - 112, 113, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 114, - 0, 115, 116, 117, 118, 119, 120, 0, 121, 0, - 0, 122, 123, 124, 125, 126, 127, 128, 129, 130, - 131, 132, 133, 134, 135, 136, 137, 104, 0, 0, - 0, 0, 0, 0, 0, 0, 105, 0, 0, 0, - 0, 106, 107, 488, 0, 0, 108, 489, 0, 490, - 0, 491, 359, 0, 0, 0, 493, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 153, 0, - 0, 361, 362, 163, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 363, 364, 0, 0, 0, 0, - 109, 110, 111, 112, 113, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 114, 0, 115, 116, 117, 118, 119, 120, - 0, 121, 0, 0, 122, 123, 124, 125, 126, 127, - 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, + -149, -149, -149, -149, -149, -150, 0, -619, 0, 0, + 0, 0, 0, 0, -150, -150, -150, -150, 0, -150, + -150, 0, 0, 0, -150, 0, 0, -150, -150, -150, + -150, 0, 0, 0, -150, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, -150, + -150, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, -150, -150, 0, 0, 0, 0, -150, -150, + -150, -150, -150, 0, 0, 0, 0, 0, 0, 0, + -150, 0, 0, 0, 0, 0, 0, 0, 0, 0, + -150, 0, -150, -150, -150, -150, -150, -150, 0, -150, + 0, 0, -150, -150, -150, -150, -150, -150, -150, -150, + -150, -150, -150, -150, -150, -150, -150, -150, -151, 0, + -618, 0, 0, 0, 0, 0, 0, -151, -151, -151, + -151, 0, -151, -151, 0, 0, 0, -151, 0, 0, + -151, -151, -151, -151, 0, 0, 0, -151, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, -151, -151, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, -151, -151, 0, 0, 0, + 0, -151, -151, -151, -151, -151, 0, 0, 0, 0, + 0, 0, 0, -151, 0, 0, 0, 0, 0, 0, + 0, 0, 0, -151, 0, -151, -151, -151, -151, -151, + -151, 0, -151, 0, 0, -151, -151, -151, -151, -151, + -151, -151, -151, -151, -151, -151, -151, -151, -151, -151, + -151, -152, 0, -620, 0, 0, 0, 0, 0, 0, + -152, -152, -152, -152, 0, -152, -152, 0, 0, 0, + -152, 0, 0, -152, -152, -152, -152, 0, 0, 0, + -152, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, -152, -152, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, -152, -152, + 0, 0, 0, 0, -152, -152, -152, -152, -152, 0, + 0, 0, 0, 0, 0, 0, -152, 0, 0, 0, + 0, 0, 0, 0, 0, 0, -152, 0, -152, -152, + -152, -152, -152, -152, 0, -152, 0, 0, -152, -152, + -152, -152, -152, -152, -152, -152, -152, -152, -152, -152, + -152, -152, -152, -152, -153, 0, -617, 0, 0, 0, + 0, 0, 0, -153, -153, -153, -153, 0, -153, -153, + 0, 0, 0, -153, 0, 0, -153, -153, -153, -153, + 0, 0, 0, -153, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, -153, -153, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, -153, -153, 0, 0, 0, 0, -153, -153, -153, + -153, -153, 0, 0, 0, 0, 0, 0, 0, -153, + 0, 0, 0, 0, 0, 0, 0, 0, 0, -153, + 0, -153, -153, -153, -153, -153, -153, 0, -153, 0, + 0, -153, -153, -153, -153, -153, -153, -153, -153, -153, + -153, -153, -153, -153, -153, -153, -153, 104, 0, -616, + 0, 0, 0, 0, 0, 0, 105, 106, 107, 108, + 0, 109, 110, 0, 0, 0, 111, 0, 0, 365, + 448, 366, 367, 0, 0, 0, 368, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 369, 370, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 371, 372, 0, 0, 0, 0, + 112, 113, 114, 115, 116, 0, 0, 0, 0, 0, + 0, 0, 373, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 117, 0, 118, 119, 120, 121, 122, 123, + 0, 124, 0, 0, 125, 126, 127, 128, 129, 130, + 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, + 0, 0, 449, 104, 1, 2, 3, 4, 5, 6, + 7, 8, 105, 106, 107, 108, 0, 699, 110, 512, + 0, 0, 700, 495, 0, 496, 0, 497, 367, 11, + 0, 0, 498, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 369, 370, 168, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 371, 372, 0, 0, 0, 0, 112, 113, 114, 115, + 116, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 62, 63, 64, 65, 117, 0, + 118, 119, 120, 121, 122, 123, 0, 124, 0, 0, + 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, + 135, 136, 137, 138, 139, 140, 104, 0, 0, 0, + 0, 0, 0, 0, 0, 105, 106, 107, 108, 0, + 109, 110, 492, 493, 494, 111, 495, 0, 496, 448, + 497, 367, 0, 0, 0, 498, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 369, 370, 168, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 371, 372, 0, 0, 0, 0, 112, + 113, 114, 115, 116, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 117, 0, 118, 119, 120, 121, 122, 123, 0, + 124, 0, 0, 125, 126, 127, 128, 129, 130, 131, + 132, 133, 134, 135, 136, 137, 138, 139, 140, 104, + 0, 0, 0, 0, 0, 0, 0, 0, 105, 106, + 107, 108, 0, 109, 110, 787, 0, 0, 111, 495, + 0, 496, 0, 497, 367, 0, 0, 0, 498, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 158, 0, 0, 369, 370, 168, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 371, 372, 0, 0, + 0, 0, 112, 113, 114, 115, 116, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 117, 788, 789, 119, 120, 121, + 122, 123, 0, 124, 0, 0, 125, 126, 127, 128, + 129, 130, 131, 132, 133, 790, 135, 136, 137, 138, + 139, 140, 104, 0, 0, 0, 0, 0, 0, 0, + 0, 105, 106, 107, 108, 0, 109, 110, 512, 0, + 0, 111, 495, 0, 496, 0, 497, 367, 0, 0, + 0, 498, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 158, 0, 0, 369, 370, 168, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 371, + 372, 0, 0, 869, 0, 112, 113, 114, 115, 116, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 117, 0, 118, + 119, 120, 121, 122, 123, 0, 124, 0, 0, 125, + 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, + 136, 137, 138, 139, 140, 104, 0, 0, 0, 0, + 0, 0, 0, 0, 105, 106, 107, 108, 0, 109, + 110, 512, 0, 0, 111, 495, -635, 496, 0, 497, + 367, 0, 0, 0, 498, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 158, 0, 0, 369, + 370, 168, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 371, 372, 0, 0, 0, 0, 112, 113, + 114, 115, 116, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 117, 0, 118, 119, 120, 121, 122, 123, 0, 124, + 0, 0, 125, 126, 127, 128, 129, 130, 131, 132, + 133, 134, 135, 136, 137, 138, 139, 140, 104, 0, + 0, 0, 0, 0, 0, 0, 0, 105, 106, 107, + 108, 0, 109, 110, 512, 0, 0, 111, 495, 0, + 496, 0, 497, 367, 0, 0, 0, 498, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 158, + 0, 0, 369, 370, 168, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 371, 372, 0, 0, 0, + 0, 112, 113, 114, 115, 116, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 117, 0, 118, 119, 120, 121, 122, + 123, 0, 124, 0, 0, 125, 126, 127, 128, 129, + 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, + 140, 104, 0, 0, 0, 0, 0, 0, 0, 0, + 105, 106, 107, 108, 0, 109, 110, 787, 0, 0, + 111, 495, 0, 496, 0, 497, 367, 0, 0, 0, + 498, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 369, 370, 168, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 371, 372, + 0, 0, 0, 0, 112, 113, 114, 115, 116, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 117, 788, 789, 119, + 120, 121, 122, 123, 0, 124, 0, 0, 125, 126, + 127, 128, 129, 130, 131, 132, 133, 790, 135, 136, + 137, 138, 139, 140, 104, 0, 0, 0, 0, 0, + 0, 0, 0, 105, 106, 107, 108, 0, 109, 110, + 512, 0, 0, 111, 495, 0, 496, 0, 497, 367, + 0, 0, 0, 498, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 369, 370, + 168, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 371, 372, 0, 0, 0, 0, 112, 113, 114, + 115, 116, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 117, + 0, 118, 119, 120, 121, 122, 123, 0, 124, 0, + 0, 125, 126, 127, 128, 129, 130, 131, 132, 133, + 134, 135, 136, 137, 138, 139, 140, 104, 0, 0, + 0, 0, 0, 0, 0, 0, 105, 106, 107, 108, + 0, 109, 110, 0, 0, 0, 111, 0, 0, 365, + 0, 366, 367, 0, 0, 0, 368, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 369, 370, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 371, 372, 0, 0, 0, 0, + 112, 113, 114, 115, 116, 0, 0, 0, 0, 0, + 0, 0, 373, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 117, 0, 118, 119, 120, 121, 122, 123, + 0, 124, 0, 0, 125, 126, 127, 128, 129, 130, + 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 104, 0, 0, 0, 0, 0, 0, 0, 0, 105, - 0, 0, 0, 0, 106, 107, 774, 0, 0, 108, - 489, 0, 490, 0, 491, 359, 0, 0, 0, 493, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 361, 362, 163, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 363, 364, 0, - 0, 0, 0, 109, 110, 111, 112, 113, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 114, 775, 776, 116, 117, - 118, 119, 120, 0, 121, 0, 0, 122, 123, 124, - 125, 126, 127, 128, 129, 130, 777, 132, 133, 134, - 135, 136, 137, 104, 0, 0, 0, 0, 0, 0, - 0, 0, 105, 0, 0, 0, 0, 106, 107, 488, - 0, 0, 108, 489, 0, 490, 0, 491, 359, 0, - 0, 0, 493, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 361, 362, 163, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 363, 364, 0, 0, 0, 0, 109, 110, 111, 112, - 113, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 114, 0, - 115, 116, 117, 118, 119, 120, 0, 121, 0, 0, - 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, - 132, 133, 134, 135, 136, 137, 104, 0, 0, 0, - 0, 0, 0, 0, 0, 105, 0, 0, 0, 0, - 106, 107, 0, 0, 0, 108, 0, 0, 357, 0, - 358, 359, 0, 0, 0, 360, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 361, 362, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 363, 364, 0, 0, 0, 0, 109, - 110, 111, 112, 113, 0, 0, 0, 0, 0, 0, - 0, 365, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 114, 0, 115, 116, 117, 118, 119, 120, 0, - 121, 0, 0, 122, 123, 124, 125, 126, 127, 128, - 129, 130, 131, 132, 133, 134, 135, 136, 137, 104, - 0, 0, 0, 0, 0, 0, 0, 0, 105, 0, - 0, 0, 0, 106, 107, 0, 0, 0, 108, 0, - 0, 0, 0, 0, 0, 11, 0, 0, -520, 0, - 0, 0, 0, 1, 2, 3, 4, 5, 6, 7, - 8, 0, 0, 0, 0, 163, 9, 0, 0, 0, - 0, 61, 0, 0, 0, 445, 446, 0, 0, 0, - 0, 0, 109, 110, 111, 112, 113, 0, 0, 0, - 0, 0, 0, 448, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 65, 114, 0, 115, 116, 117, 118, - 119, 120, 0, 121, 0, 0, 122, 123, 124, 125, + 106, 107, 108, 0, 109, 110, 0, 0, 0, 111, + 0, 0, 0, 0, 0, 0, 11, 0, 0, -527, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 168, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 112, 113, 114, 115, 116, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 65, 117, 0, 118, 119, 120, + 121, 122, 123, 0, 124, 0, 0, 125, 126, 127, + 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, + 138, 139, 140, 104, 0, 0, 0, 0, 0, 0, + 0, 0, 105, 106, 107, 108, 0, 109, 110, 0, + 0, 679, 111, 0, 0, 0, 0, 0, 0, 11, + 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, + 474, 475, 476, 477, 478, 479, 480, 481, 0, 168, + 0, 0, 0, 482, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 112, 113, 114, 115, + 116, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 65, 117, 0, + 118, 119, 120, 121, 122, 123, 0, 124, 0, 0, + 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, + 135, 136, 137, 138, 139, 140, 104, 0, 0, 0, + 0, 0, 0, 0, 0, 105, 106, 107, 108, 0, + 109, 110, 0, 0, 0, 111, 0, 0, 771, 0, + 0, 0, 0, 0, 0, 722, 827, 464, 465, 466, + 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, + 477, 478, 479, 480, 481, 0, 0, 0, 0, 0, + 705, 0, 0, 0, 0, 0, 0, 0, 0, 112, + 113, 114, 115, 116, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 117, 0, 118, 119, 120, 121, 122, 123, 0, + 124, 0, 0, 125, 126, 127, 128, 129, 130, 131, + 132, 133, 134, 135, 136, 137, 138, 139, 140, 104, + 0, 0, 0, 0, 0, 0, 0, 0, 105, 106, + 107, 108, 0, 109, 110, 0, 0, 0, 111, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 764, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 168, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 112, 113, 114, 115, 116, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 117, 0, 118, 119, 120, 121, + 122, 123, 0, 124, 0, 0, 125, 126, 127, 128, + 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, + 139, 140, 104, 0, 0, 0, 0, 0, 0, 0, + 0, 105, 106, 107, 108, 923, 109, 110, 0, 0, + 0, 111, 0, 0, 464, 465, 466, 467, 468, 469, + 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, + 480, 481, 0, 0, 0, 0, 0, 705, 168, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 112, 113, 114, 115, 116, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 117, 0, 118, + 119, 120, 121, 122, 123, 0, 124, 0, 0, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, - 136, 137, 104, 62, 63, 64, 0, 0, 0, 0, - 0, 105, 0, 0, 0, 0, 106, 107, 737, 0, - 0, 108, 0, 0, 0, 0, 0, 0, 11, 455, - 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, - 466, 467, 468, 469, 470, 471, 472, 0, 163, 0, - 0, 0, 707, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 109, 110, 111, 112, 113, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 65, 114, 0, 115, - 116, 117, 118, 119, 120, 0, 121, 0, 0, 122, - 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, - 133, 134, 135, 136, 137, 104, 0, 0, 0, 0, - 0, 0, 0, 0, 105, 0, 0, 0, 0, 106, - 107, 0, 0, 0, 108, 0, 0, 662, 0, 0, - 0, 0, 0, 0, 710, 814, 455, 456, 457, 458, - 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, - 469, 470, 471, 472, 0, 0, 0, 0, 0, 473, - 0, 0, 0, 0, 0, 0, 0, 0, 109, 110, - 111, 112, 113, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 114, 0, 115, 116, 117, 118, 119, 120, 0, 121, - 0, 0, 122, 123, 124, 125, 126, 127, 128, 129, - 130, 131, 132, 133, 134, 135, 136, 137, 104, 0, - 0, 0, 0, 0, 0, 0, 0, 105, 0, 763, - 0, 0, 106, 107, 0, 0, 0, 108, 455, 456, - 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, - 467, 468, 469, 470, 471, 472, 0, 0, 0, 0, - 0, 707, 0, 0, 163, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 109, 110, 111, 112, 113, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 114, 0, 115, 116, 117, 118, 119, - 120, 0, 121, 0, 0, 122, 123, 124, 125, 126, - 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, - 137, 104, 0, 0, 0, 0, 0, 0, 0, 0, - 105, 0, 0, 0, 0, 106, 107, 0, 0, 0, - 108, 0, 908, 0, 0, 0, 0, 0, 0, 0, - 451, 455, 456, 457, 458, 459, 460, 461, 462, 463, - 464, 465, 466, 467, 468, 469, 470, 471, 472, 0, - 0, 0, 0, 0, 707, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 109, 110, 111, 112, 113, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 114, 0, 115, 116, - 117, 118, 119, 120, 0, 121, 0, 0, 122, 123, - 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, - 134, 135, 136, 137, 104, 0, 0, 0, 0, 0, - 0, 0, 0, 105, 0, 0, 0, 0, 106, 107, - 0, 0, 0, 108, 0, 0, 873, 0, 0, 0, - 0, 0, 0, 710, 455, 456, 457, 458, 459, 460, - 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, - 471, 472, 0, 0, 0, 0, 0, 707, 0, 0, - 0, 0, 0, 104, 0, 0, 0, 109, 110, 111, - 112, 113, 105, 0, 0, 0, 0, 106, 107, 0, - 0, 0, 108, 0, 0, 0, 0, 0, 0, 114, - 0, 115, 116, 117, 118, 119, 120, 0, 121, 0, - 0, 122, 123, 124, 125, 126, 127, 128, 129, 130, - 131, 132, 133, 134, 135, 136, 137, 0, 0, 0, - 0, 0, 0, 0, 739, 0, 109, 110, 111, 112, - 113, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 114, 0, - 115, 116, 117, 118, 119, 120, 0, 121, 0, 0, - 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, - 132, 133, 134, 135, 136, 137, 104, 0, 0, 0, - 0, 0, 0, 0, 0, 105, 0, 0, 0, 748, - 790, 107, 0, 0, 0, 108, 455, 456, 457, 458, - 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, - 469, 470, 471, 472, 0, 0, 0, 0, 0, 473, - 0, 0, 163, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 104, 0, 0, 0, 109, - 110, 111, 112, 113, 105, 0, 0, 0, 0, 106, - 107, 0, 0, 0, 108, 0, 0, 0, 0, 0, - 0, 114, 0, 115, 116, 117, 118, 119, 120, 0, - 121, 0, 0, 122, 123, 124, 125, 126, 127, 128, - 129, 130, 131, 132, 133, 134, 135, 136, 137, 0, - 0, 0, 0, 0, 104, 0, 835, 0, 109, 110, - 111, 112, 113, 105, 0, 0, 0, 0, 106, 107, - 0, 0, 0, 108, 0, 0, 0, 0, 0, 0, - 114, 0, 115, 116, 117, 118, 119, 120, 0, 121, - 0, 0, 122, 123, 124, 125, 126, 127, 128, 129, - 130, 131, 132, 133, 134, 135, 136, 137, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 109, 110, 111, - 112, 113, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 114, - 0, 115, 116, 117, 118, 119, 120, 0, 121, 0, - 0, 122, 123, 124, 125, 126, 127, 128, 129, 130, - 131, 132, 133, 134, 135, 136, 137, 811, 0, 0, - 0, 0, 0, 0, 455, 456, 457, 458, 459, 460, - 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, - 471, 472, 0, 0, 0, 706, 0, 707, 455, 456, - 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, - 467, 468, 469, 470, 471, 472, 0, 0, 0, 0, - 0, 707, 455, 456, 457, 458, 459, 460, 461, 462, - 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, - 0, 0, 0, 0, 0, 473, 455, 456, 457, 458, - 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, - 469, 470, 471, 472, 0, 0, 0, 0, 0, 707, - 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, - 465, 466, 467, 468, 469, 470, 471, 472, 0, 0, - 0, 0, 0, 473, 455, 456, 457, 458, 459, 460, - 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, - 471, 472, 0, 0, 0, 0, 0, 707 + 136, 137, 138, 139, 140, 104, 0, 0, 0, 0, + 0, 0, 0, 0, 105, 106, 107, 108, 0, 109, + 110, 0, 0, 0, 111, 0, 0, 887, 0, 0, + 0, 0, 0, 0, 460, 464, 465, 466, 467, 468, + 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, + 479, 480, 481, 0, 0, 0, 0, 0, 705, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 112, 113, + 114, 115, 116, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 117, 0, 118, 119, 120, 121, 122, 123, 0, 124, + 0, 0, 125, 126, 127, 128, 129, 130, 131, 132, + 133, 134, 135, 136, 137, 138, 139, 140, 104, 0, + 0, 0, 0, 0, 0, 0, 0, 105, 106, 107, + 108, 0, 109, 110, 0, 0, 0, 111, 0, 0, + 0, 761, 0, 0, 0, 0, 0, 722, 464, 465, + 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, + 476, 477, 478, 479, 480, 481, 0, 0, 0, 0, + 0, 482, 0, 0, 0, 0, 0, 104, 0, 0, + 0, 112, 113, 114, 115, 116, 105, 106, 107, 108, + 0, 109, 110, 0, 0, 0, 111, 0, 0, 0, + 0, 0, 0, 117, 0, 118, 119, 120, 121, 122, + 123, 0, 124, 0, 0, 125, 126, 127, 128, 129, + 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, + 140, 0, 0, 0, 0, 0, 0, 0, 752, 0, + 112, 113, 114, 115, 116, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 117, 0, 118, 119, 120, 121, 122, 123, + 0, 124, 0, 0, 125, 126, 127, 128, 129, 130, + 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, + 104, 0, 0, 0, 0, 0, 0, 0, 0, 105, + 106, 107, 108, 819, 803, 110, 0, 0, 0, 111, + 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, + 474, 475, 476, 477, 478, 479, 480, 481, 0, 0, + 0, 0, 0, 705, 0, 0, 168, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 104, + 0, 0, 0, 112, 113, 114, 115, 116, 105, 106, + 107, 108, 0, 109, 110, 0, 0, 0, 111, 0, + 0, 0, 0, 0, 0, 117, 0, 118, 119, 120, + 121, 122, 123, 0, 124, 0, 0, 125, 126, 127, + 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, + 138, 139, 140, 0, 0, 0, 0, 0, 104, 0, + 848, 0, 112, 113, 114, 115, 116, 105, 106, 107, + 108, 0, 109, 110, 0, 0, 0, 111, 0, 0, + 0, 0, 0, 0, 117, 0, 118, 119, 120, 121, + 122, 123, 0, 124, 0, 0, 125, 126, 127, 128, + 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, + 139, 140, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 112, 113, 114, 115, 116, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 117, 0, 118, 119, 120, 121, 122, + 123, 0, 124, 0, 0, 125, 126, 127, 128, 129, + 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, + 140, 720, 0, 0, 464, 465, 466, 467, 468, 469, + 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, + 480, 481, 0, 0, 0, 0, 0, 705, 464, 465, + 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, + 476, 477, 478, 479, 480, 481, 0, 0, 0, 0, + 0, 482, 464, 465, 466, 467, 468, 469, 470, 471, + 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, + 0, 0, 0, 0, 0, 705, 464, 465, 466, 467, + 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, + 478, 479, 480, 481, 0, 0, 0, 0, 0, 482, + 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, + 474, 475, 476, 477, 478, 479, 480, 481, 0, 0, + 0, 0, 0, 705 }; static const short yycheck[] = { - 33, 22, 16, 17, 18, 185, 184, 185, 88, 33, - 0, 15, 191, 421, 0, 34, 103, 33, 92, 395, - 10, 92, 424, 394, 421, 15, 81, 424, 311, 368, - 378, 379, 697, 725, 24, 476, 91, 27, 409, 476, - 725, 27, 725, 15, 754, 758, 10, 760, 62, 63, - 64, 138, 311, 26, 141, 45, 49, 91, 0, 392, - 37, 31, 29, 33, 34, 26, 33, 81, 10, 29, - 29, 29, 33, 33, 33, 427, 26, 360, 92, 93, - 94, 45, 24, 366, 776, 27, 24, 101, 25, 123, - 31, 95, 784, 806, 35, 36, 35, 36, 35, 31, - 433, 784, 441, 45, 36, 95, 31, 32, 9, 34, - 11, 450, 17, 18, 453, 92, 93, 94, 95, 96, - 87, 98, 99, 95, 35, 36, 64, 87, 87, 87, - 840, 124, 484, 4, 5, 6, 33, 34, 9, 4, - 5, 6, 6, 808, 9, 9, 119, 406, 33, 34, - 483, 22, 3, 157, 168, 6, 44, 22, 191, 10, - 493, 12, 827, 496, 33, 34, 156, 157, 26, 27, - 125, 454, 186, 883, 32, 32, 33, 92, 93, 94, - 95, 96, 874, 98, 99, 157, 44, 852, 0, 874, - 473, 474, 156, 17, 18, 887, 31, 36, 33, 34, - 913, 31, 36, 895, 34, 110, 111, 112, 113, 114, - 115, 32, 895, 34, 156, 33, 34, 909, 33, 34, - 17, 18, 33, 34, 909, 6, 7, 8, 32, 670, - 93, 94, 312, 670, 675, 32, 32, 311, 675, 30, - 311, 4, 5, 6, 7, 8, 9, 10, 11, 31, - 35, 916, 32, 629, 17, 23, 632, 36, 3, 22, - 31, 6, 36, 23, 123, 10, 29, 12, 13, 14, - 15, 16, 17, 38, 32, 6, 100, 101, 102, 103, - 104, 105, 106, 107, 108, 36, 360, 658, 33, 360, - 32, 31, 366, 31, 35, 366, 351, 311, 476, 32, - 37, 634, 36, 100, 101, 102, 103, 104, 105, 106, - 107, 108, 40, 32, 31, 493, 31, 49, 6, 727, - 83, 84, 85, 86, 87, 664, 89, 26, 667, 668, - 727, 32, 34, 40, 34, 32, 34, 26, 22, 710, - 32, 32, 64, 39, 715, 40, 360, 37, 64, 31, - 31, 365, 366, 40, 32, 92, 93, 94, 95, 96, - 123, 98, 99, 24, 40, 32, 32, 31, 33, 25, - 394, 33, 35, 33, 707, 708, 409, 34, 31, 34, - 454, 35, 33, 454, 33, 409, 33, 420, 34, 422, - 34, 424, 725, 409, 770, 35, 772, 773, 40, 473, - 474, 109, 473, 474, 32, 64, 32, 755, 756, 423, - 34, 33, 33, 25, 32, 35, 31, 33, 97, 33, - 33, 829, 32, 437, 33, 31, 33, 35, 447, 762, - 25, 34, 829, 31, 33, 32, 25, 451, 34, 33, - 454, 33, 32, 34, 477, 478, 34, 24, 628, 32, - 628, 784, 97, 631, 32, 34, 795, 796, 860, 473, - 474, 33, 32, 860, 747, 748, 25, 33, 33, 877, - 34, 33, 476, 34, 850, 35, 809, 33, 811, 33, - 877, 32, 25, 33, 32, 32, 476, 33, 502, 33, - 476, 888, 670, 826, 33, 33, 33, 675, 4, 5, - 6, 7, 8, 9, 10, 11, 27, 809, 675, 157, - 918, 17, 670, 40, 624, 24, 22, 160, 631, 381, - 802, 918, 21, 29, 30, 31, 635, 179, 447, 760, - 169, 181, 929, 19, 384, 41, 909, 420, 775, 915, - 873, 874, 887, 929, 823, 4, 5, 6, 7, 8, - 9, 10, 11, 732, 930, -1, -1, 734, 17, -1, - -1, -1, 895, 22, -1, -1, -1, -1, -1, -1, - 29, -1, -1, -1, -1, -1, 909, 83, 84, 85, - 86, 87, 88, 89, -1, 91, -1, 767, -1, 767, - 677, 678, -1, -1, -1, -1, -1, -1, -1, -1, - -1, 4, 5, 6, 7, 8, 9, 10, 11, -1, - 116, -1, -1, -1, 17, 121, -1, 123, -1, 22, - -1, 635, 655, -1, -1, 84, 85, 86, 87, -1, - -1, -1, -1, -1, 658, -1, -1, -1, -1, -1, - -1, 674, 656, -1, -1, -1, -1, -1, -1, -1, - 674, -1, -1, -1, -1, -1, -1, -1, 674, -1, - -1, -1, 676, -1, 123, -1, 670, -1, -1, -1, - -1, 675, -1, 747, 748, -1, 747, 748, -1, -1, - 670, 84, 85, 86, 670, 675, 710, 703, 868, 675, - 868, 715, -1, -1, -1, -1, 729, -1, -1, 732, - -1, -1, 735, -1, -1, -1, 886, -1, 886, -1, - 731, -1, -1, 793, -1, -1, -1, -1, -1, -1, - 734, -1, -1, 4, 5, 6, 7, 8, 9, 10, - 11, -1, -1, 747, 748, -1, 17, -1, -1, -1, - -1, 22, 922, -1, 922, -1, -1, -1, 29, -1, - 3, -1, 766, 6, 787, 769, 37, 10, -1, 12, - 13, 14, 15, 16, 17, -1, -1, 800, -1, -1, - 803, 804, 30, -1, -1, -1, -1, -1, -1, -1, - 794, -1, -1, -1, -1, -1, -1, 808, -1, -1, - 823, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, 84, 85, 86, 87, -1, 66, 67, - 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, - -1, 79, 80, 81, 82, -1, -1, -1, -1, -1, - -1, -1, 865, -1, -1, -1, -1, -1, -1, -1, - 121, 874, -1, -1, -1, -1, 0, -1, -1, 3, - 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, - 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, - 24, 25, 26, 27, 28, 29, 909, 31, 32, 33, - 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, - 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, - 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, - 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, - 74, 75, 76, 77, 78, 79, -1, 81, -1, 83, - 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, - 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, + 33, 22, 88, 0, 33, 16, 17, 18, 190, 0, + 189, 190, 15, 10, 33, 196, 103, 430, 15, 92, + 433, 390, 430, 433, 404, 376, 92, 24, 403, 34, + 27, 507, 401, 716, 81, 316, 27, 386, 387, 485, + 738, 485, 738, 418, 91, 775, 738, 777, 45, 10, + 0, 62, 63, 64, 141, 316, 15, 144, 767, 26, + 10, 31, 32, 436, 34, 29, 49, 29, 91, 33, + 81, 33, 24, 442, 24, 29, 29, 27, 17, 18, + 33, 92, 93, 94, 45, 33, 34, 368, 32, 165, + 101, 821, 95, 374, 38, 45, 25, 789, 95, 450, + 123, 797, 26, 26, 813, 797, 35, 6, 459, 33, + 9, 462, 64, 4, 5, 6, 7, 8, 9, 10, + 11, 197, 31, 87, 44, 87, 17, 36, 32, 498, + 499, 22, 0, 87, 87, 508, 95, 9, 507, 11, + 823, 124, 26, 27, 853, 31, 35, 36, 32, 35, + 36, 125, 119, 31, 415, 125, 34, 840, 32, 162, + 44, 36, 173, 196, 161, 162, 37, 6, 7, 8, + 879, 110, 111, 112, 113, 114, 115, 32, 36, 34, + 191, 30, 463, 866, 31, 31, 33, 34, 897, 31, + 888, 33, 34, 84, 85, 86, 888, 32, 928, 35, + 161, 482, 483, 162, 35, 36, 33, 34, 33, 34, + 902, 161, 32, 33, 910, 23, 37, 36, 910, 33, + 34, 92, 93, 94, 95, 96, 924, 98, 99, 33, + 34, 317, 924, 4, 5, 6, 7, 8, 9, 10, + 11, 40, 688, 316, 688, 31, 17, 693, 931, 693, + 316, 22, 33, 34, 36, 17, 18, 23, 29, 93, + 94, 123, 38, 643, 32, 645, 37, 6, 648, 36, + 32, 92, 93, 94, 95, 96, 32, 98, 99, 31, + 35, 650, 32, 36, 32, 4, 5, 6, 7, 8, + 9, 10, 11, 17, 18, 368, 40, 31, 17, 31, + 675, 374, 368, 22, 49, 316, 485, 6, 374, 26, + 29, 32, 359, 84, 85, 86, 87, 40, 34, 498, + 34, 34, 92, 93, 94, 95, 96, 740, 98, 99, + 31, 682, 740, 26, 685, 686, 705, 706, 100, 101, + 102, 103, 104, 105, 106, 107, 108, 722, 824, 32, + 121, 3, 727, 22, 6, 32, 31, 368, 10, 39, + 12, 13, 373, 374, 83, 84, 85, 86, 87, 738, + 89, 23, 64, 64, 403, 37, 100, 101, 102, 103, + 104, 105, 106, 107, 108, 418, 40, 31, 31, 418, + 463, 40, 32, 24, 40, 32, 429, 463, 431, 418, + 433, 770, 32, 783, 123, 785, 786, 31, 33, 482, + 483, 33, 33, 4, 5, 6, 482, 483, 9, 768, + 769, 432, 34, 25, 35, 31, 35, 34, 797, 842, + 3, 22, 33, 6, 842, 446, 33, 10, 33, 12, + 13, 14, 15, 16, 17, 34, 34, 40, 35, 460, + 819, 456, 463, 486, 487, 824, 64, 808, 809, 109, + 33, 874, 644, 32, 874, 644, 32, 34, 647, 33, + 839, 482, 483, 33, 25, 32, 35, 31, 891, 760, + 761, 33, 485, 891, 864, 33, 33, 32, 485, 33, + 903, 31, 97, 35, 485, 33, 25, 4, 5, 6, + 7, 8, 9, 10, 11, 31, 34, 518, 32, 688, + 17, 4, 5, 6, 693, 22, 9, 33, 887, 888, + 933, 33, 29, 34, 33, 933, 34, 32, 34, 22, + 24, 944, 32, 4, 5, 6, 7, 8, 9, 10, + 11, 910, 97, 32, 25, 33, 17, 32, 25, 33, + 930, 22, 34, 33, 33, 924, 34, 33, 29, 30, + 31, 35, 34, 33, 745, 945, 32, 25, 33, 32, + 41, 33, 33, 32, 27, 693, 33, 84, 85, 86, + 87, 33, 33, 162, 688, 30, 4, 5, 6, 7, + 8, 9, 10, 11, 40, 640, 186, 24, 780, 17, + 184, 780, 389, 647, 22, 815, 456, 21, 695, 696, + 651, 29, 83, 84, 85, 86, 87, 88, 89, 777, + 91, 66, 67, 68, 69, 70, 71, 72, 73, 74, + 75, 76, 77, 174, 79, 80, 81, 82, 671, 19, + 651, 924, 393, 788, 3, 116, 675, 6, 902, 429, + 121, 10, 123, 12, 13, 14, 15, 16, 17, 692, + 944, 836, 673, 692, 747, -1, 84, 85, 86, 87, + -1, -1, -1, 692, -1, -1, -1, -1, -1, -1, + -1, -1, 701, 694, -1, 688, -1, 760, 761, -1, + 693, 688, -1, 722, 760, 761, 693, 688, 727, -1, + 882, -1, 693, 882, -1, 123, -1, -1, -1, 742, + -1, -1, 745, -1, -1, 748, -1, -1, -1, 901, + 806, -1, 901, 744, -1, -1, 4, 5, 6, 7, + 8, 9, 10, 11, -1, -1, 747, -1, -1, 17, + -1, -1, -1, -1, 22, -1, -1, -1, -1, 760, + 761, 29, -1, -1, -1, 937, -1, -1, 937, 4, + 5, 6, 7, 8, 9, 10, 11, 800, 779, -1, + -1, 782, 17, -1, -1, -1, -1, 22, -1, -1, + 813, 26, 27, 816, 817, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, 807, -1, -1, 44, + 31, -1, 823, 836, -1, -1, 84, 85, 86, 87, + -1, 42, 43, 44, 45, 46, 47, 48, 49, 50, + 51, 52, 53, 54, 55, 56, 57, 58, 59, -1, + -1, -1, -1, -1, 65, -1, -1, -1, -1, 84, + 85, 86, -1, 121, -1, -1, 879, -1, -1, -1, + -1, -1, -1, -1, -1, 888, -1, -1, -1, -1, + -1, 0, -1, -1, 3, 4, 5, 6, 7, 8, + 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, + 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, + 29, 924, 31, 32, 33, 34, 35, 36, 37, 38, + 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, + 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, + 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, + 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, + 79, -1, 81, -1, 83, 84, 85, 86, 87, 88, + 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, + 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, + 109, 110, 111, 112, 113, 114, 115, 116, -1, -1, + 119, -1, 121, 122, 123, 124, 125, 0, -1, -1, + 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, + 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, + 23, 24, 25, 26, 27, 28, 29, -1, 31, 32, + 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, + 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, + 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, + 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, + 73, 74, 75, 76, 77, 78, 79, -1, 81, -1, + 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, + 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, + 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, + 113, 114, 115, 116, -1, -1, 119, -1, 121, 122, + 123, 124, 125, 0, -1, -1, 3, 4, 5, 6, + 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, + 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, + 27, 28, 29, -1, 31, 32, 33, 34, 35, 36, + 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, + 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, + 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, + 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, + 77, 78, 79, -1, 81, -1, 83, 84, 85, 86, + 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, + 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, + 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, + -1, -1, 119, -1, 121, 122, 123, 124, 125, 0, + -1, -1, 3, 4, 5, 6, 7, 8, 9, 10, + 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, + 21, 22, 23, 24, 25, 26, 27, 28, 29, -1, + 31, 32, 33, 34, 35, 36, -1, 38, 39, 40, + 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, + 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, + 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, + 71, 72, 73, 74, 75, 76, 77, 78, 79, -1, + 81, -1, 83, 84, 85, 86, 87, 88, 89, 90, + 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, + 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, + 111, 112, 113, 114, 115, 116, 3, -1, 119, -1, + 121, 122, 123, 124, 125, 12, 13, 14, 15, -1, + 17, 18, -1, -1, -1, 22, -1, -1, -1, -1, + -1, -1, 29, 30, 31, 32, 33, 34, 35, 36, + 37, 38, 39, 40, -1, 42, 43, 44, 45, 46, + 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, + 57, 58, 59, -1, -1, -1, -1, -1, 65, 66, + 67, 68, 69, 70, 4, 5, 6, 7, 8, 9, + 10, 11, -1, -1, -1, -1, -1, 17, -1, -1, + 87, 88, 22, 90, 91, 92, 93, 94, 95, 29, + 97, -1, -1, 100, 101, 102, 103, 104, 105, 106, + 107, 108, 109, 110, 111, 112, 113, 114, 115, -1, + 3, -1, -1, -1, -1, -1, -1, -1, 125, 12, + 13, 14, 15, -1, 17, 18, 19, -1, -1, 22, + 23, -1, 25, -1, 27, 28, 29, -1, -1, 32, + -1, -1, -1, -1, 84, 85, 86, 87, -1, -1, + -1, -1, -1, -1, 47, 48, 49, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, 60, 61, -1, + -1, -1, -1, 66, 67, 68, 69, 70, -1, -1, + -1, 121, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, 87, 88, -1, 90, 91, 92, + 93, 94, 95, -1, 97, -1, -1, 100, 101, 102, + 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, + 113, 114, 115, 3, -1, -1, -1, -1, -1, -1, + -1, 124, 12, 13, 14, 15, -1, 17, 18, -1, + -1, -1, 22, -1, -1, 25, -1, 27, 28, -1, + -1, -1, 32, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, 47, 48, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + 60, 61, -1, -1, -1, -1, 66, 67, 68, 69, + 70, -1, -1, -1, -1, -1, -1, -1, 78, -1, + -1, -1, -1, -1, -1, -1, -1, -1, 88, -1, + 90, 91, 92, 93, 94, 95, -1, 97, -1, -1, + 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, + 110, 111, 112, 113, 114, 115, 3, -1, -1, 119, + -1, -1, -1, -1, -1, 12, 13, 14, 15, -1, + 17, 18, -1, -1, -1, 22, -1, -1, 25, 26, + 27, 28, -1, -1, -1, 32, -1, -1, -1, -1, + -1, -1, 4, 5, 6, 7, 8, 9, 10, 11, + 47, 48, -1, -1, -1, 17, -1, -1, -1, -1, + 22, -1, -1, 60, 61, -1, -1, 29, -1, 66, + 67, 68, 69, 70, -1, -1, -1, -1, -1, -1, + -1, 78, -1, -1, -1, -1, -1, -1, -1, -1, + -1, 88, -1, 90, 91, 92, 93, 94, 95, -1, + 97, -1, -1, 100, 101, 102, 103, 104, 105, 106, + 107, 108, 109, 110, 111, 112, 113, 114, 115, 3, + -1, 118, 84, 85, 86, 87, -1, -1, 12, 13, + 14, 15, -1, 17, 18, -1, -1, -1, 22, -1, + -1, 25, 26, 27, 28, -1, -1, -1, 32, -1, + -1, -1, -1, -1, -1, 4, 5, 6, 7, 8, + 9, 10, 11, 47, 48, -1, -1, -1, 17, -1, + -1, -1, -1, 22, -1, -1, 60, 61, -1, -1, + 29, -1, 66, 67, 68, 69, 70, -1, -1, -1, + -1, -1, -1, -1, 78, -1, -1, -1, -1, -1, + -1, -1, -1, -1, 88, -1, 90, 91, 92, 93, + 94, 95, -1, 97, -1, -1, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, - 114, 115, 116, -1, -1, 119, -1, 121, 122, 123, - 124, 125, 0, -1, -1, 3, 4, 5, 6, 7, - 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, - 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, - 28, 29, -1, 31, 32, 33, 34, 35, 36, 37, - 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, - 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, - 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, - 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, - 78, 79, -1, 81, -1, 83, 84, 85, 86, 87, - 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, - 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, - 108, 109, 110, 111, 112, 113, 114, 115, 116, -1, - -1, 119, -1, 121, 122, 123, 124, 125, 0, -1, - -1, 3, 4, 5, 6, 7, 8, 9, 10, 11, - 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, - 22, 23, 24, 25, 26, 27, 28, 29, -1, 31, - 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, - 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, - 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, - 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, - 72, 73, 74, 75, 76, 77, 78, 79, -1, 81, - -1, 83, 84, 85, 86, 87, 88, 89, 90, 91, - 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, - 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, - 112, 113, 114, 115, 116, -1, -1, 119, -1, 121, - 122, 123, 124, 125, 0, -1, -1, 3, 4, 5, - 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, - 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, - 26, 27, 28, 29, -1, 31, 32, 33, 34, 35, - 36, -1, 38, 39, 40, 41, 42, 43, 44, 45, - 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, - 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, - 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, - 76, 77, 78, 79, -1, 81, -1, 83, 84, 85, - 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, - 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, - 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, - 116, 3, -1, 119, -1, 121, 122, 123, 124, 125, - 12, -1, -1, -1, -1, 17, 18, 19, -1, -1, - 22, 23, -1, 25, -1, 27, 28, 29, -1, -1, - 32, -1, -1, -1, -1, 4, 5, 6, 7, 8, - 9, 10, 11, -1, -1, 47, 48, 49, 17, -1, - -1, -1, -1, 22, -1, -1, -1, -1, 60, 61, - 29, -1, -1, -1, 66, 67, 68, 69, 70, -1, + 114, 115, 3, -1, 118, 84, 85, 86, 87, -1, + -1, 12, 13, 14, 15, -1, 17, 18, -1, -1, + -1, 22, -1, -1, 25, 26, 27, 28, -1, -1, + -1, 32, -1, -1, -1, -1, -1, -1, 4, 5, + 6, 7, 8, 9, 10, 11, 47, 48, -1, -1, + -1, 17, -1, -1, -1, -1, 22, -1, -1, 60, + 61, -1, -1, 29, -1, 66, 67, 68, 69, 70, + -1, -1, -1, -1, -1, -1, -1, 78, -1, -1, + -1, -1, -1, -1, -1, -1, -1, 88, -1, 90, + 91, 92, 93, 94, 95, -1, 97, -1, -1, 100, + 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, + 111, 112, 113, 114, 115, 3, -1, 118, 84, 85, + 86, 87, -1, -1, 12, 13, 14, 15, -1, 17, + 18, -1, -1, -1, 22, -1, -1, 25, 26, 27, + 28, -1, -1, -1, 32, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, 47, + 48, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, 60, 61, -1, -1, -1, -1, 66, 67, + 68, 69, 70, -1, -1, -1, -1, -1, -1, -1, + 78, -1, -1, -1, -1, -1, -1, -1, -1, -1, + 88, -1, 90, 91, 92, 93, 94, 95, -1, 97, + -1, -1, 100, 101, 102, 103, 104, 105, 106, 107, + 108, 109, 110, 111, 112, 113, 114, 115, 3, -1, + 118, -1, -1, -1, -1, -1, -1, 12, 13, 14, + 15, -1, 17, 18, -1, -1, -1, 22, -1, -1, + 25, 26, 27, 28, -1, -1, -1, 32, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, 87, 88, -1, 90, 91, + -1, -1, 47, 48, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, 60, 61, -1, -1, -1, + -1, 66, 67, 68, 69, 70, -1, -1, -1, -1, + -1, -1, -1, 78, -1, -1, -1, -1, -1, -1, + -1, -1, -1, 88, -1, 90, 91, 92, 93, 94, + 95, -1, 97, -1, -1, 100, 101, 102, 103, 104, + 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, + 115, 3, -1, 118, -1, -1, -1, -1, -1, -1, + 12, 13, 14, 15, -1, 17, 18, -1, -1, -1, + 22, -1, -1, 25, 26, 27, 28, -1, -1, -1, + 32, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, 47, 48, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, 60, 61, + -1, -1, -1, -1, 66, 67, 68, 69, 70, -1, + -1, -1, -1, -1, -1, -1, 78, -1, -1, -1, + -1, -1, -1, -1, -1, -1, 88, -1, 90, 91, 92, 93, 94, 95, -1, 97, -1, -1, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, - 112, 113, 114, 115, -1, 84, 85, 86, 87, -1, - -1, -1, 124, 4, 5, 6, 7, 8, 9, 10, - 11, -1, -1, -1, -1, -1, 17, -1, -1, -1, - -1, 22, -1, -1, 3, -1, -1, -1, 29, -1, - -1, -1, 121, 12, -1, -1, -1, -1, 17, 18, + 112, 113, 114, 115, 3, -1, 118, -1, -1, -1, + -1, -1, -1, 12, 13, 14, 15, -1, 17, 18, -1, -1, -1, 22, -1, -1, 25, 26, 27, 28, -1, -1, -1, 32, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 47, 48, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, 60, 61, 84, 85, 86, 87, 66, 67, 68, + -1, 60, 61, -1, -1, -1, -1, 66, 67, 68, 69, 70, -1, -1, -1, -1, -1, -1, -1, 78, -1, -1, -1, -1, -1, -1, -1, -1, -1, 88, -1, 90, 91, 92, 93, 94, 95, -1, 97, -1, - 121, 100, 101, 102, 103, 104, 105, 106, 107, 108, + -1, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 3, -1, 118, - -1, -1, -1, -1, -1, -1, 12, -1, -1, -1, + -1, -1, -1, -1, -1, -1, 12, 13, 14, 15, -1, 17, 18, -1, -1, -1, 22, -1, -1, 25, 26, 27, 28, -1, -1, -1, 32, -1, -1, -1, - -1, -1, -1, 4, 5, 6, 7, 8, 9, 10, - 11, 47, 48, -1, -1, -1, 17, -1, -1, -1, - -1, 22, -1, -1, 60, 61, -1, -1, 29, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, 47, 48, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, 60, 61, -1, -1, -1, -1, 66, 67, 68, 69, 70, -1, -1, -1, -1, -1, -1, -1, 78, -1, -1, -1, -1, -1, -1, -1, -1, -1, 88, -1, 90, 91, 92, 93, 94, 95, -1, 97, -1, -1, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, - 3, -1, 118, 84, 85, 86, 87, -1, -1, 12, - -1, -1, -1, -1, 17, 18, -1, -1, -1, 22, + 3, -1, 118, -1, -1, -1, -1, -1, -1, 12, + 13, 14, 15, -1, 17, 18, -1, -1, -1, 22, -1, -1, 25, 26, 27, 28, -1, -1, -1, 32, - -1, -1, -1, -1, -1, -1, 4, 5, 6, 7, - 8, 9, 10, 11, 47, 48, -1, -1, -1, 17, - -1, -1, -1, -1, 22, -1, -1, 60, 61, -1, - -1, 29, -1, 66, 67, 68, 69, 70, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, 47, 48, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, 60, 61, -1, + -1, -1, -1, 66, 67, 68, 69, 70, -1, -1, -1, -1, -1, -1, -1, 78, -1, -1, -1, -1, -1, -1, -1, -1, -1, 88, -1, 90, 91, 92, 93, 94, 95, -1, 97, -1, -1, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, - 113, 114, 115, 3, -1, 118, 84, 85, 86, 87, - -1, -1, 12, -1, -1, -1, -1, 17, 18, -1, + 113, 114, 115, 3, -1, 118, -1, -1, -1, -1, + -1, -1, 12, 13, 14, 15, -1, 17, 18, -1, -1, -1, 22, -1, -1, 25, 26, 27, 28, -1, - -1, -1, 32, -1, -1, -1, -1, -1, -1, 4, - 5, 6, 7, 8, 9, 10, 11, 47, 48, -1, - -1, -1, 17, -1, -1, -1, -1, 22, -1, -1, - 60, 61, -1, -1, 29, -1, 66, 67, 68, 69, + -1, -1, 32, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, 47, 48, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + 60, 61, -1, -1, -1, -1, 66, 67, 68, 69, 70, -1, -1, -1, -1, -1, -1, -1, 78, -1, -1, -1, -1, -1, -1, -1, -1, -1, 88, -1, 90, 91, 92, 93, 94, 95, -1, 97, -1, -1, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, - 110, 111, 112, 113, 114, 115, 3, -1, 118, 84, - 85, 86, 87, -1, -1, 12, -1, -1, -1, -1, + 110, 111, 112, 113, 114, 115, 3, -1, 118, -1, + -1, -1, -1, -1, -1, 12, 13, 14, 15, -1, 17, 18, -1, -1, -1, 22, -1, -1, 25, 26, 27, 28, -1, -1, -1, 32, -1, -1, -1, -1, - -1, -1, 4, 5, 6, 7, 8, 9, 10, 11, - 47, 48, -1, -1, -1, 17, -1, -1, -1, -1, - 22, -1, -1, 60, 61, -1, -1, 29, -1, 66, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + 47, 48, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, 60, 61, -1, -1, -1, -1, 66, 67, 68, 69, 70, -1, -1, -1, -1, -1, -1, -1, 78, -1, -1, -1, -1, -1, -1, -1, -1, -1, 88, -1, 90, 91, 92, 93, 94, 95, -1, 97, -1, -1, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 3, - -1, 118, 84, 85, 86, 87, -1, -1, 12, -1, - -1, -1, -1, 17, 18, -1, -1, -1, 22, -1, + -1, 118, -1, -1, -1, -1, -1, -1, 12, 13, + 14, 15, -1, 17, 18, -1, -1, -1, 22, -1, -1, 25, 26, 27, 28, -1, -1, -1, 32, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 47, 48, -1, -1, -1, -1, -1, @@ -1753,7 +1872,7 @@ static const short yycheck[] = 94, 95, -1, 97, -1, -1, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 3, -1, 118, -1, -1, -1, -1, -1, - -1, 12, -1, -1, -1, -1, 17, 18, -1, -1, + -1, 12, 13, 14, 15, -1, 17, 18, -1, -1, -1, 22, -1, -1, 25, 26, 27, 28, -1, -1, -1, 32, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 47, 48, -1, -1, @@ -1764,7 +1883,7 @@ static const short yycheck[] = 91, 92, 93, 94, 95, -1, 97, -1, -1, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 3, -1, 118, -1, -1, - -1, -1, -1, -1, 12, -1, -1, -1, -1, 17, + -1, -1, -1, -1, 12, 13, 14, 15, -1, 17, 18, -1, -1, -1, 22, -1, -1, 25, 26, 27, 28, -1, -1, -1, 32, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 47, @@ -1775,8 +1894,8 @@ static const short yycheck[] = 88, -1, 90, 91, 92, 93, 94, 95, -1, 97, -1, -1, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 3, -1, - 118, -1, -1, -1, -1, -1, -1, 12, -1, -1, - -1, -1, 17, 18, -1, -1, -1, 22, -1, -1, + 118, -1, -1, -1, -1, -1, -1, 12, 13, 14, + 15, -1, 17, 18, -1, -1, -1, 22, -1, -1, 25, 26, 27, 28, -1, -1, -1, 32, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 47, 48, -1, -1, -1, -1, -1, -1, @@ -1787,7 +1906,7 @@ static const short yycheck[] = 95, -1, 97, -1, -1, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 3, -1, 118, -1, -1, -1, -1, -1, -1, - 12, -1, -1, -1, -1, 17, 18, -1, -1, -1, + 12, 13, 14, 15, -1, 17, 18, -1, -1, -1, 22, -1, -1, 25, 26, 27, 28, -1, -1, -1, 32, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 47, 48, -1, -1, -1, @@ -1798,7 +1917,7 @@ static const short yycheck[] = 92, 93, 94, 95, -1, 97, -1, -1, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 3, -1, 118, -1, -1, -1, - -1, -1, -1, 12, -1, -1, -1, -1, 17, 18, + -1, -1, -1, 12, 13, 14, 15, -1, 17, 18, -1, -1, -1, 22, -1, -1, 25, 26, 27, 28, -1, -1, -1, 32, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 47, 48, @@ -1809,7 +1928,7 @@ static const short yycheck[] = -1, 90, 91, 92, 93, 94, 95, -1, 97, -1, -1, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 3, -1, 118, - -1, -1, -1, -1, -1, -1, 12, -1, -1, -1, + -1, -1, -1, -1, -1, -1, 12, 13, 14, 15, -1, 17, 18, -1, -1, -1, 22, -1, -1, 25, 26, 27, 28, -1, -1, -1, 32, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, @@ -1821,7 +1940,7 @@ static const short yycheck[] = -1, 97, -1, -1, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 3, -1, 118, -1, -1, -1, -1, -1, -1, 12, - -1, -1, -1, -1, 17, 18, -1, -1, -1, 22, + 13, 14, 15, -1, 17, 18, -1, -1, -1, 22, -1, -1, 25, 26, 27, 28, -1, -1, -1, 32, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 47, 48, -1, -1, -1, -1, @@ -1832,7 +1951,7 @@ static const short yycheck[] = 93, 94, 95, -1, 97, -1, -1, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 3, -1, 118, -1, -1, -1, -1, - -1, -1, 12, -1, -1, -1, -1, 17, 18, -1, + -1, -1, 12, 13, 14, 15, -1, 17, 18, -1, -1, -1, 22, -1, -1, 25, 26, 27, 28, -1, -1, -1, 32, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 47, 48, -1, @@ -1843,7 +1962,7 @@ static const short yycheck[] = 90, 91, 92, 93, 94, 95, -1, 97, -1, -1, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 3, -1, 118, -1, - -1, -1, -1, -1, -1, 12, -1, -1, -1, -1, + -1, -1, -1, -1, -1, 12, 13, 14, 15, -1, 17, 18, -1, -1, -1, 22, -1, -1, 25, 26, 27, 28, -1, -1, -1, 32, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, @@ -1854,8 +1973,8 @@ static const short yycheck[] = -1, 88, -1, 90, 91, 92, 93, 94, 95, -1, 97, -1, -1, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 3, - -1, 118, -1, -1, -1, -1, -1, -1, 12, -1, - -1, -1, -1, 17, 18, -1, -1, -1, 22, -1, + -1, 118, -1, -1, -1, -1, -1, -1, 12, 13, + 14, 15, -1, 17, 18, -1, -1, -1, 22, -1, -1, 25, 26, 27, 28, -1, -1, -1, 32, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 47, 48, -1, -1, -1, -1, -1, @@ -1866,7 +1985,7 @@ static const short yycheck[] = 94, 95, -1, 97, -1, -1, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 3, -1, 118, -1, -1, -1, -1, -1, - -1, 12, -1, -1, -1, -1, 17, 18, -1, -1, + -1, 12, 13, 14, 15, -1, 17, 18, -1, -1, -1, 22, -1, -1, 25, 26, 27, 28, -1, -1, -1, 32, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 47, 48, -1, -1, @@ -1877,7 +1996,7 @@ static const short yycheck[] = 91, 92, 93, 94, 95, -1, 97, -1, -1, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 3, -1, 118, -1, -1, - -1, -1, -1, -1, 12, -1, -1, -1, -1, 17, + -1, -1, -1, -1, 12, 13, 14, 15, -1, 17, 18, -1, -1, -1, 22, -1, -1, 25, 26, 27, 28, -1, -1, -1, 32, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 47, @@ -1888,8 +2007,8 @@ static const short yycheck[] = 88, -1, 90, 91, 92, 93, 94, 95, -1, 97, -1, -1, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 3, -1, - 118, -1, -1, -1, -1, -1, -1, 12, -1, -1, - -1, -1, 17, 18, -1, -1, -1, 22, -1, -1, + 118, -1, -1, -1, -1, -1, -1, 12, 13, 14, + 15, -1, 17, 18, -1, -1, -1, 22, -1, -1, 25, 26, 27, 28, -1, -1, -1, 32, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 47, 48, -1, -1, -1, -1, -1, -1, @@ -1900,7 +2019,7 @@ static const short yycheck[] = 95, -1, 97, -1, -1, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 3, -1, 118, -1, -1, -1, -1, -1, -1, - 12, -1, -1, -1, -1, 17, 18, -1, -1, -1, + 12, 13, 14, 15, -1, 17, 18, -1, -1, -1, 22, -1, -1, 25, 26, 27, 28, -1, -1, -1, 32, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 47, 48, -1, -1, -1, @@ -1911,7 +2030,7 @@ static const short yycheck[] = 92, 93, 94, 95, -1, 97, -1, -1, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 3, -1, 118, -1, -1, -1, - -1, -1, -1, 12, -1, -1, -1, -1, 17, 18, + -1, -1, -1, 12, 13, 14, 15, -1, 17, 18, -1, -1, -1, 22, -1, -1, 25, 26, 27, 28, -1, -1, -1, 32, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 47, 48, @@ -1922,7 +2041,7 @@ static const short yycheck[] = -1, 90, 91, 92, 93, 94, 95, -1, 97, -1, -1, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 3, -1, 118, - -1, -1, -1, -1, -1, -1, 12, -1, -1, -1, + -1, -1, -1, -1, -1, -1, 12, 13, 14, 15, -1, 17, 18, -1, -1, -1, 22, -1, -1, 25, 26, 27, 28, -1, -1, -1, 32, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, @@ -1934,7 +2053,7 @@ static const short yycheck[] = -1, 97, -1, -1, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 3, -1, 118, -1, -1, -1, -1, -1, -1, 12, - -1, -1, -1, -1, 17, 18, -1, -1, -1, 22, + 13, 14, 15, -1, 17, 18, -1, -1, -1, 22, -1, -1, 25, 26, 27, 28, -1, -1, -1, 32, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 47, 48, -1, -1, -1, -1, @@ -1945,7 +2064,7 @@ static const short yycheck[] = 93, 94, 95, -1, 97, -1, -1, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 3, -1, 118, -1, -1, -1, -1, - -1, -1, 12, -1, -1, -1, -1, 17, 18, -1, + -1, -1, 12, 13, 14, 15, -1, 17, 18, -1, -1, -1, 22, -1, -1, 25, 26, 27, 28, -1, -1, -1, 32, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 47, 48, -1, @@ -1956,7 +2075,7 @@ static const short yycheck[] = 90, 91, 92, 93, 94, 95, -1, 97, -1, -1, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 3, -1, 118, -1, - -1, -1, -1, -1, -1, 12, -1, -1, -1, -1, + -1, -1, -1, -1, -1, 12, 13, 14, 15, -1, 17, 18, -1, -1, -1, 22, -1, -1, 25, 26, 27, 28, -1, -1, -1, 32, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, @@ -1967,8 +2086,8 @@ static const short yycheck[] = -1, 88, -1, 90, 91, 92, 93, 94, 95, -1, 97, -1, -1, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 3, - -1, 118, -1, -1, -1, -1, -1, -1, 12, -1, - -1, -1, -1, 17, 18, -1, -1, -1, 22, -1, + -1, 118, -1, -1, -1, -1, -1, -1, 12, 13, + 14, 15, -1, 17, 18, -1, -1, -1, 22, -1, -1, 25, 26, 27, 28, -1, -1, -1, 32, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 47, 48, -1, -1, -1, -1, -1, @@ -1979,7 +2098,7 @@ static const short yycheck[] = 94, 95, -1, 97, -1, -1, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 3, -1, 118, -1, -1, -1, -1, -1, - -1, 12, -1, -1, -1, -1, 17, 18, -1, -1, + -1, 12, 13, 14, 15, -1, 17, 18, -1, -1, -1, 22, -1, -1, 25, 26, 27, 28, -1, -1, -1, 32, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 47, 48, -1, -1, @@ -1990,7 +2109,7 @@ static const short yycheck[] = 91, 92, 93, 94, 95, -1, 97, -1, -1, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 3, -1, 118, -1, -1, - -1, -1, -1, -1, 12, -1, -1, -1, -1, 17, + -1, -1, -1, -1, 12, 13, 14, 15, -1, 17, 18, -1, -1, -1, 22, -1, -1, 25, 26, 27, 28, -1, -1, -1, 32, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 47, @@ -2001,8 +2120,8 @@ static const short yycheck[] = 88, -1, 90, 91, 92, 93, 94, 95, -1, 97, -1, -1, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 3, -1, - 118, -1, -1, -1, -1, -1, -1, 12, -1, -1, - -1, -1, 17, 18, -1, -1, -1, 22, -1, -1, + 118, -1, -1, -1, -1, -1, -1, 12, 13, 14, + 15, -1, 17, 18, -1, -1, -1, 22, -1, -1, 25, 26, 27, 28, -1, -1, -1, 32, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 47, 48, -1, -1, -1, -1, -1, -1, @@ -2013,7 +2132,7 @@ static const short yycheck[] = 95, -1, 97, -1, -1, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 3, -1, 118, -1, -1, -1, -1, -1, -1, - 12, -1, -1, -1, -1, 17, 18, -1, -1, -1, + 12, 13, 14, 15, -1, 17, 18, -1, -1, -1, 22, -1, -1, 25, 26, 27, 28, -1, -1, -1, 32, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 47, 48, -1, -1, -1, @@ -2024,7 +2143,7 @@ static const short yycheck[] = 92, 93, 94, 95, -1, 97, -1, -1, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 3, -1, 118, -1, -1, -1, - -1, -1, -1, 12, -1, -1, -1, -1, 17, 18, + -1, -1, -1, 12, 13, 14, 15, -1, 17, 18, -1, -1, -1, 22, -1, -1, 25, 26, 27, 28, -1, -1, -1, 32, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 47, 48, @@ -2035,7 +2154,7 @@ static const short yycheck[] = -1, 90, 91, 92, 93, 94, 95, -1, 97, -1, -1, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 3, -1, 118, - -1, -1, -1, -1, -1, -1, 12, -1, -1, -1, + -1, -1, -1, -1, -1, -1, 12, 13, 14, 15, -1, 17, 18, -1, -1, -1, 22, -1, -1, 25, 26, 27, 28, -1, -1, -1, 32, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, @@ -2046,67 +2165,56 @@ static const short yycheck[] = -1, -1, 88, -1, 90, 91, 92, 93, 94, 95, -1, 97, -1, -1, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, - 3, -1, 118, -1, -1, -1, -1, -1, -1, 12, - -1, -1, -1, -1, 17, 18, -1, -1, -1, 22, - -1, -1, 25, 26, 27, 28, -1, -1, -1, 32, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, 47, 48, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, 60, 61, -1, - -1, -1, -1, 66, 67, 68, 69, 70, -1, -1, - -1, -1, -1, -1, -1, 78, -1, -1, -1, -1, - -1, -1, -1, -1, -1, 88, -1, 90, 91, 92, - 93, 94, 95, -1, 97, -1, -1, 100, 101, 102, - 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, - 113, 114, 115, 3, -1, 118, -1, -1, -1, -1, - -1, -1, 12, -1, -1, -1, -1, 17, 18, -1, - -1, -1, 22, -1, -1, 25, 26, 27, 28, -1, + -1, -1, 118, 3, 4, 5, 6, 7, 8, 9, + 10, 11, 12, 13, 14, 15, -1, 17, 18, 19, + -1, -1, 22, 23, -1, 25, -1, 27, 28, 29, -1, -1, 32, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, 47, 48, -1, + -1, -1, -1, -1, -1, -1, -1, 47, 48, 49, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 60, 61, -1, -1, -1, -1, 66, 67, 68, 69, - 70, -1, -1, -1, -1, -1, -1, -1, 78, -1, - -1, -1, -1, -1, -1, -1, -1, -1, 88, -1, + 70, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, 84, 85, 86, 87, 88, -1, 90, 91, 92, 93, 94, 95, -1, 97, -1, -1, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, - 110, 111, 112, 113, 114, 115, 3, -1, 118, -1, - -1, -1, -1, -1, -1, 12, -1, -1, -1, -1, - 17, 18, -1, -1, -1, 22, -1, -1, 25, 26, + 110, 111, 112, 113, 114, 115, 3, -1, -1, -1, + -1, -1, -1, -1, -1, 12, 13, 14, 15, -1, + 17, 18, 19, 20, 21, 22, 23, -1, 25, 26, 27, 28, -1, -1, -1, 32, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - 47, 48, -1, -1, -1, -1, -1, -1, -1, -1, + 47, 48, 49, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 60, 61, -1, -1, -1, -1, 66, 67, 68, 69, 70, -1, -1, -1, -1, -1, -1, - -1, 78, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 88, -1, 90, 91, 92, 93, 94, 95, -1, 97, -1, -1, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 3, - -1, 118, -1, -1, -1, -1, -1, -1, 12, -1, - -1, -1, -1, 17, 18, -1, -1, -1, 22, -1, - -1, -1, -1, -1, -1, 29, 30, 31, 32, 33, - 34, 35, 36, 37, 38, 39, 40, -1, 42, 43, - 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, - 54, 55, 56, 57, 58, 59, -1, -1, -1, -1, - -1, 65, 66, 67, 68, 69, 70, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, 12, 13, + 14, 15, -1, 17, 18, 19, -1, -1, 22, 23, + -1, 25, -1, 27, 28, -1, -1, -1, 32, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + 44, -1, -1, 47, 48, 49, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, 60, 61, -1, -1, + -1, -1, 66, 67, 68, 69, 70, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, 87, 88, -1, 90, 91, 92, 93, + -1, -1, -1, -1, 88, 89, 90, 91, 92, 93, 94, 95, -1, 97, -1, -1, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, - 114, 115, 3, 4, 5, 6, 7, 8, 9, 10, - 11, 12, -1, -1, -1, -1, 17, 18, 19, -1, - -1, 22, 23, -1, 25, -1, 27, 28, 29, -1, + 114, 115, 3, -1, -1, -1, -1, -1, -1, -1, + -1, 12, 13, 14, 15, -1, 17, 18, 19, -1, + -1, 22, 23, -1, 25, -1, 27, 28, -1, -1, -1, 32, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, 47, 48, 49, -1, + -1, -1, -1, 44, -1, -1, 47, 48, 49, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 60, - 61, -1, -1, -1, -1, 66, 67, 68, 69, 70, + 61, -1, -1, 64, -1, 66, 67, 68, 69, 70, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, 84, 85, 86, 87, 88, -1, 90, + -1, -1, -1, -1, -1, -1, -1, 88, -1, 90, 91, 92, 93, 94, 95, -1, 97, -1, -1, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 3, -1, -1, -1, -1, - -1, -1, -1, -1, 12, -1, -1, -1, -1, 17, - 18, 19, 20, 21, 22, 23, -1, 25, 26, 27, + -1, -1, -1, -1, 12, 13, 14, 15, -1, 17, + 18, 19, -1, -1, 22, 23, 24, 25, -1, 27, 28, -1, -1, -1, 32, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, 47, + -1, -1, -1, -1, -1, -1, 44, -1, -1, 47, 48, 49, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 60, 61, -1, -1, -1, -1, 66, 67, 68, 69, 70, -1, -1, -1, -1, -1, -1, -1, @@ -2114,33 +2222,33 @@ static const short yycheck[] = 88, -1, 90, 91, 92, 93, 94, 95, -1, 97, -1, -1, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 3, -1, - -1, -1, -1, -1, -1, -1, -1, 12, -1, -1, - -1, -1, 17, 18, 19, -1, -1, 22, 23, -1, + -1, -1, -1, -1, -1, -1, -1, 12, 13, 14, + 15, -1, 17, 18, 19, -1, -1, 22, 23, -1, 25, -1, 27, 28, -1, -1, -1, 32, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 44, -1, -1, 47, 48, 49, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 60, 61, -1, -1, -1, -1, 66, 67, 68, 69, 70, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, 88, 89, 90, 91, 92, 93, 94, + -1, -1, -1, 88, -1, 90, 91, 92, 93, 94, 95, -1, 97, -1, -1, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 3, -1, -1, -1, -1, -1, -1, -1, -1, - 12, -1, -1, -1, -1, 17, 18, 19, -1, -1, + 12, 13, 14, 15, -1, 17, 18, 19, -1, -1, 22, 23, -1, 25, -1, 27, 28, -1, -1, -1, 32, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, 44, -1, -1, 47, 48, 49, -1, -1, + -1, -1, -1, -1, -1, 47, 48, 49, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 60, 61, - -1, -1, 64, -1, 66, 67, 68, 69, 70, -1, + -1, -1, -1, -1, 66, 67, 68, 69, 70, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, 88, -1, 90, 91, + -1, -1, -1, -1, -1, -1, 88, 89, 90, 91, 92, 93, 94, 95, -1, 97, -1, -1, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 3, -1, -1, -1, -1, -1, - -1, -1, -1, 12, -1, -1, -1, -1, 17, 18, - 19, -1, -1, 22, 23, 24, 25, -1, 27, 28, + -1, -1, -1, 12, 13, 14, 15, -1, 17, 18, + 19, -1, -1, 22, 23, -1, 25, -1, 27, 28, -1, -1, -1, 32, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, 44, -1, -1, 47, 48, + -1, -1, -1, -1, -1, -1, -1, -1, 47, 48, 49, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 60, 61, -1, -1, -1, -1, 66, 67, 68, 69, 70, -1, -1, -1, -1, -1, -1, -1, -1, @@ -2148,151 +2256,128 @@ static const short yycheck[] = -1, 90, 91, 92, 93, 94, 95, -1, 97, -1, -1, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 3, -1, -1, - -1, -1, -1, -1, -1, -1, 12, -1, -1, -1, - -1, 17, 18, 19, -1, -1, 22, 23, -1, 25, + -1, -1, -1, -1, -1, -1, 12, 13, 14, 15, + -1, 17, 18, -1, -1, -1, 22, -1, -1, 25, -1, 27, 28, -1, -1, -1, 32, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, 44, -1, - -1, 47, 48, 49, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, 47, 48, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 60, 61, -1, -1, -1, -1, 66, 67, 68, 69, 70, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, 78, -1, -1, -1, -1, -1, -1, -1, -1, -1, 88, -1, 90, 91, 92, 93, 94, 95, -1, 97, -1, -1, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 3, -1, -1, -1, -1, -1, -1, -1, -1, 12, - -1, -1, -1, -1, 17, 18, 19, -1, -1, 22, - 23, -1, 25, -1, 27, 28, -1, -1, -1, 32, + 13, 14, 15, -1, 17, 18, -1, -1, -1, 22, + -1, -1, -1, -1, -1, -1, 29, -1, -1, 32, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, 49, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, 47, 48, 49, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, 60, 61, -1, -1, -1, -1, 66, 67, 68, 69, 70, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, 88, 89, 90, 91, 92, + -1, -1, -1, -1, 87, 88, -1, 90, 91, 92, 93, 94, 95, -1, 97, -1, -1, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 3, -1, -1, -1, -1, -1, -1, - -1, -1, 12, -1, -1, -1, -1, 17, 18, 19, - -1, -1, 22, 23, -1, 25, -1, 27, 28, -1, - -1, -1, 32, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, 47, 48, 49, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - 60, 61, -1, -1, -1, -1, 66, 67, 68, 69, + -1, -1, 12, 13, 14, 15, -1, 17, 18, -1, + -1, 33, 22, -1, -1, -1, -1, -1, -1, 29, + 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, + 52, 53, 54, 55, 56, 57, 58, 59, -1, 49, + -1, -1, -1, 65, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, 66, 67, 68, 69, 70, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, 88, -1, + -1, -1, -1, -1, -1, -1, -1, 87, 88, -1, 90, 91, 92, 93, 94, 95, -1, 97, -1, -1, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 3, -1, -1, -1, - -1, -1, -1, -1, -1, 12, -1, -1, -1, -1, - 17, 18, -1, -1, -1, 22, -1, -1, 25, -1, - 27, 28, -1, -1, -1, 32, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - 47, 48, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, 60, 61, -1, -1, -1, -1, 66, + -1, -1, -1, -1, -1, 12, 13, 14, 15, -1, + 17, 18, -1, -1, -1, 22, -1, -1, 33, -1, + -1, -1, -1, -1, -1, 32, 33, 42, 43, 44, + 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, + 55, 56, 57, 58, 59, -1, -1, -1, -1, -1, + 65, -1, -1, -1, -1, -1, -1, -1, -1, 66, 67, 68, 69, 70, -1, -1, -1, -1, -1, -1, - -1, 78, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 88, -1, 90, 91, 92, 93, 94, 95, -1, 97, -1, -1, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 3, - -1, -1, -1, -1, -1, -1, -1, -1, 12, -1, - -1, -1, -1, 17, 18, -1, -1, -1, 22, -1, - -1, -1, -1, -1, -1, 29, -1, -1, 32, -1, - -1, -1, -1, 4, 5, 6, 7, 8, 9, 10, - 11, -1, -1, -1, -1, 49, 17, -1, -1, -1, - -1, 22, -1, -1, -1, 26, 27, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, 12, 13, + 14, 15, -1, 17, 18, -1, -1, -1, 22, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, 35, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, 49, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 66, 67, 68, 69, 70, -1, -1, -1, - -1, -1, -1, 44, -1, -1, -1, -1, -1, -1, - -1, -1, -1, 87, 88, -1, 90, 91, 92, 93, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, 88, -1, 90, 91, 92, 93, 94, 95, -1, 97, -1, -1, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, - 114, 115, 3, 84, 85, 86, -1, -1, -1, -1, - -1, 12, -1, -1, -1, -1, 17, 18, 31, -1, - -1, 22, -1, -1, -1, -1, -1, -1, 29, 42, - 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, - 53, 54, 55, 56, 57, 58, 59, -1, 49, -1, - -1, -1, 65, -1, -1, -1, -1, -1, -1, -1, + 114, 115, 3, -1, -1, -1, -1, -1, -1, -1, + -1, 12, 13, 14, 15, 33, 17, 18, -1, -1, + -1, 22, -1, -1, 42, 43, 44, 45, 46, 47, + 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, + 58, 59, -1, -1, -1, -1, -1, 65, 49, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 66, 67, 68, 69, 70, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, 87, 88, -1, 90, + -1, -1, -1, -1, -1, -1, -1, 88, -1, 90, 91, 92, 93, 94, 95, -1, 97, -1, -1, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 3, -1, -1, -1, -1, - -1, -1, -1, -1, 12, -1, -1, -1, -1, 17, - 18, -1, -1, -1, 22, -1, -1, 33, -1, -1, - -1, -1, -1, -1, 32, 33, 42, 43, 44, 45, - 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, - 56, 57, 58, 59, -1, -1, -1, -1, -1, 65, + -1, -1, -1, -1, 12, 13, 14, 15, -1, 17, + 18, -1, -1, -1, 22, -1, -1, 34, -1, -1, + -1, -1, -1, -1, 32, 42, 43, 44, 45, 46, + 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, + 57, 58, 59, -1, -1, -1, -1, -1, 65, -1, -1, -1, -1, -1, -1, -1, -1, -1, 66, 67, 68, 69, 70, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 88, -1, 90, 91, 92, 93, 94, 95, -1, 97, -1, -1, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 3, -1, - -1, -1, -1, -1, -1, -1, -1, 12, -1, 33, - -1, -1, 17, 18, -1, -1, -1, 22, 42, 43, + -1, -1, -1, -1, -1, -1, -1, 12, 13, 14, + 15, -1, 17, 18, -1, -1, -1, 22, -1, -1, + -1, 35, -1, -1, -1, -1, -1, 32, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, -1, -1, -1, -1, - -1, 65, -1, -1, 49, -1, -1, -1, -1, -1, + -1, 65, -1, -1, -1, -1, -1, 3, -1, -1, + -1, 66, 67, 68, 69, 70, 12, 13, 14, 15, + -1, 17, 18, -1, -1, -1, 22, -1, -1, -1, + -1, -1, -1, 88, -1, 90, 91, 92, 93, 94, + 95, -1, 97, -1, -1, 100, 101, 102, 103, 104, + 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, + 115, -1, -1, -1, -1, -1, -1, -1, 64, -1, + 66, 67, 68, 69, 70, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, 88, -1, 90, 91, 92, 93, 94, 95, + -1, 97, -1, -1, 100, 101, 102, 103, 104, 105, + 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, + 3, -1, -1, -1, -1, -1, -1, -1, -1, 12, + 13, 14, 15, 35, 17, 18, -1, -1, -1, 22, + 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, + 52, 53, 54, 55, 56, 57, 58, 59, -1, -1, + -1, -1, -1, 65, -1, -1, 49, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, 3, + -1, -1, -1, 66, 67, 68, 69, 70, 12, 13, + 14, 15, -1, 17, 18, -1, -1, -1, 22, -1, + -1, -1, -1, -1, -1, 88, -1, 90, 91, 92, + 93, 94, 95, -1, 97, -1, -1, 100, 101, 102, + 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, + 113, 114, 115, -1, -1, -1, -1, -1, 3, -1, + 64, -1, 66, 67, 68, 69, 70, 12, 13, 14, + 15, -1, 17, 18, -1, -1, -1, 22, -1, -1, + -1, -1, -1, -1, 88, -1, 90, 91, 92, 93, + 94, 95, -1, 97, -1, -1, 100, 101, 102, 103, + 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, + 114, 115, -1, -1, -1, -1, -1, -1, -1, -1, -1, 66, 67, 68, 69, 70, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 88, -1, 90, 91, 92, 93, 94, 95, -1, 97, -1, -1, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, - 115, 3, -1, -1, -1, -1, -1, -1, -1, -1, - 12, -1, -1, -1, -1, 17, 18, -1, -1, -1, - 22, -1, 33, -1, -1, -1, -1, -1, -1, -1, - 32, 42, 43, 44, 45, 46, 47, 48, 49, 50, - 51, 52, 53, 54, 55, 56, 57, 58, 59, -1, - -1, -1, -1, -1, 65, -1, -1, -1, -1, -1, - -1, -1, -1, -1, 66, 67, 68, 69, 70, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, 88, -1, 90, 91, - 92, 93, 94, 95, -1, 97, -1, -1, 100, 101, - 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, - 112, 113, 114, 115, 3, -1, -1, -1, -1, -1, - -1, -1, -1, 12, -1, -1, -1, -1, 17, 18, - -1, -1, -1, 22, -1, -1, 34, -1, -1, -1, - -1, -1, -1, 32, 42, 43, 44, 45, 46, 47, - 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, - 58, 59, -1, -1, -1, -1, -1, 65, -1, -1, - -1, -1, -1, 3, -1, -1, -1, 66, 67, 68, - 69, 70, 12, -1, -1, -1, -1, 17, 18, -1, - -1, -1, 22, -1, -1, -1, -1, -1, -1, 88, - -1, 90, 91, 92, 93, 94, 95, -1, 97, -1, - -1, 100, 101, 102, 103, 104, 105, 106, 107, 108, - 109, 110, 111, 112, 113, 114, 115, -1, -1, -1, - -1, -1, -1, -1, 64, -1, 66, 67, 68, 69, - 70, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, 88, -1, - 90, 91, 92, 93, 94, 95, -1, 97, -1, -1, - 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, - 110, 111, 112, 113, 114, 115, 3, -1, -1, -1, - -1, -1, -1, -1, -1, 12, -1, -1, -1, 35, - 17, 18, -1, -1, -1, 22, 42, 43, 44, 45, - 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, - 56, 57, 58, 59, -1, -1, -1, -1, -1, 65, - -1, -1, 49, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, 3, -1, -1, -1, 66, - 67, 68, 69, 70, 12, -1, -1, -1, -1, 17, - 18, -1, -1, -1, 22, -1, -1, -1, -1, -1, - -1, 88, -1, 90, 91, 92, 93, 94, 95, -1, - 97, -1, -1, 100, 101, 102, 103, 104, 105, 106, - 107, 108, 109, 110, 111, 112, 113, 114, 115, -1, - -1, -1, -1, -1, 3, -1, 64, -1, 66, 67, - 68, 69, 70, 12, -1, -1, -1, -1, 17, 18, - -1, -1, -1, 22, -1, -1, -1, -1, -1, -1, - 88, -1, 90, 91, 92, 93, 94, 95, -1, 97, - -1, -1, 100, 101, 102, 103, 104, 105, 106, 107, - 108, 109, 110, 111, 112, 113, 114, 115, -1, -1, - -1, -1, -1, -1, -1, -1, -1, 66, 67, 68, - 69, 70, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, 88, - -1, 90, 91, 92, 93, 94, 95, -1, 97, -1, - -1, 100, 101, 102, 103, 104, 105, 106, 107, 108, - 109, 110, 111, 112, 113, 114, 115, 35, -1, -1, - -1, -1, -1, -1, 42, 43, 44, 45, 46, 47, + 115, 39, -1, -1, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, - 58, 59, -1, -1, -1, 39, -1, 65, 42, 43, + 58, 59, -1, -1, -1, -1, -1, 65, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, -1, -1, -1, -1, -1, 65, 42, 43, 44, 45, 46, 47, 48, 49, @@ -2302,9 +2387,7 @@ static const short yycheck[] = 56, 57, 58, 59, -1, -1, -1, -1, -1, 65, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, -1, -1, - -1, -1, -1, 65, 42, 43, 44, 45, 46, 47, - 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, - 58, 59, -1, -1, -1, -1, -1, 65 + -1, -1, -1, 65 }; /* YYSTOS[STATE-NUM] -- The (internal number of the) accessing @@ -2321,90 +2404,91 @@ static const unsigned short yystos[] = 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 79, 80, 81, 82, 151, 152, 153, 154, 156, 157, 158, 84, 85, 121, 171, 173, 201, 202, - 210, 219, 228, 229, 3, 12, 17, 18, 22, 66, - 67, 68, 69, 70, 88, 90, 91, 92, 93, 94, - 95, 97, 100, 101, 102, 103, 104, 105, 106, 107, - 108, 109, 110, 111, 112, 113, 114, 115, 143, 260, - 272, 143, 143, 230, 3, 6, 10, 12, 247, 249, - 26, 123, 242, 44, 280, 281, 22, 83, 89, 123, - 199, 0, 148, 49, 143, 176, 211, 236, 237, 238, - 239, 177, 4, 5, 6, 9, 22, 184, 6, 181, - 187, 200, 125, 189, 32, 32, 36, 36, 143, 143, - 143, 34, 192, 0, 3, 4, 5, 6, 7, 8, - 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, - 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, - 29, 31, 32, 33, 34, 35, 36, 37, 38, 39, - 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, - 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, - 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, - 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, - 81, 83, 84, 85, 86, 87, 88, 89, 90, 91, - 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, - 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, - 112, 113, 114, 115, 116, 119, 121, 122, 123, 124, - 125, 143, 144, 159, 30, 3, 12, 17, 18, 22, - 66, 67, 68, 69, 70, 88, 90, 91, 92, 93, - 94, 95, 97, 100, 101, 102, 103, 104, 105, 106, - 107, 108, 109, 110, 111, 112, 113, 114, 115, 144, - 162, 163, 162, 26, 119, 155, 144, 25, 27, 28, - 32, 47, 48, 60, 61, 78, 142, 143, 164, 224, - 143, 230, 143, 230, 173, 31, 143, 35, 233, 233, - 233, 233, 23, 31, 36, 23, 171, 123, 189, 29, - 87, 240, 38, 234, 32, 143, 124, 239, 6, 185, - 6, 9, 186, 184, 36, 196, 32, 31, 17, 175, - 203, 205, 207, 208, 209, 210, 207, 143, 220, 221, - 92, 93, 94, 95, 96, 98, 99, 251, 252, 253, - 266, 269, 275, 276, 277, 193, 211, 237, 31, 26, - 118, 164, 190, 162, 144, 26, 27, 32, 44, 226, - 164, 32, 143, 164, 32, 42, 43, 44, 45, 46, - 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, - 57, 58, 59, 65, 141, 35, 36, 215, 215, 31, - 214, 215, 214, 40, 251, 32, 31, 31, 19, 23, - 25, 27, 29, 32, 87, 124, 142, 211, 222, 223, - 224, 235, 236, 237, 234, 6, 0, 3, 4, 5, - 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, - 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, - 26, 27, 28, 29, 31, 32, 33, 34, 35, 38, - 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, - 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, - 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, - 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, - 79, 81, 83, 84, 85, 86, 87, 88, 89, 90, - 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, - 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, - 111, 112, 113, 114, 115, 116, 119, 121, 122, 123, - 124, 125, 145, 196, 197, 198, 190, 236, 32, 33, - 34, 34, 33, 34, 40, 34, 231, 211, 256, 222, - 245, 270, 271, 272, 280, 211, 143, 278, 279, 211, - 267, 271, 37, 252, 222, 34, 32, 26, 177, 225, - 226, 22, 33, 143, 164, 165, 166, 164, 164, 32, - 121, 172, 173, 174, 175, 216, 219, 228, 229, 211, - 211, 19, 20, 21, 168, 169, 190, 222, 37, 13, - 14, 15, 16, 17, 33, 243, 244, 246, 248, 249, - 250, 17, 22, 175, 222, 222, 39, 65, 141, 39, - 32, 143, 37, 198, 33, 32, 207, 234, 64, 209, - 234, 64, 222, 221, 37, 40, 31, 40, 31, 32, - 24, 40, 32, 31, 34, 32, 31, 31, 211, 64, - 143, 160, 161, 236, 33, 33, 33, 34, 35, 25, - 174, 35, 232, 37, 172, 233, 233, 31, 35, 33, - 34, 245, 33, 33, 222, 222, 236, 32, 33, 236, - 33, 34, 33, 33, 19, 89, 90, 109, 222, 255, - 257, 258, 259, 260, 281, 270, 211, 280, 193, 279, - 17, 193, 268, 33, 34, 164, 164, 34, 25, 35, - 34, 217, 232, 215, 215, 246, 35, 244, 246, 40, - 222, 35, 143, 207, 33, 234, 64, 234, 234, 109, - 257, 17, 18, 32, 260, 263, 32, 32, 255, 34, - 273, 211, 33, 33, 162, 64, 143, 25, 35, 32, - 211, 218, 31, 217, 246, 280, 168, 222, 33, 33, - 33, 268, 32, 222, 245, 64, 270, 274, 33, 31, - 97, 33, 35, 25, 232, 34, 31, 64, 32, 33, - 234, 33, 245, 34, 34, 261, 33, 34, 18, 271, - 272, 32, 34, 211, 24, 207, 32, 97, 32, 222, - 211, 254, 255, 256, 262, 281, 33, 270, 25, 25, - 232, 33, 33, 207, 263, 264, 265, 270, 33, 34, - 255, 34, 33, 35, 33, 33, 32, 33, 34, 254, - 25, 246, 32, 234, 245, 33, 270, 33, 207, 32, - 33, 264, 234, 33, 33 + 210, 219, 228, 229, 3, 12, 13, 14, 15, 17, + 18, 22, 66, 67, 68, 69, 70, 88, 90, 91, + 92, 93, 94, 95, 97, 100, 101, 102, 103, 104, + 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, + 115, 143, 260, 272, 143, 143, 230, 3, 6, 10, + 12, 13, 23, 247, 249, 26, 123, 242, 44, 280, + 281, 22, 83, 89, 123, 199, 0, 148, 49, 143, + 176, 211, 236, 237, 238, 239, 177, 4, 5, 6, + 9, 22, 184, 6, 181, 187, 200, 125, 189, 32, + 32, 36, 36, 143, 143, 143, 34, 192, 0, 3, + 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, + 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, + 24, 25, 26, 27, 28, 29, 31, 32, 33, 34, + 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, + 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, + 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, + 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, + 75, 76, 77, 78, 79, 81, 83, 84, 85, 86, + 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, + 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, + 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, + 119, 121, 122, 123, 124, 125, 143, 144, 159, 30, + 3, 12, 13, 14, 15, 17, 18, 22, 66, 67, + 68, 69, 70, 88, 90, 91, 92, 93, 94, 95, + 97, 100, 101, 102, 103, 104, 105, 106, 107, 108, + 109, 110, 111, 112, 113, 114, 115, 144, 162, 163, + 162, 26, 119, 155, 144, 25, 27, 28, 32, 47, + 48, 60, 61, 78, 142, 143, 164, 224, 143, 230, + 143, 230, 173, 31, 143, 35, 233, 233, 233, 233, + 40, 23, 31, 36, 23, 171, 123, 189, 29, 87, + 240, 38, 234, 32, 143, 124, 239, 6, 185, 6, + 9, 186, 184, 36, 196, 32, 31, 17, 175, 203, + 205, 207, 208, 209, 210, 207, 143, 220, 221, 92, + 93, 94, 95, 96, 98, 99, 251, 252, 253, 266, + 269, 275, 276, 277, 193, 211, 237, 189, 26, 118, + 164, 190, 162, 144, 26, 27, 32, 44, 226, 164, + 32, 143, 164, 32, 42, 43, 44, 45, 46, 47, + 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, + 58, 59, 65, 141, 35, 36, 215, 215, 31, 214, + 215, 214, 19, 20, 21, 23, 25, 27, 32, 142, + 168, 169, 190, 211, 222, 223, 224, 40, 251, 32, + 31, 31, 19, 29, 87, 124, 222, 235, 236, 237, + 234, 6, 0, 3, 4, 5, 6, 7, 8, 9, + 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, + 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, + 31, 32, 33, 34, 35, 38, 39, 40, 41, 42, + 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, + 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, + 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, + 73, 74, 75, 76, 77, 78, 79, 81, 83, 84, + 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, + 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, + 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, + 115, 116, 119, 121, 122, 123, 124, 125, 145, 196, + 197, 198, 190, 236, 32, 33, 34, 34, 33, 34, + 40, 34, 231, 211, 256, 222, 245, 270, 271, 272, + 280, 211, 143, 278, 279, 211, 267, 271, 37, 252, + 222, 34, 31, 32, 26, 177, 225, 226, 22, 33, + 143, 119, 164, 165, 166, 164, 164, 32, 121, 172, + 173, 174, 175, 216, 219, 228, 229, 211, 211, 17, + 22, 175, 222, 222, 31, 65, 141, 168, 37, 14, + 15, 16, 17, 33, 243, 244, 246, 248, 249, 250, + 39, 39, 32, 143, 37, 198, 33, 32, 234, 207, + 234, 64, 209, 234, 64, 222, 221, 37, 40, 31, + 40, 31, 32, 24, 40, 32, 31, 34, 32, 31, + 31, 211, 64, 143, 160, 161, 236, 33, 33, 33, + 34, 35, 25, 174, 35, 232, 37, 172, 233, 233, + 33, 33, 222, 222, 31, 35, 33, 34, 245, 236, + 32, 33, 236, 33, 34, 33, 33, 19, 89, 90, + 109, 222, 255, 257, 258, 259, 260, 281, 270, 211, + 280, 193, 279, 17, 193, 268, 33, 34, 164, 164, + 34, 25, 35, 34, 217, 232, 215, 215, 222, 35, + 246, 35, 244, 246, 40, 143, 207, 33, 234, 64, + 234, 234, 109, 257, 17, 18, 32, 260, 263, 32, + 32, 255, 34, 273, 211, 33, 33, 162, 64, 143, + 25, 35, 32, 211, 218, 232, 31, 217, 222, 246, + 280, 168, 33, 33, 33, 268, 32, 222, 245, 64, + 270, 274, 33, 31, 97, 33, 35, 25, 232, 34, + 31, 64, 32, 33, 234, 33, 245, 34, 34, 261, + 33, 34, 18, 271, 272, 32, 34, 211, 232, 24, + 207, 32, 97, 32, 222, 211, 254, 255, 256, 262, + 281, 33, 270, 25, 25, 232, 33, 33, 207, 263, + 264, 265, 270, 33, 34, 255, 34, 33, 35, 33, + 33, 32, 33, 34, 254, 25, 246, 32, 234, 245, + 33, 270, 33, 207, 32, 33, 264, 234, 33, 33 }; /* YYR1[YYN] -- Symbol number of symbol that rule YYN derives. */ @@ -2414,7 +2498,7 @@ static const unsigned short yyr1[] = 141, 141, 141, 141, 141, 141, 141, 141, 141, 141, 142, 142, 142, 142, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, - 143, 143, 143, 144, 144, 144, 144, 144, 144, 144, + 143, 143, 143, 143, 143, 143, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, @@ -2426,7 +2510,7 @@ static const unsigned short yyr1[] = 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, - 144, 145, 145, 145, 145, 145, 145, 145, 145, 145, + 144, 144, 144, 144, 145, 145, 145, 145, 145, 145, 145, 145, 145, 145, 145, 145, 145, 145, 145, 145, 145, 145, 145, 145, 145, 145, 145, 145, 145, 145, 145, 145, 145, 145, 145, 145, 145, 145, 145, 145, @@ -2437,43 +2521,43 @@ static const unsigned short yyr1[] = 145, 145, 145, 145, 145, 145, 145, 145, 145, 145, 145, 145, 145, 145, 145, 145, 145, 145, 145, 145, 145, 145, 145, 145, 145, 145, 145, 145, 145, 145, - 145, 145, 145, 145, 145, 145, 145, 146, 146, 147, - 147, 148, 148, 148, 148, 148, 148, 148, 148, 148, - 148, 148, 148, 148, 148, 149, 150, 150, 151, 151, - 151, 151, 151, 151, 151, 151, 152, 152, 153, 153, - 154, 154, 154, 155, 155, 156, 156, 157, 157, 157, - 158, 158, 159, 159, 159, 159, 160, 160, 160, 160, - 161, 161, 162, 162, 163, 163, 164, 164, 164, 164, - 164, 164, 164, 164, 164, 164, 164, 165, 165, 166, - 166, 167, 168, 168, 168, 169, 169, 169, 170, 170, - 171, 171, 172, 172, 173, 173, 173, 173, 173, 174, - 174, 174, 174, 174, 175, 175, 175, 176, 176, 177, - 177, 178, 178, 178, 179, 179, 179, 179, 180, 180, - 180, 181, 181, 182, 182, 182, 183, 183, 183, 183, - 184, 184, 184, 184, 184, 184, 185, 185, 186, 186, - 186, 186, 187, 187, 187, 188, 188, 189, 189, 190, - 190, 191, 192, 192, 193, 193, 194, 195, 195, 195, - 195, 195, 195, 196, 197, 197, 198, 198, 199, 199, - 200, 200, 201, 201, 202, 202, 202, 202, 203, 203, - 204, 205, 206, 207, 207, 207, 208, 208, 209, 209, - 209, 210, 210, 211, 211, 212, 213, 214, 214, 215, - 216, 216, 217, 217, 218, 218, 219, 220, 220, 221, - 221, 222, 222, 222, 222, 222, 222, 223, 223, 223, - 223, 223, 223, 224, 224, 225, 225, 226, 226, 226, - 227, 228, 229, 230, 230, 231, 231, 232, 232, 232, - 232, 233, 233, 234, 234, 234, 235, 235, 235, 235, - 236, 236, 237, 237, 238, 238, 239, 239, 240, 240, - 241, 241, 242, 242, 242, 243, 243, 244, 244, 245, - 246, 247, 248, 248, 249, 249, 249, 249, 250, 250, - 250, 250, 250, 251, 251, 252, 252, 252, 252, 252, - 253, 253, 254, 254, 254, 255, 255, 255, 255, 255, - 255, 256, 256, 257, 258, 258, 259, 260, 260, 260, - 260, 260, 260, 260, 260, 260, 260, 261, 261, 262, - 262, 263, 263, 264, 264, 265, 265, 266, 267, 267, - 268, 268, 268, 269, 270, 270, 270, 271, 271, 272, - 272, 272, 272, 272, 272, 272, 272, 273, 273, 274, - 274, 275, 276, 276, 277, 278, 278, 279, 280, 280, - 281 + 145, 145, 145, 145, 145, 145, 145, 145, 145, 145, + 146, 146, 147, 147, 148, 148, 148, 148, 148, 148, + 148, 148, 148, 148, 148, 148, 148, 148, 149, 150, + 150, 151, 151, 151, 151, 151, 151, 151, 151, 152, + 152, 153, 153, 154, 154, 154, 155, 155, 156, 156, + 157, 157, 157, 158, 158, 159, 159, 159, 159, 160, + 160, 160, 160, 161, 161, 162, 162, 163, 163, 164, + 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, + 165, 165, 166, 166, 166, 167, 167, 168, 168, 168, + 169, 169, 169, 170, 170, 171, 171, 172, 172, 173, + 173, 173, 173, 173, 174, 174, 174, 174, 174, 175, + 175, 175, 176, 176, 177, 177, 178, 178, 178, 179, + 179, 179, 179, 180, 180, 180, 181, 181, 182, 182, + 182, 183, 183, 183, 183, 184, 184, 184, 184, 184, + 184, 185, 185, 186, 186, 186, 186, 187, 187, 187, + 188, 188, 189, 189, 190, 190, 191, 192, 192, 193, + 193, 194, 195, 195, 195, 195, 195, 195, 196, 197, + 197, 198, 198, 199, 199, 200, 200, 201, 201, 202, + 202, 202, 202, 203, 203, 204, 205, 206, 207, 207, + 207, 208, 208, 209, 209, 209, 210, 210, 211, 211, + 212, 213, 214, 214, 215, 216, 216, 217, 217, 218, + 218, 218, 218, 219, 220, 220, 221, 221, 222, 222, + 222, 222, 222, 222, 223, 223, 223, 223, 223, 223, + 224, 224, 225, 225, 226, 226, 226, 227, 228, 229, + 230, 230, 231, 231, 232, 232, 232, 232, 233, 233, + 234, 234, 234, 235, 235, 235, 235, 236, 236, 237, + 237, 238, 238, 239, 239, 240, 240, 241, 241, 242, + 242, 242, 243, 243, 244, 244, 245, 246, 247, 248, + 248, 249, 249, 249, 249, 249, 250, 250, 250, 250, + 251, 251, 252, 252, 252, 252, 252, 253, 253, 254, + 254, 254, 255, 255, 255, 255, 255, 255, 256, 256, + 257, 258, 258, 259, 260, 260, 260, 260, 260, 260, + 260, 260, 260, 260, 261, 261, 262, 262, 263, 263, + 264, 264, 265, 265, 266, 267, 267, 268, 268, 268, + 269, 270, 270, 270, 271, 271, 272, 272, 272, 272, + 272, 272, 272, 272, 273, 273, 274, 274, 275, 276, + 276, 277, 278, 278, 279, 280, 280, 281 }; /* YYR2[YYN] -- Number of symbols on the right hand side of rule YYN. */ @@ -2506,43 +2590,43 @@ static const unsigned char yyr2[] = 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, - 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, - 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, - 1, 1, 1, 1, 1, 3, 2, 3, 2, 2, - 1, 2, 2, 2, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, - 1, 1, 2, 6, 2, 2, 0, 1, 1, 3, - 1, 3, 0, 1, 1, 2, 3, 2, 3, 5, - 2, 4, 1, 1, 1, 1, 4, 0, 1, 1, - 3, 6, 1, 1, 1, 1, 1, 1, 3, 4, - 1, 2, 1, 2, 1, 1, 2, 4, 4, 1, - 1, 1, 3, 3, 1, 2, 2, 1, 1, 1, - 1, 2, 2, 2, 1, 1, 1, 1, 1, 1, - 2, 1, 1, 1, 1, 2, 1, 1, 2, 2, - 0, 1, 1, 2, 1, 2, 0, 1, 0, 1, - 1, 2, 0, 1, 2, 3, 4, 0, 4, 1, - 2, 4, 0, 2, 1, 3, 3, 1, 2, 2, - 3, 1, 2, 3, 1, 2, 1, 1, 1, 2, - 1, 1, 5, 7, 5, 7, 13, 16, 5, 7, - 6, 5, 1, 0, 1, 1, 1, 3, 1, 1, - 2, 1, 2, 3, 2, 4, 4, 1, 1, 3, - 4, 5, 0, 2, 2, 4, 5, 1, 3, 1, - 3, 1, 4, 3, 3, 2, 5, 1, 1, 1, - 1, 1, 1, 4, 2, 1, 2, 2, 1, 1, - 2, 2, 2, 0, 1, 0, 1, 0, 2, 7, - 9, 0, 7, 0, 3, 3, 0, 1, 1, 1, - 0, 1, 1, 2, 1, 2, 1, 2, 1, 1, - 4, 5, 7, 8, 13, 1, 3, 2, 4, 2, + 0, 1, 1, 2, 1, 1, 1, 1, 1, 1, + 1, 1, 1, 1, 1, 1, 1, 1, 3, 2, + 3, 2, 2, 1, 2, 2, 2, 1, 2, 1, + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, + 1, 1, 1, 1, 1, 2, 6, 2, 2, 0, + 1, 1, 3, 1, 3, 0, 1, 1, 2, 3, + 2, 3, 5, 2, 4, 1, 1, 1, 1, 4, + 0, 1, 1, 1, 3, 6, 5, 1, 1, 1, + 1, 1, 1, 3, 4, 1, 2, 1, 2, 1, + 1, 2, 4, 4, 1, 1, 1, 3, 3, 1, + 2, 2, 1, 1, 1, 1, 2, 2, 2, 1, + 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, + 2, 1, 1, 2, 2, 0, 1, 1, 2, 1, + 2, 0, 1, 0, 1, 1, 2, 0, 1, 2, + 3, 4, 0, 4, 1, 2, 5, 0, 2, 1, + 3, 3, 1, 2, 2, 3, 1, 2, 3, 1, + 2, 1, 1, 1, 2, 1, 1, 5, 7, 5, + 7, 13, 16, 5, 7, 6, 5, 1, 0, 1, + 1, 1, 3, 1, 1, 3, 1, 2, 3, 2, + 4, 4, 1, 1, 3, 4, 5, 0, 2, 2, + 4, 1, 3, 5, 1, 3, 1, 3, 1, 4, + 3, 3, 2, 5, 1, 1, 1, 1, 1, 1, + 4, 2, 1, 2, 2, 1, 1, 2, 2, 2, + 0, 1, 0, 1, 0, 2, 7, 9, 0, 7, + 0, 3, 3, 0, 1, 1, 1, 0, 1, 1, + 2, 1, 2, 1, 2, 1, 1, 4, 5, 7, + 8, 13, 1, 3, 2, 4, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, - 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, - 3, 6, 1, 2, 1, 1, 1, 1, 2, 1, - 1, 3, 4, 6, 8, 12, 5, 1, 1, 1, - 1, 1, 1, 1, 1, 1, 1, 0, 2, 1, - 3, 1, 1, 0, 1, 1, 3, 3, 6, 1, - 0, 1, 1, 3, 1, 1, 3, 5, 6, 1, - 1, 1, 1, 1, 1, 1, 1, 0, 2, 1, - 3, 3, 1, 1, 3, 1, 3, 4, 0, 1, - 1 + 1, 2, 1, 1, 1, 1, 1, 3, 6, 1, + 2, 1, 1, 1, 1, 2, 1, 1, 3, 4, + 6, 8, 12, 5, 1, 1, 1, 1, 1, 1, + 1, 1, 1, 1, 0, 2, 1, 3, 1, 1, + 0, 1, 1, 3, 3, 6, 1, 0, 1, 1, + 3, 1, 1, 3, 5, 6, 1, 1, 1, 1, + 1, 1, 1, 1, 0, 2, 1, 3, 3, 1, + 1, 3, 1, 3, 4, 0, 1, 1 }; @@ -2581,21 +2665,21 @@ static const unsigned char yydprec[] = 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 1, 2, 2, 2, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 1, 2, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 2, 1, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 2, 1, 0, 0, 0, 2, - 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, + 1, 0, 0, 0, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, @@ -2605,14 +2689,14 @@ static const unsigned char yydprec[] = 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0 + 0, 0, 0, 0, 0, 0, 0, 0 }; /* YYMERGER[RULE-NUM] -- Index of merging function for rule #RULE-NUM. */ @@ -2681,7 +2765,7 @@ static const unsigned char yymerger[] = 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0 + 0, 0, 0, 0, 0, 0, 0, 0 }; /* YYIMMEDIATE[RULE-NUM] -- True iff rule #RULE-NUM is not to be deferred, as @@ -2751,7 +2835,7 @@ static const yybool yyimmediate[] = 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0 + 0, 0, 0, 0, 0, 0, 0, 0 }; /* YYCONFLP[YYPACT[STATE-NUM]] -- Pointer into YYCONFL of start of @@ -2766,20 +2850,23 @@ static const unsigned short yyconflp[] = 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 3209, 0, 3211, 3213, 0, 3215, 0, 0, 0, - 0, 0, 0, 3217, 0, 0, 0, 0, 0, 0, + 0, 15, 0, 0, 0, 0, 0, 0, 0, 3714, + 0, 3716, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 3700, 3702, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 3197, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 3199, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 3201, 3203, 0, 0, + 0, 0, 0, 0, 0, 0, 3696, 0, 0, 0, + 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 13, 0, 0, 0, 9, 0, 157, 0, 11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 3706, 0, 3708, 3710, 0, 3718, + 0, 3720, 3722, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 3698, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 3219, 0, 3221, 3223, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, @@ -2788,41 +2875,44 @@ static const unsigned short yyconflp[] = 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 3704, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 9, 0, 0, 0, 11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 3205, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 3207, 0, 0, 0, 0, 0, + 0, 0, 3712, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 3225, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 3724, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 167, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, + 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, + 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, - 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, - 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, @@ -2889,7 +2979,19 @@ static const unsigned short yyconflp[] = 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 19, 0, 0, 0, + 0, 0, 0, 0, 0, 21, 23, 25, 27, 0, + 29, 31, 0, 0, 0, 33, 0, 0, 0, 0, + 0, 0, 35, 37, 39, 41, 43, 45, 47, 49, + 51, 53, 55, 57, 0, 59, 61, 63, 65, 67, + 69, 71, 73, 75, 77, 79, 81, 83, 85, 87, + 89, 91, 93, 0, 0, 0, 0, 0, 95, 97, + 99, 101, 103, 105, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 107, 109, 0, 111, 113, 115, 117, 119, 121, 0, + 123, 0, 0, 125, 127, 129, 131, 133, 135, 137, + 139, 141, 143, 145, 147, 149, 151, 153, 155, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 157, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, @@ -2908,391 +3010,430 @@ static const unsigned short yyconflp[] = 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 159, 0, 0, 0, 0, 0, - 0, 0, 0, 161, 0, 0, 0, 0, 163, 165, - 0, 0, 0, 167, 0, 0, 169, 171, 173, 175, - 0, 0, 0, 177, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 179, 181, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 183, 185, 0, 0, 0, 0, 187, 189, 191, - 193, 195, 0, 0, 0, 0, 0, 0, 0, 197, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 199, - 0, 201, 203, 205, 207, 209, 211, 0, 213, 0, - 0, 215, 217, 219, 221, 223, 225, 227, 229, 231, - 233, 235, 237, 239, 241, 243, 245, 247, 0, 0, - 0, 0, 0, 0, 0, 0, 249, 0, 0, 0, - 0, 251, 253, 0, 0, 0, 255, 0, 0, 257, - 259, 261, 263, 0, 0, 0, 265, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 267, 269, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 271, 273, 0, 0, 0, 0, - 275, 277, 279, 281, 283, 0, 0, 0, 0, 0, - 0, 0, 285, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 287, 0, 289, 291, 293, 295, 297, 299, - 0, 301, 0, 0, 303, 305, 307, 309, 311, 313, - 315, 317, 319, 321, 323, 325, 327, 329, 331, 333, - 335, 0, 0, 0, 0, 0, 0, 0, 0, 337, - 0, 0, 0, 0, 339, 341, 0, 0, 0, 343, - 0, 0, 345, 347, 349, 351, 0, 0, 0, 353, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 355, 357, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 359, 361, 0, - 0, 0, 0, 363, 365, 367, 369, 371, 0, 0, - 0, 0, 0, 0, 0, 373, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 375, 0, 377, 379, 381, - 383, 385, 387, 0, 389, 0, 0, 391, 393, 395, - 397, 399, 401, 403, 405, 407, 409, 411, 413, 415, - 417, 419, 421, 423, 0, 0, 0, 0, 0, 0, - 0, 0, 426, 0, 0, 0, 0, 429, 432, 0, - 0, 0, 435, 0, 0, 438, 441, 444, 447, 0, - 0, 0, 450, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 453, 456, 0, - 0, 0, 149, 0, 0, 0, 0, 151, 0, 0, - 459, 462, 0, 0, 153, 0, 465, 468, 471, 474, - 477, 0, 0, 0, 0, 0, 0, 0, 480, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 483, 0, - 486, 489, 492, 495, 498, 501, 0, 504, 0, 0, - 507, 510, 513, 516, 519, 522, 525, 528, 531, 534, - 537, 540, 543, 546, 549, 552, 557, 0, 555, 0, - 0, 0, 155, 0, 0, 559, 0, 0, 0, 0, - 561, 563, 0, 0, 0, 565, 0, 0, 567, 569, - 571, 573, 0, 0, 0, 575, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 169, 0, 0, 0, + 0, 0, 0, 0, 0, 171, 173, 175, 177, 0, + 179, 181, 0, 0, 0, 183, 0, 0, 185, 187, + 189, 191, 0, 0, 0, 193, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 577, 579, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 581, 583, 0, 0, 0, 0, 585, - 587, 589, 591, 593, 0, 0, 0, 0, 0, 0, - 0, 595, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 597, 0, 599, 601, 603, 605, 607, 609, 0, - 611, 0, 0, 613, 615, 617, 619, 621, 623, 625, - 627, 629, 631, 633, 635, 637, 639, 641, 643, 645, - 0, 0, 0, 0, 0, 0, 0, 0, 647, 0, - 0, 0, 0, 649, 651, 0, 0, 0, 653, 0, - 0, 655, 657, 659, 661, 0, 0, 0, 663, 0, + 195, 197, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 199, 201, 0, 0, 0, 0, 203, + 205, 207, 209, 211, 0, 0, 0, 0, 0, 0, + 0, 213, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 215, 0, 217, 219, 221, 223, 225, 227, 0, + 229, 0, 0, 231, 233, 235, 237, 239, 241, 243, + 245, 247, 249, 251, 253, 255, 257, 259, 261, 263, + 0, 0, 0, 0, 0, 0, 0, 0, 265, 267, + 269, 271, 0, 273, 275, 0, 0, 0, 277, 0, + 0, 279, 281, 283, 285, 0, 0, 0, 287, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 665, 667, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 669, 671, 0, 0, - 0, 0, 673, 675, 677, 679, 681, 0, 0, 0, - 0, 0, 0, 0, 683, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 685, 0, 687, 689, 691, 693, - 695, 697, 0, 699, 0, 0, 701, 703, 705, 707, - 709, 711, 713, 715, 717, 719, 721, 723, 725, 727, - 729, 731, 733, 0, 0, 0, 0, 0, 0, 0, - 0, 735, 0, 0, 0, 0, 737, 739, 0, 0, - 0, 741, 0, 0, 743, 745, 747, 749, 0, 0, - 0, 751, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 753, 755, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 757, - 759, 0, 0, 0, 0, 761, 763, 765, 767, 769, - 0, 0, 0, 0, 0, 0, 0, 771, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 773, 0, 775, - 777, 779, 781, 783, 785, 0, 787, 0, 0, 789, - 791, 793, 795, 797, 799, 801, 803, 805, 807, 809, - 811, 813, 815, 817, 819, 821, 0, 0, 0, 0, - 0, 0, 0, 0, 823, 0, 0, 0, 0, 825, - 827, 0, 0, 0, 829, 0, 0, 831, 833, 835, - 837, 0, 0, 0, 839, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 841, - 843, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 845, 847, 0, 0, 0, 0, 849, 851, - 853, 855, 857, 0, 0, 0, 0, 0, 0, 0, - 859, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 861, 0, 863, 865, 867, 869, 871, 873, 0, 875, - 0, 0, 877, 879, 881, 883, 885, 887, 889, 891, - 893, 895, 897, 899, 901, 903, 905, 907, 909, 0, - 0, 0, 0, 0, 0, 0, 0, 911, 0, 0, - 0, 0, 913, 915, 0, 0, 0, 917, 0, 0, - 919, 921, 923, 925, 0, 0, 0, 927, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 929, 931, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 933, 935, 0, 0, 0, - 0, 937, 939, 941, 943, 945, 0, 0, 0, 0, - 0, 0, 0, 947, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 949, 0, 951, 953, 955, 957, 959, - 961, 0, 963, 0, 0, 965, 967, 969, 971, 973, - 975, 977, 979, 981, 983, 985, 987, 989, 991, 993, - 995, 997, 0, 0, 0, 0, 0, 0, 0, 0, - 999, 0, 0, 0, 0, 1001, 1003, 0, 0, 0, - 1005, 0, 0, 1007, 1009, 1011, 1013, 0, 0, 0, - 1015, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 1017, 1019, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 1021, 1023, - 0, 0, 0, 0, 1025, 1027, 1029, 1031, 1033, 0, - 0, 0, 0, 0, 0, 0, 1035, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 1037, 0, 1039, 1041, - 1043, 1045, 1047, 1049, 0, 1051, 0, 0, 1053, 1055, - 1057, 1059, 1061, 1063, 1065, 1067, 1069, 1071, 1073, 1075, - 1077, 1079, 1081, 1083, 1085, 0, 0, 0, 0, 0, - 0, 0, 0, 1087, 0, 0, 0, 0, 1089, 1091, - 0, 0, 0, 1093, 0, 0, 1095, 1097, 1099, 1101, - 0, 0, 0, 1103, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 1105, 1107, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 1109, 1111, 0, 0, 0, 0, 1113, 1115, 1117, - 1119, 1121, 0, 0, 0, 0, 0, 0, 0, 1123, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 1125, - 0, 1127, 1129, 1131, 1133, 1135, 1137, 0, 1139, 0, - 0, 1141, 1143, 1145, 1147, 1149, 1151, 1153, 1155, 1157, - 1159, 1161, 1163, 1165, 1167, 1169, 1171, 1173, 0, 0, - 0, 0, 0, 0, 0, 0, 1175, 0, 0, 0, - 0, 1177, 1179, 0, 0, 0, 1181, 0, 0, 1183, - 1185, 1187, 1189, 0, 0, 0, 1191, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 1193, 1195, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 1197, 1199, 0, 0, 0, 0, - 1201, 1203, 1205, 1207, 1209, 0, 0, 0, 0, 0, - 0, 0, 1211, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 1213, 0, 1215, 1217, 1219, 1221, 1223, 1225, - 0, 1227, 0, 0, 1229, 1231, 1233, 1235, 1237, 1239, - 1241, 1243, 1245, 1247, 1249, 1251, 1253, 1255, 1257, 1259, - 1261, 0, 0, 0, 0, 0, 0, 0, 0, 1263, - 0, 0, 0, 0, 1265, 1267, 0, 0, 0, 1269, - 0, 0, 1271, 1273, 1275, 1277, 0, 0, 0, 1279, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 1281, 1283, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 1285, 1287, 0, - 0, 0, 0, 1289, 1291, 1293, 1295, 1297, 0, 0, - 0, 0, 0, 0, 0, 1299, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 1301, 0, 1303, 1305, 1307, - 1309, 1311, 1313, 0, 1315, 0, 0, 1317, 1319, 1321, - 1323, 1325, 1327, 1329, 1331, 1333, 1335, 1337, 1339, 1341, - 1343, 1345, 1347, 1349, 0, 0, 0, 0, 0, 0, - 0, 0, 1351, 0, 0, 0, 0, 1353, 1355, 0, - 0, 0, 1357, 0, 0, 1359, 1361, 1363, 1365, 0, - 0, 0, 1367, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 1369, 1371, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 1373, 1375, 0, 0, 0, 0, 1377, 1379, 1381, 1383, - 1385, 0, 0, 0, 0, 0, 0, 0, 1387, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 1389, 0, - 1391, 1393, 1395, 1397, 1399, 1401, 0, 1403, 0, 0, - 1405, 1407, 1409, 1411, 1413, 1415, 1417, 1419, 1421, 1423, - 1425, 1427, 1429, 1431, 1433, 1435, 1437, 0, 0, 0, - 0, 0, 0, 0, 0, 1439, 0, 0, 0, 0, - 1441, 1443, 0, 0, 0, 1445, 0, 0, 1447, 1449, - 1451, 1453, 0, 0, 0, 1455, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 1457, 1459, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 1461, 1463, 0, 0, 0, 0, 1465, - 1467, 1469, 1471, 1473, 0, 0, 0, 0, 0, 0, - 0, 1475, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 1477, 0, 1479, 1481, 1483, 1485, 1487, 1489, 0, - 1491, 0, 0, 1493, 1495, 1497, 1499, 1501, 1503, 1505, - 1507, 1509, 1511, 1513, 1515, 1517, 1519, 1521, 1523, 1525, - 0, 0, 0, 0, 0, 0, 0, 0, 1527, 0, - 0, 0, 0, 1529, 1531, 0, 0, 0, 1533, 0, - 0, 1535, 1537, 1539, 1541, 0, 0, 0, 1543, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 1545, 1547, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 1549, 1551, 0, 0, - 0, 0, 1553, 1555, 1557, 1559, 1561, 0, 0, 0, - 0, 0, 0, 0, 1563, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 1565, 0, 1567, 1569, 1571, 1573, - 1575, 1577, 0, 1579, 0, 0, 1581, 1583, 1585, 1587, - 1589, 1591, 1593, 1595, 1597, 1599, 1601, 1603, 1605, 1607, - 1609, 1611, 1613, 0, 0, 0, 0, 0, 0, 0, - 0, 1615, 0, 0, 0, 0, 1617, 1619, 0, 0, - 0, 1621, 0, 0, 1623, 1625, 1627, 1629, 0, 0, - 0, 1631, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 1633, 1635, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 1637, - 1639, 0, 0, 0, 0, 1641, 1643, 1645, 1647, 1649, - 0, 0, 0, 0, 0, 0, 0, 1651, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 1653, 0, 1655, - 1657, 1659, 1661, 1663, 1665, 0, 1667, 0, 0, 1669, - 1671, 1673, 1675, 1677, 1679, 1681, 1683, 1685, 1687, 1689, - 1691, 1693, 1695, 1697, 1699, 1701, 0, 0, 0, 0, - 0, 0, 0, 0, 1703, 0, 0, 0, 0, 1705, - 1707, 0, 0, 0, 1709, 0, 0, 1711, 1713, 1715, - 1717, 0, 0, 0, 1719, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 1721, - 1723, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 1725, 1727, 0, 0, 0, 0, 1729, 1731, - 1733, 1735, 1737, 0, 0, 0, 0, 0, 0, 0, - 1739, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 1741, 0, 1743, 1745, 1747, 1749, 1751, 1753, 0, 1755, - 0, 0, 1757, 1759, 1761, 1763, 1765, 1767, 1769, 1771, - 1773, 1775, 1777, 1779, 1781, 1783, 1785, 1787, 1789, 0, - 0, 0, 0, 0, 0, 0, 0, 1791, 0, 0, - 0, 0, 1793, 1795, 0, 0, 0, 1797, 0, 0, - 1799, 1801, 1803, 1805, 0, 0, 0, 1807, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 1809, 1811, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 1813, 1815, 0, 0, 0, - 0, 1817, 1819, 1821, 1823, 1825, 0, 0, 0, 0, - 0, 0, 0, 1827, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 1829, 0, 1831, 1833, 1835, 1837, 1839, - 1841, 0, 1843, 0, 0, 1845, 1847, 1849, 1851, 1853, - 1855, 1857, 1859, 1861, 1863, 1865, 1867, 1869, 1871, 1873, - 1875, 1877, 0, 0, 0, 0, 0, 0, 0, 0, - 1879, 0, 0, 0, 0, 1881, 1883, 0, 0, 0, - 1885, 0, 0, 1887, 1889, 1891, 1893, 0, 0, 0, - 1895, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 1897, 1899, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 1901, 1903, - 0, 0, 0, 0, 1905, 1907, 1909, 1911, 1913, 0, - 0, 0, 0, 0, 0, 0, 1915, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 1917, 0, 1919, 1921, - 1923, 1925, 1927, 1929, 0, 1931, 0, 0, 1933, 1935, - 1937, 1939, 1941, 1943, 1945, 1947, 1949, 1951, 1953, 1955, - 1957, 1959, 1961, 1963, 1965, 0, 0, 0, 0, 0, - 0, 0, 0, 1967, 0, 0, 0, 0, 1969, 1971, - 0, 0, 0, 1973, 0, 0, 1975, 1977, 1979, 1981, - 0, 0, 0, 1983, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 1985, 1987, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 1989, 1991, 0, 0, 0, 0, 1993, 1995, 1997, - 1999, 2001, 0, 0, 0, 0, 0, 0, 0, 2003, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 2005, - 0, 2007, 2009, 2011, 2013, 2015, 2017, 0, 2019, 0, - 0, 2021, 2023, 2025, 2027, 2029, 2031, 2033, 2035, 2037, - 2039, 2041, 2043, 2045, 2047, 2049, 2051, 2053, 0, 0, - 0, 0, 0, 0, 0, 0, 2055, 0, 0, 0, - 0, 2057, 2059, 0, 0, 0, 2061, 0, 0, 2063, - 2065, 2067, 2069, 0, 0, 0, 2071, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 2073, 2075, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 2077, 2079, 0, 0, 0, 0, - 2081, 2083, 2085, 2087, 2089, 0, 0, 0, 0, 0, - 0, 0, 2091, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 2093, 0, 2095, 2097, 2099, 2101, 2103, 2105, - 0, 2107, 0, 0, 2109, 2111, 2113, 2115, 2117, 2119, - 2121, 2123, 2125, 2127, 2129, 2131, 2133, 2135, 2137, 2139, - 2141, 0, 0, 0, 0, 0, 0, 0, 0, 2143, - 0, 0, 0, 0, 2145, 2147, 0, 0, 0, 2149, - 0, 0, 2151, 2153, 2155, 2157, 0, 0, 0, 2159, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 2161, 2163, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 2165, 2167, 0, - 0, 0, 0, 2169, 2171, 2173, 2175, 2177, 0, 0, - 0, 0, 0, 0, 0, 2179, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 2181, 0, 2183, 2185, 2187, - 2189, 2191, 2193, 0, 2195, 0, 0, 2197, 2199, 2201, - 2203, 2205, 2207, 2209, 2211, 2213, 2215, 2217, 2219, 2221, - 2223, 2225, 2227, 2229, 0, 0, 0, 0, 0, 0, - 0, 0, 2231, 0, 0, 0, 0, 2233, 2235, 0, - 0, 0, 2237, 0, 0, 2239, 2241, 2243, 2245, 0, - 0, 0, 2247, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 2249, 2251, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 2253, 2255, 0, 0, 0, 0, 2257, 2259, 2261, 2263, - 2265, 0, 0, 0, 0, 0, 0, 0, 2267, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 2269, 0, - 2271, 2273, 2275, 2277, 2279, 2281, 0, 2283, 0, 0, - 2285, 2287, 2289, 2291, 2293, 2295, 2297, 2299, 2301, 2303, - 2305, 2307, 2309, 2311, 2313, 2315, 2317, 0, 0, 0, - 0, 0, 0, 0, 0, 2319, 0, 0, 0, 0, - 2321, 2323, 0, 0, 0, 2325, 0, 0, 2327, 2329, - 2331, 2333, 0, 0, 0, 2335, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 2337, 2339, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 2341, 2343, 0, 0, 0, 0, 2345, - 2347, 2349, 2351, 2353, 0, 0, 0, 0, 0, 0, - 0, 2355, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 2357, 0, 2359, 2361, 2363, 2365, 2367, 2369, 0, - 2371, 0, 0, 2373, 2375, 2377, 2379, 2381, 2383, 2385, - 2387, 2389, 2391, 2393, 2395, 2397, 2399, 2401, 2403, 2405, - 0, 0, 0, 0, 0, 0, 0, 0, 2407, 0, - 0, 0, 0, 2409, 2411, 0, 0, 0, 2413, 0, - 0, 2415, 2417, 2419, 2421, 0, 0, 0, 2423, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 2425, 2427, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 2429, 2431, 0, 0, - 0, 0, 2433, 2435, 2437, 2439, 2441, 0, 0, 0, - 0, 0, 0, 0, 2443, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 2445, 0, 2447, 2449, 2451, 2453, - 2455, 2457, 0, 2459, 0, 0, 2461, 2463, 2465, 2467, - 2469, 2471, 2473, 2475, 2477, 2479, 2481, 2483, 2485, 2487, - 2489, 2491, 2493, 0, 0, 0, 0, 0, 0, 0, - 0, 2495, 0, 0, 0, 0, 2497, 2499, 0, 0, - 0, 2501, 0, 0, 2503, 2505, 2507, 2509, 0, 0, - 0, 2511, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 2513, 2515, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 2517, - 2519, 0, 0, 0, 0, 2521, 2523, 2525, 2527, 2529, - 0, 0, 0, 0, 0, 0, 0, 2531, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 2533, 0, 2535, - 2537, 2539, 2541, 2543, 2545, 0, 2547, 0, 0, 2549, - 2551, 2553, 2555, 2557, 2559, 2561, 2563, 2565, 2567, 2569, - 2571, 2573, 2575, 2577, 2579, 2581, 0, 0, 0, 0, - 0, 0, 0, 0, 2583, 0, 0, 0, 0, 2585, - 2587, 0, 0, 0, 2589, 0, 0, 2591, 2593, 2595, - 2597, 0, 0, 0, 2599, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 2601, - 2603, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 2605, 2607, 0, 0, 0, 0, 2609, 2611, - 2613, 2615, 2617, 0, 0, 0, 0, 0, 0, 0, - 2619, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 2621, 0, 2623, 2625, 2627, 2629, 2631, 2633, 0, 2635, - 0, 0, 2637, 2639, 2641, 2643, 2645, 2647, 2649, 2651, - 2653, 2655, 2657, 2659, 2661, 2663, 2665, 2667, 2669, 0, - 0, 0, 0, 0, 0, 0, 0, 2671, 0, 0, - 0, 0, 2673, 2675, 0, 0, 0, 2677, 0, 0, - 2679, 2681, 2683, 2685, 0, 0, 0, 2687, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 2689, 2691, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 2693, 2695, 0, 0, 0, - 0, 2697, 2699, 2701, 2703, 2705, 0, 0, 0, 0, - 0, 0, 0, 2707, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 2709, 0, 2711, 2713, 2715, 2717, 2719, - 2721, 0, 2723, 0, 0, 2725, 2727, 2729, 2731, 2733, - 2735, 2737, 2739, 2741, 2743, 2745, 2747, 2749, 2751, 2753, - 2755, 2757, 0, 0, 0, 0, 0, 0, 0, 0, - 2759, 0, 0, 0, 0, 2761, 2763, 0, 0, 0, - 2765, 0, 0, 2767, 2769, 2771, 2773, 0, 0, 0, - 2775, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 2777, 2779, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 2781, 2783, - 0, 0, 0, 0, 2785, 2787, 2789, 2791, 2793, 0, - 0, 0, 0, 0, 0, 0, 2795, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 2797, 0, 2799, 2801, - 2803, 2805, 2807, 2809, 0, 2811, 0, 0, 2813, 2815, - 2817, 2819, 2821, 2823, 2825, 2827, 2829, 2831, 2833, 2835, - 2837, 2839, 2841, 2843, 2845, 0, 0, 0, 0, 0, - 0, 0, 0, 2847, 0, 0, 0, 0, 2849, 2851, - 0, 0, 0, 2853, 0, 0, 2855, 2857, 2859, 2861, - 0, 0, 0, 2863, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 2865, 2867, + 0, 0, 0, 289, 291, 0, 0, 0, 159, 0, + 0, 0, 0, 161, 0, 0, 293, 295, 0, 0, + 163, 0, 297, 299, 301, 303, 305, 0, 0, 0, + 0, 0, 0, 0, 307, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 309, 0, 311, 313, 315, 317, + 319, 321, 0, 323, 0, 0, 325, 327, 329, 331, + 333, 335, 337, 339, 341, 343, 345, 347, 349, 351, + 353, 355, 357, 0, 0, 0, 0, 0, 165, 0, + 0, 359, 361, 363, 365, 0, 367, 369, 0, 0, + 0, 371, 0, 0, 373, 375, 377, 379, 0, 0, + 0, 381, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 383, 385, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 387, + 389, 0, 0, 0, 0, 391, 393, 395, 397, 399, + 0, 0, 0, 0, 0, 0, 0, 401, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 403, 0, 405, + 407, 409, 411, 413, 415, 0, 417, 0, 0, 419, + 421, 423, 425, 427, 429, 431, 433, 435, 437, 439, + 441, 443, 445, 447, 449, 451, 0, 0, 0, 0, + 0, 0, 0, 0, 453, 455, 457, 459, 0, 461, + 463, 0, 0, 0, 465, 0, 0, 467, 469, 471, + 473, 0, 0, 0, 475, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 477, + 479, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 481, 483, 0, 0, 0, 0, 485, 487, + 489, 491, 493, 0, 0, 0, 0, 0, 0, 0, + 495, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 497, 0, 499, 501, 503, 505, 507, 509, 0, 511, + 0, 0, 513, 515, 517, 519, 521, 523, 525, 527, + 529, 531, 533, 535, 537, 539, 541, 543, 545, 0, + 0, 0, 0, 0, 0, 0, 0, 547, 549, 551, + 553, 0, 555, 557, 0, 0, 0, 559, 0, 0, + 561, 563, 565, 567, 0, 0, 0, 569, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 571, 573, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 575, 577, 0, 0, 0, + 0, 579, 581, 583, 585, 587, 0, 0, 0, 0, + 0, 0, 0, 589, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 591, 0, 593, 595, 597, 599, 601, + 603, 0, 605, 0, 0, 607, 609, 611, 613, 615, + 617, 619, 621, 623, 625, 627, 629, 631, 633, 635, + 637, 639, 0, 0, 0, 0, 0, 0, 0, 0, + 641, 643, 645, 647, 0, 649, 651, 0, 0, 0, + 653, 0, 0, 655, 657, 659, 661, 0, 0, 0, + 663, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 665, 667, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 669, 671, + 0, 0, 0, 0, 673, 675, 677, 679, 681, 0, + 0, 0, 0, 0, 0, 0, 683, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 685, 0, 687, 689, + 691, 693, 695, 697, 0, 699, 0, 0, 701, 703, + 705, 707, 709, 711, 713, 715, 717, 719, 721, 723, + 725, 727, 729, 731, 733, 0, 0, 0, 0, 0, + 0, 0, 0, 736, 739, 742, 745, 0, 748, 751, + 0, 0, 0, 754, 0, 0, 757, 760, 763, 766, + 0, 0, 0, 769, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 772, 775, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 778, 781, 0, 0, 0, 0, 784, 787, 790, + 793, 796, 0, 0, 0, 0, 0, 0, 0, 799, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 802, + 0, 805, 808, 811, 814, 817, 820, 0, 823, 0, + 0, 826, 829, 832, 835, 838, 841, 844, 847, 850, + 853, 856, 859, 862, 865, 868, 871, 876, 0, 874, + 0, 0, 0, 0, 0, 0, 878, 880, 882, 884, + 0, 886, 888, 0, 0, 0, 890, 0, 0, 892, + 894, 896, 898, 0, 0, 0, 900, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 902, 904, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 906, 908, 0, 0, 0, 0, + 910, 912, 914, 916, 918, 0, 0, 0, 0, 0, + 0, 0, 920, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 922, 0, 924, 926, 928, 930, 932, 934, + 0, 936, 0, 0, 938, 940, 942, 944, 946, 948, + 950, 952, 954, 956, 958, 960, 962, 964, 966, 968, + 970, 0, 0, 0, 0, 0, 0, 0, 0, 972, + 974, 976, 978, 0, 980, 982, 0, 0, 0, 984, + 0, 0, 986, 988, 990, 992, 0, 0, 0, 994, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 996, 998, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 1000, 1002, 0, + 0, 0, 0, 1004, 1006, 1008, 1010, 1012, 0, 0, + 0, 0, 0, 0, 0, 1014, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 1016, 0, 1018, 1020, 1022, + 1024, 1026, 1028, 0, 1030, 0, 0, 1032, 1034, 1036, + 1038, 1040, 1042, 1044, 1046, 1048, 1050, 1052, 1054, 1056, + 1058, 1060, 1062, 1064, 0, 0, 0, 0, 0, 0, + 0, 0, 1066, 1068, 1070, 1072, 0, 1074, 1076, 0, + 0, 0, 1078, 0, 0, 1080, 1082, 1084, 1086, 0, + 0, 0, 1088, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 1090, 1092, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 1094, 1096, 0, 0, 0, 0, 1098, 1100, 1102, 1104, + 1106, 0, 0, 0, 0, 0, 0, 0, 1108, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 1110, 0, + 1112, 1114, 1116, 1118, 1120, 1122, 0, 1124, 0, 0, + 1126, 1128, 1130, 1132, 1134, 1136, 1138, 1140, 1142, 1144, + 1146, 1148, 1150, 1152, 1154, 1156, 1158, 0, 0, 0, + 0, 0, 0, 0, 0, 1160, 1162, 1164, 1166, 0, + 1168, 1170, 0, 0, 0, 1172, 0, 0, 1174, 1176, + 1178, 1180, 0, 0, 0, 1182, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 1184, 1186, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 1188, 1190, 0, 0, 0, 0, 1192, + 1194, 1196, 1198, 1200, 0, 0, 0, 0, 0, 0, + 0, 1202, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 1204, 0, 1206, 1208, 1210, 1212, 1214, 1216, 0, + 1218, 0, 0, 1220, 1222, 1224, 1226, 1228, 1230, 1232, + 1234, 1236, 1238, 1240, 1242, 1244, 1246, 1248, 1250, 1252, + 0, 0, 0, 0, 0, 0, 0, 0, 1254, 1256, + 1258, 1260, 0, 1262, 1264, 0, 0, 0, 1266, 0, + 0, 1268, 1270, 1272, 1274, 0, 0, 0, 1276, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 1278, 1280, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 1282, 1284, 0, 0, + 0, 0, 1286, 1288, 1290, 1292, 1294, 0, 0, 0, + 0, 0, 0, 0, 1296, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 1298, 0, 1300, 1302, 1304, 1306, + 1308, 1310, 0, 1312, 0, 0, 1314, 1316, 1318, 1320, + 1322, 1324, 1326, 1328, 1330, 1332, 1334, 1336, 1338, 1340, + 1342, 1344, 1346, 0, 0, 0, 0, 0, 0, 0, + 0, 1348, 1350, 1352, 1354, 0, 1356, 1358, 0, 0, + 0, 1360, 0, 0, 1362, 1364, 1366, 1368, 0, 0, + 0, 1370, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 1372, 1374, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 1376, + 1378, 0, 0, 0, 0, 1380, 1382, 1384, 1386, 1388, + 0, 0, 0, 0, 0, 0, 0, 1390, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 1392, 0, 1394, + 1396, 1398, 1400, 1402, 1404, 0, 1406, 0, 0, 1408, + 1410, 1412, 1414, 1416, 1418, 1420, 1422, 1424, 1426, 1428, + 1430, 1432, 1434, 1436, 1438, 1440, 0, 0, 0, 0, + 0, 0, 0, 0, 1442, 1444, 1446, 1448, 0, 1450, + 1452, 0, 0, 0, 1454, 0, 0, 1456, 1458, 1460, + 1462, 0, 0, 0, 1464, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 1466, + 1468, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 1470, 1472, 0, 0, 0, 0, 1474, 1476, + 1478, 1480, 1482, 0, 0, 0, 0, 0, 0, 0, + 1484, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 1486, 0, 1488, 1490, 1492, 1494, 1496, 1498, 0, 1500, + 0, 0, 1502, 1504, 1506, 1508, 1510, 1512, 1514, 1516, + 1518, 1520, 1522, 1524, 1526, 1528, 1530, 1532, 1534, 0, + 0, 0, 0, 0, 0, 0, 0, 1536, 1538, 1540, + 1542, 0, 1544, 1546, 0, 0, 0, 1548, 0, 0, + 1550, 1552, 1554, 1556, 0, 0, 0, 1558, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 1560, 1562, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 1564, 1566, 0, 0, 0, + 0, 1568, 1570, 1572, 1574, 1576, 0, 0, 0, 0, + 0, 0, 0, 1578, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 1580, 0, 1582, 1584, 1586, 1588, 1590, + 1592, 0, 1594, 0, 0, 1596, 1598, 1600, 1602, 1604, + 1606, 1608, 1610, 1612, 1614, 1616, 1618, 1620, 1622, 1624, + 1626, 1628, 0, 0, 0, 0, 0, 0, 0, 0, + 1630, 1632, 1634, 1636, 0, 1638, 1640, 0, 0, 0, + 1642, 0, 0, 1644, 1646, 1648, 1650, 0, 0, 0, + 1652, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 1654, 1656, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 1658, 1660, + 0, 0, 0, 0, 1662, 1664, 1666, 1668, 1670, 0, + 0, 0, 0, 0, 0, 0, 1672, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 1674, 0, 1676, 1678, + 1680, 1682, 1684, 1686, 0, 1688, 0, 0, 1690, 1692, + 1694, 1696, 1698, 1700, 1702, 1704, 1706, 1708, 1710, 1712, + 1714, 1716, 1718, 1720, 1722, 0, 0, 0, 0, 0, + 0, 0, 0, 1724, 1726, 1728, 1730, 0, 1732, 1734, + 0, 0, 0, 1736, 0, 0, 1738, 1740, 1742, 1744, + 0, 0, 0, 1746, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 1748, 1750, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 1752, 1754, 0, 0, 0, 0, 1756, 1758, 1760, + 1762, 1764, 0, 0, 0, 0, 0, 0, 0, 1766, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 1768, + 0, 1770, 1772, 1774, 1776, 1778, 1780, 0, 1782, 0, + 0, 1784, 1786, 1788, 1790, 1792, 1794, 1796, 1798, 1800, + 1802, 1804, 1806, 1808, 1810, 1812, 1814, 1816, 0, 0, + 0, 0, 0, 0, 0, 0, 1818, 1820, 1822, 1824, + 0, 1826, 1828, 0, 0, 0, 1830, 0, 0, 1832, + 1834, 1836, 1838, 0, 0, 0, 1840, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 1842, 1844, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 1846, 1848, 0, 0, 0, 0, + 1850, 1852, 1854, 1856, 1858, 0, 0, 0, 0, 0, + 0, 0, 1860, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 1862, 0, 1864, 1866, 1868, 1870, 1872, 1874, + 0, 1876, 0, 0, 1878, 1880, 1882, 1884, 1886, 1888, + 1890, 1892, 1894, 1896, 1898, 1900, 1902, 1904, 1906, 1908, + 1910, 0, 0, 0, 0, 0, 0, 0, 0, 1912, + 1914, 1916, 1918, 0, 1920, 1922, 0, 0, 0, 1924, + 0, 0, 1926, 1928, 1930, 1932, 0, 0, 0, 1934, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 1936, 1938, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 1940, 1942, 0, + 0, 0, 0, 1944, 1946, 1948, 1950, 1952, 0, 0, + 0, 0, 0, 0, 0, 1954, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 1956, 0, 1958, 1960, 1962, + 1964, 1966, 1968, 0, 1970, 0, 0, 1972, 1974, 1976, + 1978, 1980, 1982, 1984, 1986, 1988, 1990, 1992, 1994, 1996, + 1998, 2000, 2002, 2004, 0, 0, 0, 0, 0, 0, + 0, 0, 2006, 2008, 2010, 2012, 0, 2014, 2016, 0, + 0, 0, 2018, 0, 0, 2020, 2022, 2024, 2026, 0, + 0, 0, 2028, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 2030, 2032, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 2034, 2036, 0, 0, 0, 0, 2038, 2040, 2042, 2044, + 2046, 0, 0, 0, 0, 0, 0, 0, 2048, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 2050, 0, + 2052, 2054, 2056, 2058, 2060, 2062, 0, 2064, 0, 0, + 2066, 2068, 2070, 2072, 2074, 2076, 2078, 2080, 2082, 2084, + 2086, 2088, 2090, 2092, 2094, 2096, 2098, 0, 0, 0, + 0, 0, 0, 0, 0, 2100, 2102, 2104, 2106, 0, + 2108, 2110, 0, 0, 0, 2112, 0, 0, 2114, 2116, + 2118, 2120, 0, 0, 0, 2122, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 2124, 2126, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 2128, 2130, 0, 0, 0, 0, 2132, + 2134, 2136, 2138, 2140, 0, 0, 0, 0, 0, 0, + 0, 2142, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 2144, 0, 2146, 2148, 2150, 2152, 2154, 2156, 0, + 2158, 0, 0, 2160, 2162, 2164, 2166, 2168, 2170, 2172, + 2174, 2176, 2178, 2180, 2182, 2184, 2186, 2188, 2190, 2192, + 0, 0, 0, 0, 0, 0, 0, 0, 2194, 2196, + 2198, 2200, 0, 2202, 2204, 0, 0, 0, 2206, 0, + 0, 2208, 2210, 2212, 2214, 0, 0, 0, 2216, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 2218, 2220, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 2222, 2224, 0, 0, + 0, 0, 2226, 2228, 2230, 2232, 2234, 0, 0, 0, + 0, 0, 0, 0, 2236, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 2238, 0, 2240, 2242, 2244, 2246, + 2248, 2250, 0, 2252, 0, 0, 2254, 2256, 2258, 2260, + 2262, 2264, 2266, 2268, 2270, 2272, 2274, 2276, 2278, 2280, + 2282, 2284, 2286, 0, 0, 0, 0, 0, 0, 0, + 0, 2288, 2290, 2292, 2294, 0, 2296, 2298, 0, 0, + 0, 2300, 0, 0, 2302, 2304, 2306, 2308, 0, 0, + 0, 2310, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 2312, 2314, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 2316, + 2318, 0, 0, 0, 0, 2320, 2322, 2324, 2326, 2328, + 0, 0, 0, 0, 0, 0, 0, 2330, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 2332, 0, 2334, + 2336, 2338, 2340, 2342, 2344, 0, 2346, 0, 0, 2348, + 2350, 2352, 2354, 2356, 2358, 2360, 2362, 2364, 2366, 2368, + 2370, 2372, 2374, 2376, 2378, 2380, 0, 0, 0, 0, + 0, 0, 0, 0, 2382, 2384, 2386, 2388, 0, 2390, + 2392, 0, 0, 0, 2394, 0, 0, 2396, 2398, 2400, + 2402, 0, 0, 0, 2404, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 2406, + 2408, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 2410, 2412, 0, 0, 0, 0, 2414, 2416, + 2418, 2420, 2422, 0, 0, 0, 0, 0, 0, 0, + 2424, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 2426, 0, 2428, 2430, 2432, 2434, 2436, 2438, 0, 2440, + 0, 0, 2442, 2444, 2446, 2448, 2450, 2452, 2454, 2456, + 2458, 2460, 2462, 2464, 2466, 2468, 2470, 2472, 2474, 0, + 0, 0, 0, 0, 0, 0, 0, 2476, 2478, 2480, + 2482, 0, 2484, 2486, 0, 0, 0, 2488, 0, 0, + 2490, 2492, 2494, 2496, 0, 0, 0, 2498, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 2500, 2502, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 2504, 2506, 0, 0, 0, + 0, 2508, 2510, 2512, 2514, 2516, 0, 0, 0, 0, + 0, 0, 0, 2518, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 2520, 0, 2522, 2524, 2526, 2528, 2530, + 2532, 0, 2534, 0, 0, 2536, 2538, 2540, 2542, 2544, + 2546, 2548, 2550, 2552, 2554, 2556, 2558, 2560, 2562, 2564, + 2566, 2568, 0, 0, 0, 0, 0, 0, 0, 0, + 2570, 2572, 2574, 2576, 0, 2578, 2580, 0, 0, 0, + 2582, 0, 0, 2584, 2586, 2588, 2590, 0, 0, 0, + 2592, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 2594, 2596, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 2598, 2600, + 0, 0, 0, 0, 2602, 2604, 2606, 2608, 2610, 0, + 0, 0, 0, 0, 0, 0, 2612, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 2614, 0, 2616, 2618, + 2620, 2622, 2624, 2626, 0, 2628, 0, 0, 2630, 2632, + 2634, 2636, 2638, 2640, 2642, 2644, 2646, 2648, 2650, 2652, + 2654, 2656, 2658, 2660, 2662, 0, 0, 0, 0, 0, + 0, 0, 0, 2664, 2666, 2668, 2670, 0, 2672, 2674, + 0, 0, 0, 2676, 0, 0, 2678, 2680, 2682, 2684, + 0, 0, 0, 2686, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 2688, 2690, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 2692, 2694, 0, 0, 0, 0, 2696, 2698, 2700, + 2702, 2704, 0, 0, 0, 0, 0, 0, 0, 2706, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 2708, + 0, 2710, 2712, 2714, 2716, 2718, 2720, 0, 2722, 0, + 0, 2724, 2726, 2728, 2730, 2732, 2734, 2736, 2738, 2740, + 2742, 2744, 2746, 2748, 2750, 2752, 2754, 2756, 0, 0, + 0, 0, 0, 0, 0, 0, 2758, 2760, 2762, 2764, + 0, 2766, 2768, 0, 0, 0, 2770, 0, 0, 2772, + 2774, 2776, 2778, 0, 0, 0, 2780, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 2782, 2784, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 2786, 2788, 0, 0, 0, 0, + 2790, 2792, 2794, 2796, 2798, 0, 0, 0, 0, 0, + 0, 0, 2800, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 2802, 0, 2804, 2806, 2808, 2810, 2812, 2814, + 0, 2816, 0, 0, 2818, 2820, 2822, 2824, 2826, 2828, + 2830, 2832, 2834, 2836, 2838, 2840, 2842, 2844, 2846, 2848, + 2850, 0, 0, 0, 0, 0, 0, 0, 0, 2852, + 2854, 2856, 2858, 0, 2860, 2862, 0, 0, 0, 2864, + 0, 0, 2866, 2868, 2870, 2872, 0, 0, 0, 2874, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 2876, 2878, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 2880, 2882, 0, + 0, 0, 0, 2884, 2886, 2888, 2890, 2892, 0, 0, + 0, 0, 0, 0, 0, 2894, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 2896, 0, 2898, 2900, 2902, + 2904, 2906, 2908, 0, 2910, 0, 0, 2912, 2914, 2916, + 2918, 2920, 2922, 2924, 2926, 2928, 2930, 2932, 2934, 2936, + 2938, 2940, 2942, 2944, 0, 0, 0, 0, 0, 0, + 0, 0, 2946, 2948, 2950, 2952, 0, 2954, 2956, 0, + 0, 0, 2958, 0, 0, 2960, 2962, 2964, 2966, 0, + 0, 0, 2968, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 2970, 2972, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 2974, 2976, 0, 0, 0, 0, 2978, 2980, 2982, 2984, + 2986, 0, 0, 0, 0, 0, 0, 0, 2988, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 2990, 0, + 2992, 2994, 2996, 2998, 3000, 3002, 0, 3004, 0, 0, + 3006, 3008, 3010, 3012, 3014, 3016, 3018, 3020, 3022, 3024, + 3026, 3028, 3030, 3032, 3034, 3036, 3038, 0, 0, 0, + 0, 0, 0, 0, 0, 3040, 3042, 3044, 3046, 0, + 3048, 3050, 0, 0, 0, 3052, 0, 0, 3054, 3056, + 3058, 3060, 0, 0, 0, 3062, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 3064, 3066, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 3068, 3070, 0, 0, 0, 0, 3072, + 3074, 3076, 3078, 3080, 0, 0, 0, 0, 0, 0, + 0, 3082, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 3084, 0, 3086, 3088, 3090, 3092, 3094, 3096, 0, + 3098, 0, 0, 3100, 3102, 3104, 3106, 3108, 3110, 3112, + 3114, 3116, 3118, 3120, 3122, 3124, 3126, 3128, 3130, 3132, + 0, 0, 0, 0, 0, 0, 0, 0, 3134, 3136, + 3138, 3140, 0, 3142, 3144, 0, 0, 0, 3146, 0, + 0, 3148, 3150, 3152, 3154, 0, 0, 0, 3156, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 3158, 3160, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 3162, 3164, 0, 0, + 0, 0, 3166, 3168, 3170, 3172, 3174, 0, 0, 0, + 0, 0, 0, 0, 3176, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 3178, 0, 3180, 3182, 3184, 3186, + 3188, 3190, 0, 3192, 0, 0, 3194, 3196, 3198, 3200, + 3202, 3204, 3206, 3208, 3210, 3212, 3214, 3216, 3218, 3220, + 3222, 3224, 3226, 0, 0, 0, 0, 0, 0, 0, + 0, 3228, 3230, 3232, 3234, 0, 3236, 3238, 0, 0, + 0, 3240, 0, 0, 3242, 3244, 3246, 3248, 0, 0, + 0, 3250, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 3252, 3254, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 3256, + 3258, 0, 0, 0, 0, 3260, 3262, 3264, 3266, 3268, + 0, 0, 0, 0, 0, 0, 0, 3270, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 3272, 0, 3274, + 3276, 3278, 3280, 3282, 3284, 0, 3286, 0, 0, 3288, + 3290, 3292, 3294, 3296, 3298, 3300, 3302, 3304, 3306, 3308, + 3310, 3312, 3314, 3316, 3318, 3320, 0, 0, 0, 0, + 0, 0, 0, 0, 3322, 3324, 3326, 3328, 0, 3330, + 3332, 0, 0, 0, 3334, 0, 0, 3336, 3338, 3340, + 3342, 0, 0, 0, 3344, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 3346, + 3348, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 3350, 3352, 0, 0, 0, 0, 3354, 3356, + 3358, 3360, 3362, 0, 0, 0, 0, 0, 0, 0, + 3364, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 3366, 0, 3368, 3370, 3372, 3374, 3376, 3378, 0, 3380, + 0, 0, 3382, 3384, 3386, 3388, 3390, 3392, 3394, 3396, + 3398, 3400, 3402, 3404, 3406, 3408, 3410, 3412, 3414, 0, + 0, 0, 0, 0, 0, 0, 0, 3416, 3418, 3420, + 3422, 0, 3424, 3426, 0, 0, 0, 3428, 0, 0, + 3430, 3432, 3434, 3436, 0, 0, 0, 3438, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 2869, 2871, 0, 0, 0, 0, 2873, 2875, 2877, - 2879, 2881, 0, 0, 0, 0, 0, 0, 0, 2883, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 2885, - 0, 2887, 2889, 2891, 2893, 2895, 2897, 0, 2899, 0, - 0, 2901, 2903, 2905, 2907, 2909, 2911, 2913, 2915, 2917, - 2919, 2921, 2923, 2925, 2927, 2929, 2931, 2933, 0, 0, - 0, 0, 0, 0, 0, 0, 2935, 0, 0, 0, - 0, 2937, 2939, 0, 0, 0, 2941, 0, 0, 2943, - 2945, 2947, 2949, 0, 0, 0, 2951, 0, 0, 0, + 0, 0, 3440, 3442, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 3444, 3446, 0, 0, 0, + 0, 3448, 3450, 3452, 3454, 3456, 0, 0, 0, 0, + 0, 0, 0, 3458, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 3460, 0, 3462, 3464, 3466, 3468, 3470, + 3472, 0, 3474, 0, 0, 3476, 3478, 3480, 3482, 3484, + 3486, 3488, 3490, 3492, 3494, 3496, 3498, 3500, 3502, 3504, + 3506, 3508, 0, 0, 0, 0, 0, 0, 0, 0, + 3510, 3512, 3514, 3516, 0, 3518, 3520, 0, 0, 0, + 3522, 0, 0, 3524, 3526, 3528, 3530, 0, 0, 0, + 3532, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 3534, 3536, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 3538, 3540, + 0, 0, 0, 0, 3542, 3544, 3546, 3548, 3550, 0, + 0, 0, 0, 0, 0, 0, 3552, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 3554, 0, 3556, 3558, + 3560, 3562, 3564, 3566, 0, 3568, 0, 0, 3570, 3572, + 3574, 3576, 3578, 3580, 3582, 3584, 3586, 3588, 3590, 3592, + 3594, 3596, 3598, 3600, 3602, 0, 0, 0, 0, 0, + 0, 0, 0, 3604, 3606, 3608, 3610, 0, 3612, 3614, + 0, 0, 0, 3616, 0, 0, 3618, 3620, 3622, 3624, + 0, 0, 0, 3626, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 3628, 3630, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 2953, 2955, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 2957, 2959, 0, 0, 0, 0, - 2961, 2963, 2965, 2967, 2969, 0, 0, 0, 0, 0, - 0, 0, 2971, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 2973, 0, 2975, 2977, 2979, 2981, 2983, 2985, - 0, 2987, 0, 0, 2989, 2991, 2993, 2995, 2997, 2999, - 3001, 3003, 3005, 3007, 3009, 3011, 3013, 3015, 3017, 3019, - 3021, 0, 0, 0, 0, 0, 0, 0, 0, 3023, - 0, 0, 0, 0, 3025, 3027, 0, 0, 0, 3029, - 0, 0, 3031, 3033, 3035, 3037, 0, 0, 0, 3039, + 0, 3632, 3634, 0, 0, 0, 0, 3636, 3638, 3640, + 3642, 3644, 0, 0, 0, 0, 0, 0, 0, 3646, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 3648, + 0, 3650, 3652, 3654, 3656, 3658, 3660, 0, 3662, 0, + 0, 3664, 3666, 3668, 3670, 3672, 3674, 3676, 3678, 3680, + 3682, 3684, 3686, 3688, 3690, 3692, 3694, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 3041, 3043, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 3045, 3047, 0, - 0, 0, 0, 3049, 3051, 3053, 3055, 3057, 0, 0, - 0, 0, 0, 0, 0, 3059, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 3061, 0, 3063, 3065, 3067, - 3069, 3071, 3073, 0, 3075, 0, 0, 3077, 3079, 3081, - 3083, 3085, 3087, 3089, 3091, 3093, 3095, 3097, 3099, 3101, - 3103, 3105, 3107, 3109, 0, 0, 0, 0, 0, 0, - 0, 0, 3111, 0, 0, 0, 0, 3113, 3115, 0, - 0, 0, 3117, 0, 0, 3119, 3121, 3123, 3125, 0, - 0, 0, 3127, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 3129, 3131, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 3133, 3135, 0, 0, 0, 0, 3137, 3139, 3141, 3143, - 3145, 0, 0, 0, 0, 0, 0, 0, 3147, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 3149, 0, - 3151, 3153, 3155, 3157, 3159, 3161, 0, 3163, 0, 0, - 3165, 3167, 3169, 3171, 3173, 3175, 3177, 3179, 3181, 3183, - 3185, 3187, 3189, 3191, 3193, 3195, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, @@ -3303,19 +3444,7 @@ static const unsigned short yyconflp[] = 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 17, - 0, 0, 0, 0, 0, 0, 0, 0, 19, 0, - 0, 0, 0, 21, 23, 0, 0, 0, 25, 0, - 0, 0, 0, 0, 0, 27, 29, 31, 33, 35, - 37, 39, 41, 43, 45, 47, 49, 0, 51, 53, - 55, 57, 59, 61, 63, 65, 67, 69, 71, 73, - 75, 77, 79, 81, 83, 85, 0, 0, 0, 0, - 0, 87, 89, 91, 93, 95, 97, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 99, 101, 0, 103, 105, 107, 109, - 111, 113, 0, 115, 0, 0, 117, 119, 121, 123, - 125, 127, 129, 131, 133, 135, 137, 139, 141, 143, - 145, 147, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, @@ -3526,339 +3655,396 @@ static const unsigned short yyconflp[] = 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 3227, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 3229 + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 3726, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 3728 }; /* YYCONFL[I] -- lists of conflicting rule numbers, each terminated by 0, pointed into by YYCONFLP. */ static const short yyconfl[] = { - 0, 386, 0, 386, 0, 386, 0, 386, 0, 377, - 0, 377, 0, 400, 0, 461, 0, 615, 0, 615, - 0, 615, 0, 615, 0, 615, 0, 615, 0, 615, - 0, 615, 0, 615, 0, 615, 0, 615, 0, 615, - 0, 615, 0, 615, 0, 615, 0, 615, 0, 615, - 0, 615, 0, 615, 0, 615, 0, 615, 0, 615, - 0, 615, 0, 615, 0, 615, 0, 615, 0, 615, - 0, 615, 0, 615, 0, 615, 0, 615, 0, 615, - 0, 615, 0, 615, 0, 615, 0, 615, 0, 615, - 0, 615, 0, 615, 0, 615, 0, 615, 0, 615, - 0, 615, 0, 615, 0, 615, 0, 615, 0, 615, - 0, 615, 0, 615, 0, 615, 0, 615, 0, 615, - 0, 615, 0, 615, 0, 615, 0, 615, 0, 615, - 0, 615, 0, 615, 0, 615, 0, 615, 0, 615, - 0, 615, 0, 615, 0, 615, 0, 615, 0, 386, - 0, 386, 0, 386, 0, 386, 0, 400, 0, 43, - 0, 43, 0, 43, 0, 43, 0, 43, 0, 43, - 0, 43, 0, 43, 0, 43, 0, 43, 0, 43, - 0, 43, 0, 43, 0, 43, 0, 43, 0, 43, - 0, 43, 0, 43, 0, 43, 0, 43, 0, 43, - 0, 43, 0, 43, 0, 43, 0, 43, 0, 43, - 0, 43, 0, 43, 0, 43, 0, 43, 0, 43, - 0, 43, 0, 43, 0, 43, 0, 43, 0, 43, - 0, 43, 0, 43, 0, 43, 0, 43, 0, 43, - 0, 43, 0, 43, 0, 43, 0, 52, 0, 52, - 0, 52, 0, 52, 0, 52, 0, 52, 0, 52, - 0, 52, 0, 52, 0, 52, 0, 52, 0, 52, - 0, 52, 0, 52, 0, 52, 0, 52, 0, 52, - 0, 52, 0, 52, 0, 52, 0, 52, 0, 52, - 0, 52, 0, 52, 0, 52, 0, 52, 0, 52, - 0, 52, 0, 52, 0, 52, 0, 52, 0, 52, - 0, 52, 0, 52, 0, 52, 0, 52, 0, 52, - 0, 52, 0, 52, 0, 52, 0, 52, 0, 52, - 0, 52, 0, 52, 0, 616, 0, 616, 0, 616, - 0, 616, 0, 616, 0, 616, 0, 616, 0, 616, - 0, 616, 0, 616, 0, 616, 0, 616, 0, 616, - 0, 616, 0, 616, 0, 616, 0, 616, 0, 616, - 0, 616, 0, 616, 0, 616, 0, 616, 0, 616, - 0, 616, 0, 616, 0, 616, 0, 616, 0, 616, - 0, 616, 0, 616, 0, 616, 0, 616, 0, 616, - 0, 616, 0, 616, 0, 616, 0, 616, 0, 616, - 0, 616, 0, 616, 0, 616, 0, 616, 0, 616, - 0, 616, 0, 577, 615, 0, 577, 615, 0, 577, - 615, 0, 577, 615, 0, 577, 615, 0, 577, 615, - 0, 577, 615, 0, 577, 615, 0, 577, 615, 0, - 577, 615, 0, 577, 615, 0, 577, 615, 0, 577, - 615, 0, 577, 615, 0, 577, 615, 0, 577, 615, - 0, 577, 615, 0, 577, 615, 0, 577, 615, 0, - 577, 615, 0, 577, 615, 0, 577, 615, 0, 577, - 615, 0, 577, 615, 0, 577, 615, 0, 577, 615, - 0, 577, 615, 0, 577, 615, 0, 577, 615, 0, - 577, 615, 0, 577, 615, 0, 577, 615, 0, 577, - 615, 0, 577, 615, 0, 577, 615, 0, 577, 615, - 0, 577, 615, 0, 577, 615, 0, 577, 615, 0, - 577, 615, 0, 577, 615, 0, 577, 615, 0, 577, - 615, 0, 577, 615, 0, 615, 0, 62, 0, 62, - 0, 62, 0, 62, 0, 62, 0, 62, 0, 62, - 0, 62, 0, 62, 0, 62, 0, 62, 0, 62, - 0, 62, 0, 62, 0, 62, 0, 62, 0, 62, - 0, 62, 0, 62, 0, 62, 0, 62, 0, 62, - 0, 62, 0, 62, 0, 62, 0, 62, 0, 62, - 0, 62, 0, 62, 0, 62, 0, 62, 0, 62, - 0, 62, 0, 62, 0, 62, 0, 62, 0, 62, - 0, 62, 0, 62, 0, 62, 0, 62, 0, 62, - 0, 62, 0, 62, 0, 106, 0, 106, 0, 106, - 0, 106, 0, 106, 0, 106, 0, 106, 0, 106, - 0, 106, 0, 106, 0, 106, 0, 106, 0, 106, - 0, 106, 0, 106, 0, 106, 0, 106, 0, 106, - 0, 106, 0, 106, 0, 106, 0, 106, 0, 106, - 0, 106, 0, 106, 0, 106, 0, 106, 0, 106, - 0, 106, 0, 106, 0, 106, 0, 106, 0, 106, - 0, 106, 0, 106, 0, 106, 0, 106, 0, 106, - 0, 106, 0, 106, 0, 106, 0, 106, 0, 106, - 0, 106, 0, 107, 0, 107, 0, 107, 0, 107, - 0, 107, 0, 107, 0, 107, 0, 107, 0, 107, - 0, 107, 0, 107, 0, 107, 0, 107, 0, 107, - 0, 107, 0, 107, 0, 107, 0, 107, 0, 107, - 0, 107, 0, 107, 0, 107, 0, 107, 0, 107, - 0, 107, 0, 107, 0, 107, 0, 107, 0, 107, - 0, 107, 0, 107, 0, 107, 0, 107, 0, 107, - 0, 107, 0, 107, 0, 107, 0, 107, 0, 107, - 0, 107, 0, 107, 0, 107, 0, 107, 0, 107, - 0, 105, 0, 105, 0, 105, 0, 105, 0, 105, - 0, 105, 0, 105, 0, 105, 0, 105, 0, 105, - 0, 105, 0, 105, 0, 105, 0, 105, 0, 105, - 0, 105, 0, 105, 0, 105, 0, 105, 0, 105, - 0, 105, 0, 105, 0, 105, 0, 105, 0, 105, - 0, 105, 0, 105, 0, 105, 0, 105, 0, 105, - 0, 105, 0, 105, 0, 105, 0, 105, 0, 105, - 0, 105, 0, 105, 0, 105, 0, 105, 0, 105, - 0, 105, 0, 105, 0, 105, 0, 105, 0, 103, - 0, 103, 0, 103, 0, 103, 0, 103, 0, 103, - 0, 103, 0, 103, 0, 103, 0, 103, 0, 103, - 0, 103, 0, 103, 0, 103, 0, 103, 0, 103, - 0, 103, 0, 103, 0, 103, 0, 103, 0, 103, - 0, 103, 0, 103, 0, 103, 0, 103, 0, 103, - 0, 103, 0, 103, 0, 103, 0, 103, 0, 103, - 0, 103, 0, 103, 0, 103, 0, 103, 0, 103, - 0, 103, 0, 103, 0, 103, 0, 103, 0, 103, - 0, 103, 0, 103, 0, 103, 0, 104, 0, 104, - 0, 104, 0, 104, 0, 104, 0, 104, 0, 104, - 0, 104, 0, 104, 0, 104, 0, 104, 0, 104, - 0, 104, 0, 104, 0, 104, 0, 104, 0, 104, - 0, 104, 0, 104, 0, 104, 0, 104, 0, 104, - 0, 104, 0, 104, 0, 104, 0, 104, 0, 104, - 0, 104, 0, 104, 0, 104, 0, 104, 0, 104, - 0, 104, 0, 104, 0, 104, 0, 104, 0, 104, - 0, 104, 0, 104, 0, 104, 0, 104, 0, 104, - 0, 104, 0, 104, 0, 124, 0, 124, 0, 124, - 0, 124, 0, 124, 0, 124, 0, 124, 0, 124, - 0, 124, 0, 124, 0, 124, 0, 124, 0, 124, - 0, 124, 0, 124, 0, 124, 0, 124, 0, 124, - 0, 124, 0, 124, 0, 124, 0, 124, 0, 124, - 0, 124, 0, 124, 0, 124, 0, 124, 0, 124, - 0, 124, 0, 124, 0, 124, 0, 124, 0, 124, - 0, 124, 0, 124, 0, 124, 0, 124, 0, 124, - 0, 124, 0, 124, 0, 124, 0, 124, 0, 124, - 0, 124, 0, 126, 0, 126, 0, 126, 0, 126, - 0, 126, 0, 126, 0, 126, 0, 126, 0, 126, - 0, 126, 0, 126, 0, 126, 0, 126, 0, 126, - 0, 126, 0, 126, 0, 126, 0, 126, 0, 126, - 0, 126, 0, 126, 0, 126, 0, 126, 0, 126, - 0, 126, 0, 126, 0, 126, 0, 126, 0, 126, - 0, 126, 0, 126, 0, 126, 0, 126, 0, 126, - 0, 126, 0, 126, 0, 126, 0, 126, 0, 126, - 0, 126, 0, 126, 0, 126, 0, 126, 0, 126, - 0, 127, 0, 127, 0, 127, 0, 127, 0, 127, - 0, 127, 0, 127, 0, 127, 0, 127, 0, 127, - 0, 127, 0, 127, 0, 127, 0, 127, 0, 127, - 0, 127, 0, 127, 0, 127, 0, 127, 0, 127, - 0, 127, 0, 127, 0, 127, 0, 127, 0, 127, - 0, 127, 0, 127, 0, 127, 0, 127, 0, 127, - 0, 127, 0, 127, 0, 127, 0, 127, 0, 127, - 0, 127, 0, 127, 0, 127, 0, 127, 0, 127, - 0, 127, 0, 127, 0, 127, 0, 127, 0, 128, - 0, 128, 0, 128, 0, 128, 0, 128, 0, 128, - 0, 128, 0, 128, 0, 128, 0, 128, 0, 128, - 0, 128, 0, 128, 0, 128, 0, 128, 0, 128, - 0, 128, 0, 128, 0, 128, 0, 128, 0, 128, - 0, 128, 0, 128, 0, 128, 0, 128, 0, 128, - 0, 128, 0, 128, 0, 128, 0, 128, 0, 128, - 0, 128, 0, 128, 0, 128, 0, 128, 0, 128, - 0, 128, 0, 128, 0, 128, 0, 128, 0, 128, - 0, 128, 0, 128, 0, 128, 0, 129, 0, 129, - 0, 129, 0, 129, 0, 129, 0, 129, 0, 129, - 0, 129, 0, 129, 0, 129, 0, 129, 0, 129, - 0, 129, 0, 129, 0, 129, 0, 129, 0, 129, - 0, 129, 0, 129, 0, 129, 0, 129, 0, 129, - 0, 129, 0, 129, 0, 129, 0, 129, 0, 129, - 0, 129, 0, 129, 0, 129, 0, 129, 0, 129, - 0, 129, 0, 129, 0, 129, 0, 129, 0, 129, - 0, 129, 0, 129, 0, 129, 0, 129, 0, 129, - 0, 129, 0, 129, 0, 130, 0, 130, 0, 130, - 0, 130, 0, 130, 0, 130, 0, 130, 0, 130, - 0, 130, 0, 130, 0, 130, 0, 130, 0, 130, - 0, 130, 0, 130, 0, 130, 0, 130, 0, 130, - 0, 130, 0, 130, 0, 130, 0, 130, 0, 130, - 0, 130, 0, 130, 0, 130, 0, 130, 0, 130, - 0, 130, 0, 130, 0, 130, 0, 130, 0, 130, - 0, 130, 0, 130, 0, 130, 0, 130, 0, 130, - 0, 130, 0, 130, 0, 130, 0, 130, 0, 130, - 0, 130, 0, 131, 0, 131, 0, 131, 0, 131, - 0, 131, 0, 131, 0, 131, 0, 131, 0, 131, - 0, 131, 0, 131, 0, 131, 0, 131, 0, 131, - 0, 131, 0, 131, 0, 131, 0, 131, 0, 131, - 0, 131, 0, 131, 0, 131, 0, 131, 0, 131, - 0, 131, 0, 131, 0, 131, 0, 131, 0, 131, - 0, 131, 0, 131, 0, 131, 0, 131, 0, 131, - 0, 131, 0, 131, 0, 131, 0, 131, 0, 131, - 0, 131, 0, 131, 0, 131, 0, 131, 0, 131, - 0, 160, 0, 160, 0, 160, 0, 160, 0, 160, - 0, 160, 0, 160, 0, 160, 0, 160, 0, 160, - 0, 160, 0, 160, 0, 160, 0, 160, 0, 160, - 0, 160, 0, 160, 0, 160, 0, 160, 0, 160, - 0, 160, 0, 160, 0, 160, 0, 160, 0, 160, - 0, 160, 0, 160, 0, 160, 0, 160, 0, 160, - 0, 160, 0, 160, 0, 160, 0, 160, 0, 160, - 0, 160, 0, 160, 0, 160, 0, 160, 0, 160, - 0, 160, 0, 160, 0, 160, 0, 160, 0, 585, - 0, 585, 0, 585, 0, 585, 0, 585, 0, 585, - 0, 585, 0, 585, 0, 585, 0, 585, 0, 585, - 0, 585, 0, 585, 0, 585, 0, 585, 0, 585, - 0, 585, 0, 585, 0, 585, 0, 585, 0, 585, - 0, 585, 0, 585, 0, 585, 0, 585, 0, 585, - 0, 585, 0, 585, 0, 585, 0, 585, 0, 585, - 0, 585, 0, 585, 0, 585, 0, 585, 0, 585, - 0, 585, 0, 585, 0, 585, 0, 585, 0, 585, - 0, 585, 0, 585, 0, 585, 0, 584, 0, 584, - 0, 584, 0, 584, 0, 584, 0, 584, 0, 584, - 0, 584, 0, 584, 0, 584, 0, 584, 0, 584, - 0, 584, 0, 584, 0, 584, 0, 584, 0, 584, - 0, 584, 0, 584, 0, 584, 0, 584, 0, 584, - 0, 584, 0, 584, 0, 584, 0, 584, 0, 584, - 0, 584, 0, 584, 0, 584, 0, 584, 0, 584, - 0, 584, 0, 584, 0, 584, 0, 584, 0, 584, - 0, 584, 0, 584, 0, 584, 0, 584, 0, 584, - 0, 584, 0, 584, 0, 582, 0, 582, 0, 582, - 0, 582, 0, 582, 0, 582, 0, 582, 0, 582, - 0, 582, 0, 582, 0, 582, 0, 582, 0, 582, - 0, 582, 0, 582, 0, 582, 0, 582, 0, 582, - 0, 582, 0, 582, 0, 582, 0, 582, 0, 582, - 0, 582, 0, 582, 0, 582, 0, 582, 0, 582, - 0, 582, 0, 582, 0, 582, 0, 582, 0, 582, - 0, 582, 0, 582, 0, 582, 0, 582, 0, 582, - 0, 582, 0, 582, 0, 582, 0, 582, 0, 582, - 0, 582, 0, 580, 0, 580, 0, 580, 0, 580, - 0, 580, 0, 580, 0, 580, 0, 580, 0, 580, - 0, 580, 0, 580, 0, 580, 0, 580, 0, 580, - 0, 580, 0, 580, 0, 580, 0, 580, 0, 580, - 0, 580, 0, 580, 0, 580, 0, 580, 0, 580, - 0, 580, 0, 580, 0, 580, 0, 580, 0, 580, - 0, 580, 0, 580, 0, 580, 0, 580, 0, 580, - 0, 580, 0, 580, 0, 580, 0, 580, 0, 580, - 0, 580, 0, 580, 0, 580, 0, 580, 0, 580, - 0, 581, 0, 581, 0, 581, 0, 581, 0, 581, - 0, 581, 0, 581, 0, 581, 0, 581, 0, 581, - 0, 581, 0, 581, 0, 581, 0, 581, 0, 581, - 0, 581, 0, 581, 0, 581, 0, 581, 0, 581, - 0, 581, 0, 581, 0, 581, 0, 581, 0, 581, - 0, 581, 0, 581, 0, 581, 0, 581, 0, 581, - 0, 581, 0, 581, 0, 581, 0, 581, 0, 581, - 0, 581, 0, 581, 0, 581, 0, 581, 0, 581, - 0, 581, 0, 581, 0, 581, 0, 581, 0, 583, - 0, 583, 0, 583, 0, 583, 0, 583, 0, 583, - 0, 583, 0, 583, 0, 583, 0, 583, 0, 583, - 0, 583, 0, 583, 0, 583, 0, 583, 0, 583, - 0, 583, 0, 583, 0, 583, 0, 583, 0, 583, - 0, 583, 0, 583, 0, 583, 0, 583, 0, 583, - 0, 583, 0, 583, 0, 583, 0, 583, 0, 583, - 0, 583, 0, 583, 0, 583, 0, 583, 0, 583, - 0, 583, 0, 583, 0, 583, 0, 583, 0, 583, - 0, 583, 0, 583, 0, 583, 0, 579, 0, 579, - 0, 579, 0, 579, 0, 579, 0, 579, 0, 579, - 0, 579, 0, 579, 0, 579, 0, 579, 0, 579, - 0, 579, 0, 579, 0, 579, 0, 579, 0, 579, - 0, 579, 0, 579, 0, 579, 0, 579, 0, 579, - 0, 579, 0, 579, 0, 579, 0, 579, 0, 579, - 0, 579, 0, 579, 0, 579, 0, 579, 0, 579, - 0, 579, 0, 579, 0, 579, 0, 579, 0, 579, - 0, 579, 0, 579, 0, 579, 0, 579, 0, 579, - 0, 579, 0, 579, 0, 578, 0, 578, 0, 578, - 0, 578, 0, 578, 0, 578, 0, 578, 0, 578, - 0, 578, 0, 578, 0, 578, 0, 578, 0, 578, - 0, 578, 0, 578, 0, 578, 0, 578, 0, 578, - 0, 578, 0, 578, 0, 578, 0, 578, 0, 578, - 0, 578, 0, 578, 0, 578, 0, 578, 0, 578, - 0, 578, 0, 578, 0, 578, 0, 578, 0, 578, - 0, 578, 0, 578, 0, 578, 0, 578, 0, 578, - 0, 578, 0, 578, 0, 578, 0, 578, 0, 578, - 0, 578, 0, 586, 0, 586, 0, 586, 0, 586, - 0, 586, 0, 586, 0, 586, 0, 586, 0, 586, - 0, 586, 0, 586, 0, 586, 0, 586, 0, 586, - 0, 586, 0, 586, 0, 586, 0, 586, 0, 586, - 0, 586, 0, 586, 0, 586, 0, 586, 0, 586, - 0, 586, 0, 586, 0, 586, 0, 586, 0, 586, - 0, 586, 0, 586, 0, 586, 0, 586, 0, 586, - 0, 586, 0, 586, 0, 586, 0, 586, 0, 586, - 0, 586, 0, 586, 0, 586, 0, 586, 0, 586, - 0, 144, 0, 144, 0, 144, 0, 144, 0, 144, - 0, 144, 0, 144, 0, 144, 0, 144, 0, 144, - 0, 144, 0, 144, 0, 144, 0, 144, 0, 144, - 0, 144, 0, 144, 0, 144, 0, 144, 0, 144, - 0, 144, 0, 144, 0, 144, 0, 144, 0, 144, - 0, 144, 0, 144, 0, 144, 0, 144, 0, 144, - 0, 144, 0, 144, 0, 144, 0, 144, 0, 144, - 0, 144, 0, 144, 0, 144, 0, 144, 0, 144, - 0, 144, 0, 144, 0, 144, 0, 144, 0, 614, - 0, 614, 0, 614, 0, 614, 0, 614, 0, 614, - 0, 614, 0, 614, 0, 614, 0, 614, 0, 614, - 0, 614, 0, 614, 0, 614, 0, 614, 0, 614, - 0, 614, 0, 614, 0, 614, 0, 614, 0, 614, - 0, 614, 0, 614, 0, 614, 0, 614, 0, 614, - 0, 614, 0, 614, 0, 614, 0, 614, 0, 614, - 0, 614, 0, 614, 0, 614, 0, 614, 0, 614, - 0, 614, 0, 614, 0, 614, 0, 614, 0, 614, - 0, 614, 0, 614, 0, 614, 0, 612, 0, 612, - 0, 612, 0, 612, 0, 612, 0, 612, 0, 612, - 0, 612, 0, 612, 0, 612, 0, 612, 0, 612, - 0, 612, 0, 612, 0, 612, 0, 612, 0, 612, - 0, 612, 0, 612, 0, 612, 0, 612, 0, 612, - 0, 612, 0, 612, 0, 612, 0, 612, 0, 612, - 0, 612, 0, 612, 0, 612, 0, 612, 0, 612, - 0, 612, 0, 612, 0, 612, 0, 612, 0, 612, - 0, 612, 0, 612, 0, 612, 0, 612, 0, 612, - 0, 612, 0, 612, 0, 611, 0, 611, 0, 611, - 0, 611, 0, 611, 0, 611, 0, 611, 0, 611, - 0, 611, 0, 611, 0, 611, 0, 611, 0, 611, - 0, 611, 0, 611, 0, 611, 0, 611, 0, 611, - 0, 611, 0, 611, 0, 611, 0, 611, 0, 611, - 0, 611, 0, 611, 0, 611, 0, 611, 0, 611, - 0, 611, 0, 611, 0, 611, 0, 611, 0, 611, - 0, 611, 0, 611, 0, 611, 0, 611, 0, 611, - 0, 611, 0, 611, 0, 611, 0, 611, 0, 611, - 0, 611, 0, 613, 0, 613, 0, 613, 0, 613, - 0, 613, 0, 613, 0, 613, 0, 613, 0, 613, - 0, 613, 0, 613, 0, 613, 0, 613, 0, 613, - 0, 613, 0, 613, 0, 613, 0, 613, 0, 613, - 0, 613, 0, 613, 0, 613, 0, 613, 0, 613, - 0, 613, 0, 613, 0, 613, 0, 613, 0, 613, - 0, 613, 0, 613, 0, 613, 0, 613, 0, 613, - 0, 613, 0, 613, 0, 613, 0, 613, 0, 613, - 0, 613, 0, 613, 0, 613, 0, 613, 0, 613, - 0, 610, 0, 610, 0, 610, 0, 610, 0, 610, - 0, 610, 0, 610, 0, 610, 0, 610, 0, 610, - 0, 610, 0, 610, 0, 610, 0, 610, 0, 610, - 0, 610, 0, 610, 0, 610, 0, 610, 0, 610, - 0, 610, 0, 610, 0, 610, 0, 610, 0, 610, - 0, 610, 0, 610, 0, 610, 0, 610, 0, 610, - 0, 610, 0, 610, 0, 610, 0, 610, 0, 610, - 0, 610, 0, 610, 0, 610, 0, 610, 0, 610, - 0, 610, 0, 610, 0, 610, 0, 610, 0, 609, - 0, 609, 0, 609, 0, 609, 0, 609, 0, 609, - 0, 609, 0, 609, 0, 609, 0, 609, 0, 609, - 0, 609, 0, 609, 0, 609, 0, 609, 0, 609, - 0, 609, 0, 609, 0, 609, 0, 609, 0, 609, - 0, 609, 0, 609, 0, 609, 0, 609, 0, 609, - 0, 609, 0, 609, 0, 609, 0, 609, 0, 609, - 0, 609, 0, 609, 0, 609, 0, 609, 0, 609, - 0, 609, 0, 609, 0, 609, 0, 609, 0, 609, - 0, 609, 0, 609, 0, 609, 0, 504, 0, 504, - 0, 454, 0, 454, 0, 455, 0, 42, 0, 490, - 0, 490, 0, 490, 0, 616, 0, 386, 0, 565, - 0, 565, 0, 565, 0, 616, 0, 339, 0, 486, - 0 + 0, 391, 0, 391, 0, 391, 0, 391, 0, 382, + 0, 382, 0, 405, 0, 466, 0, 466, 0, 622, + 0, 622, 0, 622, 0, 622, 0, 622, 0, 622, + 0, 622, 0, 622, 0, 622, 0, 622, 0, 622, + 0, 622, 0, 622, 0, 622, 0, 622, 0, 622, + 0, 622, 0, 622, 0, 622, 0, 622, 0, 622, + 0, 622, 0, 622, 0, 622, 0, 622, 0, 622, + 0, 622, 0, 622, 0, 622, 0, 622, 0, 622, + 0, 622, 0, 622, 0, 622, 0, 622, 0, 622, + 0, 622, 0, 622, 0, 622, 0, 622, 0, 622, + 0, 622, 0, 622, 0, 622, 0, 622, 0, 622, + 0, 622, 0, 622, 0, 622, 0, 622, 0, 622, + 0, 622, 0, 622, 0, 622, 0, 622, 0, 622, + 0, 622, 0, 622, 0, 622, 0, 622, 0, 622, + 0, 622, 0, 622, 0, 622, 0, 622, 0, 622, + 0, 622, 0, 622, 0, 622, 0, 622, 0, 391, + 0, 391, 0, 391, 0, 391, 0, 405, 0, 46, + 0, 46, 0, 46, 0, 46, 0, 46, 0, 46, + 0, 46, 0, 46, 0, 46, 0, 46, 0, 46, + 0, 46, 0, 46, 0, 46, 0, 46, 0, 46, + 0, 46, 0, 46, 0, 46, 0, 46, 0, 46, + 0, 46, 0, 46, 0, 46, 0, 46, 0, 46, + 0, 46, 0, 46, 0, 46, 0, 46, 0, 46, + 0, 46, 0, 46, 0, 46, 0, 46, 0, 46, + 0, 46, 0, 46, 0, 46, 0, 46, 0, 46, + 0, 46, 0, 46, 0, 46, 0, 46, 0, 46, + 0, 46, 0, 55, 0, 55, 0, 55, 0, 55, + 0, 55, 0, 55, 0, 55, 0, 55, 0, 55, + 0, 55, 0, 55, 0, 55, 0, 55, 0, 55, + 0, 55, 0, 55, 0, 55, 0, 55, 0, 55, + 0, 55, 0, 55, 0, 55, 0, 55, 0, 55, + 0, 55, 0, 55, 0, 55, 0, 55, 0, 55, + 0, 55, 0, 55, 0, 55, 0, 55, 0, 55, + 0, 55, 0, 55, 0, 55, 0, 55, 0, 55, + 0, 55, 0, 55, 0, 55, 0, 55, 0, 55, + 0, 55, 0, 55, 0, 55, 0, 56, 0, 56, + 0, 56, 0, 56, 0, 56, 0, 56, 0, 56, + 0, 56, 0, 56, 0, 56, 0, 56, 0, 56, + 0, 56, 0, 56, 0, 56, 0, 56, 0, 56, + 0, 56, 0, 56, 0, 56, 0, 56, 0, 56, + 0, 56, 0, 56, 0, 56, 0, 56, 0, 56, + 0, 56, 0, 56, 0, 56, 0, 56, 0, 56, + 0, 56, 0, 56, 0, 56, 0, 56, 0, 56, + 0, 56, 0, 56, 0, 56, 0, 56, 0, 56, + 0, 56, 0, 56, 0, 56, 0, 56, 0, 56, + 0, 57, 0, 57, 0, 57, 0, 57, 0, 57, + 0, 57, 0, 57, 0, 57, 0, 57, 0, 57, + 0, 57, 0, 57, 0, 57, 0, 57, 0, 57, + 0, 57, 0, 57, 0, 57, 0, 57, 0, 57, + 0, 57, 0, 57, 0, 57, 0, 57, 0, 57, + 0, 57, 0, 57, 0, 57, 0, 57, 0, 57, + 0, 57, 0, 57, 0, 57, 0, 57, 0, 57, + 0, 57, 0, 57, 0, 57, 0, 57, 0, 57, + 0, 57, 0, 57, 0, 57, 0, 57, 0, 57, + 0, 57, 0, 57, 0, 58, 0, 58, 0, 58, + 0, 58, 0, 58, 0, 58, 0, 58, 0, 58, + 0, 58, 0, 58, 0, 58, 0, 58, 0, 58, + 0, 58, 0, 58, 0, 58, 0, 58, 0, 58, + 0, 58, 0, 58, 0, 58, 0, 58, 0, 58, + 0, 58, 0, 58, 0, 58, 0, 58, 0, 58, + 0, 58, 0, 58, 0, 58, 0, 58, 0, 58, + 0, 58, 0, 58, 0, 58, 0, 58, 0, 58, + 0, 58, 0, 58, 0, 58, 0, 58, 0, 58, + 0, 58, 0, 58, 0, 58, 0, 58, 0, 623, + 0, 623, 0, 623, 0, 623, 0, 623, 0, 623, + 0, 623, 0, 623, 0, 623, 0, 623, 0, 623, + 0, 623, 0, 623, 0, 623, 0, 623, 0, 623, + 0, 623, 0, 623, 0, 623, 0, 623, 0, 623, + 0, 623, 0, 623, 0, 623, 0, 623, 0, 623, + 0, 623, 0, 623, 0, 623, 0, 623, 0, 623, + 0, 623, 0, 623, 0, 623, 0, 623, 0, 623, + 0, 623, 0, 623, 0, 623, 0, 623, 0, 623, + 0, 623, 0, 623, 0, 623, 0, 623, 0, 623, + 0, 623, 0, 584, 622, 0, 584, 622, 0, 584, + 622, 0, 584, 622, 0, 584, 622, 0, 584, 622, + 0, 584, 622, 0, 584, 622, 0, 584, 622, 0, + 584, 622, 0, 584, 622, 0, 584, 622, 0, 584, + 622, 0, 584, 622, 0, 584, 622, 0, 584, 622, + 0, 584, 622, 0, 584, 622, 0, 584, 622, 0, + 584, 622, 0, 584, 622, 0, 584, 622, 0, 584, + 622, 0, 584, 622, 0, 584, 622, 0, 584, 622, + 0, 584, 622, 0, 584, 622, 0, 584, 622, 0, + 584, 622, 0, 584, 622, 0, 584, 622, 0, 584, + 622, 0, 584, 622, 0, 584, 622, 0, 584, 622, + 0, 584, 622, 0, 584, 622, 0, 584, 622, 0, + 584, 622, 0, 584, 622, 0, 584, 622, 0, 584, + 622, 0, 584, 622, 0, 584, 622, 0, 584, 622, + 0, 584, 622, 0, 622, 0, 65, 0, 65, 0, + 65, 0, 65, 0, 65, 0, 65, 0, 65, 0, + 65, 0, 65, 0, 65, 0, 65, 0, 65, 0, + 65, 0, 65, 0, 65, 0, 65, 0, 65, 0, + 65, 0, 65, 0, 65, 0, 65, 0, 65, 0, + 65, 0, 65, 0, 65, 0, 65, 0, 65, 0, + 65, 0, 65, 0, 65, 0, 65, 0, 65, 0, + 65, 0, 65, 0, 65, 0, 65, 0, 65, 0, + 65, 0, 65, 0, 65, 0, 65, 0, 65, 0, + 65, 0, 65, 0, 65, 0, 65, 0, 65, 0, + 109, 0, 109, 0, 109, 0, 109, 0, 109, 0, + 109, 0, 109, 0, 109, 0, 109, 0, 109, 0, + 109, 0, 109, 0, 109, 0, 109, 0, 109, 0, + 109, 0, 109, 0, 109, 0, 109, 0, 109, 0, + 109, 0, 109, 0, 109, 0, 109, 0, 109, 0, + 109, 0, 109, 0, 109, 0, 109, 0, 109, 0, + 109, 0, 109, 0, 109, 0, 109, 0, 109, 0, + 109, 0, 109, 0, 109, 0, 109, 0, 109, 0, + 109, 0, 109, 0, 109, 0, 109, 0, 109, 0, + 109, 0, 109, 0, 110, 0, 110, 0, 110, 0, + 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, + 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, + 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, + 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, + 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, + 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, + 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, + 110, 0, 110, 0, 110, 0, 110, 0, 110, 0, + 110, 0, 110, 0, 110, 0, 110, 0, 108, 0, + 108, 0, 108, 0, 108, 0, 108, 0, 108, 0, + 108, 0, 108, 0, 108, 0, 108, 0, 108, 0, + 108, 0, 108, 0, 108, 0, 108, 0, 108, 0, + 108, 0, 108, 0, 108, 0, 108, 0, 108, 0, + 108, 0, 108, 0, 108, 0, 108, 0, 108, 0, + 108, 0, 108, 0, 108, 0, 108, 0, 108, 0, + 108, 0, 108, 0, 108, 0, 108, 0, 108, 0, + 108, 0, 108, 0, 108, 0, 108, 0, 108, 0, + 108, 0, 108, 0, 108, 0, 108, 0, 108, 0, + 108, 0, 106, 0, 106, 0, 106, 0, 106, 0, + 106, 0, 106, 0, 106, 0, 106, 0, 106, 0, + 106, 0, 106, 0, 106, 0, 106, 0, 106, 0, + 106, 0, 106, 0, 106, 0, 106, 0, 106, 0, + 106, 0, 106, 0, 106, 0, 106, 0, 106, 0, + 106, 0, 106, 0, 106, 0, 106, 0, 106, 0, + 106, 0, 106, 0, 106, 0, 106, 0, 106, 0, + 106, 0, 106, 0, 106, 0, 106, 0, 106, 0, + 106, 0, 106, 0, 106, 0, 106, 0, 106, 0, + 106, 0, 106, 0, 106, 0, 107, 0, 107, 0, + 107, 0, 107, 0, 107, 0, 107, 0, 107, 0, + 107, 0, 107, 0, 107, 0, 107, 0, 107, 0, + 107, 0, 107, 0, 107, 0, 107, 0, 107, 0, + 107, 0, 107, 0, 107, 0, 107, 0, 107, 0, + 107, 0, 107, 0, 107, 0, 107, 0, 107, 0, + 107, 0, 107, 0, 107, 0, 107, 0, 107, 0, + 107, 0, 107, 0, 107, 0, 107, 0, 107, 0, + 107, 0, 107, 0, 107, 0, 107, 0, 107, 0, + 107, 0, 107, 0, 107, 0, 107, 0, 107, 0, + 127, 0, 127, 0, 127, 0, 127, 0, 127, 0, + 127, 0, 127, 0, 127, 0, 127, 0, 127, 0, + 127, 0, 127, 0, 127, 0, 127, 0, 127, 0, + 127, 0, 127, 0, 127, 0, 127, 0, 127, 0, + 127, 0, 127, 0, 127, 0, 127, 0, 127, 0, + 127, 0, 127, 0, 127, 0, 127, 0, 127, 0, + 127, 0, 127, 0, 127, 0, 127, 0, 127, 0, + 127, 0, 127, 0, 127, 0, 127, 0, 127, 0, + 127, 0, 127, 0, 127, 0, 127, 0, 127, 0, + 127, 0, 127, 0, 129, 0, 129, 0, 129, 0, + 129, 0, 129, 0, 129, 0, 129, 0, 129, 0, + 129, 0, 129, 0, 129, 0, 129, 0, 129, 0, + 129, 0, 129, 0, 129, 0, 129, 0, 129, 0, + 129, 0, 129, 0, 129, 0, 129, 0, 129, 0, + 129, 0, 129, 0, 129, 0, 129, 0, 129, 0, + 129, 0, 129, 0, 129, 0, 129, 0, 129, 0, + 129, 0, 129, 0, 129, 0, 129, 0, 129, 0, + 129, 0, 129, 0, 129, 0, 129, 0, 129, 0, + 129, 0, 129, 0, 129, 0, 129, 0, 130, 0, + 130, 0, 130, 0, 130, 0, 130, 0, 130, 0, + 130, 0, 130, 0, 130, 0, 130, 0, 130, 0, + 130, 0, 130, 0, 130, 0, 130, 0, 130, 0, + 130, 0, 130, 0, 130, 0, 130, 0, 130, 0, + 130, 0, 130, 0, 130, 0, 130, 0, 130, 0, + 130, 0, 130, 0, 130, 0, 130, 0, 130, 0, + 130, 0, 130, 0, 130, 0, 130, 0, 130, 0, + 130, 0, 130, 0, 130, 0, 130, 0, 130, 0, + 130, 0, 130, 0, 130, 0, 130, 0, 130, 0, + 130, 0, 131, 0, 131, 0, 131, 0, 131, 0, + 131, 0, 131, 0, 131, 0, 131, 0, 131, 0, + 131, 0, 131, 0, 131, 0, 131, 0, 131, 0, + 131, 0, 131, 0, 131, 0, 131, 0, 131, 0, + 131, 0, 131, 0, 131, 0, 131, 0, 131, 0, + 131, 0, 131, 0, 131, 0, 131, 0, 131, 0, + 131, 0, 131, 0, 131, 0, 131, 0, 131, 0, + 131, 0, 131, 0, 131, 0, 131, 0, 131, 0, + 131, 0, 131, 0, 131, 0, 131, 0, 131, 0, + 131, 0, 131, 0, 131, 0, 132, 0, 132, 0, + 132, 0, 132, 0, 132, 0, 132, 0, 132, 0, + 132, 0, 132, 0, 132, 0, 132, 0, 132, 0, + 132, 0, 132, 0, 132, 0, 132, 0, 132, 0, + 132, 0, 132, 0, 132, 0, 132, 0, 132, 0, + 132, 0, 132, 0, 132, 0, 132, 0, 132, 0, + 132, 0, 132, 0, 132, 0, 132, 0, 132, 0, + 132, 0, 132, 0, 132, 0, 132, 0, 132, 0, + 132, 0, 132, 0, 132, 0, 132, 0, 132, 0, + 132, 0, 132, 0, 132, 0, 132, 0, 132, 0, + 133, 0, 133, 0, 133, 0, 133, 0, 133, 0, + 133, 0, 133, 0, 133, 0, 133, 0, 133, 0, + 133, 0, 133, 0, 133, 0, 133, 0, 133, 0, + 133, 0, 133, 0, 133, 0, 133, 0, 133, 0, + 133, 0, 133, 0, 133, 0, 133, 0, 133, 0, + 133, 0, 133, 0, 133, 0, 133, 0, 133, 0, + 133, 0, 133, 0, 133, 0, 133, 0, 133, 0, + 133, 0, 133, 0, 133, 0, 133, 0, 133, 0, + 133, 0, 133, 0, 133, 0, 133, 0, 133, 0, + 133, 0, 133, 0, 134, 0, 134, 0, 134, 0, + 134, 0, 134, 0, 134, 0, 134, 0, 134, 0, + 134, 0, 134, 0, 134, 0, 134, 0, 134, 0, + 134, 0, 134, 0, 134, 0, 134, 0, 134, 0, + 134, 0, 134, 0, 134, 0, 134, 0, 134, 0, + 134, 0, 134, 0, 134, 0, 134, 0, 134, 0, + 134, 0, 134, 0, 134, 0, 134, 0, 134, 0, + 134, 0, 134, 0, 134, 0, 134, 0, 134, 0, + 134, 0, 134, 0, 134, 0, 134, 0, 134, 0, + 134, 0, 134, 0, 134, 0, 134, 0, 163, 0, + 163, 0, 163, 0, 163, 0, 163, 0, 163, 0, + 163, 0, 163, 0, 163, 0, 163, 0, 163, 0, + 163, 0, 163, 0, 163, 0, 163, 0, 163, 0, + 163, 0, 163, 0, 163, 0, 163, 0, 163, 0, + 163, 0, 163, 0, 163, 0, 163, 0, 163, 0, + 163, 0, 163, 0, 163, 0, 163, 0, 163, 0, + 163, 0, 163, 0, 163, 0, 163, 0, 163, 0, + 163, 0, 163, 0, 163, 0, 163, 0, 163, 0, + 163, 0, 163, 0, 163, 0, 163, 0, 163, 0, + 163, 0, 592, 0, 592, 0, 592, 0, 592, 0, + 592, 0, 592, 0, 592, 0, 592, 0, 592, 0, + 592, 0, 592, 0, 592, 0, 592, 0, 592, 0, + 592, 0, 592, 0, 592, 0, 592, 0, 592, 0, + 592, 0, 592, 0, 592, 0, 592, 0, 592, 0, + 592, 0, 592, 0, 592, 0, 592, 0, 592, 0, + 592, 0, 592, 0, 592, 0, 592, 0, 592, 0, + 592, 0, 592, 0, 592, 0, 592, 0, 592, 0, + 592, 0, 592, 0, 592, 0, 592, 0, 592, 0, + 592, 0, 592, 0, 592, 0, 591, 0, 591, 0, + 591, 0, 591, 0, 591, 0, 591, 0, 591, 0, + 591, 0, 591, 0, 591, 0, 591, 0, 591, 0, + 591, 0, 591, 0, 591, 0, 591, 0, 591, 0, + 591, 0, 591, 0, 591, 0, 591, 0, 591, 0, + 591, 0, 591, 0, 591, 0, 591, 0, 591, 0, + 591, 0, 591, 0, 591, 0, 591, 0, 591, 0, + 591, 0, 591, 0, 591, 0, 591, 0, 591, 0, + 591, 0, 591, 0, 591, 0, 591, 0, 591, 0, + 591, 0, 591, 0, 591, 0, 591, 0, 591, 0, + 589, 0, 589, 0, 589, 0, 589, 0, 589, 0, + 589, 0, 589, 0, 589, 0, 589, 0, 589, 0, + 589, 0, 589, 0, 589, 0, 589, 0, 589, 0, + 589, 0, 589, 0, 589, 0, 589, 0, 589, 0, + 589, 0, 589, 0, 589, 0, 589, 0, 589, 0, + 589, 0, 589, 0, 589, 0, 589, 0, 589, 0, + 589, 0, 589, 0, 589, 0, 589, 0, 589, 0, + 589, 0, 589, 0, 589, 0, 589, 0, 589, 0, + 589, 0, 589, 0, 589, 0, 589, 0, 589, 0, + 589, 0, 589, 0, 587, 0, 587, 0, 587, 0, + 587, 0, 587, 0, 587, 0, 587, 0, 587, 0, + 587, 0, 587, 0, 587, 0, 587, 0, 587, 0, + 587, 0, 587, 0, 587, 0, 587, 0, 587, 0, + 587, 0, 587, 0, 587, 0, 587, 0, 587, 0, + 587, 0, 587, 0, 587, 0, 587, 0, 587, 0, + 587, 0, 587, 0, 587, 0, 587, 0, 587, 0, + 587, 0, 587, 0, 587, 0, 587, 0, 587, 0, + 587, 0, 587, 0, 587, 0, 587, 0, 587, 0, + 587, 0, 587, 0, 587, 0, 587, 0, 588, 0, + 588, 0, 588, 0, 588, 0, 588, 0, 588, 0, + 588, 0, 588, 0, 588, 0, 588, 0, 588, 0, + 588, 0, 588, 0, 588, 0, 588, 0, 588, 0, + 588, 0, 588, 0, 588, 0, 588, 0, 588, 0, + 588, 0, 588, 0, 588, 0, 588, 0, 588, 0, + 588, 0, 588, 0, 588, 0, 588, 0, 588, 0, + 588, 0, 588, 0, 588, 0, 588, 0, 588, 0, + 588, 0, 588, 0, 588, 0, 588, 0, 588, 0, + 588, 0, 588, 0, 588, 0, 588, 0, 588, 0, + 588, 0, 590, 0, 590, 0, 590, 0, 590, 0, + 590, 0, 590, 0, 590, 0, 590, 0, 590, 0, + 590, 0, 590, 0, 590, 0, 590, 0, 590, 0, + 590, 0, 590, 0, 590, 0, 590, 0, 590, 0, + 590, 0, 590, 0, 590, 0, 590, 0, 590, 0, + 590, 0, 590, 0, 590, 0, 590, 0, 590, 0, + 590, 0, 590, 0, 590, 0, 590, 0, 590, 0, + 590, 0, 590, 0, 590, 0, 590, 0, 590, 0, + 590, 0, 590, 0, 590, 0, 590, 0, 590, 0, + 590, 0, 590, 0, 590, 0, 586, 0, 586, 0, + 586, 0, 586, 0, 586, 0, 586, 0, 586, 0, + 586, 0, 586, 0, 586, 0, 586, 0, 586, 0, + 586, 0, 586, 0, 586, 0, 586, 0, 586, 0, + 586, 0, 586, 0, 586, 0, 586, 0, 586, 0, + 586, 0, 586, 0, 586, 0, 586, 0, 586, 0, + 586, 0, 586, 0, 586, 0, 586, 0, 586, 0, + 586, 0, 586, 0, 586, 0, 586, 0, 586, 0, + 586, 0, 586, 0, 586, 0, 586, 0, 586, 0, + 586, 0, 586, 0, 586, 0, 586, 0, 586, 0, + 585, 0, 585, 0, 585, 0, 585, 0, 585, 0, + 585, 0, 585, 0, 585, 0, 585, 0, 585, 0, + 585, 0, 585, 0, 585, 0, 585, 0, 585, 0, + 585, 0, 585, 0, 585, 0, 585, 0, 585, 0, + 585, 0, 585, 0, 585, 0, 585, 0, 585, 0, + 585, 0, 585, 0, 585, 0, 585, 0, 585, 0, + 585, 0, 585, 0, 585, 0, 585, 0, 585, 0, + 585, 0, 585, 0, 585, 0, 585, 0, 585, 0, + 585, 0, 585, 0, 585, 0, 585, 0, 585, 0, + 585, 0, 585, 0, 593, 0, 593, 0, 593, 0, + 593, 0, 593, 0, 593, 0, 593, 0, 593, 0, + 593, 0, 593, 0, 593, 0, 593, 0, 593, 0, + 593, 0, 593, 0, 593, 0, 593, 0, 593, 0, + 593, 0, 593, 0, 593, 0, 593, 0, 593, 0, + 593, 0, 593, 0, 593, 0, 593, 0, 593, 0, + 593, 0, 593, 0, 593, 0, 593, 0, 593, 0, + 593, 0, 593, 0, 593, 0, 593, 0, 593, 0, + 593, 0, 593, 0, 593, 0, 593, 0, 593, 0, + 593, 0, 593, 0, 593, 0, 593, 0, 147, 0, + 147, 0, 147, 0, 147, 0, 147, 0, 147, 0, + 147, 0, 147, 0, 147, 0, 147, 0, 147, 0, + 147, 0, 147, 0, 147, 0, 147, 0, 147, 0, + 147, 0, 147, 0, 147, 0, 147, 0, 147, 0, + 147, 0, 147, 0, 147, 0, 147, 0, 147, 0, + 147, 0, 147, 0, 147, 0, 147, 0, 147, 0, + 147, 0, 147, 0, 147, 0, 147, 0, 147, 0, + 147, 0, 147, 0, 147, 0, 147, 0, 147, 0, + 147, 0, 147, 0, 147, 0, 147, 0, 147, 0, + 147, 0, 621, 0, 621, 0, 621, 0, 621, 0, + 621, 0, 621, 0, 621, 0, 621, 0, 621, 0, + 621, 0, 621, 0, 621, 0, 621, 0, 621, 0, + 621, 0, 621, 0, 621, 0, 621, 0, 621, 0, + 621, 0, 621, 0, 621, 0, 621, 0, 621, 0, + 621, 0, 621, 0, 621, 0, 621, 0, 621, 0, + 621, 0, 621, 0, 621, 0, 621, 0, 621, 0, + 621, 0, 621, 0, 621, 0, 621, 0, 621, 0, + 621, 0, 621, 0, 621, 0, 621, 0, 621, 0, + 621, 0, 621, 0, 621, 0, 619, 0, 619, 0, + 619, 0, 619, 0, 619, 0, 619, 0, 619, 0, + 619, 0, 619, 0, 619, 0, 619, 0, 619, 0, + 619, 0, 619, 0, 619, 0, 619, 0, 619, 0, + 619, 0, 619, 0, 619, 0, 619, 0, 619, 0, + 619, 0, 619, 0, 619, 0, 619, 0, 619, 0, + 619, 0, 619, 0, 619, 0, 619, 0, 619, 0, + 619, 0, 619, 0, 619, 0, 619, 0, 619, 0, + 619, 0, 619, 0, 619, 0, 619, 0, 619, 0, + 619, 0, 619, 0, 619, 0, 619, 0, 619, 0, + 618, 0, 618, 0, 618, 0, 618, 0, 618, 0, + 618, 0, 618, 0, 618, 0, 618, 0, 618, 0, + 618, 0, 618, 0, 618, 0, 618, 0, 618, 0, + 618, 0, 618, 0, 618, 0, 618, 0, 618, 0, + 618, 0, 618, 0, 618, 0, 618, 0, 618, 0, + 618, 0, 618, 0, 618, 0, 618, 0, 618, 0, + 618, 0, 618, 0, 618, 0, 618, 0, 618, 0, + 618, 0, 618, 0, 618, 0, 618, 0, 618, 0, + 618, 0, 618, 0, 618, 0, 618, 0, 618, 0, + 618, 0, 618, 0, 620, 0, 620, 0, 620, 0, + 620, 0, 620, 0, 620, 0, 620, 0, 620, 0, + 620, 0, 620, 0, 620, 0, 620, 0, 620, 0, + 620, 0, 620, 0, 620, 0, 620, 0, 620, 0, + 620, 0, 620, 0, 620, 0, 620, 0, 620, 0, + 620, 0, 620, 0, 620, 0, 620, 0, 620, 0, + 620, 0, 620, 0, 620, 0, 620, 0, 620, 0, + 620, 0, 620, 0, 620, 0, 620, 0, 620, 0, + 620, 0, 620, 0, 620, 0, 620, 0, 620, 0, + 620, 0, 620, 0, 620, 0, 620, 0, 617, 0, + 617, 0, 617, 0, 617, 0, 617, 0, 617, 0, + 617, 0, 617, 0, 617, 0, 617, 0, 617, 0, + 617, 0, 617, 0, 617, 0, 617, 0, 617, 0, + 617, 0, 617, 0, 617, 0, 617, 0, 617, 0, + 617, 0, 617, 0, 617, 0, 617, 0, 617, 0, + 617, 0, 617, 0, 617, 0, 617, 0, 617, 0, + 617, 0, 617, 0, 617, 0, 617, 0, 617, 0, + 617, 0, 617, 0, 617, 0, 617, 0, 617, 0, + 617, 0, 617, 0, 617, 0, 617, 0, 617, 0, + 617, 0, 616, 0, 616, 0, 616, 0, 616, 0, + 616, 0, 616, 0, 616, 0, 616, 0, 616, 0, + 616, 0, 616, 0, 616, 0, 616, 0, 616, 0, + 616, 0, 616, 0, 616, 0, 616, 0, 616, 0, + 616, 0, 616, 0, 616, 0, 616, 0, 616, 0, + 616, 0, 616, 0, 616, 0, 616, 0, 616, 0, + 616, 0, 616, 0, 616, 0, 616, 0, 616, 0, + 616, 0, 616, 0, 616, 0, 616, 0, 616, 0, + 616, 0, 616, 0, 616, 0, 616, 0, 616, 0, + 616, 0, 616, 0, 616, 0, 511, 0, 511, 0, + 459, 0, 459, 0, 460, 0, 497, 0, 497, 0, + 497, 0, 45, 0, 623, 0, 391, 0, 572, 0, + 572, 0, 572, 0, 623, 0, 342, 0, 493, 0 }; /* Error token number */ @@ -4287,136 +4473,136 @@ yyuserAction (yyRuleNum yyn, size_t yyrhslen, yyGLRStackItem* yyvsp, *yyvalp = yyvsp[YYFILL (1-yyrhslen)].yystate.yysemantics.yysval; switch (yyn) { - case 284: -#line 452 "src/parser_proc_grammar.y" /* glr.c:817 */ + case 287: +#line 427 "src/parser_proc_grammar.y" /* glr.c:817 */ { if ((*(struct psi_cpp_exp **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))) { psi_cpp_exp_exec((*(struct psi_cpp_exp **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval)), P->preproc, PSI_DATA(P)); psi_cpp_exp_free(&(*(struct psi_cpp_exp **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))); } } -#line 4299 "src/parser_proc.c" /* glr.c:817 */ +#line 4485 "src/parser_proc.c" /* glr.c:817 */ break; - case 285: -#line 458 "src/parser_proc_grammar.y" /* glr.c:817 */ + case 288: +#line 433 "src/parser_proc_grammar.y" /* glr.c:817 */ { char *libname = strdup((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))->text->val); P->file.libnames = psi_plist_add(P->file.libnames, &libname); } -#line 4308 "src/parser_proc.c" /* glr.c:817 */ +#line 4494 "src/parser_proc.c" /* glr.c:817 */ break; - case 286: -#line 462 "src/parser_proc_grammar.y" /* glr.c:817 */ + case 289: +#line 437 "src/parser_proc_grammar.y" /* glr.c:817 */ { psi_parser_proc_add_const(P, (*(struct psi_const **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))); } -#line 4316 "src/parser_proc.c" /* glr.c:817 */ +#line 4502 "src/parser_proc.c" /* glr.c:817 */ break; - case 287: -#line 465 "src/parser_proc_grammar.y" /* glr.c:817 */ + case 290: +#line 440 "src/parser_proc_grammar.y" /* glr.c:817 */ { psi_parser_proc_add_decl(P, (*(struct psi_decl **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))); } -#line 4324 "src/parser_proc.c" /* glr.c:817 */ +#line 4510 "src/parser_proc.c" /* glr.c:817 */ break; - case 288: -#line 468 "src/parser_proc_grammar.y" /* glr.c:817 */ + case 291: +#line 443 "src/parser_proc_grammar.y" /* glr.c:817 */ { psi_parser_proc_add_decl_extvars(P, (*(struct psi_plist **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))); } -#line 4332 "src/parser_proc.c" /* glr.c:817 */ +#line 4518 "src/parser_proc.c" /* glr.c:817 */ break; - case 289: -#line 471 "src/parser_proc_grammar.y" /* glr.c:817 */ + case 292: +#line 446 "src/parser_proc_grammar.y" /* glr.c:817 */ { if (P->flags & PSI_DEBUG) { P->error(PSI_DATA(P), (*(struct psi_decl **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))->func->token, PSI_NOTICE, "Ignored decl: %s", (*(struct psi_decl **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))->func->var->name->val); } psi_decl_free(&(*(struct psi_decl **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))); } -#line 4343 "src/parser_proc.c" /* glr.c:817 */ +#line 4529 "src/parser_proc.c" /* glr.c:817 */ break; - case 290: -#line 477 "src/parser_proc_grammar.y" /* glr.c:817 */ + case 293: +#line 452 "src/parser_proc_grammar.y" /* glr.c:817 */ { psi_parser_proc_add_typedef(P, (*(struct psi_decl_arg **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))); } -#line 4351 "src/parser_proc.c" /* glr.c:817 */ +#line 4537 "src/parser_proc.c" /* glr.c:817 */ break; - case 291: -#line 480 "src/parser_proc_grammar.y" /* glr.c:817 */ + case 294: +#line 455 "src/parser_proc_grammar.y" /* glr.c:817 */ { psi_parser_proc_add_struct(P, (*(struct psi_decl_struct **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))); } -#line 4359 "src/parser_proc.c" /* glr.c:817 */ +#line 4545 "src/parser_proc.c" /* glr.c:817 */ break; - case 292: -#line 483 "src/parser_proc_grammar.y" /* glr.c:817 */ + case 295: +#line 458 "src/parser_proc_grammar.y" /* glr.c:817 */ { psi_parser_proc_add_union(P, (*(struct psi_decl_union **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))); } -#line 4367 "src/parser_proc.c" /* glr.c:817 */ +#line 4553 "src/parser_proc.c" /* glr.c:817 */ break; - case 293: -#line 486 "src/parser_proc_grammar.y" /* glr.c:817 */ + case 296: +#line 461 "src/parser_proc_grammar.y" /* glr.c:817 */ { psi_parser_proc_add_enum(P, (*(struct psi_decl_enum **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))); } -#line 4375 "src/parser_proc.c" /* glr.c:817 */ +#line 4561 "src/parser_proc.c" /* glr.c:817 */ break; - case 294: -#line 489 "src/parser_proc_grammar.y" /* glr.c:817 */ + case 297: +#line 464 "src/parser_proc_grammar.y" /* glr.c:817 */ { psi_parser_proc_add_impl(P, (*(struct psi_impl **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))); } -#line 4383 "src/parser_proc.c" /* glr.c:817 */ +#line 4569 "src/parser_proc.c" /* glr.c:817 */ break; - case 295: -#line 495 "src/parser_proc_grammar.y" /* glr.c:817 */ + case 298: +#line 470 "src/parser_proc_grammar.y" /* glr.c:817 */ { (*(struct psi_token **)(&(*yyvalp))) = (*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-1)].yystate.yysemantics.yysval)); } -#line 4391 "src/parser_proc.c" /* glr.c:817 */ +#line 4577 "src/parser_proc.c" /* glr.c:817 */ break; - case 296: -#line 501 "src/parser_proc_grammar.y" /* glr.c:817 */ + case 299: +#line 476 "src/parser_proc_grammar.y" /* glr.c:817 */ { (*(struct psi_cpp_exp **)(&(*yyvalp))) = NULL; } -#line 4399 "src/parser_proc.c" /* glr.c:817 */ +#line 4585 "src/parser_proc.c" /* glr.c:817 */ break; - case 297: -#line 504 "src/parser_proc_grammar.y" /* glr.c:817 */ + case 300: +#line 479 "src/parser_proc_grammar.y" /* glr.c:817 */ { (*(struct psi_cpp_exp **)(&(*yyvalp))) = (*(struct psi_cpp_exp **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-1)].yystate.yysemantics.yysval)); } -#line 4407 "src/parser_proc.c" /* glr.c:817 */ +#line 4593 "src/parser_proc.c" /* glr.c:817 */ break; - case 298: -#line 510 "src/parser_proc_grammar.y" /* glr.c:817 */ + case 301: +#line 485 "src/parser_proc_grammar.y" /* glr.c:817 */ { if ((*(struct psi_plist **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))) { struct psi_token *msg = NULL; - + if (psi_plist_get((*(struct psi_plist **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval)), 0, &msg)) { size_t index = 1; struct psi_token *next; - msg = psi_token_copy(msg); + msg = psi_token_copy(msg); while (psi_plist_get((*(struct psi_plist **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval)), index++, &next)) { struct psi_token *old = msg; msg = psi_token_cat(" ", 2, msg, next); @@ -4424,422 +4610,445 @@ yyuserAction (yyRuleNum yyn, size_t yyrhslen, yyGLRStackItem* yyvsp, } } psi_plist_free((*(struct psi_plist **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))); - + (*(struct psi_cpp_exp **)(&(*yyvalp))) = psi_cpp_exp_init((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-1)].yystate.yysemantics.yysval))->type, msg); } else { (*(struct psi_cpp_exp **)(&(*yyvalp))) = psi_cpp_exp_init((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-1)].yystate.yysemantics.yysval))->type, NULL); } (*(struct psi_cpp_exp **)(&(*yyvalp)))->token = psi_token_copy((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-1)].yystate.yysemantics.yysval))); } -#line 4435 "src/parser_proc.c" /* glr.c:817 */ +#line 4621 "src/parser_proc.c" /* glr.c:817 */ break; - case 299: -#line 533 "src/parser_proc_grammar.y" /* glr.c:817 */ + case 302: +#line 508 "src/parser_proc_grammar.y" /* glr.c:817 */ { (*(struct psi_cpp_exp **)(&(*yyvalp))) = psi_cpp_exp_init((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-1)].yystate.yysemantics.yysval))->type, psi_token_copy((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval)))); (*(struct psi_cpp_exp **)(&(*yyvalp)))->token = psi_token_copy((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-1)].yystate.yysemantics.yysval))); } -#line 4444 "src/parser_proc.c" /* glr.c:817 */ +#line 4630 "src/parser_proc.c" /* glr.c:817 */ break; - case 300: -#line 537 "src/parser_proc_grammar.y" /* glr.c:817 */ + case 303: +#line 512 "src/parser_proc_grammar.y" /* glr.c:817 */ { (*(struct psi_cpp_exp **)(&(*yyvalp))) = psi_cpp_exp_init((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))->type, NULL); (*(struct psi_cpp_exp **)(&(*yyvalp)))->token = psi_token_copy((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))); } -#line 4453 "src/parser_proc.c" /* glr.c:817 */ +#line 4639 "src/parser_proc.c" /* glr.c:817 */ break; - case 301: -#line 541 "src/parser_proc_grammar.y" /* glr.c:817 */ + case 304: +#line 516 "src/parser_proc_grammar.y" /* glr.c:817 */ { (*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))->type = PSI_T_NAME; (*(struct psi_cpp_exp **)(&(*yyvalp))) = psi_cpp_exp_init((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-1)].yystate.yysemantics.yysval))->type, psi_token_copy((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval)))); (*(struct psi_cpp_exp **)(&(*yyvalp)))->token = psi_token_copy((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-1)].yystate.yysemantics.yysval))); } -#line 4463 "src/parser_proc.c" /* glr.c:817 */ +#line 4649 "src/parser_proc.c" /* glr.c:817 */ break; - case 302: -#line 546 "src/parser_proc_grammar.y" /* glr.c:817 */ + case 305: +#line 521 "src/parser_proc_grammar.y" /* glr.c:817 */ { (*(struct psi_cpp_exp **)(&(*yyvalp))) = psi_cpp_exp_init((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-1)].yystate.yysemantics.yysval))->type, (*(struct psi_cpp_macro_decl **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))); (*(struct psi_cpp_exp **)(&(*yyvalp)))->token = psi_token_copy((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-1)].yystate.yysemantics.yysval))); } -#line 4472 "src/parser_proc.c" /* glr.c:817 */ +#line 4658 "src/parser_proc.c" /* glr.c:817 */ break; - case 303: -#line 550 "src/parser_proc_grammar.y" /* glr.c:817 */ + case 306: +#line 525 "src/parser_proc_grammar.y" /* glr.c:817 */ { (*(struct psi_cpp_exp **)(&(*yyvalp))) = psi_cpp_exp_init((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-1)].yystate.yysemantics.yysval))->type, (*(struct psi_num_exp **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))); (*(struct psi_cpp_exp **)(&(*yyvalp)))->token = psi_token_copy((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-1)].yystate.yysemantics.yysval))); } -#line 4481 "src/parser_proc.c" /* glr.c:817 */ +#line 4667 "src/parser_proc.c" /* glr.c:817 */ break; - case 304: -#line 554 "src/parser_proc_grammar.y" /* glr.c:817 */ + case 307: +#line 529 "src/parser_proc_grammar.y" /* glr.c:817 */ { (*(struct psi_cpp_exp **)(&(*yyvalp))) = psi_cpp_exp_init((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))->type, NULL); (*(struct psi_cpp_exp **)(&(*yyvalp)))->token = psi_token_copy((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))); } -#line 4490 "src/parser_proc.c" /* glr.c:817 */ +#line 4676 "src/parser_proc.c" /* glr.c:817 */ break; - case 305: -#line 558 "src/parser_proc_grammar.y" /* glr.c:817 */ + case 308: +#line 533 "src/parser_proc_grammar.y" /* glr.c:817 */ { psi_plist_free((*(struct psi_plist **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))); (*(struct psi_cpp_exp **)(&(*yyvalp))) = NULL; } -#line 4499 "src/parser_proc.c" /* glr.c:817 */ +#line 4685 "src/parser_proc.c" /* glr.c:817 */ break; - case 322: -#line 602 "src/parser_proc_grammar.y" /* glr.c:817 */ + case 325: +#line 577 "src/parser_proc_grammar.y" /* glr.c:817 */ { (*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-1)].yystate.yysemantics.yysval))->type = PSI_T_NAME; (*(struct psi_cpp_macro_decl **)(&(*yyvalp))) = psi_cpp_macro_decl_init(NULL, (*(struct psi_plist **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval)), NULL); (*(struct psi_cpp_macro_decl **)(&(*yyvalp)))->token = psi_token_copy((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-1)].yystate.yysemantics.yysval))); } -#line 4509 "src/parser_proc.c" /* glr.c:817 */ +#line 4695 "src/parser_proc.c" /* glr.c:817 */ break; - case 323: -#line 607 "src/parser_proc_grammar.y" /* glr.c:817 */ + case 326: +#line 582 "src/parser_proc_grammar.y" /* glr.c:817 */ { (*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-5)].yystate.yysemantics.yysval))->type = PSI_T_NAME; (*(struct psi_cpp_macro_decl **)(&(*yyvalp))) = psi_cpp_macro_decl_init((*(struct psi_plist **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-2)].yystate.yysemantics.yysval)), (*(struct psi_plist **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval)), NULL); (*(struct psi_cpp_macro_decl **)(&(*yyvalp)))->token = psi_token_copy((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-5)].yystate.yysemantics.yysval))); } -#line 4519 "src/parser_proc.c" /* glr.c:817 */ +#line 4705 "src/parser_proc.c" /* glr.c:817 */ break; - case 324: -#line 612 "src/parser_proc_grammar.y" /* glr.c:817 */ + case 327: +#line 587 "src/parser_proc_grammar.y" /* glr.c:817 */ { (*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-1)].yystate.yysemantics.yysval))->type = PSI_T_NAME; (*(struct psi_cpp_macro_decl **)(&(*yyvalp))) = psi_cpp_macro_decl_init(NULL, psi_num_exp_tokens((*(struct psi_num_exp **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval)), NULL), (*(struct psi_num_exp **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))); (*(struct psi_cpp_macro_decl **)(&(*yyvalp)))->token = psi_token_copy((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-1)].yystate.yysemantics.yysval))); } -#line 4529 "src/parser_proc.c" /* glr.c:817 */ +#line 4715 "src/parser_proc.c" /* glr.c:817 */ break; - case 325: -#line 617 "src/parser_proc_grammar.y" /* glr.c:817 */ + case 328: +#line 592 "src/parser_proc_grammar.y" /* glr.c:817 */ { struct psi_plist *list = psi_plist_init((psi_plist_dtor) psi_token_free); (*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-1)].yystate.yysemantics.yysval))->type = PSI_T_NAME; (*(struct psi_cpp_macro_decl **)(&(*yyvalp))) = psi_cpp_macro_decl_init(NULL, psi_plist_add(list, &(*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))), NULL); (*(struct psi_cpp_macro_decl **)(&(*yyvalp)))->token = psi_token_copy((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-1)].yystate.yysemantics.yysval))); } -#line 4540 "src/parser_proc.c" /* glr.c:817 */ +#line 4726 "src/parser_proc.c" /* glr.c:817 */ break; - case 326: -#line 626 "src/parser_proc_grammar.y" /* glr.c:817 */ + case 329: +#line 601 "src/parser_proc_grammar.y" /* glr.c:817 */ { (*(struct psi_plist **)(&(*yyvalp))) = psi_plist_init(NULL); } -#line 4548 "src/parser_proc.c" /* glr.c:817 */ +#line 4734 "src/parser_proc.c" /* glr.c:817 */ break; - case 327: -#line 629 "src/parser_proc_grammar.y" /* glr.c:817 */ + case 330: +#line 604 "src/parser_proc_grammar.y" /* glr.c:817 */ { (*(struct psi_plist **)(&(*yyvalp))) = psi_plist_init(NULL); /* FIXME */ } -#line 4556 "src/parser_proc.c" /* glr.c:817 */ +#line 4742 "src/parser_proc.c" /* glr.c:817 */ break; - case 329: -#line 633 "src/parser_proc_grammar.y" /* glr.c:817 */ + case 332: +#line 608 "src/parser_proc_grammar.y" /* glr.c:817 */ { (*(struct psi_plist **)(&(*yyvalp))) = (*(struct psi_plist **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-2)].yystate.yysemantics.yysval)); } -#line 4564 "src/parser_proc.c" /* glr.c:817 */ +#line 4750 "src/parser_proc.c" /* glr.c:817 */ break; - case 330: -#line 639 "src/parser_proc_grammar.y" /* glr.c:817 */ + case 333: +#line 614 "src/parser_proc_grammar.y" /* glr.c:817 */ { (*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval)) = psi_token_copy((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))); (*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))->type = PSI_T_NAME; (*(struct psi_plist **)(&(*yyvalp))) = psi_plist_add(psi_plist_init((psi_plist_dtor) psi_token_free), &(*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))); } -#line 4574 "src/parser_proc.c" /* glr.c:817 */ +#line 4760 "src/parser_proc.c" /* glr.c:817 */ break; - case 331: -#line 644 "src/parser_proc_grammar.y" /* glr.c:817 */ + case 334: +#line 619 "src/parser_proc_grammar.y" /* glr.c:817 */ { (*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval)) = psi_token_copy((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))); (*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))->type = PSI_T_NAME; (*(struct psi_plist **)(&(*yyvalp))) = psi_plist_add((*(struct psi_plist **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-2)].yystate.yysemantics.yysval)), &(*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))); } -#line 4584 "src/parser_proc.c" /* glr.c:817 */ +#line 4770 "src/parser_proc.c" /* glr.c:817 */ break; - case 332: -#line 652 "src/parser_proc_grammar.y" /* glr.c:817 */ + case 335: +#line 627 "src/parser_proc_grammar.y" /* glr.c:817 */ { (*(struct psi_plist **)(&(*yyvalp))) = NULL; } -#line 4592 "src/parser_proc.c" /* glr.c:817 */ +#line 4778 "src/parser_proc.c" /* glr.c:817 */ break; - case 334: -#line 659 "src/parser_proc_grammar.y" /* glr.c:817 */ + case 337: +#line 634 "src/parser_proc_grammar.y" /* glr.c:817 */ { (*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval)) = psi_token_copy((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))); (*(struct psi_plist **)(&(*yyvalp))) = psi_plist_add(psi_plist_init((psi_plist_dtor) psi_token_free), &(*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))); } -#line 4601 "src/parser_proc.c" /* glr.c:817 */ +#line 4787 "src/parser_proc.c" /* glr.c:817 */ break; - case 335: -#line 663 "src/parser_proc_grammar.y" /* glr.c:817 */ + case 338: +#line 638 "src/parser_proc_grammar.y" /* glr.c:817 */ { (*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval)) = psi_token_copy((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))); (*(struct psi_plist **)(&(*yyvalp))) = psi_plist_add((*(struct psi_plist **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-1)].yystate.yysemantics.yysval)), &(*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))); } -#line 4610 "src/parser_proc.c" /* glr.c:817 */ +#line 4796 "src/parser_proc.c" /* glr.c:817 */ break; - case 336: -#line 670 "src/parser_proc_grammar.y" /* glr.c:817 */ + case 339: +#line 645 "src/parser_proc_grammar.y" /* glr.c:817 */ { (*(struct psi_num_exp **)(&(*yyvalp))) = psi_num_exp_init_unary((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-2)].yystate.yysemantics.yysval))->type, (*(struct psi_num_exp **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-1)].yystate.yysemantics.yysval))); (*(struct psi_num_exp **)(&(*yyvalp)))->token = psi_token_copy((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-2)].yystate.yysemantics.yysval))); } -#line 4619 "src/parser_proc.c" /* glr.c:817 */ +#line 4805 "src/parser_proc.c" /* glr.c:817 */ break; - case 337: -#line 674 "src/parser_proc_grammar.y" /* glr.c:817 */ + case 340: +#line 649 "src/parser_proc_grammar.y" /* glr.c:817 */ { (*(struct psi_num_exp **)(&(*yyvalp))) = psi_num_exp_init_unary((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-1)].yystate.yysemantics.yysval))->type, (*(struct psi_num_exp **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))); (*(struct psi_num_exp **)(&(*yyvalp)))->token = psi_token_copy((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-1)].yystate.yysemantics.yysval))); } -#line 4628 "src/parser_proc.c" /* glr.c:817 */ +#line 4814 "src/parser_proc.c" /* glr.c:817 */ break; - case 338: -#line 678 "src/parser_proc_grammar.y" /* glr.c:817 */ + case 341: +#line 653 "src/parser_proc_grammar.y" /* glr.c:817 */ { (*(struct psi_num_exp **)(&(*yyvalp))) = psi_num_exp_init_binary((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-1)].yystate.yysemantics.yysval))->type, (*(struct psi_num_exp **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-2)].yystate.yysemantics.yysval)), (*(struct psi_num_exp **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))); (*(struct psi_num_exp **)(&(*yyvalp)))->token = psi_token_copy((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-1)].yystate.yysemantics.yysval))); } -#line 4637 "src/parser_proc.c" /* glr.c:817 */ +#line 4823 "src/parser_proc.c" /* glr.c:817 */ break; - case 339: -#line 682 "src/parser_proc_grammar.y" /* glr.c:817 */ + case 342: +#line 657 "src/parser_proc_grammar.y" /* glr.c:817 */ { (*(struct psi_num_exp **)(&(*yyvalp))) = psi_num_exp_init_ternary((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-3)].yystate.yysemantics.yysval))->type, (*(struct psi_num_exp **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-4)].yystate.yysemantics.yysval)), (*(struct psi_num_exp **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-2)].yystate.yysemantics.yysval)), (*(struct psi_num_exp **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))); (*(struct psi_num_exp **)(&(*yyvalp)))->token = psi_token_copy((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-3)].yystate.yysemantics.yysval))); } -#line 4646 "src/parser_proc.c" /* glr.c:817 */ +#line 4832 "src/parser_proc.c" /* glr.c:817 */ break; - case 340: -#line 687 "src/parser_proc_grammar.y" /* glr.c:817 */ + case 343: +#line 662 "src/parser_proc_grammar.y" /* glr.c:817 */ { { uint8_t exists; (*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))->type = PSI_T_NAME; exists = psi_cpp_defined(P->preproc, (*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))); - (*(struct psi_num_exp **)(&(*yyvalp))) = psi_num_exp_init_num(psi_number_init(PSI_T_UINT8, &exists, 0)); + (*(struct psi_num_exp **)(&(*yyvalp))) = psi_num_exp_init_num(psi_number_init(PSI_T_DEFINED, &exists, 0)); (*(struct psi_num_exp **)(&(*yyvalp)))->token = psi_token_copy((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-1)].yystate.yysemantics.yysval))); (*(struct psi_num_exp **)(&(*yyvalp)))->data.n->token = psi_token_copy((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))); } } -#line 4662 "src/parser_proc.c" /* glr.c:817 */ +#line 4848 "src/parser_proc.c" /* glr.c:817 */ break; - case 341: -#line 698 "src/parser_proc_grammar.y" /* glr.c:817 */ + case 344: +#line 673 "src/parser_proc_grammar.y" /* glr.c:817 */ { { uint8_t exists; (*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-1)].yystate.yysemantics.yysval))->type = PSI_T_NAME; exists = psi_cpp_defined(P->preproc, (*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-1)].yystate.yysemantics.yysval))); - (*(struct psi_num_exp **)(&(*yyvalp))) = psi_num_exp_init_num(psi_number_init(PSI_T_UINT8, &exists, 0)); + (*(struct psi_num_exp **)(&(*yyvalp))) = psi_num_exp_init_num(psi_number_init(PSI_T_DEFINED, &exists, 0)); (*(struct psi_num_exp **)(&(*yyvalp)))->token = psi_token_copy((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-3)].yystate.yysemantics.yysval))); (*(struct psi_num_exp **)(&(*yyvalp)))->data.n->token = psi_token_copy((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-1)].yystate.yysemantics.yysval))); } } -#line 4678 "src/parser_proc.c" /* glr.c:817 */ +#line 4864 "src/parser_proc.c" /* glr.c:817 */ break; - case 342: -#line 709 "src/parser_proc_grammar.y" /* glr.c:817 */ + case 345: +#line 684 "src/parser_proc_grammar.y" /* glr.c:817 */ { (*(struct psi_num_exp **)(&(*yyvalp))) = psi_num_exp_init_num(psi_number_init((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))->type, (*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))->text, (*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))->flags)); (*(struct psi_num_exp **)(&(*yyvalp)))->token = psi_token_copy((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))); (*(struct psi_num_exp **)(&(*yyvalp)))->data.n->token = psi_token_copy((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))); } -#line 4688 "src/parser_proc.c" /* glr.c:817 */ +#line 4874 "src/parser_proc.c" /* glr.c:817 */ break; - case 343: -#line 714 "src/parser_proc_grammar.y" /* glr.c:817 */ + case 346: +#line 689 "src/parser_proc_grammar.y" /* glr.c:817 */ { (*(struct psi_num_exp **)(&(*yyvalp))) = psi_num_exp_init_num(psi_number_init((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))->type, (*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))->text, 0)); (*(struct psi_num_exp **)(&(*yyvalp)))->token = psi_token_copy((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))); (*(struct psi_num_exp **)(&(*yyvalp)))->data.n->token = psi_token_copy((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))); } -#line 4698 "src/parser_proc.c" /* glr.c:817 */ +#line 4884 "src/parser_proc.c" /* glr.c:817 */ break; - case 344: -#line 719 "src/parser_proc_grammar.y" /* glr.c:817 */ + case 347: +#line 694 "src/parser_proc_grammar.y" /* glr.c:817 */ { (*(struct psi_num_exp **)(&(*yyvalp))) = psi_num_exp_init_num((*(struct psi_number **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))); (*(struct psi_num_exp **)(&(*yyvalp)))->token = psi_token_copy((*(struct psi_number **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))->token); } -#line 4707 "src/parser_proc.c" /* glr.c:817 */ +#line 4893 "src/parser_proc.c" /* glr.c:817 */ break; - case 345: -#line 723 "src/parser_proc_grammar.y" /* glr.c:817 */ + case 348: +#line 698 "src/parser_proc_grammar.y" /* glr.c:817 */ { (*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))->type = PSI_T_NAME; (*(struct psi_num_exp **)(&(*yyvalp))) = psi_num_exp_init_num(psi_number_init(PSI_T_DEFINE, (*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))->text, 0)); (*(struct psi_num_exp **)(&(*yyvalp)))->token = psi_token_copy((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))); (*(struct psi_num_exp **)(&(*yyvalp)))->data.n->token = psi_token_copy((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))); } -#line 4718 "src/parser_proc.c" /* glr.c:817 */ +#line 4904 "src/parser_proc.c" /* glr.c:817 */ break; - case 346: -#line 729 "src/parser_proc_grammar.y" /* glr.c:817 */ + case 349: +#line 704 "src/parser_proc_grammar.y" /* glr.c:817 */ { (*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-3)].yystate.yysemantics.yysval))->type = PSI_T_NAME; (*(struct psi_num_exp **)(&(*yyvalp))) = psi_num_exp_init_num(psi_number_init(PSI_T_FUNCTION, psi_cpp_macro_call_init((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-3)].yystate.yysemantics.yysval))->text, (*(struct psi_plist **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-1)].yystate.yysemantics.yysval))), 0)); (*(struct psi_num_exp **)(&(*yyvalp)))->token = psi_token_copy((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-3)].yystate.yysemantics.yysval))); (*(struct psi_num_exp **)(&(*yyvalp)))->data.n->token = psi_token_copy((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-3)].yystate.yysemantics.yysval))); + (*(struct psi_num_exp **)(&(*yyvalp)))->data.n->data.call->token = psi_token_copy((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-3)].yystate.yysemantics.yysval))); } -#line 4730 "src/parser_proc.c" /* glr.c:817 */ +#line 4917 "src/parser_proc.c" /* glr.c:817 */ break; - case 347: -#line 739 "src/parser_proc_grammar.y" /* glr.c:817 */ + case 350: +#line 715 "src/parser_proc_grammar.y" /* glr.c:817 */ { (*(struct psi_plist **)(&(*yyvalp))) = NULL; } -#line 4738 "src/parser_proc.c" /* glr.c:817 */ +#line 4925 "src/parser_proc.c" /* glr.c:817 */ break; - case 349: -#line 746 "src/parser_proc_grammar.y" /* glr.c:817 */ + case 352: +#line 722 "src/parser_proc_grammar.y" /* glr.c:817 */ + { + /* TODO: clang include test macros */ + uint8_t no = 1; + struct psi_num_exp *exp = psi_num_exp_init_num(psi_number_init(PSI_T_UINT8, &no, 0)); + exp->token = psi_token_copy((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))); + exp->data.n->token = psi_token_copy((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))); + (*(struct psi_plist **)(&(*yyvalp))) = psi_plist_add(psi_plist_init((psi_plist_dtor) psi_num_exp_free), &exp); +} +#line 4938 "src/parser_proc.c" /* glr.c:817 */ + break; + + case 353: +#line 730 "src/parser_proc_grammar.y" /* glr.c:817 */ { - (*(struct psi_plist **)(&(*yyvalp))) = psi_plist_add(psi_plist_init((psi_plist_dtor) psi_num_exp_free), + (*(struct psi_plist **)(&(*yyvalp))) = psi_plist_add(psi_plist_init((psi_plist_dtor) psi_num_exp_free), &(*(struct psi_num_exp **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))); } -#line 4747 "src/parser_proc.c" /* glr.c:817 */ +#line 4947 "src/parser_proc.c" /* glr.c:817 */ break; - case 350: -#line 750 "src/parser_proc_grammar.y" /* glr.c:817 */ + case 354: +#line 734 "src/parser_proc_grammar.y" /* glr.c:817 */ { (*(struct psi_plist **)(&(*yyvalp))) = psi_plist_add((*(struct psi_plist **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-2)].yystate.yysemantics.yysval)), &(*(struct psi_num_exp **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))); } -#line 4755 "src/parser_proc.c" /* glr.c:817 */ +#line 4955 "src/parser_proc.c" /* glr.c:817 */ break; - case 351: -#line 756 "src/parser_proc_grammar.y" /* glr.c:817 */ + case 355: +#line 740 "src/parser_proc_grammar.y" /* glr.c:817 */ { (*(struct psi_const **)(&(*yyvalp))) = psi_const_init((*(struct psi_impl_type **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-4)].yystate.yysemantics.yysval)), (*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-3)].yystate.yysemantics.yysval))->text, (*(struct psi_impl_def_val **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-1)].yystate.yysemantics.yysval))); (*(struct psi_const **)(&(*yyvalp)))->token = psi_token_copy((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-3)].yystate.yysemantics.yysval))); } -#line 4764 "src/parser_proc.c" /* glr.c:817 */ +#line 4964 "src/parser_proc.c" /* glr.c:817 */ break; - case 352: -#line 763 "src/parser_proc_grammar.y" /* glr.c:817 */ + case 356: +#line 744 "src/parser_proc_grammar.y" /* glr.c:817 */ + { + (*(struct psi_const **)(&(*yyvalp))) = psi_const_init(NULL, (*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-3)].yystate.yysemantics.yysval))->text, (*(struct psi_impl_def_val **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-1)].yystate.yysemantics.yysval))); + (*(struct psi_const **)(&(*yyvalp)))->token = psi_token_copy((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-3)].yystate.yysemantics.yysval))); +} +#line 4973 "src/parser_proc.c" /* glr.c:817 */ + break; + + case 357: +#line 751 "src/parser_proc_grammar.y" /* glr.c:817 */ { (*(struct psi_impl_def_val **)(&(*yyvalp))) = psi_impl_def_val_init((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))->type, (*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))->text); (*(struct psi_impl_def_val **)(&(*yyvalp)))->token = psi_token_copy((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))); } -#line 4773 "src/parser_proc.c" /* glr.c:817 */ +#line 4982 "src/parser_proc.c" /* glr.c:817 */ break; - case 353: -#line 767 "src/parser_proc_grammar.y" /* glr.c:817 */ + case 358: +#line 755 "src/parser_proc_grammar.y" /* glr.c:817 */ { (*(struct psi_impl_def_val **)(&(*yyvalp))) = psi_impl_def_val_init(PSI_T_NUMBER, (*(struct psi_num_exp **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))); (*(struct psi_impl_def_val **)(&(*yyvalp)))->token = psi_token_copy((*(struct psi_num_exp **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))->token); } -#line 4782 "src/parser_proc.c" /* glr.c:817 */ +#line 4991 "src/parser_proc.c" /* glr.c:817 */ break; - case 354: -#line 771 "src/parser_proc_grammar.y" /* glr.c:817 */ + case 359: +#line 759 "src/parser_proc_grammar.y" /* glr.c:817 */ { (*(struct psi_impl_def_val **)(&(*yyvalp))) = psi_impl_def_val_init((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))->type, (*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))->text); (*(struct psi_impl_def_val **)(&(*yyvalp)))->token = (*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval)); } -#line 4791 "src/parser_proc.c" /* glr.c:817 */ +#line 5000 "src/parser_proc.c" /* glr.c:817 */ break; - case 358: -#line 784 "src/parser_proc_grammar.y" /* glr.c:817 */ + case 363: +#line 772 "src/parser_proc_grammar.y" /* glr.c:817 */ { (*(struct psi_decl_arg **)(&(*yyvalp))) = (*(struct psi_decl_arg **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-1)].yystate.yysemantics.yysval)); } -#line 4799 "src/parser_proc.c" /* glr.c:817 */ +#line 5008 "src/parser_proc.c" /* glr.c:817 */ break; - case 359: -#line 798 "src/parser_proc_grammar.y" /* glr.c:817 */ + case 364: +#line 786 "src/parser_proc_grammar.y" /* glr.c:817 */ { (*(struct psi_decl_arg **)(&(*yyvalp))) = (*(struct psi_decl_arg **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-1)].yystate.yysemantics.yysval)); } -#line 4807 "src/parser_proc.c" /* glr.c:817 */ +#line 5016 "src/parser_proc.c" /* glr.c:817 */ break; - case 360: -#line 804 "src/parser_proc_grammar.y" /* glr.c:817 */ + case 365: +#line 792 "src/parser_proc_grammar.y" /* glr.c:817 */ { (*(struct psi_decl_arg **)(&(*yyvalp))) = (*(struct psi_decl_arg **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval)); } -#line 4815 "src/parser_proc.c" /* glr.c:817 */ +#line 5024 "src/parser_proc.c" /* glr.c:817 */ break; - case 361: -#line 807 "src/parser_proc_grammar.y" /* glr.c:817 */ + case 366: +#line 795 "src/parser_proc_grammar.y" /* glr.c:817 */ { (*(struct psi_decl_arg **)(&(*yyvalp))) = (*(struct psi_decl_arg **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval)); } -#line 4823 "src/parser_proc.c" /* glr.c:817 */ +#line 5032 "src/parser_proc.c" /* glr.c:817 */ break; - case 362: -#line 813 "src/parser_proc_grammar.y" /* glr.c:817 */ + case 367: +#line 801 "src/parser_proc_grammar.y" /* glr.c:817 */ { (*(struct psi_decl_arg **)(&(*yyvalp))) = (*(struct psi_decl_arg **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval)); } -#line 4831 "src/parser_proc.c" /* glr.c:817 */ +#line 5040 "src/parser_proc.c" /* glr.c:817 */ break; - case 363: -#line 816 "src/parser_proc_grammar.y" /* glr.c:817 */ + case 368: +#line 804 "src/parser_proc_grammar.y" /* glr.c:817 */ { (*(struct psi_decl_arg **)(&(*yyvalp))) = (*(struct psi_decl_arg **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval)); } -#line 4839 "src/parser_proc.c" /* glr.c:817 */ +#line 5048 "src/parser_proc.c" /* glr.c:817 */ break; - case 365: -#line 823 "src/parser_proc_grammar.y" /* glr.c:817 */ + case 370: +#line 811 "src/parser_proc_grammar.y" /* glr.c:817 */ { (*(struct psi_decl_arg **)(&(*yyvalp))) = psi_decl_arg_init( psi_decl_type_init(PSI_T_FUNCTION, (*(struct psi_decl **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))->func->var->name), @@ -4848,11 +5057,11 @@ yyuserAction (yyRuleNum yyn, size_t yyrhslen, yyGLRStackItem* yyvsp, (*(struct psi_decl_arg **)(&(*yyvalp)))->type->token = psi_token_copy((*(struct psi_decl **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))->func->token); (*(struct psi_decl_arg **)(&(*yyvalp)))->type->real.func = (*(struct psi_decl **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval)); } -#line 4852 "src/parser_proc.c" /* glr.c:817 */ +#line 5061 "src/parser_proc.c" /* glr.c:817 */ break; - case 366: -#line 831 "src/parser_proc_grammar.y" /* glr.c:817 */ + case 371: +#line 819 "src/parser_proc_grammar.y" /* glr.c:817 */ { (*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))->type = PSI_T_NAME; (*(struct psi_decl_arg **)(&(*yyvalp))) = psi_decl_arg_init( @@ -4864,11 +5073,11 @@ yyuserAction (yyRuleNum yyn, size_t yyrhslen, yyGLRStackItem* yyvsp, (*(struct psi_decl_arg **)(&(*yyvalp)))->type->real.enm = (*(struct psi_decl_enum **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-1)].yystate.yysemantics.yysval)); psi_parser_proc_add_enum(P, (*(struct psi_decl_enum **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-1)].yystate.yysemantics.yysval))); } -#line 4868 "src/parser_proc.c" /* glr.c:817 */ +#line 5077 "src/parser_proc.c" /* glr.c:817 */ break; - case 367: -#line 842 "src/parser_proc_grammar.y" /* glr.c:817 */ + case 372: +#line 830 "src/parser_proc_grammar.y" /* glr.c:817 */ { (*(struct psi_decl_arg **)(&(*yyvalp))) = psi_decl_arg_init(psi_decl_type_init(PSI_T_STRUCT, (*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-3)].yystate.yysemantics.yysval))->text), (*(struct psi_decl_var **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))); (*(struct psi_decl_arg **)(&(*yyvalp)))->type->token = (*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-3)].yystate.yysemantics.yysval)); @@ -4878,11 +5087,11 @@ yyuserAction (yyRuleNum yyn, size_t yyrhslen, yyGLRStackItem* yyvsp, (*(struct psi_decl_arg **)(&(*yyvalp)))->type->real.strct->size = (*(struct psi_layout*)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-2)].yystate.yysemantics.yysval)).len; psi_parser_proc_add_struct(P, (*(struct psi_decl_arg **)(&(*yyvalp)))->type->real.strct); } -#line 4882 "src/parser_proc.c" /* glr.c:817 */ +#line 5091 "src/parser_proc.c" /* glr.c:817 */ break; - case 368: -#line 851 "src/parser_proc_grammar.y" /* glr.c:817 */ + case 373: +#line 839 "src/parser_proc_grammar.y" /* glr.c:817 */ { (*(struct psi_decl_arg **)(&(*yyvalp))) = psi_decl_arg_init(psi_decl_type_init(PSI_T_UNION, (*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-3)].yystate.yysemantics.yysval))->text), (*(struct psi_decl_var **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))); (*(struct psi_decl_arg **)(&(*yyvalp)))->type->token = (*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-3)].yystate.yysemantics.yysval)); @@ -4892,20 +5101,20 @@ yyuserAction (yyRuleNum yyn, size_t yyrhslen, yyGLRStackItem* yyvsp, (*(struct psi_decl_arg **)(&(*yyvalp)))->type->real.unn->size = (*(struct psi_layout*)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-2)].yystate.yysemantics.yysval)).len; psi_parser_proc_add_union(P, (*(struct psi_decl_arg **)(&(*yyvalp)))->type->real.unn); } -#line 4896 "src/parser_proc.c" /* glr.c:817 */ +#line 5105 "src/parser_proc.c" /* glr.c:817 */ break; - case 370: -#line 864 "src/parser_proc_grammar.y" /* glr.c:817 */ + case 375: +#line 852 "src/parser_proc_grammar.y" /* glr.c:817 */ { (*(struct psi_decl_arg **)(&(*yyvalp))) = psi_decl_arg_init((*(struct psi_decl_type **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval)), psi_decl_var_init(NULL, 0, 0)); (*(struct psi_decl_arg **)(&(*yyvalp)))->var->token = psi_token_copy((*(struct psi_decl_type **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))->token); } -#line 4905 "src/parser_proc.c" /* glr.c:817 */ +#line 5114 "src/parser_proc.c" /* glr.c:817 */ break; - case 371: -#line 868 "src/parser_proc_grammar.y" /* glr.c:817 */ + case 376: +#line 856 "src/parser_proc_grammar.y" /* glr.c:817 */ { (*(struct psi_decl_arg **)(&(*yyvalp))) = psi_decl_arg_init( psi_decl_type_init(PSI_T_ENUM, (*(struct psi_decl_enum **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))->name), @@ -4916,11 +5125,11 @@ yyuserAction (yyRuleNum yyn, size_t yyrhslen, yyGLRStackItem* yyvsp, (*(struct psi_decl_arg **)(&(*yyvalp)))->type->real.enm = (*(struct psi_decl_enum **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval)); psi_parser_proc_add_enum(P, (*(struct psi_decl_enum **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))); } -#line 4920 "src/parser_proc.c" /* glr.c:817 */ +#line 5129 "src/parser_proc.c" /* glr.c:817 */ break; - case 372: -#line 878 "src/parser_proc_grammar.y" /* glr.c:817 */ + case 377: +#line 866 "src/parser_proc_grammar.y" /* glr.c:817 */ { (*(struct psi_decl_arg **)(&(*yyvalp))) = psi_decl_arg_init(psi_decl_type_init(PSI_T_STRUCT, (*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-2)].yystate.yysemantics.yysval))->text), psi_decl_var_init(NULL, 0, 0)); (*(struct psi_decl_arg **)(&(*yyvalp)))->type->token = (*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-2)].yystate.yysemantics.yysval)); @@ -4930,11 +5139,11 @@ yyuserAction (yyRuleNum yyn, size_t yyrhslen, yyGLRStackItem* yyvsp, (*(struct psi_decl_arg **)(&(*yyvalp)))->type->real.strct->size = (*(struct psi_layout*)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-1)].yystate.yysemantics.yysval)).len; psi_parser_proc_add_struct(P, (*(struct psi_decl_arg **)(&(*yyvalp)))->type->real.strct); } -#line 4934 "src/parser_proc.c" /* glr.c:817 */ +#line 5143 "src/parser_proc.c" /* glr.c:817 */ break; - case 373: -#line 887 "src/parser_proc_grammar.y" /* glr.c:817 */ + case 378: +#line 875 "src/parser_proc_grammar.y" /* glr.c:817 */ { (*(struct psi_decl_arg **)(&(*yyvalp))) = psi_decl_arg_init(psi_decl_type_init(PSI_T_UNION, (*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-2)].yystate.yysemantics.yysval))->text), psi_decl_var_init(NULL, 0, 0)); (*(struct psi_decl_arg **)(&(*yyvalp)))->type->token = (*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-2)].yystate.yysemantics.yysval)); @@ -4944,146 +5153,146 @@ yyuserAction (yyRuleNum yyn, size_t yyrhslen, yyGLRStackItem* yyvsp, (*(struct psi_decl_arg **)(&(*yyvalp)))->type->real.unn->size = (*(struct psi_layout*)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-1)].yystate.yysemantics.yysval)).len; psi_parser_proc_add_union(P, (*(struct psi_decl_arg **)(&(*yyvalp)))->type->real.unn); } -#line 4948 "src/parser_proc.c" /* glr.c:817 */ +#line 5157 "src/parser_proc.c" /* glr.c:817 */ break; - case 375: -#line 900 "src/parser_proc_grammar.y" /* glr.c:817 */ + case 380: +#line 888 "src/parser_proc_grammar.y" /* glr.c:817 */ { (*(struct psi_decl_type **)(&(*yyvalp))) = (*(struct psi_decl_type **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval)); } -#line 4956 "src/parser_proc.c" /* glr.c:817 */ +#line 5165 "src/parser_proc.c" /* glr.c:817 */ break; - case 376: -#line 903 "src/parser_proc_grammar.y" /* glr.c:817 */ + case 381: +#line 891 "src/parser_proc_grammar.y" /* glr.c:817 */ { (*(struct psi_decl_type **)(&(*yyvalp))) = (*(struct psi_decl_type **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-1)].yystate.yysemantics.yysval)); } -#line 4964 "src/parser_proc.c" /* glr.c:817 */ +#line 5173 "src/parser_proc.c" /* glr.c:817 */ break; - case 379: -#line 914 "src/parser_proc_grammar.y" /* glr.c:817 */ + case 384: +#line 902 "src/parser_proc_grammar.y" /* glr.c:817 */ { (*(struct psi_decl_type **)(&(*yyvalp))) = psi_decl_type_init((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))->type, (*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))->text); (*(struct psi_decl_type **)(&(*yyvalp)))->token = (*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval)); } -#line 4973 "src/parser_proc.c" /* glr.c:817 */ +#line 5182 "src/parser_proc.c" /* glr.c:817 */ break; - case 381: -#line 922 "src/parser_proc_grammar.y" /* glr.c:817 */ + case 386: +#line 910 "src/parser_proc_grammar.y" /* glr.c:817 */ { (*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))->type = PSI_T_NAME; (*(struct psi_decl_type **)(&(*yyvalp))) = psi_decl_type_init((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-1)].yystate.yysemantics.yysval))->type, (*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))->text); (*(struct psi_decl_type **)(&(*yyvalp)))->token = psi_token_copy((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))); } -#line 4983 "src/parser_proc.c" /* glr.c:817 */ +#line 5192 "src/parser_proc.c" /* glr.c:817 */ break; - case 382: -#line 927 "src/parser_proc_grammar.y" /* glr.c:817 */ + case 387: +#line 915 "src/parser_proc_grammar.y" /* glr.c:817 */ { (*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))->type = PSI_T_NAME; (*(struct psi_decl_type **)(&(*yyvalp))) = psi_decl_type_init((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-1)].yystate.yysemantics.yysval))->type, (*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))->text); (*(struct psi_decl_type **)(&(*yyvalp)))->token = psi_token_copy((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))); } -#line 4993 "src/parser_proc.c" /* glr.c:817 */ +#line 5202 "src/parser_proc.c" /* glr.c:817 */ break; - case 383: -#line 932 "src/parser_proc_grammar.y" /* glr.c:817 */ + case 388: +#line 920 "src/parser_proc_grammar.y" /* glr.c:817 */ { (*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))->type = PSI_T_NAME; (*(struct psi_decl_type **)(&(*yyvalp))) = psi_decl_type_init((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-1)].yystate.yysemantics.yysval))->type, (*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))->text); (*(struct psi_decl_type **)(&(*yyvalp)))->token = psi_token_copy((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))); } -#line 5003 "src/parser_proc.c" /* glr.c:817 */ +#line 5212 "src/parser_proc.c" /* glr.c:817 */ break; - case 386: -#line 942 "src/parser_proc_grammar.y" /* glr.c:817 */ + case 391: +#line 930 "src/parser_proc_grammar.y" /* glr.c:817 */ { (*(struct psi_token **)(&(*yyvalp))) = psi_token_copy((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))); } -#line 5011 "src/parser_proc.c" /* glr.c:817 */ +#line 5220 "src/parser_proc.c" /* glr.c:817 */ break; - case 387: -#line 945 "src/parser_proc_grammar.y" /* glr.c:817 */ + case 392: +#line 933 "src/parser_proc_grammar.y" /* glr.c:817 */ { (*(struct psi_token **)(&(*yyvalp))) = psi_token_copy((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))); } -#line 5019 "src/parser_proc.c" /* glr.c:817 */ +#line 5228 "src/parser_proc.c" /* glr.c:817 */ break; - case 388: -#line 951 "src/parser_proc_grammar.y" /* glr.c:817 */ + case 393: +#line 939 "src/parser_proc_grammar.y" /* glr.c:817 */ { (*(struct psi_token **)(&(*yyvalp))) = psi_token_copy((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))); } -#line 5027 "src/parser_proc.c" /* glr.c:817 */ +#line 5236 "src/parser_proc.c" /* glr.c:817 */ break; - case 389: -#line 954 "src/parser_proc_grammar.y" /* glr.c:817 */ + case 394: +#line 942 "src/parser_proc_grammar.y" /* glr.c:817 */ { (*(struct psi_token **)(&(*yyvalp))) = psi_token_copy((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))); } -#line 5035 "src/parser_proc.c" /* glr.c:817 */ +#line 5244 "src/parser_proc.c" /* glr.c:817 */ break; - case 390: -#line 957 "src/parser_proc_grammar.y" /* glr.c:817 */ + case 395: +#line 945 "src/parser_proc_grammar.y" /* glr.c:817 */ { (*(struct psi_token **)(&(*yyvalp))) = psi_token_cat(" ", 2, (*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-1)].yystate.yysemantics.yysval)), (*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))); } -#line 5043 "src/parser_proc.c" /* glr.c:817 */ +#line 5252 "src/parser_proc.c" /* glr.c:817 */ break; - case 393: -#line 968 "src/parser_proc_grammar.y" /* glr.c:817 */ + case 398: +#line 956 "src/parser_proc_grammar.y" /* glr.c:817 */ { (*(struct psi_token **)(&(*yyvalp))) = psi_token_copy((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))); } -#line 5051 "src/parser_proc.c" /* glr.c:817 */ +#line 5260 "src/parser_proc.c" /* glr.c:817 */ break; - case 394: -#line 971 "src/parser_proc_grammar.y" /* glr.c:817 */ + case 399: +#line 959 "src/parser_proc_grammar.y" /* glr.c:817 */ { (*(struct psi_token **)(&(*yyvalp))) = psi_token_copy((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))); } -#line 5059 "src/parser_proc.c" /* glr.c:817 */ +#line 5268 "src/parser_proc.c" /* glr.c:817 */ break; - case 395: -#line 974 "src/parser_proc_grammar.y" /* glr.c:817 */ + case 400: +#line 962 "src/parser_proc_grammar.y" /* glr.c:817 */ { (*(struct psi_token **)(&(*yyvalp))) = psi_token_cat(" ", 2, (*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-1)].yystate.yysemantics.yysval)), (*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))); } -#line 5067 "src/parser_proc.c" /* glr.c:817 */ +#line 5276 "src/parser_proc.c" /* glr.c:817 */ break; - case 396: -#line 980 "src/parser_proc_grammar.y" /* glr.c:817 */ + case 401: +#line 968 "src/parser_proc_grammar.y" /* glr.c:817 */ { (*(struct psi_token **)(&(*yyvalp))) = psi_token_copy((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))); } -#line 5075 "src/parser_proc.c" /* glr.c:817 */ +#line 5284 "src/parser_proc.c" /* glr.c:817 */ break; - case 397: -#line 983 "src/parser_proc_grammar.y" /* glr.c:817 */ + case 402: +#line 971 "src/parser_proc_grammar.y" /* glr.c:817 */ { (*(struct psi_token **)(&(*yyvalp))) = psi_token_copy((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))); } -#line 5083 "src/parser_proc.c" /* glr.c:817 */ +#line 5292 "src/parser_proc.c" /* glr.c:817 */ break; - case 398: -#line 986 "src/parser_proc_grammar.y" /* glr.c:817 */ + case 403: +#line 974 "src/parser_proc_grammar.y" /* glr.c:817 */ { if ((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))) { (*(struct psi_token **)(&(*yyvalp))) = psi_token_cat(" ", 2, (*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-1)].yystate.yysemantics.yysval)), (*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))); @@ -5092,11 +5301,11 @@ yyuserAction (yyRuleNum yyn, size_t yyrhslen, yyGLRStackItem* yyvsp, (*(struct psi_token **)(&(*yyvalp))) = psi_token_copy((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-1)].yystate.yysemantics.yysval))); } } -#line 5096 "src/parser_proc.c" /* glr.c:817 */ +#line 5305 "src/parser_proc.c" /* glr.c:817 */ break; - case 399: -#line 994 "src/parser_proc_grammar.y" /* glr.c:817 */ + case 404: +#line 982 "src/parser_proc_grammar.y" /* glr.c:817 */ { if ((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))) { (*(struct psi_token **)(&(*yyvalp))) = psi_token_cat(" ", 2, (*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-1)].yystate.yysemantics.yysval)), (*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))); @@ -5106,35 +5315,35 @@ yyuserAction (yyRuleNum yyn, size_t yyrhslen, yyGLRStackItem* yyvsp, (*(struct psi_token **)(&(*yyvalp))) = (*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-1)].yystate.yysemantics.yysval)); } } -#line 5110 "src/parser_proc.c" /* glr.c:817 */ +#line 5319 "src/parser_proc.c" /* glr.c:817 */ break; - case 400: -#line 1006 "src/parser_proc_grammar.y" /* glr.c:817 */ + case 405: +#line 994 "src/parser_proc_grammar.y" /* glr.c:817 */ { (*(struct psi_token **)(&(*yyvalp))) = NULL; } -#line 5118 "src/parser_proc.c" /* glr.c:817 */ +#line 5327 "src/parser_proc.c" /* glr.c:817 */ break; - case 401: -#line 1009 "src/parser_proc_grammar.y" /* glr.c:817 */ + case 406: +#line 997 "src/parser_proc_grammar.y" /* glr.c:817 */ { (*(struct psi_token **)(&(*yyvalp))) = psi_token_copy((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))); } -#line 5126 "src/parser_proc.c" /* glr.c:817 */ +#line 5335 "src/parser_proc.c" /* glr.c:817 */ break; - case 402: -#line 1012 "src/parser_proc_grammar.y" /* glr.c:817 */ + case 407: +#line 1000 "src/parser_proc_grammar.y" /* glr.c:817 */ { (*(struct psi_token **)(&(*yyvalp))) = psi_token_copy((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))); } -#line 5134 "src/parser_proc.c" /* glr.c:817 */ +#line 5343 "src/parser_proc.c" /* glr.c:817 */ break; - case 403: -#line 1015 "src/parser_proc_grammar.y" /* glr.c:817 */ + case 408: +#line 1003 "src/parser_proc_grammar.y" /* glr.c:817 */ { if ((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))) { (*(struct psi_token **)(&(*yyvalp))) = psi_token_cat(" ", 2, (*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-1)].yystate.yysemantics.yysval)), (*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))); @@ -5142,19 +5351,19 @@ yyuserAction (yyRuleNum yyn, size_t yyrhslen, yyGLRStackItem* yyvsp, (*(struct psi_token **)(&(*yyvalp))) = psi_token_copy((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-1)].yystate.yysemantics.yysval))); } } -#line 5146 "src/parser_proc.c" /* glr.c:817 */ +#line 5355 "src/parser_proc.c" /* glr.c:817 */ break; - case 404: -#line 1022 "src/parser_proc_grammar.y" /* glr.c:817 */ + case 409: +#line 1010 "src/parser_proc_grammar.y" /* glr.c:817 */ { (*(struct psi_token **)(&(*yyvalp))) = psi_token_copy((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))); } -#line 5154 "src/parser_proc.c" /* glr.c:817 */ +#line 5363 "src/parser_proc.c" /* glr.c:817 */ break; - case 405: -#line 1025 "src/parser_proc_grammar.y" /* glr.c:817 */ + case 410: +#line 1013 "src/parser_proc_grammar.y" /* glr.c:817 */ { if ((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))) { (*(struct psi_token **)(&(*yyvalp))) = psi_token_cat(" ", 2, (*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-1)].yystate.yysemantics.yysval)), (*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))); @@ -5162,43 +5371,43 @@ yyuserAction (yyRuleNum yyn, size_t yyrhslen, yyGLRStackItem* yyvsp, (*(struct psi_token **)(&(*yyvalp))) = psi_token_copy((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-1)].yystate.yysemantics.yysval))); } } -#line 5166 "src/parser_proc.c" /* glr.c:817 */ +#line 5375 "src/parser_proc.c" /* glr.c:817 */ break; - case 406: -#line 1035 "src/parser_proc_grammar.y" /* glr.c:817 */ + case 411: +#line 1023 "src/parser_proc_grammar.y" /* glr.c:817 */ { (*(struct psi_token **)(&(*yyvalp))) = NULL; } -#line 5174 "src/parser_proc.c" /* glr.c:817 */ +#line 5383 "src/parser_proc.c" /* glr.c:817 */ break; - case 408: -#line 1041 "src/parser_proc_grammar.y" /* glr.c:817 */ + case 413: +#line 1029 "src/parser_proc_grammar.y" /* glr.c:817 */ { (*(struct psi_token **)(&(*yyvalp))) = NULL; } -#line 5182 "src/parser_proc.c" /* glr.c:817 */ +#line 5391 "src/parser_proc.c" /* glr.c:817 */ break; - case 412: -#line 1050 "src/parser_proc_grammar.y" /* glr.c:817 */ + case 417: +#line 1038 "src/parser_proc_grammar.y" /* glr.c:817 */ { (*(struct psi_token **)(&(*yyvalp))) = NULL; } -#line 5190 "src/parser_proc.c" /* glr.c:817 */ +#line 5399 "src/parser_proc.c" /* glr.c:817 */ break; - case 413: -#line 1053 "src/parser_proc_grammar.y" /* glr.c:817 */ + case 418: +#line 1041 "src/parser_proc_grammar.y" /* glr.c:817 */ { (*(struct psi_token **)(&(*yyvalp))) = psi_token_copy((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))); } -#line 5198 "src/parser_proc.c" /* glr.c:817 */ +#line 5407 "src/parser_proc.c" /* glr.c:817 */ break; - case 414: -#line 1056 "src/parser_proc_grammar.y" /* glr.c:817 */ + case 419: +#line 1044 "src/parser_proc_grammar.y" /* glr.c:817 */ { if ((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))) { (*(struct psi_token **)(&(*yyvalp))) = psi_token_cat(" ", 2, (*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-1)].yystate.yysemantics.yysval)), (*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))); @@ -5207,11 +5416,11 @@ yyuserAction (yyRuleNum yyn, size_t yyrhslen, yyGLRStackItem* yyvsp, (*(struct psi_token **)(&(*yyvalp))) = psi_token_copy((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-1)].yystate.yysemantics.yysval))); } } -#line 5211 "src/parser_proc.c" /* glr.c:817 */ +#line 5420 "src/parser_proc.c" /* glr.c:817 */ break; - case 415: -#line 1067 "src/parser_proc_grammar.y" /* glr.c:817 */ + case 420: +#line 1055 "src/parser_proc_grammar.y" /* glr.c:817 */ { (*(struct psi_decl **)(&(*yyvalp))) = (*(struct psi_decl **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-2)].yystate.yysemantics.yysval)); if ((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-1)].yystate.yysemantics.yysval))) { @@ -5219,11 +5428,11 @@ yyuserAction (yyRuleNum yyn, size_t yyrhslen, yyGLRStackItem* yyvsp, psi_token_free(&(*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-1)].yystate.yysemantics.yysval))); } } -#line 5223 "src/parser_proc.c" /* glr.c:817 */ +#line 5432 "src/parser_proc.c" /* glr.c:817 */ break; - case 416: -#line 1074 "src/parser_proc_grammar.y" /* glr.c:817 */ + case 421: +#line 1062 "src/parser_proc_grammar.y" /* glr.c:817 */ { (*(struct psi_decl **)(&(*yyvalp))) = (*(struct psi_decl **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-2)].yystate.yysemantics.yysval)); if ((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-1)].yystate.yysemantics.yysval))) { @@ -5231,126 +5440,131 @@ yyuserAction (yyRuleNum yyn, size_t yyrhslen, yyGLRStackItem* yyvsp, psi_token_free(&(*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-1)].yystate.yysemantics.yysval))); } } -#line 5235 "src/parser_proc.c" /* glr.c:817 */ +#line 5444 "src/parser_proc.c" /* glr.c:817 */ break; - case 417: -#line 1084 "src/parser_proc_grammar.y" /* glr.c:817 */ + case 422: +#line 1072 "src/parser_proc_grammar.y" /* glr.c:817 */ { (*(struct psi_token **)(&(*yyvalp))) = NULL; } -#line 5243 "src/parser_proc.c" /* glr.c:817 */ +#line 5452 "src/parser_proc.c" /* glr.c:817 */ break; - case 418: -#line 1087 "src/parser_proc_grammar.y" /* glr.c:817 */ + case 423: +#line 1075 "src/parser_proc_grammar.y" /* glr.c:817 */ { (*(struct psi_token **)(&(*yyvalp))) = (*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-1)].yystate.yysemantics.yysval)); } -#line 5251 "src/parser_proc.c" /* glr.c:817 */ +#line 5460 "src/parser_proc.c" /* glr.c:817 */ break; - case 419: -#line 1093 "src/parser_proc_grammar.y" /* glr.c:817 */ + case 424: +#line 1081 "src/parser_proc_grammar.y" /* glr.c:817 */ { (*(struct psi_token **)(&(*yyvalp))) = psi_token_copy((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))); } -#line 5259 "src/parser_proc.c" /* glr.c:817 */ +#line 5468 "src/parser_proc.c" /* glr.c:817 */ break; - case 420: -#line 1096 "src/parser_proc_grammar.y" /* glr.c:817 */ + case 425: +#line 1084 "src/parser_proc_grammar.y" /* glr.c:817 */ { (*(struct psi_token **)(&(*yyvalp))) = psi_token_cat("", 2, (*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-1)].yystate.yysemantics.yysval)), (*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))); psi_token_free(&(*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-1)].yystate.yysemantics.yysval))); } -#line 5268 "src/parser_proc.c" /* glr.c:817 */ +#line 5477 "src/parser_proc.c" /* glr.c:817 */ break; - case 421: -#line 1103 "src/parser_proc_grammar.y" /* glr.c:817 */ + case 426: +#line 1091 "src/parser_proc_grammar.y" /* glr.c:817 */ { struct psi_plist *list = psi_plist_init((psi_plist_dtor) psi_decl_extvar_free); - - if ((*(struct psi_plist **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-1)].yystate.yysemantics.yysval))) { + + if ((*(struct psi_plist **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-2)].yystate.yysemantics.yysval))) { size_t i = 0; struct psi_decl_var *var; - - while (psi_plist_get((*(struct psi_plist **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-1)].yystate.yysemantics.yysval)), i++, &var)) { + + while (psi_plist_get((*(struct psi_plist **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-2)].yystate.yysemantics.yysval)), i++, &var)) { if (psi_decl_extvar_is_blacklisted(var->name->val)) { psi_decl_var_free(&var); } else { struct psi_decl_extvar *evar = psi_decl_extvar_init( - psi_decl_arg_init(psi_decl_type_copy((*(struct psi_decl_arg **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-2)].yystate.yysemantics.yysval))->type), var)); + psi_decl_arg_init(psi_decl_type_copy((*(struct psi_decl_arg **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-3)].yystate.yysemantics.yysval))->type), var)); list = psi_plist_add(list, &evar); } } - free((*(struct psi_plist **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-1)].yystate.yysemantics.yysval))); + free((*(struct psi_plist **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-2)].yystate.yysemantics.yysval))); } - - if (psi_decl_extvar_is_blacklisted((*(struct psi_decl_arg **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-2)].yystate.yysemantics.yysval))->var->name->val)) { - psi_decl_arg_free(&(*(struct psi_decl_arg **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-2)].yystate.yysemantics.yysval))); + + if (psi_decl_extvar_is_blacklisted((*(struct psi_decl_arg **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-3)].yystate.yysemantics.yysval))->var->name->val)) { + psi_decl_arg_free(&(*(struct psi_decl_arg **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-3)].yystate.yysemantics.yysval))); } else { - struct psi_decl_extvar *evar = psi_decl_extvar_init((*(struct psi_decl_arg **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-2)].yystate.yysemantics.yysval))); + struct psi_decl_extvar *evar = psi_decl_extvar_init((*(struct psi_decl_arg **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-3)].yystate.yysemantics.yysval))); + + if ((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-1)].yystate.yysemantics.yysval))) { + evar->redir = zend_string_copy((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-1)].yystate.yysemantics.yysval))->text); + psi_token_free(&(*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-1)].yystate.yysemantics.yysval))); + } list = psi_plist_add(list, &evar); } - + (*(struct psi_plist **)(&(*yyvalp))) = list; } -#line 5301 "src/parser_proc.c" /* glr.c:817 */ +#line 5515 "src/parser_proc.c" /* glr.c:817 */ break; - case 422: -#line 1134 "src/parser_proc_grammar.y" /* glr.c:817 */ + case 427: +#line 1127 "src/parser_proc_grammar.y" /* glr.c:817 */ { (*(struct psi_plist **)(&(*yyvalp))) = NULL; } -#line 5309 "src/parser_proc.c" /* glr.c:817 */ +#line 5523 "src/parser_proc.c" /* glr.c:817 */ break; - case 423: -#line 1137 "src/parser_proc_grammar.y" /* glr.c:817 */ + case 428: +#line 1130 "src/parser_proc_grammar.y" /* glr.c:817 */ { (*(struct psi_plist **)(&(*yyvalp))) = (*(struct psi_plist **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval)); } -#line 5317 "src/parser_proc.c" /* glr.c:817 */ +#line 5531 "src/parser_proc.c" /* glr.c:817 */ break; - case 424: -#line 1143 "src/parser_proc_grammar.y" /* glr.c:817 */ + case 429: +#line 1136 "src/parser_proc_grammar.y" /* glr.c:817 */ { (*(struct psi_plist **)(&(*yyvalp))) = psi_plist_add(psi_plist_init((psi_plist_dtor) psi_decl_var_free), &(*(struct psi_decl_var **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))); } -#line 5325 "src/parser_proc.c" /* glr.c:817 */ +#line 5539 "src/parser_proc.c" /* glr.c:817 */ break; - case 425: -#line 1146 "src/parser_proc_grammar.y" /* glr.c:817 */ + case 430: +#line 1139 "src/parser_proc_grammar.y" /* glr.c:817 */ { (*(struct psi_plist **)(&(*yyvalp))) = psi_plist_add((*(struct psi_plist **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-2)].yystate.yysemantics.yysval)), &(*(struct psi_decl_var **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))); } -#line 5333 "src/parser_proc.c" /* glr.c:817 */ +#line 5547 "src/parser_proc.c" /* glr.c:817 */ break; - case 426: -#line 1152 "src/parser_proc_grammar.y" /* glr.c:817 */ + case 431: +#line 1145 "src/parser_proc_grammar.y" /* glr.c:817 */ { (*(struct psi_decl **)(&(*yyvalp))) = (*(struct psi_decl **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-1)].yystate.yysemantics.yysval)); } -#line 5341 "src/parser_proc.c" /* glr.c:817 */ +#line 5555 "src/parser_proc.c" /* glr.c:817 */ break; - case 439: -#line 1182 "src/parser_proc_grammar.y" /* glr.c:817 */ + case 444: +#line 1175 "src/parser_proc_grammar.y" /* glr.c:817 */ { (*(struct psi_decl **)(&(*yyvalp))) = (*(struct psi_decl **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval)); (*(struct psi_decl **)(&(*yyvalp)))->abi = psi_decl_abi_init((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-1)].yystate.yysemantics.yysval))->text); } -#line 5350 "src/parser_proc.c" /* glr.c:817 */ +#line 5564 "src/parser_proc.c" /* glr.c:817 */ break; - case 442: -#line 1194 "src/parser_proc_grammar.y" /* glr.c:817 */ + case 447: +#line 1187 "src/parser_proc_grammar.y" /* glr.c:817 */ { (*(struct psi_decl **)(&(*yyvalp))) = psi_decl_init((*(struct psi_decl_arg **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-4)].yystate.yysemantics.yysval)), (*(struct psi_plist **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-2)].yystate.yysemantics.yysval))); if ((*(size_t*)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))) { @@ -5358,11 +5572,11 @@ yyuserAction (yyRuleNum yyn, size_t yyrhslen, yyGLRStackItem* yyvsp, (*(struct psi_decl **)(&(*yyvalp)))->func->var->array_size = (*(size_t*)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval)); } } -#line 5362 "src/parser_proc.c" /* glr.c:817 */ +#line 5576 "src/parser_proc.c" /* glr.c:817 */ break; - case 443: -#line 1201 "src/parser_proc_grammar.y" /* glr.c:817 */ + case 448: +#line 1194 "src/parser_proc_grammar.y" /* glr.c:817 */ { (*(struct psi_decl **)(&(*yyvalp))) = psi_decl_init((*(struct psi_decl_arg **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-6)].yystate.yysemantics.yysval)), (*(struct psi_plist **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-4)].yystate.yysemantics.yysval))); (*(struct psi_decl **)(&(*yyvalp)))->varargs = 1; @@ -5371,11 +5585,11 @@ yyuserAction (yyRuleNum yyn, size_t yyrhslen, yyGLRStackItem* yyvsp, (*(struct psi_decl **)(&(*yyvalp)))->func->var->array_size = (*(size_t*)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval)); } } -#line 5375 "src/parser_proc.c" /* glr.c:817 */ +#line 5589 "src/parser_proc.c" /* glr.c:817 */ break; - case 444: -#line 1212 "src/parser_proc_grammar.y" /* glr.c:817 */ + case 449: +#line 1205 "src/parser_proc_grammar.y" /* glr.c:817 */ { (*(struct psi_decl **)(&(*yyvalp))) = psi_decl_init((*(struct psi_decl_arg **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-4)].yystate.yysemantics.yysval)), (*(struct psi_plist **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-2)].yystate.yysemantics.yysval))); if ((*(size_t*)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))) { @@ -5383,11 +5597,11 @@ yyuserAction (yyRuleNum yyn, size_t yyrhslen, yyGLRStackItem* yyvsp, (*(struct psi_decl **)(&(*yyvalp)))->func->var->array_size = (*(size_t*)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval)); } } -#line 5387 "src/parser_proc.c" /* glr.c:817 */ +#line 5601 "src/parser_proc.c" /* glr.c:817 */ break; - case 445: -#line 1219 "src/parser_proc_grammar.y" /* glr.c:817 */ + case 450: +#line 1212 "src/parser_proc_grammar.y" /* glr.c:817 */ { (*(struct psi_decl **)(&(*yyvalp))) = psi_decl_init((*(struct psi_decl_arg **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-6)].yystate.yysemantics.yysval)), (*(struct psi_plist **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-4)].yystate.yysemantics.yysval))); (*(struct psi_decl **)(&(*yyvalp)))->varargs = 1; @@ -5396,71 +5610,71 @@ yyuserAction (yyRuleNum yyn, size_t yyrhslen, yyGLRStackItem* yyvsp, (*(struct psi_decl **)(&(*yyvalp)))->func->var->array_size = (*(size_t*)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval)); } } -#line 5400 "src/parser_proc.c" /* glr.c:817 */ +#line 5614 "src/parser_proc.c" /* glr.c:817 */ break; - case 446: -#line 1227 "src/parser_proc_grammar.y" /* glr.c:817 */ + case 451: +#line 1220 "src/parser_proc_grammar.y" /* glr.c:817 */ { (void) (*(size_t*)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-9)].yystate.yysemantics.yysval)); (*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-8)].yystate.yysemantics.yysval))->type = PSI_T_NAME; - + struct psi_token *type_token = psi_token_append("@", psi_token_copy((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-8)].yystate.yysemantics.yysval))), 1, "rval"); struct psi_decl_arg *rval_func = psi_decl_arg_init((*(struct psi_decl_type **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-12)].yystate.yysemantics.yysval)), psi_decl_var_init(type_token->text, (*(size_t*)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-11)].yystate.yysemantics.yysval)), 0)); struct psi_decl *rval_decl = psi_decl_init(rval_func, (*(struct psi_plist **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-2)].yystate.yysemantics.yysval))); - + rval_func->var->token = psi_token_copy(type_token); rval_func->token = psi_token_copy(type_token); if ((*(size_t*)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))) { rval_func->var->pointer_level += 1; rval_func->var->array_size = (*(size_t*)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval)); } - + struct psi_decl_type *type = psi_decl_type_init(PSI_T_FUNCTION, type_token->text); struct psi_decl_arg *func = psi_decl_arg_init(type, psi_decl_var_init((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-8)].yystate.yysemantics.yysval))->text, 1, 0)); - + type->real.func = rval_decl; func->var->token = psi_token_copy((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-8)].yystate.yysemantics.yysval))); func->token = psi_token_copy((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-8)].yystate.yysemantics.yysval))); - + (*(struct psi_decl **)(&(*yyvalp))) = psi_decl_init(func, (*(struct psi_plist **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-6)].yystate.yysemantics.yysval))); } -#line 5429 "src/parser_proc.c" /* glr.c:817 */ +#line 5643 "src/parser_proc.c" /* glr.c:817 */ break; - case 447: -#line 1251 "src/parser_proc_grammar.y" /* glr.c:817 */ + case 452: +#line 1244 "src/parser_proc_grammar.y" /* glr.c:817 */ { (void) (*(size_t*)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-12)].yystate.yysemantics.yysval)); (void) (*(size_t*)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-10)].yystate.yysemantics.yysval)); (*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-9)].yystate.yysemantics.yysval))->type = PSI_T_NAME; - + struct psi_token *type_token = psi_token_append("@", psi_token_copy((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-9)].yystate.yysemantics.yysval))), 1, "rval"); struct psi_decl_arg *rval_func = psi_decl_arg_init((*(struct psi_decl_type **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-15)].yystate.yysemantics.yysval)), psi_decl_var_init(type_token->text, (*(size_t*)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-14)].yystate.yysemantics.yysval)), 0)); struct psi_decl *rval_decl = psi_decl_init(rval_func, (*(struct psi_plist **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-2)].yystate.yysemantics.yysval))); - + rval_func->var->token = psi_token_copy(type_token); rval_func->token = psi_token_copy(type_token); if ((*(size_t*)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))) { rval_func->var->pointer_level += 1; rval_func->var->array_size = (*(size_t*)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval)); } - + struct psi_decl_type *type = psi_decl_type_init(PSI_T_FUNCTION, type_token->text); struct psi_decl_arg *func = psi_decl_arg_init(type, psi_decl_var_init((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-9)].yystate.yysemantics.yysval))->text, 1, 0)); - + type->real.func = rval_decl; func->var->token = psi_token_copy((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-9)].yystate.yysemantics.yysval))); func->token = psi_token_copy((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-9)].yystate.yysemantics.yysval))); type->token = type_token; - + (*(struct psi_decl **)(&(*yyvalp))) = psi_decl_init(func, (*(struct psi_plist **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-6)].yystate.yysemantics.yysval))); } -#line 5460 "src/parser_proc.c" /* glr.c:817 */ +#line 5674 "src/parser_proc.c" /* glr.c:817 */ break; - case 448: -#line 1280 "src/parser_proc_grammar.y" /* glr.c:817 */ + case 453: +#line 1273 "src/parser_proc_grammar.y" /* glr.c:817 */ { (*(struct psi_decl **)(&(*yyvalp))) = psi_decl_init((*(struct psi_decl_arg **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-4)].yystate.yysemantics.yysval)), (*(struct psi_plist **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-2)].yystate.yysemantics.yysval))); if ((*(size_t*)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))) { @@ -5468,11 +5682,11 @@ yyuserAction (yyRuleNum yyn, size_t yyrhslen, yyGLRStackItem* yyvsp, (*(struct psi_decl **)(&(*yyvalp)))->func->var->array_size = (*(size_t*)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval)); } } -#line 5472 "src/parser_proc.c" /* glr.c:817 */ +#line 5686 "src/parser_proc.c" /* glr.c:817 */ break; - case 449: -#line 1287 "src/parser_proc_grammar.y" /* glr.c:817 */ + case 454: +#line 1280 "src/parser_proc_grammar.y" /* glr.c:817 */ { (*(struct psi_decl **)(&(*yyvalp))) = psi_decl_init((*(struct psi_decl_arg **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-6)].yystate.yysemantics.yysval)), (*(struct psi_plist **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-4)].yystate.yysemantics.yysval))); (*(struct psi_decl **)(&(*yyvalp)))->varargs = 1; @@ -5481,11 +5695,11 @@ yyuserAction (yyRuleNum yyn, size_t yyrhslen, yyGLRStackItem* yyvsp, (*(struct psi_decl **)(&(*yyvalp)))->func->var->array_size = (*(size_t*)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval)); } } -#line 5485 "src/parser_proc.c" /* glr.c:817 */ +#line 5699 "src/parser_proc.c" /* glr.c:817 */ break; - case 450: -#line 1298 "src/parser_proc_grammar.y" /* glr.c:817 */ + case 455: +#line 1291 "src/parser_proc_grammar.y" /* glr.c:817 */ { (void) (*(size_t*)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-2)].yystate.yysemantics.yysval)); (*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-1)].yystate.yysemantics.yysval))->type = PSI_T_NAME; @@ -5493,69 +5707,69 @@ yyuserAction (yyRuleNum yyn, size_t yyrhslen, yyGLRStackItem* yyvsp, (*(struct psi_decl_arg **)(&(*yyvalp)))->var->token = psi_token_copy((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-1)].yystate.yysemantics.yysval))); (*(struct psi_decl_arg **)(&(*yyvalp)))->token = psi_token_copy((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-1)].yystate.yysemantics.yysval))); } -#line 5497 "src/parser_proc.c" /* glr.c:817 */ +#line 5711 "src/parser_proc.c" /* glr.c:817 */ break; - case 451: -#line 1344 "src/parser_proc_grammar.y" /* glr.c:817 */ + case 456: +#line 1337 "src/parser_proc_grammar.y" /* glr.c:817 */ { (void) (*(size_t*)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-1)].yystate.yysemantics.yysval)); (*(struct psi_decl_arg **)(&(*yyvalp))) = psi_decl_arg_init((*(struct psi_decl_type **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-4)].yystate.yysemantics.yysval)), psi_decl_var_init(NULL, (*(size_t*)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-3)].yystate.yysemantics.yysval)), 0)); (*(struct psi_decl_arg **)(&(*yyvalp)))->var->token = psi_token_copy((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-2)].yystate.yysemantics.yysval))); (*(struct psi_decl_arg **)(&(*yyvalp)))->token = psi_token_copy((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-2)].yystate.yysemantics.yysval))); } -#line 5508 "src/parser_proc.c" /* glr.c:817 */ +#line 5722 "src/parser_proc.c" /* glr.c:817 */ break; - case 453: -#line 1400 "src/parser_proc_grammar.y" /* glr.c:817 */ + case 458: +#line 1393 "src/parser_proc_grammar.y" /* glr.c:817 */ { (*(struct psi_plist **)(&(*yyvalp))) = NULL; } -#line 5516 "src/parser_proc.c" /* glr.c:817 */ +#line 5730 "src/parser_proc.c" /* glr.c:817 */ break; - case 454: -#line 1403 "src/parser_proc_grammar.y" /* glr.c:817 */ + case 459: +#line 1396 "src/parser_proc_grammar.y" /* glr.c:817 */ { (*(struct psi_plist **)(&(*yyvalp))) = NULL; } -#line 5524 "src/parser_proc.c" /* glr.c:817 */ +#line 5738 "src/parser_proc.c" /* glr.c:817 */ break; - case 455: -#line 1406 "src/parser_proc_grammar.y" /* glr.c:817 */ + case 460: +#line 1399 "src/parser_proc_grammar.y" /* glr.c:817 */ { (*(struct psi_plist **)(&(*yyvalp))) = (*(struct psi_plist **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval)); } -#line 5532 "src/parser_proc.c" /* glr.c:817 */ +#line 5746 "src/parser_proc.c" /* glr.c:817 */ break; - case 456: -#line 1412 "src/parser_proc_grammar.y" /* glr.c:817 */ + case 461: +#line 1405 "src/parser_proc_grammar.y" /* glr.c:817 */ { (*(struct psi_plist **)(&(*yyvalp))) = psi_plist_add(psi_plist_init((psi_plist_dtor) psi_decl_arg_free), &(*(struct psi_decl_arg **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))); } -#line 5540 "src/parser_proc.c" /* glr.c:817 */ +#line 5754 "src/parser_proc.c" /* glr.c:817 */ break; - case 457: -#line 1415 "src/parser_proc_grammar.y" /* glr.c:817 */ + case 462: +#line 1408 "src/parser_proc_grammar.y" /* glr.c:817 */ { (*(struct psi_plist **)(&(*yyvalp))) = psi_plist_add((*(struct psi_plist **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-2)].yystate.yysemantics.yysval)), &(*(struct psi_decl_arg **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))); } -#line 5548 "src/parser_proc.c" /* glr.c:817 */ +#line 5762 "src/parser_proc.c" /* glr.c:817 */ break; - case 458: -#line 1421 "src/parser_proc_grammar.y" /* glr.c:817 */ + case 463: +#line 1414 "src/parser_proc_grammar.y" /* glr.c:817 */ { char digest[17]; struct psi_token *name; psi_token_hash((*(struct psi_decl **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))->func->token, digest); name = psi_token_append("@", psi_token_copy((*(struct psi_decl **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))->func->token), 2, "funct", digest); - + (*(struct psi_decl_arg **)(&(*yyvalp))) = psi_decl_arg_init( psi_decl_type_init(PSI_T_FUNCTION, name->text), psi_decl_var_copy((*(struct psi_decl **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))->func->var) @@ -5564,30 +5778,30 @@ yyuserAction (yyRuleNum yyn, size_t yyrhslen, yyGLRStackItem* yyvsp, (*(struct psi_decl_arg **)(&(*yyvalp)))->type->token = psi_token_copy((*(struct psi_decl **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))->func->token); (*(struct psi_decl_arg **)(&(*yyvalp)))->type->real.func = (*(struct psi_decl **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval)); } -#line 5568 "src/parser_proc.c" /* glr.c:817 */ +#line 5782 "src/parser_proc.c" /* glr.c:817 */ break; - case 459: -#line 1436 "src/parser_proc_grammar.y" /* glr.c:817 */ + case 464: +#line 1429 "src/parser_proc_grammar.y" /* glr.c:817 */ { (*(struct psi_decl_arg **)(&(*yyvalp))) = (*(struct psi_decl_arg **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval)); } -#line 5576 "src/parser_proc.c" /* glr.c:817 */ +#line 5790 "src/parser_proc.c" /* glr.c:817 */ break; - case 460: -#line 1439 "src/parser_proc_grammar.y" /* glr.c:817 */ + case 465: +#line 1432 "src/parser_proc_grammar.y" /* glr.c:817 */ { (*(struct psi_decl_arg **)(&(*yyvalp))) = psi_decl_arg_init( - (*(struct psi_decl_type **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-1)].yystate.yysemantics.yysval)), - psi_decl_var_init(NULL, (*(size_t*)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval)), 0) + (*(struct psi_decl_type **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-2)].yystate.yysemantics.yysval)), + psi_decl_var_init(NULL, (*(size_t*)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-1)].yystate.yysemantics.yysval)), (*(size_t*)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))) ); } -#line 5587 "src/parser_proc.c" /* glr.c:817 */ +#line 5801 "src/parser_proc.c" /* glr.c:817 */ break; - case 461: -#line 1468 "src/parser_proc_grammar.y" /* glr.c:817 */ + case 466: +#line 1461 "src/parser_proc_grammar.y" /* glr.c:817 */ { (*(struct psi_decl_arg **)(&(*yyvalp))) = psi_decl_arg_init( psi_decl_type_init(PSI_T_FUNCTION, (*(struct psi_decl **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))->func->var->name), @@ -5596,39 +5810,39 @@ yyuserAction (yyRuleNum yyn, size_t yyrhslen, yyGLRStackItem* yyvsp, (*(struct psi_decl_arg **)(&(*yyvalp)))->type->token = psi_token_copy((*(struct psi_decl **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))->func->token); (*(struct psi_decl_arg **)(&(*yyvalp)))->type->real.func = (*(struct psi_decl **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval)); } -#line 5600 "src/parser_proc.c" /* glr.c:817 */ +#line 5814 "src/parser_proc.c" /* glr.c:817 */ break; - case 462: -#line 1476 "src/parser_proc_grammar.y" /* glr.c:817 */ + case 467: +#line 1469 "src/parser_proc_grammar.y" /* glr.c:817 */ { (*(struct psi_decl_arg **)(&(*yyvalp))) = psi_decl_arg_init((*(struct psi_decl_type **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-1)].yystate.yysemantics.yysval)), (*(struct psi_decl_var **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))); } -#line 5608 "src/parser_proc.c" /* glr.c:817 */ +#line 5822 "src/parser_proc.c" /* glr.c:817 */ break; - case 463: -#line 1504 "src/parser_proc_grammar.y" /* glr.c:817 */ + case 468: +#line 1497 "src/parser_proc_grammar.y" /* glr.c:817 */ { (*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-1)].yystate.yysemantics.yysval))->type = PSI_T_NAME; (*(struct psi_decl_var **)(&(*yyvalp))) = psi_decl_var_init((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-1)].yystate.yysemantics.yysval))->text, (*(size_t*)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-2)].yystate.yysemantics.yysval)) + !! (*(size_t*)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval)), (*(size_t*)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))); (*(struct psi_decl_var **)(&(*yyvalp)))->token = psi_token_copy((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-1)].yystate.yysemantics.yysval))); } -#line 5618 "src/parser_proc.c" /* glr.c:817 */ +#line 5832 "src/parser_proc.c" /* glr.c:817 */ break; - case 464: -#line 1509 "src/parser_proc_grammar.y" /* glr.c:817 */ + case 469: +#line 1502 "src/parser_proc_grammar.y" /* glr.c:817 */ { (*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-1)].yystate.yysemantics.yysval))->type = PSI_T_NAME; (*(struct psi_decl_var **)(&(*yyvalp))) = psi_decl_var_init((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-1)].yystate.yysemantics.yysval))->text, !! (*(size_t*)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval)), (*(size_t*)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))); (*(struct psi_decl_var **)(&(*yyvalp)))->token = psi_token_copy((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-1)].yystate.yysemantics.yysval))); } -#line 5628 "src/parser_proc.c" /* glr.c:817 */ +#line 5842 "src/parser_proc.c" /* glr.c:817 */ break; - case 465: -#line 1517 "src/parser_proc_grammar.y" /* glr.c:817 */ + case 470: +#line 1510 "src/parser_proc_grammar.y" /* glr.c:817 */ { (*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-2)].yystate.yysemantics.yysval))->type = PSI_T_NAME; (*(struct psi_decl_union **)(&(*yyvalp))) = psi_decl_union_init((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-2)].yystate.yysemantics.yysval))->text, (*(struct psi_plist **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))); @@ -5636,11 +5850,11 @@ yyuserAction (yyRuleNum yyn, size_t yyrhslen, yyGLRStackItem* yyvsp, (*(struct psi_decl_union **)(&(*yyvalp)))->size = (*(struct psi_layout*)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-1)].yystate.yysemantics.yysval)).len; (*(struct psi_decl_union **)(&(*yyvalp)))->token = psi_token_copy((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-2)].yystate.yysemantics.yysval))); } -#line 5640 "src/parser_proc.c" /* glr.c:817 */ +#line 5854 "src/parser_proc.c" /* glr.c:817 */ break; - case 466: -#line 1527 "src/parser_proc_grammar.y" /* glr.c:817 */ + case 471: +#line 1520 "src/parser_proc_grammar.y" /* glr.c:817 */ { (*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-2)].yystate.yysemantics.yysval))->type = PSI_T_NAME; (*(struct psi_decl_struct **)(&(*yyvalp))) = psi_decl_struct_init((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-2)].yystate.yysemantics.yysval))->text, (*(struct psi_plist **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))); @@ -5648,34 +5862,34 @@ yyuserAction (yyRuleNum yyn, size_t yyrhslen, yyGLRStackItem* yyvsp, (*(struct psi_decl_struct **)(&(*yyvalp)))->size = (*(struct psi_layout*)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-1)].yystate.yysemantics.yysval)).len; (*(struct psi_decl_struct **)(&(*yyvalp)))->token = psi_token_copy((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-2)].yystate.yysemantics.yysval))); } -#line 5652 "src/parser_proc.c" /* glr.c:817 */ +#line 5866 "src/parser_proc.c" /* glr.c:817 */ break; - case 467: -#line 1537 "src/parser_proc_grammar.y" /* glr.c:817 */ + case 472: +#line 1530 "src/parser_proc_grammar.y" /* glr.c:817 */ { (*(struct psi_plist **)(&(*yyvalp))) = NULL; } -#line 5660 "src/parser_proc.c" /* glr.c:817 */ +#line 5874 "src/parser_proc.c" /* glr.c:817 */ break; - case 469: -#line 1544 "src/parser_proc_grammar.y" /* glr.c:817 */ + case 474: +#line 1537 "src/parser_proc_grammar.y" /* glr.c:817 */ { (*(struct psi_plist **)(&(*yyvalp))) = (*(struct psi_plist **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-1)].yystate.yysemantics.yysval)); } -#line 5668 "src/parser_proc.c" /* glr.c:817 */ +#line 5882 "src/parser_proc.c" /* glr.c:817 */ break; - case 470: -#line 1550 "src/parser_proc_grammar.y" /* glr.c:817 */ + case 475: +#line 1543 "src/parser_proc_grammar.y" /* glr.c:817 */ { (*(struct psi_decl_arg **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-3)].yystate.yysemantics.yysval))->layout = (*(struct psi_layout **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-2)].yystate.yysemantics.yysval)); (*(struct psi_plist **)(&(*yyvalp))) = psi_plist_add(psi_plist_init((psi_plist_dtor) psi_decl_arg_free), &(*(struct psi_decl_arg **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-3)].yystate.yysemantics.yysval))); if ((*(struct psi_plist **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-1)].yystate.yysemantics.yysval))) { size_t i = 0; struct psi_decl_arg *arg; - + while (psi_plist_get((*(struct psi_plist **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-1)].yystate.yysemantics.yysval)), i++, &arg)) { arg->type = psi_decl_type_copy((*(struct psi_decl_arg **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-3)].yystate.yysemantics.yysval))->type); (*(struct psi_plist **)(&(*yyvalp))) = psi_plist_add((*(struct psi_plist **)(&(*yyvalp))), &arg); @@ -5683,18 +5897,18 @@ yyuserAction (yyRuleNum yyn, size_t yyrhslen, yyGLRStackItem* yyvsp, free((*(struct psi_plist **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-1)].yystate.yysemantics.yysval))); } } -#line 5687 "src/parser_proc.c" /* glr.c:817 */ +#line 5901 "src/parser_proc.c" /* glr.c:817 */ break; - case 471: -#line 1564 "src/parser_proc_grammar.y" /* glr.c:817 */ + case 476: +#line 1557 "src/parser_proc_grammar.y" /* glr.c:817 */ { (*(struct psi_decl_arg **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-3)].yystate.yysemantics.yysval))->layout = (*(struct psi_layout **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-2)].yystate.yysemantics.yysval)); (*(struct psi_plist **)(&(*yyvalp))) = psi_plist_add((*(struct psi_plist **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-4)].yystate.yysemantics.yysval)), &(*(struct psi_decl_arg **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-3)].yystate.yysemantics.yysval))); if ((*(struct psi_plist **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-1)].yystate.yysemantics.yysval))) { size_t i = 0; struct psi_decl_arg *arg; - + while (psi_plist_get((*(struct psi_plist **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-1)].yystate.yysemantics.yysval)), i++, &arg)) { arg->type = psi_decl_type_copy((*(struct psi_decl_arg **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-3)].yystate.yysemantics.yysval))->type); (*(struct psi_plist **)(&(*yyvalp))) = psi_plist_add((*(struct psi_plist **)(&(*yyvalp))), &arg); @@ -5702,27 +5916,27 @@ yyuserAction (yyRuleNum yyn, size_t yyrhslen, yyGLRStackItem* yyvsp, free((*(struct psi_plist **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-1)].yystate.yysemantics.yysval))); } } -#line 5706 "src/parser_proc.c" /* glr.c:817 */ +#line 5920 "src/parser_proc.c" /* glr.c:817 */ break; - case 472: -#line 1581 "src/parser_proc_grammar.y" /* glr.c:817 */ + case 477: +#line 1574 "src/parser_proc_grammar.y" /* glr.c:817 */ { (*(struct psi_plist **)(&(*yyvalp))) = NULL; } -#line 5714 "src/parser_proc.c" /* glr.c:817 */ +#line 5928 "src/parser_proc.c" /* glr.c:817 */ break; - case 473: -#line 1584 "src/parser_proc_grammar.y" /* glr.c:817 */ + case 478: +#line 1577 "src/parser_proc_grammar.y" /* glr.c:817 */ { (*(struct psi_plist **)(&(*yyvalp))) = (*(struct psi_plist **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval)); } -#line 5722 "src/parser_proc.c" /* glr.c:817 */ +#line 5936 "src/parser_proc.c" /* glr.c:817 */ break; - case 474: -#line 1590 "src/parser_proc_grammar.y" /* glr.c:817 */ + case 479: +#line 1583 "src/parser_proc_grammar.y" /* glr.c:817 */ { { struct psi_decl_arg *arg = psi_decl_arg_init(NULL, (*(struct psi_decl_var **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-1)].yystate.yysemantics.yysval))); @@ -5730,11 +5944,11 @@ yyuserAction (yyRuleNum yyn, size_t yyrhslen, yyGLRStackItem* yyvsp, (*(struct psi_plist **)(&(*yyvalp))) = psi_plist_add(psi_plist_init((psi_plist_dtor) psi_decl_arg_free), &arg); } } -#line 5734 "src/parser_proc.c" /* glr.c:817 */ +#line 5948 "src/parser_proc.c" /* glr.c:817 */ break; - case 475: -#line 1597 "src/parser_proc_grammar.y" /* glr.c:817 */ + case 480: +#line 1590 "src/parser_proc_grammar.y" /* glr.c:817 */ { { struct psi_decl_arg *arg = psi_decl_arg_init(NULL, (*(struct psi_decl_var **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-1)].yystate.yysemantics.yysval))); @@ -5742,189 +5956,215 @@ yyuserAction (yyRuleNum yyn, size_t yyrhslen, yyGLRStackItem* yyvsp, (*(struct psi_plist **)(&(*yyvalp))) = psi_plist_add((*(struct psi_plist **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-3)].yystate.yysemantics.yysval)), &arg); } } -#line 5746 "src/parser_proc.c" /* glr.c:817 */ +#line 5960 "src/parser_proc.c" /* glr.c:817 */ break; - case 476: -#line 1607 "src/parser_proc_grammar.y" /* glr.c:817 */ + case 481: +#line 1597 "src/parser_proc_grammar.y" /* glr.c:817 */ + { + { + struct psi_decl_var *var = psi_decl_var_init(NULL, 0, 0); + struct psi_decl_arg *arg = psi_decl_arg_init(NULL, var); + arg->layout = (*(struct psi_layout **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval)); + (*(struct psi_plist **)(&(*yyvalp))) = psi_plist_add(psi_plist_init((psi_plist_dtor) psi_decl_arg_free), &arg); + } +} +#line 5973 "src/parser_proc.c" /* glr.c:817 */ + break; + + case 482: +#line 1605 "src/parser_proc_grammar.y" /* glr.c:817 */ + { + { + struct psi_decl_var *var = psi_decl_var_init(NULL, 0, 0); + struct psi_decl_arg *arg = psi_decl_arg_init(NULL, var); + arg->layout = (*(struct psi_layout **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval)); + (*(struct psi_plist **)(&(*yyvalp))) = psi_plist_add((*(struct psi_plist **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-2)].yystate.yysemantics.yysval)), &arg); + } +} +#line 5986 "src/parser_proc.c" /* glr.c:817 */ + break; + + case 483: +#line 1616 "src/parser_proc_grammar.y" /* glr.c:817 */ { (*(struct psi_decl_enum **)(&(*yyvalp))) = psi_decl_enum_init((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-4)].yystate.yysemantics.yysval))->text, (*(struct psi_plist **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-2)].yystate.yysemantics.yysval))); (*(struct psi_decl_enum **)(&(*yyvalp)))->token = (*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-4)].yystate.yysemantics.yysval)); } -#line 5755 "src/parser_proc.c" /* glr.c:817 */ +#line 5995 "src/parser_proc.c" /* glr.c:817 */ break; - case 477: -#line 1614 "src/parser_proc_grammar.y" /* glr.c:817 */ + case 484: +#line 1623 "src/parser_proc_grammar.y" /* glr.c:817 */ { (*(struct psi_plist **)(&(*yyvalp))) = psi_plist_add(psi_plist_init((psi_plist_dtor) psi_decl_enum_item_free), &(*(struct psi_decl_enum_item **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))); } -#line 5763 "src/parser_proc.c" /* glr.c:817 */ +#line 6003 "src/parser_proc.c" /* glr.c:817 */ break; - case 478: -#line 1617 "src/parser_proc_grammar.y" /* glr.c:817 */ + case 485: +#line 1626 "src/parser_proc_grammar.y" /* glr.c:817 */ { (*(struct psi_plist **)(&(*yyvalp))) = psi_plist_add((*(struct psi_plist **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-2)].yystate.yysemantics.yysval)), &(*(struct psi_decl_enum_item **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))); } -#line 5771 "src/parser_proc.c" /* glr.c:817 */ +#line 6011 "src/parser_proc.c" /* glr.c:817 */ break; - case 479: -#line 1623 "src/parser_proc_grammar.y" /* glr.c:817 */ + case 486: +#line 1632 "src/parser_proc_grammar.y" /* glr.c:817 */ { (*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))->type = PSI_T_NAME; (*(struct psi_decl_enum_item **)(&(*yyvalp))) = psi_decl_enum_item_init((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))->text, NULL); (*(struct psi_decl_enum_item **)(&(*yyvalp)))->token = psi_token_copy((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))); } -#line 5781 "src/parser_proc.c" /* glr.c:817 */ +#line 6021 "src/parser_proc.c" /* glr.c:817 */ break; - case 480: -#line 1628 "src/parser_proc_grammar.y" /* glr.c:817 */ + case 487: +#line 1637 "src/parser_proc_grammar.y" /* glr.c:817 */ { (*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-2)].yystate.yysemantics.yysval))->type = PSI_T_NAME; (*(struct psi_decl_enum_item **)(&(*yyvalp))) = psi_decl_enum_item_init((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-2)].yystate.yysemantics.yysval))->text, (*(struct psi_num_exp **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))); (*(struct psi_decl_enum_item **)(&(*yyvalp)))->token = psi_token_copy((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-2)].yystate.yysemantics.yysval))); } -#line 5791 "src/parser_proc.c" /* glr.c:817 */ +#line 6031 "src/parser_proc.c" /* glr.c:817 */ break; - case 481: -#line 1636 "src/parser_proc_grammar.y" /* glr.c:817 */ + case 488: +#line 1645 "src/parser_proc_grammar.y" /* glr.c:817 */ { (*(struct psi_num_exp **)(&(*yyvalp))) = psi_num_exp_init_num((*(struct psi_number **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))); (*(struct psi_num_exp **)(&(*yyvalp)))->token = psi_token_copy((*(struct psi_number **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))->token); } -#line 5800 "src/parser_proc.c" /* glr.c:817 */ +#line 6040 "src/parser_proc.c" /* glr.c:817 */ break; - case 482: -#line 1640 "src/parser_proc_grammar.y" /* glr.c:817 */ + case 489: +#line 1649 "src/parser_proc_grammar.y" /* glr.c:817 */ { (*(struct psi_num_exp **)(&(*yyvalp))) = psi_num_exp_init_cast((*(struct psi_decl_type **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-2)].yystate.yysemantics.yysval)), (*(struct psi_num_exp **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))); (*(struct psi_num_exp **)(&(*yyvalp)))->token = psi_token_copy((*(struct psi_decl_type **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-2)].yystate.yysemantics.yysval))->token); } -#line 5809 "src/parser_proc.c" /* glr.c:817 */ +#line 6049 "src/parser_proc.c" /* glr.c:817 */ break; - case 483: -#line 1644 "src/parser_proc_grammar.y" /* glr.c:817 */ + case 490: +#line 1653 "src/parser_proc_grammar.y" /* glr.c:817 */ { (*(struct psi_num_exp **)(&(*yyvalp))) = psi_num_exp_init_unary(PSI_T_LPAREN, (*(struct psi_num_exp **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-1)].yystate.yysemantics.yysval))); (*(struct psi_num_exp **)(&(*yyvalp)))->token = psi_token_copy((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-2)].yystate.yysemantics.yysval))); } -#line 5818 "src/parser_proc.c" /* glr.c:817 */ +#line 6058 "src/parser_proc.c" /* glr.c:817 */ break; - case 484: -#line 1648 "src/parser_proc_grammar.y" /* glr.c:817 */ + case 491: +#line 1657 "src/parser_proc_grammar.y" /* glr.c:817 */ { (*(struct psi_num_exp **)(&(*yyvalp))) = psi_num_exp_init_binary((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-1)].yystate.yysemantics.yysval))->type, (*(struct psi_num_exp **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-2)].yystate.yysemantics.yysval)), (*(struct psi_num_exp **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))); (*(struct psi_num_exp **)(&(*yyvalp)))->token = psi_token_copy((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-1)].yystate.yysemantics.yysval))); } -#line 5827 "src/parser_proc.c" /* glr.c:817 */ +#line 6067 "src/parser_proc.c" /* glr.c:817 */ break; - case 485: -#line 1652 "src/parser_proc_grammar.y" /* glr.c:817 */ + case 492: +#line 1661 "src/parser_proc_grammar.y" /* glr.c:817 */ { (*(struct psi_num_exp **)(&(*yyvalp))) = psi_num_exp_init_unary((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-1)].yystate.yysemantics.yysval))->type, (*(struct psi_num_exp **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))); (*(struct psi_num_exp **)(&(*yyvalp)))->token = psi_token_copy((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-1)].yystate.yysemantics.yysval))); } -#line 5836 "src/parser_proc.c" /* glr.c:817 */ +#line 6076 "src/parser_proc.c" /* glr.c:817 */ break; - case 486: -#line 1656 "src/parser_proc_grammar.y" /* glr.c:817 */ + case 493: +#line 1665 "src/parser_proc_grammar.y" /* glr.c:817 */ { (*(struct psi_num_exp **)(&(*yyvalp))) = psi_num_exp_init_ternary((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-3)].yystate.yysemantics.yysval))->type, (*(struct psi_num_exp **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-4)].yystate.yysemantics.yysval)), (*(struct psi_num_exp **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-2)].yystate.yysemantics.yysval)), (*(struct psi_num_exp **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))); (*(struct psi_num_exp **)(&(*yyvalp)))->token = psi_token_copy((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-3)].yystate.yysemantics.yysval))); } -#line 5845 "src/parser_proc.c" /* glr.c:817 */ +#line 6085 "src/parser_proc.c" /* glr.c:817 */ break; - case 487: -#line 1663 "src/parser_proc_grammar.y" /* glr.c:817 */ + case 494: +#line 1672 "src/parser_proc_grammar.y" /* glr.c:817 */ { (*(struct psi_number **)(&(*yyvalp))) = psi_number_init((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))->type, (*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))->text, (*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))->flags); (*(struct psi_number **)(&(*yyvalp)))->token = psi_token_copy((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))); } -#line 5854 "src/parser_proc.c" /* glr.c:817 */ +#line 6094 "src/parser_proc.c" /* glr.c:817 */ break; - case 488: -#line 1667 "src/parser_proc_grammar.y" /* glr.c:817 */ + case 495: +#line 1676 "src/parser_proc_grammar.y" /* glr.c:817 */ { (*(struct psi_number **)(&(*yyvalp))) = psi_number_init((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))->type, (*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))->text, 0); (*(struct psi_number **)(&(*yyvalp)))->token = psi_token_copy((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))); } -#line 5863 "src/parser_proc.c" /* glr.c:817 */ +#line 6103 "src/parser_proc.c" /* glr.c:817 */ break; - case 489: -#line 1671 "src/parser_proc_grammar.y" /* glr.c:817 */ + case 496: +#line 1680 "src/parser_proc_grammar.y" /* glr.c:817 */ { (*(struct psi_number **)(&(*yyvalp))) = psi_number_init((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))->type, (*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))->text, 0); (*(struct psi_number **)(&(*yyvalp)))->token = psi_token_copy((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))); } -#line 5872 "src/parser_proc.c" /* glr.c:817 */ +#line 6112 "src/parser_proc.c" /* glr.c:817 */ break; - case 490: -#line 1675 "src/parser_proc_grammar.y" /* glr.c:817 */ + case 497: +#line 1684 "src/parser_proc_grammar.y" /* glr.c:817 */ { (*(struct psi_number **)(&(*yyvalp))) = psi_number_init((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))->type, (*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))->text, 0); (*(struct psi_number **)(&(*yyvalp)))->token = psi_token_copy((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))); } -#line 5881 "src/parser_proc.c" /* glr.c:817 */ +#line 6121 "src/parser_proc.c" /* glr.c:817 */ break; - case 491: -#line 1679 "src/parser_proc_grammar.y" /* glr.c:817 */ + case 498: +#line 1688 "src/parser_proc_grammar.y" /* glr.c:817 */ { (*(struct psi_number **)(&(*yyvalp))) = psi_number_init(PSI_T_NAME, (*(struct psi_decl_var **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval)), 0); (*(struct psi_number **)(&(*yyvalp)))->token = psi_token_copy((*(struct psi_decl_var **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))->token); } -#line 5890 "src/parser_proc.c" /* glr.c:817 */ +#line 6130 "src/parser_proc.c" /* glr.c:817 */ break; - case 492: -#line 1683 "src/parser_proc_grammar.y" /* glr.c:817 */ + case 499: +#line 1692 "src/parser_proc_grammar.y" /* glr.c:817 */ { (*(struct psi_number **)(&(*yyvalp))) = (*(struct psi_number **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval)); } -#line 5898 "src/parser_proc.c" /* glr.c:817 */ +#line 6138 "src/parser_proc.c" /* glr.c:817 */ break; - case 493: -#line 1689 "src/parser_proc_grammar.y" /* glr.c:817 */ + case 500: +#line 1698 "src/parser_proc_grammar.y" /* glr.c:817 */ { (*(struct psi_number **)(&(*yyvalp))) = (*(struct psi_number **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-1)].yystate.yysemantics.yysval)); (*(struct psi_number **)(&(*yyvalp)))->token = psi_token_copy((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-3)].yystate.yysemantics.yysval))); } -#line 5907 "src/parser_proc.c" /* glr.c:817 */ +#line 6147 "src/parser_proc.c" /* glr.c:817 */ break; - case 494: -#line 1693 "src/parser_proc_grammar.y" /* glr.c:817 */ + case 501: +#line 1702 "src/parser_proc_grammar.y" /* glr.c:817 */ { (*(struct psi_number **)(&(*yyvalp))) = (*(struct psi_number **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval)); (*(struct psi_number **)(&(*yyvalp)))->token = psi_token_copy((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-1)].yystate.yysemantics.yysval))); } -#line 5916 "src/parser_proc.c" /* glr.c:817 */ +#line 6156 "src/parser_proc.c" /* glr.c:817 */ break; - case 495: -#line 1700 "src/parser_proc_grammar.y" /* glr.c:817 */ + case 502: +#line 1709 "src/parser_proc_grammar.y" /* glr.c:817 */ { (*(struct psi_number **)(&(*yyvalp))) = (*(struct psi_number **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval)); } -#line 5924 "src/parser_proc.c" /* glr.c:817 */ +#line 6164 "src/parser_proc.c" /* glr.c:817 */ break; - case 496: -#line 1703 "src/parser_proc_grammar.y" /* glr.c:817 */ + case 503: +#line 1712 "src/parser_proc_grammar.y" /* glr.c:817 */ { if ((*(size_t*)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))) { int8_t sizeof_void_p = sizeof(void *); @@ -5934,38 +6174,38 @@ yyuserAction (yyRuleNum yyn, size_t yyrhslen, yyGLRStackItem* yyvsp, (*(struct psi_number **)(&(*yyvalp))) = psi_number_init(PSI_T_SIZEOF, (*(struct psi_decl_type **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-1)].yystate.yysemantics.yysval)), 0); } } -#line 5938 "src/parser_proc.c" /* glr.c:817 */ +#line 6178 "src/parser_proc.c" /* glr.c:817 */ break; - case 497: -#line 1715 "src/parser_proc_grammar.y" /* glr.c:817 */ + case 504: +#line 1724 "src/parser_proc_grammar.y" /* glr.c:817 */ { int8_t sizeof_void_p = sizeof(void *); (*(struct psi_number **)(&(*yyvalp))) = psi_number_init(PSI_T_INT8, &sizeof_void_p, 0); } -#line 5947 "src/parser_proc.c" /* glr.c:817 */ +#line 6187 "src/parser_proc.c" /* glr.c:817 */ break; - case 498: -#line 1719 "src/parser_proc_grammar.y" /* glr.c:817 */ + case 505: +#line 1728 "src/parser_proc_grammar.y" /* glr.c:817 */ { int8_t sizeof_a = sizeof('a'); (*(struct psi_number **)(&(*yyvalp))) = psi_number_init(PSI_T_INT8, &sizeof_a, 0); } -#line 5956 "src/parser_proc.c" /* glr.c:817 */ +#line 6196 "src/parser_proc.c" /* glr.c:817 */ break; - case 499: -#line 1723 "src/parser_proc_grammar.y" /* glr.c:817 */ + case 506: +#line 1732 "src/parser_proc_grammar.y" /* glr.c:817 */ { uint64_t len = (*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))->text->len + 1; (*(struct psi_number **)(&(*yyvalp))) = psi_number_init(PSI_T_UINT64, &len, 0); } -#line 5965 "src/parser_proc.c" /* glr.c:817 */ +#line 6205 "src/parser_proc.c" /* glr.c:817 */ break; - case 500: -#line 1730 "src/parser_proc_grammar.y" /* glr.c:817 */ + case 507: +#line 1739 "src/parser_proc_grammar.y" /* glr.c:817 */ { if ((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))) { (*(struct psi_token **)(&(*yyvalp))) = psi_token_copy((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))); @@ -5976,11 +6216,11 @@ yyuserAction (yyRuleNum yyn, size_t yyrhslen, yyGLRStackItem* yyvsp, (*(struct psi_token **)(&(*yyvalp))) = psi_token_append("@", psi_token_copy((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-1)].yystate.yysemantics.yysval))), 1, digest); } } -#line 5980 "src/parser_proc.c" /* glr.c:817 */ +#line 6220 "src/parser_proc.c" /* glr.c:817 */ break; - case 501: -#line 1743 "src/parser_proc_grammar.y" /* glr.c:817 */ + case 508: +#line 1752 "src/parser_proc_grammar.y" /* glr.c:817 */ { if ((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))) { (*(struct psi_token **)(&(*yyvalp))) = psi_token_copy((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))); @@ -5991,11 +6231,11 @@ yyuserAction (yyRuleNum yyn, size_t yyrhslen, yyGLRStackItem* yyvsp, (*(struct psi_token **)(&(*yyvalp))) = psi_token_append("@", psi_token_copy((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-1)].yystate.yysemantics.yysval))), 1, digest); } } -#line 5995 "src/parser_proc.c" /* glr.c:817 */ +#line 6235 "src/parser_proc.c" /* glr.c:817 */ break; - case 502: -#line 1756 "src/parser_proc_grammar.y" /* glr.c:817 */ + case 509: +#line 1765 "src/parser_proc_grammar.y" /* glr.c:817 */ { if ((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))) { (*(struct psi_token **)(&(*yyvalp))) = psi_token_copy((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))); @@ -6006,188 +6246,188 @@ yyuserAction (yyRuleNum yyn, size_t yyrhslen, yyGLRStackItem* yyvsp, (*(struct psi_token **)(&(*yyvalp))) = psi_token_append("@", psi_token_copy((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-1)].yystate.yysemantics.yysval))), 1, digest); } } -#line 6010 "src/parser_proc.c" /* glr.c:817 */ +#line 6250 "src/parser_proc.c" /* glr.c:817 */ break; - case 503: -#line 1769 "src/parser_proc_grammar.y" /* glr.c:817 */ + case 510: +#line 1778 "src/parser_proc_grammar.y" /* glr.c:817 */ { (*(struct psi_token **)(&(*yyvalp))) = NULL; } -#line 6018 "src/parser_proc.c" /* glr.c:817 */ +#line 6258 "src/parser_proc.c" /* glr.c:817 */ break; - case 504: -#line 1772 "src/parser_proc_grammar.y" /* glr.c:817 */ + case 511: +#line 1781 "src/parser_proc_grammar.y" /* glr.c:817 */ { (*(struct psi_token **)(&(*yyvalp))) = (*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval)); (*(struct psi_token **)(&(*yyvalp)))->type = PSI_T_NAME; } -#line 6027 "src/parser_proc.c" /* glr.c:817 */ +#line 6267 "src/parser_proc.c" /* glr.c:817 */ break; - case 507: -#line 1784 "src/parser_proc_grammar.y" /* glr.c:817 */ + case 514: +#line 1793 "src/parser_proc_grammar.y" /* glr.c:817 */ { (*(struct psi_layout **)(&(*yyvalp))) = NULL; } -#line 6035 "src/parser_proc.c" /* glr.c:817 */ +#line 6275 "src/parser_proc.c" /* glr.c:817 */ break; - case 508: -#line 1787 "src/parser_proc_grammar.y" /* glr.c:817 */ + case 515: +#line 1796 "src/parser_proc_grammar.y" /* glr.c:817 */ { (*(struct psi_layout **)(&(*yyvalp))) = psi_layout_init(0, 0, psi_layout_init(0, atol((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))->text->val), NULL)); } -#line 6043 "src/parser_proc.c" /* glr.c:817 */ +#line 6283 "src/parser_proc.c" /* glr.c:817 */ break; - case 509: -#line 1790 "src/parser_proc_grammar.y" /* glr.c:817 */ + case 516: +#line 1799 "src/parser_proc_grammar.y" /* glr.c:817 */ { (*(struct psi_layout **)(&(*yyvalp))) = psi_layout_init(atol((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-3)].yystate.yysemantics.yysval))->text->val), atol((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-1)].yystate.yysemantics.yysval))->text->val), NULL); } -#line 6051 "src/parser_proc.c" /* glr.c:817 */ +#line 6291 "src/parser_proc.c" /* glr.c:817 */ break; - case 510: -#line 1793 "src/parser_proc_grammar.y" /* glr.c:817 */ + case 517: +#line 1802 "src/parser_proc_grammar.y" /* glr.c:817 */ { (*(struct psi_layout **)(&(*yyvalp))) = psi_layout_init(atol((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-3)].yystate.yysemantics.yysval))->text->val), atol((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-1)].yystate.yysemantics.yysval))->text->val), psi_layout_init(0, atol((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-7)].yystate.yysemantics.yysval))->text->val), NULL)); } -#line 6059 "src/parser_proc.c" /* glr.c:817 */ +#line 6299 "src/parser_proc.c" /* glr.c:817 */ break; - case 511: -#line 1799 "src/parser_proc_grammar.y" /* glr.c:817 */ + case 518: +#line 1808 "src/parser_proc_grammar.y" /* glr.c:817 */ { (*(struct psi_layout*)(&(*yyvalp))).pos = 0; (*(struct psi_layout*)(&(*yyvalp))).len = 0; } -#line 6068 "src/parser_proc.c" /* glr.c:817 */ +#line 6308 "src/parser_proc.c" /* glr.c:817 */ break; - case 512: -#line 1803 "src/parser_proc_grammar.y" /* glr.c:817 */ + case 519: +#line 1812 "src/parser_proc_grammar.y" /* glr.c:817 */ { (*(struct psi_layout*)(&(*yyvalp))).pos = atol((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-3)].yystate.yysemantics.yysval))->text->val); (*(struct psi_layout*)(&(*yyvalp))).len = atol((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-1)].yystate.yysemantics.yysval))->text->val); } -#line 6077 "src/parser_proc.c" /* glr.c:817 */ +#line 6317 "src/parser_proc.c" /* glr.c:817 */ break; - case 513: -#line 1810 "src/parser_proc_grammar.y" /* glr.c:817 */ + case 520: +#line 1819 "src/parser_proc_grammar.y" /* glr.c:817 */ { (*(size_t*)(&(*yyvalp))) = 0; } -#line 6085 "src/parser_proc.c" /* glr.c:817 */ +#line 6325 "src/parser_proc.c" /* glr.c:817 */ break; - case 514: -#line 1813 "src/parser_proc_grammar.y" /* glr.c:817 */ + case 521: +#line 1822 "src/parser_proc_grammar.y" /* glr.c:817 */ { (*(size_t*)(&(*yyvalp))) = 0; } -#line 6093 "src/parser_proc.c" /* glr.c:817 */ +#line 6333 "src/parser_proc.c" /* glr.c:817 */ break; - case 515: -#line 1816 "src/parser_proc_grammar.y" /* glr.c:817 */ + case 522: +#line 1825 "src/parser_proc_grammar.y" /* glr.c:817 */ { struct psi_validate_scope scope = {0}; psi_validate_scope_ctor(&scope); - scope.defs = &P->preproc->defs; + scope.cpp = P->preproc; if (psi_num_exp_validate(PSI_DATA(P), (*(struct psi_num_exp **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-1)].yystate.yysemantics.yysval)), &scope)) { - (*(size_t*)(&(*yyvalp))) = psi_num_exp_get_long((*(struct psi_num_exp **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-1)].yystate.yysemantics.yysval)), NULL, &P->preproc->defs); + (*(size_t*)(&(*yyvalp))) = psi_num_exp_get_long((*(struct psi_num_exp **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-1)].yystate.yysemantics.yysval)), NULL, P->preproc); } else { (*(size_t*)(&(*yyvalp))) = 0; } psi_num_exp_free(&(*(struct psi_num_exp **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-1)].yystate.yysemantics.yysval))); psi_validate_scope_dtor(&scope); } -#line 6110 "src/parser_proc.c" /* glr.c:817 */ +#line 6350 "src/parser_proc.c" /* glr.c:817 */ break; - case 520: -#line 1838 "src/parser_proc_grammar.y" /* glr.c:817 */ + case 527: +#line 1847 "src/parser_proc_grammar.y" /* glr.c:817 */ { (*(size_t*)(&(*yyvalp))) = 0; } -#line 6118 "src/parser_proc.c" /* glr.c:817 */ +#line 6358 "src/parser_proc.c" /* glr.c:817 */ break; - case 521: -#line 1841 "src/parser_proc_grammar.y" /* glr.c:817 */ + case 528: +#line 1850 "src/parser_proc_grammar.y" /* glr.c:817 */ { (*(size_t*)(&(*yyvalp))) = (*(size_t*)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval)); } -#line 6126 "src/parser_proc.c" /* glr.c:817 */ +#line 6366 "src/parser_proc.c" /* glr.c:817 */ break; - case 523: -#line 1848 "src/parser_proc_grammar.y" /* glr.c:817 */ + case 530: +#line 1857 "src/parser_proc_grammar.y" /* glr.c:817 */ { (*(size_t*)(&(*yyvalp))) = (*(size_t*)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-1)].yystate.yysemantics.yysval)); } -#line 6134 "src/parser_proc.c" /* glr.c:817 */ +#line 6374 "src/parser_proc.c" /* glr.c:817 */ break; - case 524: -#line 1854 "src/parser_proc_grammar.y" /* glr.c:817 */ + case 531: +#line 1863 "src/parser_proc_grammar.y" /* glr.c:817 */ { (*(size_t*)(&(*yyvalp))) = 1; } -#line 6142 "src/parser_proc.c" /* glr.c:817 */ +#line 6382 "src/parser_proc.c" /* glr.c:817 */ break; - case 525: -#line 1857 "src/parser_proc_grammar.y" /* glr.c:817 */ + case 532: +#line 1866 "src/parser_proc_grammar.y" /* glr.c:817 */ { (*(size_t*)(&(*yyvalp))) = (*(size_t*)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-1)].yystate.yysemantics.yysval)) + 1; } -#line 6150 "src/parser_proc.c" /* glr.c:817 */ +#line 6390 "src/parser_proc.c" /* glr.c:817 */ break; - case 530: -#line 1879 "src/parser_proc_grammar.y" /* glr.c:817 */ + case 537: +#line 1888 "src/parser_proc_grammar.y" /* glr.c:817 */ { (*(struct psi_impl **)(&(*yyvalp))) = psi_impl_init((*(struct psi_impl_func **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-3)].yystate.yysemantics.yysval)), (*(struct psi_plist **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-1)].yystate.yysemantics.yysval))); } -#line 6158 "src/parser_proc.c" /* glr.c:817 */ +#line 6398 "src/parser_proc.c" /* glr.c:817 */ break; - case 531: -#line 1882 "src/parser_proc_grammar.y" /* glr.c:817 */ + case 538: +#line 1891 "src/parser_proc_grammar.y" /* glr.c:817 */ { (*(struct psi_impl **)(&(*yyvalp))) = psi_impl_init((*(struct psi_impl_func **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-3)].yystate.yysemantics.yysval)), (*(struct psi_plist **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-1)].yystate.yysemantics.yysval))); (*(struct psi_impl_func **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-3)].yystate.yysemantics.yysval))->static_memory = 1; } -#line 6167 "src/parser_proc.c" /* glr.c:817 */ +#line 6407 "src/parser_proc.c" /* glr.c:817 */ break; - case 532: -#line 1889 "src/parser_proc_grammar.y" /* glr.c:817 */ + case 539: +#line 1898 "src/parser_proc_grammar.y" /* glr.c:817 */ { (*(struct psi_impl_func **)(&(*yyvalp))) = psi_impl_func_init((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-4)].yystate.yysemantics.yysval))->text, NULL, (*(struct psi_impl_type **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))); (*(struct psi_impl_func **)(&(*yyvalp)))->token = psi_token_copy((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-4)].yystate.yysemantics.yysval))); (*(struct psi_impl_func **)(&(*yyvalp)))->return_reference = (*(bool*)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-5)].yystate.yysemantics.yysval)); } -#line 6177 "src/parser_proc.c" /* glr.c:817 */ +#line 6417 "src/parser_proc.c" /* glr.c:817 */ break; - case 533: -#line 1894 "src/parser_proc_grammar.y" /* glr.c:817 */ + case 540: +#line 1903 "src/parser_proc_grammar.y" /* glr.c:817 */ { (*(struct psi_impl_func **)(&(*yyvalp))) = psi_impl_func_init((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-5)].yystate.yysemantics.yysval))->text, (*(struct psi_plist **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-3)].yystate.yysemantics.yysval)), (*(struct psi_impl_type **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))); (*(struct psi_impl_func **)(&(*yyvalp)))->token = psi_token_copy((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-5)].yystate.yysemantics.yysval))); (*(struct psi_impl_func **)(&(*yyvalp)))->return_reference = (*(bool*)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-6)].yystate.yysemantics.yysval)); } -#line 6187 "src/parser_proc.c" /* glr.c:817 */ +#line 6427 "src/parser_proc.c" /* glr.c:817 */ break; - case 534: -#line 1899 "src/parser_proc_grammar.y" /* glr.c:817 */ + case 541: +#line 1908 "src/parser_proc_grammar.y" /* glr.c:817 */ { (*(struct psi_impl_func **)(&(*yyvalp))) = psi_impl_func_init((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-10)].yystate.yysemantics.yysval))->text, (*(struct psi_plist **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-8)].yystate.yysemantics.yysval)), (*(struct psi_impl_type **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))); (*(struct psi_impl_func **)(&(*yyvalp)))->token = psi_token_copy((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-10)].yystate.yysemantics.yysval))); @@ -6195,531 +6435,531 @@ yyuserAction (yyRuleNum yyn, size_t yyrhslen, yyGLRStackItem* yyvsp, (*(struct psi_impl_func **)(&(*yyvalp)))->vararg = psi_impl_arg_init((*(struct psi_impl_type **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-6)].yystate.yysemantics.yysval)), psi_impl_var_init((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-3)].yystate.yysemantics.yysval))->text, (*(bool*)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-5)].yystate.yysemantics.yysval))), NULL); (*(struct psi_impl_func **)(&(*yyvalp)))->vararg->var->token = psi_token_copy((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-3)].yystate.yysemantics.yysval))); } -#line 6199 "src/parser_proc.c" /* glr.c:817 */ +#line 6439 "src/parser_proc.c" /* glr.c:817 */ break; - case 535: -#line 1909 "src/parser_proc_grammar.y" /* glr.c:817 */ + case 542: +#line 1918 "src/parser_proc_grammar.y" /* glr.c:817 */ { (*(struct psi_plist **)(&(*yyvalp))) = psi_plist_add(psi_plist_init((psi_plist_dtor) psi_impl_arg_free), &(*(struct psi_impl_arg **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))); } -#line 6207 "src/parser_proc.c" /* glr.c:817 */ +#line 6447 "src/parser_proc.c" /* glr.c:817 */ break; - case 536: -#line 1912 "src/parser_proc_grammar.y" /* glr.c:817 */ + case 543: +#line 1921 "src/parser_proc_grammar.y" /* glr.c:817 */ { (*(struct psi_plist **)(&(*yyvalp))) = psi_plist_add((*(struct psi_plist **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-2)].yystate.yysemantics.yysval)), &(*(struct psi_impl_arg **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))); } -#line 6215 "src/parser_proc.c" /* glr.c:817 */ +#line 6455 "src/parser_proc.c" /* glr.c:817 */ break; - case 537: -#line 1918 "src/parser_proc_grammar.y" /* glr.c:817 */ + case 544: +#line 1927 "src/parser_proc_grammar.y" /* glr.c:817 */ { (*(struct psi_impl_arg **)(&(*yyvalp))) = psi_impl_arg_init((*(struct psi_impl_type **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-1)].yystate.yysemantics.yysval)), (*(struct psi_impl_var **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval)), NULL); } -#line 6223 "src/parser_proc.c" /* glr.c:817 */ +#line 6463 "src/parser_proc.c" /* glr.c:817 */ break; - case 538: -#line 1921 "src/parser_proc_grammar.y" /* glr.c:817 */ + case 545: +#line 1930 "src/parser_proc_grammar.y" /* glr.c:817 */ { (*(struct psi_impl_arg **)(&(*yyvalp))) = psi_impl_arg_init((*(struct psi_impl_type **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-3)].yystate.yysemantics.yysval)), (*(struct psi_impl_var **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-2)].yystate.yysemantics.yysval)), (*(struct psi_impl_def_val **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))); } -#line 6231 "src/parser_proc.c" /* glr.c:817 */ +#line 6471 "src/parser_proc.c" /* glr.c:817 */ break; - case 539: -#line 1927 "src/parser_proc_grammar.y" /* glr.c:817 */ + case 546: +#line 1936 "src/parser_proc_grammar.y" /* glr.c:817 */ { (*(struct psi_impl_var **)(&(*yyvalp))) = psi_impl_var_init((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))->text, (*(bool*)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-1)].yystate.yysemantics.yysval))); (*(struct psi_impl_var **)(&(*yyvalp)))->token = psi_token_copy((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))); } -#line 6240 "src/parser_proc.c" /* glr.c:817 */ +#line 6480 "src/parser_proc.c" /* glr.c:817 */ break; - case 540: -#line 1934 "src/parser_proc_grammar.y" /* glr.c:817 */ + case 547: +#line 1943 "src/parser_proc_grammar.y" /* glr.c:817 */ { (*(struct psi_impl_type **)(&(*yyvalp))) = psi_impl_type_init((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))->type, (*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))->text); (*(struct psi_impl_type **)(&(*yyvalp)))->token = psi_token_copy((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))); } -#line 6249 "src/parser_proc.c" /* glr.c:817 */ +#line 6489 "src/parser_proc.c" /* glr.c:817 */ break; - case 541: -#line 1941 "src/parser_proc_grammar.y" /* glr.c:817 */ + case 548: +#line 1950 "src/parser_proc_grammar.y" /* glr.c:817 */ { (*(struct psi_impl_type **)(&(*yyvalp))) = psi_impl_type_init((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))->type, (*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))->text); (*(struct psi_impl_type **)(&(*yyvalp)))->token = psi_token_copy((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))); } -#line 6258 "src/parser_proc.c" /* glr.c:817 */ +#line 6498 "src/parser_proc.c" /* glr.c:817 */ break; - case 553: -#line 1968 "src/parser_proc_grammar.y" /* glr.c:817 */ + case 560: +#line 1977 "src/parser_proc_grammar.y" /* glr.c:817 */ { (*(struct psi_plist **)(&(*yyvalp))) = psi_plist_add(psi_plist_init((psi_plist_dtor) psi_impl_stmt_free), &(*(struct psi_token ***)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))); } -#line 6266 "src/parser_proc.c" /* glr.c:817 */ +#line 6506 "src/parser_proc.c" /* glr.c:817 */ break; - case 554: -#line 1971 "src/parser_proc_grammar.y" /* glr.c:817 */ + case 561: +#line 1980 "src/parser_proc_grammar.y" /* glr.c:817 */ { (*(struct psi_plist **)(&(*yyvalp))) = psi_plist_add((*(struct psi_plist **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-1)].yystate.yysemantics.yysval)), &(*(struct psi_token ***)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))); } -#line 6274 "src/parser_proc.c" /* glr.c:817 */ +#line 6514 "src/parser_proc.c" /* glr.c:817 */ break; - case 555: -#line 1977 "src/parser_proc_grammar.y" /* glr.c:817 */ + case 562: +#line 1986 "src/parser_proc_grammar.y" /* glr.c:817 */ { (*(struct psi_token ***)(&(*yyvalp))) = (struct psi_token **) (*(struct psi_return_stmt **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval)); } -#line 6282 "src/parser_proc.c" /* glr.c:817 */ +#line 6522 "src/parser_proc.c" /* glr.c:817 */ break; - case 556: -#line 1980 "src/parser_proc_grammar.y" /* glr.c:817 */ + case 563: +#line 1989 "src/parser_proc_grammar.y" /* glr.c:817 */ { (*(struct psi_token ***)(&(*yyvalp))) = (struct psi_token **) (*(struct psi_let_stmt **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval)); } -#line 6290 "src/parser_proc.c" /* glr.c:817 */ +#line 6530 "src/parser_proc.c" /* glr.c:817 */ break; - case 557: -#line 1983 "src/parser_proc_grammar.y" /* glr.c:817 */ + case 564: +#line 1992 "src/parser_proc_grammar.y" /* glr.c:817 */ { (*(struct psi_token ***)(&(*yyvalp))) = (struct psi_token **) (*(struct psi_set_stmt **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval)); } -#line 6298 "src/parser_proc.c" /* glr.c:817 */ +#line 6538 "src/parser_proc.c" /* glr.c:817 */ break; - case 558: -#line 1986 "src/parser_proc_grammar.y" /* glr.c:817 */ + case 565: +#line 1995 "src/parser_proc_grammar.y" /* glr.c:817 */ { (*(struct psi_token ***)(&(*yyvalp))) = (struct psi_token **) (*(struct psi_assert_stmt **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval)); } -#line 6306 "src/parser_proc.c" /* glr.c:817 */ +#line 6546 "src/parser_proc.c" /* glr.c:817 */ break; - case 559: -#line 1989 "src/parser_proc_grammar.y" /* glr.c:817 */ + case 566: +#line 1998 "src/parser_proc_grammar.y" /* glr.c:817 */ { (*(struct psi_token ***)(&(*yyvalp))) = (struct psi_token **) (*(struct psi_free_stmt **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval)); } -#line 6314 "src/parser_proc.c" /* glr.c:817 */ +#line 6554 "src/parser_proc.c" /* glr.c:817 */ break; - case 560: -#line 1995 "src/parser_proc_grammar.y" /* glr.c:817 */ + case 567: +#line 2004 "src/parser_proc_grammar.y" /* glr.c:817 */ { (*(struct psi_let_stmt **)(&(*yyvalp))) = psi_let_stmt_init((*(struct psi_let_exp **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-1)].yystate.yysemantics.yysval))); (*(struct psi_let_stmt **)(&(*yyvalp)))->token = psi_token_copy((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-2)].yystate.yysemantics.yysval))); } -#line 6323 "src/parser_proc.c" /* glr.c:817 */ +#line 6563 "src/parser_proc.c" /* glr.c:817 */ break; - case 561: -#line 1999 "src/parser_proc_grammar.y" /* glr.c:817 */ + case 568: +#line 2008 "src/parser_proc_grammar.y" /* glr.c:817 */ { (*(struct psi_let_stmt **)(&(*yyvalp))) = psi_let_stmt_init(psi_let_exp_init_ex((*(struct psi_decl_var **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-4)].yystate.yysemantics.yysval)), PSI_LET_TMP, (*(struct psi_decl_var **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-1)].yystate.yysemantics.yysval)))); (*(struct psi_let_stmt **)(&(*yyvalp)))->token = psi_token_copy((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-5)].yystate.yysemantics.yysval))); (*(struct psi_let_stmt **)(&(*yyvalp)))->exp->is_reference = (*(bool*)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-2)].yystate.yysemantics.yysval)); } -#line 6333 "src/parser_proc.c" /* glr.c:817 */ +#line 6573 "src/parser_proc.c" /* glr.c:817 */ break; - case 563: -#line 2008 "src/parser_proc_grammar.y" /* glr.c:817 */ + case 570: +#line 2017 "src/parser_proc_grammar.y" /* glr.c:817 */ { (*(struct psi_let_exp **)(&(*yyvalp))) = (*(struct psi_let_exp **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval)); (*(struct psi_let_exp **)(&(*yyvalp)))->is_reference = true; } -#line 6342 "src/parser_proc.c" /* glr.c:817 */ +#line 6582 "src/parser_proc.c" /* glr.c:817 */ break; - case 564: -#line 2012 "src/parser_proc_grammar.y" /* glr.c:817 */ + case 571: +#line 2021 "src/parser_proc_grammar.y" /* glr.c:817 */ { (*(struct psi_let_exp **)(&(*yyvalp))) = (*(struct psi_let_exp **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval)); (*(struct psi_let_exp **)(&(*yyvalp)))->is_reference = false; } -#line 6351 "src/parser_proc.c" /* glr.c:817 */ +#line 6591 "src/parser_proc.c" /* glr.c:817 */ break; - case 565: -#line 2019 "src/parser_proc_grammar.y" /* glr.c:817 */ + case 572: +#line 2028 "src/parser_proc_grammar.y" /* glr.c:817 */ { (*(struct psi_let_exp **)(&(*yyvalp))) = psi_let_exp_init(PSI_LET_NULL, NULL); } -#line 6359 "src/parser_proc.c" /* glr.c:817 */ +#line 6599 "src/parser_proc.c" /* glr.c:817 */ break; - case 566: -#line 2022 "src/parser_proc_grammar.y" /* glr.c:817 */ + case 573: +#line 2031 "src/parser_proc_grammar.y" /* glr.c:817 */ { (*(struct psi_let_exp **)(&(*yyvalp))) = psi_let_exp_init_ex(NULL, PSI_LET_NUMEXP, (*(struct psi_num_exp **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))); } -#line 6367 "src/parser_proc.c" /* glr.c:817 */ +#line 6607 "src/parser_proc.c" /* glr.c:817 */ break; - case 567: -#line 2025 "src/parser_proc_grammar.y" /* glr.c:817 */ + case 574: +#line 2034 "src/parser_proc_grammar.y" /* glr.c:817 */ { (*(struct psi_let_exp **)(&(*yyvalp))) = psi_let_exp_init(PSI_LET_CALLOC, (*(struct psi_let_calloc **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))); } -#line 6375 "src/parser_proc.c" /* glr.c:817 */ +#line 6615 "src/parser_proc.c" /* glr.c:817 */ break; - case 568: -#line 2028 "src/parser_proc_grammar.y" /* glr.c:817 */ + case 575: +#line 2037 "src/parser_proc_grammar.y" /* glr.c:817 */ { (*(struct psi_let_exp **)(&(*yyvalp))) = psi_let_exp_init(PSI_LET_CALLOC, (*(struct psi_let_calloc **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))); (*(struct psi_let_calloc **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))->static_memory = 1; } -#line 6384 "src/parser_proc.c" /* glr.c:817 */ +#line 6624 "src/parser_proc.c" /* glr.c:817 */ break; - case 569: -#line 2032 "src/parser_proc_grammar.y" /* glr.c:817 */ + case 576: +#line 2041 "src/parser_proc_grammar.y" /* glr.c:817 */ { (*(struct psi_let_exp **)(&(*yyvalp))) = psi_let_exp_init(PSI_LET_CALLBACK, (*(struct psi_let_callback **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))); } -#line 6392 "src/parser_proc.c" /* glr.c:817 */ +#line 6632 "src/parser_proc.c" /* glr.c:817 */ break; - case 570: -#line 2035 "src/parser_proc_grammar.y" /* glr.c:817 */ + case 577: +#line 2044 "src/parser_proc_grammar.y" /* glr.c:817 */ { (*(struct psi_let_exp **)(&(*yyvalp))) = psi_let_exp_init_ex(NULL, PSI_LET_FUNC, (*(struct psi_let_func **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))); } -#line 6400 "src/parser_proc.c" /* glr.c:817 */ +#line 6640 "src/parser_proc.c" /* glr.c:817 */ break; - case 571: -#line 2041 "src/parser_proc_grammar.y" /* glr.c:817 */ + case 578: +#line 2050 "src/parser_proc_grammar.y" /* glr.c:817 */ { (*(struct psi_let_exp **)(&(*yyvalp))) = (*(struct psi_let_exp **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval)); (*(struct psi_let_exp **)(&(*yyvalp)))->var = (*(struct psi_decl_var **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-2)].yystate.yysemantics.yysval)); } -#line 6409 "src/parser_proc.c" /* glr.c:817 */ +#line 6649 "src/parser_proc.c" /* glr.c:817 */ break; - case 572: -#line 2045 "src/parser_proc_grammar.y" /* glr.c:817 */ + case 579: +#line 2054 "src/parser_proc_grammar.y" /* glr.c:817 */ { (*(struct psi_let_exp **)(&(*yyvalp))) = (*(struct psi_let_exp **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval)); (*(struct psi_let_exp **)(&(*yyvalp)))->is_reference = 1; (*(struct psi_let_exp **)(&(*yyvalp)))->var = (*(struct psi_decl_var **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-3)].yystate.yysemantics.yysval)); } -#line 6419 "src/parser_proc.c" /* glr.c:817 */ +#line 6659 "src/parser_proc.c" /* glr.c:817 */ break; - case 573: -#line 2053 "src/parser_proc_grammar.y" /* glr.c:817 */ + case 580: +#line 2062 "src/parser_proc_grammar.y" /* glr.c:817 */ { (*(struct psi_let_calloc **)(&(*yyvalp))) = psi_let_calloc_init((*(struct psi_num_exp **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-3)].yystate.yysemantics.yysval)), (*(struct psi_num_exp **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-1)].yystate.yysemantics.yysval))); (*(struct psi_let_calloc **)(&(*yyvalp)))->token = psi_token_copy((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-5)].yystate.yysemantics.yysval))); } -#line 6428 "src/parser_proc.c" /* glr.c:817 */ +#line 6668 "src/parser_proc.c" /* glr.c:817 */ break; - case 574: -#line 2060 "src/parser_proc_grammar.y" /* glr.c:817 */ + case 581: +#line 2069 "src/parser_proc_grammar.y" /* glr.c:817 */ { (*(struct psi_let_callback **)(&(*yyvalp))) = psi_let_callback_init(psi_let_func_init((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-6)].yystate.yysemantics.yysval))->type, (*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-6)].yystate.yysemantics.yysval))->text, (*(struct psi_impl_var **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-4)].yystate.yysemantics.yysval))), (*(struct psi_plist **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-2)].yystate.yysemantics.yysval)), NULL); (*(struct psi_let_callback **)(&(*yyvalp)))->func->token = psi_token_copy((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-6)].yystate.yysemantics.yysval))); (*(struct psi_let_callback **)(&(*yyvalp)))->token = psi_token_copy((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-7)].yystate.yysemantics.yysval))); } -#line 6438 "src/parser_proc.c" /* glr.c:817 */ +#line 6678 "src/parser_proc.c" /* glr.c:817 */ break; - case 575: -#line 2065 "src/parser_proc_grammar.y" /* glr.c:817 */ + case 582: +#line 2074 "src/parser_proc_grammar.y" /* glr.c:817 */ { (*(struct psi_let_callback **)(&(*yyvalp))) = psi_let_callback_init(psi_let_func_init((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-6)].yystate.yysemantics.yysval))->type, (*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-6)].yystate.yysemantics.yysval))->text, (*(struct psi_impl_var **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-4)].yystate.yysemantics.yysval))), (*(struct psi_plist **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-2)].yystate.yysemantics.yysval)), (*(struct psi_plist **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-9)].yystate.yysemantics.yysval))); (*(struct psi_let_callback **)(&(*yyvalp)))->func->token = psi_token_copy((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-6)].yystate.yysemantics.yysval))); (*(struct psi_let_callback **)(&(*yyvalp)))->token = psi_token_copy((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-11)].yystate.yysemantics.yysval))); } -#line 6448 "src/parser_proc.c" /* glr.c:817 */ +#line 6688 "src/parser_proc.c" /* glr.c:817 */ break; - case 576: -#line 2073 "src/parser_proc_grammar.y" /* glr.c:817 */ + case 583: +#line 2082 "src/parser_proc_grammar.y" /* glr.c:817 */ { (*(struct psi_let_func **)(&(*yyvalp))) = psi_let_func_init((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-4)].yystate.yysemantics.yysval))->type, (*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-4)].yystate.yysemantics.yysval))->text, (*(struct psi_impl_var **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-2)].yystate.yysemantics.yysval))); (*(struct psi_let_func **)(&(*yyvalp)))->token = psi_token_copy((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-4)].yystate.yysemantics.yysval))); (*(struct psi_let_func **)(&(*yyvalp)))->inner = (*(struct psi_plist **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-1)].yystate.yysemantics.yysval)); } -#line 6458 "src/parser_proc.c" /* glr.c:817 */ +#line 6698 "src/parser_proc.c" /* glr.c:817 */ break; - case 587: -#line 2094 "src/parser_proc_grammar.y" /* glr.c:817 */ + case 594: +#line 2103 "src/parser_proc_grammar.y" /* glr.c:817 */ { (*(struct psi_plist **)(&(*yyvalp))) = NULL; } -#line 6466 "src/parser_proc.c" /* glr.c:817 */ +#line 6706 "src/parser_proc.c" /* glr.c:817 */ break; - case 588: -#line 2097 "src/parser_proc_grammar.y" /* glr.c:817 */ + case 595: +#line 2106 "src/parser_proc_grammar.y" /* glr.c:817 */ { (*(struct psi_plist **)(&(*yyvalp))) = (*(struct psi_plist **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval)); } -#line 6474 "src/parser_proc.c" /* glr.c:817 */ +#line 6714 "src/parser_proc.c" /* glr.c:817 */ break; - case 589: -#line 2103 "src/parser_proc_grammar.y" /* glr.c:817 */ + case 596: +#line 2112 "src/parser_proc_grammar.y" /* glr.c:817 */ { (*(struct psi_plist **)(&(*yyvalp))) = psi_plist_add(psi_plist_init((psi_plist_dtor) psi_let_exp_free), &(*(struct psi_let_exp **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))); } -#line 6482 "src/parser_proc.c" /* glr.c:817 */ +#line 6722 "src/parser_proc.c" /* glr.c:817 */ break; - case 590: -#line 2106 "src/parser_proc_grammar.y" /* glr.c:817 */ + case 597: +#line 2115 "src/parser_proc_grammar.y" /* glr.c:817 */ { (*(struct psi_plist **)(&(*yyvalp))) = psi_plist_add((*(struct psi_plist **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-2)].yystate.yysemantics.yysval)), &(*(struct psi_let_exp **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))); } -#line 6490 "src/parser_proc.c" /* glr.c:817 */ +#line 6730 "src/parser_proc.c" /* glr.c:817 */ break; - case 593: -#line 2117 "src/parser_proc_grammar.y" /* glr.c:817 */ + case 600: +#line 2126 "src/parser_proc_grammar.y" /* glr.c:817 */ { (*(struct psi_plist **)(&(*yyvalp))) = NULL; } -#line 6498 "src/parser_proc.c" /* glr.c:817 */ +#line 6738 "src/parser_proc.c" /* glr.c:817 */ break; - case 594: -#line 2120 "src/parser_proc_grammar.y" /* glr.c:817 */ + case 601: +#line 2129 "src/parser_proc_grammar.y" /* glr.c:817 */ { (*(struct psi_plist **)(&(*yyvalp))) = (*(struct psi_plist **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval)); } -#line 6506 "src/parser_proc.c" /* glr.c:817 */ +#line 6746 "src/parser_proc.c" /* glr.c:817 */ break; - case 595: -#line 2126 "src/parser_proc_grammar.y" /* glr.c:817 */ + case 602: +#line 2135 "src/parser_proc_grammar.y" /* glr.c:817 */ { (*(struct psi_plist **)(&(*yyvalp))) = psi_plist_add(psi_plist_init((psi_plist_dtor) psi_set_exp_free), &(*(struct psi_set_exp **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))); } -#line 6514 "src/parser_proc.c" /* glr.c:817 */ +#line 6754 "src/parser_proc.c" /* glr.c:817 */ break; - case 596: -#line 2129 "src/parser_proc_grammar.y" /* glr.c:817 */ + case 603: +#line 2138 "src/parser_proc_grammar.y" /* glr.c:817 */ { (*(struct psi_plist **)(&(*yyvalp))) = psi_plist_add((*(struct psi_plist **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-2)].yystate.yysemantics.yysval)), &(*(struct psi_set_exp **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))); } -#line 6522 "src/parser_proc.c" /* glr.c:817 */ +#line 6762 "src/parser_proc.c" /* glr.c:817 */ break; - case 597: -#line 2135 "src/parser_proc_grammar.y" /* glr.c:817 */ + case 604: +#line 2144 "src/parser_proc_grammar.y" /* glr.c:817 */ { (*(struct psi_return_stmt **)(&(*yyvalp))) = psi_return_stmt_init((*(struct psi_return_exp **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-1)].yystate.yysemantics.yysval))); (*(struct psi_return_stmt **)(&(*yyvalp)))->token = psi_token_copy((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-2)].yystate.yysemantics.yysval))); } -#line 6531 "src/parser_proc.c" /* glr.c:817 */ +#line 6771 "src/parser_proc.c" /* glr.c:817 */ break; - case 598: -#line 2142 "src/parser_proc_grammar.y" /* glr.c:817 */ + case 605: +#line 2151 "src/parser_proc_grammar.y" /* glr.c:817 */ { (*(struct psi_return_exp **)(&(*yyvalp))) = psi_return_exp_init((*(struct psi_decl_var **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-5)].yystate.yysemantics.yysval)), (*(struct psi_plist **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-3)].yystate.yysemantics.yysval)), psi_set_exp_init(PSI_SET_FUNC, (*(struct psi_set_func **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval)))); (*(struct psi_return_exp **)(&(*yyvalp)))->token = psi_token_copy((*(struct psi_decl_var **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-5)].yystate.yysemantics.yysval))->token); } -#line 6540 "src/parser_proc.c" /* glr.c:817 */ +#line 6780 "src/parser_proc.c" /* glr.c:817 */ break; - case 599: -#line 2146 "src/parser_proc_grammar.y" /* glr.c:817 */ + case 606: +#line 2155 "src/parser_proc_grammar.y" /* glr.c:817 */ { (*(struct psi_return_exp **)(&(*yyvalp))) = psi_return_exp_init(NULL, NULL, psi_set_exp_init(PSI_SET_FUNC, (*(struct psi_set_func **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval)))); (*(struct psi_return_exp **)(&(*yyvalp)))->token = psi_token_copy((*(struct psi_set_func **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))->token); } -#line 6549 "src/parser_proc.c" /* glr.c:817 */ +#line 6789 "src/parser_proc.c" /* glr.c:817 */ break; - case 600: -#line 2153 "src/parser_proc_grammar.y" /* glr.c:817 */ + case 607: +#line 2162 "src/parser_proc_grammar.y" /* glr.c:817 */ { (*(struct psi_plist **)(&(*yyvalp))) = NULL; } -#line 6557 "src/parser_proc.c" /* glr.c:817 */ +#line 6797 "src/parser_proc.c" /* glr.c:817 */ break; - case 601: -#line 2156 "src/parser_proc_grammar.y" /* glr.c:817 */ + case 608: +#line 2165 "src/parser_proc_grammar.y" /* glr.c:817 */ { (*(struct psi_plist **)(&(*yyvalp))) = NULL; } -#line 6565 "src/parser_proc.c" /* glr.c:817 */ +#line 6805 "src/parser_proc.c" /* glr.c:817 */ break; - case 602: -#line 2159 "src/parser_proc_grammar.y" /* glr.c:817 */ + case 609: +#line 2168 "src/parser_proc_grammar.y" /* glr.c:817 */ { (*(struct psi_plist **)(&(*yyvalp))) = (*(struct psi_plist **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval)); } -#line 6573 "src/parser_proc.c" /* glr.c:817 */ +#line 6813 "src/parser_proc.c" /* glr.c:817 */ break; - case 603: -#line 2165 "src/parser_proc_grammar.y" /* glr.c:817 */ + case 610: +#line 2174 "src/parser_proc_grammar.y" /* glr.c:817 */ { (*(struct psi_set_stmt **)(&(*yyvalp))) = psi_set_stmt_init((*(struct psi_set_exp **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-1)].yystate.yysemantics.yysval))); (*(struct psi_set_stmt **)(&(*yyvalp)))->token = psi_token_copy((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-2)].yystate.yysemantics.yysval))); } -#line 6582 "src/parser_proc.c" /* glr.c:817 */ +#line 6822 "src/parser_proc.c" /* glr.c:817 */ break; - case 604: -#line 2172 "src/parser_proc_grammar.y" /* glr.c:817 */ + case 611: +#line 2181 "src/parser_proc_grammar.y" /* glr.c:817 */ { (*(struct psi_set_exp **)(&(*yyvalp))) = psi_set_exp_init(PSI_SET_FUNC, (*(struct psi_set_func **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))); } -#line 6590 "src/parser_proc.c" /* glr.c:817 */ +#line 6830 "src/parser_proc.c" /* glr.c:817 */ break; - case 605: -#line 2175 "src/parser_proc_grammar.y" /* glr.c:817 */ + case 612: +#line 2184 "src/parser_proc_grammar.y" /* glr.c:817 */ { (*(struct psi_set_exp **)(&(*yyvalp))) = psi_set_exp_init(PSI_SET_NUMEXP, (*(struct psi_num_exp **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))); } -#line 6598 "src/parser_proc.c" /* glr.c:817 */ +#line 6838 "src/parser_proc.c" /* glr.c:817 */ break; - case 606: -#line 2178 "src/parser_proc_grammar.y" /* glr.c:817 */ + case 613: +#line 2187 "src/parser_proc_grammar.y" /* glr.c:817 */ { (*(struct psi_set_exp **)(&(*yyvalp))) = (*(struct psi_set_exp **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval)); (*(struct psi_set_exp **)(&(*yyvalp)))->var = (*(struct psi_impl_var **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-2)].yystate.yysemantics.yysval)); } -#line 6607 "src/parser_proc.c" /* glr.c:817 */ +#line 6847 "src/parser_proc.c" /* glr.c:817 */ break; - case 607: -#line 2185 "src/parser_proc_grammar.y" /* glr.c:817 */ + case 614: +#line 2194 "src/parser_proc_grammar.y" /* glr.c:817 */ { (*(struct psi_set_func **)(&(*yyvalp))) = psi_set_func_init((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-4)].yystate.yysemantics.yysval))->type, (*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-4)].yystate.yysemantics.yysval))->text, (*(struct psi_decl_var **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-2)].yystate.yysemantics.yysval))); (*(struct psi_set_func **)(&(*yyvalp)))->token = psi_token_copy((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-4)].yystate.yysemantics.yysval))); (*(struct psi_set_func **)(&(*yyvalp)))->inner = (*(struct psi_plist **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-1)].yystate.yysemantics.yysval)); } -#line 6617 "src/parser_proc.c" /* glr.c:817 */ +#line 6857 "src/parser_proc.c" /* glr.c:817 */ break; - case 608: -#line 2190 "src/parser_proc_grammar.y" /* glr.c:817 */ + case 615: +#line 2199 "src/parser_proc_grammar.y" /* glr.c:817 */ { (*(struct psi_set_func **)(&(*yyvalp))) = psi_set_func_init((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-5)].yystate.yysemantics.yysval))->type, (*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-5)].yystate.yysemantics.yysval))->text, (*(struct psi_decl_var **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-3)].yystate.yysemantics.yysval))); (*(struct psi_set_func **)(&(*yyvalp)))->token = psi_token_copy((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-5)].yystate.yysemantics.yysval))); (*(struct psi_set_func **)(&(*yyvalp)))->recursive = 1; } -#line 6627 "src/parser_proc.c" /* glr.c:817 */ +#line 6867 "src/parser_proc.c" /* glr.c:817 */ break; - case 617: -#line 2209 "src/parser_proc_grammar.y" /* glr.c:817 */ + case 624: +#line 2218 "src/parser_proc_grammar.y" /* glr.c:817 */ { (*(struct psi_plist **)(&(*yyvalp))) = NULL; } -#line 6635 "src/parser_proc.c" /* glr.c:817 */ +#line 6875 "src/parser_proc.c" /* glr.c:817 */ break; - case 618: -#line 2212 "src/parser_proc_grammar.y" /* glr.c:817 */ + case 625: +#line 2221 "src/parser_proc_grammar.y" /* glr.c:817 */ { (*(struct psi_plist **)(&(*yyvalp))) = (*(struct psi_plist **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval)); } -#line 6643 "src/parser_proc.c" /* glr.c:817 */ +#line 6883 "src/parser_proc.c" /* glr.c:817 */ break; - case 619: -#line 2218 "src/parser_proc_grammar.y" /* glr.c:817 */ + case 626: +#line 2227 "src/parser_proc_grammar.y" /* glr.c:817 */ { (*(struct psi_plist **)(&(*yyvalp))) = psi_plist_add(psi_plist_init((psi_plist_dtor) psi_set_exp_free), &(*(struct psi_set_exp **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))); } -#line 6651 "src/parser_proc.c" /* glr.c:817 */ +#line 6891 "src/parser_proc.c" /* glr.c:817 */ break; - case 620: -#line 2221 "src/parser_proc_grammar.y" /* glr.c:817 */ + case 627: +#line 2230 "src/parser_proc_grammar.y" /* glr.c:817 */ { (*(struct psi_plist **)(&(*yyvalp))) = psi_plist_add((*(struct psi_plist **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-2)].yystate.yysemantics.yysval)), &(*(struct psi_set_exp **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))); } -#line 6659 "src/parser_proc.c" /* glr.c:817 */ +#line 6899 "src/parser_proc.c" /* glr.c:817 */ break; - case 621: -#line 2227 "src/parser_proc_grammar.y" /* glr.c:817 */ + case 628: +#line 2236 "src/parser_proc_grammar.y" /* glr.c:817 */ { (*(struct psi_assert_stmt **)(&(*yyvalp))) = psi_assert_stmt_init((enum psi_assert_kind) (*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-2)].yystate.yysemantics.yysval))->type, (*(struct psi_num_exp **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-1)].yystate.yysemantics.yysval))); (*(struct psi_assert_stmt **)(&(*yyvalp)))->token = psi_token_copy((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-2)].yystate.yysemantics.yysval))); } -#line 6668 "src/parser_proc.c" /* glr.c:817 */ +#line 6908 "src/parser_proc.c" /* glr.c:817 */ break; - case 624: -#line 2239 "src/parser_proc_grammar.y" /* glr.c:817 */ + case 631: +#line 2248 "src/parser_proc_grammar.y" /* glr.c:817 */ { (*(struct psi_free_stmt **)(&(*yyvalp))) = psi_free_stmt_init((*(struct psi_plist **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-1)].yystate.yysemantics.yysval))); (*(struct psi_free_stmt **)(&(*yyvalp)))->token = psi_token_copy((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-2)].yystate.yysemantics.yysval))); } -#line 6677 "src/parser_proc.c" /* glr.c:817 */ +#line 6917 "src/parser_proc.c" /* glr.c:817 */ break; - case 625: -#line 2246 "src/parser_proc_grammar.y" /* glr.c:817 */ + case 632: +#line 2255 "src/parser_proc_grammar.y" /* glr.c:817 */ { (*(struct psi_plist **)(&(*yyvalp))) = psi_plist_add(psi_plist_init((psi_plist_dtor) psi_free_exp_free), &(*(struct psi_free_exp **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))); } -#line 6685 "src/parser_proc.c" /* glr.c:817 */ +#line 6925 "src/parser_proc.c" /* glr.c:817 */ break; - case 626: -#line 2249 "src/parser_proc_grammar.y" /* glr.c:817 */ + case 633: +#line 2258 "src/parser_proc_grammar.y" /* glr.c:817 */ { (*(struct psi_plist **)(&(*yyvalp))) = psi_plist_add((*(struct psi_plist **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-2)].yystate.yysemantics.yysval)), &(*(struct psi_free_exp **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (0)].yystate.yysemantics.yysval))); } -#line 6693 "src/parser_proc.c" /* glr.c:817 */ +#line 6933 "src/parser_proc.c" /* glr.c:817 */ break; - case 627: -#line 2255 "src/parser_proc_grammar.y" /* glr.c:817 */ + case 634: +#line 2264 "src/parser_proc_grammar.y" /* glr.c:817 */ { (*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-3)].yystate.yysemantics.yysval))->type = PSI_T_NAME; (*(struct psi_free_exp **)(&(*yyvalp))) = psi_free_exp_init((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-3)].yystate.yysemantics.yysval))->text, (*(struct psi_plist **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-1)].yystate.yysemantics.yysval))); (*(struct psi_free_exp **)(&(*yyvalp)))->token = psi_token_copy((*(struct psi_token **)(&((yyGLRStackItem const *)yyvsp)[YYFILL (-3)].yystate.yysemantics.yysval))); } -#line 6703 "src/parser_proc.c" /* glr.c:817 */ +#line 6943 "src/parser_proc.c" /* glr.c:817 */ break; - case 628: -#line 2263 "src/parser_proc_grammar.y" /* glr.c:817 */ + case 635: +#line 2272 "src/parser_proc_grammar.y" /* glr.c:817 */ { (*(bool*)(&(*yyvalp))) = false; } -#line 6711 "src/parser_proc.c" /* glr.c:817 */ +#line 6951 "src/parser_proc.c" /* glr.c:817 */ break; - case 629: -#line 2266 "src/parser_proc_grammar.y" /* glr.c:817 */ + case 636: +#line 2275 "src/parser_proc_grammar.y" /* glr.c:817 */ { (*(bool*)(&(*yyvalp))) = true; } -#line 6719 "src/parser_proc.c" /* glr.c:817 */ +#line 6959 "src/parser_proc.c" /* glr.c:817 */ break; -#line 6723 "src/parser_proc.c" /* glr.c:817 */ +#line 6963 "src/parser_proc.c" /* glr.c:817 */ default: break; } @@ -6768,759 +7008,759 @@ yydestruct (const char *yymsg, int yytype, YYSTYPE *yyvaluep, struct psi_parser switch (yytype) { case 141: /* binary_op_token */ -#line 315 "src/parser_proc_grammar.y" /* glr.c:847 */ +#line 290 "src/parser_proc_grammar.y" /* glr.c:847 */ {} -#line 6774 "src/parser_proc.c" /* glr.c:847 */ +#line 7014 "src/parser_proc.c" /* glr.c:847 */ break; case 142: /* unary_op_token */ -#line 315 "src/parser_proc_grammar.y" /* glr.c:847 */ +#line 290 "src/parser_proc_grammar.y" /* glr.c:847 */ {} -#line 6780 "src/parser_proc.c" /* glr.c:847 */ +#line 7020 "src/parser_proc.c" /* glr.c:847 */ break; case 143: /* name_token */ -#line 315 "src/parser_proc_grammar.y" /* glr.c:847 */ +#line 290 "src/parser_proc_grammar.y" /* glr.c:847 */ {} -#line 6786 "src/parser_proc.c" /* glr.c:847 */ +#line 7026 "src/parser_proc.c" /* glr.c:847 */ break; case 144: /* any_noeol_token */ -#line 315 "src/parser_proc_grammar.y" /* glr.c:847 */ +#line 290 "src/parser_proc_grammar.y" /* glr.c:847 */ {} -#line 6792 "src/parser_proc.c" /* glr.c:847 */ +#line 7032 "src/parser_proc.c" /* glr.c:847 */ break; case 149: /* lib */ -#line 309 "src/parser_proc_grammar.y" /* glr.c:847 */ +#line 284 "src/parser_proc_grammar.y" /* glr.c:847 */ {psi_token_free(&(*(struct psi_token **)(&(*yyvaluep))));} -#line 6798 "src/parser_proc.c" /* glr.c:847 */ +#line 7038 "src/parser_proc.c" /* glr.c:847 */ break; case 150: /* cpp */ -#line 324 "src/parser_proc_grammar.y" /* glr.c:847 */ +#line 299 "src/parser_proc_grammar.y" /* glr.c:847 */ {psi_cpp_exp_free(&(*(struct psi_cpp_exp **)(&(*yyvaluep))));} -#line 6804 "src/parser_proc.c" /* glr.c:847 */ +#line 7044 "src/parser_proc.c" /* glr.c:847 */ break; case 151: /* cpp_exp */ -#line 324 "src/parser_proc_grammar.y" /* glr.c:847 */ +#line 299 "src/parser_proc_grammar.y" /* glr.c:847 */ {psi_cpp_exp_free(&(*(struct psi_cpp_exp **)(&(*yyvaluep))));} -#line 6810 "src/parser_proc.c" /* glr.c:847 */ +#line 7050 "src/parser_proc.c" /* glr.c:847 */ break; case 153: /* cpp_message_token */ -#line 312 "src/parser_proc_grammar.y" /* glr.c:847 */ +#line 287 "src/parser_proc_grammar.y" /* glr.c:847 */ {} -#line 6816 "src/parser_proc.c" /* glr.c:847 */ +#line 7056 "src/parser_proc.c" /* glr.c:847 */ break; case 154: /* cpp_include_token */ -#line 312 "src/parser_proc_grammar.y" /* glr.c:847 */ +#line 287 "src/parser_proc_grammar.y" /* glr.c:847 */ {} -#line 6822 "src/parser_proc.c" /* glr.c:847 */ +#line 7062 "src/parser_proc.c" /* glr.c:847 */ break; case 155: /* cpp_header_token */ -#line 312 "src/parser_proc_grammar.y" /* glr.c:847 */ +#line 287 "src/parser_proc_grammar.y" /* glr.c:847 */ {} -#line 6828 "src/parser_proc.c" /* glr.c:847 */ +#line 7068 "src/parser_proc.c" /* glr.c:847 */ break; case 156: /* cpp_no_arg_token */ -#line 312 "src/parser_proc_grammar.y" /* glr.c:847 */ +#line 287 "src/parser_proc_grammar.y" /* glr.c:847 */ {} -#line 6834 "src/parser_proc.c" /* glr.c:847 */ +#line 7074 "src/parser_proc.c" /* glr.c:847 */ break; case 157: /* cpp_name_arg_token */ -#line 312 "src/parser_proc_grammar.y" /* glr.c:847 */ +#line 287 "src/parser_proc_grammar.y" /* glr.c:847 */ {} -#line 6840 "src/parser_proc.c" /* glr.c:847 */ +#line 7080 "src/parser_proc.c" /* glr.c:847 */ break; case 158: /* cpp_exp_arg_token */ -#line 312 "src/parser_proc_grammar.y" /* glr.c:847 */ +#line 287 "src/parser_proc_grammar.y" /* glr.c:847 */ {} -#line 6846 "src/parser_proc.c" /* glr.c:847 */ +#line 7086 "src/parser_proc.c" /* glr.c:847 */ break; case 159: /* cpp_macro_decl */ -#line 326 "src/parser_proc_grammar.y" /* glr.c:847 */ +#line 301 "src/parser_proc_grammar.y" /* glr.c:847 */ {psi_cpp_macro_decl_free(&(*(struct psi_cpp_macro_decl **)(&(*yyvaluep))));} -#line 6852 "src/parser_proc.c" /* glr.c:847 */ +#line 7092 "src/parser_proc.c" /* glr.c:847 */ break; case 160: /* cpp_macro_sig */ -#line 328 "src/parser_proc_grammar.y" /* glr.c:847 */ +#line 303 "src/parser_proc_grammar.y" /* glr.c:847 */ {psi_plist_free((*(struct psi_plist **)(&(*yyvaluep))));} -#line 6858 "src/parser_proc.c" /* glr.c:847 */ +#line 7098 "src/parser_proc.c" /* glr.c:847 */ break; case 161: /* cpp_macro_sig_args */ -#line 328 "src/parser_proc_grammar.y" /* glr.c:847 */ +#line 303 "src/parser_proc_grammar.y" /* glr.c:847 */ {psi_plist_free((*(struct psi_plist **)(&(*yyvaluep))));} -#line 6864 "src/parser_proc.c" /* glr.c:847 */ +#line 7104 "src/parser_proc.c" /* glr.c:847 */ break; case 162: /* cpp_macro_decl_tokens */ -#line 328 "src/parser_proc_grammar.y" /* glr.c:847 */ +#line 303 "src/parser_proc_grammar.y" /* glr.c:847 */ {psi_plist_free((*(struct psi_plist **)(&(*yyvaluep))));} -#line 6870 "src/parser_proc.c" /* glr.c:847 */ +#line 7110 "src/parser_proc.c" /* glr.c:847 */ break; case 163: /* cpp_macro_decl_token_list */ -#line 328 "src/parser_proc_grammar.y" /* glr.c:847 */ +#line 303 "src/parser_proc_grammar.y" /* glr.c:847 */ {psi_plist_free((*(struct psi_plist **)(&(*yyvaluep))));} -#line 6876 "src/parser_proc.c" /* glr.c:847 */ +#line 7116 "src/parser_proc.c" /* glr.c:847 */ break; case 164: /* cpp_macro_exp */ -#line 330 "src/parser_proc_grammar.y" /* glr.c:847 */ +#line 305 "src/parser_proc_grammar.y" /* glr.c:847 */ {psi_num_exp_free(&(*(struct psi_num_exp **)(&(*yyvaluep))));} -#line 6882 "src/parser_proc.c" /* glr.c:847 */ +#line 7122 "src/parser_proc.c" /* glr.c:847 */ break; case 165: /* cpp_macro_call_args */ -#line 328 "src/parser_proc_grammar.y" /* glr.c:847 */ +#line 303 "src/parser_proc_grammar.y" /* glr.c:847 */ {psi_plist_free((*(struct psi_plist **)(&(*yyvaluep))));} -#line 6888 "src/parser_proc.c" /* glr.c:847 */ +#line 7128 "src/parser_proc.c" /* glr.c:847 */ break; case 166: /* cpp_macro_call_arg_list */ -#line 328 "src/parser_proc_grammar.y" /* glr.c:847 */ +#line 303 "src/parser_proc_grammar.y" /* glr.c:847 */ {psi_plist_free((*(struct psi_plist **)(&(*yyvaluep))));} -#line 6894 "src/parser_proc.c" /* glr.c:847 */ +#line 7134 "src/parser_proc.c" /* glr.c:847 */ break; case 167: /* constant */ -#line 336 "src/parser_proc_grammar.y" /* glr.c:847 */ +#line 311 "src/parser_proc_grammar.y" /* glr.c:847 */ {psi_const_free(&(*(struct psi_const **)(&(*yyvaluep))));} -#line 6900 "src/parser_proc.c" /* glr.c:847 */ +#line 7140 "src/parser_proc.c" /* glr.c:847 */ break; case 168: /* impl_def_val */ -#line 338 "src/parser_proc_grammar.y" /* glr.c:847 */ +#line 313 "src/parser_proc_grammar.y" /* glr.c:847 */ {psi_impl_def_val_free(&(*(struct psi_impl_def_val **)(&(*yyvaluep))));} -#line 6906 "src/parser_proc.c" /* glr.c:847 */ +#line 7146 "src/parser_proc.c" /* glr.c:847 */ break; case 169: /* impl_def_val_token */ -#line 333 "src/parser_proc_grammar.y" /* glr.c:847 */ +#line 308 "src/parser_proc_grammar.y" /* glr.c:847 */ {} -#line 6912 "src/parser_proc.c" /* glr.c:847 */ +#line 7152 "src/parser_proc.c" /* glr.c:847 */ break; case 170: /* decl_typedef */ -#line 351 "src/parser_proc_grammar.y" /* glr.c:847 */ +#line 326 "src/parser_proc_grammar.y" /* glr.c:847 */ {psi_decl_arg_free(&(*(struct psi_decl_arg **)(&(*yyvaluep))));} -#line 6918 "src/parser_proc.c" /* glr.c:847 */ +#line 7158 "src/parser_proc.c" /* glr.c:847 */ break; case 171: /* typedef */ -#line 351 "src/parser_proc_grammar.y" /* glr.c:847 */ +#line 326 "src/parser_proc_grammar.y" /* glr.c:847 */ {psi_decl_arg_free(&(*(struct psi_decl_arg **)(&(*yyvaluep))));} -#line 6924 "src/parser_proc.c" /* glr.c:847 */ +#line 7164 "src/parser_proc.c" /* glr.c:847 */ break; case 172: /* typedef_anon */ -#line 351 "src/parser_proc_grammar.y" /* glr.c:847 */ +#line 326 "src/parser_proc_grammar.y" /* glr.c:847 */ {psi_decl_arg_free(&(*(struct psi_decl_arg **)(&(*yyvaluep))));} -#line 6930 "src/parser_proc.c" /* glr.c:847 */ +#line 7170 "src/parser_proc.c" /* glr.c:847 */ break; case 173: /* typedef_decl */ -#line 351 "src/parser_proc_grammar.y" /* glr.c:847 */ +#line 326 "src/parser_proc_grammar.y" /* glr.c:847 */ {psi_decl_arg_free(&(*(struct psi_decl_arg **)(&(*yyvaluep))));} -#line 6936 "src/parser_proc.c" /* glr.c:847 */ +#line 7176 "src/parser_proc.c" /* glr.c:847 */ break; case 174: /* typedef_anon_decl */ -#line 351 "src/parser_proc_grammar.y" /* glr.c:847 */ +#line 326 "src/parser_proc_grammar.y" /* glr.c:847 */ {psi_decl_arg_free(&(*(struct psi_decl_arg **)(&(*yyvaluep))));} -#line 6942 "src/parser_proc.c" /* glr.c:847 */ +#line 7182 "src/parser_proc.c" /* glr.c:847 */ break; case 175: /* qualified_decl_type */ -#line 347 "src/parser_proc_grammar.y" /* glr.c:847 */ +#line 322 "src/parser_proc_grammar.y" /* glr.c:847 */ {psi_decl_type_free(&(*(struct psi_decl_type **)(&(*yyvaluep))));} -#line 6948 "src/parser_proc.c" /* glr.c:847 */ +#line 7188 "src/parser_proc.c" /* glr.c:847 */ break; case 177: /* decl_type */ -#line 347 "src/parser_proc_grammar.y" /* glr.c:847 */ +#line 322 "src/parser_proc_grammar.y" /* glr.c:847 */ {psi_decl_type_free(&(*(struct psi_decl_type **)(&(*yyvaluep))));} -#line 6954 "src/parser_proc.c" /* glr.c:847 */ +#line 7194 "src/parser_proc.c" /* glr.c:847 */ break; case 178: /* decl_type_complex */ -#line 347 "src/parser_proc_grammar.y" /* glr.c:847 */ +#line 322 "src/parser_proc_grammar.y" /* glr.c:847 */ {psi_decl_type_free(&(*(struct psi_decl_type **)(&(*yyvaluep))));} -#line 6960 "src/parser_proc.c" /* glr.c:847 */ +#line 7200 "src/parser_proc.c" /* glr.c:847 */ break; case 179: /* decl_type_simple */ -#line 341 "src/parser_proc_grammar.y" /* glr.c:847 */ +#line 316 "src/parser_proc_grammar.y" /* glr.c:847 */ {psi_token_free(&(*(struct psi_token **)(&(*yyvaluep))));} -#line 6966 "src/parser_proc.c" /* glr.c:847 */ +#line 7206 "src/parser_proc.c" /* glr.c:847 */ break; case 180: /* decl_real_type */ -#line 341 "src/parser_proc_grammar.y" /* glr.c:847 */ +#line 316 "src/parser_proc_grammar.y" /* glr.c:847 */ {psi_token_free(&(*(struct psi_token **)(&(*yyvaluep))));} -#line 6972 "src/parser_proc.c" /* glr.c:847 */ +#line 7212 "src/parser_proc.c" /* glr.c:847 */ break; case 181: /* int_signed */ -#line 321 "src/parser_proc_grammar.y" /* glr.c:847 */ +#line 296 "src/parser_proc_grammar.y" /* glr.c:847 */ {} -#line 6978 "src/parser_proc.c" /* glr.c:847 */ +#line 7218 "src/parser_proc.c" /* glr.c:847 */ break; case 182: /* int_width */ -#line 318 "src/parser_proc_grammar.y" /* glr.c:847 */ +#line 293 "src/parser_proc_grammar.y" /* glr.c:847 */ {psi_token_free(&(*(struct psi_token **)(&(*yyvaluep))));} -#line 6984 "src/parser_proc.c" /* glr.c:847 */ +#line 7224 "src/parser_proc.c" /* glr.c:847 */ break; case 183: /* decl_int_type */ -#line 341 "src/parser_proc_grammar.y" /* glr.c:847 */ +#line 316 "src/parser_proc_grammar.y" /* glr.c:847 */ {psi_token_free(&(*(struct psi_token **)(&(*yyvaluep))));} -#line 6990 "src/parser_proc.c" /* glr.c:847 */ +#line 7230 "src/parser_proc.c" /* glr.c:847 */ break; case 184: /* int_signed_types */ -#line 318 "src/parser_proc_grammar.y" /* glr.c:847 */ +#line 293 "src/parser_proc_grammar.y" /* glr.c:847 */ {psi_token_free(&(*(struct psi_token **)(&(*yyvaluep))));} -#line 6996 "src/parser_proc.c" /* glr.c:847 */ +#line 7236 "src/parser_proc.c" /* glr.c:847 */ break; case 185: /* signed_short_types */ -#line 321 "src/parser_proc_grammar.y" /* glr.c:847 */ +#line 296 "src/parser_proc_grammar.y" /* glr.c:847 */ {} -#line 7002 "src/parser_proc.c" /* glr.c:847 */ +#line 7242 "src/parser_proc.c" /* glr.c:847 */ break; case 186: /* signed_long_types */ -#line 321 "src/parser_proc_grammar.y" /* glr.c:847 */ +#line 296 "src/parser_proc_grammar.y" /* glr.c:847 */ {} -#line 7008 "src/parser_proc.c" /* glr.c:847 */ +#line 7248 "src/parser_proc.c" /* glr.c:847 */ break; case 187: /* int_width_types */ -#line 318 "src/parser_proc_grammar.y" /* glr.c:847 */ +#line 293 "src/parser_proc_grammar.y" /* glr.c:847 */ {psi_token_free(&(*(struct psi_token **)(&(*yyvaluep))));} -#line 7014 "src/parser_proc.c" /* glr.c:847 */ +#line 7254 "src/parser_proc.c" /* glr.c:847 */ break; case 188: /* decl_stmt */ -#line 349 "src/parser_proc_grammar.y" /* glr.c:847 */ +#line 324 "src/parser_proc_grammar.y" /* glr.c:847 */ {psi_decl_free(&(*(struct psi_decl **)(&(*yyvaluep))));} -#line 7020 "src/parser_proc.c" /* glr.c:847 */ +#line 7260 "src/parser_proc.c" /* glr.c:847 */ break; case 189: /* decl_asm */ -#line 344 "src/parser_proc_grammar.y" /* glr.c:847 */ +#line 319 "src/parser_proc_grammar.y" /* glr.c:847 */ {psi_token_free(&(*(struct psi_token **)(&(*yyvaluep))));} -#line 7026 "src/parser_proc.c" /* glr.c:847 */ +#line 7266 "src/parser_proc.c" /* glr.c:847 */ break; case 190: /* quoted_strings */ -#line 344 "src/parser_proc_grammar.y" /* glr.c:847 */ +#line 319 "src/parser_proc_grammar.y" /* glr.c:847 */ {psi_token_free(&(*(struct psi_token **)(&(*yyvaluep))));} -#line 7032 "src/parser_proc.c" /* glr.c:847 */ +#line 7272 "src/parser_proc.c" /* glr.c:847 */ break; case 191: /* decl_extvar_stmt */ -#line 363 "src/parser_proc_grammar.y" /* glr.c:847 */ +#line 338 "src/parser_proc_grammar.y" /* glr.c:847 */ {psi_plist_free((*(struct psi_plist **)(&(*yyvaluep))));} -#line 7038 "src/parser_proc.c" /* glr.c:847 */ +#line 7278 "src/parser_proc.c" /* glr.c:847 */ break; case 192: /* decl_extvar_list */ -#line 363 "src/parser_proc_grammar.y" /* glr.c:847 */ +#line 338 "src/parser_proc_grammar.y" /* glr.c:847 */ {psi_plist_free((*(struct psi_plist **)(&(*yyvaluep))));} -#line 7044 "src/parser_proc.c" /* glr.c:847 */ +#line 7284 "src/parser_proc.c" /* glr.c:847 */ break; case 193: /* decl_vars */ -#line 363 "src/parser_proc_grammar.y" /* glr.c:847 */ +#line 338 "src/parser_proc_grammar.y" /* glr.c:847 */ {psi_plist_free((*(struct psi_plist **)(&(*yyvaluep))));} -#line 7050 "src/parser_proc.c" /* glr.c:847 */ +#line 7290 "src/parser_proc.c" /* glr.c:847 */ break; case 194: /* ignored_decl */ -#line 349 "src/parser_proc_grammar.y" /* glr.c:847 */ +#line 324 "src/parser_proc_grammar.y" /* glr.c:847 */ {psi_decl_free(&(*(struct psi_decl **)(&(*yyvaluep))));} -#line 7056 "src/parser_proc.c" /* glr.c:847 */ +#line 7296 "src/parser_proc.c" /* glr.c:847 */ break; case 199: /* decl */ -#line 349 "src/parser_proc_grammar.y" /* glr.c:847 */ +#line 324 "src/parser_proc_grammar.y" /* glr.c:847 */ {psi_decl_free(&(*(struct psi_decl **)(&(*yyvaluep))));} -#line 7062 "src/parser_proc.c" /* glr.c:847 */ +#line 7302 "src/parser_proc.c" /* glr.c:847 */ break; case 200: /* decl_body */ -#line 349 "src/parser_proc_grammar.y" /* glr.c:847 */ +#line 324 "src/parser_proc_grammar.y" /* glr.c:847 */ {psi_decl_free(&(*(struct psi_decl **)(&(*yyvaluep))));} -#line 7068 "src/parser_proc.c" /* glr.c:847 */ +#line 7308 "src/parser_proc.c" /* glr.c:847 */ break; case 201: /* decl_func_body */ -#line 349 "src/parser_proc_grammar.y" /* glr.c:847 */ +#line 324 "src/parser_proc_grammar.y" /* glr.c:847 */ {psi_decl_free(&(*(struct psi_decl **)(&(*yyvaluep))));} -#line 7074 "src/parser_proc.c" /* glr.c:847 */ +#line 7314 "src/parser_proc.c" /* glr.c:847 */ break; case 202: /* decl_functor_body */ -#line 349 "src/parser_proc_grammar.y" /* glr.c:847 */ +#line 324 "src/parser_proc_grammar.y" /* glr.c:847 */ {psi_decl_free(&(*(struct psi_decl **)(&(*yyvaluep))));} -#line 7080 "src/parser_proc.c" /* glr.c:847 */ +#line 7320 "src/parser_proc.c" /* glr.c:847 */ break; case 203: /* decl_anon_functor_body */ -#line 349 "src/parser_proc_grammar.y" /* glr.c:847 */ +#line 324 "src/parser_proc_grammar.y" /* glr.c:847 */ {psi_decl_free(&(*(struct psi_decl **)(&(*yyvaluep))));} -#line 7086 "src/parser_proc.c" /* glr.c:847 */ +#line 7326 "src/parser_proc.c" /* glr.c:847 */ break; case 204: /* decl_functor */ -#line 351 "src/parser_proc_grammar.y" /* glr.c:847 */ +#line 326 "src/parser_proc_grammar.y" /* glr.c:847 */ {psi_decl_arg_free(&(*(struct psi_decl_arg **)(&(*yyvaluep))));} -#line 7092 "src/parser_proc.c" /* glr.c:847 */ +#line 7332 "src/parser_proc.c" /* glr.c:847 */ break; case 205: /* decl_anon_functor */ -#line 351 "src/parser_proc_grammar.y" /* glr.c:847 */ +#line 326 "src/parser_proc_grammar.y" /* glr.c:847 */ {psi_decl_arg_free(&(*(struct psi_decl_arg **)(&(*yyvaluep))));} -#line 7098 "src/parser_proc.c" /* glr.c:847 */ +#line 7338 "src/parser_proc.c" /* glr.c:847 */ break; case 206: /* decl_func */ -#line 351 "src/parser_proc_grammar.y" /* glr.c:847 */ +#line 326 "src/parser_proc_grammar.y" /* glr.c:847 */ {psi_decl_arg_free(&(*(struct psi_decl_arg **)(&(*yyvaluep))));} -#line 7104 "src/parser_proc.c" /* glr.c:847 */ +#line 7344 "src/parser_proc.c" /* glr.c:847 */ break; case 207: /* decl_args */ -#line 363 "src/parser_proc_grammar.y" /* glr.c:847 */ +#line 338 "src/parser_proc_grammar.y" /* glr.c:847 */ {psi_plist_free((*(struct psi_plist **)(&(*yyvaluep))));} -#line 7110 "src/parser_proc.c" /* glr.c:847 */ +#line 7350 "src/parser_proc.c" /* glr.c:847 */ break; case 208: /* decl_arg_list */ -#line 363 "src/parser_proc_grammar.y" /* glr.c:847 */ +#line 338 "src/parser_proc_grammar.y" /* glr.c:847 */ {psi_plist_free((*(struct psi_plist **)(&(*yyvaluep))));} -#line 7116 "src/parser_proc.c" /* glr.c:847 */ +#line 7356 "src/parser_proc.c" /* glr.c:847 */ break; case 209: /* decl_anon_arg */ -#line 351 "src/parser_proc_grammar.y" /* glr.c:847 */ +#line 326 "src/parser_proc_grammar.y" /* glr.c:847 */ {psi_decl_arg_free(&(*(struct psi_decl_arg **)(&(*yyvaluep))));} -#line 7122 "src/parser_proc.c" /* glr.c:847 */ +#line 7362 "src/parser_proc.c" /* glr.c:847 */ break; case 210: /* decl_arg */ -#line 351 "src/parser_proc_grammar.y" /* glr.c:847 */ +#line 326 "src/parser_proc_grammar.y" /* glr.c:847 */ {psi_decl_arg_free(&(*(struct psi_decl_arg **)(&(*yyvaluep))));} -#line 7128 "src/parser_proc.c" /* glr.c:847 */ +#line 7368 "src/parser_proc.c" /* glr.c:847 */ break; case 211: /* decl_var */ -#line 353 "src/parser_proc_grammar.y" /* glr.c:847 */ +#line 328 "src/parser_proc_grammar.y" /* glr.c:847 */ {psi_decl_var_free(&(*(struct psi_decl_var **)(&(*yyvaluep))));} -#line 7134 "src/parser_proc.c" /* glr.c:847 */ +#line 7374 "src/parser_proc.c" /* glr.c:847 */ break; case 212: /* decl_union */ -#line 357 "src/parser_proc_grammar.y" /* glr.c:847 */ +#line 332 "src/parser_proc_grammar.y" /* glr.c:847 */ {psi_decl_union_free(&(*(struct psi_decl_union **)(&(*yyvaluep))));} -#line 7140 "src/parser_proc.c" /* glr.c:847 */ +#line 7380 "src/parser_proc.c" /* glr.c:847 */ break; case 213: /* decl_struct */ -#line 355 "src/parser_proc_grammar.y" /* glr.c:847 */ +#line 330 "src/parser_proc_grammar.y" /* glr.c:847 */ {psi_decl_struct_free(&(*(struct psi_decl_struct **)(&(*yyvaluep))));} -#line 7146 "src/parser_proc.c" /* glr.c:847 */ +#line 7386 "src/parser_proc.c" /* glr.c:847 */ break; case 214: /* decl_struct_args */ -#line 363 "src/parser_proc_grammar.y" /* glr.c:847 */ +#line 338 "src/parser_proc_grammar.y" /* glr.c:847 */ {psi_plist_free((*(struct psi_plist **)(&(*yyvaluep))));} -#line 7152 "src/parser_proc.c" /* glr.c:847 */ +#line 7392 "src/parser_proc.c" /* glr.c:847 */ break; case 215: /* struct_args_block */ -#line 363 "src/parser_proc_grammar.y" /* glr.c:847 */ +#line 338 "src/parser_proc_grammar.y" /* glr.c:847 */ {psi_plist_free((*(struct psi_plist **)(&(*yyvaluep))));} -#line 7158 "src/parser_proc.c" /* glr.c:847 */ +#line 7398 "src/parser_proc.c" /* glr.c:847 */ break; case 216: /* struct_args */ -#line 363 "src/parser_proc_grammar.y" /* glr.c:847 */ +#line 338 "src/parser_proc_grammar.y" /* glr.c:847 */ {psi_plist_free((*(struct psi_plist **)(&(*yyvaluep))));} -#line 7164 "src/parser_proc.c" /* glr.c:847 */ +#line 7404 "src/parser_proc.c" /* glr.c:847 */ break; case 217: /* struct_arg_var_list */ -#line 363 "src/parser_proc_grammar.y" /* glr.c:847 */ +#line 338 "src/parser_proc_grammar.y" /* glr.c:847 */ {psi_plist_free((*(struct psi_plist **)(&(*yyvaluep))));} -#line 7170 "src/parser_proc.c" /* glr.c:847 */ +#line 7410 "src/parser_proc.c" /* glr.c:847 */ break; case 218: /* decl_vars_with_layout */ -#line 363 "src/parser_proc_grammar.y" /* glr.c:847 */ +#line 338 "src/parser_proc_grammar.y" /* glr.c:847 */ {psi_plist_free((*(struct psi_plist **)(&(*yyvaluep))));} -#line 7176 "src/parser_proc.c" /* glr.c:847 */ +#line 7416 "src/parser_proc.c" /* glr.c:847 */ break; case 219: /* decl_enum */ -#line 359 "src/parser_proc_grammar.y" /* glr.c:847 */ +#line 334 "src/parser_proc_grammar.y" /* glr.c:847 */ {psi_decl_enum_free(&(*(struct psi_decl_enum **)(&(*yyvaluep))));} -#line 7182 "src/parser_proc.c" /* glr.c:847 */ +#line 7422 "src/parser_proc.c" /* glr.c:847 */ break; case 220: /* decl_enum_items */ -#line 363 "src/parser_proc_grammar.y" /* glr.c:847 */ +#line 338 "src/parser_proc_grammar.y" /* glr.c:847 */ {psi_plist_free((*(struct psi_plist **)(&(*yyvaluep))));} -#line 7188 "src/parser_proc.c" /* glr.c:847 */ +#line 7428 "src/parser_proc.c" /* glr.c:847 */ break; case 221: /* decl_enum_item */ -#line 361 "src/parser_proc_grammar.y" /* glr.c:847 */ +#line 336 "src/parser_proc_grammar.y" /* glr.c:847 */ {psi_decl_enum_item_free(&(*(struct psi_decl_enum_item **)(&(*yyvaluep))));} -#line 7194 "src/parser_proc.c" /* glr.c:847 */ +#line 7434 "src/parser_proc.c" /* glr.c:847 */ break; case 222: /* num_exp */ -#line 419 "src/parser_proc_grammar.y" /* glr.c:847 */ +#line 394 "src/parser_proc_grammar.y" /* glr.c:847 */ {psi_num_exp_free(&(*(struct psi_num_exp **)(&(*yyvaluep))));} -#line 7200 "src/parser_proc.c" /* glr.c:847 */ +#line 7440 "src/parser_proc.c" /* glr.c:847 */ break; case 223: /* number */ -#line 421 "src/parser_proc_grammar.y" /* glr.c:847 */ +#line 396 "src/parser_proc_grammar.y" /* glr.c:847 */ {psi_number_free(&(*(struct psi_number **)(&(*yyvaluep))));} -#line 7206 "src/parser_proc.c" /* glr.c:847 */ +#line 7446 "src/parser_proc.c" /* glr.c:847 */ break; case 224: /* sizeof */ -#line 371 "src/parser_proc_grammar.y" /* glr.c:847 */ +#line 346 "src/parser_proc_grammar.y" /* glr.c:847 */ {psi_number_free(&(*(struct psi_number **)(&(*yyvaluep))));} -#line 7212 "src/parser_proc.c" /* glr.c:847 */ +#line 7452 "src/parser_proc.c" /* glr.c:847 */ break; case 225: /* sizeof_body */ -#line 371 "src/parser_proc_grammar.y" /* glr.c:847 */ +#line 346 "src/parser_proc_grammar.y" /* glr.c:847 */ {psi_number_free(&(*(struct psi_number **)(&(*yyvaluep))));} -#line 7218 "src/parser_proc.c" /* glr.c:847 */ +#line 7458 "src/parser_proc.c" /* glr.c:847 */ break; case 226: /* sizeof_body_notypes */ -#line 371 "src/parser_proc_grammar.y" /* glr.c:847 */ +#line 346 "src/parser_proc_grammar.y" /* glr.c:847 */ {psi_number_free(&(*(struct psi_number **)(&(*yyvaluep))));} -#line 7224 "src/parser_proc.c" /* glr.c:847 */ +#line 7464 "src/parser_proc.c" /* glr.c:847 */ break; case 227: /* enum_name */ -#line 309 "src/parser_proc_grammar.y" /* glr.c:847 */ +#line 284 "src/parser_proc_grammar.y" /* glr.c:847 */ {psi_token_free(&(*(struct psi_token **)(&(*yyvaluep))));} -#line 7230 "src/parser_proc.c" /* glr.c:847 */ +#line 7470 "src/parser_proc.c" /* glr.c:847 */ break; case 228: /* union_name */ -#line 309 "src/parser_proc_grammar.y" /* glr.c:847 */ +#line 284 "src/parser_proc_grammar.y" /* glr.c:847 */ {psi_token_free(&(*(struct psi_token **)(&(*yyvaluep))));} -#line 7236 "src/parser_proc.c" /* glr.c:847 */ +#line 7476 "src/parser_proc.c" /* glr.c:847 */ break; case 229: /* struct_name */ -#line 309 "src/parser_proc_grammar.y" /* glr.c:847 */ +#line 284 "src/parser_proc_grammar.y" /* glr.c:847 */ {psi_token_free(&(*(struct psi_token **)(&(*yyvaluep))));} -#line 7242 "src/parser_proc.c" /* glr.c:847 */ +#line 7482 "src/parser_proc.c" /* glr.c:847 */ break; case 230: /* optional_name */ -#line 309 "src/parser_proc_grammar.y" /* glr.c:847 */ +#line 284 "src/parser_proc_grammar.y" /* glr.c:847 */ {psi_token_free(&(*(struct psi_token **)(&(*yyvaluep))));} -#line 7248 "src/parser_proc.c" /* glr.c:847 */ +#line 7488 "src/parser_proc.c" /* glr.c:847 */ break; case 232: /* decl_layout */ -#line 368 "src/parser_proc_grammar.y" /* glr.c:847 */ +#line 343 "src/parser_proc_grammar.y" /* glr.c:847 */ {psi_layout_free(&(*(struct psi_layout **)(&(*yyvaluep))));} -#line 7254 "src/parser_proc.c" /* glr.c:847 */ +#line 7494 "src/parser_proc.c" /* glr.c:847 */ break; case 233: /* align_and_size */ -#line 366 "src/parser_proc_grammar.y" /* glr.c:847 */ +#line 341 "src/parser_proc_grammar.y" /* glr.c:847 */ {} -#line 7260 "src/parser_proc.c" /* glr.c:847 */ +#line 7500 "src/parser_proc.c" /* glr.c:847 */ break; case 234: /* array_size */ -#line 424 "src/parser_proc_grammar.y" /* glr.c:847 */ +#line 399 "src/parser_proc_grammar.y" /* glr.c:847 */ {} -#line 7266 "src/parser_proc.c" /* glr.c:847 */ +#line 7506 "src/parser_proc.c" /* glr.c:847 */ break; case 236: /* indirection */ -#line 424 "src/parser_proc_grammar.y" /* glr.c:847 */ +#line 399 "src/parser_proc_grammar.y" /* glr.c:847 */ {} -#line 7272 "src/parser_proc.c" /* glr.c:847 */ +#line 7512 "src/parser_proc.c" /* glr.c:847 */ break; case 237: /* pointers */ -#line 424 "src/parser_proc_grammar.y" /* glr.c:847 */ +#line 399 "src/parser_proc_grammar.y" /* glr.c:847 */ {} -#line 7278 "src/parser_proc.c" /* glr.c:847 */ +#line 7518 "src/parser_proc.c" /* glr.c:847 */ break; case 238: /* asterisks */ -#line 424 "src/parser_proc_grammar.y" /* glr.c:847 */ +#line 399 "src/parser_proc_grammar.y" /* glr.c:847 */ {} -#line 7284 "src/parser_proc.c" /* glr.c:847 */ +#line 7524 "src/parser_proc.c" /* glr.c:847 */ break; case 241: /* impl */ -#line 374 "src/parser_proc_grammar.y" /* glr.c:847 */ +#line 349 "src/parser_proc_grammar.y" /* glr.c:847 */ {psi_impl_free(&(*(struct psi_impl **)(&(*yyvaluep))));} -#line 7290 "src/parser_proc.c" /* glr.c:847 */ +#line 7530 "src/parser_proc.c" /* glr.c:847 */ break; case 242: /* impl_func */ -#line 376 "src/parser_proc_grammar.y" /* glr.c:847 */ +#line 351 "src/parser_proc_grammar.y" /* glr.c:847 */ {psi_impl_func_free(&(*(struct psi_impl_func **)(&(*yyvaluep))));} -#line 7296 "src/parser_proc.c" /* glr.c:847 */ +#line 7536 "src/parser_proc.c" /* glr.c:847 */ break; case 243: /* impl_args */ -#line 416 "src/parser_proc_grammar.y" /* glr.c:847 */ +#line 391 "src/parser_proc_grammar.y" /* glr.c:847 */ {psi_plist_free((*(struct psi_plist **)(&(*yyvaluep))));} -#line 7302 "src/parser_proc.c" /* glr.c:847 */ +#line 7542 "src/parser_proc.c" /* glr.c:847 */ break; case 244: /* impl_arg */ -#line 378 "src/parser_proc_grammar.y" /* glr.c:847 */ +#line 353 "src/parser_proc_grammar.y" /* glr.c:847 */ {psi_impl_arg_free(&(*(struct psi_impl_arg **)(&(*yyvaluep))));} -#line 7308 "src/parser_proc.c" /* glr.c:847 */ +#line 7548 "src/parser_proc.c" /* glr.c:847 */ break; case 245: /* impl_var */ -#line 382 "src/parser_proc_grammar.y" /* glr.c:847 */ +#line 357 "src/parser_proc_grammar.y" /* glr.c:847 */ {psi_impl_var_free(&(*(struct psi_impl_var **)(&(*yyvaluep))));} -#line 7314 "src/parser_proc.c" /* glr.c:847 */ +#line 7554 "src/parser_proc.c" /* glr.c:847 */ break; case 246: /* impl_type */ -#line 380 "src/parser_proc_grammar.y" /* glr.c:847 */ +#line 355 "src/parser_proc_grammar.y" /* glr.c:847 */ {psi_impl_type_free(&(*(struct psi_impl_type **)(&(*yyvaluep))));} -#line 7320 "src/parser_proc.c" /* glr.c:847 */ +#line 7560 "src/parser_proc.c" /* glr.c:847 */ break; case 247: /* impl_type_restricted */ -#line 380 "src/parser_proc_grammar.y" /* glr.c:847 */ +#line 355 "src/parser_proc_grammar.y" /* glr.c:847 */ {psi_impl_type_free(&(*(struct psi_impl_type **)(&(*yyvaluep))));} -#line 7326 "src/parser_proc.c" /* glr.c:847 */ +#line 7566 "src/parser_proc.c" /* glr.c:847 */ break; case 248: /* impl_type_token */ -#line 414 "src/parser_proc_grammar.y" /* glr.c:847 */ +#line 389 "src/parser_proc_grammar.y" /* glr.c:847 */ {psi_token_free(&(*(struct psi_token **)(&(*yyvaluep))));} -#line 7332 "src/parser_proc.c" /* glr.c:847 */ +#line 7572 "src/parser_proc.c" /* glr.c:847 */ break; case 249: /* impl_type_restricted_token */ -#line 414 "src/parser_proc_grammar.y" /* glr.c:847 */ +#line 389 "src/parser_proc_grammar.y" /* glr.c:847 */ {psi_token_free(&(*(struct psi_token **)(&(*yyvaluep))));} -#line 7338 "src/parser_proc.c" /* glr.c:847 */ +#line 7578 "src/parser_proc.c" /* glr.c:847 */ break; case 250: /* impl_type_extended_token */ -#line 414 "src/parser_proc_grammar.y" /* glr.c:847 */ +#line 389 "src/parser_proc_grammar.y" /* glr.c:847 */ {psi_token_free(&(*(struct psi_token **)(&(*yyvaluep))));} -#line 7344 "src/parser_proc.c" /* glr.c:847 */ +#line 7584 "src/parser_proc.c" /* glr.c:847 */ break; case 251: /* impl_stmts */ -#line 416 "src/parser_proc_grammar.y" /* glr.c:847 */ +#line 391 "src/parser_proc_grammar.y" /* glr.c:847 */ {psi_plist_free((*(struct psi_plist **)(&(*yyvaluep))));} -#line 7350 "src/parser_proc.c" /* glr.c:847 */ +#line 7590 "src/parser_proc.c" /* glr.c:847 */ break; case 252: /* impl_stmt */ -#line 412 "src/parser_proc_grammar.y" /* glr.c:847 */ +#line 387 "src/parser_proc_grammar.y" /* glr.c:847 */ {psi_impl_stmt_free(&(*(struct psi_token ***)(&(*yyvaluep))));} -#line 7356 "src/parser_proc.c" /* glr.c:847 */ +#line 7596 "src/parser_proc.c" /* glr.c:847 */ break; case 253: /* let_stmt */ -#line 385 "src/parser_proc_grammar.y" /* glr.c:847 */ +#line 360 "src/parser_proc_grammar.y" /* glr.c:847 */ {psi_let_stmt_free(&(*(struct psi_let_stmt **)(&(*yyvaluep))));} -#line 7362 "src/parser_proc.c" /* glr.c:847 */ +#line 7602 "src/parser_proc.c" /* glr.c:847 */ break; case 254: /* let_exp */ -#line 387 "src/parser_proc_grammar.y" /* glr.c:847 */ +#line 362 "src/parser_proc_grammar.y" /* glr.c:847 */ {psi_let_exp_free(&(*(struct psi_let_exp **)(&(*yyvaluep))));} -#line 7368 "src/parser_proc.c" /* glr.c:847 */ +#line 7608 "src/parser_proc.c" /* glr.c:847 */ break; case 255: /* let_exp_byref */ -#line 387 "src/parser_proc_grammar.y" /* glr.c:847 */ +#line 362 "src/parser_proc_grammar.y" /* glr.c:847 */ {psi_let_exp_free(&(*(struct psi_let_exp **)(&(*yyvaluep))));} -#line 7374 "src/parser_proc.c" /* glr.c:847 */ +#line 7614 "src/parser_proc.c" /* glr.c:847 */ break; case 256: /* let_exp_assign */ -#line 387 "src/parser_proc_grammar.y" /* glr.c:847 */ +#line 362 "src/parser_proc_grammar.y" /* glr.c:847 */ {psi_let_exp_free(&(*(struct psi_let_exp **)(&(*yyvaluep))));} -#line 7380 "src/parser_proc.c" /* glr.c:847 */ +#line 7620 "src/parser_proc.c" /* glr.c:847 */ break; case 257: /* let_calloc */ -#line 389 "src/parser_proc_grammar.y" /* glr.c:847 */ +#line 364 "src/parser_proc_grammar.y" /* glr.c:847 */ {psi_let_calloc_free(&(*(struct psi_let_calloc **)(&(*yyvaluep))));} -#line 7386 "src/parser_proc.c" /* glr.c:847 */ +#line 7626 "src/parser_proc.c" /* glr.c:847 */ break; case 258: /* let_callback */ -#line 391 "src/parser_proc_grammar.y" /* glr.c:847 */ +#line 366 "src/parser_proc_grammar.y" /* glr.c:847 */ {psi_let_callback_free(&(*(struct psi_let_callback **)(&(*yyvaluep))));} -#line 7392 "src/parser_proc.c" /* glr.c:847 */ +#line 7632 "src/parser_proc.c" /* glr.c:847 */ break; case 259: /* let_func */ -#line 393 "src/parser_proc_grammar.y" /* glr.c:847 */ +#line 368 "src/parser_proc_grammar.y" /* glr.c:847 */ {psi_let_func_free(&(*(struct psi_let_func **)(&(*yyvaluep))));} -#line 7398 "src/parser_proc.c" /* glr.c:847 */ +#line 7638 "src/parser_proc.c" /* glr.c:847 */ break; case 260: /* let_func_token */ -#line 414 "src/parser_proc_grammar.y" /* glr.c:847 */ +#line 389 "src/parser_proc_grammar.y" /* glr.c:847 */ {psi_token_free(&(*(struct psi_token **)(&(*yyvaluep))));} -#line 7404 "src/parser_proc.c" /* glr.c:847 */ +#line 7644 "src/parser_proc.c" /* glr.c:847 */ break; case 261: /* let_func_exps */ -#line 416 "src/parser_proc_grammar.y" /* glr.c:847 */ +#line 391 "src/parser_proc_grammar.y" /* glr.c:847 */ {psi_plist_free((*(struct psi_plist **)(&(*yyvaluep))));} -#line 7410 "src/parser_proc.c" /* glr.c:847 */ +#line 7650 "src/parser_proc.c" /* glr.c:847 */ break; case 262: /* let_exps */ -#line 416 "src/parser_proc_grammar.y" /* glr.c:847 */ +#line 391 "src/parser_proc_grammar.y" /* glr.c:847 */ {psi_plist_free((*(struct psi_plist **)(&(*yyvaluep))));} -#line 7416 "src/parser_proc.c" /* glr.c:847 */ +#line 7656 "src/parser_proc.c" /* glr.c:847 */ break; case 263: /* callback_rval */ -#line 414 "src/parser_proc_grammar.y" /* glr.c:847 */ +#line 389 "src/parser_proc_grammar.y" /* glr.c:847 */ {psi_token_free(&(*(struct psi_token **)(&(*yyvaluep))));} -#line 7422 "src/parser_proc.c" /* glr.c:847 */ +#line 7662 "src/parser_proc.c" /* glr.c:847 */ break; case 264: /* callback_arg_list */ -#line 416 "src/parser_proc_grammar.y" /* glr.c:847 */ +#line 391 "src/parser_proc_grammar.y" /* glr.c:847 */ {psi_plist_free((*(struct psi_plist **)(&(*yyvaluep))));} -#line 7428 "src/parser_proc.c" /* glr.c:847 */ +#line 7668 "src/parser_proc.c" /* glr.c:847 */ break; case 265: /* callback_args */ -#line 416 "src/parser_proc_grammar.y" /* glr.c:847 */ +#line 391 "src/parser_proc_grammar.y" /* glr.c:847 */ {psi_plist_free((*(struct psi_plist **)(&(*yyvaluep))));} -#line 7434 "src/parser_proc.c" /* glr.c:847 */ +#line 7674 "src/parser_proc.c" /* glr.c:847 */ break; case 266: /* return_stmt */ -#line 403 "src/parser_proc_grammar.y" /* glr.c:847 */ +#line 378 "src/parser_proc_grammar.y" /* glr.c:847 */ {psi_return_stmt_free(&(*(struct psi_return_stmt **)(&(*yyvaluep))));} -#line 7440 "src/parser_proc.c" /* glr.c:847 */ +#line 7680 "src/parser_proc.c" /* glr.c:847 */ break; case 267: /* return_exp */ -#line 405 "src/parser_proc_grammar.y" /* glr.c:847 */ +#line 380 "src/parser_proc_grammar.y" /* glr.c:847 */ {psi_return_exp_free(&(*(struct psi_return_exp **)(&(*yyvaluep))));} -#line 7446 "src/parser_proc.c" /* glr.c:847 */ +#line 7686 "src/parser_proc.c" /* glr.c:847 */ break; case 268: /* call_decl_vars */ -#line 363 "src/parser_proc_grammar.y" /* glr.c:847 */ +#line 338 "src/parser_proc_grammar.y" /* glr.c:847 */ {psi_plist_free((*(struct psi_plist **)(&(*yyvaluep))));} -#line 7452 "src/parser_proc.c" /* glr.c:847 */ +#line 7692 "src/parser_proc.c" /* glr.c:847 */ break; case 269: /* set_stmt */ -#line 395 "src/parser_proc_grammar.y" /* glr.c:847 */ +#line 370 "src/parser_proc_grammar.y" /* glr.c:847 */ {psi_set_stmt_free(&(*(struct psi_set_stmt **)(&(*yyvaluep))));} -#line 7458 "src/parser_proc.c" /* glr.c:847 */ +#line 7698 "src/parser_proc.c" /* glr.c:847 */ break; case 270: /* set_exp */ -#line 397 "src/parser_proc_grammar.y" /* glr.c:847 */ +#line 372 "src/parser_proc_grammar.y" /* glr.c:847 */ {psi_set_exp_free(&(*(struct psi_set_exp **)(&(*yyvaluep))));} -#line 7464 "src/parser_proc.c" /* glr.c:847 */ +#line 7704 "src/parser_proc.c" /* glr.c:847 */ break; case 271: /* set_func */ -#line 399 "src/parser_proc_grammar.y" /* glr.c:847 */ +#line 374 "src/parser_proc_grammar.y" /* glr.c:847 */ {psi_set_func_free(&(*(struct psi_set_func **)(&(*yyvaluep))));} -#line 7470 "src/parser_proc.c" /* glr.c:847 */ +#line 7710 "src/parser_proc.c" /* glr.c:847 */ break; case 272: /* set_func_token */ -#line 414 "src/parser_proc_grammar.y" /* glr.c:847 */ +#line 389 "src/parser_proc_grammar.y" /* glr.c:847 */ {psi_token_free(&(*(struct psi_token **)(&(*yyvaluep))));} -#line 7476 "src/parser_proc.c" /* glr.c:847 */ +#line 7716 "src/parser_proc.c" /* glr.c:847 */ break; case 273: /* set_func_exps */ -#line 416 "src/parser_proc_grammar.y" /* glr.c:847 */ +#line 391 "src/parser_proc_grammar.y" /* glr.c:847 */ {psi_plist_free((*(struct psi_plist **)(&(*yyvaluep))));} -#line 7482 "src/parser_proc.c" /* glr.c:847 */ +#line 7722 "src/parser_proc.c" /* glr.c:847 */ break; case 274: /* set_exps */ -#line 416 "src/parser_proc_grammar.y" /* glr.c:847 */ +#line 391 "src/parser_proc_grammar.y" /* glr.c:847 */ {psi_plist_free((*(struct psi_plist **)(&(*yyvaluep))));} -#line 7488 "src/parser_proc.c" /* glr.c:847 */ +#line 7728 "src/parser_proc.c" /* glr.c:847 */ break; case 275: /* assert_stmt */ -#line 401 "src/parser_proc_grammar.y" /* glr.c:847 */ +#line 376 "src/parser_proc_grammar.y" /* glr.c:847 */ {psi_assert_stmt_free(&(*(struct psi_assert_stmt **)(&(*yyvaluep))));} -#line 7494 "src/parser_proc.c" /* glr.c:847 */ +#line 7734 "src/parser_proc.c" /* glr.c:847 */ break; case 276: /* assert_stmt_token */ -#line 414 "src/parser_proc_grammar.y" /* glr.c:847 */ +#line 389 "src/parser_proc_grammar.y" /* glr.c:847 */ {psi_token_free(&(*(struct psi_token **)(&(*yyvaluep))));} -#line 7500 "src/parser_proc.c" /* glr.c:847 */ +#line 7740 "src/parser_proc.c" /* glr.c:847 */ break; case 277: /* free_stmt */ -#line 407 "src/parser_proc_grammar.y" /* glr.c:847 */ +#line 382 "src/parser_proc_grammar.y" /* glr.c:847 */ {psi_free_stmt_free(&(*(struct psi_free_stmt **)(&(*yyvaluep))));} -#line 7506 "src/parser_proc.c" /* glr.c:847 */ +#line 7746 "src/parser_proc.c" /* glr.c:847 */ break; case 278: /* free_exps */ -#line 416 "src/parser_proc_grammar.y" /* glr.c:847 */ +#line 391 "src/parser_proc_grammar.y" /* glr.c:847 */ {psi_plist_free((*(struct psi_plist **)(&(*yyvaluep))));} -#line 7512 "src/parser_proc.c" /* glr.c:847 */ +#line 7752 "src/parser_proc.c" /* glr.c:847 */ break; case 279: /* free_exp */ -#line 409 "src/parser_proc_grammar.y" /* glr.c:847 */ +#line 384 "src/parser_proc_grammar.y" /* glr.c:847 */ {psi_free_exp_free(&(*(struct psi_free_exp **)(&(*yyvaluep))));} -#line 7518 "src/parser_proc.c" /* glr.c:847 */ +#line 7758 "src/parser_proc.c" /* glr.c:847 */ break; case 280: /* reference */ -#line 426 "src/parser_proc_grammar.y" /* glr.c:847 */ +#line 401 "src/parser_proc_grammar.y" /* glr.c:847 */ {} -#line 7524 "src/parser_proc.c" /* glr.c:847 */ +#line 7764 "src/parser_proc.c" /* glr.c:847 */ break; @@ -7577,7 +7817,7 @@ yylhsNonterm (yyRuleNum yyrule) } #define yypact_value_is_default(Yystate) \ - (!!((Yystate) == (-714))) + (!!((Yystate) == (-731))) /** True iff LR state YYSTATE has only a default reduction (regardless * of token). */ @@ -8870,11 +9110,11 @@ yyparse (struct psi_parser *P, struct psi_plist *tokens, size_t *index) yylval = yyval_default; /* User initialization code. */ - #line 144 "src/parser_proc_grammar.y" /* glr.c:2261 */ + #line 119 "src/parser_proc_grammar.y" /* glr.c:2261 */ { } -#line 8878 "src/parser_proc.c" /* glr.c:2261 */ +#line 9118 "src/parser_proc.c" /* glr.c:2261 */ if (! yyinitGLRStack (yystackp, YYINITDEPTH)) goto yyexhaustedlab; @@ -9177,25 +9417,29 @@ yypdumpstack (yyGLRStack* yystackp) #define yydebug psi_parser_proc_debug #define yynerrs psi_parser_proc_nerrs -#line 2275 "src/parser_proc_grammar.y" /* glr.c:2575 */ +#line 2284 "src/parser_proc_grammar.y" /* glr.c:2575 */ /* epilogue */ +#define PSI_DEBUG_LEX 0 static int psi_parser_proc_lex(YYSTYPE *lvalp, struct psi_parser *P, struct psi_plist *tokens, size_t *index) { struct psi_token *token; - +#if PSI_DEBUG_LEX + PSI_DEBUG_PRINT(P, "PSI: LEX index %4zu ", *index); +#endif if (psi_plist_get(tokens, (*index)++, &token)) { - if (P->flags & PSI_DEBUG) { - psi_token_dump(2, token); - } - +#if PSI_DEBUG_LEX + PSI_DEBUG_DUMP(P, psi_token_dump, token); +#endif *((struct psi_token **)lvalp) = token; return token->type; } else { +#if PSI_DEBUG_LEX + PSI_DEBUG_PRINT(P, "EOF\n"); +#endif (*index)--; - PSI_DEBUG_PRINT(P, "EOF(%d)\n", PSI_T_EOF); } return PSI_T_EOF; @@ -9205,13 +9449,13 @@ static void psi_parser_proc_error(struct psi_parser *P, struct psi_plist *tokens { struct psi_token *T = NULL; size_t last; - + if (*index == 0) { last = 0; - } else { + } else { last = --(*index); } - + psi_plist_get(tokens, last, &T); if (T) { P->error(PSI_DATA(P), T, PSI_WARNING, "PSI %s at col %u", msg, T->col); diff --git a/src/parser_proc.h b/src/parser_proc.h index e259190..fd701a1 100644 --- a/src/parser_proc.h +++ b/src/parser_proc.h @@ -40,7 +40,7 @@ extern int psi_parser_proc_debug; #endif /* "%code requires" blocks. */ -#line 115 "src/parser_proc_grammar.y" /* glr.c:197 */ +#line 90 "src/parser_proc_grammar.y" /* glr.c:197 */ #include "plist.h" #include "types/layout.h" diff --git a/src/parser_proc_grammar.y b/src/parser_proc_grammar.y index 1b40555..6dbac47 100644 --- a/src/parser_proc_grammar.y +++ b/src/parser_proc_grammar.y @@ -39,37 +39,12 @@ static inline void psi_parser_proc_add_enum(struct psi_parser *P, struct psi_dec } P->enums = psi_plist_add(P->enums, &e); } -static inline void psi_parser_proc_deanon_typedef(struct psi_decl_arg *def) -{ - switch (def->type->type) { - case PSI_T_STRUCT: - if (!psi_decl_type_is_anon(def->type->name, "struct")) { - return; - } - break; - case PSI_T_UNION: - if (!psi_decl_type_is_anon(def->type->name, "union")) { - return; - } - break; - case PSI_T_ENUM: - if (!psi_decl_type_is_anon(def->type->name, "enum")) { - return; - } - break; - default: - return; - } - zend_string_release(def->type->name); - def->type->name = zend_string_copy(def->var->name); -} static inline void psi_parser_proc_add_typedef(struct psi_parser *P, struct psi_decl_arg *def) { assert(def); if (!P->types) { P->types = psi_plist_init((psi_plist_dtor) psi_decl_arg_free); } - //psi_parser_proc_deanon_typedef(def); P->types = psi_plist_add(P->types, &def); } static inline void psi_parser_proc_add_const(struct psi_parser *P, struct psi_const *cnst) { @@ -82,7 +57,7 @@ static inline void psi_parser_proc_add_const(struct psi_parser *P, struct psi_co } static inline void psi_parser_proc_add_decl(struct psi_parser *P, struct psi_decl *decl) { assert(decl); - + if (psi_decl_is_blacklisted(decl->func->var->name->val)) { psi_decl_free(&decl); return; @@ -348,7 +323,7 @@ struct psi_parser; %type decl_stmt decl decl_body decl_func_body decl_functor_body decl_anon_functor_body ignored_decl %destructor {psi_decl_free(&$$);} decl_stmt decl decl_body decl_func_body decl_functor_body decl_anon_functor_body ignored_decl %type decl_typedef decl_func decl_functor decl_anon_functor decl_arg decl_anon_arg typedef typedef_decl typedef_anon typedef_anon_decl -%destructor {psi_decl_arg_free(&$$);} decl_typedef decl_func decl_functor decl_anon_functor decl_arg decl_anon_arg typedef typedef_decl typedef_anon typedef_anon_decl +%destructor {psi_decl_arg_free(&$$);} decl_typedef decl_func decl_functor decl_anon_functor decl_arg decl_anon_arg typedef typedef_decl typedef_anon typedef_anon_decl %type decl_var %destructor {psi_decl_var_free(&$$);} decl_var %type decl_struct @@ -407,7 +382,7 @@ struct psi_parser; %destructor {psi_free_stmt_free(&$$);} free_stmt %type free_exp %destructor {psi_free_exp_free(&$$);} free_exp - + %type impl_stmt %destructor {psi_impl_stmt_free(&$$);} impl_stmt %type impl_type_token impl_type_restricted_token impl_type_extended_token callback_rval let_func_token set_func_token assert_stmt_token @@ -430,9 +405,9 @@ struct psi_parser; /* rules */ -binary_op_token: PIPE | CARET | AMPERSAND | LSHIFT | RSHIFT | PLUS | MINUS | ASTERISK | SLASH | MODULO | RCHEVR | LCHEVR | CMP_GE | CMP_LE | OR | AND | CMP_EQ | CMP_NE ; +binary_op_token: PIPE | CARET | AMPERSAND | LSHIFT | RSHIFT | PLUS | MINUS | ASTERISK | SLASH | MODULO | RCHEVR | LCHEVR | CMP_GE | CMP_LE | OR | AND | CMP_EQ | CMP_NE ; unary_op_token: TILDE | NOT | PLUS | MINUS ; -name_token: NAME | FUNCTION | TEMP | FREE | SET | LET | CALLOC | CALLBACK | LIB | BOOL | STRING | ERROR | WARNING | LINE | PRAGMA_ONCE | PRAGMA | AS | let_func_token | set_func_token; +name_token: NAME | FUNCTION | TEMP | FREE | SET | LET | CALLOC | CALLBACK | LIB | BOOL | STRING | MIXED | ARRAY | OBJECT | ERROR | WARNING | LINE | PRAGMA_ONCE | PRAGMA | AS | let_func_token | set_func_token; any_noeol_token: BOOL | CHAR | SHORT | INT | SIGNED | UNSIGNED | LONG | FLOAT | DOUBLE | STRING | MIXED | ARRAY | OBJECT | CALLABLE | VOID | ZVAL | NULL | TRUE | FALSE | NAME | NSNAME | DOLLAR_NAME | NUMBER | QUOTED_STRING | QUOTED_CHAR | EOF | EOS | LPAREN | RPAREN | COMMA | COLON | LBRACE | RBRACE | LBRACKET | RBRACKET | EQUALS | HASH | PIPE | CARET | AMPERSAND | LSHIFT | RSHIFT | PLUS | MINUS | ASTERISK | SLASH | MODULO | LCHEVR | RCHEVR | CMP_GE | CMP_LE | OR | AND | CMP_EQ | CMP_NE | TILDE | NOT | PERIOD | BACKSLASH | ELLIPSIS | ERROR | WARNING | LINE | PRAGMA | PRAGMA_ONCE | IIF | IF | IFDEF | IFNDEF | ELSE | ELIF | ENDIF | DEFINE | DEFINED | UNDEF | INCLUDE | TYPEDEF | STRUCT | UNION | ENUM | CONST | LIB | STATIC | CALLBACK | FUNCTION | LET | SET | TEMP | FREE | RETURN | PRE_ASSERT | POST_ASSERT | BOOLVAL | INTVAL | STRVAL | PATHVAL | STRLEN | FLOATVAL | ARRVAL | OBJVAL | COUNT | CALLOC | TO_BOOL | TO_INT | TO_STRING | TO_FLOAT | TO_ARRAY | TO_OBJECT | COMMENT | CPP_HEADER | CPP_PASTE | CPP_INLINE | CPP_RESTRICT | CPP_EXTENSION | CPP_ASM | SIZEOF | VOLATILE | AS; any_nobrace_token: BOOL | CHAR | SHORT | INT | SIGNED | UNSIGNED | LONG | FLOAT | DOUBLE | STRING | MIXED | ARRAY | OBJECT | CALLABLE | VOID | ZVAL | NULL | TRUE | FALSE | NAME | NSNAME | DOLLAR_NAME | NUMBER | QUOTED_STRING | QUOTED_CHAR | EOF | EOS | LPAREN | RPAREN | COMMA | COLON | LBRACKET | RBRACKET | EQUALS | HASH | PIPE | CARET | AMPERSAND | LSHIFT | RSHIFT | PLUS | MINUS | ASTERISK | SLASH | MODULO | LCHEVR | RCHEVR | CMP_GE | CMP_LE | OR | AND | CMP_EQ | CMP_NE | TILDE | NOT | PERIOD | BACKSLASH | ELLIPSIS | ERROR | WARNING | LINE | PRAGMA | PRAGMA_ONCE | IIF | IF | IFDEF | IFNDEF | ELSE | ELIF | ENDIF | DEFINE | DEFINED | UNDEF | INCLUDE | TYPEDEF | STRUCT | UNION | ENUM | CONST | LIB | STATIC | CALLBACK | FUNCTION | LET | SET | TEMP | FREE | RETURN | PRE_ASSERT | POST_ASSERT | BOOLVAL | INTVAL | STRVAL | PATHVAL | STRLEN | FLOATVAL | ARRVAL | OBJVAL | COUNT | CALLOC | TO_BOOL | TO_INT | TO_STRING | TO_FLOAT | TO_ARRAY | TO_OBJECT | COMMENT | CPP_HEADER | CPP_PASTE | CPP_INLINE | CPP_RESTRICT | CPP_EXTENSION | CPP_ASM | SIZEOF | VOLATILE | AS; @@ -510,12 +485,12 @@ cpp_exp[exp]: cpp_message_token cpp_macro_decl_tokens[tokens] { if ($tokens) { struct psi_token *msg = NULL; - + if (psi_plist_get($tokens, 0, &msg)) { size_t index = 1; struct psi_token *next; - msg = psi_token_copy(msg); + msg = psi_token_copy(msg); while (psi_plist_get($tokens, index++, &next)) { struct psi_token *old = msg; msg = psi_token_cat(" ", 2, msg, next); @@ -523,7 +498,7 @@ cpp_exp[exp]: } } psi_plist_free($tokens); - + $exp = psi_cpp_exp_init($cpp_message_token->type, msg); } else { $exp = psi_cpp_exp_init($cpp_message_token->type, NULL); @@ -566,7 +541,7 @@ cpp_ignored_token: | PRAGMA ; -cpp_message_token: +cpp_message_token: ERROR | WARNING ; @@ -593,7 +568,7 @@ cpp_name_arg_token: | UNDEF ; -cpp_exp_arg_token: +cpp_exp_arg_token: IF | ELIF ; @@ -690,7 +665,7 @@ cpp_macro_exp[exp]: $name_token->type = PSI_T_NAME; exists = psi_cpp_defined(P->preproc, $name_token); - $exp = psi_num_exp_init_num(psi_number_init(PSI_T_UINT8, &exists, 0)); + $exp = psi_num_exp_init_num(psi_number_init(PSI_T_DEFINED, &exists, 0)); $exp->token = psi_token_copy($DEFINED); $exp->data.n->token = psi_token_copy($name_token); } @@ -701,7 +676,7 @@ cpp_macro_exp[exp]: $name_token->type = PSI_T_NAME; exists = psi_cpp_defined(P->preproc, $name_token); - $exp = psi_num_exp_init_num(psi_number_init(PSI_T_UINT8, &exists, 0)); + $exp = psi_num_exp_init_num(psi_number_init(PSI_T_DEFINED, &exists, 0)); $exp->token = psi_token_copy($DEFINED); $exp->data.n->token = psi_token_copy($name_token); } @@ -732,6 +707,7 @@ cpp_macro_exp[exp]: psi_cpp_macro_call_init($name_token->text, $cpp_macro_call_args), 0)); $exp->token = psi_token_copy($name_token); $exp->data.n->token = psi_token_copy($name_token); + $exp->data.n->data.call->token = psi_token_copy($name_token); } ; @@ -743,8 +719,16 @@ cpp_macro_call_args[args]: ; cpp_macro_call_arg_list[args]: - cpp_macro_exp { - $args = psi_plist_add(psi_plist_init((psi_plist_dtor) psi_num_exp_free), + CPP_HEADER { + /* TODO: clang include test macros */ + uint8_t no = 1; + struct psi_num_exp *exp = psi_num_exp_init_num(psi_number_init(PSI_T_UINT8, &no, 0)); + exp->token = psi_token_copy($CPP_HEADER); + exp->data.n->token = psi_token_copy($CPP_HEADER); + $args = psi_plist_add(psi_plist_init((psi_plist_dtor) psi_num_exp_free), &exp); +} +| cpp_macro_exp { + $args = psi_plist_add(psi_plist_init((psi_plist_dtor) psi_num_exp_free), &$cpp_macro_exp); } | cpp_macro_call_arg_list[args_] COMMA cpp_macro_exp { @@ -757,6 +741,10 @@ constant[const]: $const = psi_const_init($type, $NSNAME->text, $impl_def_val); $const->token = psi_token_copy($NSNAME); } +| CONST NSNAME EQUALS impl_def_val EOS { + $const = psi_const_init(NULL, $NSNAME->text, $impl_def_val); + $const->token = psi_token_copy($NSNAME); +} ; impl_def_val[val]: @@ -1100,13 +1088,13 @@ quoted_strings[strings]: ; decl_extvar_stmt[list]: - NAME decl_arg decl_extvar_list[vars] EOS { + NAME decl_arg decl_extvar_list[vars] decl_asm EOS { struct psi_plist *list = psi_plist_init((psi_plist_dtor) psi_decl_extvar_free); - + if ($vars) { size_t i = 0; struct psi_decl_var *var; - + while (psi_plist_get($vars, i++, &var)) { if (psi_decl_extvar_is_blacklisted(var->name->val)) { psi_decl_var_free(&var); @@ -1118,14 +1106,19 @@ decl_extvar_stmt[list]: } free($vars); } - + if (psi_decl_extvar_is_blacklisted($decl_arg->var->name->val)) { psi_decl_arg_free(&$decl_arg); } else { struct psi_decl_extvar *evar = psi_decl_extvar_init($decl_arg); + + if ($decl_asm) { + evar->redir = zend_string_copy($decl_asm->text); + psi_token_free(&$decl_asm); + } list = psi_plist_add(list, &evar); } - + $list = list; } ; @@ -1227,51 +1220,51 @@ decl_functor_body[decl]: | qualified_decl_type[rval_type] indirection[i] LPAREN indirection[unused1] name_token[NAME] LPAREN decl_args[args] RPAREN RPAREN LPAREN decl_args[rval_args] RPAREN array_size[as] { (void) $unused1; $NAME->type = PSI_T_NAME; - + struct psi_token *type_token = psi_token_append("@", psi_token_copy($NAME), 1, "rval"); struct psi_decl_arg *rval_func = psi_decl_arg_init($rval_type, psi_decl_var_init(type_token->text, $i, 0)); struct psi_decl *rval_decl = psi_decl_init(rval_func, $rval_args); - + rval_func->var->token = psi_token_copy(type_token); rval_func->token = psi_token_copy(type_token); if ($as) { rval_func->var->pointer_level += 1; rval_func->var->array_size = $as; } - + struct psi_decl_type *type = psi_decl_type_init(PSI_T_FUNCTION, type_token->text); struct psi_decl_arg *func = psi_decl_arg_init(type, psi_decl_var_init($NAME->text, 1, 0)); - + type->real.func = rval_decl; func->var->token = psi_token_copy($NAME); func->token = psi_token_copy($NAME); - + $decl = psi_decl_init(func, $args); } | qualified_decl_type[rval_type] indirection[i] LPAREN indirection[unused1] LPAREN indirection[unused2] name_token[NAME] RPAREN LPAREN decl_args[args] RPAREN RPAREN LPAREN decl_args[rval_args] RPAREN array_size[as] { (void) $unused1; (void) $unused2; $NAME->type = PSI_T_NAME; - + struct psi_token *type_token = psi_token_append("@", psi_token_copy($NAME), 1, "rval"); struct psi_decl_arg *rval_func = psi_decl_arg_init($rval_type, psi_decl_var_init(type_token->text, $i, 0)); struct psi_decl *rval_decl = psi_decl_init(rval_func, $rval_args); - + rval_func->var->token = psi_token_copy(type_token); rval_func->token = psi_token_copy(type_token); if ($as) { rval_func->var->pointer_level += 1; rval_func->var->array_size = $as; } - + struct psi_decl_type *type = psi_decl_type_init(PSI_T_FUNCTION, type_token->text); struct psi_decl_arg *func = psi_decl_arg_init(type, psi_decl_var_init($NAME->text, 1, 0)); - + type->real.func = rval_decl; func->var->token = psi_token_copy($NAME); func->token = psi_token_copy($NAME); type->token = type_token; - + $decl = psi_decl_init(func, $args); } ; @@ -1424,7 +1417,7 @@ decl_anon_arg[arg]: psi_token_hash($decl->func->token, digest); name = psi_token_append("@", psi_token_copy($decl->func->token), 2, "funct", digest); - + $arg = psi_decl_arg_init( psi_decl_type_init(PSI_T_FUNCTION, name->text), psi_decl_var_copy($decl->func->var) @@ -1436,10 +1429,10 @@ decl_anon_arg[arg]: | decl_arg %dprec 2 { $arg = $decl_arg; } -| qualified_decl_type[type] indirection %dprec 1 { +| qualified_decl_type[type] indirection array_size[as] %dprec 1 { $arg = psi_decl_arg_init( - $type, - psi_decl_var_init(NULL, $indirection, 0) + $type, + psi_decl_var_init(NULL, $indirection, $as) ); } /* @@ -1553,7 +1546,7 @@ struct_args[args]: if ($vars) { size_t i = 0; struct psi_decl_arg *arg; - + while (psi_plist_get($vars, i++, &arg)) { arg->type = psi_decl_type_copy($arg->type); $args = psi_plist_add($args, &arg); @@ -1567,7 +1560,7 @@ struct_args[args]: if ($vars) { size_t i = 0; struct psi_decl_arg *arg; - + while (psi_plist_get($vars, i++, &arg)) { arg->type = psi_decl_type_copy($arg->type); $args = psi_plist_add($args, &arg); @@ -1601,6 +1594,22 @@ decl_vars_with_layout[vars]: $vars = psi_plist_add($vars_, &arg); } } +| decl_layout[layout] { + { + struct psi_decl_var *var = psi_decl_var_init(NULL, 0, 0); + struct psi_decl_arg *arg = psi_decl_arg_init(NULL, var); + arg->layout = $layout; + $vars = psi_plist_add(psi_plist_init((psi_plist_dtor) psi_decl_arg_free), &arg); + } +} +| decl_vars_with_layout[vars_] COMMA decl_layout[layout] { + { + struct psi_decl_var *var = psi_decl_var_init(NULL, 0, 0); + struct psi_decl_arg *arg = psi_decl_arg_init(NULL, var); + arg->layout = $layout; + $vars = psi_plist_add($vars_, &arg); + } +} ; decl_enum[enum]: @@ -1816,9 +1825,9 @@ array_size[as]: | LBRACKET num_exp RBRACKET { struct psi_validate_scope scope = {0}; psi_validate_scope_ctor(&scope); - scope.defs = &P->preproc->defs; + scope.cpp = P->preproc; if (psi_num_exp_validate(PSI_DATA(P), $num_exp, &scope)) { - $as = psi_num_exp_get_long($num_exp, NULL, &P->preproc->defs); + $as = psi_num_exp_get_long($num_exp, NULL, P->preproc); } else { $as = 0; } @@ -1950,15 +1959,15 @@ impl_type_token: ; impl_type_restricted_token: - BOOL + BOOL | INT | FLOAT | STRING +| MIXED ; impl_type_extended_token: VOID -| MIXED | ARRAY | OBJECT | CALLABLE @@ -2037,7 +2046,7 @@ let_exp_byref[exp]: } ; -let_exp_assign[exp]: +let_exp_assign[exp]: decl_var[var] EQUALS let_exp_byref[exp_] { $exp = $exp_; $exp->var = $var; @@ -2078,16 +2087,16 @@ let_func[func]: ; let_func_token: - ZVAL -| OBJVAL -| ARRVAL -| PATHVAL -| STRLEN -| STRVAL -| FLOATVAL -| INTVAL -| BOOLVAL -| COUNT + ZVAL +| OBJVAL +| ARRVAL +| PATHVAL +| STRLEN +| STRVAL +| FLOATVAL +| INTVAL +| BOOLVAL +| COUNT ; let_func_exps[exps]: @@ -2276,20 +2285,24 @@ byref: /* epilogue */ +#define PSI_DEBUG_LEX 0 static int psi_parser_proc_lex(YYSTYPE *lvalp, struct psi_parser *P, struct psi_plist *tokens, size_t *index) { struct psi_token *token; - +#if PSI_DEBUG_LEX + PSI_DEBUG_PRINT(P, "PSI: LEX index %4zu ", *index); +#endif if (psi_plist_get(tokens, (*index)++, &token)) { - if (P->flags & PSI_DEBUG) { - psi_token_dump(2, token); - } - +#if PSI_DEBUG_LEX + PSI_DEBUG_DUMP(P, psi_token_dump, token); +#endif *((struct psi_token **)lvalp) = token; return token->type; } else { +#if PSI_DEBUG_LEX + PSI_DEBUG_PRINT(P, "EOF\n"); +#endif (*index)--; - PSI_DEBUG_PRINT(P, "EOF(%d)\n", PSI_T_EOF); } return PSI_T_EOF; @@ -2299,13 +2312,13 @@ static void psi_parser_proc_error(struct psi_parser *P, struct psi_plist *tokens { struct psi_token *T = NULL; size_t last; - + if (*index == 0) { last = 0; - } else { + } else { last = --(*index); } - + psi_plist_get(tokens, last, &T); if (T) { P->error(PSI_DATA(P), T, PSI_WARNING, "PSI %s at col %u", msg, T->col); diff --git a/src/parser_scan.c b/src/parser_scan.c new file mode 100644 index 0000000..1a0e4d3 --- /dev/null +++ b/src/parser_scan.c @@ -0,0 +1,10051 @@ +/* Generated by re2c 1.1.1 on Tue Nov 13 09:05:21 2018 */ +#line 1 "src/parser_scan.re" +/******************************************************************************* + Copyright (c) 2016, Michael Wallner . + All rights reserved. + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions are met: + + * Redistributions of source code must retain the above copyright notice, + this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE + FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL + DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, + OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE + OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +*******************************************************************************/ + +#include + +#include "parser.h" +#include "plist.h" + +#define YYMAXFILL 15 + +#ifndef YYMAXFILL +# define YYMAXFILL 256 +#endif + +size_t psi_parser_maxfill(void) { + return YYMAXFILL; +} + +#define NEWLINE() \ + eol = cur; \ + ++I->lines + +#define NEWTOKEN(t) do { \ + if (t == PSI_T_COMMENT || t == PSI_T_WHITESPACE) { \ + token = psi_token_init(t, "", 0, tok - eol + 1, I->lines, I->file); \ + } else { \ + token = psi_token_init(t, tok, cur - tok, tok - eol + 1, I->lines, I->file); \ + } \ + tokens = psi_plist_add(tokens, &token); \ + PSI_DEBUG_PRINT(P, "PSI: scanned < "); \ + PSI_DEBUG_DUMP(P, psi_token_dump, token); \ +} while(0) + +#define CHECKEOF() if (cur >= lim - YYMAXFILL) goto done + +struct psi_plist *psi_parser_scan(struct psi_parser *P, struct psi_parser_input *I) +{ + struct psi_plist *tokens; + struct psi_token *token; + const char *tok, *cur, *lim, *mrk, *eol, *ctxmrk; + unsigned parens; + bool escaped; + token_t char_width; + + PSI_DEBUG_PRINT(P, "PSI: scanning %s\n", I->file->val); + + tok = mrk = eol = cur = I->buffer; + lim = I->buffer + I->length + YYMAXFILL; + I->lines = 1; + tokens = psi_plist_init((psi_plist_dtor) psi_token_free); + + start: ; + char_width = 1; + ctxmrk = NULL; + tok = cur; + + (void) ctxmrk; + + +#line 85 "src/parser_scan.c" + { + unsigned char yych; + unsigned int yyaccept = 0; + if ((lim - cur) < 15) CHECKEOF();; + yych = *cur; + switch (yych) { + case 0x00: + case 0x01: + case 0x02: + case 0x03: + case 0x04: + case 0x05: + case 0x06: + case 0x07: + case 0x08: + case '\v': + case 0x0E: + case 0x0F: + case 0x10: + case 0x11: + case 0x12: + case 0x13: + case 0x14: + case 0x15: + case 0x16: + case 0x17: + case 0x18: + case 0x19: + case 0x1A: + case 0x1B: + case 0x1C: + case 0x1D: + case 0x1E: + case 0x1F: + case '@': + case '`': + case 0x7F: goto yy2; + case '\t': + case '\f': + case ' ': goto yy4; + case '\n': + case '\r': goto yy7; + case '!': goto yy9; + case '"': goto yy11; + case '#': goto yy13; + case '$': goto yy15; + case '%': goto yy16; + case '&': goto yy18; + case '\'': goto yy20; + case '(': goto yy22; + case ')': goto yy24; + case '*': goto yy26; + case '+': goto yy28; + case ',': goto yy30; + case '-': goto yy32; + case '.': goto yy34; + case '/': goto yy36; + case '0': goto yy38; + case '1': + case '2': + case '3': + case '4': + case '5': + case '6': + case '7': + case '8': + case '9': goto yy40; + case ':': goto yy42; + case ';': goto yy44; + case '<': goto yy46; + case '=': goto yy48; + case '>': goto yy50; + case '?': goto yy52; + case 'A': + case 'a': goto yy54; + case 'B': goto yy56; + case 'C': goto yy57; + case 'D': goto yy58; + case 'E': goto yy59; + case 'F': goto yy60; + case 'I': goto yy63; + case 'L': goto yy64; + case 'M': + case 'm': goto yy65; + case 'N': + case 'n': goto yy66; + case 'O': + case 'o': goto yy67; + case 'P': goto yy68; + case 'R': + case 'r': goto yy69; + case 'S': goto yy70; + case 'T': goto yy71; + case 'U': goto yy72; + case 'W': + case 'w': goto yy73; + case 'Z': + case 'z': goto yy74; + case '[': goto yy75; + case '\\': goto yy77; + case ']': goto yy79; + case '^': goto yy81; + case '_': goto yy83; + case 'b': goto yy84; + case 'c': goto yy85; + case 'd': goto yy86; + case 'e': goto yy87; + case 'f': goto yy88; + case 'i': goto yy89; + case 'l': goto yy90; + case 'p': goto yy91; + case 's': goto yy92; + case 't': goto yy93; + case 'u': goto yy94; + case 'v': goto yy95; + case '{': goto yy96; + case '|': goto yy98; + case '}': goto yy100; + case '~': goto yy102; + default: goto yy61; + } +yy2: + ++cur; +yy3: +#line 250 "src/parser_scan.re" + { CHECKEOF(); NEWTOKEN(-2); goto error; } +#line 212 "src/parser_scan.c" +yy4: + ++cur; + if (lim <= cur) CHECKEOF();; + yych = *cur; + switch (yych) { + case '\t': + case '\f': + case ' ': goto yy4; + default: goto yy6; + } +yy6: +#line 249 "src/parser_scan.re" + { NEWTOKEN(PSI_T_WHITESPACE); goto start; } +#line 226 "src/parser_scan.c" +yy7: + ++cur; +#line 248 "src/parser_scan.re" + { NEWTOKEN(PSI_T_EOL); NEWLINE(); goto start; } +#line 231 "src/parser_scan.c" +yy9: + yych = *++cur; + switch (yych) { + case '=': goto yy104; + default: goto yy10; + } +yy10: +#line 151 "src/parser_scan.re" + { NEWTOKEN(PSI_T_NOT); goto start; } +#line 241 "src/parser_scan.c" +yy11: + ++cur; +#line 124 "src/parser_scan.re" + { escaped = false; tok += 1; goto string; } +#line 246 "src/parser_scan.c" +yy13: + yych = *++cur; + switch (yych) { + case '#': goto yy106; + default: goto yy14; + } +yy14: +#line 134 "src/parser_scan.re" + { NEWTOKEN(PSI_T_HASH); goto start; } +#line 256 "src/parser_scan.c" +yy15: + yych = *++cur; + switch (yych) { + case 0x00: + case 0x01: + case 0x02: + case 0x03: + case 0x04: + case 0x05: + case 0x06: + case 0x07: + case 0x08: + case '\t': + case '\n': + case '\v': + case '\f': + case '\r': + case 0x0E: + case 0x0F: + case 0x10: + case 0x11: + case 0x12: + case 0x13: + case 0x14: + case 0x15: + case 0x16: + case 0x17: + case 0x18: + case 0x19: + case 0x1A: + case 0x1B: + case 0x1C: + case 0x1D: + case 0x1E: + case 0x1F: + case ' ': + case '!': + case '"': + case '#': + case '$': + case '%': + case '&': + case '\'': + case '(': + case ')': + case '*': + case '+': + case ',': + case '-': + case '.': + case '/': + case ':': + case ';': + case '<': + case '=': + case '>': + case '?': + case '@': + case '[': + case '\\': + case ']': + case '^': + case '`': + case '{': + case '|': + case '}': + case '~': + case 0x7F: goto yy3; + default: goto yy108; + } +yy16: + ++cur; +#line 152 "src/parser_scan.re" + { NEWTOKEN(PSI_T_MODULO); goto start; } +#line 331 "src/parser_scan.c" +yy18: + yych = *++cur; + switch (yych) { + case '&': goto yy111; + default: goto yy19; + } +yy19: +#line 153 "src/parser_scan.re" + { NEWTOKEN(PSI_T_AMPERSAND); goto start; } +#line 341 "src/parser_scan.c" +yy20: + ++cur; +#line 123 "src/parser_scan.re" + { escaped = false; tok += 1; goto character; } +#line 346 "src/parser_scan.c" +yy22: + ++cur; +#line 135 "src/parser_scan.re" + { NEWTOKEN(PSI_T_LPAREN); goto start; } +#line 351 "src/parser_scan.c" +yy24: + ++cur; +#line 136 "src/parser_scan.re" + { NEWTOKEN(PSI_T_RPAREN); goto start; } +#line 356 "src/parser_scan.c" +yy26: + ++cur; +#line 149 "src/parser_scan.re" + { NEWTOKEN(PSI_T_ASTERISK); goto start; } +#line 361 "src/parser_scan.c" +yy28: + ++cur; +#line 154 "src/parser_scan.re" + { NEWTOKEN(PSI_T_PLUS); goto start; } +#line 366 "src/parser_scan.c" +yy30: + ++cur; +#line 138 "src/parser_scan.re" + { NEWTOKEN(PSI_T_COMMA); goto start; } +#line 371 "src/parser_scan.c" +yy32: + ++cur; +#line 155 "src/parser_scan.re" + { NEWTOKEN(PSI_T_MINUS); goto start; } +#line 376 "src/parser_scan.c" +yy34: + yyaccept = 0; + yych = *(mrk = ++cur); + switch (yych) { + case '.': goto yy113; + case '0': + case '1': + case '2': + case '3': + case '4': + case '5': + case '6': + case '7': + case '8': + case '9': goto yy115; + default: goto yy35; + } +yy35: +#line 166 "src/parser_scan.re" + { NEWTOKEN(PSI_T_PERIOD); goto start; } +#line 397 "src/parser_scan.c" +yy36: + yych = *++cur; + switch (yych) { + case '*': goto yy118; + case '/': goto yy120; + default: goto yy37; + } +yy37: +#line 156 "src/parser_scan.re" + { NEWTOKEN(PSI_T_SLASH); goto start; } +#line 408 "src/parser_scan.c" +yy38: + yyaccept = 1; + yych = *(mrk = ++cur); + switch (yych) { + case '.': goto yy122; + case 'E': + case 'e': goto yy126; + case 'X': + case 'x': goto yy131; + default: goto yy125; + } +yy39: +#line 110 "src/parser_scan.re" + { NEWTOKEN(PSI_T_NUMBER); token->flags = PSI_NUMBER_INT; goto start; } +#line 423 "src/parser_scan.c" +yy40: + yyaccept = 1; + mrk = ++cur; + if ((lim - cur) < 3) CHECKEOF();; + yych = *cur; + switch (yych) { + case '.': goto yy122; + case '0': + case '1': + case '2': + case '3': + case '4': + case '5': + case '6': + case '7': + case '8': + case '9': goto yy40; + case 'E': + case 'e': goto yy126; + case 'L': + case 'l': goto yy127; + case 'U': + case 'u': goto yy129; + default: goto yy39; + } +yy42: + ++cur; +#line 139 "src/parser_scan.re" + { NEWTOKEN(PSI_T_COLON); goto start; } +#line 453 "src/parser_scan.c" +yy44: + ++cur; +#line 137 "src/parser_scan.re" + { NEWTOKEN(PSI_T_EOS); goto start; } +#line 458 "src/parser_scan.c" +yy46: + yyaccept = 2; + yych = *(mrk = ++cur); + switch (yych) { + case '-': + case '.': + case '/': + case '0': + case '1': + case '2': + case '3': + case '4': + case '5': + case '6': + case '7': + case '8': + case '9': + case 'A': + case 'B': + case 'C': + case 'D': + case 'E': + case 'F': + case 'G': + case 'H': + case 'I': + case 'J': + case 'K': + case 'L': + case 'M': + case 'N': + case 'O': + case 'P': + case 'Q': + case 'R': + case 'S': + case 'T': + case 'U': + case 'V': + case 'W': + case 'X': + case 'Y': + case 'Z': + case '_': + case 'a': + case 'b': + case 'c': + case 'd': + case 'e': + case 'f': + case 'g': + case 'h': + case 'i': + case 'j': + case 'k': + case 'l': + case 'm': + case 'n': + case 'o': + case 'p': + case 'q': + case 'r': + case 's': + case 't': + case 'u': + case 'v': + case 'w': + case 'x': + case 'y': + case 'z': goto yy132; + case '<': goto yy134; + case '=': goto yy136; + default: goto yy47; + } +yy47: +#line 164 "src/parser_scan.re" + { NEWTOKEN(PSI_T_LCHEVR); goto start; } +#line 536 "src/parser_scan.c" +yy48: + yych = *++cur; + switch (yych) { + case '=': goto yy138; + default: goto yy49; + } +yy49: +#line 148 "src/parser_scan.re" + { NEWTOKEN(PSI_T_EQUALS); goto start; } +#line 546 "src/parser_scan.c" +yy50: + yych = *++cur; + switch (yych) { + case '=': goto yy140; + case '>': goto yy142; + default: goto yy51; + } +yy51: +#line 165 "src/parser_scan.re" + { NEWTOKEN(PSI_T_RCHEVR); goto start; } +#line 557 "src/parser_scan.c" +yy52: + ++cur; +#line 168 "src/parser_scan.re" + { NEWTOKEN(PSI_T_IIF); goto start; } +#line 562 "src/parser_scan.c" +yy54: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'R': + case 'r': goto yy144; + case 'S': + case 's': goto yy145; + default: goto yy62; + } +yy55: +#line 243 "src/parser_scan.re" + { NEWTOKEN(PSI_T_NAME); goto start; } +#line 576 "src/parser_scan.c" +yy56: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'O': + case 'o': goto yy148; + default: goto yy62; + } +yy57: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'A': + case 'a': goto yy149; + case 'O': + case 'o': goto yy150; + default: goto yy62; + } +yy58: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'E': + case 'e': goto yy151; + default: goto yy62; + } +yy59: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'L': + case 'l': goto yy152; + case 'N': + case 'n': goto yy153; + case 'R': + case 'r': goto yy154; + default: goto yy62; + } +yy60: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'A': + case 'a': goto yy155; + case 'L': + case 'l': goto yy156; + case 'R': + case 'r': goto yy157; + case 'U': + case 'u': goto yy158; + default: goto yy62; + } +yy61: + yyaccept = 3; + mrk = ++cur; + if (lim <= cur) CHECKEOF();; + yych = *cur; +yy62: + switch (yych) { + case 0x00: + case 0x01: + case 0x02: + case 0x03: + case 0x04: + case 0x05: + case 0x06: + case 0x07: + case 0x08: + case '\t': + case '\n': + case '\v': + case '\f': + case '\r': + case 0x0E: + case 0x0F: + case 0x10: + case 0x11: + case 0x12: + case 0x13: + case 0x14: + case 0x15: + case 0x16: + case 0x17: + case 0x18: + case 0x19: + case 0x1A: + case 0x1B: + case 0x1C: + case 0x1D: + case 0x1E: + case 0x1F: + case ' ': + case '!': + case '"': + case '#': + case '$': + case '%': + case '&': + case '\'': + case '(': + case ')': + case '*': + case '+': + case ',': + case '-': + case '.': + case '/': + case ':': + case ';': + case '<': + case '=': + case '>': + case '?': + case '@': + case '[': + case ']': + case '^': + case '`': + case '{': + case '|': + case '}': + case '~': + case 0x7F: goto yy55; + case '\\': goto yy147; + default: goto yy61; + } +yy63: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'F': + case 'f': goto yy159; + case 'N': + case 'n': goto yy161; + default: goto yy62; + } +yy64: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case '"': + case '\'': goto yy162; + case 'E': + case 'e': goto yy164; + case 'I': + case 'i': goto yy165; + default: goto yy62; + } +yy65: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'I': + case 'i': goto yy166; + default: goto yy62; + } +yy66: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'U': + case 'u': goto yy167; + default: goto yy62; + } +yy67: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'B': + case 'b': goto yy168; + default: goto yy62; + } +yy68: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'A': + case 'a': goto yy169; + case 'O': + case 'o': goto yy170; + case 'R': + case 'r': goto yy171; + default: goto yy62; + } +yy69: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'E': + case 'e': goto yy172; + default: goto yy62; + } +yy70: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'E': + case 'e': goto yy173; + case 'T': + case 't': goto yy174; + default: goto yy62; + } +yy71: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'E': + case 'e': goto yy175; + case 'O': + case 'o': goto yy176; + case 'R': + case 'r': goto yy177; + default: goto yy62; + } +yy72: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case '"': + case '\'': goto yy178; + case 'N': + case 'n': goto yy180; + default: goto yy62; + } +yy73: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'A': + case 'a': goto yy181; + default: goto yy62; + } +yy74: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'V': + case 'v': goto yy182; + default: goto yy62; + } +yy75: + ++cur; +#line 142 "src/parser_scan.re" + { NEWTOKEN(PSI_T_LBRACKET); goto start; } +#line 821 "src/parser_scan.c" +yy77: + yych = *++cur; + switch (yych) { + case 0x00: + case 0x01: + case 0x02: + case 0x03: + case 0x04: + case 0x05: + case 0x06: + case 0x07: + case 0x08: + case '\t': + case '\n': + case '\v': + case '\f': + case '\r': + case 0x0E: + case 0x0F: + case 0x10: + case 0x11: + case 0x12: + case 0x13: + case 0x14: + case 0x15: + case 0x16: + case 0x17: + case 0x18: + case 0x19: + case 0x1A: + case 0x1B: + case 0x1C: + case 0x1D: + case 0x1E: + case 0x1F: + case ' ': + case '!': + case '"': + case '#': + case '$': + case '%': + case '&': + case '\'': + case '(': + case ')': + case '*': + case '+': + case ',': + case '-': + case '.': + case '/': + case '0': + case '1': + case '2': + case '3': + case '4': + case '5': + case '6': + case '7': + case '8': + case '9': + case ':': + case ';': + case '<': + case '=': + case '>': + case '?': + case '@': + case '[': + case '\\': + case ']': + case '^': + case '`': + case '{': + case '|': + case '}': + case '~': + case 0x7F: goto yy78; + default: goto yy183; + } +yy78: +#line 157 "src/parser_scan.re" + { NEWTOKEN(PSI_T_BSLASH); goto start; } +#line 905 "src/parser_scan.c" +yy79: + ++cur; +#line 143 "src/parser_scan.re" + { NEWTOKEN(PSI_T_RBRACKET); goto start; } +#line 910 "src/parser_scan.c" +yy81: + ++cur; +#line 159 "src/parser_scan.re" + { NEWTOKEN(PSI_T_CARET); goto start; } +#line 915 "src/parser_scan.c" +yy83: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case '_': goto yy186; + default: goto yy62; + } +yy84: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'O': goto yy148; + case 'o': goto yy187; + default: goto yy62; + } +yy85: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'A': + case 'a': goto yy149; + case 'O': goto yy150; + case 'h': goto yy188; + case 'o': goto yy189; + default: goto yy62; + } +yy86: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'E': + case 'e': goto yy151; + case 'o': goto yy190; + default: goto yy62; + } +yy87: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'L': + case 'l': goto yy152; + case 'N': goto yy153; + case 'R': + case 'r': goto yy154; + case 'n': goto yy191; + default: goto yy62; + } +yy88: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'A': + case 'a': goto yy155; + case 'L': goto yy156; + case 'R': + case 'r': goto yy157; + case 'U': + case 'u': goto yy158; + case 'l': goto yy192; + default: goto yy62; + } +yy89: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'F': + case 'f': goto yy159; + case 'N': goto yy161; + case 'n': goto yy193; + default: goto yy62; + } +yy90: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'E': + case 'e': goto yy164; + case 'I': goto yy165; + case 'i': goto yy194; + case 'o': goto yy195; + default: goto yy62; + } +yy91: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'A': + case 'a': goto yy169; + case 'O': + case 'o': goto yy170; + case 'R': goto yy171; + case 'r': goto yy196; + default: goto yy62; + } +yy92: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'E': + case 'e': goto yy173; + case 'T': goto yy174; + case 'h': goto yy197; + case 'i': goto yy198; + case 't': goto yy199; + default: goto yy62; + } +yy93: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'E': + case 'e': goto yy175; + case 'O': + case 'o': goto yy176; + case 'R': + case 'r': goto yy177; + case 'y': goto yy200; + default: goto yy62; + } +yy94: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case '"': + case '\'': goto yy201; + case '8': goto yy203; + case 'N': goto yy180; + case 'n': goto yy204; + default: goto yy62; + } +yy95: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'o': goto yy205; + default: goto yy62; + } +yy96: + ++cur; +#line 140 "src/parser_scan.re" + { NEWTOKEN(PSI_T_LBRACE); goto start; } +#line 1057 "src/parser_scan.c" +yy98: + yych = *++cur; + switch (yych) { + case '|': goto yy206; + default: goto yy99; + } +yy99: +#line 158 "src/parser_scan.re" + { NEWTOKEN(PSI_T_PIPE); goto start; } +#line 1067 "src/parser_scan.c" +yy100: + ++cur; +#line 141 "src/parser_scan.re" + { NEWTOKEN(PSI_T_RBRACE); goto start; } +#line 1072 "src/parser_scan.c" +yy102: + ++cur; +#line 150 "src/parser_scan.re" + { NEWTOKEN(PSI_T_TILDE); goto start; } +#line 1077 "src/parser_scan.c" +yy104: + ++cur; +#line 144 "src/parser_scan.re" + { NEWTOKEN(PSI_T_CMP_NE); goto start; } +#line 1082 "src/parser_scan.c" +yy106: + ++cur; +#line 133 "src/parser_scan.re" + { NEWTOKEN(PSI_T_CPP_PASTE); goto start; } +#line 1087 "src/parser_scan.c" +yy108: + ++cur; + if (lim <= cur) CHECKEOF();; + yych = *cur; + switch (yych) { + case 0x00: + case 0x01: + case 0x02: + case 0x03: + case 0x04: + case 0x05: + case 0x06: + case 0x07: + case 0x08: + case '\t': + case '\n': + case '\v': + case '\f': + case '\r': + case 0x0E: + case 0x0F: + case 0x10: + case 0x11: + case 0x12: + case 0x13: + case 0x14: + case 0x15: + case 0x16: + case 0x17: + case 0x18: + case 0x19: + case 0x1A: + case 0x1B: + case 0x1C: + case 0x1D: + case 0x1E: + case 0x1F: + case ' ': + case '!': + case '"': + case '#': + case '$': + case '%': + case '&': + case '\'': + case '(': + case ')': + case '*': + case '+': + case ',': + case '-': + case '.': + case '/': + case ':': + case ';': + case '<': + case '=': + case '>': + case '?': + case '@': + case '[': + case '\\': + case ']': + case '^': + case '`': + case '{': + case '|': + case '}': + case '~': + case 0x7F: goto yy110; + default: goto yy108; + } +yy110: +#line 245 "src/parser_scan.re" + { NEWTOKEN(PSI_T_DOLLAR_NAME); goto start; } +#line 1163 "src/parser_scan.c" +yy111: + ++cur; +#line 146 "src/parser_scan.re" + { NEWTOKEN(PSI_T_AND); goto start; } +#line 1168 "src/parser_scan.c" +yy113: + yych = *++cur; + switch (yych) { + case '.': goto yy208; + default: goto yy114; + } +yy114: + cur = mrk; + switch (yyaccept) { + case 0: goto yy35; + case 1: goto yy39; + case 2: goto yy47; + case 3: goto yy55; + case 4: goto yy117; + case 5: goto yy128; + case 6: goto yy146; + case 7: goto yy160; + case 8: goto yy185; + case 9: goto yy242; + case 10: goto yy244; + case 11: goto yy253; + case 12: goto yy274; + case 13: goto yy306; + case 14: goto yy308; + case 15: goto yy314; + case 16: goto yy322; + case 17: goto yy334; + case 18: goto yy342; + case 19: goto yy346; + case 20: goto yy353; + case 21: goto yy355; + case 22: goto yy359; + case 23: goto yy363; + case 24: goto yy365; + case 25: goto yy375; + case 26: goto yy378; + case 27: goto yy385; + case 28: goto yy388; + case 29: goto yy390; + case 30: goto yy392; + case 31: goto yy396; + case 32: goto yy401; + case 33: goto yy419; + case 34: goto yy422; + case 35: goto yy427; + case 36: goto yy430; + case 37: goto yy434; + case 38: goto yy440; + case 39: goto yy444; + case 40: goto yy449; + case 41: goto yy451; + case 42: goto yy455; + case 43: goto yy458; + case 44: goto yy460; + case 45: goto yy462; + case 46: goto yy467; + case 47: goto yy469; + case 48: goto yy471; + case 49: goto yy473; + case 50: goto yy475; + case 51: goto yy480; + case 52: goto yy489; + case 53: goto yy491; + case 54: goto yy493; + case 55: goto yy495; + case 56: goto yy497; + case 57: goto yy499; + case 58: goto yy504; + case 59: goto yy508; + case 60: goto yy512; + case 61: goto yy514; + case 62: goto yy519; + case 63: goto yy524; + case 64: goto yy532; + case 65: goto yy536; + case 66: goto yy538; + case 67: goto yy540; + case 68: goto yy542; + case 69: goto yy547; + case 70: goto yy549; + case 71: goto yy558; + case 72: goto yy560; + case 73: goto yy565; + case 74: goto yy567; + case 75: goto yy575; + case 76: goto yy579; + case 77: goto yy583; + case 78: goto yy587; + case 79: goto yy589; + default: goto yy594; + } +yy115: + yyaccept = 4; + mrk = ++cur; + if ((lim - cur) < 2) CHECKEOF();; + yych = *cur; + switch (yych) { + case '0': + case '1': + case '2': + case '3': + case '4': + case '5': + case '6': + case '7': + case '8': + case '9': goto yy115; + case 'D': + case 'd': goto yy210; + case 'F': + case 'f': goto yy211; + case 'L': + case 'l': goto yy213; + default: goto yy117; + } +yy117: +#line 116 "src/parser_scan.re" + { NEWTOKEN(PSI_T_NUMBER); token->flags = PSI_NUMBER_FLT; goto start; } +#line 1287 "src/parser_scan.c" +yy118: + ++cur; +#line 130 "src/parser_scan.re" + { goto comment; } +#line 1292 "src/parser_scan.c" +yy120: + ++cur; +#line 131 "src/parser_scan.re" + { goto comment_sl; } +#line 1297 "src/parser_scan.c" +yy122: + yyaccept = 4; + mrk = ++cur; + if ((lim - cur) < 3) CHECKEOF();; + yych = *cur; + switch (yych) { + case '0': + case '1': + case '2': + case '3': + case '4': + case '5': + case '6': + case '7': + case '8': + case '9': goto yy122; + case 'D': + case 'd': goto yy210; + case 'E': + case 'e': goto yy126; + case 'F': + case 'f': goto yy211; + case 'L': + case 'l': goto yy213; + default: goto yy117; + } +yy124: + ++cur; + if ((lim - cur) < 3) CHECKEOF();; + yych = *cur; +yy125: + switch (yych) { + case '0': + case '1': + case '2': + case '3': + case '4': + case '5': + case '6': + case '7': goto yy124; + case 'L': + case 'l': goto yy127; + case 'U': + case 'u': goto yy129; + default: goto yy39; + } +yy126: + yych = *++cur; + switch (yych) { + case '+': + case '-': goto yy215; + case '0': + case '1': + case '2': + case '3': + case '4': + case '5': + case '6': + case '7': + case '8': + case '9': goto yy115; + default: goto yy114; + } +yy127: + yyaccept = 5; + yych = *(mrk = ++cur); + switch (yych) { + case 'L': + case 'l': goto yy216; + case 'U': + case 'u': goto yy217; + default: goto yy128; + } +yy128: + cur -= 1; +#line 112 "src/parser_scan.re" + { NEWTOKEN(PSI_T_NUMBER); token->flags = PSI_NUMBER_INT | PSI_NUMBER_L; cur += 1; goto start; } +#line 1375 "src/parser_scan.c" +yy129: + yych = *++cur; + switch (yych) { + case 'L': + case 'l': goto yy219; + default: goto yy130; + } +yy130: + cur -= 1; +#line 111 "src/parser_scan.re" + { NEWTOKEN(PSI_T_NUMBER); token->flags = PSI_NUMBER_INT | PSI_NUMBER_U; cur += 1; goto start; } +#line 1387 "src/parser_scan.c" +yy131: + yych = *++cur; + switch (yych) { + case '0': + case '1': + case '2': + case '3': + case '4': + case '5': + case '6': + case '7': + case '8': + case '9': + case 'A': + case 'B': + case 'C': + case 'D': + case 'E': + case 'F': + case 'a': + case 'b': + case 'c': + case 'd': + case 'e': + case 'f': goto yy220; + default: goto yy114; + } +yy132: + ++cur; + if (lim <= cur) CHECKEOF();; + yych = *cur; + switch (yych) { + case '-': + case '.': + case '/': + case '0': + case '1': + case '2': + case '3': + case '4': + case '5': + case '6': + case '7': + case '8': + case '9': + case 'A': + case 'B': + case 'C': + case 'D': + case 'E': + case 'F': + case 'G': + case 'H': + case 'I': + case 'J': + case 'K': + case 'L': + case 'M': + case 'N': + case 'O': + case 'P': + case 'Q': + case 'R': + case 'S': + case 'T': + case 'U': + case 'V': + case 'W': + case 'X': + case 'Y': + case 'Z': + case '_': + case 'a': + case 'b': + case 'c': + case 'd': + case 'e': + case 'f': + case 'g': + case 'h': + case 'i': + case 'j': + case 'k': + case 'l': + case 'm': + case 'n': + case 'o': + case 'p': + case 'q': + case 'r': + case 's': + case 't': + case 'u': + case 'v': + case 'w': + case 'x': + case 'y': + case 'z': goto yy132; + case '>': goto yy222; + default: goto yy114; + } +yy134: + ++cur; +#line 160 "src/parser_scan.re" + { NEWTOKEN(PSI_T_LSHIFT); goto start; } +#line 1493 "src/parser_scan.c" +yy136: + ++cur; +#line 162 "src/parser_scan.re" + { NEWTOKEN(PSI_T_CMP_LE); goto start; } +#line 1498 "src/parser_scan.c" +yy138: + ++cur; +#line 145 "src/parser_scan.re" + { NEWTOKEN(PSI_T_CMP_EQ); goto start; } +#line 1503 "src/parser_scan.c" +yy140: + ++cur; +#line 163 "src/parser_scan.re" + { NEWTOKEN(PSI_T_CMP_GE); goto start; } +#line 1508 "src/parser_scan.c" +yy142: + ++cur; +#line 161 "src/parser_scan.re" + { NEWTOKEN(PSI_T_RSHIFT); goto start; } +#line 1513 "src/parser_scan.c" +yy144: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'R': + case 'r': goto yy224; + default: goto yy62; + } +yy145: + yyaccept = 6; + yych = *(mrk = ++cur); + switch (yych) { + case 0x00: + case 0x01: + case 0x02: + case 0x03: + case 0x04: + case 0x05: + case 0x06: + case 0x07: + case 0x08: + case '\t': + case '\n': + case '\v': + case '\f': + case '\r': + case 0x0E: + case 0x0F: + case 0x10: + case 0x11: + case 0x12: + case 0x13: + case 0x14: + case 0x15: + case 0x16: + case 0x17: + case 0x18: + case 0x19: + case 0x1A: + case 0x1B: + case 0x1C: + case 0x1D: + case 0x1E: + case 0x1F: + case ' ': + case '!': + case '"': + case '#': + case '$': + case '%': + case '&': + case '\'': + case '(': + case ')': + case '*': + case '+': + case ',': + case '-': + case '.': + case '/': + case ':': + case ';': + case '<': + case '=': + case '>': + case '?': + case '@': + case '[': + case ']': + case '^': + case '`': + case '{': + case '|': + case '}': + case '~': + case 0x7F: goto yy146; + case '\\': goto yy147; + default: goto yy61; + } +yy146: +#line 223 "src/parser_scan.re" + { NEWTOKEN(PSI_T_AS); goto start; } +#line 1596 "src/parser_scan.c" +yy147: + ++cur; + if (lim <= cur) CHECKEOF();; + yych = *cur; + switch (yych) { + case 0x00: + case 0x01: + case 0x02: + case 0x03: + case 0x04: + case 0x05: + case 0x06: + case 0x07: + case 0x08: + case '\t': + case '\n': + case '\v': + case '\f': + case '\r': + case 0x0E: + case 0x0F: + case 0x10: + case 0x11: + case 0x12: + case 0x13: + case 0x14: + case 0x15: + case 0x16: + case 0x17: + case 0x18: + case 0x19: + case 0x1A: + case 0x1B: + case 0x1C: + case 0x1D: + case 0x1E: + case 0x1F: + case ' ': + case '!': + case '"': + case '#': + case '$': + case '%': + case '&': + case '\'': + case '(': + case ')': + case '*': + case '+': + case ',': + case '-': + case '.': + case '/': + case '0': + case '1': + case '2': + case '3': + case '4': + case '5': + case '6': + case '7': + case '8': + case '9': + case ':': + case ';': + case '<': + case '=': + case '>': + case '?': + case '@': + case '[': + case '\\': + case ']': + case '^': + case '`': + case '{': + case '|': + case '}': + case '~': + case 0x7F: goto yy114; + default: goto yy183; + } +yy148: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'O': + case 'o': goto yy225; + default: goto yy62; + } +yy149: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'L': + case 'l': goto yy226; + default: goto yy62; + } +yy150: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'U': + case 'u': goto yy227; + default: goto yy62; + } +yy151: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'F': + case 'f': goto yy228; + default: goto yy62; + } +yy152: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'I': + case 'i': goto yy229; + case 'S': + case 's': goto yy230; + default: goto yy62; + } +yy153: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'D': + case 'd': goto yy231; + default: goto yy62; + } +yy154: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'R': + case 'r': goto yy232; + default: goto yy62; + } +yy155: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'L': + case 'l': goto yy233; + default: goto yy62; + } +yy156: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'O': + case 'o': goto yy234; + default: goto yy62; + } +yy157: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'E': + case 'e': goto yy235; + default: goto yy62; + } +yy158: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'N': + case 'n': goto yy236; + default: goto yy62; + } +yy159: + yyaccept = 7; + yych = *(mrk = ++cur); + switch (yych) { + case 0x00: + case 0x01: + case 0x02: + case 0x03: + case 0x04: + case 0x05: + case 0x06: + case 0x07: + case 0x08: + case '\t': + case '\n': + case '\v': + case '\f': + case '\r': + case 0x0E: + case 0x0F: + case 0x10: + case 0x11: + case 0x12: + case 0x13: + case 0x14: + case 0x15: + case 0x16: + case 0x17: + case 0x18: + case 0x19: + case 0x1A: + case 0x1B: + case 0x1C: + case 0x1D: + case 0x1E: + case 0x1F: + case ' ': + case '!': + case '"': + case '#': + case '$': + case '%': + case '&': + case '\'': + case '(': + case ')': + case '*': + case '+': + case ',': + case '-': + case '.': + case '/': + case ':': + case ';': + case '<': + case '=': + case '>': + case '?': + case '@': + case '[': + case ']': + case '^': + case '`': + case '{': + case '|': + case '}': + case '~': + case 0x7F: goto yy160; + case 'D': + case 'd': goto yy237; + case 'N': + case 'n': goto yy238; + case '\\': goto yy147; + default: goto yy61; + } +yy160: +#line 193 "src/parser_scan.re" + { NEWTOKEN(PSI_T_IF); goto start; } +#line 1847 "src/parser_scan.c" +yy161: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'C': + case 'c': goto yy239; + case 'T': + case 't': goto yy240; + default: goto yy62; + } +yy162: + ++cur; + cur -= 1; +#line 128 "src/parser_scan.re" + { char_width = sizeof(wchar_t)/8; } +#line 1863 "src/parser_scan.c" +yy164: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'T': + case 't': goto yy241; + default: goto yy62; + } +yy165: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'B': + case 'b': goto yy243; + default: goto yy62; + } +yy166: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'X': + case 'x': goto yy245; + default: goto yy62; + } +yy167: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'L': + case 'l': goto yy246; + default: goto yy62; + } +yy168: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'J': + case 'j': goto yy247; + default: goto yy62; + } +yy169: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'T': + case 't': goto yy248; + default: goto yy62; + } +yy170: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'S': + case 's': goto yy249; + default: goto yy62; + } +yy171: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'E': + case 'e': goto yy250; + default: goto yy62; + } +yy172: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'T': + case 't': goto yy251; + default: goto yy62; + } +yy173: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'T': + case 't': goto yy252; + default: goto yy62; + } +yy174: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'A': + case 'a': goto yy254; + case 'R': + case 'r': goto yy255; + default: goto yy62; + } +yy175: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'M': + case 'm': goto yy256; + default: goto yy62; + } +yy176: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case '_': goto yy257; + default: goto yy62; + } +yy177: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'U': + case 'u': goto yy258; + default: goto yy62; + } +yy178: + ++cur; + cur -= 1; +#line 127 "src/parser_scan.re" + { char_width = 4; } +#line 1982 "src/parser_scan.c" +yy180: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'D': + case 'd': goto yy259; + default: goto yy62; + } +yy181: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'R': + case 'r': goto yy260; + default: goto yy62; + } +yy182: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'A': + case 'a': goto yy261; + default: goto yy62; + } +yy183: + yyaccept = 8; + mrk = ++cur; + if (lim <= cur) CHECKEOF();; + yych = *cur; + switch (yych) { + case 0x00: + case 0x01: + case 0x02: + case 0x03: + case 0x04: + case 0x05: + case 0x06: + case 0x07: + case 0x08: + case '\t': + case '\n': + case '\v': + case '\f': + case '\r': + case 0x0E: + case 0x0F: + case 0x10: + case 0x11: + case 0x12: + case 0x13: + case 0x14: + case 0x15: + case 0x16: + case 0x17: + case 0x18: + case 0x19: + case 0x1A: + case 0x1B: + case 0x1C: + case 0x1D: + case 0x1E: + case 0x1F: + case ' ': + case '!': + case '"': + case '#': + case '$': + case '%': + case '&': + case '\'': + case '(': + case ')': + case '*': + case '+': + case ',': + case '-': + case '.': + case '/': + case ':': + case ';': + case '<': + case '=': + case '>': + case '?': + case '@': + case '[': + case ']': + case '^': + case '`': + case '{': + case '|': + case '}': + case '~': + case 0x7F: goto yy185; + case '\\': goto yy147; + default: goto yy183; + } +yy185: +#line 244 "src/parser_scan.re" + { NEWTOKEN(PSI_T_NSNAME); goto start; } +#line 2083 "src/parser_scan.c" +yy186: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'a': goto yy262; + case 'e': goto yy263; + case 'i': goto yy264; + case 'r': goto yy265; + default: goto yy62; + } +yy187: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'O': goto yy225; + case 'o': goto yy266; + default: goto yy62; + } +yy188: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'a': goto yy267; + default: goto yy62; + } +yy189: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'U': + case 'u': goto yy227; + case 'n': goto yy268; + default: goto yy62; + } +yy190: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'u': goto yy269; + default: goto yy62; + } +yy191: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'D': + case 'd': goto yy231; + case 'u': goto yy270; + default: goto yy62; + } +yy192: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'O': goto yy234; + case 'o': goto yy271; + default: goto yy62; + } +yy193: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'C': + case 'c': goto yy239; + case 'T': goto yy240; + case 'l': goto yy272; + case 't': goto yy273; + default: goto yy62; + } +yy194: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'B': + case 'b': goto yy243; + case 'n': goto yy275; + default: goto yy62; + } +yy195: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'n': goto yy276; + default: goto yy62; + } +yy196: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'E': + case 'e': goto yy250; + case 'a': goto yy277; + default: goto yy62; + } +yy197: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'o': goto yy278; + default: goto yy62; + } +yy198: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'g': goto yy279; + case 'z': goto yy280; + default: goto yy62; + } +yy199: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'A': + case 'a': goto yy254; + case 'R': goto yy255; + case 'r': goto yy281; + default: goto yy62; + } +yy200: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'p': goto yy282; + default: goto yy62; + } +yy201: + ++cur; + cur -= 1; +#line 126 "src/parser_scan.re" + { char_width = 2; } +#line 2215 "src/parser_scan.c" +yy203: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case '"': goto yy283; + default: goto yy62; + } +yy204: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'D': + case 'd': goto yy259; + case 'i': goto yy285; + case 's': goto yy286; + default: goto yy62; + } +yy205: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'i': goto yy287; + case 'l': goto yy288; + default: goto yy62; + } +yy206: + ++cur; +#line 147 "src/parser_scan.re" + { NEWTOKEN(PSI_T_OR); goto start; } +#line 2245 "src/parser_scan.c" +yy208: + ++cur; +#line 167 "src/parser_scan.re" + { NEWTOKEN(PSI_T_ELLIPSIS); goto start; } +#line 2250 "src/parser_scan.c" +yy210: + yych = *++cur; + switch (yych) { + case 'D': + case 'd': goto yy289; + case 'F': + case 'f': goto yy291; + case 'L': + case 'l': goto yy293; + default: goto yy114; + } +yy211: + ++cur; + cur -= 1; +#line 117 "src/parser_scan.re" + { NEWTOKEN(PSI_T_NUMBER); token->flags = PSI_NUMBER_FLT | PSI_NUMBER_F; cur += 1; goto start; } +#line 2267 "src/parser_scan.c" +yy213: + ++cur; + cur -= 1; +#line 118 "src/parser_scan.re" + { NEWTOKEN(PSI_T_NUMBER); token->flags = PSI_NUMBER_FLT | PSI_NUMBER_L; cur += 1; goto start; } +#line 2273 "src/parser_scan.c" +yy215: + yych = *++cur; + switch (yych) { + case '0': + case '1': + case '2': + case '3': + case '4': + case '5': + case '6': + case '7': + case '8': + case '9': goto yy115; + default: goto yy114; + } +yy216: + yych = *++cur; + switch (yych) { + case 'U': + case 'u': goto yy295; + default: goto yy114; + } +yy217: + ++cur; +yy218: + cur -= 2; +#line 113 "src/parser_scan.re" + { NEWTOKEN(PSI_T_NUMBER); token->flags = PSI_NUMBER_INT | PSI_NUMBER_UL; cur += 2; goto start; } +#line 2302 "src/parser_scan.c" +yy219: + yych = *++cur; + switch (yych) { + case 'L': + case 'l': goto yy295; + default: goto yy218; + } +yy220: + yyaccept = 1; + mrk = ++cur; + if ((lim - cur) < 3) CHECKEOF();; + yych = *cur; + switch (yych) { + case '.': goto yy297; + case '0': + case '1': + case '2': + case '3': + case '4': + case '5': + case '6': + case '7': + case '8': + case '9': + case 'A': + case 'B': + case 'C': + case 'D': + case 'E': + case 'F': + case 'a': + case 'b': + case 'c': + case 'd': + case 'e': + case 'f': goto yy220; + case 'L': + case 'l': goto yy127; + case 'P': + case 'p': goto yy126; + case 'U': + case 'u': goto yy129; + default: goto yy39; + } +yy222: + ++cur; +#line 246 "src/parser_scan.re" + { tok += 1; cur -= 1; NEWTOKEN(PSI_T_CPP_HEADER); cur += 1; goto start; } +#line 2351 "src/parser_scan.c" +yy224: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'A': + case 'a': goto yy299; + case 'V': + case 'v': goto yy300; + default: goto yy62; + } +yy225: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'L': + case 'l': goto yy301; + default: goto yy62; + } +yy226: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'L': + case 'l': goto yy302; + default: goto yy62; + } +yy227: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'N': + case 'n': goto yy303; + default: goto yy62; + } +yy228: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'I': + case 'i': goto yy304; + default: goto yy62; + } +yy229: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'F': + case 'f': goto yy305; + default: goto yy62; + } +yy230: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'E': + case 'e': goto yy307; + default: goto yy62; + } +yy231: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'I': + case 'i': goto yy309; + default: goto yy62; + } +yy232: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'O': + case 'o': goto yy310; + default: goto yy62; + } +yy233: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'S': + case 's': goto yy311; + default: goto yy62; + } +yy234: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'A': + case 'a': goto yy312; + default: goto yy62; + } +yy235: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'E': + case 'e': goto yy313; + default: goto yy62; + } +yy236: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'C': + case 'c': goto yy315; + default: goto yy62; + } +yy237: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'E': + case 'e': goto yy316; + default: goto yy62; + } +yy238: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'D': + case 'd': goto yy317; + default: goto yy62; + } +yy239: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'L': + case 'l': goto yy318; + default: goto yy62; + } +yy240: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'V': + case 'v': goto yy319; + default: goto yy62; + } +yy241: + yyaccept = 9; + yych = *(mrk = ++cur); + switch (yych) { + case 0x00: + case 0x01: + case 0x02: + case 0x03: + case 0x04: + case 0x05: + case 0x06: + case 0x07: + case 0x08: + case '\t': + case '\n': + case '\v': + case '\f': + case '\r': + case 0x0E: + case 0x0F: + case 0x10: + case 0x11: + case 0x12: + case 0x13: + case 0x14: + case 0x15: + case 0x16: + case 0x17: + case 0x18: + case 0x19: + case 0x1A: + case 0x1B: + case 0x1C: + case 0x1D: + case 0x1E: + case 0x1F: + case ' ': + case '!': + case '"': + case '#': + case '$': + case '%': + case '&': + case '\'': + case '(': + case ')': + case '*': + case '+': + case ',': + case '-': + case '.': + case '/': + case ':': + case ';': + case '<': + case '=': + case '>': + case '?': + case '@': + case '[': + case ']': + case '^': + case '`': + case '{': + case '|': + case '}': + case '~': + case 0x7F: goto yy242; + case '\\': goto yy147; + default: goto yy61; + } +yy242: +#line 218 "src/parser_scan.re" + { NEWTOKEN(PSI_T_LET); goto start; } +#line 2564 "src/parser_scan.c" +yy243: + yyaccept = 10; + yych = *(mrk = ++cur); + switch (yych) { + case 0x00: + case 0x01: + case 0x02: + case 0x03: + case 0x04: + case 0x05: + case 0x06: + case 0x07: + case 0x08: + case '\t': + case '\n': + case '\v': + case '\f': + case '\r': + case 0x0E: + case 0x0F: + case 0x10: + case 0x11: + case 0x12: + case 0x13: + case 0x14: + case 0x15: + case 0x16: + case 0x17: + case 0x18: + case 0x19: + case 0x1A: + case 0x1B: + case 0x1C: + case 0x1D: + case 0x1E: + case 0x1F: + case ' ': + case '!': + case '"': + case '#': + case '$': + case '%': + case '&': + case '\'': + case '(': + case ')': + case '*': + case '+': + case ',': + case '-': + case '.': + case '/': + case ':': + case ';': + case '<': + case '=': + case '>': + case '?': + case '@': + case '[': + case ']': + case '^': + case '`': + case '{': + case '|': + case '}': + case '~': + case 0x7F: goto yy244; + case '\\': goto yy147; + default: goto yy61; + } +yy244: +#line 217 "src/parser_scan.re" + { NEWTOKEN(PSI_T_LIB); goto start; } +#line 2639 "src/parser_scan.c" +yy245: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'E': + case 'e': goto yy320; + default: goto yy62; + } +yy246: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'L': + case 'l': goto yy321; + default: goto yy62; + } +yy247: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'E': + case 'e': goto yy323; + case 'V': + case 'v': goto yy324; + default: goto yy62; + } +yy248: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'H': + case 'h': goto yy325; + default: goto yy62; + } +yy249: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'T': + case 't': goto yy326; + default: goto yy62; + } +yy250: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case '_': goto yy327; + default: goto yy62; + } +yy251: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'U': + case 'u': goto yy328; + default: goto yy62; + } +yy252: + yyaccept = 11; + yych = *(mrk = ++cur); + switch (yych) { + case 0x00: + case 0x01: + case 0x02: + case 0x03: + case 0x04: + case 0x05: + case 0x06: + case 0x07: + case 0x08: + case '\t': + case '\n': + case '\v': + case '\f': + case '\r': + case 0x0E: + case 0x0F: + case 0x10: + case 0x11: + case 0x12: + case 0x13: + case 0x14: + case 0x15: + case 0x16: + case 0x17: + case 0x18: + case 0x19: + case 0x1A: + case 0x1B: + case 0x1C: + case 0x1D: + case 0x1E: + case 0x1F: + case ' ': + case '!': + case '"': + case '#': + case '$': + case '%': + case '&': + case '\'': + case '(': + case ')': + case '*': + case '+': + case ',': + case '-': + case '.': + case '/': + case ':': + case ';': + case '<': + case '=': + case '>': + case '?': + case '@': + case '[': + case ']': + case '^': + case '`': + case '{': + case '|': + case '}': + case '~': + case 0x7F: goto yy253; + case '\\': goto yy147; + default: goto yy61; + } +yy253: +#line 219 "src/parser_scan.re" + { NEWTOKEN(PSI_T_SET); goto start; } +#line 2771 "src/parser_scan.c" +yy254: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'T': + case 't': goto yy329; + default: goto yy62; + } +yy255: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'I': + case 'i': goto yy330; + case 'L': + case 'l': goto yy331; + case 'V': + case 'v': goto yy332; + default: goto yy62; + } +yy256: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'P': + case 'p': goto yy333; + default: goto yy62; + } +yy257: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'A': + case 'a': goto yy335; + case 'B': + case 'b': goto yy336; + case 'F': + case 'f': goto yy337; + case 'I': + case 'i': goto yy338; + case 'O': + case 'o': goto yy339; + case 'S': + case 's': goto yy340; + default: goto yy62; + } +yy258: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'E': + case 'e': goto yy341; + default: goto yy62; + } +yy259: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'E': + case 'e': goto yy343; + default: goto yy62; + } +yy260: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'N': + case 'n': goto yy344; + default: goto yy62; + } +yy261: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'L': + case 'l': goto yy345; + default: goto yy62; + } +yy262: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 's': goto yy347; + case 't': goto yy348; + default: goto yy62; + } +yy263: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'x': goto yy349; + default: goto yy62; + } +yy264: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'n': goto yy350; + default: goto yy62; + } +yy265: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'e': goto yy351; + default: goto yy62; + } +yy266: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'L': goto yy301; + case 'l': goto yy352; + default: goto yy62; + } +yy267: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'r': goto yy354; + default: goto yy62; + } +yy268: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 's': goto yy356; + default: goto yy62; + } +yy269: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'b': goto yy357; + default: goto yy62; + } +yy270: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'm': goto yy358; + default: goto yy62; + } +yy271: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'A': goto yy312; + case 'a': goto yy360; + default: goto yy62; + } +yy272: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'i': goto yy361; + default: goto yy62; + } +yy273: + yyaccept = 12; + yych = *(mrk = ++cur); + switch (yych) { + case 0x00: + case 0x01: + case 0x02: + case 0x03: + case 0x04: + case 0x05: + case 0x06: + case 0x07: + case 0x08: + case '\t': + case '\n': + case '\v': + case '\f': + case '\r': + case 0x0E: + case 0x0F: + case 0x10: + case 0x11: + case 0x12: + case 0x13: + case 0x14: + case 0x15: + case 0x16: + case 0x17: + case 0x18: + case 0x19: + case 0x1A: + case 0x1B: + case 0x1C: + case 0x1D: + case 0x1E: + case 0x1F: + case ' ': + case '!': + case '"': + case '#': + case '$': + case '%': + case '&': + case '\'': + case '(': + case ')': + case '*': + case '+': + case ',': + case '-': + case '.': + case '/': + case ':': + case ';': + case '<': + case '=': + case '>': + case '?': + case '@': + case '[': + case ']': + case '^': + case '`': + case '{': + case '|': + case '}': + case '~': + case 0x7F: goto yy274; + case 'V': + case 'v': goto yy319; + case '\\': goto yy147; + default: goto yy61; + } +yy274: +#line 187 "src/parser_scan.re" + { NEWTOKEN(PSI_T_INT); goto start; } +#line 3006 "src/parser_scan.c" +yy275: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'e': goto yy362; + default: goto yy62; + } +yy276: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'g': goto yy364; + default: goto yy62; + } +yy277: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'g': goto yy366; + default: goto yy62; + } +yy278: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'r': goto yy367; + default: goto yy62; + } +yy279: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'n': goto yy368; + default: goto yy62; + } +yy280: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'e': goto yy369; + default: goto yy62; + } +yy281: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'I': + case 'i': goto yy330; + case 'L': + case 'l': goto yy331; + case 'V': + case 'v': goto yy332; + case 'u': goto yy370; + default: goto yy62; + } +yy282: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'e': goto yy371; + default: goto yy62; + } +yy283: + ++cur; + cur -= 1; +#line 125 "src/parser_scan.re" + { char_width = 1; } +#line 3074 "src/parser_scan.c" +yy285: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'o': goto yy372; + default: goto yy62; + } +yy286: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'i': goto yy373; + default: goto yy62; + } +yy287: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'd': goto yy374; + default: goto yy62; + } +yy288: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'a': goto yy376; + default: goto yy62; + } +yy289: + ++cur; + cur -= 2; +#line 120 "src/parser_scan.re" + { NEWTOKEN(PSI_T_NUMBER); token->flags = PSI_NUMBER_FLT | PSI_NUMBER_DD; cur += 2; goto start; } +#line 3108 "src/parser_scan.c" +yy291: + ++cur; + cur -= 2; +#line 119 "src/parser_scan.re" + { NEWTOKEN(PSI_T_NUMBER); token->flags = PSI_NUMBER_FLT | PSI_NUMBER_DF; cur += 2; goto start; } +#line 3114 "src/parser_scan.c" +yy293: + ++cur; + cur -= 2; +#line 121 "src/parser_scan.re" + { NEWTOKEN(PSI_T_NUMBER); token->flags = PSI_NUMBER_FLT | PSI_NUMBER_DL; cur += 2; goto start; } +#line 3120 "src/parser_scan.c" +yy295: + ++cur; + cur -= 3; +#line 114 "src/parser_scan.re" + { NEWTOKEN(PSI_T_NUMBER); token->flags = PSI_NUMBER_INT | PSI_NUMBER_ULL; cur += 3; goto start; } +#line 3126 "src/parser_scan.c" +yy297: + ++cur; + if ((lim - cur) < 3) CHECKEOF();; + yych = *cur; + switch (yych) { + case '0': + case '1': + case '2': + case '3': + case '4': + case '5': + case '6': + case '7': + case '8': + case '9': + case 'A': + case 'B': + case 'C': + case 'D': + case 'E': + case 'F': + case 'a': + case 'b': + case 'c': + case 'd': + case 'e': + case 'f': goto yy297; + case 'P': + case 'p': goto yy126; + default: goto yy114; + } +yy299: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'Y': + case 'y': goto yy377; + default: goto yy62; + } +yy300: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'A': + case 'a': goto yy379; + default: goto yy62; + } +yy301: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'V': + case 'v': goto yy380; + default: goto yy62; + } +yy302: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'A': + case 'a': goto yy381; + case 'B': + case 'b': goto yy382; + case 'O': + case 'o': goto yy383; + default: goto yy62; + } +yy303: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'T': + case 't': goto yy384; + default: goto yy62; + } +yy304: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'N': + case 'n': goto yy386; + default: goto yy62; + } +yy305: + yyaccept = 13; + yych = *(mrk = ++cur); + switch (yych) { + case 0x00: + case 0x01: + case 0x02: + case 0x03: + case 0x04: + case 0x05: + case 0x06: + case 0x07: + case 0x08: + case '\t': + case '\n': + case '\v': + case '\f': + case '\r': + case 0x0E: + case 0x0F: + case 0x10: + case 0x11: + case 0x12: + case 0x13: + case 0x14: + case 0x15: + case 0x16: + case 0x17: + case 0x18: + case 0x19: + case 0x1A: + case 0x1B: + case 0x1C: + case 0x1D: + case 0x1E: + case 0x1F: + case ' ': + case '!': + case '"': + case '#': + case '$': + case '%': + case '&': + case '\'': + case '(': + case ')': + case '*': + case '+': + case ',': + case '-': + case '.': + case '/': + case ':': + case ';': + case '<': + case '=': + case '>': + case '?': + case '@': + case '[': + case ']': + case '^': + case '`': + case '{': + case '|': + case '}': + case '~': + case 0x7F: goto yy306; + case '\\': goto yy147; + default: goto yy61; + } +yy306: +#line 197 "src/parser_scan.re" + { NEWTOKEN(PSI_T_ELIF); goto start; } +#line 3284 "src/parser_scan.c" +yy307: + yyaccept = 14; + yych = *(mrk = ++cur); + switch (yych) { + case 0x00: + case 0x01: + case 0x02: + case 0x03: + case 0x04: + case 0x05: + case 0x06: + case 0x07: + case 0x08: + case '\t': + case '\n': + case '\v': + case '\f': + case '\r': + case 0x0E: + case 0x0F: + case 0x10: + case 0x11: + case 0x12: + case 0x13: + case 0x14: + case 0x15: + case 0x16: + case 0x17: + case 0x18: + case 0x19: + case 0x1A: + case 0x1B: + case 0x1C: + case 0x1D: + case 0x1E: + case 0x1F: + case ' ': + case '!': + case '"': + case '#': + case '$': + case '%': + case '&': + case '\'': + case '(': + case ')': + case '*': + case '+': + case ',': + case '-': + case '.': + case '/': + case ':': + case ';': + case '<': + case '=': + case '>': + case '?': + case '@': + case '[': + case ']': + case '^': + case '`': + case '{': + case '|': + case '}': + case '~': + case 0x7F: goto yy308; + case '\\': goto yy147; + default: goto yy61; + } +yy308: +#line 196 "src/parser_scan.re" + { NEWTOKEN(PSI_T_ELSE); goto start; } +#line 3359 "src/parser_scan.c" +yy309: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'F': + case 'f': goto yy387; + default: goto yy62; + } +yy310: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'R': + case 'r': goto yy389; + default: goto yy62; + } +yy311: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'E': + case 'e': goto yy391; + default: goto yy62; + } +yy312: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'T': + case 't': goto yy393; + default: goto yy62; + } +yy313: + yyaccept = 15; + yych = *(mrk = ++cur); + switch (yych) { + case 0x00: + case 0x01: + case 0x02: + case 0x03: + case 0x04: + case 0x05: + case 0x06: + case 0x07: + case 0x08: + case '\t': + case '\n': + case '\v': + case '\f': + case '\r': + case 0x0E: + case 0x0F: + case 0x10: + case 0x11: + case 0x12: + case 0x13: + case 0x14: + case 0x15: + case 0x16: + case 0x17: + case 0x18: + case 0x19: + case 0x1A: + case 0x1B: + case 0x1C: + case 0x1D: + case 0x1E: + case 0x1F: + case ' ': + case '!': + case '"': + case '#': + case '$': + case '%': + case '&': + case '\'': + case '(': + case ')': + case '*': + case '+': + case ',': + case '-': + case '.': + case '/': + case ':': + case ';': + case '<': + case '=': + case '>': + case '?': + case '@': + case '[': + case ']': + case '^': + case '`': + case '{': + case '|': + case '}': + case '~': + case 0x7F: goto yy314; + case '\\': goto yy147; + default: goto yy61; + } +yy314: +#line 224 "src/parser_scan.re" + { NEWTOKEN(PSI_T_FREE); goto start; } +#line 3466 "src/parser_scan.c" +yy315: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'T': + case 't': goto yy394; + default: goto yy62; + } +yy316: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'F': + case 'f': goto yy395; + default: goto yy62; + } +yy317: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'E': + case 'e': goto yy397; + default: goto yy62; + } +yy318: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'U': + case 'u': goto yy398; + default: goto yy62; + } +yy319: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'A': + case 'a': goto yy399; + default: goto yy62; + } +yy320: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'D': + case 'd': goto yy400; + default: goto yy62; + } +yy321: + yyaccept = 16; + yych = *(mrk = ++cur); + switch (yych) { + case 0x00: + case 0x01: + case 0x02: + case 0x03: + case 0x04: + case 0x05: + case 0x06: + case 0x07: + case 0x08: + case '\t': + case '\n': + case '\v': + case '\f': + case '\r': + case 0x0E: + case 0x0F: + case 0x10: + case 0x11: + case 0x12: + case 0x13: + case 0x14: + case 0x15: + case 0x16: + case 0x17: + case 0x18: + case 0x19: + case 0x1A: + case 0x1B: + case 0x1C: + case 0x1D: + case 0x1E: + case 0x1F: + case ' ': + case '!': + case '"': + case '#': + case '$': + case '%': + case '&': + case '\'': + case '(': + case ')': + case '*': + case '+': + case ',': + case '-': + case '.': + case '/': + case ':': + case ';': + case '<': + case '=': + case '>': + case '?': + case '@': + case '[': + case ']': + case '^': + case '`': + case '{': + case '|': + case '}': + case '~': + case 0x7F: goto yy322; + case '\\': goto yy147; + default: goto yy61; + } +yy322: +#line 208 "src/parser_scan.re" + { NEWTOKEN(PSI_T_NULL); goto start; } +#line 3589 "src/parser_scan.c" +yy323: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'C': + case 'c': goto yy402; + default: goto yy62; + } +yy324: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'A': + case 'a': goto yy403; + default: goto yy62; + } +yy325: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'V': + case 'v': goto yy404; + default: goto yy62; + } +yy326: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case '_': goto yy405; + default: goto yy62; + } +yy327: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'A': + case 'a': goto yy406; + default: goto yy62; + } +yy328: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'R': + case 'r': goto yy407; + default: goto yy62; + } +yy329: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'I': + case 'i': goto yy408; + default: goto yy62; + } +yy330: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'N': + case 'n': goto yy409; + default: goto yy62; + } +yy331: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'E': + case 'e': goto yy410; + default: goto yy62; + } +yy332: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'A': + case 'a': goto yy411; + default: goto yy62; + } +yy333: + yyaccept = 17; + yych = *(mrk = ++cur); + switch (yych) { + case 0x00: + case 0x01: + case 0x02: + case 0x03: + case 0x04: + case 0x05: + case 0x06: + case 0x07: + case 0x08: + case '\t': + case '\n': + case '\v': + case '\f': + case '\r': + case 0x0E: + case 0x0F: + case 0x10: + case 0x11: + case 0x12: + case 0x13: + case 0x14: + case 0x15: + case 0x16: + case 0x17: + case 0x18: + case 0x19: + case 0x1A: + case 0x1B: + case 0x1C: + case 0x1D: + case 0x1E: + case 0x1F: + case ' ': + case '!': + case '"': + case '#': + case '$': + case '%': + case '&': + case '\'': + case '(': + case ')': + case '*': + case '+': + case ',': + case '-': + case '.': + case '/': + case ':': + case ';': + case '<': + case '=': + case '>': + case '?': + case '@': + case '[': + case ']': + case '^': + case '`': + case '{': + case '|': + case '}': + case '~': + case 0x7F: goto yy334; + case '\\': goto yy147; + default: goto yy61; + } +yy334: +#line 225 "src/parser_scan.re" + { NEWTOKEN(PSI_T_TEMP); goto start; } +#line 3743 "src/parser_scan.c" +yy335: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'R': + case 'r': goto yy412; + default: goto yy62; + } +yy336: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'O': + case 'o': goto yy413; + default: goto yy62; + } +yy337: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'L': + case 'l': goto yy414; + default: goto yy62; + } +yy338: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'N': + case 'n': goto yy415; + default: goto yy62; + } +yy339: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'B': + case 'b': goto yy416; + default: goto yy62; + } +yy340: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'T': + case 't': goto yy417; + default: goto yy62; + } +yy341: + yyaccept = 18; + yych = *(mrk = ++cur); + switch (yych) { + case 0x00: + case 0x01: + case 0x02: + case 0x03: + case 0x04: + case 0x05: + case 0x06: + case 0x07: + case 0x08: + case '\t': + case '\n': + case '\v': + case '\f': + case '\r': + case 0x0E: + case 0x0F: + case 0x10: + case 0x11: + case 0x12: + case 0x13: + case 0x14: + case 0x15: + case 0x16: + case 0x17: + case 0x18: + case 0x19: + case 0x1A: + case 0x1B: + case 0x1C: + case 0x1D: + case 0x1E: + case 0x1F: + case ' ': + case '!': + case '"': + case '#': + case '$': + case '%': + case '&': + case '\'': + case '(': + case ')': + case '*': + case '+': + case ',': + case '-': + case '.': + case '/': + case ':': + case ';': + case '<': + case '=': + case '>': + case '?': + case '@': + case '[': + case ']': + case '^': + case '`': + case '{': + case '|': + case '}': + case '~': + case 0x7F: goto yy342; + case '\\': goto yy147; + default: goto yy61; + } +yy342: +#line 206 "src/parser_scan.re" + { NEWTOKEN(PSI_T_TRUE); goto start; } +#line 3866 "src/parser_scan.c" +yy343: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'F': + case 'f': goto yy418; + default: goto yy62; + } +yy344: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'I': + case 'i': goto yy420; + default: goto yy62; + } +yy345: + yyaccept = 19; + yych = *(mrk = ++cur); + switch (yych) { + case 0x00: + case 0x01: + case 0x02: + case 0x03: + case 0x04: + case 0x05: + case 0x06: + case 0x07: + case 0x08: + case '\t': + case '\n': + case '\v': + case '\f': + case '\r': + case 0x0E: + case 0x0F: + case 0x10: + case 0x11: + case 0x12: + case 0x13: + case 0x14: + case 0x15: + case 0x16: + case 0x17: + case 0x18: + case 0x19: + case 0x1A: + case 0x1B: + case 0x1C: + case 0x1D: + case 0x1E: + case 0x1F: + case ' ': + case '!': + case '"': + case '#': + case '$': + case '%': + case '&': + case '\'': + case '(': + case ')': + case '*': + case '+': + case ',': + case '-': + case '.': + case '/': + case ':': + case ';': + case '<': + case '=': + case '>': + case '?': + case '@': + case '[': + case ']': + case '^': + case '`': + case '{': + case '|': + case '}': + case '~': + case 0x7F: goto yy346; + case '\\': goto yy147; + default: goto yy61; + } +yy346: +#line 234 "src/parser_scan.re" + { NEWTOKEN(PSI_T_ZVAL); goto start; } +#line 3957 "src/parser_scan.c" +yy347: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'm': goto yy421; + default: goto yy62; + } +yy348: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 't': goto yy423; + default: goto yy62; + } +yy349: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 't': goto yy424; + default: goto yy62; + } +yy350: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'l': goto yy272; + default: goto yy62; + } +yy351: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 's': goto yy425; + default: goto yy62; + } +yy352: + yyaccept = 20; + yych = *(mrk = ++cur); + switch (yych) { + case 0x00: + case 0x01: + case 0x02: + case 0x03: + case 0x04: + case 0x05: + case 0x06: + case 0x07: + case 0x08: + case '\t': + case '\n': + case '\v': + case '\f': + case '\r': + case 0x0E: + case 0x0F: + case 0x10: + case 0x11: + case 0x12: + case 0x13: + case 0x14: + case 0x15: + case 0x16: + case 0x17: + case 0x18: + case 0x19: + case 0x1A: + case 0x1B: + case 0x1C: + case 0x1D: + case 0x1E: + case 0x1F: + case ' ': + case '!': + case '"': + case '#': + case '$': + case '%': + case '&': + case '\'': + case '(': + case ')': + case '*': + case '+': + case ',': + case '-': + case '.': + case '/': + case ':': + case ';': + case '<': + case '=': + case '>': + case '?': + case '@': + case '[': + case ']': + case '^': + case '`': + case '{': + case '|': + case '}': + case '~': + case 0x7F: goto yy353; + case 'V': + case 'v': goto yy380; + case '\\': goto yy147; + default: goto yy61; + } +yy353: +#line 184 "src/parser_scan.re" + { NEWTOKEN(PSI_T_BOOL); goto start; } +#line 4069 "src/parser_scan.c" +yy354: + yyaccept = 21; + yych = *(mrk = ++cur); + switch (yych) { + case 0x00: + case 0x01: + case 0x02: + case 0x03: + case 0x04: + case 0x05: + case 0x06: + case 0x07: + case 0x08: + case '\t': + case '\n': + case '\v': + case '\f': + case '\r': + case 0x0E: + case 0x0F: + case 0x10: + case 0x11: + case 0x12: + case 0x13: + case 0x14: + case 0x15: + case 0x16: + case 0x17: + case 0x18: + case 0x19: + case 0x1A: + case 0x1B: + case 0x1C: + case 0x1D: + case 0x1E: + case 0x1F: + case ' ': + case '!': + case '"': + case '#': + case '$': + case '%': + case '&': + case '\'': + case '(': + case ')': + case '*': + case '+': + case ',': + case '-': + case '.': + case '/': + case ':': + case ';': + case '<': + case '=': + case '>': + case '?': + case '@': + case '[': + case ']': + case '^': + case '`': + case '{': + case '|': + case '}': + case '~': + case 0x7F: goto yy355; + case '\\': goto yy147; + default: goto yy61; + } +yy355: +#line 185 "src/parser_scan.re" + { NEWTOKEN(PSI_T_CHAR); goto start; } +#line 4144 "src/parser_scan.c" +yy356: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 't': goto yy426; + default: goto yy62; + } +yy357: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'l': goto yy428; + default: goto yy62; + } +yy358: + yyaccept = 22; + yych = *(mrk = ++cur); + switch (yych) { + case 0x00: + case 0x01: + case 0x02: + case 0x03: + case 0x04: + case 0x05: + case 0x06: + case 0x07: + case 0x08: + case '\t': + case '\n': + case '\v': + case '\f': + case '\r': + case 0x0E: + case 0x0F: + case 0x10: + case 0x11: + case 0x12: + case 0x13: + case 0x14: + case 0x15: + case 0x16: + case 0x17: + case 0x18: + case 0x19: + case 0x1A: + case 0x1B: + case 0x1C: + case 0x1D: + case 0x1E: + case 0x1F: + case ' ': + case '!': + case '"': + case '#': + case '$': + case '%': + case '&': + case '\'': + case '(': + case ')': + case '*': + case '+': + case ',': + case '-': + case '.': + case '/': + case ':': + case ';': + case '<': + case '=': + case '>': + case '?': + case '@': + case '[': + case ']': + case '^': + case '`': + case '{': + case '|': + case '}': + case '~': + case 0x7F: goto yy359; + case '\\': goto yy147; + default: goto yy61; + } +yy359: +#line 181 "src/parser_scan.re" + { NEWTOKEN(PSI_T_ENUM); goto start; } +#line 4233 "src/parser_scan.c" +yy360: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'T': goto yy393; + case 't': goto yy429; + default: goto yy62; + } +yy361: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'n': goto yy431; + default: goto yy62; + } +yy362: + yyaccept = 23; + yych = *(mrk = ++cur); + switch (yych) { + case 0x00: + case 0x01: + case 0x02: + case 0x03: + case 0x04: + case 0x05: + case 0x06: + case 0x07: + case 0x08: + case '\t': + case '\n': + case '\v': + case '\f': + case '\r': + case 0x0E: + case 0x0F: + case 0x10: + case 0x11: + case 0x12: + case 0x13: + case 0x14: + case 0x15: + case 0x16: + case 0x17: + case 0x18: + case 0x19: + case 0x1A: + case 0x1B: + case 0x1C: + case 0x1D: + case 0x1E: + case 0x1F: + case ' ': + case '!': + case '"': + case '#': + case '$': + case '%': + case '&': + case '\'': + case '(': + case ')': + case '*': + case '+': + case ',': + case '-': + case '.': + case '/': + case ':': + case ';': + case '<': + case '=': + case '>': + case '?': + case '@': + case '[': + case ']': + case '^': + case '`': + case '{': + case '|': + case '}': + case '~': + case 0x7F: goto yy363; + case '\\': goto yy147; + default: goto yy61; + } +yy363: +#line 177 "src/parser_scan.re" + { NEWTOKEN(PSI_T_LINE); goto start; } +#line 4323 "src/parser_scan.c" +yy364: + yyaccept = 24; + yych = *(mrk = ++cur); + switch (yych) { + case 0x00: + case 0x01: + case 0x02: + case 0x03: + case 0x04: + case 0x05: + case 0x06: + case 0x07: + case 0x08: + case '\t': + case '\n': + case '\v': + case '\f': + case '\r': + case 0x0E: + case 0x0F: + case 0x10: + case 0x11: + case 0x12: + case 0x13: + case 0x14: + case 0x15: + case 0x16: + case 0x17: + case 0x18: + case 0x19: + case 0x1A: + case 0x1B: + case 0x1C: + case 0x1D: + case 0x1E: + case 0x1F: + case ' ': + case '!': + case '"': + case '#': + case '$': + case '%': + case '&': + case '\'': + case '(': + case ')': + case '*': + case '+': + case ',': + case '-': + case '.': + case '/': + case ':': + case ';': + case '<': + case '=': + case '>': + case '?': + case '@': + case '[': + case ']': + case '^': + case '`': + case '{': + case '|': + case '}': + case '~': + case 0x7F: goto yy365; + case '\\': goto yy147; + default: goto yy61; + } +yy365: +#line 188 "src/parser_scan.re" + { NEWTOKEN(PSI_T_LONG); goto start; } +#line 4398 "src/parser_scan.c" +yy366: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'm': goto yy432; + default: goto yy62; + } +yy367: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 't': goto yy433; + default: goto yy62; + } +yy368: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'e': goto yy435; + default: goto yy62; + } +yy369: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'o': goto yy436; + default: goto yy62; + } +yy370: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'c': goto yy437; + default: goto yy62; + } +yy371: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'd': goto yy438; + default: goto yy62; + } +yy372: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'n': goto yy439; + default: goto yy62; + } +yy373: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'g': goto yy441; + default: goto yy62; + } +yy374: + yyaccept = 25; + yych = *(mrk = ++cur); + switch (yych) { + case 0x00: + case 0x01: + case 0x02: + case 0x03: + case 0x04: + case 0x05: + case 0x06: + case 0x07: + case 0x08: + case '\t': + case '\n': + case '\v': + case '\f': + case '\r': + case 0x0E: + case 0x0F: + case 0x10: + case 0x11: + case 0x12: + case 0x13: + case 0x14: + case 0x15: + case 0x16: + case 0x17: + case 0x18: + case 0x19: + case 0x1A: + case 0x1B: + case 0x1C: + case 0x1D: + case 0x1E: + case 0x1F: + case ' ': + case '!': + case '"': + case '#': + case '$': + case '%': + case '&': + case '\'': + case '(': + case ')': + case '*': + case '+': + case ',': + case '-': + case '.': + case '/': + case ':': + case ';': + case '<': + case '=': + case '>': + case '?': + case '@': + case '[': + case ']': + case '^': + case '`': + case '{': + case '|': + case '}': + case '~': + case 0x7F: goto yy375; + case '\\': goto yy147; + default: goto yy61; + } +yy375: +#line 183 "src/parser_scan.re" + { NEWTOKEN(PSI_T_VOID); goto start; } +#line 4529 "src/parser_scan.c" +yy376: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 't': goto yy442; + default: goto yy62; + } +yy377: + yyaccept = 26; + yych = *(mrk = ++cur); + switch (yych) { + case 0x00: + case 0x01: + case 0x02: + case 0x03: + case 0x04: + case 0x05: + case 0x06: + case 0x07: + case 0x08: + case '\t': + case '\n': + case '\v': + case '\f': + case '\r': + case 0x0E: + case 0x0F: + case 0x10: + case 0x11: + case 0x12: + case 0x13: + case 0x14: + case 0x15: + case 0x16: + case 0x17: + case 0x18: + case 0x19: + case 0x1A: + case 0x1B: + case 0x1C: + case 0x1D: + case 0x1E: + case 0x1F: + case ' ': + case '!': + case '"': + case '#': + case '$': + case '%': + case '&': + case '\'': + case '(': + case ')': + case '*': + case '+': + case ',': + case '-': + case '.': + case '/': + case ':': + case ';': + case '<': + case '=': + case '>': + case '?': + case '@': + case '[': + case ']': + case '^': + case '`': + case '{': + case '|': + case '}': + case '~': + case 0x7F: goto yy378; + case '\\': goto yy147; + default: goto yy61; + } +yy378: +#line 212 "src/parser_scan.re" + { NEWTOKEN(PSI_T_ARRAY); goto start; } +#line 4611 "src/parser_scan.c" +yy379: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'L': + case 'l': goto yy443; + default: goto yy62; + } +yy380: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'A': + case 'a': goto yy445; + default: goto yy62; + } +yy381: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'B': + case 'b': goto yy446; + default: goto yy62; + } +yy382: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'A': + case 'a': goto yy447; + default: goto yy62; + } +yy383: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'C': + case 'c': goto yy448; + default: goto yy62; + } +yy384: + yyaccept = 27; + yych = *(mrk = ++cur); + switch (yych) { + case 0x00: + case 0x01: + case 0x02: + case 0x03: + case 0x04: + case 0x05: + case 0x06: + case 0x07: + case 0x08: + case '\t': + case '\n': + case '\v': + case '\f': + case '\r': + case 0x0E: + case 0x0F: + case 0x10: + case 0x11: + case 0x12: + case 0x13: + case 0x14: + case 0x15: + case 0x16: + case 0x17: + case 0x18: + case 0x19: + case 0x1A: + case 0x1B: + case 0x1C: + case 0x1D: + case 0x1E: + case 0x1F: + case ' ': + case '!': + case '"': + case '#': + case '$': + case '%': + case '&': + case '\'': + case '(': + case ')': + case '*': + case '+': + case ',': + case '-': + case '.': + case '/': + case ':': + case ';': + case '<': + case '=': + case '>': + case '?': + case '@': + case '[': + case ']': + case '^': + case '`': + case '{': + case '|': + case '}': + case '~': + case 0x7F: goto yy385; + case '\\': goto yy147; + default: goto yy61; + } +yy385: +#line 235 "src/parser_scan.re" + { NEWTOKEN(PSI_T_COUNT); goto start; } +#line 4726 "src/parser_scan.c" +yy386: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'E': + case 'e': goto yy450; + default: goto yy62; + } +yy387: + yyaccept = 28; + yych = *(mrk = ++cur); + switch (yych) { + case 0x00: + case 0x01: + case 0x02: + case 0x03: + case 0x04: + case 0x05: + case 0x06: + case 0x07: + case 0x08: + case '\t': + case '\n': + case '\v': + case '\f': + case '\r': + case 0x0E: + case 0x0F: + case 0x10: + case 0x11: + case 0x12: + case 0x13: + case 0x14: + case 0x15: + case 0x16: + case 0x17: + case 0x18: + case 0x19: + case 0x1A: + case 0x1B: + case 0x1C: + case 0x1D: + case 0x1E: + case 0x1F: + case ' ': + case '!': + case '"': + case '#': + case '$': + case '%': + case '&': + case '\'': + case '(': + case ')': + case '*': + case '+': + case ',': + case '-': + case '.': + case '/': + case ':': + case ';': + case '<': + case '=': + case '>': + case '?': + case '@': + case '[': + case ']': + case '^': + case '`': + case '{': + case '|': + case '}': + case '~': + case 0x7F: goto yy388; + case '\\': goto yy147; + default: goto yy61; + } +yy388: +#line 198 "src/parser_scan.re" + { NEWTOKEN(PSI_T_ENDIF); goto start; } +#line 4809 "src/parser_scan.c" +yy389: + yyaccept = 29; + yych = *(mrk = ++cur); + switch (yych) { + case 0x00: + case 0x01: + case 0x02: + case 0x03: + case 0x04: + case 0x05: + case 0x06: + case 0x07: + case 0x08: + case '\t': + case '\n': + case '\v': + case '\f': + case '\r': + case 0x0E: + case 0x0F: + case 0x10: + case 0x11: + case 0x12: + case 0x13: + case 0x14: + case 0x15: + case 0x16: + case 0x17: + case 0x18: + case 0x19: + case 0x1A: + case 0x1B: + case 0x1C: + case 0x1D: + case 0x1E: + case 0x1F: + case ' ': + case '!': + case '"': + case '#': + case '$': + case '%': + case '&': + case '\'': + case '(': + case ')': + case '*': + case '+': + case ',': + case '-': + case '.': + case '/': + case ':': + case ';': + case '<': + case '=': + case '>': + case '?': + case '@': + case '[': + case ']': + case '^': + case '`': + case '{': + case '|': + case '}': + case '~': + case 0x7F: goto yy390; + case '\\': goto yy147; + default: goto yy61; + } +yy390: +#line 203 "src/parser_scan.re" + { NEWTOKEN(PSI_T_ERROR); goto start; } +#line 4884 "src/parser_scan.c" +yy391: + yyaccept = 30; + yych = *(mrk = ++cur); + switch (yych) { + case 0x00: + case 0x01: + case 0x02: + case 0x03: + case 0x04: + case 0x05: + case 0x06: + case 0x07: + case 0x08: + case '\t': + case '\n': + case '\v': + case '\f': + case '\r': + case 0x0E: + case 0x0F: + case 0x10: + case 0x11: + case 0x12: + case 0x13: + case 0x14: + case 0x15: + case 0x16: + case 0x17: + case 0x18: + case 0x19: + case 0x1A: + case 0x1B: + case 0x1C: + case 0x1D: + case 0x1E: + case 0x1F: + case ' ': + case '!': + case '"': + case '#': + case '$': + case '%': + case '&': + case '\'': + case '(': + case ')': + case '*': + case '+': + case ',': + case '-': + case '.': + case '/': + case ':': + case ';': + case '<': + case '=': + case '>': + case '?': + case '@': + case '[': + case ']': + case '^': + case '`': + case '{': + case '|': + case '}': + case '~': + case 0x7F: goto yy392; + case '\\': goto yy147; + default: goto yy61; + } +yy392: +#line 207 "src/parser_scan.re" + { NEWTOKEN(PSI_T_FALSE); goto start; } +#line 4959 "src/parser_scan.c" +yy393: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'V': + case 'v': goto yy452; + default: goto yy62; + } +yy394: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'I': + case 'i': goto yy453; + default: goto yy62; + } +yy395: + yyaccept = 31; + yych = *(mrk = ++cur); + switch (yych) { + case 0x00: + case 0x01: + case 0x02: + case 0x03: + case 0x04: + case 0x05: + case 0x06: + case 0x07: + case 0x08: + case '\t': + case '\n': + case '\v': + case '\f': + case '\r': + case 0x0E: + case 0x0F: + case 0x10: + case 0x11: + case 0x12: + case 0x13: + case 0x14: + case 0x15: + case 0x16: + case 0x17: + case 0x18: + case 0x19: + case 0x1A: + case 0x1B: + case 0x1C: + case 0x1D: + case 0x1E: + case 0x1F: + case ' ': + case '!': + case '"': + case '#': + case '$': + case '%': + case '&': + case '\'': + case '(': + case ')': + case '*': + case '+': + case ',': + case '-': + case '.': + case '/': + case ':': + case ';': + case '<': + case '=': + case '>': + case '?': + case '@': + case '[': + case ']': + case '^': + case '`': + case '{': + case '|': + case '}': + case '~': + case 0x7F: goto yy396; + case '\\': goto yy147; + default: goto yy61; + } +yy396: +#line 194 "src/parser_scan.re" + { NEWTOKEN(PSI_T_IFDEF); goto start; } +#line 5050 "src/parser_scan.c" +yy397: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'F': + case 'f': goto yy454; + default: goto yy62; + } +yy398: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'D': + case 'd': goto yy456; + default: goto yy62; + } +yy399: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'L': + case 'l': goto yy457; + default: goto yy62; + } +yy400: + yyaccept = 32; + yych = *(mrk = ++cur); + switch (yych) { + case 0x00: + case 0x01: + case 0x02: + case 0x03: + case 0x04: + case 0x05: + case 0x06: + case 0x07: + case 0x08: + case '\t': + case '\n': + case '\v': + case '\f': + case '\r': + case 0x0E: + case 0x0F: + case 0x10: + case 0x11: + case 0x12: + case 0x13: + case 0x14: + case 0x15: + case 0x16: + case 0x17: + case 0x18: + case 0x19: + case 0x1A: + case 0x1B: + case 0x1C: + case 0x1D: + case 0x1E: + case 0x1F: + case ' ': + case '!': + case '"': + case '#': + case '$': + case '%': + case '&': + case '\'': + case '(': + case ')': + case '*': + case '+': + case ',': + case '-': + case '.': + case '/': + case ':': + case ';': + case '<': + case '=': + case '>': + case '?': + case '@': + case '[': + case ']': + case '^': + case '`': + case '{': + case '|': + case '}': + case '~': + case 0x7F: goto yy401; + case '\\': goto yy147; + default: goto yy61; + } +yy401: +#line 209 "src/parser_scan.re" + { NEWTOKEN(PSI_T_MIXED); goto start; } +#line 5149 "src/parser_scan.c" +yy402: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'T': + case 't': goto yy459; + default: goto yy62; + } +yy403: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'L': + case 'l': goto yy461; + default: goto yy62; + } +yy404: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'A': + case 'a': goto yy463; + default: goto yy62; + } +yy405: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'A': + case 'a': goto yy464; + default: goto yy62; + } +yy406: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'S': + case 's': goto yy465; + default: goto yy62; + } +yy407: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'N': + case 'n': goto yy466; + default: goto yy62; + } +yy408: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'C': + case 'c': goto yy468; + default: goto yy62; + } +yy409: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'G': + case 'g': goto yy470; + default: goto yy62; + } +yy410: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'N': + case 'n': goto yy472; + default: goto yy62; + } +yy411: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'L': + case 'l': goto yy474; + default: goto yy62; + } +yy412: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'R': + case 'r': goto yy476; + default: goto yy62; + } +yy413: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'O': + case 'o': goto yy477; + default: goto yy62; + } +yy414: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'O': + case 'o': goto yy478; + default: goto yy62; + } +yy415: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'T': + case 't': goto yy479; + default: goto yy62; + } +yy416: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'J': + case 'j': goto yy481; + default: goto yy62; + } +yy417: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'R': + case 'r': goto yy482; + default: goto yy62; + } +yy418: + yyaccept = 33; + yych = *(mrk = ++cur); + switch (yych) { + case 0x00: + case 0x01: + case 0x02: + case 0x03: + case 0x04: + case 0x05: + case 0x06: + case 0x07: + case 0x08: + case '\t': + case '\n': + case '\v': + case '\f': + case '\r': + case 0x0E: + case 0x0F: + case 0x10: + case 0x11: + case 0x12: + case 0x13: + case 0x14: + case 0x15: + case 0x16: + case 0x17: + case 0x18: + case 0x19: + case 0x1A: + case 0x1B: + case 0x1C: + case 0x1D: + case 0x1E: + case 0x1F: + case ' ': + case '!': + case '"': + case '#': + case '$': + case '%': + case '&': + case '\'': + case '(': + case ')': + case '*': + case '+': + case ',': + case '-': + case '.': + case '/': + case ':': + case ';': + case '<': + case '=': + case '>': + case '?': + case '@': + case '[': + case ']': + case '^': + case '`': + case '{': + case '|': + case '}': + case '~': + case 0x7F: goto yy419; + case '\\': goto yy147; + default: goto yy61; + } +yy419: +#line 201 "src/parser_scan.re" + { NEWTOKEN(PSI_T_UNDEF); goto start; } +#line 5352 "src/parser_scan.c" +yy420: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'N': + case 'n': goto yy483; + default: goto yy62; + } +yy421: + yyaccept = 34; + yych = *(mrk = ++cur); + switch (yych) { + case 0x00: + case 0x01: + case 0x02: + case 0x03: + case 0x04: + case 0x05: + case 0x06: + case 0x07: + case 0x08: + case '\t': + case '\n': + case '\v': + case '\f': + case '\r': + case 0x0E: + case 0x0F: + case 0x10: + case 0x11: + case 0x12: + case 0x13: + case 0x14: + case 0x15: + case 0x16: + case 0x17: + case 0x18: + case 0x19: + case 0x1A: + case 0x1B: + case 0x1C: + case 0x1D: + case 0x1E: + case 0x1F: + case ' ': + case '!': + case '"': + case '#': + case '$': + case '%': + case '&': + case '\'': + case '(': + case ')': + case '*': + case '+': + case ',': + case '-': + case '.': + case '/': + case ':': + case ';': + case '<': + case '=': + case '>': + case '?': + case '@': + case '[': + case ']': + case '^': + case '`': + case '{': + case '|': + case '}': + case '~': + case 0x7F: goto yy422; + case '\\': goto yy147; + case '_': goto yy484; + default: goto yy61; + } +yy422: +#line 174 "src/parser_scan.re" + { NEWTOKEN(PSI_T_CPP_ASM); goto start; } +#line 5436 "src/parser_scan.c" +yy423: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'r': goto yy485; + default: goto yy62; + } +yy424: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'e': goto yy486; + default: goto yy62; + } +yy425: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 't': goto yy487; + default: goto yy62; + } +yy426: + yyaccept = 35; + yych = *(mrk = ++cur); + switch (yych) { + case 0x00: + case 0x01: + case 0x02: + case 0x03: + case 0x04: + case 0x05: + case 0x06: + case 0x07: + case 0x08: + case '\t': + case '\n': + case '\v': + case '\f': + case '\r': + case 0x0E: + case 0x0F: + case 0x10: + case 0x11: + case 0x12: + case 0x13: + case 0x14: + case 0x15: + case 0x16: + case 0x17: + case 0x18: + case 0x19: + case 0x1A: + case 0x1B: + case 0x1C: + case 0x1D: + case 0x1E: + case 0x1F: + case ' ': + case '!': + case '"': + case '#': + case '$': + case '%': + case '&': + case '\'': + case '(': + case ')': + case '*': + case '+': + case ',': + case '-': + case '.': + case '/': + case ':': + case ';': + case '<': + case '=': + case '>': + case '?': + case '@': + case '[': + case ']': + case '^': + case '`': + case '{': + case '|': + case '}': + case '~': + case 0x7F: goto yy427; + case '\\': goto yy147; + default: goto yy61; + } +yy427: +#line 182 "src/parser_scan.re" + { NEWTOKEN(PSI_T_CONST); goto start; } +#line 5532 "src/parser_scan.c" +yy428: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'e': goto yy488; + default: goto yy62; + } +yy429: + yyaccept = 36; + yych = *(mrk = ++cur); + switch (yych) { + case 0x00: + case 0x01: + case 0x02: + case 0x03: + case 0x04: + case 0x05: + case 0x06: + case 0x07: + case 0x08: + case '\t': + case '\n': + case '\v': + case '\f': + case '\r': + case 0x0E: + case 0x0F: + case 0x10: + case 0x11: + case 0x12: + case 0x13: + case 0x14: + case 0x15: + case 0x16: + case 0x17: + case 0x18: + case 0x19: + case 0x1A: + case 0x1B: + case 0x1C: + case 0x1D: + case 0x1E: + case 0x1F: + case ' ': + case '!': + case '"': + case '#': + case '$': + case '%': + case '&': + case '\'': + case '(': + case ')': + case '*': + case '+': + case ',': + case '-': + case '.': + case '/': + case ':': + case ';': + case '<': + case '=': + case '>': + case '?': + case '@': + case '[': + case ']': + case '^': + case '`': + case '{': + case '|': + case '}': + case '~': + case 0x7F: goto yy430; + case 'V': + case 'v': goto yy452; + case '\\': goto yy147; + default: goto yy61; + } +yy430: +#line 189 "src/parser_scan.re" + { NEWTOKEN(PSI_T_FLOAT); goto start; } +#line 5616 "src/parser_scan.c" +yy431: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'e': goto yy490; + default: goto yy62; + } +yy432: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'a': goto yy492; + default: goto yy62; + } +yy433: + yyaccept = 37; + yych = *(mrk = ++cur); + switch (yych) { + case 0x00: + case 0x01: + case 0x02: + case 0x03: + case 0x04: + case 0x05: + case 0x06: + case 0x07: + case 0x08: + case '\t': + case '\n': + case '\v': + case '\f': + case '\r': + case 0x0E: + case 0x0F: + case 0x10: + case 0x11: + case 0x12: + case 0x13: + case 0x14: + case 0x15: + case 0x16: + case 0x17: + case 0x18: + case 0x19: + case 0x1A: + case 0x1B: + case 0x1C: + case 0x1D: + case 0x1E: + case 0x1F: + case ' ': + case '!': + case '"': + case '#': + case '$': + case '%': + case '&': + case '\'': + case '(': + case ')': + case '*': + case '+': + case ',': + case '-': + case '.': + case '/': + case ':': + case ';': + case '<': + case '=': + case '>': + case '?': + case '@': + case '[': + case ']': + case '^': + case '`': + case '{': + case '|': + case '}': + case '~': + case 0x7F: goto yy434; + case '\\': goto yy147; + default: goto yy61; + } +yy434: +#line 186 "src/parser_scan.re" + { NEWTOKEN(PSI_T_SHORT); goto start; } +#line 5705 "src/parser_scan.c" +yy435: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'd': goto yy494; + default: goto yy62; + } +yy436: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'f': goto yy496; + default: goto yy62; + } +yy437: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 't': goto yy498; + default: goto yy62; + } +yy438: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'e': goto yy500; + default: goto yy62; + } +yy439: + yyaccept = 38; + yych = *(mrk = ++cur); + switch (yych) { + case 0x00: + case 0x01: + case 0x02: + case 0x03: + case 0x04: + case 0x05: + case 0x06: + case 0x07: + case 0x08: + case '\t': + case '\n': + case '\v': + case '\f': + case '\r': + case 0x0E: + case 0x0F: + case 0x10: + case 0x11: + case 0x12: + case 0x13: + case 0x14: + case 0x15: + case 0x16: + case 0x17: + case 0x18: + case 0x19: + case 0x1A: + case 0x1B: + case 0x1C: + case 0x1D: + case 0x1E: + case 0x1F: + case ' ': + case '!': + case '"': + case '#': + case '$': + case '%': + case '&': + case '\'': + case '(': + case ')': + case '*': + case '+': + case ',': + case '-': + case '.': + case '/': + case ':': + case ';': + case '<': + case '=': + case '>': + case '?': + case '@': + case '[': + case ']': + case '^': + case '`': + case '{': + case '|': + case '}': + case '~': + case 0x7F: goto yy440; + case '\\': goto yy147; + default: goto yy61; + } +yy440: +#line 180 "src/parser_scan.re" + { NEWTOKEN(PSI_T_UNION); goto start; } +#line 5808 "src/parser_scan.c" +yy441: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'n': goto yy501; + default: goto yy62; + } +yy442: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'i': goto yy502; + default: goto yy62; + } +yy443: + yyaccept = 39; + yych = *(mrk = ++cur); + switch (yych) { + case 0x00: + case 0x01: + case 0x02: + case 0x03: + case 0x04: + case 0x05: + case 0x06: + case 0x07: + case 0x08: + case '\t': + case '\n': + case '\v': + case '\f': + case '\r': + case 0x0E: + case 0x0F: + case 0x10: + case 0x11: + case 0x12: + case 0x13: + case 0x14: + case 0x15: + case 0x16: + case 0x17: + case 0x18: + case 0x19: + case 0x1A: + case 0x1B: + case 0x1C: + case 0x1D: + case 0x1E: + case 0x1F: + case ' ': + case '!': + case '"': + case '#': + case '$': + case '%': + case '&': + case '\'': + case '(': + case ')': + case '*': + case '+': + case ',': + case '-': + case '.': + case '/': + case ':': + case ';': + case '<': + case '=': + case '>': + case '?': + case '@': + case '[': + case ']': + case '^': + case '`': + case '{': + case '|': + case '}': + case '~': + case 0x7F: goto yy444; + case '\\': goto yy147; + default: goto yy61; + } +yy444: +#line 232 "src/parser_scan.re" + { NEWTOKEN(PSI_T_ARRVAL); goto start; } +#line 5897 "src/parser_scan.c" +yy445: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'L': + case 'l': goto yy503; + default: goto yy62; + } +yy446: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'L': + case 'l': goto yy505; + default: goto yy62; + } +yy447: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'C': + case 'c': goto yy506; + default: goto yy62; + } +yy448: + yyaccept = 40; + yych = *(mrk = ++cur); + switch (yych) { + case 0x00: + case 0x01: + case 0x02: + case 0x03: + case 0x04: + case 0x05: + case 0x06: + case 0x07: + case 0x08: + case '\t': + case '\n': + case '\v': + case '\f': + case '\r': + case 0x0E: + case 0x0F: + case 0x10: + case 0x11: + case 0x12: + case 0x13: + case 0x14: + case 0x15: + case 0x16: + case 0x17: + case 0x18: + case 0x19: + case 0x1A: + case 0x1B: + case 0x1C: + case 0x1D: + case 0x1E: + case 0x1F: + case ' ': + case '!': + case '"': + case '#': + case '$': + case '%': + case '&': + case '\'': + case '(': + case ')': + case '*': + case '+': + case ',': + case '-': + case '.': + case '/': + case ':': + case ';': + case '<': + case '=': + case '>': + case '?': + case '@': + case '[': + case ']': + case '^': + case '`': + case '{': + case '|': + case '}': + case '~': + case 0x7F: goto yy449; + case '\\': goto yy147; + default: goto yy61; + } +yy449: +#line 236 "src/parser_scan.re" + { NEWTOKEN(PSI_T_CALLOC); goto start; } +#line 5996 "src/parser_scan.c" +yy450: + yyaccept = 41; + yych = *(mrk = ++cur); + switch (yych) { + case 0x00: + case 0x01: + case 0x02: + case 0x03: + case 0x04: + case 0x05: + case 0x06: + case 0x07: + case 0x08: + case '\t': + case '\n': + case '\v': + case '\f': + case '\r': + case 0x0E: + case 0x0F: + case 0x10: + case 0x11: + case 0x12: + case 0x13: + case 0x14: + case 0x15: + case 0x16: + case 0x17: + case 0x18: + case 0x19: + case 0x1A: + case 0x1B: + case 0x1C: + case 0x1D: + case 0x1E: + case 0x1F: + case ' ': + case '!': + case '"': + case '#': + case '$': + case '%': + case '&': + case '\'': + case '(': + case ')': + case '*': + case '+': + case ',': + case '-': + case '.': + case '/': + case ':': + case ';': + case '<': + case '=': + case '>': + case '?': + case '@': + case '[': + case ']': + case '^': + case '`': + case '{': + case '|': + case '}': + case '~': + case 0x7F: goto yy451; + case 'D': + case 'd': goto yy507; + case '\\': goto yy147; + default: goto yy61; + } +yy451: +#line 199 "src/parser_scan.re" + { NEWTOKEN(PSI_T_DEFINE); goto start; } +#line 6073 "src/parser_scan.c" +yy452: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'A': + case 'a': goto yy509; + default: goto yy62; + } +yy453: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'O': + case 'o': goto yy510; + default: goto yy62; + } +yy454: + yyaccept = 42; + yych = *(mrk = ++cur); + switch (yych) { + case 0x00: + case 0x01: + case 0x02: + case 0x03: + case 0x04: + case 0x05: + case 0x06: + case 0x07: + case 0x08: + case '\t': + case '\n': + case '\v': + case '\f': + case '\r': + case 0x0E: + case 0x0F: + case 0x10: + case 0x11: + case 0x12: + case 0x13: + case 0x14: + case 0x15: + case 0x16: + case 0x17: + case 0x18: + case 0x19: + case 0x1A: + case 0x1B: + case 0x1C: + case 0x1D: + case 0x1E: + case 0x1F: + case ' ': + case '!': + case '"': + case '#': + case '$': + case '%': + case '&': + case '\'': + case '(': + case ')': + case '*': + case '+': + case ',': + case '-': + case '.': + case '/': + case ':': + case ';': + case '<': + case '=': + case '>': + case '?': + case '@': + case '[': + case ']': + case '^': + case '`': + case '{': + case '|': + case '}': + case '~': + case 0x7F: goto yy455; + case '\\': goto yy147; + default: goto yy61; + } +yy455: +#line 195 "src/parser_scan.re" + { NEWTOKEN(PSI_T_IFNDEF); goto start; } +#line 6164 "src/parser_scan.c" +yy456: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'E': + case 'e': goto yy511; + default: goto yy62; + } +yy457: + yyaccept = 43; + yych = *(mrk = ++cur); + switch (yych) { + case 0x00: + case 0x01: + case 0x02: + case 0x03: + case 0x04: + case 0x05: + case 0x06: + case 0x07: + case 0x08: + case '\t': + case '\n': + case '\v': + case '\f': + case '\r': + case 0x0E: + case 0x0F: + case 0x10: + case 0x11: + case 0x12: + case 0x13: + case 0x14: + case 0x15: + case 0x16: + case 0x17: + case 0x18: + case 0x19: + case 0x1A: + case 0x1B: + case 0x1C: + case 0x1D: + case 0x1E: + case 0x1F: + case ' ': + case '!': + case '"': + case '#': + case '$': + case '%': + case '&': + case '\'': + case '(': + case ')': + case '*': + case '+': + case ',': + case '-': + case '.': + case '/': + case ':': + case ';': + case '<': + case '=': + case '>': + case '?': + case '@': + case '[': + case ']': + case '^': + case '`': + case '{': + case '|': + case '}': + case '~': + case 0x7F: goto yy458; + case '\\': goto yy147; + default: goto yy61; + } +yy458: +#line 229 "src/parser_scan.re" + { NEWTOKEN(PSI_T_INTVAL); goto start; } +#line 6247 "src/parser_scan.c" +yy459: + yyaccept = 44; + yych = *(mrk = ++cur); + switch (yych) { + case 0x00: + case 0x01: + case 0x02: + case 0x03: + case 0x04: + case 0x05: + case 0x06: + case 0x07: + case 0x08: + case '\t': + case '\n': + case '\v': + case '\f': + case '\r': + case 0x0E: + case 0x0F: + case 0x10: + case 0x11: + case 0x12: + case 0x13: + case 0x14: + case 0x15: + case 0x16: + case 0x17: + case 0x18: + case 0x19: + case 0x1A: + case 0x1B: + case 0x1C: + case 0x1D: + case 0x1E: + case 0x1F: + case ' ': + case '!': + case '"': + case '#': + case '$': + case '%': + case '&': + case '\'': + case '(': + case ')': + case '*': + case '+': + case ',': + case '-': + case '.': + case '/': + case ':': + case ';': + case '<': + case '=': + case '>': + case '?': + case '@': + case '[': + case ']': + case '^': + case '`': + case '{': + case '|': + case '}': + case '~': + case 0x7F: goto yy460; + case '\\': goto yy147; + default: goto yy61; + } +yy460: +#line 213 "src/parser_scan.re" + { NEWTOKEN(PSI_T_OBJECT); goto start; } +#line 6322 "src/parser_scan.c" +yy461: + yyaccept = 45; + yych = *(mrk = ++cur); + switch (yych) { + case 0x00: + case 0x01: + case 0x02: + case 0x03: + case 0x04: + case 0x05: + case 0x06: + case 0x07: + case 0x08: + case '\t': + case '\n': + case '\v': + case '\f': + case '\r': + case 0x0E: + case 0x0F: + case 0x10: + case 0x11: + case 0x12: + case 0x13: + case 0x14: + case 0x15: + case 0x16: + case 0x17: + case 0x18: + case 0x19: + case 0x1A: + case 0x1B: + case 0x1C: + case 0x1D: + case 0x1E: + case 0x1F: + case ' ': + case '!': + case '"': + case '#': + case '$': + case '%': + case '&': + case '\'': + case '(': + case ')': + case '*': + case '+': + case ',': + case '-': + case '.': + case '/': + case ':': + case ';': + case '<': + case '=': + case '>': + case '?': + case '@': + case '[': + case ']': + case '^': + case '`': + case '{': + case '|': + case '}': + case '~': + case 0x7F: goto yy462; + case '\\': goto yy147; + default: goto yy61; + } +yy462: +#line 233 "src/parser_scan.re" + { NEWTOKEN(PSI_T_OBJVAL); goto start; } +#line 6397 "src/parser_scan.c" +yy463: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'L': + case 'l': goto yy513; + default: goto yy62; + } +yy464: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'S': + case 's': goto yy515; + default: goto yy62; + } +yy465: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'S': + case 's': goto yy516; + default: goto yy62; + } +yy466: + yyaccept = 46; + yych = *(mrk = ++cur); + switch (yych) { + case 0x00: + case 0x01: + case 0x02: + case 0x03: + case 0x04: + case 0x05: + case 0x06: + case 0x07: + case 0x08: + case '\t': + case '\n': + case '\v': + case '\f': + case '\r': + case 0x0E: + case 0x0F: + case 0x10: + case 0x11: + case 0x12: + case 0x13: + case 0x14: + case 0x15: + case 0x16: + case 0x17: + case 0x18: + case 0x19: + case 0x1A: + case 0x1B: + case 0x1C: + case 0x1D: + case 0x1E: + case 0x1F: + case ' ': + case '!': + case '"': + case '#': + case '$': + case '%': + case '&': + case '\'': + case '(': + case ')': + case '*': + case '+': + case ',': + case '-': + case '.': + case '/': + case ':': + case ';': + case '<': + case '=': + case '>': + case '?': + case '@': + case '[': + case ']': + case '^': + case '`': + case '{': + case '|': + case '}': + case '~': + case 0x7F: goto yy467; + case '\\': goto yy147; + default: goto yy61; + } +yy467: +#line 222 "src/parser_scan.re" + { NEWTOKEN(PSI_T_RETURN); goto start; } +#line 6496 "src/parser_scan.c" +yy468: + yyaccept = 47; + yych = *(mrk = ++cur); + switch (yych) { + case 0x00: + case 0x01: + case 0x02: + case 0x03: + case 0x04: + case 0x05: + case 0x06: + case 0x07: + case 0x08: + case '\t': + case '\n': + case '\v': + case '\f': + case '\r': + case 0x0E: + case 0x0F: + case 0x10: + case 0x11: + case 0x12: + case 0x13: + case 0x14: + case 0x15: + case 0x16: + case 0x17: + case 0x18: + case 0x19: + case 0x1A: + case 0x1B: + case 0x1C: + case 0x1D: + case 0x1E: + case 0x1F: + case ' ': + case '!': + case '"': + case '#': + case '$': + case '%': + case '&': + case '\'': + case '(': + case ')': + case '*': + case '+': + case ',': + case '-': + case '.': + case '/': + case ':': + case ';': + case '<': + case '=': + case '>': + case '?': + case '@': + case '[': + case ']': + case '^': + case '`': + case '{': + case '|': + case '}': + case '~': + case 0x7F: goto yy469; + case '\\': goto yy147; + default: goto yy61; + } +yy469: +#line 215 "src/parser_scan.re" + { NEWTOKEN(PSI_T_STATIC); goto start; } +#line 6571 "src/parser_scan.c" +yy470: + yyaccept = 48; + yych = *(mrk = ++cur); + switch (yych) { + case 0x00: + case 0x01: + case 0x02: + case 0x03: + case 0x04: + case 0x05: + case 0x06: + case 0x07: + case 0x08: + case '\t': + case '\n': + case '\v': + case '\f': + case '\r': + case 0x0E: + case 0x0F: + case 0x10: + case 0x11: + case 0x12: + case 0x13: + case 0x14: + case 0x15: + case 0x16: + case 0x17: + case 0x18: + case 0x19: + case 0x1A: + case 0x1B: + case 0x1C: + case 0x1D: + case 0x1E: + case 0x1F: + case ' ': + case '!': + case '"': + case '#': + case '$': + case '%': + case '&': + case '\'': + case '(': + case ')': + case '*': + case '+': + case ',': + case '-': + case '.': + case '/': + case ':': + case ';': + case '<': + case '=': + case '>': + case '?': + case '@': + case '[': + case ']': + case '^': + case '`': + case '{': + case '|': + case '}': + case '~': + case 0x7F: goto yy471; + case '\\': goto yy147; + default: goto yy61; + } +yy471: +#line 211 "src/parser_scan.re" + { NEWTOKEN(PSI_T_STRING); goto start; } +#line 6646 "src/parser_scan.c" +yy472: + yyaccept = 49; + yych = *(mrk = ++cur); + switch (yych) { + case 0x00: + case 0x01: + case 0x02: + case 0x03: + case 0x04: + case 0x05: + case 0x06: + case 0x07: + case 0x08: + case '\t': + case '\n': + case '\v': + case '\f': + case '\r': + case 0x0E: + case 0x0F: + case 0x10: + case 0x11: + case 0x12: + case 0x13: + case 0x14: + case 0x15: + case 0x16: + case 0x17: + case 0x18: + case 0x19: + case 0x1A: + case 0x1B: + case 0x1C: + case 0x1D: + case 0x1E: + case 0x1F: + case ' ': + case '!': + case '"': + case '#': + case '$': + case '%': + case '&': + case '\'': + case '(': + case ')': + case '*': + case '+': + case ',': + case '-': + case '.': + case '/': + case ':': + case ';': + case '<': + case '=': + case '>': + case '?': + case '@': + case '[': + case ']': + case '^': + case '`': + case '{': + case '|': + case '}': + case '~': + case 0x7F: goto yy473; + case '\\': goto yy147; + default: goto yy61; + } +yy473: +#line 226 "src/parser_scan.re" + { NEWTOKEN(PSI_T_STRLEN); goto start; } +#line 6721 "src/parser_scan.c" +yy474: + yyaccept = 50; + yych = *(mrk = ++cur); + switch (yych) { + case 0x00: + case 0x01: + case 0x02: + case 0x03: + case 0x04: + case 0x05: + case 0x06: + case 0x07: + case 0x08: + case '\t': + case '\n': + case '\v': + case '\f': + case '\r': + case 0x0E: + case 0x0F: + case 0x10: + case 0x11: + case 0x12: + case 0x13: + case 0x14: + case 0x15: + case 0x16: + case 0x17: + case 0x18: + case 0x19: + case 0x1A: + case 0x1B: + case 0x1C: + case 0x1D: + case 0x1E: + case 0x1F: + case ' ': + case '!': + case '"': + case '#': + case '$': + case '%': + case '&': + case '\'': + case '(': + case ')': + case '*': + case '+': + case ',': + case '-': + case '.': + case '/': + case ':': + case ';': + case '<': + case '=': + case '>': + case '?': + case '@': + case '[': + case ']': + case '^': + case '`': + case '{': + case '|': + case '}': + case '~': + case 0x7F: goto yy475; + case '\\': goto yy147; + default: goto yy61; + } +yy475: +#line 227 "src/parser_scan.re" + { NEWTOKEN(PSI_T_STRVAL); goto start; } +#line 6796 "src/parser_scan.c" +yy476: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'A': + case 'a': goto yy517; + default: goto yy62; + } +yy477: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'L': + case 'l': goto yy518; + default: goto yy62; + } +yy478: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'A': + case 'a': goto yy520; + default: goto yy62; + } +yy479: + yyaccept = 51; + yych = *(mrk = ++cur); + switch (yych) { + case 0x00: + case 0x01: + case 0x02: + case 0x03: + case 0x04: + case 0x05: + case 0x06: + case 0x07: + case 0x08: + case '\t': + case '\n': + case '\v': + case '\f': + case '\r': + case 0x0E: + case 0x0F: + case 0x10: + case 0x11: + case 0x12: + case 0x13: + case 0x14: + case 0x15: + case 0x16: + case 0x17: + case 0x18: + case 0x19: + case 0x1A: + case 0x1B: + case 0x1C: + case 0x1D: + case 0x1E: + case 0x1F: + case ' ': + case '!': + case '"': + case '#': + case '$': + case '%': + case '&': + case '\'': + case '(': + case ')': + case '*': + case '+': + case ',': + case '-': + case '.': + case '/': + case ':': + case ';': + case '<': + case '=': + case '>': + case '?': + case '@': + case '[': + case ']': + case '^': + case '`': + case '{': + case '|': + case '}': + case '~': + case 0x7F: goto yy480; + case '\\': goto yy147; + default: goto yy61; + } +yy480: +#line 240 "src/parser_scan.re" + { NEWTOKEN(PSI_T_TO_INT); goto start; } +#line 6895 "src/parser_scan.c" +yy481: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'E': + case 'e': goto yy521; + default: goto yy62; + } +yy482: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'I': + case 'i': goto yy522; + default: goto yy62; + } +yy483: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'G': + case 'g': goto yy523; + default: goto yy62; + } +yy484: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case '_': goto yy525; + default: goto yy62; + } +yy485: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'i': goto yy526; + default: goto yy62; + } +yy486: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'n': goto yy527; + default: goto yy62; + } +yy487: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'r': goto yy528; + default: goto yy62; + } +yy488: + yyaccept = 52; + yych = *(mrk = ++cur); + switch (yych) { + case 0x00: + case 0x01: + case 0x02: + case 0x03: + case 0x04: + case 0x05: + case 0x06: + case 0x07: + case 0x08: + case '\t': + case '\n': + case '\v': + case '\f': + case '\r': + case 0x0E: + case 0x0F: + case 0x10: + case 0x11: + case 0x12: + case 0x13: + case 0x14: + case 0x15: + case 0x16: + case 0x17: + case 0x18: + case 0x19: + case 0x1A: + case 0x1B: + case 0x1C: + case 0x1D: + case 0x1E: + case 0x1F: + case ' ': + case '!': + case '"': + case '#': + case '$': + case '%': + case '&': + case '\'': + case '(': + case ')': + case '*': + case '+': + case ',': + case '-': + case '.': + case '/': + case ':': + case ';': + case '<': + case '=': + case '>': + case '?': + case '@': + case '[': + case ']': + case '^': + case '`': + case '{': + case '|': + case '}': + case '~': + case 0x7F: goto yy489; + case '\\': goto yy147; + default: goto yy61; + } +yy489: +#line 190 "src/parser_scan.re" + { NEWTOKEN(PSI_T_DOUBLE); goto start; } +#line 7022 "src/parser_scan.c" +yy490: + yyaccept = 53; + yych = *(mrk = ++cur); + switch (yych) { + case 0x00: + case 0x01: + case 0x02: + case 0x03: + case 0x04: + case 0x05: + case 0x06: + case 0x07: + case 0x08: + case '\t': + case '\n': + case '\v': + case '\f': + case '\r': + case 0x0E: + case 0x0F: + case 0x10: + case 0x11: + case 0x12: + case 0x13: + case 0x14: + case 0x15: + case 0x16: + case 0x17: + case 0x18: + case 0x19: + case 0x1A: + case 0x1B: + case 0x1C: + case 0x1D: + case 0x1E: + case 0x1F: + case ' ': + case '!': + case '"': + case '#': + case '$': + case '%': + case '&': + case '\'': + case '(': + case ')': + case '*': + case '+': + case ',': + case '-': + case '.': + case '/': + case ':': + case ';': + case '<': + case '=': + case '>': + case '?': + case '@': + case '[': + case ']': + case '^': + case '`': + case '{': + case '|': + case '}': + case '~': + case 0x7F: goto yy491; + case '\\': goto yy147; + default: goto yy61; + } +yy491: +#line 171 "src/parser_scan.re" + { NEWTOKEN(PSI_T_CPP_INLINE); goto start; } +#line 7097 "src/parser_scan.c" +yy492: + yyaccept = 54; + yych = *(mrk = ++cur); + switch (yych) { + case 0x00: + case 0x01: + case 0x02: + case 0x03: + case 0x04: + case 0x05: + case 0x06: + case 0x07: + case 0x08: + case '\t': + case '\n': + case '\v': + case '\f': + case '\r': + case 0x0E: + case 0x0F: + case 0x10: + case 0x11: + case 0x12: + case 0x13: + case 0x14: + case 0x15: + case 0x16: + case 0x17: + case 0x18: + case 0x19: + case 0x1A: + case 0x1B: + case 0x1C: + case 0x1D: + case 0x1E: + case 0x1F: + case ' ': + case '!': + case '"': + case '#': + case '$': + case '%': + case '&': + case '\'': + case '(': + case ')': + case '*': + case '+': + case ',': + case '-': + case '.': + case '/': + case ':': + case ';': + case '<': + case '=': + case '>': + case '?': + case '@': + case '[': + case ']': + case '^': + case '`': + case '{': + case '|': + case '}': + case '~': + case 0x7F: goto yy493; + case '\\': goto yy147; + default: goto yy529; + } +yy493: +#line 169 "src/parser_scan.re" + { NEWTOKEN(PSI_T_PRAGMA); goto start; } +#line 7172 "src/parser_scan.c" +yy494: + yyaccept = 55; + yych = *(mrk = ++cur); + switch (yych) { + case 0x00: + case 0x01: + case 0x02: + case 0x03: + case 0x04: + case 0x05: + case 0x06: + case 0x07: + case 0x08: + case '\t': + case '\n': + case '\v': + case '\f': + case '\r': + case 0x0E: + case 0x0F: + case 0x10: + case 0x11: + case 0x12: + case 0x13: + case 0x14: + case 0x15: + case 0x16: + case 0x17: + case 0x18: + case 0x19: + case 0x1A: + case 0x1B: + case 0x1C: + case 0x1D: + case 0x1E: + case 0x1F: + case ' ': + case '!': + case '"': + case '#': + case '$': + case '%': + case '&': + case '\'': + case '(': + case ')': + case '*': + case '+': + case ',': + case '-': + case '.': + case '/': + case ':': + case ';': + case '<': + case '=': + case '>': + case '?': + case '@': + case '[': + case ']': + case '^': + case '`': + case '{': + case '|': + case '}': + case '~': + case 0x7F: goto yy495; + case '\\': goto yy147; + default: goto yy61; + } +yy495: +#line 192 "src/parser_scan.re" + { NEWTOKEN(PSI_T_SIGNED); goto start; } +#line 7247 "src/parser_scan.c" +yy496: + yyaccept = 56; + yych = *(mrk = ++cur); + switch (yych) { + case 0x00: + case 0x01: + case 0x02: + case 0x03: + case 0x04: + case 0x05: + case 0x06: + case 0x07: + case 0x08: + case '\t': + case '\n': + case '\v': + case '\f': + case '\r': + case 0x0E: + case 0x0F: + case 0x10: + case 0x11: + case 0x12: + case 0x13: + case 0x14: + case 0x15: + case 0x16: + case 0x17: + case 0x18: + case 0x19: + case 0x1A: + case 0x1B: + case 0x1C: + case 0x1D: + case 0x1E: + case 0x1F: + case ' ': + case '!': + case '"': + case '#': + case '$': + case '%': + case '&': + case '\'': + case '(': + case ')': + case '*': + case '+': + case ',': + case '-': + case '.': + case '/': + case ':': + case ';': + case '<': + case '=': + case '>': + case '?': + case '@': + case '[': + case ']': + case '^': + case '`': + case '{': + case '|': + case '}': + case '~': + case 0x7F: goto yy497; + case '\\': goto yy147; + default: goto yy61; + } +yy497: +#line 176 "src/parser_scan.re" + { NEWTOKEN(PSI_T_SIZEOF); goto start; } +#line 7322 "src/parser_scan.c" +yy498: + yyaccept = 57; + yych = *(mrk = ++cur); + switch (yych) { + case 0x00: + case 0x01: + case 0x02: + case 0x03: + case 0x04: + case 0x05: + case 0x06: + case 0x07: + case 0x08: + case '\t': + case '\n': + case '\v': + case '\f': + case '\r': + case 0x0E: + case 0x0F: + case 0x10: + case 0x11: + case 0x12: + case 0x13: + case 0x14: + case 0x15: + case 0x16: + case 0x17: + case 0x18: + case 0x19: + case 0x1A: + case 0x1B: + case 0x1C: + case 0x1D: + case 0x1E: + case 0x1F: + case ' ': + case '!': + case '"': + case '#': + case '$': + case '%': + case '&': + case '\'': + case '(': + case ')': + case '*': + case '+': + case ',': + case '-': + case '.': + case '/': + case ':': + case ';': + case '<': + case '=': + case '>': + case '?': + case '@': + case '[': + case ']': + case '^': + case '`': + case '{': + case '|': + case '}': + case '~': + case 0x7F: goto yy499; + case '\\': goto yy147; + default: goto yy61; + } +yy499: +#line 179 "src/parser_scan.re" + { NEWTOKEN(PSI_T_STRUCT); goto start; } +#line 7397 "src/parser_scan.c" +yy500: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'f': goto yy531; + default: goto yy62; + } +yy501: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'e': goto yy533; + default: goto yy62; + } +yy502: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'l': goto yy534; + default: goto yy62; + } +yy503: + yyaccept = 58; + yych = *(mrk = ++cur); + switch (yych) { + case 0x00: + case 0x01: + case 0x02: + case 0x03: + case 0x04: + case 0x05: + case 0x06: + case 0x07: + case 0x08: + case '\t': + case '\n': + case '\v': + case '\f': + case '\r': + case 0x0E: + case 0x0F: + case 0x10: + case 0x11: + case 0x12: + case 0x13: + case 0x14: + case 0x15: + case 0x16: + case 0x17: + case 0x18: + case 0x19: + case 0x1A: + case 0x1B: + case 0x1C: + case 0x1D: + case 0x1E: + case 0x1F: + case ' ': + case '!': + case '"': + case '#': + case '$': + case '%': + case '&': + case '\'': + case '(': + case ')': + case '*': + case '+': + case ',': + case '-': + case '.': + case '/': + case ':': + case ';': + case '<': + case '=': + case '>': + case '?': + case '@': + case '[': + case ']': + case '^': + case '`': + case '{': + case '|': + case '}': + case '~': + case 0x7F: goto yy504; + case '\\': goto yy147; + default: goto yy61; + } +yy504: +#line 231 "src/parser_scan.re" + { NEWTOKEN(PSI_T_BOOLVAL); goto start; } +#line 7493 "src/parser_scan.c" +yy505: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'E': + case 'e': goto yy535; + default: goto yy62; + } +yy506: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'K': + case 'k': goto yy537; + default: goto yy62; + } +yy507: + yyaccept = 59; + yych = *(mrk = ++cur); + switch (yych) { + case 0x00: + case 0x01: + case 0x02: + case 0x03: + case 0x04: + case 0x05: + case 0x06: + case 0x07: + case 0x08: + case '\t': + case '\n': + case '\v': + case '\f': + case '\r': + case 0x0E: + case 0x0F: + case 0x10: + case 0x11: + case 0x12: + case 0x13: + case 0x14: + case 0x15: + case 0x16: + case 0x17: + case 0x18: + case 0x19: + case 0x1A: + case 0x1B: + case 0x1C: + case 0x1D: + case 0x1E: + case 0x1F: + case ' ': + case '!': + case '"': + case '#': + case '$': + case '%': + case '&': + case '\'': + case '(': + case ')': + case '*': + case '+': + case ',': + case '-': + case '.': + case '/': + case ':': + case ';': + case '<': + case '=': + case '>': + case '?': + case '@': + case '[': + case ']': + case '^': + case '`': + case '{': + case '|': + case '}': + case '~': + case 0x7F: goto yy508; + case '\\': goto yy147; + default: goto yy61; + } +yy508: +#line 200 "src/parser_scan.re" + { NEWTOKEN(PSI_T_DEFINED); goto start; } +#line 7584 "src/parser_scan.c" +yy509: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'L': + case 'l': goto yy539; + default: goto yy62; + } +yy510: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'N': + case 'n': goto yy541; + default: goto yy62; + } +yy511: + yyaccept = 60; + yych = *(mrk = ++cur); + switch (yych) { + case 0x00: + case 0x01: + case 0x02: + case 0x03: + case 0x04: + case 0x05: + case 0x06: + case 0x07: + case 0x08: + case '\t': + case '\n': + case '\v': + case '\f': + case '\r': + case 0x0E: + case 0x0F: + case 0x10: + case 0x11: + case 0x12: + case 0x13: + case 0x14: + case 0x15: + case 0x16: + case 0x17: + case 0x18: + case 0x19: + case 0x1A: + case 0x1B: + case 0x1C: + case 0x1D: + case 0x1E: + case 0x1F: + case ' ': + case '!': + case '"': + case '#': + case '$': + case '%': + case '&': + case '\'': + case '(': + case ')': + case '*': + case '+': + case ',': + case '-': + case '.': + case '/': + case ':': + case ';': + case '<': + case '=': + case '>': + case '?': + case '@': + case '[': + case ']': + case '^': + case '`': + case '{': + case '|': + case '}': + case '~': + case 0x7F: goto yy512; + case '\\': goto yy147; + case '_': goto yy543; + default: goto yy61; + } +yy512: +#line 204 "src/parser_scan.re" + { NEWTOKEN(PSI_T_INCLUDE); goto start; } +#line 7676 "src/parser_scan.c" +yy513: + yyaccept = 61; + yych = *(mrk = ++cur); + switch (yych) { + case 0x00: + case 0x01: + case 0x02: + case 0x03: + case 0x04: + case 0x05: + case 0x06: + case 0x07: + case 0x08: + case '\t': + case '\n': + case '\v': + case '\f': + case '\r': + case 0x0E: + case 0x0F: + case 0x10: + case 0x11: + case 0x12: + case 0x13: + case 0x14: + case 0x15: + case 0x16: + case 0x17: + case 0x18: + case 0x19: + case 0x1A: + case 0x1B: + case 0x1C: + case 0x1D: + case 0x1E: + case 0x1F: + case ' ': + case '!': + case '"': + case '#': + case '$': + case '%': + case '&': + case '\'': + case '(': + case ')': + case '*': + case '+': + case ',': + case '-': + case '.': + case '/': + case ':': + case ';': + case '<': + case '=': + case '>': + case '?': + case '@': + case '[': + case ']': + case '^': + case '`': + case '{': + case '|': + case '}': + case '~': + case 0x7F: goto yy514; + case '\\': goto yy147; + default: goto yy61; + } +yy514: +#line 228 "src/parser_scan.re" + { NEWTOKEN(PSI_T_PATHVAL); goto start; } +#line 7751 "src/parser_scan.c" +yy515: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'S': + case 's': goto yy544; + default: goto yy62; + } +yy516: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'E': + case 'e': goto yy545; + default: goto yy62; + } +yy517: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'Y': + case 'y': goto yy546; + default: goto yy62; + } +yy518: + yyaccept = 62; + yych = *(mrk = ++cur); + switch (yych) { + case 0x00: + case 0x01: + case 0x02: + case 0x03: + case 0x04: + case 0x05: + case 0x06: + case 0x07: + case 0x08: + case '\t': + case '\n': + case '\v': + case '\f': + case '\r': + case 0x0E: + case 0x0F: + case 0x10: + case 0x11: + case 0x12: + case 0x13: + case 0x14: + case 0x15: + case 0x16: + case 0x17: + case 0x18: + case 0x19: + case 0x1A: + case 0x1B: + case 0x1C: + case 0x1D: + case 0x1E: + case 0x1F: + case ' ': + case '!': + case '"': + case '#': + case '$': + case '%': + case '&': + case '\'': + case '(': + case ')': + case '*': + case '+': + case ',': + case '-': + case '.': + case '/': + case ':': + case ';': + case '<': + case '=': + case '>': + case '?': + case '@': + case '[': + case ']': + case '^': + case '`': + case '{': + case '|': + case '}': + case '~': + case 0x7F: goto yy519; + case '\\': goto yy147; + default: goto yy61; + } +yy519: +#line 242 "src/parser_scan.re" + { NEWTOKEN(PSI_T_TO_BOOL); goto start; } +#line 7850 "src/parser_scan.c" +yy520: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'T': + case 't': goto yy548; + default: goto yy62; + } +yy521: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'C': + case 'c': goto yy550; + default: goto yy62; + } +yy522: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'N': + case 'n': goto yy551; + default: goto yy62; + } +yy523: + yyaccept = 63; + yych = *(mrk = ++cur); + switch (yych) { + case 0x00: + case 0x01: + case 0x02: + case 0x03: + case 0x04: + case 0x05: + case 0x06: + case 0x07: + case 0x08: + case '\t': + case '\n': + case '\v': + case '\f': + case '\r': + case 0x0E: + case 0x0F: + case 0x10: + case 0x11: + case 0x12: + case 0x13: + case 0x14: + case 0x15: + case 0x16: + case 0x17: + case 0x18: + case 0x19: + case 0x1A: + case 0x1B: + case 0x1C: + case 0x1D: + case 0x1E: + case 0x1F: + case ' ': + case '!': + case '"': + case '#': + case '$': + case '%': + case '&': + case '\'': + case '(': + case ')': + case '*': + case '+': + case ',': + case '-': + case '.': + case '/': + case ':': + case ';': + case '<': + case '=': + case '>': + case '?': + case '@': + case '[': + case ']': + case '^': + case '`': + case '{': + case '|': + case '}': + case '~': + case 0x7F: goto yy524; + case '\\': goto yy147; + default: goto yy61; + } +yy524: +#line 202 "src/parser_scan.re" + { NEWTOKEN(PSI_T_WARNING); goto start; } +#line 7949 "src/parser_scan.c" +yy525: + yyaccept = 34; + yych = *(mrk = ++cur); + switch (yych) { + case 0x00: + case 0x01: + case 0x02: + case 0x03: + case 0x04: + case 0x05: + case 0x06: + case 0x07: + case 0x08: + case '\t': + case '\n': + case '\v': + case '\f': + case '\r': + case 0x0E: + case 0x0F: + case 0x10: + case 0x11: + case 0x12: + case 0x13: + case 0x14: + case 0x15: + case 0x16: + case 0x17: + case 0x18: + case 0x19: + case 0x1A: + case 0x1B: + case 0x1C: + case 0x1D: + case 0x1E: + case 0x1F: + case ' ': + case '!': + case '"': + case '#': + case '$': + case '%': + case '&': + case '\'': + case '(': + case ')': + case '*': + case '+': + case ',': + case '-': + case '.': + case '/': + case ':': + case ';': + case '<': + case '=': + case '>': + case '?': + case '@': + case '[': + case ']': + case '^': + case '`': + case '{': + case '|': + case '}': + case '~': + case 0x7F: goto yy422; + case '\\': goto yy147; + default: goto yy61; + } +yy526: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'b': goto yy552; + default: goto yy62; + } +yy527: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 's': goto yy553; + default: goto yy62; + } +yy528: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'i': goto yy554; + default: goto yy62; + } +yy529: + yyaccept = 3; + mrk = ++cur; + if (lim <= cur) CHECKEOF();; + yych = *cur; + switch (yych) { + case 0x00: + case 0x01: + case 0x02: + case 0x03: + case 0x04: + case 0x05: + case 0x06: + case 0x07: + case 0x08: + case '\t': + case '\n': + case '\v': + case '\f': + case '\r': + case 0x0E: + case 0x0F: + case 0x10: + case 0x11: + case 0x12: + case 0x13: + case 0x14: + case 0x15: + case 0x16: + case 0x17: + case 0x18: + case 0x19: + case 0x1A: + case 0x1B: + case 0x1C: + case 0x1D: + case 0x1E: + case 0x1F: + case ' ': + case '!': + case '"': + case '#': + case '$': + case '%': + case '&': + case '\'': + case '(': + case ')': + case '*': + case '+': + case ',': + case '-': + case '.': + case '/': + case ':': + case ';': + case '<': + case '=': + case '>': + case '?': + case '@': + case '[': + case ']': + case '^': + case '`': + case '{': + case '|': + case '}': + case '~': + case 0x7F: goto yy55; + case '\\': goto yy147; + case 'o': goto yy555; + default: goto yy529; + } +yy531: + yyaccept = 64; + yych = *(mrk = ++cur); + switch (yych) { + case 0x00: + case 0x01: + case 0x02: + case 0x03: + case 0x04: + case 0x05: + case 0x06: + case 0x07: + case 0x08: + case '\t': + case '\n': + case '\v': + case '\f': + case '\r': + case 0x0E: + case 0x0F: + case 0x10: + case 0x11: + case 0x12: + case 0x13: + case 0x14: + case 0x15: + case 0x16: + case 0x17: + case 0x18: + case 0x19: + case 0x1A: + case 0x1B: + case 0x1C: + case 0x1D: + case 0x1E: + case 0x1F: + case ' ': + case '!': + case '"': + case '#': + case '$': + case '%': + case '&': + case '\'': + case '(': + case ')': + case '*': + case '+': + case ',': + case '-': + case '.': + case '/': + case ':': + case ';': + case '<': + case '=': + case '>': + case '?': + case '@': + case '[': + case ']': + case '^': + case '`': + case '{': + case '|': + case '}': + case '~': + case 0x7F: goto yy532; + case '\\': goto yy147; + default: goto yy61; + } +yy532: +#line 178 "src/parser_scan.re" + { NEWTOKEN(PSI_T_TYPEDEF); goto start; } +#line 8190 "src/parser_scan.c" +yy533: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'd': goto yy557; + default: goto yy62; + } +yy534: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'e': goto yy559; + default: goto yy62; + } +yy535: + yyaccept = 65; + yych = *(mrk = ++cur); + switch (yych) { + case 0x00: + case 0x01: + case 0x02: + case 0x03: + case 0x04: + case 0x05: + case 0x06: + case 0x07: + case 0x08: + case '\t': + case '\n': + case '\v': + case '\f': + case '\r': + case 0x0E: + case 0x0F: + case 0x10: + case 0x11: + case 0x12: + case 0x13: + case 0x14: + case 0x15: + case 0x16: + case 0x17: + case 0x18: + case 0x19: + case 0x1A: + case 0x1B: + case 0x1C: + case 0x1D: + case 0x1E: + case 0x1F: + case ' ': + case '!': + case '"': + case '#': + case '$': + case '%': + case '&': + case '\'': + case '(': + case ')': + case '*': + case '+': + case ',': + case '-': + case '.': + case '/': + case ':': + case ';': + case '<': + case '=': + case '>': + case '?': + case '@': + case '[': + case ']': + case '^': + case '`': + case '{': + case '|': + case '}': + case '~': + case 0x7F: goto yy536; + case '\\': goto yy147; + default: goto yy61; + } +yy536: +#line 210 "src/parser_scan.re" + { NEWTOKEN(PSI_T_CALLABLE); goto start; } +#line 8279 "src/parser_scan.c" +yy537: + yyaccept = 66; + yych = *(mrk = ++cur); + switch (yych) { + case 0x00: + case 0x01: + case 0x02: + case 0x03: + case 0x04: + case 0x05: + case 0x06: + case 0x07: + case 0x08: + case '\t': + case '\n': + case '\v': + case '\f': + case '\r': + case 0x0E: + case 0x0F: + case 0x10: + case 0x11: + case 0x12: + case 0x13: + case 0x14: + case 0x15: + case 0x16: + case 0x17: + case 0x18: + case 0x19: + case 0x1A: + case 0x1B: + case 0x1C: + case 0x1D: + case 0x1E: + case 0x1F: + case ' ': + case '!': + case '"': + case '#': + case '$': + case '%': + case '&': + case '\'': + case '(': + case ')': + case '*': + case '+': + case ',': + case '-': + case '.': + case '/': + case ':': + case ';': + case '<': + case '=': + case '>': + case '?': + case '@': + case '[': + case ']': + case '^': + case '`': + case '{': + case '|': + case '}': + case '~': + case 0x7F: goto yy538; + case '\\': goto yy147; + default: goto yy61; + } +yy538: +#line 214 "src/parser_scan.re" + { NEWTOKEN(PSI_T_CALLBACK); goto start; } +#line 8354 "src/parser_scan.c" +yy539: + yyaccept = 67; + yych = *(mrk = ++cur); + switch (yych) { + case 0x00: + case 0x01: + case 0x02: + case 0x03: + case 0x04: + case 0x05: + case 0x06: + case 0x07: + case 0x08: + case '\t': + case '\n': + case '\v': + case '\f': + case '\r': + case 0x0E: + case 0x0F: + case 0x10: + case 0x11: + case 0x12: + case 0x13: + case 0x14: + case 0x15: + case 0x16: + case 0x17: + case 0x18: + case 0x19: + case 0x1A: + case 0x1B: + case 0x1C: + case 0x1D: + case 0x1E: + case 0x1F: + case ' ': + case '!': + case '"': + case '#': + case '$': + case '%': + case '&': + case '\'': + case '(': + case ')': + case '*': + case '+': + case ',': + case '-': + case '.': + case '/': + case ':': + case ';': + case '<': + case '=': + case '>': + case '?': + case '@': + case '[': + case ']': + case '^': + case '`': + case '{': + case '|': + case '}': + case '~': + case 0x7F: goto yy540; + case '\\': goto yy147; + default: goto yy61; + } +yy540: +#line 230 "src/parser_scan.re" + { NEWTOKEN(PSI_T_FLOATVAL); goto start; } +#line 8429 "src/parser_scan.c" +yy541: + yyaccept = 68; + yych = *(mrk = ++cur); + switch (yych) { + case 0x00: + case 0x01: + case 0x02: + case 0x03: + case 0x04: + case 0x05: + case 0x06: + case 0x07: + case 0x08: + case '\t': + case '\n': + case '\v': + case '\f': + case '\r': + case 0x0E: + case 0x0F: + case 0x10: + case 0x11: + case 0x12: + case 0x13: + case 0x14: + case 0x15: + case 0x16: + case 0x17: + case 0x18: + case 0x19: + case 0x1A: + case 0x1B: + case 0x1C: + case 0x1D: + case 0x1E: + case 0x1F: + case ' ': + case '!': + case '"': + case '#': + case '$': + case '%': + case '&': + case '\'': + case '(': + case ')': + case '*': + case '+': + case ',': + case '-': + case '.': + case '/': + case ':': + case ';': + case '<': + case '=': + case '>': + case '?': + case '@': + case '[': + case ']': + case '^': + case '`': + case '{': + case '|': + case '}': + case '~': + case 0x7F: goto yy542; + case '\\': goto yy147; + default: goto yy61; + } +yy542: +#line 216 "src/parser_scan.re" + { NEWTOKEN(PSI_T_FUNCTION); goto start; } +#line 8504 "src/parser_scan.c" +yy543: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'N': + case 'n': goto yy561; + default: goto yy62; + } +yy544: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'E': + case 'e': goto yy562; + default: goto yy62; + } +yy545: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'R': + case 'r': goto yy563; + default: goto yy62; + } +yy546: + yyaccept = 69; + yych = *(mrk = ++cur); + switch (yych) { + case 0x00: + case 0x01: + case 0x02: + case 0x03: + case 0x04: + case 0x05: + case 0x06: + case 0x07: + case 0x08: + case '\t': + case '\n': + case '\v': + case '\f': + case '\r': + case 0x0E: + case 0x0F: + case 0x10: + case 0x11: + case 0x12: + case 0x13: + case 0x14: + case 0x15: + case 0x16: + case 0x17: + case 0x18: + case 0x19: + case 0x1A: + case 0x1B: + case 0x1C: + case 0x1D: + case 0x1E: + case 0x1F: + case ' ': + case '!': + case '"': + case '#': + case '$': + case '%': + case '&': + case '\'': + case '(': + case ')': + case '*': + case '+': + case ',': + case '-': + case '.': + case '/': + case ':': + case ';': + case '<': + case '=': + case '>': + case '?': + case '@': + case '[': + case ']': + case '^': + case '`': + case '{': + case '|': + case '}': + case '~': + case 0x7F: goto yy547; + case '\\': goto yy147; + default: goto yy61; + } +yy547: +#line 238 "src/parser_scan.re" + { NEWTOKEN(PSI_T_TO_ARRAY); goto start; } +#line 8603 "src/parser_scan.c" +yy548: + yyaccept = 70; + yych = *(mrk = ++cur); + switch (yych) { + case 0x00: + case 0x01: + case 0x02: + case 0x03: + case 0x04: + case 0x05: + case 0x06: + case 0x07: + case 0x08: + case '\t': + case '\n': + case '\v': + case '\f': + case '\r': + case 0x0E: + case 0x0F: + case 0x10: + case 0x11: + case 0x12: + case 0x13: + case 0x14: + case 0x15: + case 0x16: + case 0x17: + case 0x18: + case 0x19: + case 0x1A: + case 0x1B: + case 0x1C: + case 0x1D: + case 0x1E: + case 0x1F: + case ' ': + case '!': + case '"': + case '#': + case '$': + case '%': + case '&': + case '\'': + case '(': + case ')': + case '*': + case '+': + case ',': + case '-': + case '.': + case '/': + case ':': + case ';': + case '<': + case '=': + case '>': + case '?': + case '@': + case '[': + case ']': + case '^': + case '`': + case '{': + case '|': + case '}': + case '~': + case 0x7F: goto yy549; + case '\\': goto yy147; + default: goto yy61; + } +yy549: +#line 241 "src/parser_scan.re" + { NEWTOKEN(PSI_T_TO_FLOAT); goto start; } +#line 8678 "src/parser_scan.c" +yy550: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'T': + case 't': goto yy564; + default: goto yy62; + } +yy551: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'G': + case 'g': goto yy566; + default: goto yy62; + } +yy552: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'u': goto yy568; + default: goto yy62; + } +yy553: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'i': goto yy569; + default: goto yy62; + } +yy554: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'c': goto yy570; + default: goto yy62; + } +yy555: + yyaccept = 3; + mrk = ++cur; + if (lim <= cur) CHECKEOF();; + yych = *cur; + switch (yych) { + case 0x00: + case 0x01: + case 0x02: + case 0x03: + case 0x04: + case 0x05: + case 0x06: + case 0x07: + case 0x08: + case '\t': + case '\n': + case '\v': + case '\f': + case '\r': + case 0x0E: + case 0x0F: + case 0x10: + case 0x11: + case 0x12: + case 0x13: + case 0x14: + case 0x15: + case 0x16: + case 0x17: + case 0x18: + case 0x19: + case 0x1A: + case 0x1B: + case 0x1C: + case 0x1D: + case 0x1E: + case 0x1F: + case ' ': + case '!': + case '"': + case '#': + case '$': + case '%': + case '&': + case '\'': + case '(': + case ')': + case '*': + case '+': + case ',': + case '-': + case '.': + case '/': + case ':': + case ';': + case '<': + case '=': + case '>': + case '?': + case '@': + case '[': + case ']': + case '^': + case '`': + case '{': + case '|': + case '}': + case '~': + case 0x7F: goto yy55; + case '\\': goto yy147; + case 'n': goto yy571; + case 'o': goto yy555; + default: goto yy529; + } +yy557: + yyaccept = 71; + yych = *(mrk = ++cur); + switch (yych) { + case 0x00: + case 0x01: + case 0x02: + case 0x03: + case 0x04: + case 0x05: + case 0x06: + case 0x07: + case 0x08: + case '\t': + case '\n': + case '\v': + case '\f': + case '\r': + case 0x0E: + case 0x0F: + case 0x10: + case 0x11: + case 0x12: + case 0x13: + case 0x14: + case 0x15: + case 0x16: + case 0x17: + case 0x18: + case 0x19: + case 0x1A: + case 0x1B: + case 0x1C: + case 0x1D: + case 0x1E: + case 0x1F: + case ' ': + case '!': + case '"': + case '#': + case '$': + case '%': + case '&': + case '\'': + case '(': + case ')': + case '*': + case '+': + case ',': + case '-': + case '.': + case '/': + case ':': + case ';': + case '<': + case '=': + case '>': + case '?': + case '@': + case '[': + case ']': + case '^': + case '`': + case '{': + case '|': + case '}': + case '~': + case 0x7F: goto yy558; + case '\\': goto yy147; + default: goto yy61; + } +yy558: +#line 191 "src/parser_scan.re" + { NEWTOKEN(PSI_T_UNSIGNED); goto start; } +#line 8865 "src/parser_scan.c" +yy559: + yyaccept = 72; + yych = *(mrk = ++cur); + switch (yych) { + case 0x00: + case 0x01: + case 0x02: + case 0x03: + case 0x04: + case 0x05: + case 0x06: + case 0x07: + case 0x08: + case '\t': + case '\n': + case '\v': + case '\f': + case '\r': + case 0x0E: + case 0x0F: + case 0x10: + case 0x11: + case 0x12: + case 0x13: + case 0x14: + case 0x15: + case 0x16: + case 0x17: + case 0x18: + case 0x19: + case 0x1A: + case 0x1B: + case 0x1C: + case 0x1D: + case 0x1E: + case 0x1F: + case ' ': + case '!': + case '"': + case '#': + case '$': + case '%': + case '&': + case '\'': + case '(': + case ')': + case '*': + case '+': + case ',': + case '-': + case '.': + case '/': + case ':': + case ';': + case '<': + case '=': + case '>': + case '?': + case '@': + case '[': + case ']': + case '^': + case '`': + case '{': + case '|': + case '}': + case '~': + case 0x7F: goto yy560; + case '\\': goto yy147; + default: goto yy61; + } +yy560: +#line 175 "src/parser_scan.re" + { NEWTOKEN(PSI_T_VOLATILE); goto start; } +#line 8940 "src/parser_scan.c" +yy561: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'E': + case 'e': goto yy572; + default: goto yy62; + } +yy562: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'R': + case 'r': goto yy573; + default: goto yy62; + } +yy563: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'T': + case 't': goto yy574; + default: goto yy62; + } +yy564: + yyaccept = 73; + yych = *(mrk = ++cur); + switch (yych) { + case 0x00: + case 0x01: + case 0x02: + case 0x03: + case 0x04: + case 0x05: + case 0x06: + case 0x07: + case 0x08: + case '\t': + case '\n': + case '\v': + case '\f': + case '\r': + case 0x0E: + case 0x0F: + case 0x10: + case 0x11: + case 0x12: + case 0x13: + case 0x14: + case 0x15: + case 0x16: + case 0x17: + case 0x18: + case 0x19: + case 0x1A: + case 0x1B: + case 0x1C: + case 0x1D: + case 0x1E: + case 0x1F: + case ' ': + case '!': + case '"': + case '#': + case '$': + case '%': + case '&': + case '\'': + case '(': + case ')': + case '*': + case '+': + case ',': + case '-': + case '.': + case '/': + case ':': + case ';': + case '<': + case '=': + case '>': + case '?': + case '@': + case '[': + case ']': + case '^': + case '`': + case '{': + case '|': + case '}': + case '~': + case 0x7F: goto yy565; + case '\\': goto yy147; + default: goto yy61; + } +yy565: +#line 237 "src/parser_scan.re" + { NEWTOKEN(PSI_T_TO_OBJECT); goto start; } +#line 9039 "src/parser_scan.c" +yy566: + yyaccept = 74; + yych = *(mrk = ++cur); + switch (yych) { + case 0x00: + case 0x01: + case 0x02: + case 0x03: + case 0x04: + case 0x05: + case 0x06: + case 0x07: + case 0x08: + case '\t': + case '\n': + case '\v': + case '\f': + case '\r': + case 0x0E: + case 0x0F: + case 0x10: + case 0x11: + case 0x12: + case 0x13: + case 0x14: + case 0x15: + case 0x16: + case 0x17: + case 0x18: + case 0x19: + case 0x1A: + case 0x1B: + case 0x1C: + case 0x1D: + case 0x1E: + case 0x1F: + case ' ': + case '!': + case '"': + case '#': + case '$': + case '%': + case '&': + case '\'': + case '(': + case ')': + case '*': + case '+': + case ',': + case '-': + case '.': + case '/': + case ':': + case ';': + case '<': + case '=': + case '>': + case '?': + case '@': + case '[': + case ']': + case '^': + case '`': + case '{': + case '|': + case '}': + case '~': + case 0x7F: goto yy567; + case '\\': goto yy147; + default: goto yy61; + } +yy567: +#line 239 "src/parser_scan.re" + { NEWTOKEN(PSI_T_TO_STRING); goto start; } +#line 9114 "src/parser_scan.c" +yy568: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 't': goto yy576; + default: goto yy62; + } +yy569: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'o': goto yy577; + default: goto yy62; + } +yy570: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 't': goto yy578; + default: goto yy62; + } +yy571: + yyaccept = 3; + mrk = ++cur; + if (lim <= cur) CHECKEOF();; + yych = *cur; + switch (yych) { + case 0x00: + case 0x01: + case 0x02: + case 0x03: + case 0x04: + case 0x05: + case 0x06: + case 0x07: + case 0x08: + case '\t': + case '\n': + case '\v': + case '\f': + case '\r': + case 0x0E: + case 0x0F: + case 0x10: + case 0x11: + case 0x12: + case 0x13: + case 0x14: + case 0x15: + case 0x16: + case 0x17: + case 0x18: + case 0x19: + case 0x1A: + case 0x1B: + case 0x1C: + case 0x1D: + case 0x1E: + case 0x1F: + case ' ': + case '!': + case '"': + case '#': + case '$': + case '%': + case '&': + case '\'': + case '(': + case ')': + case '*': + case '+': + case ',': + case '-': + case '.': + case '/': + case ':': + case ';': + case '<': + case '=': + case '>': + case '?': + case '@': + case '[': + case ']': + case '^': + case '`': + case '{': + case '|': + case '}': + case '~': + case 0x7F: goto yy55; + case '\\': goto yy147; + case 'c': goto yy580; + case 'o': goto yy555; + default: goto yy529; + } +yy572: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'X': + case 'x': goto yy581; + default: goto yy62; + } +yy573: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'T': + case 't': goto yy582; + default: goto yy62; + } +yy574: + yyaccept = 75; + yych = *(mrk = ++cur); + switch (yych) { + case 0x00: + case 0x01: + case 0x02: + case 0x03: + case 0x04: + case 0x05: + case 0x06: + case 0x07: + case 0x08: + case '\t': + case '\n': + case '\v': + case '\f': + case '\r': + case 0x0E: + case 0x0F: + case 0x10: + case 0x11: + case 0x12: + case 0x13: + case 0x14: + case 0x15: + case 0x16: + case 0x17: + case 0x18: + case 0x19: + case 0x1A: + case 0x1B: + case 0x1C: + case 0x1D: + case 0x1E: + case 0x1F: + case ' ': + case '!': + case '"': + case '#': + case '$': + case '%': + case '&': + case '\'': + case '(': + case ')': + case '*': + case '+': + case ',': + case '-': + case '.': + case '/': + case ':': + case ';': + case '<': + case '=': + case '>': + case '?': + case '@': + case '[': + case ']': + case '^': + case '`': + case '{': + case '|': + case '}': + case '~': + case 0x7F: goto yy575; + case '\\': goto yy147; + default: goto yy61; + } +yy575: +#line 220 "src/parser_scan.re" + { NEWTOKEN(PSI_T_PRE_ASSERT); goto start; } +#line 9301 "src/parser_scan.c" +yy576: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'e': goto yy584; + default: goto yy62; + } +yy577: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'n': goto yy585; + default: goto yy62; + } +yy578: + yyaccept = 76; + yych = *(mrk = ++cur); + switch (yych) { + case 0x00: + case 0x01: + case 0x02: + case 0x03: + case 0x04: + case 0x05: + case 0x06: + case 0x07: + case 0x08: + case '\t': + case '\n': + case '\v': + case '\f': + case '\r': + case 0x0E: + case 0x0F: + case 0x10: + case 0x11: + case 0x12: + case 0x13: + case 0x14: + case 0x15: + case 0x16: + case 0x17: + case 0x18: + case 0x19: + case 0x1A: + case 0x1B: + case 0x1C: + case 0x1D: + case 0x1E: + case 0x1F: + case ' ': + case '!': + case '"': + case '#': + case '$': + case '%': + case '&': + case '\'': + case '(': + case ')': + case '*': + case '+': + case ',': + case '-': + case '.': + case '/': + case ':': + case ';': + case '<': + case '=': + case '>': + case '?': + case '@': + case '[': + case ']': + case '^': + case '`': + case '{': + case '|': + case '}': + case '~': + case 0x7F: goto yy579; + case '\\': goto yy147; + default: goto yy61; + } +yy579: +#line 172 "src/parser_scan.re" + { NEWTOKEN(PSI_T_CPP_RESTRICT); goto start; } +#line 9390 "src/parser_scan.c" +yy580: + yyaccept = 3; + mrk = ++cur; + if (lim <= cur) CHECKEOF();; + yych = *cur; + switch (yych) { + case 0x00: + case 0x01: + case 0x02: + case 0x03: + case 0x04: + case 0x05: + case 0x06: + case 0x07: + case 0x08: + case '\t': + case '\n': + case '\v': + case '\f': + case '\r': + case 0x0E: + case 0x0F: + case 0x10: + case 0x11: + case 0x12: + case 0x13: + case 0x14: + case 0x15: + case 0x16: + case 0x17: + case 0x18: + case 0x19: + case 0x1A: + case 0x1B: + case 0x1C: + case 0x1D: + case 0x1E: + case 0x1F: + case ' ': + case '!': + case '"': + case '#': + case '$': + case '%': + case '&': + case '\'': + case '(': + case ')': + case '*': + case '+': + case ',': + case '-': + case '.': + case '/': + case ':': + case ';': + case '<': + case '=': + case '>': + case '?': + case '@': + case '[': + case ']': + case '^': + case '`': + case '{': + case '|': + case '}': + case '~': + case 0x7F: goto yy55; + case '\\': goto yy147; + case 'e': goto yy586; + case 'o': goto yy555; + default: goto yy529; + } +yy581: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case 'T': + case 't': goto yy588; + default: goto yy62; + } +yy582: + yyaccept = 77; + yych = *(mrk = ++cur); + switch (yych) { + case 0x00: + case 0x01: + case 0x02: + case 0x03: + case 0x04: + case 0x05: + case 0x06: + case 0x07: + case 0x08: + case '\t': + case '\n': + case '\v': + case '\f': + case '\r': + case 0x0E: + case 0x0F: + case 0x10: + case 0x11: + case 0x12: + case 0x13: + case 0x14: + case 0x15: + case 0x16: + case 0x17: + case 0x18: + case 0x19: + case 0x1A: + case 0x1B: + case 0x1C: + case 0x1D: + case 0x1E: + case 0x1F: + case ' ': + case '!': + case '"': + case '#': + case '$': + case '%': + case '&': + case '\'': + case '(': + case ')': + case '*': + case '+': + case ',': + case '-': + case '.': + case '/': + case ':': + case ';': + case '<': + case '=': + case '>': + case '?': + case '@': + case '[': + case ']': + case '^': + case '`': + case '{': + case '|': + case '}': + case '~': + case 0x7F: goto yy583; + case '\\': goto yy147; + default: goto yy61; + } +yy583: +#line 221 "src/parser_scan.re" + { NEWTOKEN(PSI_T_POST_ASSERT); goto start; } +#line 9548 "src/parser_scan.c" +yy584: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case '_': goto yy590; + default: goto yy62; + } +yy585: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case '_': goto yy591; + default: goto yy62; + } +yy586: + yyaccept = 78; + mrk = ++cur; + if (lim <= cur) CHECKEOF();; + yych = *cur; + switch (yych) { + case 0x00: + case 0x01: + case 0x02: + case 0x03: + case 0x04: + case 0x05: + case 0x06: + case 0x07: + case 0x08: + case '\t': + case '\n': + case '\v': + case '\f': + case '\r': + case 0x0E: + case 0x0F: + case 0x10: + case 0x11: + case 0x12: + case 0x13: + case 0x14: + case 0x15: + case 0x16: + case 0x17: + case 0x18: + case 0x19: + case 0x1A: + case 0x1B: + case 0x1C: + case 0x1D: + case 0x1E: + case 0x1F: + case ' ': + case '!': + case '"': + case '#': + case '$': + case '%': + case '&': + case '\'': + case '(': + case ')': + case '*': + case '+': + case ',': + case '-': + case '.': + case '/': + case ':': + case ';': + case '<': + case '=': + case '>': + case '?': + case '@': + case '[': + case ']': + case '^': + case '`': + case '{': + case '|': + case '}': + case '~': + case 0x7F: goto yy587; + case '\\': goto yy147; + case 'o': goto yy555; + default: goto yy529; + } +yy587: +#line 170 "src/parser_scan.re" + { NEWTOKEN(PSI_T_PRAGMA_ONCE); goto start; } +#line 9640 "src/parser_scan.c" +yy588: + yyaccept = 79; + yych = *(mrk = ++cur); + switch (yych) { + case 0x00: + case 0x01: + case 0x02: + case 0x03: + case 0x04: + case 0x05: + case 0x06: + case 0x07: + case 0x08: + case '\t': + case '\n': + case '\v': + case '\f': + case '\r': + case 0x0E: + case 0x0F: + case 0x10: + case 0x11: + case 0x12: + case 0x13: + case 0x14: + case 0x15: + case 0x16: + case 0x17: + case 0x18: + case 0x19: + case 0x1A: + case 0x1B: + case 0x1C: + case 0x1D: + case 0x1E: + case 0x1F: + case ' ': + case '!': + case '"': + case '#': + case '$': + case '%': + case '&': + case '\'': + case '(': + case ')': + case '*': + case '+': + case ',': + case '-': + case '.': + case '/': + case ':': + case ';': + case '<': + case '=': + case '>': + case '?': + case '@': + case '[': + case ']': + case '^': + case '`': + case '{': + case '|': + case '}': + case '~': + case 0x7F: goto yy589; + case '\\': goto yy147; + default: goto yy61; + } +yy589: +#line 205 "src/parser_scan.re" + { NEWTOKEN(PSI_T_INCLUDE_NEXT); goto start; } +#line 9715 "src/parser_scan.c" +yy590: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case '_': goto yy592; + default: goto yy62; + } +yy591: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case '_': goto yy593; + default: goto yy62; + } +yy592: + yyaccept = 3; + yych = *(mrk = ++cur); + switch (yych) { + case '\t': + case '\f': + case ' ': goto yy595; + case '(': goto yy597; + default: goto yy62; + } +yy593: + yyaccept = 80; + yych = *(mrk = ++cur); + switch (yych) { + case 0x00: + case 0x01: + case 0x02: + case 0x03: + case 0x04: + case 0x05: + case 0x06: + case 0x07: + case 0x08: + case '\t': + case '\n': + case '\v': + case '\f': + case '\r': + case 0x0E: + case 0x0F: + case 0x10: + case 0x11: + case 0x12: + case 0x13: + case 0x14: + case 0x15: + case 0x16: + case 0x17: + case 0x18: + case 0x19: + case 0x1A: + case 0x1B: + case 0x1C: + case 0x1D: + case 0x1E: + case 0x1F: + case ' ': + case '!': + case '"': + case '#': + case '$': + case '%': + case '&': + case '\'': + case '(': + case ')': + case '*': + case '+': + case ',': + case '-': + case '.': + case '/': + case ':': + case ';': + case '<': + case '=': + case '>': + case '?': + case '@': + case '[': + case ']': + case '^': + case '`': + case '{': + case '|': + case '}': + case '~': + case 0x7F: goto yy594; + case '\\': goto yy147; + default: goto yy61; + } +yy594: +#line 173 "src/parser_scan.re" + { NEWTOKEN(PSI_T_CPP_EXTENSION); goto start; } +#line 9814 "src/parser_scan.c" +yy595: + ++cur; + if ((lim - cur) < 2) CHECKEOF();; + yych = *cur; + switch (yych) { + case '\t': + case '\f': + case ' ': goto yy595; + case '(': goto yy597; + default: goto yy114; + } +yy597: + yych = *++cur; + switch (yych) { + case '(': goto yy598; + default: goto yy114; + } +yy598: + ++cur; +#line 247 "src/parser_scan.re" + { parens = 2; goto cpp_attribute; } +#line 9836 "src/parser_scan.c" + } +#line 253 "src/parser_scan.re" + + + character: ; + +#line 9843 "src/parser_scan.c" + { + unsigned char yych; + if (lim <= cur) CHECKEOF();; + yych = *cur; + switch (yych) { + case '\n': + case '\r': goto yy604; + case '\'': goto yy606; + case '\\': goto yy608; + default: goto yy602; + } +yy602: + ++cur; +#line 271 "src/parser_scan.re" + { escaped = false; goto character; } +#line 9859 "src/parser_scan.c" +yy604: + ++cur; +#line 258 "src/parser_scan.re" + { NEWLINE(); goto character; } +#line 9864 "src/parser_scan.c" +yy606: + ++cur; +#line 260 "src/parser_scan.re" + { + if (escaped) { + escaped = false; + goto character; + } + cur -= 1; + NEWTOKEN(PSI_T_QUOTED_CHAR); + cur += 1; + token->flags = char_width; + goto start; + } +#line 9879 "src/parser_scan.c" +yy608: + ++cur; +#line 259 "src/parser_scan.re" + { escaped = !escaped; goto character; } +#line 9884 "src/parser_scan.c" + } +#line 273 "src/parser_scan.re" + + + string: ; + +#line 9891 "src/parser_scan.c" + { + unsigned char yych; + if (lim <= cur) CHECKEOF();; + yych = *cur; + switch (yych) { + case '\n': + case '\r': goto yy614; + case '"': goto yy616; + case '\\': goto yy618; + default: goto yy612; + } +yy612: + ++cur; +#line 291 "src/parser_scan.re" + { escaped = false; goto string; } +#line 9907 "src/parser_scan.c" +yy614: + ++cur; +#line 278 "src/parser_scan.re" + { NEWLINE(); goto string; } +#line 9912 "src/parser_scan.c" +yy616: + ++cur; +#line 280 "src/parser_scan.re" + { + if (escaped) { + escaped = false; + goto string; + } + cur -= 1; + NEWTOKEN(PSI_T_QUOTED_STRING); + cur += 1; + token->flags = char_width; + goto start; + } +#line 9927 "src/parser_scan.c" +yy618: + ++cur; +#line 279 "src/parser_scan.re" + { escaped = !escaped; goto string; } +#line 9932 "src/parser_scan.c" + } +#line 293 "src/parser_scan.re" + + + comment: ; + +#line 9939 "src/parser_scan.c" + { + unsigned char yych; + if ((lim - cur) < 2) CHECKEOF();; + yych = *cur; + switch (yych) { + case '\n': + case '\r': goto yy624; + case '*': goto yy626; + default: goto yy622; + } +yy622: + ++cur; +yy623: +#line 300 "src/parser_scan.re" + { goto comment; } +#line 9955 "src/parser_scan.c" +yy624: + ++cur; +#line 298 "src/parser_scan.re" + { NEWLINE(); goto comment; } +#line 9960 "src/parser_scan.c" +yy626: + yych = *++cur; + switch (yych) { + case '/': goto yy627; + default: goto yy623; + } +yy627: + ++cur; +#line 299 "src/parser_scan.re" + { NEWTOKEN(PSI_T_COMMENT); goto start; } +#line 9971 "src/parser_scan.c" + } +#line 302 "src/parser_scan.re" + + + comment_sl: ; + +#line 9978 "src/parser_scan.c" + { + unsigned char yych; + if (lim <= cur) CHECKEOF();; + yych = *cur; + switch (yych) { + case '\n': + case '\r': goto yy633; + default: goto yy631; + } +yy631: + ++cur; +#line 308 "src/parser_scan.re" + { goto comment_sl; } +#line 9992 "src/parser_scan.c" +yy633: + ++cur; +#line 307 "src/parser_scan.re" + { NEWTOKEN(PSI_T_COMMENT); tok = cur - 1; NEWTOKEN(PSI_T_EOL); NEWLINE(); goto start; } +#line 9997 "src/parser_scan.c" + } +#line 310 "src/parser_scan.re" + + + cpp_attribute: ; + + +#line 10005 "src/parser_scan.c" + { + unsigned char yych; + if (lim <= cur) CHECKEOF();; + yych = *cur; + switch (yych) { + case '\n': + case '\r': goto yy639; + case '(': goto yy641; + case ')': goto yy643; + default: goto yy637; + } +yy637: + ++cur; +#line 319 "src/parser_scan.re" + { goto cpp_attribute; } +#line 10021 "src/parser_scan.c" +yy639: + ++cur; +#line 318 "src/parser_scan.re" + { NEWLINE(); goto cpp_attribute; } +#line 10026 "src/parser_scan.c" +yy641: + ++cur; +#line 316 "src/parser_scan.re" + { ++parens; goto cpp_attribute; } +#line 10031 "src/parser_scan.c" +yy643: + ++cur; +#line 317 "src/parser_scan.re" + { if (parens == 1) { NEWTOKEN(PSI_T_CPP_ATTRIBUTE); goto start; } else { --parens; goto cpp_attribute; } } +#line 10036 "src/parser_scan.c" + } +#line 321 "src/parser_scan.re" + +error: ; + + P->error(PSI_DATA(P), token, PSI_WARNING, "PSI syntax error: unexpected input (%d) '%.*s' at col %tu", + token->type, token->text->len, token->text->val, tok - eol + 1); + psi_plist_free(tokens); + return NULL; + +done: ; + + PSI_DEBUG_PRINT(P, "PSI: EOF cur=%p lim=%p\n", cur, lim); + + return tokens; +} diff --git a/src/parser_scan.re b/src/parser_scan.re new file mode 100644 index 0000000..7ba49b2 --- /dev/null +++ b/src/parser_scan.re @@ -0,0 +1,334 @@ +/******************************************************************************* + Copyright (c) 2016, Michael Wallner . + All rights reserved. + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions are met: + + * Redistributions of source code must retain the above copyright notice, + this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE + FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL + DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, + OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE + OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +*******************************************************************************/ + +#include + +#include "parser.h" +#include "plist.h" + +/*!max:re2c*/ +#ifndef YYMAXFILL +# define YYMAXFILL 256 +#endif + +size_t psi_parser_maxfill(void) { + return YYMAXFILL; +} + +#define NEWLINE() \ + eol = cur; \ + ++I->lines + +#define NEWTOKEN(t) do { \ + if (t == PSI_T_COMMENT || t == PSI_T_WHITESPACE) { \ + token = psi_token_init(t, "", 0, tok - eol + 1, I->lines, I->file); \ + } else { \ + token = psi_token_init(t, tok, cur - tok, tok - eol + 1, I->lines, I->file); \ + } \ + tokens = psi_plist_add(tokens, &token); \ + PSI_DEBUG_PRINT(P, "PSI: scanned < "); \ + PSI_DEBUG_DUMP(P, psi_token_dump, token); \ +} while(0) + +#define CHECKEOF() if (cur >= lim - YYMAXFILL) goto done + +struct psi_plist *psi_parser_scan(struct psi_parser *P, struct psi_parser_input *I) +{ + struct psi_plist *tokens; + struct psi_token *token; + const char *tok, *cur, *lim, *mrk, *eol, *ctxmrk; + unsigned parens; + bool escaped; + token_t char_width; + + PSI_DEBUG_PRINT(P, "PSI: scanning %s\n", I->file->val); + + tok = mrk = eol = cur = I->buffer; + lim = I->buffer + I->length + YYMAXFILL; + I->lines = 1; + tokens = psi_plist_init((psi_plist_dtor) psi_token_free); + + start: ; + char_width = 1; + ctxmrk = NULL; + tok = cur; + + (void) ctxmrk; + + /*!re2c + + re2c:indent:top = 2; + re2c:define:YYCTYPE = "unsigned char"; + re2c:define:YYCURSOR = cur; + re2c:define:YYLIMIT = lim; + re2c:define:YYMARKER = mrk; + re2c:define:YYCTXMARKER = ctxmrk; + re2c:define:YYFILL = "CHECKEOF();"; + re2c:yyfill:parameter = 0; + + W = [a-zA-Z0-9_\x80-\xff]; + SP = [ \t\f]; + EOL = [\r\n]; + NAME = [a-zA-Z_\x80-\xff] W*; + NSNAME = (NAME)? ("\\" NAME)+; + DOLLAR_NAME = '$' W+; + CPP_HEADER = "<" [-._/a-zA-Z0-9]+ ">"; + CPP_ATTRIBUTE = "__attribute__" SP* "(("; + + DEC_CONST = [1-9] [0-9]*; + OCT_CONST = "0" [0-7]*; + HEX_CONST = '0x' [0-9a-fA-F]+; + INT_CONST = (DEC_CONST | OCT_CONST | HEX_CONST); + + FLT_HEX_CONST = HEX_CONST ("." [0-9a-fA-F]*)? 'p' [+-]? [0-9]+; + FLT_DEC_NUM = "0" | DEC_CONST; + FLT_DEC_CONST = (FLT_DEC_NUM ("." [0-9]*)? 'e' [+-]? [0-9]+) | (FLT_DEC_NUM "." [0-9]*) | ("." [0-9]+); + FLT_CONST = (FLT_DEC_CONST | FLT_HEX_CONST); + + INT_CONST { NEWTOKEN(PSI_T_NUMBER); token->flags = PSI_NUMBER_INT; goto start; } + INT_CONST / 'u' { NEWTOKEN(PSI_T_NUMBER); token->flags = PSI_NUMBER_INT | PSI_NUMBER_U; cur += 1; goto start; } + INT_CONST / 'l' { NEWTOKEN(PSI_T_NUMBER); token->flags = PSI_NUMBER_INT | PSI_NUMBER_L; cur += 1; goto start; } + INT_CONST / ('lu' | 'ul') { NEWTOKEN(PSI_T_NUMBER); token->flags = PSI_NUMBER_INT | PSI_NUMBER_UL; cur += 2; goto start; } + INT_CONST / ('llu' | 'ull') { NEWTOKEN(PSI_T_NUMBER); token->flags = PSI_NUMBER_INT | PSI_NUMBER_ULL; cur += 3; goto start; } + + FLT_CONST { NEWTOKEN(PSI_T_NUMBER); token->flags = PSI_NUMBER_FLT; goto start; } + FLT_CONST / 'f' { NEWTOKEN(PSI_T_NUMBER); token->flags = PSI_NUMBER_FLT | PSI_NUMBER_F; cur += 1; goto start; } + FLT_CONST / 'l' { NEWTOKEN(PSI_T_NUMBER); token->flags = PSI_NUMBER_FLT | PSI_NUMBER_L; cur += 1; goto start; } + FLT_CONST / 'df' { NEWTOKEN(PSI_T_NUMBER); token->flags = PSI_NUMBER_FLT | PSI_NUMBER_DF; cur += 2; goto start; } + FLT_CONST / 'dd' { NEWTOKEN(PSI_T_NUMBER); token->flags = PSI_NUMBER_FLT | PSI_NUMBER_DD; cur += 2; goto start; } + FLT_CONST / 'dl' { NEWTOKEN(PSI_T_NUMBER); token->flags = PSI_NUMBER_FLT | PSI_NUMBER_DL; cur += 2; goto start; } + + "'" { escaped = false; tok += 1; goto character; } + "\"" { escaped = false; tok += 1; goto string; } + "u8" / "\"" { char_width = 1; } + "u" / ['"] { char_width = 2; } + "U" / ['"] { char_width = 4; } + "L" / ['"] { char_width = sizeof(wchar_t)/8; } + + "/*" { goto comment; } + "//" { goto comment_sl; } + + "##" { NEWTOKEN(PSI_T_CPP_PASTE); goto start; } + "#" { NEWTOKEN(PSI_T_HASH); goto start; } + "(" { NEWTOKEN(PSI_T_LPAREN); goto start; } + ")" { NEWTOKEN(PSI_T_RPAREN); goto start; } + ";" { NEWTOKEN(PSI_T_EOS); goto start; } + "," { NEWTOKEN(PSI_T_COMMA); goto start; } + ":" { NEWTOKEN(PSI_T_COLON); goto start; } + "{" { NEWTOKEN(PSI_T_LBRACE); goto start; } + "}" { NEWTOKEN(PSI_T_RBRACE); goto start; } + "[" { NEWTOKEN(PSI_T_LBRACKET); goto start; } + "]" { NEWTOKEN(PSI_T_RBRACKET); goto start; } + "!=" { NEWTOKEN(PSI_T_CMP_NE); goto start; } + "==" { NEWTOKEN(PSI_T_CMP_EQ); goto start; } + "&&" { NEWTOKEN(PSI_T_AND); goto start; } + "||" { NEWTOKEN(PSI_T_OR); goto start; } + "=" { NEWTOKEN(PSI_T_EQUALS); goto start; } + "*" { NEWTOKEN(PSI_T_ASTERISK); goto start; } + "~" { NEWTOKEN(PSI_T_TILDE); goto start; } + "!" { NEWTOKEN(PSI_T_NOT); goto start; } + "%" { NEWTOKEN(PSI_T_MODULO); goto start; } + "&" { NEWTOKEN(PSI_T_AMPERSAND); goto start; } + "+" { NEWTOKEN(PSI_T_PLUS); goto start; } + "-" { NEWTOKEN(PSI_T_MINUS); goto start; } + "/" { NEWTOKEN(PSI_T_SLASH); goto start; } + "\\" { NEWTOKEN(PSI_T_BSLASH); goto start; } + "|" { NEWTOKEN(PSI_T_PIPE); goto start; } + "^" { NEWTOKEN(PSI_T_CARET); goto start; } + "<<" { NEWTOKEN(PSI_T_LSHIFT); goto start; } + ">>" { NEWTOKEN(PSI_T_RSHIFT); goto start; } + "<=" { NEWTOKEN(PSI_T_CMP_LE); goto start; } + ">=" { NEWTOKEN(PSI_T_CMP_GE); goto start; } + "<" { NEWTOKEN(PSI_T_LCHEVR); goto start; } + ">" { NEWTOKEN(PSI_T_RCHEVR); goto start; } + "." { NEWTOKEN(PSI_T_PERIOD); goto start; } + "..." { NEWTOKEN(PSI_T_ELLIPSIS); goto start; } + "?" { NEWTOKEN(PSI_T_IIF); goto start; } + "pragma" { NEWTOKEN(PSI_T_PRAGMA); goto start; } + "pragma" W+ "once" { NEWTOKEN(PSI_T_PRAGMA_ONCE); goto start; } + "__"? "inline" { NEWTOKEN(PSI_T_CPP_INLINE); goto start; } + "__restrict" { NEWTOKEN(PSI_T_CPP_RESTRICT); goto start; } + "__extension__" { NEWTOKEN(PSI_T_CPP_EXTENSION); goto start; } + "__asm" ("__")? { NEWTOKEN(PSI_T_CPP_ASM); goto start; } + "volatile" { NEWTOKEN(PSI_T_VOLATILE); goto start; } + "sizeof" { NEWTOKEN(PSI_T_SIZEOF); goto start; } + "line" { NEWTOKEN(PSI_T_LINE); goto start; } + "typedef" { NEWTOKEN(PSI_T_TYPEDEF); goto start; } + "struct" { NEWTOKEN(PSI_T_STRUCT); goto start; } + "union" { NEWTOKEN(PSI_T_UNION); goto start; } + "enum" { NEWTOKEN(PSI_T_ENUM); goto start; } + "const" { NEWTOKEN(PSI_T_CONST); goto start; } + "void" { NEWTOKEN(PSI_T_VOID); goto start; } + "bool" { NEWTOKEN(PSI_T_BOOL); goto start; } + "char" { NEWTOKEN(PSI_T_CHAR); goto start; } + "short" { NEWTOKEN(PSI_T_SHORT); goto start; } + "int" { NEWTOKEN(PSI_T_INT); goto start; } + "long" { NEWTOKEN(PSI_T_LONG); goto start; } + "float" { NEWTOKEN(PSI_T_FLOAT); goto start; } + "double" { NEWTOKEN(PSI_T_DOUBLE); goto start; } + "unsigned" { NEWTOKEN(PSI_T_UNSIGNED); goto start; } + "signed" { NEWTOKEN(PSI_T_SIGNED); goto start; } + 'IF' { NEWTOKEN(PSI_T_IF); goto start; } + 'IFDEF' { NEWTOKEN(PSI_T_IFDEF); goto start; } + 'IFNDEF' { NEWTOKEN(PSI_T_IFNDEF); goto start; } + 'ELSE' { NEWTOKEN(PSI_T_ELSE); goto start; } + 'ELIF' { NEWTOKEN(PSI_T_ELIF); goto start; } + 'ENDIF' { NEWTOKEN(PSI_T_ENDIF); goto start; } + 'DEFINE' { NEWTOKEN(PSI_T_DEFINE); goto start; } + 'DEFINED' { NEWTOKEN(PSI_T_DEFINED); goto start; } + 'UNDEF' { NEWTOKEN(PSI_T_UNDEF); goto start; } + 'WARNING' { NEWTOKEN(PSI_T_WARNING); goto start; } + 'ERROR' { NEWTOKEN(PSI_T_ERROR); goto start; } + 'INCLUDE' { NEWTOKEN(PSI_T_INCLUDE); goto start; } + 'INCLUDE_NEXT' { NEWTOKEN(PSI_T_INCLUDE_NEXT); goto start; } + 'TRUE' { NEWTOKEN(PSI_T_TRUE); goto start; } + 'FALSE' { NEWTOKEN(PSI_T_FALSE); goto start; } + 'NULL' { NEWTOKEN(PSI_T_NULL); goto start; } + 'MIXED' { NEWTOKEN(PSI_T_MIXED); goto start; } + 'CALLABLE' { NEWTOKEN(PSI_T_CALLABLE); goto start; } + 'STRING' { NEWTOKEN(PSI_T_STRING); goto start; } + 'ARRAY' { NEWTOKEN(PSI_T_ARRAY); goto start; } + 'OBJECT' { NEWTOKEN(PSI_T_OBJECT); goto start; } + 'CALLBACK' { NEWTOKEN(PSI_T_CALLBACK); goto start; } + 'STATIC' { NEWTOKEN(PSI_T_STATIC); goto start; } + 'FUNCTION' { NEWTOKEN(PSI_T_FUNCTION); goto start; } + 'LIB' { NEWTOKEN(PSI_T_LIB); goto start; } + 'LET' { NEWTOKEN(PSI_T_LET); goto start; } + 'SET' { NEWTOKEN(PSI_T_SET); goto start; } + 'PRE_ASSERT' { NEWTOKEN(PSI_T_PRE_ASSERT); goto start; } + 'POST_ASSERT' { NEWTOKEN(PSI_T_POST_ASSERT); goto start; } + 'RETURN' { NEWTOKEN(PSI_T_RETURN); goto start; } + 'AS' { NEWTOKEN(PSI_T_AS); goto start; } + 'FREE' { NEWTOKEN(PSI_T_FREE); goto start; } + 'TEMP' { NEWTOKEN(PSI_T_TEMP); goto start; } + 'STRLEN' { NEWTOKEN(PSI_T_STRLEN); goto start; } + 'STRVAL' { NEWTOKEN(PSI_T_STRVAL); goto start; } + 'PATHVAL' { NEWTOKEN(PSI_T_PATHVAL); goto start; } + 'INTVAL' { NEWTOKEN(PSI_T_INTVAL); goto start; } + 'FLOATVAL' { NEWTOKEN(PSI_T_FLOATVAL); goto start; } + 'BOOLVAL' { NEWTOKEN(PSI_T_BOOLVAL); goto start; } + 'ARRVAL' { NEWTOKEN(PSI_T_ARRVAL); goto start; } + 'OBJVAL' { NEWTOKEN(PSI_T_OBJVAL); goto start; } + 'ZVAL' { NEWTOKEN(PSI_T_ZVAL); goto start; } + 'COUNT' { NEWTOKEN(PSI_T_COUNT); goto start; } + 'CALLOC' { NEWTOKEN(PSI_T_CALLOC); goto start; } + 'TO_OBJECT' { NEWTOKEN(PSI_T_TO_OBJECT); goto start; } + 'TO_ARRAY' { NEWTOKEN(PSI_T_TO_ARRAY); goto start; } + 'TO_STRING' { NEWTOKEN(PSI_T_TO_STRING); goto start; } + 'TO_INT' { NEWTOKEN(PSI_T_TO_INT); goto start; } + 'TO_FLOAT' { NEWTOKEN(PSI_T_TO_FLOAT); goto start; } + 'TO_BOOL' { NEWTOKEN(PSI_T_TO_BOOL); goto start; } + NAME { NEWTOKEN(PSI_T_NAME); goto start; } + NSNAME { NEWTOKEN(PSI_T_NSNAME); goto start; } + DOLLAR_NAME { NEWTOKEN(PSI_T_DOLLAR_NAME); goto start; } + CPP_HEADER { tok += 1; cur -= 1; NEWTOKEN(PSI_T_CPP_HEADER); cur += 1; goto start; } + CPP_ATTRIBUTE { parens = 2; goto cpp_attribute; } + EOL { NEWTOKEN(PSI_T_EOL); NEWLINE(); goto start; } + SP+ { NEWTOKEN(PSI_T_WHITESPACE); goto start; } + [^] { CHECKEOF(); NEWTOKEN(-2); goto error; } + * { CHECKEOF(); NEWTOKEN(-1); goto error; } + + */ + + character: ; + /*!re2c + + EOL { NEWLINE(); goto character; } + "\\" { escaped = !escaped; goto character; } + "'" { + if (escaped) { + escaped = false; + goto character; + } + cur -= 1; + NEWTOKEN(PSI_T_QUOTED_CHAR); + cur += 1; + token->flags = char_width; + goto start; + } + * { escaped = false; goto character; } + + */ + + string: ; + /*!re2c + + EOL { NEWLINE(); goto string; } + "\\" { escaped = !escaped; goto string; } + "\"" { + if (escaped) { + escaped = false; + goto string; + } + cur -= 1; + NEWTOKEN(PSI_T_QUOTED_STRING); + cur += 1; + token->flags = char_width; + goto start; + } + * { escaped = false; goto string; } + + */ + + comment: ; + /*!re2c + + EOL { NEWLINE(); goto comment; } + "*" "/" { NEWTOKEN(PSI_T_COMMENT); goto start; } + * { goto comment; } + + */ + + comment_sl: ; + /*!re2c + + EOL { NEWTOKEN(PSI_T_COMMENT); tok = cur - 1; NEWTOKEN(PSI_T_EOL); NEWLINE(); goto start; } + * { goto comment_sl; } + + */ + + cpp_attribute: ; + + /*!re2c + + "(" { ++parens; goto cpp_attribute; } + ")" { if (parens == 1) { NEWTOKEN(PSI_T_CPP_ATTRIBUTE); goto start; } else { --parens; goto cpp_attribute; } } + EOL { NEWLINE(); goto cpp_attribute; } + * { goto cpp_attribute; } + + */ +error: ; + + P->error(PSI_DATA(P), token, PSI_WARNING, "PSI syntax error: unexpected input (%d) '%.*s' at col %tu", + token->type, token->text->len, token->text->val, tok - eol + 1); + psi_plist_free(tokens); + return NULL; + +done: ; + + PSI_DEBUG_PRINT(P, "PSI: EOF cur=%p lim=%p\n", cur, lim); + + return tokens; +} diff --git a/src/types/const.c b/src/types/const.c index 1afbac0..b839d5f 100644 --- a/src/types/const.c +++ b/src/types/const.c @@ -58,7 +58,9 @@ void psi_const_free(struct psi_const **constant_ptr) void psi_const_dump(int fd, struct psi_const *cnst) { dprintf(fd, "const "); - psi_impl_type_dump(fd, cnst->type); + if (cnst->type) { + psi_impl_type_dump(fd, cnst->type); + } dprintf(fd, " %s = ", cnst->name->val); psi_impl_def_val_dump(fd, cnst->val); dprintf(fd, ";"); diff --git a/src/types/cpp_exp.c b/src/types/cpp_exp.c index 89a8f0e..bfff0d1 100644 --- a/src/types/cpp_exp.c +++ b/src/types/cpp_exp.c @@ -184,9 +184,8 @@ void psi_cpp_exp_exec(struct psi_cpp_exp *exp, struct psi_cpp *cpp, struct psi_d exp->token->text->val, cpp->level, cpp->skip); #if PSI_CPP_DEBUG - fflush(stderr); - dprintf(2, "PSI: CPP exec -> "); - psi_cpp_exp_dump(2, exp); + PSI_DEBUG_PRINT(cpp->parser, "PSI: CPP exec -> "); + PSI_DEBUG_DUMP(cpp->parser, psi_cpp_exp_dump, exp); #endif switch (exp->type) { @@ -298,21 +297,24 @@ void psi_cpp_exp_exec(struct psi_cpp_exp *exp, struct psi_cpp *cpp, struct psi_d case PSI_T_INCLUDE: if (!cpp->skip) { if (!psi_cpp_include(cpp, exp->data.tok, PSI_CPP_INCLUDE)) { - D->error(D, exp->token, PSI_WARNING, "Failed to include %s", exp->data.tok->text->val); + D->error(D, exp->token, PSI_WARNING, "Failed to include %s: %s", + exp->data.tok->text->val, strerror(errno)); } } break; case PSI_T_INCLUDE_NEXT: if (!cpp->skip) { if (!psi_cpp_include(cpp, exp->data.tok, PSI_CPP_INCLUDE_NEXT)) { - D->error(D, exp->token, PSI_WARNING, "Failed to include %s", exp->data.tok->text->val); + D->error(D, exp->token, PSI_WARNING, "Failed to include next %s: %s", + exp->data.tok->text->val, strerror(errno)); } } break; case PSI_T_IMPORT: if (!cpp->skip) { if (!psi_cpp_include(cpp, exp->data.tok, PSI_CPP_INCLUDE_ONCE)) { - D->error(D, exp->token, PSI_WARNING, "Failed to include %s", exp->data.tok->text->val); + D->error(D, exp->token, PSI_WARNING, "Failed to include once %s: %s", + exp->data.tok->text->val, strerror(errno)); } } break; diff --git a/src/types/cpp_macro_call.c b/src/types/cpp_macro_call.c index fb32bc0..e1277ca 100644 --- a/src/types/cpp_macro_call.c +++ b/src/types/cpp_macro_call.c @@ -47,7 +47,7 @@ struct psi_cpp_macro_call *psi_cpp_macro_call_copy( } if (call->args) { copy->args = psi_plist_copy(call->args, - (void (*)(void*)) psi_token_copy_ctor); + (void (*)(void*)) psi_num_exp_copy_ctor); } return copy; } diff --git a/src/types/cpp_macro_call.h b/src/types/cpp_macro_call.h index 63e6414..11e2be9 100644 --- a/src/types/cpp_macro_call.h +++ b/src/types/cpp_macro_call.h @@ -29,10 +29,13 @@ struct psi_token; struct psi_plist; +#include "builtin.h" + struct psi_cpp_macro_call { struct psi_token *token; zend_string *name; struct psi_plist *args; + struct psi_builtin *builtin; }; struct psi_cpp_macro_call *psi_cpp_macro_call_init(zend_string *name, diff --git a/src/types/decl.c b/src/types/decl.c index 5872a32..780b924 100644 --- a/src/types/decl.c +++ b/src/types/decl.c @@ -111,32 +111,20 @@ static inline bool psi_decl_validate_func(struct psi_data *data, for (redir = &psi_func_redirs[0]; redir->name; ++redir) { if (!strcmp(func->var->name->val, redir->name)) { decl->sym = redir->func; + break; } } if (!decl->sym) { - size_t i = 0; - void *dl; - - while (!decl->sym && psi_plist_get(data->file.dlopened, i++, &dl)) { - decl->sym = dlsym(dl, decl->redir ? decl->redir->val : func->var->name->val); - } + decl->sym = psi_dlsym(data->file.dlopened, func->var->name->val, + decl->redir ? decl->redir->val : NULL); } if (!decl->sym) { -#ifndef RTLD_NEXT -# define RTLD_NEXT ((void *) -1l) -#endif -#ifndef RTLD_DEFAULT -# define RTLD_DEFAULT ((void *) 0) -#endif - decl->sym = dlsym(RTLD_DEFAULT, decl->redir ? decl->redir->val : func->var->name->val); - if (!decl->sym) { - data->error(data, func->token, PSI_WARNING, - "Failed to locate symbol '%s(%s)': %s", - func->var->name->val, - decl->redir ? decl->redir->val : "", - dlerror() ?: "not found"); - return false; - } + data->error(data, func->token, PSI_WARNING, + "Failed to locate symbol '%s(%s)': %s", + func->var->name->val, + decl->redir ? decl->redir->val : "", + dlerror() ?: "not found"); + return false; } return true; } @@ -218,4 +206,3 @@ struct psi_decl_arg *psi_decl_get_arg(struct psi_decl *decl, struct psi_decl_var return psi_decl_arg_get_by_var(var, decl->args, decl->func); } - diff --git a/src/types/decl_arg.c b/src/types/decl_arg.c index 91a5366..816ab8a 100644 --- a/src/types/decl_arg.c +++ b/src/types/decl_arg.c @@ -57,17 +57,17 @@ void psi_decl_arg_free(struct psi_decl_arg **arg_ptr) } } -void psi_decl_arg_dump(int fd, struct psi_decl_arg *arg, unsigned level) +void psi_decl_arg_dump(struct psi_dump *dump, struct psi_decl_arg *arg, unsigned level) { if (arg->type->type == PSI_T_FUNCTION) { - psi_decl_type_dump(fd, arg->type->real.func->func->type, level); + psi_decl_type_dump(dump, arg->type->real.func->func->type, level); if (arg->type->real.func->func->type->type == PSI_T_FUNCTION) { - dprintf(fd, "("); + PSI_DUMP(dump, "("); } - dprintf(fd, " %s(*%s)", + PSI_DUMP(dump, " %s(*%s)", psi_t_indirection(arg->var->pointer_level - !! arg->var->array_size), arg->var->name->val); - dprintf(fd, "("); + PSI_DUMP(dump, "("); if (arg->type->real.func->args) { size_t j = 0; struct psi_decl_arg *farg; @@ -75,40 +75,40 @@ void psi_decl_arg_dump(int fd, struct psi_decl_arg *arg, unsigned level) ++level; while (psi_plist_get(arg->type->real.func->args, j++, &farg)) { if (j > 1) { - dprintf(fd, ", "); + PSI_DUMP(dump, ", "); } - psi_decl_arg_dump(fd, farg, level); + psi_decl_arg_dump(dump, farg, level); } --level; if (arg->type->real.func->varargs) { - dprintf(fd, ", ..."); + PSI_DUMP(dump, ", ..."); } } - dprintf(fd, ")"); + PSI_DUMP(dump, ")"); if (arg->type->real.func->func->type->type == PSI_T_FUNCTION) { struct psi_decl *decl = arg->type->real.func->func->type->real.func; - dprintf(fd, "("); + PSI_DUMP(dump, "("); if (decl->args) { size_t i; struct psi_decl_arg *arg; for (i = 0; psi_plist_get(decl->args, i, &arg); ++i) { if (i) { - dprintf(fd, ", "); + PSI_DUMP(dump, ", "); } - psi_decl_arg_dump(fd, arg, 0); + psi_decl_arg_dump(dump, arg, 0); } if (decl->varargs) { - dprintf(fd, ", ..."); + PSI_DUMP(dump, ", ..."); } } - dprintf(fd, "))"); + PSI_DUMP(dump, "))"); } } else { - psi_decl_type_dump(fd, arg->type, level); - dprintf(fd, " "); - psi_decl_var_dump(fd, arg->var); + psi_decl_type_dump(dump, arg->type, level); + PSI_DUMP(dump, " "); + psi_decl_var_dump(dump, arg->var); } } diff --git a/src/types/decl_extvar.c b/src/types/decl_extvar.c index 21323da..2430454 100644 --- a/src/types/decl_extvar.c +++ b/src/types/decl_extvar.c @@ -27,9 +27,7 @@ #include "php_psi.h" -#include #include - #include #include "data.h" @@ -71,27 +69,14 @@ bool psi_decl_extvar_validate(struct psi_data *data, } if (!evar->sym) { - size_t i = 0; - void *dl; - - while (!evar->sym && psi_plist_get(data->file.dlopened, i++, &dl)) { - evar->sym = dlsym(dl, evar->arg->var->name->val); - } + evar->sym = psi_dlsym(data->file.dlopened, evar->arg->var->name->val, + evar->redir ? evar->redir->val : NULL); } if (!evar->sym) { -#ifndef RTLD_NEXT -# define RTLD_NEXT ((void *) -1l) -#endif -#ifndef RTLD_DEFAULT -# define RTLD_DEFAULT ((void *) 0) -#endif - evar->sym = dlsym(RTLD_DEFAULT, evar->arg->var->name->val); - if (!evar->sym) { - data->error(data, evar->arg->var->token, PSI_WARNING, - "Failed to locate symbol '%s': %s", evar->arg->var->name->val, - dlerror() ?: "not found"); - return false; - } + data->error(data, evar->arg->var->token, PSI_WARNING, + "Failed to locate symbol '%s': %s", evar->arg->var->name->val, + dlerror() ?: "not found"); + return false; } evar->getter = psi_decl_extvar_getter(evar); @@ -182,4 +167,3 @@ bool psi_decl_extvar_is_blacklisted(const char *name) } return false; } - diff --git a/src/types/decl_extvar.h b/src/types/decl_extvar.h index 7c0675f..696567e 100644 --- a/src/types/decl_extvar.h +++ b/src/types/decl_extvar.h @@ -37,6 +37,7 @@ struct psi_decl_extvar { struct psi_decl *getter; struct psi_decl *setter; size_t size; + zend_string *redir; void *sym; void *info; }; diff --git a/src/types/impl_def_val.c b/src/types/impl_def_val.c index fc3bc60..eec90e6 100644 --- a/src/types/impl_def_val.c +++ b/src/types/impl_def_val.c @@ -29,6 +29,8 @@ #include #include +#define PSI_IMPL_DEF_VAL_DEBUG 0 + struct psi_impl_def_val *psi_impl_def_val_init(token_t t, void *data) { struct psi_impl_def_val *def = pecalloc(1, sizeof(*def), 1); @@ -95,15 +97,16 @@ bool psi_impl_def_val_validate(struct psi_data *data, } } - switch (type->type) { + switch (type ? type->type : PSI_T_MIXED) { case PSI_T_BOOL: val->ival.zend.bval = val->type == PSI_T_TRUE ? 1 : 0; + return true; break; /* macros */ case PSI_T_NUMBER: if (val->type == PSI_T_NUMBER) { - token_t typ = psi_num_exp_exec(val->data.num, &val->ival, NULL, scope->defs); + token_t typ = psi_num_exp_exec(val->data.num, &val->ival, NULL, scope->cpp); switch (typ) { case PSI_T_FLOAT: @@ -115,7 +118,14 @@ bool psi_impl_def_val_validate(struct psi_data *data, zend_string_release(type->name); type->name = zend_string_init_interned(ZEND_STRL("float"), 1); break; + case PSI_T_UINT64: + if (val->ival.u64 > ZEND_LONG_MAX) { + data->error(data, val->token, PSI_WARNING, + "Integer too big for signed representation: '%" PRIu64 "'", + val->ival.u64); + } default: + /* FIXME big integers */ val->type = PSI_T_INT; type->type = PSI_T_INT; zend_string_release(type->name); @@ -130,7 +140,12 @@ bool psi_impl_def_val_validate(struct psi_data *data, case PSI_T_INT: if (val->type == PSI_T_NUMBER) { val->type = PSI_T_INT; - val->ival.zend.lval = psi_num_exp_get_long(val->data.num, NULL, scope->defs); + val->ival.zend.lval = psi_num_exp_get_long(val->data.num, NULL, scope->cpp); +#if PSI_IMPL_DEF_VAL_DEBUG + PSI_DEBUG_PRINT(data, "PSI: NUMBER (long) %" PRIi64 " from ", val->ival.zend.lval); + PSI_DEBUG_DUMP(data, psi_num_exp_dump, val->data.num); + PSI_DEBUG_PRINT(data, "\n"); +#endif psi_num_exp_free(&val->data.num); } if (val->type == PSI_T_INT) { @@ -142,7 +157,12 @@ bool psi_impl_def_val_validate(struct psi_data *data, case PSI_T_DOUBLE: if (val->type == PSI_T_NUMBER) { val->type = PSI_T_DOUBLE; - val->ival.dval = psi_num_exp_get_double(val->data.num, NULL, scope->defs); + val->ival.dval = psi_num_exp_get_double(val->data.num, NULL, scope->cpp); +#if PSI_IMPL_DEF_VAL_DEBUG + PSI_DEBUG_PRINT(data, "PSI: NUMBER (double) %" PRIdval " from ", val->ival.dval); + PSI_DEBUG_DUMP(data, psi_num_exp_dump, val->data.num); + PSI_DEBUG_PRINT(data, "\n"); +#endif psi_num_exp_free(&val->data.num); } if (val->type == PSI_T_DOUBLE) { @@ -156,11 +176,62 @@ bool psi_impl_def_val_validate(struct psi_data *data, } break; + case PSI_T_MIXED: + switch (val->type) { + case PSI_T_TRUE: + case PSI_T_FALSE: + case PSI_T_NULL: + case PSI_T_STRING: + case PSI_T_FLOAT: + case PSI_T_DOUBLE: + case PSI_T_INT: + return true; + default: + break; + } + if (val->type == PSI_T_NUMBER) { + token_t typ = psi_num_exp_exec(val->data.num, &val->ival, NULL, scope->cpp); + + switch (typ) { + case PSI_T_FLOAT: +#if HAVE_LONG_DOUBLE + case PSI_T_LONG_DOUBLE: +#endif + promote_double: ; + psi_calc_cast(typ, &val->ival, PSI_T_DOUBLE, &val->ival); + /* no break */ + case PSI_T_DOUBLE: + val->type = PSI_T_DOUBLE; + return true; + case PSI_T_UINT64: + if (val->ival.u64 > (uint64_t) ZEND_LONG_MAX) { + if (val->ival.u64 > (1LU<<53)) { + char buf[0x20]; + + /* convert to string */ + char *res = zend_print_ulong_to_buf(buf + sizeof(buf) - 1, val->ival.u64); + val->type = PSI_T_STRING; + val->ival.zend.str = zend_string_init(res, buf + sizeof(buf) - 1 - res, 1); + + return true; + } + goto promote_double; + } + /* no break */ + default: + psi_calc_cast(typ, &val->ival, PSI_T_INT64, &val->ival); + /* no break */ + case PSI_T_INT64: + val->type = PSI_T_INT; + return true; + } + } + /* no break */ default: data->error(data, val->token, PSI_WARNING, "Invalid default value type '%s', " "expected one of bool, int, float, string.", - type->name->val); + type ? type->name->val : "mixed"); } return false; @@ -181,7 +252,7 @@ void psi_impl_def_val_dump(int fd, struct psi_impl_def_val *val) { dprintf(fd, "%s", val->ival.zend.bval ? "true" : "false"); break; case PSI_T_INT: - dprintf(fd, "%ld", val->ival.zend.lval); + dprintf(fd, ZEND_LONG_FMT, val->ival.zend.lval); break; case PSI_T_FLOAT: case PSI_T_DOUBLE: @@ -196,6 +267,9 @@ void psi_impl_def_val_dump(int fd, struct psi_impl_def_val *val) { case PSI_T_STRING: dprintf(fd, "\"%s\"", val->ival.zend.str->val); break; + case PSI_T_NUMBER: + psi_num_exp_dump(fd, val->data.num); + break; default: assert(0); } diff --git a/src/types/impl_val.h b/src/types/impl_val.h index 69c31b6..9b28a7d 100644 --- a/src/types/impl_val.h +++ b/src/types/impl_val.h @@ -64,4 +64,68 @@ typedef union impl_val { #endif } impl_val; +#ifndef linux +# define isinfl isinf +# define isnanl isnan +#endif +#if HAVE_LONG_DOUBLE +# define CASE_IMPLVAL_LD_PRINTF(fun, to, ival) \ + case PSI_T_LONG_DOUBLE: \ + if (isinfl(ival.ldval)) { \ + fun(to, "\\INF"); \ + } else if (isnanl(ival.ldval)) { \ + fun(to, "\\NAN"); \ + } else { \ + fun(to, "%" PRIldval "L", ival.ldval); \ + } \ + break; +#else +# define CASE_IMPLVAL_LD_PRINTF(fun, to, ival) +#endif + +#define CASE_IMPLVAL_NUM_PRINTF(fun, to, ival) \ + case PSI_T_INT8: \ + fun(to, "%" PRId8, ival.i8); \ + break; \ + case PSI_T_UINT8: \ + fun(to, "%" PRIu8, ival.u8); \ + break; \ + case PSI_T_INT16: \ + fun(to, "%" PRId16, ival.i16); \ + break; \ + case PSI_T_UINT16: \ + fun(to, "%" PRIu16, ival.u16); \ + break; \ + case PSI_T_INT32: \ + fun(to, "%" PRId32, ival.i32); \ + break; \ + case PSI_T_UINT32: \ + fun(to, "%" PRIu32 "U", ival.u32); \ + break; \ + case PSI_T_INT64: \ + fun(to, "%" PRId64 "L", ival.i64); \ + break; \ + case PSI_T_UINT64: \ + fun(to, "%" PRIu64 "UL", ival.u64); \ + break; \ + case PSI_T_FLOAT: \ + if (isinf(ival.dval)) { \ + fun(to, "\\INF"); \ + } else if (isnan(ival.dval)) { \ + fun(to, "\\NAN"); \ + } else { \ + fun(to, "%" PRIfval "F", ival.dval); \ + } \ + break; \ + case PSI_T_DOUBLE: \ + if (isinf(ival.dval)) { \ + fun(to, "\\INF"); \ + } else if (isnan(ival.dval)) { \ + fun(to, "\\NAN"); \ + } else { \ + fun(to, "%" PRIdval, ival.dval); \ + } \ + break; \ + CASE_IMPLVAL_LD_PRINTF(fun, to, ival) + #endif diff --git a/src/types/num_exp.c b/src/types/num_exp.c index 36be5f3..ab99dd9 100644 --- a/src/types/num_exp.c +++ b/src/types/num_exp.c @@ -159,6 +159,11 @@ struct psi_num_exp *psi_num_exp_copy(struct psi_num_exp *exp) return cpy; } +void psi_num_exp_copy_ctor(struct psi_num_exp **exp_ptr) +{ + *exp_ptr = psi_num_exp_copy(*exp_ptr); +} + void psi_num_exp_free(struct psi_num_exp **c_ptr) { if (*c_ptr) { @@ -289,6 +294,7 @@ struct psi_plist *psi_num_exp_tokens(struct psi_num_exp *exp, struct psi_plist *list) { struct psi_token *ntoken; + if (!list) { list = psi_plist_init((psi_plist_dtor) psi_token_free); } @@ -626,7 +632,7 @@ static inline void psi_num_exp_verify_result(token_t t, impl_val *res, struct ps } static void psi_num_exp_reduce(struct psi_num_exp *exp, struct psi_plist **output_ptr, - struct psi_plist **input_ptr, struct psi_call_frame *frame, HashTable *defs) + struct psi_plist **input_ptr, struct psi_call_frame *frame, struct psi_cpp *cpp) { struct psi_plist *output = *output_ptr, *input = *input_ptr; struct element { @@ -640,14 +646,14 @@ static void psi_num_exp_reduce(struct psi_num_exp *exp, struct psi_plist **outpu switch (exp->op) { case PSI_T_NUMBER: - entry.type = psi_number_eval(exp->data.n, &entry.data.value, frame, defs, exp); + entry.type = psi_number_eval(exp->data.n, &entry.data.value, frame, cpp, exp); output = psi_plist_add(output, &entry); break; case PSI_T_LPAREN: entry.type = exp->op; input = psi_plist_add(input, &entry); - psi_num_exp_reduce(exp->data.u, &output, &input, frame, defs); + psi_num_exp_reduce(exp->data.u, &output, &input, frame, cpp); while (psi_plist_pop(input, &entry)) { if (entry.type == PSI_T_LPAREN) { break; @@ -670,7 +676,7 @@ static void psi_num_exp_reduce(struct psi_num_exp *exp, struct psi_plist **outpu entry.type = exp->op; entry.data.cast = exp->data.c.typ; input = psi_plist_add(input, &entry); - psi_num_exp_reduce(exp->data.c.num, &output, &input, frame, defs); + psi_num_exp_reduce(exp->data.c.num, &output, &input, frame, cpp); break; case PSI_T_NOT: @@ -687,19 +693,19 @@ static void psi_num_exp_reduce(struct psi_num_exp *exp, struct psi_plist **outpu entry.type = exp->op; entry.data.calc = exp->calc; input = psi_plist_add(input, &entry); - psi_num_exp_reduce(exp->data.u, &output, &input, frame, defs); + psi_num_exp_reduce(exp->data.u, &output, &input, frame, cpp); break; case PSI_T_IIF: { impl_val cond_val = {0}; - token_t cond_typ = psi_num_exp_exec(exp->data.t.cond, &cond_val, frame, defs); + token_t cond_typ = psi_num_exp_exec(exp->data.t.cond, &cond_val, frame, cpp); psi_calc_bool_not(cond_typ, &cond_val, 0, NULL, &cond_val); if (cond_val.u8) { - psi_num_exp_reduce(exp->data.t.falsy, &output, &input, frame, defs); + psi_num_exp_reduce(exp->data.t.falsy, &output, &input, frame, cpp); } else { - psi_num_exp_reduce(exp->data.t.truthy, &output, &input, frame, defs); + psi_num_exp_reduce(exp->data.t.truthy, &output, &input, frame, cpp); } } break; @@ -708,7 +714,7 @@ static void psi_num_exp_reduce(struct psi_num_exp *exp, struct psi_plist **outpu case PSI_T_PLUS: /* unary */ if (!exp->data.b.rhs) { - entry.type = psi_num_exp_exec(exp->data.b.lhs, &entry.data.value, frame, defs); + entry.type = psi_num_exp_exec(exp->data.b.lhs, &entry.data.value, frame, cpp); if (exp->calc) { entry.type = exp->calc(entry.type, &entry.data.value, 0, NULL, &entry.data.value); @@ -718,7 +724,7 @@ static void psi_num_exp_reduce(struct psi_num_exp *exp, struct psi_plist **outpu } /* no break */ default: - psi_num_exp_reduce(exp->data.b.lhs, &output, &input, frame, defs); + psi_num_exp_reduce(exp->data.b.lhs, &output, &input, frame, cpp); while (psi_plist_top(input, &entry)) { /* bail out if exp->op > entry.type */ if (psi_calc_oper(exp->op, entry.type) == -1) { @@ -731,7 +737,7 @@ static void psi_num_exp_reduce(struct psi_num_exp *exp, struct psi_plist **outpu entry.type = exp->op; entry.data.calc = exp->calc; input = psi_plist_add(input, &entry); - psi_num_exp_reduce(exp->data.b.rhs, &output, &input, frame, defs); + psi_num_exp_reduce(exp->data.b.rhs, &output, &input, frame, cpp); break; } @@ -740,7 +746,7 @@ static void psi_num_exp_reduce(struct psi_num_exp *exp, struct psi_plist **outpu } token_t psi_num_exp_exec(struct psi_num_exp *exp, impl_val *res, - struct psi_call_frame *frame, HashTable *defs) + struct psi_call_frame *frame, struct psi_cpp *cpp) { struct psi_plist *output, *input; struct element { @@ -755,7 +761,7 @@ token_t psi_num_exp_exec(struct psi_num_exp *exp, impl_val *res, output = psi_plist_init_ex(sizeof(entry), NULL); input = psi_plist_init_ex(sizeof(entry), NULL); - psi_num_exp_reduce(exp, &output, &input, frame, defs); + psi_num_exp_reduce(exp, &output, &input, frame, cpp); while (psi_plist_pop(input, &entry)) { if (frame) PSI_DEBUG_PRINT(frame->context, " %s", psi_num_exp_op_tok(entry.type)); diff --git a/src/types/num_exp.h b/src/types/num_exp.h index 96fcee1..df7c6f5 100644 --- a/src/types/num_exp.h +++ b/src/types/num_exp.h @@ -75,12 +75,14 @@ struct psi_num_exp *psi_num_exp_init_cast(struct psi_decl_type *typ, void psi_num_exp_free(struct psi_num_exp **c_ptr); struct psi_num_exp *psi_num_exp_copy(struct psi_num_exp *exp); +void psi_num_exp_copy_ctor(struct psi_num_exp **exp_ptr); + void psi_num_exp_dump(int fd, struct psi_num_exp *exp); bool psi_num_exp_validate(struct psi_data *data, struct psi_num_exp *exp, struct psi_validate_scope *scope); token_t psi_num_exp_exec(struct psi_num_exp *exp, impl_val *res, - struct psi_call_frame *frame, HashTable *defs); + struct psi_call_frame *frame, struct psi_cpp *cpp); struct psi_plist *psi_num_exp_tokens(struct psi_num_exp *exp, struct psi_plist *list); @@ -88,19 +90,19 @@ struct psi_plist *psi_num_exp_tokens(struct psi_num_exp *exp, #include "calc.h" static inline zend_long psi_num_exp_get_long(struct psi_num_exp *exp, - struct psi_call_frame *frame, HashTable *defs) { + struct psi_call_frame *frame, struct psi_cpp *cpp) { impl_val res = {0}; - psi_calc_cast(psi_num_exp_exec(exp, &res, frame, defs), &res, + psi_calc_cast(psi_num_exp_exec(exp, &res, frame, cpp), &res, PSI_T_INT64, &res); return res.i64; } static inline double psi_num_exp_get_double(struct psi_num_exp *exp, - struct psi_call_frame *frame, HashTable *defs) { + struct psi_call_frame *frame, struct psi_cpp *cpp) { impl_val res = {0}; - psi_calc_cast(psi_num_exp_exec(exp, &res, frame, defs), &res, + psi_calc_cast(psi_num_exp_exec(exp, &res, frame, cpp), &res, PSI_T_DOUBLE, &res); return res.dval; diff --git a/src/types/number.c b/src/types/number.c index 5483196..840eb03 100644 --- a/src/types/number.c +++ b/src/types/number.c @@ -46,6 +46,7 @@ struct psi_number *psi_number_init(token_t t, void *num, unsigned flags) case PSI_T_INT8: exp->data.ival.i8 = *(int8_t *) num; break; + case PSI_T_DEFINED: case PSI_T_UINT8: exp->data.ival.u8 = *(uint8_t *) num; break; @@ -84,6 +85,7 @@ struct psi_number *psi_number_init(token_t t, void *num, unsigned flags) case PSI_T_NUMBER: case PSI_T_NSNAME: case PSI_T_DEFINE: + case PSI_T_CPP_HEADER: exp->data.numb = zend_string_copy(num); break; case PSI_T_NAME: @@ -113,6 +115,7 @@ struct psi_number *psi_number_copy(struct psi_number *exp) } switch (num->type) { case PSI_T_INT8: + case PSI_T_DEFINED: case PSI_T_UINT8: case PSI_T_INT16: case PSI_T_UINT16: @@ -133,6 +136,7 @@ struct psi_number *psi_number_copy(struct psi_number *exp) case PSI_T_NSNAME: case PSI_T_DEFINE: case PSI_T_QUOTED_CHAR: + case PSI_T_CPP_HEADER: num->data.numb = zend_string_copy(num->data.numb); break; case PSI_T_NAME: @@ -159,6 +163,7 @@ void psi_number_free(struct psi_number **exp_ptr) psi_token_free(&exp->token); switch (exp->type) { case PSI_T_INT8: + case PSI_T_DEFINED: case PSI_T_UINT8: case PSI_T_INT16: case PSI_T_UINT16: @@ -182,6 +187,7 @@ void psi_number_free(struct psi_number **exp_ptr) case PSI_T_NUMBER: case PSI_T_DEFINE: case PSI_T_QUOTED_CHAR: + case PSI_T_CPP_HEADER: zend_string_release(exp->data.numb); break; case PSI_T_NAME: @@ -201,6 +207,8 @@ struct psi_plist *psi_number_tokens(struct psi_number *exp, struct psi_plist *list) { struct psi_token *ntoken; + size_t i; + if (!list) { list = psi_plist_init((psi_plist_dtor) psi_token_free); } @@ -247,7 +255,35 @@ struct psi_plist *psi_number_tokens(struct psi_number *exp, list = psi_plist_add(list, &ntoken); break; + case PSI_T_FUNCTION: + ntoken = psi_token_copy(exp->token); + list = psi_plist_add(list, &ntoken); + ntoken = psi_token_init(PSI_T_LPAREN, "(", 1, ntoken->col+ntoken->text->len, ntoken->line, ntoken->file); + list = psi_plist_add(list, &ntoken); + for (i = 0; i < psi_plist_count(exp->data.call->args); ++i) { + struct psi_num_exp *tmp_exp; + + if (i) { + ntoken = psi_token_init(PSI_T_COMMA, ",", 1, ntoken->col+ntoken->text->len, ntoken->line, ntoken->file); + list = psi_plist_add(list, &ntoken); + } + if (psi_plist_get(exp->data.call->args, i, &tmp_exp)) { + struct psi_plist *tmp = psi_num_exp_tokens(tmp_exp, NULL); + list = psi_plist_add_r(list, psi_plist_count(tmp), psi_plist_eles(tmp)); + psi_plist_top(list, &ntoken); + free(tmp); + } + } + ntoken = psi_token_init(PSI_T_RPAREN, ")", 1, ntoken->col+ntoken->text->len, ntoken->line, ntoken->file); + list = psi_plist_add(list, &ntoken); + break; + + case PSI_T_DEFINED: + ntoken = psi_token_init(PSI_T_DEFINED, "defined", sizeof("defined")-1, exp->token->col, exp->token->line, exp->token->file); + list = psi_plist_add(list, &ntoken); + /* no break */ default: + assert(exp->token); ntoken = psi_token_copy(exp->token); list = psi_plist_add(list, &ntoken); break; @@ -259,59 +295,8 @@ struct psi_plist *psi_number_tokens(struct psi_number *exp, void psi_number_dump(int fd, struct psi_number *exp) { switch (exp->type) { - case PSI_T_INT8: - dprintf(fd, "%" PRId8, exp->data.ival.i8); - break; - case PSI_T_UINT8: - dprintf(fd, "%" PRIu8, exp->data.ival.u8); - break; - case PSI_T_INT16: - dprintf(fd, "%" PRId16, exp->data.ival.i16); - break; - case PSI_T_UINT16: - dprintf(fd, "%" PRIu16, exp->data.ival.u16); - break; - case PSI_T_INT32: - dprintf(fd, "%" PRId32, exp->data.ival.i32); - break; - case PSI_T_UINT32: - dprintf(fd, "%" PRIu32, exp->data.ival.u32); - break; - case PSI_T_INT64: - dprintf(fd, "%" PRId64, exp->data.ival.i64); - break; - case PSI_T_UINT64: - dprintf(fd, "%" PRIu64, exp->data.ival.u64); - break; - case PSI_T_FLOAT: - if (isinf(exp->data.ival.dval)) { - dprintf(fd, "\\INF"); - } else if (isnan(exp->data.ival.dval)) { - dprintf(fd, "\\NAN"); - } else { - dprintf(fd, "%" PRIfval, exp->data.ival.dval); - } - break; - case PSI_T_DOUBLE: - if (isinf(exp->data.ival.dval)) { - dprintf(fd, "\\INF"); - } else if (isnan(exp->data.ival.dval)) { - dprintf(fd, "\\NAN"); - } else { - dprintf(fd, "%" PRIdval, exp->data.ival.dval); - } - break; -#if HAVE_LONG_DOUBLE - case PSI_T_LONG_DOUBLE: - if (isinfl(exp->data.ival.ldval)) { - dprintf(fd, "\\INF"); - } else if (isnanl(exp->data.ival.ldval)) { - dprintf(fd, "\\NAN"); - } else { - dprintf(fd, "%" PRIldval, exp->data.ival.ldval); - } - break; -#endif + case PSI_T_DEFINED: + CASE_IMPLVAL_NUM_PRINTF(dprintf, fd, exp->data.ival) case PSI_T_NULL: dprintf(fd, "NULL"); break; @@ -319,6 +304,7 @@ void psi_number_dump(int fd, struct psi_number *exp) case PSI_T_NSNAME: case PSI_T_DEFINE: case PSI_T_QUOTED_CHAR: + case PSI_T_CPP_HEADER: dprintf(fd, "%s", exp->data.numb->val); break; case PSI_T_FUNCTION: @@ -536,7 +522,12 @@ static inline bool psi_number_validate_number(struct psi_data *data, struct psi_ break; } } else { - switch (is_numeric_str_function(exp->data.numb, (zend_long *) &tmp, (double *) &tmp)) { + int type = is_numeric_string(exp->data.numb->val, exp->data.numb->len, (zend_long *) &tmp, (double *)&tmp, 0); + char *stop = NULL; + long lval; + unsigned long ulval; + + switch (type) { case IS_LONG: zend_string_release(exp->data.numb); exp->type = PSI_T_INT64; @@ -548,6 +539,47 @@ static inline bool psi_number_validate_number(struct psi_data *data, struct psi_ exp->type = PSI_T_DOUBLE; exp->data.ival.dval = tmp.dval; return true; + + default: + + errno = 0; + + stop = exp->data.numb->val + exp->data.numb->len; + lval = strtol(exp->data.numb->val, &stop, 0); + switch (lval) { + case 0: + assert(stop == exp->data.numb->val + exp->data.numb->len); + /* no break */ + case LONG_MIN: + assert(!errno); + /* no break */ + case LONG_MAX: + if (errno == ERANGE) { + errno = 0; + + stop = exp->data.numb->val + exp->data.numb->len; + ulval = strtoul(exp->data.numb->val, &stop, 0); + switch (ulval) { + case 0: + assert(stop == exp->data.numb->val + exp->data.numb->len); + case ULONG_MAX: + assert(!errno); + default: + zend_string_release(exp->data.numb); + exp->type = PSI_T_UINT64; + exp->data.ival.u64 = ulval; + return true; + } + } + break; + default: + zend_string_release(exp->data.numb); + exp->type = PSI_T_INT64; + exp->data.ival.i64 = lval; + return true; + } + + data->error(data, exp->token, PSI_WARNING, "Not a numeric string: '%s'", exp->data.numb->val); } } data->error(data, exp->token, PSI_WARNING, "Expected numeric entity (parser error?)"); @@ -580,11 +612,13 @@ bool psi_number_validate(struct psi_data *data, struct psi_number *exp, case PSI_T_LONG_DOUBLE: #endif case PSI_T_ENUM: + case PSI_T_DEFINED: return true; case PSI_T_NAME: - if (scope && scope->defs && zend_hash_exists(scope->defs, exp->data.dvar->name)) { - return true; + if (scope && scope->cpp && zend_hash_exists(&scope->cpp->defs, exp->data.dvar->name)) { + exp->type = PSI_T_DEFINE; + goto define; } if (scope && scope->current_enum && psi_number_validate_enum(data, exp, scope)) { return true; @@ -608,13 +642,31 @@ bool psi_number_validate(struct psi_data *data, struct psi_number *exp, return false; case PSI_T_FUNCTION: - if (scope && scope->defs && zend_hash_exists(scope->defs, exp->data.numb)) { + if (scope && scope->cpp && zend_hash_exists(&scope->cpp->defs, exp->data.call->name)) { + size_t i, argc; + struct psi_cpp_macro_call *call = exp->data.call; + + for (i = 0, argc = psi_plist_count(call->args); i < argc; ++i) { + struct psi_num_exp *arg; + + if (!psi_plist_get(call->args, i, &arg)) { + return false; + } + if (!psi_num_exp_validate(data, arg, scope)) { + return false; + } + } + return true; + } + if (psi_builtin_exists(exp->data.call->name)) { + exp->data.call->builtin = psi_builtin_get(exp->data.call->name); return true; } return false; case PSI_T_DEFINE: - if (scope && scope->defs && zend_hash_exists(scope->defs, exp->data.numb)) { + if (scope && scope->cpp && zend_hash_exists(&scope->cpp->defs, exp->data.numb)) { + define: ; if (!scope->macro || !zend_string_equals(scope->macro->token->text, exp->data.numb)) { return true; } @@ -697,6 +749,9 @@ bool psi_number_validate(struct psi_data *data, struct psi_number *exp, case PSI_T_QUOTED_CHAR: return psi_number_validate_char(data, exp); + case PSI_T_CPP_HEADER: + return true; + default: assert(0); } @@ -707,7 +762,9 @@ bool psi_number_validate(struct psi_data *data, struct psi_number *exp, static inline token_t psi_number_eval_constant(struct psi_number *exp, impl_val *res, struct psi_call_frame *frame) { - switch (exp->data.cnst->type->type) { + token_t typ = exp->data.cnst->type ? exp->data.cnst->type->type : PSI_T_MIXED; + + switch (typ) { case PSI_T_INT: res->i64 = zend_get_constant(exp->data.cnst->name)->value.lval; if (frame) PSI_DEBUG_PRINT(frame->context, " %" PRIi64, res->i64); @@ -754,28 +811,40 @@ static inline token_t psi_number_eval_decl_var(struct psi_number *exp, } static inline token_t psi_number_eval_define(struct psi_number *exp, - impl_val *res, HashTable *defs, struct psi_num_exp *rec_guard) + impl_val *res, struct psi_cpp *cpp, struct psi_num_exp *rec_guard) { - if (defs) { + if (cpp) { struct psi_cpp_macro_decl *macro; - macro = zend_hash_find_ptr(defs, exp->data.numb); + macro = zend_hash_find_ptr(&cpp->defs, exp->data.numb); if (macro && macro->exp && macro->exp != rec_guard) { - return psi_num_exp_exec(macro->exp, res, NULL, defs); + return psi_num_exp_exec(macro->exp, res, NULL, cpp); } } + + res->u8 = 0; + return PSI_T_UINT8; +} + +static inline token_t psi_number_eval_function(struct psi_number *exp, + impl_val *res, struct psi_cpp *cpp, struct psi_num_exp *rec_guard) +{ + if (cpp) { + PSI_DEBUG_PRINT(cpp->parser, "psi_number_eval(PSI_T_FUNCTION): %s\n", exp->token->text->val); + } res->u8 = 0; return PSI_T_UINT8; } token_t psi_number_eval(struct psi_number *exp, impl_val *res, - struct psi_call_frame *frame, HashTable *defs, struct psi_num_exp *rec_guard) + struct psi_call_frame *frame, struct psi_cpp *cpp, struct psi_num_exp *rec_guard) { switch (exp->type) { case PSI_T_INT8: *res = exp->data.ival; if (frame) PSI_DEBUG_PRINT(frame->context, " %" PRIi8, res->i8); return PSI_T_INT8; + case PSI_T_DEFINED: case PSI_T_UINT8: *res = exp->data.ival; if (frame) PSI_DEBUG_PRINT(frame->context, " %" PRIu8, res->u8); @@ -838,9 +907,12 @@ token_t psi_number_eval(struct psi_number *exp, impl_val *res, return psi_number_eval_decl_var(exp, res, frame); case PSI_T_DEFINE: - return psi_number_eval_define(exp, res, defs, rec_guard); + return psi_number_eval_define(exp, res, cpp, rec_guard); case PSI_T_FUNCTION: + return psi_number_eval_function(exp, res, cpp, rec_guard); + + case PSI_T_CPP_HEADER: res->u8 = 0; return PSI_T_UINT8; diff --git a/src/types/number.h b/src/types/number.h index 9f3363c..b2a61cc 100644 --- a/src/types/number.h +++ b/src/types/number.h @@ -26,9 +26,9 @@ #ifndef PSI_TYPES_NUMBER_H #define PSI_TYPES_NUMBER_H - struct psi_data; struct psi_token; +struct psi_cpp; struct psi_impl; struct psi_const; struct psi_decl_enum_item; @@ -82,7 +82,7 @@ bool psi_number_validate(struct psi_data *data, struct psi_number *exp, struct psi_validate_scope *scope); token_t psi_number_eval(struct psi_number *exp, impl_val *res, - struct psi_call_frame *frame, HashTable *defs, + struct psi_call_frame *frame, struct psi_cpp *cpp, struct psi_num_exp *rec_guard); struct psi_plist *psi_number_tokens(struct psi_number *exp, diff --git a/src/validate.h b/src/validate.h index 3e4dda6..dcef7c7 100644 --- a/src/validate.h +++ b/src/validate.h @@ -29,7 +29,7 @@ struct psi_data; struct psi_validate_scope { - HashTable *defs; + struct psi_cpp *cpp; HashTable types; HashTable structs; HashTable unions; @@ -58,6 +58,9 @@ static inline void psi_validate_scope_dtor(struct psi_validate_scope *scope) zend_hash_destroy(&scope->unions); } +bool psi_validate_scope_has_builtin(struct psi_validate_scope *scope, + zend_string *builtin); + #define psi_validate_scope_has_type(s, t) \ ((s) ? zend_hash_exists(&(s)->types, (t)) : false) #define psi_validate_scope_has_struct(s, t) \ diff --git a/tests/parser/cpp002.phpt b/tests/parser/cpp002.phpt new file mode 100644 index 0000000..d50bdd8 --- /dev/null +++ b/tests/parser/cpp002.phpt @@ -0,0 +1,27 @@ +--TEST-- +CPP defines +--SKIPIF-- + +--FILE-- +===TEST=== + +===DONE=== +--EXPECT-- +===TEST=== + +Warning: 'FOO' redefined in on line 3 + +Warning: 'FOO' previously defined in on line 2 +bool(true) +===DONE=== diff --git a/tests/parser/cpp003.phpt b/tests/parser/cpp003.phpt new file mode 100644 index 0000000..f6426f5 --- /dev/null +++ b/tests/parser/cpp003.phpt @@ -0,0 +1,19 @@ +--TEST-- +CPP argument prescan +--SKIPIF-- + +--INI-- +psi.directory={PWD}/cpp003 +--FILE-- +===TEST=== + +===DONE=== +--EXPECT-- +===TEST=== +int(111111) +int(222222) +===DONE=== diff --git a/tests/parser/cpp003/prescan.psi b/tests/parser/cpp003/prescan.psi new file mode 100644 index 0000000..e902302 --- /dev/null +++ b/tests/parser/cpp003/prescan.psi @@ -0,0 +1,11 @@ +#define AFTERX(x) X_ ## x +#define XAFTERX(x) AFTERX(x) +#define TABLESIZE 1024 +#define BUFSIZE TABLESIZE + +#define X_BUFSIZE 111110 + 1 +const int \CPP_TEST1 = AFTERX(BUFSIZE); // expands to X_BUFSIZE + +#define X_1024 222221 + 1 +const int \CPP_TEST2 = XAFTERX(BUFSIZE); // expands to X_1024 +