From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from gateway24.websitewelcome.com (gateway24.websitewelcome.com [192.185.50.73]) by sourceware.org (Postfix) with ESMTPS id C78673885C2F for ; Wed, 25 Mar 2020 20:14:13 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.3.2 sourceware.org C78673885C2F Authentication-Results: sourceware.org; dmarc=none (p=none dis=none) header.from=tromey.com Authentication-Results: sourceware.org; spf=fail smtp.mailfrom=tom@tromey.com Received: from cm14.websitewelcome.com (cm14.websitewelcome.com [100.42.49.7]) by gateway24.websitewelcome.com (Postfix) with ESMTP id 1A0F8562401 for ; Wed, 25 Mar 2020 15:07:19 -0500 (CDT) Received: from box5379.bluehost.com ([162.241.216.53]) by cmsmtp with SMTP id HCJ4jXWGLXVkQHCJ5jnaWL; Wed, 25 Mar 2020 15:07:19 -0500 X-Authority-Reason: nr=8 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=tromey.com; s=default; h=References:In-Reply-To:Message-Id:Date:Subject:Cc:To:From: Sender:Reply-To:MIME-Version:Content-Type:Content-Transfer-Encoding: Content-ID:Content-Description:Resent-Date:Resent-From:Resent-Sender: Resent-To:Resent-Cc:Resent-Message-ID:List-Id:List-Help:List-Unsubscribe: List-Subscribe:List-Post:List-Owner:List-Archive; bh=nUgvXdWNG7/V7xEadrD/53IJKRGATabzayc2LKDmJ04=; b=VLrHy68UAomxQGnLb7FVzHlg6o cORAel/8PuDJ8jgy7Qt3lwJoxRTz4wjULHPqZl3bojaFdJLOKH3NzARgGPz8CFSiwedmZDdQUtY/A rHV8o4nQhrmqUSpv70Hok4nfH; Received: from 97-118-117-21.hlrn.qwest.net ([97.118.117.21]:38026 helo=bapiya.Home) by box5379.bluehost.com with esmtpsa (TLSv1.2:ECDHE-RSA-AES256-GCM-SHA384:256) (Exim 4.92) (envelope-from ) id 1jHCJ4-001VYp-PL; Wed, 25 Mar 2020 14:07:18 -0600 From: Tom Tromey To: gdb-patches@sourceware.org Cc: Tom Tromey Subject: [PATCH 08/10] Use the linkage name if it exists Date: Wed, 25 Mar 2020 14:07:13 -0600 Message-Id: <20200325200715.12947-9-tom@tromey.com> X-Mailer: git-send-email 2.17.2 In-Reply-To: <20200325200715.12947-1-tom@tromey.com> References: <20200325200715.12947-1-tom@tromey.com> X-AntiAbuse: This header was added to track abuse, please include it with any abuse report X-AntiAbuse: Primary Hostname - box5379.bluehost.com X-AntiAbuse: Original Domain - sourceware.org X-AntiAbuse: Originator/Caller UID/GID - [47 12] / [47 12] X-AntiAbuse: Sender Address Domain - tromey.com X-BWhitelist: no X-Source-IP: 97.118.117.21 X-Source-L: No X-Exim-ID: 1jHCJ4-001VYp-PL X-Source: X-Source-Args: X-Source-Dir: X-Source-Sender: 97-118-117-21.hlrn.qwest.net (bapiya.Home) [97.118.117.21]:38026 X-Source-Auth: tom+tromey.com X-Email-Count: 9 X-Source-Cap: ZWx5bnJvYmk7ZWx5bnJvYmk7Ym94NTM3OS5ibHVlaG9zdC5jb20= X-Local-Domain: yes X-Spam-Status: No, score=-23.8 required=5.0 tests=BAYES_00, DKIM_SIGNED, DKIM_VALID, GIT_PATCH_0, GIT_PATCH_1, GIT_PATCH_2, GIT_PATCH_3, JMQ_SPF_NEUTRAL, KAM_SHORT, KAM_STOCKGEN, RCVD_IN_ABUSEAT, RCVD_IN_DNSWL_NONE, SPF_HELO_PASS, SPF_NEUTRAL, TXREP autolearn=ham autolearn_force=no version=3.4.2 X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on server2.sourceware.org X-BeenThere: gdb-patches@sourceware.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Gdb-patches mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 25 Mar 2020 20:14:15 -0000 The DWARF reader has had some odd code since the "physname" patches landed. In particular, these patches caused PR symtab/12707; namely, they made it so "set print demangle off" no longer works. This patch attempts to fix the problem. It arranges to store the linkage name on the symbol if it exists, and it changes the DWARF reader so that the demangled name is no longer (usually) stored in the symbol's "linkage name" field. c-linkage-name.exp needed a tweak, because it started working correctly. This conforms to what I think ought to happen, so this seems like an improvement here. compile-object-load.c needed a small change to use symbol_matches_search_name rather than directly examining the linkage name. Looking directly at the name does the wrong thing for C++. There is still some name-related confusion in the DWARF reader: * "physname" often refers to the logical name and not what I would consider to be the "physical" name; * dwarf2_full_name, dwarf2_name, and dwarf2_physname all exist and return different strings -- but this seems like at least one name too many. For example, Fortran requires dwarf2_full_name, but other languages do not. * To my surprise, dwarf2_physname prefers the form emitted by the demangler over the one that it computes. This seems backward to me, given that the partial symbol reader prefers the opposite, and it seems to me that this choice may perform better as well. I didn't attempt to clean up these things. It would be good to do, but whenever I contemplate it I get caught up in dreams of truly rewriting the DWARF reader instead. gdb/ChangeLog 2020-03-25 Tom Tromey PR symtab/12707: * dwarf2/read.c (add_partial_symbol): Use the linkage name if it exists. (new_symbol): Likewise. * compile/compile-object-load.c (get_out_value_type): Use symbol_matches_search_name. gdb/testsuite/ChangeLog 2020-03-25 Tom Tromey PR symtab/12707: * gdb.python/py-symbol.exp: Update expected results for linkage_name test. * gdb.cp/print-demangle.exp: New file. * gdb.base/c-linkage-name.exp: Fix test. * gdb.guile/scm-symbol.exp: Update expected results for linkage_name test. --- gdb/ChangeLog | 9 +++++++ gdb/compile/compile-object-load.c | 7 ++--- gdb/dwarf2/read.c | 29 ++++++++++++++------ gdb/testsuite/ChangeLog | 10 +++++++ gdb/testsuite/gdb.base/c-linkage-name.exp | 2 +- gdb/testsuite/gdb.cp/print-demangle.exp | 32 +++++++++++++++++++++++ gdb/testsuite/gdb.guile/scm-symbol.exp | 4 +-- gdb/testsuite/gdb.python/py-symbol.exp | 2 +- 8 files changed, 79 insertions(+), 16 deletions(-) create mode 100644 gdb/testsuite/gdb.cp/print-demangle.exp diff --git a/gdb/compile/compile-object-load.c b/gdb/compile/compile-object-load.c index 3fe95183e32..be4fa767142 100644 --- a/gdb/compile/compile-object-load.c +++ b/gdb/compile/compile-object-load.c @@ -402,6 +402,9 @@ get_out_value_type (struct symbol *func_sym, struct objfile *objfile, int nblocks = 0; int block_loop = 0; + lookup_name_info func_matcher (GCC_FE_WRAPPER_FUNCTION, + symbol_name_match_type::SEARCH_NAME); + bv = SYMTAB_BLOCKVECTOR (func_sym->owner.symtab); nblocks = BLOCKVECTOR_NBLOCKS (bv); @@ -433,9 +436,7 @@ get_out_value_type (struct symbol *func_sym, struct objfile *objfile, if (function != NULL && (BLOCK_SUPERBLOCK (function_block) == BLOCKVECTOR_BLOCK (bv, STATIC_BLOCK)) - && (strcmp_iw (function->linkage_name (), - GCC_FE_WRAPPER_FUNCTION) - == 0)) + && symbol_matches_search_name (function, func_matcher)) break; } if (block_loop == nblocks) diff --git a/gdb/dwarf2/read.c b/gdb/dwarf2/read.c index 2bc7b521f2e..1e824ca399d 100644 --- a/gdb/dwarf2/read.c +++ b/gdb/dwarf2/read.c @@ -8370,7 +8370,14 @@ add_partial_symbol (struct partial_die_info *pdi, struct dwarf2_cu *cu) { if (built_actual_name != nullptr) actual_name = objfile->intern (actual_name); - psymbol.ginfo.set_linkage_name (actual_name); + if (pdi->linkage_name == nullptr || cu->language == language_ada) + psymbol.ginfo.set_linkage_name (actual_name); + else + { + psymbol.ginfo.set_demangled_name (actual_name, + &objfile->objfile_obstack); + psymbol.ginfo.set_linkage_name (pdi->linkage_name); + } add_psymbol_to_list (psymbol, *where, objfile); } } @@ -20550,7 +20557,6 @@ new_symbol (struct die_info *die, struct type *type, struct dwarf2_cu *cu, name = dwarf2_name (die, cu); if (name) { - const char *linkagename; int suppress_add = 0; if (space) @@ -20561,14 +20567,21 @@ new_symbol (struct die_info *die, struct type *type, struct dwarf2_cu *cu, /* Cache this symbol's name and the name's demangled form (if any). */ sym->set_language (cu->language, &objfile->objfile_obstack); - linkagename = dwarf2_physname (name, die, cu); - sym->compute_and_set_names (linkagename, false, objfile->per_bfd); - /* Fortran does not have mangling standard and the mangling does differ between gfortran, iFort etc. */ - if (cu->language == language_fortran - && symbol_get_demangled_name (sym) == NULL) - sym->set_demangled_name (dwarf2_full_name (name, die, cu), NULL); + const char *physname + = (cu->language == language_fortran + ? dwarf2_full_name (name, die, cu) + : dwarf2_physname (name, die, cu)); + const char *linkagename = dw2_linkage_name (die, cu); + + if (linkagename == nullptr || cu->language == language_ada) + sym->set_linkage_name (physname); + else + { + sym->set_demangled_name (physname, &objfile->objfile_obstack); + sym->set_linkage_name (linkagename); + } /* Default assumptions. Use the passed type or decode it from the die. */ diff --git a/gdb/testsuite/gdb.base/c-linkage-name.exp b/gdb/testsuite/gdb.base/c-linkage-name.exp index 4551c8dcac2..cf3e3780bb6 100644 --- a/gdb/testsuite/gdb.base/c-linkage-name.exp +++ b/gdb/testsuite/gdb.base/c-linkage-name.exp @@ -48,7 +48,7 @@ verify_psymtab_expanded c-linkage-name-2.c no # Try to print MUNDANE, but using its linkage name. gdb_test "print symada__cS" \ - "'symada__cS' has unknown type; cast it to its declared type" \ + " = {a = 100829103}" \ "print symada__cS before partial symtab expansion" # Force the symbols to be expanded for the unit that contains diff --git a/gdb/testsuite/gdb.cp/print-demangle.exp b/gdb/testsuite/gdb.cp/print-demangle.exp new file mode 100644 index 00000000000..9e0f706febf --- /dev/null +++ b/gdb/testsuite/gdb.cp/print-demangle.exp @@ -0,0 +1,32 @@ +# Copyright (C) 2013, 2020 Free Software Foundation, Inc. + +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 3 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program. If not, see . + +if { [skip_cplus_tests] } { continue } + +standard_testfile bool.cc + +if {[prepare_for_testing $testfile.exp $testfile $srcfile {debug c++}]} { + return -1 +} + +runto_main + +gdb_breakpoint "return_true" + +gdb_continue_to_breakpoint "return_true" + +gdb_test_no_output "set print demangle off" + +gdb_test "frame" " _Z11return_truev .*" diff --git a/gdb/testsuite/gdb.guile/scm-symbol.exp b/gdb/testsuite/gdb.guile/scm-symbol.exp index 4addc0d10d0..486fc8fcfdb 100644 --- a/gdb/testsuite/gdb.guile/scm-symbol.exp +++ b/gdb/testsuite/gdb.guile/scm-symbol.exp @@ -169,10 +169,8 @@ gdb_test "guile (print (symbol-name cplusfunc))" \ "= SimpleClass::valueofi().*" "test method.name" gdb_test "guile (print (symbol-print-name cplusfunc))" \ "= SimpleClass::valueofi().*" "test method.print_name" -# FIXME: GDB is broken here and we're verifying broken behaviour. -# (linkage-name should be the mangled name) gdb_test "guile (print (symbol-linkage-name cplusfunc))" \ - "SimpleClass::valueofi().*" "test method.linkage_name" + "_ZN11SimpleClass8valueofiEv.*" "test method.linkage_name" gdb_test "guile (print (= (symbol-addr-class cplusfunc) SYMBOL_LOC_BLOCK))" "= #t" # Test is_valid when the objfile is unloaded. This must be the last diff --git a/gdb/testsuite/gdb.python/py-symbol.exp b/gdb/testsuite/gdb.python/py-symbol.exp index c4bae9f07f2..caa7ddc8007 100644 --- a/gdb/testsuite/gdb.python/py-symbol.exp +++ b/gdb/testsuite/gdb.python/py-symbol.exp @@ -211,7 +211,7 @@ gdb_test "python print (cplusfunc.is_function)" \ gdb_test "python print (cplusfunc.name)" "SimpleClass::valueofi().*" "test method.name" gdb_test "python print (cplusfunc.print_name)" "SimpleClass::valueofi().*" "test method.print_name" -gdb_test "python print (cplusfunc.linkage_name)" "SimpleClass::valueofi().*" "test method.linkage_name" +gdb_test "python print (cplusfunc.linkage_name)" "_ZN11SimpleClass8valueofiEv.*" "test method.linkage_name" gdb_test "python print (cplusfunc.addr_class == gdb.SYMBOL_LOC_BLOCK)" "True" "test method.addr_class" # Test is_valid when the objfile is unloaded. This must be the last -- 2.17.2