home *** CD-ROM | disk | FTP | other *** search
/ InfoMagic Source Code 1993 July / THE_SOURCE_CODE_CD_ROM.iso / gnu / gdb-4.9 / gdb / symtab.c < prev    next >
Encoding:
C/C++ Source or Header  |  1993-05-12  |  73.5 KB  |  2,721 lines

  1. /* Symbol table lookup for the GNU debugger, GDB.
  2.    Copyright 1986, 1987, 1988, 1989, 1990, 1991, 1992
  3.    Free Software Foundation, Inc.
  4.  
  5. This file is part of GDB.
  6.  
  7. This program is free software; you can redistribute it and/or modify
  8. it under the terms of the GNU General Public License as published by
  9. the Free Software Foundation; either version 2 of the License, or
  10. (at your option) any later version.
  11.  
  12. This program 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
  15. GNU General Public License for more details.
  16.  
  17. You should have received a copy of the GNU General Public License
  18. along with this program; if not, write to the Free Software
  19. Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.  */
  20.  
  21. #include "defs.h"
  22. #include "symtab.h"
  23. #include "gdbtypes.h"
  24. #include "gdbcore.h"
  25. #include "frame.h"
  26. #include "target.h"
  27. #include "value.h"
  28. #include "symfile.h"
  29. #include "objfiles.h"
  30. #include "gdbcmd.h"
  31. #include "call-cmds.h"
  32. #include "regex.h"
  33. #include "expression.h"
  34. #include "language.h"
  35. #include "demangle.h"
  36.  
  37. #include <obstack.h>
  38. #include <assert.h>
  39.  
  40. #include <sys/types.h>
  41. #include <fcntl.h>
  42. #include <string.h>
  43. #include <sys/stat.h>
  44. #include <ctype.h>
  45.  
  46. /* Prototypes for local functions */
  47.  
  48. extern int
  49. find_methods PARAMS ((struct type *, char *, struct symbol **));
  50.  
  51. static void
  52. completion_list_add_name PARAMS ((char *, char *, int));
  53.  
  54. static struct symtabs_and_lines
  55. decode_line_2 PARAMS ((struct symbol *[], int, int));
  56.  
  57. static void
  58. rbreak_command PARAMS ((char *, int));
  59.  
  60. static void
  61. types_info PARAMS ((char *, int));
  62.  
  63. static void
  64. functions_info PARAMS ((char *, int));
  65.  
  66. static void
  67. variables_info PARAMS ((char *, int));
  68.  
  69. static void
  70. sources_info PARAMS ((char *, int));
  71.  
  72. static void
  73. list_symbols PARAMS ((char *, int, int));
  74.  
  75. static void
  76. output_source_filename PARAMS ((char *, int *));
  77.  
  78. static char *
  79. operator_chars PARAMS ((char *, char **));
  80.  
  81. static int
  82. find_line_common PARAMS ((struct linetable *, int, int *));
  83.  
  84. static struct partial_symbol *
  85. lookup_partial_symbol PARAMS ((struct partial_symtab *, const char *,
  86.                    int, enum namespace));
  87.  
  88. static struct symtab *
  89. lookup_symtab_1 PARAMS ((char *));
  90.  
  91. /* */
  92.  
  93. /* The single non-language-specific builtin type */
  94. struct type *builtin_type_error;
  95.  
  96. /* Block in which the most recently searched-for symbol was found.
  97.    Might be better to make this a parameter to lookup_symbol and 
  98.    value_of_this. */
  99.  
  100. const struct block *block_found;
  101.  
  102. char no_symtab_msg[] = "No symbol table is loaded.  Use the \"file\" command.";
  103.  
  104. /* While the C++ support is still in flux, issue a possibly helpful hint on
  105.    using the new command completion feature on single quoted demangled C++
  106.    symbols.  Remove when loose ends are cleaned up.   FIXME -fnf */
  107.  
  108. void
  109. cplusplus_hint (name)
  110.      char *name;
  111. {
  112.   printf ("Hint: try '%s<TAB> or '%s<ESC-?>\n", name, name);
  113.   printf ("(Note leading single quote.)\n");
  114. }
  115.  
  116. /* Check for a symtab of a specific name; first in symtabs, then in
  117.    psymtabs.  *If* there is no '/' in the name, a match after a '/'
  118.    in the symtab filename will also work.  */
  119.  
  120. static struct symtab *
  121. lookup_symtab_1 (name)
  122.      char *name;
  123. {
  124.   register struct symtab *s;
  125.   register struct partial_symtab *ps;
  126.   register char *slash;
  127.   register struct objfile *objfile;
  128.  
  129.  got_symtab:
  130.  
  131.   /* First, search for an exact match */
  132.  
  133.   ALL_SYMTABS (objfile, s)
  134.     if (STREQ (name, s->filename))
  135.       return s;
  136.  
  137.   slash = strchr (name, '/');
  138.  
  139.   /* Now, search for a matching tail (only if name doesn't have any dirs) */
  140.  
  141.   if (!slash)
  142.     ALL_SYMTABS (objfile, s)
  143.       {
  144.     char *p = s -> filename;
  145.     char *tail = strrchr (p, '/');
  146.  
  147.     if (tail)
  148.       p = tail + 1;
  149.  
  150.     if (STREQ (p, name))
  151.       return s;
  152.       }
  153.  
  154.   /* Same search rules as above apply here, but now we look thru the
  155.      psymtabs.  */
  156.  
  157.   ALL_PSYMTABS (objfile, ps)
  158.     if (STREQ (name, ps -> filename))
  159.       goto got_psymtab;
  160.  
  161.   if (!slash)
  162.     ALL_PSYMTABS (objfile, ps)
  163.       {
  164.     char *p = ps -> filename;
  165.     char *tail = strrchr (p, '/');
  166.  
  167.     if (tail)
  168.       p = tail + 1;
  169.  
  170.     if (STREQ (p, name))
  171.       goto got_psymtab;
  172.       }
  173.  
  174.   return (NULL);
  175.  
  176.  got_psymtab:
  177.  
  178.   if (ps -> readin)
  179.     error ("Internal: readin %s pst for `%s' found when no symtab found.",
  180.        ps -> filename, name);
  181.  
  182.   s = PSYMTAB_TO_SYMTAB (ps);
  183.  
  184.   if (s)
  185.     return s;
  186.  
  187.   /* At this point, we have located the psymtab for this file, but
  188.      the conversion to a symtab has failed.  This usually happens
  189.      when we are looking up an include file.  In this case,
  190.      PSYMTAB_TO_SYMTAB doesn't return a symtab, even though one has
  191.      been created.  So, we need to run through the symtabs again in
  192.      order to find the file.
  193.      XXX - This is a crock, and should be fixed inside of the the
  194.      symbol parsing routines. */
  195.   goto got_symtab;
  196. }
  197.  
  198. /* Lookup the symbol table of a source file named NAME.  Try a couple
  199.    of variations if the first lookup doesn't work.  */
  200.  
  201. struct symtab *
  202. lookup_symtab (name)
  203.      char *name;
  204. {
  205.   register struct symtab *s;
  206.   register char *copy;
  207.  
  208.   s = lookup_symtab_1 (name);
  209.   if (s) return s;
  210.  
  211.   /* If name not found as specified, see if adding ".c" helps.  */
  212.  
  213.   copy = (char *) alloca (strlen (name) + 3);
  214.   strcpy (copy, name);
  215.   strcat (copy, ".c");
  216.   s = lookup_symtab_1 (copy);
  217.   if (s) return s;
  218.  
  219.   /* We didn't find anything; die.  */
  220.   return 0;
  221. }
  222.  
  223. /* Lookup the partial symbol table of a source file named NAME.  This
  224.    only returns true on an exact match (ie. this semantics are
  225.    different from lookup_symtab.  */
  226.  
  227. struct partial_symtab *
  228. lookup_partial_symtab (name)
  229. char *name;
  230. {
  231.   register struct partial_symtab *pst;
  232.   register struct objfile *objfile;
  233.   
  234.   ALL_PSYMTABS (objfile, pst)
  235.     {
  236.       if (STREQ (name, pst -> filename))
  237.     {
  238.       return (pst);
  239.     }
  240.     }
  241.   return (NULL);
  242. }
  243.  
  244. /* Demangle a GDB method stub type.
  245.    Note that this function is g++ specific. */
  246.  
  247. char *
  248. gdb_mangle_name (type, i, j)
  249.      struct type *type;
  250.      int i, j;
  251. {
  252.   int mangled_name_len;
  253.   char *mangled_name;
  254.   struct fn_field *f = TYPE_FN_FIELDLIST1 (type, i);
  255.   struct fn_field *method = &f[j];
  256.   char *field_name = TYPE_FN_FIELDLIST_NAME (type, i);
  257.   char *physname = TYPE_FN_FIELD_PHYSNAME (f, j);
  258.   char *newname = type_name_no_tag (type);
  259.   int is_constructor = STREQ (field_name, newname);
  260.   int is_destructor = is_constructor && DESTRUCTOR_PREFIX_P (physname);
  261.   /* Need a new type prefix.  */
  262.   char *const_prefix = method->is_const ? "C" : "";
  263.   char *volatile_prefix = method->is_volatile ? "V" : "";
  264.   char buf[20];
  265. #ifndef GCC_MANGLE_BUG
  266.   int len = strlen (newname);
  267.  
  268.   if (is_destructor)
  269.     {
  270.       mangled_name = (char*) xmalloc(strlen(physname)+1);
  271.       strcpy(mangled_name, physname);
  272.       return mangled_name;
  273.     }
  274.  
  275.   sprintf (buf, "__%s%s%d", const_prefix, volatile_prefix, len);
  276.   mangled_name_len = ((is_constructor ? 0 : strlen (field_name))
  277.               + strlen (buf) + len
  278.               + strlen (physname)
  279.               + 1);
  280.  
  281.   /* Only needed for GNU-mangled names.  ANSI-mangled names
  282.      work with the normal mechanisms.  */
  283.   if (OPNAME_PREFIX_P (field_name))
  284.     {
  285.       char *opname = cplus_mangle_opname (field_name + 3, 0);
  286.       if (opname == NULL)
  287.     error ("No mangling for \"%s\"", field_name);
  288.       mangled_name_len += strlen (opname);
  289.       mangled_name = (char *)xmalloc (mangled_name_len);
  290.  
  291.       strncpy (mangled_name, field_name, 3);
  292.       mangled_name[3] = '\0';
  293.       strcat (mangled_name, opname);
  294.     }
  295.   else
  296.     {
  297.       mangled_name = (char *)xmalloc (mangled_name_len);
  298.       if (is_constructor)
  299.     mangled_name[0] = '\0';
  300.       else
  301.     strcpy (mangled_name, field_name);
  302.     }
  303.   strcat (mangled_name, buf);
  304.   strcat (mangled_name, newname);
  305. #else
  306.   char *opname;
  307.  
  308.   if (is_constructor)
  309.     {
  310.       buf[0] = '\0';
  311.     }
  312.   else
  313.     {
  314.       sprintf (buf, "__%s%s", const_prefix, volatile_prefix);
  315.     }
  316.  
  317.   mangled_name_len = ((is_constructor ? 0 : strlen (field_name))
  318.               + strlen (buf) + strlen (physname) + 1);
  319.  
  320.   /* Only needed for GNU-mangled names.  ANSI-mangled names
  321.      work with the normal mechanisms.  */
  322.   if (OPNAME_PREFIX_P (field_name))
  323.     {
  324.       opname = cplus_mangle_opname (field_name + 3, 0);
  325.       if (opname == NULL)
  326.     {
  327.       error ("No mangling for \"%s\"", field_name);
  328.     }
  329.       mangled_name_len += strlen (opname);
  330.       mangled_name = (char *) xmalloc (mangled_name_len);
  331.  
  332.       strncpy (mangled_name, field_name, 3);
  333.       strcpy (mangled_name + 3, opname);
  334.     }
  335.   else
  336.     {
  337.       mangled_name = (char *) xmalloc (mangled_name_len);
  338.       if (is_constructor)
  339.     {
  340.       mangled_name[0] = '\0';
  341.     }
  342.       else
  343.     {
  344.       strcpy (mangled_name, field_name);
  345.     }
  346.     }
  347.   strcat (mangled_name, buf);
  348.  
  349. #endif
  350.   strcat (mangled_name, physname);
  351.   return (mangled_name);
  352. }
  353.  
  354.  
  355. /* Find which partial symtab on contains PC.  Return 0 if none.  */
  356.  
  357. struct partial_symtab *
  358. find_pc_psymtab (pc)
  359.      register CORE_ADDR pc;
  360. {
  361.   register struct partial_symtab *pst;
  362.   register struct objfile *objfile;
  363.  
  364.   ALL_PSYMTABS (objfile, pst)
  365.     {
  366.       if (pc >= pst->textlow && pc < pst->texthigh)
  367.     return (pst);
  368.     }
  369.   return (NULL);
  370. }
  371.  
  372. /* Find which partial symbol within a psymtab contains PC.  Return 0
  373.    if none.  Check all psymtabs if PSYMTAB is 0.  */
  374. struct partial_symbol *
  375. find_pc_psymbol (psymtab, pc)
  376.      struct partial_symtab *psymtab;
  377.      CORE_ADDR pc;
  378. {
  379.   struct partial_symbol *best, *p;
  380.   CORE_ADDR best_pc;
  381.   
  382.   if (!psymtab)
  383.     psymtab = find_pc_psymtab (pc);
  384.   if (!psymtab)
  385.     return 0;
  386.  
  387.   best_pc = psymtab->textlow - 1;
  388.  
  389.   for (p = psymtab->objfile->static_psymbols.list + psymtab->statics_offset;
  390.        (p - (psymtab->objfile->static_psymbols.list + psymtab->statics_offset)
  391.     < psymtab->n_static_syms);
  392.        p++)
  393.     if (SYMBOL_NAMESPACE (p) == VAR_NAMESPACE
  394.     && SYMBOL_CLASS (p) == LOC_BLOCK
  395.     && pc >= SYMBOL_VALUE_ADDRESS (p)
  396.     && SYMBOL_VALUE_ADDRESS (p) > best_pc)
  397.       {
  398.     best_pc = SYMBOL_VALUE_ADDRESS (p);
  399.     best = p;
  400.       }
  401.   if (best_pc == psymtab->textlow - 1)
  402.     return 0;
  403.   return best;
  404. }
  405.  
  406.  
  407. /* Find the definition for a specified symbol name NAME
  408.    in namespace NAMESPACE, visible from lexical block BLOCK.
  409.    Returns the struct symbol pointer, or zero if no symbol is found.
  410.    If SYMTAB is non-NULL, store the symbol table in which the
  411.    symbol was found there, or NULL if not found.
  412.    C++: if IS_A_FIELD_OF_THIS is nonzero on entry, check to see if
  413.    NAME is a field of the current implied argument `this'.  If so set
  414.    *IS_A_FIELD_OF_THIS to 1, otherwise set it to zero. 
  415.    BLOCK_FOUND is set to the block in which NAME is found (in the case of
  416.    a field of `this', value_of_this sets BLOCK_FOUND to the proper value.) */
  417.  
  418. struct symbol *
  419. lookup_symbol (name, block, namespace, is_a_field_of_this, symtab)
  420.      const char *name;
  421.      register const struct block *block;
  422.      const enum namespace namespace;
  423.      int *is_a_field_of_this;
  424.      struct symtab **symtab;
  425. {
  426.   register struct symbol *sym;
  427.   register struct symtab *s;
  428.   register struct partial_symtab *ps;
  429.   struct blockvector *bv;
  430.   register struct objfile *objfile;
  431.   register struct block *b;
  432.   register struct minimal_symbol *msymbol;
  433.   char *temp;
  434.   extern char *gdb_completer_word_break_characters;
  435.  
  436.   /* Search specified block and its superiors.  */
  437.  
  438.   while (block != 0)
  439.     {
  440.       sym = lookup_block_symbol (block, name, namespace);
  441.       if (sym) 
  442.     {
  443.       block_found = block;
  444.       if (symtab != NULL)
  445.         {
  446.           /* Search the list of symtabs for one which contains the
  447.          address of the start of this block.  */
  448.           ALL_SYMTABS (objfile, s)
  449.         {
  450.           bv = BLOCKVECTOR (s);
  451.           b = BLOCKVECTOR_BLOCK (bv, GLOBAL_BLOCK);
  452.           if (BLOCK_START (b) <= BLOCK_START (block)
  453.               && BLOCK_END (b) > BLOCK_START (block))
  454.             goto found;
  455.         }
  456. found:
  457.           *symtab = s;
  458.         }
  459.  
  460.       return (sym);
  461.     }
  462.       block = BLOCK_SUPERBLOCK (block);
  463.     }
  464.  
  465.   /* FIXME: this code is never executed--block is always NULL at this
  466.      point.  What is it trying to do, anyway?  We already should have
  467.      checked the STATIC_BLOCK above (it is the superblock of top-level
  468.      blocks).  Why is VAR_NAMESPACE special-cased?  */
  469.   /* Don't need to mess with the psymtabs; if we have a block,
  470.      that file is read in.  If we don't, then we deal later with
  471.      all the psymtab stuff that needs checking.  */
  472.   if (namespace == VAR_NAMESPACE && block != NULL)
  473.     {
  474.       struct block *b;
  475.       /* Find the right symtab.  */
  476.       ALL_SYMTABS (objfile, s)
  477.     {
  478.       bv = BLOCKVECTOR (s);
  479.       b = BLOCKVECTOR_BLOCK (bv, STATIC_BLOCK);
  480.       if (BLOCK_START (b) <= BLOCK_START (block)
  481.           && BLOCK_END (b) > BLOCK_START (block))
  482.         {
  483.           sym = lookup_block_symbol (b, name, VAR_NAMESPACE);
  484.           if (sym)
  485.         {
  486.           block_found = b;
  487.           if (symtab != NULL)
  488.             *symtab = s;
  489.           return sym;
  490.         }
  491.         }
  492.     }
  493.     }
  494.  
  495.  
  496.   /* C++: If requested to do so by the caller, 
  497.      check to see if NAME is a field of `this'. */
  498.   if (is_a_field_of_this)
  499.     {
  500.       struct value *v = value_of_this (0);
  501.       
  502.       *is_a_field_of_this = 0;
  503.       if (v && check_field (v, name))
  504.     {
  505.       *is_a_field_of_this = 1;
  506.       if (symtab != NULL)
  507.         *symtab = NULL;
  508.       return 0;
  509.     }
  510.     }
  511.  
  512.   /* Now search all global blocks.  Do the symtab's first, then
  513.      check the psymtab's */
  514.   
  515.   ALL_SYMTABS (objfile, s)
  516.     {
  517.       bv = BLOCKVECTOR (s);
  518.       block = BLOCKVECTOR_BLOCK (bv, GLOBAL_BLOCK);
  519.       sym = lookup_block_symbol (block, name, namespace);
  520.       if (sym) 
  521.     {
  522.       block_found = block;
  523.       if (symtab != NULL)
  524.         *symtab = s;
  525.       return sym;
  526.     }
  527.     }
  528.  
  529.   /* Check for the possibility of the symbol being a global function
  530.      that is stored in one of the minimal symbol tables.  Eventually, all
  531.      global symbols might be resolved in this way.  */
  532.   
  533.   if (namespace == VAR_NAMESPACE)
  534.     {
  535.       msymbol = lookup_minimal_symbol (name, (struct objfile *) NULL);
  536.       if (msymbol != NULL)
  537.     {
  538.       s = find_pc_symtab (SYMBOL_VALUE_ADDRESS (msymbol));
  539.       /* If S is NULL, there are no debug symbols for this file.
  540.          Skip this stuff and check for matching static symbols below. */
  541.       if (s != NULL)
  542.         {
  543.           bv = BLOCKVECTOR (s);
  544.           block = BLOCKVECTOR_BLOCK (bv, GLOBAL_BLOCK);
  545.           sym = lookup_block_symbol (block, SYMBOL_NAME (msymbol),
  546.                      namespace);
  547.               /* We kept static functions in minimal symbol table as well as
  548.          in static scope. We want to find them in the symbol table. */
  549.         if (!sym) {
  550.           block = BLOCKVECTOR_BLOCK (bv, STATIC_BLOCK);
  551.           sym = lookup_block_symbol (block, SYMBOL_NAME (msymbol),
  552.                          namespace);
  553.         }
  554.  
  555.           /* sym == 0 if symbol was found in the minimal symbol table
  556.          but not in the symtab.
  557.          Return 0 to use the msymbol definition of "foo_".
  558.  
  559.          This happens for Fortran  "foo_" symbols,
  560.          which are "foo" in the symtab.
  561.  
  562.          This can also happen if "asm" is used to make a
  563.          regular symbol but not a debugging symbol, e.g.
  564.          asm(".globl _main");
  565.          asm("_main:");
  566.          */
  567.  
  568.           if (symtab != NULL)
  569.         *symtab = s;
  570.           return sym;
  571.         }
  572.     }
  573.     }
  574.       
  575.   ALL_PSYMTABS (objfile, ps)
  576.     {
  577.       if (!ps->readin && lookup_partial_symbol (ps, name, 1, namespace))
  578.     {
  579.       s = PSYMTAB_TO_SYMTAB(ps);
  580.       bv = BLOCKVECTOR (s);
  581.       block = BLOCKVECTOR_BLOCK (bv, GLOBAL_BLOCK);
  582.       sym = lookup_block_symbol (block, name, namespace);
  583.       if (!sym)
  584.         error ("Internal: global symbol `%s' found in %s psymtab but not in symtab", name, ps->filename);
  585.       if (symtab != NULL)
  586.         *symtab = s;
  587.       return sym;
  588.     }
  589.     }
  590.  
  591.   /* Now search all per-file blocks.
  592.      Not strictly correct, but more useful than an error.
  593.      Do the symtabs first, then check the psymtabs */
  594.  
  595.   ALL_SYMTABS (objfile, s)
  596.     {
  597.       bv = BLOCKVECTOR (s);
  598.       block = BLOCKVECTOR_BLOCK (bv, STATIC_BLOCK);
  599.       sym = lookup_block_symbol (block, name, namespace);
  600.       if (sym) 
  601.     {
  602.       block_found = block;
  603.       if (symtab != NULL)
  604.         *symtab = s;
  605.       return sym;
  606.     }
  607.     }
  608.  
  609.   ALL_PSYMTABS (objfile, ps)
  610.     {
  611.       if (!ps->readin && lookup_partial_symbol (ps, name, 0, namespace))
  612.     {
  613.       s = PSYMTAB_TO_SYMTAB(ps);
  614.       bv = BLOCKVECTOR (s);
  615.       block = BLOCKVECTOR_BLOCK (bv, STATIC_BLOCK);
  616.       sym = lookup_block_symbol (block, name, namespace);
  617.       if (!sym)
  618.         error ("Internal: static symbol `%s' found in %s psymtab but not in symtab", name, ps->filename);
  619.       if (symtab != NULL)
  620.         *symtab = s;
  621.       return sym;
  622.     }
  623.     }
  624.  
  625.   /* Now search all per-file blocks for static mangled symbols.
  626.      Do the symtabs first, then check the psymtabs.  */
  627.  
  628.   if (namespace == VAR_NAMESPACE)
  629.     {
  630.       ALL_SYMTABS (objfile, s)
  631.     {
  632.       bv = BLOCKVECTOR (s);
  633.       block = BLOCKVECTOR_BLOCK (bv, STATIC_BLOCK);
  634.       sym = lookup_block_symbol (block, name, VAR_NAMESPACE);
  635.       if (sym) 
  636.         {
  637.           block_found = block;
  638.           if (symtab != NULL)
  639.         *symtab = s;
  640.           return sym;
  641.         }
  642.     }
  643.  
  644.       ALL_PSYMTABS (objfile, ps)
  645.     {
  646.       if (!ps->readin && lookup_partial_symbol (ps, name, 0, VAR_NAMESPACE))
  647.         {
  648.           s = PSYMTAB_TO_SYMTAB(ps);
  649.           bv = BLOCKVECTOR (s);
  650.           block = BLOCKVECTOR_BLOCK (bv, STATIC_BLOCK);
  651.           sym = lookup_block_symbol (block, name, VAR_NAMESPACE);
  652.           if (!sym)
  653.         error ("Internal: mangled static symbol `%s' found in %s psymtab but not in symtab", name, ps->filename);
  654.           if (symtab != NULL)
  655.         *symtab = s;
  656.           return sym;
  657.         }
  658.     }
  659.     }
  660.  
  661.   if (symtab != NULL)
  662.     *symtab = NULL;
  663.   return 0;
  664. }
  665.  
  666. /* Look, in partial_symtab PST, for symbol NAME.  Check the global
  667.    symbols if GLOBAL, the static symbols if not */
  668.  
  669. static struct partial_symbol *
  670. lookup_partial_symbol (pst, name, global, namespace)
  671.      struct partial_symtab *pst;
  672.      const char *name;
  673.      int global;
  674.      enum namespace namespace;
  675. {
  676.   struct partial_symbol *start, *psym;
  677.   struct partial_symbol *top, *bottom, *center;
  678.   int length = (global ? pst->n_global_syms : pst->n_static_syms);
  679.   int do_linear_search = 1;
  680.  
  681.   if (length == 0)
  682.     {
  683.       return (NULL);
  684.     }
  685.   
  686.   start = (global ?
  687.        pst->objfile->global_psymbols.list + pst->globals_offset :
  688.        pst->objfile->static_psymbols.list + pst->statics_offset  );
  689.  
  690.   if (global)        /* This means we can use a binary search. */
  691.     {
  692.       do_linear_search = 0;
  693.  
  694.       /* Binary search.  This search is guaranteed to end with center
  695.          pointing at the earliest partial symbol with the correct
  696.      name.  At that point *all* partial symbols with that name
  697.      will be checked against the correct namespace. */
  698.  
  699.       bottom = start;
  700.       top = start + length - 1;
  701.       while (top > bottom)
  702.     {
  703.       center = bottom + (top - bottom) / 2;
  704.       assert (center < top);
  705.       if (!do_linear_search && SYMBOL_LANGUAGE (center) == language_cplus)
  706.         {
  707.           do_linear_search = 1;
  708.         }
  709.       if (STRCMP (SYMBOL_NAME (center), name) >= 0)
  710.         {
  711.           top = center;
  712.         }
  713.       else
  714.         {
  715.           bottom = center + 1;
  716.         }
  717.     }
  718.       assert (top == bottom);
  719.       while (STREQ (SYMBOL_NAME (top), name))
  720.     {
  721.       if (SYMBOL_NAMESPACE (top) == namespace)
  722.         {
  723.           return top;
  724.         }
  725.       top ++;
  726.     }
  727.     }
  728.  
  729.   /* Can't use a binary search or else we found during the binary search that
  730.      we should also do a linear search. */
  731.  
  732.   if (do_linear_search)
  733.     {
  734.       for (psym = start; psym < start + length; psym++)
  735.     {
  736.       if (namespace == SYMBOL_NAMESPACE (psym))
  737.         {
  738.           if (SYMBOL_MATCHES_NAME (psym, name))
  739.         {
  740.           return (psym);
  741.         }
  742.         }
  743.     }
  744.     }
  745.  
  746.   return (NULL);
  747. }
  748.  
  749. /* Find the psymtab containing main(). */
  750. /* FIXME:  What about languages without main() or specially linked
  751.    executables that have no main() ? */
  752.  
  753. struct partial_symtab *
  754. find_main_psymtab ()
  755. {
  756.   register struct partial_symtab *pst;
  757.   register struct objfile *objfile;
  758.  
  759.   ALL_PSYMTABS (objfile, pst)
  760.     {
  761.       if (lookup_partial_symbol (pst, "main", 1, VAR_NAMESPACE))
  762.     {
  763.       return (pst);
  764.     }
  765.     }
  766.   return (NULL);
  767. }
  768.  
  769. /* Search BLOCK for symbol NAME in NAMESPACE.
  770.  
  771.    Note that if NAME is the demangled form of a C++ symbol, we will fail
  772.    to find a match during the binary search of the non-encoded names, but
  773.    for now we don't worry about the slight inefficiency of looking for
  774.    a match we'll never find, since it will go pretty quick.  Once the
  775.    binary search terminates, we drop through and do a straight linear
  776.    search on the symbols.  Each symbol which is marked as being a C++
  777.    symbol (language_cplus set) has both the encoded and non-encoded names
  778.    tested for a match. */
  779.  
  780. struct symbol *
  781. lookup_block_symbol (block, name, namespace)
  782.      register const struct block *block;
  783.      const char *name;
  784.      const enum namespace namespace;
  785. {
  786.   register int bot, top, inc;
  787.   register struct symbol *sym;
  788.   register struct symbol *sym_found = NULL;
  789.   register int do_linear_search = 1;
  790.  
  791.   /* If the blocks's symbols were sorted, start with a binary search.  */
  792.  
  793.   if (BLOCK_SHOULD_SORT (block))
  794.     {
  795.       /* Reset the linear search flag so if the binary search fails, we
  796.      won't do the linear search once unless we find some reason to
  797.      do so, such as finding a C++ symbol during the binary search.
  798.      Note that for C++ modules, ALL the symbols in a block should
  799.      end up marked as C++ symbols. */
  800.  
  801.       do_linear_search = 0;
  802.       top = BLOCK_NSYMS (block);
  803.       bot = 0;
  804.  
  805.       /* Advance BOT to not far before the first symbol whose name is NAME. */
  806.  
  807.       while (1)
  808.     {
  809.       inc = (top - bot + 1);
  810.       /* No need to keep binary searching for the last few bits worth.  */
  811.       if (inc < 4)
  812.         {
  813.           break;
  814.         }
  815.       inc = (inc >> 1) + bot;
  816.       sym = BLOCK_SYM (block, inc);
  817.       if (!do_linear_search && SYMBOL_LANGUAGE (sym) == language_cplus)
  818.         {
  819.           do_linear_search = 1;
  820.         }
  821.       if (SYMBOL_NAME (sym)[0] < name[0])
  822.         {
  823.           bot = inc;
  824.         }
  825.       else if (SYMBOL_NAME (sym)[0] > name[0])
  826.         {
  827.           top = inc;
  828.         }
  829.       else if (STRCMP (SYMBOL_NAME (sym), name) < 0)
  830.         {
  831.           bot = inc;
  832.         }
  833.       else
  834.         {
  835.           top = inc;
  836.         }
  837.     }
  838.  
  839.       /* Now scan forward until we run out of symbols, find one whose name is
  840.      greater than NAME, or find one we want.  If there is more than one
  841.      symbol with the right name and namespace, we return the first one.
  842.      dbxread.c is careful to make sure that if one is a register then it
  843.      comes first.  */
  844.  
  845.       top = BLOCK_NSYMS (block);
  846.       while (bot < top)
  847.     {
  848.       sym = BLOCK_SYM (block, bot);
  849.       inc = SYMBOL_NAME (sym)[0] - name[0];
  850.       if (inc == 0)
  851.         {
  852.           inc = STRCMP (SYMBOL_NAME (sym), name);
  853.         }
  854.       if (inc == 0 && SYMBOL_NAMESPACE (sym) == namespace)
  855.         {
  856.           return (sym);
  857.         }
  858.       if (inc > 0)
  859.         {
  860.           break;
  861.         }
  862.       bot++;
  863.     }
  864.     }
  865.  
  866.   /* Here if block isn't sorted, or we fail to find a match during the
  867.      binary search above.  If during the binary search above, we find a
  868.      symbol which is a C++ symbol, then we have re-enabled the linear
  869.      search flag which was reset when starting the binary search.
  870.  
  871.      This loop is equivalent to the loop above, but hacked greatly for speed.
  872.  
  873.      Note that parameter symbols do not always show up last in the
  874.      list; this loop makes sure to take anything else other than
  875.      parameter symbols first; it only uses parameter symbols as a
  876.      last resort.  Note that this only takes up extra computation
  877.      time on a match.  */
  878.  
  879.   if (do_linear_search)
  880.     {
  881.       top = BLOCK_NSYMS (block);
  882.       bot = 0;
  883.       while (bot < top)
  884.     {
  885.       sym = BLOCK_SYM (block, bot);
  886.       if (SYMBOL_NAMESPACE (sym) == namespace &&
  887.           SYMBOL_MATCHES_NAME (sym, name))
  888.         {
  889.           sym_found = sym;
  890.           if (SYMBOL_CLASS (sym) != LOC_ARG &&
  891.           SYMBOL_CLASS (sym) != LOC_LOCAL_ARG &&
  892.           SYMBOL_CLASS (sym) != LOC_REF_ARG &&
  893.           SYMBOL_CLASS (sym) != LOC_REGPARM &&
  894.           SYMBOL_CLASS (sym) != LOC_REGPARM_ADDR)
  895.         {
  896.           break;
  897.         }
  898.         }
  899.       bot++;
  900.     }
  901.     }
  902.   return (sym_found);        /* Will be NULL if not found. */
  903. }
  904.  
  905.  
  906. /* Return the symbol for the function which contains a specified
  907.    lexical block, described by a struct block BL.  */
  908.  
  909. struct symbol *
  910. block_function (bl)
  911.      struct block *bl;
  912. {
  913.   while (BLOCK_FUNCTION (bl) == 0 && BLOCK_SUPERBLOCK (bl) != 0)
  914.     bl = BLOCK_SUPERBLOCK (bl);
  915.  
  916.   return BLOCK_FUNCTION (bl);
  917. }
  918.  
  919. /* Find the symtab associated with PC.  Look through the psymtabs and read in
  920.    another symtab if necessary. */
  921.  
  922. struct symtab *
  923. find_pc_symtab (pc)
  924.      register CORE_ADDR pc;
  925. {
  926.   register struct block *b;
  927.   struct blockvector *bv;
  928.   register struct symtab *s = NULL;
  929.   register struct symtab *best_s = NULL;
  930.   register struct partial_symtab *ps;
  931.   register struct objfile *objfile;
  932.   int distance = 0;;
  933.  
  934.  
  935.   /* Search all symtabs for one whose file contains our pc */
  936.  
  937.   ALL_SYMTABS (objfile, s)
  938.     {
  939.       bv = BLOCKVECTOR (s);
  940.       b = BLOCKVECTOR_BLOCK (bv, GLOBAL_BLOCK);
  941.       if (BLOCK_START (b) <= pc
  942.       && BLOCK_END (b) > pc
  943.       && (distance == 0
  944.           || BLOCK_END (b) - BLOCK_START (b) < distance))
  945.     {
  946.       distance = BLOCK_END (b) - BLOCK_START (b);
  947.       best_s = s;
  948.     }
  949.     }
  950.  
  951.   if (best_s != NULL)
  952.     return(best_s);
  953.  
  954.   s = NULL;
  955.   ps = find_pc_psymtab (pc);
  956.   if (ps)
  957.     {
  958.       if (ps->readin)
  959.     printf_filtered ("(Internal error: pc 0x%x in read in psymtab, but not in symtab.)\n", pc);
  960.       s = PSYMTAB_TO_SYMTAB (ps);
  961.     }
  962.   return (s);
  963. }
  964.  
  965. /* Find the source file and line number for a given PC value.
  966.    Return a structure containing a symtab pointer, a line number,
  967.    and a pc range for the entire source line.
  968.    The value's .pc field is NOT the specified pc.
  969.    NOTCURRENT nonzero means, if specified pc is on a line boundary,
  970.    use the line that ends there.  Otherwise, in that case, the line
  971.    that begins there is used.  */
  972.  
  973. /* The big complication here is that a line may start in one file, and end just
  974.    before the start of another file.  This usually occurs when you #include
  975.    code in the middle of a subroutine.  To properly find the end of a line's PC
  976.    range, we must search all symtabs associated with this compilation unit, and
  977.    find the one whose first PC is closer than that of the next line in this
  978.    symtab.
  979.  
  980.    FIXME:  We used to complain here about zero length or negative length line
  981.    tables, but there are two problems with this: (1) some symtabs may not have
  982.    any line numbers due to gcc -g1 compilation, and (2) this function is called
  983.    during single stepping, when we don't own the terminal and thus can't
  984.    produce any output.  One solution might be to implement a mechanism whereby
  985.    complaints can be queued until we regain control of the terminal.  -fnf
  986.  */
  987.  
  988. struct symtab_and_line
  989. find_pc_line (pc, notcurrent)
  990.      CORE_ADDR pc;
  991.      int notcurrent;
  992. {
  993.   struct symtab *s;
  994.   register struct linetable *l;
  995.   register int len;
  996.   register int i;
  997.   register struct linetable_entry *item;
  998.   struct symtab_and_line val;
  999.   struct blockvector *bv;
  1000.  
  1001.   /* Info on best line seen so far, and where it starts, and its file.  */
  1002.  
  1003.   struct linetable_entry *best = NULL;
  1004.   CORE_ADDR best_end = 0;
  1005.   struct symtab *best_symtab = 0;
  1006.  
  1007.   /* Store here the first line number
  1008.      of a file which contains the line at the smallest pc after PC.
  1009.      If we don't find a line whose range contains PC,
  1010.      we will use a line one less than this,
  1011.      with a range from the start of that file to the first line's pc.  */
  1012.   struct linetable_entry *alt = NULL;
  1013.   struct symtab *alt_symtab = 0;
  1014.  
  1015.   /* Info on best line seen in this file.  */
  1016.  
  1017.   struct linetable_entry *prev;
  1018.  
  1019.   /* If this pc is not from the current frame,
  1020.      it is the address of the end of a call instruction.
  1021.      Quite likely that is the start of the following statement.
  1022.      But what we want is the statement containing the instruction.
  1023.      Fudge the pc to make sure we get that.  */
  1024.  
  1025.   if (notcurrent) pc -= 1;
  1026.  
  1027.   s = find_pc_symtab (pc);
  1028.   if (!s)
  1029.     {
  1030.       val.symtab = 0;
  1031.       val.line = 0;
  1032.       val.pc = pc;
  1033.       val.end = 0;
  1034.       return val;
  1035.     }
  1036.  
  1037.   bv = BLOCKVECTOR (s);
  1038.  
  1039.   /* Look at all the symtabs that share this blockvector.
  1040.      They all have the same apriori range, that we found was right;
  1041.      but they have different line tables.  */
  1042.  
  1043.   for (; s && BLOCKVECTOR (s) == bv; s = s->next)
  1044.     {
  1045.       /* Find the best line in this symtab.  */
  1046.       l = LINETABLE (s);
  1047.       if (!l)
  1048.         continue;
  1049.       len = l->nitems;
  1050.       if (len <= 0)          /* See FIXME above. */
  1051.     {
  1052.       continue;
  1053.     }
  1054.  
  1055.       prev = NULL;
  1056.       item = l->item;        /* Get first line info */
  1057.  
  1058.       /* Is this file's first line closer than the first lines of other files?
  1059.      If so, record this file, and its first line, as best alternate.  */
  1060.       if (item->pc > pc && (!alt || item->pc < alt->pc))
  1061.     {
  1062.       alt = item;
  1063.       alt_symtab = s;
  1064.     }
  1065.  
  1066.       for (i = 0; i < len; i++, item++)
  1067.     {
  1068.       /* Return the last line that did not start after PC.  */
  1069.       if (item->pc > pc)
  1070.         break;
  1071.  
  1072.       prev = item;
  1073.     }
  1074.  
  1075.       /* At this point, prev points at the line whose start addr is <= pc, and
  1076.      item points at the next line.  If we ran off the end of the linetable
  1077.      (pc >= start of the last line), then prev == item.  If pc < start of
  1078.      the first line, prev will not be set.  */
  1079.  
  1080.       /* Is this file's best line closer than the best in the other files?
  1081.      If so, record this file, and its best line, as best so far.  */
  1082.  
  1083.       if (prev && (!best || prev->pc > best->pc))
  1084.     {
  1085.       best = prev;
  1086.       best_symtab = s;
  1087.       /* If another line is in the linetable, and its PC is closer
  1088.          than the best_end we currently have, take it as best_end.  */
  1089.       if (i < len && (best_end == 0 || best_end > item->pc))
  1090.         best_end = item->pc;
  1091.     }
  1092.     }
  1093.  
  1094.   if (!best_symtab)
  1095.     {
  1096.       if (!alt_symtab)
  1097.     {            /* If we didn't find any line # info, just
  1098.                  return zeros.  */
  1099.       val.symtab = 0;
  1100.       val.line = 0;
  1101.       val.pc = pc;
  1102.       val.end = 0;
  1103.     }
  1104.       else
  1105.     {
  1106.       val.symtab = alt_symtab;
  1107.       val.line = alt->line - 1;
  1108.       val.pc = BLOCK_END (BLOCKVECTOR_BLOCK (bv, GLOBAL_BLOCK));
  1109.       val.end = alt->pc;
  1110.     }
  1111.     }
  1112.   else
  1113.     {
  1114.       val.symtab = best_symtab;
  1115.       val.line = best->line;
  1116.       val.pc = best->pc;
  1117.       if (best_end && (!alt || best_end < alt->pc))
  1118.     val.end = best_end;
  1119.       else if (alt)
  1120.     val.end = alt->pc;
  1121.       else
  1122.     val.end = BLOCK_END (BLOCKVECTOR_BLOCK (bv, GLOBAL_BLOCK));
  1123.     }
  1124.   return val;
  1125. }
  1126.  
  1127. /* Find the PC value for a given source file and line number.
  1128.    Returns zero for invalid line number.
  1129.    The source file is specified with a struct symtab.  */
  1130.  
  1131. CORE_ADDR
  1132. find_line_pc (symtab, line)
  1133.      struct symtab *symtab;
  1134.      int line;
  1135. {
  1136.   register struct linetable *l;
  1137.   register int ind;
  1138.   int dummy;
  1139.  
  1140.   if (symtab == 0)
  1141.     return 0;
  1142.   l = LINETABLE (symtab);
  1143.   ind = find_line_common(l, line, &dummy);
  1144.   return (ind >= 0) ? l->item[ind].pc : 0;
  1145. }
  1146.  
  1147. /* Find the range of pc values in a line.
  1148.    Store the starting pc of the line into *STARTPTR
  1149.    and the ending pc (start of next line) into *ENDPTR.
  1150.    Returns 1 to indicate success.
  1151.    Returns 0 if could not find the specified line.  */
  1152.  
  1153. int
  1154. find_line_pc_range (symtab, thisline, startptr, endptr)
  1155.      struct symtab *symtab;
  1156.      int thisline;
  1157.      CORE_ADDR *startptr, *endptr;
  1158. {
  1159.   register struct linetable *l;
  1160.   register int ind;
  1161.   int exact_match;        /* did we get an exact linenumber match */
  1162.  
  1163.   if (symtab == 0)
  1164.     return 0;
  1165.  
  1166.   l = LINETABLE (symtab);
  1167.   ind = find_line_common (l, thisline, &exact_match);
  1168.   if (ind >= 0)
  1169.     {
  1170.       *startptr = l->item[ind].pc;
  1171.       /* If we have not seen an entry for the specified line,
  1172.      assume that means the specified line has zero bytes.  */
  1173.       if (!exact_match || ind == l->nitems-1)
  1174.     *endptr = *startptr;
  1175.       else
  1176.     /* Perhaps the following entry is for the following line.
  1177.        It's worth a try.  */
  1178.     if (ind+1 < l->nitems
  1179.      && l->item[ind+1].line == thisline + 1)
  1180.       *endptr = l->item[ind+1].pc;
  1181.     else
  1182.       *endptr = find_line_pc (symtab, thisline+1);
  1183.       return 1;
  1184.     }
  1185.  
  1186.   return 0;
  1187. }
  1188.  
  1189. /* Given a line table and a line number, return the index into the line
  1190.    table for the pc of the nearest line whose number is >= the specified one.
  1191.    Return -1 if none is found.  The value is >= 0 if it is an index.
  1192.  
  1193.    Set *EXACT_MATCH nonzero if the value returned is an exact match.  */
  1194.  
  1195. static int
  1196. find_line_common (l, lineno, exact_match)
  1197.      register struct linetable *l;
  1198.      register int lineno;
  1199.      int *exact_match;
  1200. {
  1201.   register int i;
  1202.   register int len;
  1203.  
  1204.   /* BEST is the smallest linenumber > LINENO so far seen,
  1205.      or 0 if none has been seen so far.
  1206.      BEST_INDEX identifies the item for it.  */
  1207.  
  1208.   int best_index = -1;
  1209.   int best = 0;
  1210.  
  1211.   if (lineno <= 0)
  1212.     return -1;
  1213.   if (l == 0)
  1214.     return -1;
  1215.  
  1216.   len = l->nitems;
  1217.   for (i = 0; i < len; i++)
  1218.     {
  1219.       register struct linetable_entry *item = &(l->item[i]);
  1220.  
  1221.       if (item->line == lineno)
  1222.     {
  1223.       *exact_match = 1;
  1224.       return i;
  1225.     }
  1226.  
  1227.       if (item->line > lineno && (best == 0 || item->line < best))
  1228.     {
  1229.       best = item->line;
  1230.       best_index = i;
  1231.     }
  1232.     }
  1233.  
  1234.   /* If we got here, we didn't get an exact match.  */
  1235.  
  1236.   *exact_match = 0;
  1237.   return best_index;
  1238. }
  1239.  
  1240. int
  1241. find_pc_line_pc_range (pc, startptr, endptr)
  1242.      CORE_ADDR pc;
  1243.      CORE_ADDR *startptr, *endptr;
  1244. {
  1245.   struct symtab_and_line sal;
  1246.   sal = find_pc_line (pc, 0);
  1247.   *startptr = sal.pc;
  1248.   *endptr = sal.end;
  1249.   return sal.symtab != 0;
  1250. }
  1251.  
  1252. /* If P is of the form "operator[ \t]+..." where `...' is
  1253.    some legitimate operator text, return a pointer to the
  1254.    beginning of the substring of the operator text.
  1255.    Otherwise, return "".  */
  1256. static char *
  1257. operator_chars (p, end)
  1258.      char *p;
  1259.      char **end;
  1260. {
  1261.   *end = "";
  1262.   if (strncmp (p, "operator", 8))
  1263.     return *end;
  1264.   p += 8;
  1265.  
  1266.   /* Don't get faked out by `operator' being part of a longer
  1267.      identifier.  */
  1268.   if (isalpha(*p) || *p == '_' || *p == '$' || *p == '\0')
  1269.     return *end;
  1270.  
  1271.   /* Allow some whitespace between `operator' and the operator symbol.  */
  1272.   while (*p == ' ' || *p == '\t')
  1273.     p++;
  1274.  
  1275.   /* Recognize 'operator TYPENAME'. */
  1276.  
  1277.   if (isalpha(*p) || *p == '_' || *p == '$')
  1278.     {
  1279.       register char *q = p+1;
  1280.       while (isalnum(*q) || *q == '_' || *q == '$')
  1281.     q++;
  1282.       *end = q;
  1283.       return p;
  1284.     }
  1285.  
  1286.   switch (*p)
  1287.     {
  1288.     case '!':
  1289.     case '=':
  1290.     case '*':
  1291.     case '/':
  1292.     case '%':
  1293.     case '^':
  1294.       if (p[1] == '=')
  1295.     *end = p+2;
  1296.       else
  1297.     *end = p+1;
  1298.       return p;
  1299.     case '<':
  1300.     case '>':
  1301.     case '+':
  1302.     case '-':
  1303.     case '&':
  1304.     case '|':
  1305.       if (p[1] == '=' || p[1] == p[0])
  1306.     *end = p+2;
  1307.       else
  1308.     *end = p+1;
  1309.       return p;
  1310.     case '~':
  1311.     case ',':
  1312.       *end = p+1;
  1313.       return p;
  1314.     case '(':
  1315.       if (p[1] != ')')
  1316.     error ("`operator ()' must be specified without whitespace in `()'");
  1317.       *end = p+2;
  1318.       return p;
  1319.     case '?':
  1320.       if (p[1] != ':')
  1321.     error ("`operator ?:' must be specified without whitespace in `?:'");
  1322.       *end = p+2;
  1323.       return p;
  1324.     case '[':
  1325.       if (p[1] != ']')
  1326.     error ("`operator []' must be specified without whitespace in `[]'");
  1327.       *end = p+2;
  1328.       return p;
  1329.     default:
  1330.       error ("`operator %s' not supported", p);
  1331.       break;
  1332.     }
  1333.   *end = "";
  1334.   return *end;
  1335. }
  1336.  
  1337. /* Recursive helper function for decode_line_1.
  1338.  * Look for methods named NAME in type T.
  1339.  * Return number of matches.
  1340.  * Put matches in SYM_ARR (which better be big enough!).
  1341.  * These allocations seem to define "big enough":
  1342.  * sym_arr = (struct symbol **) alloca(TYPE_NFN_FIELDS_TOTAL (t) * sizeof(struct symbol*));
  1343.  * Note that this function is g++ specific.
  1344.  */
  1345.  
  1346. int
  1347. find_methods (t, name, sym_arr)
  1348.      struct type *t;
  1349.      char *name;
  1350.      struct symbol **sym_arr;
  1351. {
  1352.   int i1 = 0;
  1353.   int ibase;
  1354.   struct symbol *sym_class;
  1355.   char *class_name = type_name_no_tag (t);
  1356.   /* Ignore this class if it doesn't have a name.
  1357.      This prevents core dumps, but is just a workaround
  1358.      because we might not find the function in
  1359.      certain cases, such as
  1360.      struct D {virtual int f();}
  1361.      struct C : D {virtual int g();}
  1362.      (in this case g++ 1.35.1- does not put out a name
  1363.      for D as such, it defines type 19 (for example) in
  1364.      the same stab as C, and then does a
  1365.      .stabs "D:T19" and a .stabs "D:t19".
  1366.      Thus
  1367.      "break C::f" should not be looking for field f in
  1368.      the class named D, 
  1369.      but just for the field f in the baseclasses of C
  1370.      (no matter what their names).
  1371.      
  1372.      However, I don't know how to replace the code below
  1373.      that depends on knowing the name of D.  */
  1374.   if (class_name
  1375.       && (sym_class = lookup_symbol (class_name,
  1376.                      (struct block *)NULL,
  1377.                      STRUCT_NAMESPACE,
  1378.                      (int *)NULL,
  1379.                      (struct symtab **)NULL)))
  1380.     {
  1381.       int method_counter;
  1382.       t = SYMBOL_TYPE (sym_class);
  1383.       for (method_counter = TYPE_NFN_FIELDS (t) - 1;
  1384.        method_counter >= 0;
  1385.        --method_counter)
  1386.     {
  1387.       int field_counter;
  1388.       struct fn_field *f = TYPE_FN_FIELDLIST1 (t, method_counter);
  1389.  
  1390.       char *method_name = TYPE_FN_FIELDLIST_NAME (t, method_counter);
  1391.       if (STREQ (name, method_name))
  1392.         /* Find all the fields with that name.  */
  1393.         for (field_counter = TYPE_FN_FIELDLIST_LENGTH (t, method_counter) - 1;
  1394.          field_counter >= 0;
  1395.          --field_counter)
  1396.           {
  1397.         char *phys_name;
  1398.         if (TYPE_FN_FIELD_STUB (f, field_counter))
  1399.           check_stub_method (t, method_counter, field_counter);
  1400.         phys_name = TYPE_FN_FIELD_PHYSNAME (f, field_counter);
  1401.         /* Destructor is handled by caller, dont add it to the list */
  1402.         if (DESTRUCTOR_PREFIX_P (phys_name))
  1403.           continue;
  1404.         sym_arr[i1] = lookup_symbol (phys_name,
  1405.                          SYMBOL_BLOCK_VALUE (sym_class),
  1406.                          VAR_NAMESPACE,
  1407.                          (int *) NULL,
  1408.                          (struct symtab **) NULL);
  1409.         if (sym_arr[i1]) i1++;
  1410.         else
  1411.           {
  1412.             fputs_filtered("(Cannot find method ", stdout);
  1413.             fprintf_symbol_filtered (stdout, phys_name,
  1414.                          language_cplus, DMGL_PARAMS);
  1415.             fputs_filtered(" - possibly inlined.)\n", stdout);
  1416.           }
  1417.           }
  1418.     }
  1419.     }
  1420.   /* Only search baseclasses if there is no match yet,
  1421.    * since names in derived classes override those in baseclasses.
  1422.    */
  1423.   if (i1)
  1424.     return i1;
  1425.   for (ibase = 0; ibase < TYPE_N_BASECLASSES (t); ibase++)
  1426.     i1 += find_methods(TYPE_BASECLASS(t, ibase), name,
  1427.                sym_arr + i1);
  1428.   return i1;
  1429. }
  1430.  
  1431. /* Parse a string that specifies a line number.
  1432.    Pass the address of a char * variable; that variable will be
  1433.    advanced over the characters actually parsed.
  1434.  
  1435.    The string can be:
  1436.  
  1437.    LINENUM -- that line number in current file.  PC returned is 0.
  1438.    FILE:LINENUM -- that line in that file.  PC returned is 0.
  1439.    FUNCTION -- line number of openbrace of that function.
  1440.       PC returned is the start of the function.
  1441.    VARIABLE -- line number of definition of that variable.
  1442.       PC returned is 0.
  1443.    FILE:FUNCTION -- likewise, but prefer functions in that file.
  1444.    *EXPR -- line in which address EXPR appears.
  1445.  
  1446.    FUNCTION may be an undebuggable function found in minimal symbol table.
  1447.  
  1448.    If the argument FUNFIRSTLINE is nonzero, we want the first line
  1449.    of real code inside a function when a function is specified.
  1450.  
  1451.    DEFAULT_SYMTAB specifies the file to use if none is specified.
  1452.    It defaults to current_source_symtab.
  1453.    DEFAULT_LINE specifies the line number to use for relative
  1454.    line numbers (that start with signs).  Defaults to current_source_line.
  1455.  
  1456.    Note that it is possible to return zero for the symtab
  1457.    if no file is validly specified.  Callers must check that.
  1458.    Also, the line number returned may be invalid.  */
  1459.  
  1460. struct symtabs_and_lines
  1461. decode_line_1 (argptr, funfirstline, default_symtab, default_line)
  1462.      char **argptr;
  1463.      int funfirstline;
  1464.      struct symtab *default_symtab;
  1465.      int default_line;
  1466. {
  1467.   struct symtabs_and_lines values;
  1468. #ifdef HPPA_COMPILER_BUG
  1469.   /* FIXME: The native HP 9000/700 compiler has a bug which appears
  1470.      when optimizing this file with target i960-vxworks.  I haven't
  1471.      been able to construct a simple test case.  The problem is that
  1472.      in the second call to SKIP_PROLOGUE below, the compiler somehow
  1473.      does not realize that the statement val = find_pc_line (...) will
  1474.      change the values of the fields of val.  It extracts the elements
  1475.      into registers at the top of the block, and does not update the
  1476.      registers after the call to find_pc_line.  You can check this by
  1477.      inserting a printf at the end of find_pc_line to show what values
  1478.      it is returning for val.pc and val.end and another printf after
  1479.      the call to see what values the function actually got (remember,
  1480.      this is compiling with cc -O, with this patch removed).  You can
  1481.      also examine the assembly listing: search for the second call to
  1482.      skip_prologue; the LDO statement before the next call to
  1483.      find_pc_line loads the address of the structure which
  1484.      find_pc_line will return; if there is a LDW just before the LDO,
  1485.      which fetches an element of the structure, then the compiler
  1486.      still has the bug.
  1487.  
  1488.      Setting val to volatile avoids the problem.  We must undef
  1489.      volatile, because the HPPA native compiler does not define
  1490.      __STDC__, although it does understand volatile, and so volatile
  1491.      will have been defined away in defs.h.  */
  1492. #undef volatile
  1493.   volatile struct symtab_and_line val;
  1494. #define volatile /*nothing*/
  1495. #else
  1496.   struct symtab_and_line val;
  1497. #endif
  1498.   register char *p, *p1;
  1499.   char *q, *q1;
  1500.   register struct symtab *s;
  1501.  
  1502.   register struct symbol *sym;
  1503.   /* The symtab that SYM was found in.  */
  1504.   struct symtab *sym_symtab;
  1505.  
  1506.   register CORE_ADDR pc;
  1507.   register struct minimal_symbol *msymbol;
  1508.   char *copy;
  1509.   struct symbol *sym_class;
  1510.   int i1;
  1511.   int is_quoted;
  1512.   struct symbol **sym_arr;
  1513.   struct type *t;
  1514.   char *saved_arg = *argptr;
  1515.   extern char *gdb_completer_quote_characters;
  1516.   
  1517.   /* Defaults have defaults.  */
  1518.  
  1519.   if (default_symtab == 0)
  1520.     {
  1521.       default_symtab = current_source_symtab;
  1522.       default_line = current_source_line;
  1523.     }
  1524.  
  1525.   /* See if arg is *PC */
  1526.  
  1527.   if (**argptr == '*')
  1528.     {
  1529.       if (**argptr == '*')
  1530.     {
  1531.       (*argptr)++;
  1532.     }
  1533.       pc = parse_and_eval_address_1 (argptr);
  1534.       values.sals = (struct symtab_and_line *)
  1535.     xmalloc (sizeof (struct symtab_and_line));
  1536.       values.nelts = 1;
  1537.       values.sals[0] = find_pc_line (pc, 0);
  1538.       values.sals[0].pc = pc;
  1539.       return values;
  1540.     }
  1541.  
  1542.   /* Maybe arg is FILE : LINENUM or FILE : FUNCTION */
  1543.  
  1544.   s = NULL;
  1545.   is_quoted = (strchr (gdb_completer_quote_characters, **argptr) != NULL);
  1546.  
  1547.   for (p = *argptr; *p; p++)
  1548.     {
  1549.       if (p[0] == ':' || p[0] == ' ' || p[0] == '\t')
  1550.     break;
  1551.     }
  1552.   while (p[0] == ' ' || p[0] == '\t') p++;
  1553.  
  1554.   if ((p[0] == ':') && !is_quoted)
  1555.     {
  1556.  
  1557.       /*  C++  */
  1558.       if (p[1] ==':')
  1559.     {
  1560.       /* Extract the class name.  */
  1561.       p1 = p;
  1562.       while (p != *argptr && p[-1] == ' ') --p;
  1563.       copy = (char *) alloca (p - *argptr + 1);
  1564.       memcpy (copy, *argptr, p - *argptr);
  1565.       copy[p - *argptr] = 0;
  1566.  
  1567.       /* Discard the class name from the arg.  */
  1568.       p = p1 + 2;
  1569.       while (*p == ' ' || *p == '\t') p++;
  1570.       *argptr = p;
  1571.  
  1572.       sym_class = lookup_symbol (copy, 0, STRUCT_NAMESPACE, 0, 
  1573.                      (struct symtab **)NULL);
  1574.        
  1575.       if (sym_class &&
  1576.           (   TYPE_CODE (SYMBOL_TYPE (sym_class)) == TYPE_CODE_STRUCT
  1577.            || TYPE_CODE (SYMBOL_TYPE (sym_class)) == TYPE_CODE_UNION))
  1578.         {
  1579.           /* Arg token is not digits => try it as a function name
  1580.          Find the next token (everything up to end or next whitespace). */
  1581.           p = *argptr;
  1582.           while (*p && *p != ' ' && *p != '\t' && *p != ',' && *p !=':') p++;
  1583.           q = operator_chars (*argptr, &q1);
  1584.  
  1585.           if (q1 - q)
  1586.         {
  1587.           char *opname;
  1588.           char *tmp = alloca (q1 - q + 1);
  1589.           memcpy (tmp, q, q1 - q);
  1590.           tmp[q1 - q] = '\0';
  1591.           opname = cplus_mangle_opname (tmp, DMGL_ANSI);
  1592.           if (opname == NULL)
  1593.             {
  1594.               warning ("no mangling for \"%s\"", tmp);
  1595.               cplusplus_hint (saved_arg);
  1596.               return_to_top_level ();
  1597.             }
  1598.           copy = (char*) alloca (3 + strlen(opname));
  1599.           sprintf (copy, "__%s", opname);
  1600.           p = q1;
  1601.         }
  1602.           else
  1603.         {
  1604.           copy = (char *) alloca (p - *argptr + 1 + (q1 - q));
  1605.           memcpy (copy, *argptr, p - *argptr);
  1606.           copy[p - *argptr] = '\0';
  1607.         }
  1608.  
  1609.           /* no line number may be specified */
  1610.           while (*p == ' ' || *p == '\t') p++;
  1611.           *argptr = p;
  1612.  
  1613.           sym = 0;
  1614.           i1 = 0;        /*  counter for the symbol array */
  1615.           t = SYMBOL_TYPE (sym_class);
  1616.           sym_arr = (struct symbol **) alloca(TYPE_NFN_FIELDS_TOTAL (t) * sizeof(struct symbol*));
  1617.  
  1618.           if (destructor_name_p (copy, t))
  1619.         {
  1620.           /* destructors are a special case.  */
  1621.           struct fn_field *f = TYPE_FN_FIELDLIST1 (t, 0);
  1622.           int len = TYPE_FN_FIELDLIST_LENGTH (t, 0) - 1;
  1623.           /* gcc 1.x puts destructor in last field,
  1624.              gcc 2.x puts destructor in first field.  */
  1625.           char *phys_name = TYPE_FN_FIELD_PHYSNAME (f, len);
  1626.           if (!DESTRUCTOR_PREFIX_P (phys_name))
  1627.             {
  1628.               phys_name = TYPE_FN_FIELD_PHYSNAME (f, 0);
  1629.               if (!DESTRUCTOR_PREFIX_P (phys_name))
  1630.             phys_name = "";
  1631.             }
  1632.           sym_arr[i1] =
  1633.             lookup_symbol (phys_name, SYMBOL_BLOCK_VALUE (sym_class),
  1634.                    VAR_NAMESPACE, 0, (struct symtab **)NULL);
  1635.           if (sym_arr[i1]) i1++;
  1636.         }
  1637.           else
  1638.         i1 = find_methods (t, copy, sym_arr);
  1639.           if (i1 == 1)
  1640.         {
  1641.           /* There is exactly one field with that name.  */
  1642.           sym = sym_arr[0];
  1643.  
  1644.           if (sym && SYMBOL_CLASS (sym) == LOC_BLOCK)
  1645.             {
  1646.               /* Arg is the name of a function */
  1647.               pc = BLOCK_START (SYMBOL_BLOCK_VALUE (sym)) + FUNCTION_START_OFFSET;
  1648.               if (funfirstline)
  1649.             SKIP_PROLOGUE (pc);
  1650.               values.sals = (struct symtab_and_line *)xmalloc (sizeof (struct symtab_and_line));
  1651.               values.nelts = 1;
  1652.               values.sals[0] = find_pc_line (pc, 0);
  1653.               values.sals[0].pc = (values.sals[0].end && values.sals[0].pc != pc) ? values.sals[0].end : pc;
  1654.             }
  1655.           else
  1656.             {
  1657.               values.nelts = 0;
  1658.             }
  1659.           return values;
  1660.         }
  1661.           if (i1 > 0)
  1662.         {
  1663.           /* There is more than one field with that name
  1664.              (overloaded).  Ask the user which one to use.  */
  1665.           return decode_line_2 (sym_arr, i1, funfirstline);
  1666.         }
  1667.           else
  1668.         {
  1669.           char *tmp;
  1670.  
  1671.           if (OPNAME_PREFIX_P (copy))
  1672.             {
  1673.               tmp = (char *)alloca (strlen (copy+3) + 9);
  1674.               strcpy (tmp, "operator ");
  1675.               strcat (tmp, copy+3);
  1676.             }
  1677.           else
  1678.             tmp = copy;
  1679.           if (tmp[0] == '~')
  1680.             warning ("the class `%s' does not have destructor defined",
  1681.                  SYMBOL_SOURCE_NAME(sym_class));
  1682.           else
  1683.             warning ("the class %s does not have any method named %s",
  1684.                  SYMBOL_SOURCE_NAME(sym_class), tmp);
  1685.           cplusplus_hint (saved_arg);
  1686.           return_to_top_level ();
  1687.         }
  1688.         }
  1689.       else
  1690.         {
  1691.           /* The quotes are important if copy is empty.  */
  1692.           warning ("can't find class, struct, or union named \"%s\"",
  1693.                copy);
  1694.           cplusplus_hint (saved_arg);
  1695.           return_to_top_level ();
  1696.         }
  1697.     }
  1698.       /*  end of C++  */
  1699.  
  1700.  
  1701.       /* Extract the file name.  */
  1702.       p1 = p;
  1703.       while (p != *argptr && p[-1] == ' ') --p;
  1704.       copy = (char *) alloca (p - *argptr + 1);
  1705.       memcpy (copy, *argptr, p - *argptr);
  1706.       copy[p - *argptr] = 0;
  1707.  
  1708.       /* Find that file's data.  */
  1709.       s = lookup_symtab (copy);
  1710.       if (s == 0)
  1711.     {
  1712.       if (!have_full_symbols () && !have_partial_symbols ())
  1713.         error (no_symtab_msg);
  1714.       error ("No source file named %s.", copy);
  1715.     }
  1716.  
  1717.       /* Discard the file name from the arg.  */
  1718.       p = p1 + 1;
  1719.       while (*p == ' ' || *p == '\t') p++;
  1720.       *argptr = p;
  1721.     }
  1722.  
  1723.   /* S is specified file's symtab, or 0 if no file specified.
  1724.      arg no longer contains the file name.  */
  1725.  
  1726.   /* Check whether arg is all digits (and sign) */
  1727.  
  1728.   p = *argptr;
  1729.   if (*p == '-' || *p == '+') p++;
  1730.   while (*p >= '0' && *p <= '9')
  1731.     p++;
  1732.  
  1733.   if (p != *argptr && (*p == 0 || *p == ' ' || *p == '\t' || *p == ','))
  1734.     {
  1735.       /* We found a token consisting of all digits -- at least one digit.  */
  1736.       enum sign {none, plus, minus} sign = none;
  1737.  
  1738.       /* This is where we need to make sure that we have good defaults.
  1739.      We must guarantee that this section of code is never executed
  1740.      when we are called with just a function name, since
  1741.      select_source_symtab calls us with such an argument  */
  1742.  
  1743.       if (s == 0 && default_symtab == 0)
  1744.     {
  1745.       select_source_symtab (0);
  1746.       default_symtab = current_source_symtab;
  1747.       default_line = current_source_line;
  1748.     }
  1749.  
  1750.       if (**argptr == '+')
  1751.     sign = plus, (*argptr)++;
  1752.       else if (**argptr == '-')
  1753.     sign = minus, (*argptr)++;
  1754.       val.line = atoi (*argptr);
  1755.       switch (sign)
  1756.     {
  1757.     case plus:
  1758.       if (p == *argptr)
  1759.         val.line = 5;
  1760.       if (s == 0)
  1761.         val.line = default_line + val.line;
  1762.       break;
  1763.     case minus:
  1764.       if (p == *argptr)
  1765.         val.line = 15;
  1766.       if (s == 0)
  1767.         val.line = default_line - val.line;
  1768.       else
  1769.         val.line = 1;
  1770.       break;
  1771.     case none:
  1772.       break;    /* No need to adjust val.line.  */
  1773.     }
  1774.  
  1775.       while (*p == ' ' || *p == '\t') p++;
  1776.       *argptr = p;
  1777.       if (s == 0)
  1778.     s = default_symtab;
  1779.       val.symtab = s;
  1780.       val.pc = 0;
  1781.       values.sals = (struct symtab_and_line *)xmalloc (sizeof (struct symtab_and_line));
  1782.       values.sals[0] = val;
  1783.       values.nelts = 1;
  1784.       return values;
  1785.     }
  1786.  
  1787.   /* Arg token is not digits => try it as a variable name
  1788.      Find the next token (everything up to end or next whitespace).  */
  1789.  
  1790.   p = skip_quoted (*argptr);
  1791.   copy = (char *) alloca (p - *argptr + 1);
  1792.   memcpy (copy, *argptr, p - *argptr);
  1793.   copy[p - *argptr] = '\0';
  1794.   if ((copy[0] == copy [p - *argptr - 1])
  1795.       && strchr (gdb_completer_quote_characters, copy[0]) != NULL)
  1796.     {
  1797.       char *temp;
  1798.       copy [p - *argptr - 1] = '\0';
  1799.       copy++;
  1800.     }
  1801.   while (*p == ' ' || *p == '\t') p++;
  1802.   *argptr = p;
  1803.  
  1804.   /* Look up that token as a variable.
  1805.      If file specified, use that file's per-file block to start with.  */
  1806.  
  1807.   sym = lookup_symbol (copy,
  1808.                (s ? BLOCKVECTOR_BLOCK (BLOCKVECTOR (s), STATIC_BLOCK)
  1809.             : get_selected_block ()),
  1810.                VAR_NAMESPACE, 0, &sym_symtab);
  1811.  
  1812.   if (sym != NULL)
  1813.     {
  1814.       if (SYMBOL_CLASS (sym) == LOC_BLOCK)
  1815.     {
  1816.       /* Arg is the name of a function */
  1817.       pc = BLOCK_START (SYMBOL_BLOCK_VALUE (sym)) + FUNCTION_START_OFFSET;
  1818.       if (funfirstline)
  1819.         SKIP_PROLOGUE (pc);
  1820.       val = find_pc_line (pc, 0);
  1821. #ifdef PROLOGUE_FIRSTLINE_OVERLAP
  1822.       /* Convex: no need to suppress code on first line, if any */
  1823.       val.pc = pc;
  1824. #else
  1825.       /* If SKIP_PROLOGUE left us in mid-line, and the next line is still
  1826.          part of the same function:
  1827.         advance to next line, 
  1828.             recalculate its line number (might not be N+1).  */
  1829.       if (val.pc != pc && val.end &&
  1830.           lookup_minimal_symbol_by_pc (pc) == lookup_minimal_symbol_by_pc (val.end)) {
  1831.         pc = val.end;    /* First pc of next line */
  1832.         val = find_pc_line (pc, 0);
  1833.       }
  1834.       val.pc = pc;
  1835. #endif
  1836.       values.sals = (struct symtab_and_line *)xmalloc (sizeof (struct symtab_and_line));
  1837.       values.sals[0] = val;
  1838.       values.nelts = 1;
  1839.       
  1840.       /* I think this is always the same as the line that
  1841.          we calculate above, but the general principle is
  1842.          "trust the symbols more than stuff like
  1843.          SKIP_PROLOGUE".  */
  1844.       if (SYMBOL_LINE (sym) != 0)
  1845.         values.sals[0].line = SYMBOL_LINE (sym);
  1846.       
  1847.       return values;
  1848.     }
  1849.       else if (SYMBOL_LINE (sym) != 0)
  1850.     {
  1851.       /* We know its line number.  */
  1852.       values.sals = (struct symtab_and_line *)
  1853.         xmalloc (sizeof (struct symtab_and_line));
  1854.       values.nelts = 1;
  1855.       memset (&values.sals[0], 0, sizeof (values.sals[0]));
  1856.       values.sals[0].symtab = sym_symtab;
  1857.       values.sals[0].line = SYMBOL_LINE (sym);
  1858.       return values;
  1859.     }
  1860.       else
  1861.     /* This can happen if it is compiled with a compiler which doesn't
  1862.        put out line numbers for variables.  */
  1863.     error ("Line number not known for symbol \"%s\"", copy);
  1864.     }
  1865.  
  1866.   msymbol = lookup_minimal_symbol (copy, (struct objfile *) NULL);
  1867.   if (msymbol != NULL)
  1868.     {
  1869.       val.symtab = 0;
  1870.       val.line = 0;
  1871.       val.pc = SYMBOL_VALUE_ADDRESS (msymbol) + FUNCTION_START_OFFSET;
  1872.       if (funfirstline)
  1873.     SKIP_PROLOGUE (val.pc);
  1874.       values.sals = (struct symtab_and_line *)xmalloc (sizeof (struct symtab_and_line));
  1875.       values.sals[0] = val;
  1876.       values.nelts = 1;
  1877.       return values;
  1878.     }
  1879.  
  1880.   if (!have_full_symbols () &&
  1881.       !have_partial_symbols () && !have_minimal_symbols ())
  1882.     error (no_symtab_msg);
  1883.  
  1884.   error ("Function \"%s\" not defined.", copy);
  1885.   return values;    /* for lint */
  1886. }
  1887.  
  1888. struct symtabs_and_lines
  1889. decode_line_spec (string, funfirstline)
  1890.      char *string;
  1891.      int funfirstline;
  1892. {
  1893.   struct symtabs_and_lines sals;
  1894.   if (string == 0)
  1895.     error ("Empty line specification.");
  1896.   sals = decode_line_1 (&string, funfirstline,
  1897.             current_source_symtab, current_source_line);
  1898.   if (*string)
  1899.     error ("Junk at end of line specification: %s", string);
  1900.   return sals;
  1901. }
  1902.  
  1903. /* Given a list of NELTS symbols in sym_arr, return a list of lines to
  1904.    operate on (ask user if necessary).  */
  1905.  
  1906. static struct symtabs_and_lines
  1907. decode_line_2 (sym_arr, nelts, funfirstline)
  1908.      struct symbol *sym_arr[];
  1909.      int nelts;
  1910.      int funfirstline;
  1911. {
  1912.   struct symtabs_and_lines values, return_values;
  1913.   register CORE_ADDR pc;
  1914.   char *args, *arg1;
  1915.   int i;
  1916.   char *prompt;
  1917.   char *symname;
  1918.  
  1919.   values.sals = (struct symtab_and_line *) alloca (nelts * sizeof(struct symtab_and_line));
  1920.   return_values.sals = (struct symtab_and_line *) xmalloc (nelts * sizeof(struct symtab_and_line));
  1921.  
  1922.   i = 0;
  1923.   printf("[0] cancel\n[1] all\n");
  1924.   while (i < nelts)
  1925.     {
  1926.       if (sym_arr[i] && SYMBOL_CLASS (sym_arr[i]) == LOC_BLOCK)
  1927.     {
  1928.       /* Arg is the name of a function */
  1929.       pc = BLOCK_START (SYMBOL_BLOCK_VALUE (sym_arr[i])) 
  1930.            + FUNCTION_START_OFFSET;
  1931.       if (funfirstline)
  1932.         SKIP_PROLOGUE (pc);
  1933.       values.sals[i] = find_pc_line (pc, 0);
  1934.       values.sals[i].pc = (values.sals[i].end && values.sals[i].pc != pc) ?
  1935.                    values.sals[i].end                      :  pc;
  1936.       printf("[%d] %s at %s:%d\n", (i+2), SYMBOL_SOURCE_NAME (sym_arr[i]),
  1937.          values.sals[i].symtab->filename, values.sals[i].line);
  1938.     }
  1939.       else printf ("?HERE\n");
  1940.       i++;
  1941.     }
  1942.   
  1943.   if ((prompt = getenv ("PS2")) == NULL)
  1944.     {
  1945.       prompt = ">";
  1946.     }
  1947.   printf("%s ",prompt);
  1948.   fflush(stdout);
  1949.  
  1950.   args = command_line_input ((char *) NULL, 0);
  1951.   
  1952.   if (args == 0)
  1953.     error_no_arg ("one or more choice numbers");
  1954.  
  1955.   i = 0;
  1956.   while (*args)
  1957.     {
  1958.       int num;
  1959.  
  1960.       arg1 = args;
  1961.       while (*arg1 >= '0' && *arg1 <= '9') arg1++;
  1962.       if (*arg1 && *arg1 != ' ' && *arg1 != '\t')
  1963.     error ("Arguments must be choice numbers.");
  1964.  
  1965.       num = atoi (args);
  1966.  
  1967.       if (num == 0)
  1968.     error ("cancelled");
  1969.       else if (num == 1)
  1970.     {
  1971.       memcpy (return_values.sals, values.sals,
  1972.           (nelts * sizeof(struct symtab_and_line)));
  1973.       return_values.nelts = nelts;
  1974.       return return_values;
  1975.     }
  1976.  
  1977.       if (num > nelts + 2)
  1978.     {
  1979.       printf ("No choice number %d.\n", num);
  1980.     }
  1981.       else
  1982.     {
  1983.       num -= 2;
  1984.       if (values.sals[num].pc)
  1985.         {
  1986.           return_values.sals[i++] = values.sals[num];
  1987.           values.sals[num].pc = 0;
  1988.         }
  1989.       else
  1990.         {
  1991.           printf ("duplicate request for %d ignored.\n", num);
  1992.         }
  1993.     }
  1994.  
  1995.       args = arg1;
  1996.       while (*args == ' ' || *args == '\t') args++;
  1997.     }
  1998.   return_values.nelts = i;
  1999.   return return_values;
  2000. }
  2001.  
  2002.  
  2003. /* Slave routine for sources_info.  Force line breaks at ,'s.
  2004.    NAME is the name to print and *FIRST is nonzero if this is the first
  2005.    name printed.  Set *FIRST to zero.  */
  2006. static void
  2007. output_source_filename (name, first)
  2008.      char *name;
  2009.      int *first;
  2010. {
  2011.   /* Table of files printed so far.  Since a single source file can
  2012.      result in several partial symbol tables, we need to avoid printing
  2013.      it more than once.  Note: if some of the psymtabs are read in and
  2014.      some are not, it gets printed both under "Source files for which
  2015.      symbols have been read" and "Source files for which symbols will
  2016.      be read in on demand".  I consider this a reasonable way to deal
  2017.      with the situation.  I'm not sure whether this can also happen for
  2018.      symtabs; it doesn't hurt to check.  */
  2019.   static char **tab = NULL;
  2020.   /* Allocated size of tab in elements.
  2021.      Start with one 256-byte block (when using GNU malloc.c).
  2022.      24 is the malloc overhead when range checking is in effect.  */
  2023.   static int tab_alloc_size = (256 - 24) / sizeof (char *);
  2024.   /* Current size of tab in elements.  */
  2025.   static int tab_cur_size;
  2026.  
  2027.   char **p;
  2028.  
  2029.   if (*first)
  2030.     {
  2031.       if (tab == NULL)
  2032.     tab = (char **) xmalloc (tab_alloc_size * sizeof (*tab));
  2033.       tab_cur_size = 0;
  2034.     }
  2035.  
  2036.   /* Is NAME in tab?  */
  2037.   for (p = tab; p < tab + tab_cur_size; p++)
  2038.     if (STREQ (*p, name))
  2039.       /* Yes; don't print it again.  */
  2040.       return;
  2041.   /* No; add it to tab.  */
  2042.   if (tab_cur_size == tab_alloc_size)
  2043.     {
  2044.       tab_alloc_size *= 2;
  2045.       tab = (char **) xrealloc ((char *) tab, tab_alloc_size * sizeof (*tab));
  2046.     }
  2047.   tab[tab_cur_size++] = name;
  2048.  
  2049.   if (*first)
  2050.     {
  2051.       *first = 0;
  2052.     }
  2053.   else
  2054.     {
  2055.       printf_filtered (", ");
  2056.     }
  2057.  
  2058.   wrap_here ("");
  2059.   fputs_filtered (name, stdout);
  2060. }  
  2061.  
  2062. static void
  2063. sources_info (ignore, from_tty)
  2064.      char *ignore;
  2065.      int from_tty;
  2066. {
  2067.   register struct symtab *s;
  2068.   register struct partial_symtab *ps;
  2069.   register struct objfile *objfile;
  2070.   int first;
  2071.   
  2072.   if (!have_full_symbols () && !have_partial_symbols ())
  2073.     {
  2074.       error (no_symtab_msg);
  2075.     }
  2076.   
  2077.   printf_filtered ("Source files for which symbols have been read in:\n\n");
  2078.  
  2079.   first = 1;
  2080.   ALL_SYMTABS (objfile, s)
  2081.     {
  2082.       output_source_filename (s -> filename, &first);
  2083.     }
  2084.   printf_filtered ("\n\n");
  2085.   
  2086.   printf_filtered ("Source files for which symbols will be read in on demand:\n\n");
  2087.  
  2088.   first = 1;
  2089.   ALL_PSYMTABS (objfile, ps)
  2090.     {
  2091.       if (!ps->readin)
  2092.     {
  2093.       output_source_filename (ps -> filename, &first);
  2094.     }
  2095.     }
  2096.   printf_filtered ("\n");
  2097. }
  2098.  
  2099. /* List all symbols (if REGEXP is NULL) or all symbols matching REGEXP.
  2100.    If CLASS is zero, list all symbols except functions, type names, and
  2101.              constants (enums).
  2102.    If CLASS is 1, list only functions.
  2103.    If CLASS is 2, list only type names.
  2104.    If CLASS is 3, list only method names.
  2105.  
  2106.    BPT is non-zero if we should set a breakpoint at the functions
  2107.    we find.  */
  2108.  
  2109. static void
  2110. list_symbols (regexp, class, bpt)
  2111.      char *regexp;
  2112.      int class;
  2113.      int bpt;
  2114. {
  2115.   register struct symtab *s;
  2116.   register struct partial_symtab *ps;
  2117.   register struct blockvector *bv;
  2118.   struct blockvector *prev_bv = 0;
  2119.   register struct block *b;
  2120.   register int i, j;
  2121.   register struct symbol *sym;
  2122.   struct partial_symbol *psym;
  2123.   struct objfile *objfile;
  2124.   struct minimal_symbol *msymbol;
  2125.   char *val;
  2126.   static char *classnames[]
  2127.     = {"variable", "function", "type", "method"};
  2128.   int found_in_file = 0;
  2129.   int found_misc = 0;
  2130.   static enum minimal_symbol_type types[]
  2131.     = {mst_data, mst_text, mst_abs, mst_unknown};
  2132.   static enum minimal_symbol_type types2[]
  2133.     = {mst_bss,  mst_text, mst_abs, mst_unknown};
  2134.   enum minimal_symbol_type ourtype = types[class];
  2135.   enum minimal_symbol_type ourtype2 = types2[class];
  2136.  
  2137.   if (regexp != NULL)
  2138.     {
  2139.       /* Make sure spacing is right for C++ operators.
  2140.      This is just a courtesy to make the matching less sensitive
  2141.      to how many spaces the user leaves between 'operator'
  2142.      and <TYPENAME> or <OPERATOR>. */
  2143.       char *opend;
  2144.       char *opname = operator_chars (regexp, &opend);
  2145.       if (*opname)
  2146.     {
  2147.           int fix = -1; /* -1 means ok; otherwise number of spaces needed. */
  2148.       if (isalpha(*opname) || *opname == '_' || *opname == '$')
  2149.         {
  2150.           /* There should 1 space between 'operator' and 'TYPENAME'. */
  2151.           if (opname[-1] != ' ' || opname[-2] == ' ')
  2152.             fix = 1;
  2153.         }
  2154.       else
  2155.         {
  2156.           /* There should 0 spaces between 'operator' and 'OPERATOR'. */
  2157.           if (opname[-1] == ' ')
  2158.             fix = 0;
  2159.         }
  2160.       /* If wrong number of spaces, fix it. */
  2161.       if (fix >= 0)
  2162.         {
  2163.           char *tmp = (char*) alloca(opend-opname+10);
  2164.           sprintf(tmp, "operator%.*s%s", fix, " ", opname);
  2165.           regexp = tmp;
  2166.         }
  2167.         }
  2168.       
  2169.       if (0 != (val = re_comp (regexp)))
  2170.     error ("Invalid regexp (%s): %s", val, regexp);
  2171.     }
  2172.  
  2173.   /* Search through the partial symtabs *first* for all symbols
  2174.      matching the regexp.  That way we don't have to reproduce all of
  2175.      the machinery below. */
  2176.  
  2177.   ALL_PSYMTABS (objfile, ps)
  2178.     {
  2179.       struct partial_symbol *bound, *gbound, *sbound;
  2180.       int keep_going = 1;
  2181.       
  2182.       if (ps->readin) continue;
  2183.       
  2184.       gbound = objfile->global_psymbols.list + ps->globals_offset + ps->n_global_syms;
  2185.       sbound = objfile->static_psymbols.list + ps->statics_offset + ps->n_static_syms;
  2186.       bound = gbound;
  2187.       
  2188.       /* Go through all of the symbols stored in a partial
  2189.      symtab in one loop. */
  2190.       psym = objfile->global_psymbols.list + ps->globals_offset;
  2191.       while (keep_going)
  2192.     {
  2193.       if (psym >= bound)
  2194.         {
  2195.           if (bound == gbound && ps->n_static_syms != 0)
  2196.         {
  2197.           psym = objfile->static_psymbols.list + ps->statics_offset;
  2198.           bound = sbound;
  2199.         }
  2200.           else
  2201.         keep_going = 0;
  2202.           continue;
  2203.         }
  2204.       else
  2205.         {
  2206.           QUIT;
  2207.  
  2208.           /* If it would match (logic taken from loop below)
  2209.          load the file and go on to the next one */
  2210.           if ((regexp == NULL || SYMBOL_MATCHES_REGEXP (psym))
  2211.           && ((class == 0 && SYMBOL_CLASS (psym) != LOC_TYPEDEF
  2212.                && SYMBOL_CLASS (psym) != LOC_BLOCK)
  2213.               || (class == 1 && SYMBOL_CLASS (psym) == LOC_BLOCK)
  2214.               || (class == 2 && SYMBOL_CLASS (psym) == LOC_TYPEDEF)
  2215.               || (class == 3 && SYMBOL_CLASS (psym) == LOC_BLOCK)))
  2216.         {
  2217.           PSYMTAB_TO_SYMTAB(ps);
  2218.           keep_going = 0;
  2219.         }
  2220.         }
  2221.       psym++;
  2222.     }
  2223.     }
  2224.  
  2225.   /* Here, we search through the minimal symbol tables for functions that
  2226.      match, and call find_pc_symtab on them to force their symbols to
  2227.      be read.  The symbol will then be found during the scan of symtabs
  2228.      below.  If find_pc_symtab fails, set found_misc so that we will
  2229.      rescan to print any matching symbols without debug info.  */
  2230.  
  2231.   if (class == 1)
  2232.     {
  2233.       ALL_MSYMBOLS (objfile, msymbol)
  2234.     {
  2235.       if (MSYMBOL_TYPE (msymbol) == ourtype ||
  2236.           MSYMBOL_TYPE (msymbol) == ourtype2)
  2237.         {
  2238.           if (regexp == NULL || SYMBOL_MATCHES_REGEXP (msymbol))
  2239.         {
  2240.           if (0 == find_pc_symtab (SYMBOL_VALUE_ADDRESS (msymbol)))
  2241.             {
  2242.               found_misc = 1;
  2243.             }
  2244.         }
  2245.         }
  2246.     }
  2247.     }
  2248.  
  2249.   /* Printout here so as to get after the "Reading in symbols"
  2250.      messages which will be generated above.  */
  2251.   if (!bpt)
  2252.     printf_filtered (regexp
  2253.       ? "All %ss matching regular expression \"%s\":\n"
  2254.       : "All defined %ss:\n",
  2255.       classnames[class],
  2256.       regexp);
  2257.  
  2258.   ALL_SYMTABS (objfile, s)
  2259.     {
  2260.       found_in_file = 0;
  2261.       bv = BLOCKVECTOR (s);
  2262.       /* Often many files share a blockvector.
  2263.      Scan each blockvector only once so that
  2264.      we don't get every symbol many times.
  2265.      It happens that the first symtab in the list
  2266.      for any given blockvector is the main file.  */
  2267.       if (bv != prev_bv)
  2268.     for (i = GLOBAL_BLOCK; i <= STATIC_BLOCK; i++)
  2269.       {
  2270.         b = BLOCKVECTOR_BLOCK (bv, i);
  2271.         /* Skip the sort if this block is always sorted.  */
  2272.         if (!BLOCK_SHOULD_SORT (b))
  2273.           sort_block_syms (b);
  2274.         for (j = 0; j < BLOCK_NSYMS (b); j++)
  2275.           {
  2276.         QUIT;
  2277.         sym = BLOCK_SYM (b, j);
  2278.         if ((regexp == NULL || SYMBOL_MATCHES_REGEXP (sym))
  2279.             && ((class == 0 && SYMBOL_CLASS (sym) != LOC_TYPEDEF
  2280.              && SYMBOL_CLASS (sym) != LOC_BLOCK
  2281.              && SYMBOL_CLASS (sym) != LOC_CONST)
  2282.             || (class == 1 && SYMBOL_CLASS (sym) == LOC_BLOCK)
  2283.             || (class == 2 && SYMBOL_CLASS (sym) == LOC_TYPEDEF)
  2284.             || (class == 3 && SYMBOL_CLASS (sym) == LOC_BLOCK)))
  2285.           {
  2286.             if (bpt)
  2287.               {
  2288.             /* Set a breakpoint here, if it's a function */
  2289.             if (class == 1)
  2290.               {
  2291.                 /* There may be more than one function with the
  2292.                    same name but in different files.  In order to
  2293.                    set breakpoints on all of them, we must give
  2294.                    both the file name and the function name to
  2295.                    break_command.  */
  2296.                 char *string =
  2297.                   (char *) alloca (strlen (s->filename)
  2298.                            + strlen (SYMBOL_NAME(sym))
  2299.                            + 2);
  2300.                 strcpy (string, s->filename);
  2301.                 strcat (string, ":");
  2302.                 strcat (string, SYMBOL_NAME(sym));
  2303.                 break_command (string, 0);
  2304.               }
  2305.               }
  2306.             else if (!found_in_file)
  2307.               {
  2308.             fputs_filtered ("\nFile ", stdout);
  2309.             fputs_filtered (s->filename, stdout);
  2310.             fputs_filtered (":\n", stdout);
  2311.               }
  2312.             found_in_file = 1;
  2313.             
  2314.             if (class != 2 && i == STATIC_BLOCK)
  2315.               printf_filtered ("static ");
  2316.             
  2317.             /* Typedef that is not a C++ class */
  2318.             if (class == 2
  2319.             && SYMBOL_NAMESPACE (sym) != STRUCT_NAMESPACE)
  2320.               c_typedef_print (SYMBOL_TYPE(sym), sym, stdout);
  2321.             /* variable, func, or typedef-that-is-c++-class */
  2322.             else if (class < 2 || 
  2323.                  (class == 2 && 
  2324.                   SYMBOL_NAMESPACE(sym) == STRUCT_NAMESPACE))
  2325.               {
  2326.             type_print (SYMBOL_TYPE (sym),
  2327.                     (SYMBOL_CLASS (sym) == LOC_TYPEDEF
  2328.                      ? "" : SYMBOL_SOURCE_NAME (sym)),
  2329.                     stdout, 0);
  2330.             
  2331.             printf_filtered (";\n");
  2332.               }
  2333.             else
  2334.               {
  2335. # if 0  /* FIXME, why is this zapped out? */
  2336.             char buf[1024];
  2337.             c_type_print_base (TYPE_FN_FIELD_TYPE(t, i),
  2338.                        stdout, 0, 0); 
  2339.             c_type_print_varspec_prefix (TYPE_FN_FIELD_TYPE(t, i),
  2340.                              stdout, 0); 
  2341.             sprintf (buf, " %s::", type_name_no_tag (t));
  2342.             cp_type_print_method_args (TYPE_FN_FIELD_ARGS (t, i),
  2343.                            buf, name, stdout);
  2344. # endif
  2345.               }
  2346.           }
  2347.           }
  2348.       }
  2349.       prev_bv = bv;
  2350.     }
  2351.  
  2352.   /* If there are no eyes, avoid all contact.  I mean, if there are
  2353.      no debug symbols, then print directly from the msymbol_vector.  */
  2354.  
  2355.   if (found_misc || class != 1)
  2356.     {
  2357.       found_in_file = 0;
  2358.       ALL_MSYMBOLS (objfile, msymbol)
  2359.     {
  2360.       if (MSYMBOL_TYPE (msymbol) == ourtype ||
  2361.           MSYMBOL_TYPE (msymbol) == ourtype2)
  2362.         {
  2363.           if (regexp == NULL || SYMBOL_MATCHES_REGEXP (msymbol))
  2364.         {
  2365.           /* Functions:  Look up by address. */
  2366.           if (class != 1 ||
  2367.               (0 == find_pc_symtab (SYMBOL_VALUE_ADDRESS (msymbol))))
  2368.             {
  2369.               /* Variables/Absolutes:  Look up by name */
  2370.               if (lookup_symbol (SYMBOL_NAME (msymbol), 
  2371.                      (struct block *) NULL, VAR_NAMESPACE,
  2372.                      0, (struct symtab **) NULL) == NULL)
  2373.             {
  2374.               if (!found_in_file)
  2375.                 {
  2376.                   printf_filtered ("\nNon-debugging symbols:\n");
  2377.                   found_in_file = 1;
  2378.                 }
  2379.               printf_filtered ("    %08x  %s\n",
  2380.                        SYMBOL_VALUE_ADDRESS (msymbol),
  2381.                        SYMBOL_SOURCE_NAME (msymbol));
  2382.             }
  2383.             }
  2384.         }
  2385.         }
  2386.     }
  2387.     }
  2388. }
  2389.  
  2390. static void
  2391. variables_info (regexp, from_tty)
  2392.      char *regexp;
  2393.      int from_tty;
  2394. {
  2395.   list_symbols (regexp, 0, 0);
  2396. }
  2397.  
  2398. static void
  2399. functions_info (regexp, from_tty)
  2400.      char *regexp;
  2401.      int from_tty;
  2402. {
  2403.   list_symbols (regexp, 1, 0);
  2404. }
  2405.  
  2406. static void
  2407. types_info (regexp, from_tty)
  2408.      char *regexp;
  2409.      int from_tty;
  2410. {
  2411.   list_symbols (regexp, 2, 0);
  2412. }
  2413.  
  2414. #if 0
  2415. /* Tiemann says: "info methods was never implemented."  */
  2416. static void
  2417. methods_info (regexp)
  2418.      char *regexp;
  2419. {
  2420.   list_symbols (regexp, 3, 0);
  2421. }
  2422. #endif /* 0 */
  2423.  
  2424. /* Breakpoint all functions matching regular expression. */
  2425. static void
  2426. rbreak_command (regexp, from_tty)
  2427.      char *regexp;
  2428.      int from_tty;
  2429. {
  2430.   list_symbols (regexp, 1, 1);
  2431. }
  2432.  
  2433.  
  2434. /* Return Nonzero if block a is lexically nested within block b,
  2435.    or if a and b have the same pc range.
  2436.    Return zero otherwise. */
  2437. int
  2438. contained_in (a, b)
  2439.      struct block *a, *b;
  2440. {
  2441.   if (!a || !b)
  2442.     return 0;
  2443.   return BLOCK_START (a) >= BLOCK_START (b)
  2444.       && BLOCK_END (a)   <= BLOCK_END (b);
  2445. }
  2446.  
  2447.  
  2448. /* Helper routine for make_symbol_completion_list.  */
  2449.  
  2450. static int return_val_size;
  2451. static int return_val_index;
  2452. static char **return_val;
  2453.  
  2454. #define COMPLETION_LIST_ADD_SYMBOL(symbol, text, len) \
  2455.   do { \
  2456.     completion_list_add_name (SYMBOL_NAME (symbol), text, len); \
  2457.       if (SYMBOL_DEMANGLED_NAME (symbol) != NULL) \
  2458.       completion_list_add_name (SYMBOL_DEMANGLED_NAME (symbol), text, len); \
  2459.   } while (0)
  2460.  
  2461. /*  Test to see if the symbol specified by SYMNAME (which is already
  2462.     demangled for C++ symbols) matches TEXT in the first TEXT_LEN
  2463.     characters.  If so, add it to the current completion list. */
  2464.  
  2465. static void
  2466. completion_list_add_name (symname, text, text_len)
  2467.      char *symname;
  2468.      char *text;
  2469.      int text_len;
  2470. {
  2471.   int newsize;
  2472.   int i;
  2473.  
  2474.   /* clip symbols that cannot match */
  2475.  
  2476.   if (strncmp (symname, text, text_len) != 0)
  2477.     {
  2478.       return;
  2479.     }
  2480.  
  2481.   /* Clip any symbol names that we've already considered.  (This is a
  2482.      time optimization)  */
  2483.  
  2484.   for (i = 0; i < return_val_index; ++i)
  2485.     {
  2486.       if (STREQ (symname, return_val[i]))
  2487.     {
  2488.       return;
  2489.     }
  2490.     }
  2491.   
  2492.   /* We have a match for a completion, so add SYMNAME to the current list
  2493.      of matches. Note that the name is moved to freshly malloc'd space. */
  2494.  
  2495.   symname = savestring (symname, strlen (symname));
  2496.   if (return_val_index + 3 > return_val_size)
  2497.     {
  2498.       newsize = (return_val_size *= 2) * sizeof (char *);
  2499.       return_val = (char **) xrealloc ((char *) return_val, newsize);
  2500.     }
  2501.   return_val[return_val_index++] = symname;
  2502.   return_val[return_val_index] = NULL;
  2503. }
  2504.  
  2505. /* Return a NULL terminated array of all symbols (regardless of class) which
  2506.    begin by matching TEXT.  If the answer is no symbols, then the return value
  2507.    is an array which contains only a NULL pointer.
  2508.  
  2509.    Problem: All of the symbols have to be copied because readline frees them.
  2510.    I'm not going to worry about this; hopefully there won't be that many.  */
  2511.  
  2512. char **
  2513. make_symbol_completion_list (text)
  2514.   char *text;
  2515. {
  2516.   register struct symbol *sym;
  2517.   register struct symtab *s;
  2518.   register struct partial_symtab *ps;
  2519.   register struct minimal_symbol *msymbol;
  2520.   register struct objfile *objfile;
  2521.   register struct block *b, *surrounding_static_block = 0;
  2522.   register int i, j;
  2523.   int text_len;
  2524.   struct partial_symbol *psym;
  2525.  
  2526.   text_len = strlen (text);
  2527.   return_val_size = 100;
  2528.   return_val_index = 0;
  2529.   return_val = (char **) xmalloc ((return_val_size + 1) * sizeof (char *));
  2530.   return_val[0] = NULL;
  2531.  
  2532.   /* Look through the partial symtabs for all symbols which begin
  2533.      by matching TEXT.  Add each one that you find to the list.  */
  2534.  
  2535.   ALL_PSYMTABS (objfile, ps)
  2536.     {
  2537.       /* If the psymtab's been read in we'll get it when we search
  2538.      through the blockvector.  */
  2539.       if (ps->readin) continue;
  2540.       
  2541.       for (psym = objfile->global_psymbols.list + ps->globals_offset;
  2542.        psym < (objfile->global_psymbols.list + ps->globals_offset
  2543.            + ps->n_global_syms);
  2544.        psym++)
  2545.     {
  2546.       /* If interrupted, then quit. */
  2547.       QUIT;
  2548.       COMPLETION_LIST_ADD_SYMBOL (psym, text, text_len);
  2549.     }
  2550.       
  2551.       for (psym = objfile->static_psymbols.list + ps->statics_offset;
  2552.        psym < (objfile->static_psymbols.list + ps->statics_offset
  2553.            + ps->n_static_syms);
  2554.        psym++)
  2555.     {
  2556.       QUIT;
  2557.       COMPLETION_LIST_ADD_SYMBOL (psym, text, text_len);
  2558.     }
  2559.     }
  2560.  
  2561.   /* At this point scan through the misc symbol vectors and add each
  2562.      symbol you find to the list.  Eventually we want to ignore
  2563.      anything that isn't a text symbol (everything else will be
  2564.      handled by the psymtab code above).  */
  2565.  
  2566.   ALL_MSYMBOLS (objfile, msymbol)
  2567.     {
  2568.       QUIT;
  2569.       COMPLETION_LIST_ADD_SYMBOL (msymbol, text, text_len);
  2570.     }
  2571.  
  2572.   /* Search upwards from currently selected frame (so that we can
  2573.      complete on local vars.  */
  2574.  
  2575.   for (b = get_selected_block (); b != NULL; b = BLOCK_SUPERBLOCK (b))
  2576.     {
  2577.       if (!BLOCK_SUPERBLOCK (b))
  2578.     {
  2579.       surrounding_static_block = b;     /* For elmin of dups */
  2580.     }
  2581.       
  2582.       /* Also catch fields of types defined in this places which match our
  2583.      text string.  Only complete on types visible from current context. */
  2584.  
  2585.       for (i = 0; i < BLOCK_NSYMS (b); i++)
  2586.     {
  2587.       sym = BLOCK_SYM (b, i);
  2588.       COMPLETION_LIST_ADD_SYMBOL (sym, text, text_len);
  2589.       if (SYMBOL_CLASS (sym) == LOC_TYPEDEF)
  2590.         {
  2591.           struct type *t = SYMBOL_TYPE (sym);
  2592.           enum type_code c = TYPE_CODE (t);
  2593.  
  2594.           if (c == TYPE_CODE_UNION || c == TYPE_CODE_STRUCT)
  2595.         {
  2596.           for (j = TYPE_N_BASECLASSES (t); j < TYPE_NFIELDS (t); j++)
  2597.             {
  2598.               if (TYPE_FIELD_NAME (t, j))
  2599.             {
  2600.               completion_list_add_name (TYPE_FIELD_NAME (t, j),
  2601.                               text, text_len);
  2602.             }
  2603.             }
  2604.         }
  2605.         }
  2606.     }
  2607.     }
  2608.  
  2609.   /* Go through the symtabs and check the externs and statics for
  2610.      symbols which match.  */
  2611.  
  2612.   ALL_SYMTABS (objfile, s)
  2613.     {
  2614.       QUIT;
  2615.       b = BLOCKVECTOR_BLOCK (BLOCKVECTOR (s), GLOBAL_BLOCK);
  2616.       for (i = 0; i < BLOCK_NSYMS (b); i++)
  2617.     {
  2618.       sym = BLOCK_SYM (b, i);
  2619.       COMPLETION_LIST_ADD_SYMBOL (sym, text, text_len);
  2620.     }
  2621.     }
  2622.  
  2623.   ALL_SYMTABS (objfile, s)
  2624.     {
  2625.       QUIT;
  2626.       b = BLOCKVECTOR_BLOCK (BLOCKVECTOR (s), STATIC_BLOCK);
  2627.       /* Don't do this block twice.  */
  2628.       if (b == surrounding_static_block) continue;
  2629.       for (i = 0; i < BLOCK_NSYMS (b); i++)
  2630.     {
  2631.       sym = BLOCK_SYM (b, i);
  2632.       COMPLETION_LIST_ADD_SYMBOL (sym, text, text_len);
  2633.     }
  2634.     }
  2635.  
  2636.   return (return_val);
  2637. }
  2638.  
  2639.  
  2640. #if 0
  2641. /* Add the type of the symbol sym to the type of the current
  2642.    function whose block we are in (assumed).  The type of
  2643.    this current function is contained in *TYPE.
  2644.    
  2645.    This basically works as follows:  When we find a function
  2646.    symbol (N_FUNC with a 'f' or 'F' in the symbol name), we record
  2647.    a pointer to its type in the global in_function_type.  Every 
  2648.    time we come across a parameter symbol ('p' in its name), then
  2649.    this procedure adds the name and type of that parameter
  2650.    to the function type pointed to by *TYPE.  (Which should correspond
  2651.    to in_function_type if it was called correctly).
  2652.  
  2653.    Note that since we are modifying a type, the result of 
  2654.    lookup_function_type() should be memcpy()ed before calling
  2655.    this.  When not in strict typing mode, the expression
  2656.    evaluator can choose to ignore this.
  2657.  
  2658.    Assumption:  All of a function's parameter symbols will
  2659.    appear before another function symbol is found.  The parameters 
  2660.    appear in the same order in the argument list as they do in the
  2661.    symbol table. */
  2662.  
  2663. void
  2664. add_param_to_type (type,sym)
  2665.    struct type **type;
  2666.    struct symbol *sym;
  2667. {
  2668.    int num = ++(TYPE_NFIELDS(*type));
  2669.  
  2670.    if(TYPE_NFIELDS(*type)-1)
  2671.       TYPE_FIELDS(*type) = (struct field *)
  2672.       (*current_objfile->xrealloc) ((char *)(TYPE_FIELDS(*type)),
  2673.                     num*sizeof(struct field));
  2674.    else
  2675.       TYPE_FIELDS(*type) = (struct field *)
  2676.       (*current_objfile->xmalloc) (num*sizeof(struct field));
  2677.    
  2678.    TYPE_FIELD_BITPOS(*type,num-1) = num-1;
  2679.    TYPE_FIELD_BITSIZE(*type,num-1) = 0;
  2680.    TYPE_FIELD_TYPE(*type,num-1) = SYMBOL_TYPE(sym);
  2681.    TYPE_FIELD_NAME(*type,num-1) = SYMBOL_NAME(sym);
  2682. }
  2683. #endif 
  2684.  
  2685. void
  2686. _initialize_symtab ()
  2687. {
  2688.   add_info ("variables", variables_info,
  2689.         "All global and static variable names, or those matching REGEXP.");
  2690.   add_info ("functions", functions_info,
  2691.         "All function names, or those matching REGEXP.");
  2692.  
  2693.   /* FIXME:  This command has at least the following problems:
  2694.      1.  It prints builtin types (in a very strange and confusing fashion).
  2695.      2.  It doesn't print right, e.g. with
  2696.          typedef struct foo *FOO
  2697.      type_print prints "FOO" when we want to make it (in this situation)
  2698.      print "struct foo *".
  2699.      I also think "ptype" or "whatis" is more likely to be useful (but if
  2700.      there is much disagreement "info types" can be fixed).  */
  2701.   add_info ("types", types_info,
  2702.         "All type names, or those matching REGEXP.");
  2703.  
  2704. #if 0
  2705.   add_info ("methods", methods_info,
  2706.         "All method names, or those matching REGEXP::REGEXP.\n\
  2707. If the class qualifier is omitted, it is assumed to be the current scope.\n\
  2708. If the first REGEXP is omitted, then all methods matching the second REGEXP\n\
  2709. are listed.");
  2710. #endif
  2711.   add_info ("sources", sources_info,
  2712.         "Source files in the program.");
  2713.  
  2714.   add_com ("rbreak", no_class, rbreak_command,
  2715.         "Set a breakpoint for all functions matching REGEXP.");
  2716.  
  2717.   /* Initialize the one built-in type that isn't language dependent... */
  2718.   builtin_type_error = init_type (TYPE_CODE_ERROR, 0, 0,
  2719.                   "<unknown type>", (struct objfile *) NULL);
  2720. }
  2721.