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

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