diff --git a/ext/json/Makefile.frag b/ext/json/Makefile.frag
index cb26acabc70af..c47f2767a0946 100644
--- a/ext/json/Makefile.frag
+++ b/ext/json/Makefile.frag
@@ -1,5 +1,5 @@
$(srcdir)/json_scanner.c: $(srcdir)/json_scanner.re
- $(RE2C) -t $(srcdir)/php_json_scanner_defs.h --no-generation-date -bci -o $@ $(srcdir)/json_scanner.re
+ $(RE2C_FOR_JSON) -t $(srcdir)/php_json_scanner_defs.h --no-generation-date -bci -o $@ $(srcdir)/json_scanner.re
$(srcdir)/json_parser.tab.c: $(srcdir)/json_parser.y
$(YACC) --defines -l $(srcdir)/json_parser.y -o $@
diff --git a/ext/json/config.m4 b/ext/json/config.m4
index fb87a939928dd..fd3b116daeb8e 100644
--- a/ext/json/config.m4
+++ b/ext/json/config.m4
@@ -2,20 +2,36 @@ dnl
dnl $Id$
dnl
-PHP_ARG_ENABLE(json, whether to enable JavaScript Object Serialization support,
-[ --disable-json Disable JavaScript Object Serialization support], yes)
+PHP_ARG_ENABLE(json,
+ whether to enable JavaScript Object Serialization support,
+ [AS_HELP_STRING([--disable-json], [Disable JavaScript Object Serialization support])],
+ yes)
+
+AC_ARG_ENABLE(json-filegen,
+ [AS_HELP_STRING([--enable-json-filegen], [Enable new Json file generation])],
+ [PHP_JSON_FILEGEN=yes], [PHP_JSON_FILEGEN=no])
if test "$PHP_JSON" != "no"; then
AC_DEFINE([HAVE_JSON],1 ,[whether to enable JavaScript Object Serialization support])
AC_HEADER_STDC
-PHP_NEW_EXTENSION(json,
+ PHP_NEW_EXTENSION(json,
json.c \
json_encoder.c \
json_parser.tab.c \
json_scanner.c,
$ext_shared,, -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1)
- PHP_INSTALL_HEADERS([ext/json], [php_json.h])
- PHP_ADD_MAKEFILE_FRAGMENT()
+ PHP_INSTALL_HEADERS([ext/json], [php_json.h])
+
+ if test "$PHP_JSON_FILEGEN" != "no"; then
+ if test -z "$re2c_vernum" || test "$re2c_vernum" -lt "1306"; then
+ AC_MSG_WARN([You will need re2c 0.13.6 or later if you want to regenerate JSON scanner.])
+ RE2C_FOR_JSON="exit 0;"
+ else
+ RE2C_FOR_JSON="$RE2C"
+ fi
+ PHP_SUBST(RE2C_FOR_JSON)
+ PHP_ADD_MAKEFILE_FRAGMENT()
+ fi
PHP_SUBST(JSON_SHARED_LIBADD)
fi
diff --git a/ext/json/json_parser.tab.c b/ext/json/json_parser.tab.c
new file mode 100644
index 0000000000000..85a2f30814632
--- /dev/null
+++ b/ext/json/json_parser.tab.c
@@ -0,0 +1,1974 @@
+/* A Bison parser, made by GNU Bison 2.7.12-4996. */
+
+/* Bison implementation for Yacc-like parsers in C
+
+ Copyright (C) 1984, 1989-1990, 2000-2013 Free Software Foundation, Inc.
+
+ This program is free software: you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation, either version 3 of the License, or
+ (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with this program. If not, see . */
+
+/* As a special exception, you may create a larger work that contains
+ part or all of the Bison parser skeleton and distribute that work
+ under terms of your choice, so long as that work isn't itself a
+ parser generator using the skeleton or a modified version thereof
+ as a parser skeleton. Alternatively, if you modify or redistribute
+ the parser skeleton itself, you may (at your option) remove this
+ special exception, which will cause the skeleton and the resulting
+ Bison output files to be licensed under the GNU General Public
+ License without this special exception.
+
+ This special exception was added by the Free Software Foundation in
+ version 2.2 of Bison. */
+
+/* C LALR(1) parser skeleton written by Richard Stallman, by
+ simplifying the original so-called "semantic" parser. */
+
+/* All symbols defined below should begin with yy or YY, to avoid
+ infringing on user name space. This should be done even for local
+ variables, as they might otherwise be expanded by user macros.
+ There are some unavoidable exceptions within include files to
+ define necessary library symbols; they are noted "INFRINGES ON
+ USER NAME SPACE" below. */
+
+/* Identify Bison output. */
+#define YYBISON 1
+
+/* Bison version. */
+#define YYBISON_VERSION "2.7.12-4996"
+
+/* Skeleton name. */
+#define YYSKELETON_NAME "yacc.c"
+
+/* Pure parsers. */
+#define YYPURE 1
+
+/* Push parsers. */
+#define YYPUSH 0
+
+/* Pull parsers. */
+#define YYPULL 1
+
+/* "%code top" blocks. */
+
+
+/*
+ +----------------------------------------------------------------------+
+ | PHP Version 5 |
+ +----------------------------------------------------------------------+
+ | Copyright (c) 1997-2015 The PHP Group |
+ +----------------------------------------------------------------------+
+ | This source file is subject to version 3.01 of the PHP license, |
+ | that is bundled with this package in the file LICENSE, and is |
+ | available through the world-wide-web at the following url: |
+ | http://www.php.net/license/3_01.txt |
+ | If you did not receive a copy of the PHP license and are unable to |
+ | obtain it through the world-wide-web, please send a note to |
+ | license@php.net so we can mail you a copy immediately. |
+ +----------------------------------------------------------------------+
+ | Author: Jakub Zelenka |
+ +----------------------------------------------------------------------+
+*/
+
+#include "php.h"
+#include "php_json.h"
+#include "php_json_parser.h"
+
+#define YYDEBUG 0
+
+#if YYDEBUG
+int json_yydebug = 1;
+#endif
+
+#ifdef _MSC_VER
+#define YYMALLOC malloc
+#define YYFREE free
+#endif
+
+#define PHP_JSON_USE(uv) ((void) (uv))
+#define PHP_JSON_USE_1(uvr, uv1) PHP_JSON_USE(uvr); PHP_JSON_USE(uv1)
+#define PHP_JSON_USE_2(uvr, uv1, uv2) PHP_JSON_USE(uvr); PHP_JSON_USE(uv1); PHP_JSON_USE(uv2)
+
+
+
+
+
+/* Substitute the variable and function names. */
+#define yyparse php_json_yyparse
+#define yylex php_json_yylex
+#define yyerror php_json_yyerror
+#define yylval php_json_yylval
+#define yychar php_json_yychar
+#define yydebug php_json_yydebug
+#define yynerrs php_json_yynerrs
+
+/* Copy the first part of user declarations. */
+
+
+
+# ifndef YY_NULL
+# if defined __cplusplus && 201103L <= __cplusplus
+# define YY_NULL nullptr
+# else
+# define YY_NULL 0
+# endif
+# endif
+
+/* Enabling verbose error messages. */
+#ifdef YYERROR_VERBOSE
+# undef YYERROR_VERBOSE
+# define YYERROR_VERBOSE 1
+#else
+# define YYERROR_VERBOSE 0
+#endif
+
+/* In a future release of Bison, this section will be replaced
+ by #include "json_parser.tab.h". */
+#ifndef YY_PHP_JSON_YY_HOME_JAKUB_PROG_PHP_MASTER_EXT_JSON_JSON_PARSER_TAB_H_INCLUDED
+# define YY_PHP_JSON_YY_HOME_JAKUB_PROG_PHP_MASTER_EXT_JSON_JSON_PARSER_TAB_H_INCLUDED
+/* Enabling traces. */
+#ifndef YYDEBUG
+# define YYDEBUG 0
+#endif
+#if YYDEBUG
+extern int php_json_yydebug;
+#endif
+
+/* Tokens. */
+#ifndef YYTOKENTYPE
+# define YYTOKENTYPE
+ /* Put the tokens into the symbol table, so that GDB and other debuggers
+ know about them. */
+ enum yytokentype {
+ PHP_JSON_T_NUL = 258,
+ PHP_JSON_T_TRUE = 259,
+ PHP_JSON_T_FALSE = 260,
+ PHP_JSON_T_INT = 261,
+ PHP_JSON_T_DOUBLE = 262,
+ PHP_JSON_T_STRING = 263,
+ PHP_JSON_T_ESTRING = 264,
+ PHP_JSON_T_EOI = 265,
+ PHP_JSON_T_ERROR = 266
+ };
+#endif
+/* Tokens. */
+#define PHP_JSON_T_NUL 258
+#define PHP_JSON_T_TRUE 259
+#define PHP_JSON_T_FALSE 260
+#define PHP_JSON_T_INT 261
+#define PHP_JSON_T_DOUBLE 262
+#define PHP_JSON_T_STRING 263
+#define PHP_JSON_T_ESTRING 264
+#define PHP_JSON_T_EOI 265
+#define PHP_JSON_T_ERROR 266
+
+
+
+#if ! defined YYSTYPE && ! defined YYSTYPE_IS_DECLARED
+typedef union YYSTYPE
+{
+
+
+ zval value;
+ struct {
+ zval key;
+ zval val;
+ } pair;
+
+
+
+} YYSTYPE;
+# define YYSTYPE_IS_TRIVIAL 1
+# define yystype YYSTYPE /* obsolescent; will be withdrawn */
+# define YYSTYPE_IS_DECLARED 1
+#endif
+
+
+#ifdef YYPARSE_PARAM
+#if defined __STDC__ || defined __cplusplus
+int php_json_yyparse (void *YYPARSE_PARAM);
+#else
+int php_json_yyparse ();
+#endif
+#else /* ! YYPARSE_PARAM */
+#if defined __STDC__ || defined __cplusplus
+int php_json_yyparse (php_json_parser *parser);
+#else
+int php_json_yyparse ();
+#endif
+#endif /* ! YYPARSE_PARAM */
+
+#endif /* !YY_PHP_JSON_YY_HOME_JAKUB_PROG_PHP_MASTER_EXT_JSON_JSON_PARSER_TAB_H_INCLUDED */
+
+/* Copy the second part of user declarations. */
+
+
+/* Unqualified %code blocks. */
+
+
+int php_json_yylex(union YYSTYPE *value, php_json_parser *parser);
+void php_json_yyerror(php_json_parser *parser, char const *msg);
+void php_json_parser_object_init(php_json_parser *parser, zval *object);
+void php_json_parser_object_update(php_json_parser *parser, zval *object, zval *zkey, zval *zvalue);
+void php_json_parser_array_init(zval *object);
+void php_json_parser_array_append(zval *array, zval *zvalue);
+
+#define PHP_JSON_DEPTH_DEC --parser->depth
+#define PHP_JSON_DEPTH_INC \
+ if (parser->max_depth && parser->depth >= parser->max_depth) { \
+ parser->scanner.errcode = PHP_JSON_ERROR_DEPTH; \
+ YYERROR; \
+ } \
+ ++parser->depth
+
+
+
+
+#ifdef short
+# undef short
+#endif
+
+#ifdef YYTYPE_UINT8
+typedef YYTYPE_UINT8 yytype_uint8;
+#else
+typedef unsigned char yytype_uint8;
+#endif
+
+#ifdef YYTYPE_INT8
+typedef YYTYPE_INT8 yytype_int8;
+#elif (defined __STDC__ || defined __C99__FUNC__ \
+ || defined __cplusplus || defined _MSC_VER)
+typedef signed char yytype_int8;
+#else
+typedef short int yytype_int8;
+#endif
+
+#ifdef YYTYPE_UINT16
+typedef YYTYPE_UINT16 yytype_uint16;
+#else
+typedef unsigned short int yytype_uint16;
+#endif
+
+#ifdef YYTYPE_INT16
+typedef YYTYPE_INT16 yytype_int16;
+#else
+typedef short int yytype_int16;
+#endif
+
+#ifndef YYSIZE_T
+# ifdef __SIZE_TYPE__
+# define YYSIZE_T __SIZE_TYPE__
+# elif defined size_t
+# define YYSIZE_T size_t
+# elif ! defined YYSIZE_T && (defined __STDC__ || defined __C99__FUNC__ \
+ || defined __cplusplus || defined _MSC_VER)
+# include /* INFRINGES ON USER NAME SPACE */
+# define YYSIZE_T size_t
+# else
+# define YYSIZE_T unsigned int
+# endif
+#endif
+
+#define YYSIZE_MAXIMUM ((YYSIZE_T) -1)
+
+#ifndef YY_
+# if defined YYENABLE_NLS && YYENABLE_NLS
+# if ENABLE_NLS
+# include /* INFRINGES ON USER NAME SPACE */
+# define YY_(Msgid) dgettext ("bison-runtime", Msgid)
+# endif
+# endif
+# ifndef YY_
+# define YY_(Msgid) Msgid
+# endif
+#endif
+
+#ifndef __attribute__
+/* This feature is available in gcc versions 2.5 and later. */
+# if (! defined __GNUC__ || __GNUC__ < 2 \
+ || (__GNUC__ == 2 && __GNUC_MINOR__ < 5))
+# define __attribute__(Spec) /* empty */
+# endif
+#endif
+
+/* Suppress unused-variable warnings by "using" E. */
+#if ! defined lint || defined __GNUC__
+# define YYUSE(E) ((void) (E))
+#else
+# define YYUSE(E) /* empty */
+#endif
+
+
+/* Identity function, used to suppress warnings about constant conditions. */
+#ifndef lint
+# define YYID(N) (N)
+#else
+#if (defined __STDC__ || defined __C99__FUNC__ \
+ || defined __cplusplus || defined _MSC_VER)
+static int
+YYID (int yyi)
+#else
+static int
+YYID (yyi)
+ int yyi;
+#endif
+{
+ return yyi;
+}
+#endif
+
+#if ! defined yyoverflow || YYERROR_VERBOSE
+
+/* The parser invokes alloca or malloc; define the necessary symbols. */
+
+# ifdef YYSTACK_USE_ALLOCA
+# if YYSTACK_USE_ALLOCA
+# ifdef __GNUC__
+# define YYSTACK_ALLOC __builtin_alloca
+# elif defined __BUILTIN_VA_ARG_INCR
+# include /* INFRINGES ON USER NAME SPACE */
+# elif defined _AIX
+# define YYSTACK_ALLOC __alloca
+# elif defined _MSC_VER
+# include /* INFRINGES ON USER NAME SPACE */
+# define alloca _alloca
+# else
+# define YYSTACK_ALLOC alloca
+# if ! defined _ALLOCA_H && ! defined EXIT_SUCCESS && (defined __STDC__ || defined __C99__FUNC__ \
+ || defined __cplusplus || defined _MSC_VER)
+# include /* INFRINGES ON USER NAME SPACE */
+ /* Use EXIT_SUCCESS as a witness for stdlib.h. */
+# ifndef EXIT_SUCCESS
+# define EXIT_SUCCESS 0
+# endif
+# endif
+# endif
+# endif
+# endif
+
+# ifdef YYSTACK_ALLOC
+ /* Pacify GCC's `empty if-body' warning. */
+# define YYSTACK_FREE(Ptr) do { /* empty */; } while (YYID (0))
+# ifndef YYSTACK_ALLOC_MAXIMUM
+ /* The OS might guarantee only one guard page at the bottom of the stack,
+ and a page size can be as small as 4096 bytes. So we cannot safely
+ invoke alloca (N) if N exceeds 4096. Use a slightly smaller number
+ to allow for a few compiler-allocated temporary stack slots. */
+# define YYSTACK_ALLOC_MAXIMUM 4032 /* reasonable circa 2006 */
+# endif
+# else
+# define YYSTACK_ALLOC YYMALLOC
+# define YYSTACK_FREE YYFREE
+# ifndef YYSTACK_ALLOC_MAXIMUM
+# define YYSTACK_ALLOC_MAXIMUM YYSIZE_MAXIMUM
+# endif
+# if (defined __cplusplus && ! defined EXIT_SUCCESS \
+ && ! ((defined YYMALLOC || defined malloc) \
+ && (defined YYFREE || defined free)))
+# include /* INFRINGES ON USER NAME SPACE */
+# ifndef EXIT_SUCCESS
+# define EXIT_SUCCESS 0
+# endif
+# endif
+# ifndef YYMALLOC
+# define YYMALLOC malloc
+# if ! defined malloc && ! defined EXIT_SUCCESS && (defined __STDC__ || defined __C99__FUNC__ \
+ || defined __cplusplus || defined _MSC_VER)
+void *malloc (YYSIZE_T); /* INFRINGES ON USER NAME SPACE */
+# endif
+# endif
+# ifndef YYFREE
+# define YYFREE free
+# if ! defined free && ! defined EXIT_SUCCESS && (defined __STDC__ || defined __C99__FUNC__ \
+ || defined __cplusplus || defined _MSC_VER)
+void free (void *); /* INFRINGES ON USER NAME SPACE */
+# endif
+# endif
+# endif
+#endif /* ! defined yyoverflow || YYERROR_VERBOSE */
+
+
+#if (! defined yyoverflow \
+ && (! defined __cplusplus \
+ || (defined YYSTYPE_IS_TRIVIAL && YYSTYPE_IS_TRIVIAL)))
+
+/* A type that is properly aligned for any stack member. */
+union yyalloc
+{
+ yytype_int16 yyss_alloc;
+ YYSTYPE yyvs_alloc;
+};
+
+/* The size of the maximum gap between one aligned stack and the next. */
+# define YYSTACK_GAP_MAXIMUM (sizeof (union yyalloc) - 1)
+
+/* The size of an array large to enough to hold all stacks, each with
+ N elements. */
+# define YYSTACK_BYTES(N) \
+ ((N) * (sizeof (yytype_int16) + sizeof (YYSTYPE)) \
+ + YYSTACK_GAP_MAXIMUM)
+
+# define YYCOPY_NEEDED 1
+
+/* Relocate STACK from its old location to the new one. The
+ local variables YYSIZE and YYSTACKSIZE give the old and new number of
+ elements in the stack, and YYPTR gives the new location of the
+ stack. Advance YYPTR to a properly aligned location for the next
+ stack. */
+# define YYSTACK_RELOCATE(Stack_alloc, Stack) \
+ do \
+ { \
+ YYSIZE_T yynewbytes; \
+ YYCOPY (&yyptr->Stack_alloc, Stack, yysize); \
+ Stack = &yyptr->Stack_alloc; \
+ yynewbytes = yystacksize * sizeof (*Stack) + YYSTACK_GAP_MAXIMUM; \
+ yyptr += yynewbytes / sizeof (*yyptr); \
+ } \
+ while (YYID (0))
+
+#endif
+
+#if defined YYCOPY_NEEDED && YYCOPY_NEEDED
+/* Copy COUNT objects from SRC to DST. The source and destination do
+ not overlap. */
+# ifndef YYCOPY
+# if defined __GNUC__ && 1 < __GNUC__
+# define YYCOPY(Dst, Src, Count) \
+ __builtin_memcpy (Dst, Src, (Count) * sizeof (*(Src)))
+# else
+# define YYCOPY(Dst, Src, Count) \
+ do \
+ { \
+ YYSIZE_T yyi; \
+ for (yyi = 0; yyi < (Count); yyi++) \
+ (Dst)[yyi] = (Src)[yyi]; \
+ } \
+ while (YYID (0))
+# endif
+# endif
+#endif /* !YYCOPY_NEEDED */
+
+/* YYFINAL -- State number of the termination state. */
+#define YYFINAL 18
+/* YYLAST -- Last index in YYTABLE. */
+#define YYLAST 34
+
+/* YYNTOKENS -- Number of terminals. */
+#define YYNTOKENS 18
+/* YYNNTS -- Number of nonterminals. */
+#define YYNNTS 16
+/* YYNRULES -- Number of rules. */
+#define YYNRULES 36
+/* YYNRULES -- Number of states. */
+#define YYNSTATES 45
+
+/* YYTRANSLATE(YYLEX) -- Bison symbol number corresponding to YYLEX. */
+#define YYUNDEFTOK 2
+#define YYMAXUTOK 266
+
+#define YYTRANSLATE(YYX) \
+ ((unsigned int) (YYX) <= YYMAXUTOK ? yytranslate[YYX] : YYUNDEFTOK)
+
+/* YYTRANSLATE[YYLEX] -- Bison symbol number corresponding to YYLEX. */
+static const yytype_uint8 yytranslate[] =
+{
+ 0, 2, 2, 2, 2, 2, 2, 2, 2, 2,
+ 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
+ 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
+ 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
+ 2, 2, 2, 2, 15, 2, 2, 2, 2, 2,
+ 2, 2, 2, 2, 2, 2, 2, 2, 16, 2,
+ 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
+ 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
+ 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
+ 2, 17, 2, 14, 2, 2, 2, 2, 2, 2,
+ 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
+ 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
+ 2, 2, 2, 12, 2, 13, 2, 2, 2, 2,
+ 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
+ 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
+ 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
+ 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
+ 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
+ 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
+ 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
+ 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
+ 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
+ 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
+ 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
+ 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
+ 2, 2, 2, 2, 2, 2, 1, 2, 3, 4,
+ 5, 6, 7, 8, 9, 10, 11
+};
+
+#if YYDEBUG
+/* YYPRHS[YYN] -- Index of the first RHS symbol of rule number YYN in
+ YYRHS. */
+static const yytype_uint8 yyprhs[] =
+{
+ 0, 0, 3, 6, 9, 10, 15, 17, 19, 20,
+ 22, 24, 28, 31, 35, 38, 39, 44, 46, 48,
+ 49, 51, 53, 57, 60, 62, 64, 66, 68, 70,
+ 72, 74, 76, 78, 80, 82, 84
+};
+
+/* YYRHS -- A `-1'-separated list of the rules' RHS. */
+static const yytype_int8 yyrhs[] =
+{
+ 19, 0, -1, 32, 10, -1, 32, 33, -1, -1,
+ 12, 21, 23, 22, -1, 13, -1, 14, -1, -1,
+ 24, -1, 25, -1, 24, 15, 25, -1, 24, 33,
+ -1, 31, 16, 32, -1, 31, 33, -1, -1, 17,
+ 27, 29, 28, -1, 14, -1, 13, -1, -1, 30,
+ -1, 32, -1, 30, 15, 32, -1, 30, 33, -1,
+ 8, -1, 9, -1, 20, -1, 26, -1, 8, -1,
+ 9, -1, 6, -1, 7, -1, 3, -1, 4, -1,
+ 5, -1, 33, -1, 11, -1
+};
+
+/* YYRLINE[YYN] -- source line where rule number YYN was defined. */
+static const yytype_uint8 yyrline[] =
+{
+ 0, 93, 93, 94, 98, 98, 102, 103, 107, 108,
+ 112, 113, 114, 118, 119, 123, 123, 127, 128, 132,
+ 133, 137, 138, 139, 143, 144, 148, 149, 150, 151,
+ 152, 153, 154, 155, 156, 157, 161
+};
+#endif
+
+#if YYDEBUG || YYERROR_VERBOSE || 0
+/* YYTNAME[SYMBOL-NUM] -- String name of the symbol SYMBOL-NUM.
+ First, the terminals, then, starting at YYNTOKENS, nonterminals. */
+static const char *const yytname[] =
+{
+ "$end", "error", "$undefined", "PHP_JSON_T_NUL", "PHP_JSON_T_TRUE",
+ "PHP_JSON_T_FALSE", "PHP_JSON_T_INT", "PHP_JSON_T_DOUBLE",
+ "PHP_JSON_T_STRING", "PHP_JSON_T_ESTRING", "PHP_JSON_T_EOI",
+ "PHP_JSON_T_ERROR", "'{'", "'}'", "']'", "','", "':'", "'['", "$accept",
+ "start", "object", "$@1", "object_end", "members", "member", "pair",
+ "array", "$@2", "array_end", "elements", "element", "key", "value",
+ "errlex", YY_NULL
+};
+#endif
+
+# ifdef YYPRINT
+/* YYTOKNUM[YYLEX-NUM] -- Internal token number corresponding to
+ token YYLEX-NUM. */
+static const yytype_uint16 yytoknum[] =
+{
+ 0, 256, 257, 258, 259, 260, 261, 262, 263, 264,
+ 265, 266, 123, 125, 93, 44, 58, 91
+};
+# endif
+
+/* YYR1[YYN] -- Symbol number of symbol that rule YYN derives. */
+static const yytype_uint8 yyr1[] =
+{
+ 0, 18, 19, 19, 21, 20, 22, 22, 23, 23,
+ 24, 24, 24, 25, 25, 27, 26, 28, 28, 29,
+ 29, 30, 30, 30, 31, 31, 32, 32, 32, 32,
+ 32, 32, 32, 32, 32, 32, 33
+};
+
+/* YYR2[YYN] -- Number of symbols composing right hand side of rule YYN. */
+static const yytype_uint8 yyr2[] =
+{
+ 0, 2, 2, 2, 0, 4, 1, 1, 0, 1,
+ 1, 3, 2, 3, 2, 0, 4, 1, 1, 0,
+ 1, 1, 3, 2, 1, 1, 1, 1, 1, 1,
+ 1, 1, 1, 1, 1, 1, 1
+};
+
+/* YYDEFACT[STATE-NAME] -- Default reduction number in state STATE-NUM.
+ Performed when YYTABLE doesn't specify something else to do. Zero
+ means the default is an error. */
+static const yytype_uint8 yydefact[] =
+{
+ 0, 32, 33, 34, 30, 31, 28, 29, 36, 4,
+ 15, 0, 26, 27, 0, 35, 8, 19, 1, 2,
+ 3, 24, 25, 0, 9, 10, 0, 0, 20, 21,
+ 6, 7, 5, 0, 12, 0, 14, 18, 17, 16,
+ 0, 23, 11, 13, 22
+};
+
+/* YYDEFGOTO[NTERM-NUM]. */
+static const yytype_int8 yydefgoto[] =
+{
+ -1, 11, 12, 16, 32, 23, 24, 25, 13, 17,
+ 39, 27, 28, 26, 14, 15
+};
+
+/* YYPACT[STATE-NUM] -- Index in YYTABLE of the portion describing
+ STATE-NUM. */
+#define YYPACT_NINF -18
+static const yytype_int8 yypact[] =
+{
+ -2, -18, -18, -18, -18, -18, -18, -18, -18, -18,
+ -18, 11, -18, -18, 9, -18, 21, -2, -18, -18,
+ -18, -18, -18, 18, 1, -18, -3, 20, 6, -18,
+ -18, -18, -18, 21, -18, -2, -18, -18, -18, -18,
+ -2, -18, -18, -18, -18
+};
+
+/* YYPGOTO[NTERM-NUM]. */
+static const yytype_int8 yypgoto[] =
+{
+ -18, -18, -18, -18, -18, -18, -18, -11, -18, -18,
+ -18, -18, -18, -18, -17, 0
+};
+
+/* YYTABLE[YYPACT[STATE-NUM]]. What to do in state STATE-NUM. If
+ positive, shift that token. If negative, reduce the rule which
+ number is the opposite. If YYTABLE_NINF, syntax error. */
+#define YYTABLE_NINF -1
+static const yytype_uint8 yytable[] =
+{
+ 29, 1, 2, 3, 4, 5, 6, 7, 8, 8,
+ 9, 18, 8, 35, 20, 10, 33, 8, 43, 19,
+ 8, 40, 42, 44, 34, 0, 36, 0, 41, 21,
+ 22, 30, 31, 37, 38
+};
+
+#define yypact_value_is_default(Yystate) \
+ (!!((Yystate) == (-18)))
+
+#define yytable_value_is_error(Yytable_value) \
+ YYID (0)
+
+static const yytype_int8 yycheck[] =
+{
+ 17, 3, 4, 5, 6, 7, 8, 9, 11, 11,
+ 12, 0, 11, 16, 14, 17, 15, 11, 35, 10,
+ 11, 15, 33, 40, 24, -1, 26, -1, 28, 8,
+ 9, 13, 14, 13, 14
+};
+
+/* YYSTOS[STATE-NUM] -- The (internal number of the) accessing
+ symbol of state STATE-NUM. */
+static const yytype_uint8 yystos[] =
+{
+ 0, 3, 4, 5, 6, 7, 8, 9, 11, 12,
+ 17, 19, 20, 26, 32, 33, 21, 27, 0, 10,
+ 33, 8, 9, 23, 24, 25, 31, 29, 30, 32,
+ 13, 14, 22, 15, 33, 16, 33, 13, 14, 28,
+ 15, 33, 25, 32, 32
+};
+
+#define yyerrok (yyerrstatus = 0)
+#define yyclearin (yychar = YYEMPTY)
+#define YYEMPTY (-2)
+#define YYEOF 0
+
+#define YYACCEPT goto yyacceptlab
+#define YYABORT goto yyabortlab
+#define YYERROR goto yyerrorlab
+
+
+/* Like YYERROR except do call yyerror. This remains here temporarily
+ to ease the transition to the new meaning of YYERROR, for GCC.
+ Once GCC version 2 has supplanted version 1, this can go. However,
+ YYFAIL appears to be in use. Nevertheless, it is formally deprecated
+ in Bison 2.4.2's NEWS entry, where a plan to phase it out is
+ discussed. */
+
+#define YYFAIL goto yyerrlab
+#if defined YYFAIL
+ /* This is here to suppress warnings from the GCC cpp's
+ -Wunused-macros. Normally we don't worry about that warning, but
+ some users do, and we want to make it easy for users to remove
+ YYFAIL uses, which will produce warnings from Bison 2.5. */
+#endif
+
+#define YYRECOVERING() (!!yyerrstatus)
+
+#define YYBACKUP(Token, Value) \
+do \
+ if (yychar == YYEMPTY) \
+ { \
+ yychar = (Token); \
+ yylval = (Value); \
+ YYPOPSTACK (yylen); \
+ yystate = *yyssp; \
+ goto yybackup; \
+ } \
+ else \
+ { \
+ yyerror (parser, YY_("syntax error: cannot back up")); \
+ YYERROR; \
+ } \
+while (YYID (0))
+
+/* Error token number */
+#define YYTERROR 1
+#define YYERRCODE 256
+
+
+/* This macro is provided for backward compatibility. */
+#ifndef YY_LOCATION_PRINT
+# define YY_LOCATION_PRINT(File, Loc) ((void) 0)
+#endif
+
+
+/* YYLEX -- calling `yylex' with the right arguments. */
+#ifdef YYLEX_PARAM
+# define YYLEX yylex (&yylval, YYLEX_PARAM)
+#else
+# define YYLEX yylex (&yylval, parser)
+#endif
+
+/* Enable debugging if requested. */
+#if YYDEBUG
+
+# ifndef YYFPRINTF
+# include /* INFRINGES ON USER NAME SPACE */
+# define YYFPRINTF fprintf
+# endif
+
+# define YYDPRINTF(Args) \
+do { \
+ if (yydebug) \
+ YYFPRINTF Args; \
+} while (YYID (0))
+
+# define YY_SYMBOL_PRINT(Title, Type, Value, Location) \
+do { \
+ if (yydebug) \
+ { \
+ YYFPRINTF (stderr, "%s ", Title); \
+ yy_symbol_print (stderr, \
+ Type, Value, parser); \
+ YYFPRINTF (stderr, "\n"); \
+ } \
+} while (YYID (0))
+
+
+/*--------------------------------.
+| Print this symbol on YYOUTPUT. |
+`--------------------------------*/
+
+/*ARGSUSED*/
+#if (defined __STDC__ || defined __C99__FUNC__ \
+ || defined __cplusplus || defined _MSC_VER)
+static void
+yy_symbol_value_print (FILE *yyoutput, int yytype, YYSTYPE const * const yyvaluep, php_json_parser *parser)
+#else
+static void
+yy_symbol_value_print (yyoutput, yytype, yyvaluep, parser)
+ FILE *yyoutput;
+ int yytype;
+ YYSTYPE const * const yyvaluep;
+ php_json_parser *parser;
+#endif
+{
+ FILE *yyo = yyoutput;
+ YYUSE (yyo);
+ if (!yyvaluep)
+ return;
+ YYUSE (parser);
+# ifdef YYPRINT
+ if (yytype < YYNTOKENS)
+ YYPRINT (yyoutput, yytoknum[yytype], *yyvaluep);
+# else
+ YYUSE (yyoutput);
+# endif
+ YYUSE (yytype);
+}
+
+
+/*--------------------------------.
+| Print this symbol on YYOUTPUT. |
+`--------------------------------*/
+
+#if (defined __STDC__ || defined __C99__FUNC__ \
+ || defined __cplusplus || defined _MSC_VER)
+static void
+yy_symbol_print (FILE *yyoutput, int yytype, YYSTYPE const * const yyvaluep, php_json_parser *parser)
+#else
+static void
+yy_symbol_print (yyoutput, yytype, yyvaluep, parser)
+ FILE *yyoutput;
+ int yytype;
+ YYSTYPE const * const yyvaluep;
+ php_json_parser *parser;
+#endif
+{
+ if (yytype < YYNTOKENS)
+ YYFPRINTF (yyoutput, "token %s (", yytname[yytype]);
+ else
+ YYFPRINTF (yyoutput, "nterm %s (", yytname[yytype]);
+
+ yy_symbol_value_print (yyoutput, yytype, yyvaluep, parser);
+ YYFPRINTF (yyoutput, ")");
+}
+
+/*------------------------------------------------------------------.
+| yy_stack_print -- Print the state stack from its BOTTOM up to its |
+| TOP (included). |
+`------------------------------------------------------------------*/
+
+#if (defined __STDC__ || defined __C99__FUNC__ \
+ || defined __cplusplus || defined _MSC_VER)
+static void
+yy_stack_print (yytype_int16 *yybottom, yytype_int16 *yytop)
+#else
+static void
+yy_stack_print (yybottom, yytop)
+ yytype_int16 *yybottom;
+ yytype_int16 *yytop;
+#endif
+{
+ YYFPRINTF (stderr, "Stack now");
+ for (; yybottom <= yytop; yybottom++)
+ {
+ int yybot = *yybottom;
+ YYFPRINTF (stderr, " %d", yybot);
+ }
+ YYFPRINTF (stderr, "\n");
+}
+
+# define YY_STACK_PRINT(Bottom, Top) \
+do { \
+ if (yydebug) \
+ yy_stack_print ((Bottom), (Top)); \
+} while (YYID (0))
+
+
+/*------------------------------------------------.
+| Report that the YYRULE is going to be reduced. |
+`------------------------------------------------*/
+
+#if (defined __STDC__ || defined __C99__FUNC__ \
+ || defined __cplusplus || defined _MSC_VER)
+static void
+yy_reduce_print (YYSTYPE *yyvsp, int yyrule, php_json_parser *parser)
+#else
+static void
+yy_reduce_print (yyvsp, yyrule, parser)
+ YYSTYPE *yyvsp;
+ int yyrule;
+ php_json_parser *parser;
+#endif
+{
+ int yynrhs = yyr2[yyrule];
+ int yyi;
+ unsigned long int yylno = yyrline[yyrule];
+ YYFPRINTF (stderr, "Reducing stack by rule %d (line %lu):\n",
+ yyrule - 1, yylno);
+ /* The symbols being reduced. */
+ for (yyi = 0; yyi < yynrhs; yyi++)
+ {
+ YYFPRINTF (stderr, " $%d = ", yyi + 1);
+ yy_symbol_print (stderr, yyrhs[yyprhs[yyrule] + yyi],
+ &(yyvsp[(yyi + 1) - (yynrhs)])
+ , parser);
+ YYFPRINTF (stderr, "\n");
+ }
+}
+
+# define YY_REDUCE_PRINT(Rule) \
+do { \
+ if (yydebug) \
+ yy_reduce_print (yyvsp, Rule, parser); \
+} while (YYID (0))
+
+/* Nonzero means print parse trace. It is left uninitialized so that
+ multiple parsers can coexist. */
+int yydebug;
+#else /* !YYDEBUG */
+# define YYDPRINTF(Args)
+# define YY_SYMBOL_PRINT(Title, Type, Value, Location)
+# define YY_STACK_PRINT(Bottom, Top)
+# define YY_REDUCE_PRINT(Rule)
+#endif /* !YYDEBUG */
+
+
+/* YYINITDEPTH -- initial size of the parser's stacks. */
+#ifndef YYINITDEPTH
+# define YYINITDEPTH 200
+#endif
+
+/* YYMAXDEPTH -- maximum size the stacks can grow to (effective only
+ if the built-in stack extension method is used).
+
+ Do not make this value too large; the results are undefined if
+ YYSTACK_ALLOC_MAXIMUM < YYSTACK_BYTES (YYMAXDEPTH)
+ evaluated with infinite-precision integer arithmetic. */
+
+#ifndef YYMAXDEPTH
+# define YYMAXDEPTH 10000
+#endif
+
+
+#if YYERROR_VERBOSE
+
+# ifndef yystrlen
+# if defined __GLIBC__ && defined _STRING_H
+# define yystrlen strlen
+# else
+/* Return the length of YYSTR. */
+#if (defined __STDC__ || defined __C99__FUNC__ \
+ || defined __cplusplus || defined _MSC_VER)
+static YYSIZE_T
+yystrlen (const char *yystr)
+#else
+static YYSIZE_T
+yystrlen (yystr)
+ const char *yystr;
+#endif
+{
+ YYSIZE_T yylen;
+ for (yylen = 0; yystr[yylen]; yylen++)
+ continue;
+ return yylen;
+}
+# endif
+# endif
+
+# ifndef yystpcpy
+# if defined __GLIBC__ && defined _STRING_H && defined _GNU_SOURCE
+# define yystpcpy stpcpy
+# else
+/* Copy YYSRC to YYDEST, returning the address of the terminating '\0' in
+ YYDEST. */
+#if (defined __STDC__ || defined __C99__FUNC__ \
+ || defined __cplusplus || defined _MSC_VER)
+static char *
+yystpcpy (char *yydest, const char *yysrc)
+#else
+static char *
+yystpcpy (yydest, yysrc)
+ char *yydest;
+ const char *yysrc;
+#endif
+{
+ char *yyd = yydest;
+ const char *yys = yysrc;
+
+ while ((*yyd++ = *yys++) != '\0')
+ continue;
+
+ return yyd - 1;
+}
+# endif
+# endif
+
+# ifndef yytnamerr
+/* Copy to YYRES the contents of YYSTR after stripping away unnecessary
+ quotes and backslashes, so that it's suitable for yyerror. The
+ heuristic is that double-quoting is unnecessary unless the string
+ contains an apostrophe, a comma, or backslash (other than
+ backslash-backslash). YYSTR is taken from yytname. If YYRES is
+ null, do not copy; instead, return the length of what the result
+ would have been. */
+static YYSIZE_T
+yytnamerr (char *yyres, const char *yystr)
+{
+ if (*yystr == '"')
+ {
+ YYSIZE_T yyn = 0;
+ char const *yyp = yystr;
+
+ for (;;)
+ switch (*++yyp)
+ {
+ case '\'':
+ case ',':
+ goto do_not_strip_quotes;
+
+ case '\\':
+ if (*++yyp != '\\')
+ goto do_not_strip_quotes;
+ /* Fall through. */
+ default:
+ if (yyres)
+ yyres[yyn] = *yyp;
+ yyn++;
+ break;
+
+ case '"':
+ if (yyres)
+ yyres[yyn] = '\0';
+ return yyn;
+ }
+ do_not_strip_quotes: ;
+ }
+
+ if (! yyres)
+ return yystrlen (yystr);
+
+ return yystpcpy (yyres, yystr) - yyres;
+}
+# endif
+
+/* Copy into *YYMSG, which is of size *YYMSG_ALLOC, an error message
+ about the unexpected token YYTOKEN for the state stack whose top is
+ YYSSP.
+
+ Return 0 if *YYMSG was successfully written. Return 1 if *YYMSG is
+ not large enough to hold the message. In that case, also set
+ *YYMSG_ALLOC to the required number of bytes. Return 2 if the
+ required number of bytes is too large to store. */
+static int
+yysyntax_error (YYSIZE_T *yymsg_alloc, char **yymsg,
+ yytype_int16 *yyssp, int yytoken)
+{
+ YYSIZE_T yysize0 = yytnamerr (YY_NULL, yytname[yytoken]);
+ YYSIZE_T yysize = yysize0;
+ enum { YYERROR_VERBOSE_ARGS_MAXIMUM = 5 };
+ /* Internationalized format string. */
+ const char *yyformat = YY_NULL;
+ /* Arguments of yyformat. */
+ char const *yyarg[YYERROR_VERBOSE_ARGS_MAXIMUM];
+ /* Number of reported tokens (one for the "unexpected", one per
+ "expected"). */
+ int yycount = 0;
+
+ /* There are many possibilities here to consider:
+ - Assume YYFAIL is not used. It's too flawed to consider. See
+
+ for details. YYERROR is fine as it does not invoke this
+ function.
+ - If this state is a consistent state with a default action, then
+ the only way this function was invoked is if the default action
+ is an error action. In that case, don't check for expected
+ tokens because there are none.
+ - The only way there can be no lookahead present (in yychar) is if
+ this state is a consistent state with a default action. Thus,
+ detecting the absence of a lookahead is sufficient to determine
+ that there is no unexpected or expected token to report. In that
+ case, just report a simple "syntax error".
+ - Don't assume there isn't a lookahead just because this state is a
+ consistent state with a default action. There might have been a
+ previous inconsistent state, consistent state with a non-default
+ action, or user semantic action that manipulated yychar.
+ - Of course, the expected token list depends on states to have
+ correct lookahead information, and it depends on the parser not
+ to perform extra reductions after fetching a lookahead from the
+ scanner and before detecting a syntax error. Thus, state merging
+ (from LALR or IELR) and default reductions corrupt the expected
+ token list. However, the list is correct for canonical LR with
+ one exception: it will still contain any token that will not be
+ accepted due to an error action in a later state.
+ */
+ if (yytoken != YYEMPTY)
+ {
+ int yyn = yypact[*yyssp];
+ yyarg[yycount++] = yytname[yytoken];
+ if (!yypact_value_is_default (yyn))
+ {
+ /* Start YYX at -YYN if negative to avoid negative indexes in
+ YYCHECK. In other words, skip the first -YYN actions for
+ this state because they are default actions. */
+ int yyxbegin = yyn < 0 ? -yyn : 0;
+ /* Stay within bounds of both yycheck and yytname. */
+ int yychecklim = YYLAST - yyn + 1;
+ int yyxend = yychecklim < YYNTOKENS ? yychecklim : YYNTOKENS;
+ int yyx;
+
+ for (yyx = yyxbegin; yyx < yyxend; ++yyx)
+ if (yycheck[yyx + yyn] == yyx && yyx != YYTERROR
+ && !yytable_value_is_error (yytable[yyx + yyn]))
+ {
+ if (yycount == YYERROR_VERBOSE_ARGS_MAXIMUM)
+ {
+ yycount = 1;
+ yysize = yysize0;
+ break;
+ }
+ yyarg[yycount++] = yytname[yyx];
+ {
+ YYSIZE_T yysize1 = yysize + yytnamerr (YY_NULL, yytname[yyx]);
+ if (! (yysize <= yysize1
+ && yysize1 <= YYSTACK_ALLOC_MAXIMUM))
+ return 2;
+ yysize = yysize1;
+ }
+ }
+ }
+ }
+
+ switch (yycount)
+ {
+# define YYCASE_(N, S) \
+ case N: \
+ yyformat = S; \
+ break
+ YYCASE_(0, YY_("syntax error"));
+ YYCASE_(1, YY_("syntax error, unexpected %s"));
+ YYCASE_(2, YY_("syntax error, unexpected %s, expecting %s"));
+ YYCASE_(3, YY_("syntax error, unexpected %s, expecting %s or %s"));
+ YYCASE_(4, YY_("syntax error, unexpected %s, expecting %s or %s or %s"));
+ YYCASE_(5, YY_("syntax error, unexpected %s, expecting %s or %s or %s or %s"));
+# undef YYCASE_
+ }
+
+ {
+ YYSIZE_T yysize1 = yysize + yystrlen (yyformat);
+ if (! (yysize <= yysize1 && yysize1 <= YYSTACK_ALLOC_MAXIMUM))
+ return 2;
+ yysize = yysize1;
+ }
+
+ if (*yymsg_alloc < yysize)
+ {
+ *yymsg_alloc = 2 * yysize;
+ if (! (yysize <= *yymsg_alloc
+ && *yymsg_alloc <= YYSTACK_ALLOC_MAXIMUM))
+ *yymsg_alloc = YYSTACK_ALLOC_MAXIMUM;
+ return 1;
+ }
+
+ /* Avoid sprintf, as that infringes on the user's name space.
+ Don't have undefined behavior even if the translation
+ produced a string with the wrong number of "%s"s. */
+ {
+ char *yyp = *yymsg;
+ int yyi = 0;
+ while ((*yyp = *yyformat) != '\0')
+ if (*yyp == '%' && yyformat[1] == 's' && yyi < yycount)
+ {
+ yyp += yytnamerr (yyp, yyarg[yyi++]);
+ yyformat += 2;
+ }
+ else
+ {
+ yyp++;
+ yyformat++;
+ }
+ }
+ return 0;
+}
+#endif /* YYERROR_VERBOSE */
+
+/*-----------------------------------------------.
+| Release the memory associated to this symbol. |
+`-----------------------------------------------*/
+
+/*ARGSUSED*/
+#if (defined __STDC__ || defined __C99__FUNC__ \
+ || defined __cplusplus || defined _MSC_VER)
+static void
+yydestruct (const char *yymsg, int yytype, YYSTYPE *yyvaluep, php_json_parser *parser)
+#else
+static void
+yydestruct (yymsg, yytype, yyvaluep, parser)
+ const char *yymsg;
+ int yytype;
+ YYSTYPE *yyvaluep;
+ php_json_parser *parser;
+#endif
+{
+ YYUSE (yyvaluep);
+ YYUSE (parser);
+
+ if (!yymsg)
+ yymsg = "Deleting";
+ YY_SYMBOL_PRINT (yymsg, yytype, yyvaluep, yylocationp);
+
+ switch (yytype)
+ {
+ case 3: /* PHP_JSON_T_NUL */
+
+ { zval_dtor(&((*yyvaluep).value)); };
+
+ break;
+ case 4: /* PHP_JSON_T_TRUE */
+
+ { zval_dtor(&((*yyvaluep).value)); };
+
+ break;
+ case 5: /* PHP_JSON_T_FALSE */
+
+ { zval_dtor(&((*yyvaluep).value)); };
+
+ break;
+ case 6: /* PHP_JSON_T_INT */
+
+ { zval_dtor(&((*yyvaluep).value)); };
+
+ break;
+ case 7: /* PHP_JSON_T_DOUBLE */
+
+ { zval_dtor(&((*yyvaluep).value)); };
+
+ break;
+ case 8: /* PHP_JSON_T_STRING */
+
+ { zval_dtor(&((*yyvaluep).value)); };
+
+ break;
+ case 9: /* PHP_JSON_T_ESTRING */
+
+ { zval_dtor(&((*yyvaluep).value)); };
+
+ break;
+ case 10: /* PHP_JSON_T_EOI */
+
+ { zval_dtor(&((*yyvaluep).value)); };
+
+ break;
+ case 11: /* PHP_JSON_T_ERROR */
+
+ { zval_dtor(&((*yyvaluep).value)); };
+
+ break;
+ case 19: /* start */
+
+ { zval_dtor(&((*yyvaluep).value)); };
+
+ break;
+ case 20: /* object */
+
+ { zval_dtor(&((*yyvaluep).value)); };
+
+ break;
+ case 23: /* members */
+
+ { zval_dtor(&((*yyvaluep).value)); };
+
+ break;
+ case 24: /* member */
+
+ { zval_dtor(&((*yyvaluep).value)); };
+
+ break;
+ case 25: /* pair */
+
+ { zval_dtor(&((*yyvaluep).pair).key); zval_dtor(&((*yyvaluep).pair).val); };
+
+ break;
+ case 26: /* array */
+
+ { zval_dtor(&((*yyvaluep).value)); };
+
+ break;
+ case 29: /* elements */
+
+ { zval_dtor(&((*yyvaluep).value)); };
+
+ break;
+ case 30: /* element */
+
+ { zval_dtor(&((*yyvaluep).value)); };
+
+ break;
+ case 31: /* key */
+
+ { zval_dtor(&((*yyvaluep).value)); };
+
+ break;
+ case 32: /* value */
+
+ { zval_dtor(&((*yyvaluep).value)); };
+
+ break;
+ case 33: /* errlex */
+
+ { zval_dtor(&((*yyvaluep).value)); };
+
+ break;
+
+ default:
+ break;
+ }
+}
+
+
+
+
+/*----------.
+| yyparse. |
+`----------*/
+
+#ifdef YYPARSE_PARAM
+#if (defined __STDC__ || defined __C99__FUNC__ \
+ || defined __cplusplus || defined _MSC_VER)
+int
+yyparse (void *YYPARSE_PARAM)
+#else
+int
+yyparse (YYPARSE_PARAM)
+ void *YYPARSE_PARAM;
+#endif
+#else /* ! YYPARSE_PARAM */
+#if (defined __STDC__ || defined __C99__FUNC__ \
+ || defined __cplusplus || defined _MSC_VER)
+int
+yyparse (php_json_parser *parser)
+#else
+int
+yyparse (parser)
+ php_json_parser *parser;
+#endif
+#endif
+{
+/* The lookahead symbol. */
+int yychar;
+
+
+#if defined __GNUC__ && 407 <= __GNUC__ * 100 + __GNUC_MINOR__
+/* Suppress an incorrect diagnostic about yylval being uninitialized. */
+# define YY_IGNORE_MAYBE_UNINITIALIZED_BEGIN \
+ _Pragma ("GCC diagnostic push") \
+ _Pragma ("GCC diagnostic ignored \"-Wuninitialized\"")\
+ _Pragma ("GCC diagnostic ignored \"-Wmaybe-uninitialized\"")
+# define YY_IGNORE_MAYBE_UNINITIALIZED_END \
+ _Pragma ("GCC diagnostic pop")
+#else
+/* Default value used for initialization, for pacifying older GCCs
+ or non-GCC compilers. */
+static YYSTYPE yyval_default;
+# define YY_INITIAL_VALUE(Value) = Value
+#endif
+#ifndef YY_IGNORE_MAYBE_UNINITIALIZED_BEGIN
+# define YY_IGNORE_MAYBE_UNINITIALIZED_BEGIN
+# define YY_IGNORE_MAYBE_UNINITIALIZED_END
+#endif
+#ifndef YY_INITIAL_VALUE
+# define YY_INITIAL_VALUE(Value) /* Nothing. */
+#endif
+
+/* The semantic value of the lookahead symbol. */
+YYSTYPE yylval YY_INITIAL_VALUE(yyval_default);
+
+ /* Number of syntax errors so far. */
+ int yynerrs;
+
+ int yystate;
+ /* Number of tokens to shift before error messages enabled. */
+ int yyerrstatus;
+
+ /* The stacks and their tools:
+ `yyss': related to states.
+ `yyvs': related to semantic values.
+
+ Refer to the stacks through separate pointers, to allow yyoverflow
+ to reallocate them elsewhere. */
+
+ /* The state stack. */
+ yytype_int16 yyssa[YYINITDEPTH];
+ yytype_int16 *yyss;
+ yytype_int16 *yyssp;
+
+ /* The semantic value stack. */
+ YYSTYPE yyvsa[YYINITDEPTH];
+ YYSTYPE *yyvs;
+ YYSTYPE *yyvsp;
+
+ YYSIZE_T yystacksize;
+
+ int yyn;
+ int yyresult;
+ /* Lookahead token as an internal (translated) token number. */
+ int yytoken = 0;
+ /* The variables used to return semantic value and location from the
+ action routines. */
+ YYSTYPE yyval;
+
+#if YYERROR_VERBOSE
+ /* Buffer for error messages, and its allocated size. */
+ char yymsgbuf[128];
+ char *yymsg = yymsgbuf;
+ YYSIZE_T yymsg_alloc = sizeof yymsgbuf;
+#endif
+
+#define YYPOPSTACK(N) (yyvsp -= (N), yyssp -= (N))
+
+ /* The number of symbols on the RHS of the reduced rule.
+ Keep to zero when no symbol should be popped. */
+ int yylen = 0;
+
+ yyssp = yyss = yyssa;
+ yyvsp = yyvs = yyvsa;
+ yystacksize = YYINITDEPTH;
+
+ YYDPRINTF ((stderr, "Starting parse\n"));
+
+ yystate = 0;
+ yyerrstatus = 0;
+ yynerrs = 0;
+ yychar = YYEMPTY; /* Cause a token to be read. */
+ goto yysetstate;
+
+/*------------------------------------------------------------.
+| yynewstate -- Push a new state, which is found in yystate. |
+`------------------------------------------------------------*/
+ yynewstate:
+ /* In all cases, when you get here, the value and location stacks
+ have just been pushed. So pushing a state here evens the stacks. */
+ yyssp++;
+
+ yysetstate:
+ *yyssp = yystate;
+
+ if (yyss + yystacksize - 1 <= yyssp)
+ {
+ /* Get the current used size of the three stacks, in elements. */
+ YYSIZE_T yysize = yyssp - yyss + 1;
+
+#ifdef yyoverflow
+ {
+ /* Give user a chance to reallocate the stack. Use copies of
+ these so that the &'s don't force the real ones into
+ memory. */
+ YYSTYPE *yyvs1 = yyvs;
+ yytype_int16 *yyss1 = yyss;
+
+ /* Each stack pointer address is followed by the size of the
+ data in use in that stack, in bytes. This used to be a
+ conditional around just the two extra args, but that might
+ be undefined if yyoverflow is a macro. */
+ yyoverflow (YY_("memory exhausted"),
+ &yyss1, yysize * sizeof (*yyssp),
+ &yyvs1, yysize * sizeof (*yyvsp),
+ &yystacksize);
+
+ yyss = yyss1;
+ yyvs = yyvs1;
+ }
+#else /* no yyoverflow */
+# ifndef YYSTACK_RELOCATE
+ goto yyexhaustedlab;
+# else
+ /* Extend the stack our own way. */
+ if (YYMAXDEPTH <= yystacksize)
+ goto yyexhaustedlab;
+ yystacksize *= 2;
+ if (YYMAXDEPTH < yystacksize)
+ yystacksize = YYMAXDEPTH;
+
+ {
+ yytype_int16 *yyss1 = yyss;
+ union yyalloc *yyptr =
+ (union yyalloc *) YYSTACK_ALLOC (YYSTACK_BYTES (yystacksize));
+ if (! yyptr)
+ goto yyexhaustedlab;
+ YYSTACK_RELOCATE (yyss_alloc, yyss);
+ YYSTACK_RELOCATE (yyvs_alloc, yyvs);
+# undef YYSTACK_RELOCATE
+ if (yyss1 != yyssa)
+ YYSTACK_FREE (yyss1);
+ }
+# endif
+#endif /* no yyoverflow */
+
+ yyssp = yyss + yysize - 1;
+ yyvsp = yyvs + yysize - 1;
+
+ YYDPRINTF ((stderr, "Stack size increased to %lu\n",
+ (unsigned long int) yystacksize));
+
+ if (yyss + yystacksize - 1 <= yyssp)
+ YYABORT;
+ }
+
+ YYDPRINTF ((stderr, "Entering state %d\n", yystate));
+
+ if (yystate == YYFINAL)
+ YYACCEPT;
+
+ goto yybackup;
+
+/*-----------.
+| yybackup. |
+`-----------*/
+yybackup:
+
+ /* Do appropriate processing given the current state. Read a
+ lookahead token if we need one and don't already have one. */
+
+ /* First try to decide what to do without reference to lookahead token. */
+ yyn = yypact[yystate];
+ if (yypact_value_is_default (yyn))
+ goto yydefault;
+
+ /* Not known => get a lookahead token if don't already have one. */
+
+ /* YYCHAR is either YYEMPTY or YYEOF or a valid lookahead symbol. */
+ if (yychar == YYEMPTY)
+ {
+ YYDPRINTF ((stderr, "Reading a token: "));
+ yychar = YYLEX;
+ }
+
+ if (yychar <= YYEOF)
+ {
+ yychar = yytoken = YYEOF;
+ YYDPRINTF ((stderr, "Now at end of input.\n"));
+ }
+ else
+ {
+ yytoken = YYTRANSLATE (yychar);
+ YY_SYMBOL_PRINT ("Next token is", yytoken, &yylval, &yylloc);
+ }
+
+ /* If the proper action on seeing token YYTOKEN is to reduce or to
+ detect an error, take that action. */
+ yyn += yytoken;
+ if (yyn < 0 || YYLAST < yyn || yycheck[yyn] != yytoken)
+ goto yydefault;
+ yyn = yytable[yyn];
+ if (yyn <= 0)
+ {
+ if (yytable_value_is_error (yyn))
+ goto yyerrlab;
+ yyn = -yyn;
+ goto yyreduce;
+ }
+
+ /* Count tokens shifted since error; after three, turn off error
+ status. */
+ if (yyerrstatus)
+ yyerrstatus--;
+
+ /* Shift the lookahead token. */
+ YY_SYMBOL_PRINT ("Shifting", yytoken, &yylval, &yylloc);
+
+ /* Discard the shifted token. */
+ yychar = YYEMPTY;
+
+ yystate = yyn;
+ YY_IGNORE_MAYBE_UNINITIALIZED_BEGIN
+ *++yyvsp = yylval;
+ YY_IGNORE_MAYBE_UNINITIALIZED_END
+
+ goto yynewstate;
+
+
+/*-----------------------------------------------------------.
+| yydefault -- do the default action for the current state. |
+`-----------------------------------------------------------*/
+yydefault:
+ yyn = yydefact[yystate];
+ if (yyn == 0)
+ goto yyerrlab;
+ goto yyreduce;
+
+
+/*-----------------------------.
+| yyreduce -- Do a reduction. |
+`-----------------------------*/
+yyreduce:
+ /* yyn is the number of a rule to reduce with. */
+ yylen = yyr2[yyn];
+
+ /* If YYLEN is nonzero, implement the default value of the action:
+ `$$ = $1'.
+
+ Otherwise, the following line sets YYVAL to garbage.
+ This behavior is undocumented and Bison
+ users should not rely upon it. Assigning to YYVAL
+ unconditionally makes the parser a bit smaller, and it avoids a
+ GCC warning that YYVAL may be used uninitialized. */
+ yyval = yyvsp[1-yylen];
+
+
+ YY_REDUCE_PRINT (yyn);
+ switch (yyn)
+ {
+ case 2:
+
+ { (yyval.value) = (yyvsp[(1) - (2)].value); ZVAL_COPY_VALUE(parser->return_value, &(yyvsp[(1) - (2)].value)); PHP_JSON_USE((yyvsp[(2) - (2)].value)); YYACCEPT; }
+ break;
+
+ case 3:
+
+ { PHP_JSON_USE_2((yyval.value), (yyvsp[(1) - (2)].value), (yyvsp[(2) - (2)].value)); }
+ break;
+
+ case 4:
+
+ { PHP_JSON_DEPTH_INC; }
+ break;
+
+ case 5:
+
+ { PHP_JSON_DEPTH_DEC; (yyval.value) = (yyvsp[(3) - (4)].value); }
+ break;
+
+ case 7:
+
+ { parser->scanner.errcode = PHP_JSON_ERROR_STATE_MISMATCH; YYERROR; }
+ break;
+
+ case 8:
+
+ { php_json_parser_object_init(parser, &(yyval.value)); }
+ break;
+
+ case 10:
+
+ { php_json_parser_object_init(parser, &(yyval.value)); php_json_parser_object_update(parser, &(yyval.value), &(yyvsp[(1) - (1)].pair).key, &(yyvsp[(1) - (1)].pair).val); }
+ break;
+
+ case 11:
+
+ { php_json_parser_object_update(parser, &(yyvsp[(1) - (3)].value), &(yyvsp[(3) - (3)].pair).key, &(yyvsp[(3) - (3)].pair).val); (yyval.value) = (yyvsp[(1) - (3)].value); }
+ break;
+
+ case 12:
+
+ { PHP_JSON_USE_2((yyval.value), (yyvsp[(1) - (2)].value), (yyvsp[(2) - (2)].value)); }
+ break;
+
+ case 13:
+
+ { (yyval.pair).key = (yyvsp[(1) - (3)].value); (yyval.pair).val = (yyvsp[(3) - (3)].value); }
+ break;
+
+ case 14:
+
+ { PHP_JSON_USE_2((yyval.pair), (yyvsp[(1) - (2)].value), (yyvsp[(2) - (2)].value)); }
+ break;
+
+ case 15:
+
+ { PHP_JSON_DEPTH_INC; }
+ break;
+
+ case 16:
+
+ { PHP_JSON_DEPTH_DEC; (yyval.value) = (yyvsp[(3) - (4)].value); }
+ break;
+
+ case 18:
+
+ { parser->scanner.errcode = PHP_JSON_ERROR_STATE_MISMATCH; YYERROR; }
+ break;
+
+ case 19:
+
+ { php_json_parser_array_init(&(yyval.value)); }
+ break;
+
+ case 21:
+
+ { php_json_parser_array_init(&(yyval.value)); php_json_parser_array_append(&(yyval.value), &(yyvsp[(1) - (1)].value)); }
+ break;
+
+ case 22:
+
+ { php_json_parser_array_append(&(yyvsp[(1) - (3)].value), &(yyvsp[(3) - (3)].value)); (yyval.value) = (yyvsp[(1) - (3)].value); }
+ break;
+
+ case 23:
+
+ { PHP_JSON_USE_2((yyval.value), (yyvsp[(1) - (2)].value), (yyvsp[(2) - (2)].value)); }
+ break;
+
+ case 36:
+
+ { PHP_JSON_USE_1((yyval.value), (yyvsp[(1) - (1)].value)); YYERROR; }
+ break;
+
+
+
+ default: break;
+ }
+ /* User semantic actions sometimes alter yychar, and that requires
+ that yytoken be updated with the new translation. We take the
+ approach of translating immediately before every use of yytoken.
+ One alternative is translating here after every semantic action,
+ but that translation would be missed if the semantic action invokes
+ YYABORT, YYACCEPT, or YYERROR immediately after altering yychar or
+ if it invokes YYBACKUP. In the case of YYABORT or YYACCEPT, an
+ incorrect destructor might then be invoked immediately. In the
+ case of YYERROR or YYBACKUP, subsequent parser actions might lead
+ to an incorrect destructor call or verbose syntax error message
+ before the lookahead is translated. */
+ YY_SYMBOL_PRINT ("-> $$ =", yyr1[yyn], &yyval, &yyloc);
+
+ YYPOPSTACK (yylen);
+ yylen = 0;
+ YY_STACK_PRINT (yyss, yyssp);
+
+ *++yyvsp = yyval;
+
+ /* Now `shift' the result of the reduction. Determine what state
+ that goes to, based on the state we popped back to and the rule
+ number reduced by. */
+
+ yyn = yyr1[yyn];
+
+ yystate = yypgoto[yyn - YYNTOKENS] + *yyssp;
+ if (0 <= yystate && yystate <= YYLAST && yycheck[yystate] == *yyssp)
+ yystate = yytable[yystate];
+ else
+ yystate = yydefgoto[yyn - YYNTOKENS];
+
+ goto yynewstate;
+
+
+/*------------------------------------.
+| yyerrlab -- here on detecting error |
+`------------------------------------*/
+yyerrlab:
+ /* Make sure we have latest lookahead translation. See comments at
+ user semantic actions for why this is necessary. */
+ yytoken = yychar == YYEMPTY ? YYEMPTY : YYTRANSLATE (yychar);
+
+ /* If not already recovering from an error, report this error. */
+ if (!yyerrstatus)
+ {
+ ++yynerrs;
+#if ! YYERROR_VERBOSE
+ yyerror (parser, YY_("syntax error"));
+#else
+# define YYSYNTAX_ERROR yysyntax_error (&yymsg_alloc, &yymsg, \
+ yyssp, yytoken)
+ {
+ char const *yymsgp = YY_("syntax error");
+ int yysyntax_error_status;
+ yysyntax_error_status = YYSYNTAX_ERROR;
+ if (yysyntax_error_status == 0)
+ yymsgp = yymsg;
+ else if (yysyntax_error_status == 1)
+ {
+ if (yymsg != yymsgbuf)
+ YYSTACK_FREE (yymsg);
+ yymsg = (char *) YYSTACK_ALLOC (yymsg_alloc);
+ if (!yymsg)
+ {
+ yymsg = yymsgbuf;
+ yymsg_alloc = sizeof yymsgbuf;
+ yysyntax_error_status = 2;
+ }
+ else
+ {
+ yysyntax_error_status = YYSYNTAX_ERROR;
+ yymsgp = yymsg;
+ }
+ }
+ yyerror (parser, yymsgp);
+ if (yysyntax_error_status == 2)
+ goto yyexhaustedlab;
+ }
+# undef YYSYNTAX_ERROR
+#endif
+ }
+
+
+
+ if (yyerrstatus == 3)
+ {
+ /* If just tried and failed to reuse lookahead token after an
+ error, discard it. */
+
+ if (yychar <= YYEOF)
+ {
+ /* Return failure if at end of input. */
+ if (yychar == YYEOF)
+ YYABORT;
+ }
+ else
+ {
+ yydestruct ("Error: discarding",
+ yytoken, &yylval, parser);
+ yychar = YYEMPTY;
+ }
+ }
+
+ /* Else will try to reuse lookahead token after shifting the error
+ token. */
+ goto yyerrlab1;
+
+
+/*---------------------------------------------------.
+| yyerrorlab -- error raised explicitly by YYERROR. |
+`---------------------------------------------------*/
+yyerrorlab:
+
+ /* Pacify compilers like GCC when the user code never invokes
+ YYERROR and the label yyerrorlab therefore never appears in user
+ code. */
+ if (/*CONSTCOND*/ 0)
+ goto yyerrorlab;
+
+ /* Do not reclaim the symbols of the rule which action triggered
+ this YYERROR. */
+ YYPOPSTACK (yylen);
+ yylen = 0;
+ YY_STACK_PRINT (yyss, yyssp);
+ yystate = *yyssp;
+ goto yyerrlab1;
+
+
+/*-------------------------------------------------------------.
+| yyerrlab1 -- common code for both syntax error and YYERROR. |
+`-------------------------------------------------------------*/
+yyerrlab1:
+ yyerrstatus = 3; /* Each real token shifted decrements this. */
+
+ for (;;)
+ {
+ yyn = yypact[yystate];
+ if (!yypact_value_is_default (yyn))
+ {
+ yyn += YYTERROR;
+ if (0 <= yyn && yyn <= YYLAST && yycheck[yyn] == YYTERROR)
+ {
+ yyn = yytable[yyn];
+ if (0 < yyn)
+ break;
+ }
+ }
+
+ /* Pop the current state because it cannot handle the error token. */
+ if (yyssp == yyss)
+ YYABORT;
+
+
+ yydestruct ("Error: popping",
+ yystos[yystate], yyvsp, parser);
+ YYPOPSTACK (1);
+ yystate = *yyssp;
+ YY_STACK_PRINT (yyss, yyssp);
+ }
+
+ YY_IGNORE_MAYBE_UNINITIALIZED_BEGIN
+ *++yyvsp = yylval;
+ YY_IGNORE_MAYBE_UNINITIALIZED_END
+
+
+ /* Shift the error token. */
+ YY_SYMBOL_PRINT ("Shifting", yystos[yyn], yyvsp, yylsp);
+
+ yystate = yyn;
+ goto yynewstate;
+
+
+/*-------------------------------------.
+| yyacceptlab -- YYACCEPT comes here. |
+`-------------------------------------*/
+yyacceptlab:
+ yyresult = 0;
+ goto yyreturn;
+
+/*-----------------------------------.
+| yyabortlab -- YYABORT comes here. |
+`-----------------------------------*/
+yyabortlab:
+ yyresult = 1;
+ goto yyreturn;
+
+#if !defined yyoverflow || YYERROR_VERBOSE
+/*-------------------------------------------------.
+| yyexhaustedlab -- memory exhaustion comes here. |
+`-------------------------------------------------*/
+yyexhaustedlab:
+ yyerror (parser, YY_("memory exhausted"));
+ yyresult = 2;
+ /* Fall through. */
+#endif
+
+yyreturn:
+ if (yychar != YYEMPTY)
+ {
+ /* Make sure we have latest lookahead translation. See comments at
+ user semantic actions for why this is necessary. */
+ yytoken = YYTRANSLATE (yychar);
+ yydestruct ("Cleanup: discarding lookahead",
+ yytoken, &yylval, parser);
+ }
+ /* Do not reclaim the symbols of the rule which action triggered
+ this YYABORT or YYACCEPT. */
+ YYPOPSTACK (yylen);
+ YY_STACK_PRINT (yyss, yyssp);
+ while (yyssp != yyss)
+ {
+ yydestruct ("Cleanup: popping",
+ yystos[*yyssp], yyvsp, parser);
+ YYPOPSTACK (1);
+ }
+#ifndef yyoverflow
+ if (yyss != yyssa)
+ YYSTACK_FREE (yyss);
+#endif
+#if YYERROR_VERBOSE
+ if (yymsg != yymsgbuf)
+ YYSTACK_FREE (yymsg);
+#endif
+ /* Make sure YYID is used. */
+ return YYID (yyresult);
+}
+
+
+
+ /* Functions */
+
+void php_json_parser_init(php_json_parser *parser, zval *return_value, char *str, size_t str_len, int options, int max_depth)
+{
+ memset(parser, 0, sizeof(php_json_parser));
+ php_json_scanner_init(&parser->scanner, str, str_len, options);
+ parser->depth = 1;
+ parser->max_depth = max_depth;
+ parser->return_value = return_value;
+}
+
+php_json_error_code php_json_parser_error_code(php_json_parser *parser)
+{
+ return parser->scanner.errcode;
+}
+
+void php_json_parser_object_init(php_json_parser *parser, zval *object)
+{
+ if (parser->scanner.options & PHP_JSON_OBJECT_AS_ARRAY) {
+ array_init(object);
+ } else {
+ object_init(object);
+ }
+}
+
+void php_json_parser_object_update(php_json_parser *parser, zval *object, zval *zkey, zval *zvalue)
+{
+ char *key = Z_STRVAL_P(zkey);
+ int key_len = Z_STRLEN_P(zkey);
+
+ if (parser->scanner.options & PHP_JSON_OBJECT_AS_ARRAY) {
+ add_assoc_zval_ex(object, key, key_len, zvalue);
+ } else {
+ if (key_len == 0) {
+ key = "_empty_";
+ key_len = sizeof("_empty_") - 1;
+ }
+ add_property_zval_ex(object, key, key_len, zvalue TSRMLS_CC);
+
+ if (Z_REFCOUNTED_P(zvalue)) {
+ Z_DELREF_P(zvalue);
+ }
+ }
+ zval_dtor(zkey);
+}
+
+void php_json_parser_array_init(zval *array)
+{
+ array_init(array);
+}
+
+void php_json_parser_array_append(zval *array, zval *zvalue)
+{
+ add_next_index_zval(array, zvalue);
+}
+
+int php_json_yylex(union YYSTYPE *value, php_json_parser *parser)
+{
+ int token = php_json_scan(&parser->scanner);
+ value->value = parser->scanner.value;
+ return token;
+}
+
+void php_json_yyerror(php_json_parser *parser, char const *msg)
+{
+ if (!parser->scanner.errcode) {
+ parser->scanner.errcode = PHP_JSON_ERROR_SYNTAX;
+ }
+}
diff --git a/ext/json/json_parser.tab.h b/ext/json/json_parser.tab.h
new file mode 100644
index 0000000000000..a55fde318a36c
--- /dev/null
+++ b/ext/json/json_parser.tab.h
@@ -0,0 +1,107 @@
+/* A Bison parser, made by GNU Bison 2.7.12-4996. */
+
+/* Bison interface for Yacc-like parsers in C
+
+ Copyright (C) 1984, 1989-1990, 2000-2013 Free Software Foundation, Inc.
+
+ This program is free software: you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation, either version 3 of the License, or
+ (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with this program. If not, see . */
+
+/* As a special exception, you may create a larger work that contains
+ part or all of the Bison parser skeleton and distribute that work
+ under terms of your choice, so long as that work isn't itself a
+ parser generator using the skeleton or a modified version thereof
+ as a parser skeleton. Alternatively, if you modify or redistribute
+ the parser skeleton itself, you may (at your option) remove this
+ special exception, which will cause the skeleton and the resulting
+ Bison output files to be licensed under the GNU General Public
+ License without this special exception.
+
+ This special exception was added by the Free Software Foundation in
+ version 2.2 of Bison. */
+
+#ifndef YY_PHP_JSON_YY_HOME_JAKUB_PROG_PHP_MASTER_EXT_JSON_JSON_PARSER_TAB_H_INCLUDED
+# define YY_PHP_JSON_YY_HOME_JAKUB_PROG_PHP_MASTER_EXT_JSON_JSON_PARSER_TAB_H_INCLUDED
+/* Enabling traces. */
+#ifndef YYDEBUG
+# define YYDEBUG 0
+#endif
+#if YYDEBUG
+extern int php_json_yydebug;
+#endif
+
+/* Tokens. */
+#ifndef YYTOKENTYPE
+# define YYTOKENTYPE
+ /* Put the tokens into the symbol table, so that GDB and other debuggers
+ know about them. */
+ enum yytokentype {
+ PHP_JSON_T_NUL = 258,
+ PHP_JSON_T_TRUE = 259,
+ PHP_JSON_T_FALSE = 260,
+ PHP_JSON_T_INT = 261,
+ PHP_JSON_T_DOUBLE = 262,
+ PHP_JSON_T_STRING = 263,
+ PHP_JSON_T_ESTRING = 264,
+ PHP_JSON_T_EOI = 265,
+ PHP_JSON_T_ERROR = 266
+ };
+#endif
+/* Tokens. */
+#define PHP_JSON_T_NUL 258
+#define PHP_JSON_T_TRUE 259
+#define PHP_JSON_T_FALSE 260
+#define PHP_JSON_T_INT 261
+#define PHP_JSON_T_DOUBLE 262
+#define PHP_JSON_T_STRING 263
+#define PHP_JSON_T_ESTRING 264
+#define PHP_JSON_T_EOI 265
+#define PHP_JSON_T_ERROR 266
+
+
+
+#if ! defined YYSTYPE && ! defined YYSTYPE_IS_DECLARED
+typedef union YYSTYPE
+{
+
+
+ zval value;
+ struct {
+ zval key;
+ zval val;
+ } pair;
+
+
+
+} YYSTYPE;
+# define YYSTYPE_IS_TRIVIAL 1
+# define yystype YYSTYPE /* obsolescent; will be withdrawn */
+# define YYSTYPE_IS_DECLARED 1
+#endif
+
+
+#ifdef YYPARSE_PARAM
+#if defined __STDC__ || defined __cplusplus
+int php_json_yyparse (void *YYPARSE_PARAM);
+#else
+int php_json_yyparse ();
+#endif
+#else /* ! YYPARSE_PARAM */
+#if defined __STDC__ || defined __cplusplus
+int php_json_yyparse (php_json_parser *parser);
+#else
+int php_json_yyparse ();
+#endif
+#endif /* ! YYPARSE_PARAM */
+
+#endif /* !YY_PHP_JSON_YY_HOME_JAKUB_PROG_PHP_MASTER_EXT_JSON_JSON_PARSER_TAB_H_INCLUDED */
diff --git a/ext/json/json_scanner.c b/ext/json/json_scanner.c
index 2cfd8b84bea0b..6cd4d12fd65b9 100644
--- a/ext/json/json_scanner.c
+++ b/ext/json/json_scanner.c
@@ -1,4 +1,4 @@
-/* Generated by re2c 0.13.5 */
+/* Generated by re2c 0.13.6 */
/*
+----------------------------------------------------------------------+
| PHP Version 5 |
@@ -147,56 +147,55 @@ int php_json_scan(php_json_scanner *s)
0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0,
};
-
yych = *YYCURSOR;
if (yych <= '9') {
if (yych <= ' ') {
if (yych <= '\n') {
- if (yych <= 0x00) goto yy2;
- if (yych <= 0x08) goto yy4;
- if (yych <= '\t') goto yy6;
- goto yy8;
+ if (yych <= 0x00) goto yy3;
+ if (yych <= 0x08) goto yy5;
+ if (yych <= '\t') goto yy7;
+ goto yy9;
} else {
- if (yych == '\r') goto yy9;
- if (yych <= 0x1F) goto yy4;
- goto yy6;
+ if (yych == '\r') goto yy10;
+ if (yych <= 0x1F) goto yy5;
+ goto yy7;
}
} else {
if (yych <= ',') {
- if (yych == '"') goto yy10;
- if (yych <= '+') goto yy4;
- goto yy12;
+ if (yych == '"') goto yy11;
+ if (yych <= '+') goto yy5;
+ goto yy13;
} else {
- if (yych <= '-') goto yy14;
- if (yych <= '/') goto yy4;
- if (yych <= '0') goto yy15;
- goto yy17;
+ if (yych <= '-') goto yy15;
+ if (yych <= '/') goto yy5;
+ if (yych <= '0') goto yy16;
+ goto yy18;
}
}
} else {
if (yych <= 'm') {
if (yych <= '\\') {
- if (yych <= ':') goto yy18;
- if (yych == '[') goto yy20;
- goto yy4;
+ if (yych <= ':') goto yy19;
+ if (yych == '[') goto yy21;
+ goto yy5;
} else {
- if (yych <= ']') goto yy22;
- if (yych == 'f') goto yy24;
- goto yy4;
+ if (yych <= ']') goto yy23;
+ if (yych == 'f') goto yy25;
+ goto yy5;
}
} else {
if (yych <= 'z') {
- if (yych <= 'n') goto yy25;
- if (yych == 't') goto yy26;
- goto yy4;
+ if (yych <= 'n') goto yy26;
+ if (yych == 't') goto yy27;
+ goto yy5;
} else {
- if (yych <= '{') goto yy27;
- if (yych == '}') goto yy29;
- goto yy4;
+ if (yych <= '{') goto yy28;
+ if (yych == '}') goto yy30;
+ goto yy5;
}
}
}
-yy2:
+yy3:
++YYCURSOR;
{
if (s->limit < s->cursor) {
@@ -206,27 +205,27 @@ int php_json_scan(php_json_scanner *s)
return PHP_JSON_T_ERROR;
}
}
-yy4:
- ++YYCURSOR;
yy5:
+ ++YYCURSOR;
+yy6:
{
s->errcode = PHP_JSON_ERROR_SYNTAX;
return PHP_JSON_T_ERROR;
}
-yy6:
+yy7:
++YYCURSOR;
yych = *YYCURSOR;
- goto yy57;
-yy7:
- { goto std; }
+ goto yy58;
yy8:
- yych = *++YYCURSOR;
- goto yy7;
+ { goto std; }
yy9:
yych = *++YYCURSOR;
- if (yych == '\n') goto yy58;
- goto yy57;
+ goto yy8;
yy10:
+ yych = *++YYCURSOR;
+ if (yych == '\n') goto yy59;
+ goto yy58;
+yy11:
++YYCURSOR;
{
s->str_start = s->cursor;
@@ -234,25 +233,25 @@ int php_json_scan(php_json_scanner *s)
PHP_JSON_CONDITION_SET(STR_P1);
PHP_JSON_CONDITION_GOTO(STR_P1);
}
-yy12:
+yy13:
++YYCURSOR;
{ return ','; }
-yy14:
- yych = *++YYCURSOR;
- if (yych <= '/') goto yy5;
- if (yych <= '0') goto yy55;
- if (yych <= '9') goto yy45;
- goto yy5;
yy15:
+ yych = *++YYCURSOR;
+ if (yych <= '/') goto yy6;
+ if (yych <= '0') goto yy56;
+ if (yych <= '9') goto yy46;
+ goto yy6;
+yy16:
yyaccept = 0;
yych = *(YYMARKER = ++YYCURSOR);
if (yych <= 'D') {
- if (yych == '.') goto yy47;
+ if (yych == '.') goto yy48;
} else {
- if (yych <= 'E') goto yy48;
- if (yych == 'e') goto yy48;
+ if (yych <= 'E') goto yy49;
+ if (yych == 'e') goto yy49;
}
-yy16:
+yy17:
{
zend_bool bigint = 0, negative = s->token[0] == '-';
size_t digits = (size_t) (s->cursor - s->token - negative);
@@ -277,203 +276,203 @@ int php_json_scan(php_json_scanner *s)
return PHP_JSON_T_DOUBLE;
}
}
-yy17:
+yy18:
yyaccept = 0;
yych = *(YYMARKER = ++YYCURSOR);
- goto yy46;
-yy18:
+ goto yy47;
+yy19:
++YYCURSOR;
{ return ':'; }
-yy20:
+yy21:
++YYCURSOR;
{ return '['; }
-yy22:
+yy23:
++YYCURSOR;
{ return ']'; }
-yy24:
- yyaccept = 1;
- yych = *(YYMARKER = ++YYCURSOR);
- if (yych == 'a') goto yy40;
- goto yy5;
yy25:
yyaccept = 1;
yych = *(YYMARKER = ++YYCURSOR);
- if (yych == 'u') goto yy36;
- goto yy5;
+ if (yych == 'a') goto yy41;
+ goto yy6;
yy26:
yyaccept = 1;
yych = *(YYMARKER = ++YYCURSOR);
- if (yych == 'r') goto yy31;
- goto yy5;
+ if (yych == 'u') goto yy37;
+ goto yy6;
yy27:
+ yyaccept = 1;
+ yych = *(YYMARKER = ++YYCURSOR);
+ if (yych == 'r') goto yy32;
+ goto yy6;
+yy28:
++YYCURSOR;
{ return '{'; }
-yy29:
+yy30:
++YYCURSOR;
{ return '}'; }
-yy31:
- yych = *++YYCURSOR;
- if (yych == 'u') goto yy33;
yy32:
+ yych = *++YYCURSOR;
+ if (yych == 'u') goto yy34;
+yy33:
YYCURSOR = YYMARKER;
if (yyaccept <= 1) {
- if (yyaccept <= 0) {
- goto yy16;
+ if (yyaccept == 0) {
+ goto yy17;
} else {
- goto yy5;
+ goto yy6;
}
} else {
- goto yy52;
+ goto yy53;
}
-yy33:
+yy34:
yych = *++YYCURSOR;
- if (yych != 'e') goto yy32;
+ if (yych != 'e') goto yy33;
++YYCURSOR;
{
ZVAL_TRUE(&s->value);
return PHP_JSON_T_TRUE;
}
-yy36:
+yy37:
yych = *++YYCURSOR;
- if (yych != 'l') goto yy32;
+ if (yych != 'l') goto yy33;
yych = *++YYCURSOR;
- if (yych != 'l') goto yy32;
+ if (yych != 'l') goto yy33;
++YYCURSOR;
{
ZVAL_NULL(&s->value);
return PHP_JSON_T_NUL;
}
-yy40:
+yy41:
yych = *++YYCURSOR;
- if (yych != 'l') goto yy32;
+ if (yych != 'l') goto yy33;
yych = *++YYCURSOR;
- if (yych != 's') goto yy32;
+ if (yych != 's') goto yy33;
yych = *++YYCURSOR;
- if (yych != 'e') goto yy32;
+ if (yych != 'e') goto yy33;
++YYCURSOR;
{
ZVAL_FALSE(&s->value);
return PHP_JSON_T_FALSE;
}
-yy45:
+yy46:
yyaccept = 0;
YYMARKER = ++YYCURSOR;
yych = *YYCURSOR;
-yy46:
+yy47:
if (yybm[0+yych] & 64) {
- goto yy45;
+ goto yy46;
}
if (yych <= 'D') {
- if (yych != '.') goto yy16;
+ if (yych != '.') goto yy17;
} else {
- if (yych <= 'E') goto yy48;
- if (yych == 'e') goto yy48;
- goto yy16;
+ if (yych <= 'E') goto yy49;
+ if (yych == 'e') goto yy49;
+ goto yy17;
}
-yy47:
- yych = *++YYCURSOR;
- if (yych <= '/') goto yy32;
- if (yych <= '9') goto yy53;
- goto yy32;
yy48:
+ yych = *++YYCURSOR;
+ if (yych <= '/') goto yy33;
+ if (yych <= '9') goto yy54;
+ goto yy33;
+yy49:
yych = *++YYCURSOR;
if (yych <= ',') {
- if (yych != '+') goto yy32;
+ if (yych != '+') goto yy33;
} else {
- if (yych <= '-') goto yy49;
- if (yych <= '/') goto yy32;
- if (yych <= '9') goto yy50;
- goto yy32;
+ if (yych <= '-') goto yy50;
+ if (yych <= '/') goto yy33;
+ if (yych <= '9') goto yy51;
+ goto yy33;
}
-yy49:
- yych = *++YYCURSOR;
- if (yych <= '/') goto yy32;
- if (yych >= ':') goto yy32;
yy50:
+ yych = *++YYCURSOR;
+ if (yych <= '/') goto yy33;
+ if (yych >= ':') goto yy33;
+yy51:
++YYCURSOR;
yych = *YYCURSOR;
- if (yych <= '/') goto yy52;
- if (yych <= '9') goto yy50;
-yy52:
+ if (yych <= '/') goto yy53;
+ if (yych <= '9') goto yy51;
+yy53:
{
ZVAL_DOUBLE(&s->value, zend_strtod((char *) s->token, NULL));
return PHP_JSON_T_DOUBLE;
}
-yy53:
+yy54:
yyaccept = 2;
YYMARKER = ++YYCURSOR;
yych = *YYCURSOR;
if (yych <= 'D') {
- if (yych <= '/') goto yy52;
- if (yych <= '9') goto yy53;
- goto yy52;
+ if (yych <= '/') goto yy53;
+ if (yych <= '9') goto yy54;
+ goto yy53;
} else {
- if (yych <= 'E') goto yy48;
- if (yych == 'e') goto yy48;
- goto yy52;
+ if (yych <= 'E') goto yy49;
+ if (yych == 'e') goto yy49;
+ goto yy53;
}
-yy55:
+yy56:
yyaccept = 0;
yych = *(YYMARKER = ++YYCURSOR);
if (yych <= 'D') {
- if (yych == '.') goto yy47;
- goto yy16;
+ if (yych == '.') goto yy48;
+ goto yy17;
} else {
- if (yych <= 'E') goto yy48;
- if (yych == 'e') goto yy48;
- goto yy16;
+ if (yych <= 'E') goto yy49;
+ if (yych == 'e') goto yy49;
+ goto yy17;
}
-yy56:
+yy57:
++YYCURSOR;
yych = *YYCURSOR;
-yy57:
+yy58:
if (yybm[0+yych] & 128) {
- goto yy56;
+ goto yy57;
}
- goto yy7;
-yy58:
+ goto yy8;
+yy59:
++YYCURSOR;
yych = *YYCURSOR;
- goto yy7;
+ goto yy8;
}
/* *********************************** */
yyc_STR_P1:
yych = *YYCURSOR;
if (yych <= 0xDF) {
if (yych <= '[') {
- if (yych <= 0x1F) goto yy61;
- if (yych == '"') goto yy65;
- goto yy63;
+ if (yych <= 0x1F) goto yy62;
+ if (yych == '"') goto yy66;
+ goto yy64;
} else {
- if (yych <= '\\') goto yy67;
- if (yych <= 0x7F) goto yy63;
- if (yych <= 0xC1) goto yy69;
- goto yy71;
+ if (yych <= '\\') goto yy68;
+ if (yych <= 0x7F) goto yy64;
+ if (yych <= 0xC1) goto yy70;
+ goto yy72;
}
} else {
if (yych <= 0xEF) {
- if (yych <= 0xE0) goto yy72;
- if (yych <= 0xEC) goto yy73;
- if (yych <= 0xED) goto yy74;
- goto yy75;
+ if (yych <= 0xE0) goto yy73;
+ if (yych <= 0xEC) goto yy74;
+ if (yych <= 0xED) goto yy75;
+ goto yy76;
} else {
- if (yych <= 0xF0) goto yy76;
- if (yych <= 0xF3) goto yy77;
- if (yych <= 0xF4) goto yy78;
- goto yy69;
+ if (yych <= 0xF0) goto yy77;
+ if (yych <= 0xF3) goto yy78;
+ if (yych <= 0xF4) goto yy79;
+ goto yy70;
}
}
-yy61:
+yy62:
++YYCURSOR;
{
s->errcode = PHP_JSON_ERROR_CTRL_CHAR;
return PHP_JSON_T_ERROR;
}
-yy63:
- ++YYCURSOR;
yy64:
- { PHP_JSON_CONDITION_GOTO(STR_P1); }
+ ++YYCURSOR;
yy65:
+ { PHP_JSON_CONDITION_GOTO(STR_P1); }
+yy66:
++YYCURSOR;
{
zend_string *str;
@@ -497,361 +496,361 @@ int php_json_scan(php_json_scanner *s)
return PHP_JSON_T_STRING;
}
}
-yy67:
+yy68:
yyaccept = 0;
yych = *(YYMARKER = ++YYCURSOR);
if (yych <= 'e') {
if (yych <= '/') {
- if (yych == '"') goto yy91;
- if (yych >= '/') goto yy91;
+ if (yych == '"') goto yy92;
+ if (yych >= '/') goto yy92;
} else {
if (yych <= '\\') {
- if (yych >= '\\') goto yy91;
+ if (yych >= '\\') goto yy92;
} else {
- if (yych == 'b') goto yy91;
+ if (yych == 'b') goto yy92;
}
}
} else {
if (yych <= 'q') {
- if (yych <= 'f') goto yy91;
- if (yych == 'n') goto yy91;
+ if (yych <= 'f') goto yy92;
+ if (yych == 'n') goto yy92;
} else {
if (yych <= 's') {
- if (yych <= 'r') goto yy91;
+ if (yych <= 'r') goto yy92;
} else {
- if (yych <= 't') goto yy91;
- if (yych <= 'u') goto yy93;
+ if (yych <= 't') goto yy92;
+ if (yych <= 'u') goto yy94;
}
}
}
-yy68:
+yy69:
{
s->errcode = PHP_JSON_ERROR_SYNTAX;
return PHP_JSON_T_ERROR;
}
-yy69:
- ++YYCURSOR;
yy70:
+ ++YYCURSOR;
+yy71:
{
s->errcode = PHP_JSON_ERROR_UTF8;
return PHP_JSON_T_ERROR;
}
-yy71:
- yych = *++YYCURSOR;
- if (yych <= 0x7F) goto yy70;
- if (yych <= 0xBF) goto yy82;
- goto yy70;
yy72:
- yyaccept = 1;
- yych = *(YYMARKER = ++YYCURSOR);
- if (yych <= 0x9F) goto yy70;
- if (yych <= 0xBF) goto yy90;
- goto yy70;
+ yych = *++YYCURSOR;
+ if (yych <= 0x7F) goto yy71;
+ if (yych <= 0xBF) goto yy83;
+ goto yy71;
yy73:
yyaccept = 1;
yych = *(YYMARKER = ++YYCURSOR);
- if (yych <= 0x7F) goto yy70;
- if (yych <= 0xBF) goto yy89;
- goto yy70;
+ if (yych <= 0x9F) goto yy71;
+ if (yych <= 0xBF) goto yy91;
+ goto yy71;
yy74:
yyaccept = 1;
yych = *(YYMARKER = ++YYCURSOR);
- if (yych <= 0x7F) goto yy70;
- if (yych <= 0x9F) goto yy88;
- goto yy70;
+ if (yych <= 0x7F) goto yy71;
+ if (yych <= 0xBF) goto yy90;
+ goto yy71;
yy75:
yyaccept = 1;
yych = *(YYMARKER = ++YYCURSOR);
- if (yych <= 0x7F) goto yy70;
- if (yych <= 0xBF) goto yy87;
- goto yy70;
+ if (yych <= 0x7F) goto yy71;
+ if (yych <= 0x9F) goto yy89;
+ goto yy71;
yy76:
yyaccept = 1;
yych = *(YYMARKER = ++YYCURSOR);
- if (yych <= 0x8F) goto yy70;
- if (yych <= 0xBF) goto yy85;
- goto yy70;
+ if (yych <= 0x7F) goto yy71;
+ if (yych <= 0xBF) goto yy88;
+ goto yy71;
yy77:
yyaccept = 1;
yych = *(YYMARKER = ++YYCURSOR);
- if (yych <= 0x7F) goto yy70;
- if (yych <= 0xBF) goto yy83;
- goto yy70;
+ if (yych <= 0x8F) goto yy71;
+ if (yych <= 0xBF) goto yy86;
+ goto yy71;
yy78:
yyaccept = 1;
yych = *(YYMARKER = ++YYCURSOR);
- if (yych <= 0x7F) goto yy70;
- if (yych >= 0x90) goto yy70;
+ if (yych <= 0x7F) goto yy71;
+ if (yych <= 0xBF) goto yy84;
+ goto yy71;
+yy79:
+ yyaccept = 1;
+ yych = *(YYMARKER = ++YYCURSOR);
+ if (yych <= 0x7F) goto yy71;
+ if (yych >= 0x90) goto yy71;
yych = *++YYCURSOR;
- if (yych <= 0x7F) goto yy80;
- if (yych <= 0xBF) goto yy81;
-yy80:
+ if (yych <= 0x7F) goto yy81;
+ if (yych <= 0xBF) goto yy82;
+yy81:
YYCURSOR = YYMARKER;
if (yyaccept <= 1) {
- if (yyaccept <= 0) {
- goto yy68;
+ if (yyaccept == 0) {
+ goto yy69;
} else {
- goto yy70;
+ goto yy71;
}
} else {
- goto yy100;
+ goto yy101;
}
-yy81:
- yych = *++YYCURSOR;
- if (yych <= 0x7F) goto yy80;
- if (yych >= 0xC0) goto yy80;
yy82:
yych = *++YYCURSOR;
- goto yy64;
+ if (yych <= 0x7F) goto yy81;
+ if (yych >= 0xC0) goto yy81;
yy83:
yych = *++YYCURSOR;
- if (yych <= 0x7F) goto yy80;
- if (yych >= 0xC0) goto yy80;
+ goto yy65;
+yy84:
yych = *++YYCURSOR;
- if (yych <= 0x7F) goto yy80;
- if (yych <= 0xBF) goto yy82;
- goto yy80;
-yy85:
+ if (yych <= 0x7F) goto yy81;
+ if (yych >= 0xC0) goto yy81;
yych = *++YYCURSOR;
- if (yych <= 0x7F) goto yy80;
- if (yych >= 0xC0) goto yy80;
+ if (yych <= 0x7F) goto yy81;
+ if (yych <= 0xBF) goto yy83;
+ goto yy81;
+yy86:
yych = *++YYCURSOR;
- if (yych <= 0x7F) goto yy80;
- if (yych <= 0xBF) goto yy82;
- goto yy80;
-yy87:
+ if (yych <= 0x7F) goto yy81;
+ if (yych >= 0xC0) goto yy81;
yych = *++YYCURSOR;
- if (yych <= 0x7F) goto yy80;
- if (yych <= 0xBF) goto yy82;
- goto yy80;
+ if (yych <= 0x7F) goto yy81;
+ if (yych <= 0xBF) goto yy83;
+ goto yy81;
yy88:
yych = *++YYCURSOR;
- if (yych <= 0x7F) goto yy80;
- if (yych <= 0xBF) goto yy82;
- goto yy80;
+ if (yych <= 0x7F) goto yy81;
+ if (yych <= 0xBF) goto yy83;
+ goto yy81;
yy89:
yych = *++YYCURSOR;
- if (yych <= 0x7F) goto yy80;
- if (yych <= 0xBF) goto yy82;
- goto yy80;
+ if (yych <= 0x7F) goto yy81;
+ if (yych <= 0xBF) goto yy83;
+ goto yy81;
yy90:
yych = *++YYCURSOR;
- if (yych <= 0x7F) goto yy80;
- if (yych <= 0xBF) goto yy82;
- goto yy80;
+ if (yych <= 0x7F) goto yy81;
+ if (yych <= 0xBF) goto yy83;
+ goto yy81;
yy91:
+ yych = *++YYCURSOR;
+ if (yych <= 0x7F) goto yy81;
+ if (yych <= 0xBF) goto yy83;
+ goto yy81;
+yy92:
++YYCURSOR;
{
s->str_esc++;
PHP_JSON_CONDITION_GOTO(STR_P1);
}
-yy93:
+yy94:
yych = *++YYCURSOR;
if (yych <= 'D') {
if (yych <= '9') {
- if (yych <= '/') goto yy80;
- if (yych >= '1') goto yy96;
+ if (yych <= '/') goto yy81;
+ if (yych >= '1') goto yy97;
} else {
- if (yych <= '@') goto yy80;
- if (yych <= 'C') goto yy96;
- goto yy95;
+ if (yych <= '@') goto yy81;
+ if (yych <= 'C') goto yy97;
+ goto yy96;
}
} else {
if (yych <= 'c') {
- if (yych <= 'F') goto yy96;
- if (yych <= '`') goto yy80;
- goto yy96;
+ if (yych <= 'F') goto yy97;
+ if (yych <= '`') goto yy81;
+ goto yy97;
} else {
- if (yych <= 'd') goto yy95;
- if (yych <= 'f') goto yy96;
- goto yy80;
+ if (yych <= 'd') goto yy96;
+ if (yych <= 'f') goto yy97;
+ goto yy81;
}
}
yych = *++YYCURSOR;
if (yych <= '9') {
- if (yych <= '/') goto yy80;
- if (yych <= '0') goto yy111;
- if (yych <= '7') goto yy112;
- goto yy97;
+ if (yych <= '/') goto yy81;
+ if (yych <= '0') goto yy112;
+ if (yych <= '7') goto yy113;
+ goto yy98;
} else {
if (yych <= 'F') {
- if (yych <= '@') goto yy80;
- goto yy97;
+ if (yych <= '@') goto yy81;
+ goto yy98;
} else {
- if (yych <= '`') goto yy80;
- if (yych <= 'f') goto yy97;
- goto yy80;
+ if (yych <= '`') goto yy81;
+ if (yych <= 'f') goto yy98;
+ goto yy81;
}
}
-yy95:
+yy96:
yych = *++YYCURSOR;
if (yych <= 'B') {
if (yych <= '7') {
- if (yych <= '/') goto yy80;
- goto yy97;
+ if (yych <= '/') goto yy81;
+ goto yy98;
} else {
- if (yych <= '9') goto yy101;
- if (yych <= '@') goto yy80;
- goto yy101;
+ if (yych <= '9') goto yy102;
+ if (yych <= '@') goto yy81;
+ goto yy102;
}
} else {
if (yych <= '`') {
- if (yych <= 'F') goto yy97;
- goto yy80;
+ if (yych <= 'F') goto yy98;
+ goto yy81;
} else {
- if (yych <= 'b') goto yy101;
- if (yych <= 'f') goto yy97;
- goto yy80;
+ if (yych <= 'b') goto yy102;
+ if (yych <= 'f') goto yy98;
+ goto yy81;
}
}
-yy96:
- yych = *++YYCURSOR;
- if (yych <= '@') {
- if (yych <= '/') goto yy80;
- if (yych >= ':') goto yy80;
- } else {
- if (yych <= 'F') goto yy97;
- if (yych <= '`') goto yy80;
- if (yych >= 'g') goto yy80;
- }
yy97:
yych = *++YYCURSOR;
if (yych <= '@') {
- if (yych <= '/') goto yy80;
- if (yych >= ':') goto yy80;
+ if (yych <= '/') goto yy81;
+ if (yych >= ':') goto yy81;
} else {
if (yych <= 'F') goto yy98;
- if (yych <= '`') goto yy80;
- if (yych >= 'g') goto yy80;
+ if (yych <= '`') goto yy81;
+ if (yych >= 'g') goto yy81;
}
yy98:
yych = *++YYCURSOR;
if (yych <= '@') {
- if (yych <= '/') goto yy80;
- if (yych >= ':') goto yy80;
+ if (yych <= '/') goto yy81;
+ if (yych >= ':') goto yy81;
} else {
if (yych <= 'F') goto yy99;
- if (yych <= '`') goto yy80;
- if (yych >= 'g') goto yy80;
+ if (yych <= '`') goto yy81;
+ if (yych >= 'g') goto yy81;
}
yy99:
- ++YYCURSOR;
+ yych = *++YYCURSOR;
+ if (yych <= '@') {
+ if (yych <= '/') goto yy81;
+ if (yych >= ':') goto yy81;
+ } else {
+ if (yych <= 'F') goto yy100;
+ if (yych <= '`') goto yy81;
+ if (yych >= 'g') goto yy81;
+ }
yy100:
+ ++YYCURSOR;
+yy101:
{
s->str_esc += 3;
PHP_JSON_CONDITION_GOTO(STR_P1);
}
-yy101:
+yy102:
yych = *++YYCURSOR;
if (yych <= '@') {
- if (yych <= '/') goto yy80;
- if (yych >= ':') goto yy80;
+ if (yych <= '/') goto yy81;
+ if (yych >= ':') goto yy81;
} else {
- if (yych <= 'F') goto yy102;
- if (yych <= '`') goto yy80;
- if (yych >= 'g') goto yy80;
+ if (yych <= 'F') goto yy103;
+ if (yych <= '`') goto yy81;
+ if (yych >= 'g') goto yy81;
}
-yy102:
+yy103:
yych = *++YYCURSOR;
if (yych <= '@') {
- if (yych <= '/') goto yy80;
- if (yych >= ':') goto yy80;
+ if (yych <= '/') goto yy81;
+ if (yych >= ':') goto yy81;
} else {
- if (yych <= 'F') goto yy103;
- if (yych <= '`') goto yy80;
- if (yych >= 'g') goto yy80;
+ if (yych <= 'F') goto yy104;
+ if (yych <= '`') goto yy81;
+ if (yych >= 'g') goto yy81;
}
-yy103:
+yy104:
yyaccept = 2;
yych = *(YYMARKER = ++YYCURSOR);
- if (yych != '\\') goto yy100;
- yych = *++YYCURSOR;
- if (yych != 'u') goto yy80;
+ if (yych != '\\') goto yy101;
yych = *++YYCURSOR;
- if (yych == 'D') goto yy106;
- if (yych != 'd') goto yy80;
-yy106:
+ if (yych != 'u') goto yy81;
yych = *++YYCURSOR;
- if (yych <= 'B') goto yy80;
- if (yych <= 'F') goto yy107;
- if (yych <= 'b') goto yy80;
- if (yych >= 'g') goto yy80;
+ if (yych == 'D') goto yy107;
+ if (yych != 'd') goto yy81;
yy107:
yych = *++YYCURSOR;
- if (yych <= '@') {
- if (yych <= '/') goto yy80;
- if (yych >= ':') goto yy80;
- } else {
- if (yych <= 'F') goto yy108;
- if (yych <= '`') goto yy80;
- if (yych >= 'g') goto yy80;
- }
+ if (yych <= 'B') goto yy81;
+ if (yych <= 'F') goto yy108;
+ if (yych <= 'b') goto yy81;
+ if (yych >= 'g') goto yy81;
yy108:
yych = *++YYCURSOR;
if (yych <= '@') {
- if (yych <= '/') goto yy80;
- if (yych >= ':') goto yy80;
+ if (yych <= '/') goto yy81;
+ if (yych >= ':') goto yy81;
} else {
if (yych <= 'F') goto yy109;
- if (yych <= '`') goto yy80;
- if (yych >= 'g') goto yy80;
+ if (yych <= '`') goto yy81;
+ if (yych >= 'g') goto yy81;
}
yy109:
+ yych = *++YYCURSOR;
+ if (yych <= '@') {
+ if (yych <= '/') goto yy81;
+ if (yych >= ':') goto yy81;
+ } else {
+ if (yych <= 'F') goto yy110;
+ if (yych <= '`') goto yy81;
+ if (yych >= 'g') goto yy81;
+ }
+yy110:
++YYCURSOR;
{
s->str_esc += 8;
PHP_JSON_CONDITION_GOTO(STR_P1);
}
-yy111:
- yych = *++YYCURSOR;
- if (yych <= '@') {
- if (yych <= '/') goto yy80;
- if (yych <= '7') goto yy116;
- if (yych <= '9') goto yy113;
- goto yy80;
- } else {
- if (yych <= 'F') goto yy113;
- if (yych <= '`') goto yy80;
- if (yych <= 'f') goto yy113;
- goto yy80;
- }
yy112:
yych = *++YYCURSOR;
if (yych <= '@') {
- if (yych <= '/') goto yy80;
- if (yych >= ':') goto yy80;
+ if (yych <= '/') goto yy81;
+ if (yych <= '7') goto yy117;
+ if (yych <= '9') goto yy114;
+ goto yy81;
} else {
- if (yych <= 'F') goto yy113;
- if (yych <= '`') goto yy80;
- if (yych >= 'g') goto yy80;
+ if (yych <= 'F') goto yy114;
+ if (yych <= '`') goto yy81;
+ if (yych <= 'f') goto yy114;
+ goto yy81;
}
yy113:
yych = *++YYCURSOR;
if (yych <= '@') {
- if (yych <= '/') goto yy80;
- if (yych >= ':') goto yy80;
+ if (yych <= '/') goto yy81;
+ if (yych >= ':') goto yy81;
} else {
if (yych <= 'F') goto yy114;
- if (yych <= '`') goto yy80;
- if (yych >= 'g') goto yy80;
+ if (yych <= '`') goto yy81;
+ if (yych >= 'g') goto yy81;
}
yy114:
+ yych = *++YYCURSOR;
+ if (yych <= '@') {
+ if (yych <= '/') goto yy81;
+ if (yych >= ':') goto yy81;
+ } else {
+ if (yych <= 'F') goto yy115;
+ if (yych <= '`') goto yy81;
+ if (yych >= 'g') goto yy81;
+ }
+yy115:
++YYCURSOR;
{
s->str_esc += 4;
PHP_JSON_CONDITION_GOTO(STR_P1);
}
-yy116:
+yy117:
yych = *++YYCURSOR;
if (yych <= '@') {
- if (yych <= '/') goto yy80;
- if (yych >= ':') goto yy80;
+ if (yych <= '/') goto yy81;
+ if (yych >= ':') goto yy81;
} else {
- if (yych <= 'F') goto yy117;
- if (yych <= '`') goto yy80;
- if (yych >= 'g') goto yy80;
+ if (yych <= 'F') goto yy118;
+ if (yych <= '`') goto yy81;
+ if (yych >= 'g') goto yy81;
}
-yy117:
+yy118:
++YYCURSOR;
{
s->str_esc += 5;
@@ -860,22 +859,22 @@ int php_json_scan(php_json_scanner *s)
/* *********************************** */
yyc_STR_P2:
yych = *YYCURSOR;
- if (yych == '"') goto yy123;
- if (yych == '\\') goto yy125;
+ if (yych == '"') goto yy124;
+ if (yych == '\\') goto yy126;
++YYCURSOR;
{ PHP_JSON_CONDITION_GOTO(STR_P2); }
-yy123:
+yy124:
++YYCURSOR;
YYSETCONDITION(yycJS);
{
PHP_JSON_SCANNER_COPY_ESC();
return PHP_JSON_T_STRING;
}
-yy125:
+yy126:
yyaccept = 0;
yych = *(YYMARKER = ++YYCURSOR);
- if (yych == 'u') goto yy127;
-yy126:
+ if (yych == 'u') goto yy128;
+yy127:
{
char esc;
PHP_JSON_SCANNER_COPY_ESC();
@@ -909,105 +908,105 @@ int php_json_scan(php_json_scanner *s)
s->str_start = s->cursor;
PHP_JSON_CONDITION_GOTO(STR_P2);
}
-yy127:
+yy128:
yych = *++YYCURSOR;
if (yych <= 'D') {
if (yych <= '9') {
- if (yych <= '/') goto yy128;
- if (yych <= '0') goto yy129;
- goto yy131;
+ if (yych <= '/') goto yy129;
+ if (yych <= '0') goto yy130;
+ goto yy132;
} else {
- if (yych <= '@') goto yy128;
- if (yych <= 'C') goto yy131;
- goto yy130;
+ if (yych <= '@') goto yy129;
+ if (yych <= 'C') goto yy132;
+ goto yy131;
}
} else {
if (yych <= 'c') {
- if (yych <= 'F') goto yy131;
- if (yych >= 'a') goto yy131;
+ if (yych <= 'F') goto yy132;
+ if (yych >= 'a') goto yy132;
} else {
- if (yych <= 'd') goto yy130;
- if (yych <= 'f') goto yy131;
+ if (yych <= 'd') goto yy131;
+ if (yych <= 'f') goto yy132;
}
}
-yy128:
+yy129:
YYCURSOR = YYMARKER;
- if (yyaccept <= 0) {
- goto yy126;
+ if (yyaccept == 0) {
+ goto yy127;
} else {
- goto yy135;
+ goto yy136;
}
-yy129:
+yy130:
yych = *++YYCURSOR;
if (yych <= '9') {
- if (yych <= '/') goto yy128;
- if (yych <= '0') goto yy146;
- if (yych <= '7') goto yy147;
- goto yy132;
+ if (yych <= '/') goto yy129;
+ if (yych <= '0') goto yy147;
+ if (yych <= '7') goto yy148;
+ goto yy133;
} else {
if (yych <= 'F') {
- if (yych <= '@') goto yy128;
- goto yy132;
+ if (yych <= '@') goto yy129;
+ goto yy133;
} else {
- if (yych <= '`') goto yy128;
- if (yych <= 'f') goto yy132;
- goto yy128;
+ if (yych <= '`') goto yy129;
+ if (yych <= 'f') goto yy133;
+ goto yy129;
}
}
-yy130:
+yy131:
yych = *++YYCURSOR;
if (yych <= 'B') {
if (yych <= '7') {
- if (yych <= '/') goto yy128;
- goto yy132;
+ if (yych <= '/') goto yy129;
+ goto yy133;
} else {
- if (yych <= '9') goto yy136;
- if (yych <= '@') goto yy128;
- goto yy136;
+ if (yych <= '9') goto yy137;
+ if (yych <= '@') goto yy129;
+ goto yy137;
}
} else {
if (yych <= '`') {
- if (yych <= 'F') goto yy132;
- goto yy128;
+ if (yych <= 'F') goto yy133;
+ goto yy129;
} else {
- if (yych <= 'b') goto yy136;
- if (yych <= 'f') goto yy132;
- goto yy128;
+ if (yych <= 'b') goto yy137;
+ if (yych <= 'f') goto yy133;
+ goto yy129;
}
}
-yy131:
- yych = *++YYCURSOR;
- if (yych <= '@') {
- if (yych <= '/') goto yy128;
- if (yych >= ':') goto yy128;
- } else {
- if (yych <= 'F') goto yy132;
- if (yych <= '`') goto yy128;
- if (yych >= 'g') goto yy128;
- }
yy132:
yych = *++YYCURSOR;
if (yych <= '@') {
- if (yych <= '/') goto yy128;
- if (yych >= ':') goto yy128;
+ if (yych <= '/') goto yy129;
+ if (yych >= ':') goto yy129;
} else {
if (yych <= 'F') goto yy133;
- if (yych <= '`') goto yy128;
- if (yych >= 'g') goto yy128;
+ if (yych <= '`') goto yy129;
+ if (yych >= 'g') goto yy129;
}
yy133:
yych = *++YYCURSOR;
if (yych <= '@') {
- if (yych <= '/') goto yy128;
- if (yych >= ':') goto yy128;
+ if (yych <= '/') goto yy129;
+ if (yych >= ':') goto yy129;
} else {
if (yych <= 'F') goto yy134;
- if (yych <= '`') goto yy128;
- if (yych >= 'g') goto yy128;
+ if (yych <= '`') goto yy129;
+ if (yych >= 'g') goto yy129;
}
yy134:
- ++YYCURSOR;
+ yych = *++YYCURSOR;
+ if (yych <= '@') {
+ if (yych <= '/') goto yy129;
+ if (yych >= ':') goto yy129;
+ } else {
+ if (yych <= 'F') goto yy135;
+ if (yych <= '`') goto yy129;
+ if (yych >= 'g') goto yy129;
+ }
yy135:
+ ++YYCURSOR;
+yy136:
{
int utf16 = php_json_ucs2_to_int(s, 4);
PHP_JSON_SCANNER_COPY_UTF();
@@ -1017,62 +1016,62 @@ int php_json_scan(php_json_scanner *s)
s->str_start = s->cursor;
PHP_JSON_CONDITION_GOTO(STR_P2);
}
-yy136:
+yy137:
yych = *++YYCURSOR;
if (yych <= '@') {
- if (yych <= '/') goto yy128;
- if (yych >= ':') goto yy128;
+ if (yych <= '/') goto yy129;
+ if (yych >= ':') goto yy129;
} else {
- if (yych <= 'F') goto yy137;
- if (yych <= '`') goto yy128;
- if (yych >= 'g') goto yy128;
+ if (yych <= 'F') goto yy138;
+ if (yych <= '`') goto yy129;
+ if (yych >= 'g') goto yy129;
}
-yy137:
+yy138:
yych = *++YYCURSOR;
if (yych <= '@') {
- if (yych <= '/') goto yy128;
- if (yych >= ':') goto yy128;
+ if (yych <= '/') goto yy129;
+ if (yych >= ':') goto yy129;
} else {
- if (yych <= 'F') goto yy138;
- if (yych <= '`') goto yy128;
- if (yych >= 'g') goto yy128;
+ if (yych <= 'F') goto yy139;
+ if (yych <= '`') goto yy129;
+ if (yych >= 'g') goto yy129;
}
-yy138:
+yy139:
yyaccept = 1;
yych = *(YYMARKER = ++YYCURSOR);
- if (yych != '\\') goto yy135;
- yych = *++YYCURSOR;
- if (yych != 'u') goto yy128;
+ if (yych != '\\') goto yy136;
yych = *++YYCURSOR;
- if (yych == 'D') goto yy141;
- if (yych != 'd') goto yy128;
-yy141:
+ if (yych != 'u') goto yy129;
yych = *++YYCURSOR;
- if (yych <= 'B') goto yy128;
- if (yych <= 'F') goto yy142;
- if (yych <= 'b') goto yy128;
- if (yych >= 'g') goto yy128;
+ if (yych == 'D') goto yy142;
+ if (yych != 'd') goto yy129;
yy142:
yych = *++YYCURSOR;
- if (yych <= '@') {
- if (yych <= '/') goto yy128;
- if (yych >= ':') goto yy128;
- } else {
- if (yych <= 'F') goto yy143;
- if (yych <= '`') goto yy128;
- if (yych >= 'g') goto yy128;
- }
+ if (yych <= 'B') goto yy129;
+ if (yych <= 'F') goto yy143;
+ if (yych <= 'b') goto yy129;
+ if (yych >= 'g') goto yy129;
yy143:
yych = *++YYCURSOR;
if (yych <= '@') {
- if (yych <= '/') goto yy128;
- if (yych >= ':') goto yy128;
+ if (yych <= '/') goto yy129;
+ if (yych >= ':') goto yy129;
} else {
if (yych <= 'F') goto yy144;
- if (yych <= '`') goto yy128;
- if (yych >= 'g') goto yy128;
+ if (yych <= '`') goto yy129;
+ if (yych >= 'g') goto yy129;
}
yy144:
+ yych = *++YYCURSOR;
+ if (yych <= '@') {
+ if (yych <= '/') goto yy129;
+ if (yych >= ':') goto yy129;
+ } else {
+ if (yych <= 'F') goto yy145;
+ if (yych <= '`') goto yy129;
+ if (yych >= 'g') goto yy129;
+ }
+yy145:
++YYCURSOR;
{
int utf32, utf16_hi, utf16_lo;
@@ -1087,40 +1086,40 @@ int php_json_scan(php_json_scanner *s)
s->str_start = s->cursor;
PHP_JSON_CONDITION_GOTO(STR_P2);
}
-yy146:
- yych = *++YYCURSOR;
- if (yych <= '@') {
- if (yych <= '/') goto yy128;
- if (yych <= '7') goto yy151;
- if (yych <= '9') goto yy148;
- goto yy128;
- } else {
- if (yych <= 'F') goto yy148;
- if (yych <= '`') goto yy128;
- if (yych <= 'f') goto yy148;
- goto yy128;
- }
yy147:
yych = *++YYCURSOR;
if (yych <= '@') {
- if (yych <= '/') goto yy128;
- if (yych >= ':') goto yy128;
+ if (yych <= '/') goto yy129;
+ if (yych <= '7') goto yy152;
+ if (yych <= '9') goto yy149;
+ goto yy129;
} else {
- if (yych <= 'F') goto yy148;
- if (yych <= '`') goto yy128;
- if (yych >= 'g') goto yy128;
+ if (yych <= 'F') goto yy149;
+ if (yych <= '`') goto yy129;
+ if (yych <= 'f') goto yy149;
+ goto yy129;
}
yy148:
yych = *++YYCURSOR;
if (yych <= '@') {
- if (yych <= '/') goto yy128;
- if (yych >= ':') goto yy128;
+ if (yych <= '/') goto yy129;
+ if (yych >= ':') goto yy129;
} else {
if (yych <= 'F') goto yy149;
- if (yych <= '`') goto yy128;
- if (yych >= 'g') goto yy128;
+ if (yych <= '`') goto yy129;
+ if (yych >= 'g') goto yy129;
}
yy149:
+ yych = *++YYCURSOR;
+ if (yych <= '@') {
+ if (yych <= '/') goto yy129;
+ if (yych >= ':') goto yy129;
+ } else {
+ if (yych <= 'F') goto yy150;
+ if (yych <= '`') goto yy129;
+ if (yych >= 'g') goto yy129;
+ }
+yy150:
++YYCURSOR;
{
int utf16 = php_json_ucs2_to_int(s, 3);
@@ -1130,17 +1129,17 @@ int php_json_scan(php_json_scanner *s)
s->str_start = s->cursor;
PHP_JSON_CONDITION_GOTO(STR_P2);
}
-yy151:
+yy152:
yych = *++YYCURSOR;
if (yych <= '@') {
- if (yych <= '/') goto yy128;
- if (yych >= ':') goto yy128;
+ if (yych <= '/') goto yy129;
+ if (yych >= ':') goto yy129;
} else {
- if (yych <= 'F') goto yy152;
- if (yych <= '`') goto yy128;
- if (yych >= 'g') goto yy128;
+ if (yych <= 'F') goto yy153;
+ if (yych <= '`') goto yy129;
+ if (yych >= 'g') goto yy129;
}
-yy152:
+yy153:
++YYCURSOR;
{
int utf16 = php_json_ucs2_to_int(s, 2);
diff --git a/ext/json/php_json_scanner_defs.h b/ext/json/php_json_scanner_defs.h
index b3867433a7c90..e1a5824dd3c6c 100644
--- a/ext/json/php_json_scanner_defs.h
+++ b/ext/json/php_json_scanner_defs.h
@@ -1,4 +1,4 @@
-/* Generated by re2c 0.13.5 */
+/* Generated by re2c 0.13.6 */
enum YYCONDTYPE {
yycJS,