From: Tom Tromey Date: Tue, 13 Jul 2010 20:07:44 +0000 (+0000) Subject: gdb X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=0f5238edfdd060ff07a15df61aafdfe21fb6427f;p=binutils-gdb.git gdb PR breakpoints/8357: * symtab.h (domain_enum_tag) : Update comment. * linespec.c (decode_line_1): Update comment. Call decode_label. (decode_label): New function. (symbol_found): Handle LOC_LABEL. * dwarf2read.c (new_symbol) : Set symbol's type and domain. Call add_symbol_to_list. gdb/doc * gdb.texinfo (Specify Location): Document labels. gdb/testsuite * gdb.base/label.exp: New file. * gdb.base/label.c: New file. --- diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 44f606f502b..4937d9475b5 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,13 @@ +2010-07-13 Tom Tromey + + PR breakpoints/8357: + * symtab.h (domain_enum_tag) : Update comment. + * linespec.c (decode_line_1): Update comment. Call decode_label. + (decode_label): New function. + (symbol_found): Handle LOC_LABEL. + * dwarf2read.c (new_symbol) : Set symbol's type and + domain. Call add_symbol_to_list. + 2010-07-13 Tom Tromey * dwarf2loc.h (dwarf2_per_cu_text_offset): Declare. diff --git a/gdb/doc/ChangeLog b/gdb/doc/ChangeLog index 240ba890abc..d635ca5f999 100644 --- a/gdb/doc/ChangeLog +++ b/gdb/doc/ChangeLog @@ -1,3 +1,7 @@ +2010-07-13 Tom Tromey + + * gdb.texinfo (Specify Location): Document labels. + 2010-07-01 Pedro Alves * gdb.texinfo (Create and Delete Tracepoints): Add more index diff --git a/gdb/doc/gdb.texinfo b/gdb/doc/gdb.texinfo index 7abb9ed9a20..bcd4b242443 100644 --- a/gdb/doc/gdb.texinfo +++ b/gdb/doc/gdb.texinfo @@ -6330,6 +6330,13 @@ in the file @var{filename}. You only need the file name with a function name to avoid ambiguity when there are identically named functions in different source files. +@item @var{label} +Specifies the line at which the label named @var{label} appears. +@value{GDBN} searches for the label in the function corresponding to +the currently selected stack frame. If there is no current selected +stack frame (for instance, if the inferior is not running), then +@value{GDBN} will not search for a label. + @item *@var{address} Specifies the program address @var{address}. For line-oriented commands, such as @code{list} and @code{edit}, this specifies a source diff --git a/gdb/dwarf2read.c b/gdb/dwarf2read.c index 240bee195d3..85740e65500 100644 --- a/gdb/dwarf2read.c +++ b/gdb/dwarf2read.c @@ -8807,7 +8807,10 @@ new_symbol (struct die_info *die, struct type *type, struct dwarf2_cu *cu) { SYMBOL_VALUE_ADDRESS (sym) = DW_ADDR (attr) + baseaddr; } + SYMBOL_TYPE (sym) = objfile_type (objfile)->builtin_core_addr; + SYMBOL_DOMAIN (sym) = LABEL_DOMAIN; SYMBOL_CLASS (sym) = LOC_LABEL; + add_symbol_to_list (sym, cu->list_in_scope); break; case DW_TAG_subprogram: /* SYMBOL_BLOCK_VALUE (sym) will be filled in later by diff --git a/gdb/linespec.c b/gdb/linespec.c index 378c6c940cf..91c5b901320 100644 --- a/gdb/linespec.c +++ b/gdb/linespec.c @@ -122,6 +122,9 @@ static struct symtabs_and_lines decode_dollar (char *copy, char ***canonical, struct symtab *file_symtab); +static int decode_label (char *copy, char ***canonical, + struct symtabs_and_lines *result); + static struct symtabs_and_lines decode_variable (char *copy, int funfirstline, char ***canonical, @@ -672,6 +675,7 @@ find_method_overload_end (char *p) FILE:LINENUM -- that line in that file. PC returned is 0. FUNCTION -- line number of openbrace of that function. PC returned is the start of the function. + LABEL -- a label in the current scope VARIABLE -- line number of definition of that variable. PC returned is 0. FILE:FUNCTION -- likewise, but prefer functions in that file. @@ -903,6 +907,16 @@ decode_line_1 (char **argptr, int funfirstline, struct symtab *default_symtab, return decode_dollar (copy, funfirstline, default_symtab, canonical, file_symtab); + /* Try the token as a label, but only if no file was specified, + because we can only really find labels in the current scope. */ + + if (!file_symtab) + { + struct symtabs_and_lines label_result; + if (decode_label (copy, canonical, &label_result)) + return label_result; + } + /* Look up that token as a variable. If file specified, use that file's per-file block to start with. */ @@ -1838,6 +1852,27 @@ decode_dollar (char *copy, int funfirstline, struct symtab *default_symtab, +/* A helper for decode_line_1 that tries to find a label. The label + is searched for in the current block. + COPY is the name of the label to find. + CANONICAL is the same as the "canonical" argument to decode_line_1. + RESULT is a pointer to a symtabs_and_lines structure which will be + filled in on success. + This function returns 1 if a label was found, 0 otherwise. */ + +static int +decode_label (char *copy, char ***canonical, struct symtabs_and_lines *result) +{ + struct symbol *sym; + + sym = lookup_symbol (copy, get_selected_block (0), LABEL_DOMAIN, 0); + + if (sym != NULL) + *result = symbol_found (0, canonical, copy, sym, NULL); + + return sym != NULL; +} + /* Decode a linespec that's a variable. If FILE_SYMTAB is non-NULL, look in that symtab's static variables first. If NOT_FOUND_PTR is not NULL and the function cannot be found, store boolean true in the location pointed to @@ -1917,7 +1952,7 @@ symbol_found (int funfirstline, char ***canonical, char *copy, } else { - if (funfirstline) + if (funfirstline && SYMBOL_CLASS (sym) != LOC_LABEL) error (_("\"%s\" is not a function"), copy); else if (SYMBOL_LINE (sym) != 0) { @@ -1928,6 +1963,7 @@ symbol_found (int funfirstline, char ***canonical, char *copy, memset (&values.sals[0], 0, sizeof (values.sals[0])); values.sals[0].symtab = SYMBOL_SYMTAB (sym); values.sals[0].line = SYMBOL_LINE (sym); + values.sals[0].pspace = SYMTAB_PSPACE (SYMBOL_SYMTAB (sym)); return values; } else diff --git a/gdb/symtab.h b/gdb/symtab.h index bedc10a7392..5f676bf3163 100644 --- a/gdb/symtab.h +++ b/gdb/symtab.h @@ -377,8 +377,7 @@ typedef enum domain_enum_tag STRUCT_DOMAIN, - /* LABEL_DOMAIN may be used for names of labels (for gotos); - currently it is not used and labels are not recorded at all. */ + /* LABEL_DOMAIN may be used for names of labels (for gotos). */ LABEL_DOMAIN, diff --git a/gdb/testsuite/ChangeLog b/gdb/testsuite/ChangeLog index 803e74dd514..92fb577e7de 100644 --- a/gdb/testsuite/ChangeLog +++ b/gdb/testsuite/ChangeLog @@ -1,3 +1,8 @@ +2010-07-13 Tom Tromey + + * gdb.base/label.exp: New file. + * gdb.base/label.c: New file. + 2010-07-12 Ulrich Weigand H.J. Lu diff --git a/gdb/testsuite/gdb.base/label.c b/gdb/testsuite/gdb.base/label.c new file mode 100644 index 00000000000..f9cd8c39a94 --- /dev/null +++ b/gdb/testsuite/gdb.base/label.c @@ -0,0 +1,21 @@ +#include + +int +main (int argc, char *argv) +{ + int i = 0; + goto there; + +here: + printf("not here\n"); + i = 1; + +there: + printf("but here\n"); + if (i == 0) + goto here; + +done: + return 0; +} + diff --git a/gdb/testsuite/gdb.base/label.exp b/gdb/testsuite/gdb.base/label.exp new file mode 100644 index 00000000000..9e305201bce --- /dev/null +++ b/gdb/testsuite/gdb.base/label.exp @@ -0,0 +1,59 @@ +# Copyright 2010 Free Software Foundation, Inc. + +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 3 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program. If not, see . + +if $tracelevel then { + strace $tracelevel +} + + +if [is_remote target] then { + return 0 +} + + +# +# test running programs +# + +set testfile "label" +set srcfile ${testfile}.c +set binfile ${objdir}/${subdir}/${testfile} + +if { [prepare_for_testing ${testfile}.exp $testfile ${testfile}.c debug] } { + untested label.exp + return -1 +} + + +if {![runto_main]} { + fail "label tests suppressed" + return -1 +} + +gdb_test "break here" \ + "Breakpoint.*at.*" \ + "breakpoint here" + +gdb_test "break there" \ + "Breakpoint.*at.*" \ + "breakpoint there" + +gdb_test "cont" \ + "Breakpoint 3,.*" \ + "continue to 'there'" + +gdb_test "cont" \ + "Breakpoint 2,.*" \ + "continue to 'here'"