diff options
author | David Carlton <carlton@bactrian.org> | 2002-12-09 19:49:00 +0000 |
---|---|---|
committer | David Carlton <carlton@bactrian.org> | 2002-12-09 19:49:00 +0000 |
commit | f3c39e76bb03adfb895691c973ec9a67f1d2e6a8 (patch) | |
tree | 6b8767fd7813376634a5d64d73c100cefe56a9bb | |
parent | 1b84163ebf47b31eb8e53a63d5027512811fbe96 (diff) | |
download | gdb-f3c39e76bb03adfb895691c973ec9a67f1d2e6a8.zip gdb-f3c39e76bb03adfb895691c973ec9a67f1d2e6a8.tar.gz gdb-f3c39e76bb03adfb895691c973ec9a67f1d2e6a8.tar.bz2 |
2002-12-09 David Carlton <carlton@math.stanford.edu>
* linespec.c (symtab_from_filename): New function.
(decode_line_1): Move code into symtab_from_filename.
-rw-r--r-- | gdb/ChangeLog | 5 | ||||
-rw-r--r-- | gdb/linespec.c | 90 |
2 files changed, 62 insertions, 33 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 3486ae2..738405c 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,8 @@ +2002-12-09 David Carlton <carlton@math.stanford.edu> + + * linespec.c (symtab_from_filename): New function. + (decode_line_1): Move code into symtab_from_filename. + 2002-12-09 Kevin Buettner <kevinb@redhat.com> * lin-lwp.c (strsignal): Make extern declaration match that of glibc. diff --git a/gdb/linespec.c b/gdb/linespec.c index 5f90985..0386a75 100644 --- a/gdb/linespec.c +++ b/gdb/linespec.c @@ -70,6 +70,9 @@ static char *find_toplevel_char (char *s, char c); static struct symtabs_and_lines decode_line_2 (struct symbol *[], int, int, char ***); +static struct symtab *symtab_from_filename (char **argptr, + char *p, int is_quote_enclosed); + static struct symtabs_and_lines symbol_found (int funfirstline, char ***canonical, @@ -539,15 +542,15 @@ decode_line_1 (char **argptr, int funfirstline, struct symtab *default_symtab, { struct symtabs_and_lines values; struct symtab_and_line val; - register char *p, *p1; + char *p; char *q; - register struct symtab *s = NULL; + struct symtab *s = NULL; - register struct symbol *sym; + struct symbol *sym; /* The symtab that SYM was found in. */ struct symtab *sym_symtab; - register struct minimal_symbol *msymbol; + struct minimal_symbol *msymbol; char *copy; /* This is NULL if there are no parens in *ARGPTR, or a pointer to the closing parenthesis if there are parens. */ @@ -591,40 +594,17 @@ decode_line_1 (char **argptr, int funfirstline, struct symtab *default_symtab, { if (is_quoted) *argptr = *argptr + 1; + + /* Is it a C++ or Java compound data structure? */ + if (p[0] == '.' || p[1] == ':') - /* C++ */ - /* ... or Java */ return decode_compound (argptr, funfirstline, canonical, saved_arg, p); - /* Extract the file name. */ - p1 = p; - while (p != *argptr && p[-1] == ' ') - --p; - if ((*p == '"') && is_quote_enclosed) - --p; - copy = (char *) alloca (p - *argptr + 1); - memcpy (copy, *argptr, p - *argptr); - /* It may have the ending quote right after the file name */ - if (is_quote_enclosed && copy[p - *argptr - 1] == '"') - copy[p - *argptr - 1] = 0; - else - copy[p - *argptr] = 0; - - /* Find that file's data. */ - s = lookup_symtab (copy); - if (s == 0) - { - if (!have_full_symbols () && !have_partial_symbols ()) - error ("No symbol table is loaded. Use the \"file\" command."); - error ("No source file named %s.", copy); - } + /* No, the first part is a filename; set s to be that file's + symtab. Also, move argptr past the filename. */ - /* Discard the file name from the arg. */ - p = p1 + 1; - while (*p == ' ' || *p == '\t') - p++; - *argptr = p; + s = symtab_from_filename (argptr, p, is_quote_enclosed); } #if 0 /* No one really seems to know why this was added. It certainly @@ -1320,6 +1300,50 @@ decode_compound (char **argptr, int funfirstline, char ***canonical, +/* Return the symtab associated to the filename given by the substring + of *ARGPTR ending at P, and advance ARGPTR past that filename. */ + +static struct symtab * +symtab_from_filename (char **argptr, char *p, int is_quote_enclosed) +{ + char *p1; + char *copy; + struct symtab *s; + + p1 = p; + while (p != *argptr && p[-1] == ' ') + --p; + if ((*p == '"') && is_quote_enclosed) + --p; + copy = (char *) alloca (p - *argptr + 1); + memcpy (copy, *argptr, p - *argptr); + /* It may have the ending quote right after the file name */ + if (is_quote_enclosed && copy[p - *argptr - 1] == '"') + copy[p - *argptr - 1] = 0; + else + copy[p - *argptr] = 0; + + /* Find that file's data. */ + s = lookup_symtab (copy); + if (s == 0) + { + if (!have_full_symbols () && !have_partial_symbols ()) + error ("No symbol table is loaded. Use the \"file\" command."); + error ("No source file named %s.", copy); + } + + /* Discard the file name from the arg. */ + p = p1 + 1; + while (*p == ' ' || *p == '\t') + p++; + *argptr = p; + + return s; +} + + + + /* Now come some functions that are called from multiple places within decode_line_1. */ |