Blame SOURCES/gdb-test-dw2-aranges.patch

4a80f0
From FEDORA_PATCHES Mon Sep 17 00:00:00 2001
4a80f0
From: Fedora GDB patches <invalid@email.com>
4a80f0
Date: Fri, 27 Oct 2017 21:07:50 +0200
4a80f0
Subject: gdb-test-dw2-aranges.patch
4a80f0
4a80f0
;; [archer-tromey-delayed-symfile] New test gdb.dwarf2/dw2-aranges.exp.
4a80f0
;;=fedoratest
4a80f0
4a80f0
[archer-tromey-delayed-symfile]
4a80f0
4a80f0
commit 77fa7778a37b0d28a7e4e5235f074a10ecf1815d
4a80f0
Author: Jan Kratochvil <jkratoch@host1.dyn.jankratochvil.net>
4a80f0
Date:   Sat Aug 15 15:05:54 2009 +0200
4a80f0
4a80f0
    Test for "handle incorrect aranges".
4a80f0
4a80f0
    readelf:
4a80f0
    Contents of the .debug_aranges section:
4a80f0
4a80f0
      Length:                   8
4a80f0
      Version:                  2
4a80f0
      Offset into .debug_info:  0x0
4a80f0
      Pointer Size:             0
4a80f0
      Segment Size:             0
4a80f0
4a80f0
        Address    Length
4a80f0
    Floating point exception
4a80f0
4a80f0
    	* gdb.dwarf2/dw2-aranges.exp, gdb.dwarf2/dw2-aranges.S: New files.
4a80f0
4a80f0
diff --git a/gdb/testsuite/gdb.dwarf2/dw2-aranges.S b/gdb/testsuite/gdb.dwarf2/dw2-aranges.S
4a80f0
new file mode 100644
4a80f0
--- /dev/null
4a80f0
+++ b/gdb/testsuite/gdb.dwarf2/dw2-aranges.S
4a80f0
@@ -0,0 +1,140 @@
4a80f0
+/* This testcase is part of GDB, the GNU debugger.
4a80f0
+
4a80f0
+   Copyright 2004, 2007, 2008, 2009 Free Software Foundation, Inc.
4a80f0
+
4a80f0
+   This program is free software; you can redistribute it and/or modify
4a80f0
+   it under the terms of the GNU General Public License as published by
4a80f0
+   the Free Software Foundation; either version 3 of the License, or
4a80f0
+   (at your option) any later version.
4a80f0
+
4a80f0
+   This program is distributed in the hope that it will be useful,
4a80f0
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
4a80f0
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
4a80f0
+   GNU General Public License for more details.
4a80f0
+
4a80f0
+   You should have received a copy of the GNU General Public License
4a80f0
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
4a80f0
+
4a80f0
+/* Test .debug_aranges containing zero address_size.  */
4a80f0
+
4a80f0
+/* Dummy function to provide debug information for.  */
4a80f0
+
4a80f0
+	.text
4a80f0
+.Lbegin_text1:
4a80f0
+	.globl main
4a80f0
+	.type main, %function
4a80f0
+main:
4a80f0
+.Lbegin_main:
4a80f0
+	.int 0
4a80f0
+.Lend_main:
4a80f0
+	.size main, .-main
4a80f0
+.Lend_text1:
4a80f0
+
4a80f0
+/* Debug information */
4a80f0
+
4a80f0
+	.section .debug_info
4a80f0
+.Lcu1_begin:
4a80f0
+	/* CU header */
4a80f0
+	.4byte	.Lcu1_end - .Lcu1_start		/* Length of Compilation Unit */
4a80f0
+.Lcu1_start:
4a80f0
+	.2byte	2				/* DWARF Version */
4a80f0
+	.4byte	.Labbrev1_begin			/* Offset into abbrev section */
4a80f0
+	.byte	4				/* Pointer size */
4a80f0
+
4a80f0
+	/* CU die */
4a80f0
+	.uleb128 1				/* Abbrev: DW_TAG_compile_unit */
4a80f0
+	.4byte	.Lend_text1			/* DW_AT_high_pc */
4a80f0
+	.4byte	.Lbegin_text1			/* DW_AT_low_pc */
4a80f0
+	.ascii	"file1.txt\0"			/* DW_AT_name */
4a80f0
+	.ascii	"GNU C 3.3.3\0"			/* DW_AT_producer */
4a80f0
+	.byte	1				/* DW_AT_language (C) */
4a80f0
+
4a80f0
+	/* main */
4a80f0
+	.uleb128	2			/* Abbrev: DW_TAG_subprogram */
4a80f0
+	.byte		1			/* DW_AT_external */
4a80f0
+	.byte		1			/* DW_AT_decl_file */
4a80f0
+	.byte		2			/* DW_AT_decl_line */
4a80f0
+	.ascii		"main\0"		/* DW_AT_name */
4a80f0
+	.4byte		.Ltype_int-.Lcu1_begin	/* DW_AT_type */
4a80f0
+	.4byte		.Lbegin_main	/* DW_AT_low_pc */
4a80f0
+	.4byte		.Lend_main		/* DW_AT_high_pc */
4a80f0
+	.byte		1			/* DW_AT_frame_base: length */
4a80f0
+	.byte		0x55			/* DW_AT_frame_base: DW_OP_reg5 */
4a80f0
+
4a80f0
+.Ltype_int:
4a80f0
+	.uleb128	3			/* Abbrev: DW_TAG_base_type */
4a80f0
+	.ascii		"int\0"			/* DW_AT_name */
4a80f0
+	.byte		4			/* DW_AT_byte_size */
4a80f0
+	.byte		5			/* DW_AT_encoding */
4a80f0
+
4a80f0
+	.byte		0			/* End of children of CU */
4a80f0
+
4a80f0
+.Lcu1_end:
4a80f0
+
4a80f0
+/* Abbrev table */
4a80f0
+	.section .debug_abbrev
4a80f0
+.Labbrev1_begin:
4a80f0
+	.uleb128	1			/* Abbrev code */
4a80f0
+	.uleb128	0x11			/* DW_TAG_compile_unit */
4a80f0
+	.byte		1			/* has_children */
4a80f0
+	.uleb128	0x12			/* DW_AT_high_pc */
4a80f0
+	.uleb128	0x1			/* DW_FORM_addr */
4a80f0
+	.uleb128	0x11			/* DW_AT_low_pc */
4a80f0
+	.uleb128	0x1			/* DW_FORM_addr */
4a80f0
+	.uleb128	0x3			/* DW_AT_name */
4a80f0
+	.uleb128	0x8			/* DW_FORM_string */
4a80f0
+	.uleb128	0x25			/* DW_AT_producer */
4a80f0
+	.uleb128	0x8			/* DW_FORM_string */
4a80f0
+	.uleb128	0x13			/* DW_AT_language */
4a80f0
+	.uleb128	0xb			/* DW_FORM_data1 */
4a80f0
+	.byte		0x0			/* Terminator */
4a80f0
+	.byte		0x0			/* Terminator */
4a80f0
+
4a80f0
+	.uleb128	2			/* Abbrev code */
4a80f0
+	.uleb128	0x2e			/* DW_TAG_subprogram */
4a80f0
+	.byte		0			/* has_children */
4a80f0
+	.uleb128	0x3f			/* DW_AT_external */
4a80f0
+	.uleb128	0xc			/* DW_FORM_flag */
4a80f0
+	.uleb128	0x3a			/* DW_AT_decl_file */
4a80f0
+	.uleb128	0xb			/* DW_FORM_data1 */
4a80f0
+	.uleb128	0x3b			/* DW_AT_decl_line */
4a80f0
+	.uleb128	0xb			/* DW_FORM_data1 */
4a80f0
+	.uleb128	0x3			/* DW_AT_name */
4a80f0
+	.uleb128	0x8			/* DW_FORM_string */
4a80f0
+	.uleb128	0x49			/* DW_AT_type */
4a80f0
+	.uleb128	0x13			/* DW_FORM_ref4 */
4a80f0
+	.uleb128	0x11			/* DW_AT_low_pc */
4a80f0
+	.uleb128	0x1			/* DW_FORM_addr */
4a80f0
+	.uleb128	0x12			/* DW_AT_high_pc */
4a80f0
+	.uleb128	0x1			/* DW_FORM_addr */
4a80f0
+	.uleb128	0x40			/* DW_AT_frame_base */
4a80f0
+	.uleb128	0xa			/* DW_FORM_block1 */
4a80f0
+	.byte		0x0			/* Terminator */
4a80f0
+	.byte		0x0			/* Terminator */
4a80f0
+
4a80f0
+	.uleb128	3			/* Abbrev code */
4a80f0
+	.uleb128	0x24			/* DW_TAG_base_type */
4a80f0
+	.byte		0			/* has_children */
4a80f0
+	.uleb128	0x3			/* DW_AT_name */
4a80f0
+	.uleb128	0x8			/* DW_FORM_string */
4a80f0
+	.uleb128	0xb			/* DW_AT_byte_size */
4a80f0
+	.uleb128	0xb			/* DW_FORM_data1 */
4a80f0
+	.uleb128	0x3e			/* DW_AT_encoding */
4a80f0
+	.uleb128	0xb			/* DW_FORM_data1 */
4a80f0
+	.byte		0x0			/* Terminator */
4a80f0
+	.byte		0x0			/* Terminator */
4a80f0
+
4a80f0
+	.byte		0x0			/* Terminator */
4a80f0
+	.byte		0x0			/* Terminator */
4a80f0
+
4a80f0
+/* aranges table */
4a80f0
+	.section .debug_aranges
4a80f0
+	.long	.Laranges_end - 1f
4a80f0
+1:
4a80f0
+	.2byte	2				/* aranges Version */
4a80f0
+	.4byte	.Lcu1_begin - .debug_info	/* Offset into .debug_info section */
4a80f0
+	/* The GDB crasher is this zero value.  */
4a80f0
+	.byte		0			/* aranges address_size */
4a80f0
+	.byte		0			/* aranges segment_size */
4a80f0
+
4a80f0
+.Laranges_end:
4a80f0
diff --git a/gdb/testsuite/gdb.dwarf2/dw2-aranges.exp b/gdb/testsuite/gdb.dwarf2/dw2-aranges.exp
4a80f0
new file mode 100644
4a80f0
--- /dev/null
4a80f0
+++ b/gdb/testsuite/gdb.dwarf2/dw2-aranges.exp
4a80f0
@@ -0,0 +1,40 @@
4a80f0
+# Copyright 2004, 2005, 2007, 2008, 2009 Free Software Foundation, Inc.
4a80f0
+
4a80f0
+# This program is free software; you can redistribute it and/or modify
4a80f0
+# it under the terms of the GNU General Public License as published by
4a80f0
+# the Free Software Foundation; either version 3 of the License, or
4a80f0
+# (at your option) any later version.
4a80f0
+#
4a80f0
+# This program is distributed in the hope that it will be useful,
4a80f0
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
4a80f0
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
4a80f0
+# GNU General Public License for more details.
4a80f0
+#
4a80f0
+# You should have received a copy of the GNU General Public License
4a80f0
+# along with this program.  If not, see <http://www.gnu.org/licenses/>.
4a80f0
+
4a80f0
+# Test .debug_aranges containing zero address_size.
4a80f0
+
4a80f0
+# This test can only be run on targets which support DWARF-2 and use gas.
4a80f0
+# For now pick a sampling of likely targets.
4a80f0
+if {![istarget *-*-linux*]
4a80f0
+    && ![istarget *-*-gnu*]
4a80f0
+    && ![istarget *-*-elf*]
4a80f0
+    && ![istarget *-*-openbsd*]
4a80f0
+    && ![istarget arm-*-eabi*]
4a80f0
+    && ![istarget powerpc-*-eabi*]} {
4a80f0
+    return 0
4a80f0
+}
4a80f0
+
4a80f0
+set testfile "dw2-aranges"
4a80f0
+set srcfile ${testfile}.S
4a80f0
+set binfile [standard_output_file ${testfile}]
4a80f0
+
4a80f0
+if  { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable {nodebug}] != "" } {
4a80f0
+    return -1
4a80f0
+}
4a80f0
+
4a80f0
+clean_restart $testfile
4a80f0
+
4a80f0
+# Failed gdb_load would abort the testcase execution earlier.
4a80f0
+pass "file loaded"