gdb/cp-name-parser.c - gdb

Global variables defined

Data types defined

Functions defined

Macros defined

Source code

  1. /* A Bison parser, made by GNU Bison 2.7.  */

  2. /* Bison implementation for Yacc-like parsers in C

  3.       Copyright (C) 1984, 1989-1990, 2000-2012 Free Software Foundation, Inc.

  4.    This program is free software: you can redistribute it and/or modify
  5.    it under the terms of the GNU General Public License as published by
  6.    the Free Software Foundation, either version 3 of the License, or
  7.    (at your option) any later version.

  8.    This program is distributed in the hope that it will be useful,
  9.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  10.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  11.    GNU General Public License for more details.

  12.    You should have received a copy of the GNU General Public License
  13.    along with this program.  If not, see <http://www.gnu.org/licenses/>.  */

  14. /* As a special exception, you may create a larger work that contains
  15.    part or all of the Bison parser skeleton and distribute that work
  16.    under terms of your choice, so long as that work isn't itself a
  17.    parser generator using the skeleton or a modified version thereof
  18.    as a parser skeleton.  Alternatively, if you modify or redistribute
  19.    the parser skeleton itself, you may (at your option) remove this
  20.    special exception, which will cause the skeleton and the resulting
  21.    Bison output files to be licensed under the GNU General Public
  22.    License without this special exception.

  23.    This special exception was added by the Free Software Foundation in
  24.    version 2.2 of Bison.  */

  25. /* C LALR(1) parser skeleton written by Richard Stallman, by
  26.    simplifying the original so-called "semantic" parser.  */

  27. /* All symbols defined below should begin with yy or YY, to avoid
  28.    infringing on user name space.  This should be done even for local
  29.    variables, as they might otherwise be expanded by user macros.
  30.    There are some unavoidable exceptions within include files to
  31.    define necessary library symbols; they are noted "INFRINGES ON
  32.    USER NAME SPACE" below.  */

  33. /* Identify Bison output.  */
  34. #define YYBISON 1

  35. /* Bison version.  */
  36. #define YYBISON_VERSION "2.7"

  37. /* Skeleton name.  */
  38. #define YYSKELETON_NAME "yacc.c"

  39. /* Pure parsers.  */
  40. #define YYPURE 0

  41. /* Push parsers.  */
  42. #define YYPUSH 0

  43. /* Pull parsers.  */
  44. #define YYPULL 1




  45. /* Copy the first part of user declarations.  */
  46. /* Line 371 of yacc.c  */
  47. #line 30 "cp-name-parser.y"


  48. #include "defs.h"

  49. #include <unistd.h>
  50. #include "safe-ctype.h"
  51. #include "demangle.h"
  52. #include "cp-support.h"

  53. /* Bison does not make it easy to create a parser without global
  54.    state, unfortunately.  Here are all the global variables used
  55.    in this parser.  */

  56. /* LEXPTR is the current pointer into our lex buffer.  PREV_LEXPTR
  57.    is the start of the last token lexed, only used for diagnostics.
  58.    ERROR_LEXPTR is the first place an error occurred.  GLOBAL_ERRMSG
  59.    is the first error message encountered.  */

  60. static const char *lexptr, *prev_lexptr, *error_lexptr, *global_errmsg;

  61. /* The components built by the parser are allocated ahead of time,
  62.    and cached in this structure.  */

  63. #define ALLOC_CHUNK 100

  64. struct demangle_info {
  65.   int used;
  66.   struct demangle_info *next;
  67.   struct demangle_component comps[ALLOC_CHUNK];
  68. };

  69. static struct demangle_info *demangle_info;

  70. static struct demangle_component *
  71. d_grab (void)
  72. {
  73.   struct demangle_info *more;

  74.   if (demangle_info->used >= ALLOC_CHUNK)
  75.     {
  76.       if (demangle_info->next == NULL)
  77.         {
  78.           more = xmalloc (sizeof (struct demangle_info));
  79.           more->next = NULL;
  80.           demangle_info->next = more;
  81.         }
  82.       else
  83.         more = demangle_info->next;

  84.       more->used = 0;
  85.       demangle_info = more;
  86.     }
  87.   return &demangle_info->comps[demangle_info->used++];
  88. }

  89. /* The parse tree created by the parser is stored here after a successful
  90.    parse.  */

  91. static struct demangle_component *global_result;

  92. /* Prototypes for helper functions used when constructing the parse
  93.    tree.  */

  94. static struct demangle_component *d_qualify (struct demangle_component *, int,
  95.                                              int);

  96. static struct demangle_component *d_int_type (int);

  97. static struct demangle_component *d_unary (const char *,
  98.                                            struct demangle_component *);
  99. static struct demangle_component *d_binary (const char *,
  100.                                             struct demangle_component *,
  101.                                             struct demangle_component *);

  102. /* Flags passed to d_qualify.  */

  103. #define QUAL_CONST 1
  104. #define QUAL_RESTRICT 2
  105. #define QUAL_VOLATILE 4

  106. /* Flags passed to d_int_type.  */

  107. #define INT_CHAR        (1 << 0)
  108. #define INT_SHORT        (1 << 1)
  109. #define INT_LONG        (1 << 2)
  110. #define INT_LLONG        (1 << 3)

  111. #define INT_SIGNED        (1 << 4)
  112. #define INT_UNSIGNED        (1 << 5)

  113. /* Remap normal yacc parser interface names (yyparse, yylex, yyerror, etc),
  114.    as well as gratuitiously global symbol names, so we can have multiple
  115.    yacc generated parsers in gdb.  Note that these are only the variables
  116.    produced by yacc.  If other parser generators (bison, byacc, etc) produce
  117.    additional global names that conflict at link time, then those parser
  118.    generators need to be fixed instead of adding those names to this list. */

  119. #define        yymaxdepth cpname_maxdepth
  120. #define        yyparse        cpname_parse
  121. #define        yylex        cpname_lex
  122. #define        yyerror        cpname_error
  123. #define        yylval        cpname_lval
  124. #define        yychar        cpname_char
  125. #define        yydebug        cpname_debug
  126. #define        yypact        cpname_pact
  127. #define        yyr1        cpname_r1
  128. #define        yyr2        cpname_r2
  129. #define        yydef        cpname_def
  130. #define        yychk        cpname_chk
  131. #define        yypgo        cpname_pgo
  132. #define        yyact        cpname_act
  133. #define        yyexca        cpname_exca
  134. #define yyerrflag cpname_errflag
  135. #define yynerrs        cpname_nerrs
  136. #define        yyps        cpname_ps
  137. #define        yypv        cpname_pv
  138. #define        yys        cpname_s
  139. #define        yy_yys        cpname_yys
  140. #define        yystate        cpname_state
  141. #define        yytmp        cpname_tmp
  142. #define        yyv        cpname_v
  143. #define        yy_yyv        cpname_yyv
  144. #define        yyval        cpname_val
  145. #define        yylloc        cpname_lloc
  146. #define yyreds        cpname_reds                /* With YYDEBUG defined */
  147. #define yytoks        cpname_toks                /* With YYDEBUG defined */
  148. #define yyname        cpname_name                /* With YYDEBUG defined */
  149. #define yyrule        cpname_rule                /* With YYDEBUG defined */
  150. #define yylhs        cpname_yylhs
  151. #define yylen        cpname_yylen
  152. #define yydefred cpname_yydefred
  153. #define yydgoto        cpname_yydgoto
  154. #define yysindex cpname_yysindex
  155. #define yyrindex cpname_yyrindex
  156. #define yygindex cpname_yygindex
  157. #define yytable         cpname_yytable
  158. #define yycheck         cpname_yycheck
  159. #define yyss        cpname_yyss
  160. #define yysslim        cpname_yysslim
  161. #define yyssp        cpname_yyssp
  162. #define yystacksize cpname_yystacksize
  163. #define yyvs        cpname_yyvs
  164. #define yyvsp        cpname_yyvsp

  165. int yyparse (void);
  166. static int yylex (void);
  167. static void yyerror (char *);

  168. /* Enable yydebug for the stand-alone parser.  */
  169. #ifdef TEST_CPNAMES
  170. # define YYDEBUG        1
  171. #endif

  172. /* Helper functions.  These wrap the demangler tree interface, handle
  173.    allocation from our global store, and return the allocated component.  */

  174. static struct demangle_component *
  175. fill_comp (enum demangle_component_type d_type, struct demangle_component *lhs,
  176.            struct demangle_component *rhs)
  177. {
  178.   struct demangle_component *ret = d_grab ();
  179.   int i;

  180.   i = cplus_demangle_fill_component (ret, d_type, lhs, rhs);
  181.   gdb_assert (i);

  182.   return ret;
  183. }

  184. static struct demangle_component *
  185. make_empty (enum demangle_component_type d_type)
  186. {
  187.   struct demangle_component *ret = d_grab ();
  188.   ret->type = d_type;
  189.   return ret;
  190. }

  191. static struct demangle_component *
  192. make_operator (const char *name, int args)
  193. {
  194.   struct demangle_component *ret = d_grab ();
  195.   int i;

  196.   i = cplus_demangle_fill_operator (ret, name, args);
  197.   gdb_assert (i);

  198.   return ret;
  199. }

  200. static struct demangle_component *
  201. make_dtor (enum gnu_v3_dtor_kinds kind, struct demangle_component *name)
  202. {
  203.   struct demangle_component *ret = d_grab ();
  204.   int i;

  205.   i = cplus_demangle_fill_dtor (ret, kind, name);
  206.   gdb_assert (i);

  207.   return ret;
  208. }

  209. static struct demangle_component *
  210. make_builtin_type (const char *name)
  211. {
  212.   struct demangle_component *ret = d_grab ();
  213.   int i;

  214.   i = cplus_demangle_fill_builtin_type (ret, name);
  215.   gdb_assert (i);

  216.   return ret;
  217. }

  218. static struct demangle_component *
  219. make_name (const char *name, int len)
  220. {
  221.   struct demangle_component *ret = d_grab ();
  222.   int i;

  223.   i = cplus_demangle_fill_name (ret, name, len);
  224.   gdb_assert (i);

  225.   return ret;
  226. }

  227. #define d_left(dc) (dc)->u.s_binary.left
  228. #define d_right(dc) (dc)->u.s_binary.right


  229. /* Line 371 of yacc.c  */
  230. #line 298 "cp-name-parser.c"

  231. # ifndef YY_NULL
  232. #  if defined __cplusplus && 201103L <= __cplusplus
  233. #   define YY_NULL nullptr
  234. #  else
  235. #   define YY_NULL 0
  236. #  endif
  237. # endif

  238. /* Enabling verbose error messages.  */
  239. #ifdef YYERROR_VERBOSE
  240. # undef YYERROR_VERBOSE
  241. # define YYERROR_VERBOSE 1
  242. #else
  243. # define YYERROR_VERBOSE 0
  244. #endif


  245. /* Enabling traces.  */
  246. #ifndef YYDEBUG
  247. # define YYDEBUG 0
  248. #endif
  249. #if YYDEBUG
  250. extern int yydebug;
  251. #endif

  252. /* Tokens.  */
  253. #ifndef YYTOKENTYPE
  254. # define YYTOKENTYPE
  255.    /* Put the tokens into the symbol table, so that GDB and other debuggers
  256.       know about them.  */
  257.    enum yytokentype {
  258.      INT = 258,
  259.      FLOAT = 259,
  260.      NAME = 260,
  261.      STRUCT = 261,
  262.      CLASS = 262,
  263.      UNION = 263,
  264.      ENUM = 264,
  265.      SIZEOF = 265,
  266.      UNSIGNED = 266,
  267.      COLONCOLON = 267,
  268.      TEMPLATE = 268,
  269.      ERROR = 269,
  270.      NEW = 270,
  271.      DELETE = 271,
  272.      OPERATOR = 272,
  273.      STATIC_CAST = 273,
  274.      REINTERPRET_CAST = 274,
  275.      DYNAMIC_CAST = 275,
  276.      SIGNED_KEYWORD = 276,
  277.      LONG = 277,
  278.      SHORT = 278,
  279.      INT_KEYWORD = 279,
  280.      CONST_KEYWORD = 280,
  281.      VOLATILE_KEYWORD = 281,
  282.      DOUBLE_KEYWORD = 282,
  283.      BOOL = 283,
  284.      ELLIPSIS = 284,
  285.      RESTRICT = 285,
  286.      VOID = 286,
  287.      FLOAT_KEYWORD = 287,
  288.      CHAR = 288,
  289.      WCHAR_T = 289,
  290.      ASSIGN_MODIFY = 290,
  291.      TRUEKEYWORD = 291,
  292.      FALSEKEYWORD = 292,
  293.      DEMANGLER_SPECIAL = 293,
  294.      CONSTRUCTION_VTABLE = 294,
  295.      CONSTRUCTION_IN = 295,
  296.      OROR = 296,
  297.      ANDAND = 297,
  298.      NOTEQUAL = 298,
  299.      EQUAL = 299,
  300.      GEQ = 300,
  301.      LEQ = 301,
  302.      RSH = 302,
  303.      LSH = 303,
  304.      DECREMENT = 304,
  305.      INCREMENT = 305,
  306.      UNARY = 306,
  307.      ARROW = 307
  308.    };
  309. #endif
  310. /* Tokens.  */
  311. #define INT 258
  312. #define FLOAT 259
  313. #define NAME 260
  314. #define STRUCT 261
  315. #define CLASS 262
  316. #define UNION 263
  317. #define ENUM 264
  318. #define SIZEOF 265
  319. #define UNSIGNED 266
  320. #define COLONCOLON 267
  321. #define TEMPLATE 268
  322. #define ERROR 269
  323. #define NEW 270
  324. #define DELETE 271
  325. #define OPERATOR 272
  326. #define STATIC_CAST 273
  327. #define REINTERPRET_CAST 274
  328. #define DYNAMIC_CAST 275
  329. #define SIGNED_KEYWORD 276
  330. #define LONG 277
  331. #define SHORT 278
  332. #define INT_KEYWORD 279
  333. #define CONST_KEYWORD 280
  334. #define VOLATILE_KEYWORD 281
  335. #define DOUBLE_KEYWORD 282
  336. #define BOOL 283
  337. #define ELLIPSIS 284
  338. #define RESTRICT 285
  339. #define VOID 286
  340. #define FLOAT_KEYWORD 287
  341. #define CHAR 288
  342. #define WCHAR_T 289
  343. #define ASSIGN_MODIFY 290
  344. #define TRUEKEYWORD 291
  345. #define FALSEKEYWORD 292
  346. #define DEMANGLER_SPECIAL 293
  347. #define CONSTRUCTION_VTABLE 294
  348. #define CONSTRUCTION_IN 295
  349. #define OROR 296
  350. #define ANDAND 297
  351. #define NOTEQUAL 298
  352. #define EQUAL 299
  353. #define GEQ 300
  354. #define LEQ 301
  355. #define RSH 302
  356. #define LSH 303
  357. #define DECREMENT 304
  358. #define INCREMENT 305
  359. #define UNARY 306
  360. #define ARROW 307



  361. #if ! defined YYSTYPE && ! defined YYSTYPE_IS_DECLARED
  362. typedef union YYSTYPE
  363. {
  364. /* Line 387 of yacc.c  */
  365. #line 261 "cp-name-parser.y"

  366.     struct demangle_component *comp;
  367.     struct nested {
  368.       struct demangle_component *comp;
  369.       struct demangle_component **last;
  370.     } nested;
  371.     struct {
  372.       struct demangle_component *comp, *last;
  373.     } nested1;
  374.     struct {
  375.       struct demangle_component *comp, **last;
  376.       struct nested fn;
  377.       struct demangle_component *start;
  378.       int fold_flag;
  379.     } abstract;
  380.     int lval;
  381.     const char *opname;


  382. /* Line 387 of yacc.c  */
  383. #line 462 "cp-name-parser.c"
  384. } YYSTYPE;
  385. # define YYSTYPE_IS_TRIVIAL 1
  386. # define yystype YYSTYPE /* obsolescent; will be withdrawn */
  387. # define YYSTYPE_IS_DECLARED 1
  388. #endif

  389. extern YYSTYPE yylval;

  390. #ifdef YYPARSE_PARAM
  391. #if defined __STDC__ || defined __cplusplus
  392. int yyparse (void *YYPARSE_PARAM);
  393. #else
  394. int yyparse ();
  395. #endif
  396. #else /* ! YYPARSE_PARAM */
  397. #if defined __STDC__ || defined __cplusplus
  398. int yyparse (void);
  399. #else
  400. int yyparse ();
  401. #endif
  402. #endif /* ! YYPARSE_PARAM */



  403. /* Copy the second part of user declarations.  */

  404. /* Line 390 of yacc.c  */
  405. #line 490 "cp-name-parser.c"

  406. #ifdef short
  407. # undef short
  408. #endif

  409. #ifdef YYTYPE_UINT8
  410. typedef YYTYPE_UINT8 yytype_uint8;
  411. #else
  412. typedef unsigned char yytype_uint8;
  413. #endif

  414. #ifdef YYTYPE_INT8
  415. typedef YYTYPE_INT8 yytype_int8;
  416. #elif (defined __STDC__ || defined __C99__FUNC__ \
  417.      || defined __cplusplus || defined _MSC_VER)
  418. typedef signed char yytype_int8;
  419. #else
  420. typedef short int yytype_int8;
  421. #endif

  422. #ifdef YYTYPE_UINT16
  423. typedef YYTYPE_UINT16 yytype_uint16;
  424. #else
  425. typedef unsigned short int yytype_uint16;
  426. #endif

  427. #ifdef YYTYPE_INT16
  428. typedef YYTYPE_INT16 yytype_int16;
  429. #else
  430. typedef short int yytype_int16;
  431. #endif

  432. #ifndef YYSIZE_T
  433. # ifdef __SIZE_TYPE__
  434. #  define YYSIZE_T __SIZE_TYPE__
  435. # elif defined size_t
  436. #  define YYSIZE_T size_t
  437. # elif ! defined YYSIZE_T && (defined __STDC__ || defined __C99__FUNC__ \
  438.      || defined __cplusplus || defined _MSC_VER)
  439. #  include <stddef.h> /* INFRINGES ON USER NAME SPACE */
  440. #  define YYSIZE_T size_t
  441. # else
  442. #  define YYSIZE_T unsigned int
  443. # endif
  444. #endif

  445. #define YYSIZE_MAXIMUM ((YYSIZE_T) -1)

  446. #ifndef YY_
  447. # if defined YYENABLE_NLS && YYENABLE_NLS
  448. #  if ENABLE_NLS
  449. #   include <libintl.h> /* INFRINGES ON USER NAME SPACE */
  450. #   define YY_(Msgid) dgettext ("bison-runtime", Msgid)
  451. #  endif
  452. # endif
  453. # ifndef YY_
  454. #  define YY_(Msgid) Msgid
  455. # endif
  456. #endif

  457. /* Suppress unused-variable warnings by "using" E.  */
  458. #if ! defined lint || defined __GNUC__
  459. # define YYUSE(E) ((void) (E))
  460. #else
  461. # define YYUSE(E) /* empty */
  462. #endif

  463. /* Identity function, used to suppress warnings about constant conditions.  */
  464. #ifndef lint
  465. # define YYID(N) (N)
  466. #else
  467. #if (defined __STDC__ || defined __C99__FUNC__ \
  468.      || defined __cplusplus || defined _MSC_VER)
  469. static int
  470. YYID (int yyi)
  471. #else
  472. static int
  473. YYID (yyi)
  474.     int yyi;
  475. #endif
  476. {
  477.   return yyi;
  478. }
  479. #endif

  480. #if ! defined yyoverflow || YYERROR_VERBOSE

  481. /* The parser invokes alloca or xmalloc; define the necessary symbols.  */

  482. # ifdef YYSTACK_USE_ALLOCA
  483. #  if YYSTACK_USE_ALLOCA
  484. #   ifdef __GNUC__
  485. #    define YYSTACK_ALLOC __builtin_alloca
  486. #   elif defined __BUILTIN_VA_ARG_INCR
  487. #    include <alloca.h> /* INFRINGES ON USER NAME SPACE */
  488. #   elif defined _AIX
  489. #    define YYSTACK_ALLOC __alloca
  490. #   elif defined _MSC_VER
  491. #    define alloca _alloca
  492. #   else
  493. #    define YYSTACK_ALLOC alloca
  494. #    if ! defined _ALLOCA_H && ! defined EXIT_SUCCESS && (defined __STDC__ || defined __C99__FUNC__ \
  495.      || defined __cplusplus || defined _MSC_VER)
  496. #     include <stdlib.h> /* INFRINGES ON USER NAME SPACE */
  497.       /* Use EXIT_SUCCESS as a witness for stdlib.h.  */
  498. #     ifndef EXIT_SUCCESS
  499. #      define EXIT_SUCCESS 0
  500. #     endif
  501. #    endif
  502. #   endif
  503. #  endif
  504. # endif

  505. # ifdef YYSTACK_ALLOC
  506.    /* Pacify GCC's `empty if-body' warning.  */
  507. #  define YYSTACK_FREE(Ptr) do { /* empty */; } while (YYID (0))
  508. #  ifndef YYSTACK_ALLOC_MAXIMUM
  509.     /* The OS might guarantee only one guard page at the bottom of the stack,
  510.        and a page size can be as small as 4096 bytes.  So we cannot safely
  511.        invoke alloca (N) if N exceeds 4096.  Use a slightly smaller number
  512.        to allow for a few compiler-allocated temporary stack slots.  */
  513. #   define YYSTACK_ALLOC_MAXIMUM 4032 /* reasonable circa 2006 */
  514. #  endif
  515. # else
  516. #  define YYSTACK_ALLOC YYMALLOC
  517. #  define YYSTACK_FREE YYFREE
  518. #  ifndef YYSTACK_ALLOC_MAXIMUM
  519. #   define YYSTACK_ALLOC_MAXIMUM YYSIZE_MAXIMUM
  520. #  endif
  521. #  if (defined __cplusplus && ! defined EXIT_SUCCESS \
  522.        && ! ((defined YYMALLOC || defined xmalloc) \
  523.              && (defined YYFREE || defined xfree)))
  524. #   include <stdlib.h> /* INFRINGES ON USER NAME SPACE */
  525. #   ifndef EXIT_SUCCESS
  526. #    define EXIT_SUCCESS 0
  527. #   endif
  528. #  endif
  529. #  ifndef YYMALLOC
  530. #   define YYMALLOC xmalloc
  531. #   if ! defined xmalloc && ! defined EXIT_SUCCESS && (defined __STDC__ || defined __C99__FUNC__ \
  532.      || defined __cplusplus || defined _MSC_VER)
  533. void *xmalloc (YYSIZE_T); /* INFRINGES ON USER NAME SPACE */
  534. #   endif
  535. #  endif
  536. #  ifndef YYFREE
  537. #   define YYFREE xfree
  538. #   if ! defined xfree && ! defined EXIT_SUCCESS && (defined __STDC__ || defined __C99__FUNC__ \
  539.      || defined __cplusplus || defined _MSC_VER)
  540. void xfree (void *); /* INFRINGES ON USER NAME SPACE */
  541. #   endif
  542. #  endif
  543. # endif
  544. #endif /* ! defined yyoverflow || YYERROR_VERBOSE */


  545. #if (! defined yyoverflow \
  546.      && (! defined __cplusplus \
  547.          || (defined YYSTYPE_IS_TRIVIAL && YYSTYPE_IS_TRIVIAL)))

  548. /* A type that is properly aligned for any stack member.  */
  549. union yyalloc
  550. {
  551.   yytype_int16 yyss_alloc;
  552.   YYSTYPE yyvs_alloc;
  553. };

  554. /* The size of the maximum gap between one aligned stack and the next.  */
  555. # define YYSTACK_GAP_MAXIMUM (sizeof (union yyalloc) - 1)

  556. /* The size of an array large to enough to hold all stacks, each with
  557.    N elements.  */
  558. # define YYSTACK_BYTES(N) \
  559.      ((N) * (sizeof (yytype_int16) + sizeof (YYSTYPE)) \
  560.       + YYSTACK_GAP_MAXIMUM)

  561. # define YYCOPY_NEEDED 1

  562. /* Relocate STACK from its old location to the new one.  The
  563.    local variables YYSIZE and YYSTACKSIZE give the old and new number of
  564.    elements in the stack, and YYPTR gives the new location of the
  565.    stack.  Advance YYPTR to a properly aligned location for the next
  566.    stack.  */
  567. # define YYSTACK_RELOCATE(Stack_alloc, Stack)                                \
  568.     do                                                                        \
  569.       {                                                                        \
  570.         YYSIZE_T yynewbytes;                                                \
  571.         YYCOPY (&yyptr->Stack_alloc, Stack, yysize);                        \
  572.         Stack = &yyptr->Stack_alloc;                                        \
  573.         yynewbytes = yystacksize * sizeof (*Stack) + YYSTACK_GAP_MAXIMUM; \
  574.         yyptr += yynewbytes / sizeof (*yyptr);                                \
  575.       }                                                                        \
  576.     while (YYID (0))

  577. #endif

  578. #if defined YYCOPY_NEEDED && YYCOPY_NEEDED
  579. /* Copy COUNT objects from SRC to DST.  The source and destination do
  580.    not overlap.  */
  581. # ifndef YYCOPY
  582. #  if defined __GNUC__ && 1 < __GNUC__
  583. #   define YYCOPY(Dst, Src, Count) \
  584.       __builtin_memcpy (Dst, Src, (Count) * sizeof (*(Src)))
  585. #  else
  586. #   define YYCOPY(Dst, Src, Count)              \
  587.       do                                        \
  588.         {                                       \
  589.           YYSIZE_T yyi;                         \
  590.           for (yyi = 0; yyi < (Count); yyi++)   \
  591.             (Dst)[yyi] = (Src)[yyi];            \
  592.         }                                       \
  593.       while (YYID (0))
  594. #  endif
  595. # endif
  596. #endif /* !YYCOPY_NEEDED */

  597. /* YYFINAL -- State number of the termination state.  */
  598. #define YYFINAL  84
  599. /* YYLAST -- Last index in YYTABLE.  */
  600. #define YYLAST   1097

  601. /* YYNTOKENS -- Number of terminals.  */
  602. #define YYNTOKENS  75
  603. /* YYNNTS -- Number of nonterminals.  */
  604. #define YYNNTS  40
  605. /* YYNRULES -- Number of rules.  */
  606. #define YYNRULES  194
  607. /* YYNRULES -- Number of states.  */
  608. #define YYNSTATES  324

  609. /* YYTRANSLATE(YYLEX) -- Bison symbol number corresponding to YYLEX.  */
  610. #define YYUNDEFTOK  2
  611. #define YYMAXUTOK   307

  612. #define YYTRANSLATE(YYX)                                                \
  613.   ((unsigned int) (YYX) <= YYMAXUTOK ? yytranslate[YYX] : YYUNDEFTOK)

  614. /* YYTRANSLATE[YYLEX] -- Bison symbol number corresponding to YYLEX.  */
  615. static const yytype_uint8 yytranslate[] =
  616. {
  617.        0,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  618.        2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  619.        2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  620.        2,     2,     2,    72,     2,     2,     2,    63,    49,     2,
  621.       73,    41,    61,    59,    42,    60,    67,    62,     2,     2,
  622.        2,     2,     2,     2,     2,     2,     2,     2,    74,     2,
  623.       52,    43,    53,    44,    58,     2,     2,     2,     2,     2,
  624.        2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  625.        2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  626.        2,    68,     2,    70,    48,     2,     2,     2,     2,     2,
  627.        2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  628.        2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  629.        2,     2,     2,     2,    47,     2,    71,     2,     2,     2,
  630.        2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  631.        2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  632.        2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  633.        2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  634.        2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  635.        2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  636.        2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  637.        2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  638.        2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  639.        2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  640.        2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  641.        2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  642.        2,     2,     2,     2,     2,     2,     1,     2,     3,     4,
  643.        5,     6,     7,     8,     9,    10,    11,    12,    13,    14,
  644.       15,    16,    17,    18,    19,    20,    21,    22,    23,    24,
  645.       25,    26,    27,    28,    29,    30,    31,    32,    33,    34,
  646.       35,    36,    37,    38,    39,    40,    45,    46,    50,    51,
  647.       54,    55,    56,    57,    64,    65,    66,    69
  648. };

  649. #if YYDEBUG
  650. /* YYPRHS[YYN] -- Index of the first RHS symbol of rule number YYN in
  651.    YYRHS.  */
  652. static const yytype_uint16 yyprhs[] =
  653. {
  654.        0,     0,     3,     5,     7,     9,    11,    12,    15,    18,
  655.       22,    26,    29,    32,    35,    40,    43,    46,    51,    56,
  656.       59,    62,    65,    68,    71,    74,    77,    80,    83,    86,
  657.       89,    92,    95,    98,   101,   104,   107,   110,   113,   116,
  658.      119,   122,   125,   128,   131,   135,   138,   142,   146,   149,
  659.      152,   154,   158,   161,   163,   168,   171,   173,   176,   179,
  660.      181,   184,   186,   188,   190,   192,   195,   198,   200,   203,
  661.      207,   210,   214,   219,   221,   225,   227,   230,   233,   238,
  662.      240,   242,   245,   249,   254,   258,   263,   268,   272,   273,
  663.      275,   277,   279,   281,   283,   286,   288,   290,   292,   294,
  664.      296,   298,   300,   303,   305,   307,   309,   312,   314,   316,
  665.      318,   321,   323,   327,   332,   335,   339,   342,   344,   348,
  666.      351,   354,   356,   360,   363,   367,   370,   375,   379,   381,
  667.      384,   386,   390,   393,   396,   398,   400,   403,   405,   410,
  668.      413,   415,   418,   421,   423,   427,   430,   433,   435,   438,
  669.      440,   442,   447,   452,   457,   460,   463,   466,   469,   473,
  670.      475,   479,   482,   487,   490,   493,   496,   501,   509,   517,
  671.      525,   529,   533,   537,   541,   545,   549,   553,   557,   561,
  672.      565,   569,   573,   577,   581,   585,   589,   593,   597,   601,
  673.      607,   609,   611,   616,   618
  674. };

  675. /* YYRHS -- A `-1'-separated list of the rules' RHS.  */
  676. static const yytype_int8 yyrhs[] =
  677. {
  678.       76,     0,    -1,    77,    -1,   108,    -1,    80,    -1,    79,
  679.       -1,    -1,    12,    77,    -1,   104,   111,    -1,   104,    95,
  680.       78,    -1,    88,    95,    78,    -1,    83,    78,    -1,    83,
  681.      107,    -1,    38,    77,    -1,    39,    77,    40,    77,    -1,
  682.       17,    15,    -1,    17,    16,    -1,    17,    15,    68,    70,
  683.       -1,    17,    16,    68,    70,    -1,    17,    59,    -1,    17,
  684.       60,    -1,    17,    61,    -1,    17,    62,    -1,    17,    63,
  685.       -1,    17,    48,    -1,    17,    49,    -1,    17,    47,    -1,
  686.       17,    71,    -1,    17,    72,    -1,    17,    43,    -1,    17,
  687.       52,    -1,    17,    53,    -1,    17,    35,    -1,    17,    57,
  688.       -1,    17,    56,    -1,    17,    51,    -1,    17,    50,    -1,
  689.       17,    55,    -1,    17,    54,    -1,    17,    46,    -1,    17,
  690.       45,    -1,    17,    65,    -1,    17,    64,    -1,    17,    42,
  691.       -1,    17,    69,    61,    -1,    17,    69,    -1,    17,    73,
  692.       41,    -1,    17,    68,    70,    -1,    17,   104,    -1,    90,
  693.       82,    -1,    82,    -1,    12,    90,    82,    -1,    12,    82,
  694.       -1,    81,    -1,    81,    52,    92,    53,    -1,    71,     5,
  695.       -1,    86,    -1,    12,    86,    -1,    90,     5,    -1,     5,
  696.       -1,    90,    91,    -1,    91,    -1,    85,    -1,    88,    -1,
  697.       89,    -1,    12,    89,    -1,    90,    84,    -1,    84,    -1,
  698.        5,    12,    -1,    90,     5,    12,    -1,    91,    12,    -1,
  699.       90,    91,    12,    -1,     5,    52,    92,    53,    -1,    93,
  700.       -1,    92,    42,    93,    -1,   104,    -1,   104,   105,    -1,
  701.       49,    77,    -1,    49,    73,    77,    41,    -1,   113,    -1,
  702.      104,    -1,   104,   105,    -1,    94,    42,   104,    -1,    94,
  703.       42,   104,   105,    -1,    94,    42,    29,    -1,    73,    94,
  704.       41,    96,    -1,    73,    31,    41,    96,    -1,    73,    41,
  705.       96,    -1,    -1,    98,    -1,    30,    -1,    26,    -1,    25,
  706.       -1,    97,    -1,    97,    98,    -1,    24,    -1,    21,    -1,
  707.       11,    -1,    33,    -1,    22,    -1,    23,    -1,    99,    -1,
  708.      100,    99,    -1,   100,    -1,    32,    -1,    27,    -1,    22,
  709.       27,    -1,    28,    -1,    34,    -1,    31,    -1,    61,    96,
  710.       -1,    49,    -1,    90,    61,    96,    -1,    12,    90,    61,
  711.       96,    -1,    68,    70,    -1,    68,     3,    70,    -1,   101,
  712.       98,    -1,   101,    -1,    98,   101,    98,    -1,    98,   101,
  713.       -1,    86,    98,    -1,    86,    -1,    98,    86,    98,    -1,
  714.       98,    86,    -1,    12,    86,    98,    -1,    12,    86,    -1,
  715.       98,    12,    86,    98,    -1,    98,    12,    86,    -1,   102,
  716.       -1,   102,   105,    -1,   106,    -1,    73,   105,    41,    -1,
  717.      106,    95,    -1,   106,   103,    -1,   103,    -1,   102,    -1,
  718.      102,   107,    -1,   106,    -1,   106,    95,    12,    77,    -1,
  719.       95,    78,    -1,   104,    -1,   104,   105,    -1,   102,   109,
  720.       -1,   110,    -1,    73,   109,    41,    -1,   110,    95,    -1,
  721.      110,   103,    -1,    87,    -1,   102,   111,    -1,    87,    -1,
  722.      112,    -1,    87,    95,    12,    77,    -1,   112,    95,    12,
  723.       77,    -1,    73,   102,   109,    41,    -1,   112,    95,    -1,
  724.      112,   103,    -1,    87,    95,    -1,    87,   103,    -1,    73,
  725.      114,    41,    -1,   113,    -1,   113,    53,   113,    -1,    49,
  726.       77,    -1,    49,    73,    77,    41,    -1,    60,   113,    -1,
  727.       72,   113,    -1,    71,   113,    -1,    73,   108,    41,   113,
  728.       -1,    18,    52,   108,    53,    73,   114,    41,    -1,    20,
  729.       52,   108,    53,    73,   114,    41,    -1,    19,    52,   108,
  730.       53,    73,   114,    41,    -1,   113,    61,   113,    -1,   113,
  731.       62,   113,    -1,   113,    63,   113,    -1,   113,    59,   113,
  732.       -1,   113,    60,   113,    -1,   113,    57,   113,    -1,   113,
  733.       56,   113,    -1,   113,    51,   113,    -1,   113,    50,   113,
  734.       -1,   113,    55,   113,    -1,   113,    54,   113,    -1,   113,
  735.       52,   113,    -1,   113,    49,   113,    -1,   113,    48,   113,
  736.       -1,   113,    47,   113,    -1,   113,    46,   113,    -1,   113,
  737.       45,   113,    -1,   113,    69,     5,    -1,   113,    67,     5,
  738.       -1,   113,    44,   113,    74,   113,    -1,     3,    -1,     4,
  739.       -1,    10,    73,   108,    41,    -1,    36,    -1,    37,    -1
  740. };

  741. /* YYRLINE[YYN] -- source line where rule number YYN was defined.  */
  742. static const yytype_uint16 yyrline[] =
  743. {
  744.        0,   375,   375,   379,   381,   383,   388,   389,   396,   405,
  745.      408,   412,   415,   434,   438,   442,   448,   454,   460,   466,
  746.      468,   470,   472,   474,   476,   478,   480,   482,   484,   486,
  747.      488,   490,   492,   494,   496,   498,   500,   502,   504,   506,
  748.      508,   510,   512,   514,   516,   518,   520,   522,   530,   535,
  749.      540,   544,   549,   557,   558,   560,   572,   573,   579,   581,
  750.      582,   584,   587,   588,   591,   592,   596,   598,   601,   607,
  751.      614,   620,   631,   635,   638,   649,   650,   654,   656,   658,
  752.      661,   665,   670,   675,   681,   691,   695,   699,   707,   708,
  753.      711,   713,   715,   719,   720,   727,   729,   731,   733,   735,
  754.      737,   741,   742,   746,   748,   750,   752,   754,   756,   758,
  755.      762,   768,   772,   780,   790,   794,   810,   812,   813,   815,
  756.      818,   820,   821,   823,   826,   828,   830,   832,   837,   840,
  757.      845,   852,   856,   867,   873,   891,   894,   902,   904,   915,
  758.      922,   923,   929,   933,   937,   939,   944,   949,   962,   966,
  759.      971,   979,   984,   993,   99710021007101110171023,
  760.     1026103310351040104410481055107110781085,
  761.     1104110811121116112011241128113211361140,
  762.     1144114811521156116011641168117311771181,
  763.     11881192119512041213
  764. };
  765. #endif

  766. #if YYDEBUG || YYERROR_VERBOSE || 0
  767. /* YYTNAME[SYMBOL-NUM] -- String name of the symbol SYMBOL-NUM.
  768.    First, the terminals, then, starting at YYNTOKENS, nonterminals.  */
  769. static const char *const yytname[] =
  770. {
  771.   "$end", "error", "$undefined", "INT", "FLOAT", "NAME", "STRUCT",
  772.   "CLASS", "UNION", "ENUM", "SIZEOF", "UNSIGNED", "COLONCOLON", "TEMPLATE",
  773.   "ERROR", "NEW", "DELETE", "OPERATOR", "STATIC_CAST", "REINTERPRET_CAST",
  774.   "DYNAMIC_CAST", "SIGNED_KEYWORD", "LONG", "SHORT", "INT_KEYWORD",
  775.   "CONST_KEYWORD", "VOLATILE_KEYWORD", "DOUBLE_KEYWORD", "BOOL",
  776.   "ELLIPSIS", "RESTRICT", "VOID", "FLOAT_KEYWORD", "CHAR", "WCHAR_T",
  777.   "ASSIGN_MODIFY", "TRUEKEYWORD", "FALSEKEYWORD", "DEMANGLER_SPECIAL",
  778.   "CONSTRUCTION_VTABLE", "CONSTRUCTION_IN", "')'", "','", "'='", "'?'",
  779.   "OROR", "ANDAND", "'|'", "'^'", "'&'", "NOTEQUAL", "EQUAL", "'<'", "'>'",
  780.   "GEQ", "LEQ", "RSH", "LSH", "'@'", "'+'", "'-'", "'*'", "'/'", "'%'",
  781.   "DECREMENT", "INCREMENT", "UNARY", "'.'", "'['", "ARROW", "']'", "'~'",
  782.   "'!'", "'('", "':'", "$accept", "result", "start", "start_opt",
  783.   "function", "demangler_special", "operator", "conversion_op",
  784.   "conversion_op_name", "unqualified_name", "colon_name", "name",
  785.   "colon_ext_name", "colon_ext_only", "ext_only_name", "nested_name",
  786.   "template", "template_params", "template_arg", "function_args",
  787.   "function_arglist", "qualifiers_opt", "qualifier", "qualifiers",
  788.   "int_part", "int_seq", "builtin_type", "ptr_operator", "array_indicator",
  789.   "typespec_2", "abstract_declarator", "direct_abstract_declarator",
  790.   "abstract_declarator_fn", "type", "declarator", "direct_declarator",
  791.   "declarator_1", "direct_declarator_1", "exp", "exp1", YY_NULL
  792. };
  793. #endif

  794. # ifdef YYPRINT
  795. /* YYTOKNUM[YYLEX-NUM] -- Internal token number corresponding to
  796.    token YYLEX-NUM.  */
  797. static const yytype_uint16 yytoknum[] =
  798. {
  799.        0,   256,   257,   258,   259,   260,   261,   262,   263,   264,
  800.      265,   266,   267,   268,   269,   270,   271,   272,   273,   274,
  801.      275,   276,   277,   278,   279,   280,   281,   282,   283,   284,
  802.      285,   286,   287,   288,   289,   290,   291,   292,   293,   294,
  803.      295,    41,    44,    61,    63,   296,   297,   124,    94,    38,
  804.      298,   299,    60,    62,   300,   301,   302,   303,    64,    43,
  805.       45,    42,    47,    37,   304,   305,   306,    46,    91,   307,
  806.       93,   126,    33,    40,    58
  807. };
  808. # endif

  809. /* YYR1[YYN] -- Symbol number of symbol that rule YYN derives.  */
  810. static const yytype_uint8 yyr1[] =
  811. {
  812.        0,    75,    76,    77,    77,    77,    78,    78,    79,    79,
  813.       79,    79,    79,    80,    80,    81,    81,    81,    81,    81,
  814.       81,    81,    81,    81,    81,    81,    81,    81,    81,    81,
  815.       81,    81,    81,    81,    81,    81,    81,    81,    81,    81,
  816.       81,    81,    81,    81,    81,    81,    81,    81,    82,    83,
  817.       83,    83,    83,    84,    84,    84,    85,    85,    86,    86,
  818.       86,    86,    87,    87,    88,    88,    89,    89,    90,    90,
  819.       90,    90,    91,    92,    92,    93,    93,    93,    93,    93,
  820.       94,    94,    94,    94,    94,    95,    95,    95,    96,    96,
  821.       97,    97,    97,    98,    98,    99,    99,    99,    99,    99,
  822.       99,   100,   100,   101,   101,   101,   101,   101,   101,   101,
  823.      102,   102,   102,   102,   103,   103,   104,   104,   104,   104,
  824.      104,   104,   104,   104,   104,   104,   104,   104,   105,   105,
  825.      105,   106,   106,   106,   106,   107,   107,   107,   107,   107,
  826.      108,   108,   109,   109,   110,   110,   110,   110,   111,   111,
  827.      111,   111,   111,   112,   112,   112,   112,   112,   113,   114,
  828.      114,   114,   114,   113,   113,   113,   113,   113,   113,   113,
  829.      113,   113,   113,   113,   113,   113,   113,   113,   113,   113,
  830.      113,   113,   113,   113,   113,   113,   113,   113,   113,   113,
  831.      113,   113,   113,   113,   113
  832. };

  833. /* YYR2[YYN] -- Number of symbols composing right hand side of rule YYN.  */
  834. static const yytype_uint8 yyr2[] =
  835. {
  836.        0,     2,     1,     1,     1,     1,     0,     2,     2,     3,
  837.        3,     2,     2,     2,     4,     2,     2,     4,     4,     2,
  838.        2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  839.        2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
  840.        2,     2,     2,     2,     3,     2,     3,     3,     2,     2,
  841.        1,     3,     2,     1,     4,     2,     1,     2,     2,     1,
  842.        2,     1,     1,     1,     1,     2,     2,     1,     2,     3,
  843.        2,     3,     4,     1,     3,     1,     2,     2,     4,     1,
  844.        1,     2,     3,     4,     3,     4,     4,     3,     0,     1,
  845.        1,     1,     1,     1,     2,     1,     1,     1,     1,     1,
  846.        1,     1,     2,     1,     1,     1,     2,     1,     1,     1,
  847.        2,     1,     3,     4,     2,     3,     2,     1,     3,     2,
  848.        2,     1,     3,     2,     3,     2,     4,     3,     1,     2,
  849.        1,     3,     2,     2,     1,     1,     2,     1,     4,     2,
  850.        1,     2,     2,     1,     3,     2,     2,     1,     2,     1,
  851.        1,     4,     4,     4,     2,     2,     2,     2,     3,     1,
  852.        3,     2,     4,     2,     2,     2,     4,     7,     7,     7,
  853.        3,     3,     3,     3,     3,     3,     3,     3,     3,     3,
  854.        3,     3,     3,     3,     3,     3,     3,     3,     3,     5,
  855.        1,     1,     4,     1,     1
  856. };

  857. /* YYDEFACT[STATE-NAME] -- Default reduction number in state STATE-NUM.
  858.    Performed when YYTABLE doesn't specify something else to do.  Zero
  859.    means the default is an error.  */
  860. static const yytype_uint8 yydefact[] =
  861. {
  862.        0,    59,    97,     0,     0,    96,    99,   100,    95,    92,
  863.       91,   105,   107,    90,   109,   104,    98,   108,     0,     0,
  864.        0,     0,     2,     5,     4,    53,    50,     6,    67,   121,
  865.        0,    64,     0,    61,    93,     0,   101,   103,   117,   140,
  866.        3,    68,     0,    52,   125,    65,     0,     0,    15,    16,
  867.       32,    43,    29,    40,    39,    26,    24,    25,    36,    35,
  868.       30,    31,    38,    37,    34,    33,    19,    20,    21,    22,
  869.       23,    42,    41,     0,    45,    27,    28,     0,     0,    48,
  870.      106,    13,     0,    55,     1,     0,     0,     0,   111,    88,
  871.        0,     0,    11,     0,     0,     6,   135,   134,   137,    12,
  872.      120,     0,     6,    58,    49,    66,    60,    70,    94,     0,
  873.      123,   119,    99,   102,   116,     0,     0,     0,    62,    56,
  874.      149,    63,     0,     6,   128,   141,   130,     8,   150,   190,
  875.      191,     0,     0,     0,     0,   193,   194,     0,     0,     0,
  876.        0,     0,     0,    73,    75,    79,   124,    51,     0,     0,
  877.       47,    44,    46,     0,     0,     7,     0,   110,    89,     0,
  878.      114,     0,   109,    88,     0,     0,     0,   128,    80,     0,
  879.        0,    88,     0,     0,   139,     0,   136,   132,   133,    10,
  880.       69,    71,   127,   122,   118,    57,     0,   128,   156,   157,
  881.        9,     0,   129,   148,   132,   154,   155,     0,     0,     0,
  882.        0,     0,    77,   163,   165,   164,     0,   140,     0,   159,
  883.        0,     0,    72,    76,     0,     0,     0,     0,     0,     0,
  884.        0,     0,     0,     0,     0,     0,     0,     0,     0,     0,
  885.        0,     0,     0,     0,    17,    18,    14,    54,    88,   115,
  886.        0,    88,    87,    88,     0,    81,   131,   112,     0,     0,
  887.      126,     0,   147,   128,     0,   143,     0,     0,     0,     0,
  888.        0,     0,     0,     0,   161,     0,     0,   158,    74,     0,
  889.      186,   185,   184,   183,   182,   178,   177,   181,   180,   179,
  890.      176,   175,   173,   174,   170,   171,   172,   188,   187,   113,
  891.       86,    85,    84,    82,   138,     0,   142,   153,   145,   146,
  892.      151,   152,   192,     0,     0,     0,    78,     0,   166,   160,
  893.        0,    83,   144,     0,     0,     0,   162,   189,     0,     0,
  894.        0,   167,   169,   168
  895. };

  896. /* YYDEFGOTO[NTERM-NUM].  */
  897. static const yytype_int16 yydefgoto[] =
  898. {
  899.       -1,    21,   155,    92,    23,    24,    25,    26,    27,    28,
  900.      118,    29,   252,    30,    31,    78,    33,   142,   143,   166,
  901.       95,   157,    34,    35,    36,    37,    38,   167,    97,    39,
  902.      169,   126,    99,    40,   254,   255,   127,   128,   209,   210
  903. };

  904. /* YYPACT[STATE-NUM] -- Index in YYTABLE of the portion describing
  905.    STATE-NUM.  */
  906. #define YYPACT_NINF -193
  907. static const yytype_int16 yypact[] =
  908. {
  909.      771,    28,  -193,    45,   545,  -193,   -16,  -193,  -193,  -193,
  910.     -193,  -193,  -193,  -193,  -193,  -193,  -193,  -193,   771,   771,
  911.       15,    58,  -193,  -193,  -193,    -4,  -193,     5,  -193,   116,
  912.      -22,  -193,    48,    55,   116,   887,  -193,   244,   116,   295,
  913.     -193,  -193,   390,  -193,   116,  -193,    48,    66,    31,    36,
  914.     -193,  -193,  -193,  -193,  -193,  -193,  -193,  -193,  -193,  -193,
  915.     -193,  -193,  -193,  -193,  -193,  -193,  -193,  -193,  -193,  -193,
  916.     -193,  -193,  -193,    13,    34,  -193,  -193,    70,   102,  -193,
  917.     -193,  -193,    81,  -193,  -193,   390,    28,   771,  -193,   116,
  918.        6,   610,  -193,     8,    55,    98,    52,  -193,   -38,  -193,
  919.     -193,   512,    98,    33,  -193,  -193,   115,  -193,  -193,    66,
  920.      116,   116,  -193,  -193,  -193,    65,   798,   610,  -193,  -193,
  921.      -38,  -193,    51,    98,   311,  -193,   -38,  -193,   -38,  -193,
  922.     -193,    56,    83,    87,    91,  -193,  -193,   663,   266,   266,
  923.      266,   454,     7,  -193,   285,   904,  -193,  -193,    75,    96,
  924.     -193,  -193,  -193,   771,    10,  -193,    67,  -193,  -193,   100,
  925.     -193,    66,   110,   116,   285,    27,   106,   285,   285,   130,
  926.       33,   116,   115,   771,  -193,   169,  -193,   167,  -193,  -193,
  927.     -193,  -193,   116,  -193,  -193,  -193,    69,   718,   171,  -193,
  928.     -193,   285,  -193,  -193,  -193,   172,  -193,   863,   863,   863,
  929.      863,   771,  -193,   -41,   -41,   -41,   687,   285,   140,   878,
  930.      144,   390,  -193,  -193,   266,   266,   266,   266,   266,   266,
  931.      266,   266,   266,   266,   266,   266,   266,   266,   266,   266,
  932.      266,   266,   183,   185,  -193,  -193,  -193,  -193,   116,  -193,
  933.       32,   116,  -193,   116,   795,  -193,  -193,  -193,    37,   771,
  934.     -193,   718,  -193,   718,   152,   -38,   771,   771,   153,   145,
  935.      146,   147,   156,   771,  -193,   266,   266,  -193,  -193,   694,
  936.      928,   951,   973,   9941014,   593,   593102810281028,
  937.      375,   375,   308,   308,   -41,   -41,   -41,  -193,  -193,  -193,
  938.     -193,  -193,  -193,   285,  -193,   161,  -193,  -193,  -193,  -193,
  939.     -193,  -193,  -193,   131,   160,   164,  -193,   162,   -41,   904,
  940.      266,  -193,  -193,   492,   492,   492,  -193,   904,   193,   199,
  941.      200,  -193,  -193,  -193
  942. };

  943. /* YYPGOTO[NTERM-NUM].  */
  944. static const yytype_int16 yypgoto[] =
  945. {
  946.     -193,  -193,    25,    57,  -193,  -193,  -193,     1,  -193,     9,
  947.     -193,    -1,   -34,   -24,     3,     0,   150,   157,    47,  -193,
  948.      -23,  -149,  -193,   210,   208,  -193,   212,   -15,   -97,   188,
  949.      -18,   -19,   165,   151,  -192,  -193,   138,  -193,    -6,  -159
  950. };

  951. /* YYTABLE[YYPACT[STATE-NUM]].  What to do in state STATE-NUM.  If
  952.    positive, shift that token.  If negative, reduce the rule which
  953.    number is the opposite.  If YYTABLE_NINF, syntax error.  */
  954. #define YYTABLE_NINF -1
  955. static const yytype_uint16 yytable[] =
  956. {
  957.       32,   178,    44,    46,    43,   120,    45,   102,    98,   159,
  958.       86,    80,    96,   170,   242,   121,   123,    87,    32,    32,
  959.       83,   125,   247,   189,   124,    22,   232,    93,   233,   178,
  960.       90,   196,   103,   104,   110,   101,   145,   103,   119,   122,
  961.       41,   105,   170,    81,    82,   180,    44,   147,    85,   211,
  962.        1,   101,   211,   103,    88,   105,   103,    86,    84,   295,
  963.      212,   296,     4,   237,   175,     4,    89,   107,   116,   171,
  964.        1,     1,   103,    90,   103,   177,   160,    98,    91,   145,
  965.       42,    96,   116,   150,     4,    42,   116,   156,   171,   289,
  966.      120,   165,   290,   238,   291,   151,    93,   188,   238,   148,
  967.      121,    88,   187,   194,   149,   195,   192,   103,   182,   124,
  968.      173,   152,   171,    89,   185,   186,    20,   165,    45,    20,
  969.       90,   153,    20,   119,   122,    91,   213,   181,   238,   197,
  970.      238,   105,   203,   204,   205,   198,    20,    32,    20,   199,
  971.       20,     9,    10,   200,    93,   234,    13,   243,   244,   192,
  972.      245,   241,   174,    32,   318,   319,   320,   104,   299,   179,
  973.       44,   240,   202,   121,    93,   105,   235,    93,    93,   192,
  974.      239,   246,   253,    32,    86,   248,   187,    94,   236,   249,
  975.      190,   265,   106,   256,   257,   267,   119,   122,   287,   125,
  976.      288,    93,    79,   297,   302,   105,   106,   306,   303,   304,
  977.      305,    32,   312,   316,   313,   145,    32,    93,   269,   270,
  978.      271,   272,   273,   274,   275,   276,   277,   278,   279,   280,
  979.      281,   282,   283,   284,   285,   286,   262,   121,   106,   121,
  980.      144,   264,   298,   314,   321,   192,   253,   315,   253,   100,
  981.      322,   323,   154,   172,   108,   113,    94,   111,   114,    32,
  982.      119,   122,   119,   122,   146,     2,    32,    32,   268,   308,
  983.      309,   176,   193,    32,     0,     5,   112,     7,     8,   129,
  984.      130,     0,   106,   144,   294,   311,   131,    16,     0,   168,
  985.        0,   300,   301,     0,   132,   133,   134,     0,   307,   168,
  986.       86,     0,   208,    93,    94,     0,     0,   175,     0,   158,
  987.        1,     0,   135,   136,   317,   168,   106,   115,     0,     0,
  988.        0,     0,   116,     0,    94,   106,     1,    94,    94,     0,
  989.      183,   184,     0,   115,     0,    94,   138,     0,   116,   207,
  990.        0,     0,     0,     0,    88,     0,   106,   139,   140,   141,
  991.        0,    94,     0,     0,    88,     0,    89,     0,   258,   259,
  992.      260,   261,     0,    90,     0,     0,    89,    94,   164,     0,
  993.       88,     0,     0,    90,     0,     0,    20,     0,   117,   229,
  994.      230,   231,    89,   158,     0,   232,     0,   233,     0,    90,
  995.        0,   158,    20,     0,   191,   207,   207,   207,   207,     0,
  996.      106,     0,   250,   129,   130,     1,     0,     0,   172,   144,
  997.      131,     2,    47,     0,     0,     0,     0,     0,   132,   133,
  998.      134,     5,     6,     7,     8,     9,    10,    11,    12,     0,
  999.       13,    14,    15,    16,    17,     0,   135,   136,     0,     0,
  1000.        0,     0,   293,     0,   227,   228,   229,   230,   231,   137,
  1001.        0,     0,   232,    94,   233,     0,     0,     0,   158,     0,
  1002.      138,   158,     0,   158,     0,     0,     0,   129,   130,     1,
  1003.        0,   139,   140,   141,   131,     2,    47,     0,     0,     0,
  1004.        0,     0,   132,   133,   134,     5,     6,     7,     8,     9,
  1005.       10,    11,    12,     0,    13,    14,    15,    16,    17,     0,
  1006.      135,   136,     0,     0,     0,   129,   130,     0,     0,     0,
  1007.        0,     0,   131,   206,     0,     0,     0,     0,     0,     0,
  1008.      132,   133,   134,     0,   138,     0,     0,     1,     0,     0,
  1009.        0,     0,     0,     2,    47,   139,   140,   141,   135,   136,
  1010.        0,     0,     0,     5,     6,     7,     8,     9,    10,    11,
  1011.       12,   206,    13,   162,    15,    16,    17,     0,     0,     0,
  1012.        1,     0,   138,   163,     0,     0,     2,    47,     0,     0,
  1013.       48,    49,     0,   139,   140,   141,     5,     6,     7,     8,
  1014.        9,    10,    11,    12,     0,    13,    14,    15,    16,    17,
  1015.       50,     0,     0,     0,     0,     0,     0,    51,    52,     0,
  1016.       53,    54,    55,    56,    57,    58,    59,    60,    61,    62,
  1017.       63,    64,    65,     0,    66,    67,    68,    69,    70,    71,
  1018.       72,     0,     0,    73,    74,     1,    75,    76,    77,     0,
  1019.        0,     2,   161,     0,     0,     0,     0,     0,     0,     0,
  1020.        0,     5,     6,     7,     8,     9,    10,    11,    12,     0,
  1021.       13,   162,    15,    16,    17,   222,     0,   223,   224,   225,
  1022.      226,   163,   227,   228,   229,   230,   231,     0,     0,    88,
  1023.      232,     0,   233,     0,     0,     0,     0,     0,     1,     0,
  1024.        0,    89,     0,     0,     2,     3,     0,     0,    90,     0,
  1025.        4,     0,     0,   164,     5,     6,     7,     8,     9,    10,
  1026.       11,    12,     1,    13,    14,    15,    16,    17,     2,     3,
  1027.        0,    18,    19,     0,     4,     0,     0,     0,     5,     6,
  1028.        7,     8,     9,    10,    11,    12,     0,    13,    14,    15,
  1029.       16,    17,     0,     1,     0,    18,    19,     0,     0,     0,
  1030.      115,     0,     0,     0,    20,   116,   201,     0,   214,   215,
  1031.      216,   217,   218,   219,   220,   221,   222,     0,   223,   224,
  1032.      225,   226,     0,   227,   228,   229,   230,   231,    20,     0,
  1033.      263,   232,     0,   233,     0,     0,     0,    88,   310,     0,
  1034.        0,     0,     0,     0,     0,     0,     1,     0,     0,    89,
  1035.        0,     0,     2,     3,     0,     0,    90,     0,     4,    20,
  1036.        0,   251,     5,     6,     7,     8,     9,    10,    11,    12,
  1037.        1,    13,    14,    15,    16,    17,     2,    47,     0,    18,
  1038.       19,     0,     0,    48,    49,     0,     5,     6,     7,     8,
  1039.        9,    10,    11,    12,   292,    13,    14,    15,    16,    17,
  1040.        0,     0,     0,    50,     0,     0,     0,     0,     0,     0,
  1041.       51,    52,    20,    53,    54,    55,    56,    57,    58,    59,
  1042.       60,    61,    62,    63,    64,    65,     0,    66,    67,    68,
  1043.       69,    70,    71,    72,     0,     0,    73,    74,     1,    75,
  1044.       76,    77,     0,     0,     2,    47,     0,     0,     0,     0,
  1045.        0,     0,     0,     0,     5,     6,     7,     8,     9,    10,
  1046.       11,    12,     1,    13,    14,    15,    16,    17,     2,   109,
  1047.        0,     0,     0,     0,     0,     0,     0,     0,     5,     6,
  1048.        7,     8,     0,     0,    11,    12,     0,     0,    14,    15,
  1049.       16,    17,   214,   215,   216,   217,   218,   219,   220,   221,
  1050.      222,   266,   223,   224,   225,   226,     0,   227,   228,   229,
  1051.      230,   231,     0,     0,     0,   232,     0,   233,   214,   215,
  1052.      216,   217,   218,   219,   220,   221,   222,     0,   223,   224,
  1053.      225,   226,     0,   227,   228,   229,   230,   231,     0,     0,
  1054.        0,   232,     0,   233,   216,   217,   218,   219,   220,   221,
  1055.      222,     0,   223,   224,   225,   226,     0,   227,   228,   229,
  1056.      230,   231,     0,     0,     0,   232,     0,   233,   217,   218,
  1057.      219,   220,   221,   222,     0,   223,   224,   225,   226,     0,
  1058.      227,   228,   229,   230,   231,     0,     0,     0,   232,     0,
  1059.      233,   218,   219,   220,   221,   222,     0,   223,   224,   225,
  1060.      226,     0,   227,   228,   229,   230,   231,     0,     0,     0,
  1061.      232,     0,   233,   219,   220,   221,   222,     0,   223,   224,
  1062.      225,   226,     0,   227,   228,   229,   230,   231,     0,     0,
  1063.        0,   232,     0,   233,   220,   221,   222,     0,   223,   224,
  1064.      225,   226,     0,   227,   228,   229,   230,   231,     0,     0,
  1065.        0,   232,     0,   233,   225,   226,     0,   227,   228,   229,
  1066.      230,   231,     0,     0,     0,   232,     0,   233
  1067. };

  1068. #define yypact_value_is_default(Yystate) \
  1069.   (!!((Yystate) == (-193)))

  1070. #define yytable_value_is_error(Yytable_value) \
  1071.   YYID (0)

  1072. static const yytype_int16 yycheck[] =
  1073. {
  1074.        0,    98,     3,     3,     3,    39,     3,    30,    27,     3,
  1075.        5,    27,    27,     5,   163,    39,    39,    12,    18,    19,
  1076.        5,    39,   171,   120,    39,     0,    67,    27,    69,   126,
  1077.       68,   128,     5,    32,    35,    73,    42,     5,    39,    39,
  1078.       12,    32,     5,    18,    19,    12,    47,    46,    52,    42,
  1079.        5,    73,    42,     5,    49,    46,     5,     5,     0,   251,
  1080.       53,   253,    17,    53,    12,    17,    61,    12,    17,    61,
  1081.        5,     5,     5,    68,     5,    98,    70,    96,    73,    85,
  1082.       52,    96,    17,    70,    17,    52,    17,    87,    61,   238,
  1083.      124,    91,   241,    61,   243,    61,    96,   120,    61,    68,
  1084.      124,    49,   117,   126,    68,   128,   124,     5,   109,   124,
  1085.       12,    41,    61,    61,   115,   115,    71,   117,   115,    71,
  1086.       68,    40,    71,   124,   124,    73,   144,    12,    61,    73,
  1087.       61,   122,   138,   139,   140,    52,    71,   137,    71,    52,
  1088.       71,    25,    26,    52,   144,    70,    30,    41,    42,   167,
  1089.      168,    41,    95,   153,   313,   314,   315,   156,   255,   102,
  1090.      161,   161,   137,   187,   164,   156,    70,   167,   168,   187,
  1091.       70,    41,   187,   173,     5,   175,   191,    27,   153,    12,
  1092.      123,    41,    32,    12,    12,    41,   187,   187,     5,   207,
  1093.        5,   191,     4,    41,    41,   186,    46,    41,    53,    53,
  1094.       53,   201,    41,    41,    73,   211,   206,   207,   214,   215,
  1095.      216,   217,   218,   219,   220,   221,   222,   223,   224,   225,
  1096.      226,   227,   228,   229,   230,   231,   201,   251,    78,   253,
  1097.       42,   206,   255,    73,    41,   253,   251,    73,   253,    29,
  1098.       41,    41,    85,    93,    34,    37,    96,    35,    38,   249,
  1099.      251,   251,   253,   253,    44,    11,   256,   257,   211,   265,
  1100.      266,    96,   124,   263,    -1,    21,    22,    23,    24,     3,
  1101.        4,    -1,   122,    85,   249,   293,    10,    33,    -1,    91,
  1102.       -1,   256,   257,    -1,    18,    19,    20,    -1,   263,   101,
  1103.        5,    -1,   141,   293,   144,    -1,    -1,    12,    -1,    89,
  1104.        5,    -1,    36,    37,   310,   117,   156,    12,    -1,    -1,
  1105.       -1,    -1,    17,    -1,   164,   165,     5,   167,   168,    -1,
  1106.      110,   111,    -1,    12,    -1,   175,    60,    -1,    17,   141,
  1107.       -1,    -1,    -1,    -1,    49,    -1,   186,    71,    72,    73,
  1108.       -1,   191,    -1,    -1,    49,    -1,    61,    -1,   197,   198,
  1109.      199,   200,    -1,    68,    -1,    -1,    61,   207,    73,    -1,
  1110.       49,    -1,    -1,    68,    -1,    -1,    71,    -1,    73,    61,
  1111.       62,    63,    61,   163,    -1,    67,    -1,    69,    -1,    68,
  1112.       -1,   171,    71,    -1,    73,   197,   198,   199,   200,    -1,
  1113.      240,    -1,   182,     3,     4,     5,    -1,    -1,   248,   211,
  1114.       10,    11,    12,    -1,    -1,    -1,    -1,    -1,    18,    19,
  1115.       20,    21,    22,    23,    24,    25,    26,    27,    28,    -1,
  1116.       30,    31,    32,    33,    34,    -1,    36,    37,    -1,    -1,
  1117.       -1,    -1,   244,    -1,    59,    60,    61,    62,    63,    49,
  1118.       -1,    -1,    67,   293,    69,    -1,    -1,    -1,   238,    -1,
  1119.       60,   241,    -1,   243,    -1,    -1,    -1,     3,     4,     5,
  1120.       -1,    71,    72,    73,    10,    11,    12,    -1,    -1,    -1,
  1121.       -1,    -1,    18,    19,    20,    21,    22,    23,    24,    25,
  1122.       26,    27,    28,    -1,    30,    31,    32,    33,    34,    -1,
  1123.       36,    37,    -1,    -1,    -1,     3,     4,    -1,    -1,    -1,
  1124.       -1,    -1,    10,    49,    -1,    -1,    -1,    -1,    -1,    -1,
  1125.       18,    19,    20,    -1,    60,    -1,    -1,     5,    -1,    -1,
  1126.       -1,    -1,    -1,    11,    12,    71,    72,    73,    36,    37,
  1127.       -1,    -1,    -1,    21,    22,    23,    24,    25,    26,    27,
  1128.       28,    49,    30,    31,    32,    33,    34,    -1,    -1,    -1,
  1129.        5,    -1,    60,    41,    -1,    -1,    11,    12,    -1,    -1,
  1130.       15,    16,    -1,    71,    72,    73,    21,    22,    23,    24,
  1131.       25,    26,    27,    28,    -1,    30,    31,    32,    33,    34,
  1132.       35,    -1,    -1,    -1,    -1,    -1,    -1,    42,    43,    -1,
  1133.       45,    46,    47,    48,    49,    50,    51,    52,    53,    54,
  1134.       55,    56,    57,    -1,    59,    60,    61,    62,    63,    64,
  1135.       65,    -1,    -1,    68,    69,     5,    71,    72,    73,    -1,
  1136.       -1,    11,    12,    -1,    -1,    -1,    -1,    -1,    -1,    -1,
  1137.       -1,    21,    22,    23,    24,    25,    26,    27,    28,    -1,
  1138.       30,    31,    32,    33,    34,    52,    -1,    54,    55,    56,
  1139.       57,    41,    59,    60,    61,    62,    63,    -1,    -1,    49,
  1140.       67,    -1,    69,    -1,    -1,    -1,    -1,    -1,     5,    -1,
  1141.       -1,    61,    -1,    -1,    11,    12,    -1,    -1,    68,    -1,
  1142.       17,    -1,    -1,    73,    21,    22,    23,    24,    25,    26,
  1143.       27,    28,     5,    30,    31,    32,    33,    34,    11,    12,
  1144.       -1,    38,    39,    -1,    17,    -1,    -1,    -1,    21,    22,
  1145.       23,    24,    25,    26,    27,    28,    -1,    30,    31,    32,
  1146.       33,    34,    -1,     5,    -1,    38,    39,    -1,    -1,    -1,
  1147.       12,    -1,    -1,    -1,    71,    17,    73,    -1,    44,    45,
  1148.       46,    47,    48,    49,    50,    51,    52,    -1,    54,    55,
  1149.       56,    57,    -1,    59,    60,    61,    62,    63,    71,    -1,
  1150.       73,    67,    -1,    69,    -1,    -1,    -1,    49,    74,    -1,
  1151.       -1,    -1,    -1,    -1,    -1,    -1,     5,    -1,    -1,    61,
  1152.       -1,    -1,    11,    12,    -1,    -1,    68,    -1,    17,    71,
  1153.       -1,    73,    21,    22,    23,    24,    25,    26,    27,    28,
  1154.        5,    30,    31,    32,    33,    34,    11,    12,    -1,    38,
  1155.       39,    -1,    -1,    15,    16,    -1,    21,    22,    23,    24,
  1156.       25,    26,    27,    28,    29,    30,    31,    32,    33,    34,
  1157.       -1,    -1,    -1,    35,    -1,    -1,    -1,    -1,    -1,    -1,
  1158.       42,    43,    71,    45,    46,    47,    48,    49,    50,    51,
  1159.       52,    53,    54,    55,    56,    57,    -1,    59,    60,    61,
  1160.       62,    63,    64,    65,    -1,    -1,    68,    69,     5,    71,
  1161.       72,    73,    -1,    -1,    11,    12,    -1,    -1,    -1,    -1,
  1162.       -1,    -1,    -1,    -1,    21,    22,    23,    24,    25,    26,
  1163.       27,    28,     5,    30,    31,    32,    33,    34,    11,    12,
  1164.       -1,    -1,    -1,    -1,    -1,    -1,    -1,    -1,    21,    22,
  1165.       23,    24,    -1,    -1,    27,    28,    -1,    -1,    31,    32,
  1166.       33,    34,    44,    45,    46,    47,    48,    49,    50,    51,
  1167.       52,    53,    54,    55,    56,    57,    -1,    59,    60,    61,
  1168.       62,    63,    -1,    -1,    -1,    67,    -1,    69,    44,    45,
  1169.       46,    47,    48,    49,    50,    51,    52,    -1,    54,    55,
  1170.       56,    57,    -1,    59,    60,    61,    62,    63,    -1,    -1,
  1171.       -1,    67,    -1,    69,    46,    47,    48,    49,    50,    51,
  1172.       52,    -1,    54,    55,    56,    57,    -1,    59,    60,    61,
  1173.       62,    63,    -1,    -1,    -1,    67,    -1,    69,    47,    48,
  1174.       49,    50,    51,    52,    -1,    54,    55,    56,    57,    -1,
  1175.       59,    60,    61,    62,    63,    -1,    -1,    -1,    67,    -1,
  1176.       69,    48,    49,    50,    51,    52,    -1,    54,    55,    56,
  1177.       57,    -1,    59,    60,    61,    62,    63,    -1,    -1,    -1,
  1178.       67,    -1,    69,    49,    50,    51,    52,    -1,    54,    55,
  1179.       56,    57,    -1,    59,    60,    61,    62,    63,    -1,    -1,
  1180.       -1,    67,    -1,    69,    50,    51,    52,    -1,    54,    55,
  1181.       56,    57,    -1,    59,    60,    61,    62,    63,    -1,    -1,
  1182.       -1,    67,    -1,    69,    56,    57,    -1,    59,    60,    61,
  1183.       62,    63,    -1,    -1,    -1,    67,    -1,    69
  1184. };

  1185. /* YYSTOS[STATE-NUM] -- The (internal number of the) accessing
  1186.    symbol of state STATE-NUM.  */
  1187. static const yytype_uint8 yystos[] =
  1188. {
  1189.        0,     5,    11,    12,    17,    21,    22,    23,    24,    25,
  1190.       26,    27,    28,    30,    31,    32,    33,    34,    38,    39,
  1191.       71,    76,    77,    79,    80,    81,    82,    83,    84,    86,
  1192.       88,    89,    90,    91,    97,    98,    99,   100,   101,   104,
  1193.      108,    12,    52,    82,    86,    89,    90,    12,    15,    16,
  1194.       35,    42,    43,    45,    46,    47,    48,    49,    50,    51,
  1195.       52,    53,    54,    55,    56,    57,    59,    60,    61,    62,
  1196.       63,    64,    65,    68,    69,    71,    72,    73,    90,   104,
  1197.       27,    77,    77,     5,     0,    52,     5,    12,    49,    61,
  1198.       68,    73,    78,    90,    91,    95,   102,   103,   106,   107,
  1199.       98,    73,    95,     5,    82,    84,    91,    12,    98,    12,
  1200.       86,   101,    22,    99,    98,    12,    17,    73,    85,    86,
  1201.       87,    88,    90,    95,   102,   105,   106,   111,   112,     3,
  1202.        4,    10,    18,    19,    20,    36,    37,    49,    60,    71,
  1203.       72,    73,    92,    93,   104,   113,    98,    82,    68,    68,
  1204.       70,    61,    41,    40,    92,    77,    90,    96,    98,     3,
  1205.       70,    12,    31,    41,    73,    90,    94,   102,   104,   105,
  1206.        5,    61,    91,    12,    78,    12,   107,    95,   103,    78,
  1207.       12,    12,    86,    98,    98,    86,    90,   102,    95,   103,
  1208.       78,    73,   105,   111,    95,    95,   103,    73,    52,    52,
  1209.       52,    73,    77,   113,   113,   113,    49,   104,   108,   113,
  1210.      114,    42,    53,   105,    44,    45,    46,    47,    48,    49,
  1211.       50,    51,    52,    54,    55,    56,    57,    59,    60,    61,
  1212.       62,    63,    67,    69,    70,    70,    77,    53,    61,    70,
  1213.       90,    41,    96,    41,    42,   105,    41,    96,    90,    12,
  1214.       98,    73,    87,   102,   109,   110,    12,    12,   108,   108,
  1215.      108,   108,    77,    73,    77,    41,    53,    41,    93,   113,
  1216.      113,   113,   113,   113,   113,   113,   113,   113,   113,   113,
  1217.      113,   113,   113,   113,   113,   113,   113,     5,     5,    96,
  1218.       96,    96,    29,   104,    77,   109,   109,    41,    95,   103,
  1219.       77,    77,    41,    53,    53,    53,    41,    77,   113,   113,
  1220.       74,   105,    41,    73,    73,    73,    41,   113,   114,   114,
  1221.      114,    41,    41,    41
  1222. };

  1223. #define yyerrok                (yyerrstatus = 0)
  1224. #define yyclearin        (yychar = YYEMPTY)
  1225. #define YYEMPTY                (-2)
  1226. #define YYEOF                0

  1227. #define YYACCEPT        goto yyacceptlab
  1228. #define YYABORT                goto yyabortlab
  1229. #define YYERROR                goto yyerrorlab


  1230. /* Like YYERROR except do call yyerror.  This remains here temporarily
  1231.    to ease the transition to the new meaning of YYERROR, for GCC.
  1232.    Once GCC version 2 has supplanted version 1, this can go.  However,
  1233.    YYFAIL appears to be in use.  Nevertheless, it is formally deprecated
  1234.    in Bison 2.4.2's NEWS entry, where a plan to phase it out is
  1235.    discussed.  */

  1236. #define YYFAIL                goto yyerrlab
  1237. #if defined YYFAIL
  1238.   /* This is here to suppress warnings from the GCC cpp's
  1239.      -Wunused-macros.  Normally we don't worry about that warning, but
  1240.      some users do, and we want to make it easy for users to remove
  1241.      YYFAIL uses, which will produce warnings from Bison 2.5.  */
  1242. #endif

  1243. #define YYRECOVERING()  (!!yyerrstatus)

  1244. #define YYBACKUP(Token, Value)                                  \
  1245. do                                                              \
  1246.   if (yychar == YYEMPTY)                                        \
  1247.     {                                                           \
  1248.       yychar = (Token);                                         \
  1249.       yylval = (Value);                                         \
  1250.       YYPOPSTACK (yylen);                                       \
  1251.       yystate = *yyssp;                                         \
  1252.       goto yybackup;                                            \
  1253.     }                                                           \
  1254.   else                                                          \
  1255.     {                                                           \
  1256.       yyerror (YY_("syntax error: cannot back up")); \
  1257.       YYERROR;                                                        \
  1258.     }                                                                \
  1259. while (YYID (0))

  1260. /* Error token number */
  1261. #define YYTERROR        1
  1262. #define YYERRCODE        256


  1263. /* This macro is provided for backward compatibility. */
  1264. #ifndef YY_LOCATION_PRINT
  1265. # define YY_LOCATION_PRINT(File, Loc) ((void) 0)
  1266. #endif


  1267. /* YYLEX -- calling `yylex' with the right arguments.  */
  1268. #ifdef YYLEX_PARAM
  1269. # define YYLEX yylex (YYLEX_PARAM)
  1270. #else
  1271. # define YYLEX yylex ()
  1272. #endif

  1273. /* Enable debugging if requested.  */
  1274. #if YYDEBUG

  1275. # ifndef YYFPRINTF
  1276. #  include <stdio.h> /* INFRINGES ON USER NAME SPACE */
  1277. #  define YYFPRINTF fprintf
  1278. # endif

  1279. # define YYDPRINTF(Args)                        \
  1280. do {                                                \
  1281.   if (yydebug)                                        \
  1282.     YYFPRINTF Args;                                \
  1283. } while (YYID (0))

  1284. # define YY_SYMBOL_PRINT(Title, Type, Value, Location)                          \
  1285. do {                                                                          \
  1286.   if (yydebug)                                                                  \
  1287.     {                                                                          \
  1288.       YYFPRINTF (stderr, "%s ", Title);                                          \
  1289.       yy_symbol_print (stderr,                                                  \
  1290.                   Type, Value); \
  1291.       YYFPRINTF (stderr, "\n");                                                  \
  1292.     }                                                                          \
  1293. } while (YYID (0))


  1294. /*--------------------------------.
  1295. | Print this symbol on YYOUTPUT.  |
  1296. `--------------------------------*/

  1297. /*ARGSUSED*/
  1298. #if (defined __STDC__ || defined __C99__FUNC__ \
  1299.      || defined __cplusplus || defined _MSC_VER)
  1300. static void
  1301. yy_symbol_value_print (FILE *yyoutput, int yytype, YYSTYPE const * const yyvaluep)
  1302. #else
  1303. static void
  1304. yy_symbol_value_print (yyoutput, yytype, yyvaluep)
  1305.     FILE *yyoutput;
  1306.     int yytype;
  1307.     YYSTYPE const * const yyvaluep;
  1308. #endif
  1309. {
  1310.   FILE *yyo = yyoutput;
  1311.   YYUSE (yyo);
  1312.   if (!yyvaluep)
  1313.     return;
  1314. # ifdef YYPRINT
  1315.   if (yytype < YYNTOKENS)
  1316.     YYPRINT (yyoutput, yytoknum[yytype], *yyvaluep);
  1317. # else
  1318.   YYUSE (yyoutput);
  1319. # endif
  1320.   switch (yytype)
  1321.     {
  1322.       default:
  1323.         break;
  1324.     }
  1325. }


  1326. /*--------------------------------.
  1327. | Print this symbol on YYOUTPUT.  |
  1328. `--------------------------------*/

  1329. #if (defined __STDC__ || defined __C99__FUNC__ \
  1330.      || defined __cplusplus || defined _MSC_VER)
  1331. static void
  1332. yy_symbol_print (FILE *yyoutput, int yytype, YYSTYPE const * const yyvaluep)
  1333. #else
  1334. static void
  1335. yy_symbol_print (yyoutput, yytype, yyvaluep)
  1336.     FILE *yyoutput;
  1337.     int yytype;
  1338.     YYSTYPE const * const yyvaluep;
  1339. #endif
  1340. {
  1341.   if (yytype < YYNTOKENS)
  1342.     YYFPRINTF (yyoutput, "token %s (", yytname[yytype]);
  1343.   else
  1344.     YYFPRINTF (yyoutput, "nterm %s (", yytname[yytype]);

  1345.   yy_symbol_value_print (yyoutput, yytype, yyvaluep);
  1346.   YYFPRINTF (yyoutput, ")");
  1347. }

  1348. /*------------------------------------------------------------------.
  1349. | yy_stack_print -- Print the state stack from its BOTTOM up to its |
  1350. | TOP (included).                                                   |
  1351. `------------------------------------------------------------------*/

  1352. #if (defined __STDC__ || defined __C99__FUNC__ \
  1353.      || defined __cplusplus || defined _MSC_VER)
  1354. static void
  1355. yy_stack_print (yytype_int16 *yybottom, yytype_int16 *yytop)
  1356. #else
  1357. static void
  1358. yy_stack_print (yybottom, yytop)
  1359.     yytype_int16 *yybottom;
  1360.     yytype_int16 *yytop;
  1361. #endif
  1362. {
  1363.   YYFPRINTF (stderr, "Stack now");
  1364.   for (; yybottom <= yytop; yybottom++)
  1365.     {
  1366.       int yybot = *yybottom;
  1367.       YYFPRINTF (stderr, " %d", yybot);
  1368.     }
  1369.   YYFPRINTF (stderr, "\n");
  1370. }

  1371. # define YY_STACK_PRINT(Bottom, Top)                                \
  1372. do {                                                                \
  1373.   if (yydebug)                                                        \
  1374.     yy_stack_print ((Bottom), (Top));                                \
  1375. } while (YYID (0))


  1376. /*------------------------------------------------.
  1377. | Report that the YYRULE is going to be reduced.  |
  1378. `------------------------------------------------*/

  1379. #if (defined __STDC__ || defined __C99__FUNC__ \
  1380.      || defined __cplusplus || defined _MSC_VER)
  1381. static void
  1382. yy_reduce_print (YYSTYPE *yyvsp, int yyrule)
  1383. #else
  1384. static void
  1385. yy_reduce_print (yyvsp, yyrule)
  1386.     YYSTYPE *yyvsp;
  1387.     int yyrule;
  1388. #endif
  1389. {
  1390.   int yynrhs = yyr2[yyrule];
  1391.   int yyi;
  1392.   unsigned long int yylno = yyrline[yyrule];
  1393.   YYFPRINTF (stderr, "Reducing stack by rule %d (line %lu):\n",
  1394.              yyrule - 1, yylno);
  1395.   /* The symbols being reduced.  */
  1396.   for (yyi = 0; yyi < yynrhs; yyi++)
  1397.     {
  1398.       YYFPRINTF (stderr, "   $%d = ", yyi + 1);
  1399.       yy_symbol_print (stderr, yyrhs[yyprhs[yyrule] + yyi],
  1400.                        &(yyvsp[(yyi + 1) - (yynrhs)])
  1401.                                               );
  1402.       YYFPRINTF (stderr, "\n");
  1403.     }
  1404. }

  1405. # define YY_REDUCE_PRINT(Rule)                \
  1406. do {                                        \
  1407.   if (yydebug)                                \
  1408.     yy_reduce_print (yyvsp, Rule); \
  1409. } while (YYID (0))

  1410. /* Nonzero means print parse trace.  It is left uninitialized so that
  1411.    multiple parsers can coexist.  */
  1412. int yydebug;
  1413. #else /* !YYDEBUG */
  1414. # define YYDPRINTF(Args)
  1415. # define YY_SYMBOL_PRINT(Title, Type, Value, Location)
  1416. # define YY_STACK_PRINT(Bottom, Top)
  1417. # define YY_REDUCE_PRINT(Rule)
  1418. #endif /* !YYDEBUG */


  1419. /* YYINITDEPTH -- initial size of the parser's stacks.  */
  1420. #ifndef        YYINITDEPTH
  1421. # define YYINITDEPTH 200
  1422. #endif

  1423. /* YYMAXDEPTH -- maximum size the stacks can grow to (effective only
  1424.    if the built-in stack extension method is used).

  1425.    Do not make this value too large; the results are undefined if
  1426.    YYSTACK_ALLOC_MAXIMUM < YYSTACK_BYTES (YYMAXDEPTH)
  1427.    evaluated with infinite-precision integer arithmetic.  */

  1428. #ifndef YYMAXDEPTH
  1429. # define YYMAXDEPTH 10000
  1430. #endif


  1431. #if YYERROR_VERBOSE

  1432. # ifndef yystrlen
  1433. #  if defined __GLIBC__ && defined _STRING_H
  1434. #   define yystrlen strlen
  1435. #  else
  1436. /* Return the length of YYSTR.  */
  1437. #if (defined __STDC__ || defined __C99__FUNC__ \
  1438.      || defined __cplusplus || defined _MSC_VER)
  1439. static YYSIZE_T
  1440. yystrlen (const char *yystr)
  1441. #else
  1442. static YYSIZE_T
  1443. yystrlen (yystr)
  1444.     const char *yystr;
  1445. #endif
  1446. {
  1447.   YYSIZE_T yylen;
  1448.   for (yylen = 0; yystr[yylen]; yylen++)
  1449.     continue;
  1450.   return yylen;
  1451. }
  1452. #  endif
  1453. # endif

  1454. # ifndef yystpcpy
  1455. #  if defined __GLIBC__ && defined _STRING_H && defined _GNU_SOURCE
  1456. #   define yystpcpy stpcpy
  1457. #  else
  1458. /* Copy YYSRC to YYDEST, returning the address of the terminating '\0' in
  1459.    YYDEST.  */
  1460. #if (defined __STDC__ || defined __C99__FUNC__ \
  1461.      || defined __cplusplus || defined _MSC_VER)
  1462. static char *
  1463. yystpcpy (char *yydest, const char *yysrc)
  1464. #else
  1465. static char *
  1466. yystpcpy (yydest, yysrc)
  1467.     char *yydest;
  1468.     const char *yysrc;
  1469. #endif
  1470. {
  1471.   char *yyd = yydest;
  1472.   const char *yys = yysrc;

  1473.   while ((*yyd++ = *yys++) != '\0')
  1474.     continue;

  1475.   return yyd - 1;
  1476. }
  1477. #  endif
  1478. # endif

  1479. # ifndef yytnamerr
  1480. /* Copy to YYRES the contents of YYSTR after stripping away unnecessary
  1481.    quotes and backslashes, so that it's suitable for yyerror.  The
  1482.    heuristic is that double-quoting is unnecessary unless the string
  1483.    contains an apostrophe, a comma, or backslash (other than
  1484.    backslash-backslash).  YYSTR is taken from yytname.  If YYRES is
  1485.    null, do not copy; instead, return the length of what the result
  1486.    would have been.  */
  1487. static YYSIZE_T
  1488. yytnamerr (char *yyres, const char *yystr)
  1489. {
  1490.   if (*yystr == '"')
  1491.     {
  1492.       YYSIZE_T yyn = 0;
  1493.       char const *yyp = yystr;

  1494.       for (;;)
  1495.         switch (*++yyp)
  1496.           {
  1497.           case '\'':
  1498.           case ',':
  1499.             goto do_not_strip_quotes;

  1500.           case '\\':
  1501.             if (*++yyp != '\\')
  1502.               goto do_not_strip_quotes;
  1503.             /* Fall through.  */
  1504.           default:
  1505.             if (yyres)
  1506.               yyres[yyn] = *yyp;
  1507.             yyn++;
  1508.             break;

  1509.           case '"':
  1510.             if (yyres)
  1511.               yyres[yyn] = '\0';
  1512.             return yyn;
  1513.           }
  1514.     do_not_strip_quotes: ;
  1515.     }

  1516.   if (! yyres)
  1517.     return yystrlen (yystr);

  1518.   return yystpcpy (yyres, yystr) - yyres;
  1519. }
  1520. # endif

  1521. /* Copy into *YYMSG, which is of size *YYMSG_ALLOC, an error message
  1522.    about the unexpected token YYTOKEN for the state stack whose top is
  1523.    YYSSP.

  1524.    Return 0 if *YYMSG was successfully written.  Return 1 if *YYMSG is
  1525.    not large enough to hold the message.  In that case, also set
  1526.    *YYMSG_ALLOC to the required number of bytes.  Return 2 if the
  1527.    required number of bytes is too large to store.  */
  1528. static int
  1529. yysyntax_error (YYSIZE_T *yymsg_alloc, char **yymsg,
  1530.                 yytype_int16 *yyssp, int yytoken)
  1531. {
  1532.   YYSIZE_T yysize0 = yytnamerr (YY_NULL, yytname[yytoken]);
  1533.   YYSIZE_T yysize = yysize0;
  1534.   enum { YYERROR_VERBOSE_ARGS_MAXIMUM = 5 };
  1535.   /* Internationalized format string. */
  1536.   const char *yyformat = YY_NULL;
  1537.   /* Arguments of yyformat. */
  1538.   char const *yyarg[YYERROR_VERBOSE_ARGS_MAXIMUM];
  1539.   /* Number of reported tokens (one for the "unexpected", one per
  1540.      "expected"). */
  1541.   int yycount = 0;

  1542.   /* There are many possibilities here to consider:
  1543.      - Assume YYFAIL is not used.  It's too flawed to consider.  See
  1544.        <http://lists.gnu.org/archive/html/bison-patches/2009-12/msg00024.html>
  1545.        for details.  YYERROR is fine as it does not invoke this
  1546.        function.
  1547.      - If this state is a consistent state with a default action, then
  1548.        the only way this function was invoked is if the default action
  1549.        is an error action.  In that case, don't check for expected
  1550.        tokens because there are none.
  1551.      - The only way there can be no lookahead present (in yychar) is if
  1552.        this state is a consistent state with a default action.  Thus,
  1553.        detecting the absence of a lookahead is sufficient to determine
  1554.        that there is no unexpected or expected token to report.  In that
  1555.        case, just report a simple "syntax error".
  1556.      - Don't assume there isn't a lookahead just because this state is a
  1557.        consistent state with a default action.  There might have been a
  1558.        previous inconsistent state, consistent state with a non-default
  1559.        action, or user semantic action that manipulated yychar.
  1560.      - Of course, the expected token list depends on states to have
  1561.        correct lookahead information, and it depends on the parser not
  1562.        to perform extra reductions after fetching a lookahead from the
  1563.        scanner and before detecting a syntax error.  Thus, state merging
  1564.        (from LALR or IELR) and default reductions corrupt the expected
  1565.        token list.  However, the list is correct for canonical LR with
  1566.        one exception: it will still contain any token that will not be
  1567.        accepted due to an error action in a later state.
  1568.   */
  1569.   if (yytoken != YYEMPTY)
  1570.     {
  1571.       int yyn = yypact[*yyssp];
  1572.       yyarg[yycount++] = yytname[yytoken];
  1573.       if (!yypact_value_is_default (yyn))
  1574.         {
  1575.           /* Start YYX at -YYN if negative to avoid negative indexes in
  1576.              YYCHECK.  In other words, skip the first -YYN actions for
  1577.              this state because they are default actions.  */
  1578.           int yyxbegin = yyn < 0 ? -yyn : 0;
  1579.           /* Stay within bounds of both yycheck and yytname.  */
  1580.           int yychecklim = YYLAST - yyn + 1;
  1581.           int yyxend = yychecklim < YYNTOKENS ? yychecklim : YYNTOKENS;
  1582.           int yyx;

  1583.           for (yyx = yyxbegin; yyx < yyxend; ++yyx)
  1584.             if (yycheck[yyx + yyn] == yyx && yyx != YYTERROR
  1585.                 && !yytable_value_is_error (yytable[yyx + yyn]))
  1586.               {
  1587.                 if (yycount == YYERROR_VERBOSE_ARGS_MAXIMUM)
  1588.                   {
  1589.                     yycount = 1;
  1590.                     yysize = yysize0;
  1591.                     break;
  1592.                   }
  1593.                 yyarg[yycount++] = yytname[yyx];
  1594.                 {
  1595.                   YYSIZE_T yysize1 = yysize + yytnamerr (YY_NULL, yytname[yyx]);
  1596.                   if (! (yysize <= yysize1
  1597.                          && yysize1 <= YYSTACK_ALLOC_MAXIMUM))
  1598.                     return 2;
  1599.                   yysize = yysize1;
  1600.                 }
  1601.               }
  1602.         }
  1603.     }

  1604.   switch (yycount)
  1605.     {
  1606. # define YYCASE_(N, S)                      \
  1607.       case N:                               \
  1608.         yyformat = S;                       \
  1609.       break
  1610.       YYCASE_(0, YY_("syntax error"));
  1611.       YYCASE_(1, YY_("syntax error, unexpected %s"));
  1612.       YYCASE_(2, YY_("syntax error, unexpected %s, expecting %s"));
  1613.       YYCASE_(3, YY_("syntax error, unexpected %s, expecting %s or %s"));
  1614.       YYCASE_(4, YY_("syntax error, unexpected %s, expecting %s or %s or %s"));
  1615.       YYCASE_(5, YY_("syntax error, unexpected %s, expecting %s or %s or %s or %s"));
  1616. # undef YYCASE_
  1617.     }

  1618.   {
  1619.     YYSIZE_T yysize1 = yysize + yystrlen (yyformat);
  1620.     if (! (yysize <= yysize1 && yysize1 <= YYSTACK_ALLOC_MAXIMUM))
  1621.       return 2;
  1622.     yysize = yysize1;
  1623.   }

  1624.   if (*yymsg_alloc < yysize)
  1625.     {
  1626.       *yymsg_alloc = 2 * yysize;
  1627.       if (! (yysize <= *yymsg_alloc
  1628.              && *yymsg_alloc <= YYSTACK_ALLOC_MAXIMUM))
  1629.         *yymsg_alloc = YYSTACK_ALLOC_MAXIMUM;
  1630.       return 1;
  1631.     }

  1632.   /* Avoid sprintf, as that infringes on the user's name space.
  1633.      Don't have undefined behavior even if the translation
  1634.      produced a string with the wrong number of "%s"s.  */
  1635.   {
  1636.     char *yyp = *yymsg;
  1637.     int yyi = 0;
  1638.     while ((*yyp = *yyformat) != '\0')
  1639.       if (*yyp == '%' && yyformat[1] == 's' && yyi < yycount)
  1640.         {
  1641.           yyp += yytnamerr (yyp, yyarg[yyi++]);
  1642.           yyformat += 2;
  1643.         }
  1644.       else
  1645.         {
  1646.           yyp++;
  1647.           yyformat++;
  1648.         }
  1649.   }
  1650.   return 0;
  1651. }
  1652. #endif /* YYERROR_VERBOSE */

  1653. /*-----------------------------------------------.
  1654. | Release the memory associated to this symbol.  |
  1655. `-----------------------------------------------*/

  1656. /*ARGSUSED*/
  1657. #if (defined __STDC__ || defined __C99__FUNC__ \
  1658.      || defined __cplusplus || defined _MSC_VER)
  1659. static void
  1660. yydestruct (const char *yymsg, int yytype, YYSTYPE *yyvaluep)
  1661. #else
  1662. static void
  1663. yydestruct (yymsg, yytype, yyvaluep)
  1664.     const char *yymsg;
  1665.     int yytype;
  1666.     YYSTYPE *yyvaluep;
  1667. #endif
  1668. {
  1669.   YYUSE (yyvaluep);

  1670.   if (!yymsg)
  1671.     yymsg = "Deleting";
  1672.   YY_SYMBOL_PRINT (yymsg, yytype, yyvaluep, yylocationp);

  1673.   switch (yytype)
  1674.     {

  1675.       default:
  1676.         break;
  1677.     }
  1678. }




  1679. /* The lookahead symbol.  */
  1680. int yychar;


  1681. #ifndef YY_IGNORE_MAYBE_UNINITIALIZED_BEGIN
  1682. # define YY_IGNORE_MAYBE_UNINITIALIZED_BEGIN
  1683. # define YY_IGNORE_MAYBE_UNINITIALIZED_END
  1684. #endif
  1685. #ifndef YY_INITIAL_VALUE
  1686. # define YY_INITIAL_VALUE(Value) /* Nothing. */
  1687. #endif

  1688. /* The semantic value of the lookahead symbol.  */
  1689. YYSTYPE yylval YY_INITIAL_VALUE(yyval_default);

  1690. /* Number of syntax errors so far.  */
  1691. int yynerrs;


  1692. /*----------.
  1693. | yyparse.  |
  1694. `----------*/

  1695. #ifdef YYPARSE_PARAM
  1696. #if (defined __STDC__ || defined __C99__FUNC__ \
  1697.      || defined __cplusplus || defined _MSC_VER)
  1698. int
  1699. yyparse (void *YYPARSE_PARAM)
  1700. #else
  1701. int
  1702. yyparse (YYPARSE_PARAM)
  1703.     void *YYPARSE_PARAM;
  1704. #endif
  1705. #else /* ! YYPARSE_PARAM */
  1706. #if (defined __STDC__ || defined __C99__FUNC__ \
  1707.      || defined __cplusplus || defined _MSC_VER)
  1708. int
  1709. yyparse (void)
  1710. #else
  1711. int
  1712. yyparse ()

  1713. #endif
  1714. #endif
  1715. {
  1716.     int yystate;
  1717.     /* Number of tokens to shift before error messages enabled.  */
  1718.     int yyerrstatus;

  1719.     /* The stacks and their tools:
  1720.        `yyss': related to states.
  1721.        `yyvs': related to semantic values.

  1722.        Refer to the stacks through separate pointers, to allow yyoverflow
  1723.        to xreallocate them elsewhere.  */

  1724.     /* The state stack.  */
  1725.     yytype_int16 yyssa[YYINITDEPTH];
  1726.     yytype_int16 *yyss;
  1727.     yytype_int16 *yyssp;

  1728.     /* The semantic value stack.  */
  1729.     YYSTYPE yyvsa[YYINITDEPTH];
  1730.     YYSTYPE *yyvs;
  1731.     YYSTYPE *yyvsp;

  1732.     YYSIZE_T yystacksize;

  1733.   int yyn;
  1734.   int yyresult;
  1735.   /* Lookahead token as an internal (translated) token number.  */
  1736.   int yytoken = 0;
  1737.   /* The variables used to return semantic value and location from the
  1738.      action routines.  */
  1739.   YYSTYPE yyval;

  1740. #if YYERROR_VERBOSE
  1741.   /* Buffer for error messages, and its allocated size.  */
  1742.   char yymsgbuf[128];
  1743.   char *yymsg = yymsgbuf;
  1744.   YYSIZE_T yymsg_alloc = sizeof yymsgbuf;
  1745. #endif

  1746. #define YYPOPSTACK(N)   (yyvsp -= (N), yyssp -= (N))

  1747.   /* The number of symbols on the RHS of the reduced rule.
  1748.      Keep to zero when no symbol should be popped.  */
  1749.   int yylen = 0;

  1750.   yyssp = yyss = yyssa;
  1751.   yyvsp = yyvs = yyvsa;
  1752.   yystacksize = YYINITDEPTH;

  1753.   YYDPRINTF ((stderr, "Starting parse\n"));

  1754.   yystate = 0;
  1755.   yyerrstatus = 0;
  1756.   yynerrs = 0;
  1757.   yychar = YYEMPTY; /* Cause a token to be read.  */
  1758.   goto yysetstate;

  1759. /*------------------------------------------------------------.
  1760. | yynewstate -- Push a new state, which is found in yystate.  |
  1761. `------------------------------------------------------------*/
  1762. yynewstate:
  1763.   /* In all cases, when you get here, the value and location stacks
  1764.      have just been pushed.  So pushing a state here evens the stacks.  */
  1765.   yyssp++;

  1766. yysetstate:
  1767.   *yyssp = yystate;

  1768.   if (yyss + yystacksize - 1 <= yyssp)
  1769.     {
  1770.       /* Get the current used size of the three stacks, in elements.  */
  1771.       YYSIZE_T yysize = yyssp - yyss + 1;

  1772. #ifdef yyoverflow
  1773.       {
  1774.         /* Give user a chance to xreallocate the stack.  Use copies of
  1775.            these so that the &'s don't force the real ones into
  1776.            memory.  */
  1777.         YYSTYPE *yyvs1 = yyvs;
  1778.         yytype_int16 *yyss1 = yyss;

  1779.         /* Each stack pointer address is followed by the size of the
  1780.            data in use in that stack, in bytes.  This used to be a
  1781.            conditional around just the two extra args, but that might
  1782.            be undefined if yyoverflow is a macro.  */
  1783.         yyoverflow (YY_("memory exhausted"),
  1784.                     &yyss1, yysize * sizeof (*yyssp),
  1785.                     &yyvs1, yysize * sizeof (*yyvsp),
  1786.                     &yystacksize);

  1787.         yyss = yyss1;
  1788.         yyvs = yyvs1;
  1789.       }
  1790. #else /* no yyoverflow */
  1791. # ifndef YYSTACK_RELOCATE
  1792.       goto yyexhaustedlab;
  1793. # else
  1794.       /* Extend the stack our own way.  */
  1795.       if (YYMAXDEPTH <= yystacksize)
  1796.         goto yyexhaustedlab;
  1797.       yystacksize *= 2;
  1798.       if (YYMAXDEPTH < yystacksize)
  1799.         yystacksize = YYMAXDEPTH;

  1800.       {
  1801.         yytype_int16 *yyss1 = yyss;
  1802.         union yyalloc *yyptr =
  1803.           (union yyalloc *) YYSTACK_ALLOC (YYSTACK_BYTES (yystacksize));
  1804.         if (! yyptr)
  1805.           goto yyexhaustedlab;
  1806.         YYSTACK_RELOCATE (yyss_alloc, yyss);
  1807.         YYSTACK_RELOCATE (yyvs_alloc, yyvs);
  1808. #  undef YYSTACK_RELOCATE
  1809.         if (yyss1 != yyssa)
  1810.           YYSTACK_FREE (yyss1);
  1811.       }
  1812. # endif
  1813. #endif /* no yyoverflow */

  1814.       yyssp = yyss + yysize - 1;
  1815.       yyvsp = yyvs + yysize - 1;

  1816.       YYDPRINTF ((stderr, "Stack size increased to %lu\n",
  1817.                   (unsigned long int) yystacksize));

  1818.       if (yyss + yystacksize - 1 <= yyssp)
  1819.         YYABORT;
  1820.     }

  1821.   YYDPRINTF ((stderr, "Entering state %d\n", yystate));

  1822.   if (yystate == YYFINAL)
  1823.     YYACCEPT;

  1824.   goto yybackup;

  1825. /*-----------.
  1826. | yybackup.  |
  1827. `-----------*/
  1828. yybackup:

  1829.   /* Do appropriate processing given the current state.  Read a
  1830.      lookahead token if we need one and don't already have one.  */

  1831.   /* First try to decide what to do without reference to lookahead token.  */
  1832.   yyn = yypact[yystate];
  1833.   if (yypact_value_is_default (yyn))
  1834.     goto yydefault;

  1835.   /* Not known => get a lookahead token if don't already have one.  */

  1836.   /* YYCHAR is either YYEMPTY or YYEOF or a valid lookahead symbol.  */
  1837.   if (yychar == YYEMPTY)
  1838.     {
  1839.       YYDPRINTF ((stderr, "Reading a token: "));
  1840.       yychar = YYLEX;
  1841.     }

  1842.   if (yychar <= YYEOF)
  1843.     {
  1844.       yychar = yytoken = YYEOF;
  1845.       YYDPRINTF ((stderr, "Now at end of input.\n"));
  1846.     }
  1847.   else
  1848.     {
  1849.       yytoken = YYTRANSLATE (yychar);
  1850.       YY_SYMBOL_PRINT ("Next token is", yytoken, &yylval, &yylloc);
  1851.     }

  1852.   /* If the proper action on seeing token YYTOKEN is to reduce or to
  1853.      detect an error, take that action.  */
  1854.   yyn += yytoken;
  1855.   if (yyn < 0 || YYLAST < yyn || yycheck[yyn] != yytoken)
  1856.     goto yydefault;
  1857.   yyn = yytable[yyn];
  1858.   if (yyn <= 0)
  1859.     {
  1860.       if (yytable_value_is_error (yyn))
  1861.         goto yyerrlab;
  1862.       yyn = -yyn;
  1863.       goto yyreduce;
  1864.     }

  1865.   /* Count tokens shifted since error; after three, turn off error
  1866.      status.  */
  1867.   if (yyerrstatus)
  1868.     yyerrstatus--;

  1869.   /* Shift the lookahead token.  */
  1870.   YY_SYMBOL_PRINT ("Shifting", yytoken, &yylval, &yylloc);

  1871.   /* Discard the shifted token.  */
  1872.   yychar = YYEMPTY;

  1873.   yystate = yyn;
  1874.   YY_IGNORE_MAYBE_UNINITIALIZED_BEGIN
  1875.   *++yyvsp = yylval;
  1876.   YY_IGNORE_MAYBE_UNINITIALIZED_END

  1877.   goto yynewstate;


  1878. /*-----------------------------------------------------------.
  1879. | yydefault -- do the default action for the current state.  |
  1880. `-----------------------------------------------------------*/
  1881. yydefault:
  1882.   yyn = yydefact[yystate];
  1883.   if (yyn == 0)
  1884.     goto yyerrlab;
  1885.   goto yyreduce;


  1886. /*-----------------------------.
  1887. | yyreduce -- Do a reduction.  |
  1888. `-----------------------------*/
  1889. yyreduce:
  1890.   /* yyn is the number of a rule to reduce with.  */
  1891.   yylen = yyr2[yyn];

  1892.   /* If YYLEN is nonzero, implement the default value of the action:
  1893.      `$$ = $1'.

  1894.      Otherwise, the following line sets YYVAL to garbage.
  1895.      This behavior is undocumented and Bison
  1896.      users should not rely upon it.  Assigning to YYVAL
  1897.      unconditionally makes the parser a bit smaller, and it avoids a
  1898.      GCC warning that YYVAL may be used uninitialized.  */
  1899.   yyval = yyvsp[1-yylen];


  1900.   YY_REDUCE_PRINT (yyn);
  1901.   switch (yyn)
  1902.     {
  1903.         case 2:
  1904. /* Line 1792 of yacc.c  */
  1905. #line 376 "cp-name-parser.y"
  1906.     { global_result = (yyvsp[(1) - (1)].comp); }
  1907.     break;

  1908.   case 6:
  1909. /* Line 1792 of yacc.c  */
  1910. #line 388 "cp-name-parser.y"
  1911.     { (yyval.comp) = NULL; }
  1912.     break;

  1913.   case 7:
  1914. /* Line 1792 of yacc.c  */
  1915. #line 390 "cp-name-parser.y"
  1916.     { (yyval.comp) = (yyvsp[(2) - (2)].comp); }
  1917.     break;

  1918.   case 8:
  1919. /* Line 1792 of yacc.c  */
  1920. #line 397 "cp-name-parser.y"
  1921.     { (yyval.comp) = (yyvsp[(2) - (2)].nested).comp;
  1922.                           *(yyvsp[(2) - (2)].nested).last = (yyvsp[(1) - (2)].comp);
  1923.                         }
  1924.     break;

  1925.   case 9:
  1926. /* Line 1792 of yacc.c  */
  1927. #line 406 "cp-name-parser.y"
  1928.     { (yyval.comp) = fill_comp (DEMANGLE_COMPONENT_TYPED_NAME, (yyvsp[(1) - (3)].comp), (yyvsp[(2) - (3)].nested).comp);
  1929.                           if ((yyvsp[(3) - (3)].comp)) (yyval.comp) = fill_comp (DEMANGLE_COMPONENT_LOCAL_NAME, (yyval.comp), (yyvsp[(3) - (3)].comp)); }
  1930.     break;

  1931.   case 10:
  1932. /* Line 1792 of yacc.c  */
  1933. #line 409 "cp-name-parser.y"
  1934.     { (yyval.comp) = fill_comp (DEMANGLE_COMPONENT_TYPED_NAME, (yyvsp[(1) - (3)].comp), (yyvsp[(2) - (3)].nested).comp);
  1935.                           if ((yyvsp[(3) - (3)].comp)) (yyval.comp) = fill_comp (DEMANGLE_COMPONENT_LOCAL_NAME, (yyval.comp), (yyvsp[(3) - (3)].comp)); }
  1936.     break;

  1937.   case 11:
  1938. /* Line 1792 of yacc.c  */
  1939. #line 413 "cp-name-parser.y"
  1940.     { (yyval.comp) = (yyvsp[(1) - (2)].nested).comp;
  1941.                           if ((yyvsp[(2) - (2)].comp)) (yyval.comp) = fill_comp (DEMANGLE_COMPONENT_LOCAL_NAME, (yyval.comp), (yyvsp[(2) - (2)].comp)); }
  1942.     break;

  1943.   case 12:
  1944. /* Line 1792 of yacc.c  */
  1945. #line 416 "cp-name-parser.y"
  1946.     { if ((yyvsp[(2) - (2)].abstract).last)
  1947.                             {
  1948.                                /* First complete the abstract_declarator's type using
  1949.                                   the typespec from the conversion_op_name.  */
  1950.                               *(yyvsp[(2) - (2)].abstract).last = *(yyvsp[(1) - (2)].nested).last;
  1951.                               /* Then complete the conversion_op_name with the type.  */
  1952.                               *(yyvsp[(1) - (2)].nested).last = (yyvsp[(2) - (2)].abstract).comp;
  1953.                             }
  1954.                           /* If we have an arglist, build a function type.  */
  1955.                           if ((yyvsp[(2) - (2)].abstract).fn.comp)
  1956.                             (yyval.comp) = fill_comp (DEMANGLE_COMPONENT_TYPED_NAME, (yyvsp[(1) - (2)].nested).comp, (yyvsp[(2) - (2)].abstract).fn.comp);
  1957.                           else
  1958.                             (yyval.comp) = (yyvsp[(1) - (2)].nested).comp;
  1959.                           if ((yyvsp[(2) - (2)].abstract).start) (yyval.comp) = fill_comp (DEMANGLE_COMPONENT_LOCAL_NAME, (yyval.comp), (yyvsp[(2) - (2)].abstract).start);
  1960.                         }
  1961.     break;

  1962.   case 13:
  1963. /* Line 1792 of yacc.c  */
  1964. #line 435 "cp-name-parser.y"
  1965.     { (yyval.comp) = make_empty ((yyvsp[(1) - (2)].lval));
  1966.                           d_left ((yyval.comp)) = (yyvsp[(2) - (2)].comp);
  1967.                           d_right ((yyval.comp)) = NULL; }
  1968.     break;

  1969.   case 14:
  1970. /* Line 1792 of yacc.c  */
  1971. #line 439 "cp-name-parser.y"
  1972.     { (yyval.comp) = fill_comp (DEMANGLE_COMPONENT_CONSTRUCTION_VTABLE, (yyvsp[(2) - (4)].comp), (yyvsp[(4) - (4)].comp)); }
  1973.     break;

  1974.   case 15:
  1975. /* Line 1792 of yacc.c  */
  1976. #line 443 "cp-name-parser.y"
  1977.     {
  1978.                           /* Match the whitespacing of cplus_demangle_operators.
  1979.                              It would abort on unrecognized string otherwise.  */
  1980.                           (yyval.comp) = make_operator ("new", 3);
  1981.                         }
  1982.     break;

  1983.   case 16:
  1984. /* Line 1792 of yacc.c  */
  1985. #line 449 "cp-name-parser.y"
  1986.     {
  1987.                           /* Match the whitespacing of cplus_demangle_operators.
  1988.                              It would abort on unrecognized string otherwise.  */
  1989.                           (yyval.comp) = make_operator ("delete ", 1);
  1990.                         }
  1991.     break;

  1992.   case 17:
  1993. /* Line 1792 of yacc.c  */
  1994. #line 455 "cp-name-parser.y"
  1995.     {
  1996.                           /* Match the whitespacing of cplus_demangle_operators.
  1997.                              It would abort on unrecognized string otherwise.  */
  1998.                           (yyval.comp) = make_operator ("new[]", 3);
  1999.                         }
  2000.     break;

  2001.   case 18:
  2002. /* Line 1792 of yacc.c  */
  2003. #line 461 "cp-name-parser.y"
  2004.     {
  2005.                           /* Match the whitespacing of cplus_demangle_operators.
  2006.                              It would abort on unrecognized string otherwise.  */
  2007.                           (yyval.comp) = make_operator ("delete[] ", 1);
  2008.                         }
  2009.     break;

  2010.   case 19:
  2011. /* Line 1792 of yacc.c  */
  2012. #line 467 "cp-name-parser.y"
  2013.     { (yyval.comp) = make_operator ("+", 2); }
  2014.     break;

  2015.   case 20:
  2016. /* Line 1792 of yacc.c  */
  2017. #line 469 "cp-name-parser.y"
  2018.     { (yyval.comp) = make_operator ("-", 2); }
  2019.     break;

  2020.   case 21:
  2021. /* Line 1792 of yacc.c  */
  2022. #line 471 "cp-name-parser.y"
  2023.     { (yyval.comp) = make_operator ("*", 2); }
  2024.     break;

  2025.   case 22:
  2026. /* Line 1792 of yacc.c  */
  2027. #line 473 "cp-name-parser.y"
  2028.     { (yyval.comp) = make_operator ("/", 2); }
  2029.     break;

  2030.   case 23:
  2031. /* Line 1792 of yacc.c  */
  2032. #line 475 "cp-name-parser.y"
  2033.     { (yyval.comp) = make_operator ("%", 2); }
  2034.     break;

  2035.   case 24:
  2036. /* Line 1792 of yacc.c  */
  2037. #line 477 "cp-name-parser.y"
  2038.     { (yyval.comp) = make_operator ("^", 2); }
  2039.     break;

  2040.   case 25:
  2041. /* Line 1792 of yacc.c  */
  2042. #line 479 "cp-name-parser.y"
  2043.     { (yyval.comp) = make_operator ("&", 2); }
  2044.     break;

  2045.   case 26:
  2046. /* Line 1792 of yacc.c  */
  2047. #line 481 "cp-name-parser.y"
  2048.     { (yyval.comp) = make_operator ("|", 2); }
  2049.     break;

  2050.   case 27:
  2051. /* Line 1792 of yacc.c  */
  2052. #line 483 "cp-name-parser.y"
  2053.     { (yyval.comp) = make_operator ("~", 1); }
  2054.     break;

  2055.   case 28:
  2056. /* Line 1792 of yacc.c  */
  2057. #line 485 "cp-name-parser.y"
  2058.     { (yyval.comp) = make_operator ("!", 1); }
  2059.     break;

  2060.   case 29:
  2061. /* Line 1792 of yacc.c  */
  2062. #line 487 "cp-name-parser.y"
  2063.     { (yyval.comp) = make_operator ("=", 2); }
  2064.     break;

  2065.   case 30:
  2066. /* Line 1792 of yacc.c  */
  2067. #line 489 "cp-name-parser.y"
  2068.     { (yyval.comp) = make_operator ("<", 2); }
  2069.     break;

  2070.   case 31:
  2071. /* Line 1792 of yacc.c  */
  2072. #line 491 "cp-name-parser.y"
  2073.     { (yyval.comp) = make_operator (">", 2); }
  2074.     break;

  2075.   case 32:
  2076. /* Line 1792 of yacc.c  */
  2077. #line 493 "cp-name-parser.y"
  2078.     { (yyval.comp) = make_operator ((yyvsp[(2) - (2)].opname), 2); }
  2079.     break;

  2080.   case 33:
  2081. /* Line 1792 of yacc.c  */
  2082. #line 495 "cp-name-parser.y"
  2083.     { (yyval.comp) = make_operator ("<<", 2); }
  2084.     break;

  2085.   case 34:
  2086. /* Line 1792 of yacc.c  */
  2087. #line 497 "cp-name-parser.y"
  2088.     { (yyval.comp) = make_operator (">>", 2); }
  2089.     break;

  2090.   case 35:
  2091. /* Line 1792 of yacc.c  */
  2092. #line 499 "cp-name-parser.y"
  2093.     { (yyval.comp) = make_operator ("==", 2); }
  2094.     break;

  2095.   case 36:
  2096. /* Line 1792 of yacc.c  */
  2097. #line 501 "cp-name-parser.y"
  2098.     { (yyval.comp) = make_operator ("!=", 2); }
  2099.     break;

  2100.   case 37:
  2101. /* Line 1792 of yacc.c  */
  2102. #line 503 "cp-name-parser.y"
  2103.     { (yyval.comp) = make_operator ("<=", 2); }
  2104.     break;

  2105.   case 38:
  2106. /* Line 1792 of yacc.c  */
  2107. #line 505 "cp-name-parser.y"
  2108.     { (yyval.comp) = make_operator (">=", 2); }
  2109.     break;

  2110.   case 39:
  2111. /* Line 1792 of yacc.c  */
  2112. #line 507 "cp-name-parser.y"
  2113.     { (yyval.comp) = make_operator ("&&", 2); }
  2114.     break;

  2115.   case 40:
  2116. /* Line 1792 of yacc.c  */
  2117. #line 509 "cp-name-parser.y"
  2118.     { (yyval.comp) = make_operator ("||", 2); }
  2119.     break;

  2120.   case 41:
  2121. /* Line 1792 of yacc.c  */
  2122. #line 511 "cp-name-parser.y"
  2123.     { (yyval.comp) = make_operator ("++", 1); }
  2124.     break;

  2125.   case 42:
  2126. /* Line 1792 of yacc.c  */
  2127. #line 513 "cp-name-parser.y"
  2128.     { (yyval.comp) = make_operator ("--", 1); }
  2129.     break;

  2130.   case 43:
  2131. /* Line 1792 of yacc.c  */
  2132. #line 515 "cp-name-parser.y"
  2133.     { (yyval.comp) = make_operator (",", 2); }
  2134.     break;

  2135.   case 44:
  2136. /* Line 1792 of yacc.c  */
  2137. #line 517 "cp-name-parser.y"
  2138.     { (yyval.comp) = make_operator ("->*", 2); }
  2139.     break;

  2140.   case 45:
  2141. /* Line 1792 of yacc.c  */
  2142. #line 519 "cp-name-parser.y"
  2143.     { (yyval.comp) = make_operator ("->", 2); }
  2144.     break;

  2145.   case 46:
  2146. /* Line 1792 of yacc.c  */
  2147. #line 521 "cp-name-parser.y"
  2148.     { (yyval.comp) = make_operator ("()", 2); }
  2149.     break;

  2150.   case 47:
  2151. /* Line 1792 of yacc.c  */
  2152. #line 523 "cp-name-parser.y"
  2153.     { (yyval.comp) = make_operator ("[]", 2); }
  2154.     break;

  2155.   case 48:
  2156. /* Line 1792 of yacc.c  */
  2157. #line 531 "cp-name-parser.y"
  2158.     { (yyval.comp) = fill_comp (DEMANGLE_COMPONENT_CAST, (yyvsp[(2) - (2)].comp), NULL); }
  2159.     break;

  2160.   case 49:
  2161. /* Line 1792 of yacc.c  */
  2162. #line 536 "cp-name-parser.y"
  2163.     { (yyval.nested).comp = (yyvsp[(1) - (2)].nested1).comp;
  2164.                           d_right ((yyvsp[(1) - (2)].nested1).last) = (yyvsp[(2) - (2)].comp);
  2165.                           (yyval.nested).last = &d_left ((yyvsp[(2) - (2)].comp));
  2166.                         }
  2167.     break;

  2168.   case 50:
  2169. /* Line 1792 of yacc.c  */
  2170. #line 541 "cp-name-parser.y"
  2171.     { (yyval.nested).comp = (yyvsp[(1) - (1)].comp);
  2172.                           (yyval.nested).last = &d_left ((yyvsp[(1) - (1)].comp));
  2173.                         }
  2174.     break;

  2175.   case 51:
  2176. /* Line 1792 of yacc.c  */
  2177. #line 545 "cp-name-parser.y"
  2178.     { (yyval.nested).comp = (yyvsp[(2) - (3)].nested1).comp;
  2179.                           d_right ((yyvsp[(2) - (3)].nested1).last) = (yyvsp[(3) - (3)].comp);
  2180.                           (yyval.nested).last = &d_left ((yyvsp[(3) - (3)].comp));
  2181.                         }
  2182.     break;

  2183.   case 52:
  2184. /* Line 1792 of yacc.c  */
  2185. #line 550 "cp-name-parser.y"
  2186.     { (yyval.nested).comp = (yyvsp[(2) - (2)].comp);
  2187.                           (yyval.nested).last = &d_left ((yyvsp[(2) - (2)].comp));
  2188.                         }
  2189.     break;

  2190.   case 54:
  2191. /* Line 1792 of yacc.c  */
  2192. #line 559 "cp-name-parser.y"
  2193.     { (yyval.comp) = fill_comp (DEMANGLE_COMPONENT_TEMPLATE, (yyvsp[(1) - (4)].comp), (yyvsp[(3) - (4)].nested).comp); }
  2194.     break;

  2195.   case 55:
  2196. /* Line 1792 of yacc.c  */
  2197. #line 561 "cp-name-parser.y"
  2198.     { (yyval.comp) = make_dtor (gnu_v3_complete_object_dtor, (yyvsp[(2) - (2)].comp)); }
  2199.     break;

  2200.   case 57:
  2201. /* Line 1792 of yacc.c  */
  2202. #line 574 "cp-name-parser.y"
  2203.     { (yyval.comp) = (yyvsp[(2) - (2)].comp); }
  2204.     break;

  2205.   case 58:
  2206. /* Line 1792 of yacc.c  */
  2207. #line 580 "cp-name-parser.y"
  2208.     { (yyval.comp) = (yyvsp[(1) - (2)].nested1).comp; d_right ((yyvsp[(1) - (2)].nested1).last) = (yyvsp[(2) - (2)].comp); }
  2209.     break;

  2210.   case 60:
  2211. /* Line 1792 of yacc.c  */
  2212. #line 583 "cp-name-parser.y"
  2213.     { (yyval.comp) = (yyvsp[(1) - (2)].nested1).comp; d_right ((yyvsp[(1) - (2)].nested1).last) = (yyvsp[(2) - (2)].comp); }
  2214.     break;

  2215.   case 65:
  2216. /* Line 1792 of yacc.c  */
  2217. #line 593 "cp-name-parser.y"
  2218.     { (yyval.comp) = (yyvsp[(2) - (2)].comp); }
  2219.     break;

  2220.   case 66:
  2221. /* Line 1792 of yacc.c  */
  2222. #line 597 "cp-name-parser.y"
  2223.     { (yyval.comp) = (yyvsp[(1) - (2)].nested1).comp; d_right ((yyvsp[(1) - (2)].nested1).last) = (yyvsp[(2) - (2)].comp); }
  2224.     break;

  2225.   case 68:
  2226. /* Line 1792 of yacc.c  */
  2227. #line 602 "cp-name-parser.y"
  2228.     { (yyval.nested1).comp = make_empty (DEMANGLE_COMPONENT_QUAL_NAME);
  2229.                           d_left ((yyval.nested1).comp) = (yyvsp[(1) - (2)].comp);
  2230.                           d_right ((yyval.nested1).comp) = NULL;
  2231.                           (yyval.nested1).last = (yyval.nested1).comp;
  2232.                         }
  2233.     break;

  2234.   case 69:
  2235. /* Line 1792 of yacc.c  */
  2236. #line 608 "cp-name-parser.y"
  2237.     { (yyval.nested1).comp = (yyvsp[(1) - (3)].nested1).comp;
  2238.                           d_right ((yyvsp[(1) - (3)].nested1).last) = make_empty (DEMANGLE_COMPONENT_QUAL_NAME);
  2239.                           (yyval.nested1).last = d_right ((yyvsp[(1) - (3)].nested1).last);
  2240.                           d_left ((yyval.nested1).last) = (yyvsp[(2) - (3)].comp);
  2241.                           d_right ((yyval.nested1).last) = NULL;
  2242.                         }
  2243.     break;

  2244.   case 70:
  2245. /* Line 1792 of yacc.c  */
  2246. #line 615 "cp-name-parser.y"
  2247.     { (yyval.nested1).comp = make_empty (DEMANGLE_COMPONENT_QUAL_NAME);
  2248.                           d_left ((yyval.nested1).comp) = (yyvsp[(1) - (2)].comp);
  2249.                           d_right ((yyval.nested1).comp) = NULL;
  2250.                           (yyval.nested1).last = (yyval.nested1).comp;
  2251.                         }
  2252.     break;

  2253.   case 71:
  2254. /* Line 1792 of yacc.c  */
  2255. #line 621 "cp-name-parser.y"
  2256.     { (yyval.nested1).comp = (yyvsp[(1) - (3)].nested1).comp;
  2257.                           d_right ((yyvsp[(1) - (3)].nested1).last) = make_empty (DEMANGLE_COMPONENT_QUAL_NAME);
  2258.                           (yyval.nested1).last = d_right ((yyvsp[(1) - (3)].nested1).last);
  2259.                           d_left ((yyval.nested1).last) = (yyvsp[(2) - (3)].comp);
  2260.                           d_right ((yyval.nested1).last) = NULL;
  2261.                         }
  2262.     break;

  2263.   case 72:
  2264. /* Line 1792 of yacc.c  */
  2265. #line 632 "cp-name-parser.y"
  2266.     { (yyval.comp) = fill_comp (DEMANGLE_COMPONENT_TEMPLATE, (yyvsp[(1) - (4)].comp), (yyvsp[(3) - (4)].nested).comp); }
  2267.     break;

  2268.   case 73:
  2269. /* Line 1792 of yacc.c  */
  2270. #line 636 "cp-name-parser.y"
  2271.     { (yyval.nested).comp = fill_comp (DEMANGLE_COMPONENT_TEMPLATE_ARGLIST, (yyvsp[(1) - (1)].comp), NULL);
  2272.                         (yyval.nested).last = &d_right ((yyval.nested).comp); }
  2273.     break;

  2274.   case 74:
  2275. /* Line 1792 of yacc.c  */
  2276. #line 639 "cp-name-parser.y"
  2277.     { (yyval.nested).comp = (yyvsp[(1) - (3)].nested).comp;
  2278.                           *(yyvsp[(1) - (3)].nested).last = fill_comp (DEMANGLE_COMPONENT_TEMPLATE_ARGLIST, (yyvsp[(3) - (3)].comp), NULL);
  2279.                           (yyval.nested).last = &d_right (*(yyvsp[(1) - (3)].nested).last);
  2280.                         }
  2281.     break;

  2282.   case 76:
  2283. /* Line 1792 of yacc.c  */
  2284. #line 651 "cp-name-parser.y"
  2285.     { (yyval.comp) = (yyvsp[(2) - (2)].abstract).comp;
  2286.                           *(yyvsp[(2) - (2)].abstract).last = (yyvsp[(1) - (2)].comp);
  2287.                         }
  2288.     break;

  2289.   case 77:
  2290. /* Line 1792 of yacc.c  */
  2291. #line 655 "cp-name-parser.y"
  2292.     { (yyval.comp) = fill_comp (DEMANGLE_COMPONENT_UNARY, make_operator ("&", 1), (yyvsp[(2) - (2)].comp)); }
  2293.     break;

  2294.   case 78:
  2295. /* Line 1792 of yacc.c  */
  2296. #line 657 "cp-name-parser.y"
  2297.     { (yyval.comp) = fill_comp (DEMANGLE_COMPONENT_UNARY, make_operator ("&", 1), (yyvsp[(3) - (4)].comp)); }
  2298.     break;

  2299.   case 80:
  2300. /* Line 1792 of yacc.c  */
  2301. #line 662 "cp-name-parser.y"
  2302.     { (yyval.nested).comp = fill_comp (DEMANGLE_COMPONENT_ARGLIST, (yyvsp[(1) - (1)].comp), NULL);
  2303.                           (yyval.nested).last = &d_right ((yyval.nested).comp);
  2304.                         }
  2305.     break;

  2306.   case 81:
  2307. /* Line 1792 of yacc.c  */
  2308. #line 666 "cp-name-parser.y"
  2309.     { *(yyvsp[(2) - (2)].abstract).last = (yyvsp[(1) - (2)].comp);
  2310.                           (yyval.nested).comp = fill_comp (DEMANGLE_COMPONENT_ARGLIST, (yyvsp[(2) - (2)].abstract).comp, NULL);
  2311.                           (yyval.nested).last = &d_right ((yyval.nested).comp);
  2312.                         }
  2313.     break;

  2314.   case 82:
  2315. /* Line 1792 of yacc.c  */
  2316. #line 671 "cp-name-parser.y"
  2317.     { *(yyvsp[(1) - (3)].nested).last = fill_comp (DEMANGLE_COMPONENT_ARGLIST, (yyvsp[(3) - (3)].comp), NULL);
  2318.                           (yyval.nested).comp = (yyvsp[(1) - (3)].nested).comp;
  2319.                           (yyval.nested).last = &d_right (*(yyvsp[(1) - (3)].nested).last);
  2320.                         }
  2321.     break;

  2322.   case 83:
  2323. /* Line 1792 of yacc.c  */
  2324. #line 676 "cp-name-parser.y"
  2325.     { *(yyvsp[(4) - (4)].abstract).last = (yyvsp[(3) - (4)].comp);
  2326.                           *(yyvsp[(1) - (4)].nested).last = fill_comp (DEMANGLE_COMPONENT_ARGLIST, (yyvsp[(4) - (4)].abstract).comp, NULL);
  2327.                           (yyval.nested).comp = (yyvsp[(1) - (4)].nested).comp;
  2328.                           (yyval.nested).last = &d_right (*(yyvsp[(1) - (4)].nested).last);
  2329.                         }
  2330.     break;

  2331.   case 84:
  2332. /* Line 1792 of yacc.c  */
  2333. #line 682 "cp-name-parser.y"
  2334.     { *(yyvsp[(1) - (3)].nested).last
  2335.                             = fill_comp (DEMANGLE_COMPONENT_ARGLIST,
  2336.                                            make_builtin_type ("..."),
  2337.                                            NULL);
  2338.                           (yyval.nested).comp = (yyvsp[(1) - (3)].nested).comp;
  2339.                           (yyval.nested).last = &d_right (*(yyvsp[(1) - (3)].nested).last);
  2340.                         }
  2341.     break;

  2342.   case 85:
  2343. /* Line 1792 of yacc.c  */
  2344. #line 692 "cp-name-parser.y"
  2345.     { (yyval.nested).comp = fill_comp (DEMANGLE_COMPONENT_FUNCTION_TYPE, NULL, (yyvsp[(2) - (4)].nested).comp);
  2346.                           (yyval.nested).last = &d_left ((yyval.nested).comp);
  2347.                           (yyval.nested).comp = d_qualify ((yyval.nested).comp, (yyvsp[(4) - (4)].lval), 1); }
  2348.     break;

  2349.   case 86:
  2350. /* Line 1792 of yacc.c  */
  2351. #line 696 "cp-name-parser.y"
  2352.     { (yyval.nested).comp = fill_comp (DEMANGLE_COMPONENT_FUNCTION_TYPE, NULL, NULL);
  2353.                           (yyval.nested).last = &d_left ((yyval.nested).comp);
  2354.                           (yyval.nested).comp = d_qualify ((yyval.nested).comp, (yyvsp[(4) - (4)].lval), 1); }
  2355.     break;

  2356.   case 87:
  2357. /* Line 1792 of yacc.c  */
  2358. #line 700 "cp-name-parser.y"
  2359.     { (yyval.nested).comp = fill_comp (DEMANGLE_COMPONENT_FUNCTION_TYPE, NULL, NULL);
  2360.                           (yyval.nested).last = &d_left ((yyval.nested).comp);
  2361.                           (yyval.nested).comp = d_qualify ((yyval.nested).comp, (yyvsp[(3) - (3)].lval), 1); }
  2362.     break;

  2363.   case 88:
  2364. /* Line 1792 of yacc.c  */
  2365. #line 707 "cp-name-parser.y"
  2366.     { (yyval.lval) = 0; }
  2367.     break;

  2368.   case 90:
  2369. /* Line 1792 of yacc.c  */
  2370. #line 712 "cp-name-parser.y"
  2371.     { (yyval.lval) = QUAL_RESTRICT; }
  2372.     break;

  2373.   case 91:
  2374. /* Line 1792 of yacc.c  */
  2375. #line 714 "cp-name-parser.y"
  2376.     { (yyval.lval) = QUAL_VOLATILE; }
  2377.     break;

  2378.   case 92:
  2379. /* Line 1792 of yacc.c  */
  2380. #line 716 "cp-name-parser.y"
  2381.     { (yyval.lval) = QUAL_CONST; }
  2382.     break;

  2383.   case 94:
  2384. /* Line 1792 of yacc.c  */
  2385. #line 721 "cp-name-parser.y"
  2386.     { (yyval.lval) = (yyvsp[(1) - (2)].lval) | (yyvsp[(2) - (2)].lval); }
  2387.     break;

  2388.   case 95:
  2389. /* Line 1792 of yacc.c  */
  2390. #line 728 "cp-name-parser.y"
  2391.     { (yyval.lval) = 0; }
  2392.     break;

  2393.   case 96:
  2394. /* Line 1792 of yacc.c  */
  2395. #line 730 "cp-name-parser.y"
  2396.     { (yyval.lval) = INT_SIGNED; }
  2397.     break;

  2398.   case 97:
  2399. /* Line 1792 of yacc.c  */
  2400. #line 732 "cp-name-parser.y"
  2401.     { (yyval.lval) = INT_UNSIGNED; }
  2402.     break;

  2403.   case 98:
  2404. /* Line 1792 of yacc.c  */
  2405. #line 734 "cp-name-parser.y"
  2406.     { (yyval.lval) = INT_CHAR; }
  2407.     break;

  2408.   case 99:
  2409. /* Line 1792 of yacc.c  */
  2410. #line 736 "cp-name-parser.y"
  2411.     { (yyval.lval) = INT_LONG; }
  2412.     break;

  2413.   case 100:
  2414. /* Line 1792 of yacc.c  */
  2415. #line 738 "cp-name-parser.y"
  2416.     { (yyval.lval) = INT_SHORT; }
  2417.     break;

  2418.   case 102:
  2419. /* Line 1792 of yacc.c  */
  2420. #line 743 "cp-name-parser.y"
  2421.     { (yyval.lval) = (yyvsp[(1) - (2)].lval) | (yyvsp[(2) - (2)].lval); if ((yyvsp[(1) - (2)].lval) & (yyvsp[(2) - (2)].lval) & INT_LONG) (yyval.lval) = (yyvsp[(1) - (2)].lval) | INT_LLONG; }
  2422.     break;

  2423.   case 103:
  2424. /* Line 1792 of yacc.c  */
  2425. #line 747 "cp-name-parser.y"
  2426.     { (yyval.comp) = d_int_type ((yyvsp[(1) - (1)].lval)); }
  2427.     break;

  2428.   case 104:
  2429. /* Line 1792 of yacc.c  */
  2430. #line 749 "cp-name-parser.y"
  2431.     { (yyval.comp) = make_builtin_type ("float"); }
  2432.     break;

  2433.   case 105:
  2434. /* Line 1792 of yacc.c  */
  2435. #line 751 "cp-name-parser.y"
  2436.     { (yyval.comp) = make_builtin_type ("double"); }
  2437.     break;

  2438.   case 106:
  2439. /* Line 1792 of yacc.c  */
  2440. #line 753 "cp-name-parser.y"
  2441.     { (yyval.comp) = make_builtin_type ("long double"); }
  2442.     break;

  2443.   case 107:
  2444. /* Line 1792 of yacc.c  */
  2445. #line 755 "cp-name-parser.y"
  2446.     { (yyval.comp) = make_builtin_type ("bool"); }
  2447.     break;

  2448.   case 108:
  2449. /* Line 1792 of yacc.c  */
  2450. #line 757 "cp-name-parser.y"
  2451.     { (yyval.comp) = make_builtin_type ("wchar_t"); }
  2452.     break;

  2453.   case 109:
  2454. /* Line 1792 of yacc.c  */
  2455. #line 759 "cp-name-parser.y"
  2456.     { (yyval.comp) = make_builtin_type ("void"); }
  2457.     break;

  2458.   case 110:
  2459. /* Line 1792 of yacc.c  */
  2460. #line 763 "cp-name-parser.y"
  2461.     { (yyval.nested).comp = make_empty (DEMANGLE_COMPONENT_POINTER);
  2462.                           (yyval.nested).comp->u.s_binary.left = (yyval.nested).comp->u.s_binary.right = NULL;
  2463.                           (yyval.nested).last = &d_left ((yyval.nested).comp);
  2464.                           (yyval.nested).comp = d_qualify ((yyval.nested).comp, (yyvsp[(2) - (2)].lval), 0); }
  2465.     break;

  2466.   case 111:
  2467. /* Line 1792 of yacc.c  */
  2468. #line 769 "cp-name-parser.y"
  2469.     { (yyval.nested).comp = make_empty (DEMANGLE_COMPONENT_REFERENCE);
  2470.                           (yyval.nested).comp->u.s_binary.left = (yyval.nested).comp->u.s_binary.right = NULL;
  2471.                           (yyval.nested).last = &d_left ((yyval.nested).comp); }
  2472.     break;

  2473.   case 112:
  2474. /* Line 1792 of yacc.c  */
  2475. #line 773 "cp-name-parser.y"
  2476.     { (yyval.nested).comp = make_empty (DEMANGLE_COMPONENT_PTRMEM_TYPE);
  2477.                           (yyval.nested).comp->u.s_binary.left = (yyvsp[(1) - (3)].nested1).comp;
  2478.                           /* Convert the innermost DEMANGLE_COMPONENT_QUAL_NAME to a DEMANGLE_COMPONENT_NAME.  */
  2479.                           *(yyvsp[(1) - (3)].nested1).last = *d_left ((yyvsp[(1) - (3)].nested1).last);
  2480.                           (yyval.nested).comp->u.s_binary.right = NULL;
  2481.                           (yyval.nested).last = &d_right ((yyval.nested).comp);
  2482.                           (yyval.nested).comp = d_qualify ((yyval.nested).comp, (yyvsp[(3) - (3)].lval), 0); }
  2483.     break;

  2484.   case 113:
  2485. /* Line 1792 of yacc.c  */
  2486. #line 781 "cp-name-parser.y"
  2487.     { (yyval.nested).comp = make_empty (DEMANGLE_COMPONENT_PTRMEM_TYPE);
  2488.                           (yyval.nested).comp->u.s_binary.left = (yyvsp[(2) - (4)].nested1).comp;
  2489.                           /* Convert the innermost DEMANGLE_COMPONENT_QUAL_NAME to a DEMANGLE_COMPONENT_NAME.  */
  2490.                           *(yyvsp[(2) - (4)].nested1).last = *d_left ((yyvsp[(2) - (4)].nested1).last);
  2491.                           (yyval.nested).comp->u.s_binary.right = NULL;
  2492.                           (yyval.nested).last = &d_right ((yyval.nested).comp);
  2493.                           (yyval.nested).comp = d_qualify ((yyval.nested).comp, (yyvsp[(4) - (4)].lval), 0); }
  2494.     break;

  2495.   case 114:
  2496. /* Line 1792 of yacc.c  */
  2497. #line 791 "cp-name-parser.y"
  2498.     { (yyval.comp) = make_empty (DEMANGLE_COMPONENT_ARRAY_TYPE);
  2499.                           d_left ((yyval.comp)) = NULL;
  2500.                         }
  2501.     break;

  2502.   case 115:
  2503. /* Line 1792 of yacc.c  */
  2504. #line 795 "cp-name-parser.y"
  2505.     { (yyval.comp) = make_empty (DEMANGLE_COMPONENT_ARRAY_TYPE);
  2506.                           d_left ((yyval.comp)) = (yyvsp[(2) - (3)].comp);
  2507.                         }
  2508.     break;

  2509.   case 116:
  2510. /* Line 1792 of yacc.c  */
  2511. #line 811 "cp-name-parser.y"
  2512.     { (yyval.comp) = d_qualify ((yyvsp[(1) - (2)].comp), (yyvsp[(2) - (2)].lval), 0); }
  2513.     break;

  2514.   case 118:
  2515. /* Line 1792 of yacc.c  */
  2516. #line 814 "cp-name-parser.y"
  2517.     { (yyval.comp) = d_qualify ((yyvsp[(2) - (3)].comp), (yyvsp[(1) - (3)].lval) | (yyvsp[(3) - (3)].lval), 0); }
  2518.     break;

  2519.   case 119:
  2520. /* Line 1792 of yacc.c  */
  2521. #line 816 "cp-name-parser.y"
  2522.     { (yyval.comp) = d_qualify ((yyvsp[(2) - (2)].comp), (yyvsp[(1) - (2)].lval), 0); }
  2523.     break;

  2524.   case 120:
  2525. /* Line 1792 of yacc.c  */
  2526. #line 819 "cp-name-parser.y"
  2527.     { (yyval.comp) = d_qualify ((yyvsp[(1) - (2)].comp), (yyvsp[(2) - (2)].lval), 0); }
  2528.     break;

  2529.   case 122:
  2530. /* Line 1792 of yacc.c  */
  2531. #line 822 "cp-name-parser.y"
  2532.     { (yyval.comp) = d_qualify ((yyvsp[(2) - (3)].comp), (yyvsp[(1) - (3)].lval) | (yyvsp[(3) - (3)].lval), 0); }
  2533.     break;

  2534.   case 123:
  2535. /* Line 1792 of yacc.c  */
  2536. #line 824 "cp-name-parser.y"
  2537.     { (yyval.comp) = d_qualify ((yyvsp[(2) - (2)].comp), (yyvsp[(1) - (2)].lval), 0); }
  2538.     break;

  2539.   case 124:
  2540. /* Line 1792 of yacc.c  */
  2541. #line 827 "cp-name-parser.y"
  2542.     { (yyval.comp) = d_qualify ((yyvsp[(2) - (3)].comp), (yyvsp[(3) - (3)].lval), 0); }
  2543.     break;

  2544.   case 125:
  2545. /* Line 1792 of yacc.c  */
  2546. #line 829 "cp-name-parser.y"
  2547.     { (yyval.comp) = (yyvsp[(2) - (2)].comp); }
  2548.     break;

  2549.   case 126:
  2550. /* Line 1792 of yacc.c  */
  2551. #line 831 "cp-name-parser.y"
  2552.     { (yyval.comp) = d_qualify ((yyvsp[(3) - (4)].comp), (yyvsp[(1) - (4)].lval) | (yyvsp[(4) - (4)].lval), 0); }
  2553.     break;

  2554.   case 127:
  2555. /* Line 1792 of yacc.c  */
  2556. #line 833 "cp-name-parser.y"
  2557.     { (yyval.comp) = d_qualify ((yyvsp[(3) - (3)].comp), (yyvsp[(1) - (3)].lval), 0); }
  2558.     break;

  2559.   case 128:
  2560. /* Line 1792 of yacc.c  */
  2561. #line 838 "cp-name-parser.y"
  2562.     { (yyval.abstract).comp = (yyvsp[(1) - (1)].nested).comp; (yyval.abstract).last = (yyvsp[(1) - (1)].nested).last;
  2563.                           (yyval.abstract).fn.comp = NULL; (yyval.abstract).fn.last = NULL; }
  2564.     break;

  2565.   case 129:
  2566. /* Line 1792 of yacc.c  */
  2567. #line 841 "cp-name-parser.y"
  2568.     { (yyval.abstract) = (yyvsp[(2) - (2)].abstract); (yyval.abstract).fn.comp = NULL; (yyval.abstract).fn.last = NULL;
  2569.                           if ((yyvsp[(2) - (2)].abstract).fn.comp) { (yyval.abstract).last = (yyvsp[(2) - (2)].abstract).fn.last; *(yyvsp[(2) - (2)].abstract).last = (yyvsp[(2) - (2)].abstract).fn.comp; }
  2570.                           *(yyval.abstract).last = (yyvsp[(1) - (2)].nested).comp;
  2571.                           (yyval.abstract).last = (yyvsp[(1) - (2)].nested).last; }
  2572.     break;

  2573.   case 130:
  2574. /* Line 1792 of yacc.c  */
  2575. #line 846 "cp-name-parser.y"
  2576.     { (yyval.abstract).fn.comp = NULL; (yyval.abstract).fn.last = NULL;
  2577.                           if ((yyvsp[(1) - (1)].abstract).fn.comp) { (yyval.abstract).last = (yyvsp[(1) - (1)].abstract).fn.last; *(yyvsp[(1) - (1)].abstract).last = (yyvsp[(1) - (1)].abstract).fn.comp; }
  2578.                         }
  2579.     break;

  2580.   case 131:
  2581. /* Line 1792 of yacc.c  */
  2582. #line 853 "cp-name-parser.y"
  2583.     { (yyval.abstract) = (yyvsp[(2) - (3)].abstract); (yyval.abstract).fn.comp = NULL; (yyval.abstract).fn.last = NULL; (yyval.abstract).fold_flag = 1;
  2584.                           if ((yyvsp[(2) - (3)].abstract).fn.comp) { (yyval.abstract).last = (yyvsp[(2) - (3)].abstract).fn.last; *(yyvsp[(2) - (3)].abstract).last = (yyvsp[(2) - (3)].abstract).fn.comp; }
  2585.                         }
  2586.     break;

  2587.   case 132:
  2588. /* Line 1792 of yacc.c  */
  2589. #line 857 "cp-name-parser.y"
  2590.     { (yyval.abstract).fold_flag = 0;
  2591.                           if ((yyvsp[(1) - (2)].abstract).fn.comp) { (yyval.abstract).last = (yyvsp[(1) - (2)].abstract).fn.last; *(yyvsp[(1) - (2)].abstract).last = (yyvsp[(1) - (2)].abstract).fn.comp; }
  2592.                           if ((yyvsp[(1) - (2)].abstract).fold_flag)
  2593.                             {
  2594.                               *(yyval.abstract).last = (yyvsp[(2) - (2)].nested).comp;
  2595.                               (yyval.abstract).last = (yyvsp[(2) - (2)].nested).last;
  2596.                             }
  2597.                           else
  2598.                             (yyval.abstract).fn = (yyvsp[(2) - (2)].nested);
  2599.                         }
  2600.     break;

  2601.   case 133:
  2602. /* Line 1792 of yacc.c  */
  2603. #line 868 "cp-name-parser.y"
  2604.     { (yyval.abstract).fn.comp = NULL; (yyval.abstract).fn.last = NULL; (yyval.abstract).fold_flag = 0;
  2605.                           if ((yyvsp[(1) - (2)].abstract).fn.comp) { (yyval.abstract).last = (yyvsp[(1) - (2)].abstract).fn.last; *(yyvsp[(1) - (2)].abstract).last = (yyvsp[(1) - (2)].abstract).fn.comp; }
  2606.                           *(yyvsp[(1) - (2)].abstract).last = (yyvsp[(2) - (2)].comp);
  2607.                           (yyval.abstract).last = &d_right ((yyvsp[(2) - (2)].comp));
  2608.                         }
  2609.     break;

  2610.   case 134:
  2611. /* Line 1792 of yacc.c  */
  2612. #line 874 "cp-name-parser.y"
  2613.     { (yyval.abstract).fn.comp = NULL; (yyval.abstract).fn.last = NULL; (yyval.abstract).fold_flag = 0;
  2614.                           (yyval.abstract).comp = (yyvsp[(1) - (1)].comp);
  2615.                           (yyval.abstract).last = &d_right ((yyvsp[(1) - (1)].comp));
  2616.                         }
  2617.     break;

  2618.   case 135:
  2619. /* Line 1792 of yacc.c  */
  2620. #line 892 "cp-name-parser.y"
  2621.     { (yyval.abstract).comp = (yyvsp[(1) - (1)].nested).comp; (yyval.abstract).last = (yyvsp[(1) - (1)].nested).last;
  2622.                           (yyval.abstract).fn.comp = NULL; (yyval.abstract).fn.last = NULL; (yyval.abstract).start = NULL; }
  2623.     break;

  2624.   case 136:
  2625. /* Line 1792 of yacc.c  */
  2626. #line 895 "cp-name-parser.y"
  2627.     { (yyval.abstract) = (yyvsp[(2) - (2)].abstract);
  2628.                           if ((yyvsp[(2) - (2)].abstract).last)
  2629.                             *(yyval.abstract).last = (yyvsp[(1) - (2)].nested).comp;
  2630.                           else
  2631.                             (yyval.abstract).comp = (yyvsp[(1) - (2)].nested).comp;
  2632.                           (yyval.abstract).last = (yyvsp[(1) - (2)].nested).last;
  2633.                         }
  2634.     break;

  2635.   case 137:
  2636. /* Line 1792 of yacc.c  */
  2637. #line 903 "cp-name-parser.y"
  2638.     { (yyval.abstract).comp = (yyvsp[(1) - (1)].abstract).comp; (yyval.abstract).last = (yyvsp[(1) - (1)].abstract).last; (yyval.abstract).fn = (yyvsp[(1) - (1)].abstract).fn; (yyval.abstract).start = NULL; }
  2639.     break;

  2640.   case 138:
  2641. /* Line 1792 of yacc.c  */
  2642. #line 905 "cp-name-parser.y"
  2643.     { (yyval.abstract).start = (yyvsp[(4) - (4)].comp);
  2644.                           if ((yyvsp[(1) - (4)].abstract).fn.comp) { (yyval.abstract).last = (yyvsp[(1) - (4)].abstract).fn.last; *(yyvsp[(1) - (4)].abstract).last = (yyvsp[(1) - (4)].abstract).fn.comp; }
  2645.                           if ((yyvsp[(1) - (4)].abstract).fold_flag)
  2646.                             {
  2647.                               *(yyval.abstract).last = (yyvsp[(2) - (4)].nested).comp;
  2648.                               (yyval.abstract).last = (yyvsp[(2) - (4)].nested).last;
  2649.                             }
  2650.                           else
  2651.                             (yyval.abstract).fn = (yyvsp[(2) - (4)].nested);
  2652.                         }
  2653.     break;

  2654.   case 139:
  2655. /* Line 1792 of yacc.c  */
  2656. #line 916 "cp-name-parser.y"
  2657.     { (yyval.abstract).fn = (yyvsp[(1) - (2)].nested);
  2658.                           (yyval.abstract).start = (yyvsp[(2) - (2)].comp);
  2659.                           (yyval.abstract).comp = NULL; (yyval.abstract).last = NULL;
  2660.                         }
  2661.     break;

  2662.   case 141:
  2663. /* Line 1792 of yacc.c  */
  2664. #line 924 "cp-name-parser.y"
  2665.     { (yyval.comp) = (yyvsp[(2) - (2)].abstract).comp;
  2666.                           *(yyvsp[(2) - (2)].abstract).last = (yyvsp[(1) - (2)].comp);
  2667.                         }
  2668.     break;

  2669.   case 142:
  2670. /* Line 1792 of yacc.c  */
  2671. #line 930 "cp-name-parser.y"
  2672.     { (yyval.nested).comp = (yyvsp[(2) - (2)].nested).comp;
  2673.                           (yyval.nested).last = (yyvsp[(1) - (2)].nested).last;
  2674.                           *(yyvsp[(2) - (2)].nested).last = (yyvsp[(1) - (2)].nested).comp; }
  2675.     break;

  2676.   case 144:
  2677. /* Line 1792 of yacc.c  */
  2678. #line 938 "cp-name-parser.y"
  2679.     { (yyval.nested) = (yyvsp[(2) - (3)].nested); }
  2680.     break;

  2681.   case 145:
  2682. /* Line 1792 of yacc.c  */
  2683. #line 940 "cp-name-parser.y"
  2684.     { (yyval.nested).comp = (yyvsp[(1) - (2)].nested).comp;
  2685.                           *(yyvsp[(1) - (2)].nested).last = (yyvsp[(2) - (2)].nested).comp;
  2686.                           (yyval.nested).last = (yyvsp[(2) - (2)].nested).last;
  2687.                         }
  2688.     break;

  2689.   case 146:
  2690. /* Line 1792 of yacc.c  */
  2691. #line 945 "cp-name-parser.y"
  2692.     { (yyval.nested).comp = (yyvsp[(1) - (2)].nested).comp;
  2693.                           *(yyvsp[(1) - (2)].nested).last = (yyvsp[(2) - (2)].comp);
  2694.                           (yyval.nested).last = &d_right ((yyvsp[(2) - (2)].comp));
  2695.                         }
  2696.     break;

  2697.   case 147:
  2698. /* Line 1792 of yacc.c  */
  2699. #line 950 "cp-name-parser.y"
  2700.     { (yyval.nested).comp = make_empty (DEMANGLE_COMPONENT_TYPED_NAME);
  2701.                           d_left ((yyval.nested).comp) = (yyvsp[(1) - (1)].comp);
  2702.                           (yyval.nested).last = &d_right ((yyval.nested).comp);
  2703.                         }
  2704.     break;

  2705.   case 148:
  2706. /* Line 1792 of yacc.c  */
  2707. #line 963 "cp-name-parser.y"
  2708.     { (yyval.nested).comp = (yyvsp[(2) - (2)].nested).comp;
  2709.                           (yyval.nested).last = (yyvsp[(1) - (2)].nested).last;
  2710.                           *(yyvsp[(2) - (2)].nested).last = (yyvsp[(1) - (2)].nested).comp; }
  2711.     break;

  2712.   case 149:
  2713. /* Line 1792 of yacc.c  */
  2714. #line 967 "cp-name-parser.y"
  2715.     { (yyval.nested).comp = make_empty (DEMANGLE_COMPONENT_TYPED_NAME);
  2716.                           d_left ((yyval.nested).comp) = (yyvsp[(1) - (1)].comp);
  2717.                           (yyval.nested).last = &d_right ((yyval.nested).comp);
  2718.                         }
  2719.     break;

  2720.   case 151:
  2721. /* Line 1792 of yacc.c  */
  2722. #line 980 "cp-name-parser.y"
  2723.     { (yyval.nested).comp = fill_comp (DEMANGLE_COMPONENT_TYPED_NAME, (yyvsp[(1) - (4)].comp), (yyvsp[(2) - (4)].nested).comp);
  2724.                           (yyval.nested).last = (yyvsp[(2) - (4)].nested).last;
  2725.                           (yyval.nested).comp = fill_comp (DEMANGLE_COMPONENT_LOCAL_NAME, (yyval.nested).comp, (yyvsp[(4) - (4)].comp));
  2726.                         }
  2727.     break;

  2728.   case 152:
  2729. /* Line 1792 of yacc.c  */
  2730. #line 985 "cp-name-parser.y"
  2731.     { (yyval.nested).comp = (yyvsp[(1) - (4)].nested).comp;
  2732.                           *(yyvsp[(1) - (4)].nested).last = (yyvsp[(2) - (4)].nested).comp;
  2733.                           (yyval.nested).last = (yyvsp[(2) - (4)].nested).last;
  2734.                           (yyval.nested).comp = fill_comp (DEMANGLE_COMPONENT_LOCAL_NAME, (yyval.nested).comp, (yyvsp[(4) - (4)].comp));
  2735.                         }
  2736.     break;

  2737.   case 153:
  2738. /* Line 1792 of yacc.c  */
  2739. #line 994 "cp-name-parser.y"
  2740.     { (yyval.nested).comp = (yyvsp[(3) - (4)].nested).comp;
  2741.                           (yyval.nested).last = (yyvsp[(2) - (4)].nested).last;
  2742.                           *(yyvsp[(3) - (4)].nested).last = (yyvsp[(2) - (4)].nested).comp; }
  2743.     break;

  2744.   case 154:
  2745. /* Line 1792 of yacc.c  */
  2746. #line 998 "cp-name-parser.y"
  2747.     { (yyval.nested).comp = (yyvsp[(1) - (2)].nested).comp;
  2748.                           *(yyvsp[(1) - (2)].nested).last = (yyvsp[(2) - (2)].nested).comp;
  2749.                           (yyval.nested).last = (yyvsp[(2) - (2)].nested).last;
  2750.                         }
  2751.     break;

  2752.   case 155:
  2753. /* Line 1792 of yacc.c  */
  2754. #line 1003 "cp-name-parser.y"
  2755.     { (yyval.nested).comp = (yyvsp[(1) - (2)].nested).comp;
  2756.                           *(yyvsp[(1) - (2)].nested).last = (yyvsp[(2) - (2)].comp);
  2757.                           (yyval.nested).last = &d_right ((yyvsp[(2) - (2)].comp));
  2758.                         }
  2759.     break;

  2760.   case 156:
  2761. /* Line 1792 of yacc.c  */
  2762. #line 1008 "cp-name-parser.y"
  2763.     { (yyval.nested).comp = fill_comp (DEMANGLE_COMPONENT_TYPED_NAME, (yyvsp[(1) - (2)].comp), (yyvsp[(2) - (2)].nested).comp);
  2764.                           (yyval.nested).last = (yyvsp[(2) - (2)].nested).last;
  2765.                         }
  2766.     break;

  2767.   case 157:
  2768. /* Line 1792 of yacc.c  */
  2769. #line 1012 "cp-name-parser.y"
  2770.     { (yyval.nested).comp = fill_comp (DEMANGLE_COMPONENT_TYPED_NAME, (yyvsp[(1) - (2)].comp), (yyvsp[(2) - (2)].comp));
  2771.                           (yyval.nested).last = &d_right ((yyvsp[(2) - (2)].comp));
  2772.                         }
  2773.     break;

  2774.   case 158:
  2775. /* Line 1792 of yacc.c  */
  2776. #line 1018 "cp-name-parser.y"
  2777.     { (yyval.comp) = (yyvsp[(2) - (3)].comp); }
  2778.     break;

  2779.   case 160:
  2780. /* Line 1792 of yacc.c  */
  2781. #line 1027 "cp-name-parser.y"
  2782.     { (yyval.comp) = d_binary (">", (yyvsp[(1) - (3)].comp), (yyvsp[(3) - (3)].comp)); }
  2783.     break;

  2784.   case 161:
  2785. /* Line 1792 of yacc.c  */
  2786. #line 1034 "cp-name-parser.y"
  2787.     { (yyval.comp) = fill_comp (DEMANGLE_COMPONENT_UNARY, make_operator ("&", 1), (yyvsp[(2) - (2)].comp)); }
  2788.     break;

  2789.   case 162:
  2790. /* Line 1792 of yacc.c  */
  2791. #line 1036 "cp-name-parser.y"
  2792.     { (yyval.comp) = fill_comp (DEMANGLE_COMPONENT_UNARY, make_operator ("&", 1), (yyvsp[(3) - (4)].comp)); }
  2793.     break;

  2794.   case 163:
  2795. /* Line 1792 of yacc.c  */
  2796. #line 1041 "cp-name-parser.y"
  2797.     { (yyval.comp) = d_unary ("-", (yyvsp[(2) - (2)].comp)); }
  2798.     break;

  2799.   case 164:
  2800. /* Line 1792 of yacc.c  */
  2801. #line 1045 "cp-name-parser.y"
  2802.     { (yyval.comp) = d_unary ("!", (yyvsp[(2) - (2)].comp)); }
  2803.     break;

  2804.   case 165:
  2805. /* Line 1792 of yacc.c  */
  2806. #line 1049 "cp-name-parser.y"
  2807.     { (yyval.comp) = d_unary ("~", (yyvsp[(2) - (2)].comp)); }
  2808.     break;

  2809.   case 166:
  2810. /* Line 1792 of yacc.c  */
  2811. #line 1056 "cp-name-parser.y"
  2812.     { if ((yyvsp[(4) - (4)].comp)->type == DEMANGLE_COMPONENT_LITERAL
  2813.                       || (yyvsp[(4) - (4)].comp)->type == DEMANGLE_COMPONENT_LITERAL_NEG)
  2814.                     {
  2815.                       (yyval.comp) = (yyvsp[(4) - (4)].comp);
  2816.                       d_left ((yyvsp[(4) - (4)].comp)) = (yyvsp[(2) - (4)].comp);
  2817.                     }
  2818.                   else
  2819.                     (yyval.comp) = fill_comp (DEMANGLE_COMPONENT_UNARY,
  2820.                                       fill_comp (DEMANGLE_COMPONENT_CAST, (yyvsp[(2) - (4)].comp), NULL),
  2821.                                       (yyvsp[(4) - (4)].comp));
  2822.                 }
  2823.     break;

  2824.   case 167:
  2825. /* Line 1792 of yacc.c  */
  2826. #line 1072 "cp-name-parser.y"
  2827.     { (yyval.comp) = fill_comp (DEMANGLE_COMPONENT_UNARY,
  2828.                                     fill_comp (DEMANGLE_COMPONENT_CAST, (yyvsp[(3) - (7)].comp), NULL),
  2829.                                     (yyvsp[(6) - (7)].comp));
  2830.                 }
  2831.     break;

  2832.   case 168:
  2833. /* Line 1792 of yacc.c  */
  2834. #line 1079 "cp-name-parser.y"
  2835.     { (yyval.comp) = fill_comp (DEMANGLE_COMPONENT_UNARY,
  2836.                                     fill_comp (DEMANGLE_COMPONENT_CAST, (yyvsp[(3) - (7)].comp), NULL),
  2837.                                     (yyvsp[(6) - (7)].comp));
  2838.                 }
  2839.     break;

  2840.   case 169:
  2841. /* Line 1792 of yacc.c  */
  2842. #line 1086 "cp-name-parser.y"
  2843.     { (yyval.comp) = fill_comp (DEMANGLE_COMPONENT_UNARY,
  2844.                                     fill_comp (DEMANGLE_COMPONENT_CAST, (yyvsp[(3) - (7)].comp), NULL),
  2845.                                     (yyvsp[(6) - (7)].comp));
  2846.                 }
  2847.     break;

  2848.   case 170:
  2849. /* Line 1792 of yacc.c  */
  2850. #line 1105 "cp-name-parser.y"
  2851.     { (yyval.comp) = d_binary ("*", (yyvsp[(1) - (3)].comp), (yyvsp[(3) - (3)].comp)); }
  2852.     break;

  2853.   case 171:
  2854. /* Line 1792 of yacc.c  */
  2855. #line 1109 "cp-name-parser.y"
  2856.     { (yyval.comp) = d_binary ("/", (yyvsp[(1) - (3)].comp), (yyvsp[(3) - (3)].comp)); }
  2857.     break;

  2858.   case 172:
  2859. /* Line 1792 of yacc.c  */
  2860. #line 1113 "cp-name-parser.y"
  2861.     { (yyval.comp) = d_binary ("%", (yyvsp[(1) - (3)].comp), (yyvsp[(3) - (3)].comp)); }
  2862.     break;

  2863.   case 173:
  2864. /* Line 1792 of yacc.c  */
  2865. #line 1117 "cp-name-parser.y"
  2866.     { (yyval.comp) = d_binary ("+", (yyvsp[(1) - (3)].comp), (yyvsp[(3) - (3)].comp)); }
  2867.     break;

  2868.   case 174:
  2869. /* Line 1792 of yacc.c  */
  2870. #line 1121 "cp-name-parser.y"
  2871.     { (yyval.comp) = d_binary ("-", (yyvsp[(1) - (3)].comp), (yyvsp[(3) - (3)].comp)); }
  2872.     break;

  2873.   case 175:
  2874. /* Line 1792 of yacc.c  */
  2875. #line 1125 "cp-name-parser.y"
  2876.     { (yyval.comp) = d_binary ("<<", (yyvsp[(1) - (3)].comp), (yyvsp[(3) - (3)].comp)); }
  2877.     break;

  2878.   case 176:
  2879. /* Line 1792 of yacc.c  */
  2880. #line 1129 "cp-name-parser.y"
  2881.     { (yyval.comp) = d_binary (">>", (yyvsp[(1) - (3)].comp), (yyvsp[(3) - (3)].comp)); }
  2882.     break;

  2883.   case 177:
  2884. /* Line 1792 of yacc.c  */
  2885. #line 1133 "cp-name-parser.y"
  2886.     { (yyval.comp) = d_binary ("==", (yyvsp[(1) - (3)].comp), (yyvsp[(3) - (3)].comp)); }
  2887.     break;

  2888.   case 178:
  2889. /* Line 1792 of yacc.c  */
  2890. #line 1137 "cp-name-parser.y"
  2891.     { (yyval.comp) = d_binary ("!=", (yyvsp[(1) - (3)].comp), (yyvsp[(3) - (3)].comp)); }
  2892.     break;

  2893.   case 179:
  2894. /* Line 1792 of yacc.c  */
  2895. #line 1141 "cp-name-parser.y"
  2896.     { (yyval.comp) = d_binary ("<=", (yyvsp[(1) - (3)].comp), (yyvsp[(3) - (3)].comp)); }
  2897.     break;

  2898.   case 180:
  2899. /* Line 1792 of yacc.c  */
  2900. #line 1145 "cp-name-parser.y"
  2901.     { (yyval.comp) = d_binary (">=", (yyvsp[(1) - (3)].comp), (yyvsp[(3) - (3)].comp)); }
  2902.     break;

  2903.   case 181:
  2904. /* Line 1792 of yacc.c  */
  2905. #line 1149 "cp-name-parser.y"
  2906.     { (yyval.comp) = d_binary ("<", (yyvsp[(1) - (3)].comp), (yyvsp[(3) - (3)].comp)); }
  2907.     break;

  2908.   case 182:
  2909. /* Line 1792 of yacc.c  */
  2910. #line 1153 "cp-name-parser.y"
  2911.     { (yyval.comp) = d_binary ("&", (yyvsp[(1) - (3)].comp), (yyvsp[(3) - (3)].comp)); }
  2912.     break;

  2913.   case 183:
  2914. /* Line 1792 of yacc.c  */
  2915. #line 1157 "cp-name-parser.y"
  2916.     { (yyval.comp) = d_binary ("^", (yyvsp[(1) - (3)].comp), (yyvsp[(3) - (3)].comp)); }
  2917.     break;

  2918.   case 184:
  2919. /* Line 1792 of yacc.c  */
  2920. #line 1161 "cp-name-parser.y"
  2921.     { (yyval.comp) = d_binary ("|", (yyvsp[(1) - (3)].comp), (yyvsp[(3) - (3)].comp)); }
  2922.     break;

  2923.   case 185:
  2924. /* Line 1792 of yacc.c  */
  2925. #line 1165 "cp-name-parser.y"
  2926.     { (yyval.comp) = d_binary ("&&", (yyvsp[(1) - (3)].comp), (yyvsp[(3) - (3)].comp)); }
  2927.     break;

  2928.   case 186:
  2929. /* Line 1792 of yacc.c  */
  2930. #line 1169 "cp-name-parser.y"
  2931.     { (yyval.comp) = d_binary ("||", (yyvsp[(1) - (3)].comp), (yyvsp[(3) - (3)].comp)); }
  2932.     break;

  2933.   case 187:
  2934. /* Line 1792 of yacc.c  */
  2935. #line 1174 "cp-name-parser.y"
  2936.     { (yyval.comp) = d_binary ("->", (yyvsp[(1) - (3)].comp), (yyvsp[(3) - (3)].comp)); }
  2937.     break;

  2938.   case 188:
  2939. /* Line 1792 of yacc.c  */
  2940. #line 1178 "cp-name-parser.y"
  2941.     { (yyval.comp) = d_binary (".", (yyvsp[(1) - (3)].comp), (yyvsp[(3) - (3)].comp)); }
  2942.     break;

  2943.   case 189:
  2944. /* Line 1792 of yacc.c  */
  2945. #line 1182 "cp-name-parser.y"
  2946.     { (yyval.comp) = fill_comp (DEMANGLE_COMPONENT_TRINARY, make_operator ("?", 3),
  2947.                                     fill_comp (DEMANGLE_COMPONENT_TRINARY_ARG1, (yyvsp[(1) - (5)].comp),
  2948.                                                  fill_comp (DEMANGLE_COMPONENT_TRINARY_ARG2, (yyvsp[(3) - (5)].comp), (yyvsp[(5) - (5)].comp))));
  2949.                 }
  2950.     break;

  2951.   case 192:
  2952. /* Line 1792 of yacc.c  */
  2953. #line 1196 "cp-name-parser.y"
  2954.     {
  2955.                   /* Match the whitespacing of cplus_demangle_operators.
  2956.                      It would abort on unrecognized string otherwise.  */
  2957.                   (yyval.comp) = d_unary ("sizeof ", (yyvsp[(3) - (4)].comp));
  2958.                 }
  2959.     break;

  2960.   case 193:
  2961. /* Line 1792 of yacc.c  */
  2962. #line 1205 "cp-name-parser.y"
  2963.     { struct demangle_component *i;
  2964.                   i = make_name ("1", 1);
  2965.                   (yyval.comp) = fill_comp (DEMANGLE_COMPONENT_LITERAL,
  2966.                                     make_builtin_type ("bool"),
  2967.                                     i);
  2968.                 }
  2969.     break;

  2970.   case 194:
  2971. /* Line 1792 of yacc.c  */
  2972. #line 1214 "cp-name-parser.y"
  2973.     { struct demangle_component *i;
  2974.                   i = make_name ("0", 1);
  2975.                   (yyval.comp) = fill_comp (DEMANGLE_COMPONENT_LITERAL,
  2976.                                     make_builtin_type ("bool"),
  2977.                                     i);
  2978.                 }
  2979.     break;


  2980. /* Line 1792 of yacc.c  */
  2981. #line 3399 "cp-name-parser.c"
  2982.       default: break;
  2983.     }
  2984.   /* User semantic actions sometimes alter yychar, and that requires
  2985.      that yytoken be updated with the new translation.  We take the
  2986.      approach of translating immediately before every use of yytoken.
  2987.      One alternative is translating here after every semantic action,
  2988.      but that translation would be missed if the semantic action invokes
  2989.      YYABORT, YYACCEPT, or YYERROR immediately after altering yychar or
  2990.      if it invokes YYBACKUP.  In the case of YYABORT or YYACCEPT, an
  2991.      incorrect destructor might then be invoked immediately.  In the
  2992.      case of YYERROR or YYBACKUP, subsequent parser actions might lead
  2993.      to an incorrect destructor call or verbose syntax error message
  2994.      before the lookahead is translated.  */
  2995.   YY_SYMBOL_PRINT ("-> $$ =", yyr1[yyn], &yyval, &yyloc);

  2996.   YYPOPSTACK (yylen);
  2997.   yylen = 0;
  2998.   YY_STACK_PRINT (yyss, yyssp);

  2999.   *++yyvsp = yyval;

  3000.   /* Now `shift' the result of the reduction.  Determine what state
  3001.      that goes to, based on the state we popped back to and the rule
  3002.      number reduced by.  */

  3003.   yyn = yyr1[yyn];

  3004.   yystate = yypgoto[yyn - YYNTOKENS] + *yyssp;
  3005.   if (0 <= yystate && yystate <= YYLAST && yycheck[yystate] == *yyssp)
  3006.     yystate = yytable[yystate];
  3007.   else
  3008.     yystate = yydefgoto[yyn - YYNTOKENS];

  3009.   goto yynewstate;


  3010. /*------------------------------------.
  3011. | yyerrlab -- here on detecting error |
  3012. `------------------------------------*/
  3013. yyerrlab:
  3014.   /* Make sure we have latest lookahead translation.  See comments at
  3015.      user semantic actions for why this is necessary.  */
  3016.   yytoken = yychar == YYEMPTY ? YYEMPTY : YYTRANSLATE (yychar);

  3017.   /* If not already recovering from an error, report this error.  */
  3018.   if (!yyerrstatus)
  3019.     {
  3020.       ++yynerrs;
  3021. #if ! YYERROR_VERBOSE
  3022.       yyerror (YY_("syntax error"));
  3023. #else
  3024. # define YYSYNTAX_ERROR yysyntax_error (&yymsg_alloc, &yymsg, \
  3025.                                         yyssp, yytoken)
  3026.       {
  3027.         char const *yymsgp = YY_("syntax error");
  3028.         int yysyntax_error_status;
  3029.         yysyntax_error_status = YYSYNTAX_ERROR;
  3030.         if (yysyntax_error_status == 0)
  3031.           yymsgp = yymsg;
  3032.         else if (yysyntax_error_status == 1)
  3033.           {
  3034.             if (yymsg != yymsgbuf)
  3035.               YYSTACK_FREE (yymsg);
  3036.             yymsg = (char *) YYSTACK_ALLOC (yymsg_alloc);
  3037.             if (!yymsg)
  3038.               {
  3039.                 yymsg = yymsgbuf;
  3040.                 yymsg_alloc = sizeof yymsgbuf;
  3041.                 yysyntax_error_status = 2;
  3042.               }
  3043.             else
  3044.               {
  3045.                 yysyntax_error_status = YYSYNTAX_ERROR;
  3046.                 yymsgp = yymsg;
  3047.               }
  3048.           }
  3049.         yyerror (yymsgp);
  3050.         if (yysyntax_error_status == 2)
  3051.           goto yyexhaustedlab;
  3052.       }
  3053. # undef YYSYNTAX_ERROR
  3054. #endif
  3055.     }



  3056.   if (yyerrstatus == 3)
  3057.     {
  3058.       /* If just tried and failed to reuse lookahead token after an
  3059.          error, discard it.  */

  3060.       if (yychar <= YYEOF)
  3061.         {
  3062.           /* Return failure if at end of input.  */
  3063.           if (yychar == YYEOF)
  3064.             YYABORT;
  3065.         }
  3066.       else
  3067.         {
  3068.           yydestruct ("Error: discarding",
  3069.                       yytoken, &yylval);
  3070.           yychar = YYEMPTY;
  3071.         }
  3072.     }

  3073.   /* Else will try to reuse lookahead token after shifting the error
  3074.      token.  */
  3075.   goto yyerrlab1;


  3076. /*---------------------------------------------------.
  3077. | yyerrorlab -- error raised explicitly by YYERROR.  |
  3078. `---------------------------------------------------*/
  3079. yyerrorlab:

  3080.   /* Pacify compilers like GCC when the user code never invokes
  3081.      YYERROR and the label yyerrorlab therefore never appears in user
  3082.      code.  */
  3083.   if (/*CONSTCOND*/ 0)
  3084.      goto yyerrorlab;

  3085.   /* Do not reclaim the symbols of the rule which action triggered
  3086.      this YYERROR.  */
  3087.   YYPOPSTACK (yylen);
  3088.   yylen = 0;
  3089.   YY_STACK_PRINT (yyss, yyssp);
  3090.   yystate = *yyssp;
  3091.   goto yyerrlab1;


  3092. /*-------------------------------------------------------------.
  3093. | yyerrlab1 -- common code for both syntax error and YYERROR.  |
  3094. `-------------------------------------------------------------*/
  3095. yyerrlab1:
  3096.   yyerrstatus = 3;        /* Each real token shifted decrements this.  */

  3097.   for (;;)
  3098.     {
  3099.       yyn = yypact[yystate];
  3100.       if (!yypact_value_is_default (yyn))
  3101.         {
  3102.           yyn += YYTERROR;
  3103.           if (0 <= yyn && yyn <= YYLAST && yycheck[yyn] == YYTERROR)
  3104.             {
  3105.               yyn = yytable[yyn];
  3106.               if (0 < yyn)
  3107.                 break;
  3108.             }
  3109.         }

  3110.       /* Pop the current state because it cannot handle the error token.  */
  3111.       if (yyssp == yyss)
  3112.         YYABORT;


  3113.       yydestruct ("Error: popping",
  3114.                   yystos[yystate], yyvsp);
  3115.       YYPOPSTACK (1);
  3116.       yystate = *yyssp;
  3117.       YY_STACK_PRINT (yyss, yyssp);
  3118.     }

  3119.   YY_IGNORE_MAYBE_UNINITIALIZED_BEGIN
  3120.   *++yyvsp = yylval;
  3121.   YY_IGNORE_MAYBE_UNINITIALIZED_END


  3122.   /* Shift the error token.  */
  3123.   YY_SYMBOL_PRINT ("Shifting", yystos[yyn], yyvsp, yylsp);

  3124.   yystate = yyn;
  3125.   goto yynewstate;


  3126. /*-------------------------------------.
  3127. | yyacceptlab -- YYACCEPT comes here.  |
  3128. `-------------------------------------*/
  3129. yyacceptlab:
  3130.   yyresult = 0;
  3131.   goto yyreturn;

  3132. /*-----------------------------------.
  3133. | yyabortlab -- YYABORT comes here.  |
  3134. `-----------------------------------*/
  3135. yyabortlab:
  3136.   yyresult = 1;
  3137.   goto yyreturn;

  3138. #if !defined yyoverflow || YYERROR_VERBOSE
  3139. /*-------------------------------------------------.
  3140. | yyexhaustedlab -- memory exhaustion comes here.  |
  3141. `-------------------------------------------------*/
  3142. yyexhaustedlab:
  3143.   yyerror (YY_("memory exhausted"));
  3144.   yyresult = 2;
  3145.   /* Fall through.  */
  3146. #endif

  3147. yyreturn:
  3148.   if (yychar != YYEMPTY)
  3149.     {
  3150.       /* Make sure we have latest lookahead translation.  See comments at
  3151.          user semantic actions for why this is necessary.  */
  3152.       yytoken = YYTRANSLATE (yychar);
  3153.       yydestruct ("Cleanup: discarding lookahead",
  3154.                   yytoken, &yylval);
  3155.     }
  3156.   /* Do not reclaim the symbols of the rule which action triggered
  3157.      this YYABORT or YYACCEPT.  */
  3158.   YYPOPSTACK (yylen);
  3159.   YY_STACK_PRINT (yyss, yyssp);
  3160.   while (yyssp != yyss)
  3161.     {
  3162.       yydestruct ("Cleanup: popping",
  3163.                   yystos[*yyssp], yyvsp);
  3164.       YYPOPSTACK (1);
  3165.     }
  3166. #ifndef yyoverflow
  3167.   if (yyss != yyssa)
  3168.     YYSTACK_FREE (yyss);
  3169. #endif
  3170. #if YYERROR_VERBOSE
  3171.   if (yymsg != yymsgbuf)
  3172.     YYSTACK_FREE (yymsg);
  3173. #endif
  3174.   /* Make sure YYID is used.  */
  3175.   return YYID (yyresult);
  3176. }


  3177. /* Line 2055 of yacc.c  */
  3178. #line 1224 "cp-name-parser.y"


  3179. /* Apply QUALIFIERS to LHS and return a qualified component.  IS_METHOD
  3180.    is set if LHS is a method, in which case the qualifiers are logically
  3181.    applied to "this".  We apply qualifiers in a consistent order; LHS
  3182.    may already be qualified; duplicate qualifiers are not created.  */

  3183. struct demangle_component *
  3184. d_qualify (struct demangle_component *lhs, int qualifiers, int is_method)
  3185. {
  3186.   struct demangle_component **inner_p;
  3187.   enum demangle_component_type type;

  3188.   /* For now the order is CONST (innermost), VOLATILE, RESTRICT.  */

  3189. #define HANDLE_QUAL(TYPE, MTYPE, QUAL)                                \
  3190.   if ((qualifiers & QUAL) && (type != TYPE) && (type != MTYPE))        \
  3191.     {                                                                \
  3192.       *inner_p = fill_comp (is_method ? MTYPE : TYPE,        \
  3193.                               *inner_p, NULL);                        \
  3194.       inner_p = &d_left (*inner_p);                                \
  3195.       type = (*inner_p)->type;                                        \
  3196.     }                                                                \
  3197.   else if (type == TYPE || type == MTYPE)                        \
  3198.     {                                                                \
  3199.       inner_p = &d_left (*inner_p);                                \
  3200.       type = (*inner_p)->type;                                        \
  3201.     }

  3202.   inner_p = &lhs;

  3203.   type = (*inner_p)->type;

  3204.   HANDLE_QUAL (DEMANGLE_COMPONENT_RESTRICT, DEMANGLE_COMPONENT_RESTRICT_THIS, QUAL_RESTRICT);
  3205.   HANDLE_QUAL (DEMANGLE_COMPONENT_VOLATILE, DEMANGLE_COMPONENT_VOLATILE_THIS, QUAL_VOLATILE);
  3206.   HANDLE_QUAL (DEMANGLE_COMPONENT_CONST, DEMANGLE_COMPONENT_CONST_THIS, QUAL_CONST);

  3207.   return lhs;
  3208. }

  3209. /* Return a builtin type corresponding to FLAGS.  */

  3210. static struct demangle_component *
  3211. d_int_type (int flags)
  3212. {
  3213.   const char *name;

  3214.   switch (flags)
  3215.     {
  3216.     case INT_SIGNED | INT_CHAR:
  3217.       name = "signed char";
  3218.       break;
  3219.     case INT_CHAR:
  3220.       name = "char";
  3221.       break;
  3222.     case INT_UNSIGNED | INT_CHAR:
  3223.       name = "unsigned char";
  3224.       break;
  3225.     case 0:
  3226.     case INT_SIGNED:
  3227.       name = "int";
  3228.       break;
  3229.     case INT_UNSIGNED:
  3230.       name = "unsigned int";
  3231.       break;
  3232.     case INT_LONG:
  3233.     case INT_SIGNED | INT_LONG:
  3234.       name = "long";
  3235.       break;
  3236.     case INT_UNSIGNED | INT_LONG:
  3237.       name = "unsigned long";
  3238.       break;
  3239.     case INT_SHORT:
  3240.     case INT_SIGNED | INT_SHORT:
  3241.       name = "short";
  3242.       break;
  3243.     case INT_UNSIGNED | INT_SHORT:
  3244.       name = "unsigned short";
  3245.       break;
  3246.     case INT_LLONG | INT_LONG:
  3247.     case INT_SIGNED | INT_LLONG | INT_LONG:
  3248.       name = "long long";
  3249.       break;
  3250.     case INT_UNSIGNED | INT_LLONG | INT_LONG:
  3251.       name = "unsigned long long";
  3252.       break;
  3253.     default:
  3254.       return NULL;
  3255.     }

  3256.   return make_builtin_type (name);
  3257. }

  3258. /* Wrapper to create a unary operation.  */

  3259. static struct demangle_component *
  3260. d_unary (const char *name, struct demangle_component *lhs)
  3261. {
  3262.   return fill_comp (DEMANGLE_COMPONENT_UNARY, make_operator (name, 1), lhs);
  3263. }

  3264. /* Wrapper to create a binary operation.  */

  3265. static struct demangle_component *
  3266. d_binary (const char *name, struct demangle_component *lhs, struct demangle_component *rhs)
  3267. {
  3268.   return fill_comp (DEMANGLE_COMPONENT_BINARY, make_operator (name, 2),
  3269.                       fill_comp (DEMANGLE_COMPONENT_BINARY_ARGS, lhs, rhs));
  3270. }

  3271. /* Find the end of a symbol name starting at LEXPTR.  */

  3272. static const char *
  3273. symbol_end (const char *lexptr)
  3274. {
  3275.   const char *p = lexptr;

  3276.   while (*p && (ISALNUM (*p) || *p == '_' || *p == '$' || *p == '.'))
  3277.     p++;

  3278.   return p;
  3279. }

  3280. /* Take care of parsing a number (anything that starts with a digit).
  3281.    The number starts at P and contains LEN characters.  Store the result in
  3282.    YYLVAL.  */

  3283. static int
  3284. parse_number (const char *p, int len, int parsed_float)
  3285. {
  3286.   int unsigned_p = 0;

  3287.   /* Number of "L" suffixes encountered.  */
  3288.   int long_p = 0;

  3289.   struct demangle_component *signed_type;
  3290.   struct demangle_component *unsigned_type;
  3291.   struct demangle_component *type, *name;
  3292.   enum demangle_component_type literal_type;

  3293.   if (p[0] == '-')
  3294.     {
  3295.       literal_type = DEMANGLE_COMPONENT_LITERAL_NEG;
  3296.       p++;
  3297.       len--;
  3298.     }
  3299.   else
  3300.     literal_type = DEMANGLE_COMPONENT_LITERAL;

  3301.   if (parsed_float)
  3302.     {
  3303.       /* It's a float since it contains a point or an exponent.  */
  3304.       char c;

  3305.       /* The GDB lexer checks the result of scanf at this point.  Not doing
  3306.          this leaves our error checking slightly weaker but only for invalid
  3307.          data.  */

  3308.       /* See if it has `f' or `l' suffix (float or long double).  */

  3309.       c = TOLOWER (p[len - 1]);

  3310.       if (c == 'f')
  3311.               {
  3312.                 len--;
  3313.                 type = make_builtin_type ("float");
  3314.               }
  3315.       else if (c == 'l')
  3316.         {
  3317.           len--;
  3318.           type = make_builtin_type ("long double");
  3319.         }
  3320.       else if (ISDIGIT (c) || c == '.')
  3321.         type = make_builtin_type ("double");
  3322.       else
  3323.         return ERROR;

  3324.       name = make_name (p, len);
  3325.       yylval.comp = fill_comp (literal_type, type, name);

  3326.       return FLOAT;
  3327.     }

  3328.   /* This treats 0x1 and 1 as different literals.  We also do not
  3329.      automatically generate unsigned types.  */

  3330.   long_p = 0;
  3331.   unsigned_p = 0;
  3332.   while (len > 0)
  3333.     {
  3334.       if (p[len - 1] == 'l' || p[len - 1] == 'L')
  3335.         {
  3336.           len--;
  3337.           long_p++;
  3338.           continue;
  3339.         }
  3340.       if (p[len - 1] == 'u' || p[len - 1] == 'U')
  3341.         {
  3342.           len--;
  3343.           unsigned_p++;
  3344.           continue;
  3345.         }
  3346.       break;
  3347.     }

  3348.   if (long_p == 0)
  3349.     {
  3350.       unsigned_type = make_builtin_type ("unsigned int");
  3351.       signed_type = make_builtin_type ("int");
  3352.     }
  3353.   else if (long_p == 1)
  3354.     {
  3355.       unsigned_type = make_builtin_type ("unsigned long");
  3356.       signed_type = make_builtin_type ("long");
  3357.     }
  3358.   else
  3359.     {
  3360.       unsigned_type = make_builtin_type ("unsigned long long");
  3361.       signed_type = make_builtin_type ("long long");
  3362.     }

  3363.    if (unsigned_p)
  3364.      type = unsigned_type;
  3365.    else
  3366.      type = signed_type;

  3367.    name = make_name (p, len);
  3368.    yylval.comp = fill_comp (literal_type, type, name);

  3369.    return INT;
  3370. }

  3371. static char backslashable[] = "abefnrtv";
  3372. static char represented[] = "\a\b\e\f\n\r\t\v";

  3373. /* Translate the backslash the way we would in the host character set.  */
  3374. static int
  3375. c_parse_backslash (int host_char, int *target_char)
  3376. {
  3377.   const char *ix;
  3378.   ix = strchr (backslashable, host_char);
  3379.   if (! ix)
  3380.     return 0;
  3381.   else
  3382.     *target_char = represented[ix - backslashable];
  3383.   return 1;
  3384. }

  3385. /* Parse a C escape sequence.  STRING_PTR points to a variable
  3386.    containing a pointer to the string to parse.  That pointer
  3387.    should point to the character after the \.  That pointer
  3388.    is updated past the characters we use.  The value of the
  3389.    escape sequence is returned.

  3390.    A negative value means the sequence \ newline was seen,
  3391.    which is supposed to be equivalent to nothing at all.

  3392.    If \ is followed by a null character, we return a negative
  3393.    value and leave the string pointer pointing at the null character.

  3394.    If \ is followed by 000, we return 0 and leave the string pointer
  3395.    after the zeros.  A value of 0 does not mean end of string.  */

  3396. static int
  3397. cp_parse_escape (const char **string_ptr)
  3398. {
  3399.   int target_char;
  3400.   int c = *(*string_ptr)++;
  3401.   if (c_parse_backslash (c, &target_char))
  3402.     return target_char;
  3403.   else
  3404.     switch (c)
  3405.       {
  3406.       case '\n':
  3407.         return -2;
  3408.       case 0:
  3409.         (*string_ptr)--;
  3410.         return 0;
  3411.       case '^':
  3412.         {
  3413.           c = *(*string_ptr)++;

  3414.           if (c == '?')
  3415.             return 0177;
  3416.           else if (c == '\\')
  3417.             target_char = cp_parse_escape (string_ptr);
  3418.           else
  3419.             target_char = c;

  3420.           /* Now target_char is something like `c', and we want to find
  3421.              its control-character equivalent.  */
  3422.           target_char = target_char & 037;

  3423.           return target_char;
  3424.         }

  3425.       case '0':
  3426.       case '1':
  3427.       case '2':
  3428.       case '3':
  3429.       case '4':
  3430.       case '5':
  3431.       case '6':
  3432.       case '7':
  3433.         {
  3434.           int i = c - '0';
  3435.           int count = 0;
  3436.           while (++count < 3)
  3437.             {
  3438.               c = (**string_ptr);
  3439.               if (c >= '0' && c <= '7')
  3440.                 {
  3441.                   (*string_ptr)++;
  3442.                   i *= 8;
  3443.                   i += c - '0';
  3444.                 }
  3445.               else
  3446.                 {
  3447.                   break;
  3448.                 }
  3449.             }
  3450.           return i;
  3451.         }
  3452.       default:
  3453.         return c;
  3454.       }
  3455. }

  3456. #define HANDLE_SPECIAL(string, comp)                                \
  3457.   if (strncmp (tokstart, string, sizeof (string) - 1) == 0)        \
  3458.     {                                                                \
  3459.       lexptr = tokstart + sizeof (string) - 1;                        \
  3460.       yylval.lval = comp;                                        \
  3461.       return DEMANGLER_SPECIAL;                                        \
  3462.     }

  3463. #define HANDLE_TOKEN2(string, token)                        \
  3464.   if (lexptr[1] == string[1])                                \
  3465.     {                                                        \
  3466.       lexptr += 2;                                        \
  3467.       yylval.opname = string;                                \
  3468.       return token;                                        \
  3469.     }

  3470. #define HANDLE_TOKEN3(string, token)                        \
  3471.   if (lexptr[1] == string[1] && lexptr[2] == string[2])        \
  3472.     {                                                        \
  3473.       lexptr += 3;                                        \
  3474.       yylval.opname = string;                                \
  3475.       return token;                                        \
  3476.     }

  3477. /* Read one token, getting characters through LEXPTR.  */

  3478. static int
  3479. yylex (void)
  3480. {
  3481.   int c;
  3482.   int namelen;
  3483.   const char *tokstart;

  3484. retry:
  3485.   prev_lexptr = lexptr;
  3486.   tokstart = lexptr;

  3487.   switch (c = *tokstart)
  3488.     {
  3489.     case 0:
  3490.       return 0;

  3491.     case ' ':
  3492.     case '\t':
  3493.     case '\n':
  3494.       lexptr++;
  3495.       goto retry;

  3496.     case '\'':
  3497.       /* We either have a character constant ('0' or '\177' for example)
  3498.          or we have a quoted symbol reference ('foo(int,int)' in C++
  3499.          for example). */
  3500.       lexptr++;
  3501.       c = *lexptr++;
  3502.       if (c == '\\')
  3503.         c = cp_parse_escape (&lexptr);
  3504.       else if (c == '\'')
  3505.         {
  3506.           yyerror (_("empty character constant"));
  3507.           return ERROR;
  3508.         }

  3509.       c = *lexptr++;
  3510.       if (c != '\'')
  3511.         {
  3512.           yyerror (_("invalid character constant"));
  3513.           return ERROR;
  3514.         }

  3515.       /* FIXME: We should refer to a canonical form of the character,
  3516.          presumably the same one that appears in manglings - the decimal
  3517.          representation.  But if that isn't in our input then we have to
  3518.          allocate memory for it somewhere.  */
  3519.       yylval.comp = fill_comp (DEMANGLE_COMPONENT_LITERAL,
  3520.                                  make_builtin_type ("char"),
  3521.                                  make_name (tokstart, lexptr - tokstart));

  3522.       return INT;

  3523.     case '(':
  3524.       if (strncmp (tokstart, "(anonymous namespace)", 21) == 0)
  3525.         {
  3526.           lexptr += 21;
  3527.           yylval.comp = make_name ("(anonymous namespace)",
  3528.                                      sizeof "(anonymous namespace)" - 1);
  3529.           return NAME;
  3530.         }
  3531.         /* FALL THROUGH */

  3532.     case ')':
  3533.     case ',':
  3534.       lexptr++;
  3535.       return c;

  3536.     case '.':
  3537.       if (lexptr[1] == '.' && lexptr[2] == '.')
  3538.         {
  3539.           lexptr += 3;
  3540.           return ELLIPSIS;
  3541.         }

  3542.       /* Might be a floating point number.  */
  3543.       if (lexptr[1] < '0' || lexptr[1] > '9')
  3544.         goto symbol;                /* Nope, must be a symbol. */

  3545.       goto try_number;

  3546.     case '-':
  3547.       HANDLE_TOKEN2 ("-=", ASSIGN_MODIFY);
  3548.       HANDLE_TOKEN2 ("--", DECREMENT);
  3549.       HANDLE_TOKEN2 ("->", ARROW);

  3550.       /* For construction vtables.  This is kind of hokey.  */
  3551.       if (strncmp (tokstart, "-in-", 4) == 0)
  3552.         {
  3553.           lexptr += 4;
  3554.           return CONSTRUCTION_IN;
  3555.         }

  3556.       if (lexptr[1] < '0' || lexptr[1] > '9')
  3557.         {
  3558.           lexptr++;
  3559.           return '-';
  3560.         }
  3561.       /* FALL THRU into number case.  */

  3562.     try_number:
  3563.     case '0':
  3564.     case '1':
  3565.     case '2':
  3566.     case '3':
  3567.     case '4':
  3568.     case '5':
  3569.     case '6':
  3570.     case '7':
  3571.     case '8':
  3572.     case '9':
  3573.       {
  3574.         /* It's a number.  */
  3575.         int got_dot = 0, got_e = 0, toktype;
  3576.         const char *p = tokstart;
  3577.         int hex = 0;

  3578.         if (c == '-')
  3579.           p++;

  3580.         if (c == '0' && (p[1] == 'x' || p[1] == 'X'))
  3581.           {
  3582.             p += 2;
  3583.             hex = 1;
  3584.           }
  3585.         else if (c == '0' && (p[1]=='t' || p[1]=='T' || p[1]=='d' || p[1]=='D'))
  3586.           {
  3587.             p += 2;
  3588.             hex = 0;
  3589.           }

  3590.         for (;; ++p)
  3591.           {
  3592.             /* This test includes !hex because 'e' is a valid hex digit
  3593.                and thus does not indicate a floating point number when
  3594.                the radix is hex.  */
  3595.             if (!hex && !got_e && (*p == 'e' || *p == 'E'))
  3596.               got_dot = got_e = 1;
  3597.             /* This test does not include !hex, because a '.' always indicates
  3598.                a decimal floating point number regardless of the radix.

  3599.                NOTE drow/2005-03-09: This comment is not accurate in C99;
  3600.                however, it's not clear that all the floating point support
  3601.                in this file is doing any good here.  */
  3602.             else if (!got_dot && *p == '.')
  3603.               got_dot = 1;
  3604.             else if (got_e && (p[-1] == 'e' || p[-1] == 'E')
  3605.                      && (*p == '-' || *p == '+'))
  3606.               /* This is the sign of the exponent, not the end of the
  3607.                  number.  */
  3608.               continue;
  3609.             /* We will take any letters or digits.  parse_number will
  3610.                complain if past the radix, or if L or U are not final.  */
  3611.             else if (! ISALNUM (*p))
  3612.               break;
  3613.           }
  3614.         toktype = parse_number (tokstart, p - tokstart, got_dot|got_e);
  3615.         if (toktype == ERROR)
  3616.           {
  3617.             char *err_copy = (char *) alloca (p - tokstart + 1);

  3618.             memcpy (err_copy, tokstart, p - tokstart);
  3619.             err_copy[p - tokstart] = 0;
  3620.             yyerror (_("invalid number"));
  3621.             return ERROR;
  3622.           }
  3623.         lexptr = p;
  3624.         return toktype;
  3625.       }

  3626.     case '+':
  3627.       HANDLE_TOKEN2 ("+=", ASSIGN_MODIFY);
  3628.       HANDLE_TOKEN2 ("++", INCREMENT);
  3629.       lexptr++;
  3630.       return c;
  3631.     case '*':
  3632.       HANDLE_TOKEN2 ("*=", ASSIGN_MODIFY);
  3633.       lexptr++;
  3634.       return c;
  3635.     case '/':
  3636.       HANDLE_TOKEN2 ("/=", ASSIGN_MODIFY);
  3637.       lexptr++;
  3638.       return c;
  3639.     case '%':
  3640.       HANDLE_TOKEN2 ("%=", ASSIGN_MODIFY);
  3641.       lexptr++;
  3642.       return c;
  3643.     case '|':
  3644.       HANDLE_TOKEN2 ("|=", ASSIGN_MODIFY);
  3645.       HANDLE_TOKEN2 ("||", OROR);
  3646.       lexptr++;
  3647.       return c;
  3648.     case '&':
  3649.       HANDLE_TOKEN2 ("&=", ASSIGN_MODIFY);
  3650.       HANDLE_TOKEN2 ("&&", ANDAND);
  3651.       lexptr++;
  3652.       return c;
  3653.     case '^':
  3654.       HANDLE_TOKEN2 ("^=", ASSIGN_MODIFY);
  3655.       lexptr++;
  3656.       return c;
  3657.     case '!':
  3658.       HANDLE_TOKEN2 ("!=", NOTEQUAL);
  3659.       lexptr++;
  3660.       return c;
  3661.     case '<':
  3662.       HANDLE_TOKEN3 ("<<=", ASSIGN_MODIFY);
  3663.       HANDLE_TOKEN2 ("<=", LEQ);
  3664.       HANDLE_TOKEN2 ("<<", LSH);
  3665.       lexptr++;
  3666.       return c;
  3667.     case '>':
  3668.       HANDLE_TOKEN3 (">>=", ASSIGN_MODIFY);
  3669.       HANDLE_TOKEN2 (">=", GEQ);
  3670.       HANDLE_TOKEN2 (">>", RSH);
  3671.       lexptr++;
  3672.       return c;
  3673.     case '=':
  3674.       HANDLE_TOKEN2 ("==", EQUAL);
  3675.       lexptr++;
  3676.       return c;
  3677.     case ':':
  3678.       HANDLE_TOKEN2 ("::", COLONCOLON);
  3679.       lexptr++;
  3680.       return c;

  3681.     case '[':
  3682.     case ']':
  3683.     case '?':
  3684.     case '@':
  3685.     case '~':
  3686.     case '{':
  3687.     case '}':
  3688.     symbol:
  3689.       lexptr++;
  3690.       return c;

  3691.     case '"':
  3692.       /* These can't occur in C++ names.  */
  3693.       yyerror (_("unexpected string literal"));
  3694.       return ERROR;
  3695.     }

  3696.   if (!(c == '_' || c == '$' || ISALPHA (c)))
  3697.     {
  3698.       /* We must have come across a bad character (e.g. ';').  */
  3699.       yyerror (_("invalid character"));
  3700.       return ERROR;
  3701.     }

  3702.   /* It's a name.  See how long it is.  */
  3703.   namelen = 0;
  3704.   do
  3705.     c = tokstart[++namelen];
  3706.   while (ISALNUM (c) || c == '_' || c == '$');

  3707.   lexptr += namelen;

  3708.   /* Catch specific keywords.  Notice that some of the keywords contain
  3709.      spaces, and are sorted by the length of the first word.  They must
  3710.      all include a trailing space in the string comparison.  */
  3711.   switch (namelen)
  3712.     {
  3713.     case 16:
  3714.       if (strncmp (tokstart, "reinterpret_cast", 16) == 0)
  3715.         return REINTERPRET_CAST;
  3716.       break;
  3717.     case 12:
  3718.       if (strncmp (tokstart, "construction vtable for ", 24) == 0)
  3719.         {
  3720.           lexptr = tokstart + 24;
  3721.           return CONSTRUCTION_VTABLE;
  3722.         }
  3723.       if (strncmp (tokstart, "dynamic_cast", 12) == 0)
  3724.         return DYNAMIC_CAST;
  3725.       break;
  3726.     case 11:
  3727.       if (strncmp (tokstart, "static_cast", 11) == 0)
  3728.         return STATIC_CAST;
  3729.       break;
  3730.     case 9:
  3731.       HANDLE_SPECIAL ("covariant return thunk to ", DEMANGLE_COMPONENT_COVARIANT_THUNK);
  3732.       HANDLE_SPECIAL ("reference temporary for ", DEMANGLE_COMPONENT_REFTEMP);
  3733.       break;
  3734.     case 8:
  3735.       HANDLE_SPECIAL ("typeinfo for ", DEMANGLE_COMPONENT_TYPEINFO);
  3736.       HANDLE_SPECIAL ("typeinfo fn for ", DEMANGLE_COMPONENT_TYPEINFO_FN);
  3737.       HANDLE_SPECIAL ("typeinfo name for ", DEMANGLE_COMPONENT_TYPEINFO_NAME);
  3738.       if (strncmp (tokstart, "operator", 8) == 0)
  3739.         return OPERATOR;
  3740.       if (strncmp (tokstart, "restrict", 8) == 0)
  3741.         return RESTRICT;
  3742.       if (strncmp (tokstart, "unsigned", 8) == 0)
  3743.         return UNSIGNED;
  3744.       if (strncmp (tokstart, "template", 8) == 0)
  3745.         return TEMPLATE;
  3746.       if (strncmp (tokstart, "volatile", 8) == 0)
  3747.         return VOLATILE_KEYWORD;
  3748.       break;
  3749.     case 7:
  3750.       HANDLE_SPECIAL ("virtual thunk to ", DEMANGLE_COMPONENT_VIRTUAL_THUNK);
  3751.       if (strncmp (tokstart, "wchar_t", 7) == 0)
  3752.         return WCHAR_T;
  3753.       break;
  3754.     case 6:
  3755.       if (strncmp (tokstart, "global constructors keyed to ", 29) == 0)
  3756.         {
  3757.           const char *p;
  3758.           lexptr = tokstart + 29;
  3759.           yylval.lval = DEMANGLE_COMPONENT_GLOBAL_CONSTRUCTORS;
  3760.           /* Find the end of the symbol.  */
  3761.           p = symbol_end (lexptr);
  3762.           yylval.comp = make_name (lexptr, p - lexptr);
  3763.           lexptr = p;
  3764.           return DEMANGLER_SPECIAL;
  3765.         }
  3766.       if (strncmp (tokstart, "global destructors keyed to ", 28) == 0)
  3767.         {
  3768.           const char *p;
  3769.           lexptr = tokstart + 28;
  3770.           yylval.lval = DEMANGLE_COMPONENT_GLOBAL_DESTRUCTORS;
  3771.           /* Find the end of the symbol.  */
  3772.           p = symbol_end (lexptr);
  3773.           yylval.comp = make_name (lexptr, p - lexptr);
  3774.           lexptr = p;
  3775.           return DEMANGLER_SPECIAL;
  3776.         }

  3777.       HANDLE_SPECIAL ("vtable for ", DEMANGLE_COMPONENT_VTABLE);
  3778.       if (strncmp (tokstart, "delete", 6) == 0)
  3779.         return DELETE;
  3780.       if (strncmp (tokstart, "struct", 6) == 0)
  3781.         return STRUCT;
  3782.       if (strncmp (tokstart, "signed", 6) == 0)
  3783.         return SIGNED_KEYWORD;
  3784.       if (strncmp (tokstart, "sizeof", 6) == 0)
  3785.         return SIZEOF;
  3786.       if (strncmp (tokstart, "double", 6) == 0)
  3787.         return DOUBLE_KEYWORD;
  3788.       break;
  3789.     case 5:
  3790.       HANDLE_SPECIAL ("guard variable for ", DEMANGLE_COMPONENT_GUARD);
  3791.       if (strncmp (tokstart, "false", 5) == 0)
  3792.         return FALSEKEYWORD;
  3793.       if (strncmp (tokstart, "class", 5) == 0)
  3794.         return CLASS;
  3795.       if (strncmp (tokstart, "union", 5) == 0)
  3796.         return UNION;
  3797.       if (strncmp (tokstart, "float", 5) == 0)
  3798.         return FLOAT_KEYWORD;
  3799.       if (strncmp (tokstart, "short", 5) == 0)
  3800.         return SHORT;
  3801.       if (strncmp (tokstart, "const", 5) == 0)
  3802.         return CONST_KEYWORD;
  3803.       break;
  3804.     case 4:
  3805.       if (strncmp (tokstart, "void", 4) == 0)
  3806.         return VOID;
  3807.       if (strncmp (tokstart, "bool", 4) == 0)
  3808.         return BOOL;
  3809.       if (strncmp (tokstart, "char", 4) == 0)
  3810.         return CHAR;
  3811.       if (strncmp (tokstart, "enum", 4) == 0)
  3812.         return ENUM;
  3813.       if (strncmp (tokstart, "long", 4) == 0)
  3814.         return LONG;
  3815.       if (strncmp (tokstart, "true", 4) == 0)
  3816.         return TRUEKEYWORD;
  3817.       break;
  3818.     case 3:
  3819.       HANDLE_SPECIAL ("VTT for ", DEMANGLE_COMPONENT_VTT);
  3820.       HANDLE_SPECIAL ("non-virtual thunk to ", DEMANGLE_COMPONENT_THUNK);
  3821.       if (strncmp (tokstart, "new", 3) == 0)
  3822.         return NEW;
  3823.       if (strncmp (tokstart, "int", 3) == 0)
  3824.         return INT_KEYWORD;
  3825.       break;
  3826.     default:
  3827.       break;
  3828.     }

  3829.   yylval.comp = make_name (tokstart, namelen);
  3830.   return NAME;
  3831. }

  3832. static void
  3833. yyerror (char *msg)
  3834. {
  3835.   if (global_errmsg)
  3836.     return;

  3837.   error_lexptr = prev_lexptr;
  3838.   global_errmsg = msg ? msg : "parse error";
  3839. }

  3840. /* Allocate a chunk of the components we'll need to build a tree.  We
  3841.    generally allocate too many components, but the extra memory usage
  3842.    doesn't hurt because the trees are temporary and the storage is
  3843.    reused.  More may be allocated later, by d_grab.  */
  3844. static struct demangle_info *
  3845. allocate_info (void)
  3846. {
  3847.   struct demangle_info *info = xmalloc (sizeof (struct demangle_info));

  3848.   info->next = NULL;
  3849.   info->used = 0;
  3850.   return info;
  3851. }

  3852. /* Convert RESULT to a string.  The return value is allocated
  3853.    using xmalloc.  ESTIMATED_LEN is used only as a guide to the
  3854.    length of the result.  This functions handles a few cases that
  3855.    cplus_demangle_print does not, specifically the global destructor
  3856.    and constructor labels.  */

  3857. char *
  3858. cp_comp_to_string (struct demangle_component *result, int estimated_len)
  3859. {
  3860.   size_t err;

  3861.   return cplus_demangle_print (DMGL_PARAMS | DMGL_ANSI, result, estimated_len,
  3862.                                &err);
  3863. }

  3864. /* A convenience function to allocate and initialize a new struct
  3865.    demangled_parse_info.  */

  3866. struct demangle_parse_info *
  3867. cp_new_demangle_parse_info (void)
  3868. {
  3869.   struct demangle_parse_info *info;

  3870.   info = xmalloc (sizeof (struct demangle_parse_info));
  3871.   info->info = NULL;
  3872.   info->tree = NULL;
  3873.   obstack_init (&info->obstack);

  3874.   return info;
  3875. }

  3876. /* Free any memory associated with the given PARSE_INFO.  */

  3877. void
  3878. cp_demangled_name_parse_free (struct demangle_parse_info *parse_info)
  3879. {
  3880.   struct demangle_info *info = parse_info->info;

  3881.   /* Free any allocated chunks of memory for the parse.  */
  3882.   while (info != NULL)
  3883.     {
  3884.       struct demangle_info *next = info->next;

  3885.       xfree (info);
  3886.       info = next;
  3887.     }

  3888.   /* Free any memory allocated during typedef replacement.  */
  3889.   obstack_free (&parse_info->obstack, NULL);

  3890.   /* Free the parser info.  */
  3891.   xfree (parse_info);
  3892. }

  3893. /* Merge the two parse trees given by DEST and SRC.  The parse tree
  3894.    in SRC is attached to DEST at the node represented by TARGET.
  3895.    SRC is then freed.

  3896.    NOTE 1: Since there is no API to merge obstacks, this function does
  3897.    even attempt to try it.  Fortunately, we do not (yet?) need this ability.
  3898.    The code will assert if SRC->obstack is not empty.

  3899.    NOTE 2: The string from which SRC was parsed must not be freed, since
  3900.    this function will place pointers to that string into DEST.  */

  3901. void
  3902. cp_merge_demangle_parse_infos (struct demangle_parse_info *dest,
  3903.                                struct demangle_component *target,
  3904.                                struct demangle_parse_info *src)

  3905. {
  3906.   struct demangle_info *di;

  3907.   /* Copy the SRC's parse data into DEST.  */
  3908.   *target = *src->tree;
  3909.   di = dest->info;
  3910.   while (di->next != NULL)
  3911.     di = di->next;
  3912.   di->next = src->info;

  3913.   /* Clear the (pointer to) SRC's parse data so that it is not freed when
  3914.      cp_demangled_parse_info_free is called.  */
  3915.   src->info = NULL;

  3916.   /* Free SRC.  */
  3917.   cp_demangled_name_parse_free (src);
  3918. }

  3919. /* Convert a demangled name to a demangle_component tree.  On success,
  3920.    a structure containing the root of the new tree is returned; it must
  3921.    be freed by calling cp_demangled_name_parse_free. On error, NULL is
  3922.    returned, and an error message will be set in *ERRMSG (which does
  3923.    not need to be freed).  */

  3924. struct demangle_parse_info *
  3925. cp_demangled_name_to_comp (const char *demangled_name, const char **errmsg)
  3926. {
  3927.   static char errbuf[60];
  3928.   struct demangle_parse_info *result;

  3929.   prev_lexptr = lexptr = demangled_name;
  3930.   error_lexptr = NULL;
  3931.   global_errmsg = NULL;

  3932.   demangle_info = allocate_info ();

  3933.   result = cp_new_demangle_parse_info ();
  3934.   result->info = demangle_info;

  3935.   if (yyparse ())
  3936.     {
  3937.       if (global_errmsg && errmsg)
  3938.         {
  3939.           snprintf (errbuf, sizeof (errbuf) - 2, "%s, near `%s",
  3940.                     global_errmsg, error_lexptr);
  3941.           strcat (errbuf, "'");
  3942.           *errmsg = errbuf;
  3943.         }
  3944.       cp_demangled_name_parse_free (result);
  3945.       return NULL;
  3946.     }

  3947.   result->tree = global_result;
  3948.   global_result = NULL;

  3949.   return result;
  3950. }

  3951. #ifdef TEST_CPNAMES

  3952. static void
  3953. cp_print (struct demangle_component *result)
  3954. {
  3955.   char *str;
  3956.   size_t err = 0;

  3957.   str = cplus_demangle_print (DMGL_PARAMS | DMGL_ANSI, result, 64, &err);
  3958.   if (str == NULL)
  3959.     return;

  3960.   fputs (str, stdout);

  3961.   xfree (str);
  3962. }

  3963. static char
  3964. trim_chars (char *lexptr, char **extra_chars)
  3965. {
  3966.   char *p = (char *) symbol_end (lexptr);
  3967.   char c = 0;

  3968.   if (*p)
  3969.     {
  3970.       c = *p;
  3971.       *p = 0;
  3972.       *extra_chars = p + 1;
  3973.     }

  3974.   return c;
  3975. }

  3976. /* When this file is built as a standalone program, xmalloc comes from
  3977.    libiberty --- in which case we have to provide xfree ourselves.  */

  3978. void
  3979. xfree (void *ptr)
  3980. {
  3981.   if (ptr != NULL)
  3982.     {
  3983.       /* Literal `free' would get translated back to xfree again.  */
  3984.       CONCAT2 (fr,ee) (ptr);
  3985.     }
  3986. }

  3987. /* GDB normally defines internal_error itself, but when this file is built
  3988.    as a standalone program, we must also provide an implementation.  */

  3989. void
  3990. internal_error (const char *file, int line, const char *fmt, ...)
  3991. {
  3992.   va_list ap;

  3993.   va_start (ap, fmt);
  3994.   fprintf (stderr, "%s:%d: internal error: ", file, line);
  3995.   vfprintf (stderr, fmt, ap);
  3996.   exit (1);
  3997. }

  3998. int
  3999. main (int argc, char **argv)
  4000. {
  4001.   char *str2, *extra_chars = "", c;
  4002.   char buf[65536];
  4003.   int arg;
  4004.   const char *errmsg;
  4005.   struct demangle_parse_info *result;

  4006.   arg = 1;
  4007.   if (argv[arg] && strcmp (argv[arg], "--debug") == 0)
  4008.     {
  4009.       yydebug = 1;
  4010.       arg++;
  4011.     }

  4012.   if (argv[arg] == NULL)
  4013.     while (fgets (buf, 65536, stdin) != NULL)
  4014.       {
  4015.         int len;
  4016.         buf[strlen (buf) - 1] = 0;
  4017.         /* Use DMGL_VERBOSE to get expanded standard substitutions.  */
  4018.         c = trim_chars (buf, &extra_chars);
  4019.         str2 = cplus_demangle (buf, DMGL_PARAMS | DMGL_ANSI | DMGL_VERBOSE);
  4020.         if (str2 == NULL)
  4021.           {
  4022.             printf ("Demangling error\n");
  4023.             if (c)
  4024.               printf ("%s%c%s\n", buf, c, extra_chars);
  4025.             else
  4026.               printf ("%s\n", buf);
  4027.             continue;
  4028.           }
  4029.         result = cp_demangled_name_to_comp (str2, &errmsg);
  4030.         if (result == NULL)
  4031.           {
  4032.             fputs (errmsg, stderr);
  4033.             fputc ('\n', stderr);
  4034.             continue;
  4035.           }

  4036.         cp_print (result->tree);
  4037.         cp_demangled_name_parse_free (result);

  4038.         xfree (str2);
  4039.         if (c)
  4040.           {
  4041.             putchar (c);
  4042.             fputs (extra_chars, stdout);
  4043.           }
  4044.         putchar ('\n');
  4045.       }
  4046.   else
  4047.     {
  4048.       result = cp_demangled_name_to_comp (argv[arg], &errmsg);
  4049.       if (result == NULL)
  4050.         {
  4051.           fputs (errmsg, stderr);
  4052.           fputc ('\n', stderr);
  4053.           return 0;
  4054.         }
  4055.       cp_print (result->tree);
  4056.       cp_demangled_name_parse_free (result);
  4057.       putchar ('\n');
  4058.     }
  4059.   return 0;
  4060. }

  4061. #endif