diff options
author | Tom Tromey <tromey@redhat.com> | 2013-08-07 20:03:52 +0000 |
---|---|---|
committer | Tom Tromey <tromey@redhat.com> | 2013-08-07 20:03:52 +0000 |
commit | bf6d8a91eac025c21b03d604bdb2e4b901c4c6bc (patch) | |
tree | 1917c00119029aac713cbfef834ba7ee6966ec18 /gdb/symtab.c | |
parent | f9125b6c6c523dc3f0191fdb5b9551c6f5d70c61 (diff) | |
download | gdb-bf6d8a91eac025c21b03d604bdb2e4b901c4c6bc.zip gdb-bf6d8a91eac025c21b03d604bdb2e4b901c4c6bc.tar.gz gdb-bf6d8a91eac025c21b03d604bdb2e4b901c4c6bc.tar.bz2 |
use language of the main symbol
With "dwz -m", "main" appears in both the PU and the importing CU when
running anon-struct.exp. However, the PU does not have a file name.
So, find_main_filename returns the empty string, making
deduce_language_from_filename return language_unknown.
This patch fixes this problem by changing gdb to use the ordinary
symbol-lookup functions to find "main"'s symbol. Then, it examines the
symbol's language.
I think this is cleaner than the current approach. For one thing it
avoids trying to guess the language based on the source file name,
instead deferring to the presumably more reliable debuginfo.
Another possible fix would have been to change how the file name is
found via the "qf" methods. However, I think the approach given is
preferable for the reason outlined above.
This required a minor test suite change, as now a symtab is expanded
during the search for "main".
Built and regtested (both ways) on x86-64 Fedora 18.
* symfile.c (set_initial_language): Look up "main" symbol
and use its language.
* symtab.c (find_main_filename): Remove.
* symtab.h (find_main_filename): Remove.
* gdb.base/maint.exp: Allow zero symtabs to be expanded.
Diffstat (limited to 'gdb/symtab.c')
-rw-r--r-- | gdb/symtab.c | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/gdb/symtab.c b/gdb/symtab.c index 8076fe5..3bcec23 100644 --- a/gdb/symtab.c +++ b/gdb/symtab.c @@ -1949,29 +1949,6 @@ basic_lookup_transparent_type (const char *name) return (struct type *) 0; } -/* Find the name of the file containing main(). */ -/* FIXME: What about languages without main() or specially linked - executables that have no main() ? */ - -const char * -find_main_filename (void) -{ - struct objfile *objfile; - char *name = main_name (); - - ALL_OBJFILES (objfile) - { - const char *result; - - if (!objfile->sf) - continue; - result = objfile->sf->qf->find_symbol_file (objfile, name); - if (result) - return result; - } - return (NULL); -} - /* Search BLOCK for symbol NAME in DOMAIN. Note that if NAME is the demangled form of a C++ symbol, we will fail |