From a776957c8c3a9177345ee7ca91077234ed7f508e Mon Sep 17 00:00:00 2001 From: Tom Tromey Date: Mon, 22 Apr 2019 11:46:47 -0600 Subject: [PATCH] Fix crash in dwarf2read.c with template parameters PR c++/24470 concerns a crash in dwarf2read.c that occurs with a particular test case. The issue turns out to be that process_structure_scope will pass NULL to symbol_symtab. This happens because new_symbol decided not to create a symbol for the particular DIE. This patch fixes the problem by finding another reasonably-appropriate symtab to use instead; issuing a complaint if one cannot be found for some reason. As mentioned in the bug, I think there are other bugs here. For example, when using "ptype" on the "l" object in the test case, I think I would expect to see the template parameter. I didn't research this too closely, since it seemed more important to fix the crash. Tested on x86-64 Fedora 29. I'd like to check this in to the 8.3 branch as well. 2019-04-30 Tom Tromey PR c++/24470: * dwarf2read.c (process_structure_scope): Handle case where type has template parameters but no symbol was created. gdb/testsuite/ChangeLog 2019-04-30 Tom Tromey PR c++/24470: * gdb.cp/temargs.cc: Add test code from PR. --- gdb/ChangeLog | 6 ++++++ gdb/dwarf2read.c | 35 ++++++++++++++++++++++++++------- gdb/testsuite/ChangeLog | 5 +++++ gdb/testsuite/gdb.cp/temargs.cc | 23 ++++++++++++++++++++++ 4 files changed, 62 insertions(+), 7 deletions(-) diff --git a/gdb/ChangeLog b/gdb/ChangeLog index f4a50e17887..1e2f0eb4669 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,9 @@ +2019-04-30 Tom Tromey + + PR c++/24470: + * dwarf2read.c (process_structure_scope): Handle case where type + has template parameters but no symbol was created. + 2019-04-30 Andrew Burgess Chris January diff --git a/gdb/dwarf2read.c b/gdb/dwarf2read.c index 571fe1e768d..751c59c33c0 100644 --- a/gdb/dwarf2read.c +++ b/gdb/dwarf2read.c @@ -16212,13 +16212,34 @@ process_structure_scope (struct die_info *die, struct dwarf2_cu *cu) if (has_template_parameters) { - /* Make sure that the symtab is set on the new symbols. - Even though they don't appear in this symtab directly, - other parts of gdb assume that symbols do, and this is - reasonably true. */ - for (int i = 0; i < TYPE_N_TEMPLATE_ARGUMENTS (type); ++i) - symbol_set_symtab (TYPE_TEMPLATE_ARGUMENT (type, i), - symbol_symtab (sym)); + struct symtab *symtab; + if (sym != nullptr) + symtab = symbol_symtab (sym); + else if (cu->line_header != nullptr) + { + /* Any related symtab will do. */ + symtab + = cu->line_header->file_name_at (file_name_index (1))->symtab; + } + else + { + symtab = nullptr; + complaint (_("could not find suitable " + "symtab for template parameter" + " - DIE at %s [in module %s]"), + sect_offset_str (die->sect_off), + objfile_name (objfile)); + } + + if (symtab != nullptr) + { + /* Make sure that the symtab is set on the new symbols. + Even though they don't appear in this symtab directly, + other parts of gdb assume that symbols do, and this is + reasonably true. */ + for (int i = 0; i < TYPE_N_TEMPLATE_ARGUMENTS (type); ++i) + symbol_set_symtab (TYPE_TEMPLATE_ARGUMENT (type, i), symtab); + } } } } diff --git a/gdb/testsuite/ChangeLog b/gdb/testsuite/ChangeLog index d3be74d8c16..41aae07919f 100644 --- a/gdb/testsuite/ChangeLog +++ b/gdb/testsuite/ChangeLog @@ -1,3 +1,8 @@ +2019-04-30 Tom Tromey + + PR c++/24470: + * gdb.cp/temargs.cc: Add test code from PR. + 2019-04-30 Andrew Burgess * gdb.fortran/vla-datatypes.exp: Update expected results. diff --git a/gdb/testsuite/gdb.cp/temargs.cc b/gdb/testsuite/gdb.cp/temargs.cc index dc061658d49..d2a85f95340 100644 --- a/gdb/testsuite/gdb.cp/temargs.cc +++ b/gdb/testsuite/gdb.cp/temargs.cc @@ -80,6 +80,29 @@ struct K3 } }; +namespace pr24470 +{ +// From PR c++/24470 +// This caused a gdb crash during startup. + +template struct b {}; +template struct c { + template using e = b; + void k(e<0>); +}; +template class, unsigned long...> +struct m; +template class h, unsigned long i> +struct m { + using j = b; +}; +struct n { + template using f = typename m::j; +}; + +n::f l; +} + int main () { Base base; -- 2.39.2