diff options
author | Andrew Burgess <andrew.burgess@embecosm.com> | 2019-09-23 16:59:08 +0100 |
---|---|---|
committer | Andrew Burgess <andrew.burgess@embecosm.com> | 2019-11-10 21:35:28 +0000 |
commit | 09ff83af3c8558594bd31bfaf4ed7daadf4f707d (patch) | |
tree | eebca5a0d285af21ced0622302c626e35373ffff /gdb/doc/ChangeLog | |
parent | eb2dd8df7662c3827656e44d2a463d918d473c41 (diff) | |
download | gdb-09ff83af3c8558594bd31bfaf4ed7daadf4f707d.zip gdb-09ff83af3c8558594bd31bfaf4ed7daadf4f707d.tar.gz gdb-09ff83af3c8558594bd31bfaf4ed7daadf4f707d.tar.bz2 |
gdb/python: smarter symbol lookup for gdb.lookup_static_symbol
When using gdb.lookup_static_symbol I think that GDB should find
static symbols (global symbol with static linkage) from the current
object file ahead of static symbols from other object files.
This means that if we have two source files f1.c and f2.c, and both
files contains 'static int foo;', then when we are stopped in f1.c a
call to 'gdb.lookup_static_symbol ("foo")' will find f1.c::foo, and if
we are stopped in f2.c we would find 'f2.c::foo'.
Given that gdb.lookup_static_symbol always returns a single symbol,
but there can be multiple static symbols with the same name GDB is
always making a choice about which symbols to return. I think that it
makes sense for the choice GDB makes in this case to match what a user
would get on the command line if they asked to 'print foo'.
gdb/testsuite/ChangeLog:
* gdb.python/py-symbol.c: Declare and call function from new
py-symbol-2.c file.
* gdb.python/py-symbol.exp: Compile both source files, and add new
tests for gdb.lookup_static_symbol.
* gdb.python/py-symbol-2.c: New file.
gdb/doc/ChangeLog:
* python.texi (Symbols In Python): Extend documentation for
gdb.lookup_static_symbol.
gdb/ChangeLog:
* python/py-symbol.c (gdbpy_lookup_static_symbol): Lookup in
static block of current object file first. Also fix typo in
header comment.
Change-Id: Ie55dbeb8806f35577b46015deecde27a0ca2ab64
Diffstat (limited to 'gdb/doc/ChangeLog')
-rw-r--r-- | gdb/doc/ChangeLog | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/gdb/doc/ChangeLog b/gdb/doc/ChangeLog index ce89ee4..6db17b9 100644 --- a/gdb/doc/ChangeLog +++ b/gdb/doc/ChangeLog @@ -1,3 +1,8 @@ +2019-11-10 Andrew Burgess <andrew.burgess@embecosm.com> + + * python.texi (Symbols In Python): Extend documentation for + gdb.lookup_static_symbol. + 2019-10-31 Andrew Burgess <andrew.burgess@embecosm.com> * gdb.texinfo (Symbols): Document new 'info module variables' and |