Mirror of the gdb-patches mailing list
 help / color / mirror / Atom feed
From: Tom Tromey <tom@tromey.com>
To: Andrew Burgess <andrew.burgess@embecosm.com>
Cc: gdb-patches@sourceware.org
Subject: Re: [PATCH] gdb/rust: Handle printing structures containing strings
Date: Thu, 02 May 2019 13:44:00 -0000	[thread overview]
Message-ID: <875zqtynrv.fsf@tromey.com> (raw)
In-Reply-To: <20190501235246.7982-1-andrew.burgess@embecosm.com> (Andrew	Burgess's message of "Thu, 2 May 2019 00:52:46 +0100")

>>>>> "Andrew" == Andrew Burgess <andrew.burgess@embecosm.com> writes:

Andrew> When printing a rust structure that contains a string GDB can
Andrew> currently fail to read the fields that define the string. This is
Andrew> because GDB mistakenly treats a value that is the parent structure as
Andrew> though it is the structure that defines the string, and then fails to
Andrew> find the fields needed to extract a string.

Andrew> The solution is to create a new value to represent the string field of
Andrew> the parent value.

Thank you for doing this.

Andrew>    if (rust_slice_type_p (type) && strcmp (TYPE_NAME (type), "&str") == 0)
Andrew>      {
Andrew> +      /* If what we are printing here is actually a string within a
Andrew> +	 structure then VAL will be the original parent value, while TYPE
Andrew> +	 will be the type of the structure representing the string we want
Andrew> +	 to print.
Andrew> +	 However, RUST_VAL_PRINT_STR looks up the fields of the string
Andrew> +	 inside VAL, assuming that VAL is the string.
Andrew> +	 So, recreate VAL as a value representing just the string.  */
Andrew> +      val = value_at_lazy (type, value_address (val) + embedded_offset);
Andrew>        rust_val_print_str (stream, val, options);
Andrew>        return;

It took me a while to understand this, but I get it now.  At first it
looked like this code was misplaced, but what's going on is that
rust_val_print_str only takes a value, so in a "val_print" context we
must reconstruct one.

We really ought to get rid of the val_print / value_print distinction
someday.  It doesn't provide any benefit and it leads to bugs like this.

Andrew> +gdb_test "print st" " = simple::StringAtOffset {field1: \"hello\", field2: 1, field3: \"world\"}"

I think this line should probably be split after the first argument.
Ok with this change.

Tom


  reply	other threads:[~2019-05-02 13:44 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-05-01 23:52 Andrew Burgess
2019-05-02 13:44 ` Tom Tromey [this message]
2019-05-02 14:56   ` Andrew Burgess
2019-05-02 15:50     ` 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=875zqtynrv.fsf@tromey.com \
    --to=tom@tromey.com \
    --cc=andrew.burgess@embecosm.com \
    --cc=gdb-patches@sourceware.org \
    /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