public inbox for gdb-prs@sourceware.org
help / color / mirror / Atom feed
From: "xdje42 at gmail dot com" <sourceware-bugzilla@sourceware.org>
To: gdb-prs@sourceware.org
Subject: [Bug symtab/17559] confusion on what the result of find_pc_symtab is
Date: Thu, 06 Nov 2014 07:36:00 -0000	[thread overview]
Message-ID: <bug-17559-4717-931txRTJtV@http.sourceware.org/bugzilla/> (raw)
In-Reply-To: <bug-17559-4717@http.sourceware.org/bugzilla/>

https://sourceware.org/bugzilla/show_bug.cgi?id=17559

--- Comment #4 from Doug Evans <xdje42 at gmail dot com> ---
This patch fixes my simple testcase.

diff --git a/gdb/disasm.c b/gdb/disasm.c
index 6ff3793..c3f99f1 100644
--- a/gdb/disasm.c
+++ b/gdb/disasm.c
@@ -410,13 +410,14 @@ gdb_disassembly (struct gdbarch *gdbarch, struct ui_out
*uiout,
   struct ui_file *stb = mem_fileopen ();
   struct cleanup *cleanups = make_cleanup_ui_file_delete (stb);
   struct disassemble_info di = gdb_disassemble_info (gdbarch, stb);
-  /* To collect the instruction outputted from opcodes.  */
+  struct symtab_and_line sal;
   struct symtab *symtab = NULL;
   struct linetable_entry *le = NULL;
   int nlines = -1;

   /* Assume symtab is valid for whole PC range.  */
-  symtab = find_pc_symtab (low);
+  sal = find_pc_line (low, 0);
+  symtab = sal.symtab;

   if (symtab != NULL && symtab->linetable != NULL)
     {

I think the thing to do, besides this (after some more testing), is rename
find_pc_symtab.
In my symtab reorg patch, find_pc_compunit works.

-- 
You are receiving this mail because:
You are on the CC list for the bug.


  parent reply	other threads:[~2014-11-06  7:36 UTC|newest]

Thread overview: 10+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-11-06  7:02 [Bug symtab/17559] New: " xdje42 at gmail dot com
2014-11-06  7:12 ` [Bug symtab/17559] " xdje42 at gmail dot com
2014-11-06  7:16 ` xdje42 at gmail dot com
2014-11-06  7:20 ` xdje42 at gmail dot com
2014-11-06  7:36 ` xdje42 at gmail dot com [this message]
2014-11-06 18:57 ` xdje42 at gmail dot com
2014-11-10  0:18 ` xdje42 at gmail dot com
2014-11-15 18:12 ` cvs-commit at gcc dot gnu.org
2014-11-15 18:15 ` xdje42 at gmail dot com
2014-12-25  0:45 ` cvs-commit at gcc dot gnu.org

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=bug-17559-4717-931txRTJtV@http.sourceware.org/bugzilla/ \
    --to=sourceware-bugzilla@sourceware.org \
    --cc=gdb-prs@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;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).