Mirror of the gdb-patches mailing list
 help / color / mirror / Atom feed
From: Simon Marchi <simon.marchi@polymtl.ca>
To: Tom Tromey <tromey@adacore.com>
Cc: gdb-patches@sourceware.org
Subject: Re: [PATCH] Handle DW_AT_ranges when reading partial symtabs
Date: Fri, 29 Mar 2019 22:02:00 -0000	[thread overview]
Message-ID: <42d48bb2f79941b8fd646c7089492907@polymtl.ca> (raw)
In-Reply-To: <20190329200030.8368-1-tromey@adacore.com>

On 2019-03-29 16:00, Tom Tromey wrote:
> add_partial_subprogram does not handle DW_AT_ranges, while the full
> symtab reader does.  This can lead to discrepancies where a function
> is not put into a partial symtab, and so is not available to "break"
> and the like -- but is available if the full symtab has somehow been
> read.
> 
> This patch fixes the bug by arranging to read DW_AT_ranges when
> reading partial DIEs.
> 
> This is PR symtab/23331.
> 
> The new test case is derived from dw2-ranges-func.exp, which is why I
> kept the copyright dates.
> 
> gdb/ChangeLog
> 2019-03-29  Tom Tromey  <tromey@adacore.com>
> 
> 	PR symtab/23331:
> 	* dwarf2read.c (partial_die_info::read): Handle DW_AT_ranges.
> 
> gdb/testsuite/ChangeLog
> 2019-03-29  Tom Tromey  <tromey@adacore.com>
> 
> 	PR symtab/23331:
> 	* gdb.dwarf2/dw2-ranges-main.c: New file.
> 	* gdb.dwarf2/dw2-ranges-psym.c: New file.
> 	* gdb.dwarf2/dw2-ranges-psym.exp: New file.

I don't have much experience in this area, but I read the patch and it 
seems to make sense.

I just have one tiny comment to help readability in the test.

> diff --git a/gdb/testsuite/gdb.dwarf2/dw2-ranges-psym.exp
> b/gdb/testsuite/gdb.dwarf2/dw2-ranges-psym.exp
> new file mode 100644
> index 00000000000..eb1130a2238
> --- /dev/null
> +++ b/gdb/testsuite/gdb.dwarf2/dw2-ranges-psym.exp
> @@ -0,0 +1,134 @@
> +# Copyright 2018-2019 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 
> <http://www.gnu.org/licenses/>.
> +
> +load_lib dwarf.exp
> +
> +# Test that psymbols are made when DW_AT_ranges is used.
> +
> +# This test can only be run on targets which support DWARF-2 and use 
> gas.
> +if {![dwarf2_support]} {
> +    unsupported "dwarf2 support required for this test"
> +    return 0
> +}
> +
> +if [get_compiler_info] {
> +    return -1
> +}
> +if !$gcc_compiled {
> +    unsupported "gcc required for this test"
> +    return 0
> +}
> +
> +standard_testfile dw2-ranges-main.c dw2-ranges-psym.c 
> dw2-ranges-psym-dw.S
> +
> +# We need to know the size of integer and address types in order to
> +# write some of the debugging info we'd like to generate.
> +#
> +# For that, we ask GDB by debugging our test program.  Any program
> +# would do, but since we already have it specifically for this
> +# testcase, might as well use that.
> +
> +if { [prepare_for_testing "failed to prepare" ${testfile} \
> +	  [list ${srcfile} ${srcfile2}]] } {
> +    return -1
> +}
> +
> +set asm_file [standard_output_file $srcfile3]
> +Dwarf::assemble $asm_file {
> +    global srcdir subdir srcfile srcfile2
> +    declare_labels integer_label volatile_label func_ranges_label
> cu_ranges_label
> +    set int_size [get_sizeof "int" 4]
> +
> +    # Find start address and length for our functions.
> +    set sources  [list ${srcdir}/${subdir}/$srcfile
> ${srcdir}/${subdir}/$srcfile2]
> +    lassign [function_range foo $sources] \
> +	foo_start foo_len
> +    set foo_end "$foo_start + $foo_len"
> +    lassign [function_range foo_low $sources] \
> +	foo_low_start foo_low_len
> +    set foo_low_end "$foo_low_start + $foo_low_len"
> +    lassign [function_range bar $sources] \
> +	bar_start bar_len
> +    set bar_end "$bar_start + $bar_len"
> +    lassign [function_range baz $sources] \
> +	baz_start baz_len
> +    set baz_end "$baz_start + $baz_len"

To help readability, I'd suggest adding some empty lines in there, 
between each pair of lassign+set statements.  At first it looked like a 
bit cryptic blob to me until I split it in smaller pieces.

Simon


  reply	other threads:[~2019-03-29 22:02 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-03-29 20:00 Tom Tromey
2019-03-29 22:02 ` Simon Marchi [this message]
2019-04-01 16:28   ` Tom Tromey

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=42d48bb2f79941b8fd646c7089492907@polymtl.ca \
    --to=simon.marchi@polymtl.ca \
    --cc=gdb-patches@sourceware.org \
    --cc=tromey@adacore.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox