Mirror of the gdb-patches mailing list
 help / color / mirror / Atom feed
From: Kevin Buettner <kevinb@redhat.com>
To: gdb-patches@sources.redhat.com
Subject: Re: [RFC] dwarf2_read_address(): sign extend as appropriate
Date: Mon, 23 Apr 2007 21:51:00 -0000	[thread overview]
Message-ID: <20070423140642.3920579e@ironwood.lan> (raw)
In-Reply-To: <20070423165646.GA15110@caradoc.them.org>

On Mon, 23 Apr 2007 12:56:46 -0400
Daniel Jacobowitz <drow@false.org> wrote:

> On Mon, Apr 23, 2007 at 09:49:00AM -0700, Kevin Buettner wrote:
> > We can't use address_from_register() in this instance since
> > dwarf2_read_address() is not fetching an address from a register, but
> > rather from some DWARF2 info.
> 
> How about value_as_address?  I don't like the need for another call
> site for gdbarch_integer_to_address; it's historically tricky...

dwarf2_read_address() isn't reading an address from some value in the
inferior, but rather is decoding some sequence of bytes as an address
in the DWARF2 info.  As such, dwarf2_read_address() doesn't have
anything readily available to pass to value_as_address().  That means
that a suitable value would have to be constructed and then immediately
decomposed, leading to an expression which might look something like this:

    result = value_as_address (value_from_longest 
		                (unsigned_address_type (),
                                 extract_unsigned_integer 
				   (buf,
		                    TARGET_ADDR_BIT / TARGET_CHAR_BIT)));

Please let me know if this is what you had in mind.  If so, I'll
try it out and post the results.

Kevin


  reply	other threads:[~2007-04-23 21:06 UTC|newest]

Thread overview: 12+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2007-04-21  3:13 Kevin Buettner
2007-04-23 15:06 ` Ulrich Weigand
2007-04-23 16:57   ` Kevin Buettner
2007-04-23 18:19     ` Daniel Jacobowitz
2007-04-23 21:51       ` Kevin Buettner [this message]
2007-04-24 21:34         ` Daniel Jacobowitz
2007-04-27 21:30           ` Kevin Buettner
2007-04-27 22:16             ` Daniel Jacobowitz
2007-04-27 22:47               ` Kevin Buettner
2007-04-28  5:38                 ` Daniel Jacobowitz
2007-04-23 22:51       ` Andreas Schwab
2007-04-24 18:13         ` Kevin Buettner

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=20070423140642.3920579e@ironwood.lan \
    --to=kevinb@redhat.com \
    --cc=gdb-patches@sources.redhat.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