Blame SOURCES/gdb-test-bt-cfi-without-die.patch

b94e32
From FEDORA_PATCHES Mon Sep 17 00:00:00 2001
b94e32
From: Fedora GDB patches <invalid@email.com>
b94e32
Date: Fri, 27 Oct 2017 21:07:50 +0200
b94e32
Subject: gdb-test-bt-cfi-without-die.patch
b94e32
b94e32
;; [delayed-symfile] Test a backtrace regression on CFIs without DIE (BZ 614604).
b94e32
;;=fedoratest
b94e32
b94e32
http://sourceware.org/ml/archer/2010-q3/msg00028.html
b94e32
b94e32
On Wed, 25 Feb 2009 00:14:29 +0100, Jan Kratochvil wrote:
b94e32
> commit 6a37c2b9962258ecf9299cc34a650e64a06acaa5
b94e32
>
b94e32
> There was a regression on gdb.base/savedregs.exp.
b94e32
>
b94e32
> quick_addrmap/require_partial_symbols should be used even for the unwind debug
b94e32
> info checking as its load has been also delayed by this branch.
b94e32
[...]
b94e32
> --- a/gdb/dwarf2-frame.c
b94e32
> +++ b/gdb/dwarf2-frame.c
b94e32
[...]
b94e32
> @@ -1499,6 +1500,14 @@ dwarf2_frame_find_fde (CORE_ADDR *pc)
b94e32
>        struct dwarf2_fde *fde;
b94e32
>        CORE_ADDR offset;
b94e32
>
b94e32
> +      if (objfile->quick_addrmap)
b94e32
> +	{
b94e32
> +	  if (!addrmap_find (objfile->quick_addrmap, *pc))
b94e32
> +	    continue;
b94e32
> +	}
b94e32
> +      /* FIXME: Read-in only .debug_frame/.eh_frame without .debug_info?  */
b94e32
> +      require_partial_symbols (objfile);
b94e32
> +
b94e32
b94e32
but this has caused a different regression (as discussed in the confcall).
b94e32
b94e32
QUICK_ADDRMAP is built only from .debug_aranges.  But we can have existing
b94e32
built .debug_aranges for CUs in OBJFILE but still some CUs do not need to have
b94e32
DWARF at all while they can feature CFIs (.eh_frame or .debug_frame).
b94e32
It has been described by Daniel Jacobowitz at:
b94e32
	Re: [2/4] RFC: check psymtabs_addrmap before reading FDEs
b94e32
	http://sourceware.org/ml/gdb-patches/2010-07/msg00012.html
b94e32
b94e32
Sorry for this regression by me (in that fix of a different regression).
b94e32
b94e32
Fixed it the "slow way" as this branch is now obsoleted by .gdb-index.
b94e32
b94e32
No regressions on {x86_64,x86_64-m32,i686}-fedora13-linux-gnu.
b94e32
b94e32
Checked-in.
b94e32
b94e32
Thanks,
b94e32
Jan
b94e32
b94e32
eb8df8566acc1ed963e3e9b77c13b9c2c3db03fb
b94e32
b94e32
Test CFI is parsed even for range (function) not described by any DIE.
b94e32
b94e32
https://bugzilla.redhat.com/show_bug.cgi?id=614028
b94e32
b94e32
gdb/
b94e32
	* dwarf2-frame.c (dwarf2_frame_find_fde): Remove the
b94e32
	OBJFILE->QUICK_ADDRMAP check.  New comment why.
b94e32
b94e32
gdb/testsuite/
b94e32
	* gdb.base/cfi-without-die.exp, gdb.base/cfi-without-die-main.c,
b94e32
	gdb.base/cfi-without-die-caller.c: New files.
b94e32
b94e32
diff --git a/gdb/testsuite/gdb.base/cfi-without-die-caller.c b/gdb/testsuite/gdb.base/cfi-without-die-caller.c
b94e32
new file mode 100644
b94e32
--- /dev/null
b94e32
+++ b/gdb/testsuite/gdb.base/cfi-without-die-caller.c
b94e32
@@ -0,0 +1,28 @@
b94e32
+/* This testcase is part of GDB, the GNU debugger.
b94e32
+
b94e32
+   Copyright 2005, 2007, 2008, 2009, 2010 Free Software Foundation, Inc.
b94e32
+
b94e32
+   This program is free software; you can redistribute it and/or modify
b94e32
+   it under the terms of the GNU General Public License as published by
b94e32
+   the Free Software Foundation; either version 3 of the License, or
b94e32
+   (at your option) any later version.
b94e32
+
b94e32
+   This program is distributed in the hope that it will be useful,
b94e32
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
b94e32
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
b94e32
+   GNU General Public License for more details.
b94e32
+
b94e32
+   You should have received a copy of the GNU General Public License
b94e32
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
b94e32
+
b94e32
+typedef int (*callback_t) (void);
b94e32
+
b94e32
+int
b94e32
+caller (callback_t callback)
b94e32
+{
b94e32
+  /* Ensure some frame content to push away the return address.  */
b94e32
+  volatile const long one = 1;
b94e32
+
b94e32
+  /* Modify the return value to prevent any tail-call optimization.  */
b94e32
+  return (*callback) () - one;
b94e32
+}
b94e32
diff --git a/gdb/testsuite/gdb.base/cfi-without-die-main.c b/gdb/testsuite/gdb.base/cfi-without-die-main.c
b94e32
new file mode 100644
b94e32
--- /dev/null
b94e32
+++ b/gdb/testsuite/gdb.base/cfi-without-die-main.c
b94e32
@@ -0,0 +1,32 @@
b94e32
+/* This testcase is part of GDB, the GNU debugger.
b94e32
+
b94e32
+   Copyright 2005, 2007, 2008, 2009, 2010 Free Software Foundation, Inc.
b94e32
+
b94e32
+   This program is free software; you can redistribute it and/or modify
b94e32
+   it under the terms of the GNU General Public License as published by
b94e32
+   the Free Software Foundation; either version 3 of the License, or
b94e32
+   (at your option) any later version.
b94e32
+
b94e32
+   This program is distributed in the hope that it will be useful,
b94e32
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
b94e32
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
b94e32
+   GNU General Public License for more details.
b94e32
+
b94e32
+   You should have received a copy of the GNU General Public License
b94e32
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
b94e32
+
b94e32
+typedef int (*callback_t) (void);
b94e32
+
b94e32
+extern int caller (callback_t callback);
b94e32
+
b94e32
+int
b94e32
+callback (void)
b94e32
+{
b94e32
+  return 1;
b94e32
+}
b94e32
+
b94e32
+int
b94e32
+main (void)
b94e32
+{
b94e32
+  return caller (callback);
b94e32
+}
b94e32
diff --git a/gdb/testsuite/gdb.base/cfi-without-die.exp b/gdb/testsuite/gdb.base/cfi-without-die.exp
b94e32
new file mode 100644
b94e32
--- /dev/null
b94e32
+++ b/gdb/testsuite/gdb.base/cfi-without-die.exp
b94e32
@@ -0,0 +1,71 @@
b94e32
+# Copyright 2010 Free Software Foundation, Inc.
b94e32
+
b94e32
+# This program is free software; you can redistribute it and/or modify
b94e32
+# it under the terms of the GNU General Public License as published by
b94e32
+# the Free Software Foundation; either version 3 of the License, or
b94e32
+# (at your option) any later version.
b94e32
+#
b94e32
+# This program is distributed in the hope that it will be useful,
b94e32
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
b94e32
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
b94e32
+# GNU General Public License for more details.
b94e32
+#
b94e32
+# You should have received a copy of the GNU General Public License
b94e32
+# along with this program.  If not, see <http://www.gnu.org/licenses/>.
b94e32
+
b94e32
+# Test CFI is parsed even for range (function) not described by any DIE.
b94e32
+
b94e32
+set testfile cfi-without-die
b94e32
+set srcmainfile ${testfile}-main.c
b94e32
+set srccallerfile ${testfile}-caller.c
b94e32
+set executable ${testfile}
b94e32
+set objmainfile [standard_output_file ${testfile}-main.o]
b94e32
+set objcallerfile [standard_output_file ${testfile}-caller.o]
b94e32
+set binfile [standard_output_file ${executable}]
b94e32
+
b94e32
+if { [gdb_compile "${srcdir}/${subdir}/${srccallerfile}" ${objcallerfile} \
b94e32
+      object [list {additional_flags=-fomit-frame-pointer -fno-unwind-tables -fno-asynchronous-unwind-tables}]] != ""
b94e32
+     || [gdb_compile "${srcdir}/${subdir}/${srcmainfile}" ${objmainfile} object {debug}] != ""
b94e32
+     || [gdb_compile "${objmainfile} ${objcallerfile}" ${binfile} executable {}] != "" } {
b94e32
+     untested ${testfile}.exp
b94e32
+     return -1
b94e32
+}
b94e32
+
b94e32
+clean_restart $executable
b94e32
+
b94e32
+if ![runto callback] then {
b94e32
+   fail "verify unwinding: Can't run to callback"
b94e32
+   return 0
b94e32
+}
b94e32
+set test "verify unwinding breaks without CFI"
b94e32
+gdb_test_multiple "bt" $test {
b94e32
+    -re " in \[?\]\[?\] .*\r\n$gdb_prompt $" {
b94e32
+	# It may backtrace through some random frames even to main().
b94e32
+	pass $test
b94e32
+    }
b94e32
+    -re " in main .*\r\n$gdb_prompt $" {
b94e32
+	fail $test
b94e32
+    }
b94e32
+    -re "\r\n$gdb_prompt $" {
b94e32
+	pass $test
b94e32
+    }
b94e32
+}
b94e32
+
b94e32
+if { [gdb_compile "${srcdir}/${subdir}/${srccallerfile}" ${objcallerfile} \
b94e32
+      object [list {additional_flags=-fomit-frame-pointer -funwind-tables -fasynchronous-unwind-tables}]] != ""
b94e32
+     || [gdb_compile "${srcdir}/${subdir}/${srcmainfile}" ${objmainfile} object {debug}] != ""
b94e32
+     || [gdb_compile "${objmainfile} ${objcallerfile}" ${binfile} executable {}] != "" } {
b94e32
+     untested ${testfile}.exp
b94e32
+     return -1
b94e32
+}
b94e32
+
b94e32
+clean_restart $executable
b94e32
+
b94e32
+if ![runto callback] then {
b94e32
+   fail "test CFI without DIEs: Can't run to callback"
b94e32
+   return 0
b94e32
+}
b94e32
+# #0  callback () at ...
b94e32
+# #1  0x00000000004004e9 in caller ()
b94e32
+# #2  0x00000000004004cd in main () at ...
b94e32
+gdb_test "bt" "#0 +callback \[^\r\n\]+\r\n#1 \[^\r\n\]+ in caller \[^\r\n\]+\r\n#2 \[^\r\n\]+ in main \[^\r\n\]+" "verify unwindin works for CFI without DIEs"