689258
From FEDORA_PATCHES Mon Sep 17 00:00:00 2001
689258
From: Fedora GDB patches <invalid@email.com>
689258
Date: Fri, 27 Oct 2017 21:07:50 +0200
689258
Subject: gdb-bz541866-rwatch-before-run.patch
689258
689258
;; Fix i386+x86_64 rwatch+awatch before run, regression against 6.8 (BZ 541866).
689258
;; Fix i386 rwatch+awatch before run (BZ 688788, on top of BZ 541866).
689258
;;=push+jan: It should be fixed properly instead.
689258
689258
diff --git a/gdb/breakpoint.c b/gdb/breakpoint.c
689258
--- a/gdb/breakpoint.c
689258
+++ b/gdb/breakpoint.c
689258
@@ -8807,7 +8807,7 @@ init_breakpoint_sal (struct breakpoint *b, struct gdbarch *gdbarch,
689258
 		     int enabled, int internal, unsigned flags,
689258
 		     int display_canonical)
689258
 {
689258
-  int i;
689258
+  int i ATTRIBUTE_UNUSED;
689258
 
689258
   if (type == bp_hardware_breakpoint)
689258
     {
689258
@@ -14356,7 +14356,7 @@ enable_breakpoint_disp (struct breakpoint *bpt, enum bpdisp disposition,
689258
 
689258
   if (bpt->type == bp_hardware_breakpoint)
689258
     {
689258
-      int i;
689258
+      int i ATTRIBUTE_UNUSED;
689258
       i = hw_breakpoint_used_count ();
689258
       target_resources_ok = 
689258
 	target_can_use_hardware_watchpoint (bp_hardware_breakpoint, 
689258
diff --git a/gdb/config/i386/nm-linux.h b/gdb/config/i386/nm-linux.h
689258
new file mode 100644
689258
--- /dev/null
689258
+++ b/gdb/config/i386/nm-linux.h
689258
@@ -0,0 +1,28 @@
689258
+/* Native support for GNU/Linux i386.
689258
+
689258
+   Copyright 2010 Free Software Foundation, Inc.
689258
+
689258
+   This file is part of GDB.
689258
+
689258
+   This program is free software; you can redistribute it and/or modify
689258
+   it under the terms of the GNU General Public License as published by
689258
+   the Free Software Foundation; either version 3 of the License, or
689258
+   (at your option) any later version.
689258
+
689258
+   This program is distributed in the hope that it will be useful,
689258
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
689258
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
689258
+   GNU General Public License for more details.
689258
+
689258
+   You should have received a copy of the GNU General Public License
689258
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
689258
+
689258
+#ifndef NM_LINUX_H
689258
+#define NM_LINUX_H
689258
+
689258
+#include "config/nm-linux.h"
689258
+
689258
+/* Red Hat backward compatibility with gdb-6.8.  */
689258
+#define target_can_use_hardware_watchpoint(type, cnt, ot) 1
689258
+
689258
+#endif /* NM_LINUX64_H */
689258
diff --git a/gdb/config/i386/nm-linux64.h b/gdb/config/i386/nm-linux64.h
689258
new file mode 100644
689258
--- /dev/null
689258
+++ b/gdb/config/i386/nm-linux64.h
689258
@@ -0,0 +1,28 @@
689258
+/* Native support for GNU/Linux amd64.
689258
+
689258
+   Copyright 2010 Free Software Foundation, Inc.
689258
+
689258
+   This file is part of GDB.
689258
+
689258
+   This program is free software; you can redistribute it and/or modify
689258
+   it under the terms of the GNU General Public License as published by
689258
+   the Free Software Foundation; either version 3 of the License, or
689258
+   (at your option) any later version.
689258
+
689258
+   This program is distributed in the hope that it will be useful,
689258
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
689258
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
689258
+   GNU General Public License for more details.
689258
+
689258
+   You should have received a copy of the GNU General Public License
689258
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
689258
+
689258
+#ifndef NM_LINUX64_H
689258
+#define NM_LINUX64_H
689258
+
689258
+#include "config/nm-linux.h"
689258
+
689258
+/* Red Hat backward compatibility with gdb-6.8.  */
689258
+#define target_can_use_hardware_watchpoint(type, cnt, ot) 1
689258
+
689258
+#endif /* NM_LINUX64_H */
689258
diff --git a/gdb/configure.nat b/gdb/configure.nat
689258
--- a/gdb/configure.nat
689258
+++ b/gdb/configure.nat
689258
@@ -238,6 +238,7 @@ case ${gdb_host} in
689258
 		;;
689258
 	    i386)
689258
 		# Host: Intel 386 running GNU/Linux.
689258
+		NAT_FILE="${srcdir}/config/${gdb_host_cpu}/nm-linux.h"
689258
 		NATDEPFILES="${NATDEPFILES} x86-nat.o x86-dregs.o \
689258
 		i386-linux-nat.o x86-linux-nat.o linux-btrace.o \
689258
 		x86-linux.o x86-linux-dregs.o"
689258
@@ -290,6 +291,7 @@ case ${gdb_host} in
689258
 	case ${gdb_host_cpu} in
689258
 	    i386)
689258
 		# Host: GNU/Linux x86-64
689258
+		NAT_FILE="${srcdir}/config/${gdb_host_cpu}/nm-linux64.h"
689258
 		NATDEPFILES="${NATDEPFILES} x86-nat.o x86-dregs.o \
689258
 		amd64-nat.o amd64-linux-nat.o x86-linux-nat.o linux-btrace.o \
689258
 		x86-linux.o x86-linux-dregs.o amd64-linux-siginfo.o"
689258
diff --git a/gdb/target.h b/gdb/target.h
689258
--- a/gdb/target.h
689258
+++ b/gdb/target.h
689258
@@ -1953,9 +1953,11 @@ extern struct thread_info *target_thread_handle_to_thread_info
689258
    one.  OTHERTYPE is the number of watchpoints of other types than
689258
    this one used so far.  */
689258
 
689258
+#ifndef target_can_use_hardware_watchpoint
689258
 #define target_can_use_hardware_watchpoint(TYPE,CNT,OTHERTYPE) \
689258
  (current_top_target ()->can_use_hw_breakpoint) ( \
689258
 					     TYPE, CNT, OTHERTYPE)
689258
+#endif
689258
 
689258
 /* Returns the number of debug registers needed to watch the given
689258
    memory region, or zero if not supported.  */
689258
diff --git a/gdb/testsuite/gdb.base/watchpoint-hw-before-run.exp b/gdb/testsuite/gdb.base/watchpoint-hw-before-run.exp
689258
new file mode 100644
689258
--- /dev/null
689258
+++ b/gdb/testsuite/gdb.base/watchpoint-hw-before-run.exp
689258
@@ -0,0 +1,40 @@
689258
+# Copyright 2009, 2010 Free Software Foundation, Inc.
689258
+
689258
+# This program is free software; you can redistribute it and/or modify
689258
+# it under the terms of the GNU General Public License as published by
689258
+# the Free Software Foundation; either version 3 of the License, or
689258
+# (at your option) any later version.
689258
+#
689258
+# This program is distributed in the hope that it will be useful,
689258
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
689258
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
689258
+# GNU General Public License for more details.
689258
+#
689258
+# You should have received a copy of the GNU General Public License
689258
+# along with this program.  If not, see <http://www.gnu.org/licenses/>.
689258
+
689258
+# Arch not supporting hw watchpoints does not imply no_hardware_watchpoints set.
689258
+if {(![istarget "i?86-*-*"] && ![istarget "x86_64-*-*"]
689258
+     && ![istarget "ia64-*-*"])
689258
+    || [target_info exists gdb,no_hardware_watchpoints]} then {
689258
+    verbose "Skipping watchpoint-hw-before-run test."
689258
+    return
689258
+}
689258
+
689258
+set test watchpoint-hw-before-run
689258
+set srcfile watchpoint-hw-hit-once.c
689258
+if { [prepare_for_testing ${test}.exp ${test} ${srcfile}] } {
689258
+    return -1
689258
+}
689258
+
689258
+gdb_test "rwatch watchee" "ardware read watchpoint 1: watchee"
689258
+
689258
+# `runto_main' or `runto main' would delete the watchpoint created above.
689258
+
689258
+if { [gdb_start_cmd] < 0 } {
689258
+    untested start
689258
+    return -1
689258
+}
689258
+gdb_test "" "main .* at .*" "start"
689258
+
689258
+gdb_test "continue" "Continuing.\r\n\r\nHardware read watchpoint \[0-9\]+: watchee\r\n\r\nValue = 0\r\n.*"