/* A Bison parser, made by GNU Bison 3.0.4. */
/* Bison implementation for Yacc-like parsers in C
Copyright (C) 1984, 1989-1990, 2000-2015 Free Software Foundation, Inc.
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see . */
/* As a special exception, you may create a larger work that contains
part or all of the Bison parser skeleton and distribute that work
under terms of your choice, so long as that work isn't itself a
parser generator using the skeleton or a modified version thereof
as a parser skeleton. Alternatively, if you modify or redistribute
the parser skeleton itself, you may (at your option) remove this
special exception, which will cause the skeleton and the resulting
Bison output files to be licensed under the GNU General Public
License without this special exception.
This special exception was added by the Free Software Foundation in
version 2.2 of Bison. */
/* C LALR(1) parser skeleton written by Richard Stallman, by
simplifying the original so-called "semantic" parser. */
/* All symbols defined below should begin with yy or YY, to avoid
infringing on user name space. This should be done even for local
variables, as they might otherwise be expanded by user macros.
There are some unavoidable exceptions within include files to
define necessary library symbols; they are noted "INFRINGES ON
USER NAME SPACE" below. */
/* Identify Bison output. */
#define YYBISON 1
/* Bison version. */
#define YYBISON_VERSION "3.0.4"
/* Skeleton name. */
#define YYSKELETON_NAME "yacc.c"
/* Pure parsers. */
#define YYPURE 1
/* Push parsers. */
#define YYPUSH 0
/* Pull parsers. */
#define YYPULL 1
/* Copy the first part of user declarations. */
#line 38 "cp-name-parser.y" /* yacc.c:339 */
#include "defs.h"
#include
#include "safe-ctype.h"
#include "demangle.h"
#include "cp-support.h"
#include "c-support.h"
#include "parser-defs.h"
#define GDB_YY_REMAP_PREFIX cpname
#include "yy-remap.h"
/* The components built by the parser are allocated ahead of time,
and cached in this structure. */
#define ALLOC_CHUNK 100
struct demangle_info {
int used;
struct demangle_info *next;
struct demangle_component comps[ALLOC_CHUNK];
};
#line 93 "cp-name-parser.c.tmp" /* yacc.c:339 */
# ifndef YY_NULLPTRPTR
# if defined __cplusplus && 201103L <= __cplusplus
# define YY_NULLPTRPTR nullptr
# else
# define YY_NULLPTRPTR 0
# endif
# endif
/* Enabling verbose error messages. */
#ifdef YYERROR_VERBOSE
# undef YYERROR_VERBOSE
# define YYERROR_VERBOSE 1
#else
# define YYERROR_VERBOSE 0
#endif
/* Debug traces. */
#ifndef YYDEBUG
# define YYDEBUG 0
#endif
#if YYDEBUG
extern int yydebug;
#endif
/* Token type. */
#ifndef YYTOKENTYPE
# define YYTOKENTYPE
enum yytokentype
{
INT = 258,
FLOAT = 259,
NAME = 260,
STRUCT = 261,
CLASS = 262,
UNION = 263,
ENUM = 264,
SIZEOF = 265,
UNSIGNED = 266,
COLONCOLON = 267,
TEMPLATE = 268,
ERROR = 269,
NEW = 270,
DELETE = 271,
OPERATOR = 272,
STATIC_CAST = 273,
REINTERPRET_CAST = 274,
DYNAMIC_CAST = 275,
SIGNED_KEYWORD = 276,
LONG = 277,
SHORT = 278,
INT_KEYWORD = 279,
CONST_KEYWORD = 280,
VOLATILE_KEYWORD = 281,
DOUBLE_KEYWORD = 282,
BOOL = 283,
ELLIPSIS = 284,
RESTRICT = 285,
VOID = 286,
FLOAT_KEYWORD = 287,
CHAR = 288,
WCHAR_T = 289,
ASSIGN_MODIFY = 290,
TRUEKEYWORD = 291,
FALSEKEYWORD = 292,
DEMANGLER_SPECIAL = 293,
CONSTRUCTION_VTABLE = 294,
CONSTRUCTION_IN = 295,
OROR = 296,
ANDAND = 297,
EQUAL = 298,
NOTEQUAL = 299,
LEQ = 300,
GEQ = 301,
LSH = 302,
RSH = 303,
UNARY = 304,
INCREMENT = 305,
DECREMENT = 306,
ARROW = 307
};
#endif
/* Tokens. */
#define INT 258
#define FLOAT 259
#define NAME 260
#define STRUCT 261
#define CLASS 262
#define UNION 263
#define ENUM 264
#define SIZEOF 265
#define UNSIGNED 266
#define COLONCOLON 267
#define TEMPLATE 268
#define ERROR 269
#define NEW 270
#define DELETE 271
#define OPERATOR 272
#define STATIC_CAST 273
#define REINTERPRET_CAST 274
#define DYNAMIC_CAST 275
#define SIGNED_KEYWORD 276
#define LONG 277
#define SHORT 278
#define INT_KEYWORD 279
#define CONST_KEYWORD 280
#define VOLATILE_KEYWORD 281
#define DOUBLE_KEYWORD 282
#define BOOL 283
#define ELLIPSIS 284
#define RESTRICT 285
#define VOID 286
#define FLOAT_KEYWORD 287
#define CHAR 288
#define WCHAR_T 289
#define ASSIGN_MODIFY 290
#define TRUEKEYWORD 291
#define FALSEKEYWORD 292
#define DEMANGLER_SPECIAL 293
#define CONSTRUCTION_VTABLE 294
#define CONSTRUCTION_IN 295
#define OROR 296
#define ANDAND 297
#define EQUAL 298
#define NOTEQUAL 299
#define LEQ 300
#define GEQ 301
#define LSH 302
#define RSH 303
#define UNARY 304
#define INCREMENT 305
#define DECREMENT 306
#define ARROW 307
/* Value type. */
#if ! defined YYSTYPE && ! defined YYSTYPE_IS_DECLARED
union YYSTYPE
{
#line 66 "cp-name-parser.y" /* yacc.c:355 */
struct demangle_component *comp;
struct nested {
struct demangle_component *comp;
struct demangle_component **last;
} nested;
struct {
struct demangle_component *comp, *last;
} nested1;
struct {
struct demangle_component *comp, **last;
struct nested fn;
struct demangle_component *start;
int fold_flag;
} abstract;
int lval;
const char *opname;
#line 254 "cp-name-parser.c.tmp" /* yacc.c:355 */
};
typedef union YYSTYPE YYSTYPE;
# define YYSTYPE_IS_TRIVIAL 1
# define YYSTYPE_IS_DECLARED 1
#endif
int yyparse (struct cpname_state *state);
/* Copy the second part of user declarations. */
#line 85 "cp-name-parser.y" /* yacc.c:358 */
struct cpname_state
{
/* LEXPTR is the current pointer into our lex buffer. PREV_LEXPTR
is the start of the last token lexed, only used for diagnostics.
ERROR_LEXPTR is the first place an error occurred. GLOBAL_ERRMSG
is the first error message encountered. */
const char *lexptr, *prev_lexptr, *error_lexptr, *global_errmsg;
struct demangle_info *demangle_info;
/* The parse tree created by the parser is stored here after a
successful parse. */
struct demangle_component *global_result;
struct demangle_component *d_grab ();
/* Helper functions. These wrap the demangler tree interface,
handle allocation from our global store, and return the allocated
component. */
struct demangle_component *fill_comp (enum demangle_component_type d_type,
struct demangle_component *lhs,
struct demangle_component *rhs);
struct demangle_component *make_operator (const char *name, int args);
struct demangle_component *make_dtor (enum gnu_v3_dtor_kinds kind,
struct demangle_component *name);
struct demangle_component *make_builtin_type (const char *name);
struct demangle_component *make_name (const char *name, int len);
struct demangle_component *d_qualify (struct demangle_component *lhs,
int qualifiers, int is_method);
struct demangle_component *d_int_type (int flags);
struct demangle_component *d_unary (const char *name,
struct demangle_component *lhs);
struct demangle_component *d_binary (const char *name,
struct demangle_component *lhs,
struct demangle_component *rhs);
int parse_number (const char *p, int len, int parsed_float, YYSTYPE *lvalp);
};
struct demangle_component *
cpname_state::d_grab ()
{
struct demangle_info *more;
if (demangle_info->used >= ALLOC_CHUNK)
{
if (demangle_info->next == NULL)
{
more = XNEW (struct demangle_info);
more->next = NULL;
demangle_info->next = more;
}
else
more = demangle_info->next;
more->used = 0;
demangle_info = more;
}
return &demangle_info->comps[demangle_info->used++];
}
/* Flags passed to d_qualify. */
#define QUAL_CONST 1
#define QUAL_RESTRICT 2
#define QUAL_VOLATILE 4
/* Flags passed to d_int_type. */
#define INT_CHAR (1 << 0)
#define INT_SHORT (1 << 1)
#define INT_LONG (1 << 2)
#define INT_LLONG (1 << 3)
#define INT_SIGNED (1 << 4)
#define INT_UNSIGNED (1 << 5)
/* Enable yydebug for the stand-alone parser. */
#ifdef TEST_CPNAMES
# define YYDEBUG 1
#endif
/* Helper functions. These wrap the demangler tree interface, handle
allocation from our global store, and return the allocated component. */
struct demangle_component *
cpname_state::fill_comp (enum demangle_component_type d_type,
struct demangle_component *lhs,
struct demangle_component *rhs)
{
struct demangle_component *ret = d_grab ();
int i;
i = cplus_demangle_fill_component (ret, d_type, lhs, rhs);
gdb_assert (i);
return ret;
}
struct demangle_component *
cpname_state::make_operator (const char *name, int args)
{
struct demangle_component *ret = d_grab ();
int i;
i = cplus_demangle_fill_operator (ret, name, args);
gdb_assert (i);
return ret;
}
struct demangle_component *
cpname_state::make_dtor (enum gnu_v3_dtor_kinds kind,
struct demangle_component *name)
{
struct demangle_component *ret = d_grab ();
int i;
i = cplus_demangle_fill_dtor (ret, kind, name);
gdb_assert (i);
return ret;
}
struct demangle_component *
cpname_state::make_builtin_type (const char *name)
{
struct demangle_component *ret = d_grab ();
int i;
i = cplus_demangle_fill_builtin_type (ret, name);
gdb_assert (i);
return ret;
}
struct demangle_component *
cpname_state::make_name (const char *name, int len)
{
struct demangle_component *ret = d_grab ();
int i;
i = cplus_demangle_fill_name (ret, name, len);
gdb_assert (i);
return ret;
}
#define d_left(dc) (dc)->u.s_binary.left
#define d_right(dc) (dc)->u.s_binary.right
static int yylex (YYSTYPE *, cpname_state *);
static void yyerror (cpname_state *, const char *);
#line 437 "cp-name-parser.c.tmp" /* yacc.c:358 */
#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;
#else
typedef signed char 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
# include /* INFRINGES ON USER NAME SPACE */
# define YYSIZE_T size_t
# else
# define YYSIZE_T unsigned int
# endif
#endif
#define YYSIZE_MAXIMUM ((YYSIZE_T) -1)
#ifndef YY_
# if defined YYENABLE_NLS && YYENABLE_NLS
# if ENABLE_NLS
# include /* INFRINGES ON USER NAME SPACE */
# define YY_(Msgid) dgettext ("bison-runtime", Msgid)
# endif
# endif
# ifndef YY_
# define YY_(Msgid) Msgid
# endif
#endif
#ifndef YY_ATTRIBUTE
# if (defined __GNUC__ \
&& (2 < __GNUC__ || (__GNUC__ == 2 && 96 <= __GNUC_MINOR__))) \
|| defined __SUNPRO_C && 0x5110 <= __SUNPRO_C
# define YY_ATTRIBUTE(Spec) __attribute__(Spec)
# else
# define YY_ATTRIBUTE(Spec) /* empty */
# endif
#endif
#ifndef YY_ATTRIBUTE_PURE
# define YY_ATTRIBUTE_PURE YY_ATTRIBUTE ((__pure__))
#endif
#ifndef YY_ATTRIBUTE_UNUSED
# define YY_ATTRIBUTE_UNUSED YY_ATTRIBUTE ((__unused__))
#endif
#if !defined _Noreturn \
&& (!defined __STDC_VERSION__ || __STDC_VERSION__ < 201112)
# if defined _MSC_VER && 1200 <= _MSC_VER
# define _Noreturn __declspec (noreturn)
# else
# define _Noreturn YY_ATTRIBUTE ((__noreturn__))
# 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
#if defined __GNUC__ && 407 <= __GNUC__ * 100 + __GNUC_MINOR__
/* Suppress an incorrect diagnostic about yylval being uninitialized. */
# define YY_IGNORE_MAYBE_UNINITIALIZED_BEGIN \
_Pragma ("GCC diagnostic push") \
_Pragma ("GCC diagnostic ignored \"-Wuninitialized\"")\
_Pragma ("GCC diagnostic ignored \"-Wmaybe-uninitialized\"")
# define YY_IGNORE_MAYBE_UNINITIALIZED_END \
_Pragma ("GCC diagnostic pop")
#else
# define YY_INITIAL_VALUE(Value) Value
#endif
#ifndef YY_IGNORE_MAYBE_UNINITIALIZED_BEGIN
# define YY_IGNORE_MAYBE_UNINITIALIZED_BEGIN
# define YY_IGNORE_MAYBE_UNINITIALIZED_END
#endif
#ifndef YY_INITIAL_VALUE
# define YY_INITIAL_VALUE(Value) /* Nothing. */
#endif
#if ! defined yyoverflow || YYERROR_VERBOSE
/* The parser invokes alloca or xmalloc; define the necessary symbols. */
# ifdef YYSTACK_USE_ALLOCA
# if YYSTACK_USE_ALLOCA
# ifdef __GNUC__
# define YYSTACK_ALLOC __builtin_alloca
# elif defined __BUILTIN_VA_ARG_INCR
# include /* INFRINGES ON USER NAME SPACE */
# elif defined _AIX
# define YYSTACK_ALLOC __alloca
# elif defined _MSC_VER
# define alloca _alloca
# else
# define YYSTACK_ALLOC alloca
# if ! defined _ALLOCA_H && ! defined EXIT_SUCCESS
# include /* INFRINGES ON USER NAME SPACE */
/* Use EXIT_SUCCESS as a witness for stdlib.h. */
# ifndef EXIT_SUCCESS
# define EXIT_SUCCESS 0
# endif
# endif
# endif
# endif
# endif
# ifdef YYSTACK_ALLOC
/* Pacify GCC's 'empty if-body' warning. */
# define YYSTACK_FREE(Ptr) do { /* empty */; } while (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 xmalloc) \
&& (defined YYFREE || defined xfree)))
# include /* INFRINGES ON USER NAME SPACE */
# ifndef EXIT_SUCCESS
# define EXIT_SUCCESS 0
# endif
# endif
# ifndef YYMALLOC
# define YYMALLOC xmalloc
# if ! defined xmalloc && ! defined EXIT_SUCCESS
void *xmalloc (YYSIZE_T); /* INFRINGES ON USER NAME SPACE */
# endif
# endif
# ifndef YYFREE
# define YYFREE xfree
# if ! defined xfree && ! defined EXIT_SUCCESS
void xfree (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 (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 (0)
# endif
# endif
#endif /* !YYCOPY_NEEDED */
/* YYFINAL -- State number of the termination state. */
#define YYFINAL 84
/* YYLAST -- Last index in YYTABLE. */
#define YYLAST 1137
/* YYNTOKENS -- Number of terminals. */
#define YYNTOKENS 75
/* YYNNTS -- Number of nonterminals. */
#define YYNNTS 40
/* YYNRULES -- Number of rules. */
#define YYNRULES 195
/* YYNSTATES -- Number of states. */
#define YYNSTATES 325
/* YYTRANSLATE[YYX] -- Symbol number corresponding to YYX as returned
by yylex, with out-of-bounds checking. */
#define YYUNDEFTOK 2
#define YYMAXUTOK 307
#define YYTRANSLATE(YYX) \
((unsigned int) (YYX) <= YYMAXUTOK ? yytranslate[YYX] : YYUNDEFTOK)
/* YYTRANSLATE[TOKEN-NUM] -- Symbol number corresponding to TOKEN-NUM
as returned by yylex, without out-of-bounds checking. */
static const yytype_uint8 yytranslate[] =
{
0, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 72, 2, 2, 2, 63, 49, 2,
73, 41, 61, 59, 42, 60, 68, 62, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 74, 2,
52, 43, 53, 44, 58, 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, 69, 2, 70, 48, 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, 47, 2, 71, 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, 45, 46, 50, 51,
54, 55, 56, 57, 64, 65, 66, 67
};
#if YYDEBUG
/* YYRLINE[YYN] -- Source line where rule number YYN was defined. */
static const yytype_uint16 yyrline[] =
{
0, 348, 348, 352, 354, 356, 361, 362, 369, 378,
385, 389, 392, 411, 413, 417, 423, 429, 435, 441,
443, 445, 447, 449, 451, 453, 455, 457, 459, 461,
463, 465, 467, 469, 471, 473, 475, 477, 479, 481,
483, 485, 487, 489, 491, 493, 495, 497, 505, 510,
515, 519, 524, 532, 533, 535, 547, 548, 554, 556,
557, 559, 562, 563, 566, 567, 571, 573, 576, 580,
585, 589, 598, 602, 605, 616, 617, 621, 623, 625,
628, 632, 637, 642, 648, 658, 662, 666, 674, 675,
678, 680, 682, 686, 687, 694, 696, 698, 700, 702,
704, 708, 709, 713, 715, 717, 719, 721, 723, 725,
729, 734, 737, 740, 746, 754, 756, 770, 772, 773,
775, 778, 780, 781, 783, 786, 788, 790, 792, 797,
800, 805, 812, 816, 827, 833, 851, 854, 862, 864,
875, 882, 883, 889, 893, 897, 899, 904, 909, 921,
925, 929, 937, 942, 951, 955, 960, 965, 969, 975,
981, 984, 991, 993, 998, 1002, 1006, 1013, 1029, 1036,
1043, 1062, 1066, 1070, 1074, 1078, 1082, 1086, 1090, 1094,
1098, 1102, 1106, 1110, 1114, 1118, 1122, 1126, 1131, 1135,
1139, 1146, 1150, 1153, 1162, 1171
};
#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", "INT", "FLOAT", "NAME", "STRUCT",
"CLASS", "UNION", "ENUM", "SIZEOF", "UNSIGNED", "COLONCOLON", "TEMPLATE",
"ERROR", "NEW", "DELETE", "OPERATOR", "STATIC_CAST", "REINTERPRET_CAST",
"DYNAMIC_CAST", "SIGNED_KEYWORD", "LONG", "SHORT", "INT_KEYWORD",
"CONST_KEYWORD", "VOLATILE_KEYWORD", "DOUBLE_KEYWORD", "BOOL",
"ELLIPSIS", "RESTRICT", "VOID", "FLOAT_KEYWORD", "CHAR", "WCHAR_T",
"ASSIGN_MODIFY", "TRUEKEYWORD", "FALSEKEYWORD", "DEMANGLER_SPECIAL",
"CONSTRUCTION_VTABLE", "CONSTRUCTION_IN", "')'", "','", "'='", "'?'",
"OROR", "ANDAND", "'|'", "'^'", "'&'", "EQUAL", "NOTEQUAL", "'<'", "'>'",
"LEQ", "GEQ", "LSH", "RSH", "'@'", "'+'", "'-'", "'*'", "'/'", "'%'",
"UNARY", "INCREMENT", "DECREMENT", "ARROW", "'.'", "'['", "']'", "'~'",
"'!'", "'('", "':'", "$accept", "result", "start", "start_opt",
"function", "demangler_special", "oper", "conversion_op",
"conversion_op_name", "unqualified_name", "colon_name", "name",
"colon_ext_name", "colon_ext_only", "ext_only_name", "nested_name",
"templ", "template_params", "template_arg", "function_args",
"function_arglist", "qualifiers_opt", "qualifier", "qualifiers",
"int_part", "int_seq", "builtin_type", "ptr_operator", "array_indicator",
"typespec_2", "abstract_declarator", "direct_abstract_declarator",
"abstract_declarator_fn", "type", "declarator", "direct_declarator",
"declarator_1", "direct_declarator_1", "exp", "exp1", YY_NULLPTRPTR
};
#endif
# ifdef YYPRINT
/* YYTOKNUM[NUM] -- (External) token number corresponding to the
(internal) symbol number NUM (which must be that of a token). */
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, 41, 44, 61, 63, 296, 297, 124, 94, 38,
298, 299, 60, 62, 300, 301, 302, 303, 64, 43,
45, 42, 47, 37, 304, 305, 306, 307, 46, 91,
93, 126, 33, 40, 58
};
# endif
#define YYPACT_NINF -187
#define yypact_value_is_default(Yystate) \
(!!((Yystate) == (-187)))
#define YYTABLE_NINF -1
#define yytable_value_is_error(Yytable_value) \
0
/* YYPACT[STATE-NUM] -- Index in YYTABLE of the portion describing
STATE-NUM. */
static const yytype_int16 yypact[] =
{
833, 39, -187, 42, 540, -187, -12, -187, -187, -187,
-187, -187, -187, -187, -187, -187, -187, -187, 833, 833,
27, 41, -187, -187, -187, 5, -187, 710, -187, 36,
-5, -187, 43, 65, 36, 506, -187, 120, 36, 711,
-187, -187, 329, -187, 36, -187, 43, 73, 16, 21,
-187, -187, -187, -187, -187, -187, -187, -187, -187, -187,
-187, -187, -187, -187, -187, -187, -187, -187, -187, -187,
-187, -187, -187, 34, 30, -187, -187, 64, 115, -187,
-187, -187, 83, -187, -187, 329, 39, 833, -187, -187,
36, 6, 603, -187, 12, 65, 98, 750, -187, -49,
-187, -187, 857, 98, 70, -187, -187, 124, -187, -187,
73, 36, 36, -187, -187, -187, 48, 860, 603, -187,
-187, -49, -187, 23, 98, 720, -187, -49, -187, -49,
-187, -187, 53, 80, 87, 95, -187, -187, 656, 476,
476, 476, 428, 10, -187, 780, 325, -187, -187, 79,
82, -187, -187, -187, 833, 22, -187, 28, -187, -187,
89, -187, 73, 116, 36, 780, 37, 114, 780, 780,
123, 70, 36, 124, 833, -187, 161, -187, 166, -187,
-187, -187, -187, 36, -187, -187, -187, 50, 729, 168,
-187, -187, 780, -187, -187, -187, 169, -187, 979, 979,
979, 979, 833, -187, 105, 105, 105, 680, 780, 142,
970, 143, 329, -187, -187, 476, 476, 476, 476, 476,
476, 476, 476, 476, 476, 476, 476, 476, 476, 476,
476, 476, 476, 180, 181, -187, -187, -187, -187, 36,
-187, 45, 36, -187, 36, 949, -187, -187, -187, 51,
833, -187, 729, -187, 729, 148, -49, 833, 833, 152,
138, 141, 144, 154, 833, -187, 476, 476, -187, -187,
890, 993, 1015, 1036, 1056, 359, 753, 753, 1069, 1069,
1069, 241, 241, 178, 178, 105, 105, 105, -187, -187,
-187, -187, -187, -187, 780, -187, 157, -187, -187, -187,
-187, -187, -187, -187, 126, 128, 131, -187, 164, 105,
325, 476, -187, -187, 471, 471, 471, -187, 325, 188,
189, 192, -187, -187, -187
};
/* YYDEFACT[STATE-NUM] -- Default reduction number in state STATE-NUM.
Performed when YYTABLE does not specify something else to do. Zero
means the default is an error. */
static const yytype_uint8 yydefact[] =
{
0, 59, 97, 0, 0, 96, 99, 100, 95, 92,
91, 105, 107, 90, 109, 104, 98, 108, 0, 0,
0, 0, 2, 5, 4, 53, 50, 6, 67, 122,
0, 64, 0, 61, 93, 0, 101, 103, 118, 141,
3, 68, 0, 52, 126, 65, 0, 0, 15, 16,
32, 43, 29, 40, 39, 26, 24, 25, 35, 36,
30, 31, 37, 38, 33, 34, 19, 20, 21, 22,
23, 41, 42, 45, 0, 27, 28, 0, 0, 48,
106, 13, 0, 55, 1, 0, 0, 0, 112, 111,
88, 0, 0, 11, 0, 0, 6, 136, 135, 138,
12, 121, 0, 6, 58, 49, 66, 60, 70, 94,
0, 124, 120, 99, 102, 117, 0, 0, 0, 62,
56, 150, 63, 0, 6, 129, 142, 131, 8, 151,
191, 192, 0, 0, 0, 0, 194, 195, 0, 0,
0, 0, 0, 0, 73, 75, 79, 125, 51, 0,
0, 44, 47, 46, 0, 0, 7, 0, 110, 89,
0, 115, 0, 109, 88, 0, 0, 0, 129, 80,
0, 0, 88, 0, 0, 140, 0, 137, 133, 134,
10, 69, 71, 128, 123, 119, 57, 0, 129, 157,
158, 9, 0, 130, 149, 133, 155, 156, 0, 0,
0, 0, 0, 77, 164, 166, 165, 0, 141, 0,
160, 0, 0, 72, 76, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 17, 18, 14, 54, 88,
116, 0, 88, 87, 88, 0, 81, 132, 113, 0,
0, 127, 0, 148, 129, 0, 144, 0, 0, 0,
0, 0, 0, 0, 0, 162, 0, 0, 159, 74,
0, 187, 186, 185, 184, 183, 178, 179, 182, 180,
181, 176, 177, 174, 175, 171, 172, 173, 188, 189,
114, 86, 85, 84, 82, 139, 0, 143, 154, 146,
147, 152, 153, 193, 0, 0, 0, 78, 0, 167,
161, 0, 83, 145, 0, 0, 0, 163, 190, 0,
0, 0, 168, 170, 169
};
/* YYPGOTO[NTERM-NUM]. */
static const yytype_int16 yypgoto[] =
{
-187, -187, 25, -66, -187, -187, -187, 3, -187, -20,
-187, -1, -32, 15, 1, 0, 150, 149, 31, -187,
-25, -156, -187, 234, 205, -187, 213, -17, -98, 196,
-18, -16, 158, -129, -106, -187, 134, -187, -6, -186
};
/* YYDEFGOTO[NTERM-NUM]. */
static const yytype_int16 yydefgoto[] =
{
-1, 21, 156, 93, 23, 24, 25, 26, 27, 28,
119, 29, 253, 30, 31, 78, 33, 143, 144, 167,
96, 158, 34, 35, 36, 37, 38, 168, 98, 39,
170, 127, 100, 40, 255, 256, 128, 129, 210, 211
};
/* YYTABLE[YYPACT[STATE-NUM]] -- What to do in state STATE-NUM. If
positive, shift that token. If negative, reduce the rule whose
number is the opposite. If YYTABLE_NINF, syntax error. */
static const yytype_uint16 yytable[] =
{
32, 179, 44, 46, 45, 103, 43, 121, 243, 160,
97, 99, 106, 209, 124, 80, 248, 171, 32, 32,
91, 126, 125, 190, 102, 22, 106, 94, 104, 179,
175, 197, 83, 104, 111, 105, 146, 180, 120, 123,
117, 84, 104, 81, 82, 4, 44, 1, 104, 148,
104, 41, 212, 1, 122, 104, 171, 85, 191, 4,
4, 9, 10, 213, 212, 117, 13, 117, 102, 259,
260, 261, 262, 172, 178, 238, 161, 108, 1, 146,
97, 99, 181, 290, 172, 149, 291, 157, 292, 239,
150, 42, 166, 121, 20, 151, 189, 94, 172, 20,
152, 188, 195, 106, 196, 153, 239, 193, 125, 183,
174, 239, 239, 20, 20, 186, 187, 45, 166, 20,
104, 20, 42, 154, 120, 123, 198, 214, 319, 320,
321, 2, 199, 204, 205, 206, 182, 106, 32, 200,
122, 5, 113, 7, 8, 94, 296, 201, 297, 235,
193, 246, 236, 16, 32, 244, 245, 242, 300, 240,
105, 44, 241, 203, 247, 94, 86, 106, 94, 94,
193, 254, 233, 234, 32, 188, 249, 95, 250, 237,
257, 258, 107, 266, 268, 288, 289, 120, 123, 298,
126, 304, 94, 303, 305, 307, 107, 306, 313, 314,
79, 315, 32, 122, 316, 317, 146, 32, 94, 270,
271, 272, 273, 274, 275, 276, 277, 278, 279, 280,
281, 282, 283, 284, 285, 286, 287, 263, 107, 322,
323, 299, 265, 324, 155, 254, 193, 254, 145, 230,
231, 232, 114, 269, 173, 233, 234, 95, 112, 0,
32, 120, 123, 120, 123, 177, 0, 32, 32, 194,
309, 310, 0, 101, 32, 0, 0, 122, 109, 122,
0, 0, 115, 107, 0, 295, 312, 0, 147, 0,
0, 145, 301, 302, 0, 0, 0, 0, 169, 308,
0, 0, 0, 0, 94, 95, 0, 0, 169, 0,
228, 229, 230, 231, 232, 318, 0, 107, 233, 234,
0, 0, 0, 0, 169, 95, 107, 0, 95, 95,
0, 0, 0, 0, 159, 0, 95, 0, 0, 0,
0, 0, 130, 131, 1, 0, 0, 107, 208, 132,
2, 47, 95, 0, 0, 184, 185, 133, 134, 135,
5, 6, 7, 8, 9, 10, 11, 12, 95, 13,
14, 15, 16, 17, 0, 136, 137, 0, 0, 215,
216, 217, 218, 219, 220, 221, 222, 223, 138, 224,
225, 226, 227, 0, 228, 229, 230, 231, 232, 139,
0, 107, 233, 234, 208, 208, 208, 208, 159, 173,
140, 141, 142, 0, 0, 0, 159, 0, 145, 221,
222, 223, 0, 224, 225, 226, 227, 251, 228, 229,
230, 231, 232, 0, 0, 0, 233, 234, 0, 0,
0, 130, 131, 1, 0, 0, 0, 0, 132, 2,
47, 294, 0, 0, 95, 0, 133, 134, 135, 5,
6, 7, 8, 9, 10, 11, 12, 0, 13, 14,
15, 16, 17, 0, 136, 137, 0, 0, 0, 0,
0, 0, 0, 159, 130, 131, 159, 207, 159, 130,
131, 132, 0, 0, 0, 0, 132, 0, 139, 133,
134, 135, 0, 0, 133, 134, 135, 0, 0, 140,
141, 142, 0, 0, 0, 0, 0, 136, 137, 0,
0, 1, 136, 137, 0, 0, 0, 2, 110, 0,
207, 0, 0, 0, 0, 0, 0, 5, 6, 7,
8, 139, 0, 11, 12, 0, 139, 14, 15, 16,
17, 0, 140, 141, 142, 1, 0, 140, 141, 142,
0, 2, 47, 0, 0, 48, 49, 0, 0, 0,
0, 5, 6, 7, 8, 9, 10, 11, 12, 0,
13, 14, 15, 16, 17, 50, 0, 0, 0, 0,
0, 0, 51, 52, 0, 53, 54, 55, 56, 57,
58, 59, 60, 61, 62, 63, 64, 65, 0, 66,
67, 68, 69, 70, 0, 71, 72, 73, 1, 74,
0, 75, 76, 77, 2, 162, 0, 0, 0, 0,
0, 0, 0, 0, 5, 6, 7, 8, 9, 10,
11, 12, 0, 13, 163, 15, 16, 17, 0, 0,
0, 0, 0, 0, 164, 0, 0, 0, 0, 88,
0, 0, 89, 0, 0, 0, 0, 0, 0, 0,
0, 1, 0, 0, 90, 0, 0, 2, 3, 0,
0, 0, 91, 4, 0, 0, 165, 5, 6, 7,
8, 9, 10, 11, 12, 1, 13, 14, 15, 16,
17, 2, 3, 0, 18, 19, 0, 4, 0, 0,
0, 5, 6, 7, 8, 9, 10, 11, 12, 0,
13, 14, 15, 16, 17, 86, 1, 0, 18, 19,
0, 0, 87, 116, 0, 1, 0, 20, 117, 202,
0, 0, 116, 0, 1, 0, 0, 117, 0, 0,
0, 116, 0, 0, 0, 0, 117, 0, 0, 0,
0, 20, 0, 264, 0, 86, 88, 88, 0, 89,
89, 0, 176, 0, 0, 0, 88, 0, 0, 89,
0, 90, 90, 0, 0, 88, 0, 0, 89, 91,
91, 90, 20, 92, 118, 86, 0, 0, 0, 91,
90, 20, 176, 192, 0, 0, 88, 0, 91, 89,
20, 0, 252, 0, 0, 223, 0, 224, 225, 226,
227, 90, 228, 229, 230, 231, 232, 0, 0, 91,
233, 234, 0, 92, 0, 0, 88, 0, 0, 89,
0, 0, 0, 0, 0, 0, 0, 0, 1, 0,
0, 90, 0, 0, 2, 3, 0, 0, 0, 91,
4, 0, 0, 165, 5, 6, 7, 8, 9, 10,
11, 12, 1, 13, 14, 15, 16, 17, 2, 47,
0, 18, 19, 0, 0, 48, 49, 0, 5, 6,
7, 8, 9, 10, 11, 12, 0, 13, 163, 15,
16, 17, 0, 0, 0, 50, 0, 0, 164, 0,
0, 0, 51, 52, 20, 53, 54, 55, 56, 57,
58, 59, 60, 61, 62, 63, 64, 65, 0, 66,
67, 68, 69, 70, 0, 71, 72, 73, 0, 74,
0, 75, 76, 77, 215, 216, 217, 218, 219, 220,
221, 222, 223, 0, 224, 225, 226, 227, 0, 228,
229, 230, 231, 232, 1, 0, 0, 233, 234, 0,
2, 47, 0, 0, 311, 0, 0, 0, 0, 0,
5, 6, 7, 8, 9, 10, 11, 12, 293, 13,
14, 15, 16, 17, 1, 0, 0, 0, 0, 0,
2, 47, 0, 0, 0, 0, 0, 0, 0, 0,
5, 6, 7, 8, 9, 10, 11, 12, 0, 13,
14, 15, 16, 17, 215, 216, 217, 218, 219, 220,
221, 222, 223, 267, 224, 225, 226, 227, 0, 228,
229, 230, 231, 232, 0, 0, 0, 233, 234, 217,
218, 219, 220, 221, 222, 223, 0, 224, 225, 226,
227, 0, 228, 229, 230, 231, 232, 0, 0, 0,
233, 234, 218, 219, 220, 221, 222, 223, 0, 224,
225, 226, 227, 0, 228, 229, 230, 231, 232, 0,
0, 0, 233, 234, 219, 220, 221, 222, 223, 0,
224, 225, 226, 227, 0, 228, 229, 230, 231, 232,
0, 0, 0, 233, 234, 220, 221, 222, 223, 0,
224, 225, 226, 227, 0, 228, 229, 230, 231, 232,
0, 0, 0, 233, 234, 226, 227, 0, 228, 229,
230, 231, 232, 0, 0, 0, 233, 234
};
static const yytype_int16 yycheck[] =
{
0, 99, 3, 3, 3, 30, 3, 39, 164, 3,
27, 27, 32, 142, 39, 27, 172, 5, 18, 19,
69, 39, 39, 121, 73, 0, 46, 27, 5, 127,
96, 129, 5, 5, 35, 32, 42, 103, 39, 39,
17, 0, 5, 18, 19, 17, 47, 5, 5, 46,
5, 12, 42, 5, 39, 5, 5, 52, 124, 17,
17, 25, 26, 53, 42, 17, 30, 17, 73, 198,
199, 200, 201, 61, 99, 53, 70, 12, 5, 85,
97, 97, 12, 239, 61, 69, 242, 87, 244, 61,
69, 52, 92, 125, 71, 61, 121, 97, 61, 71,
70, 118, 127, 123, 129, 41, 61, 125, 125, 110,
12, 61, 61, 71, 71, 116, 116, 116, 118, 71,
5, 71, 52, 40, 125, 125, 73, 145, 314, 315,
316, 11, 52, 139, 140, 141, 12, 157, 138, 52,
125, 21, 22, 23, 24, 145, 252, 52, 254, 70,
168, 169, 70, 33, 154, 41, 42, 41, 256, 70,
157, 162, 162, 138, 41, 165, 5, 187, 168, 169,
188, 188, 67, 68, 174, 192, 176, 27, 12, 154,
12, 12, 32, 41, 41, 5, 5, 188, 188, 41,
208, 53, 192, 41, 53, 41, 46, 53, 41, 73,
4, 73, 202, 188, 73, 41, 212, 207, 208, 215,
216, 217, 218, 219, 220, 221, 222, 223, 224, 225,
226, 227, 228, 229, 230, 231, 232, 202, 78, 41,
41, 256, 207, 41, 85, 252, 254, 254, 42, 61,
62, 63, 37, 212, 94, 67, 68, 97, 35, -1,
250, 252, 252, 254, 254, 97, -1, 257, 258, 125,
266, 267, -1, 29, 264, -1, -1, 252, 34, 254,
-1, -1, 38, 123, -1, 250, 294, -1, 44, -1,
-1, 85, 257, 258, -1, -1, -1, -1, 92, 264,
-1, -1, -1, -1, 294, 145, -1, -1, 102, -1,
59, 60, 61, 62, 63, 311, -1, 157, 67, 68,
-1, -1, -1, -1, 118, 165, 166, -1, 168, 169,
-1, -1, -1, -1, 90, -1, 176, -1, -1, -1,
-1, -1, 3, 4, 5, -1, -1, 187, 142, 10,
11, 12, 192, -1, -1, 111, 112, 18, 19, 20,
21, 22, 23, 24, 25, 26, 27, 28, 208, 30,
31, 32, 33, 34, -1, 36, 37, -1, -1, 44,
45, 46, 47, 48, 49, 50, 51, 52, 49, 54,
55, 56, 57, -1, 59, 60, 61, 62, 63, 60,
-1, 241, 67, 68, 198, 199, 200, 201, 164, 249,
71, 72, 73, -1, -1, -1, 172, -1, 212, 50,
51, 52, -1, 54, 55, 56, 57, 183, 59, 60,
61, 62, 63, -1, -1, -1, 67, 68, -1, -1,
-1, 3, 4, 5, -1, -1, -1, -1, 10, 11,
12, 245, -1, -1, 294, -1, 18, 19, 20, 21,
22, 23, 24, 25, 26, 27, 28, -1, 30, 31,
32, 33, 34, -1, 36, 37, -1, -1, -1, -1,
-1, -1, -1, 239, 3, 4, 242, 49, 244, 3,
4, 10, -1, -1, -1, -1, 10, -1, 60, 18,
19, 20, -1, -1, 18, 19, 20, -1, -1, 71,
72, 73, -1, -1, -1, -1, -1, 36, 37, -1,
-1, 5, 36, 37, -1, -1, -1, 11, 12, -1,
49, -1, -1, -1, -1, -1, -1, 21, 22, 23,
24, 60, -1, 27, 28, -1, 60, 31, 32, 33,
34, -1, 71, 72, 73, 5, -1, 71, 72, 73,
-1, 11, 12, -1, -1, 15, 16, -1, -1, -1,
-1, 21, 22, 23, 24, 25, 26, 27, 28, -1,
30, 31, 32, 33, 34, 35, -1, -1, -1, -1,
-1, -1, 42, 43, -1, 45, 46, 47, 48, 49,
50, 51, 52, 53, 54, 55, 56, 57, -1, 59,
60, 61, 62, 63, -1, 65, 66, 67, 5, 69,
-1, 71, 72, 73, 11, 12, -1, -1, -1, -1,
-1, -1, -1, -1, 21, 22, 23, 24, 25, 26,
27, 28, -1, 30, 31, 32, 33, 34, -1, -1,
-1, -1, -1, -1, 41, -1, -1, -1, -1, 46,
-1, -1, 49, -1, -1, -1, -1, -1, -1, -1,
-1, 5, -1, -1, 61, -1, -1, 11, 12, -1,
-1, -1, 69, 17, -1, -1, 73, 21, 22, 23,
24, 25, 26, 27, 28, 5, 30, 31, 32, 33,
34, 11, 12, -1, 38, 39, -1, 17, -1, -1,
-1, 21, 22, 23, 24, 25, 26, 27, 28, -1,
30, 31, 32, 33, 34, 5, 5, -1, 38, 39,
-1, -1, 12, 12, -1, 5, -1, 71, 17, 73,
-1, -1, 12, -1, 5, -1, -1, 17, -1, -1,
-1, 12, -1, -1, -1, -1, 17, -1, -1, -1,
-1, 71, -1, 73, -1, 5, 46, 46, -1, 49,
49, -1, 12, -1, -1, -1, 46, -1, -1, 49,
-1, 61, 61, -1, -1, 46, -1, -1, 49, 69,
69, 61, 71, 73, 73, 5, -1, -1, -1, 69,
61, 71, 12, 73, -1, -1, 46, -1, 69, 49,
71, -1, 73, -1, -1, 52, -1, 54, 55, 56,
57, 61, 59, 60, 61, 62, 63, -1, -1, 69,
67, 68, -1, 73, -1, -1, 46, -1, -1, 49,
-1, -1, -1, -1, -1, -1, -1, -1, 5, -1,
-1, 61, -1, -1, 11, 12, -1, -1, -1, 69,
17, -1, -1, 73, 21, 22, 23, 24, 25, 26,
27, 28, 5, 30, 31, 32, 33, 34, 11, 12,
-1, 38, 39, -1, -1, 15, 16, -1, 21, 22,
23, 24, 25, 26, 27, 28, -1, 30, 31, 32,
33, 34, -1, -1, -1, 35, -1, -1, 41, -1,
-1, -1, 42, 43, 71, 45, 46, 47, 48, 49,
50, 51, 52, 53, 54, 55, 56, 57, -1, 59,
60, 61, 62, 63, -1, 65, 66, 67, -1, 69,
-1, 71, 72, 73, 44, 45, 46, 47, 48, 49,
50, 51, 52, -1, 54, 55, 56, 57, -1, 59,
60, 61, 62, 63, 5, -1, -1, 67, 68, -1,
11, 12, -1, -1, 74, -1, -1, -1, -1, -1,
21, 22, 23, 24, 25, 26, 27, 28, 29, 30,
31, 32, 33, 34, 5, -1, -1, -1, -1, -1,
11, 12, -1, -1, -1, -1, -1, -1, -1, -1,
21, 22, 23, 24, 25, 26, 27, 28, -1, 30,
31, 32, 33, 34, 44, 45, 46, 47, 48, 49,
50, 51, 52, 53, 54, 55, 56, 57, -1, 59,
60, 61, 62, 63, -1, -1, -1, 67, 68, 46,
47, 48, 49, 50, 51, 52, -1, 54, 55, 56,
57, -1, 59, 60, 61, 62, 63, -1, -1, -1,
67, 68, 47, 48, 49, 50, 51, 52, -1, 54,
55, 56, 57, -1, 59, 60, 61, 62, 63, -1,
-1, -1, 67, 68, 48, 49, 50, 51, 52, -1,
54, 55, 56, 57, -1, 59, 60, 61, 62, 63,
-1, -1, -1, 67, 68, 49, 50, 51, 52, -1,
54, 55, 56, 57, -1, 59, 60, 61, 62, 63,
-1, -1, -1, 67, 68, 56, 57, -1, 59, 60,
61, 62, 63, -1, -1, -1, 67, 68
};
/* YYSTOS[STATE-NUM] -- The (internal number of the) accessing
symbol of state STATE-NUM. */
static const yytype_uint8 yystos[] =
{
0, 5, 11, 12, 17, 21, 22, 23, 24, 25,
26, 27, 28, 30, 31, 32, 33, 34, 38, 39,
71, 76, 77, 79, 80, 81, 82, 83, 84, 86,
88, 89, 90, 91, 97, 98, 99, 100, 101, 104,
108, 12, 52, 82, 86, 89, 90, 12, 15, 16,
35, 42, 43, 45, 46, 47, 48, 49, 50, 51,
52, 53, 54, 55, 56, 57, 59, 60, 61, 62,
63, 65, 66, 67, 69, 71, 72, 73, 90, 104,
27, 77, 77, 5, 0, 52, 5, 12, 46, 49,
61, 69, 73, 78, 90, 91, 95, 102, 103, 106,
107, 98, 73, 95, 5, 82, 84, 91, 12, 98,
12, 86, 101, 22, 99, 98, 12, 17, 73, 85,
86, 87, 88, 90, 95, 102, 105, 106, 111, 112,
3, 4, 10, 18, 19, 20, 36, 37, 49, 60,
71, 72, 73, 92, 93, 104, 113, 98, 82, 69,
69, 61, 70, 41, 40, 92, 77, 90, 96, 98,
3, 70, 12, 31, 41, 73, 90, 94, 102, 104,
105, 5, 61, 91, 12, 78, 12, 107, 95, 103,
78, 12, 12, 86, 98, 98, 86, 90, 102, 95,
103, 78, 73, 105, 111, 95, 95, 103, 73, 52,
52, 52, 73, 77, 113, 113, 113, 49, 104, 108,
113, 114, 42, 53, 105, 44, 45, 46, 47, 48,
49, 50, 51, 52, 54, 55, 56, 57, 59, 60,
61, 62, 63, 67, 68, 70, 70, 77, 53, 61,
70, 90, 41, 96, 41, 42, 105, 41, 96, 90,
12, 98, 73, 87, 102, 109, 110, 12, 12, 108,
108, 108, 108, 77, 73, 77, 41, 53, 41, 93,
113, 113, 113, 113, 113, 113, 113, 113, 113, 113,
113, 113, 113, 113, 113, 113, 113, 113, 5, 5,
96, 96, 96, 29, 104, 77, 109, 109, 41, 95,
103, 77, 77, 41, 53, 53, 53, 41, 77, 113,
113, 74, 105, 41, 73, 73, 73, 41, 113, 114,
114, 114, 41, 41, 41
};
/* YYR1[YYN] -- Symbol number of symbol that rule YYN derives. */
static const yytype_uint8 yyr1[] =
{
0, 75, 76, 77, 77, 77, 78, 78, 79, 79,
79, 79, 79, 80, 80, 81, 81, 81, 81, 81,
81, 81, 81, 81, 81, 81, 81, 81, 81, 81,
81, 81, 81, 81, 81, 81, 81, 81, 81, 81,
81, 81, 81, 81, 81, 81, 81, 81, 82, 83,
83, 83, 83, 84, 84, 84, 85, 85, 86, 86,
86, 86, 87, 87, 88, 88, 89, 89, 90, 90,
90, 90, 91, 92, 92, 93, 93, 93, 93, 93,
94, 94, 94, 94, 94, 95, 95, 95, 96, 96,
97, 97, 97, 98, 98, 99, 99, 99, 99, 99,
99, 100, 100, 101, 101, 101, 101, 101, 101, 101,
102, 102, 102, 102, 102, 103, 103, 104, 104, 104,
104, 104, 104, 104, 104, 104, 104, 104, 104, 105,
105, 105, 106, 106, 106, 106, 107, 107, 107, 107,
107, 108, 108, 109, 109, 110, 110, 110, 110, 111,
111, 111, 111, 111, 112, 112, 112, 112, 112, 113,
114, 114, 114, 114, 113, 113, 113, 113, 113, 113,
113, 113, 113, 113, 113, 113, 113, 113, 113, 113,
113, 113, 113, 113, 113, 113, 113, 113, 113, 113,
113, 113, 113, 113, 113, 113
};
/* YYR2[YYN] -- Number of symbols on the right hand side of rule YYN. */
static const yytype_uint8 yyr2[] =
{
0, 2, 1, 1, 1, 1, 0, 2, 2, 3,
3, 2, 2, 2, 4, 2, 2, 4, 4, 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, 3, 2, 3, 3, 2, 2,
1, 3, 2, 1, 4, 2, 1, 2, 2, 1,
2, 1, 1, 1, 1, 2, 2, 1, 2, 3,
2, 3, 4, 1, 3, 1, 2, 2, 4, 1,
1, 2, 3, 4, 3, 4, 4, 3, 0, 1,
1, 1, 1, 1, 2, 1, 1, 1, 1, 1,
1, 1, 2, 1, 1, 1, 2, 1, 1, 1,
2, 1, 1, 3, 4, 2, 3, 2, 1, 3,
2, 2, 1, 3, 2, 3, 2, 4, 3, 1,
2, 1, 3, 2, 2, 1, 1, 2, 1, 4,
2, 1, 2, 2, 1, 3, 2, 2, 1, 2,
1, 1, 4, 4, 4, 2, 2, 2, 2, 3,
1, 3, 2, 4, 2, 2, 2, 4, 7, 7,
7, 3, 3, 3, 3, 3, 3, 3, 3, 3,
3, 3, 3, 3, 3, 3, 3, 3, 3, 3,
5, 1, 1, 4, 1, 1
};
#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
#define YYRECOVERING() (!!yyerrstatus)
#define YYBACKUP(Token, Value) \
do \
if (yychar == YYEMPTY) \
{ \
yychar = (Token); \
yylval = (Value); \
YYPOPSTACK (yylen); \
yystate = *yyssp; \
goto yybackup; \
} \
else \
{ \
yyerror (state, YY_("syntax error: cannot back up")); \
YYERROR; \
} \
while (0)
/* Error token number */
#define YYTERROR 1
#define YYERRCODE 256
/* Enable debugging if requested. */
#if YYDEBUG
# ifndef YYFPRINTF
# include /* INFRINGES ON USER NAME SPACE */
# define YYFPRINTF fprintf
# endif
# define YYDPRINTF(Args) \
do { \
if (yydebug) \
YYFPRINTF Args; \
} while (0)
/* This macro is provided for backward compatibility. */
#ifndef YY_LOCATION_PRINT
# define YY_LOCATION_PRINT(File, Loc) ((void) 0)
#endif
# define YY_SYMBOL_PRINT(Title, Type, Value, Location) \
do { \
if (yydebug) \
{ \
YYFPRINTF (stderr, "%s ", Title); \
yy_symbol_print (stderr, \
Type, Value, state); \
YYFPRINTF (stderr, "\n"); \
} \
} while (0)
/*----------------------------------------.
| Print this symbol's value on YYOUTPUT. |
`----------------------------------------*/
static void
yy_symbol_value_print (FILE *yyoutput, int yytype, YYSTYPE const * const yyvaluep, struct cpname_state *state)
{
FILE *yyo = yyoutput;
YYUSE (yyo);
YYUSE (state);
if (!yyvaluep)
return;
# ifdef YYPRINT
if (yytype < YYNTOKENS)
YYPRINT (yyoutput, yytoknum[yytype], *yyvaluep);
# endif
YYUSE (yytype);
}
/*--------------------------------.
| Print this symbol on YYOUTPUT. |
`--------------------------------*/
static void
yy_symbol_print (FILE *yyoutput, int yytype, YYSTYPE const * const yyvaluep, struct cpname_state *state)
{
YYFPRINTF (yyoutput, "%s %s (",
yytype < YYNTOKENS ? "token" : "nterm", yytname[yytype]);
yy_symbol_value_print (yyoutput, yytype, yyvaluep, state);
YYFPRINTF (yyoutput, ")");
}
/*------------------------------------------------------------------.
| yy_stack_print -- Print the state stack from its BOTTOM up to its |
| TOP (included). |
`------------------------------------------------------------------*/
static void
yy_stack_print (yytype_int16 *yybottom, yytype_int16 *yytop)
{
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 (0)
/*------------------------------------------------.
| Report that the YYRULE is going to be reduced. |
`------------------------------------------------*/
static void
yy_reduce_print (yytype_int16 *yyssp, YYSTYPE *yyvsp, int yyrule, struct cpname_state *state)
{
unsigned long int yylno = yyrline[yyrule];
int yynrhs = yyr2[yyrule];
int yyi;
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,
yystos[yyssp[yyi + 1 - yynrhs]],
&(yyvsp[(yyi + 1) - (yynrhs)])
, state);
YYFPRINTF (stderr, "\n");
}
}
# define YY_REDUCE_PRINT(Rule) \
do { \
if (yydebug) \
yy_reduce_print (yyssp, yyvsp, Rule, state); \
} while (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. */
static YYSIZE_T
yystrlen (const char *yystr)
{
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. */
static char *
yystpcpy (char *yydest, const char *yysrc)
{
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_NULLPTRPTR, yytname[yytoken]);
YYSIZE_T yysize = yysize0;
enum { YYERROR_VERBOSE_ARGS_MAXIMUM = 5 };
/* Internationalized format string. */
const char *yyformat = YY_NULLPTRPTR;
/* 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:
- 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_NULLPTRPTR, 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. |
`-----------------------------------------------*/
static void
yydestruct (const char *yymsg, int yytype, YYSTYPE *yyvaluep, struct cpname_state *state)
{
YYUSE (yyvaluep);
YYUSE (state);
if (!yymsg)
yymsg = "Deleting";
YY_SYMBOL_PRINT (yymsg, yytype, yyvaluep, yylocationp);
YY_IGNORE_MAYBE_UNINITIALIZED_BEGIN
YYUSE (yytype);
YY_IGNORE_MAYBE_UNINITIALIZED_END
}
/*----------.
| yyparse. |
`----------*/
int
yyparse (struct cpname_state *state)
{
/* The lookahead symbol. */
int yychar;
/* The semantic value of the lookahead symbol. */
/* Default value used for initialization, for pacifying older GCCs
or non-GCC compilers. */
YY_INITIAL_VALUE (static YYSTYPE yyval_default;)
YYSTYPE yylval YY_INITIAL_VALUE (= yyval_default);
/* Number of syntax errors so far. */
int yynerrs;
int yystate;
/* Number of tokens to shift before error messages enabled. */
int yyerrstatus;
/* The stacks and their tools:
'yyss': related to states.
'yyvs': related to semantic values.
Refer to the stacks through separate pointers, to allow yyoverflow
to xreallocate 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 xreallocate 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 (&yylval, state);
}
if (yychar <= YYEOF)
{
yychar = yytoken = YYEOF;
YYDPRINTF ((stderr, "Now at end of input.\n"));
}
else
{
yytoken = YYTRANSLATE (yychar);
YY_SYMBOL_PRINT ("Next token is", yytoken, &yylval, &yylloc);
}
/* If the proper action on seeing token YYTOKEN is to reduce or to
detect an error, take that action. */
yyn += yytoken;
if (yyn < 0 || YYLAST < yyn || yycheck[yyn] != yytoken)
goto yydefault;
yyn = yytable[yyn];
if (yyn <= 0)
{
if (yytable_value_is_error (yyn))
goto yyerrlab;
yyn = -yyn;
goto yyreduce;
}
/* Count tokens shifted since error; after three, turn off error
status. */
if (yyerrstatus)
yyerrstatus--;
/* Shift the lookahead token. */
YY_SYMBOL_PRINT ("Shifting", yytoken, &yylval, &yylloc);
/* Discard the shifted token. */
yychar = YYEMPTY;
yystate = yyn;
YY_IGNORE_MAYBE_UNINITIALIZED_BEGIN
*++yyvsp = yylval;
YY_IGNORE_MAYBE_UNINITIALIZED_END
goto yynewstate;
/*-----------------------------------------------------------.
| yydefault -- do the default action for the current state. |
`-----------------------------------------------------------*/
yydefault:
yyn = yydefact[yystate];
if (yyn == 0)
goto yyerrlab;
goto yyreduce;
/*-----------------------------.
| yyreduce -- Do a reduction. |
`-----------------------------*/
yyreduce:
/* yyn is the number of a rule to reduce with. */
yylen = yyr2[yyn];
/* If YYLEN is nonzero, implement the default value of the action:
'$$ = $1'.
Otherwise, the following line sets YYVAL to garbage.
This behavior is undocumented and Bison
users should not rely upon it. Assigning to YYVAL
unconditionally makes the parser a bit smaller, and it avoids a
GCC warning that YYVAL may be used uninitialized. */
yyval = yyvsp[1-yylen];
YY_REDUCE_PRINT (yyn);
switch (yyn)
{
case 2:
#line 349 "cp-name-parser.y" /* yacc.c:1646 */
{ state->global_result = (yyvsp[0].comp); }
#line 1924 "cp-name-parser.c.tmp" /* yacc.c:1646 */
break;
case 6:
#line 361 "cp-name-parser.y" /* yacc.c:1646 */
{ (yyval.comp) = NULL; }
#line 1930 "cp-name-parser.c.tmp" /* yacc.c:1646 */
break;
case 7:
#line 363 "cp-name-parser.y" /* yacc.c:1646 */
{ (yyval.comp) = (yyvsp[0].comp); }
#line 1936 "cp-name-parser.c.tmp" /* yacc.c:1646 */
break;
case 8:
#line 370 "cp-name-parser.y" /* yacc.c:1646 */
{ (yyval.comp) = (yyvsp[0].nested).comp;
*(yyvsp[0].nested).last = (yyvsp[-1].comp);
}
#line 1944 "cp-name-parser.c.tmp" /* yacc.c:1646 */
break;
case 9:
#line 379 "cp-name-parser.y" /* yacc.c:1646 */
{ (yyval.comp) = state->fill_comp (DEMANGLE_COMPONENT_TYPED_NAME,
(yyvsp[-2].comp), (yyvsp[-1].nested).comp);
if ((yyvsp[0].comp))
(yyval.comp) = state->fill_comp (DEMANGLE_COMPONENT_LOCAL_NAME,
(yyval.comp), (yyvsp[0].comp));
}
#line 1955 "cp-name-parser.c.tmp" /* yacc.c:1646 */
break;
case 10:
#line 386 "cp-name-parser.y" /* yacc.c:1646 */
{ (yyval.comp) = state->fill_comp (DEMANGLE_COMPONENT_TYPED_NAME, (yyvsp[-2].comp), (yyvsp[-1].nested).comp);
if ((yyvsp[0].comp)) (yyval.comp) = state->fill_comp (DEMANGLE_COMPONENT_LOCAL_NAME, (yyval.comp), (yyvsp[0].comp)); }
#line 1962 "cp-name-parser.c.tmp" /* yacc.c:1646 */
break;
case 11:
#line 390 "cp-name-parser.y" /* yacc.c:1646 */
{ (yyval.comp) = (yyvsp[-1].nested).comp;
if ((yyvsp[0].comp)) (yyval.comp) = state->fill_comp (DEMANGLE_COMPONENT_LOCAL_NAME, (yyval.comp), (yyvsp[0].comp)); }
#line 1969 "cp-name-parser.c.tmp" /* yacc.c:1646 */
break;
case 12:
#line 393 "cp-name-parser.y" /* yacc.c:1646 */
{ if ((yyvsp[0].abstract).last)
{
/* First complete the abstract_declarator's type using
the typespec from the conversion_op_name. */
*(yyvsp[0].abstract).last = *(yyvsp[-1].nested).last;
/* Then complete the conversion_op_name with the type. */
*(yyvsp[-1].nested).last = (yyvsp[0].abstract).comp;
}
/* If we have an arglist, build a function type. */
if ((yyvsp[0].abstract).fn.comp)
(yyval.comp) = state->fill_comp (DEMANGLE_COMPONENT_TYPED_NAME, (yyvsp[-1].nested).comp, (yyvsp[0].abstract).fn.comp);
else
(yyval.comp) = (yyvsp[-1].nested).comp;
if ((yyvsp[0].abstract).start) (yyval.comp) = state->fill_comp (DEMANGLE_COMPONENT_LOCAL_NAME, (yyval.comp), (yyvsp[0].abstract).start);
}
#line 1989 "cp-name-parser.c.tmp" /* yacc.c:1646 */
break;
case 13:
#line 412 "cp-name-parser.y" /* yacc.c:1646 */
{ (yyval.comp) = state->fill_comp ((enum demangle_component_type) (yyvsp[-1].lval), (yyvsp[0].comp), NULL); }
#line 1995 "cp-name-parser.c.tmp" /* yacc.c:1646 */
break;
case 14:
#line 414 "cp-name-parser.y" /* yacc.c:1646 */
{ (yyval.comp) = state->fill_comp (DEMANGLE_COMPONENT_CONSTRUCTION_VTABLE, (yyvsp[-2].comp), (yyvsp[0].comp)); }
#line 2001 "cp-name-parser.c.tmp" /* yacc.c:1646 */
break;
case 15:
#line 418 "cp-name-parser.y" /* yacc.c:1646 */
{
/* Match the whitespacing of cplus_demangle_operators.
It would abort on unrecognized string otherwise. */
(yyval.comp) = state->make_operator ("new", 3);
}
#line 2011 "cp-name-parser.c.tmp" /* yacc.c:1646 */
break;
case 16:
#line 424 "cp-name-parser.y" /* yacc.c:1646 */
{
/* Match the whitespacing of cplus_demangle_operators.
It would abort on unrecognized string otherwise. */
(yyval.comp) = state->make_operator ("delete ", 1);
}
#line 2021 "cp-name-parser.c.tmp" /* yacc.c:1646 */
break;
case 17:
#line 430 "cp-name-parser.y" /* yacc.c:1646 */
{
/* Match the whitespacing of cplus_demangle_operators.
It would abort on unrecognized string otherwise. */
(yyval.comp) = state->make_operator ("new[]", 3);
}
#line 2031 "cp-name-parser.c.tmp" /* yacc.c:1646 */
break;
case 18:
#line 436 "cp-name-parser.y" /* yacc.c:1646 */
{
/* Match the whitespacing of cplus_demangle_operators.
It would abort on unrecognized string otherwise. */
(yyval.comp) = state->make_operator ("delete[] ", 1);
}
#line 2041 "cp-name-parser.c.tmp" /* yacc.c:1646 */
break;
case 19:
#line 442 "cp-name-parser.y" /* yacc.c:1646 */
{ (yyval.comp) = state->make_operator ("+", 2); }
#line 2047 "cp-name-parser.c.tmp" /* yacc.c:1646 */
break;
case 20:
#line 444 "cp-name-parser.y" /* yacc.c:1646 */
{ (yyval.comp) = state->make_operator ("-", 2); }
#line 2053 "cp-name-parser.c.tmp" /* yacc.c:1646 */
break;
case 21:
#line 446 "cp-name-parser.y" /* yacc.c:1646 */
{ (yyval.comp) = state->make_operator ("*", 2); }
#line 2059 "cp-name-parser.c.tmp" /* yacc.c:1646 */
break;
case 22:
#line 448 "cp-name-parser.y" /* yacc.c:1646 */
{ (yyval.comp) = state->make_operator ("/", 2); }
#line 2065 "cp-name-parser.c.tmp" /* yacc.c:1646 */
break;
case 23:
#line 450 "cp-name-parser.y" /* yacc.c:1646 */
{ (yyval.comp) = state->make_operator ("%", 2); }
#line 2071 "cp-name-parser.c.tmp" /* yacc.c:1646 */
break;
case 24:
#line 452 "cp-name-parser.y" /* yacc.c:1646 */
{ (yyval.comp) = state->make_operator ("^", 2); }
#line 2077 "cp-name-parser.c.tmp" /* yacc.c:1646 */
break;
case 25:
#line 454 "cp-name-parser.y" /* yacc.c:1646 */
{ (yyval.comp) = state->make_operator ("&", 2); }
#line 2083 "cp-name-parser.c.tmp" /* yacc.c:1646 */
break;
case 26:
#line 456 "cp-name-parser.y" /* yacc.c:1646 */
{ (yyval.comp) = state->make_operator ("|", 2); }
#line 2089 "cp-name-parser.c.tmp" /* yacc.c:1646 */
break;
case 27:
#line 458 "cp-name-parser.y" /* yacc.c:1646 */
{ (yyval.comp) = state->make_operator ("~", 1); }
#line 2095 "cp-name-parser.c.tmp" /* yacc.c:1646 */
break;
case 28:
#line 460 "cp-name-parser.y" /* yacc.c:1646 */
{ (yyval.comp) = state->make_operator ("!", 1); }
#line 2101 "cp-name-parser.c.tmp" /* yacc.c:1646 */
break;
case 29:
#line 462 "cp-name-parser.y" /* yacc.c:1646 */
{ (yyval.comp) = state->make_operator ("=", 2); }
#line 2107 "cp-name-parser.c.tmp" /* yacc.c:1646 */
break;
case 30:
#line 464 "cp-name-parser.y" /* yacc.c:1646 */
{ (yyval.comp) = state->make_operator ("<", 2); }
#line 2113 "cp-name-parser.c.tmp" /* yacc.c:1646 */
break;
case 31:
#line 466 "cp-name-parser.y" /* yacc.c:1646 */
{ (yyval.comp) = state->make_operator (">", 2); }
#line 2119 "cp-name-parser.c.tmp" /* yacc.c:1646 */
break;
case 32:
#line 468 "cp-name-parser.y" /* yacc.c:1646 */
{ (yyval.comp) = state->make_operator ((yyvsp[0].opname), 2); }
#line 2125 "cp-name-parser.c.tmp" /* yacc.c:1646 */
break;
case 33:
#line 470 "cp-name-parser.y" /* yacc.c:1646 */
{ (yyval.comp) = state->make_operator ("<<", 2); }
#line 2131 "cp-name-parser.c.tmp" /* yacc.c:1646 */
break;
case 34:
#line 472 "cp-name-parser.y" /* yacc.c:1646 */
{ (yyval.comp) = state->make_operator (">>", 2); }
#line 2137 "cp-name-parser.c.tmp" /* yacc.c:1646 */
break;
case 35:
#line 474 "cp-name-parser.y" /* yacc.c:1646 */
{ (yyval.comp) = state->make_operator ("==", 2); }
#line 2143 "cp-name-parser.c.tmp" /* yacc.c:1646 */
break;
case 36:
#line 476 "cp-name-parser.y" /* yacc.c:1646 */
{ (yyval.comp) = state->make_operator ("!=", 2); }
#line 2149 "cp-name-parser.c.tmp" /* yacc.c:1646 */
break;
case 37:
#line 478 "cp-name-parser.y" /* yacc.c:1646 */
{ (yyval.comp) = state->make_operator ("<=", 2); }
#line 2155 "cp-name-parser.c.tmp" /* yacc.c:1646 */
break;
case 38:
#line 480 "cp-name-parser.y" /* yacc.c:1646 */
{ (yyval.comp) = state->make_operator (">=", 2); }
#line 2161 "cp-name-parser.c.tmp" /* yacc.c:1646 */
break;
case 39:
#line 482 "cp-name-parser.y" /* yacc.c:1646 */
{ (yyval.comp) = state->make_operator ("&&", 2); }
#line 2167 "cp-name-parser.c.tmp" /* yacc.c:1646 */
break;
case 40:
#line 484 "cp-name-parser.y" /* yacc.c:1646 */
{ (yyval.comp) = state->make_operator ("||", 2); }
#line 2173 "cp-name-parser.c.tmp" /* yacc.c:1646 */
break;
case 41:
#line 486 "cp-name-parser.y" /* yacc.c:1646 */
{ (yyval.comp) = state->make_operator ("++", 1); }
#line 2179 "cp-name-parser.c.tmp" /* yacc.c:1646 */
break;
case 42:
#line 488 "cp-name-parser.y" /* yacc.c:1646 */
{ (yyval.comp) = state->make_operator ("--", 1); }
#line 2185 "cp-name-parser.c.tmp" /* yacc.c:1646 */
break;
case 43:
#line 490 "cp-name-parser.y" /* yacc.c:1646 */
{ (yyval.comp) = state->make_operator (",", 2); }
#line 2191 "cp-name-parser.c.tmp" /* yacc.c:1646 */
break;
case 44:
#line 492 "cp-name-parser.y" /* yacc.c:1646 */
{ (yyval.comp) = state->make_operator ("->*", 2); }
#line 2197 "cp-name-parser.c.tmp" /* yacc.c:1646 */
break;
case 45:
#line 494 "cp-name-parser.y" /* yacc.c:1646 */
{ (yyval.comp) = state->make_operator ("->", 2); }
#line 2203 "cp-name-parser.c.tmp" /* yacc.c:1646 */
break;
case 46:
#line 496 "cp-name-parser.y" /* yacc.c:1646 */
{ (yyval.comp) = state->make_operator ("()", 2); }
#line 2209 "cp-name-parser.c.tmp" /* yacc.c:1646 */
break;
case 47:
#line 498 "cp-name-parser.y" /* yacc.c:1646 */
{ (yyval.comp) = state->make_operator ("[]", 2); }
#line 2215 "cp-name-parser.c.tmp" /* yacc.c:1646 */
break;
case 48:
#line 506 "cp-name-parser.y" /* yacc.c:1646 */
{ (yyval.comp) = state->fill_comp (DEMANGLE_COMPONENT_CONVERSION, (yyvsp[0].comp), NULL); }
#line 2221 "cp-name-parser.c.tmp" /* yacc.c:1646 */
break;
case 49:
#line 511 "cp-name-parser.y" /* yacc.c:1646 */
{ (yyval.nested).comp = (yyvsp[-1].nested1).comp;
d_right ((yyvsp[-1].nested1).last) = (yyvsp[0].comp);
(yyval.nested).last = &d_left ((yyvsp[0].comp));
}
#line 2230 "cp-name-parser.c.tmp" /* yacc.c:1646 */
break;
case 50:
#line 516 "cp-name-parser.y" /* yacc.c:1646 */
{ (yyval.nested).comp = (yyvsp[0].comp);
(yyval.nested).last = &d_left ((yyvsp[0].comp));
}
#line 2238 "cp-name-parser.c.tmp" /* yacc.c:1646 */
break;
case 51:
#line 520 "cp-name-parser.y" /* yacc.c:1646 */
{ (yyval.nested).comp = (yyvsp[-1].nested1).comp;
d_right ((yyvsp[-1].nested1).last) = (yyvsp[0].comp);
(yyval.nested).last = &d_left ((yyvsp[0].comp));
}
#line 2247 "cp-name-parser.c.tmp" /* yacc.c:1646 */
break;
case 52:
#line 525 "cp-name-parser.y" /* yacc.c:1646 */
{ (yyval.nested).comp = (yyvsp[0].comp);
(yyval.nested).last = &d_left ((yyvsp[0].comp));
}
#line 2255 "cp-name-parser.c.tmp" /* yacc.c:1646 */
break;
case 54:
#line 534 "cp-name-parser.y" /* yacc.c:1646 */
{ (yyval.comp) = state->fill_comp (DEMANGLE_COMPONENT_TEMPLATE, (yyvsp[-3].comp), (yyvsp[-1].nested).comp); }
#line 2261 "cp-name-parser.c.tmp" /* yacc.c:1646 */
break;
case 55:
#line 536 "cp-name-parser.y" /* yacc.c:1646 */
{ (yyval.comp) = state->make_dtor (gnu_v3_complete_object_dtor, (yyvsp[0].comp)); }
#line 2267 "cp-name-parser.c.tmp" /* yacc.c:1646 */
break;
case 57:
#line 549 "cp-name-parser.y" /* yacc.c:1646 */
{ (yyval.comp) = (yyvsp[0].comp); }
#line 2273 "cp-name-parser.c.tmp" /* yacc.c:1646 */
break;
case 58:
#line 555 "cp-name-parser.y" /* yacc.c:1646 */
{ (yyval.comp) = (yyvsp[-1].nested1).comp; d_right ((yyvsp[-1].nested1).last) = (yyvsp[0].comp); }
#line 2279 "cp-name-parser.c.tmp" /* yacc.c:1646 */
break;
case 60:
#line 558 "cp-name-parser.y" /* yacc.c:1646 */
{ (yyval.comp) = (yyvsp[-1].nested1).comp; d_right ((yyvsp[-1].nested1).last) = (yyvsp[0].comp); }
#line 2285 "cp-name-parser.c.tmp" /* yacc.c:1646 */
break;
case 65:
#line 568 "cp-name-parser.y" /* yacc.c:1646 */
{ (yyval.comp) = (yyvsp[0].comp); }
#line 2291 "cp-name-parser.c.tmp" /* yacc.c:1646 */
break;
case 66:
#line 572 "cp-name-parser.y" /* yacc.c:1646 */
{ (yyval.comp) = (yyvsp[-1].nested1).comp; d_right ((yyvsp[-1].nested1).last) = (yyvsp[0].comp); }
#line 2297 "cp-name-parser.c.tmp" /* yacc.c:1646 */
break;
case 68:
#line 577 "cp-name-parser.y" /* yacc.c:1646 */
{ (yyval.nested1).comp = state->fill_comp (DEMANGLE_COMPONENT_QUAL_NAME, (yyvsp[-1].comp), NULL);
(yyval.nested1).last = (yyval.nested1).comp;
}
#line 2305 "cp-name-parser.c.tmp" /* yacc.c:1646 */
break;
case 69:
#line 581 "cp-name-parser.y" /* yacc.c:1646 */
{ (yyval.nested1).comp = (yyvsp[-2].nested1).comp;
d_right ((yyvsp[-2].nested1).last) = state->fill_comp (DEMANGLE_COMPONENT_QUAL_NAME, (yyvsp[-1].comp), NULL);
(yyval.nested1).last = d_right ((yyvsp[-2].nested1).last);
}
#line 2314 "cp-name-parser.c.tmp" /* yacc.c:1646 */
break;
case 70:
#line 586 "cp-name-parser.y" /* yacc.c:1646 */
{ (yyval.nested1).comp = state->fill_comp (DEMANGLE_COMPONENT_QUAL_NAME, (yyvsp[-1].comp), NULL);
(yyval.nested1).last = (yyval.nested1).comp;
}
#line 2322 "cp-name-parser.c.tmp" /* yacc.c:1646 */
break;
case 71:
#line 590 "cp-name-parser.y" /* yacc.c:1646 */
{ (yyval.nested1).comp = (yyvsp[-2].nested1).comp;
d_right ((yyvsp[-2].nested1).last) = state->fill_comp (DEMANGLE_COMPONENT_QUAL_NAME, (yyvsp[-1].comp), NULL);
(yyval.nested1).last = d_right ((yyvsp[-2].nested1).last);
}
#line 2331 "cp-name-parser.c.tmp" /* yacc.c:1646 */
break;
case 72:
#line 599 "cp-name-parser.y" /* yacc.c:1646 */
{ (yyval.comp) = state->fill_comp (DEMANGLE_COMPONENT_TEMPLATE, (yyvsp[-3].comp), (yyvsp[-1].nested).comp); }
#line 2337 "cp-name-parser.c.tmp" /* yacc.c:1646 */
break;
case 73:
#line 603 "cp-name-parser.y" /* yacc.c:1646 */
{ (yyval.nested).comp = state->fill_comp (DEMANGLE_COMPONENT_TEMPLATE_ARGLIST, (yyvsp[0].comp), NULL);
(yyval.nested).last = &d_right ((yyval.nested).comp); }
#line 2344 "cp-name-parser.c.tmp" /* yacc.c:1646 */
break;
case 74:
#line 606 "cp-name-parser.y" /* yacc.c:1646 */
{ (yyval.nested).comp = (yyvsp[-2].nested).comp;
*(yyvsp[-2].nested).last = state->fill_comp (DEMANGLE_COMPONENT_TEMPLATE_ARGLIST, (yyvsp[0].comp), NULL);
(yyval.nested).last = &d_right (*(yyvsp[-2].nested).last);
}
#line 2353 "cp-name-parser.c.tmp" /* yacc.c:1646 */
break;
case 76:
#line 618 "cp-name-parser.y" /* yacc.c:1646 */
{ (yyval.comp) = (yyvsp[0].abstract).comp;
*(yyvsp[0].abstract).last = (yyvsp[-1].comp);
}
#line 2361 "cp-name-parser.c.tmp" /* yacc.c:1646 */
break;
case 77:
#line 622 "cp-name-parser.y" /* yacc.c:1646 */
{ (yyval.comp) = state->fill_comp (DEMANGLE_COMPONENT_UNARY, state->make_operator ("&", 1), (yyvsp[0].comp)); }
#line 2367 "cp-name-parser.c.tmp" /* yacc.c:1646 */
break;
case 78:
#line 624 "cp-name-parser.y" /* yacc.c:1646 */
{ (yyval.comp) = state->fill_comp (DEMANGLE_COMPONENT_UNARY, state->make_operator ("&", 1), (yyvsp[-1].comp)); }
#line 2373 "cp-name-parser.c.tmp" /* yacc.c:1646 */
break;
case 80:
#line 629 "cp-name-parser.y" /* yacc.c:1646 */
{ (yyval.nested).comp = state->fill_comp (DEMANGLE_COMPONENT_ARGLIST, (yyvsp[0].comp), NULL);
(yyval.nested).last = &d_right ((yyval.nested).comp);
}
#line 2381 "cp-name-parser.c.tmp" /* yacc.c:1646 */
break;
case 81:
#line 633 "cp-name-parser.y" /* yacc.c:1646 */
{ *(yyvsp[0].abstract).last = (yyvsp[-1].comp);
(yyval.nested).comp = state->fill_comp (DEMANGLE_COMPONENT_ARGLIST, (yyvsp[0].abstract).comp, NULL);
(yyval.nested).last = &d_right ((yyval.nested).comp);
}
#line 2390 "cp-name-parser.c.tmp" /* yacc.c:1646 */
break;
case 82:
#line 638 "cp-name-parser.y" /* yacc.c:1646 */
{ *(yyvsp[-2].nested).last = state->fill_comp (DEMANGLE_COMPONENT_ARGLIST, (yyvsp[0].comp), NULL);
(yyval.nested).comp = (yyvsp[-2].nested).comp;
(yyval.nested).last = &d_right (*(yyvsp[-2].nested).last);
}
#line 2399 "cp-name-parser.c.tmp" /* yacc.c:1646 */
break;
case 83:
#line 643 "cp-name-parser.y" /* yacc.c:1646 */
{ *(yyvsp[0].abstract).last = (yyvsp[-1].comp);
*(yyvsp[-3].nested).last = state->fill_comp (DEMANGLE_COMPONENT_ARGLIST, (yyvsp[0].abstract).comp, NULL);
(yyval.nested).comp = (yyvsp[-3].nested).comp;
(yyval.nested).last = &d_right (*(yyvsp[-3].nested).last);
}
#line 2409 "cp-name-parser.c.tmp" /* yacc.c:1646 */
break;
case 84:
#line 649 "cp-name-parser.y" /* yacc.c:1646 */
{ *(yyvsp[-2].nested).last
= state->fill_comp (DEMANGLE_COMPONENT_ARGLIST,
state->make_builtin_type ("..."),
NULL);
(yyval.nested).comp = (yyvsp[-2].nested).comp;
(yyval.nested).last = &d_right (*(yyvsp[-2].nested).last);
}
#line 2421 "cp-name-parser.c.tmp" /* yacc.c:1646 */
break;
case 85:
#line 659 "cp-name-parser.y" /* yacc.c:1646 */
{ (yyval.nested).comp = state->fill_comp (DEMANGLE_COMPONENT_FUNCTION_TYPE, NULL, (yyvsp[-2].nested).comp);
(yyval.nested).last = &d_left ((yyval.nested).comp);
(yyval.nested).comp = state->d_qualify ((yyval.nested).comp, (yyvsp[0].lval), 1); }
#line 2429 "cp-name-parser.c.tmp" /* yacc.c:1646 */
break;
case 86:
#line 663 "cp-name-parser.y" /* yacc.c:1646 */
{ (yyval.nested).comp = state->fill_comp (DEMANGLE_COMPONENT_FUNCTION_TYPE, NULL, NULL);
(yyval.nested).last = &d_left ((yyval.nested).comp);
(yyval.nested).comp = state->d_qualify ((yyval.nested).comp, (yyvsp[0].lval), 1); }
#line 2437 "cp-name-parser.c.tmp" /* yacc.c:1646 */
break;
case 87:
#line 667 "cp-name-parser.y" /* yacc.c:1646 */
{ (yyval.nested).comp = state->fill_comp (DEMANGLE_COMPONENT_FUNCTION_TYPE, NULL, NULL);
(yyval.nested).last = &d_left ((yyval.nested).comp);
(yyval.nested).comp = state->d_qualify ((yyval.nested).comp, (yyvsp[0].lval), 1); }
#line 2445 "cp-name-parser.c.tmp" /* yacc.c:1646 */
break;
case 88:
#line 674 "cp-name-parser.y" /* yacc.c:1646 */
{ (yyval.lval) = 0; }
#line 2451 "cp-name-parser.c.tmp" /* yacc.c:1646 */
break;
case 90:
#line 679 "cp-name-parser.y" /* yacc.c:1646 */
{ (yyval.lval) = QUAL_RESTRICT; }
#line 2457 "cp-name-parser.c.tmp" /* yacc.c:1646 */
break;
case 91:
#line 681 "cp-name-parser.y" /* yacc.c:1646 */
{ (yyval.lval) = QUAL_VOLATILE; }
#line 2463 "cp-name-parser.c.tmp" /* yacc.c:1646 */
break;
case 92:
#line 683 "cp-name-parser.y" /* yacc.c:1646 */
{ (yyval.lval) = QUAL_CONST; }
#line 2469 "cp-name-parser.c.tmp" /* yacc.c:1646 */
break;
case 94:
#line 688 "cp-name-parser.y" /* yacc.c:1646 */
{ (yyval.lval) = (yyvsp[-1].lval) | (yyvsp[0].lval); }
#line 2475 "cp-name-parser.c.tmp" /* yacc.c:1646 */
break;
case 95:
#line 695 "cp-name-parser.y" /* yacc.c:1646 */
{ (yyval.lval) = 0; }
#line 2481 "cp-name-parser.c.tmp" /* yacc.c:1646 */
break;
case 96:
#line 697 "cp-name-parser.y" /* yacc.c:1646 */
{ (yyval.lval) = INT_SIGNED; }
#line 2487 "cp-name-parser.c.tmp" /* yacc.c:1646 */
break;
case 97:
#line 699 "cp-name-parser.y" /* yacc.c:1646 */
{ (yyval.lval) = INT_UNSIGNED; }
#line 2493 "cp-name-parser.c.tmp" /* yacc.c:1646 */
break;
case 98:
#line 701 "cp-name-parser.y" /* yacc.c:1646 */
{ (yyval.lval) = INT_CHAR; }
#line 2499 "cp-name-parser.c.tmp" /* yacc.c:1646 */
break;
case 99:
#line 703 "cp-name-parser.y" /* yacc.c:1646 */
{ (yyval.lval) = INT_LONG; }
#line 2505 "cp-name-parser.c.tmp" /* yacc.c:1646 */
break;
case 100:
#line 705 "cp-name-parser.y" /* yacc.c:1646 */
{ (yyval.lval) = INT_SHORT; }
#line 2511 "cp-name-parser.c.tmp" /* yacc.c:1646 */
break;
case 102:
#line 710 "cp-name-parser.y" /* yacc.c:1646 */
{ (yyval.lval) = (yyvsp[-1].lval) | (yyvsp[0].lval); if ((yyvsp[-1].lval) & (yyvsp[0].lval) & INT_LONG) (yyval.lval) = (yyvsp[-1].lval) | INT_LLONG; }
#line 2517 "cp-name-parser.c.tmp" /* yacc.c:1646 */
break;
case 103:
#line 714 "cp-name-parser.y" /* yacc.c:1646 */
{ (yyval.comp) = state->d_int_type ((yyvsp[0].lval)); }
#line 2523 "cp-name-parser.c.tmp" /* yacc.c:1646 */
break;
case 104:
#line 716 "cp-name-parser.y" /* yacc.c:1646 */
{ (yyval.comp) = state->make_builtin_type ("float"); }
#line 2529 "cp-name-parser.c.tmp" /* yacc.c:1646 */
break;
case 105:
#line 718 "cp-name-parser.y" /* yacc.c:1646 */
{ (yyval.comp) = state->make_builtin_type ("double"); }
#line 2535 "cp-name-parser.c.tmp" /* yacc.c:1646 */
break;
case 106:
#line 720 "cp-name-parser.y" /* yacc.c:1646 */
{ (yyval.comp) = state->make_builtin_type ("long double"); }
#line 2541 "cp-name-parser.c.tmp" /* yacc.c:1646 */
break;
case 107:
#line 722 "cp-name-parser.y" /* yacc.c:1646 */
{ (yyval.comp) = state->make_builtin_type ("bool"); }
#line 2547 "cp-name-parser.c.tmp" /* yacc.c:1646 */
break;
case 108:
#line 724 "cp-name-parser.y" /* yacc.c:1646 */
{ (yyval.comp) = state->make_builtin_type ("wchar_t"); }
#line 2553 "cp-name-parser.c.tmp" /* yacc.c:1646 */
break;
case 109:
#line 726 "cp-name-parser.y" /* yacc.c:1646 */
{ (yyval.comp) = state->make_builtin_type ("void"); }
#line 2559 "cp-name-parser.c.tmp" /* yacc.c:1646 */
break;
case 110:
#line 730 "cp-name-parser.y" /* yacc.c:1646 */
{ (yyval.nested).comp = state->fill_comp (DEMANGLE_COMPONENT_POINTER, NULL, NULL);
(yyval.nested).last = &d_left ((yyval.nested).comp);
(yyval.nested).comp = state->d_qualify ((yyval.nested).comp, (yyvsp[0].lval), 0); }
#line 2567 "cp-name-parser.c.tmp" /* yacc.c:1646 */
break;
case 111:
#line 735 "cp-name-parser.y" /* yacc.c:1646 */
{ (yyval.nested).comp = state->fill_comp (DEMANGLE_COMPONENT_REFERENCE, NULL, NULL);
(yyval.nested).last = &d_left ((yyval.nested).comp); }
#line 2574 "cp-name-parser.c.tmp" /* yacc.c:1646 */
break;
case 112:
#line 738 "cp-name-parser.y" /* yacc.c:1646 */
{ (yyval.nested).comp = state->fill_comp (DEMANGLE_COMPONENT_RVALUE_REFERENCE, NULL, NULL);
(yyval.nested).last = &d_left ((yyval.nested).comp); }
#line 2581 "cp-name-parser.c.tmp" /* yacc.c:1646 */
break;
case 113:
#line 741 "cp-name-parser.y" /* yacc.c:1646 */
{ (yyval.nested).comp = state->fill_comp (DEMANGLE_COMPONENT_PTRMEM_TYPE, (yyvsp[-2].nested1).comp, NULL);
/* Convert the innermost DEMANGLE_COMPONENT_QUAL_NAME to a DEMANGLE_COMPONENT_NAME. */
*(yyvsp[-2].nested1).last = *d_left ((yyvsp[-2].nested1).last);
(yyval.nested).last = &d_right ((yyval.nested).comp);
(yyval.nested).comp = state->d_qualify ((yyval.nested).comp, (yyvsp[0].lval), 0); }
#line 2591 "cp-name-parser.c.tmp" /* yacc.c:1646 */
break;
case 114:
#line 747 "cp-name-parser.y" /* yacc.c:1646 */
{ (yyval.nested).comp = state->fill_comp (DEMANGLE_COMPONENT_PTRMEM_TYPE, (yyvsp[-2].nested1).comp, NULL);
/* Convert the innermost DEMANGLE_COMPONENT_QUAL_NAME to a DEMANGLE_COMPONENT_NAME. */
*(yyvsp[-2].nested1).last = *d_left ((yyvsp[-2].nested1).last);
(yyval.nested).last = &d_right ((yyval.nested).comp);
(yyval.nested).comp = state->d_qualify ((yyval.nested).comp, (yyvsp[0].lval), 0); }
#line 2601 "cp-name-parser.c.tmp" /* yacc.c:1646 */
break;
case 115:
#line 755 "cp-name-parser.y" /* yacc.c:1646 */
{ (yyval.comp) = state->fill_comp (DEMANGLE_COMPONENT_ARRAY_TYPE, NULL, NULL); }
#line 2607 "cp-name-parser.c.tmp" /* yacc.c:1646 */
break;
case 116:
#line 757 "cp-name-parser.y" /* yacc.c:1646 */
{ (yyval.comp) = state->fill_comp (DEMANGLE_COMPONENT_ARRAY_TYPE, (yyvsp[-1].comp), NULL); }
#line 2613 "cp-name-parser.c.tmp" /* yacc.c:1646 */
break;
case 117:
#line 771 "cp-name-parser.y" /* yacc.c:1646 */
{ (yyval.comp) = state->d_qualify ((yyvsp[-1].comp), (yyvsp[0].lval), 0); }
#line 2619 "cp-name-parser.c.tmp" /* yacc.c:1646 */
break;
case 119:
#line 774 "cp-name-parser.y" /* yacc.c:1646 */
{ (yyval.comp) = state->d_qualify ((yyvsp[-1].comp), (yyvsp[-2].lval) | (yyvsp[0].lval), 0); }
#line 2625 "cp-name-parser.c.tmp" /* yacc.c:1646 */
break;
case 120:
#line 776 "cp-name-parser.y" /* yacc.c:1646 */
{ (yyval.comp) = state->d_qualify ((yyvsp[0].comp), (yyvsp[-1].lval), 0); }
#line 2631 "cp-name-parser.c.tmp" /* yacc.c:1646 */
break;
case 121:
#line 779 "cp-name-parser.y" /* yacc.c:1646 */
{ (yyval.comp) = state->d_qualify ((yyvsp[-1].comp), (yyvsp[0].lval), 0); }
#line 2637 "cp-name-parser.c.tmp" /* yacc.c:1646 */
break;
case 123:
#line 782 "cp-name-parser.y" /* yacc.c:1646 */
{ (yyval.comp) = state->d_qualify ((yyvsp[-1].comp), (yyvsp[-2].lval) | (yyvsp[0].lval), 0); }
#line 2643 "cp-name-parser.c.tmp" /* yacc.c:1646 */
break;
case 124:
#line 784 "cp-name-parser.y" /* yacc.c:1646 */
{ (yyval.comp) = state->d_qualify ((yyvsp[0].comp), (yyvsp[-1].lval), 0); }
#line 2649 "cp-name-parser.c.tmp" /* yacc.c:1646 */
break;
case 125:
#line 787 "cp-name-parser.y" /* yacc.c:1646 */
{ (yyval.comp) = state->d_qualify ((yyvsp[-1].comp), (yyvsp[0].lval), 0); }
#line 2655 "cp-name-parser.c.tmp" /* yacc.c:1646 */
break;
case 126:
#line 789 "cp-name-parser.y" /* yacc.c:1646 */
{ (yyval.comp) = (yyvsp[0].comp); }
#line 2661 "cp-name-parser.c.tmp" /* yacc.c:1646 */
break;
case 127:
#line 791 "cp-name-parser.y" /* yacc.c:1646 */
{ (yyval.comp) = state->d_qualify ((yyvsp[-1].comp), (yyvsp[-3].lval) | (yyvsp[0].lval), 0); }
#line 2667 "cp-name-parser.c.tmp" /* yacc.c:1646 */
break;
case 128:
#line 793 "cp-name-parser.y" /* yacc.c:1646 */
{ (yyval.comp) = state->d_qualify ((yyvsp[0].comp), (yyvsp[-2].lval), 0); }
#line 2673 "cp-name-parser.c.tmp" /* yacc.c:1646 */
break;
case 129:
#line 798 "cp-name-parser.y" /* yacc.c:1646 */
{ (yyval.abstract).comp = (yyvsp[0].nested).comp; (yyval.abstract).last = (yyvsp[0].nested).last;
(yyval.abstract).fn.comp = NULL; (yyval.abstract).fn.last = NULL; }
#line 2680 "cp-name-parser.c.tmp" /* yacc.c:1646 */
break;
case 130:
#line 801 "cp-name-parser.y" /* yacc.c:1646 */
{ (yyval.abstract) = (yyvsp[0].abstract); (yyval.abstract).fn.comp = NULL; (yyval.abstract).fn.last = NULL;
if ((yyvsp[0].abstract).fn.comp) { (yyval.abstract).last = (yyvsp[0].abstract).fn.last; *(yyvsp[0].abstract).last = (yyvsp[0].abstract).fn.comp; }
*(yyval.abstract).last = (yyvsp[-1].nested).comp;
(yyval.abstract).last = (yyvsp[-1].nested).last; }
#line 2689 "cp-name-parser.c.tmp" /* yacc.c:1646 */
break;
case 131:
#line 806 "cp-name-parser.y" /* yacc.c:1646 */
{ (yyval.abstract).fn.comp = NULL; (yyval.abstract).fn.last = NULL;
if ((yyvsp[0].abstract).fn.comp) { (yyval.abstract).last = (yyvsp[0].abstract).fn.last; *(yyvsp[0].abstract).last = (yyvsp[0].abstract).fn.comp; }
}
#line 2697 "cp-name-parser.c.tmp" /* yacc.c:1646 */
break;
case 132:
#line 813 "cp-name-parser.y" /* yacc.c:1646 */
{ (yyval.abstract) = (yyvsp[-1].abstract); (yyval.abstract).fn.comp = NULL; (yyval.abstract).fn.last = NULL; (yyval.abstract).fold_flag = 1;
if ((yyvsp[-1].abstract).fn.comp) { (yyval.abstract).last = (yyvsp[-1].abstract).fn.last; *(yyvsp[-1].abstract).last = (yyvsp[-1].abstract).fn.comp; }
}
#line 2705 "cp-name-parser.c.tmp" /* yacc.c:1646 */
break;
case 133:
#line 817 "cp-name-parser.y" /* yacc.c:1646 */
{ (yyval.abstract).fold_flag = 0;
if ((yyvsp[-1].abstract).fn.comp) { (yyval.abstract).last = (yyvsp[-1].abstract).fn.last; *(yyvsp[-1].abstract).last = (yyvsp[-1].abstract).fn.comp; }
if ((yyvsp[-1].abstract).fold_flag)
{
*(yyval.abstract).last = (yyvsp[0].nested).comp;
(yyval.abstract).last = (yyvsp[0].nested).last;
}
else
(yyval.abstract).fn = (yyvsp[0].nested);
}
#line 2720 "cp-name-parser.c.tmp" /* yacc.c:1646 */
break;
case 134:
#line 828 "cp-name-parser.y" /* yacc.c:1646 */
{ (yyval.abstract).fn.comp = NULL; (yyval.abstract).fn.last = NULL; (yyval.abstract).fold_flag = 0;
if ((yyvsp[-1].abstract).fn.comp) { (yyval.abstract).last = (yyvsp[-1].abstract).fn.last; *(yyvsp[-1].abstract).last = (yyvsp[-1].abstract).fn.comp; }
*(yyvsp[-1].abstract).last = (yyvsp[0].comp);
(yyval.abstract).last = &d_right ((yyvsp[0].comp));
}
#line 2730 "cp-name-parser.c.tmp" /* yacc.c:1646 */
break;
case 135:
#line 834 "cp-name-parser.y" /* yacc.c:1646 */
{ (yyval.abstract).fn.comp = NULL; (yyval.abstract).fn.last = NULL; (yyval.abstract).fold_flag = 0;
(yyval.abstract).comp = (yyvsp[0].comp);
(yyval.abstract).last = &d_right ((yyvsp[0].comp));
}
#line 2739 "cp-name-parser.c.tmp" /* yacc.c:1646 */
break;
case 136:
#line 852 "cp-name-parser.y" /* yacc.c:1646 */
{ (yyval.abstract).comp = (yyvsp[0].nested).comp; (yyval.abstract).last = (yyvsp[0].nested).last;
(yyval.abstract).fn.comp = NULL; (yyval.abstract).fn.last = NULL; (yyval.abstract).start = NULL; }
#line 2746 "cp-name-parser.c.tmp" /* yacc.c:1646 */
break;
case 137:
#line 855 "cp-name-parser.y" /* yacc.c:1646 */
{ (yyval.abstract) = (yyvsp[0].abstract);
if ((yyvsp[0].abstract).last)
*(yyval.abstract).last = (yyvsp[-1].nested).comp;
else
(yyval.abstract).comp = (yyvsp[-1].nested).comp;
(yyval.abstract).last = (yyvsp[-1].nested).last;
}
#line 2758 "cp-name-parser.c.tmp" /* yacc.c:1646 */
break;
case 138:
#line 863 "cp-name-parser.y" /* yacc.c:1646 */
{ (yyval.abstract).comp = (yyvsp[0].abstract).comp; (yyval.abstract).last = (yyvsp[0].abstract).last; (yyval.abstract).fn = (yyvsp[0].abstract).fn; (yyval.abstract).start = NULL; }
#line 2764 "cp-name-parser.c.tmp" /* yacc.c:1646 */
break;
case 139:
#line 865 "cp-name-parser.y" /* yacc.c:1646 */
{ (yyval.abstract).start = (yyvsp[0].comp);
if ((yyvsp[-3].abstract).fn.comp) { (yyval.abstract).last = (yyvsp[-3].abstract).fn.last; *(yyvsp[-3].abstract).last = (yyvsp[-3].abstract).fn.comp; }
if ((yyvsp[-3].abstract).fold_flag)
{
*(yyval.abstract).last = (yyvsp[-2].nested).comp;
(yyval.abstract).last = (yyvsp[-2].nested).last;
}
else
(yyval.abstract).fn = (yyvsp[-2].nested);
}
#line 2779 "cp-name-parser.c.tmp" /* yacc.c:1646 */
break;
case 140:
#line 876 "cp-name-parser.y" /* yacc.c:1646 */
{ (yyval.abstract).fn = (yyvsp[-1].nested);
(yyval.abstract).start = (yyvsp[0].comp);
(yyval.abstract).comp = NULL; (yyval.abstract).last = NULL;
}
#line 2788 "cp-name-parser.c.tmp" /* yacc.c:1646 */
break;
case 142:
#line 884 "cp-name-parser.y" /* yacc.c:1646 */
{ (yyval.comp) = (yyvsp[0].abstract).comp;
*(yyvsp[0].abstract).last = (yyvsp[-1].comp);
}
#line 2796 "cp-name-parser.c.tmp" /* yacc.c:1646 */
break;
case 143:
#line 890 "cp-name-parser.y" /* yacc.c:1646 */
{ (yyval.nested).comp = (yyvsp[0].nested).comp;
(yyval.nested).last = (yyvsp[-1].nested).last;
*(yyvsp[0].nested).last = (yyvsp[-1].nested).comp; }
#line 2804 "cp-name-parser.c.tmp" /* yacc.c:1646 */
break;
case 145:
#line 898 "cp-name-parser.y" /* yacc.c:1646 */
{ (yyval.nested) = (yyvsp[-1].nested); }
#line 2810 "cp-name-parser.c.tmp" /* yacc.c:1646 */
break;
case 146:
#line 900 "cp-name-parser.y" /* yacc.c:1646 */
{ (yyval.nested).comp = (yyvsp[-1].nested).comp;
*(yyvsp[-1].nested).last = (yyvsp[0].nested).comp;
(yyval.nested).last = (yyvsp[0].nested).last;
}
#line 2819 "cp-name-parser.c.tmp" /* yacc.c:1646 */
break;
case 147:
#line 905 "cp-name-parser.y" /* yacc.c:1646 */
{ (yyval.nested).comp = (yyvsp[-1].nested).comp;
*(yyvsp[-1].nested).last = (yyvsp[0].comp);
(yyval.nested).last = &d_right ((yyvsp[0].comp));
}
#line 2828 "cp-name-parser.c.tmp" /* yacc.c:1646 */
break;
case 148:
#line 910 "cp-name-parser.y" /* yacc.c:1646 */
{ (yyval.nested).comp = state->fill_comp (DEMANGLE_COMPONENT_TYPED_NAME, (yyvsp[0].comp), NULL);
(yyval.nested).last = &d_right ((yyval.nested).comp);
}
#line 2836 "cp-name-parser.c.tmp" /* yacc.c:1646 */
break;
case 149:
#line 922 "cp-name-parser.y" /* yacc.c:1646 */
{ (yyval.nested).comp = (yyvsp[0].nested).comp;
(yyval.nested).last = (yyvsp[-1].nested).last;
*(yyvsp[0].nested).last = (yyvsp[-1].nested).comp; }
#line 2844 "cp-name-parser.c.tmp" /* yacc.c:1646 */
break;
case 150:
#line 926 "cp-name-parser.y" /* yacc.c:1646 */
{ (yyval.nested).comp = state->fill_comp (DEMANGLE_COMPONENT_TYPED_NAME, (yyvsp[0].comp), NULL);
(yyval.nested).last = &d_right ((yyval.nested).comp);
}
#line 2852 "cp-name-parser.c.tmp" /* yacc.c:1646 */
break;
case 152:
#line 938 "cp-name-parser.y" /* yacc.c:1646 */
{ (yyval.nested).comp = state->fill_comp (DEMANGLE_COMPONENT_TYPED_NAME, (yyvsp[-3].comp), (yyvsp[-2].nested).comp);
(yyval.nested).last = (yyvsp[-2].nested).last;
(yyval.nested).comp = state->fill_comp (DEMANGLE_COMPONENT_LOCAL_NAME, (yyval.nested).comp, (yyvsp[0].comp));
}
#line 2861 "cp-name-parser.c.tmp" /* yacc.c:1646 */
break;
case 153:
#line 943 "cp-name-parser.y" /* yacc.c:1646 */
{ (yyval.nested).comp = (yyvsp[-3].nested).comp;
*(yyvsp[-3].nested).last = (yyvsp[-2].nested).comp;
(yyval.nested).last = (yyvsp[-2].nested).last;
(yyval.nested).comp = state->fill_comp (DEMANGLE_COMPONENT_LOCAL_NAME, (yyval.nested).comp, (yyvsp[0].comp));
}
#line 2871 "cp-name-parser.c.tmp" /* yacc.c:1646 */
break;
case 154:
#line 952 "cp-name-parser.y" /* yacc.c:1646 */
{ (yyval.nested).comp = (yyvsp[-1].nested).comp;
(yyval.nested).last = (yyvsp[-2].nested).last;
*(yyvsp[-1].nested).last = (yyvsp[-2].nested).comp; }
#line 2879 "cp-name-parser.c.tmp" /* yacc.c:1646 */
break;
case 155:
#line 956 "cp-name-parser.y" /* yacc.c:1646 */
{ (yyval.nested).comp = (yyvsp[-1].nested).comp;
*(yyvsp[-1].nested).last = (yyvsp[0].nested).comp;
(yyval.nested).last = (yyvsp[0].nested).last;
}
#line 2888 "cp-name-parser.c.tmp" /* yacc.c:1646 */
break;
case 156:
#line 961 "cp-name-parser.y" /* yacc.c:1646 */
{ (yyval.nested).comp = (yyvsp[-1].nested).comp;
*(yyvsp[-1].nested).last = (yyvsp[0].comp);
(yyval.nested).last = &d_right ((yyvsp[0].comp));
}
#line 2897 "cp-name-parser.c.tmp" /* yacc.c:1646 */
break;
case 157:
#line 966 "cp-name-parser.y" /* yacc.c:1646 */
{ (yyval.nested).comp = state->fill_comp (DEMANGLE_COMPONENT_TYPED_NAME, (yyvsp[-1].comp), (yyvsp[0].nested).comp);
(yyval.nested).last = (yyvsp[0].nested).last;
}
#line 2905 "cp-name-parser.c.tmp" /* yacc.c:1646 */
break;
case 158:
#line 970 "cp-name-parser.y" /* yacc.c:1646 */
{ (yyval.nested).comp = state->fill_comp (DEMANGLE_COMPONENT_TYPED_NAME, (yyvsp[-1].comp), (yyvsp[0].comp));
(yyval.nested).last = &d_right ((yyvsp[0].comp));
}
#line 2913 "cp-name-parser.c.tmp" /* yacc.c:1646 */
break;
case 159:
#line 976 "cp-name-parser.y" /* yacc.c:1646 */
{ (yyval.comp) = (yyvsp[-1].comp); }
#line 2919 "cp-name-parser.c.tmp" /* yacc.c:1646 */
break;
case 161:
#line 985 "cp-name-parser.y" /* yacc.c:1646 */
{ (yyval.comp) = state->d_binary (">", (yyvsp[-2].comp), (yyvsp[0].comp)); }
#line 2925 "cp-name-parser.c.tmp" /* yacc.c:1646 */
break;
case 162:
#line 992 "cp-name-parser.y" /* yacc.c:1646 */
{ (yyval.comp) = state->fill_comp (DEMANGLE_COMPONENT_UNARY, state->make_operator ("&", 1), (yyvsp[0].comp)); }
#line 2931 "cp-name-parser.c.tmp" /* yacc.c:1646 */
break;
case 163:
#line 994 "cp-name-parser.y" /* yacc.c:1646 */
{ (yyval.comp) = state->fill_comp (DEMANGLE_COMPONENT_UNARY, state->make_operator ("&", 1), (yyvsp[-1].comp)); }
#line 2937 "cp-name-parser.c.tmp" /* yacc.c:1646 */
break;
case 164:
#line 999 "cp-name-parser.y" /* yacc.c:1646 */
{ (yyval.comp) = state->d_unary ("-", (yyvsp[0].comp)); }
#line 2943 "cp-name-parser.c.tmp" /* yacc.c:1646 */
break;
case 165:
#line 1003 "cp-name-parser.y" /* yacc.c:1646 */
{ (yyval.comp) = state->d_unary ("!", (yyvsp[0].comp)); }
#line 2949 "cp-name-parser.c.tmp" /* yacc.c:1646 */
break;
case 166:
#line 1007 "cp-name-parser.y" /* yacc.c:1646 */
{ (yyval.comp) = state->d_unary ("~", (yyvsp[0].comp)); }
#line 2955 "cp-name-parser.c.tmp" /* yacc.c:1646 */
break;
case 167:
#line 1014 "cp-name-parser.y" /* yacc.c:1646 */
{ if ((yyvsp[0].comp)->type == DEMANGLE_COMPONENT_LITERAL
|| (yyvsp[0].comp)->type == DEMANGLE_COMPONENT_LITERAL_NEG)
{
(yyval.comp) = (yyvsp[0].comp);
d_left ((yyvsp[0].comp)) = (yyvsp[-2].comp);
}
else
(yyval.comp) = state->fill_comp (DEMANGLE_COMPONENT_UNARY,
state->fill_comp (DEMANGLE_COMPONENT_CAST, (yyvsp[-2].comp), NULL),
(yyvsp[0].comp));
}
#line 2971 "cp-name-parser.c.tmp" /* yacc.c:1646 */
break;
case 168:
#line 1030 "cp-name-parser.y" /* yacc.c:1646 */
{ (yyval.comp) = state->fill_comp (DEMANGLE_COMPONENT_UNARY,
state->fill_comp (DEMANGLE_COMPONENT_CAST, (yyvsp[-4].comp), NULL),
(yyvsp[-1].comp));
}
#line 2980 "cp-name-parser.c.tmp" /* yacc.c:1646 */
break;
case 169:
#line 1037 "cp-name-parser.y" /* yacc.c:1646 */
{ (yyval.comp) = state->fill_comp (DEMANGLE_COMPONENT_UNARY,
state->fill_comp (DEMANGLE_COMPONENT_CAST, (yyvsp[-4].comp), NULL),
(yyvsp[-1].comp));
}
#line 2989 "cp-name-parser.c.tmp" /* yacc.c:1646 */
break;
case 170:
#line 1044 "cp-name-parser.y" /* yacc.c:1646 */
{ (yyval.comp) = state->fill_comp (DEMANGLE_COMPONENT_UNARY,
state->fill_comp (DEMANGLE_COMPONENT_CAST, (yyvsp[-4].comp), NULL),
(yyvsp[-1].comp));
}
#line 2998 "cp-name-parser.c.tmp" /* yacc.c:1646 */
break;
case 171:
#line 1063 "cp-name-parser.y" /* yacc.c:1646 */
{ (yyval.comp) = state->d_binary ("*", (yyvsp[-2].comp), (yyvsp[0].comp)); }
#line 3004 "cp-name-parser.c.tmp" /* yacc.c:1646 */
break;
case 172:
#line 1067 "cp-name-parser.y" /* yacc.c:1646 */
{ (yyval.comp) = state->d_binary ("/", (yyvsp[-2].comp), (yyvsp[0].comp)); }
#line 3010 "cp-name-parser.c.tmp" /* yacc.c:1646 */
break;
case 173:
#line 1071 "cp-name-parser.y" /* yacc.c:1646 */
{ (yyval.comp) = state->d_binary ("%", (yyvsp[-2].comp), (yyvsp[0].comp)); }
#line 3016 "cp-name-parser.c.tmp" /* yacc.c:1646 */
break;
case 174:
#line 1075 "cp-name-parser.y" /* yacc.c:1646 */
{ (yyval.comp) = state->d_binary ("+", (yyvsp[-2].comp), (yyvsp[0].comp)); }
#line 3022 "cp-name-parser.c.tmp" /* yacc.c:1646 */
break;
case 175:
#line 1079 "cp-name-parser.y" /* yacc.c:1646 */
{ (yyval.comp) = state->d_binary ("-", (yyvsp[-2].comp), (yyvsp[0].comp)); }
#line 3028 "cp-name-parser.c.tmp" /* yacc.c:1646 */
break;
case 176:
#line 1083 "cp-name-parser.y" /* yacc.c:1646 */
{ (yyval.comp) = state->d_binary ("<<", (yyvsp[-2].comp), (yyvsp[0].comp)); }
#line 3034 "cp-name-parser.c.tmp" /* yacc.c:1646 */
break;
case 177:
#line 1087 "cp-name-parser.y" /* yacc.c:1646 */
{ (yyval.comp) = state->d_binary (">>", (yyvsp[-2].comp), (yyvsp[0].comp)); }
#line 3040 "cp-name-parser.c.tmp" /* yacc.c:1646 */
break;
case 178:
#line 1091 "cp-name-parser.y" /* yacc.c:1646 */
{ (yyval.comp) = state->d_binary ("==", (yyvsp[-2].comp), (yyvsp[0].comp)); }
#line 3046 "cp-name-parser.c.tmp" /* yacc.c:1646 */
break;
case 179:
#line 1095 "cp-name-parser.y" /* yacc.c:1646 */
{ (yyval.comp) = state->d_binary ("!=", (yyvsp[-2].comp), (yyvsp[0].comp)); }
#line 3052 "cp-name-parser.c.tmp" /* yacc.c:1646 */
break;
case 180:
#line 1099 "cp-name-parser.y" /* yacc.c:1646 */
{ (yyval.comp) = state->d_binary ("<=", (yyvsp[-2].comp), (yyvsp[0].comp)); }
#line 3058 "cp-name-parser.c.tmp" /* yacc.c:1646 */
break;
case 181:
#line 1103 "cp-name-parser.y" /* yacc.c:1646 */
{ (yyval.comp) = state->d_binary (">=", (yyvsp[-2].comp), (yyvsp[0].comp)); }
#line 3064 "cp-name-parser.c.tmp" /* yacc.c:1646 */
break;
case 182:
#line 1107 "cp-name-parser.y" /* yacc.c:1646 */
{ (yyval.comp) = state->d_binary ("<", (yyvsp[-2].comp), (yyvsp[0].comp)); }
#line 3070 "cp-name-parser.c.tmp" /* yacc.c:1646 */
break;
case 183:
#line 1111 "cp-name-parser.y" /* yacc.c:1646 */
{ (yyval.comp) = state->d_binary ("&", (yyvsp[-2].comp), (yyvsp[0].comp)); }
#line 3076 "cp-name-parser.c.tmp" /* yacc.c:1646 */
break;
case 184:
#line 1115 "cp-name-parser.y" /* yacc.c:1646 */
{ (yyval.comp) = state->d_binary ("^", (yyvsp[-2].comp), (yyvsp[0].comp)); }
#line 3082 "cp-name-parser.c.tmp" /* yacc.c:1646 */
break;
case 185:
#line 1119 "cp-name-parser.y" /* yacc.c:1646 */
{ (yyval.comp) = state->d_binary ("|", (yyvsp[-2].comp), (yyvsp[0].comp)); }
#line 3088 "cp-name-parser.c.tmp" /* yacc.c:1646 */
break;
case 186:
#line 1123 "cp-name-parser.y" /* yacc.c:1646 */
{ (yyval.comp) = state->d_binary ("&&", (yyvsp[-2].comp), (yyvsp[0].comp)); }
#line 3094 "cp-name-parser.c.tmp" /* yacc.c:1646 */
break;
case 187:
#line 1127 "cp-name-parser.y" /* yacc.c:1646 */
{ (yyval.comp) = state->d_binary ("||", (yyvsp[-2].comp), (yyvsp[0].comp)); }
#line 3100 "cp-name-parser.c.tmp" /* yacc.c:1646 */
break;
case 188:
#line 1132 "cp-name-parser.y" /* yacc.c:1646 */
{ (yyval.comp) = state->d_binary ("->", (yyvsp[-2].comp), (yyvsp[0].comp)); }
#line 3106 "cp-name-parser.c.tmp" /* yacc.c:1646 */
break;
case 189:
#line 1136 "cp-name-parser.y" /* yacc.c:1646 */
{ (yyval.comp) = state->d_binary (".", (yyvsp[-2].comp), (yyvsp[0].comp)); }
#line 3112 "cp-name-parser.c.tmp" /* yacc.c:1646 */
break;
case 190:
#line 1140 "cp-name-parser.y" /* yacc.c:1646 */
{ (yyval.comp) = state->fill_comp (DEMANGLE_COMPONENT_TRINARY, state->make_operator ("?", 3),
state->fill_comp (DEMANGLE_COMPONENT_TRINARY_ARG1, (yyvsp[-4].comp),
state->fill_comp (DEMANGLE_COMPONENT_TRINARY_ARG2, (yyvsp[-2].comp), (yyvsp[0].comp))));
}
#line 3121 "cp-name-parser.c.tmp" /* yacc.c:1646 */
break;
case 193:
#line 1154 "cp-name-parser.y" /* yacc.c:1646 */
{
/* Match the whitespacing of cplus_demangle_operators.
It would abort on unrecognized string otherwise. */
(yyval.comp) = state->d_unary ("sizeof ", (yyvsp[-1].comp));
}
#line 3131 "cp-name-parser.c.tmp" /* yacc.c:1646 */
break;
case 194:
#line 1163 "cp-name-parser.y" /* yacc.c:1646 */
{ struct demangle_component *i;
i = state->make_name ("1", 1);
(yyval.comp) = state->fill_comp (DEMANGLE_COMPONENT_LITERAL,
state->make_builtin_type ( "bool"),
i);
}
#line 3142 "cp-name-parser.c.tmp" /* yacc.c:1646 */
break;
case 195:
#line 1172 "cp-name-parser.y" /* yacc.c:1646 */
{ struct demangle_component *i;
i = state->make_name ("0", 1);
(yyval.comp) = state->fill_comp (DEMANGLE_COMPONENT_LITERAL,
state->make_builtin_type ("bool"),
i);
}
#line 3153 "cp-name-parser.c.tmp" /* yacc.c:1646 */
break;
#line 3157 "cp-name-parser.c.tmp" /* yacc.c:1646 */
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 (state, 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 (state, 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, state);
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 whose 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, state);
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 (state, 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, state);
}
/* Do not reclaim the symbols of the rule whose action triggered
this YYABORT or YYACCEPT. */
YYPOPSTACK (yylen);
YY_STACK_PRINT (yyss, yyssp);
while (yyssp != yyss)
{
yydestruct ("Cleanup: popping",
yystos[*yyssp], yyvsp, state);
YYPOPSTACK (1);
}
#ifndef yyoverflow
if (yyss != yyssa)
YYSTACK_FREE (yyss);
#endif
#if YYERROR_VERBOSE
if (yymsg != yymsgbuf)
YYSTACK_FREE (yymsg);
#endif
return yyresult;
}
#line 1182 "cp-name-parser.y" /* yacc.c:1906 */
/* Apply QUALIFIERS to LHS and return a qualified component. IS_METHOD
is set if LHS is a method, in which case the qualifiers are logically
applied to "this". We apply qualifiers in a consistent order; LHS
may already be qualified; duplicate qualifiers are not created. */
struct demangle_component *
cpname_state::d_qualify (struct demangle_component *lhs, int qualifiers,
int is_method)
{
struct demangle_component **inner_p;
enum demangle_component_type type;
/* For now the order is CONST (innermost), VOLATILE, RESTRICT. */
#define HANDLE_QUAL(TYPE, MTYPE, QUAL) \
if ((qualifiers & QUAL) && (type != TYPE) && (type != MTYPE)) \
{ \
*inner_p = fill_comp (is_method ? MTYPE : TYPE, \
*inner_p, NULL); \
inner_p = &d_left (*inner_p); \
type = (*inner_p)->type; \
} \
else if (type == TYPE || type == MTYPE) \
{ \
inner_p = &d_left (*inner_p); \
type = (*inner_p)->type; \
}
inner_p = &lhs;
type = (*inner_p)->type;
HANDLE_QUAL (DEMANGLE_COMPONENT_RESTRICT, DEMANGLE_COMPONENT_RESTRICT_THIS, QUAL_RESTRICT);
HANDLE_QUAL (DEMANGLE_COMPONENT_VOLATILE, DEMANGLE_COMPONENT_VOLATILE_THIS, QUAL_VOLATILE);
HANDLE_QUAL (DEMANGLE_COMPONENT_CONST, DEMANGLE_COMPONENT_CONST_THIS, QUAL_CONST);
return lhs;
}
/* Return a builtin type corresponding to FLAGS. */
struct demangle_component *
cpname_state::d_int_type (int flags)
{
const char *name;
switch (flags)
{
case INT_SIGNED | INT_CHAR:
name = "signed char";
break;
case INT_CHAR:
name = "char";
break;
case INT_UNSIGNED | INT_CHAR:
name = "unsigned char";
break;
case 0:
case INT_SIGNED:
name = "int";
break;
case INT_UNSIGNED:
name = "unsigned int";
break;
case INT_LONG:
case INT_SIGNED | INT_LONG:
name = "long";
break;
case INT_UNSIGNED | INT_LONG:
name = "unsigned long";
break;
case INT_SHORT:
case INT_SIGNED | INT_SHORT:
name = "short";
break;
case INT_UNSIGNED | INT_SHORT:
name = "unsigned short";
break;
case INT_LLONG | INT_LONG:
case INT_SIGNED | INT_LLONG | INT_LONG:
name = "long long";
break;
case INT_UNSIGNED | INT_LLONG | INT_LONG:
name = "unsigned long long";
break;
default:
return NULL;
}
return make_builtin_type (name);
}
/* Wrapper to create a unary operation. */
struct demangle_component *
cpname_state::d_unary (const char *name, struct demangle_component *lhs)
{
return fill_comp (DEMANGLE_COMPONENT_UNARY, make_operator (name, 1), lhs);
}
/* Wrapper to create a binary operation. */
struct demangle_component *
cpname_state::d_binary (const char *name, struct demangle_component *lhs,
struct demangle_component *rhs)
{
return fill_comp (DEMANGLE_COMPONENT_BINARY, make_operator (name, 2),
fill_comp (DEMANGLE_COMPONENT_BINARY_ARGS, lhs, rhs));
}
/* Find the end of a symbol name starting at LEXPTR. */
static const char *
symbol_end (const char *lexptr)
{
const char *p = lexptr;
while (*p && (c_ident_is_alnum (*p) || *p == '_' || *p == '$' || *p == '.'))
p++;
return p;
}
/* Take care of parsing a number (anything that starts with a digit).
The number starts at P and contains LEN characters. Store the result in
YYLVAL. */
int
cpname_state::parse_number (const char *p, int len, int parsed_float,
YYSTYPE *lvalp)
{
int unsigned_p = 0;
/* Number of "L" suffixes encountered. */
int long_p = 0;
struct demangle_component *signed_type;
struct demangle_component *unsigned_type;
struct demangle_component *type, *name;
enum demangle_component_type literal_type;
if (p[0] == '-')
{
literal_type = DEMANGLE_COMPONENT_LITERAL_NEG;
p++;
len--;
}
else
literal_type = DEMANGLE_COMPONENT_LITERAL;
if (parsed_float)
{
/* It's a float since it contains a point or an exponent. */
char c;
/* The GDB lexer checks the result of scanf at this point. Not doing
this leaves our error checking slightly weaker but only for invalid
data. */
/* See if it has `f' or `l' suffix (float or long double). */
c = TOLOWER (p[len - 1]);
if (c == 'f')
{
len--;
type = make_builtin_type ("float");
}
else if (c == 'l')
{
len--;
type = make_builtin_type ("long double");
}
else if (ISDIGIT (c) || c == '.')
type = make_builtin_type ("double");
else
return ERROR;
name = make_name (p, len);
lvalp->comp = fill_comp (literal_type, type, name);
return FLOAT;
}
/* This treats 0x1 and 1 as different literals. We also do not
automatically generate unsigned types. */
long_p = 0;
unsigned_p = 0;
while (len > 0)
{
if (p[len - 1] == 'l' || p[len - 1] == 'L')
{
len--;
long_p++;
continue;
}
if (p[len - 1] == 'u' || p[len - 1] == 'U')
{
len--;
unsigned_p++;
continue;
}
break;
}
if (long_p == 0)
{
unsigned_type = make_builtin_type ("unsigned int");
signed_type = make_builtin_type ("int");
}
else if (long_p == 1)
{
unsigned_type = make_builtin_type ("unsigned long");
signed_type = make_builtin_type ("long");
}
else
{
unsigned_type = make_builtin_type ("unsigned long long");
signed_type = make_builtin_type ("long long");
}
if (unsigned_p)
type = unsigned_type;
else
type = signed_type;
name = make_name (p, len);
lvalp->comp = fill_comp (literal_type, type, name);
return INT;
}
static const char backslashable[] = "abefnrtv";
static const char represented[] = "\a\b\e\f\n\r\t\v";
/* Translate the backslash the way we would in the host character set. */
static int
c_parse_backslash (int host_char, int *target_char)
{
const char *ix;
ix = strchr (backslashable, host_char);
if (! ix)
return 0;
else
*target_char = represented[ix - backslashable];
return 1;
}
/* Parse a C escape sequence. STRING_PTR points to a variable
containing a pointer to the string to parse. That pointer
should point to the character after the \. That pointer
is updated past the characters we use. The value of the
escape sequence is returned.
A negative value means the sequence \ newline was seen,
which is supposed to be equivalent to nothing at all.
If \ is followed by a null character, we return a negative
value and leave the string pointer pointing at the null character.
If \ is followed by 000, we return 0 and leave the string pointer
after the zeros. A value of 0 does not mean end of string. */
static int
cp_parse_escape (const char **string_ptr)
{
int target_char;
int c = *(*string_ptr)++;
if (c_parse_backslash (c, &target_char))
return target_char;
else
switch (c)
{
case '\n':
return -2;
case 0:
(*string_ptr)--;
return 0;
case '^':
{
c = *(*string_ptr)++;
if (c == '?')
return 0177;
else if (c == '\\')
target_char = cp_parse_escape (string_ptr);
else
target_char = c;
/* Now target_char is something like `c', and we want to find
its control-character equivalent. */
target_char = target_char & 037;
return target_char;
}
case '0':
case '1':
case '2':
case '3':
case '4':
case '5':
case '6':
case '7':
{
int i = c - '0';
int count = 0;
while (++count < 3)
{
c = (**string_ptr);
if (c >= '0' && c <= '7')
{
(*string_ptr)++;
i *= 8;
i += c - '0';
}
else
{
break;
}
}
return i;
}
default:
return c;
}
}
#define HANDLE_SPECIAL(string, comp) \
if (strncmp (tokstart, string, sizeof (string) - 1) == 0) \
{ \
state->lexptr = tokstart + sizeof (string) - 1; \
lvalp->lval = comp; \
return DEMANGLER_SPECIAL; \
}
#define HANDLE_TOKEN2(string, token) \
if (state->lexptr[1] == string[1]) \
{ \
state->lexptr += 2; \
lvalp->opname = string; \
return token; \
}
#define HANDLE_TOKEN3(string, token) \
if (state->lexptr[1] == string[1] && state->lexptr[2] == string[2]) \
{ \
state->lexptr += 3; \
lvalp->opname = string; \
return token; \
}
/* Read one token, getting characters through LEXPTR. */
static int
yylex (YYSTYPE *lvalp, cpname_state *state)
{
int c;
int namelen;
const char *tokstart;
retry:
state->prev_lexptr = state->lexptr;
tokstart = state->lexptr;
switch (c = *tokstart)
{
case 0:
return 0;
case ' ':
case '\t':
case '\n':
state->lexptr++;
goto retry;
case '\'':
/* We either have a character constant ('0' or '\177' for example)
or we have a quoted symbol reference ('foo(int,int)' in C++
for example). */
state->lexptr++;
c = *state->lexptr++;
if (c == '\\')
c = cp_parse_escape (&state->lexptr);
else if (c == '\'')
{
yyerror (state, _("empty character constant"));
return ERROR;
}
c = *state->lexptr++;
if (c != '\'')
{
yyerror (state, _("invalid character constant"));
return ERROR;
}
/* FIXME: We should refer to a canonical form of the character,
presumably the same one that appears in manglings - the decimal
representation. But if that isn't in our input then we have to
allocate memory for it somewhere. */
lvalp->comp
= state->fill_comp (DEMANGLE_COMPONENT_LITERAL,
state->make_builtin_type ("char"),
state->make_name (tokstart,
state->lexptr - tokstart));
return INT;
case '(':
if (strncmp (tokstart, "(anonymous namespace)", 21) == 0)
{
state->lexptr += 21;
lvalp->comp = state->make_name ("(anonymous namespace)",
sizeof "(anonymous namespace)" - 1);
return NAME;
}
/* FALL THROUGH */
case ')':
case ',':
state->lexptr++;
return c;
case '.':
if (state->lexptr[1] == '.' && state->lexptr[2] == '.')
{
state->lexptr += 3;
return ELLIPSIS;
}
/* Might be a floating point number. */
if (state->lexptr[1] < '0' || state->lexptr[1] > '9')
goto symbol; /* Nope, must be a symbol. */
goto try_number;
case '-':
HANDLE_TOKEN2 ("-=", ASSIGN_MODIFY);
HANDLE_TOKEN2 ("--", DECREMENT);
HANDLE_TOKEN2 ("->", ARROW);
/* For construction vtables. This is kind of hokey. */
if (strncmp (tokstart, "-in-", 4) == 0)
{
state->lexptr += 4;
return CONSTRUCTION_IN;
}
if (state->lexptr[1] < '0' || state->lexptr[1] > '9')
{
state->lexptr++;
return '-';
}
/* FALL THRU. */
try_number:
case '0':
case '1':
case '2':
case '3':
case '4':
case '5':
case '6':
case '7':
case '8':
case '9':
{
/* It's a number. */
int got_dot = 0, got_e = 0, toktype;
const char *p = tokstart;
int hex = 0;
if (c == '-')
p++;
if (c == '0' && (p[1] == 'x' || p[1] == 'X'))
{
p += 2;
hex = 1;
}
else if (c == '0' && (p[1]=='t' || p[1]=='T' || p[1]=='d' || p[1]=='D'))
{
p += 2;
hex = 0;
}
for (;; ++p)
{
/* This test includes !hex because 'e' is a valid hex digit
and thus does not indicate a floating point number when
the radix is hex. */
if (!hex && !got_e && (*p == 'e' || *p == 'E'))
got_dot = got_e = 1;
/* This test does not include !hex, because a '.' always indicates
a decimal floating point number regardless of the radix.
NOTE drow/2005-03-09: This comment is not accurate in C99;
however, it's not clear that all the floating point support
in this file is doing any good here. */
else if (!got_dot && *p == '.')
got_dot = 1;
else if (got_e && (p[-1] == 'e' || p[-1] == 'E')
&& (*p == '-' || *p == '+'))
/* This is the sign of the exponent, not the end of the
number. */
continue;
/* We will take any letters or digits. parse_number will
complain if past the radix, or if L or U are not final. */
else if (! ISALNUM (*p))
break;
}
toktype = state->parse_number (tokstart, p - tokstart, got_dot|got_e,
lvalp);
if (toktype == ERROR)
{
char *err_copy = (char *) alloca (p - tokstart + 1);
memcpy (err_copy, tokstart, p - tokstart);
err_copy[p - tokstart] = 0;
yyerror (state, _("invalid number"));
return ERROR;
}
state->lexptr = p;
return toktype;
}
case '+':
HANDLE_TOKEN2 ("+=", ASSIGN_MODIFY);
HANDLE_TOKEN2 ("++", INCREMENT);
state->lexptr++;
return c;
case '*':
HANDLE_TOKEN2 ("*=", ASSIGN_MODIFY);
state->lexptr++;
return c;
case '/':
HANDLE_TOKEN2 ("/=", ASSIGN_MODIFY);
state->lexptr++;
return c;
case '%':
HANDLE_TOKEN2 ("%=", ASSIGN_MODIFY);
state->lexptr++;
return c;
case '|':
HANDLE_TOKEN2 ("|=", ASSIGN_MODIFY);
HANDLE_TOKEN2 ("||", OROR);
state->lexptr++;
return c;
case '&':
HANDLE_TOKEN2 ("&=", ASSIGN_MODIFY);
HANDLE_TOKEN2 ("&&", ANDAND);
state->lexptr++;
return c;
case '^':
HANDLE_TOKEN2 ("^=", ASSIGN_MODIFY);
state->lexptr++;
return c;
case '!':
HANDLE_TOKEN2 ("!=", NOTEQUAL);
state->lexptr++;
return c;
case '<':
HANDLE_TOKEN3 ("<<=", ASSIGN_MODIFY);
HANDLE_TOKEN2 ("<=", LEQ);
HANDLE_TOKEN2 ("<<", LSH);
state->lexptr++;
return c;
case '>':
HANDLE_TOKEN3 (">>=", ASSIGN_MODIFY);
HANDLE_TOKEN2 (">=", GEQ);
HANDLE_TOKEN2 (">>", RSH);
state->lexptr++;
return c;
case '=':
HANDLE_TOKEN2 ("==", EQUAL);
state->lexptr++;
return c;
case ':':
HANDLE_TOKEN2 ("::", COLONCOLON);
state->lexptr++;
return c;
case '[':
case ']':
case '?':
case '@':
case '~':
case '{':
case '}':
symbol:
state->lexptr++;
return c;
case '"':
/* These can't occur in C++ names. */
yyerror (state, _("unexpected string literal"));
return ERROR;
}
if (!(c == '_' || c == '$' || c_ident_is_alpha (c)))
{
/* We must have come across a bad character (e.g. ';'). */
yyerror (state, _("invalid character"));
return ERROR;
}
/* It's a name. See how long it is. */
namelen = 0;
do
c = tokstart[++namelen];
while (c_ident_is_alnum (c) || c == '_' || c == '$');
state->lexptr += namelen;
/* Catch specific keywords. Notice that some of the keywords contain
spaces, and are sorted by the length of the first word. They must
all include a trailing space in the string comparison. */
switch (namelen)
{
case 16:
if (strncmp (tokstart, "reinterpret_cast", 16) == 0)
return REINTERPRET_CAST;
break;
case 12:
if (strncmp (tokstart, "construction vtable for ", 24) == 0)
{
state->lexptr = tokstart + 24;
return CONSTRUCTION_VTABLE;
}
if (strncmp (tokstart, "dynamic_cast", 12) == 0)
return DYNAMIC_CAST;
break;
case 11:
if (strncmp (tokstart, "static_cast", 11) == 0)
return STATIC_CAST;
break;
case 9:
HANDLE_SPECIAL ("covariant return thunk to ", DEMANGLE_COMPONENT_COVARIANT_THUNK);
HANDLE_SPECIAL ("reference temporary for ", DEMANGLE_COMPONENT_REFTEMP);
break;
case 8:
HANDLE_SPECIAL ("typeinfo for ", DEMANGLE_COMPONENT_TYPEINFO);
HANDLE_SPECIAL ("typeinfo fn for ", DEMANGLE_COMPONENT_TYPEINFO_FN);
HANDLE_SPECIAL ("typeinfo name for ", DEMANGLE_COMPONENT_TYPEINFO_NAME);
if (strncmp (tokstart, "operator", 8) == 0)
return OPERATOR;
if (strncmp (tokstart, "restrict", 8) == 0)
return RESTRICT;
if (strncmp (tokstart, "unsigned", 8) == 0)
return UNSIGNED;
if (strncmp (tokstart, "template", 8) == 0)
return TEMPLATE;
if (strncmp (tokstart, "volatile", 8) == 0)
return VOLATILE_KEYWORD;
break;
case 7:
HANDLE_SPECIAL ("virtual thunk to ", DEMANGLE_COMPONENT_VIRTUAL_THUNK);
if (strncmp (tokstart, "wchar_t", 7) == 0)
return WCHAR_T;
break;
case 6:
if (strncmp (tokstart, "global constructors keyed to ", 29) == 0)
{
const char *p;
state->lexptr = tokstart + 29;
lvalp->lval = DEMANGLE_COMPONENT_GLOBAL_CONSTRUCTORS;
/* Find the end of the symbol. */
p = symbol_end (state->lexptr);
lvalp->comp = state->make_name (state->lexptr, p - state->lexptr);
state->lexptr = p;
return DEMANGLER_SPECIAL;
}
if (strncmp (tokstart, "global destructors keyed to ", 28) == 0)
{
const char *p;
state->lexptr = tokstart + 28;
lvalp->lval = DEMANGLE_COMPONENT_GLOBAL_DESTRUCTORS;
/* Find the end of the symbol. */
p = symbol_end (state->lexptr);
lvalp->comp = state->make_name (state->lexptr, p - state->lexptr);
state->lexptr = p;
return DEMANGLER_SPECIAL;
}
HANDLE_SPECIAL ("vtable for ", DEMANGLE_COMPONENT_VTABLE);
if (strncmp (tokstart, "delete", 6) == 0)
return DELETE;
if (strncmp (tokstart, "struct", 6) == 0)
return STRUCT;
if (strncmp (tokstart, "signed", 6) == 0)
return SIGNED_KEYWORD;
if (strncmp (tokstart, "sizeof", 6) == 0)
return SIZEOF;
if (strncmp (tokstart, "double", 6) == 0)
return DOUBLE_KEYWORD;
break;
case 5:
HANDLE_SPECIAL ("guard variable for ", DEMANGLE_COMPONENT_GUARD);
if (strncmp (tokstart, "false", 5) == 0)
return FALSEKEYWORD;
if (strncmp (tokstart, "class", 5) == 0)
return CLASS;
if (strncmp (tokstart, "union", 5) == 0)
return UNION;
if (strncmp (tokstart, "float", 5) == 0)
return FLOAT_KEYWORD;
if (strncmp (tokstart, "short", 5) == 0)
return SHORT;
if (strncmp (tokstart, "const", 5) == 0)
return CONST_KEYWORD;
break;
case 4:
if (strncmp (tokstart, "void", 4) == 0)
return VOID;
if (strncmp (tokstart, "bool", 4) == 0)
return BOOL;
if (strncmp (tokstart, "char", 4) == 0)
return CHAR;
if (strncmp (tokstart, "enum", 4) == 0)
return ENUM;
if (strncmp (tokstart, "long", 4) == 0)
return LONG;
if (strncmp (tokstart, "true", 4) == 0)
return TRUEKEYWORD;
break;
case 3:
HANDLE_SPECIAL ("VTT for ", DEMANGLE_COMPONENT_VTT);
HANDLE_SPECIAL ("non-virtual thunk to ", DEMANGLE_COMPONENT_THUNK);
if (strncmp (tokstart, "new", 3) == 0)
return NEW;
if (strncmp (tokstart, "int", 3) == 0)
return INT_KEYWORD;
break;
default:
break;
}
lvalp->comp = state->make_name (tokstart, namelen);
return NAME;
}
static void
yyerror (cpname_state *state, const char *msg)
{
if (state->global_errmsg)
return;
state->error_lexptr = state->prev_lexptr;
state->global_errmsg = msg ? msg : "parse error";
}
/* Allocate a chunk of the components we'll need to build a tree. We
generally allocate too many components, but the extra memory usage
doesn't hurt because the trees are temporary and the storage is
reused. More may be allocated later, by d_grab. */
static struct demangle_info *
allocate_info (void)
{
struct demangle_info *info = XNEW (struct demangle_info);
info->next = NULL;
info->used = 0;
return info;
}
/* Convert RESULT to a string. The return value is allocated
using xmalloc. ESTIMATED_LEN is used only as a guide to the
length of the result. This functions handles a few cases that
cplus_demangle_print does not, specifically the global destructor
and constructor labels. */
gdb::unique_xmalloc_ptr
cp_comp_to_string (struct demangle_component *result, int estimated_len)
{
size_t err;
char *res = cplus_demangle_print (DMGL_PARAMS | DMGL_ANSI,
result, estimated_len, &err);
return gdb::unique_xmalloc_ptr (res);
}
/* Constructor for demangle_parse_info. */
demangle_parse_info::demangle_parse_info ()
: info (NULL),
tree (NULL)
{
obstack_init (&obstack);
}
/* Destructor for demangle_parse_info. */
demangle_parse_info::~demangle_parse_info ()
{
/* Free any allocated chunks of memory for the parse. */
while (info != NULL)
{
struct demangle_info *next = info->next;
xfree (info);
info = next;
}
/* Free any memory allocated during typedef replacement. */
obstack_free (&obstack, NULL);
}
/* Merge the two parse trees given by DEST and SRC. The parse tree
in SRC is attached to DEST at the node represented by TARGET.
NOTE 1: Since there is no API to merge obstacks, this function does
even attempt to try it. Fortunately, we do not (yet?) need this ability.
The code will assert if SRC->obstack is not empty.
NOTE 2: The string from which SRC was parsed must not be freed, since
this function will place pointers to that string into DEST. */
void
cp_merge_demangle_parse_infos (struct demangle_parse_info *dest,
struct demangle_component *target,
struct demangle_parse_info *src)
{
struct demangle_info *di;
/* Copy the SRC's parse data into DEST. */
*target = *src->tree;
di = dest->info;
while (di->next != NULL)
di = di->next;
di->next = src->info;
/* Clear the (pointer to) SRC's parse data so that it is not freed when
cp_demangled_parse_info_free is called. */
src->info = NULL;
}
/* Convert a demangled name to a demangle_component tree. On success,
a structure containing the root of the new tree is returned. On
error, NULL is returned, and an error message will be set in
*ERRMSG. */
struct std::unique_ptr
cp_demangled_name_to_comp (const char *demangled_name,
std::string *errmsg)
{
cpname_state state;
state.prev_lexptr = state.lexptr = demangled_name;
state.error_lexptr = NULL;
state.global_errmsg = NULL;
state.demangle_info = allocate_info ();
std::unique_ptr result (new demangle_parse_info);
result->info = state.demangle_info;
if (yyparse (&state))
{
if (state.global_errmsg && errmsg)
*errmsg = state.global_errmsg;
return NULL;
}
result->tree = state.global_result;
return result;
}
#ifdef TEST_CPNAMES
static void
cp_print (struct demangle_component *result)
{
char *str;
size_t err = 0;
str = cplus_demangle_print (DMGL_PARAMS | DMGL_ANSI, result, 64, &err);
if (str == NULL)
return;
fputs (str, stdout);
xfree (str);
}
static char
trim_chars (char *lexptr, char **extra_chars)
{
char *p = (char *) symbol_end (lexptr);
char c = 0;
if (*p)
{
c = *p;
*p = 0;
*extra_chars = p + 1;
}
return c;
}
/* When this file is built as a standalone program, xmalloc comes from
libiberty --- in which case we have to provide xfree ourselves. */
void
xfree (void *ptr)
{
if (ptr != NULL)
{
/* Literal `free' would get translated back to xfree again. */
CONCAT2 (fr,ee) (ptr);
}
}
/* GDB normally defines internal_error itself, but when this file is built
as a standalone program, we must also provide an implementation. */
void
internal_error (const char *file, int line, const char *fmt, ...)
{
va_list ap;
va_start (ap, fmt);
fprintf (stderr, "%s:%d: internal error: ", file, line);
vfprintf (stderr, fmt, ap);
exit (1);
}
int
main (int argc, char **argv)
{
char *str2, *extra_chars, c;
char buf[65536];
int arg;
arg = 1;
if (argv[arg] && strcmp (argv[arg], "--debug") == 0)
{
yydebug = 1;
arg++;
}
if (argv[arg] == NULL)
while (fgets (buf, 65536, stdin) != NULL)
{
int len;
buf[strlen (buf) - 1] = 0;
/* Use DMGL_VERBOSE to get expanded standard substitutions. */
c = trim_chars (buf, &extra_chars);
str2 = cplus_demangle (buf, DMGL_PARAMS | DMGL_ANSI | DMGL_VERBOSE);
if (str2 == NULL)
{
printf ("Demangling error\n");
if (c)
printf ("%s%c%s\n", buf, c, extra_chars);
else
printf ("%s\n", buf);
continue;
}
std::string errmsg;
std::unique_ptr result
= cp_demangled_name_to_comp (str2, &errmsg);
if (result == NULL)
{
fputs (errmsg.c_str (), stderr);
fputc ('\n', stderr);
continue;
}
cp_print (result->tree);
xfree (str2);
if (c)
{
putchar (c);
fputs (extra_chars, stdout);
}
putchar ('\n');
}
else
{
std::string errmsg;
std::unique_ptr result
= cp_demangled_name_to_comp (argv[arg], &errmsg);
if (result == NULL)
{
fputs (errmsg.c_str (), stderr);
fputc ('\n', stderr);
return 0;
}
cp_print (result->tree);
putchar ('\n');
}
return 0;
}
#endif