Mirror of the gdb-patches mailing list
 help / color / mirror / Atom feed
From: Hui Zhu <teawater@gmail.com>
To: Tom Tromey <tromey@redhat.com>
Cc: Hui Zhu <hui_zhu@mentor.com>, gdb-patches@sourceware.org
Subject: Re: [PATCH] Add CTF support to GDB [2/4] Fix a bug of function dwarf_expr_frame_base
Date: Sat, 01 Dec 2012 16:34:00 -0000	[thread overview]
Message-ID: <CANFwon2PbHAyE3skm5Ojz252W-YefTE0+37PJOK=fS7ds5WoVg@mail.gmail.com> (raw)
In-Reply-To: <87k3t45ihq.fsf@fleche.redhat.com>

On Fri, Nov 30, 2012 at 3:14 AM, Tom Tromey <tromey@redhat.com> wrote:
>>>>>> "Hui" == Hui Zhu <hui_zhu@mentor.com> writes:
>
> Hui> 2012-11-20  Hui Zhu  <hui_zhu@mentor.com>
> Hui>    * dwarf2loc.c (dwarf_expr_frame_base): Add check for the return
> Hui>    value of get_frame_block.
>
> I think this is reasonable even without the rest of your patches.

OK.

>
> One nit:
>
> Hui> +  if (bl == NULL)
> Hui> +    error (_("No symbol table info available.\n"));
>
> I don't think this is a very clear error message.
> I'm not sure what else to suggest though.
>
> Also, no \n at the end of the error message.
>
> Tom

What about I change it to "frame address is not available." because in
get_frame_block:
  if (!get_frame_address_in_block_if_available (frame, &pc))
    return NULL;

Post a new version.

Thanks,
Hui

2012-11-01  Hui Zhu  <hui_zhu@mentor.com>

	* dwarf2loc.c (dwarf_expr_frame_base): Add check for the return
	value of get_frame_block.

--- a/dwarf2loc.c
+++ b/dwarf2loc.c
@@ -332,11 +332,15 @@ dwarf_expr_frame_base (void *baton, cons
      this_base method.  */
   struct symbol *framefunc;
   struct dwarf_expr_baton *debaton = (struct dwarf_expr_baton *) baton;
+  struct block *bl = get_frame_block (debaton->frame, NULL);
+
+  if (bl == NULL)
+    error (_("frame address is not available."));

   /* Use block_linkage_function, which returns a real (not inlined)
      function, instead of get_frame_function, which may return an
      inlined function.  */
-  framefunc = block_linkage_function (get_frame_block (debaton->frame, NULL));
+  framefunc = block_linkage_function (bl);

   /* If we found a frame-relative symbol then it was certainly within
      some function associated with a frame. If we can't find the frame,


  reply	other threads:[~2012-12-01 16:34 UTC|newest]

Thread overview: 7+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2012-11-21  1:45 Hui Zhu
2012-11-29 19:15 ` Tom Tromey
2012-12-01 16:34   ` Hui Zhu [this message]
2012-12-03 19:11     ` Tom Tromey
2012-12-04  3:03       ` Hui Zhu
2012-12-05 16:27         ` Tom Tromey
2012-12-06  1:17           ` Hui Zhu

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='CANFwon2PbHAyE3skm5Ojz252W-YefTE0+37PJOK=fS7ds5WoVg@mail.gmail.com' \
    --to=teawater@gmail.com \
    --cc=gdb-patches@sourceware.org \
    --cc=hui_zhu@mentor.com \
    --cc=tromey@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