4437 lines
152 KiB
C
4437 lines
152 KiB
C
/* 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 <http://www.gnu.org/licenses/>. */
|
|
|
|
/* 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 0
|
|
|
|
/* Push parsers. */
|
|
#define YYPUSH 0
|
|
|
|
/* Pull parsers. */
|
|
#define YYPULL 1
|
|
|
|
|
|
/* Substitute the variable and function names. */
|
|
#define yyparse bxparse
|
|
#define yylex bxlex
|
|
#define yyerror bxerror
|
|
#define yylval bxlval
|
|
#define yychar bxchar
|
|
#define yydebug bxdebug
|
|
#define yynerrs bxnerrs
|
|
|
|
/* Copy the first part of user declarations. */
|
|
/* Line 371 of yacc.c */
|
|
#line 5 "parser.y"
|
|
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include "debug.h"
|
|
|
|
#if BX_DEBUGGER
|
|
|
|
/* Line 371 of yacc.c */
|
|
#line 83 "y.tab.c"
|
|
|
|
# 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 "y.tab.h". */
|
|
#ifndef YY_BX_Y_TAB_H_INCLUDED
|
|
# define YY_BX_Y_TAB_H_INCLUDED
|
|
/* Enabling traces. */
|
|
#ifndef YYDEBUG
|
|
# define YYDEBUG 0
|
|
#endif
|
|
#if YYDEBUG
|
|
extern int bxdebug;
|
|
#endif
|
|
|
|
/* Tokens. */
|
|
#ifndef YYTOKENTYPE
|
|
# define YYTOKENTYPE
|
|
/* Put the tokens into the symbol table, so that GDB and other debuggers
|
|
know about them. */
|
|
enum yytokentype {
|
|
BX_TOKEN_8BH_REG = 258,
|
|
BX_TOKEN_8BL_REG = 259,
|
|
BX_TOKEN_16B_REG = 260,
|
|
BX_TOKEN_32B_REG = 261,
|
|
BX_TOKEN_64B_REG = 262,
|
|
BX_TOKEN_CS = 263,
|
|
BX_TOKEN_ES = 264,
|
|
BX_TOKEN_SS = 265,
|
|
BX_TOKEN_DS = 266,
|
|
BX_TOKEN_FS = 267,
|
|
BX_TOKEN_GS = 268,
|
|
BX_TOKEN_OPMASK_REG = 269,
|
|
BX_TOKEN_FLAGS = 270,
|
|
BX_TOKEN_ON = 271,
|
|
BX_TOKEN_OFF = 272,
|
|
BX_TOKEN_CONTINUE = 273,
|
|
BX_TOKEN_STEPN = 274,
|
|
BX_TOKEN_STEP_OVER = 275,
|
|
BX_TOKEN_SET = 276,
|
|
BX_TOKEN_DEBUGGER = 277,
|
|
BX_TOKEN_LIST_BREAK = 278,
|
|
BX_TOKEN_VBREAKPOINT = 279,
|
|
BX_TOKEN_LBREAKPOINT = 280,
|
|
BX_TOKEN_PBREAKPOINT = 281,
|
|
BX_TOKEN_DEL_BREAKPOINT = 282,
|
|
BX_TOKEN_ENABLE_BREAKPOINT = 283,
|
|
BX_TOKEN_DISABLE_BREAKPOINT = 284,
|
|
BX_TOKEN_INFO = 285,
|
|
BX_TOKEN_QUIT = 286,
|
|
BX_TOKEN_R = 287,
|
|
BX_TOKEN_REGS = 288,
|
|
BX_TOKEN_CPU = 289,
|
|
BX_TOKEN_FPU = 290,
|
|
BX_TOKEN_MMX = 291,
|
|
BX_TOKEN_XMM = 292,
|
|
BX_TOKEN_YMM = 293,
|
|
BX_TOKEN_ZMM = 294,
|
|
BX_TOKEN_AVX = 295,
|
|
BX_TOKEN_IDT = 296,
|
|
BX_TOKEN_IVT = 297,
|
|
BX_TOKEN_GDT = 298,
|
|
BX_TOKEN_LDT = 299,
|
|
BX_TOKEN_TSS = 300,
|
|
BX_TOKEN_TAB = 301,
|
|
BX_TOKEN_ALL = 302,
|
|
BX_TOKEN_LINUX = 303,
|
|
BX_TOKEN_DEBUG_REGS = 304,
|
|
BX_TOKEN_CONTROL_REGS = 305,
|
|
BX_TOKEN_SEGMENT_REGS = 306,
|
|
BX_TOKEN_EXAMINE = 307,
|
|
BX_TOKEN_XFORMAT = 308,
|
|
BX_TOKEN_DISFORMAT = 309,
|
|
BX_TOKEN_RESTORE = 310,
|
|
BX_TOKEN_WRITEMEM = 311,
|
|
BX_TOKEN_SETPMEM = 312,
|
|
BX_TOKEN_SYMBOLNAME = 313,
|
|
BX_TOKEN_QUERY = 314,
|
|
BX_TOKEN_PENDING = 315,
|
|
BX_TOKEN_TAKE = 316,
|
|
BX_TOKEN_DMA = 317,
|
|
BX_TOKEN_IRQ = 318,
|
|
BX_TOKEN_TLB = 319,
|
|
BX_TOKEN_HEX = 320,
|
|
BX_TOKEN_DISASM = 321,
|
|
BX_TOKEN_INSTRUMENT = 322,
|
|
BX_TOKEN_STRING = 323,
|
|
BX_TOKEN_STOP = 324,
|
|
BX_TOKEN_DOIT = 325,
|
|
BX_TOKEN_CRC = 326,
|
|
BX_TOKEN_TRACE = 327,
|
|
BX_TOKEN_TRACEREG = 328,
|
|
BX_TOKEN_TRACEMEM = 329,
|
|
BX_TOKEN_SWITCH_MODE = 330,
|
|
BX_TOKEN_SIZE = 331,
|
|
BX_TOKEN_PTIME = 332,
|
|
BX_TOKEN_TIMEBP_ABSOLUTE = 333,
|
|
BX_TOKEN_TIMEBP = 334,
|
|
BX_TOKEN_MODEBP = 335,
|
|
BX_TOKEN_VMEXITBP = 336,
|
|
BX_TOKEN_PRINT_STACK = 337,
|
|
BX_TOKEN_WATCH = 338,
|
|
BX_TOKEN_UNWATCH = 339,
|
|
BX_TOKEN_READ = 340,
|
|
BX_TOKEN_WRITE = 341,
|
|
BX_TOKEN_SHOW = 342,
|
|
BX_TOKEN_LOAD_SYMBOLS = 343,
|
|
BX_TOKEN_SYMBOLS = 344,
|
|
BX_TOKEN_LIST_SYMBOLS = 345,
|
|
BX_TOKEN_GLOBAL = 346,
|
|
BX_TOKEN_WHERE = 347,
|
|
BX_TOKEN_PRINT_STRING = 348,
|
|
BX_TOKEN_NUMERIC = 349,
|
|
BX_TOKEN_PAGE = 350,
|
|
BX_TOKEN_HELP = 351,
|
|
BX_TOKEN_CALC = 352,
|
|
BX_TOKEN_DEVICE = 353,
|
|
BX_TOKEN_GENERIC = 354,
|
|
BX_TOKEN_RSHIFT = 355,
|
|
BX_TOKEN_LSHIFT = 356,
|
|
BX_TOKEN_REG_IP = 357,
|
|
BX_TOKEN_REG_EIP = 358,
|
|
BX_TOKEN_REG_RIP = 359,
|
|
INDIRECT = 360,
|
|
NEG = 361,
|
|
NOT = 362
|
|
};
|
|
#endif
|
|
/* Tokens. */
|
|
#define BX_TOKEN_8BH_REG 258
|
|
#define BX_TOKEN_8BL_REG 259
|
|
#define BX_TOKEN_16B_REG 260
|
|
#define BX_TOKEN_32B_REG 261
|
|
#define BX_TOKEN_64B_REG 262
|
|
#define BX_TOKEN_CS 263
|
|
#define BX_TOKEN_ES 264
|
|
#define BX_TOKEN_SS 265
|
|
#define BX_TOKEN_DS 266
|
|
#define BX_TOKEN_FS 267
|
|
#define BX_TOKEN_GS 268
|
|
#define BX_TOKEN_OPMASK_REG 269
|
|
#define BX_TOKEN_FLAGS 270
|
|
#define BX_TOKEN_ON 271
|
|
#define BX_TOKEN_OFF 272
|
|
#define BX_TOKEN_CONTINUE 273
|
|
#define BX_TOKEN_STEPN 274
|
|
#define BX_TOKEN_STEP_OVER 275
|
|
#define BX_TOKEN_SET 276
|
|
#define BX_TOKEN_DEBUGGER 277
|
|
#define BX_TOKEN_LIST_BREAK 278
|
|
#define BX_TOKEN_VBREAKPOINT 279
|
|
#define BX_TOKEN_LBREAKPOINT 280
|
|
#define BX_TOKEN_PBREAKPOINT 281
|
|
#define BX_TOKEN_DEL_BREAKPOINT 282
|
|
#define BX_TOKEN_ENABLE_BREAKPOINT 283
|
|
#define BX_TOKEN_DISABLE_BREAKPOINT 284
|
|
#define BX_TOKEN_INFO 285
|
|
#define BX_TOKEN_QUIT 286
|
|
#define BX_TOKEN_R 287
|
|
#define BX_TOKEN_REGS 288
|
|
#define BX_TOKEN_CPU 289
|
|
#define BX_TOKEN_FPU 290
|
|
#define BX_TOKEN_MMX 291
|
|
#define BX_TOKEN_XMM 292
|
|
#define BX_TOKEN_YMM 293
|
|
#define BX_TOKEN_ZMM 294
|
|
#define BX_TOKEN_AVX 295
|
|
#define BX_TOKEN_IDT 296
|
|
#define BX_TOKEN_IVT 297
|
|
#define BX_TOKEN_GDT 298
|
|
#define BX_TOKEN_LDT 299
|
|
#define BX_TOKEN_TSS 300
|
|
#define BX_TOKEN_TAB 301
|
|
#define BX_TOKEN_ALL 302
|
|
#define BX_TOKEN_LINUX 303
|
|
#define BX_TOKEN_DEBUG_REGS 304
|
|
#define BX_TOKEN_CONTROL_REGS 305
|
|
#define BX_TOKEN_SEGMENT_REGS 306
|
|
#define BX_TOKEN_EXAMINE 307
|
|
#define BX_TOKEN_XFORMAT 308
|
|
#define BX_TOKEN_DISFORMAT 309
|
|
#define BX_TOKEN_RESTORE 310
|
|
#define BX_TOKEN_WRITEMEM 311
|
|
#define BX_TOKEN_SETPMEM 312
|
|
#define BX_TOKEN_SYMBOLNAME 313
|
|
#define BX_TOKEN_QUERY 314
|
|
#define BX_TOKEN_PENDING 315
|
|
#define BX_TOKEN_TAKE 316
|
|
#define BX_TOKEN_DMA 317
|
|
#define BX_TOKEN_IRQ 318
|
|
#define BX_TOKEN_TLB 319
|
|
#define BX_TOKEN_HEX 320
|
|
#define BX_TOKEN_DISASM 321
|
|
#define BX_TOKEN_INSTRUMENT 322
|
|
#define BX_TOKEN_STRING 323
|
|
#define BX_TOKEN_STOP 324
|
|
#define BX_TOKEN_DOIT 325
|
|
#define BX_TOKEN_CRC 326
|
|
#define BX_TOKEN_TRACE 327
|
|
#define BX_TOKEN_TRACEREG 328
|
|
#define BX_TOKEN_TRACEMEM 329
|
|
#define BX_TOKEN_SWITCH_MODE 330
|
|
#define BX_TOKEN_SIZE 331
|
|
#define BX_TOKEN_PTIME 332
|
|
#define BX_TOKEN_TIMEBP_ABSOLUTE 333
|
|
#define BX_TOKEN_TIMEBP 334
|
|
#define BX_TOKEN_MODEBP 335
|
|
#define BX_TOKEN_VMEXITBP 336
|
|
#define BX_TOKEN_PRINT_STACK 337
|
|
#define BX_TOKEN_WATCH 338
|
|
#define BX_TOKEN_UNWATCH 339
|
|
#define BX_TOKEN_READ 340
|
|
#define BX_TOKEN_WRITE 341
|
|
#define BX_TOKEN_SHOW 342
|
|
#define BX_TOKEN_LOAD_SYMBOLS 343
|
|
#define BX_TOKEN_SYMBOLS 344
|
|
#define BX_TOKEN_LIST_SYMBOLS 345
|
|
#define BX_TOKEN_GLOBAL 346
|
|
#define BX_TOKEN_WHERE 347
|
|
#define BX_TOKEN_PRINT_STRING 348
|
|
#define BX_TOKEN_NUMERIC 349
|
|
#define BX_TOKEN_PAGE 350
|
|
#define BX_TOKEN_HELP 351
|
|
#define BX_TOKEN_CALC 352
|
|
#define BX_TOKEN_DEVICE 353
|
|
#define BX_TOKEN_GENERIC 354
|
|
#define BX_TOKEN_RSHIFT 355
|
|
#define BX_TOKEN_LSHIFT 356
|
|
#define BX_TOKEN_REG_IP 357
|
|
#define BX_TOKEN_REG_EIP 358
|
|
#define BX_TOKEN_REG_RIP 359
|
|
#define INDIRECT 360
|
|
#define NEG 361
|
|
#define NOT 362
|
|
|
|
|
|
|
|
#if ! defined YYSTYPE && ! defined YYSTYPE_IS_DECLARED
|
|
typedef union YYSTYPE
|
|
{
|
|
/* Line 387 of yacc.c */
|
|
#line 13 "parser.y"
|
|
|
|
char *sval;
|
|
Bit64u uval;
|
|
bx_bool bval;
|
|
|
|
|
|
/* Line 387 of yacc.c */
|
|
#line 347 "y.tab.c"
|
|
} YYSTYPE;
|
|
# define YYSTYPE_IS_TRIVIAL 1
|
|
# define yystype YYSTYPE /* obsolescent; will be withdrawn */
|
|
# define YYSTYPE_IS_DECLARED 1
|
|
#endif
|
|
|
|
extern YYSTYPE bxlval;
|
|
|
|
#ifdef YYPARSE_PARAM
|
|
#if defined __STDC__ || defined __cplusplus
|
|
int bxparse (void *YYPARSE_PARAM);
|
|
#else
|
|
int bxparse ();
|
|
#endif
|
|
#else /* ! YYPARSE_PARAM */
|
|
#if defined __STDC__ || defined __cplusplus
|
|
int bxparse (void);
|
|
#else
|
|
int bxparse ();
|
|
#endif
|
|
#endif /* ! YYPARSE_PARAM */
|
|
|
|
#endif /* !YY_BX_Y_TAB_H_INCLUDED */
|
|
|
|
/* Copy the second part of user declarations. */
|
|
|
|
/* Line 390 of yacc.c */
|
|
#line 375 "y.tab.c"
|
|
|
|
#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 <stddef.h> /* 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 <libintl.h> /* 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 <alloca.h> /* INFRINGES ON USER NAME SPACE */
|
|
# elif defined _AIX
|
|
# define YYSTACK_ALLOC __alloca
|
|
# elif defined _MSC_VER
|
|
# include <malloc.h> /* 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 <stdlib.h> /* 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 <stdlib.h> /* 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 292
|
|
/* YYLAST -- Last index in YYTABLE. */
|
|
#define YYLAST 1745
|
|
|
|
/* YYNTOKENS -- Number of terminals. */
|
|
#define YYNTOKENS 122
|
|
/* YYNNTS -- Number of nonterminals. */
|
|
#define YYNNTS 57
|
|
/* YYNRULES -- Number of rules. */
|
|
#define YYNRULES 279
|
|
/* YYNRULES -- Number of states. */
|
|
#define YYNSTATES 542
|
|
|
|
/* YYTRANSLATE(YYLEX) -- Bison symbol number corresponding to YYLEX. */
|
|
#define YYUNDEFTOK 2
|
|
#define YYMAXUTOK 362
|
|
|
|
#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,
|
|
115, 2, 2, 2, 2, 2, 2, 2, 2, 2,
|
|
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
|
|
2, 2, 2, 118, 2, 2, 2, 2, 111, 2,
|
|
119, 120, 109, 105, 2, 106, 2, 110, 2, 2,
|
|
2, 2, 2, 2, 2, 2, 2, 2, 117, 2,
|
|
2, 116, 2, 2, 121, 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, 108, 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, 107, 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, 2, 1, 2, 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, 30, 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, 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,
|
|
112, 113, 114
|
|
};
|
|
|
|
#if YYDEBUG
|
|
/* YYPRHS[YYN] -- Index of the first RHS symbol of rule number YYN in
|
|
YYRHS. */
|
|
static const yytype_uint16 yyprhs[] =
|
|
{
|
|
0, 0, 3, 6, 8, 10, 12, 14, 16, 18,
|
|
20, 22, 24, 26, 28, 30, 32, 34, 36, 38,
|
|
40, 42, 44, 46, 48, 50, 52, 54, 56, 58,
|
|
60, 62, 64, 66, 68, 70, 72, 74, 76, 78,
|
|
80, 82, 84, 86, 88, 90, 92, 94, 96, 98,
|
|
100, 102, 104, 105, 107, 109, 111, 113, 115, 117,
|
|
119, 121, 123, 125, 127, 131, 135, 138, 141, 145,
|
|
149, 153, 157, 160, 164, 168, 171, 175, 179, 183,
|
|
186, 190, 194, 198, 201, 206, 211, 216, 222, 228,
|
|
234, 237, 241, 245, 250, 255, 261, 264, 268, 271,
|
|
274, 278, 283, 288, 291, 296, 302, 308, 314, 320,
|
|
326, 332, 338, 344, 350, 353, 359, 362, 366, 370,
|
|
373, 377, 382, 385, 388, 392, 396, 400, 406, 412,
|
|
418, 424, 428, 432, 436, 440, 444, 449, 453, 458,
|
|
464, 469, 475, 476, 478, 481, 484, 487, 490, 493,
|
|
496, 499, 502, 505, 509, 513, 517, 520, 525, 529,
|
|
533, 536, 541, 547, 553, 557, 561, 566, 570, 573,
|
|
577, 582, 586, 591, 597, 601, 606, 612, 616, 620,
|
|
624, 629, 633, 637, 641, 645, 649, 653, 657, 661,
|
|
665, 669, 673, 677, 681, 685, 689, 693, 697, 701,
|
|
705, 709, 713, 717, 721, 725, 729, 733, 737, 741,
|
|
745, 749, 753, 757, 761, 765, 769, 773, 777, 781,
|
|
785, 789, 793, 797, 801, 805, 809, 813, 816, 820,
|
|
822, 824, 826, 828, 830, 832, 834, 836, 838, 840,
|
|
842, 844, 848, 852, 856, 860, 864, 868, 872, 876,
|
|
880, 883, 886, 890, 892, 894, 896, 898, 900, 902,
|
|
904, 906, 908, 910, 912, 914, 918, 922, 926, 930,
|
|
934, 938, 942, 946, 950, 954, 957, 960, 963, 966
|
|
};
|
|
|
|
/* YYRHS -- A `-1'-separated list of the rules' RHS. */
|
|
static const yytype_int16 yyrhs[] =
|
|
{
|
|
123, 0, -1, 123, 124, -1, 124, -1, 143, -1,
|
|
144, -1, 145, -1, 146, -1, 147, -1, 150, -1,
|
|
152, -1, 153, -1, 154, -1, 155, -1, 156, -1,
|
|
157, -1, 158, -1, 160, -1, 159, -1, 148, -1,
|
|
149, -1, 161, -1, 162, -1, 163, -1, 164, -1,
|
|
165, -1, 166, -1, 167, -1, 168, -1, 169, -1,
|
|
170, -1, 171, -1, 172, -1, 173, -1, 174, -1,
|
|
135, -1, 136, -1, 137, -1, 134, -1, 128, -1,
|
|
129, -1, 130, -1, 138, -1, 139, -1, 132, -1,
|
|
133, -1, 131, -1, 140, -1, 141, -1, 142, -1,
|
|
175, -1, 176, -1, -1, 115, -1, 16, -1, 17,
|
|
-1, 32, -1, 33, -1, 8, -1, 9, -1, 10,
|
|
-1, 11, -1, 12, -1, 13, -1, 79, 178, 115,
|
|
-1, 78, 178, 115, -1, 80, 115, -1, 81, 115,
|
|
-1, 87, 99, 115, -1, 87, 47, 115, -1, 87,
|
|
17, 115, -1, 87, 68, 115, -1, 87, 115, -1,
|
|
95, 178, 115, -1, 64, 178, 115, -1, 77, 115,
|
|
-1, 72, 125, 115, -1, 73, 125, 115, -1, 74,
|
|
125, 115, -1, 82, 115, -1, 82, 94, 115, -1,
|
|
83, 69, 115, -1, 83, 18, 115, -1, 83, 115,
|
|
-1, 83, 32, 178, 115, -1, 83, 85, 178, 115,
|
|
-1, 83, 86, 178, 115, -1, 83, 32, 178, 178,
|
|
115, -1, 83, 85, 178, 178, 115, -1, 83, 86,
|
|
178, 178, 115, -1, 84, 115, -1, 84, 178, 115,
|
|
-1, 88, 68, 115, -1, 88, 68, 178, 115, -1,
|
|
88, 91, 68, 115, -1, 88, 91, 68, 178, 115,
|
|
-1, 92, 115, -1, 93, 178, 115, -1, 18, 115,
|
|
-1, 19, 115, -1, 19, 94, 115, -1, 19, 47,
|
|
94, 115, -1, 19, 94, 94, 115, -1, 20, 115,
|
|
-1, 21, 66, 125, 115, -1, 21, 58, 116, 178,
|
|
115, -1, 21, 4, 116, 178, 115, -1, 21, 3,
|
|
116, 178, 115, -1, 21, 5, 116, 178, 115, -1,
|
|
21, 6, 116, 178, 115, -1, 21, 7, 116, 178,
|
|
115, -1, 21, 103, 116, 178, 115, -1, 21, 104,
|
|
116, 178, 115, -1, 21, 127, 116, 178, 115, -1,
|
|
24, 115, -1, 24, 177, 117, 177, 115, -1, 25,
|
|
115, -1, 25, 178, 115, -1, 25, 68, 115, -1,
|
|
26, 115, -1, 26, 178, 115, -1, 26, 109, 178,
|
|
115, -1, 23, 115, -1, 90, 115, -1, 90, 68,
|
|
115, -1, 30, 26, 115, -1, 30, 34, 115, -1,
|
|
30, 41, 151, 151, 115, -1, 30, 42, 151, 151,
|
|
115, -1, 30, 43, 151, 151, 115, -1, 30, 44,
|
|
151, 151, 115, -1, 30, 46, 115, -1, 30, 45,
|
|
115, -1, 30, 15, 115, -1, 30, 48, 115, -1,
|
|
30, 89, 115, -1, 30, 89, 68, 115, -1, 30,
|
|
98, 115, -1, 30, 98, 99, 115, -1, 30, 98,
|
|
99, 68, 115, -1, 30, 98, 68, 115, -1, 30,
|
|
98, 68, 68, 115, -1, -1, 178, -1, 126, 115,
|
|
-1, 35, 115, -1, 36, 115, -1, 37, 115, -1,
|
|
38, 115, -1, 39, 115, -1, 51, 115, -1, 50,
|
|
115, -1, 49, 115, -1, 27, 94, 115, -1, 28,
|
|
94, 115, -1, 29, 94, 115, -1, 31, 115, -1,
|
|
52, 53, 178, 115, -1, 52, 53, 115, -1, 52,
|
|
178, 115, -1, 52, 115, -1, 55, 68, 68, 115,
|
|
-1, 56, 68, 178, 178, 115, -1, 57, 178, 178,
|
|
178, 115, -1, 59, 60, 115, -1, 61, 62, 115,
|
|
-1, 61, 62, 94, 115, -1, 61, 63, 115, -1,
|
|
66, 115, -1, 66, 178, 115, -1, 66, 178, 178,
|
|
115, -1, 66, 54, 115, -1, 66, 54, 178, 115,
|
|
-1, 66, 54, 178, 178, 115, -1, 66, 75, 115,
|
|
-1, 66, 65, 125, 115, -1, 66, 76, 116, 94,
|
|
115, -1, 67, 69, 115, -1, 67, 99, 115, -1,
|
|
70, 178, 115, -1, 71, 178, 178, 115, -1, 96,
|
|
31, 115, -1, 96, 18, 115, -1, 96, 19, 115,
|
|
-1, 96, 20, 115, -1, 96, 24, 115, -1, 96,
|
|
25, 115, -1, 96, 26, 115, -1, 96, 27, 115,
|
|
-1, 96, 28, 115, -1, 96, 29, 115, -1, 96,
|
|
23, 115, -1, 96, 80, 115, -1, 96, 81, 115,
|
|
-1, 96, 71, 115, -1, 96, 72, 115, -1, 96,
|
|
73, 115, -1, 96, 74, 115, -1, 96, 55, 115,
|
|
-1, 96, 77, 115, -1, 96, 79, 115, -1, 96,
|
|
78, 115, -1, 96, 82, 115, -1, 96, 88, 115,
|
|
-1, 96, 90, 115, -1, 96, 126, 115, -1, 96,
|
|
35, 115, -1, 96, 36, 115, -1, 96, 37, 115,
|
|
-1, 96, 38, 115, -1, 96, 39, 115, -1, 96,
|
|
51, 115, -1, 96, 50, 115, -1, 96, 49, 115,
|
|
-1, 96, 56, 115, -1, 96, 57, 115, -1, 96,
|
|
66, 115, -1, 96, 83, 115, -1, 96, 84, 115,
|
|
-1, 96, 52, 115, -1, 96, 67, 115, -1, 96,
|
|
21, 115, -1, 96, 95, 115, -1, 96, 30, 115,
|
|
-1, 96, 87, 115, -1, 96, 97, 115, -1, 96,
|
|
96, 115, -1, 96, 115, -1, 97, 178, 115, -1,
|
|
94, -1, 68, -1, 4, -1, 3, -1, 5, -1,
|
|
6, -1, 7, -1, 14, -1, 127, -1, 102, -1,
|
|
103, -1, 104, -1, 177, 105, 177, -1, 177, 106,
|
|
177, -1, 177, 109, 177, -1, 177, 110, 177, -1,
|
|
177, 100, 177, -1, 177, 101, 177, -1, 177, 107,
|
|
177, -1, 177, 108, 177, -1, 177, 111, 177, -1,
|
|
118, 177, -1, 106, 177, -1, 119, 177, 120, -1,
|
|
94, -1, 68, -1, 4, -1, 3, -1, 5, -1,
|
|
6, -1, 7, -1, 14, -1, 127, -1, 102, -1,
|
|
103, -1, 104, -1, 178, 117, 178, -1, 178, 105,
|
|
178, -1, 178, 106, 178, -1, 178, 109, 178, -1,
|
|
178, 110, 178, -1, 178, 100, 178, -1, 178, 101,
|
|
178, -1, 178, 107, 178, -1, 178, 108, 178, -1,
|
|
178, 111, 178, -1, 118, 178, -1, 106, 178, -1,
|
|
109, 178, -1, 121, 178, -1, 119, 178, 120, -1
|
|
};
|
|
|
|
/* YYRLINE[YYN] -- source line where rule number YYN was defined. */
|
|
static const yytype_uint16 yyrline[] =
|
|
{
|
|
0, 139, 139, 140, 144, 145, 146, 147, 148, 149,
|
|
150, 151, 152, 153, 154, 155, 156, 157, 158, 159,
|
|
160, 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, 186, 187, 188, 189,
|
|
190, 191, 192, 193, 199, 200, 205, 206, 211, 212,
|
|
213, 214, 215, 216, 221, 226, 234, 242, 250, 255,
|
|
260, 265, 270, 278, 286, 294, 302, 310, 318, 326,
|
|
331, 339, 344, 349, 354, 359, 364, 369, 374, 379,
|
|
384, 389, 397, 402, 407, 412, 420, 428, 436, 444,
|
|
449, 454, 459, 467, 475, 480, 485, 489, 493, 497,
|
|
501, 505, 509, 513, 520, 525, 530, 535, 540, 545,
|
|
550, 555, 563, 571, 576, 584, 589, 594, 599, 604,
|
|
609, 614, 619, 624, 629, 634, 639, 644, 649, 654,
|
|
659, 664, 672, 673, 676, 684, 692, 700, 708, 716,
|
|
724, 732, 740, 748, 756, 763, 771, 779, 784, 789,
|
|
794, 802, 810, 818, 826, 834, 839, 844, 852, 857,
|
|
862, 867, 872, 877, 882, 887, 892, 900, 905, 913,
|
|
921, 929, 934, 939, 946, 951, 956, 961, 966, 971,
|
|
976, 981, 986, 991, 996, 1001, 1007, 1013, 1019, 1027,
|
|
1032, 1037, 1042, 1047, 1052, 1057, 1062, 1067, 1072, 1077,
|
|
1082, 1087, 1092, 1097, 1102, 1107, 1112, 1122, 1133, 1139,
|
|
1152, 1157, 1168, 1173, 1189, 1205, 1215, 1220, 1228, 1247,
|
|
1248, 1249, 1250, 1251, 1252, 1253, 1254, 1255, 1256, 1257,
|
|
1258, 1259, 1260, 1261, 1262, 1263, 1264, 1265, 1266, 1267,
|
|
1268, 1269, 1270, 1276, 1277, 1278, 1279, 1280, 1281, 1282,
|
|
1283, 1284, 1285, 1286, 1287, 1288, 1289, 1290, 1291, 1292,
|
|
1293, 1294, 1295, 1296, 1297, 1298, 1299, 1300, 1301, 1302
|
|
};
|
|
#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", "BX_TOKEN_8BH_REG", "BX_TOKEN_8BL_REG",
|
|
"BX_TOKEN_16B_REG", "BX_TOKEN_32B_REG", "BX_TOKEN_64B_REG",
|
|
"BX_TOKEN_CS", "BX_TOKEN_ES", "BX_TOKEN_SS", "BX_TOKEN_DS",
|
|
"BX_TOKEN_FS", "BX_TOKEN_GS", "BX_TOKEN_OPMASK_REG", "BX_TOKEN_FLAGS",
|
|
"BX_TOKEN_ON", "BX_TOKEN_OFF", "BX_TOKEN_CONTINUE", "BX_TOKEN_STEPN",
|
|
"BX_TOKEN_STEP_OVER", "BX_TOKEN_SET", "BX_TOKEN_DEBUGGER",
|
|
"BX_TOKEN_LIST_BREAK", "BX_TOKEN_VBREAKPOINT", "BX_TOKEN_LBREAKPOINT",
|
|
"BX_TOKEN_PBREAKPOINT", "BX_TOKEN_DEL_BREAKPOINT",
|
|
"BX_TOKEN_ENABLE_BREAKPOINT", "BX_TOKEN_DISABLE_BREAKPOINT",
|
|
"BX_TOKEN_INFO", "BX_TOKEN_QUIT", "BX_TOKEN_R", "BX_TOKEN_REGS",
|
|
"BX_TOKEN_CPU", "BX_TOKEN_FPU", "BX_TOKEN_MMX", "BX_TOKEN_XMM",
|
|
"BX_TOKEN_YMM", "BX_TOKEN_ZMM", "BX_TOKEN_AVX", "BX_TOKEN_IDT",
|
|
"BX_TOKEN_IVT", "BX_TOKEN_GDT", "BX_TOKEN_LDT", "BX_TOKEN_TSS",
|
|
"BX_TOKEN_TAB", "BX_TOKEN_ALL", "BX_TOKEN_LINUX", "BX_TOKEN_DEBUG_REGS",
|
|
"BX_TOKEN_CONTROL_REGS", "BX_TOKEN_SEGMENT_REGS", "BX_TOKEN_EXAMINE",
|
|
"BX_TOKEN_XFORMAT", "BX_TOKEN_DISFORMAT", "BX_TOKEN_RESTORE",
|
|
"BX_TOKEN_WRITEMEM", "BX_TOKEN_SETPMEM", "BX_TOKEN_SYMBOLNAME",
|
|
"BX_TOKEN_QUERY", "BX_TOKEN_PENDING", "BX_TOKEN_TAKE", "BX_TOKEN_DMA",
|
|
"BX_TOKEN_IRQ", "BX_TOKEN_TLB", "BX_TOKEN_HEX", "BX_TOKEN_DISASM",
|
|
"BX_TOKEN_INSTRUMENT", "BX_TOKEN_STRING", "BX_TOKEN_STOP",
|
|
"BX_TOKEN_DOIT", "BX_TOKEN_CRC", "BX_TOKEN_TRACE", "BX_TOKEN_TRACEREG",
|
|
"BX_TOKEN_TRACEMEM", "BX_TOKEN_SWITCH_MODE", "BX_TOKEN_SIZE",
|
|
"BX_TOKEN_PTIME", "BX_TOKEN_TIMEBP_ABSOLUTE", "BX_TOKEN_TIMEBP",
|
|
"BX_TOKEN_MODEBP", "BX_TOKEN_VMEXITBP", "BX_TOKEN_PRINT_STACK",
|
|
"BX_TOKEN_WATCH", "BX_TOKEN_UNWATCH", "BX_TOKEN_READ", "BX_TOKEN_WRITE",
|
|
"BX_TOKEN_SHOW", "BX_TOKEN_LOAD_SYMBOLS", "BX_TOKEN_SYMBOLS",
|
|
"BX_TOKEN_LIST_SYMBOLS", "BX_TOKEN_GLOBAL", "BX_TOKEN_WHERE",
|
|
"BX_TOKEN_PRINT_STRING", "BX_TOKEN_NUMERIC", "BX_TOKEN_PAGE",
|
|
"BX_TOKEN_HELP", "BX_TOKEN_CALC", "BX_TOKEN_DEVICE", "BX_TOKEN_GENERIC",
|
|
"BX_TOKEN_RSHIFT", "BX_TOKEN_LSHIFT", "BX_TOKEN_REG_IP",
|
|
"BX_TOKEN_REG_EIP", "BX_TOKEN_REG_RIP", "'+'", "'-'", "'|'", "'^'",
|
|
"'*'", "'/'", "'&'", "INDIRECT", "NEG", "NOT", "'\\n'", "'='", "':'",
|
|
"'!'", "'('", "')'", "'@'", "$accept", "commands", "command",
|
|
"BX_TOKEN_TOGGLE_ON_OFF", "BX_TOKEN_REGISTERS", "BX_TOKEN_SEGREG",
|
|
"timebp_command", "modebp_command", "vmexitbp_command", "show_command",
|
|
"page_command", "tlb_command", "ptime_command", "trace_command",
|
|
"trace_reg_command", "trace_mem_command", "print_stack_command",
|
|
"watch_point_command", "symbol_command", "where_command",
|
|
"print_string_command", "continue_command", "stepN_command",
|
|
"step_over_command", "set_command", "breakpoint_command",
|
|
"blist_command", "slist_command", "info_command", "optional_numeric",
|
|
"regs_command", "fpu_regs_command", "mmx_regs_command",
|
|
"xmm_regs_command", "ymm_regs_command", "zmm_regs_command",
|
|
"segment_regs_command", "control_regs_command", "debug_regs_command",
|
|
"delete_command", "bpe_command", "bpd_command", "quit_command",
|
|
"examine_command", "restore_command", "writemem_command",
|
|
"setpmem_command", "query_command", "take_command",
|
|
"disassemble_command", "instrument_command", "doit_command",
|
|
"crc_command", "help_command", "calc_command", "vexpression",
|
|
"expression", 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, 267, 268, 269, 270, 271, 272, 273, 274,
|
|
275, 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,
|
|
305, 306, 307, 308, 309, 310, 311, 312, 313, 314,
|
|
315, 316, 317, 318, 319, 320, 321, 322, 323, 324,
|
|
325, 326, 327, 328, 329, 330, 331, 332, 333, 334,
|
|
335, 336, 337, 338, 339, 340, 341, 342, 343, 344,
|
|
345, 346, 347, 348, 349, 350, 351, 352, 353, 354,
|
|
355, 356, 357, 358, 359, 43, 45, 124, 94, 42,
|
|
47, 38, 360, 361, 362, 10, 61, 58, 33, 40,
|
|
41, 64
|
|
};
|
|
# endif
|
|
|
|
/* YYR1[YYN] -- Symbol number of symbol that rule YYN derives. */
|
|
static const yytype_uint8 yyr1[] =
|
|
{
|
|
0, 122, 123, 123, 124, 124, 124, 124, 124, 124,
|
|
124, 124, 124, 124, 124, 124, 124, 124, 124, 124,
|
|
124, 124, 124, 124, 124, 124, 124, 124, 124, 124,
|
|
124, 124, 124, 124, 124, 124, 124, 124, 124, 124,
|
|
124, 124, 124, 124, 124, 124, 124, 124, 124, 124,
|
|
124, 124, 124, 124, 125, 125, 126, 126, 127, 127,
|
|
127, 127, 127, 127, 128, 128, 129, 130, 131, 131,
|
|
131, 131, 131, 132, 133, 134, 135, 136, 137, 138,
|
|
138, 139, 139, 139, 139, 139, 139, 139, 139, 139,
|
|
139, 139, 140, 140, 140, 140, 141, 142, 143, 144,
|
|
144, 144, 144, 145, 146, 146, 146, 146, 146, 146,
|
|
146, 146, 146, 146, 147, 147, 147, 147, 147, 147,
|
|
147, 147, 148, 149, 149, 150, 150, 150, 150, 150,
|
|
150, 150, 150, 150, 150, 150, 150, 150, 150, 150,
|
|
150, 150, 151, 151, 152, 153, 154, 155, 156, 157,
|
|
158, 159, 160, 161, 162, 163, 164, 165, 165, 165,
|
|
165, 166, 167, 168, 169, 170, 170, 170, 171, 171,
|
|
171, 171, 171, 171, 171, 171, 171, 172, 172, 173,
|
|
174, 175, 175, 175, 175, 175, 175, 175, 175, 175,
|
|
175, 175, 175, 175, 175, 175, 175, 175, 175, 175,
|
|
175, 175, 175, 175, 175, 175, 175, 175, 175, 175,
|
|
175, 175, 175, 175, 175, 175, 175, 175, 175, 175,
|
|
175, 175, 175, 175, 175, 175, 175, 175, 176, 177,
|
|
177, 177, 177, 177, 177, 177, 177, 177, 177, 177,
|
|
177, 177, 177, 177, 177, 177, 177, 177, 177, 177,
|
|
177, 177, 177, 178, 178, 178, 178, 178, 178, 178,
|
|
178, 178, 178, 178, 178, 178, 178, 178, 178, 178,
|
|
178, 178, 178, 178, 178, 178, 178, 178, 178, 178
|
|
};
|
|
|
|
/* YYR2[YYN] -- Number of symbols composing right hand side of rule YYN. */
|
|
static const yytype_uint8 yyr2[] =
|
|
{
|
|
0, 2, 2, 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,
|
|
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
|
1, 1, 0, 1, 1, 1, 1, 1, 1, 1,
|
|
1, 1, 1, 1, 3, 3, 2, 2, 3, 3,
|
|
3, 3, 2, 3, 3, 2, 3, 3, 3, 2,
|
|
3, 3, 3, 2, 4, 4, 4, 5, 5, 5,
|
|
2, 3, 3, 4, 4, 5, 2, 3, 2, 2,
|
|
3, 4, 4, 2, 4, 5, 5, 5, 5, 5,
|
|
5, 5, 5, 5, 2, 5, 2, 3, 3, 2,
|
|
3, 4, 2, 2, 3, 3, 3, 5, 5, 5,
|
|
5, 3, 3, 3, 3, 3, 4, 3, 4, 5,
|
|
4, 5, 0, 1, 2, 2, 2, 2, 2, 2,
|
|
2, 2, 2, 3, 3, 3, 2, 4, 3, 3,
|
|
2, 4, 5, 5, 3, 3, 4, 3, 2, 3,
|
|
4, 3, 4, 5, 3, 4, 5, 3, 3, 3,
|
|
4, 3, 3, 3, 3, 3, 3, 3, 3, 3,
|
|
3, 3, 3, 3, 3, 3, 3, 3, 3, 3,
|
|
3, 3, 3, 3, 3, 3, 3, 3, 3, 3,
|
|
3, 3, 3, 3, 3, 3, 3, 3, 3, 3,
|
|
3, 3, 3, 3, 3, 3, 3, 2, 3, 1,
|
|
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
|
1, 3, 3, 3, 3, 3, 3, 3, 3, 3,
|
|
2, 2, 3, 1, 1, 1, 1, 1, 1, 1,
|
|
1, 1, 1, 1, 1, 3, 3, 3, 3, 3,
|
|
3, 3, 3, 3, 3, 2, 2, 2, 2, 3
|
|
};
|
|
|
|
/* 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_uint16 yydefact[] =
|
|
{
|
|
52, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
0, 0, 0, 0, 56, 57, 0, 0, 0, 0,
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
0, 0, 0, 0, 53, 0, 3, 0, 39, 40,
|
|
41, 46, 44, 45, 38, 35, 36, 37, 42, 43,
|
|
47, 48, 49, 4, 5, 6, 7, 8, 19, 20,
|
|
9, 10, 11, 12, 13, 14, 15, 16, 18, 17,
|
|
21, 22, 23, 24, 25, 26, 27, 28, 29, 30,
|
|
31, 32, 33, 34, 50, 51, 98, 0, 0, 99,
|
|
103, 0, 0, 0, 0, 0, 58, 59, 60, 61,
|
|
62, 63, 0, 0, 0, 0, 0, 122, 232, 231,
|
|
233, 234, 235, 236, 230, 229, 238, 239, 240, 0,
|
|
114, 0, 0, 237, 0, 256, 255, 257, 258, 259,
|
|
260, 254, 253, 262, 263, 264, 0, 0, 116, 0,
|
|
0, 0, 261, 0, 254, 0, 119, 0, 0, 0,
|
|
0, 0, 0, 0, 142, 142, 142, 142, 0, 0,
|
|
0, 0, 0, 156, 145, 146, 147, 148, 149, 152,
|
|
151, 150, 0, 160, 0, 0, 0, 0, 0, 0,
|
|
0, 0, 0, 0, 0, 0, 168, 0, 0, 0,
|
|
0, 0, 54, 55, 0, 0, 0, 75, 0, 0,
|
|
66, 67, 0, 79, 0, 0, 0, 0, 0, 83,
|
|
90, 0, 0, 0, 0, 0, 72, 0, 0, 0,
|
|
123, 96, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 227,
|
|
0, 0, 1, 2, 144, 0, 0, 100, 0, 0,
|
|
0, 0, 0, 0, 0, 0, 0, 0, 251, 250,
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
0, 118, 276, 277, 275, 0, 278, 0, 0, 0,
|
|
0, 0, 0, 0, 0, 0, 117, 0, 277, 120,
|
|
153, 154, 155, 133, 125, 126, 142, 143, 142, 142,
|
|
142, 132, 131, 134, 0, 135, 0, 0, 137, 158,
|
|
0, 159, 0, 0, 0, 0, 0, 164, 0, 165,
|
|
167, 74, 171, 0, 0, 174, 0, 169, 0, 177,
|
|
178, 179, 0, 76, 77, 78, 65, 64, 80, 82,
|
|
0, 81, 0, 0, 91, 70, 69, 71, 68, 92,
|
|
0, 0, 124, 97, 73, 182, 183, 184, 221, 191,
|
|
185, 186, 187, 188, 189, 190, 223, 181, 206, 207,
|
|
208, 209, 210, 213, 212, 211, 219, 198, 214, 215,
|
|
216, 220, 194, 195, 196, 197, 199, 201, 200, 192,
|
|
193, 202, 217, 218, 224, 203, 204, 222, 226, 225,
|
|
205, 228, 101, 102, 0, 0, 0, 0, 0, 0,
|
|
104, 0, 0, 0, 252, 245, 246, 241, 242, 247,
|
|
248, 243, 244, 249, 0, 279, 270, 271, 266, 267,
|
|
272, 273, 268, 269, 274, 265, 121, 0, 0, 0,
|
|
0, 136, 0, 140, 0, 138, 157, 161, 0, 267,
|
|
268, 0, 166, 172, 0, 175, 0, 170, 180, 84,
|
|
0, 85, 0, 86, 0, 93, 94, 0, 107, 106,
|
|
108, 109, 110, 105, 111, 112, 113, 115, 127, 128,
|
|
129, 130, 141, 139, 162, 163, 173, 176, 87, 88,
|
|
89, 95
|
|
};
|
|
|
|
/* YYDEFGOTO[NTERM-NUM]. */
|
|
static const yytype_int16 yydefgoto[] =
|
|
{
|
|
-1, 55, 56, 214, 57, 162, 58, 59, 60, 61,
|
|
62, 63, 64, 65, 66, 67, 68, 69, 70, 71,
|
|
72, 73, 74, 75, 76, 77, 78, 79, 80, 346,
|
|
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, 144, 347
|
|
};
|
|
|
|
/* YYPACT[STATE-NUM] -- Index in YYTABLE of the portion describing
|
|
STATE-NUM. */
|
|
#define YYPACT_NINF -148
|
|
static const yytype_int16 yypact[] =
|
|
{
|
|
1343, -93, -38, -84, 448, -80, 1109, 732, 777, -32,
|
|
-28, -27, 37, -75, -148, -148, -47, -46, -45, -31,
|
|
-26, -25, -24, -20, 104, 18, 31, 1038, 40, -9,
|
|
1038, 658, -51, 1038, 1038, 33, 33, 33, -14, 1038,
|
|
1038, -10, 5, -79, 7, 799, 4, -49, -57, 6,
|
|
1038, 1038, 1424, 1038, -148, 1262, -148, 10, -148, -148,
|
|
-148, -148, -148, -148, -148, -148, -148, -148, -148, -148,
|
|
-148, -148, -148, -148, -148, -148, -148, -148, -148, -148,
|
|
-148, -148, -148, -148, -148, -148, -148, -148, -148, -148,
|
|
-148, -148, -148, -148, -148, -148, -148, -148, -148, -148,
|
|
-148, -148, -148, -148, -148, -148, -148, 8, -78, -148,
|
|
-148, 11, 20, 22, 25, 26, -148, -148, -148, -148,
|
|
-148, -148, 28, 33, 29, 30, 32, -148, -148, -148,
|
|
-148, -148, -148, -148, -148, -148, -148, -148, -148, 1157,
|
|
-148, 1157, 1157, -148, 243, -148, -148, -148, -148, -148,
|
|
-148, 36, -148, -148, -148, -148, 1038, 1038, -148, 1038,
|
|
1038, 1038, -148, 262, -148, 1038, -148, 309, 41, 56,
|
|
58, 71, 72, 73, 1038, 1038, 1038, 1038, 76, 77,
|
|
78, -56, -58, -148, -148, -148, -148, -148, -148, -148,
|
|
-148, -148, 851, -148, 375, 38, 1038, 592, 79, -60,
|
|
81, 507, 918, 33, 82, 39, -148, 156, 90, 94,
|
|
573, 592, -148, -148, 96, 97, 99, -148, 648, 714,
|
|
-148, -148, 100, -148, 101, 1038, 102, 1038, 1038, -148,
|
|
-148, 833, 113, 114, 125, 127, -148, 970, 173, 129,
|
|
-148, -148, 908, 960, 130, 136, 137, 139, 153, 154,
|
|
155, 157, 161, 163, 164, 165, 166, 167, 168, 169,
|
|
170, 171, 172, 174, 175, 182, 186, 187, 188, 189,
|
|
190, 191, 192, 193, 204, 214, 230, 231, 232, 240,
|
|
246, 249, 250, 259, 260, 261, 263, 265, 266, -148,
|
|
267, 1028, -148, -148, -148, 269, 272, -148, 1038, 1038,
|
|
1038, 1038, 1038, 1038, 273, 1038, 1038, 1038, -148, -148,
|
|
23, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157,
|
|
1157, -148, 274, 274, 274, 126, 274, 1038, 1038, 1038,
|
|
1038, 1038, 1038, 1038, 1038, 1038, -148, 1038, -70, -148,
|
|
-148, -148, -148, -148, -148, -148, 1038, 1147, 1038, 1038,
|
|
1038, -148, -148, -148, 275, -148, -55, -54, -148, -148,
|
|
1073, -148, 277, 592, 1038, 1038, 592, -148, 278, -148,
|
|
-148, -148, -148, 328, 280, -148, 53, -148, 1091, -148,
|
|
-148, -148, 1129, -148, -148, -148, -148, -148, -148, -148,
|
|
394, -148, 460, 526, -148, -148, -148, -148, -148, -148,
|
|
1377, 990, -148, -148, -148, -148, -148, -148, -148, -148,
|
|
-148, -148, -148, -148, -148, -148, -148, -148, -148, -148,
|
|
-148, -148, -148, -148, -148, -148, -148, -148, -148, -148,
|
|
-148, -148, -148, -148, -148, -148, -148, -148, -148, -148,
|
|
-148, -148, -148, -148, -148, -148, -148, -148, -148, -148,
|
|
-148, -148, -148, -148, 1417, 1435, 1448, 1461, 1474, 1487,
|
|
-148, 1500, 1513, 1526, -148, -148, -148, -36, -36, -36,
|
|
-36, -148, -148, -148, 1630, -148, 274, 274, -13, -13,
|
|
-13, -13, 274, 274, 274, 1147, -148, 296, 297, 298,
|
|
306, -148, 308, -148, 310, -148, -148, -148, 1539, 138,
|
|
274, 1552, -148, -148, 1565, -148, 312, -148, -148, -148,
|
|
1578, -148, 1591, -148, 1604, -148, -148, 1617, -148, -148,
|
|
-148, -148, -148, -148, -148, -148, -148, -148, -148, -148,
|
|
-148, -148, -148, -148, -148, -148, -148, -148, -148, -148,
|
|
-148, -148
|
|
};
|
|
|
|
/* YYPGOTO[NTERM-NUM]. */
|
|
static const yytype_int16 yypgoto[] =
|
|
{
|
|
-148, -148, 198, -29, 236, -2, -148, -148, -148, -148,
|
|
-148, -148, -148, -148, -148, -148, -148, -148, -148, -148,
|
|
-148, -148, -148, -148, -148, -148, -148, -148, -148, -147,
|
|
-148, -148, -148, -148, -148, -148, -148, -148, -148, -148,
|
|
-148, -148, -148, -148, -148, -148, -148, -148, -148, -148,
|
|
-148, -148, -148, -148, -148, -136, -7
|
|
};
|
|
|
|
/* 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 -277
|
|
static const yytype_int16 yytable[] =
|
|
{
|
|
163, 167, 126, 308, 143, 309, 310, 215, 216, 107,
|
|
356, 239, 354, 492, 494, 222, 296, 194, 208, 237,
|
|
197, 232, 106, 201, 207, 224, 210, 211, 348, 349,
|
|
350, 110, 218, 219, 368, 127, 223, 297, 231, 225,
|
|
183, 357, 238, 242, 243, 486, 291, 337, 209, 212,
|
|
213, 233, 171, 199, 200, 369, 108, 358, 240, 355,
|
|
493, 495, 168, 172, 311, 312, 169, 170, 184, 185,
|
|
186, 173, 234, 317, 318, 319, 226, 109, 174, 175,
|
|
176, 177, 178, 179, 187, 180, 195, 327, 328, 188,
|
|
189, 190, 227, 228, 304, 191, 333, 334, 335, 196,
|
|
198, 217, 295, 235, 337, 220, 362, 145, 146, 147,
|
|
148, 149, 116, 117, 118, 119, 120, 121, 150, 236,
|
|
221, 241, 229, 311, 312, 294, 181, 298, 313, 314,
|
|
315, 316, 317, 318, 319, 182, 299, 143, 300, 143,
|
|
143, 301, 302, 464, 303, 305, 306, 506, 307, 322,
|
|
323, 321, 324, 325, 326, 376, 340, 192, 338, 145,
|
|
146, 147, 148, 149, 116, 117, 118, 119, 120, 121,
|
|
150, 341, 164, 342, 374, 465, 466, 467, 468, 469,
|
|
470, 471, 472, 473, 474, 360, 343, 344, 345, 363,
|
|
366, 351, 352, 353, 367, 373, 370, 375, 152, 487,
|
|
378, 488, 489, 490, 382, 379, 153, 154, 155, 380,
|
|
156, 383, 384, 157, 385, 388, 389, 391, 390, 193,
|
|
392, 393, 159, 160, 164, 161, 327, 328, 395, 396,
|
|
400, 329, 330, 331, 332, 333, 334, 335, -276, -276,
|
|
397, 401, 398, 337, 402, 405, 475, -276, -276, -276,
|
|
152, 406, 407, 293, 408, 337, 327, 328, 153, 154,
|
|
155, 329, 364, 331, 332, 365, 334, 335, 409, 410,
|
|
411, 377, 412, 337, 159, 160, 413, 161, 414, 415,
|
|
416, 417, 418, 419, 420, 421, 422, 423, 290, 424,
|
|
425, 454, 455, 456, 457, 458, 459, 426, 461, 462,
|
|
463, 427, 428, 429, 430, 431, 432, 433, 434, 143,
|
|
143, 143, 143, 143, 143, 143, 143, 143, 143, 435,
|
|
476, 477, 478, 479, 480, 481, 482, 483, 484, 436,
|
|
485, 145, 146, 147, 148, 149, 116, 117, 118, 119,
|
|
120, 121, 150, 311, 312, 437, 438, 439, 313, 314,
|
|
315, 316, 317, 318, 319, 440, 498, 499, 500, 501,
|
|
320, 441, 327, 328, 442, 443, 504, 329, 330, 331,
|
|
332, 333, 334, 335, 444, 445, 446, 336, 447, 337,
|
|
448, 449, 450, 510, 452, 512, 514, 453, 460, 0,
|
|
491, 337, 497, 502, 517, 505, 164, 145, 146, 147,
|
|
148, 149, 116, 117, 118, 119, 120, 121, 150, 327,
|
|
328, 528, 529, 530, 329, 330, 331, 332, 333, 334,
|
|
335, 531, 152, 532, 339, 533, 337, 537, 327, 328,
|
|
153, 154, 155, 329, 364, 331, 332, 365, 334, 335,
|
|
0, 0, 0, 503, 0, 337, 159, 160, 0, 161,
|
|
0, 111, 112, 113, 114, 115, 116, 117, 118, 119,
|
|
120, 121, 164, 145, 146, 147, 148, 149, 116, 117,
|
|
118, 119, 120, 121, 150, 327, 328, 0, 0, 0,
|
|
329, 330, 331, 332, 333, 334, 335, 0, 152, 0,
|
|
361, 0, 337, 0, 327, 328, 153, 154, 155, 329,
|
|
364, 331, 332, 365, 334, 335, 122, 0, 0, 509,
|
|
0, 337, 159, 160, 123, 161, 0, 0, 0, 0,
|
|
0, 0, 0, 0, 0, 0, 0, 0, 164, 145,
|
|
146, 147, 148, 149, 116, 117, 118, 119, 120, 121,
|
|
150, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
0, 124, 125, 0, 152, 0, 0, 0, 0, 0,
|
|
327, 328, 153, 154, 155, 329, 364, 331, 332, 365,
|
|
334, 335, 0, 0, 0, 511, 0, 337, 159, 160,
|
|
0, 161, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
0, 0, 0, 0, 164, 145, 146, 147, 148, 149,
|
|
116, 117, 118, 119, 120, 121, 150, 327, 328, 0,
|
|
0, 0, 329, 330, 331, 332, 333, 334, 335, 0,
|
|
152, 0, 371, 0, 337, 0, 327, 328, 153, 154,
|
|
155, 329, 364, 331, 332, 365, 334, 335, 0, 0,
|
|
0, 513, 0, 337, 159, 160, 0, 161, 0, 0,
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
164, 145, 146, 147, 148, 149, 116, 117, 118, 119,
|
|
120, 121, 150, 327, 328, 0, 0, 0, 329, 330,
|
|
331, 332, 333, 334, 335, 0, 152, 0, 381, 0,
|
|
337, 0, 327, 328, 153, 154, 155, 329, 364, 331,
|
|
332, 365, 334, 335, 0, 0, 0, 0, 0, 337,
|
|
159, 160, 202, 161, 0, 0, 0, 0, 0, 0,
|
|
0, 0, 0, 203, 0, 0, 164, 0, 0, 0,
|
|
0, 0, 0, 204, 205, 145, 146, 147, 148, 149,
|
|
116, 117, 118, 119, 120, 121, 150, 0, 327, 328,
|
|
0, 0, 152, 329, 330, 331, 332, 333, 334, 335,
|
|
153, 154, 155, 386, 156, 337, 0, 157, 0, 0,
|
|
0, 0, 0, 206, 0, 0, 159, 160, 0, 161,
|
|
145, 146, 147, 148, 149, 116, 117, 118, 119, 120,
|
|
121, 150, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
151, 0, 145, 146, 147, 148, 149, 116, 117, 118,
|
|
119, 120, 121, 150, 327, 328, 0, 0, 0, 329,
|
|
330, 331, 332, 333, 334, 335, 152, 0, 0, 387,
|
|
0, 337, 0, 0, 153, 154, 155, 0, 156, 0,
|
|
0, 157, 0, 0, 0, 164, 0, 158, 0, 0,
|
|
159, 160, 0, 161, 145, 146, 147, 148, 149, 116,
|
|
117, 118, 119, 120, 121, 150, 0, 164, 0, 0,
|
|
0, 152, 0, 0, 0, 0, 0, 0, 0, 153,
|
|
154, 155, 0, 156, 0, 0, 165, 0, 0, 0,
|
|
0, 0, 166, 152, 0, 159, 160, 0, 161, 0,
|
|
0, 153, 154, 155, 0, 156, 0, 0, 157, 0,
|
|
0, 0, 0, 0, 230, 0, 0, 159, 160, 164,
|
|
161, 145, 146, 147, 148, 149, 116, 117, 118, 119,
|
|
120, 121, 150, 327, 328, 0, 0, 0, 329, 330,
|
|
331, 332, 333, 334, 335, 152, 0, 0, 394, 0,
|
|
337, 0, 0, 153, 154, 155, 0, 156, 0, 0,
|
|
157, 0, 0, 0, 0, 0, 359, 0, 0, 159,
|
|
160, 0, 161, 145, 146, 147, 148, 149, 116, 117,
|
|
118, 119, 120, 121, 150, 0, 164, 0, 0, 0,
|
|
0, 0, 0, 145, 146, 147, 148, 149, 116, 117,
|
|
118, 119, 120, 121, 150, 0, 0, 0, 327, 328,
|
|
0, 0, 152, 329, 330, 331, 332, 333, 334, 335,
|
|
153, 154, 155, 403, 156, 337, 0, 157, 0, 0,
|
|
0, 0, 0, 372, 0, 0, 159, 160, 164, 161,
|
|
0, 145, 146, 147, 148, 149, 116, 117, 118, 119,
|
|
120, 121, 150, 0, 0, 0, 0, 0, 164, 0,
|
|
327, 328, 0, 0, 152, 329, 330, 331, 332, 333,
|
|
334, 335, 153, 154, 155, 404, 156, 337, 0, 157,
|
|
0, 0, 0, 0, 152, 399, 0, 0, 159, 160,
|
|
0, 161, 153, 154, 155, 0, 156, 0, 0, 157,
|
|
0, 0, 0, 0, 0, 516, 164, 0, 159, 160,
|
|
0, 161, 128, 129, 130, 131, 132, 116, 117, 118,
|
|
119, 120, 121, 133, 0, 0, 0, 0, 327, 328,
|
|
0, 0, 152, 329, 330, 331, 332, 333, 334, 335,
|
|
153, 154, 155, 451, 156, 337, 0, 157, 0, 0,
|
|
0, 0, 0, 0, 0, 0, 159, 160, 0, 161,
|
|
128, 129, 130, 131, 132, 116, 117, 118, 119, 120,
|
|
121, 133, 0, 327, 328, 0, 0, 134, 329, 330,
|
|
331, 332, 333, 334, 335, 0, 0, 0, 496, 0,
|
|
337, 327, 328, 0, 0, 0, 329, 330, 331, 332,
|
|
333, 334, 335, 135, 0, 0, 507, 0, 337, 0,
|
|
0, 136, 137, 138, 0, 139, 0, 0, 0, 0,
|
|
0, 0, 0, 0, 140, 134, 0, 141, 142, 327,
|
|
328, 0, 0, 0, 329, 330, 331, 332, 333, 334,
|
|
335, 0, 0, 0, 508, 0, 337, 327, 328, 0,
|
|
0, 135, 329, 330, 331, 332, 333, 334, 335, 136,
|
|
137, 138, 292, 139, 337, 0, 0, 0, 0, 0,
|
|
0, 0, 0, 0, 0, 141, 142, 0, 0, 0,
|
|
1, 2, 3, 4, 0, 5, 6, 7, 8, 9,
|
|
10, 11, 12, 13, 14, 15, 0, 16, 17, 18,
|
|
19, 20, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
0, 21, 22, 23, 24, 0, 0, 25, 26, 27,
|
|
0, 28, 0, 29, 0, 0, 30, 0, 31, 32,
|
|
0, 0, 33, 34, 35, 36, 37, 0, 0, 38,
|
|
39, 40, 41, 42, 43, 44, 45, 0, 0, 46,
|
|
47, 0, 48, 0, 49, 50, 0, 51, 52, 53,
|
|
0, 1, 2, 3, 4, 0, 5, 6, 7, 8,
|
|
9, 10, 11, 12, 13, 14, 15, 54, 16, 17,
|
|
18, 19, 20, 0, 0, 0, 0, 0, 0, 0,
|
|
0, 0, 21, 22, 23, 24, 0, 0, 25, 26,
|
|
27, 0, 28, 0, 29, 0, 0, 30, 0, 31,
|
|
32, 0, 0, 33, 34, 35, 36, 37, 0, 0,
|
|
38, 39, 40, 41, 42, 43, 44, 45, 0, 0,
|
|
46, 47, 0, 48, 0, 49, 50, 0, 51, 52,
|
|
53, 0, 244, 245, 246, 247, 0, 248, 249, 250,
|
|
251, 252, 253, 254, 255, 256, 14, 15, 54, 257,
|
|
258, 259, 260, 261, 0, 0, 0, 0, 0, 0,
|
|
0, 0, 0, 262, 263, 264, 265, 327, 328, 266,
|
|
267, 268, 329, 330, 331, 332, 333, 334, 335, 0,
|
|
269, 270, 515, 0, 337, 271, 272, 273, 274, 0,
|
|
0, 275, 276, 277, 278, 279, 280, 281, 282, 0,
|
|
0, 283, 284, 0, 285, 0, 0, 327, 328, 286,
|
|
287, 288, 329, 330, 331, 332, 333, 334, 335, 0,
|
|
0, 0, 518, 0, 337, 327, 328, 0, 0, 289,
|
|
329, 330, 331, 332, 333, 334, 335, 0, 327, 328,
|
|
519, 0, 337, 329, 330, 331, 332, 333, 334, 335,
|
|
0, 327, 328, 520, 0, 337, 329, 330, 331, 332,
|
|
333, 334, 335, 0, 327, 328, 521, 0, 337, 329,
|
|
330, 331, 332, 333, 334, 335, 0, 327, 328, 522,
|
|
0, 337, 329, 330, 331, 332, 333, 334, 335, 0,
|
|
327, 328, 523, 0, 337, 329, 330, 331, 332, 333,
|
|
334, 335, 0, 327, 328, 524, 0, 337, 329, 330,
|
|
331, 332, 333, 334, 335, 0, 327, 328, 525, 0,
|
|
337, 329, 330, 331, 332, 333, 334, 335, 0, 327,
|
|
328, 526, 0, 337, 329, 330, 331, 332, 333, 334,
|
|
335, 0, 327, 328, 534, 0, 337, 329, 330, 331,
|
|
332, 333, 334, 335, 0, 327, 328, 535, 0, 337,
|
|
329, 330, 331, 332, 333, 334, 335, 0, 327, 328,
|
|
536, 0, 337, 329, 330, 331, 332, 333, 334, 335,
|
|
0, 327, 328, 538, 0, 337, 329, 330, 331, 332,
|
|
333, 334, 335, 0, 327, 328, 539, 0, 337, 329,
|
|
330, 331, 332, 333, 334, 335, 0, 327, 328, 540,
|
|
0, 337, 329, 330, 331, 332, 333, 334, 335, 0,
|
|
311, 312, 541, 0, 337, 313, 314, 315, 316, 317,
|
|
318, 319, 0, 0, 0, 527
|
|
};
|
|
|
|
#define yypact_value_is_default(Yystate) \
|
|
(!!((Yystate) == (-148)))
|
|
|
|
#define yytable_value_is_error(Yytable_value) \
|
|
YYID (0)
|
|
|
|
static const yytype_int16 yycheck[] =
|
|
{
|
|
7, 8, 4, 139, 6, 141, 142, 36, 37, 47,
|
|
68, 68, 68, 68, 68, 94, 94, 24, 69, 68,
|
|
27, 17, 115, 30, 31, 18, 33, 34, 175, 176,
|
|
177, 115, 39, 40, 94, 115, 115, 115, 45, 32,
|
|
115, 99, 91, 50, 51, 115, 53, 117, 99, 16,
|
|
17, 47, 15, 62, 63, 115, 94, 115, 115, 115,
|
|
115, 115, 94, 26, 100, 101, 94, 94, 115, 115,
|
|
115, 34, 68, 109, 110, 111, 69, 115, 41, 42,
|
|
43, 44, 45, 46, 115, 48, 68, 100, 101, 115,
|
|
115, 115, 85, 86, 123, 115, 109, 110, 111, 68,
|
|
60, 115, 94, 99, 117, 115, 68, 3, 4, 5,
|
|
6, 7, 8, 9, 10, 11, 12, 13, 14, 115,
|
|
115, 115, 115, 100, 101, 115, 89, 116, 105, 106,
|
|
107, 108, 109, 110, 111, 98, 116, 139, 116, 141,
|
|
142, 116, 116, 120, 116, 116, 116, 94, 116, 156,
|
|
157, 115, 159, 160, 161, 116, 115, 53, 165, 3,
|
|
4, 5, 6, 7, 8, 9, 10, 11, 12, 13,
|
|
14, 115, 68, 115, 203, 311, 312, 313, 314, 315,
|
|
316, 317, 318, 319, 320, 192, 115, 115, 115, 196,
|
|
197, 115, 115, 115, 115, 202, 115, 115, 94, 346,
|
|
207, 348, 349, 350, 211, 115, 102, 103, 104, 115,
|
|
106, 115, 115, 109, 115, 115, 115, 115, 225, 115,
|
|
227, 228, 118, 119, 68, 121, 100, 101, 115, 115,
|
|
237, 105, 106, 107, 108, 109, 110, 111, 100, 101,
|
|
115, 68, 115, 117, 115, 115, 120, 109, 110, 111,
|
|
94, 115, 115, 55, 115, 117, 100, 101, 102, 103,
|
|
104, 105, 106, 107, 108, 109, 110, 111, 115, 115,
|
|
115, 115, 115, 117, 118, 119, 115, 121, 115, 115,
|
|
115, 115, 115, 115, 115, 115, 115, 115, 52, 115,
|
|
115, 298, 299, 300, 301, 302, 303, 115, 305, 306,
|
|
307, 115, 115, 115, 115, 115, 115, 115, 115, 311,
|
|
312, 313, 314, 315, 316, 317, 318, 319, 320, 115,
|
|
327, 328, 329, 330, 331, 332, 333, 334, 335, 115,
|
|
337, 3, 4, 5, 6, 7, 8, 9, 10, 11,
|
|
12, 13, 14, 100, 101, 115, 115, 115, 105, 106,
|
|
107, 108, 109, 110, 111, 115, 363, 364, 365, 366,
|
|
117, 115, 100, 101, 115, 115, 373, 105, 106, 107,
|
|
108, 109, 110, 111, 115, 115, 115, 115, 115, 117,
|
|
115, 115, 115, 390, 115, 392, 393, 115, 115, -1,
|
|
115, 117, 115, 115, 401, 115, 68, 3, 4, 5,
|
|
6, 7, 8, 9, 10, 11, 12, 13, 14, 100,
|
|
101, 115, 115, 115, 105, 106, 107, 108, 109, 110,
|
|
111, 115, 94, 115, 115, 115, 117, 115, 100, 101,
|
|
102, 103, 104, 105, 106, 107, 108, 109, 110, 111,
|
|
-1, -1, -1, 115, -1, 117, 118, 119, -1, 121,
|
|
-1, 3, 4, 5, 6, 7, 8, 9, 10, 11,
|
|
12, 13, 68, 3, 4, 5, 6, 7, 8, 9,
|
|
10, 11, 12, 13, 14, 100, 101, -1, -1, -1,
|
|
105, 106, 107, 108, 109, 110, 111, -1, 94, -1,
|
|
115, -1, 117, -1, 100, 101, 102, 103, 104, 105,
|
|
106, 107, 108, 109, 110, 111, 58, -1, -1, 115,
|
|
-1, 117, 118, 119, 66, 121, -1, -1, -1, -1,
|
|
-1, -1, -1, -1, -1, -1, -1, -1, 68, 3,
|
|
4, 5, 6, 7, 8, 9, 10, 11, 12, 13,
|
|
14, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
|
-1, 103, 104, -1, 94, -1, -1, -1, -1, -1,
|
|
100, 101, 102, 103, 104, 105, 106, 107, 108, 109,
|
|
110, 111, -1, -1, -1, 115, -1, 117, 118, 119,
|
|
-1, 121, -1, -1, -1, -1, -1, -1, -1, -1,
|
|
-1, -1, -1, -1, 68, 3, 4, 5, 6, 7,
|
|
8, 9, 10, 11, 12, 13, 14, 100, 101, -1,
|
|
-1, -1, 105, 106, 107, 108, 109, 110, 111, -1,
|
|
94, -1, 115, -1, 117, -1, 100, 101, 102, 103,
|
|
104, 105, 106, 107, 108, 109, 110, 111, -1, -1,
|
|
-1, 115, -1, 117, 118, 119, -1, 121, -1, -1,
|
|
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
|
68, 3, 4, 5, 6, 7, 8, 9, 10, 11,
|
|
12, 13, 14, 100, 101, -1, -1, -1, 105, 106,
|
|
107, 108, 109, 110, 111, -1, 94, -1, 115, -1,
|
|
117, -1, 100, 101, 102, 103, 104, 105, 106, 107,
|
|
108, 109, 110, 111, -1, -1, -1, -1, -1, 117,
|
|
118, 119, 54, 121, -1, -1, -1, -1, -1, -1,
|
|
-1, -1, -1, 65, -1, -1, 68, -1, -1, -1,
|
|
-1, -1, -1, 75, 76, 3, 4, 5, 6, 7,
|
|
8, 9, 10, 11, 12, 13, 14, -1, 100, 101,
|
|
-1, -1, 94, 105, 106, 107, 108, 109, 110, 111,
|
|
102, 103, 104, 115, 106, 117, -1, 109, -1, -1,
|
|
-1, -1, -1, 115, -1, -1, 118, 119, -1, 121,
|
|
3, 4, 5, 6, 7, 8, 9, 10, 11, 12,
|
|
13, 14, -1, -1, -1, -1, -1, -1, -1, -1,
|
|
68, -1, 3, 4, 5, 6, 7, 8, 9, 10,
|
|
11, 12, 13, 14, 100, 101, -1, -1, -1, 105,
|
|
106, 107, 108, 109, 110, 111, 94, -1, -1, 115,
|
|
-1, 117, -1, -1, 102, 103, 104, -1, 106, -1,
|
|
-1, 109, -1, -1, -1, 68, -1, 115, -1, -1,
|
|
118, 119, -1, 121, 3, 4, 5, 6, 7, 8,
|
|
9, 10, 11, 12, 13, 14, -1, 68, -1, -1,
|
|
-1, 94, -1, -1, -1, -1, -1, -1, -1, 102,
|
|
103, 104, -1, 106, -1, -1, 109, -1, -1, -1,
|
|
-1, -1, 115, 94, -1, 118, 119, -1, 121, -1,
|
|
-1, 102, 103, 104, -1, 106, -1, -1, 109, -1,
|
|
-1, -1, -1, -1, 115, -1, -1, 118, 119, 68,
|
|
121, 3, 4, 5, 6, 7, 8, 9, 10, 11,
|
|
12, 13, 14, 100, 101, -1, -1, -1, 105, 106,
|
|
107, 108, 109, 110, 111, 94, -1, -1, 115, -1,
|
|
117, -1, -1, 102, 103, 104, -1, 106, -1, -1,
|
|
109, -1, -1, -1, -1, -1, 115, -1, -1, 118,
|
|
119, -1, 121, 3, 4, 5, 6, 7, 8, 9,
|
|
10, 11, 12, 13, 14, -1, 68, -1, -1, -1,
|
|
-1, -1, -1, 3, 4, 5, 6, 7, 8, 9,
|
|
10, 11, 12, 13, 14, -1, -1, -1, 100, 101,
|
|
-1, -1, 94, 105, 106, 107, 108, 109, 110, 111,
|
|
102, 103, 104, 115, 106, 117, -1, 109, -1, -1,
|
|
-1, -1, -1, 115, -1, -1, 118, 119, 68, 121,
|
|
-1, 3, 4, 5, 6, 7, 8, 9, 10, 11,
|
|
12, 13, 14, -1, -1, -1, -1, -1, 68, -1,
|
|
100, 101, -1, -1, 94, 105, 106, 107, 108, 109,
|
|
110, 111, 102, 103, 104, 115, 106, 117, -1, 109,
|
|
-1, -1, -1, -1, 94, 115, -1, -1, 118, 119,
|
|
-1, 121, 102, 103, 104, -1, 106, -1, -1, 109,
|
|
-1, -1, -1, -1, -1, 115, 68, -1, 118, 119,
|
|
-1, 121, 3, 4, 5, 6, 7, 8, 9, 10,
|
|
11, 12, 13, 14, -1, -1, -1, -1, 100, 101,
|
|
-1, -1, 94, 105, 106, 107, 108, 109, 110, 111,
|
|
102, 103, 104, 115, 106, 117, -1, 109, -1, -1,
|
|
-1, -1, -1, -1, -1, -1, 118, 119, -1, 121,
|
|
3, 4, 5, 6, 7, 8, 9, 10, 11, 12,
|
|
13, 14, -1, 100, 101, -1, -1, 68, 105, 106,
|
|
107, 108, 109, 110, 111, -1, -1, -1, 115, -1,
|
|
117, 100, 101, -1, -1, -1, 105, 106, 107, 108,
|
|
109, 110, 111, 94, -1, -1, 115, -1, 117, -1,
|
|
-1, 102, 103, 104, -1, 106, -1, -1, -1, -1,
|
|
-1, -1, -1, -1, 115, 68, -1, 118, 119, 100,
|
|
101, -1, -1, -1, 105, 106, 107, 108, 109, 110,
|
|
111, -1, -1, -1, 115, -1, 117, 100, 101, -1,
|
|
-1, 94, 105, 106, 107, 108, 109, 110, 111, 102,
|
|
103, 104, 0, 106, 117, -1, -1, -1, -1, -1,
|
|
-1, -1, -1, -1, -1, 118, 119, -1, -1, -1,
|
|
18, 19, 20, 21, -1, 23, 24, 25, 26, 27,
|
|
28, 29, 30, 31, 32, 33, -1, 35, 36, 37,
|
|
38, 39, -1, -1, -1, -1, -1, -1, -1, -1,
|
|
-1, 49, 50, 51, 52, -1, -1, 55, 56, 57,
|
|
-1, 59, -1, 61, -1, -1, 64, -1, 66, 67,
|
|
-1, -1, 70, 71, 72, 73, 74, -1, -1, 77,
|
|
78, 79, 80, 81, 82, 83, 84, -1, -1, 87,
|
|
88, -1, 90, -1, 92, 93, -1, 95, 96, 97,
|
|
-1, 18, 19, 20, 21, -1, 23, 24, 25, 26,
|
|
27, 28, 29, 30, 31, 32, 33, 115, 35, 36,
|
|
37, 38, 39, -1, -1, -1, -1, -1, -1, -1,
|
|
-1, -1, 49, 50, 51, 52, -1, -1, 55, 56,
|
|
57, -1, 59, -1, 61, -1, -1, 64, -1, 66,
|
|
67, -1, -1, 70, 71, 72, 73, 74, -1, -1,
|
|
77, 78, 79, 80, 81, 82, 83, 84, -1, -1,
|
|
87, 88, -1, 90, -1, 92, 93, -1, 95, 96,
|
|
97, -1, 18, 19, 20, 21, -1, 23, 24, 25,
|
|
26, 27, 28, 29, 30, 31, 32, 33, 115, 35,
|
|
36, 37, 38, 39, -1, -1, -1, -1, -1, -1,
|
|
-1, -1, -1, 49, 50, 51, 52, 100, 101, 55,
|
|
56, 57, 105, 106, 107, 108, 109, 110, 111, -1,
|
|
66, 67, 115, -1, 117, 71, 72, 73, 74, -1,
|
|
-1, 77, 78, 79, 80, 81, 82, 83, 84, -1,
|
|
-1, 87, 88, -1, 90, -1, -1, 100, 101, 95,
|
|
96, 97, 105, 106, 107, 108, 109, 110, 111, -1,
|
|
-1, -1, 115, -1, 117, 100, 101, -1, -1, 115,
|
|
105, 106, 107, 108, 109, 110, 111, -1, 100, 101,
|
|
115, -1, 117, 105, 106, 107, 108, 109, 110, 111,
|
|
-1, 100, 101, 115, -1, 117, 105, 106, 107, 108,
|
|
109, 110, 111, -1, 100, 101, 115, -1, 117, 105,
|
|
106, 107, 108, 109, 110, 111, -1, 100, 101, 115,
|
|
-1, 117, 105, 106, 107, 108, 109, 110, 111, -1,
|
|
100, 101, 115, -1, 117, 105, 106, 107, 108, 109,
|
|
110, 111, -1, 100, 101, 115, -1, 117, 105, 106,
|
|
107, 108, 109, 110, 111, -1, 100, 101, 115, -1,
|
|
117, 105, 106, 107, 108, 109, 110, 111, -1, 100,
|
|
101, 115, -1, 117, 105, 106, 107, 108, 109, 110,
|
|
111, -1, 100, 101, 115, -1, 117, 105, 106, 107,
|
|
108, 109, 110, 111, -1, 100, 101, 115, -1, 117,
|
|
105, 106, 107, 108, 109, 110, 111, -1, 100, 101,
|
|
115, -1, 117, 105, 106, 107, 108, 109, 110, 111,
|
|
-1, 100, 101, 115, -1, 117, 105, 106, 107, 108,
|
|
109, 110, 111, -1, 100, 101, 115, -1, 117, 105,
|
|
106, 107, 108, 109, 110, 111, -1, 100, 101, 115,
|
|
-1, 117, 105, 106, 107, 108, 109, 110, 111, -1,
|
|
100, 101, 115, -1, 117, 105, 106, 107, 108, 109,
|
|
110, 111, -1, -1, -1, 115
|
|
};
|
|
|
|
/* YYSTOS[STATE-NUM] -- The (internal number of the) accessing
|
|
symbol of state STATE-NUM. */
|
|
static const yytype_uint8 yystos[] =
|
|
{
|
|
0, 18, 19, 20, 21, 23, 24, 25, 26, 27,
|
|
28, 29, 30, 31, 32, 33, 35, 36, 37, 38,
|
|
39, 49, 50, 51, 52, 55, 56, 57, 59, 61,
|
|
64, 66, 67, 70, 71, 72, 73, 74, 77, 78,
|
|
79, 80, 81, 82, 83, 84, 87, 88, 90, 92,
|
|
93, 95, 96, 97, 115, 123, 124, 126, 128, 129,
|
|
130, 131, 132, 133, 134, 135, 136, 137, 138, 139,
|
|
140, 141, 142, 143, 144, 145, 146, 147, 148, 149,
|
|
150, 152, 153, 154, 155, 156, 157, 158, 159, 160,
|
|
161, 162, 163, 164, 165, 166, 167, 168, 169, 170,
|
|
171, 172, 173, 174, 175, 176, 115, 47, 94, 115,
|
|
115, 3, 4, 5, 6, 7, 8, 9, 10, 11,
|
|
12, 13, 58, 66, 103, 104, 127, 115, 3, 4,
|
|
5, 6, 7, 14, 68, 94, 102, 103, 104, 106,
|
|
115, 118, 119, 127, 177, 3, 4, 5, 6, 7,
|
|
14, 68, 94, 102, 103, 104, 106, 109, 115, 118,
|
|
119, 121, 127, 178, 68, 109, 115, 178, 94, 94,
|
|
94, 15, 26, 34, 41, 42, 43, 44, 45, 46,
|
|
48, 89, 98, 115, 115, 115, 115, 115, 115, 115,
|
|
115, 115, 53, 115, 178, 68, 68, 178, 60, 62,
|
|
63, 178, 54, 65, 75, 76, 115, 178, 69, 99,
|
|
178, 178, 16, 17, 125, 125, 125, 115, 178, 178,
|
|
115, 115, 94, 115, 18, 32, 69, 85, 86, 115,
|
|
115, 178, 17, 47, 68, 99, 115, 68, 91, 68,
|
|
115, 115, 178, 178, 18, 19, 20, 21, 23, 24,
|
|
25, 26, 27, 28, 29, 30, 31, 35, 36, 37,
|
|
38, 39, 49, 50, 51, 52, 55, 56, 57, 66,
|
|
67, 71, 72, 73, 74, 77, 78, 79, 80, 81,
|
|
82, 83, 84, 87, 88, 90, 95, 96, 97, 115,
|
|
126, 178, 0, 124, 115, 94, 94, 115, 116, 116,
|
|
116, 116, 116, 116, 125, 116, 116, 116, 177, 177,
|
|
177, 100, 101, 105, 106, 107, 108, 109, 110, 111,
|
|
117, 115, 178, 178, 178, 178, 178, 100, 101, 105,
|
|
106, 107, 108, 109, 110, 111, 115, 117, 178, 115,
|
|
115, 115, 115, 115, 115, 115, 151, 178, 151, 151,
|
|
151, 115, 115, 115, 68, 115, 68, 99, 115, 115,
|
|
178, 115, 68, 178, 106, 109, 178, 115, 94, 115,
|
|
115, 115, 115, 178, 125, 115, 116, 115, 178, 115,
|
|
115, 115, 178, 115, 115, 115, 115, 115, 115, 115,
|
|
178, 115, 178, 178, 115, 115, 115, 115, 115, 115,
|
|
178, 68, 115, 115, 115, 115, 115, 115, 115, 115,
|
|
115, 115, 115, 115, 115, 115, 115, 115, 115, 115,
|
|
115, 115, 115, 115, 115, 115, 115, 115, 115, 115,
|
|
115, 115, 115, 115, 115, 115, 115, 115, 115, 115,
|
|
115, 115, 115, 115, 115, 115, 115, 115, 115, 115,
|
|
115, 115, 115, 115, 178, 178, 178, 178, 178, 178,
|
|
115, 178, 178, 178, 120, 177, 177, 177, 177, 177,
|
|
177, 177, 177, 177, 177, 120, 178, 178, 178, 178,
|
|
178, 178, 178, 178, 178, 178, 115, 151, 151, 151,
|
|
151, 115, 68, 115, 68, 115, 115, 115, 178, 178,
|
|
178, 178, 115, 115, 178, 115, 94, 115, 115, 115,
|
|
178, 115, 178, 115, 178, 115, 115, 178, 115, 115,
|
|
115, 115, 115, 115, 115, 115, 115, 115, 115, 115,
|
|
115, 115, 115, 115, 115, 115, 115, 115, 115, 115,
|
|
115, 115
|
|
};
|
|
|
|
#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 (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 (YYLEX_PARAM)
|
|
#else
|
|
# define YYLEX yylex ()
|
|
#endif
|
|
|
|
/* Enable debugging if requested. */
|
|
#if YYDEBUG
|
|
|
|
# ifndef YYFPRINTF
|
|
# include <stdio.h> /* 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); \
|
|
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)
|
|
#else
|
|
static void
|
|
yy_symbol_value_print (yyoutput, yytype, yyvaluep)
|
|
FILE *yyoutput;
|
|
int yytype;
|
|
YYSTYPE const * const yyvaluep;
|
|
#endif
|
|
{
|
|
FILE *yyo = yyoutput;
|
|
YYUSE (yyo);
|
|
if (!yyvaluep)
|
|
return;
|
|
# 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)
|
|
#else
|
|
static void
|
|
yy_symbol_print (yyoutput, yytype, yyvaluep)
|
|
FILE *yyoutput;
|
|
int yytype;
|
|
YYSTYPE const * const yyvaluep;
|
|
#endif
|
|
{
|
|
if (yytype < YYNTOKENS)
|
|
YYFPRINTF (yyoutput, "token %s (", yytname[yytype]);
|
|
else
|
|
YYFPRINTF (yyoutput, "nterm %s (", yytname[yytype]);
|
|
|
|
yy_symbol_value_print (yyoutput, yytype, yyvaluep);
|
|
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)
|
|
#else
|
|
static void
|
|
yy_reduce_print (yyvsp, yyrule)
|
|
YYSTYPE *yyvsp;
|
|
int yyrule;
|
|
#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)])
|
|
);
|
|
YYFPRINTF (stderr, "\n");
|
|
}
|
|
}
|
|
|
|
# define YY_REDUCE_PRINT(Rule) \
|
|
do { \
|
|
if (yydebug) \
|
|
yy_reduce_print (yyvsp, Rule); \
|
|
} 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
|
|
<http://lists.gnu.org/archive/html/bison-patches/2009-12/msg00024.html>
|
|
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)
|
|
#else
|
|
static void
|
|
yydestruct (yymsg, yytype, yyvaluep)
|
|
const char *yymsg;
|
|
int yytype;
|
|
YYSTYPE *yyvaluep;
|
|
#endif
|
|
{
|
|
YYUSE (yyvaluep);
|
|
|
|
if (!yymsg)
|
|
yymsg = "Deleting";
|
|
YY_SYMBOL_PRINT (yymsg, yytype, yyvaluep, yylocationp);
|
|
|
|
YYUSE (yytype);
|
|
}
|
|
|
|
|
|
|
|
|
|
/* The lookahead symbol. */
|
|
int yychar;
|
|
|
|
|
|
#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;
|
|
|
|
|
|
/*----------.
|
|
| 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 (void)
|
|
#else
|
|
int
|
|
yyparse ()
|
|
|
|
#endif
|
|
#endif
|
|
{
|
|
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 53:
|
|
/* Line 1787 of yacc.c */
|
|
#line 194 "parser.y"
|
|
{
|
|
}
|
|
break;
|
|
|
|
case 55:
|
|
/* Line 1787 of yacc.c */
|
|
#line 201 "parser.y"
|
|
{ (yyval.bval)=(yyvsp[(1) - (1)].bval); }
|
|
break;
|
|
|
|
case 57:
|
|
/* Line 1787 of yacc.c */
|
|
#line 207 "parser.y"
|
|
{ (yyval.sval)=(yyvsp[(1) - (1)].sval); }
|
|
break;
|
|
|
|
case 63:
|
|
/* Line 1787 of yacc.c */
|
|
#line 217 "parser.y"
|
|
{ (yyval.uval)=(yyvsp[(1) - (1)].uval); }
|
|
break;
|
|
|
|
case 64:
|
|
/* Line 1787 of yacc.c */
|
|
#line 222 "parser.y"
|
|
{
|
|
bx_dbg_timebp_command(0, (yyvsp[(2) - (3)].uval));
|
|
free((yyvsp[(1) - (3)].sval));
|
|
}
|
|
break;
|
|
|
|
case 65:
|
|
/* Line 1787 of yacc.c */
|
|
#line 227 "parser.y"
|
|
{
|
|
bx_dbg_timebp_command(1, (yyvsp[(2) - (3)].uval));
|
|
free((yyvsp[(1) - (3)].sval));
|
|
}
|
|
break;
|
|
|
|
case 66:
|
|
/* Line 1787 of yacc.c */
|
|
#line 235 "parser.y"
|
|
{
|
|
bx_dbg_modebp_command();
|
|
free((yyvsp[(1) - (2)].sval));
|
|
}
|
|
break;
|
|
|
|
case 67:
|
|
/* Line 1787 of yacc.c */
|
|
#line 243 "parser.y"
|
|
{
|
|
bx_dbg_vmexitbp_command();
|
|
free((yyvsp[(1) - (2)].sval));
|
|
}
|
|
break;
|
|
|
|
case 68:
|
|
/* Line 1787 of yacc.c */
|
|
#line 251 "parser.y"
|
|
{
|
|
bx_dbg_show_command((yyvsp[(2) - (3)].sval));
|
|
free((yyvsp[(1) - (3)].sval)); free((yyvsp[(2) - (3)].sval));
|
|
}
|
|
break;
|
|
|
|
case 69:
|
|
/* Line 1787 of yacc.c */
|
|
#line 256 "parser.y"
|
|
{
|
|
bx_dbg_show_command("all");
|
|
free((yyvsp[(1) - (3)].sval));
|
|
}
|
|
break;
|
|
|
|
case 70:
|
|
/* Line 1787 of yacc.c */
|
|
#line 261 "parser.y"
|
|
{
|
|
bx_dbg_show_command("off");
|
|
free((yyvsp[(1) - (3)].sval));
|
|
}
|
|
break;
|
|
|
|
case 71:
|
|
/* Line 1787 of yacc.c */
|
|
#line 266 "parser.y"
|
|
{
|
|
bx_dbg_show_param_command((yyvsp[(2) - (3)].sval));
|
|
free((yyvsp[(1) - (3)].sval)); free((yyvsp[(2) - (3)].sval));
|
|
}
|
|
break;
|
|
|
|
case 72:
|
|
/* Line 1787 of yacc.c */
|
|
#line 271 "parser.y"
|
|
{
|
|
bx_dbg_show_command(0);
|
|
free((yyvsp[(1) - (2)].sval));
|
|
}
|
|
break;
|
|
|
|
case 73:
|
|
/* Line 1787 of yacc.c */
|
|
#line 279 "parser.y"
|
|
{
|
|
bx_dbg_xlate_address((yyvsp[(2) - (3)].uval));
|
|
free((yyvsp[(1) - (3)].sval));
|
|
}
|
|
break;
|
|
|
|
case 74:
|
|
/* Line 1787 of yacc.c */
|
|
#line 287 "parser.y"
|
|
{
|
|
bx_dbg_tlb_lookup((yyvsp[(2) - (3)].uval));
|
|
free((yyvsp[(1) - (3)].sval));
|
|
}
|
|
break;
|
|
|
|
case 75:
|
|
/* Line 1787 of yacc.c */
|
|
#line 295 "parser.y"
|
|
{
|
|
bx_dbg_ptime_command();
|
|
free((yyvsp[(1) - (2)].sval));
|
|
}
|
|
break;
|
|
|
|
case 76:
|
|
/* Line 1787 of yacc.c */
|
|
#line 303 "parser.y"
|
|
{
|
|
bx_dbg_trace_command((yyvsp[(2) - (3)].bval));
|
|
free((yyvsp[(1) - (3)].sval));
|
|
}
|
|
break;
|
|
|
|
case 77:
|
|
/* Line 1787 of yacc.c */
|
|
#line 311 "parser.y"
|
|
{
|
|
bx_dbg_trace_reg_command((yyvsp[(2) - (3)].bval));
|
|
free((yyvsp[(1) - (3)].sval));
|
|
}
|
|
break;
|
|
|
|
case 78:
|
|
/* Line 1787 of yacc.c */
|
|
#line 319 "parser.y"
|
|
{
|
|
bx_dbg_trace_mem_command((yyvsp[(2) - (3)].bval));
|
|
free((yyvsp[(1) - (3)].sval));
|
|
}
|
|
break;
|
|
|
|
case 79:
|
|
/* Line 1787 of yacc.c */
|
|
#line 327 "parser.y"
|
|
{
|
|
bx_dbg_print_stack_command(16);
|
|
free((yyvsp[(1) - (2)].sval));
|
|
}
|
|
break;
|
|
|
|
case 80:
|
|
/* Line 1787 of yacc.c */
|
|
#line 332 "parser.y"
|
|
{
|
|
bx_dbg_print_stack_command((yyvsp[(2) - (3)].uval));
|
|
free((yyvsp[(1) - (3)].sval));
|
|
}
|
|
break;
|
|
|
|
case 81:
|
|
/* Line 1787 of yacc.c */
|
|
#line 340 "parser.y"
|
|
{
|
|
bx_dbg_watchpoint_continue(0);
|
|
free((yyvsp[(1) - (3)].sval)); free((yyvsp[(2) - (3)].sval));
|
|
}
|
|
break;
|
|
|
|
case 82:
|
|
/* Line 1787 of yacc.c */
|
|
#line 345 "parser.y"
|
|
{
|
|
bx_dbg_watchpoint_continue(1);
|
|
free((yyvsp[(1) - (3)].sval)); free((yyvsp[(2) - (3)].sval));
|
|
}
|
|
break;
|
|
|
|
case 83:
|
|
/* Line 1787 of yacc.c */
|
|
#line 350 "parser.y"
|
|
{
|
|
bx_dbg_print_watchpoints();
|
|
free((yyvsp[(1) - (2)].sval));
|
|
}
|
|
break;
|
|
|
|
case 84:
|
|
/* Line 1787 of yacc.c */
|
|
#line 355 "parser.y"
|
|
{
|
|
bx_dbg_watch(0, (yyvsp[(3) - (4)].uval), 1); /* BX_READ */
|
|
free((yyvsp[(1) - (4)].sval)); free((yyvsp[(2) - (4)].sval));
|
|
}
|
|
break;
|
|
|
|
case 85:
|
|
/* Line 1787 of yacc.c */
|
|
#line 360 "parser.y"
|
|
{
|
|
bx_dbg_watch(0, (yyvsp[(3) - (4)].uval), 1); /* BX_READ */
|
|
free((yyvsp[(1) - (4)].sval)); free((yyvsp[(2) - (4)].sval));
|
|
}
|
|
break;
|
|
|
|
case 86:
|
|
/* Line 1787 of yacc.c */
|
|
#line 365 "parser.y"
|
|
{
|
|
bx_dbg_watch(1, (yyvsp[(3) - (4)].uval), 1); /* BX_WRITE */
|
|
free((yyvsp[(1) - (4)].sval)); free((yyvsp[(2) - (4)].sval));
|
|
}
|
|
break;
|
|
|
|
case 87:
|
|
/* Line 1787 of yacc.c */
|
|
#line 370 "parser.y"
|
|
{
|
|
bx_dbg_watch(0, (yyvsp[(3) - (5)].uval), (yyvsp[(4) - (5)].uval)); /* BX_READ */
|
|
free((yyvsp[(1) - (5)].sval)); free((yyvsp[(2) - (5)].sval));
|
|
}
|
|
break;
|
|
|
|
case 88:
|
|
/* Line 1787 of yacc.c */
|
|
#line 375 "parser.y"
|
|
{
|
|
bx_dbg_watch(0, (yyvsp[(3) - (5)].uval), (yyvsp[(4) - (5)].uval)); /* BX_READ */
|
|
free((yyvsp[(1) - (5)].sval)); free((yyvsp[(2) - (5)].sval));
|
|
}
|
|
break;
|
|
|
|
case 89:
|
|
/* Line 1787 of yacc.c */
|
|
#line 380 "parser.y"
|
|
{
|
|
bx_dbg_watch(1, (yyvsp[(3) - (5)].uval), (yyvsp[(4) - (5)].uval)); /* BX_WRITE */
|
|
free((yyvsp[(1) - (5)].sval)); free((yyvsp[(2) - (5)].sval));
|
|
}
|
|
break;
|
|
|
|
case 90:
|
|
/* Line 1787 of yacc.c */
|
|
#line 385 "parser.y"
|
|
{
|
|
bx_dbg_unwatch_all();
|
|
free((yyvsp[(1) - (2)].sval));
|
|
}
|
|
break;
|
|
|
|
case 91:
|
|
/* Line 1787 of yacc.c */
|
|
#line 390 "parser.y"
|
|
{
|
|
bx_dbg_unwatch((yyvsp[(2) - (3)].uval));
|
|
free((yyvsp[(1) - (3)].sval));
|
|
}
|
|
break;
|
|
|
|
case 92:
|
|
/* Line 1787 of yacc.c */
|
|
#line 398 "parser.y"
|
|
{
|
|
bx_dbg_symbol_command((yyvsp[(2) - (3)].sval), 0, 0);
|
|
free((yyvsp[(1) - (3)].sval)); free((yyvsp[(2) - (3)].sval));
|
|
}
|
|
break;
|
|
|
|
case 93:
|
|
/* Line 1787 of yacc.c */
|
|
#line 403 "parser.y"
|
|
{
|
|
bx_dbg_symbol_command((yyvsp[(2) - (4)].sval), 0, (yyvsp[(3) - (4)].uval));
|
|
free((yyvsp[(1) - (4)].sval)); free((yyvsp[(2) - (4)].sval));
|
|
}
|
|
break;
|
|
|
|
case 94:
|
|
/* Line 1787 of yacc.c */
|
|
#line 408 "parser.y"
|
|
{
|
|
bx_dbg_symbol_command((yyvsp[(3) - (4)].sval), 1, 0);
|
|
free((yyvsp[(1) - (4)].sval)); free((yyvsp[(2) - (4)].sval)); free((yyvsp[(3) - (4)].sval));
|
|
}
|
|
break;
|
|
|
|
case 95:
|
|
/* Line 1787 of yacc.c */
|
|
#line 413 "parser.y"
|
|
{
|
|
bx_dbg_symbol_command((yyvsp[(3) - (5)].sval), 1, (yyvsp[(4) - (5)].uval));
|
|
free((yyvsp[(1) - (5)].sval)); free((yyvsp[(2) - (5)].sval)); free((yyvsp[(3) - (5)].sval));
|
|
}
|
|
break;
|
|
|
|
case 96:
|
|
/* Line 1787 of yacc.c */
|
|
#line 421 "parser.y"
|
|
{
|
|
bx_dbg_where_command();
|
|
free((yyvsp[(1) - (2)].sval));
|
|
}
|
|
break;
|
|
|
|
case 97:
|
|
/* Line 1787 of yacc.c */
|
|
#line 429 "parser.y"
|
|
{
|
|
bx_dbg_print_string_command((yyvsp[(2) - (3)].uval));
|
|
free((yyvsp[(1) - (3)].sval));
|
|
}
|
|
break;
|
|
|
|
case 98:
|
|
/* Line 1787 of yacc.c */
|
|
#line 437 "parser.y"
|
|
{
|
|
bx_dbg_continue_command();
|
|
free((yyvsp[(1) - (2)].sval));
|
|
}
|
|
break;
|
|
|
|
case 99:
|
|
/* Line 1787 of yacc.c */
|
|
#line 445 "parser.y"
|
|
{
|
|
bx_dbg_stepN_command(dbg_cpu, 1);
|
|
free((yyvsp[(1) - (2)].sval));
|
|
}
|
|
break;
|
|
|
|
case 100:
|
|
/* Line 1787 of yacc.c */
|
|
#line 450 "parser.y"
|
|
{
|
|
bx_dbg_stepN_command(dbg_cpu, (yyvsp[(2) - (3)].uval));
|
|
free((yyvsp[(1) - (3)].sval));
|
|
}
|
|
break;
|
|
|
|
case 101:
|
|
/* Line 1787 of yacc.c */
|
|
#line 455 "parser.y"
|
|
{
|
|
bx_dbg_stepN_command(-1, (yyvsp[(3) - (4)].uval));
|
|
free((yyvsp[(1) - (4)].sval)); free((yyvsp[(2) - (4)].sval));
|
|
}
|
|
break;
|
|
|
|
case 102:
|
|
/* Line 1787 of yacc.c */
|
|
#line 460 "parser.y"
|
|
{
|
|
bx_dbg_stepN_command((yyvsp[(2) - (4)].uval), (yyvsp[(3) - (4)].uval));
|
|
free((yyvsp[(1) - (4)].sval));
|
|
}
|
|
break;
|
|
|
|
case 103:
|
|
/* Line 1787 of yacc.c */
|
|
#line 468 "parser.y"
|
|
{
|
|
bx_dbg_step_over_command();
|
|
free((yyvsp[(1) - (2)].sval));
|
|
}
|
|
break;
|
|
|
|
case 104:
|
|
/* Line 1787 of yacc.c */
|
|
#line 476 "parser.y"
|
|
{
|
|
bx_dbg_set_auto_disassemble((yyvsp[(3) - (4)].bval));
|
|
free((yyvsp[(1) - (4)].sval)); free((yyvsp[(2) - (4)].sval));
|
|
}
|
|
break;
|
|
|
|
case 105:
|
|
/* Line 1787 of yacc.c */
|
|
#line 481 "parser.y"
|
|
{
|
|
bx_dbg_set_symbol_command((yyvsp[(2) - (5)].sval), (yyvsp[(4) - (5)].uval));
|
|
free((yyvsp[(1) - (5)].sval)); free((yyvsp[(2) - (5)].sval));
|
|
}
|
|
break;
|
|
|
|
case 106:
|
|
/* Line 1787 of yacc.c */
|
|
#line 486 "parser.y"
|
|
{
|
|
bx_dbg_set_reg8l_value((yyvsp[(2) - (5)].uval), (yyvsp[(4) - (5)].uval));
|
|
}
|
|
break;
|
|
|
|
case 107:
|
|
/* Line 1787 of yacc.c */
|
|
#line 490 "parser.y"
|
|
{
|
|
bx_dbg_set_reg8h_value((yyvsp[(2) - (5)].uval), (yyvsp[(4) - (5)].uval));
|
|
}
|
|
break;
|
|
|
|
case 108:
|
|
/* Line 1787 of yacc.c */
|
|
#line 494 "parser.y"
|
|
{
|
|
bx_dbg_set_reg16_value((yyvsp[(2) - (5)].uval), (yyvsp[(4) - (5)].uval));
|
|
}
|
|
break;
|
|
|
|
case 109:
|
|
/* Line 1787 of yacc.c */
|
|
#line 498 "parser.y"
|
|
{
|
|
bx_dbg_set_reg32_value((yyvsp[(2) - (5)].uval), (yyvsp[(4) - (5)].uval));
|
|
}
|
|
break;
|
|
|
|
case 110:
|
|
/* Line 1787 of yacc.c */
|
|
#line 502 "parser.y"
|
|
{
|
|
bx_dbg_set_reg64_value((yyvsp[(2) - (5)].uval), (yyvsp[(4) - (5)].uval));
|
|
}
|
|
break;
|
|
|
|
case 111:
|
|
/* Line 1787 of yacc.c */
|
|
#line 506 "parser.y"
|
|
{
|
|
bx_dbg_set_rip_value((yyvsp[(4) - (5)].uval));
|
|
}
|
|
break;
|
|
|
|
case 112:
|
|
/* Line 1787 of yacc.c */
|
|
#line 510 "parser.y"
|
|
{
|
|
bx_dbg_set_rip_value((yyvsp[(4) - (5)].uval));
|
|
}
|
|
break;
|
|
|
|
case 113:
|
|
/* Line 1787 of yacc.c */
|
|
#line 514 "parser.y"
|
|
{
|
|
bx_dbg_load_segreg((yyvsp[(2) - (5)].uval), (yyvsp[(4) - (5)].uval));
|
|
}
|
|
break;
|
|
|
|
case 114:
|
|
/* Line 1787 of yacc.c */
|
|
#line 521 "parser.y"
|
|
{
|
|
bx_dbg_vbreakpoint_command(bkAtIP, 0, 0);
|
|
free((yyvsp[(1) - (2)].sval));
|
|
}
|
|
break;
|
|
|
|
case 115:
|
|
/* Line 1787 of yacc.c */
|
|
#line 526 "parser.y"
|
|
{
|
|
bx_dbg_vbreakpoint_command(bkRegular, (yyvsp[(2) - (5)].uval), (yyvsp[(4) - (5)].uval));
|
|
free((yyvsp[(1) - (5)].sval));
|
|
}
|
|
break;
|
|
|
|
case 116:
|
|
/* Line 1787 of yacc.c */
|
|
#line 531 "parser.y"
|
|
{
|
|
bx_dbg_lbreakpoint_command(bkAtIP, 0);
|
|
free((yyvsp[(1) - (2)].sval));
|
|
}
|
|
break;
|
|
|
|
case 117:
|
|
/* Line 1787 of yacc.c */
|
|
#line 536 "parser.y"
|
|
{
|
|
bx_dbg_lbreakpoint_command(bkRegular, (yyvsp[(2) - (3)].uval));
|
|
free((yyvsp[(1) - (3)].sval));
|
|
}
|
|
break;
|
|
|
|
case 118:
|
|
/* Line 1787 of yacc.c */
|
|
#line 541 "parser.y"
|
|
{
|
|
bx_dbg_lbreakpoint_symbol_command((yyvsp[(2) - (3)].sval));
|
|
free((yyvsp[(1) - (3)].sval));free((yyvsp[(2) - (3)].sval));
|
|
}
|
|
break;
|
|
|
|
case 119:
|
|
/* Line 1787 of yacc.c */
|
|
#line 546 "parser.y"
|
|
{
|
|
bx_dbg_pbreakpoint_command(bkAtIP, 0);
|
|
free((yyvsp[(1) - (2)].sval));
|
|
}
|
|
break;
|
|
|
|
case 120:
|
|
/* Line 1787 of yacc.c */
|
|
#line 551 "parser.y"
|
|
{
|
|
bx_dbg_pbreakpoint_command(bkRegular, (yyvsp[(2) - (3)].uval));
|
|
free((yyvsp[(1) - (3)].sval));
|
|
}
|
|
break;
|
|
|
|
case 121:
|
|
/* Line 1787 of yacc.c */
|
|
#line 556 "parser.y"
|
|
{
|
|
bx_dbg_pbreakpoint_command(bkRegular, (yyvsp[(3) - (4)].uval));
|
|
free((yyvsp[(1) - (4)].sval));
|
|
}
|
|
break;
|
|
|
|
case 122:
|
|
/* Line 1787 of yacc.c */
|
|
#line 564 "parser.y"
|
|
{
|
|
bx_dbg_info_bpoints_command();
|
|
free((yyvsp[(1) - (2)].sval));
|
|
}
|
|
break;
|
|
|
|
case 123:
|
|
/* Line 1787 of yacc.c */
|
|
#line 572 "parser.y"
|
|
{
|
|
bx_dbg_info_symbols_command(0);
|
|
free((yyvsp[(1) - (2)].sval));
|
|
}
|
|
break;
|
|
|
|
case 124:
|
|
/* Line 1787 of yacc.c */
|
|
#line 577 "parser.y"
|
|
{
|
|
bx_dbg_info_symbols_command((yyvsp[(2) - (3)].sval));
|
|
free((yyvsp[(1) - (3)].sval));free((yyvsp[(2) - (3)].sval));
|
|
}
|
|
break;
|
|
|
|
case 125:
|
|
/* Line 1787 of yacc.c */
|
|
#line 585 "parser.y"
|
|
{
|
|
bx_dbg_info_bpoints_command();
|
|
free((yyvsp[(1) - (3)].sval)); free((yyvsp[(2) - (3)].sval));
|
|
}
|
|
break;
|
|
|
|
case 126:
|
|
/* Line 1787 of yacc.c */
|
|
#line 590 "parser.y"
|
|
{
|
|
bx_dbg_info_registers_command(-1);
|
|
free((yyvsp[(1) - (3)].sval)); free((yyvsp[(2) - (3)].sval));
|
|
}
|
|
break;
|
|
|
|
case 127:
|
|
/* Line 1787 of yacc.c */
|
|
#line 595 "parser.y"
|
|
{
|
|
bx_dbg_info_idt_command((yyvsp[(3) - (5)].uval), (yyvsp[(4) - (5)].uval));
|
|
free((yyvsp[(1) - (5)].sval)); free((yyvsp[(2) - (5)].sval));
|
|
}
|
|
break;
|
|
|
|
case 128:
|
|
/* Line 1787 of yacc.c */
|
|
#line 600 "parser.y"
|
|
{
|
|
bx_dbg_info_ivt_command((yyvsp[(3) - (5)].uval), (yyvsp[(4) - (5)].uval));
|
|
free((yyvsp[(1) - (5)].sval)); free((yyvsp[(2) - (5)].sval));
|
|
}
|
|
break;
|
|
|
|
case 129:
|
|
/* Line 1787 of yacc.c */
|
|
#line 605 "parser.y"
|
|
{
|
|
bx_dbg_info_gdt_command((yyvsp[(3) - (5)].uval), (yyvsp[(4) - (5)].uval));
|
|
free((yyvsp[(1) - (5)].sval)); free((yyvsp[(2) - (5)].sval));
|
|
}
|
|
break;
|
|
|
|
case 130:
|
|
/* Line 1787 of yacc.c */
|
|
#line 610 "parser.y"
|
|
{
|
|
bx_dbg_info_ldt_command((yyvsp[(3) - (5)].uval), (yyvsp[(4) - (5)].uval));
|
|
free((yyvsp[(1) - (5)].sval)); free((yyvsp[(2) - (5)].sval));
|
|
}
|
|
break;
|
|
|
|
case 131:
|
|
/* Line 1787 of yacc.c */
|
|
#line 615 "parser.y"
|
|
{
|
|
bx_dbg_dump_table();
|
|
free((yyvsp[(1) - (3)].sval)); free((yyvsp[(2) - (3)].sval));
|
|
}
|
|
break;
|
|
|
|
case 132:
|
|
/* Line 1787 of yacc.c */
|
|
#line 620 "parser.y"
|
|
{
|
|
bx_dbg_info_tss_command();
|
|
free((yyvsp[(1) - (3)].sval)); free((yyvsp[(2) - (3)].sval));
|
|
}
|
|
break;
|
|
|
|
case 133:
|
|
/* Line 1787 of yacc.c */
|
|
#line 625 "parser.y"
|
|
{
|
|
bx_dbg_info_flags();
|
|
free((yyvsp[(1) - (3)].sval));
|
|
}
|
|
break;
|
|
|
|
case 134:
|
|
/* Line 1787 of yacc.c */
|
|
#line 630 "parser.y"
|
|
{
|
|
bx_dbg_info_linux_command();
|
|
free((yyvsp[(1) - (3)].sval)); free((yyvsp[(2) - (3)].sval));
|
|
}
|
|
break;
|
|
|
|
case 135:
|
|
/* Line 1787 of yacc.c */
|
|
#line 635 "parser.y"
|
|
{
|
|
bx_dbg_info_symbols_command(0);
|
|
free((yyvsp[(1) - (3)].sval)); free((yyvsp[(2) - (3)].sval));
|
|
}
|
|
break;
|
|
|
|
case 136:
|
|
/* Line 1787 of yacc.c */
|
|
#line 640 "parser.y"
|
|
{
|
|
bx_dbg_info_symbols_command((yyvsp[(3) - (4)].sval));
|
|
free((yyvsp[(1) - (4)].sval)); free((yyvsp[(2) - (4)].sval)); free((yyvsp[(3) - (4)].sval));
|
|
}
|
|
break;
|
|
|
|
case 137:
|
|
/* Line 1787 of yacc.c */
|
|
#line 645 "parser.y"
|
|
{
|
|
bx_dbg_info_device("", "");
|
|
free((yyvsp[(1) - (3)].sval)); free((yyvsp[(2) - (3)].sval));
|
|
}
|
|
break;
|
|
|
|
case 138:
|
|
/* Line 1787 of yacc.c */
|
|
#line 650 "parser.y"
|
|
{
|
|
bx_dbg_info_device((yyvsp[(3) - (4)].sval), "");
|
|
free((yyvsp[(1) - (4)].sval)); free((yyvsp[(2) - (4)].sval));
|
|
}
|
|
break;
|
|
|
|
case 139:
|
|
/* Line 1787 of yacc.c */
|
|
#line 655 "parser.y"
|
|
{
|
|
bx_dbg_info_device((yyvsp[(3) - (5)].sval), (yyvsp[(4) - (5)].sval));
|
|
free((yyvsp[(1) - (5)].sval)); free((yyvsp[(2) - (5)].sval));
|
|
}
|
|
break;
|
|
|
|
case 140:
|
|
/* Line 1787 of yacc.c */
|
|
#line 660 "parser.y"
|
|
{
|
|
bx_dbg_info_device((yyvsp[(3) - (4)].sval), "");
|
|
free((yyvsp[(1) - (4)].sval)); free((yyvsp[(2) - (4)].sval));
|
|
}
|
|
break;
|
|
|
|
case 141:
|
|
/* Line 1787 of yacc.c */
|
|
#line 665 "parser.y"
|
|
{
|
|
bx_dbg_info_device((yyvsp[(3) - (5)].sval), (yyvsp[(4) - (5)].sval));
|
|
free((yyvsp[(1) - (5)].sval)); free((yyvsp[(2) - (5)].sval));
|
|
}
|
|
break;
|
|
|
|
case 142:
|
|
/* Line 1787 of yacc.c */
|
|
#line 672 "parser.y"
|
|
{ (yyval.uval) = EMPTY_ARG; }
|
|
break;
|
|
|
|
case 144:
|
|
/* Line 1787 of yacc.c */
|
|
#line 677 "parser.y"
|
|
{
|
|
bx_dbg_info_registers_command(BX_INFO_GENERAL_PURPOSE_REGS);
|
|
free((yyvsp[(1) - (2)].sval));
|
|
}
|
|
break;
|
|
|
|
case 145:
|
|
/* Line 1787 of yacc.c */
|
|
#line 685 "parser.y"
|
|
{
|
|
bx_dbg_info_registers_command(BX_INFO_FPU_REGS);
|
|
free((yyvsp[(1) - (2)].sval));
|
|
}
|
|
break;
|
|
|
|
case 146:
|
|
/* Line 1787 of yacc.c */
|
|
#line 693 "parser.y"
|
|
{
|
|
bx_dbg_info_registers_command(BX_INFO_MMX_REGS);
|
|
free((yyvsp[(1) - (2)].sval));
|
|
}
|
|
break;
|
|
|
|
case 147:
|
|
/* Line 1787 of yacc.c */
|
|
#line 701 "parser.y"
|
|
{
|
|
bx_dbg_info_registers_command(BX_INFO_SSE_REGS);
|
|
free((yyvsp[(1) - (2)].sval));
|
|
}
|
|
break;
|
|
|
|
case 148:
|
|
/* Line 1787 of yacc.c */
|
|
#line 709 "parser.y"
|
|
{
|
|
bx_dbg_info_registers_command(BX_INFO_YMM_REGS);
|
|
free((yyvsp[(1) - (2)].sval));
|
|
}
|
|
break;
|
|
|
|
case 149:
|
|
/* Line 1787 of yacc.c */
|
|
#line 717 "parser.y"
|
|
{
|
|
bx_dbg_info_registers_command(BX_INFO_ZMM_REGS);
|
|
free((yyvsp[(1) - (2)].sval));
|
|
}
|
|
break;
|
|
|
|
case 150:
|
|
/* Line 1787 of yacc.c */
|
|
#line 725 "parser.y"
|
|
{
|
|
bx_dbg_info_segment_regs_command();
|
|
free((yyvsp[(1) - (2)].sval));
|
|
}
|
|
break;
|
|
|
|
case 151:
|
|
/* Line 1787 of yacc.c */
|
|
#line 733 "parser.y"
|
|
{
|
|
bx_dbg_info_control_regs_command();
|
|
free((yyvsp[(1) - (2)].sval));
|
|
}
|
|
break;
|
|
|
|
case 152:
|
|
/* Line 1787 of yacc.c */
|
|
#line 741 "parser.y"
|
|
{
|
|
bx_dbg_info_debug_regs_command();
|
|
free((yyvsp[(1) - (2)].sval));
|
|
}
|
|
break;
|
|
|
|
case 153:
|
|
/* Line 1787 of yacc.c */
|
|
#line 749 "parser.y"
|
|
{
|
|
bx_dbg_del_breakpoint_command((yyvsp[(2) - (3)].uval));
|
|
free((yyvsp[(1) - (3)].sval));
|
|
}
|
|
break;
|
|
|
|
case 154:
|
|
/* Line 1787 of yacc.c */
|
|
#line 757 "parser.y"
|
|
{
|
|
bx_dbg_en_dis_breakpoint_command((yyvsp[(2) - (3)].uval), 1);
|
|
free((yyvsp[(1) - (3)].sval));
|
|
}
|
|
break;
|
|
|
|
case 155:
|
|
/* Line 1787 of yacc.c */
|
|
#line 764 "parser.y"
|
|
{
|
|
bx_dbg_en_dis_breakpoint_command((yyvsp[(2) - (3)].uval), 0);
|
|
free((yyvsp[(1) - (3)].sval));
|
|
}
|
|
break;
|
|
|
|
case 156:
|
|
/* Line 1787 of yacc.c */
|
|
#line 772 "parser.y"
|
|
{
|
|
bx_dbg_quit_command();
|
|
free((yyvsp[(1) - (2)].sval));
|
|
}
|
|
break;
|
|
|
|
case 157:
|
|
/* Line 1787 of yacc.c */
|
|
#line 780 "parser.y"
|
|
{
|
|
bx_dbg_examine_command((yyvsp[(1) - (4)].sval), (yyvsp[(2) - (4)].sval),1, (yyvsp[(3) - (4)].uval), 1);
|
|
free((yyvsp[(1) - (4)].sval)); free((yyvsp[(2) - (4)].sval));
|
|
}
|
|
break;
|
|
|
|
case 158:
|
|
/* Line 1787 of yacc.c */
|
|
#line 785 "parser.y"
|
|
{
|
|
bx_dbg_examine_command((yyvsp[(1) - (3)].sval), (yyvsp[(2) - (3)].sval),1, 0, 0);
|
|
free((yyvsp[(1) - (3)].sval)); free((yyvsp[(2) - (3)].sval));
|
|
}
|
|
break;
|
|
|
|
case 159:
|
|
/* Line 1787 of yacc.c */
|
|
#line 790 "parser.y"
|
|
{
|
|
bx_dbg_examine_command((yyvsp[(1) - (3)].sval), NULL,0, (yyvsp[(2) - (3)].uval), 1);
|
|
free((yyvsp[(1) - (3)].sval));
|
|
}
|
|
break;
|
|
|
|
case 160:
|
|
/* Line 1787 of yacc.c */
|
|
#line 795 "parser.y"
|
|
{
|
|
bx_dbg_examine_command((yyvsp[(1) - (2)].sval), NULL,0, 0, 0);
|
|
free((yyvsp[(1) - (2)].sval));
|
|
}
|
|
break;
|
|
|
|
case 161:
|
|
/* Line 1787 of yacc.c */
|
|
#line 803 "parser.y"
|
|
{
|
|
bx_dbg_restore_command((yyvsp[(2) - (4)].sval), (yyvsp[(3) - (4)].sval));
|
|
free((yyvsp[(1) - (4)].sval)); free((yyvsp[(2) - (4)].sval)); free((yyvsp[(3) - (4)].sval));
|
|
}
|
|
break;
|
|
|
|
case 162:
|
|
/* Line 1787 of yacc.c */
|
|
#line 811 "parser.y"
|
|
{
|
|
bx_dbg_writemem_command((yyvsp[(2) - (5)].sval), (yyvsp[(3) - (5)].uval), (yyvsp[(4) - (5)].uval));
|
|
free((yyvsp[(1) - (5)].sval)); free((yyvsp[(2) - (5)].sval));
|
|
}
|
|
break;
|
|
|
|
case 163:
|
|
/* Line 1787 of yacc.c */
|
|
#line 819 "parser.y"
|
|
{
|
|
bx_dbg_setpmem_command((yyvsp[(2) - (5)].uval), (yyvsp[(3) - (5)].uval), (yyvsp[(4) - (5)].uval));
|
|
free((yyvsp[(1) - (5)].sval));
|
|
}
|
|
break;
|
|
|
|
case 164:
|
|
/* Line 1787 of yacc.c */
|
|
#line 827 "parser.y"
|
|
{
|
|
bx_dbg_query_command((yyvsp[(2) - (3)].sval));
|
|
free((yyvsp[(1) - (3)].sval)); free((yyvsp[(2) - (3)].sval));
|
|
}
|
|
break;
|
|
|
|
case 165:
|
|
/* Line 1787 of yacc.c */
|
|
#line 835 "parser.y"
|
|
{
|
|
bx_dbg_take_command((yyvsp[(2) - (3)].sval), 1);
|
|
free((yyvsp[(1) - (3)].sval)); free((yyvsp[(2) - (3)].sval));
|
|
}
|
|
break;
|
|
|
|
case 166:
|
|
/* Line 1787 of yacc.c */
|
|
#line 840 "parser.y"
|
|
{
|
|
bx_dbg_take_command((yyvsp[(2) - (4)].sval), (yyvsp[(3) - (4)].uval));
|
|
free((yyvsp[(1) - (4)].sval)); free((yyvsp[(2) - (4)].sval));
|
|
}
|
|
break;
|
|
|
|
case 167:
|
|
/* Line 1787 of yacc.c */
|
|
#line 845 "parser.y"
|
|
{
|
|
bx_dbg_take_command((yyvsp[(2) - (3)].sval), 1);
|
|
free((yyvsp[(1) - (3)].sval)); free((yyvsp[(2) - (3)].sval));
|
|
}
|
|
break;
|
|
|
|
case 168:
|
|
/* Line 1787 of yacc.c */
|
|
#line 853 "parser.y"
|
|
{
|
|
bx_dbg_disassemble_current(NULL);
|
|
free((yyvsp[(1) - (2)].sval));
|
|
}
|
|
break;
|
|
|
|
case 169:
|
|
/* Line 1787 of yacc.c */
|
|
#line 858 "parser.y"
|
|
{
|
|
bx_dbg_disassemble_command(NULL, (yyvsp[(2) - (3)].uval), (yyvsp[(2) - (3)].uval));
|
|
free((yyvsp[(1) - (3)].sval));
|
|
}
|
|
break;
|
|
|
|
case 170:
|
|
/* Line 1787 of yacc.c */
|
|
#line 863 "parser.y"
|
|
{
|
|
bx_dbg_disassemble_command(NULL, (yyvsp[(2) - (4)].uval), (yyvsp[(3) - (4)].uval));
|
|
free((yyvsp[(1) - (4)].sval));
|
|
}
|
|
break;
|
|
|
|
case 171:
|
|
/* Line 1787 of yacc.c */
|
|
#line 868 "parser.y"
|
|
{
|
|
bx_dbg_disassemble_current((yyvsp[(2) - (3)].sval));
|
|
free((yyvsp[(1) - (3)].sval)); free((yyvsp[(2) - (3)].sval));
|
|
}
|
|
break;
|
|
|
|
case 172:
|
|
/* Line 1787 of yacc.c */
|
|
#line 873 "parser.y"
|
|
{
|
|
bx_dbg_disassemble_command((yyvsp[(2) - (4)].sval), (yyvsp[(3) - (4)].uval), (yyvsp[(3) - (4)].uval));
|
|
free((yyvsp[(1) - (4)].sval)); free((yyvsp[(2) - (4)].sval));
|
|
}
|
|
break;
|
|
|
|
case 173:
|
|
/* Line 1787 of yacc.c */
|
|
#line 878 "parser.y"
|
|
{
|
|
bx_dbg_disassemble_command((yyvsp[(2) - (5)].sval), (yyvsp[(3) - (5)].uval), (yyvsp[(4) - (5)].uval));
|
|
free((yyvsp[(1) - (5)].sval)); free((yyvsp[(2) - (5)].sval));
|
|
}
|
|
break;
|
|
|
|
case 174:
|
|
/* Line 1787 of yacc.c */
|
|
#line 883 "parser.y"
|
|
{
|
|
bx_dbg_disassemble_switch_mode();
|
|
free((yyvsp[(1) - (3)].sval)); free((yyvsp[(2) - (3)].sval));
|
|
}
|
|
break;
|
|
|
|
case 175:
|
|
/* Line 1787 of yacc.c */
|
|
#line 888 "parser.y"
|
|
{
|
|
bx_dbg_disassemble_hex_mode_switch((yyvsp[(3) - (4)].bval));
|
|
free((yyvsp[(1) - (4)].sval)); free((yyvsp[(2) - (4)].sval));
|
|
}
|
|
break;
|
|
|
|
case 176:
|
|
/* Line 1787 of yacc.c */
|
|
#line 893 "parser.y"
|
|
{
|
|
bx_dbg_set_disassemble_size((yyvsp[(4) - (5)].uval));
|
|
free((yyvsp[(1) - (5)].sval)); free((yyvsp[(2) - (5)].sval));
|
|
}
|
|
break;
|
|
|
|
case 177:
|
|
/* Line 1787 of yacc.c */
|
|
#line 901 "parser.y"
|
|
{
|
|
bx_dbg_instrument_command((yyvsp[(2) - (3)].sval));
|
|
free((yyvsp[(1) - (3)].sval)); free((yyvsp[(2) - (3)].sval));
|
|
}
|
|
break;
|
|
|
|
case 178:
|
|
/* Line 1787 of yacc.c */
|
|
#line 906 "parser.y"
|
|
{
|
|
bx_dbg_instrument_command((yyvsp[(2) - (3)].sval));
|
|
free((yyvsp[(1) - (3)].sval)); free((yyvsp[(2) - (3)].sval));
|
|
}
|
|
break;
|
|
|
|
case 179:
|
|
/* Line 1787 of yacc.c */
|
|
#line 914 "parser.y"
|
|
{
|
|
bx_dbg_doit_command((yyvsp[(2) - (3)].uval));
|
|
free((yyvsp[(1) - (3)].sval));
|
|
}
|
|
break;
|
|
|
|
case 180:
|
|
/* Line 1787 of yacc.c */
|
|
#line 922 "parser.y"
|
|
{
|
|
bx_dbg_crc_command((yyvsp[(2) - (4)].uval), (yyvsp[(3) - (4)].uval));
|
|
free((yyvsp[(1) - (4)].sval));
|
|
}
|
|
break;
|
|
|
|
case 181:
|
|
/* Line 1787 of yacc.c */
|
|
#line 930 "parser.y"
|
|
{
|
|
dbg_printf("q|quit|exit - quit debugger and emulator execution\n");
|
|
free((yyvsp[(1) - (3)].sval));free((yyvsp[(2) - (3)].sval));
|
|
}
|
|
break;
|
|
|
|
case 182:
|
|
/* Line 1787 of yacc.c */
|
|
#line 935 "parser.y"
|
|
{
|
|
dbg_printf("c|cont|continue - continue executing\n");
|
|
free((yyvsp[(1) - (3)].sval));free((yyvsp[(2) - (3)].sval));
|
|
}
|
|
break;
|
|
|
|
case 183:
|
|
/* Line 1787 of yacc.c */
|
|
#line 940 "parser.y"
|
|
{
|
|
dbg_printf("s|step [count] - execute #count instructions on current processor (default is one instruction)\n");
|
|
dbg_printf("s|step [cpu] <count> - execute #count instructions on processor #cpu\n");
|
|
dbg_printf("s|step all <count> - execute #count instructions on all the processors\n");
|
|
free((yyvsp[(1) - (3)].sval));free((yyvsp[(2) - (3)].sval));
|
|
}
|
|
break;
|
|
|
|
case 184:
|
|
/* Line 1787 of yacc.c */
|
|
#line 947 "parser.y"
|
|
{
|
|
dbg_printf("n|next|p - execute instruction stepping over subroutines\n");
|
|
free((yyvsp[(1) - (3)].sval));free((yyvsp[(2) - (3)].sval));
|
|
}
|
|
break;
|
|
|
|
case 185:
|
|
/* Line 1787 of yacc.c */
|
|
#line 952 "parser.y"
|
|
{
|
|
dbg_printf("vb|vbreak <seg:offset> - set a virtual address instruction breakpoint\n");
|
|
free((yyvsp[(1) - (3)].sval));free((yyvsp[(2) - (3)].sval));
|
|
}
|
|
break;
|
|
|
|
case 186:
|
|
/* Line 1787 of yacc.c */
|
|
#line 957 "parser.y"
|
|
{
|
|
dbg_printf("lb|lbreak <addr> - set a linear address instruction breakpoint\n");
|
|
free((yyvsp[(1) - (3)].sval));free((yyvsp[(2) - (3)].sval));
|
|
}
|
|
break;
|
|
|
|
case 187:
|
|
/* Line 1787 of yacc.c */
|
|
#line 962 "parser.y"
|
|
{
|
|
dbg_printf("p|pb|break|pbreak <addr> - set a physical address instruction breakpoint\n");
|
|
free((yyvsp[(1) - (3)].sval));free((yyvsp[(2) - (3)].sval));
|
|
}
|
|
break;
|
|
|
|
case 188:
|
|
/* Line 1787 of yacc.c */
|
|
#line 967 "parser.y"
|
|
{
|
|
dbg_printf("d|del|delete <n> - delete a breakpoint\n");
|
|
free((yyvsp[(1) - (3)].sval));free((yyvsp[(2) - (3)].sval));
|
|
}
|
|
break;
|
|
|
|
case 189:
|
|
/* Line 1787 of yacc.c */
|
|
#line 972 "parser.y"
|
|
{
|
|
dbg_printf("bpe <n> - enable a breakpoint\n");
|
|
free((yyvsp[(1) - (3)].sval));free((yyvsp[(2) - (3)].sval));
|
|
}
|
|
break;
|
|
|
|
case 190:
|
|
/* Line 1787 of yacc.c */
|
|
#line 977 "parser.y"
|
|
{
|
|
dbg_printf("bpd <n> - disable a breakpoint\n");
|
|
free((yyvsp[(1) - (3)].sval));free((yyvsp[(2) - (3)].sval));
|
|
}
|
|
break;
|
|
|
|
case 191:
|
|
/* Line 1787 of yacc.c */
|
|
#line 982 "parser.y"
|
|
{
|
|
dbg_printf("blist - list all breakpoints (same as 'info break')\n");
|
|
free((yyvsp[(1) - (3)].sval));free((yyvsp[(2) - (3)].sval));
|
|
}
|
|
break;
|
|
|
|
case 192:
|
|
/* Line 1787 of yacc.c */
|
|
#line 987 "parser.y"
|
|
{
|
|
dbg_printf("modebp - toggles mode switch breakpoint\n");
|
|
free((yyvsp[(1) - (3)].sval));free((yyvsp[(2) - (3)].sval));
|
|
}
|
|
break;
|
|
|
|
case 193:
|
|
/* Line 1787 of yacc.c */
|
|
#line 992 "parser.y"
|
|
{
|
|
dbg_printf("vmexitbp - toggles VMEXIT switch breakpoint\n");
|
|
free((yyvsp[(1) - (3)].sval));free((yyvsp[(2) - (3)].sval));
|
|
}
|
|
break;
|
|
|
|
case 194:
|
|
/* Line 1787 of yacc.c */
|
|
#line 997 "parser.y"
|
|
{
|
|
dbg_printf("crc <addr1> <addr2> - show CRC32 for physical memory range addr1..addr2\n");
|
|
free((yyvsp[(1) - (3)].sval));free((yyvsp[(2) - (3)].sval));
|
|
}
|
|
break;
|
|
|
|
case 195:
|
|
/* Line 1787 of yacc.c */
|
|
#line 1002 "parser.y"
|
|
{
|
|
dbg_printf("trace on - print disassembly for every executed instruction\n");
|
|
dbg_printf("trace off - disable instruction tracing\n");
|
|
free((yyvsp[(1) - (3)].sval));free((yyvsp[(2) - (3)].sval));
|
|
}
|
|
break;
|
|
|
|
case 196:
|
|
/* Line 1787 of yacc.c */
|
|
#line 1008 "parser.y"
|
|
{
|
|
dbg_printf("trace-reg on - print all registers before every executed instruction\n");
|
|
dbg_printf("trace-reg off - disable registers state tracing\n");
|
|
free((yyvsp[(1) - (3)].sval));free((yyvsp[(2) - (3)].sval));
|
|
}
|
|
break;
|
|
|
|
case 197:
|
|
/* Line 1787 of yacc.c */
|
|
#line 1014 "parser.y"
|
|
{
|
|
dbg_printf("trace-mem on - print all memory accesses occured during instruction execution\n");
|
|
dbg_printf("trace-mem off - disable memory accesses tracing\n");
|
|
free((yyvsp[(1) - (3)].sval));free((yyvsp[(2) - (3)].sval));
|
|
}
|
|
break;
|
|
|
|
case 198:
|
|
/* Line 1787 of yacc.c */
|
|
#line 1020 "parser.y"
|
|
{
|
|
dbg_printf("restore <param_name> [path] - restore bochs root param from the file\n");
|
|
dbg_printf("for example:\n");
|
|
dbg_printf("restore \"cpu0\" - restore CPU #0 from file \"cpu0\" in current directory\n");
|
|
dbg_printf("restore \"cpu0\" \"/save\" - restore CPU #0 from file \"cpu0\" located in directory \"/save\"\n");
|
|
free((yyvsp[(1) - (3)].sval));free((yyvsp[(2) - (3)].sval));
|
|
}
|
|
break;
|
|
|
|
case 199:
|
|
/* Line 1787 of yacc.c */
|
|
#line 1028 "parser.y"
|
|
{
|
|
dbg_printf("ptime - print current time (number of ticks since start of simulation)\n");
|
|
free((yyvsp[(1) - (3)].sval));free((yyvsp[(2) - (3)].sval));
|
|
}
|
|
break;
|
|
|
|
case 200:
|
|
/* Line 1787 of yacc.c */
|
|
#line 1033 "parser.y"
|
|
{
|
|
dbg_printf("sb <delta> - insert a time breakpoint delta instructions into the future\n");
|
|
free((yyvsp[(1) - (3)].sval));free((yyvsp[(2) - (3)].sval));
|
|
}
|
|
break;
|
|
|
|
case 201:
|
|
/* Line 1787 of yacc.c */
|
|
#line 1038 "parser.y"
|
|
{
|
|
dbg_printf("sba <time> - insert breakpoint at specific time\n");
|
|
free((yyvsp[(1) - (3)].sval));free((yyvsp[(2) - (3)].sval));
|
|
}
|
|
break;
|
|
|
|
case 202:
|
|
/* Line 1787 of yacc.c */
|
|
#line 1043 "parser.y"
|
|
{
|
|
dbg_printf("print-stack [num_words] - print the num_words top 16 bit words on the stack\n");
|
|
free((yyvsp[(1) - (3)].sval));free((yyvsp[(2) - (3)].sval));
|
|
}
|
|
break;
|
|
|
|
case 203:
|
|
/* Line 1787 of yacc.c */
|
|
#line 1048 "parser.y"
|
|
{
|
|
dbg_printf("ldsym [global] <filename> [offset] - load symbols from file\n");
|
|
free((yyvsp[(1) - (3)].sval));free((yyvsp[(2) - (3)].sval));
|
|
}
|
|
break;
|
|
|
|
case 204:
|
|
/* Line 1787 of yacc.c */
|
|
#line 1053 "parser.y"
|
|
{
|
|
dbg_printf("slist [string] - list symbols whose preffix is string (same as 'info symbols')\n");
|
|
free((yyvsp[(1) - (3)].sval));free((yyvsp[(2) - (3)].sval));
|
|
}
|
|
break;
|
|
|
|
case 205:
|
|
/* Line 1787 of yacc.c */
|
|
#line 1058 "parser.y"
|
|
{
|
|
dbg_printf("r|reg|regs|registers - list of CPU registers and their contents (same as 'info registers')\n");
|
|
free((yyvsp[(1) - (3)].sval));free((yyvsp[(2) - (3)].sval));
|
|
}
|
|
break;
|
|
|
|
case 206:
|
|
/* Line 1787 of yacc.c */
|
|
#line 1063 "parser.y"
|
|
{
|
|
dbg_printf("fp|fpu - print FPU state\n");
|
|
free((yyvsp[(1) - (3)].sval));free((yyvsp[(2) - (3)].sval));
|
|
}
|
|
break;
|
|
|
|
case 207:
|
|
/* Line 1787 of yacc.c */
|
|
#line 1068 "parser.y"
|
|
{
|
|
dbg_printf("mmx - print MMX state\n");
|
|
free((yyvsp[(1) - (3)].sval));free((yyvsp[(2) - (3)].sval));
|
|
}
|
|
break;
|
|
|
|
case 208:
|
|
/* Line 1787 of yacc.c */
|
|
#line 1073 "parser.y"
|
|
{
|
|
dbg_printf("xmm|sse - print SSE state\n");
|
|
free((yyvsp[(1) - (3)].sval));free((yyvsp[(2) - (3)].sval));
|
|
}
|
|
break;
|
|
|
|
case 209:
|
|
/* Line 1787 of yacc.c */
|
|
#line 1078 "parser.y"
|
|
{
|
|
dbg_printf("ymm - print AVX state\n");
|
|
free((yyvsp[(1) - (3)].sval));free((yyvsp[(2) - (3)].sval));
|
|
}
|
|
break;
|
|
|
|
case 210:
|
|
/* Line 1787 of yacc.c */
|
|
#line 1083 "parser.y"
|
|
{
|
|
dbg_printf("zmm - print AVX-512 state\n");
|
|
free((yyvsp[(1) - (3)].sval));free((yyvsp[(2) - (3)].sval));
|
|
}
|
|
break;
|
|
|
|
case 211:
|
|
/* Line 1787 of yacc.c */
|
|
#line 1088 "parser.y"
|
|
{
|
|
dbg_printf("sreg - show segment registers\n");
|
|
free((yyvsp[(1) - (3)].sval));free((yyvsp[(2) - (3)].sval));
|
|
}
|
|
break;
|
|
|
|
case 212:
|
|
/* Line 1787 of yacc.c */
|
|
#line 1093 "parser.y"
|
|
{
|
|
dbg_printf("creg - show control registers\n");
|
|
free((yyvsp[(1) - (3)].sval));free((yyvsp[(2) - (3)].sval));
|
|
}
|
|
break;
|
|
|
|
case 213:
|
|
/* Line 1787 of yacc.c */
|
|
#line 1098 "parser.y"
|
|
{
|
|
dbg_printf("dreg - show debug registers\n");
|
|
free((yyvsp[(1) - (3)].sval));free((yyvsp[(2) - (3)].sval));
|
|
}
|
|
break;
|
|
|
|
case 214:
|
|
/* Line 1787 of yacc.c */
|
|
#line 1103 "parser.y"
|
|
{
|
|
dbg_printf("writemem <filename> <laddr> <len> - dump 'len' bytes of virtual memory starting from the linear address 'laddr' into the file\n");
|
|
free((yyvsp[(1) - (3)].sval));free((yyvsp[(2) - (3)].sval));
|
|
}
|
|
break;
|
|
|
|
case 215:
|
|
/* Line 1787 of yacc.c */
|
|
#line 1108 "parser.y"
|
|
{
|
|
dbg_printf("setpmem <addr> <datasize> <val> - set physical memory location of size 'datasize' to value 'val'\n");
|
|
free((yyvsp[(1) - (3)].sval));free((yyvsp[(2) - (3)].sval));
|
|
}
|
|
break;
|
|
|
|
case 216:
|
|
/* Line 1787 of yacc.c */
|
|
#line 1113 "parser.y"
|
|
{
|
|
dbg_printf("u|disasm [/count] <start> <end> - disassemble instructions for given linear address\n");
|
|
dbg_printf(" Optional 'count' is the number of disassembled instructions\n");
|
|
dbg_printf("u|disasm switch-mode - switch between Intel and AT&T disassembler syntax\n");
|
|
dbg_printf("u|disasm hex on/off - control disasm offsets and displacements format\n");
|
|
dbg_printf("u|disasm size = n - tell debugger what segment size [16|32|64] to use\n");
|
|
dbg_printf(" when \"disassemble\" command is used.\n");
|
|
free((yyvsp[(1) - (3)].sval));free((yyvsp[(2) - (3)].sval));
|
|
}
|
|
break;
|
|
|
|
case 217:
|
|
/* Line 1787 of yacc.c */
|
|
#line 1123 "parser.y"
|
|
{
|
|
dbg_printf("watch - print current watch point status\n");
|
|
dbg_printf("watch stop - stop simulation when a watchpoint is encountred\n");
|
|
dbg_printf("watch continue - do not stop the simulation when watch point is encountred\n");
|
|
dbg_printf("watch r|read addr - insert a read watch point at physical address addr\n");
|
|
dbg_printf("watch w|write addr - insert a write watch point at physical address addr\n");
|
|
dbg_printf("watch r|read addr <len> - insert a read watch point at physical address addr with range <len>\n");
|
|
dbg_printf("watch w|write addr <len> - insert a write watch point at physical address addr with range <len>\n");
|
|
free((yyvsp[(1) - (3)].sval));free((yyvsp[(2) - (3)].sval));
|
|
}
|
|
break;
|
|
|
|
case 218:
|
|
/* Line 1787 of yacc.c */
|
|
#line 1134 "parser.y"
|
|
{
|
|
dbg_printf("unwatch - remove all watch points\n");
|
|
dbg_printf("unwatch addr - remove a watch point\n");
|
|
free((yyvsp[(1) - (3)].sval));free((yyvsp[(2) - (3)].sval));
|
|
}
|
|
break;
|
|
|
|
case 219:
|
|
/* Line 1787 of yacc.c */
|
|
#line 1140 "parser.y"
|
|
{
|
|
dbg_printf("x /nuf <addr> - examine memory at linear address\n");
|
|
dbg_printf("xp /nuf <addr> - examine memory at physical address\n");
|
|
dbg_printf(" nuf is a sequence of numbers (how much values to display)\n");
|
|
dbg_printf(" and one or more of the [mxduotcsibhwg] format specificators:\n");
|
|
dbg_printf(" x,d,u,o,t,c,s,i select the format of the output (they stand for\n");
|
|
dbg_printf(" hex, decimal, unsigned, octal, binary, char, asciiz, instr)\n");
|
|
dbg_printf(" b,h,w,g select the size of a data element (for byte, half-word,\n");
|
|
dbg_printf(" word and giant word)\n");
|
|
dbg_printf(" m selects an alternative output format (memory dump)\n");
|
|
free((yyvsp[(1) - (3)].sval));free((yyvsp[(2) - (3)].sval));
|
|
}
|
|
break;
|
|
|
|
case 220:
|
|
/* Line 1787 of yacc.c */
|
|
#line 1153 "parser.y"
|
|
{
|
|
dbg_printf("instrument <command> - calls BX_INSTR_DEBUG_CMD instrumentation callback with <command>\n");
|
|
free((yyvsp[(1) - (3)].sval));free((yyvsp[(2) - (3)].sval));
|
|
}
|
|
break;
|
|
|
|
case 221:
|
|
/* Line 1787 of yacc.c */
|
|
#line 1158 "parser.y"
|
|
{
|
|
dbg_printf("set <regname> = <expr> - set register value to expression\n");
|
|
dbg_printf("set eflags = <expr> - set eflags value to expression, not all flags can be modified\n");
|
|
dbg_printf("set $cpu = <N> - move debugger control to cpu <N> in SMP simulation\n");
|
|
dbg_printf("set $auto_disassemble = 1 - cause debugger to disassemble current instruction\n");
|
|
dbg_printf(" every time execution stops\n");
|
|
dbg_printf("set u|disasm|disassemble on - same as 'set $auto_disassemble = 1'\n");
|
|
dbg_printf("set u|disasm|disassemble off - same as 'set $auto_disassemble = 0'\n");
|
|
free((yyvsp[(1) - (3)].sval));free((yyvsp[(2) - (3)].sval));
|
|
}
|
|
break;
|
|
|
|
case 222:
|
|
/* Line 1787 of yacc.c */
|
|
#line 1169 "parser.y"
|
|
{
|
|
dbg_printf("page <laddr> - show linear to physical xlation for linear address laddr\n");
|
|
free((yyvsp[(1) - (3)].sval));free((yyvsp[(2) - (3)].sval));
|
|
}
|
|
break;
|
|
|
|
case 223:
|
|
/* Line 1787 of yacc.c */
|
|
#line 1174 "parser.y"
|
|
{
|
|
dbg_printf("info break - show information about current breakpoint status\n");
|
|
dbg_printf("info cpu - show dump of all cpu registers\n");
|
|
dbg_printf("info idt - show interrupt descriptor table\n");
|
|
dbg_printf("info ivt - show interrupt vector table\n");
|
|
dbg_printf("info gdt - show global descriptor table\n");
|
|
dbg_printf("info tss - show current task state segment\n");
|
|
dbg_printf("info tab - show page tables\n");
|
|
dbg_printf("info eflags - show decoded EFLAGS register\n");
|
|
dbg_printf("info symbols [string] - list symbols whose prefix is string\n");
|
|
dbg_printf("info device - show list of devices supported by this command\n");
|
|
dbg_printf("info device [string] - show state of device specified in string\n");
|
|
dbg_printf("info device [string] [string] - show state of device with options\n");
|
|
free((yyvsp[(1) - (3)].sval));free((yyvsp[(2) - (3)].sval));
|
|
}
|
|
break;
|
|
|
|
case 224:
|
|
/* Line 1787 of yacc.c */
|
|
#line 1190 "parser.y"
|
|
{
|
|
dbg_printf("show <command> - toggles show symbolic info (calls to begin with)\n");
|
|
dbg_printf("show - shows current show mode\n");
|
|
dbg_printf("show mode - show, when processor switch mode\n");
|
|
dbg_printf("show int - show, when an interrupt happens\n");
|
|
dbg_printf("show softint - show, when software interrupt happens\n");
|
|
dbg_printf("show extint - show, when external interrupt happens\n");
|
|
dbg_printf("show call - show, when call is happens\n");
|
|
dbg_printf("show iret - show, when iret is happens\n");
|
|
dbg_printf("show all - turns on all symbolic info\n");
|
|
dbg_printf("show off - turns off symbolic info\n");
|
|
dbg_printf("show dbg_all - turn on all bx_dbg flags\n");
|
|
dbg_printf("show dbg_none - turn off all bx_dbg flags\n");
|
|
free((yyvsp[(1) - (3)].sval));free((yyvsp[(2) - (3)].sval));
|
|
}
|
|
break;
|
|
|
|
case 225:
|
|
/* Line 1787 of yacc.c */
|
|
#line 1206 "parser.y"
|
|
{
|
|
dbg_printf("calc|? <expr> - calculate a expression and display the result.\n");
|
|
dbg_printf(" 'expr' can reference any general-purpose, opmask and segment\n");
|
|
dbg_printf(" registers, use any arithmetic and logic operations, and\n");
|
|
dbg_printf(" also the special ':' operator which computes the linear\n");
|
|
dbg_printf(" address of a segment:offset (in real and v86 mode) or of\n");
|
|
dbg_printf(" a selector:offset (in protected mode) pair.\n");
|
|
free((yyvsp[(1) - (3)].sval));free((yyvsp[(2) - (3)].sval));
|
|
}
|
|
break;
|
|
|
|
case 226:
|
|
/* Line 1787 of yacc.c */
|
|
#line 1216 "parser.y"
|
|
{
|
|
bx_dbg_print_help();
|
|
free((yyvsp[(1) - (3)].sval));free((yyvsp[(2) - (3)].sval));
|
|
}
|
|
break;
|
|
|
|
case 227:
|
|
/* Line 1787 of yacc.c */
|
|
#line 1221 "parser.y"
|
|
{
|
|
bx_dbg_print_help();
|
|
free((yyvsp[(1) - (2)].sval));
|
|
}
|
|
break;
|
|
|
|
case 228:
|
|
/* Line 1787 of yacc.c */
|
|
#line 1229 "parser.y"
|
|
{
|
|
bx_dbg_calc_command((yyvsp[(2) - (3)].uval));
|
|
free((yyvsp[(1) - (3)].sval));
|
|
}
|
|
break;
|
|
|
|
case 229:
|
|
/* Line 1787 of yacc.c */
|
|
#line 1247 "parser.y"
|
|
{ (yyval.uval) = (yyvsp[(1) - (1)].uval); }
|
|
break;
|
|
|
|
case 230:
|
|
/* Line 1787 of yacc.c */
|
|
#line 1248 "parser.y"
|
|
{ (yyval.uval) = bx_dbg_get_symbol_value((yyvsp[(1) - (1)].sval)); free((yyvsp[(1) - (1)].sval));}
|
|
break;
|
|
|
|
case 231:
|
|
/* Line 1787 of yacc.c */
|
|
#line 1249 "parser.y"
|
|
{ (yyval.uval) = bx_dbg_get_reg8l_value((yyvsp[(1) - (1)].uval)); }
|
|
break;
|
|
|
|
case 232:
|
|
/* Line 1787 of yacc.c */
|
|
#line 1250 "parser.y"
|
|
{ (yyval.uval) = bx_dbg_get_reg8h_value((yyvsp[(1) - (1)].uval)); }
|
|
break;
|
|
|
|
case 233:
|
|
/* Line 1787 of yacc.c */
|
|
#line 1251 "parser.y"
|
|
{ (yyval.uval) = bx_dbg_get_reg16_value((yyvsp[(1) - (1)].uval)); }
|
|
break;
|
|
|
|
case 234:
|
|
/* Line 1787 of yacc.c */
|
|
#line 1252 "parser.y"
|
|
{ (yyval.uval) = bx_dbg_get_reg32_value((yyvsp[(1) - (1)].uval)); }
|
|
break;
|
|
|
|
case 235:
|
|
/* Line 1787 of yacc.c */
|
|
#line 1253 "parser.y"
|
|
{ (yyval.uval) = bx_dbg_get_reg64_value((yyvsp[(1) - (1)].uval)); }
|
|
break;
|
|
|
|
case 236:
|
|
/* Line 1787 of yacc.c */
|
|
#line 1254 "parser.y"
|
|
{ (yyval.uval) = bx_dbg_get_opmask_value((yyvsp[(1) - (1)].uval)); }
|
|
break;
|
|
|
|
case 237:
|
|
/* Line 1787 of yacc.c */
|
|
#line 1255 "parser.y"
|
|
{ (yyval.uval) = bx_dbg_get_selector_value((yyvsp[(1) - (1)].uval)); }
|
|
break;
|
|
|
|
case 238:
|
|
/* Line 1787 of yacc.c */
|
|
#line 1256 "parser.y"
|
|
{ (yyval.uval) = bx_dbg_get_ip (); }
|
|
break;
|
|
|
|
case 239:
|
|
/* Line 1787 of yacc.c */
|
|
#line 1257 "parser.y"
|
|
{ (yyval.uval) = bx_dbg_get_eip(); }
|
|
break;
|
|
|
|
case 240:
|
|
/* Line 1787 of yacc.c */
|
|
#line 1258 "parser.y"
|
|
{ (yyval.uval) = bx_dbg_get_instruction_pointer(); }
|
|
break;
|
|
|
|
case 241:
|
|
/* Line 1787 of yacc.c */
|
|
#line 1259 "parser.y"
|
|
{ (yyval.uval) = (yyvsp[(1) - (3)].uval) + (yyvsp[(3) - (3)].uval); }
|
|
break;
|
|
|
|
case 242:
|
|
/* Line 1787 of yacc.c */
|
|
#line 1260 "parser.y"
|
|
{ (yyval.uval) = (yyvsp[(1) - (3)].uval) - (yyvsp[(3) - (3)].uval); }
|
|
break;
|
|
|
|
case 243:
|
|
/* Line 1787 of yacc.c */
|
|
#line 1261 "parser.y"
|
|
{ (yyval.uval) = (yyvsp[(1) - (3)].uval) * (yyvsp[(3) - (3)].uval); }
|
|
break;
|
|
|
|
case 244:
|
|
/* Line 1787 of yacc.c */
|
|
#line 1262 "parser.y"
|
|
{ (yyval.uval) = (yyvsp[(1) - (3)].uval) / (yyvsp[(3) - (3)].uval); }
|
|
break;
|
|
|
|
case 245:
|
|
/* Line 1787 of yacc.c */
|
|
#line 1263 "parser.y"
|
|
{ (yyval.uval) = (yyvsp[(1) - (3)].uval) >> (yyvsp[(3) - (3)].uval); }
|
|
break;
|
|
|
|
case 246:
|
|
/* Line 1787 of yacc.c */
|
|
#line 1264 "parser.y"
|
|
{ (yyval.uval) = (yyvsp[(1) - (3)].uval) << (yyvsp[(3) - (3)].uval); }
|
|
break;
|
|
|
|
case 247:
|
|
/* Line 1787 of yacc.c */
|
|
#line 1265 "parser.y"
|
|
{ (yyval.uval) = (yyvsp[(1) - (3)].uval) | (yyvsp[(3) - (3)].uval); }
|
|
break;
|
|
|
|
case 248:
|
|
/* Line 1787 of yacc.c */
|
|
#line 1266 "parser.y"
|
|
{ (yyval.uval) = (yyvsp[(1) - (3)].uval) ^ (yyvsp[(3) - (3)].uval); }
|
|
break;
|
|
|
|
case 249:
|
|
/* Line 1787 of yacc.c */
|
|
#line 1267 "parser.y"
|
|
{ (yyval.uval) = (yyvsp[(1) - (3)].uval) & (yyvsp[(3) - (3)].uval); }
|
|
break;
|
|
|
|
case 250:
|
|
/* Line 1787 of yacc.c */
|
|
#line 1268 "parser.y"
|
|
{ (yyval.uval) = !(yyvsp[(2) - (2)].uval); }
|
|
break;
|
|
|
|
case 251:
|
|
/* Line 1787 of yacc.c */
|
|
#line 1269 "parser.y"
|
|
{ (yyval.uval) = -(yyvsp[(2) - (2)].uval); }
|
|
break;
|
|
|
|
case 252:
|
|
/* Line 1787 of yacc.c */
|
|
#line 1270 "parser.y"
|
|
{ (yyval.uval) = (yyvsp[(2) - (3)].uval); }
|
|
break;
|
|
|
|
case 253:
|
|
/* Line 1787 of yacc.c */
|
|
#line 1276 "parser.y"
|
|
{ (yyval.uval) = (yyvsp[(1) - (1)].uval); }
|
|
break;
|
|
|
|
case 254:
|
|
/* Line 1787 of yacc.c */
|
|
#line 1277 "parser.y"
|
|
{ (yyval.uval) = bx_dbg_get_symbol_value((yyvsp[(1) - (1)].sval)); free((yyvsp[(1) - (1)].sval));}
|
|
break;
|
|
|
|
case 255:
|
|
/* Line 1787 of yacc.c */
|
|
#line 1278 "parser.y"
|
|
{ (yyval.uval) = bx_dbg_get_reg8l_value((yyvsp[(1) - (1)].uval)); }
|
|
break;
|
|
|
|
case 256:
|
|
/* Line 1787 of yacc.c */
|
|
#line 1279 "parser.y"
|
|
{ (yyval.uval) = bx_dbg_get_reg8h_value((yyvsp[(1) - (1)].uval)); }
|
|
break;
|
|
|
|
case 257:
|
|
/* Line 1787 of yacc.c */
|
|
#line 1280 "parser.y"
|
|
{ (yyval.uval) = bx_dbg_get_reg16_value((yyvsp[(1) - (1)].uval)); }
|
|
break;
|
|
|
|
case 258:
|
|
/* Line 1787 of yacc.c */
|
|
#line 1281 "parser.y"
|
|
{ (yyval.uval) = bx_dbg_get_reg32_value((yyvsp[(1) - (1)].uval)); }
|
|
break;
|
|
|
|
case 259:
|
|
/* Line 1787 of yacc.c */
|
|
#line 1282 "parser.y"
|
|
{ (yyval.uval) = bx_dbg_get_reg64_value((yyvsp[(1) - (1)].uval)); }
|
|
break;
|
|
|
|
case 260:
|
|
/* Line 1787 of yacc.c */
|
|
#line 1283 "parser.y"
|
|
{ (yyval.uval) = bx_dbg_get_opmask_value((yyvsp[(1) - (1)].uval)); }
|
|
break;
|
|
|
|
case 261:
|
|
/* Line 1787 of yacc.c */
|
|
#line 1284 "parser.y"
|
|
{ (yyval.uval) = bx_dbg_get_selector_value((yyvsp[(1) - (1)].uval)); }
|
|
break;
|
|
|
|
case 262:
|
|
/* Line 1787 of yacc.c */
|
|
#line 1285 "parser.y"
|
|
{ (yyval.uval) = bx_dbg_get_ip (); }
|
|
break;
|
|
|
|
case 263:
|
|
/* Line 1787 of yacc.c */
|
|
#line 1286 "parser.y"
|
|
{ (yyval.uval) = bx_dbg_get_eip(); }
|
|
break;
|
|
|
|
case 264:
|
|
/* Line 1787 of yacc.c */
|
|
#line 1287 "parser.y"
|
|
{ (yyval.uval) = bx_dbg_get_instruction_pointer(); }
|
|
break;
|
|
|
|
case 265:
|
|
/* Line 1787 of yacc.c */
|
|
#line 1288 "parser.y"
|
|
{ (yyval.uval) = bx_dbg_get_laddr ((yyvsp[(1) - (3)].uval), (yyvsp[(3) - (3)].uval)); }
|
|
break;
|
|
|
|
case 266:
|
|
/* Line 1787 of yacc.c */
|
|
#line 1289 "parser.y"
|
|
{ (yyval.uval) = (yyvsp[(1) - (3)].uval) + (yyvsp[(3) - (3)].uval); }
|
|
break;
|
|
|
|
case 267:
|
|
/* Line 1787 of yacc.c */
|
|
#line 1290 "parser.y"
|
|
{ (yyval.uval) = (yyvsp[(1) - (3)].uval) - (yyvsp[(3) - (3)].uval); }
|
|
break;
|
|
|
|
case 268:
|
|
/* Line 1787 of yacc.c */
|
|
#line 1291 "parser.y"
|
|
{ (yyval.uval) = (yyvsp[(1) - (3)].uval) * (yyvsp[(3) - (3)].uval); }
|
|
break;
|
|
|
|
case 269:
|
|
/* Line 1787 of yacc.c */
|
|
#line 1292 "parser.y"
|
|
{ (yyval.uval) = ((yyvsp[(3) - (3)].uval) != 0) ? (yyvsp[(1) - (3)].uval) / (yyvsp[(3) - (3)].uval) : 0; }
|
|
break;
|
|
|
|
case 270:
|
|
/* Line 1787 of yacc.c */
|
|
#line 1293 "parser.y"
|
|
{ (yyval.uval) = (yyvsp[(1) - (3)].uval) >> (yyvsp[(3) - (3)].uval); }
|
|
break;
|
|
|
|
case 271:
|
|
/* Line 1787 of yacc.c */
|
|
#line 1294 "parser.y"
|
|
{ (yyval.uval) = (yyvsp[(1) - (3)].uval) << (yyvsp[(3) - (3)].uval); }
|
|
break;
|
|
|
|
case 272:
|
|
/* Line 1787 of yacc.c */
|
|
#line 1295 "parser.y"
|
|
{ (yyval.uval) = (yyvsp[(1) - (3)].uval) | (yyvsp[(3) - (3)].uval); }
|
|
break;
|
|
|
|
case 273:
|
|
/* Line 1787 of yacc.c */
|
|
#line 1296 "parser.y"
|
|
{ (yyval.uval) = (yyvsp[(1) - (3)].uval) ^ (yyvsp[(3) - (3)].uval); }
|
|
break;
|
|
|
|
case 274:
|
|
/* Line 1787 of yacc.c */
|
|
#line 1297 "parser.y"
|
|
{ (yyval.uval) = (yyvsp[(1) - (3)].uval) & (yyvsp[(3) - (3)].uval); }
|
|
break;
|
|
|
|
case 275:
|
|
/* Line 1787 of yacc.c */
|
|
#line 1298 "parser.y"
|
|
{ (yyval.uval) = !(yyvsp[(2) - (2)].uval); }
|
|
break;
|
|
|
|
case 276:
|
|
/* Line 1787 of yacc.c */
|
|
#line 1299 "parser.y"
|
|
{ (yyval.uval) = -(yyvsp[(2) - (2)].uval); }
|
|
break;
|
|
|
|
case 277:
|
|
/* Line 1787 of yacc.c */
|
|
#line 1300 "parser.y"
|
|
{ (yyval.uval) = bx_dbg_lin_indirect((yyvsp[(2) - (2)].uval)); }
|
|
break;
|
|
|
|
case 278:
|
|
/* Line 1787 of yacc.c */
|
|
#line 1301 "parser.y"
|
|
{ (yyval.uval) = bx_dbg_phy_indirect((yyvsp[(2) - (2)].uval)); }
|
|
break;
|
|
|
|
case 279:
|
|
/* Line 1787 of yacc.c */
|
|
#line 1302 "parser.y"
|
|
{ (yyval.uval) = (yyvsp[(2) - (3)].uval); }
|
|
break;
|
|
|
|
|
|
/* Line 1787 of yacc.c */
|
|
#line 4202 "y.tab.c"
|
|
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 (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 (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);
|
|
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);
|
|
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 (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);
|
|
}
|
|
/* 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);
|
|
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);
|
|
}
|
|
|
|
|
|
/* Line 2050 of yacc.c */
|
|
#line 1305 "parser.y"
|
|
|
|
#endif /* if BX_DEBUGGER */
|
|
/* The #endif is appended by the makefile after running yacc. */
|