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

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