cplus-dem.c
上传用户:nvosite88
上传日期:2007-01-17
资源大小:4983k
文件大小:125k
源码类别:

VxWorks

开发平台:

C/C++

  1. /* Demangler for GNU C++
  2.    Copyright 1989, 1991, 1994, 1995, 1996, 1997, 1998, 1999,
  3.    2000 Free Software Foundation, Inc.
  4.    Written by James Clark (jjc@jclark.uucp)
  5.    Rewritten by Fred Fish (fnf@cygnus.com) for ARM and Lucid demangling
  6.    Modified by Satish Pai (pai@apollo.hp.com) for HP demangling
  7. This file is part of the libiberty library.
  8. Libiberty is free software; you can redistribute it and/or
  9. modify it under the terms of the GNU Library General Public
  10. License as published by the Free Software Foundation; either
  11. version 2 of the License, or (at your option) any later version.
  12. Libiberty is distributed in the hope that it will be useful,
  13. but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  15. Library General Public License for more details.
  16. You should have received a copy of the GNU Library General Public
  17. License along with libiberty; see the file COPYING.LIB.  If
  18. not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
  19. Boston, MA 02111-1307, USA.  */
  20. /* This file exports two functions; cplus_mangle_opname and cplus_demangle.
  21.    This file imports xmalloc and xrealloc, which are like malloc and
  22.    realloc except that they generate a fatal error if there is no
  23.    available memory.  */
  24. /* This file lives in both GCC and libiberty.  When making changes, please
  25.    try not to break either.  */
  26. #ifdef HAVE_CONFIG_H
  27. #include "config.h"
  28. #endif
  29. #include "safe-ctype.h"
  30. #include <sys/types.h>
  31. #include <string.h>
  32. #include <stdio.h>
  33. #ifdef HAVE_STDLIB_H
  34. #include <stdlib.h>
  35. #else
  36. char * malloc ();
  37. char * realloc ();
  38. #endif
  39. #include <demangle.h>
  40. #undef CURRENT_DEMANGLING_STYLE
  41. #define CURRENT_DEMANGLING_STYLE work->options
  42. #include "libiberty.h"
  43. static char *ada_demangle  PARAMS ((const char *, int));
  44. static char *edg_demangle  PARAMS ((const char *, int));
  45. #define min(X,Y) (((X) < (Y)) ? (X) : (Y))
  46. /* A value at least one greater than the maximum number of characters
  47.    that will be output when using the `%d' format with `printf'.  */
  48. #define INTBUF_SIZE 32
  49. extern void fancy_abort PARAMS ((void)) ATTRIBUTE_NORETURN;
  50. static const char *mystrstr PARAMS ((const char *, const char *));
  51. static const char *
  52. mystrstr (s1, s2)
  53.      const char *s1, *s2;
  54. {
  55.   register const char *p = s1;
  56.   register int len = strlen (s2);
  57.   for (; (p = strchr (p, *s2)) != 0; p++)
  58.     {
  59.       if (strncmp (p, s2, len) == 0)
  60. {
  61.   return (p);
  62. }
  63.     }
  64.   return (0);
  65. }
  66. /* In order to allow a single demangler executable to demangle strings
  67.    using various common values of CPLUS_MARKER, as well as any specific
  68.    one set at compile time, we maintain a string containing all the
  69.    commonly used ones, and check to see if the marker we are looking for
  70.    is in that string.  CPLUS_MARKER is usually '$' on systems where the
  71.    assembler can deal with that.  Where the assembler can't, it's usually
  72.    '.' (but on many systems '.' is used for other things).  We put the
  73.    current defined CPLUS_MARKER first (which defaults to '$'), followed
  74.    by the next most common value, followed by an explicit '$' in case
  75.    the value of CPLUS_MARKER is not '$'.
  76.    We could avoid this if we could just get g++ to tell us what the actual
  77.    cplus marker character is as part of the debug information, perhaps by
  78.    ensuring that it is the character that terminates the gcc<n>_compiled
  79.    marker symbol (FIXME).  */
  80. #if !defined (CPLUS_MARKER)
  81. #define CPLUS_MARKER '$'
  82. #endif
  83. enum demangling_styles current_demangling_style = auto_demangling;
  84. static char cplus_markers[] = { CPLUS_MARKER, '.', '$', '' };
  85. static char char_str[2] = { '00', '00' };
  86. void
  87. set_cplus_marker_for_demangling (ch)
  88.      int ch;
  89. {
  90.   cplus_markers[0] = ch;
  91. }
  92. typedef struct string /* Beware: these aren't required to be */
  93. { /*  '' terminated.  */
  94.   char *b; /* pointer to start of string */
  95.   char *p; /* pointer after last character */
  96.   char *e; /* pointer after end of allocated space */
  97. } string;
  98. /* Stuff that is shared between sub-routines.
  99.    Using a shared structure allows cplus_demangle to be reentrant.  */
  100. struct work_stuff
  101. {
  102.   int options;
  103.   char **typevec;
  104.   char **ktypevec;
  105.   char **btypevec;
  106.   int numk;
  107.   int numb;
  108.   int ksize;
  109.   int bsize;
  110.   int ntypes;
  111.   int typevec_size;
  112.   int constructor;
  113.   int destructor;
  114.   int static_type; /* A static member function */
  115.   int temp_start;       /* index in demangled to start of template args */
  116.   int type_quals;       /* The type qualifiers.  */
  117.   int dllimported; /* Symbol imported from a PE DLL */
  118.   char **tmpl_argvec;   /* Template function arguments. */
  119.   int ntmpl_args;       /* The number of template function arguments. */
  120.   int forgetting_types; /* Nonzero if we are not remembering the types
  121.    we see.  */
  122.   string* previous_argument; /* The last function argument demangled.  */
  123.   int nrepeats;         /* The number of times to repeat the previous
  124.    argument.  */
  125. };
  126. #define PRINT_ANSI_QUALIFIERS (work -> options & DMGL_ANSI)
  127. #define PRINT_ARG_TYPES       (work -> options & DMGL_PARAMS)
  128. static const struct optable
  129. {
  130.   const char *in;
  131.   const char *out;
  132.   int flags;
  133. } optable[] = {
  134.   {"nw",   " new", DMGL_ANSI}, /* new (1.92,  ansi) */
  135.   {"dl",   " delete", DMGL_ANSI}, /* new (1.92,  ansi) */
  136.   {"new",   " new", 0}, /* old (1.91,  and 1.x) */
  137.   {"delete",   " delete", 0}, /* old (1.91,  and 1.x) */
  138.   {"vn",   " new []", DMGL_ANSI}, /* GNU, pending ansi */
  139.   {"vd",   " delete []", DMGL_ANSI}, /* GNU, pending ansi */
  140.   {"as",   "=", DMGL_ANSI}, /* ansi */
  141.   {"ne",   "!=", DMGL_ANSI}, /* old, ansi */
  142.   {"eq",   "==", DMGL_ANSI}, /* old, ansi */
  143.   {"ge",   ">=", DMGL_ANSI}, /* old, ansi */
  144.   {"gt",   ">", DMGL_ANSI}, /* old, ansi */
  145.   {"le",   "<=", DMGL_ANSI}, /* old, ansi */
  146.   {"lt",   "<", DMGL_ANSI}, /* old, ansi */
  147.   {"plus",   "+", 0}, /* old */
  148.   {"pl",   "+", DMGL_ANSI}, /* ansi */
  149.   {"apl",   "+=", DMGL_ANSI}, /* ansi */
  150.   {"minus",   "-", 0}, /* old */
  151.   {"mi",   "-", DMGL_ANSI}, /* ansi */
  152.   {"ami",   "-=", DMGL_ANSI}, /* ansi */
  153.   {"mult",   "*", 0}, /* old */
  154.   {"ml",   "*", DMGL_ANSI}, /* ansi */
  155.   {"amu",   "*=", DMGL_ANSI}, /* ansi (ARM/Lucid) */
  156.   {"aml",   "*=", DMGL_ANSI}, /* ansi (GNU/g++) */
  157.   {"convert",   "+", 0}, /* old (unary +) */
  158.   {"negate",   "-", 0}, /* old (unary -) */
  159.   {"trunc_mod",   "%", 0}, /* old */
  160.   {"md",   "%", DMGL_ANSI}, /* ansi */
  161.   {"amd",   "%=", DMGL_ANSI}, /* ansi */
  162.   {"trunc_div",   "/", 0}, /* old */
  163.   {"dv",   "/", DMGL_ANSI}, /* ansi */
  164.   {"adv",   "/=", DMGL_ANSI}, /* ansi */
  165.   {"truth_andif", "&&", 0}, /* old */
  166.   {"aa",   "&&", DMGL_ANSI}, /* ansi */
  167.   {"truth_orif",  "||", 0}, /* old */
  168.   {"oo",   "||", DMGL_ANSI}, /* ansi */
  169.   {"truth_not",   "!", 0}, /* old */
  170.   {"nt",   "!", DMGL_ANSI}, /* ansi */
  171.   {"postincrement","++", 0}, /* old */
  172.   {"pp",   "++", DMGL_ANSI}, /* ansi */
  173.   {"postdecrement","--", 0}, /* old */
  174.   {"mm",   "--", DMGL_ANSI}, /* ansi */
  175.   {"bit_ior",   "|", 0}, /* old */
  176.   {"or",   "|", DMGL_ANSI}, /* ansi */
  177.   {"aor",   "|=", DMGL_ANSI}, /* ansi */
  178.   {"bit_xor",   "^", 0}, /* old */
  179.   {"er",   "^", DMGL_ANSI}, /* ansi */
  180.   {"aer",   "^=", DMGL_ANSI}, /* ansi */
  181.   {"bit_and",   "&", 0}, /* old */
  182.   {"ad",   "&", DMGL_ANSI}, /* ansi */
  183.   {"aad",   "&=", DMGL_ANSI}, /* ansi */
  184.   {"bit_not",   "~", 0}, /* old */
  185.   {"co",   "~", DMGL_ANSI}, /* ansi */
  186.   {"call",   "()", 0}, /* old */
  187.   {"cl",   "()", DMGL_ANSI}, /* ansi */
  188.   {"alshift",   "<<", 0}, /* old */
  189.   {"ls",   "<<", DMGL_ANSI}, /* ansi */
  190.   {"als",   "<<=", DMGL_ANSI}, /* ansi */
  191.   {"arshift",   ">>", 0}, /* old */
  192.   {"rs",   ">>", DMGL_ANSI}, /* ansi */
  193.   {"ars",   ">>=", DMGL_ANSI}, /* ansi */
  194.   {"component",   "->", 0}, /* old */
  195.   {"pt",   "->", DMGL_ANSI}, /* ansi; Lucid C++ form */
  196.   {"rf",   "->", DMGL_ANSI}, /* ansi; ARM/GNU form */
  197.   {"indirect",   "*", 0}, /* old */
  198.   {"method_call",  "->()", 0}, /* old */
  199.   {"addr",   "&", 0}, /* old (unary &) */
  200.   {"array",   "[]", 0}, /* old */
  201.   {"vc",   "[]", DMGL_ANSI}, /* ansi */
  202.   {"compound",   ", ", 0}, /* old */
  203.   {"cm",   ", ", DMGL_ANSI}, /* ansi */
  204.   {"cond",   "?:", 0}, /* old */
  205.   {"cn",   "?:", DMGL_ANSI}, /* pseudo-ansi */
  206.   {"max",   ">?", 0}, /* old */
  207.   {"mx",   ">?", DMGL_ANSI}, /* pseudo-ansi */
  208.   {"min",   "<?", 0}, /* old */
  209.   {"mn",   "<?", DMGL_ANSI}, /* pseudo-ansi */
  210.   {"nop",   "", 0}, /* old (for operator=) */
  211.   {"rm",   "->*", DMGL_ANSI}, /* ansi */
  212.   {"sz",          "sizeof ",    DMGL_ANSI}      /* pseudo-ansi */
  213. };
  214. /* These values are used to indicate the various type varieties.
  215.    They are all non-zero so that they can be used as `success'
  216.    values.  */
  217. typedef enum type_kind_t
  218. {
  219.   tk_none,
  220.   tk_pointer,
  221.   tk_reference,
  222.   tk_integral,
  223.   tk_bool,
  224.   tk_char,
  225.   tk_real
  226. } type_kind_t;
  227. struct demangler_engine libiberty_demanglers[] =
  228. {
  229.   {
  230.     AUTO_DEMANGLING_STYLE_STRING,
  231.       auto_demangling,
  232.       "Automatic selection based on executable"
  233.   }
  234.   ,
  235.   {
  236.     GNU_DEMANGLING_STYLE_STRING,
  237.       gnu_demangling,
  238.       "GNU (g++) style demangling"
  239.   }
  240.   ,
  241.   {
  242.     LUCID_DEMANGLING_STYLE_STRING,
  243.       lucid_demangling,
  244.       "Lucid (lcc) style demangling"
  245.   }
  246.   ,
  247.   {
  248.     ARM_DEMANGLING_STYLE_STRING,
  249.       arm_demangling,
  250.       "ARM style demangling"
  251.   }
  252.   ,
  253.   {
  254.     HP_DEMANGLING_STYLE_STRING,
  255.       hp_demangling,
  256.       "HP (aCC) style demangling"
  257.   }
  258.   ,
  259.   {
  260.     EDG_DEMANGLING_STYLE_STRING,
  261.       edg_demangling,
  262.       "EDG style demangling"
  263.   }
  264.   ,
  265.   {
  266.     GNU_V3_DEMANGLING_STYLE_STRING,
  267.     gnu_v3_demangling,
  268.     "GNU (g++) V3 ABI-style demangling"
  269.   }
  270.   ,
  271.   {
  272.     JAVA_DEMANGLING_STYLE_STRING,
  273.     java_demangling,
  274.     "Java style demangling"
  275.   }
  276.   ,
  277.   {
  278.     GNAT_DEMANGLING_STYLE_STRING,
  279.     gnat_demangling,
  280.     "GNAT style demangling"
  281.   }
  282.   ,
  283.   {
  284.     NULL, unknown_demangling, NULL
  285.   }
  286. };
  287. #define STRING_EMPTY(str) ((str) -> b == (str) -> p)
  288. #define PREPEND_BLANK(str) {if (!STRING_EMPTY(str)) 
  289.     string_prepend(str, " ");}
  290. #define APPEND_BLANK(str) {if (!STRING_EMPTY(str)) 
  291.     string_append(str, " ");}
  292. #define LEN_STRING(str)         ( (STRING_EMPTY(str))?0:((str)->p - (str)->b))
  293. /* The scope separator appropriate for the language being demangled.  */
  294. #define SCOPE_STRING(work) ((work->options & DMGL_JAVA) ? "." : "::")
  295. #define ARM_VTABLE_STRING "__vtbl__" /* Lucid/ARM virtual table prefix */
  296. #define ARM_VTABLE_STRLEN 8 /* strlen (ARM_VTABLE_STRING) */
  297. /* Prototypes for local functions */
  298. static void
  299. delete_work_stuff PARAMS ((struct work_stuff *));
  300. static void
  301. delete_non_B_K_work_stuff PARAMS ((struct work_stuff *));
  302. static char *
  303. mop_up PARAMS ((struct work_stuff *, string *, int));
  304. static void
  305. squangle_mop_up PARAMS ((struct work_stuff *));
  306. static void
  307. work_stuff_copy_to_from PARAMS ((struct work_stuff *, struct work_stuff *));
  308. #if 0
  309. static int
  310. demangle_method_args PARAMS ((struct work_stuff *, const char **, string *));
  311. #endif
  312. static char *
  313. internal_cplus_demangle PARAMS ((struct work_stuff *, const char *));
  314. static int
  315. demangle_template_template_parm PARAMS ((struct work_stuff *work,
  316.  const char **, string *));
  317. static int
  318. demangle_template PARAMS ((struct work_stuff *work, const char **, string *,
  319.    string *, int, int));
  320. static int
  321. arm_pt PARAMS ((struct work_stuff *, const char *, int, const char **,
  322. const char **));
  323. static int
  324. demangle_class_name PARAMS ((struct work_stuff *, const char **, string *));
  325. static int
  326. demangle_qualified PARAMS ((struct work_stuff *, const char **, string *,
  327.     int, int));
  328. static int
  329. demangle_class PARAMS ((struct work_stuff *, const char **, string *));
  330. static int
  331. demangle_fund_type PARAMS ((struct work_stuff *, const char **, string *));
  332. static int
  333. demangle_signature PARAMS ((struct work_stuff *, const char **, string *));
  334. static int
  335. demangle_prefix PARAMS ((struct work_stuff *, const char **, string *));
  336. static int
  337. gnu_special PARAMS ((struct work_stuff *, const char **, string *));
  338. static int
  339. arm_special PARAMS ((const char **, string *));
  340. static void
  341. string_need PARAMS ((string *, int));
  342. static void
  343. string_delete PARAMS ((string *));
  344. static void
  345. string_init PARAMS ((string *));
  346. static void
  347. string_clear PARAMS ((string *));
  348. #if 0
  349. static int
  350. string_empty PARAMS ((string *));
  351. #endif
  352. static void
  353. string_append PARAMS ((string *, const char *));
  354. static void
  355. string_appends PARAMS ((string *, string *));
  356. static void
  357. string_appendn PARAMS ((string *, const char *, int));
  358. static void
  359. string_prepend PARAMS ((string *, const char *));
  360. static void
  361. string_prependn PARAMS ((string *, const char *, int));
  362. static void
  363. string_append_template_idx PARAMS ((string *, int));
  364. static int
  365. get_count PARAMS ((const char **, int *));
  366. static int
  367. consume_count PARAMS ((const char **));
  368. static int
  369. consume_count_with_underscores PARAMS ((const char**));
  370. static int
  371. demangle_args PARAMS ((struct work_stuff *, const char **, string *));
  372. static int
  373. demangle_nested_args PARAMS ((struct work_stuff*, const char**, string*));
  374. static int
  375. do_type PARAMS ((struct work_stuff *, const char **, string *));
  376. static int
  377. do_arg PARAMS ((struct work_stuff *, const char **, string *));
  378. static void
  379. demangle_function_name PARAMS ((struct work_stuff *, const char **, string *,
  380. const char *));
  381. static int
  382. iterate_demangle_function PARAMS ((struct work_stuff *,
  383.    const char **, string *, const char *));
  384. static void
  385. remember_type PARAMS ((struct work_stuff *, const char *, int));
  386. static void
  387. remember_Btype PARAMS ((struct work_stuff *, const char *, int, int));
  388. static int
  389. register_Btype PARAMS ((struct work_stuff *));
  390. static void
  391. remember_Ktype PARAMS ((struct work_stuff *, const char *, int));
  392. static void
  393. forget_types PARAMS ((struct work_stuff *));
  394. static void
  395. forget_B_and_K_types PARAMS ((struct work_stuff *));
  396. static void
  397. string_prepends PARAMS ((string *, string *));
  398. static int
  399. demangle_template_value_parm PARAMS ((struct work_stuff*, const char**,
  400.       string*, type_kind_t));
  401. static int
  402. do_hpacc_template_const_value PARAMS ((struct work_stuff *, const char **, string *));
  403. static int
  404. do_hpacc_template_literal PARAMS ((struct work_stuff *, const char **, string *));
  405. static int
  406. snarf_numeric_literal PARAMS ((const char **, string *));
  407. /* There is a TYPE_QUAL value for each type qualifier.  They can be
  408.    combined by bitwise-or to form the complete set of qualifiers for a
  409.    type.  */
  410. #define TYPE_UNQUALIFIED   0x0
  411. #define TYPE_QUAL_CONST    0x1
  412. #define TYPE_QUAL_VOLATILE 0x2
  413. #define TYPE_QUAL_RESTRICT 0x4
  414. static int
  415. code_for_qualifier PARAMS ((int));
  416. static const char*
  417. qualifier_string PARAMS ((int));
  418. static const char*
  419. demangle_qualifier PARAMS ((int));
  420. static int
  421. demangle_expression PARAMS ((struct work_stuff *, const char **, string *, 
  422.      type_kind_t));
  423. static int
  424. demangle_integral_value PARAMS ((struct work_stuff *, const char **,
  425.  string *));
  426. static int
  427. demangle_real_value PARAMS ((struct work_stuff *, const char **, string *));
  428. static void
  429. demangle_arm_hp_template PARAMS ((struct work_stuff *, const char **, int,
  430.   string *));
  431. static void
  432. recursively_demangle PARAMS ((struct work_stuff *, const char **, string *,
  433.       int));
  434. static void
  435. grow_vect PARAMS ((void **, size_t *, size_t, int));
  436. /* Translate count to integer, consuming tokens in the process.
  437.    Conversion terminates on the first non-digit character.
  438.    Trying to consume something that isn't a count results in no
  439.    consumption of input and a return of -1.
  440.    Overflow consumes the rest of the digits, and returns -1.  */
  441. static int
  442. consume_count (type)
  443.      const char **type;
  444. {
  445.   int count = 0;
  446.   if (! ISDIGIT ((unsigned char)**type))
  447.     return -1;
  448.   while (ISDIGIT ((unsigned char)**type))
  449.     {
  450.       count *= 10;
  451.       /* Check for overflow.
  452.  We assume that count is represented using two's-complement;
  453.  no power of two is divisible by ten, so if an overflow occurs
  454.  when multiplying by ten, the result will not be a multiple of
  455.  ten.  */
  456.       if ((count % 10) != 0)
  457. {
  458.   while (ISDIGIT ((unsigned char) **type))
  459.     (*type)++;
  460.   return -1;
  461. }
  462.       count += **type - '0';
  463.       (*type)++;
  464.     }
  465.   return (count);
  466. }
  467. /* Like consume_count, but for counts that are preceded and followed
  468.    by '_' if they are greater than 10.  Also, -1 is returned for
  469.    failure, since 0 can be a valid value.  */
  470. static int
  471. consume_count_with_underscores (mangled)
  472.      const char **mangled;
  473. {
  474.   int idx;
  475.   if (**mangled == '_')
  476.     {
  477.       (*mangled)++;
  478.       if (!ISDIGIT ((unsigned char)**mangled))
  479. return -1;
  480.       idx = consume_count (mangled);
  481.       if (**mangled != '_')
  482. /* The trailing underscore was missing. */
  483. return -1;
  484.       (*mangled)++;
  485.     }
  486.   else
  487.     {
  488.       if (**mangled < '0' || **mangled > '9')
  489. return -1;
  490.       idx = **mangled - '0';
  491.       (*mangled)++;
  492.     }
  493.   return idx;
  494. }
  495. /* C is the code for a type-qualifier.  Return the TYPE_QUAL
  496.    corresponding to this qualifier.  */
  497. static int
  498. code_for_qualifier (c)
  499.   int c;
  500. {
  501.   switch (c)
  502.     {
  503.     case 'C':
  504.       return TYPE_QUAL_CONST;
  505.     case 'V':
  506.       return TYPE_QUAL_VOLATILE;
  507.     case 'u':
  508.       return TYPE_QUAL_RESTRICT;
  509.     default:
  510.       break;
  511.     }
  512.   /* C was an invalid qualifier.  */
  513.   return TYPE_UNQUALIFIED;
  514. }
  515. /* Return the string corresponding to the qualifiers given by
  516.    TYPE_QUALS.  */
  517. static const char*
  518. qualifier_string (type_quals)
  519.      int type_quals;
  520. {
  521.   switch (type_quals)
  522.     {
  523.     case TYPE_UNQUALIFIED:
  524.       return "";
  525.     case TYPE_QUAL_CONST:
  526.       return "const";
  527.     case TYPE_QUAL_VOLATILE:
  528.       return "volatile";
  529.     case TYPE_QUAL_RESTRICT:
  530.       return "__restrict";
  531.     case TYPE_QUAL_CONST | TYPE_QUAL_VOLATILE:
  532.       return "const volatile";
  533.     case TYPE_QUAL_CONST | TYPE_QUAL_RESTRICT:
  534.       return "const __restrict";
  535.     case TYPE_QUAL_VOLATILE | TYPE_QUAL_RESTRICT:
  536.       return "volatile __restrict";
  537.     case TYPE_QUAL_CONST | TYPE_QUAL_VOLATILE | TYPE_QUAL_RESTRICT:
  538.       return "const volatile __restrict";
  539.     default:
  540.       break;
  541.     }
  542.   /* TYPE_QUALS was an invalid qualifier set.  */
  543.   abort ();
  544. }
  545. /* C is the code for a type-qualifier.  Return the string
  546.    corresponding to this qualifier.  This function should only be
  547.    called with a valid qualifier code.  */
  548. static const char*
  549. demangle_qualifier (c)
  550.   int c;
  551. {
  552.   return qualifier_string (code_for_qualifier (c));
  553. }
  554. int
  555. cplus_demangle_opname (opname, result, options)
  556.      const char *opname;
  557.      char *result;
  558.      int options;
  559. {
  560.   int len, len1, ret;
  561.   string type;
  562.   struct work_stuff work[1];
  563.   const char *tem;
  564.   len = strlen(opname);
  565.   result[0] = '';
  566.   ret = 0;
  567.   memset ((char *) work, 0, sizeof (work));
  568.   work->options = options;
  569.   if (opname[0] == '_' && opname[1] == '_'
  570.       && opname[2] == 'o' && opname[3] == 'p')
  571.     {
  572.       /* ANSI.  */
  573.       /* type conversion operator.  */
  574.       tem = opname + 4;
  575.       if (do_type (work, &tem, &type))
  576. {
  577.   strcat (result, "operator ");
  578.   strncat (result, type.b, type.p - type.b);
  579.   string_delete (&type);
  580.   ret = 1;
  581. }
  582.     }
  583.   else if (opname[0] == '_' && opname[1] == '_'
  584.    && ISLOWER((unsigned char)opname[2])
  585.    && ISLOWER((unsigned char)opname[3]))
  586.     {
  587.       if (opname[4] == '')
  588. {
  589.   /* Operator.  */
  590.   size_t i;
  591.   for (i = 0; i < ARRAY_SIZE (optable); i++)
  592.     {
  593.       if (strlen (optable[i].in) == 2
  594.   && memcmp (optable[i].in, opname + 2, 2) == 0)
  595. {
  596.   strcat (result, "operator");
  597.   strcat (result, optable[i].out);
  598.   ret = 1;
  599.   break;
  600. }
  601.     }
  602. }
  603.       else
  604. {
  605.   if (opname[2] == 'a' && opname[5] == '')
  606.     {
  607.       /* Assignment.  */
  608.       size_t i;
  609.       for (i = 0; i < ARRAY_SIZE (optable); i++)
  610. {
  611.   if (strlen (optable[i].in) == 3
  612.       && memcmp (optable[i].in, opname + 2, 3) == 0)
  613.     {
  614.       strcat (result, "operator");
  615.       strcat (result, optable[i].out);
  616.       ret = 1;
  617.       break;
  618.     }
  619. }
  620.     }
  621. }
  622.     }
  623.   else if (len >= 3
  624.    && opname[0] == 'o'
  625.    && opname[1] == 'p'
  626.    && strchr (cplus_markers, opname[2]) != NULL)
  627.     {
  628.       /* see if it's an assignment expression */
  629.       if (len >= 10 /* op$assign_ */
  630.   && memcmp (opname + 3, "assign_", 7) == 0)
  631. {
  632.   size_t i;
  633.   for (i = 0; i < ARRAY_SIZE (optable); i++)
  634.     {
  635.       len1 = len - 10;
  636.       if ((int) strlen (optable[i].in) == len1
  637.   && memcmp (optable[i].in, opname + 10, len1) == 0)
  638. {
  639.   strcat (result, "operator");
  640.   strcat (result, optable[i].out);
  641.   strcat (result, "=");
  642.   ret = 1;
  643.   break;
  644. }
  645.     }
  646. }
  647.       else
  648. {
  649.   size_t i;
  650.   for (i = 0; i < ARRAY_SIZE (optable); i++)
  651.     {
  652.       len1 = len - 3;
  653.       if ((int) strlen (optable[i].in) == len1
  654.   && memcmp (optable[i].in, opname + 3, len1) == 0)
  655. {
  656.   strcat (result, "operator");
  657.   strcat (result, optable[i].out);
  658.   ret = 1;
  659.   break;
  660. }
  661.     }
  662. }
  663.     }
  664.   else if (len >= 5 && memcmp (opname, "type", 4) == 0
  665.    && strchr (cplus_markers, opname[4]) != NULL)
  666.     {
  667.       /* type conversion operator */
  668.       tem = opname + 5;
  669.       if (do_type (work, &tem, &type))
  670. {
  671.   strcat (result, "operator ");
  672.   strncat (result, type.b, type.p - type.b);
  673.   string_delete (&type);
  674.   ret = 1;
  675. }
  676.     }
  677.   squangle_mop_up (work);
  678.   return ret;
  679. }
  680. /* Takes operator name as e.g. "++" and returns mangled
  681.    operator name (e.g. "postincrement_expr"), or NULL if not found.
  682.    If OPTIONS & DMGL_ANSI == 1, return the ANSI name;
  683.    if OPTIONS & DMGL_ANSI == 0, return the old GNU name.  */
  684. const char *
  685. cplus_mangle_opname (opname, options)
  686.      const char *opname;
  687.      int options;
  688. {
  689.   size_t i;
  690.   int len;
  691.   len = strlen (opname);
  692.   for (i = 0; i < ARRAY_SIZE (optable); i++)
  693.     {
  694.       if ((int) strlen (optable[i].out) == len
  695.   && (options & DMGL_ANSI) == (optable[i].flags & DMGL_ANSI)
  696.   && memcmp (optable[i].out, opname, len) == 0)
  697. return optable[i].in;
  698.     }
  699.   return (0);
  700. }
  701. /* Add a routine to set the demangling style to be sure it is valid and
  702.    allow for any demangler initialization that maybe necessary. */
  703. enum demangling_styles
  704. cplus_demangle_set_style (style)
  705.      enum demangling_styles style;
  706. {
  707.   struct demangler_engine *demangler = libiberty_demanglers; 
  708.   for (; demangler->demangling_style != unknown_demangling; ++demangler)
  709.     if (style == demangler->demangling_style)
  710.       {
  711. current_demangling_style = style;
  712. return current_demangling_style;
  713.       }
  714.   return unknown_demangling;
  715. }
  716. /* Do string name to style translation */
  717. enum demangling_styles
  718. cplus_demangle_name_to_style (name)
  719.      const char *name;
  720. {
  721.   struct demangler_engine *demangler = libiberty_demanglers; 
  722.   for (; demangler->demangling_style != unknown_demangling; ++demangler)
  723.     if (strcmp (name, demangler->demangling_style_name) == 0)
  724.       return demangler->demangling_style;
  725.   return unknown_demangling;
  726. }
  727. /* char *cplus_demangle (const char *mangled, int options)
  728.    If MANGLED is a mangled function name produced by GNU C++, then
  729.    a pointer to a malloced string giving a C++ representation
  730.    of the name will be returned; otherwise NULL will be returned.
  731.    It is the caller's responsibility to free the string which
  732.    is returned.
  733.    The OPTIONS arg may contain one or more of the following bits:
  734.     DMGL_ANSI ANSI qualifiers such as `const' and `void' are
  735. included.
  736. DMGL_PARAMS Function parameters are included.
  737.    For example,
  738.    cplus_demangle ("foo__1Ai", DMGL_PARAMS) => "A::foo(int)"
  739.    cplus_demangle ("foo__1Ai", DMGL_PARAMS | DMGL_ANSI) => "A::foo(int)"
  740.    cplus_demangle ("foo__1Ai", 0) => "A::foo"
  741.    cplus_demangle ("foo__1Afe", DMGL_PARAMS) => "A::foo(float,...)"
  742.    cplus_demangle ("foo__1Afe", DMGL_PARAMS | DMGL_ANSI)=> "A::foo(float,...)"
  743.    cplus_demangle ("foo__1Afe", 0) => "A::foo"
  744.    Note that any leading underscores, or other such characters prepended by
  745.    the compilation system, are presumed to have already been stripped from
  746.    MANGLED.  */
  747. char *
  748. cplus_demangle (mangled, options)
  749.      const char *mangled;
  750.      int options;
  751. {
  752.   char *ret;
  753.   struct work_stuff work[1];
  754.   memset ((char *) work, 0, sizeof (work));
  755.   work->options = options;
  756.   if ((work->options & DMGL_STYLE_MASK) == 0)
  757.     work->options |= (int) current_demangling_style & DMGL_STYLE_MASK;
  758.   /* The V3 ABI demangling is implemented elsewhere.  */
  759.   if (GNU_V3_DEMANGLING || AUTO_DEMANGLING)
  760.     {
  761.       ret = cplus_demangle_v3 (mangled);
  762.       if (ret || GNU_V3_DEMANGLING)
  763. return ret;
  764.     }
  765.   if (GNAT_DEMANGLING)
  766.     return ada_demangle(mangled,options);
  767.   if (EDG_DEMANGLING)
  768.     {
  769.        ret = edg_demangle(mangled,options);
  770.        if (ret)
  771.  {
  772.     return (ret);
  773.  }
  774.     }
  775.   ret = internal_cplus_demangle (work, mangled);
  776.   squangle_mop_up (work);
  777.   return (ret);
  778. }
  779. /* Assuming *OLD_VECT points to an array of *SIZE objects of size
  780.    ELEMENT_SIZE, grow it to contain at least MIN_SIZE objects,
  781.    updating *OLD_VECT and *SIZE as necessary.  */
  782. static void
  783. grow_vect (old_vect, size, min_size, element_size)
  784.      void **old_vect;
  785.      size_t *size;
  786.      size_t min_size;
  787.      int element_size;
  788. {
  789.   if (*size < min_size)
  790.     {
  791.       *size *= 2;
  792.       if (*size < min_size)
  793. *size = min_size;
  794.       *old_vect = xrealloc (*old_vect, *size * element_size);
  795.     }
  796. }
  797. /* Demangle ada names:
  798.    1. Discard final __{DIGIT}+ or ${DIGIT}+
  799.    2. Convert other instances of embedded "__" to `.'.
  800.    3. Discard leading _ada_.
  801.    4. Remove everything after first ___ if it is followed by 'X'.
  802.    5. Put symbols that should be suppressed in <...> brackets.
  803.    The resulting string is valid until the next call of ada_demangle.  */
  804. static char *
  805. ada_demangle (mangled, option)
  806.      const char *mangled;
  807.      int option ATTRIBUTE_UNUSED;
  808. {
  809.   int i, j;
  810.   int len0;
  811.   const char* p;
  812.   char *demangled = NULL;
  813.   int at_start_name;
  814.   int changed;
  815.   char *demangling_buffer = NULL;
  816.   size_t demangling_buffer_size = 0;
  817.   
  818.   changed = 0;
  819.   if (strncmp (mangled, "_ada_", 5) == 0)
  820.     {
  821.       mangled += 5;
  822.       changed = 1;
  823.     }
  824.   
  825.   if (mangled[0] == '_' || mangled[0] == '<')
  826.     goto Suppress;
  827.   
  828.   p = strstr (mangled, "___");
  829.   if (p == NULL)
  830.     len0 = strlen (mangled);
  831.   else
  832.     {
  833.       if (p[3] == 'X')
  834. {
  835.   len0 = p - mangled;
  836.   changed = 1;
  837. }
  838.       else
  839. goto Suppress;
  840.     }
  841.   
  842.   /* Make demangled big enough for possible expansion by operator name.  */
  843.   grow_vect ((void **) &(demangling_buffer),
  844.      &demangling_buffer_size,  2 * len0 + 1,
  845.      sizeof (char));
  846.   demangled = demangling_buffer;
  847.   
  848.   if (ISDIGIT ((unsigned char) mangled[len0 - 1])) {
  849.     for (i = len0 - 2; i >= 0 && ISDIGIT ((unsigned char) mangled[i]); i -= 1)
  850.       ;
  851.     if (i > 1 && mangled[i] == '_' && mangled[i - 1] == '_')
  852.       {
  853. len0 = i - 1;
  854. changed = 1;
  855.       }
  856.     else if (mangled[i] == '$')
  857.       {
  858. len0 = i;
  859. changed = 1;
  860.       }
  861.   }
  862.   
  863.   for (i = 0, j = 0; i < len0 && ! ISALPHA ((unsigned char)mangled[i]);
  864.        i += 1, j += 1)
  865.     demangled[j] = mangled[i];
  866.   
  867.   at_start_name = 1;
  868.   while (i < len0)
  869.     {
  870.       at_start_name = 0;
  871.       
  872.       if (i < len0 - 2 && mangled[i] == '_' && mangled[i + 1] == '_')
  873. {
  874.   demangled[j] = '.';
  875.   changed = at_start_name = 1;
  876.   i += 2; j += 1;
  877. }
  878.       else
  879. {
  880.   demangled[j] = mangled[i];
  881.   i += 1;  j += 1;
  882. }
  883.     }
  884.   demangled[j] = '00';
  885.   
  886.   for (i = 0; demangled[i] != ''; i += 1)
  887.     if (ISUPPER ((unsigned char)demangled[i]) || demangled[i] == ' ')
  888.       goto Suppress;
  889.   if (! changed)
  890.     return NULL;
  891.   else
  892.     return demangled;
  893.   
  894.  Suppress:
  895.   grow_vect ((void **) &(demangling_buffer),
  896.      &demangling_buffer_size,  strlen (mangled) + 3,
  897.      sizeof (char));
  898.   demangled = demangling_buffer;
  899.   if (mangled[0] == '<')
  900.      strcpy (demangled, mangled);
  901.   else
  902.     sprintf (demangled, "<%s>", mangled);
  903.   return demangled;
  904. }
  905. extern void decode_identifier(char      *id,
  906.                        char      *output_buffer,
  907.                        size_t  output_buffer_size,
  908.                        int *err,
  909.                        int *buffer_overflow_err,
  910.                        size_t  *required_buffer_size);
  911. static char *
  912. edg_demangle (mangled, option)
  913.      const char *mangled;
  914.      int option ATTRIBUTE_UNUSED;
  915. {
  916.   char *demangled_id = 0;
  917.   int err;
  918.   int buffer_overflow_err = 1;
  919.   size_t buffer_size = 1024;
  920.   while (buffer_overflow_err)
  921.     {
  922.       demangled_id = xrealloc(demangled_id, buffer_size);
  923.       decode_identifier(mangled, demangled_id, (size_t) buffer_size,
  924. &err, &buffer_overflow_err, &buffer_size);
  925.     }
  926.   if (err) {
  927.     free (demangled_id);
  928.     return (char *)0;
  929.   }
  930.   return demangled_id;
  931. }
  932. /* This function performs most of what cplus_demangle use to do, but
  933.    to be able to demangle a name with a B, K or n code, we need to
  934.    have a longer term memory of what types have been seen. The original
  935.    now intializes and cleans up the squangle code info, while internal
  936.    calls go directly to this routine to avoid resetting that info. */
  937. static char *
  938. internal_cplus_demangle (work, mangled)
  939.      struct work_stuff *work;
  940.      const char *mangled;
  941. {
  942.   string decl;
  943.   int success = 0;
  944.   char *demangled = NULL;
  945.   int s1, s2, s3, s4;
  946.   s1 = work->constructor;
  947.   s2 = work->destructor;
  948.   s3 = work->static_type;
  949.   s4 = work->type_quals;
  950.   work->constructor = work->destructor = 0;
  951.   work->type_quals = TYPE_UNQUALIFIED;
  952.   work->dllimported = 0;
  953.   if ((mangled != NULL) && (*mangled != ''))
  954.     {
  955.       string_init (&decl);
  956.       /* First check to see if gnu style demangling is active and if the
  957.  string to be demangled contains a CPLUS_MARKER.  If so, attempt to
  958.  recognize one of the gnu special forms rather than looking for a
  959.  standard prefix.  In particular, don't worry about whether there
  960.  is a "__" string in the mangled string.  Consider "_$_5__foo" for
  961.  example.  */
  962.       if ((AUTO_DEMANGLING || GNU_DEMANGLING))
  963. {
  964.   success = gnu_special (work, &mangled, &decl);
  965. }
  966.       if (!success)
  967. {
  968.   success = demangle_prefix (work, &mangled, &decl);
  969. }
  970.       if (success && (*mangled != ''))
  971. {
  972.   success = demangle_signature (work, &mangled, &decl);
  973. }
  974.       if (work->constructor == 2)
  975.         {
  976.           string_prepend (&decl, "global constructors keyed to ");
  977.           work->constructor = 0;
  978.         }
  979.       else if (work->destructor == 2)
  980.         {
  981.           string_prepend (&decl, "global destructors keyed to ");
  982.           work->destructor = 0;
  983.         }
  984.       else if (work->dllimported == 1)
  985.         {
  986.           string_prepend (&decl, "import stub for ");
  987.           work->dllimported = 0;
  988.         }
  989.       demangled = mop_up (work, &decl, success);
  990.     }
  991.   work->constructor = s1;
  992.   work->destructor = s2;
  993.   work->static_type = s3;
  994.   work->type_quals = s4;
  995.   return demangled;
  996. }
  997. /* Clear out and squangling related storage */
  998. static void
  999. squangle_mop_up (work)
  1000.      struct work_stuff *work;
  1001. {
  1002.   /* clean up the B and K type mangling types. */
  1003.   forget_B_and_K_types (work);
  1004.   if (work -> btypevec != NULL)
  1005.     {
  1006.       free ((char *) work -> btypevec);
  1007.     }
  1008.   if (work -> ktypevec != NULL)
  1009.     {
  1010.       free ((char *) work -> ktypevec);
  1011.     }
  1012. }
  1013. /* Copy the work state and storage.  */
  1014. static void
  1015. work_stuff_copy_to_from (to, from)
  1016.      struct work_stuff *to;
  1017.      struct work_stuff *from;
  1018. {
  1019.   int i;
  1020.   delete_work_stuff (to);
  1021.   /* Shallow-copy scalars.  */
  1022.   memcpy (to, from, sizeof (*to));
  1023.   /* Deep-copy dynamic storage.  */
  1024.   if (from->typevec_size)
  1025.     to->typevec
  1026.       = (char **) xmalloc (from->typevec_size * sizeof (to->typevec[0]));
  1027.   for (i = 0; i < from->ntypes; i++)
  1028.     {
  1029.       int len = strlen (from->typevec[i]) + 1;
  1030.       to->typevec[i] = xmalloc (len);
  1031.       memcpy (to->typevec[i], from->typevec[i], len);
  1032.     }
  1033.   if (from->ksize)
  1034.     to->ktypevec
  1035.       = (char **) xmalloc (from->ksize * sizeof (to->ktypevec[0]));
  1036.   for (i = 0; i < from->numk; i++)
  1037.     {
  1038.       int len = strlen (from->ktypevec[i]) + 1;
  1039.       to->ktypevec[i] = xmalloc (len);
  1040.       memcpy (to->ktypevec[i], from->ktypevec[i], len);
  1041.     }
  1042.   if (from->bsize)
  1043.     to->btypevec
  1044.       = (char **) xmalloc (from->bsize * sizeof (to->btypevec[0]));
  1045.   for (i = 0; i < from->numb; i++)
  1046.     {
  1047.       int len = strlen (from->btypevec[i]) + 1;
  1048.       to->btypevec[i] = xmalloc (len);
  1049.       memcpy (to->btypevec[i], from->btypevec[i], len);
  1050.     }
  1051.   if (from->ntmpl_args)
  1052.     to->tmpl_argvec
  1053.       = xmalloc (from->ntmpl_args * sizeof (to->tmpl_argvec[0]));
  1054.   for (i = 0; i < from->ntmpl_args; i++)
  1055.     {
  1056.       int len = strlen (from->tmpl_argvec[i]) + 1;
  1057.       to->tmpl_argvec[i] = xmalloc (len);
  1058.       memcpy (to->tmpl_argvec[i], from->tmpl_argvec[i], len);
  1059.     }
  1060.   if (from->previous_argument)
  1061.     {
  1062.       to->previous_argument = (string*) xmalloc (sizeof (string));
  1063.       string_init (to->previous_argument);
  1064.       string_appends (to->previous_argument, from->previous_argument);
  1065.     }
  1066. }
  1067. /* Delete dynamic stuff in work_stuff that is not to be re-used.  */
  1068. static void
  1069. delete_non_B_K_work_stuff (work)
  1070.      struct work_stuff *work;
  1071. {
  1072.   /* Discard the remembered types, if any.  */
  1073.   forget_types (work);
  1074.   if (work -> typevec != NULL)
  1075.     {
  1076.       free ((char *) work -> typevec);
  1077.       work -> typevec = NULL;
  1078.       work -> typevec_size = 0;
  1079.     }
  1080.   if (work->tmpl_argvec)
  1081.     {
  1082.       int i;
  1083.       for (i = 0; i < work->ntmpl_args; i++)
  1084. if (work->tmpl_argvec[i])
  1085.   free ((char*) work->tmpl_argvec[i]);
  1086.       free ((char*) work->tmpl_argvec);
  1087.       work->tmpl_argvec = NULL;
  1088.     }
  1089.   if (work->previous_argument)
  1090.     {
  1091.       string_delete (work->previous_argument);
  1092.       free ((char*) work->previous_argument);
  1093.       work->previous_argument = NULL;
  1094.     }
  1095. }
  1096. /* Delete all dynamic storage in work_stuff.  */
  1097. static void
  1098. delete_work_stuff (work)
  1099.      struct work_stuff *work;
  1100. {
  1101.   delete_non_B_K_work_stuff (work);
  1102.   squangle_mop_up (work);
  1103. }
  1104. /* Clear out any mangled storage */
  1105. static char *
  1106. mop_up (work, declp, success)
  1107.      struct work_stuff *work;
  1108.      string *declp;
  1109.      int success;
  1110. {
  1111.   char *demangled = NULL;
  1112.   delete_non_B_K_work_stuff (work);
  1113.   /* If demangling was successful, ensure that the demangled string is null
  1114.      terminated and return it.  Otherwise, free the demangling decl.  */
  1115.   if (!success)
  1116.     {
  1117.       string_delete (declp);
  1118.     }
  1119.   else
  1120.     {
  1121.       string_appendn (declp, "", 1);
  1122.       demangled = declp->b;
  1123.     }
  1124.   return (demangled);
  1125. }
  1126. /*
  1127. LOCAL FUNCTION
  1128. demangle_signature -- demangle the signature part of a mangled name
  1129. SYNOPSIS
  1130. static int
  1131. demangle_signature (struct work_stuff *work, const char **mangled,
  1132.     string *declp);
  1133. DESCRIPTION
  1134. Consume and demangle the signature portion of the mangled name.
  1135. DECLP is the string where demangled output is being built.  At
  1136. entry it contains the demangled root name from the mangled name
  1137. prefix.  I.E. either a demangled operator name or the root function
  1138. name.  In some special cases, it may contain nothing.
  1139. *MANGLED points to the current unconsumed location in the mangled
  1140. name.  As tokens are consumed and demangling is performed, the
  1141. pointer is updated to continuously point at the next token to
  1142. be consumed.
  1143. Demangling GNU style mangled names is nasty because there is no
  1144. explicit token that marks the start of the outermost function
  1145. argument list.  */
  1146. static int
  1147. demangle_signature (work, mangled, declp)
  1148.      struct work_stuff *work;
  1149.      const char **mangled;
  1150.      string *declp;
  1151. {
  1152.   int success = 1;
  1153.   int func_done = 0;
  1154.   int expect_func = 0;
  1155.   int expect_return_type = 0;
  1156.   const char *oldmangled = NULL;
  1157.   string trawname;
  1158.   string tname;
  1159.   while (success && (**mangled != ''))
  1160.     {
  1161.       switch (**mangled)
  1162. {
  1163. case 'Q':
  1164.   oldmangled = *mangled;
  1165.   success = demangle_qualified (work, mangled, declp, 1, 0);
  1166.   if (success)
  1167.     remember_type (work, oldmangled, *mangled - oldmangled);
  1168.   if (AUTO_DEMANGLING || GNU_DEMANGLING)
  1169.     expect_func = 1;
  1170.   oldmangled = NULL;
  1171.   break;
  1172.         case 'K':
  1173.   oldmangled = *mangled;
  1174.   success = demangle_qualified (work, mangled, declp, 1, 0);
  1175.   if (AUTO_DEMANGLING || GNU_DEMANGLING)
  1176.     {
  1177.       expect_func = 1;
  1178.     }
  1179.   oldmangled = NULL;
  1180.   break;
  1181. case 'S':
  1182.   /* Static member function */
  1183.   if (oldmangled == NULL)
  1184.     {
  1185.       oldmangled = *mangled;
  1186.     }
  1187.   (*mangled)++;
  1188.   work -> static_type = 1;
  1189.   break;
  1190. case 'C':
  1191. case 'V':
  1192. case 'u':
  1193.   work->type_quals |= code_for_qualifier (**mangled);
  1194.   /* a qualified member function */
  1195.   if (oldmangled == NULL)
  1196.     oldmangled = *mangled;
  1197.   (*mangled)++;
  1198.   break;
  1199. case 'L':
  1200.   /* Local class name follows after "Lnnn_" */
  1201.   if (HP_DEMANGLING)
  1202.     {
  1203.       while (**mangled && (**mangled != '_'))
  1204. (*mangled)++;
  1205.       if (!**mangled)
  1206. success = 0;
  1207.       else
  1208. (*mangled)++;
  1209.     }
  1210.   else
  1211.     success = 0;
  1212.   break;
  1213. case '0': case '1': case '2': case '3': case '4':
  1214. case '5': case '6': case '7': case '8': case '9':
  1215.   if (oldmangled == NULL)
  1216.     {
  1217.       oldmangled = *mangled;
  1218.     }
  1219.           work->temp_start = -1; /* uppermost call to demangle_class */
  1220.   success = demangle_class (work, mangled, declp);
  1221.   if (success)
  1222.     {
  1223.       remember_type (work, oldmangled, *mangled - oldmangled);
  1224.     }
  1225.   if (AUTO_DEMANGLING || GNU_DEMANGLING || EDG_DEMANGLING)
  1226.     {
  1227.               /* EDG and others will have the "F", so we let the loop cycle
  1228.                  if we are looking at one. */
  1229.               if (**mangled != 'F')
  1230.                  expect_func = 1;
  1231.     }
  1232.   oldmangled = NULL;
  1233.   break;
  1234. case 'B':
  1235.   {
  1236.     string s;
  1237.     success = do_type (work, mangled, &s);
  1238.     if (success)
  1239.       {
  1240. string_append (&s, SCOPE_STRING (work));
  1241. string_prepends (declp, &s);
  1242.       }
  1243.     oldmangled = NULL;
  1244.     expect_func = 1;
  1245.   }
  1246.   break;
  1247. case 'F':
  1248.   /* Function */
  1249.   /* ARM/HP style demangling includes a specific 'F' character after
  1250.      the class name.  For GNU style, it is just implied.  So we can
  1251.      safely just consume any 'F' at this point and be compatible
  1252.      with either style.  */
  1253.   oldmangled = NULL;
  1254.   func_done = 1;
  1255.   (*mangled)++;
  1256.   /* For lucid/ARM/HP style we have to forget any types we might
  1257.      have remembered up to this point, since they were not argument
  1258.      types.  GNU style considers all types seen as available for
  1259.      back references.  See comment in demangle_args() */
  1260.   if (LUCID_DEMANGLING || ARM_DEMANGLING || HP_DEMANGLING || EDG_DEMANGLING)
  1261.     {
  1262.       forget_types (work);
  1263.     }
  1264.   success = demangle_args (work, mangled, declp);
  1265.   /* After picking off the function args, we expect to either
  1266.      find the function return type (preceded by an '_') or the
  1267.      end of the string. */
  1268.   if (success && (AUTO_DEMANGLING || EDG_DEMANGLING) && **mangled == '_')
  1269.     {
  1270.       ++(*mangled);
  1271.               /* At this level, we do not care about the return type. */
  1272.               success = do_type (work, mangled, &tname);
  1273.               string_delete (&tname);
  1274.             }
  1275.   break;
  1276. case 't':
  1277.   /* G++ Template */
  1278.   string_init(&trawname);
  1279.   string_init(&tname);
  1280.   if (oldmangled == NULL)
  1281.     {
  1282.       oldmangled = *mangled;
  1283.     }
  1284.   success = demangle_template (work, mangled, &tname,
  1285.        &trawname, 1, 1);
  1286.   if (success)
  1287.     {
  1288.       remember_type (work, oldmangled, *mangled - oldmangled);
  1289.     }
  1290.   string_append (&tname, SCOPE_STRING (work));
  1291.   string_prepends(declp, &tname);
  1292.   if (work -> destructor & 1)
  1293.     {
  1294.       string_prepend (&trawname, "~");
  1295.       string_appends (declp, &trawname);
  1296.       work->destructor -= 1;
  1297.     }
  1298.   if ((work->constructor & 1) || (work->destructor & 1))
  1299.     {
  1300.       string_appends (declp, &trawname);
  1301.       work->constructor -= 1;
  1302.     }
  1303.   string_delete(&trawname);
  1304.   string_delete(&tname);
  1305.   oldmangled = NULL;
  1306.   expect_func = 1;
  1307.   break;
  1308. case '_':
  1309.   if ((AUTO_DEMANGLING || GNU_DEMANGLING) && expect_return_type)
  1310.     {
  1311.       /* Read the return type. */
  1312.       string return_type;
  1313.       string_init (&return_type);
  1314.       (*mangled)++;
  1315.       success = do_type (work, mangled, &return_type);
  1316.       APPEND_BLANK (&return_type);
  1317.       string_prepends (declp, &return_type);
  1318.       string_delete (&return_type);
  1319.       break;
  1320.     }
  1321.   else
  1322.     /* At the outermost level, we cannot have a return type specified,
  1323.        so if we run into another '_' at this point we are dealing with
  1324.        a mangled name that is either bogus, or has been mangled by
  1325.        some algorithm we don't know how to deal with.  So just
  1326.        reject the entire demangling.  */
  1327.             /* However, "_nnn" is an expected suffix for alternate entry point
  1328.                numbered nnn for a function, with HP aCC, so skip over that
  1329.                without reporting failure. pai/1997-09-04 */
  1330.             if (HP_DEMANGLING)
  1331.               {
  1332.                 (*mangled)++;
  1333.                 while (**mangled && ISDIGIT ((unsigned char)**mangled))
  1334.                   (*mangled)++;
  1335.               }
  1336.             else
  1337.       success = 0;
  1338.   break;
  1339. case 'H':
  1340.   if (AUTO_DEMANGLING || GNU_DEMANGLING)
  1341.     {
  1342.       /* A G++ template function.  Read the template arguments. */
  1343.       success = demangle_template (work, mangled, declp, 0, 0,
  1344.    0);
  1345.       if (!(work->constructor & 1))
  1346. expect_return_type = 1;
  1347.       (*mangled)++;
  1348.       break;
  1349.     }
  1350.   else
  1351.     /* fall through */
  1352.     {;}
  1353. default:
  1354.   if (AUTO_DEMANGLING || GNU_DEMANGLING)
  1355.     {
  1356.       /* Assume we have stumbled onto the first outermost function
  1357.  argument token, and start processing args.  */
  1358.       func_done = 1;
  1359.       success = demangle_args (work, mangled, declp);
  1360.     }
  1361.   else
  1362.     {
  1363.       /* Non-GNU demanglers use a specific token to mark the start
  1364.  of the outermost function argument tokens.  Typically 'F',
  1365.  for ARM/HP-demangling, for example.  So if we find something
  1366.  we are not prepared for, it must be an error.  */
  1367.       success = 0;
  1368.     }
  1369.   break;
  1370. }
  1371.       /*
  1372. if (AUTO_DEMANGLING || GNU_DEMANGLING)
  1373. */
  1374.       {
  1375. if (success && expect_func)
  1376.   {
  1377.     func_done = 1;
  1378.               if (LUCID_DEMANGLING || ARM_DEMANGLING || EDG_DEMANGLING)
  1379.                 {
  1380.                   forget_types (work);
  1381.                 }
  1382.     success = demangle_args (work, mangled, declp);
  1383.     /* Since template include the mangling of their return types,
  1384.        we must set expect_func to 0 so that we don't try do
  1385.        demangle more arguments the next time we get here.  */
  1386.     expect_func = 0;
  1387.   }
  1388.       }
  1389.     }
  1390.   if (success && !func_done)
  1391.     {
  1392.       if (AUTO_DEMANGLING || GNU_DEMANGLING)
  1393. {
  1394.   /* With GNU style demangling, bar__3foo is 'foo::bar(void)', and
  1395.      bar__3fooi is 'foo::bar(int)'.  We get here when we find the
  1396.      first case, and need to ensure that the '(void)' gets added to
  1397.      the current declp.  Note that with ARM/HP, the first case
  1398.      represents the name of a static data member 'foo::bar',
  1399.      which is in the current declp, so we leave it alone.  */
  1400.   success = demangle_args (work, mangled, declp);
  1401. }
  1402.     }
  1403.   if (success && PRINT_ARG_TYPES)
  1404.     {
  1405.       if (work->static_type)
  1406. string_append (declp, " static");
  1407.       if (work->type_quals != TYPE_UNQUALIFIED)
  1408. {
  1409.   APPEND_BLANK (declp);
  1410.   string_append (declp, qualifier_string (work->type_quals));
  1411. }
  1412.     }
  1413.   return (success);
  1414. }
  1415. #if 0
  1416. static int
  1417. demangle_method_args (work, mangled, declp)
  1418.      struct work_stuff *work;
  1419.      const char **mangled;
  1420.      string *declp;
  1421. {
  1422.   int success = 0;
  1423.   if (work -> static_type)
  1424.     {
  1425.       string_append (declp, *mangled + 1);
  1426.       *mangled += strlen (*mangled);
  1427.       success = 1;
  1428.     }
  1429.   else
  1430.     {
  1431.       success = demangle_args (work, mangled, declp);
  1432.     }
  1433.   return (success);
  1434. }
  1435. #endif
  1436. static int
  1437. demangle_template_template_parm (work, mangled, tname)
  1438.      struct work_stuff *work;
  1439.      const char **mangled;
  1440.      string *tname;
  1441. {
  1442.   int i;
  1443.   int r;
  1444.   int need_comma = 0;
  1445.   int success = 1;
  1446.   string temp;
  1447.   string_append (tname, "template <");
  1448.   /* get size of template parameter list */
  1449.   if (get_count (mangled, &r))
  1450.     {
  1451.       for (i = 0; i < r; i++)
  1452. {
  1453.   if (need_comma)
  1454.     {
  1455.       string_append (tname, ", ");
  1456.     }
  1457.     /* Z for type parameters */
  1458.     if (**mangled == 'Z')
  1459.       {
  1460. (*mangled)++;
  1461. string_append (tname, "class");
  1462.       }
  1463.       /* z for template parameters */
  1464.     else if (**mangled == 'z')
  1465.       {
  1466. (*mangled)++;
  1467. success =
  1468.   demangle_template_template_parm (work, mangled, tname);
  1469. if (!success)
  1470.   {
  1471.     break;
  1472.   }
  1473.       }
  1474.     else
  1475.       {
  1476. /* temp is initialized in do_type */
  1477. success = do_type (work, mangled, &temp);
  1478. if (success)
  1479.   {
  1480.     string_appends (tname, &temp);
  1481.   }
  1482. string_delete(&temp);
  1483. if (!success)
  1484.   {
  1485.     break;
  1486.   }
  1487.       }
  1488.   need_comma = 1;
  1489. }
  1490.     }
  1491.   if (tname->p[-1] == '>')
  1492.     string_append (tname, " ");
  1493.   string_append (tname, "> class");
  1494.   return (success);
  1495. }
  1496. static int
  1497. demangle_expression (work, mangled, s, tk)
  1498.      struct work_stuff *work;
  1499.      const char** mangled;
  1500.      string* s;
  1501.      type_kind_t tk;
  1502. {
  1503.   int need_operator = 0;
  1504.   int success;
  1505.   success = 1;
  1506.   string_appendn (s, "(", 1);
  1507.   (*mangled)++;
  1508.   while (success && **mangled != 'W' && **mangled != '')
  1509.     {
  1510.       if (need_operator)
  1511. {
  1512.   size_t i;
  1513.   size_t len;
  1514.   success = 0;
  1515.   len = strlen (*mangled);
  1516.   for (i = 0; i < ARRAY_SIZE (optable); ++i)
  1517.     {
  1518.       size_t l = strlen (optable[i].in);
  1519.       if (l <= len
  1520.   && memcmp (optable[i].in, *mangled, l) == 0)
  1521. {
  1522.   string_appendn (s, " ", 1);
  1523.   string_append (s, optable[i].out);
  1524.   string_appendn (s, " ", 1);
  1525.   success = 1;
  1526.   (*mangled) += l;
  1527.   break;
  1528. }
  1529.     }
  1530.   if (!success)
  1531.     break;
  1532. }
  1533.       else
  1534. need_operator = 1;
  1535.       success = demangle_template_value_parm (work, mangled, s, tk);
  1536.     }
  1537.   if (**mangled != 'W')
  1538.     success = 0;
  1539.   else
  1540.     {
  1541.       string_appendn (s, ")", 1);
  1542.       (*mangled)++;
  1543.     }
  1544.   return success;
  1545. }
  1546. static int
  1547. demangle_integral_value (work, mangled, s)
  1548.      struct work_stuff *work;
  1549.      const char** mangled;
  1550.      string* s;
  1551. {
  1552.   int success;
  1553.   if (**mangled == 'E')
  1554.     success = demangle_expression (work, mangled, s, tk_integral);
  1555.   else if (**mangled == 'Q' || **mangled == 'K')
  1556.     success = demangle_qualified (work, mangled, s, 0, 1);
  1557.   else
  1558.     {
  1559.       int value;
  1560.       /* By default, we let the number decide whether we shall consume an
  1561.  underscore.  */
  1562.       int consume_following_underscore = 0;
  1563.       int leave_following_underscore = 0;
  1564.       success = 0;
  1565.       /* Negative numbers are indicated with a leading `m'.  */
  1566.       if (**mangled == 'm')
  1567. {
  1568.   string_appendn (s, "-", 1);
  1569.   (*mangled)++;
  1570. }
  1571.       else if (mangled[0][0] == '_' && mangled[0][1] == 'm')
  1572. {
  1573.   /* Since consume_count_with_underscores does not handle the
  1574.      `m'-prefix we must do it here, using consume_count and
  1575.      adjusting underscores: we have to consume the underscore
  1576.      matching the prepended one.  */
  1577.   consume_following_underscore = 1;
  1578.   string_appendn (s, "-", 1);
  1579.   (*mangled) += 2;
  1580. }
  1581.       else if (**mangled == '_')
  1582. {
  1583.   /* Do not consume a following underscore;
  1584.      consume_following_underscore will consume what should be
  1585.      consumed.  */
  1586.   leave_following_underscore = 1;
  1587. }
  1588.       /* We must call consume_count if we expect to remove a trailing
  1589.  underscore, since consume_count_with_underscores expects
  1590.  the leading underscore (that we consumed) if it is to handle
  1591.  multi-digit numbers.  */
  1592.       if (consume_following_underscore)
  1593. value = consume_count (mangled);
  1594.       else
  1595. value = consume_count_with_underscores (mangled);
  1596.       if (value != -1)
  1597. {
  1598.   char buf[INTBUF_SIZE];
  1599.   sprintf (buf, "%d", value);
  1600.   string_append (s, buf);
  1601.   /* Numbers not otherwise delimited, might have an underscore
  1602.      appended as a delimeter, which we should skip.
  1603.      ??? This used to always remove a following underscore, which
  1604.      is wrong.  If other (arbitrary) cases are followed by an
  1605.      underscore, we need to do something more radical.  */
  1606.   if ((value > 9 || consume_following_underscore)
  1607.       && ! leave_following_underscore
  1608.       && **mangled == '_')
  1609.     (*mangled)++;
  1610.   /* All is well.  */
  1611.   success = 1;
  1612. }
  1613.     }
  1614.   return success;
  1615. }
  1616. /* Demangle the real value in MANGLED.  */
  1617. static int
  1618. demangle_real_value (work, mangled, s)
  1619.      struct work_stuff *work;
  1620.      const char **mangled;
  1621.      string* s;
  1622. {
  1623.   if (**mangled == 'E')
  1624.     return demangle_expression (work, mangled, s, tk_real);
  1625.   if (**mangled == 'm')
  1626.     {
  1627.       string_appendn (s, "-", 1);
  1628.       (*mangled)++;
  1629.     }
  1630.   while (ISDIGIT ((unsigned char)**mangled))
  1631.     {
  1632.       string_appendn (s, *mangled, 1);
  1633.       (*mangled)++;
  1634.     }
  1635.   if (**mangled == '.') /* fraction */
  1636.     {
  1637.       string_appendn (s, ".", 1);
  1638.       (*mangled)++;
  1639.       while (ISDIGIT ((unsigned char)**mangled))
  1640. {
  1641.   string_appendn (s, *mangled, 1);
  1642.   (*mangled)++;
  1643. }
  1644.     }
  1645.   if (**mangled == 'e') /* exponent */
  1646.     {
  1647.       string_appendn (s, "e", 1);
  1648.       (*mangled)++;
  1649.       while (ISDIGIT ((unsigned char)**mangled))
  1650. {
  1651.   string_appendn (s, *mangled, 1);
  1652.   (*mangled)++;
  1653. }
  1654.     }
  1655.   return 1;
  1656. }
  1657. static int
  1658. demangle_template_value_parm (work, mangled, s, tk)
  1659.      struct work_stuff *work;
  1660.      const char **mangled;
  1661.      string* s;
  1662.      type_kind_t tk;
  1663. {
  1664.   int success = 1;
  1665.   if (**mangled == 'Y')
  1666.     {
  1667.       /* The next argument is a template parameter. */
  1668.       int idx;
  1669.       (*mangled)++;
  1670.       idx = consume_count_with_underscores (mangled);
  1671.       if (idx == -1
  1672.   || (work->tmpl_argvec && idx >= work->ntmpl_args)
  1673.   || consume_count_with_underscores (mangled) == -1)
  1674. return -1;
  1675.       if (work->tmpl_argvec)
  1676. string_append (s, work->tmpl_argvec[idx]);
  1677.       else
  1678. string_append_template_idx (s, idx);
  1679.     }
  1680.   else if (tk == tk_integral)
  1681.     success = demangle_integral_value (work, mangled, s);
  1682.   else if (tk == tk_char)
  1683.     {
  1684.       char tmp[2];
  1685.       int val;
  1686.       if (**mangled == 'm')
  1687. {
  1688.   string_appendn (s, "-", 1);
  1689.   (*mangled)++;
  1690. }
  1691.       string_appendn (s, "'", 1);
  1692.       val = consume_count(mangled);
  1693.       if (val <= 0)
  1694. success = 0;
  1695.       else
  1696. {
  1697.   tmp[0] = (char)val;
  1698.   tmp[1] = '';
  1699.   string_appendn (s, &tmp[0], 1);
  1700.   string_appendn (s, "'", 1);
  1701. }
  1702.     }
  1703.   else if (tk == tk_bool)
  1704.     {
  1705.       int val = consume_count (mangled);
  1706.       if (val == 0)
  1707. string_appendn (s, "false", 5);
  1708.       else if (val == 1)
  1709. string_appendn (s, "true", 4);
  1710.       else
  1711. success = 0;
  1712.     }
  1713.   else if (tk == tk_real)
  1714.     success = demangle_real_value (work, mangled, s);
  1715.   else if (tk == tk_pointer || tk == tk_reference)
  1716.     {
  1717.       if (**mangled == 'Q')
  1718. success = demangle_qualified (work, mangled, s,
  1719.       /*isfuncname=*/0, 
  1720.       /*append=*/1);
  1721.       else
  1722. {
  1723.   int symbol_len  = consume_count (mangled);
  1724.   if (symbol_len == -1)
  1725.     return -1;
  1726.   if (symbol_len == 0)
  1727.     string_appendn (s, "0", 1);
  1728.   else
  1729.     {
  1730.       char *p = xmalloc (symbol_len + 1), *q;
  1731.       strncpy (p, *mangled, symbol_len);
  1732.       p [symbol_len] = '';
  1733.       /* We use cplus_demangle here, rather than
  1734.  internal_cplus_demangle, because the name of the entity
  1735.  mangled here does not make use of any of the squangling
  1736.  or type-code information we have built up thus far; it is
  1737.  mangled independently.  */
  1738.       q = cplus_demangle (p, work->options);
  1739.       if (tk == tk_pointer)
  1740. string_appendn (s, "&", 1);
  1741.       /* FIXME: Pointer-to-member constants should get a
  1742.  qualifying class name here.  */
  1743.       if (q)
  1744. {
  1745.   string_append (s, q);
  1746.   free (q);
  1747. }
  1748.       else
  1749. string_append (s, p);
  1750.       free (p);
  1751.     }
  1752.   *mangled += symbol_len;
  1753. }
  1754.     }
  1755.   return success;
  1756. }
  1757. /* Demangle the template name in MANGLED.  The full name of the
  1758.    template (e.g., S<int>) is placed in TNAME.  The name without the
  1759.    template parameters (e.g. S) is placed in TRAWNAME if TRAWNAME is
  1760.    non-NULL.  If IS_TYPE is nonzero, this template is a type template,
  1761.    not a function template.  If both IS_TYPE and REMEMBER are nonzero,
  1762.    the template is remembered in the list of back-referenceable
  1763.    types.  */
  1764. static int
  1765. demangle_template (work, mangled, tname, trawname, is_type, remember)
  1766.      struct work_stuff *work;
  1767.      const char **mangled;
  1768.      string *tname;
  1769.      string *trawname;
  1770.      int is_type;
  1771.      int remember;
  1772. {
  1773.   int i;
  1774.   int r;
  1775.   int need_comma = 0;
  1776.   int success = 0;
  1777.   const char *start;
  1778.   int is_java_array = 0;
  1779.   string temp;
  1780.   int bindex = 0;
  1781.   (*mangled)++;
  1782.   if (is_type)
  1783.     {
  1784.       if (remember)
  1785. bindex = register_Btype (work);
  1786.       start = *mangled;
  1787.       /* get template name */
  1788.       if (**mangled == 'z')
  1789. {
  1790.   int idx;
  1791.   (*mangled)++;
  1792.   (*mangled)++;
  1793.   idx = consume_count_with_underscores (mangled);
  1794.   if (idx == -1
  1795.       || (work->tmpl_argvec && idx >= work->ntmpl_args)
  1796.       || consume_count_with_underscores (mangled) == -1)
  1797.     return (0);
  1798.   if (work->tmpl_argvec)
  1799.     {
  1800.       string_append (tname, work->tmpl_argvec[idx]);
  1801.       if (trawname)
  1802. string_append (trawname, work->tmpl_argvec[idx]);
  1803.     }
  1804.   else
  1805.     {
  1806.       string_append_template_idx (tname, idx);
  1807.       if (trawname)
  1808. string_append_template_idx (trawname, idx);
  1809.     }
  1810. }
  1811.       else
  1812. {
  1813.   if ((r = consume_count (mangled)) <= 0
  1814.       || (int) strlen (*mangled) < r)
  1815.     {
  1816.       return (0);
  1817.     }
  1818.   is_java_array = (work -> options & DMGL_JAVA)
  1819.     && strncmp (*mangled, "JArray1Z", 8) == 0;
  1820.   if (! is_java_array)
  1821.     {
  1822.       string_appendn (tname, *mangled, r);
  1823.     }
  1824.   if (trawname)
  1825.     string_appendn (trawname, *mangled, r);
  1826.   *mangled += r;
  1827. }
  1828.     }
  1829.   if (!is_java_array)
  1830.     string_append (tname, "<");
  1831.   /* get size of template parameter list */
  1832.   if (!get_count (mangled, &r))
  1833.     {
  1834.       return (0);
  1835.     }
  1836.   if (!is_type)
  1837.     {
  1838.       /* Create an array for saving the template argument values. */
  1839.       work->tmpl_argvec = (char**) xmalloc (r * sizeof (char *));
  1840.       work->ntmpl_args = r;
  1841.       for (i = 0; i < r; i++)
  1842. work->tmpl_argvec[i] = 0;
  1843.     }
  1844.   for (i = 0; i < r; i++)
  1845.     {
  1846.       if (need_comma)
  1847. {
  1848.   string_append (tname, ", ");
  1849. }
  1850.       /* Z for type parameters */
  1851.       if (**mangled == 'Z')
  1852. {
  1853.   (*mangled)++;
  1854.   /* temp is initialized in do_type */
  1855.   success = do_type (work, mangled, &temp);
  1856.   if (success)
  1857.     {
  1858.       string_appends (tname, &temp);
  1859.       if (!is_type)
  1860. {
  1861.   /* Save the template argument. */
  1862.   int len = temp.p - temp.b;
  1863.   work->tmpl_argvec[i] = xmalloc (len + 1);
  1864.   memcpy (work->tmpl_argvec[i], temp.b, len);
  1865.   work->tmpl_argvec[i][len] = '';
  1866. }
  1867.     }
  1868.   string_delete(&temp);
  1869.   if (!success)
  1870.     {
  1871.       break;
  1872.     }
  1873. }
  1874.       /* z for template parameters */
  1875.       else if (**mangled == 'z')
  1876. {
  1877.   int r2;
  1878.   (*mangled)++;
  1879.   success = demangle_template_template_parm (work, mangled, tname);
  1880.   if (success
  1881.       && (r2 = consume_count (mangled)) > 0
  1882.       && (int) strlen (*mangled) >= r2)
  1883.     {
  1884.       string_append (tname, " ");
  1885.       string_appendn (tname, *mangled, r2);
  1886.       if (!is_type)
  1887. {
  1888.   /* Save the template argument. */
  1889.   int len = r2;
  1890.   work->tmpl_argvec[i] = xmalloc (len + 1);
  1891.   memcpy (work->tmpl_argvec[i], *mangled, len);
  1892.   work->tmpl_argvec[i][len] = '';
  1893. }
  1894.       *mangled += r2;
  1895.     }
  1896.   if (!success)
  1897.     {
  1898.       break;
  1899.     }
  1900. }
  1901.       else
  1902. {
  1903.   string  param;
  1904.   string* s;
  1905.   /* otherwise, value parameter */
  1906.   /* temp is initialized in do_type */
  1907.   success = do_type (work, mangled, &temp);
  1908.   string_delete(&temp);
  1909.   if (!success)
  1910.     break;
  1911.   if (!is_type)
  1912.     {
  1913.       s = &param;
  1914.       string_init (s);
  1915.     }
  1916.   else
  1917.     s = tname;
  1918.   success = demangle_template_value_parm (work, mangled, s,
  1919.   (type_kind_t) success);
  1920.   if (!success)
  1921.     {
  1922.       if (!is_type)
  1923. string_delete (s);
  1924.       success = 0;
  1925.       break;
  1926.     }
  1927.   if (!is_type)
  1928.     {
  1929.       int len = s->p - s->b;
  1930.       work->tmpl_argvec[i] = xmalloc (len + 1);
  1931.       memcpy (work->tmpl_argvec[i], s->b, len);
  1932.       work->tmpl_argvec[i][len] = '';
  1933.       string_appends (tname, s);
  1934.       string_delete (s);
  1935.     }
  1936. }
  1937.       need_comma = 1;
  1938.     }
  1939.   if (is_java_array)
  1940.     {
  1941.       string_append (tname, "[]");
  1942.     }
  1943.   else
  1944.     {
  1945.       if (tname->p[-1] == '>')
  1946. string_append (tname, " ");
  1947.       string_append (tname, ">");
  1948.     }
  1949.   if (is_type && remember)
  1950.     remember_Btype (work, tname->b, LEN_STRING (tname), bindex);
  1951.   /*
  1952.     if (work -> static_type)
  1953.     {
  1954.     string_append (declp, *mangled + 1);
  1955.     *mangled += strlen (*mangled);
  1956.     success = 1;
  1957.     }
  1958.     else
  1959.     {
  1960.     success = demangle_args (work, mangled, declp);
  1961.     }
  1962.     }
  1963.     */
  1964.   return (success);
  1965. }
  1966. static int
  1967. arm_pt (work, mangled, n, anchor, args)
  1968.      struct work_stuff *work;
  1969.      const char *mangled;
  1970.      int n;
  1971.      const char **anchor, **args;
  1972. {
  1973.   /* Check if ARM template with "__pt__" in it ("parameterized type") */
  1974.   /* Allow HP also here, because HP's cfront compiler follows ARM to some extent */
  1975.   if ((ARM_DEMANGLING || HP_DEMANGLING) && (*anchor = mystrstr (mangled, "__pt__")))
  1976.     {
  1977.       int len;
  1978.       *args = *anchor + 6;
  1979.       len = consume_count (args);
  1980.       if (len == -1)
  1981. return 0;
  1982.       if (*args + len == mangled + n && **args == '_')
  1983. {
  1984.   ++*args;
  1985.   return 1;
  1986. }
  1987.     }
  1988.   if (AUTO_DEMANGLING || EDG_DEMANGLING)
  1989.     {
  1990.       if ((*anchor = mystrstr (mangled, "__tm__"))
  1991.           || (*anchor = mystrstr (mangled, "__ps__"))
  1992.           || (*anchor = mystrstr (mangled, "__pt__")))
  1993.         {
  1994.           int len;
  1995.           *args = *anchor + 6;
  1996.           len = consume_count (args);
  1997.   if (len == -1)
  1998.     return 0;
  1999.           if (*args + len == mangled + n && **args == '_')
  2000.             {
  2001.               ++*args;
  2002.               return 1;
  2003.             }
  2004.         }
  2005.       else if ((*anchor = mystrstr (mangled, "__S")))
  2006.         {
  2007.     int len;
  2008.     *args = *anchor + 3;
  2009.     len = consume_count (args);
  2010.   if (len == -1)
  2011.     return 0;
  2012.     if (*args + len == mangled + n && **args == '_')
  2013.             {
  2014.               ++*args;
  2015.         return 1;
  2016.             }
  2017.         }
  2018.     }
  2019.   return 0;
  2020. }
  2021. static void
  2022. demangle_arm_hp_template (work, mangled, n, declp)
  2023.      struct work_stuff *work;
  2024.      const char **mangled;
  2025.      int n;
  2026.      string *declp;
  2027. {
  2028.   const char *p;
  2029.   const char *args;
  2030.   const char *e = *mangled + n;
  2031.   string arg;
  2032.   /* Check for HP aCC template spec: classXt1t2 where t1, t2 are
  2033.      template args */
  2034.   if (HP_DEMANGLING && ((*mangled)[n] == 'X'))
  2035.     {
  2036.       char *start_spec_args = NULL;
  2037.       /* First check for and omit template specialization pseudo-arguments,
  2038.          such as in "Spec<#1,#1.*>" */
  2039.       start_spec_args = strchr (*mangled, '<');
  2040.       if (start_spec_args && (start_spec_args - *mangled < n))
  2041.         string_appendn (declp, *mangled, start_spec_args - *mangled);
  2042.       else
  2043.         string_appendn (declp, *mangled, n);
  2044.       (*mangled) += n + 1;
  2045.       string_init (&arg);
  2046.       if (work->temp_start == -1) /* non-recursive call */
  2047.         work->temp_start = declp->p - declp->b;
  2048.       string_append (declp, "<");
  2049.       while (1)
  2050.         {
  2051.           string_clear (&arg);
  2052.           switch (**mangled)
  2053.             {
  2054.               case 'T':
  2055.                 /* 'T' signals a type parameter */
  2056.                 (*mangled)++;
  2057.                 if (!do_type (work, mangled, &arg))
  2058.                   goto hpacc_template_args_done;
  2059.                 break;
  2060.               case 'U':
  2061.               case 'S':
  2062.                 /* 'U' or 'S' signals an integral value */
  2063.                 if (!do_hpacc_template_const_value (work, mangled, &arg))
  2064.                   goto hpacc_template_args_done;
  2065.                 break;
  2066.               case 'A':
  2067.                 /* 'A' signals a named constant expression (literal) */
  2068.                 if (!do_hpacc_template_literal (work, mangled, &arg))
  2069.                   goto hpacc_template_args_done;
  2070.                 break;
  2071.               default:
  2072.                 /* Today, 1997-09-03, we have only the above types
  2073.                    of template parameters */
  2074.                 /* FIXME: maybe this should fail and return null */
  2075.                 goto hpacc_template_args_done;
  2076.             }
  2077.           string_appends (declp, &arg);
  2078.          /* Check if we're at the end of template args.
  2079.              0 if at end of static member of template class,
  2080.              _ if done with template args for a function */
  2081.           if ((**mangled == '00') || (**mangled == '_'))
  2082.             break;
  2083.           else
  2084.             string_append (declp, ",");
  2085.         }
  2086.     hpacc_template_args_done:
  2087.       string_append (declp, ">");
  2088.       string_delete (&arg);
  2089.       if (**mangled == '_')
  2090.         (*mangled)++;
  2091.       return;
  2092.     }
  2093.   /* ARM template? (Also handles HP cfront extensions) */
  2094.   else if (arm_pt (work, *mangled, n, &p, &args))
  2095.     {
  2096.       string type_str;
  2097.       string_init (&arg);
  2098.       string_appendn (declp, *mangled, p - *mangled);
  2099.       if (work->temp_start == -1)  /* non-recursive call */
  2100. work->temp_start = declp->p - declp->b;
  2101.       string_append (declp, "<");
  2102.       /* should do error checking here */
  2103.       while (args < e) {
  2104. string_clear (&arg);
  2105. /* Check for type or literal here */
  2106. switch (*args)
  2107.   {
  2108.     /* HP cfront extensions to ARM for template args */
  2109.     /* spec: Xt1Lv1 where t1 is a type, v1 is a literal value */
  2110.     /* FIXME: We handle only numeric literals for HP cfront */
  2111.           case 'X':
  2112.             /* A typed constant value follows */
  2113.             args++;
  2114.             if (!do_type (work, &args, &type_str))
  2115.       goto cfront_template_args_done;
  2116.             string_append (&arg, "(");
  2117.             string_appends (&arg, &type_str);
  2118.             string_append (&arg, ")");
  2119.             if (*args != 'L')
  2120.               goto cfront_template_args_done;
  2121.             args++;
  2122.             /* Now snarf a literal value following 'L' */
  2123.             if (!snarf_numeric_literal (&args, &arg))
  2124.       goto cfront_template_args_done;
  2125.             break;
  2126.           case 'L':
  2127.             /* Snarf a literal following 'L' */
  2128.             args++;
  2129.             if (!snarf_numeric_literal (&args, &arg))
  2130.       goto cfront_template_args_done;
  2131.             break;
  2132.           default:
  2133.             /* Not handling other HP cfront stuff */
  2134.             if (!do_type (work, &args, &arg))
  2135.               goto cfront_template_args_done;
  2136.   }
  2137. string_appends (declp, &arg);
  2138. string_append (declp, ",");
  2139.       }
  2140.     cfront_template_args_done:
  2141.       string_delete (&arg);
  2142.       if (args >= e)
  2143. --declp->p; /* remove extra comma */
  2144.       string_append (declp, ">");
  2145.     }
  2146.   else if (n>10 && strncmp (*mangled, "_GLOBAL_", 8) == 0
  2147.    && (*mangled)[9] == 'N'
  2148.    && (*mangled)[8] == (*mangled)[10]
  2149.    && strchr (cplus_markers, (*mangled)[8]))
  2150.     {
  2151.       /* A member of the anonymous namespace.  */
  2152.       string_append (declp, "{anonymous}");
  2153.     }
  2154.   else
  2155.     {
  2156.       if (work->temp_start == -1) /* non-recursive call only */
  2157. work->temp_start = 0;     /* disable in recursive calls */
  2158.       string_appendn (declp, *mangled, n);
  2159.     }
  2160.   *mangled += n;
  2161. }
  2162. /* Extract a class name, possibly a template with arguments, from the
  2163.    mangled string; qualifiers, local class indicators, etc. have
  2164.    already been dealt with */
  2165. static int
  2166. demangle_class_name (work, mangled, declp)
  2167.      struct work_stuff *work;
  2168.      const char **mangled;
  2169.      string *declp;
  2170. {
  2171.   int n;
  2172.   int success = 0;
  2173.   n = consume_count (mangled);
  2174.   if (n == -1)
  2175.     return 0;
  2176.   if ((int) strlen (*mangled) >= n)
  2177.     {
  2178.       demangle_arm_hp_template (work, mangled, n, declp);
  2179.       success = 1;
  2180.     }
  2181.   return (success);
  2182. }
  2183. /*
  2184. LOCAL FUNCTION
  2185. demangle_class -- demangle a mangled class sequence
  2186. SYNOPSIS
  2187. static int
  2188. demangle_class (struct work_stuff *work, const char **mangled,
  2189. strint *declp)
  2190. DESCRIPTION
  2191. DECLP points to the buffer into which demangling is being done.
  2192. *MANGLED points to the current token to be demangled.  On input,
  2193. it points to a mangled class (I.E. "3foo", "13verylongclass", etc.)
  2194. On exit, it points to the next token after the mangled class on
  2195. success, or the first unconsumed token on failure.
  2196. If the CONSTRUCTOR or DESTRUCTOR flags are set in WORK, then
  2197. we are demangling a constructor or destructor.  In this case
  2198. we prepend "class::class" or "class::~class" to DECLP.
  2199. Otherwise, we prepend "class::" to the current DECLP.
  2200. Reset the constructor/destructor flags once they have been
  2201. "consumed".  This allows demangle_class to be called later during
  2202. the same demangling, to do normal class demangling.
  2203. Returns 1 if demangling is successful, 0 otherwise.
  2204. */
  2205. static int
  2206. demangle_class (work, mangled, declp)
  2207.      struct work_stuff *work;
  2208.      const char **mangled;
  2209.      string *declp;
  2210. {
  2211.   int success = 0;
  2212.   int btype;
  2213.   string class_name;
  2214.   char *save_class_name_end = 0;
  2215.   string_init (&class_name);
  2216.   btype = register_Btype (work);
  2217.   if (demangle_class_name (work, mangled, &class_name))
  2218.     {
  2219.       save_class_name_end = class_name.p;
  2220.       if ((work->constructor & 1) || (work->destructor & 1))
  2221. {
  2222.           /* adjust so we don't include template args */
  2223.           if (work->temp_start && (work->temp_start != -1))
  2224.             {
  2225.               class_name.p = class_name.b + work->temp_start;
  2226.             }
  2227.   string_prepends (declp, &class_name);
  2228.   if (work -> destructor & 1)
  2229.     {
  2230.       string_prepend (declp, "~");
  2231.               work -> destructor -= 1;
  2232.     }
  2233.   else
  2234.     {
  2235.       work -> constructor -= 1;
  2236.     }
  2237. }
  2238.       class_name.p = save_class_name_end;
  2239.       remember_Ktype (work, class_name.b, LEN_STRING(&class_name));
  2240.       remember_Btype (work, class_name.b, LEN_STRING(&class_name), btype);
  2241.       string_prepend (declp, SCOPE_STRING (work));
  2242.       string_prepends (declp, &class_name);
  2243.       success = 1;
  2244.     }
  2245.   string_delete (&class_name);
  2246.   return (success);
  2247. }
  2248. /* Called when there's a "__" in the mangled name, with `scan' pointing to
  2249.    the rightmost guess.
  2250.    Find the correct "__"-sequence where the function name ends and the
  2251.    signature starts, which is ambiguous with GNU mangling.
  2252.    Call demangle_signature here, so we can make sure we found the right
  2253.    one; *mangled will be consumed so caller will not make further calls to
  2254.    demangle_signature.  */
  2255. static int
  2256. iterate_demangle_function (work, mangled, declp, scan)
  2257.      struct work_stuff *work;
  2258.      const char **mangled;
  2259.      string *declp;
  2260.      const char *scan;
  2261. {
  2262.   const char *mangle_init = *mangled;
  2263.   int success = 0;
  2264.   string decl_init;
  2265.   struct work_stuff work_init;
  2266.   if (*(scan + 2) == '')
  2267.     return 0;
  2268.   /* Do not iterate for some demangling modes, or if there's only one
  2269.      "__"-sequence.  This is the normal case.  */
  2270.   if (ARM_DEMANGLING || LUCID_DEMANGLING || HP_DEMANGLING || EDG_DEMANGLING
  2271.       || mystrstr (scan + 2, "__") == NULL)
  2272.     {
  2273.       demangle_function_name (work, mangled, declp, scan);
  2274.       return 1;
  2275.     }
  2276.   /* Save state so we can restart if the guess at the correct "__" was
  2277.      wrong.  */
  2278.   string_init (&decl_init);
  2279.   string_appends (&decl_init, declp);
  2280.   memset (&work_init, 0, sizeof work_init);
  2281.   work_stuff_copy_to_from (&work_init, work);
  2282.   /* Iterate over occurrences of __, allowing names and types to have a
  2283.      "__" sequence in them.  We must start with the first (not the last)
  2284.      occurrence, since "__" most often occur between independent mangled
  2285.      parts, hence starting at the last occurence inside a signature
  2286.      might get us a "successful" demangling of the signature.  */
  2287.   while (scan[2])
  2288.     {
  2289.       demangle_function_name (work, mangled, declp, scan);
  2290.       success = demangle_signature (work, mangled, declp);
  2291.       if (success)
  2292. break;
  2293.       /* Reset demangle state for the next round.  */
  2294.       *mangled = mangle_init;
  2295.       string_clear (declp);
  2296.       string_appends (declp, &decl_init);
  2297.       work_stuff_copy_to_from (work, &work_init);
  2298.       /* Leave this underscore-sequence.  */
  2299.       scan += 2;
  2300.       /* Scan for the next "__" sequence.  */
  2301.       while (*scan && (scan[0] != '_' || scan[1] != '_'))
  2302. scan++;
  2303.       /* Move to last "__" in this sequence.  */
  2304.       while (*scan && *scan == '_')
  2305. scan++;
  2306.       scan -= 2;
  2307.     }
  2308.   /* Delete saved state.  */
  2309.   delete_work_stuff (&work_init);
  2310.   string_delete (&decl_init);
  2311.   return success;
  2312. }
  2313. /*
  2314. LOCAL FUNCTION
  2315. demangle_prefix -- consume the mangled name prefix and find signature
  2316. SYNOPSIS
  2317. static int
  2318. demangle_prefix (struct work_stuff *work, const char **mangled,
  2319.  string *declp);
  2320. DESCRIPTION
  2321. Consume and demangle the prefix of the mangled name.
  2322. While processing the function name root, arrange to call
  2323. demangle_signature if the root is ambiguous.
  2324. DECLP points to the string buffer into which demangled output is
  2325. placed.  On entry, the buffer is empty.  On exit it contains
  2326. the root function name, the demangled operator name, or in some
  2327. special cases either nothing or the completely demangled result.
  2328. MANGLED points to the current pointer into the mangled name.  As each
  2329. token of the mangled name is consumed, it is updated.  Upon entry
  2330. the current mangled name pointer points to the first character of
  2331. the mangled name.  Upon exit, it should point to the first character
  2332. of the signature if demangling was successful, or to the first
  2333. unconsumed character if demangling of the prefix was unsuccessful.
  2334. Returns 1 on success, 0 otherwise.
  2335.  */
  2336. static int
  2337. demangle_prefix (work, mangled, declp)
  2338.      struct work_stuff *work;
  2339.      const char **mangled;
  2340.      string *declp;
  2341. {
  2342.   int success = 1;
  2343.   const char *scan;
  2344.   int i;
  2345.   if (strlen(*mangled) > 6
  2346.       && (strncmp(*mangled, "_imp__", 6) == 0
  2347.           || strncmp(*mangled, "__imp_", 6) == 0))
  2348.     {
  2349.       /* it's a symbol imported from a PE dynamic library. Check for both
  2350.          new style prefix _imp__ and legacy __imp_ used by older versions
  2351.  of dlltool. */
  2352.       (*mangled) += 6;
  2353.       work->dllimported = 1;
  2354.     }
  2355.   else if (strlen(*mangled) >= 11 && strncmp(*mangled, "_GLOBAL_", 8) == 0)
  2356.     {
  2357.       char *marker = strchr (cplus_markers, (*mangled)[8]);
  2358.       if (marker != NULL && *marker == (*mangled)[10])
  2359. {
  2360.   if ((*mangled)[9] == 'D')
  2361.     {
  2362.       /* it's a GNU global destructor to be executed at program exit */
  2363.       (*mangled) += 11;
  2364.       work->destructor = 2;
  2365.       if (gnu_special (work, mangled, declp))
  2366. return success;
  2367.     }
  2368.   else if ((*mangled)[9] == 'I')
  2369.     {
  2370.       /* it's a GNU global constructor to be executed at program init */
  2371.       (*mangled) += 11;
  2372.       work->constructor = 2;
  2373.       if (gnu_special (work, mangled, declp))
  2374. return success;
  2375.     }
  2376. }
  2377.     }
  2378.   else if ((ARM_DEMANGLING || HP_DEMANGLING || EDG_DEMANGLING) && strncmp(*mangled, "__std__", 7) == 0)
  2379.     {
  2380.       /* it's a ARM global destructor to be executed at program exit */
  2381.       (*mangled) += 7;
  2382.       work->destructor = 2;
  2383.     }
  2384.   else if ((ARM_DEMANGLING || HP_DEMANGLING || EDG_DEMANGLING) && strncmp(*mangled, "__sti__", 7) == 0)
  2385.     {
  2386.       /* it's a ARM global constructor to be executed at program initial */
  2387.       (*mangled) += 7;
  2388.       work->constructor = 2;
  2389.     }
  2390.   /*  This block of code is a reduction in strength time optimization
  2391.       of:
  2392.       scan = mystrstr (*mangled, "__"); */
  2393.   {
  2394.     scan = *mangled;
  2395.     do {
  2396.       scan = strchr (scan, '_');
  2397.     } while (scan != NULL && *++scan != '_');
  2398.     if (scan != NULL) --scan;
  2399.   }
  2400.   if (scan != NULL)
  2401.     {
  2402.       /* We found a sequence of two or more '_', ensure that we start at
  2403.  the last pair in the sequence.  */
  2404.       i = strspn (scan, "_");
  2405.       if (i > 2)
  2406. {
  2407.   scan += (i - 2);
  2408. }
  2409.     }
  2410.   if (scan == NULL)
  2411.     {
  2412.       success = 0;
  2413.     }
  2414.   else if (work -> static_type)
  2415.     {
  2416.       if (!ISDIGIT ((unsigned char)scan[0]) && (scan[0] != 't'))
  2417. {
  2418.   success = 0;
  2419. }
  2420.     }
  2421.   else if ((scan == *mangled)
  2422.    && (ISDIGIT ((unsigned char)scan[2]) || (scan[2] == 'Q')
  2423.        || (scan[2] == 't') || (scan[2] == 'K') || (scan[2] == 'H')))
  2424.     {
  2425.       /* The ARM says nothing about the mangling of local variables.
  2426.  But cfront mangles local variables by prepending __<nesting_level>
  2427.  to them. As an extension to ARM demangling we handle this case.  */
  2428.       if ((LUCID_DEMANGLING || ARM_DEMANGLING || HP_DEMANGLING)
  2429.   && ISDIGIT ((unsigned char)scan[2]))
  2430. {
  2431.   *mangled = scan + 2;
  2432.   consume_count (mangled);
  2433.   string_append (declp, *mangled);
  2434.   *mangled += strlen (*mangled);
  2435.   success = 1;
  2436. }
  2437.       else
  2438. {
  2439.   /* A GNU style constructor starts with __[0-9Qt].  But cfront uses
  2440.      names like __Q2_3foo3bar for nested type names.  So don't accept
  2441.      this style of constructor for cfront demangling.  A GNU
  2442.      style member-template constructor starts with 'H'. */
  2443.   if (!(LUCID_DEMANGLING || ARM_DEMANGLING || HP_DEMANGLING || EDG_DEMANGLING))
  2444.     work -> constructor += 1;
  2445.   *mangled = scan + 2;
  2446. }
  2447.     }
  2448.   else if (ARM_DEMANGLING && scan[2] == 'p' && scan[3] == 't')
  2449.     {
  2450.       /* Cfront-style parameterized type.  Handled later as a signature. */
  2451.       success = 1;
  2452.       /* ARM template? */
  2453.       demangle_arm_hp_template (work, mangled, strlen (*mangled), declp);
  2454.     }
  2455.   else if (EDG_DEMANGLING && ((scan[2] == 't' && scan[3] == 'm')
  2456.                               || (scan[2] == 'p' && scan[3] == 's')
  2457.                               || (scan[2] == 'p' && scan[3] == 't')))
  2458.     {
  2459.       /* EDG-style parameterized type.  Handled later as a signature. */
  2460.       success = 1;
  2461.       /* EDG template? */
  2462.       demangle_arm_hp_template (work, mangled, strlen (*mangled), declp);
  2463.     }
  2464.   else if ((scan == *mangled) && !ISDIGIT ((unsigned char)scan[2])
  2465.    && (scan[2] != 't'))
  2466.     {
  2467.       /* Mangled name starts with "__".  Skip over any leading '_' characters,
  2468.  then find the next "__" that separates the prefix from the signature.
  2469.  */
  2470.       if (!(ARM_DEMANGLING || LUCID_DEMANGLING || HP_DEMANGLING || EDG_DEMANGLING)
  2471.   || (arm_special (mangled, declp) == 0))
  2472. {
  2473.   while (*scan == '_')
  2474.     {
  2475.       scan++;
  2476.     }
  2477.   if ((scan = mystrstr (scan, "__")) == NULL || (*(scan + 2) == ''))
  2478.     {
  2479.       /* No separator (I.E. "__not_mangled"), or empty signature
  2480.  (I.E. "__not_mangled_either__") */
  2481.       success = 0;
  2482.     }
  2483.   else
  2484.     return iterate_demangle_function (work, mangled, declp, scan);
  2485. }
  2486.     }
  2487.   else if (*(scan + 2) != '')
  2488.     {
  2489.       /* Mangled name does not start with "__" but does have one somewhere
  2490.  in there with non empty stuff after it.  Looks like a global
  2491.  function name.  Iterate over all "__":s until the right
  2492.  one is found.  */
  2493.       return iterate_demangle_function (work, mangled, declp, scan);
  2494.     }
  2495.   else
  2496.     {
  2497.       /* Doesn't look like a mangled name */
  2498.       success = 0;
  2499.     }
  2500.   if (!success && (work->constructor == 2 || work->destructor == 2))
  2501.     {
  2502.       string_append (declp, *mangled);
  2503.       *mangled += strlen (*mangled);
  2504.       success = 1;
  2505.     }
  2506.   return (success);
  2507. }
  2508. /*
  2509. LOCAL FUNCTION
  2510. gnu_special -- special handling of gnu mangled strings
  2511. SYNOPSIS
  2512. static int
  2513. gnu_special (struct work_stuff *work, const char **mangled,
  2514.      string *declp);
  2515. DESCRIPTION
  2516. Process some special GNU style mangling forms that don't fit
  2517. the normal pattern.  For example:
  2518. _$_3foo (destructor for class foo)
  2519. _vt$foo (foo virtual table)
  2520. _vt$foo$bar (foo::bar virtual table)
  2521. __vt_foo (foo virtual table, new style with thunks)
  2522. _3foo$varname (static data member)
  2523. _Q22rs2tu$vw (static data member)
  2524. __t6vector1Zii (constructor with template)
  2525. __thunk_4__$_7ostream (virtual function thunk)
  2526.  */
  2527. static int
  2528. gnu_special (work, mangled, declp)
  2529.      struct work_stuff *work;
  2530.      const char **mangled;
  2531.      string *declp;
  2532. {
  2533.   int n;
  2534.   int success = 1;
  2535.   const char *p;
  2536.   if ((*mangled)[0] == '_'
  2537.       && strchr (cplus_markers, (*mangled)[1]) != NULL
  2538.       && (*mangled)[2] == '_')
  2539.     {
  2540.       /* Found a GNU style destructor, get past "_<CPLUS_MARKER>_" */
  2541.       (*mangled) += 3;
  2542.       work -> destructor += 1;
  2543.     }
  2544.   else if ((*mangled)[0] == '_'
  2545.    && (((*mangled)[1] == '_'
  2546. && (*mangled)[2] == 'v'
  2547. && (*mangled)[3] == 't'
  2548. && (*mangled)[4] == '_')
  2549.        || ((*mangled)[1] == 'v'
  2550.    && (*mangled)[2] == 't'
  2551.    && strchr (cplus_markers, (*mangled)[3]) != NULL)))
  2552.     {
  2553.       /* Found a GNU style virtual table, get past "_vt<CPLUS_MARKER>"
  2554.          and create the decl.  Note that we consume the entire mangled
  2555.  input string, which means that demangle_signature has no work
  2556.  to do.  */
  2557.       if ((*mangled)[2] == 'v')
  2558. (*mangled) += 5; /* New style, with thunks: "__vt_" */
  2559.       else
  2560. (*mangled) += 4; /* Old style, no thunks: "_vt<CPLUS_MARKER>" */
  2561.       while (**mangled != '')
  2562. {
  2563.   switch (**mangled)
  2564.     {
  2565.     case 'Q':
  2566.     case 'K':
  2567.       success = demangle_qualified (work, mangled, declp, 0, 1);
  2568.       break;
  2569.     case 't':
  2570.       success = demangle_template (work, mangled, declp, 0, 1,
  2571.    1);
  2572.       break;
  2573.     default:
  2574.       if (ISDIGIT((unsigned char)*mangled[0]))
  2575. {
  2576.   n = consume_count(mangled);
  2577.   /* We may be seeing a too-large size, or else a
  2578.      ".<digits>" indicating a static local symbol.  In
  2579.      any case, declare victory and move on; *don't* try
  2580.      to use n to allocate.  */
  2581.   if (n > (int) strlen (*mangled))
  2582.     {
  2583.       success = 1;
  2584.       break;
  2585.     }
  2586. }
  2587.       else
  2588. {
  2589.   n = strcspn (*mangled, cplus_markers);
  2590. }
  2591.       string_appendn (declp, *mangled, n);
  2592.       (*mangled) += n;
  2593.     }
  2594.   p = strpbrk (*mangled, cplus_markers);
  2595.   if (success && ((p == NULL) || (p == *mangled)))
  2596.     {
  2597.       if (p != NULL)
  2598. {
  2599.   string_append (declp, SCOPE_STRING (work));
  2600.   (*mangled)++;
  2601. }
  2602.     }
  2603.   else
  2604.     {
  2605.       success = 0;
  2606.       break;
  2607.     }
  2608. }
  2609.       if (success)
  2610. string_append (declp, " virtual table");
  2611.     }
  2612.   else if ((*mangled)[0] == '_'
  2613.    && (strchr("0123456789Qt", (*mangled)[1]) != NULL)
  2614.    && (p = strpbrk (*mangled, cplus_markers)) != NULL)
  2615.     {
  2616.       /* static data member, "_3foo$varname" for example */
  2617.       (*mangled)++;
  2618.       switch (**mangled)
  2619. {
  2620. case 'Q':
  2621. case 'K':
  2622.   success = demangle_qualified (work, mangled, declp, 0, 1);
  2623.   break;
  2624. case 't':
  2625.   success = demangle_template (work, mangled, declp, 0, 1, 1);
  2626.   break;
  2627. default:
  2628.   n = consume_count (mangled);
  2629.   if (n < 0 || n > (long) strlen (*mangled))
  2630.     {
  2631.       success = 0;
  2632.       break;
  2633.     }
  2634.   if (n > 10 && strncmp (*mangled, "_GLOBAL_", 8) == 0
  2635.       && (*mangled)[9] == 'N'
  2636.       && (*mangled)[8] == (*mangled)[10]
  2637.       && strchr (cplus_markers, (*mangled)[8]))
  2638.     {
  2639.       /* A member of the anonymous namespace.  There's information
  2640.  about what identifier or filename it was keyed to, but
  2641.  it's just there to make the mangled name unique; we just
  2642.  step over it.  */
  2643.       string_append (declp, "{anonymous}");
  2644.       (*mangled) += n;
  2645.       /* Now p points to the marker before the N, so we need to
  2646.  update it to the first marker after what we consumed.  */
  2647.       p = strpbrk (*mangled, cplus_markers);
  2648.       break;
  2649.     }
  2650.   string_appendn (declp, *mangled, n);
  2651.   (*mangled) += n;
  2652. }
  2653.       if (success && (p == *mangled))
  2654. {
  2655.   /* Consumed everything up to the cplus_marker, append the
  2656.      variable name.  */
  2657.   (*mangled)++;
  2658.   string_append (declp, SCOPE_STRING (work));
  2659.   n = strlen (*mangled);
  2660.   string_appendn (declp, *mangled, n);
  2661.   (*mangled) += n;
  2662. }
  2663.       else
  2664. {
  2665.   success = 0;
  2666. }
  2667.     }
  2668.   else if (strncmp (*mangled, "__thunk_", 8) == 0)
  2669.     {
  2670.       int delta;
  2671.       (*mangled) += 8;
  2672.       delta = consume_count (mangled);
  2673.       if (delta == -1)
  2674. success = 0;
  2675.       else
  2676. {
  2677.   char *method = internal_cplus_demangle (work, ++*mangled);
  2678.   if (method)
  2679.     {
  2680.       char buf[50];
  2681.       sprintf (buf, "virtual function thunk (delta:%d) for ", -delta);
  2682.       string_append (declp, buf);
  2683.       string_append (declp, method);
  2684.       free (method);
  2685.       n = strlen (*mangled);
  2686.       (*mangled) += n;
  2687.     }
  2688.   else
  2689.     {
  2690.       success = 0;
  2691.     }
  2692. }
  2693.     }
  2694.   else if (strncmp (*mangled, "__t", 3) == 0
  2695.    && ((*mangled)[3] == 'i' || (*mangled)[3] == 'f'))
  2696.     {
  2697.       p = (*mangled)[3] == 'i' ? " type_info node" : " type_info function";
  2698.       (*mangled) += 4;
  2699.       switch (**mangled)
  2700. {
  2701. case 'Q':
  2702. case 'K':
  2703.   success = demangle_qualified (work, mangled, declp, 0, 1);
  2704.   break;
  2705. case 't':
  2706.   success = demangle_template (work, mangled, declp, 0, 1, 1);
  2707.   break;
  2708. default:
  2709.   success = do_type (work, mangled, declp);
  2710.   break;
  2711. }
  2712.       if (success && **mangled != '')
  2713. success = 0;
  2714.       if (success)
  2715. string_append (declp, p);
  2716.     }
  2717.   else
  2718.     {
  2719.       success = 0;
  2720.     }
  2721.   return (success);
  2722. }
  2723. static void
  2724. recursively_demangle(work, mangled, result, namelength)
  2725.      struct work_stuff *work;
  2726.      const char **mangled;
  2727.      string *result;
  2728.      int namelength;
  2729. {
  2730.   char * recurse = (char *)NULL;
  2731.   char * recurse_dem = (char *)NULL;
  2732.   recurse = (char *) xmalloc (namelength + 1);
  2733.   memcpy (recurse, *mangled, namelength);
  2734.   recurse[namelength] = '00';
  2735.   recurse_dem = cplus_demangle (recurse, work->options);
  2736.   if (recurse_dem)
  2737.     {
  2738.       string_append (result, recurse_dem);
  2739.       free (recurse_dem);
  2740.     }
  2741.   else
  2742.     {
  2743.       string_appendn (result, *mangled, namelength);
  2744.     }
  2745.   free (recurse);
  2746.   *mangled += namelength;
  2747. }
  2748. /*
  2749. LOCAL FUNCTION
  2750. arm_special -- special handling of ARM/lucid mangled strings
  2751. SYNOPSIS
  2752. static int
  2753. arm_special (const char **mangled,
  2754.      string *declp);
  2755. DESCRIPTION
  2756. Process some special ARM style mangling forms that don't fit
  2757. the normal pattern.  For example:
  2758. __vtbl__3foo (foo virtual table)
  2759. __vtbl__3foo__3bar (bar::foo virtual table)
  2760.  */
  2761. static int
  2762. arm_special (mangled, declp)
  2763.      const char **mangled;
  2764.      string *declp;
  2765. {
  2766.   int n;
  2767.   int success = 1;
  2768.   const char *scan;
  2769.   if (strncmp (*mangled, ARM_VTABLE_STRING, ARM_VTABLE_STRLEN) == 0)
  2770.     {
  2771.       /* Found a ARM style virtual table, get past ARM_VTABLE_STRING
  2772.          and create the decl.  Note that we consume the entire mangled
  2773.  input string, which means that demangle_signature has no work
  2774.  to do.  */
  2775.       scan = *mangled + ARM_VTABLE_STRLEN;
  2776.       while (*scan != '')        /* first check it can be demangled */
  2777.         {
  2778.           n = consume_count (&scan);
  2779.           if (n == -1)
  2780.     {
  2781.       return (0);           /* no good */
  2782.     }
  2783.           scan += n;
  2784.           if (scan[0] == '_' && scan[1] == '_')
  2785.     {
  2786.       scan += 2;
  2787.     }
  2788.         }
  2789.       (*mangled) += ARM_VTABLE_STRLEN;
  2790.       while (**mangled != '')
  2791. {
  2792.   n = consume_count (mangled);
  2793.           if (n == -1
  2794.       || n > (long) strlen (*mangled))
  2795.     return 0;
  2796.   string_prependn (declp, *mangled, n);
  2797.   (*mangled) += n;
  2798.   if ((*mangled)[0] == '_' && (*mangled)[1] == '_')
  2799.     {
  2800.       string_prepend (declp, "::");
  2801.       (*mangled) += 2;
  2802.     }
  2803. }
  2804.       string_append (declp, " virtual table");
  2805.     }
  2806.   else
  2807.     {
  2808.       success = 0;
  2809.     }
  2810.   return (success);
  2811. }
  2812. /*
  2813. LOCAL FUNCTION
  2814. demangle_qualified -- demangle 'Q' qualified name strings
  2815. SYNOPSIS
  2816. static int
  2817. demangle_qualified (struct work_stuff *, const char *mangled,
  2818.     string *result, int isfuncname, int append);
  2819. DESCRIPTION
  2820. Demangle a qualified name, such as "Q25Outer5Inner" which is
  2821. the mangled form of "Outer::Inner".  The demangled output is
  2822. prepended or appended to the result string according to the
  2823. state of the append flag.
  2824. If isfuncname is nonzero, then the qualified name we are building
  2825. is going to be used as a member function name, so if it is a
  2826. constructor or destructor function, append an appropriate
  2827. constructor or destructor name.  I.E. for the above example,
  2828. the result for use as a constructor is "Outer::Inner::Inner"
  2829. and the result for use as a destructor is "Outer::Inner::~Inner".
  2830. BUGS
  2831. Numeric conversion is ASCII dependent (FIXME).
  2832.  */
  2833. static int
  2834. demangle_qualified (work, mangled, result, isfuncname, append)
  2835.      struct work_stuff *work;
  2836.      const char **mangled;
  2837.      string *result;
  2838.      int isfuncname;
  2839.      int append;
  2840. {
  2841.   int qualifiers = 0;
  2842.   int success = 1;
  2843.   char num[2];
  2844.   string temp;
  2845.   string last_name;
  2846.   int bindex = register_Btype (work);
  2847.   /* We only make use of ISFUNCNAME if the entity is a constructor or
  2848.      destructor.  */
  2849.   isfuncname = (isfuncname
  2850. && ((work->constructor & 1) || (work->destructor & 1)));
  2851.   string_init (&temp);
  2852.   string_init (&last_name);
  2853.   if ((*mangled)[0] == 'K')
  2854.     {
  2855.     /* Squangling qualified name reuse */
  2856.       int idx;
  2857.       (*mangled)++;
  2858.       idx = consume_count_with_underscores (mangled);
  2859.       if (idx == -1 || idx >= work -> numk)
  2860.         success = 0;
  2861.       else
  2862.         string_append (&temp, work -> ktypevec[idx]);
  2863.     }
  2864.   else
  2865.     switch ((*mangled)[1])
  2866.     {
  2867.     case '_':
  2868.       /* GNU mangled name with more than 9 classes.  The count is preceded
  2869.  by an underscore (to distinguish it from the <= 9 case) and followed
  2870.  by an underscore.  */
  2871.       (*mangled)++;
  2872.       qualifiers = consume_count_with_underscores (mangled);
  2873.       if (qualifiers == -1)
  2874. success = 0;
  2875.       break;
  2876.     case '1':
  2877.     case '2':
  2878.     case '3':
  2879.     case '4':
  2880.     case '5':
  2881.     case '6':
  2882.     case '7':
  2883.     case '8':
  2884.     case '9':
  2885.       /* The count is in a single digit.  */
  2886.       num[0] = (*mangled)[1];
  2887.       num[1] = '';
  2888.       qualifiers = atoi (num);
  2889.       /* If there is an underscore after the digit, skip it.  This is
  2890.  said to be for ARM-qualified names, but the ARM makes no
  2891.  mention of such an underscore.  Perhaps cfront uses one.  */
  2892.       if ((*mangled)[2] == '_')
  2893. {
  2894.   (*mangled)++;
  2895. }
  2896.       (*mangled) += 2;
  2897.       break;
  2898.     case '0':
  2899.     default:
  2900.       success = 0;
  2901.     }
  2902.   if (!success)
  2903.     return success;
  2904.   /* Pick off the names and collect them in the temp buffer in the order
  2905.      in which they are found, separated by '::'.  */
  2906.   while (qualifiers-- > 0)
  2907.     {
  2908.       int remember_K = 1;
  2909.       string_clear (&last_name);
  2910.       if (*mangled[0] == '_')
  2911. (*mangled)++;
  2912.       if (*mangled[0] == 't')
  2913. {
  2914.   /* Here we always append to TEMP since we will want to use
  2915.      the template name without the template parameters as a
  2916.      constructor or destructor name.  The appropriate
  2917.      (parameter-less) value is returned by demangle_template
  2918.      in LAST_NAME.  We do not remember the template type here,
  2919.      in order to match the G++ mangling algorithm.  */
  2920.   success = demangle_template(work, mangled, &temp,
  2921.       &last_name, 1, 0);
  2922.   if (!success)
  2923.     break;
  2924. }
  2925.       else if (*mangled[0] == 'K')
  2926. {
  2927.           int idx;
  2928.           (*mangled)++;
  2929.           idx = consume_count_with_underscores (mangled);
  2930.           if (idx == -1 || idx >= work->numk)
  2931.             success = 0;
  2932.           else
  2933.             string_append (&temp, work->ktypevec[idx]);
  2934.           remember_K = 0;
  2935.   if (!success) break;
  2936. }
  2937.       else
  2938. {
  2939.   if (EDG_DEMANGLING)
  2940.             {
  2941.       int namelength;
  2942.         /* Now recursively demangle the qualifier
  2943.          * This is necessary to deal with templates in
  2944.          * mangling styles like EDG */
  2945.       namelength = consume_count (mangled);
  2946.       if (namelength == -1)
  2947. {
  2948.   success = 0;
  2949.   break;
  2950. }
  2951.         recursively_demangle(work, mangled, &temp, namelength);
  2952.             }
  2953.           else
  2954.             {
  2955.               success = do_type (work, mangled, &last_name);
  2956.               if (!success)
  2957.                 break;
  2958.               string_appends (&temp, &last_name);
  2959.             }
  2960. }
  2961.       if (remember_K)
  2962. remember_Ktype (work, temp.b, LEN_STRING (&temp));
  2963.       if (qualifiers > 0)
  2964. string_append (&temp, SCOPE_STRING (work));
  2965.     }
  2966.   remember_Btype (work, temp.b, LEN_STRING (&temp), bindex);
  2967.   /* If we are using the result as a function name, we need to append
  2968.      the appropriate '::' separated constructor or destructor name.
  2969.      We do this here because this is the most convenient place, where
  2970.      we already have a pointer to the name and the length of the name.  */
  2971.   if (isfuncname)
  2972.     {
  2973.       string_append (&temp, SCOPE_STRING (work));
  2974.       if (work -> destructor & 1)
  2975. string_append (&temp, "~");
  2976.       string_appends (&temp, &last_name);
  2977.     }
  2978.   /* Now either prepend the temp buffer to the result, or append it,
  2979.      depending upon the state of the append flag.  */
  2980.   if (append)
  2981.     string_appends (result, &temp);
  2982.   else
  2983.     {
  2984.       if (!STRING_EMPTY (result))
  2985. string_append (&temp, SCOPE_STRING (work));
  2986.       string_prepends (result, &temp);
  2987.     }
  2988.   string_delete (&last_name);
  2989.   string_delete (&temp);
  2990.   return (success);
  2991. }
  2992. /*
  2993. LOCAL FUNCTION
  2994. get_count -- convert an ascii count to integer, consuming tokens
  2995. SYNOPSIS
  2996. static int
  2997. get_count (const char **type, int *count)
  2998. DESCRIPTION
  2999. Assume that *type points at a count in a mangled name; set
  3000. *count to its value, and set *type to the next character after
  3001. the count.  There are some weird rules in effect here.
  3002. If *type does not point at a string of digits, return zero.
  3003. If *type points at a string of digits followed by an
  3004. underscore, set *count to their value as an integer, advance
  3005. *type to point *after the underscore, and return 1.
  3006. If *type points at a string of digits not followed by an
  3007. underscore, consume only the first digit.  Set *count to its
  3008. value as an integer, leave *type pointing after that digit,
  3009. and return 1.
  3010.         The excuse for this odd behavior: in the ARM and HP demangling
  3011.         styles, a type can be followed by a repeat count of the form
  3012.         `Nxy', where:
  3013.         `x' is a single digit specifying how many additional copies
  3014.             of the type to append to the argument list, and
  3015.         `y' is one or more digits, specifying the zero-based index of
  3016.             the first repeated argument in the list.  Yes, as you're
  3017.             unmangling the name you can figure this out yourself, but
  3018.             it's there anyway.
  3019.         So, for example, in `bar__3fooFPiN51', the first argument is a
  3020.         pointer to an integer (`Pi'), and then the next five arguments
  3021.         are the same (`N5'), and the first repeat is the function's
  3022.         second argument (`1').
  3023. */
  3024. static int
  3025. get_count (type, count)
  3026.      const char **type;
  3027.      int *count;
  3028. {
  3029.   const char *p;
  3030.   int n;
  3031.   if (!ISDIGIT ((unsigned char)**type))
  3032.     return (0);
  3033.   else
  3034.     {
  3035.       *count = **type - '0';
  3036.       (*type)++;
  3037.       if (ISDIGIT ((unsigned char)**type))
  3038. {
  3039.   p = *type;
  3040.   n = *count;
  3041.   do
  3042.     {
  3043.       n *= 10;
  3044.       n += *p - '0';
  3045.       p++;
  3046.     }
  3047.   while (ISDIGIT ((unsigned char)*p));
  3048.   if (*p == '_')
  3049.     {
  3050.       *type = p + 1;
  3051.       *count = n;
  3052.     }
  3053. }
  3054.     }
  3055.   return (1);
  3056. }
  3057. /* RESULT will be initialised here; it will be freed on failure.  The
  3058.    value returned is really a type_kind_t.  */
  3059. static int
  3060. do_type (work, mangled, result)
  3061.      struct work_stuff *work;
  3062.      const char **mangled;
  3063.      string *result;
  3064. {
  3065.   int n;
  3066.   int done;
  3067.   int success;
  3068.   string decl;
  3069.   const char *remembered_type;
  3070.   int type_quals;
  3071.   string btype;
  3072.   type_kind_t tk = tk_none;
  3073.   string_init (&btype);
  3074.   string_init (&decl);
  3075.   string_init (result);
  3076.   done = 0;
  3077.   success = 1;
  3078.   while (success && !done)
  3079.     {
  3080.       int member;
  3081.       switch (**mangled)
  3082. {
  3083.   /* A pointer type */
  3084. case 'P':
  3085. case 'p':
  3086.   (*mangled)++;
  3087.   if (! (work -> options & DMGL_JAVA))
  3088.     string_prepend (&decl, "*");
  3089.   if (tk == tk_none)
  3090.     tk = tk_pointer;
  3091.   break;
  3092.   /* A reference type */
  3093. case 'R':
  3094.   (*mangled)++;
  3095.   string_prepend (&decl, "&");
  3096.   if (tk == tk_none)
  3097.     tk = tk_reference;
  3098.   break;
  3099.   /* An array */
  3100. case 'A':
  3101.   {
  3102.     ++(*mangled);
  3103.     if (!STRING_EMPTY (&decl)
  3104. && (decl.b[0] == '*' || decl.b[0] == '&'))
  3105.       {
  3106. string_prepend (&decl, "(");
  3107. string_append (&decl, ")");
  3108.       }
  3109.     string_append (&decl, "[");
  3110.     if (**mangled != '_')
  3111.       success = demangle_template_value_parm (work, mangled, &decl,
  3112.       tk_integral);
  3113.     if (**mangled == '_')
  3114.       ++(*mangled);
  3115.     string_append (&decl, "]");
  3116.     break;
  3117.   }
  3118. /* A back reference to a previously seen type */
  3119. case 'T':
  3120.   (*mangled)++;
  3121.   if (!get_count (mangled, &n) || n >= work -> ntypes)
  3122.     {
  3123.       success = 0;
  3124.     }
  3125.   else
  3126.     {
  3127.       remembered_type = work -> typevec[n];
  3128.       mangled = &remembered_type;
  3129.     }
  3130.   break;
  3131.   /* A function */
  3132. case 'F':
  3133.   (*mangled)++;
  3134.     if (!STRING_EMPTY (&decl)
  3135. && (decl.b[0] == '*' || decl.b[0] == '&'))
  3136.     {
  3137.       string_prepend (&decl, "(");
  3138.       string_append (&decl, ")");
  3139.     }
  3140.   /* After picking off the function args, we expect to either find the
  3141.      function return type (preceded by an '_') or the end of the
  3142.      string.  */
  3143.   if (!demangle_nested_args (work, mangled, &decl)
  3144.       || (**mangled != '_' && **mangled != ''))
  3145.     {
  3146.       success = 0;
  3147.       break;
  3148.     }
  3149.   if (success && (**mangled == '_'))
  3150.     (*mangled)++;
  3151.   break;
  3152. case 'M':
  3153. case 'O':
  3154.   {
  3155.     type_quals = TYPE_UNQUALIFIED;
  3156.     member = **mangled == 'M';
  3157.     (*mangled)++;
  3158.     string_append (&decl, ")");
  3159.     /* We don't need to prepend `::' for a qualified name;
  3160.        demangle_qualified will do that for us.  */
  3161.     if (**mangled != 'Q')
  3162.       string_prepend (&decl, SCOPE_STRING (work));
  3163.     if (ISDIGIT ((unsigned char)**mangled))
  3164.       {
  3165. n = consume_count (mangled);
  3166. if (n == -1
  3167.     || (int) strlen (*mangled) < n)
  3168.   {
  3169.     success = 0;
  3170.     break;
  3171.   }
  3172. string_prependn (&decl, *mangled, n);
  3173. *mangled += n;
  3174.       }
  3175.     else if (**mangled == 'X' || **mangled == 'Y')
  3176.       {
  3177. string temp;
  3178. do_type (work, mangled, &temp);
  3179. string_prepends (&decl, &temp);
  3180.       }
  3181.     else if (**mangled == 't')
  3182.       {
  3183. string temp;
  3184. string_init (&temp);
  3185. success = demangle_template (work, mangled, &temp,
  3186.      NULL, 1, 1);
  3187. if (success)
  3188.   {
  3189.     string_prependn (&decl, temp.b, temp.p - temp.b);
  3190.     string_clear (&temp);
  3191.   }
  3192. else
  3193.   break;
  3194.       }
  3195.     else if (**mangled == 'Q')
  3196.       {
  3197. success = demangle_qualified (work, mangled, &decl,
  3198.       /*isfuncnam=*/0, 
  3199.       /*append=*/0);
  3200. if (!success)
  3201.   break;
  3202.       }
  3203.     else
  3204.       {
  3205. success = 0;
  3206. break;
  3207.       }
  3208.     string_prepend (&decl, "(");
  3209.     if (member)
  3210.       {
  3211. switch (**mangled)
  3212.   {
  3213.   case 'C':
  3214.   case 'V':
  3215.   case 'u':
  3216.     type_quals |= code_for_qualifier (**mangled);
  3217.     (*mangled)++;
  3218.     break;
  3219.   default:
  3220.     break;
  3221.   }
  3222. if (*(*mangled)++ != 'F')
  3223.   {
  3224.     success = 0;
  3225.     break;
  3226.   }
  3227.       }
  3228.     if ((member && !demangle_nested_args (work, mangled, &decl))
  3229. || **mangled != '_')
  3230.       {
  3231. success = 0;
  3232. break;
  3233.       }
  3234.     (*mangled)++;
  3235.     if (! PRINT_ANSI_QUALIFIERS)
  3236.       {
  3237. break;
  3238.       }
  3239.     if (type_quals != TYPE_UNQUALIFIED)
  3240.       {
  3241. APPEND_BLANK (&decl);
  3242. string_append (&decl, qualifier_string (type_quals));
  3243.       }
  3244.     break;
  3245.   }
  3246.         case 'G':
  3247.   (*mangled)++;
  3248.   break;
  3249. case 'C':
  3250. case 'V':
  3251. case 'u':
  3252.   if (PRINT_ANSI_QUALIFIERS)
  3253.     {
  3254.       if (!STRING_EMPTY (&decl))
  3255. string_prepend (&decl, " ");
  3256.       string_prepend (&decl, demangle_qualifier (**mangled));
  3257.     }
  3258.   (*mangled)++;
  3259.   break;
  3260.   /*
  3261.     }
  3262.     */
  3263.   /* fall through */
  3264. default:
  3265.   done = 1;
  3266.   break;
  3267. }
  3268.     }
  3269.   if (success) switch (**mangled)
  3270.     {
  3271.       /* A qualified name, such as "Outer::Inner".  */
  3272.     case 'Q':
  3273.     case 'K':
  3274.       {
  3275.         success = demangle_qualified (work, mangled, result, 0, 1);
  3276.         break;
  3277.       }
  3278.     /* A back reference to a previously seen squangled type */
  3279.     case 'B':
  3280.       (*mangled)++;
  3281.       if (!get_count (mangled, &n) || n >= work -> numb)
  3282. success = 0;
  3283.       else
  3284. string_append (result, work->btypevec[n]);
  3285.       break;
  3286.     case 'X':
  3287.     case 'Y':
  3288.       /* A template parm.  We substitute the corresponding argument. */
  3289.       {
  3290. int idx;
  3291. (*mangled)++;
  3292. idx = consume_count_with_underscores (mangled);
  3293. if (idx == -1
  3294.     || (work->tmpl_argvec && idx >= work->ntmpl_args)
  3295.     || consume_count_with_underscores (mangled) == -1)
  3296.   {
  3297.     success = 0;
  3298.     break;
  3299.   }
  3300. if (work->tmpl_argvec)
  3301.   string_append (result, work->tmpl_argvec[idx]);
  3302. else
  3303.   string_append_template_idx (result, idx);
  3304. success = 1;
  3305.       }
  3306.     break;
  3307.     default:
  3308.       success = demangle_fund_type (work, mangled, result);
  3309.       if (tk == tk_none)
  3310. tk = (type_kind_t) success;
  3311.       break;
  3312.     }
  3313.   if (success)
  3314.     {
  3315.       if (!STRING_EMPTY (&decl))
  3316. {
  3317.   string_append (result, " ");
  3318.   string_appends (result, &decl);
  3319. }
  3320.     }
  3321.   else
  3322.     string_delete (result);
  3323.   string_delete (&decl);
  3324.   if (success)
  3325.     /* Assume an integral type, if we're not sure.  */
  3326.     return (int) ((tk == tk_none) ? tk_integral : tk);
  3327.   else
  3328.     return 0;
  3329. }
  3330. /* Given a pointer to a type string that represents a fundamental type
  3331.    argument (int, long, unsigned int, etc) in TYPE, a pointer to the
  3332.    string in which the demangled output is being built in RESULT, and
  3333.    the WORK structure, decode the types and add them to the result.
  3334.    For example:
  3335.     "Ci" => "const int"
  3336. "Sl" => "signed long"
  3337. "CUs" => "const unsigned short"
  3338.    The value returned is really a type_kind_t.  */
  3339. static int
  3340. demangle_fund_type (work, mangled, result)
  3341.      struct work_stuff *work;
  3342.      const char **mangled;
  3343.      string *result;
  3344. {
  3345.   int done = 0;
  3346.   int success = 1;
  3347.   char buf[10];
  3348.   unsigned int dec = 0;
  3349.   string btype;
  3350.   type_kind_t tk = tk_integral;
  3351.   string_init (&btype);
  3352.   /* First pick off any type qualifiers.  There can be more than one.  */
  3353.   while (!done)
  3354.     {
  3355.       switch (**mangled)
  3356. {
  3357. case 'C':
  3358. case 'V':
  3359. case 'u':
  3360.   if (PRINT_ANSI_QUALIFIERS)
  3361.     {
  3362.               if (!STRING_EMPTY (result))
  3363.                 string_prepend (result, " ");
  3364.       string_prepend (result, demangle_qualifier (**mangled));
  3365.     }
  3366.   (*mangled)++;
  3367.   break;
  3368. case 'U':
  3369.   (*mangled)++;
  3370.   APPEND_BLANK (result);
  3371.   string_append (result, "unsigned");
  3372.   break;
  3373. case 'S': /* signed char only */
  3374.   (*mangled)++;
  3375.   APPEND_BLANK (result);
  3376.   string_append (result, "signed");
  3377.   break;
  3378. case 'J':
  3379.   (*mangled)++;
  3380.   APPEND_BLANK (result);
  3381.   string_append (result, "__complex");
  3382.   break;
  3383. default:
  3384.   done = 1;
  3385.   break;
  3386. }
  3387.     }
  3388.   /* Now pick off the fundamental type.  There can be only one.  */
  3389.   switch (**mangled)
  3390.     {
  3391.     case '':
  3392.     case '_':
  3393.       break;
  3394.     case 'v':
  3395.       (*mangled)++;
  3396.       APPEND_BLANK (result);
  3397.       string_append (result, "void");
  3398.       break;
  3399.     case 'x':
  3400.       (*mangled)++;
  3401.       APPEND_BLANK (result);
  3402.       string_append (result, "long long");
  3403.       break;
  3404.     case 'l':
  3405.       (*mangled)++;
  3406.       APPEND_BLANK (result);
  3407.       string_append (result, "long");
  3408.       break;
  3409.     case 'i':
  3410.       (*mangled)++;
  3411.       APPEND_BLANK (result);
  3412.       string_append (result, "int");
  3413.       break;
  3414.     case 's':
  3415.       (*mangled)++;
  3416.       APPEND_BLANK (result);
  3417.       string_append (result, "short");
  3418.       break;
  3419.     case 'b':
  3420.       (*mangled)++;
  3421.       APPEND_BLANK (result);
  3422.       string_append (result, "bool");
  3423.       tk = tk_bool;
  3424.       break;
  3425.     case 'c':
  3426.       (*mangled)++;
  3427.       APPEND_BLANK (result);
  3428.       string_append (result, "char");
  3429.       tk = tk_char;
  3430.       break;
  3431.     case 'w':
  3432.       (*mangled)++;
  3433.       APPEND_BLANK (result);
  3434.       string_append (result, "wchar_t");
  3435.       tk = tk_char;
  3436.       break;
  3437.     case 'r':
  3438.       (*mangled)++;
  3439.       APPEND_BLANK (result);
  3440.       string_append (result, "long double");
  3441.       tk = tk_real;
  3442.       break;
  3443.     case 'd':
  3444.       (*mangled)++;
  3445.       APPEND_BLANK (result);
  3446.       string_append (result, "double");
  3447.       tk = tk_real;
  3448.       break;
  3449.     case 'f':
  3450.       (*mangled)++;
  3451.       APPEND_BLANK (result);
  3452.       string_append (result, "float");
  3453.       tk = tk_real;
  3454.       break;
  3455.     case 'G':
  3456.       (*mangled)++;
  3457.       if (!ISDIGIT ((unsigned char)**mangled))
  3458. {
  3459.   success = 0;
  3460.   break;
  3461. }
  3462.     case 'I':
  3463.       (*mangled)++;
  3464.       if (**mangled == '_')
  3465. {
  3466.   int i;
  3467.   (*mangled)++;
  3468.   for (i = 0;
  3469.        i < (long) sizeof (buf) - 1 && **mangled && **mangled != '_';
  3470.        (*mangled)++, i++)
  3471.     buf[i] = **mangled;
  3472.   if (**mangled != '_')
  3473.     {
  3474.       success = 0;
  3475.       break;
  3476.     }
  3477.   buf[i] = '';
  3478.   (*mangled)++;
  3479. }
  3480.       else
  3481. {
  3482.   strncpy (buf, *mangled, 2);
  3483.   buf[2] = '';
  3484.   *mangled += min (strlen (*mangled), 2);
  3485. }
  3486.       sscanf (buf, "%x", &dec);
  3487.       sprintf (buf, "int%u_t", dec);
  3488.       APPEND_BLANK (result);
  3489.       string_append (result, buf);
  3490.       break;
  3491.       /* fall through */
  3492.       /* An explicit type, such as "6mytype" or "7integer" */
  3493.     case '0':
  3494.     case '1':
  3495.     case '2':
  3496.     case '3':
  3497.     case '4':
  3498.     case '5':
  3499.     case '6':
  3500.     case '7':
  3501.     case '8':
  3502.     case '9':
  3503.       {
  3504.         int bindex = register_Btype (work);
  3505.         string btype;
  3506.         string_init (&btype);
  3507.         if (demangle_class_name (work, mangled, &btype)) {
  3508.           remember_Btype (work, btype.b, LEN_STRING (&btype), bindex);
  3509.           APPEND_BLANK (result);
  3510.           string_appends (result, &btype);
  3511.         }
  3512.         else
  3513.           success = 0;
  3514.         string_delete (&btype);
  3515.         break;
  3516.       }
  3517.     case 't':
  3518.       {
  3519.         success = demangle_template (work, mangled, &btype, 0, 1, 1);
  3520.         string_appends (result, &btype);
  3521.         break;
  3522.       }
  3523.     default:
  3524.       success = 0;
  3525.       break;
  3526.     }
  3527.   return success ? ((int) tk) : 0;
  3528. }
  3529. /* Handle a template's value parameter for HP aCC (extension from ARM)
  3530.    **mangled points to 'S' or 'U' */
  3531. static int
  3532. do_hpacc_template_const_value (work, mangled, result)
  3533.      struct work_stuff *work ATTRIBUTE_UNUSED;
  3534.      const char **mangled;
  3535.      string *result;
  3536. {
  3537.   int unsigned_const;
  3538.   if (**mangled != 'U' && **mangled != 'S')
  3539.     return 0;
  3540.   unsigned_const = (**mangled == 'U');
  3541.   (*mangled)++;
  3542.   switch (**mangled)
  3543.     {
  3544.       case 'N':
  3545.         string_append (result, "-");
  3546.         /* fall through */
  3547.       case 'P':
  3548.         (*mangled)++;
  3549.         break;
  3550.       case 'M':
  3551.         /* special case for -2^31 */
  3552.         string_append (result, "-2147483648");
  3553.         (*mangled)++;
  3554.         return 1;
  3555.       default:
  3556.         return 0;
  3557.     }
  3558.   /* We have to be looking at an integer now */
  3559.   if (!(ISDIGIT ((unsigned char)**mangled)))
  3560.     return 0;
  3561.   /* We only deal with integral values for template
  3562.      parameters -- so it's OK to look only for digits */
  3563.   while (ISDIGIT ((unsigned char)**mangled))
  3564.     {
  3565.       char_str[0] = **mangled;
  3566.       string_append (result, char_str);
  3567.       (*mangled)++;
  3568.     }
  3569.   if (unsigned_const)
  3570.     string_append (result, "U");
  3571.   /* FIXME? Some day we may have 64-bit (or larger :-) ) constants
  3572.      with L or LL suffixes. pai/1997-09-03 */
  3573.   return 1; /* success */
  3574. }
  3575. /* Handle a template's literal parameter for HP aCC (extension from ARM)
  3576.    **mangled is pointing to the 'A' */
  3577. static int
  3578. do_hpacc_template_literal (work, mangled, result)
  3579.      struct work_stuff *work;
  3580.      const char **mangled;
  3581.      string *result;
  3582. {
  3583.   int literal_len = 0;
  3584.   char * recurse;
  3585.   char * recurse_dem;
  3586.   if (**mangled != 'A')
  3587.     return 0;
  3588.   (*mangled)++;
  3589.   literal_len = consume_count (mangled);
  3590.   if (literal_len <= 0)
  3591.     return 0;
  3592.   /* Literal parameters are names of arrays, functions, etc.  and the
  3593.      canonical representation uses the address operator */
  3594.   string_append (result, "&");
  3595.   /* Now recursively demangle the literal name */
  3596.   recurse = (char *) xmalloc (literal_len + 1);
  3597.   memcpy (recurse, *mangled, literal_len);
  3598.   recurse[literal_len] = '00';
  3599.   recurse_dem = cplus_demangle (recurse, work->options);
  3600.   if (recurse_dem)
  3601.     {
  3602.       string_append (result, recurse_dem);
  3603.       free (recurse_dem);
  3604.     }
  3605.   else
  3606.     {
  3607.       string_appendn (result, *mangled, literal_len);
  3608.     }
  3609.   (*mangled) += literal_len;
  3610.   free (recurse);
  3611.   return 1;
  3612. }
  3613. static int
  3614. snarf_numeric_literal (args, arg)
  3615.      const char ** args;
  3616.      string * arg;
  3617. {
  3618.   if (**args == '-')
  3619.     {
  3620.       char_str[0] = '-';
  3621.       string_append (arg, char_str);
  3622.       (*args)++;
  3623.     }
  3624.   else if (**args == '+')
  3625.     (*args)++;
  3626.   if (!ISDIGIT ((unsigned char)**args))
  3627.     return 0;
  3628.   while (ISDIGIT ((unsigned char)**args))
  3629.     {
  3630.       char_str[0] = **args;
  3631.       string_append (arg, char_str);
  3632.       (*args)++;
  3633.     }
  3634.   return 1;
  3635. }
  3636. /* Demangle the next argument, given by MANGLED into RESULT, which
  3637.    *should be an uninitialized* string.  It will be initialized here,
  3638.    and free'd should anything go wrong.  */
  3639. static int
  3640. do_arg (work, mangled, result)
  3641.      struct work_stuff *work;
  3642.      const char **mangled;
  3643.      string *result;
  3644. {
  3645.   /* Remember where we started so that we can record the type, for
  3646.      non-squangling type remembering.  */
  3647.   const char *start = *mangled;
  3648.   string_init (result);
  3649.   if (work->nrepeats > 0)
  3650.     {
  3651.       --work->nrepeats;
  3652.       if (work->previous_argument == 0)
  3653. return 0;
  3654.       /* We want to reissue the previous type in this argument list.  */
  3655.       string_appends (result, work->previous_argument);
  3656.       return 1;
  3657.     }
  3658.   if (**mangled == 'n')
  3659.     {
  3660.       /* A squangling-style repeat.  */
  3661.       (*mangled)++;
  3662.       work->nrepeats = consume_count(mangled);
  3663.       if (work->nrepeats <= 0)
  3664. /* This was not a repeat count after all.  */
  3665. return 0;
  3666.       if (work->nrepeats > 9)
  3667. {
  3668.   if (**mangled != '_')
  3669.     /* The repeat count should be followed by an '_' in this
  3670.        case.  */
  3671.     return 0;
  3672.   else
  3673.     (*mangled)++;
  3674. }
  3675.       /* Now, the repeat is all set up.  */
  3676.       return do_arg (work, mangled, result);
  3677.     }
  3678.   /* Save the result in WORK->previous_argument so that we can find it
  3679.      if it's repeated.  Note that saving START is not good enough: we
  3680.      do not want to add additional types to the back-referenceable
  3681.      type vector when processing a repeated type.  */
  3682.   if (work->previous_argument)
  3683.     string_clear (work->previous_argument);
  3684.   else
  3685.     {
  3686.       work->previous_argument = (string*) xmalloc (sizeof (string));
  3687.       string_init (work->previous_argument);
  3688.     }
  3689.   if (!do_type (work, mangled, work->previous_argument))
  3690.     return 0;
  3691.   string_appends (result, work->previous_argument);
  3692.   remember_type (work, start, *mangled - start);
  3693.   return 1;
  3694. }
  3695. static void
  3696. remember_type (work, start, len)
  3697.      struct work_stuff *work;
  3698.      const char *start;
  3699.      int len;
  3700. {
  3701.   char *tem;
  3702.   if (work->forgetting_types)
  3703.     return;
  3704.   if (work -> ntypes >= work -> typevec_size)
  3705.     {
  3706.       if (work -> typevec_size == 0)
  3707. {
  3708.   work -> typevec_size = 3;
  3709.   work -> typevec
  3710.     = (char **) xmalloc (sizeof (char *) * work -> typevec_size);
  3711. }
  3712.       else
  3713. {
  3714.   work -> typevec_size *= 2;
  3715.   work -> typevec
  3716.     = (char **) xrealloc ((char *)work -> typevec,
  3717.   sizeof (char *) * work -> typevec_size);
  3718. }
  3719.     }
  3720.   tem = xmalloc (len + 1);
  3721.   memcpy (tem, start, len);
  3722.   tem[len] = '';
  3723.   work -> typevec[work -> ntypes++] = tem;
  3724. }
  3725. /* Remember a K type class qualifier. */
  3726. static void
  3727. remember_Ktype (work, start, len)
  3728.      struct work_stuff *work;
  3729.      const char *start;
  3730.      int len;
  3731. {
  3732.   char *tem;
  3733.   if (work -> numk >= work -> ksize)
  3734.     {
  3735.       if (work -> ksize == 0)
  3736. {
  3737.   work -> ksize = 5;
  3738.   work -> ktypevec
  3739.     = (char **) xmalloc (sizeof (char *) * work -> ksize);
  3740. }
  3741.       else
  3742. {
  3743.   work -> ksize *= 2;
  3744.   work -> ktypevec
  3745.     = (char **) xrealloc ((char *)work -> ktypevec,
  3746.   sizeof (char *) * work -> ksize);
  3747. }
  3748.     }
  3749.   tem = xmalloc (len + 1);
  3750.   memcpy (tem, start, len);
  3751.   tem[len] = '';
  3752.   work -> ktypevec[work -> numk++] = tem;
  3753. }
  3754. /* Register a B code, and get an index for it. B codes are registered
  3755.    as they are seen, rather than as they are completed, so map<temp<char> >
  3756.    registers map<temp<char> > as B0, and temp<char> as B1 */
  3757. static int
  3758. register_Btype (work)
  3759.      struct work_stuff *work;
  3760. {
  3761.   int ret;
  3762.   if (work -> numb >= work -> bsize)
  3763.     {
  3764.       if (work -> bsize == 0)
  3765. {
  3766.   work -> bsize = 5;
  3767.   work -> btypevec
  3768.     = (char **) xmalloc (sizeof (char *) * work -> bsize);
  3769. }
  3770.       else
  3771. {
  3772.   work -> bsize *= 2;
  3773.   work -> btypevec
  3774.     = (char **) xrealloc ((char *)work -> btypevec,
  3775.   sizeof (char *) * work -> bsize);
  3776. }
  3777.     }
  3778.   ret = work -> numb++;
  3779.   work -> btypevec[ret] = NULL;
  3780.   return(ret);
  3781. }
  3782. /* Store a value into a previously registered B code type. */
  3783. static void
  3784. remember_Btype (work, start, len, index)
  3785.      struct work_stuff *work;
  3786.      const char *start;
  3787.      int len, index;
  3788. {
  3789.   char *tem;
  3790.   tem = xmalloc (len + 1);
  3791.   memcpy (tem, start, len);
  3792.   tem[len] = '';
  3793.   work -> btypevec[index] = tem;
  3794. }
  3795. /* Lose all the info related to B and K type codes. */
  3796. static void
  3797. forget_B_and_K_types (work)
  3798.      struct work_stuff *work;
  3799. {
  3800.   int i;
  3801.   while (work -> numk > 0)
  3802.     {
  3803.       i = --(work -> numk);
  3804.       if (work -> ktypevec[i] != NULL)
  3805. {
  3806.   free (work -> ktypevec[i]);
  3807.   work -> ktypevec[i] = NULL;
  3808. }
  3809.     }
  3810.   while (work -> numb > 0)
  3811.     {
  3812.       i = --(work -> numb);
  3813.       if (work -> btypevec[i] != NULL)
  3814. {
  3815.   free (work -> btypevec[i]);
  3816.   work -> btypevec[i] = NULL;
  3817. }
  3818.     }
  3819. }
  3820. /* Forget the remembered types, but not the type vector itself.  */
  3821. static void
  3822. forget_types (work)
  3823.      struct work_stuff *work;
  3824. {
  3825.   int i;
  3826.   while (work -> ntypes > 0)
  3827.     {
  3828.       i = --(work -> ntypes);
  3829.       if (work -> typevec[i] != NULL)
  3830. {
  3831.   free (work -> typevec[i]);
  3832.   work -> typevec[i] = NULL;
  3833. }
  3834.     }
  3835. }
  3836. /* Process the argument list part of the signature, after any class spec
  3837.    has been consumed, as well as the first 'F' character (if any).  For
  3838.    example:
  3839.    "__als__3fooRT0" => process "RT0"
  3840.    "complexfunc5__FPFPc_PFl_i" => process "PFPc_PFl_i"
  3841.    DECLP must be already initialised, usually non-empty.  It won't be freed
  3842.    on failure.
  3843.    Note that g++ differs significantly from ARM and lucid style mangling
  3844.    with regards to references to previously seen types.  For example, given
  3845.    the source fragment:
  3846.      class foo {
  3847.        public:
  3848.        foo::foo (int, foo &ia, int, foo &ib, int, foo &ic);
  3849.      };
  3850.      foo::foo (int, foo &ia, int, foo &ib, int, foo &ic) { ia = ib = ic; }
  3851.      void foo (int, foo &ia, int, foo &ib, int, foo &ic) { ia = ib = ic; }
  3852.    g++ produces the names:
  3853.      __3fooiRT0iT2iT2
  3854.      foo__FiR3fooiT1iT1
  3855.    while lcc (and presumably other ARM style compilers as well) produces:
  3856.      foo__FiR3fooT1T2T1T2
  3857.      __ct__3fooFiR3fooT1T2T1T2
  3858.    Note that g++ bases its type numbers starting at zero and counts all
  3859.    previously seen types, while lucid/ARM bases its type numbers starting
  3860.    at one and only considers types after it has seen the 'F' character
  3861.    indicating the start of the function args.  For lucid/ARM style, we
  3862.    account for this difference by discarding any previously seen types when
  3863.    we see the 'F' character, and subtracting one from the type number
  3864.    reference.
  3865.  */
  3866. static int
  3867. demangle_args (work, mangled, declp)
  3868.      struct work_stuff *work;
  3869.      const char **mangled;
  3870.      string *declp;
  3871. {
  3872.   string arg;
  3873.   int need_comma = 0;
  3874.   int r;
  3875.   int t;
  3876.   const char *tem;
  3877.   char temptype;
  3878.   if (PRINT_ARG_TYPES)
  3879.     {
  3880.       string_append (declp, "(");
  3881.       if (**mangled == '')
  3882. {
  3883.   string_append (declp, "void");
  3884. }
  3885.     }
  3886.   while ((**mangled != '_' && **mangled != '' && **mangled != 'e')
  3887.  || work->nrepeats > 0)
  3888.     {
  3889.       if ((**mangled == 'N') || (**mangled == 'T'))
  3890. {
  3891.   temptype = *(*mangled)++;
  3892.   if (temptype == 'N')
  3893.     {
  3894.       if (!get_count (mangled, &r))
  3895. {
  3896.   return (0);
  3897. }
  3898.     }
  3899.   else
  3900.     {
  3901.       r = 1;
  3902.     }
  3903.           if ((HP_DEMANGLING || ARM_DEMANGLING || EDG_DEMANGLING) && work -> ntypes >= 10)
  3904.             {
  3905.               /* If we have 10 or more types we might have more than a 1 digit
  3906.                  index so we'll have to consume the whole count here. This
  3907.                  will lose if the next thing is a type name preceded by a
  3908.                  count but it's impossible to demangle that case properly
  3909.                  anyway. Eg if we already have 12 types is T12Pc "(..., type1,
  3910.                  Pc, ...)"  or "(..., type12, char *, ...)" */
  3911.               if ((t = consume_count(mangled)) <= 0)
  3912.                 {
  3913.                   return (0);
  3914.                 }
  3915.             }
  3916.           else
  3917.     {
  3918.       if (!get_count (mangled, &t))
  3919.      {
  3920.           return (0);
  3921.      }
  3922.     }
  3923.   if (LUCID_DEMANGLING || ARM_DEMANGLING || HP_DEMANGLING || EDG_DEMANGLING)
  3924.     {
  3925.       t--;
  3926.     }
  3927.   /* Validate the type index.  Protect against illegal indices from
  3928.      malformed type strings.  */
  3929.   if ((t < 0) || (t >= work -> ntypes))
  3930.     {
  3931.       return (0);
  3932.     }
  3933.   while (work->nrepeats > 0 || --r >= 0)
  3934.     {
  3935.       tem = work -> typevec[t];
  3936.       if (need_comma && PRINT_ARG_TYPES)
  3937. {
  3938.   string_append (declp, ", ");
  3939. }
  3940.       if (!do_arg (work, &tem, &arg))
  3941. {
  3942.   return (0);
  3943. }
  3944.       if (PRINT_ARG_TYPES)
  3945. {
  3946.   string_appends (declp, &arg);
  3947. }
  3948.       string_delete (&arg);
  3949.       need_comma = 1;
  3950.     }
  3951. }
  3952.       else
  3953. {
  3954.   if (need_comma && PRINT_ARG_TYPES)
  3955.     string_append (declp, ", ");
  3956.   if (!do_arg (work, mangled, &arg))
  3957.     return (0);
  3958.   if (PRINT_ARG_TYPES)
  3959.     string_appends (declp, &arg);
  3960.   string_delete (&arg);
  3961.   need_comma = 1;
  3962. }
  3963.     }
  3964.   if (**mangled == 'e')
  3965.     {
  3966.       (*mangled)++;
  3967.       if (PRINT_ARG_TYPES)
  3968. {
  3969.   if (need_comma)
  3970.     {
  3971.       string_append (declp, ",");
  3972.     }
  3973.   string_append (declp, "...");
  3974. }
  3975.     }
  3976.   if (PRINT_ARG_TYPES)
  3977.     {
  3978.       string_append (declp, ")");
  3979.     }
  3980.   return (1);
  3981. }
  3982. /* Like demangle_args, but for demangling the argument lists of function
  3983.    and method pointers or references, not top-level declarations.  */
  3984. static int
  3985. demangle_nested_args (work, mangled, declp)
  3986.      struct work_stuff *work;
  3987.      const char **mangled;
  3988.      string *declp;
  3989. {
  3990.   string* saved_previous_argument;
  3991.   int result;
  3992.   int saved_nrepeats;
  3993.   /* The G++ name-mangling algorithm does not remember types on nested
  3994.      argument lists, unless -fsquangling is used, and in that case the
  3995.      type vector updated by remember_type is not used.  So, we turn
  3996.      off remembering of types here.  */
  3997.   ++work->forgetting_types;
  3998.   /* For the repeat codes used with -fsquangling, we must keep track of
  3999.      the last argument.  */
  4000.   saved_previous_argument = work->previous_argument;
  4001.   saved_nrepeats = work->nrepeats;
  4002.   work->previous_argument = 0;
  4003.   work->nrepeats = 0;
  4004.   /* Actually demangle the arguments.  */
  4005.   result = demangle_args (work, mangled, declp);
  4006.   /* Restore the previous_argument field.  */
  4007.   if (work->previous_argument)
  4008.     string_delete (work->previous_argument);
  4009.   work->previous_argument = saved_previous_argument;
  4010.   --work->forgetting_types;
  4011.   work->nrepeats = saved_nrepeats;
  4012.   return result;
  4013. }
  4014. static void
  4015. demangle_function_name (work, mangled, declp, scan)
  4016.      struct work_stuff *work;
  4017.      const char **mangled;
  4018.      string *declp;
  4019.      const char *scan;
  4020. {
  4021.   size_t i;
  4022.   string type;
  4023.   const char *tem;
  4024.   string_appendn (declp, (*mangled), scan - (*mangled));
  4025.   string_need (declp, 1);
  4026.   *(declp -> p) = '';
  4027.   /* Consume the function name, including the "__" separating the name
  4028.      from the signature.  We are guaranteed that SCAN points to the
  4029.      separator.  */
  4030.   (*mangled) = scan + 2;
  4031.   /* We may be looking at an instantiation of a template function:
  4032.      foo__Xt1t2_Ft3t4, where t1, t2, ... are template arguments and a
  4033.      following _F marks the start of the function arguments.  Handle
  4034.      the template arguments first. */
  4035.   if (HP_DEMANGLING && (**mangled == 'X'))
  4036.     {
  4037.       demangle_arm_hp_template (work, mangled, 0, declp);
  4038.       /* This leaves MANGLED pointing to the 'F' marking func args */
  4039.     }
  4040.   if (LUCID_DEMANGLING || ARM_DEMANGLING || HP_DEMANGLING || EDG_DEMANGLING)
  4041.     {
  4042.       /* See if we have an ARM style constructor or destructor operator.
  4043.  If so, then just record it, clear the decl, and return.
  4044.  We can't build the actual constructor/destructor decl until later,
  4045.  when we recover the class name from the signature.  */
  4046.       if (strcmp (declp -> b, "__ct") == 0)
  4047. {
  4048.   work -> constructor += 1;
  4049.   string_clear (declp);
  4050.   return;
  4051. }
  4052.       else if (strcmp (declp -> b, "__dt") == 0)
  4053. {
  4054.   work -> destructor += 1;
  4055.   string_clear (declp);
  4056.   return;
  4057. }
  4058.     }
  4059.   if (declp->p - declp->b >= 3
  4060.       && declp->b[0] == 'o'
  4061.       && declp->b[1] == 'p'
  4062.       && strchr (cplus_markers, declp->b[2]) != NULL)
  4063.     {
  4064.       /* see if it's an assignment expression */
  4065.       if (declp->p - declp->b >= 10 /* op$assign_ */
  4066.   && memcmp (declp->b + 3, "assign_", 7) == 0)
  4067. {
  4068.   for (i = 0; i < ARRAY_SIZE (optable); i++)
  4069.     {
  4070.       int len = declp->p - declp->b - 10;
  4071.       if ((int) strlen (optable[i].in) == len
  4072.   && memcmp (optable[i].in, declp->b + 10, len) == 0)
  4073. {
  4074.   string_clear (declp);
  4075.   string_append (declp, "operator");
  4076.   string_append (declp, optable[i].out);
  4077.   string_append (declp, "=");
  4078.   break;
  4079. }
  4080.     }
  4081. }
  4082.       else
  4083. {
  4084.   for (i = 0; i < ARRAY_SIZE (optable); i++)
  4085.     {
  4086.       int len = declp->p - declp->b - 3;
  4087.       if ((int) strlen (optable[i].in) == len
  4088.   && memcmp (optable[i].in, declp->b + 3, len) == 0)
  4089. {
  4090.   string_clear (declp);
  4091.   string_append (declp, "operator");
  4092.   string_append (declp, optable[i].out);
  4093.   break;
  4094. }
  4095.     }
  4096. }
  4097.     }
  4098.   else if (declp->p - declp->b >= 5 && memcmp (declp->b, "type", 4) == 0
  4099.    && strchr (cplus_markers, declp->b[4]) != NULL)
  4100.     {
  4101.       /* type conversion operator */
  4102.       tem = declp->b + 5;
  4103.       if (do_type (work, &tem, &type))
  4104. {
  4105.   string_clear (declp);
  4106.   string_append (declp, "operator ");
  4107.   string_appends (declp, &type);
  4108.   string_delete (&type);
  4109. }
  4110.     }
  4111.   else if (declp->b[0] == '_' && declp->b[1] == '_'
  4112.    && declp->b[2] == 'o' && declp->b[3] == 'p')
  4113.     {
  4114.       /* ANSI.  */
  4115.       /* type conversion operator.  */
  4116.       tem = declp->b + 4;
  4117.       if (do_type (work, &tem, &type))
  4118. {
  4119.   string_clear (declp);
  4120.   string_append (declp, "operator ");
  4121.   string_appends (declp, &type);
  4122.   string_delete (&type);
  4123. }
  4124.     }
  4125.   else if (declp->b[0] == '_' && declp->b[1] == '_'
  4126.    && ISLOWER((unsigned char)declp->b[2])
  4127.    && ISLOWER((unsigned char)declp->b[3]))
  4128.     {
  4129.       if (declp->b[4] == '')
  4130. {
  4131.   /* Operator.  */
  4132.   for (i = 0; i < ARRAY_SIZE (optable); i++)
  4133.     {
  4134.       if (strlen (optable[i].in) == 2
  4135.   && memcmp (optable[i].in, declp->b + 2, 2) == 0)
  4136. {
  4137.   string_clear (declp);
  4138.   string_append (declp, "operator");
  4139.   string_append (declp, optable[i].out);
  4140.   break;
  4141. }
  4142.     }
  4143. }
  4144.       else
  4145. {
  4146.   if (declp->b[2] == 'a' && declp->b[5] == '')
  4147.     {
  4148.       /* Assignment.  */
  4149.       for (i = 0; i < ARRAY_SIZE (optable); i++)
  4150. {
  4151.   if (strlen (optable[i].in) == 3
  4152.       && memcmp (optable[i].in, declp->b + 2, 3) == 0)
  4153.     {
  4154.       string_clear (declp);
  4155.       string_append (declp, "operator");
  4156.       string_append (declp, optable[i].out);
  4157.       break;
  4158.     }
  4159. }
  4160.     }
  4161. }
  4162.     }
  4163. }
  4164. /* a mini string-handling package */
  4165. static void
  4166. string_need (s, n)
  4167.      string *s;
  4168.      int n;
  4169. {
  4170.   int tem;
  4171.   if (s->b == NULL)
  4172.     {
  4173.       if (n < 32)
  4174. {
  4175.   n = 32;
  4176. }
  4177.       s->p = s->b = xmalloc (n);
  4178.       s->e = s->b + n;
  4179.     }
  4180.   else if (s->e - s->p < n)
  4181.     {
  4182.       tem = s->p - s->b;
  4183.       n += tem;
  4184.       n *= 2;
  4185.       s->b = xrealloc (s->b, n);
  4186.       s->p = s->b + tem;
  4187.       s->e = s->b + n;
  4188.     }
  4189. }
  4190. static void
  4191. string_delete (s)
  4192.      string *s;
  4193. {
  4194.   if (s->b != NULL)
  4195.     {
  4196.       free (s->b);
  4197.       s->b = s->e = s->p = NULL;
  4198.     }
  4199. }
  4200. static void
  4201. string_init (s)
  4202.      string *s;
  4203. {
  4204.   s->b = s->p = s->e = NULL;
  4205. }
  4206. static void
  4207. string_clear (s)
  4208.      string *s;
  4209. {
  4210.   s->p = s->b;
  4211. }
  4212. #if 0
  4213. static int
  4214. string_empty (s)
  4215.      string *s;
  4216. {
  4217.   return (s->b == s->p);
  4218. }
  4219. #endif
  4220. static void
  4221. string_append (p, s)
  4222.      string *p;
  4223.      const char *s;
  4224. {
  4225.   int n;
  4226.   if (s == NULL || *s == '')
  4227.     return;
  4228.   n = strlen (s);
  4229.   string_need (p, n);
  4230.   memcpy (p->p, s, n);
  4231.   p->p += n;
  4232. }
  4233. static void
  4234. string_appends (p, s)
  4235.      string *p, *s;
  4236. {
  4237.   int n;
  4238.   if (s->b != s->p)
  4239.     {
  4240.       n = s->p - s->b;
  4241.       string_need (p, n);
  4242.       memcpy (p->p, s->b, n);
  4243.       p->p += n;
  4244.     }
  4245. }
  4246. static void
  4247. string_appendn (p, s, n)
  4248.      string *p;
  4249.      const char *s;
  4250.      int n;
  4251. {
  4252.   if (n != 0)
  4253.     {
  4254.       string_need (p, n);
  4255.       memcpy (p->p, s, n);
  4256.       p->p += n;
  4257.     }
  4258. }
  4259. static void
  4260. string_prepend (p, s)
  4261.      string *p;
  4262.      const char *s;
  4263. {
  4264.   if (s != NULL && *s != '')
  4265.     {
  4266.       string_prependn (p, s, strlen (s));
  4267.     }
  4268. }
  4269. static void
  4270. string_prepends (p, s)
  4271.      string *p, *s;
  4272. {
  4273.   if (s->b != s->p)
  4274.     {
  4275.       string_prependn (p, s->b, s->p - s->b);
  4276.     }
  4277. }
  4278. static void
  4279. string_prependn (p, s, n)
  4280.      string *p;
  4281.      const char *s;
  4282.      int n;
  4283. {
  4284.   char *q;
  4285.   if (n != 0)
  4286.     {
  4287.       string_need (p, n);
  4288.       for (q = p->p - 1; q >= p->b; q--)
  4289. {
  4290.   q[n] = q[0];
  4291. }
  4292.       memcpy (p->b, s, n);
  4293.       p->p += n;
  4294.     }
  4295. }
  4296. static void
  4297. string_append_template_idx (s, idx)
  4298.      string *s;
  4299.      int idx;
  4300. {
  4301.   char buf[INTBUF_SIZE + 1 /* 'T' */];
  4302.   sprintf(buf, "T%d", idx);
  4303.   string_append (s, buf);
  4304. }
  4305. /* To generate a standalone demangler program for testing purposes,
  4306.    just compile and link this file with -DMAIN and libiberty.a.  When
  4307.    run, it demangles each command line arg, or each stdin string, and
  4308.    prints the result on stdout.  */
  4309. #ifdef MAIN
  4310. #include "getopt.h"
  4311. static const char *program_name;
  4312. static const char *program_version = VERSION;
  4313. static int flags = DMGL_PARAMS | DMGL_ANSI;
  4314. static void demangle_it PARAMS ((char *));
  4315. static void usage PARAMS ((FILE *, int)) ATTRIBUTE_NORETURN;
  4316. static void fatal PARAMS ((const char *)) ATTRIBUTE_NORETURN;
  4317. static void print_demangler_list PARAMS ((FILE *));
  4318. static void
  4319. demangle_it (mangled_name)
  4320.      char *mangled_name;
  4321. {
  4322.   char *result;
  4323.   result = cplus_demangle (mangled_name, flags);
  4324.   if (result == NULL)
  4325.     {
  4326.       printf ("%sn", mangled_name);
  4327.     }
  4328.   else
  4329.     {
  4330.       printf ("%sn", result);
  4331.       free (result);
  4332.     }
  4333. }
  4334. static void 
  4335. print_demangler_list (stream)
  4336.      FILE *stream;
  4337. {
  4338.   struct demangler_engine *demangler; 
  4339.   fprintf (stream, "{%s", libiberty_demanglers->demangling_style_name);
  4340.   
  4341.   for (demangler = libiberty_demanglers + 1;
  4342.        demangler->demangling_style != unknown_demangling;
  4343.        ++demangler)
  4344.     fprintf (stream, ",%s", demangler->demangling_style_name);
  4345.   fprintf (stream, "}");
  4346. }
  4347. static void
  4348. usage (stream, status)
  4349.      FILE *stream;
  4350.      int status;
  4351. {
  4352.   fprintf (stream, "
  4353. Usage: %s [-_] [-n] [--strip-underscores] [--no-strip-underscores] n",
  4354.    program_name);
  4355.   fprintf (stream, "
  4356.        [-s ");
  4357.   print_demangler_list (stream);
  4358.   fprintf (stream, "]n");
  4359.   fprintf (stream, "
  4360.        [--format ");
  4361.   print_demangler_list (stream);
  4362.   fprintf (stream, "]n");
  4363.   fprintf (stream, "
  4364.        [--help] [--version] [arg...]n");
  4365.   exit (status);
  4366. }
  4367. #define MBUF_SIZE 32767
  4368. char mbuffer[MBUF_SIZE];
  4369. /* Defined in the automatically-generated underscore.c.  */
  4370. extern int prepends_underscore;
  4371. int strip_underscore = 0;
  4372. static struct option long_options[] = {
  4373.   {"strip-underscores", no_argument, 0, '_'},
  4374.   {"format", required_argument, 0, 's'},
  4375.   {"help", no_argument, 0, 'h'},
  4376.   {"java", no_argument, 0, 'j'},
  4377.   {"no-strip-underscores", no_argument, 0, 'n'},
  4378.   {"version", no_argument, 0, 'v'},
  4379.   {0, no_argument, 0, 0}
  4380. };
  4381. /* More 'friendly' abort that prints the line and file.
  4382.    config.h can #define abort fancy_abort if you like that sort of thing.  */
  4383. void
  4384. fancy_abort ()
  4385. {
  4386.   fatal ("Internal gcc abort.");
  4387. }
  4388. static const char *
  4389. standard_symbol_characters PARAMS ((void));
  4390. static const char *
  4391. hp_symbol_characters PARAMS ((void));
  4392. static const char *
  4393. gnu_v3_symbol_characters PARAMS ((void));
  4394. /* Return the string of non-alnum characters that may occur 
  4395.    as a valid symbol component, in the standard assembler symbol
  4396.    syntax.  */
  4397. static const char *
  4398. standard_symbol_characters ()
  4399. {
  4400.   return "_$.";
  4401. }
  4402. /* Return the string of non-alnum characters that may occur
  4403.    as a valid symbol name component in an HP object file.
  4404.    Note that, since HP's compiler generates object code straight from
  4405.    C++ source, without going through an assembler, its mangled
  4406.    identifiers can use all sorts of characters that no assembler would
  4407.    tolerate, so the alphabet this function creates is a little odd.
  4408.    Here are some sample mangled identifiers offered by HP:
  4409. typeid*__XT24AddressIndExpClassMember_
  4410. [Vftptr]key:__dt__32OrdinaryCompareIndExpClassMemberFv
  4411. __ct__Q2_9Elf64_Dyn18{unnamed.union.#1}Fv
  4412.    This still seems really weird to me, since nowhere else in this
  4413.    file is there anything to recognize curly brackets, parens, etc.
  4414.    I've talked with Srikanth <srikanth@cup.hp.com>, and he assures me
  4415.    this is right, but I still strongly suspect that there's a
  4416.    misunderstanding here.
  4417.    If we decide it's better for c++filt to use HP's assembler syntax
  4418.    to scrape identifiers out of its input, here's the definition of
  4419.    the symbol name syntax from the HP assembler manual:
  4420.        Symbols are composed of uppercase and lowercase letters, decimal
  4421.        digits, dollar symbol, period (.), ampersand (&), pound sign(#) and
  4422.        underscore (_). A symbol can begin with a letter, digit underscore or
  4423.        dollar sign. If a symbol begins with a digit, it must contain a
  4424.        non-digit character.
  4425.    So have fun.  */
  4426. static const char *
  4427. hp_symbol_characters ()
  4428. {
  4429.   return "_$.<>#,*&[]:(){}";
  4430. }
  4431. /* Return the string of non-alnum characters that may occur 
  4432.    as a valid symbol component in the GNU C++ V3 ABI mangling
  4433.    scheme.  */
  4434. static const char *
  4435. gnu_v3_symbol_characters ()
  4436. {
  4437.   return "_$.";
  4438. }
  4439. extern int main PARAMS ((int, char **));
  4440. int
  4441. main (argc, argv)
  4442.      int argc;
  4443.      char **argv;
  4444. {
  4445.   char *result;
  4446.   int c;
  4447.   const char *valid_symbols;
  4448.   program_name = argv[0];
  4449.   strip_underscore = prepends_underscore;
  4450.   while ((c = getopt_long (argc, argv, "_ns:j", long_options, (int *) 0)) != EOF)
  4451.     {
  4452.       switch (c)
  4453. {
  4454. case '?':
  4455.   usage (stderr, 1);
  4456.   break;
  4457. case 'h':
  4458.   usage (stdout, 0);
  4459. case 'n':
  4460.   strip_underscore = 0;
  4461.   break;
  4462. case 'v':
  4463.   printf ("GNU %s (C++ demangler), version %sn", program_name, program_version);
  4464.   return (0);
  4465. case '_':
  4466.   strip_underscore = 1;
  4467.   break;
  4468. case 'j':
  4469.   flags |= DMGL_JAVA;
  4470.   break;
  4471. case 's':
  4472.   {
  4473.     enum demangling_styles style;
  4474.     style = cplus_demangle_name_to_style (optarg);
  4475.     if (style == unknown_demangling)
  4476.       {
  4477. fprintf (stderr, "%s: unknown demangling style `%s'n",
  4478.  program_name, optarg);
  4479. return (1);
  4480.       }
  4481.     else
  4482.       cplus_demangle_set_style (style);
  4483.   }
  4484.   break;
  4485. }
  4486.     }
  4487.   if (optind < argc)
  4488.     {
  4489.       for ( ; optind < argc; optind++)
  4490. {
  4491.   demangle_it (argv[optind]);
  4492. }
  4493.     }
  4494.   else
  4495.     {
  4496.       switch (current_demangling_style)
  4497. {
  4498. case gnu_demangling:
  4499. case lucid_demangling:
  4500. case arm_demangling:
  4501. case java_demangling:
  4502. case edg_demangling:
  4503. case gnat_demangling:
  4504. case auto_demangling:
  4505.   valid_symbols = standard_symbol_characters ();
  4506.   break;
  4507. case hp_demangling:
  4508.   valid_symbols = hp_symbol_characters ();
  4509.   break;
  4510. case gnu_v3_demangling:
  4511.   valid_symbols = gnu_v3_symbol_characters ();
  4512.   break;
  4513. default:
  4514.   /* Folks should explicitly indicate the appropriate alphabet for
  4515.      each demangling.  Providing a default would allow the
  4516.      question to go unconsidered.  */
  4517.   abort ();
  4518. }
  4519.       for (;;)
  4520. {
  4521.   int i = 0;
  4522.   c = getchar ();
  4523.   /* Try to read a label.  */
  4524.   while (c != EOF && (ISALNUM (c) || strchr (valid_symbols, c)))
  4525.     {
  4526.       if (i >= MBUF_SIZE-1)
  4527. break;
  4528.       mbuffer[i++] = c;
  4529.       c = getchar ();
  4530.     }
  4531.   if (i > 0)
  4532.     {
  4533.       int skip_first = 0;
  4534.       if (mbuffer[0] == '.')
  4535. ++skip_first;
  4536.       if (strip_underscore && mbuffer[skip_first] == '_')
  4537. ++skip_first;
  4538.       if (skip_first > i)
  4539. skip_first = i;
  4540.       mbuffer[i] = 0;
  4541.       result = cplus_demangle (mbuffer + skip_first, flags);
  4542.       if (result)
  4543. {
  4544.   if (mbuffer[0] == '.')
  4545.     putc ('.', stdout);
  4546.   fputs (result, stdout);
  4547.   free (result);
  4548. }
  4549.       else
  4550. fputs (mbuffer, stdout);
  4551.       fflush (stdout);
  4552.     }
  4553.   if (c == EOF)
  4554.     break;
  4555.   putchar (c);
  4556.   fflush (stdout);
  4557. }
  4558.     }
  4559.   return (0);
  4560. }
  4561. static void
  4562. fatal (str)
  4563.      const char *str;
  4564. {
  4565.   fprintf (stderr, "%s: %sn", program_name, str);
  4566.   exit (1);
  4567. }
  4568. PTR
  4569. xmalloc (size)
  4570.   size_t size;
  4571. {
  4572.   register PTR value = (PTR) malloc (size);
  4573.   if (value == 0)
  4574.     fatal ("virtual memory exhausted");
  4575.   return value;
  4576. }
  4577. PTR
  4578. xrealloc (ptr, size)
  4579.   PTR ptr;
  4580.   size_t size;
  4581. {
  4582.   register PTR value = (PTR) realloc (ptr, size);
  4583.   if (value == 0)
  4584.     fatal ("virtual memory exhausted");
  4585.   return value;
  4586. }
  4587. #endif /* main */