From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from simark.ca by simark.ca with LMTP id IHdlMIoc8WJMySIAWB0awg (envelope-from ) for ; Mon, 08 Aug 2022 10:24:10 -0400 Received: by simark.ca (Postfix, from userid 112) id C2FAB1EA06; Mon, 8 Aug 2022 10:24:10 -0400 (EDT) Authentication-Results: simark.ca; dkim=pass (1024-bit key; secure) header.d=sourceware.org header.i=@sourceware.org header.a=rsa-sha256 header.s=default header.b=yu1Miolx; dkim-atps=neutral X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on simark.ca X-Spam-Level: X-Spam-Status: No, score=-2.0 required=5.0 tests=BAYES_00,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,MAILING_LIST_MULTI,RDNS_DYNAMIC,URIBL_BLOCKED autolearn=unavailable autolearn_force=no version=3.4.6 Received: from sourceware.org (ip-8-43-85-97.sourceware.org [8.43.85.97]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by simark.ca (Postfix) with ESMTPS id 37B601E9ED for ; Mon, 8 Aug 2022 10:24:10 -0400 (EDT) Received: from server2.sourceware.org (localhost [IPv6:::1]) by sourceware.org (Postfix) with ESMTP id DCDF23857001 for ; Mon, 8 Aug 2022 14:24:09 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org DCDF23857001 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=sourceware.org; s=default; t=1659968649; bh=mZb2UJQwH2bSEznJSTbvmjKWpRpy4KB0iJGedhM7hNc=; h=To:Subject:Date:In-Reply-To:References:List-Id:List-Unsubscribe: List-Archive:List-Post:List-Help:List-Subscribe:From:Reply-To: From; b=yu1MiolxH9eD454ym2PD2qqCOJWU2PvadoWrxCZD7gnsfYpOj2KMkyqw7TNjkXjNf F9M+ASZf9OREx9fjaATtyFA2pYezZqps2coeGagqCsJNQ6qIaXEcc1RjQb0p8bklLC b7LluLpDQRQtvmijBiaxTt9elrhm8FbQfjC9CtkA= Received: from smtp-out1.suse.de (smtp-out1.suse.de [IPv6:2001:67c:2178:6::1c]) by sourceware.org (Postfix) with ESMTPS id 441B7385802B for ; Mon, 8 Aug 2022 14:23:20 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org 441B7385802B Received: from imap2.suse-dmz.suse.de (imap2.suse-dmz.suse.de [192.168.254.74]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (P-521) server-digest SHA512) (No client certificate requested) by smtp-out1.suse.de (Postfix) with ESMTPS id 8015A37C41; Mon, 8 Aug 2022 14:23:19 +0000 (UTC) Received: from imap2.suse-dmz.suse.de (imap2.suse-dmz.suse.de [192.168.254.74]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (P-521) server-digest SHA512) (No client certificate requested) by imap2.suse-dmz.suse.de (Postfix) with ESMTPS id 6636713ADE; Mon, 8 Aug 2022 14:23:19 +0000 (UTC) Received: from dovecot-director2.suse.de ([192.168.254.65]) by imap2.suse-dmz.suse.de with ESMTPSA id 8Aq7F1cc8WJQfgAAMHmgww (envelope-from ); Mon, 08 Aug 2022 14:23:19 +0000 To: gdb-patches@sourceware.org Subject: [PATCH 2/2] [gdb/testsuite] Add gdb.dwarf2/debug-names-bad-cu-index.exp Date: Mon, 8 Aug 2022 16:23:13 +0200 Message-Id: <20220808142313.29995-2-tdevries@suse.de> X-Mailer: git-send-email 2.35.3 In-Reply-To: <20220808142313.29995-1-tdevries@suse.de> References: <20220808142313.29995-1-tdevries@suse.de> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit 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: , From: Tom de Vries via Gdb-patches Reply-To: Tom de Vries Errors-To: gdb-patches-bounces+public-inbox=simark.ca@sourceware.org Sender: "Gdb-patches" Add test-case gdb.dwarf2/debug-names-bad-cu-index.exp, a regression test for commit 2fe9a3c41fa ("[gdb/symtab] Fix bad compile unit index complaint"). Tested on x86_64-linux. --- .../gdb.dwarf2/debug-names-bad-cu-index.exp | 90 +++++++++++++++++++ gdb/testsuite/lib/dwarf.exp | 32 +++++-- 2 files changed, 114 insertions(+), 8 deletions(-) create mode 100644 gdb/testsuite/gdb.dwarf2/debug-names-bad-cu-index.exp diff --git a/gdb/testsuite/gdb.dwarf2/debug-names-bad-cu-index.exp b/gdb/testsuite/gdb.dwarf2/debug-names-bad-cu-index.exp new file mode 100644 index 00000000000..23dd4daf28f --- /dev/null +++ b/gdb/testsuite/gdb.dwarf2/debug-names-bad-cu-index.exp @@ -0,0 +1,90 @@ +# Copyright 2022 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 . + +load_lib dwarf.exp + +# This test can only be run on targets which support DWARF-2 and use gas. +if {![dwarf2_support]} { + return 0 +} + +standard_testfile _start.c debug-names.S + +set func_info_vars \ + [get_func_info _start [list debug additional_flags=-nostartfiles]] + +# Create the DWARF. +set asm_file [standard_output_file $srcfile2] +Dwarf::assemble { + filename $asm_file + add_dummy_cus 0 +} { + global func_info_vars + foreach var $func_info_vars { + global $var + } + + cu { label cu_label } { + compile_unit {{language @DW_LANG_C}} { + subprogram { + {DW_AT_name _start} + {DW_AT_low_pc $_start_start DW_FORM_addr} + {DW_AT_high_pc $_start_end DW_FORM_addr} + } + } + } + + tu { label tu_label } 0x8ece66f4224fddb3 "" { + type_unit {} { + declare_labels int_type + + structure_type { + {name struct_with_int_member} + {byte_size 4 sdata} + } { + member { + {name member} + {type :$int_type} + } + } + int_type: base_type { + {name int} + {encoding @DW_ATE_signed} + {byte_size 4 sdata} + } + } + } + + debug_names {} { + cu cu_label + tu tu_label + name _start subprogram CU-1 0xEDDB6232 + name struct_with_int_member structure_type tu_label 0x53A2AE86 + } +} + +if [prepare_for_testing "failed to prepare" $testfile "${asm_file} ${srcfile}" \ + [list additional_flags=-nostartfiles]] { + return -1 +} + +# Verify that .debug_names section is not ignored. +set index [have_index $binfile] +gdb_assert { [string equal $index "debug_names"] } ".debug_names used" + +set re "During symbol reading: .debug_names entry has bad CU index 1 " +with_complaints 1 { + gdb_test "p _start" "$re.*" +} diff --git a/gdb/testsuite/lib/dwarf.exp b/gdb/testsuite/lib/dwarf.exp index e36cce1d7f4..b466d00cfe3 100644 --- a/gdb/testsuite/lib/dwarf.exp +++ b/gdb/testsuite/lib/dwarf.exp @@ -2953,6 +2953,8 @@ namespace eval Dwarf { # -- add a name. proc debug_names { options body } { + global decimal + parse_options { { is_64 0 } { version 5 } @@ -3107,13 +3109,21 @@ namespace eval Dwarf { set tag [lindex $idx 1] set cu [lindex $idx 2] - set cu_index [lsearch -exact $_debug_names_cus $cu] - if { $cu_index == -1 } { + if { [regexp "^CU-($decimal)$" $cu dummy cu_index] } { + set attr_name compile_unit + set attr_val 1 + } elseif { [regexp "^TU-($decimal)$" $cu dummy cu_index] } { set attr_name type_unit set attr_val 2 } else { - set attr_name compile_unit - set attr_val 1 + set cu_index [lsearch -exact $_debug_names_cus $cu] + if { $cu_index == -1 } { + set attr_name type_unit + set attr_val 2 + } else { + set attr_name compile_unit + set attr_val 1 + } } _op .byte $abbrev "abbrev $abbrev" @@ -3134,12 +3144,18 @@ namespace eval Dwarf { set cu [lindex $idx 2] set label [lindex $idx 4] - set cu_index [lsearch -exact $_debug_names_cus $cu] - if { $cu_index == -1 } { - set cu_index [lsearch -exact $_debug_names_tus $cu] + if { [regexp "^CU-($decimal)$" $cu dummy cu_index] } { + set comment "$name: CU index" + } elseif { [regexp "^TU-($decimal)$" $cu dummy cu_index] } { set comment "$name: TU index" } else { - set comment "$name: CU index" + set cu_index [lsearch -exact $_debug_names_cus $cu] + if { $cu_index == -1 } { + set cu_index [lsearch -exact $_debug_names_tus $cu] + set comment "$name: TU index" + } else { + set comment "$name: CU index" + } } define_label $label _op .byte $abbrev "$name: abbrev" -- 2.35.3