Discussion:
[Bug python/12918] New: Can not get symtab_and_line object given an arbitrary program counter
er_31337 at yahoo dot com
2011-06-21 21:48:04 UTC
Permalink
http://sourceware.org/bugzilla/show_bug.cgi?id=12918

Summary: Can not get symtab_and_line object given an arbitrary
program counter
Product: gdb
Version: 7.2
Status: NEW
Severity: enhancement
Priority: P2
Component: python
AssignedTo: ***@sourceware.org
ReportedBy: ***@yahoo.com


There is no (obvious) documented way to get a symtab_and_line object given an
arbitrary address.
A function gdb.sal_for_pc() similar to gdb.block_for_pc() would be nice.
--
Configure bugmail: http://sourceware.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug.
ratmice at gmail dot com
2011-07-04 07:06:59 UTC
Permalink
http://sourceware.org/bugzilla/show_bug.cgi?id=12918

matt rice <ratmice at gmail dot com> changed:

What |Removed |Added
----------------------------------------------------------------------------
CC| |ratmice at gmail dot com

--- Comment #1 from matt rice <ratmice at gmail dot com> 2011-07-04 07:06:56 UTC ---
you can get a symtab_and_line object for an arbitrary address by using the
decode_line function (see the Basic Python section of the manual) and passing
in "*0xaddr" as the argument.

e.g.
(gdb) python print gdb.decode_line("*" +
str(gdb.selected_frame().find_sal().pc))
(None, (<gdb.Symtab_and_line object at 0x7f55269cbe10>,))
(gdb)

I've suggested adding a reference to decode_line from the gdb.symtab_and_line
section.
If you have any recommendations how to further clarify the manual please let us
know.
--
Configure bugmail: http://sourceware.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug.
tromey at sourceware dot org
2018-09-14 22:16:09 UTC
Permalink
https://sourceware.org/bugzilla/show_bug.cgi?id=12918

Tom Tromey <tromey at sourceware dot org> changed:

What |Removed |Added
----------------------------------------------------------------------------
CC| |tromey at sourceware dot org

--- Comment #2 from Tom Tromey <tromey at sourceware dot org> ---
I think a direct API would be good to have.
--
You are receiving this mail because:
You are on the CC list for the bug.
tromey at sourceware dot org
2018-09-15 05:56:04 UTC
Permalink
https://sourceware.org/bugzilla/show_bug.cgi?id=12918

Tom Tromey <tromey at sourceware dot org> changed:

What |Removed |Added
----------------------------------------------------------------------------
Status|NEW |RESOLVED
Resolution|--- |FIXED

--- Comment #3 from Tom Tromey <tromey at sourceware dot org> ---
I was looking and found gdb.find_pc_line, which is exactly this.
--
You are receiving this mail because:
You are on the CC list for the bug.
Loading...