Blame SOURCES/gdb-6.3-threaded-watchpoints2-20050225.patch

132741
From FEDORA_PATCHES Mon Sep 17 00:00:00 2001
132741
From: Jeff Johnston <jjohnstn@redhat.com>
132741
Date: Fri, 27 Oct 2017 21:07:50 +0200
132741
Subject: gdb-6.3-threaded-watchpoints2-20050225.patch
132741
132741
;; Test sibling threads to set threaded watchpoints for x86 and x86-64
132741
;;=fedoratest
132741
132741
2005-02-28  Jeff Johnston  <jjohnstn@redhat.com>
132741
132741
	* config/i386/nm-linux.h: Change dr register routines to
132741
	accept a ptid_t first argument.  Change all calling macros
132741
	to default the inferior_ptid for the first argument.
132741
	(i386_linux_insert_watchpoint): New prototype.
132741
	(i386_linux_remove_watchpoint, i386_linux_insert_hw_breakpoint): Ditto.
132741
	(i386_linux_remove_hw_breakpoint): Ditto.
132741
	(target_insert_watchpoint, target_remove_watchpoint): Undef and
132741
	override.
132741
	(target_insert_hw_breakpoint, target_remove_hw_breakpoint): Ditto.
132741
	* config/i386/nm-linux64.h: Ditto except add amd64 versions of
132741
	the watchpoint/hw-breakpoint insert/remove routines.
132741
	* i386-nat.c: Include "inferior.h" to define inferior_ptid.
132741
	* i386-linux-nat.c: Change all dr get/set routines to accept
132741
	ptid_t as first argument and to use this argument to determine
132741
	the tid for PTRACE.
132741
	(i386_linux_set_debug_regs_for_thread): New function.
132741
	(i386_linux_sync_debug_registers_callback): Ditto.
132741
	(i386_linux_sync_debug_registers_across_threads): Ditto.
132741
	(i386_linux_insert_watchpoint, i386_linux_remove_watchpoint): Ditto.
132741
	(i386_linux_hw_breakpoint, i386_linux_remove_hw_breakpoint): Ditto.
132741
	(i386_linux_new_thread): Ditto.
132741
	(_initialize_i386_linux_nat): Ditto.
132741
	* amd64-linux-nat.c: Change all dr get/set routines to accept
132741
	ptid_t as first argument and to use this argument to determine
132741
	the tid for PTRACE.
132741
	(amd64_linux_set_debug_regs_for_thread): New function.
132741
	(amd64_linux_sync_debug_registers_callback): Ditto.
132741
	(amd64_linux_sync_debug_registers_across_threads): Ditto.
132741
	(amd64_linux_insert_watchpoint, amd64_linux_remove_watchpoint): Ditto.
132741
	(amd64_linux_hw_breakpoint, amd64_linux_remove_hw_breakpoint): Ditto.
132741
	(amd64_linux_new_thread): Ditto.
132741
	(_initialize_amd64_linux_nat): Register linux new thread observer.
132741
	* testsuite/gdb.threads/watchthreads-threaded.c: New test case.
132741
	* testsuite/gdb.threads/watchthreads-threaded.exp: Ditto.
132741
132741
[ With recent upstream GDB (6.8) reduced only to the testcase.  ]
132741
132741
[ It was called watchthreads2.{exp,c} before but it conflicted with FSF GDB new
132741
  testcase of the same name.  ]
132741
132741
FIXME: The testcase does not expects multiple watchpoints hits per one stop.
132741
132741
diff --git a/gdb/testsuite/gdb.threads/watchthreads-threaded.c b/gdb/testsuite/gdb.threads/watchthreads-threaded.c
132741
new file mode 100644
132741
--- /dev/null
132741
+++ b/gdb/testsuite/gdb.threads/watchthreads-threaded.c
132741
@@ -0,0 +1,65 @@
132741
+/* This testcase is part of GDB, the GNU debugger.
132741
+
132741
+   Copyright 2002, 2003, 2004, 2005 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 2 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, write to the Free Software
132741
+   Foundation, Inc., 59 Temple Place - Suite 330,
132741
+   Boston, MA 02111-1307, USA.
132741
+
132741
+   This file is copied from schedlock.c.  */
132741
+
132741
+#include <stdio.h>
132741
+#include <unistd.h>
132741
+#include <stdlib.h>
132741
+#include <pthread.h>
132741
+
132741
+void *thread_function(void *arg); /* Pointer to function executed by each thread */
132741
+
132741
+#define NUM 5
132741
+
132741
+unsigned int args[NUM+1];
132741
+
132741
+int main() {
132741
+    int res;
132741
+    pthread_t threads[NUM];
132741
+    void *thread_result;
132741
+    long i;
132741
+
132741
+    for (i = 0; i < NUM; i++)
132741
+      {
132741
+	args[i] = 1; /* Init value.  */
132741
+	res = pthread_create(&threads[i],
132741
+		             NULL,
132741
+			     thread_function,
132741
+			     (void *) i);
132741
+      }
132741
+
132741
+    args[i] = 1;
132741
+    thread_function ((void *) i);
132741
+
132741
+    exit(EXIT_SUCCESS);
132741
+}
132741
+
132741
+void *thread_function(void *arg) {
132741
+    int my_number =  (long) arg;
132741
+    int *myp = (int *) &args[my_number];
132741
+
132741
+    /* Don't run forever.  Run just short of it :)  */
132741
+    while (*myp > 0)
132741
+      {
132741
+	(*myp) ++; usleep (1); /* Loop increment.  */
132741
+      }
132741
+
132741
+    pthread_exit(NULL);
132741
+}
132741
diff --git a/gdb/testsuite/gdb.threads/watchthreads-threaded.exp b/gdb/testsuite/gdb.threads/watchthreads-threaded.exp
132741
new file mode 100644
132741
--- /dev/null
132741
+++ b/gdb/testsuite/gdb.threads/watchthreads-threaded.exp
132741
@@ -0,0 +1,126 @@
132741
+# This testcase is part of GDB, the GNU debugger.
132741
+
132741
+# Copyright 2005 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 2 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, write to the Free Software
132741
+# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
132741
+
132741
+# Check that GDB can support multiple watchpoints across threads.
132741
+
132741
+# This test verifies that a watchpoint is detected in the proper thread
132741
+# so the test is only meaningful on a system with hardware watchpoints.
132741
+if [target_info exists gdb,no_hardware_watchpoints] {
132741
+    return 0;
132741
+}
132741
+
132741
+set testfile "watchthreads-threaded"
132741
+set srcfile ${testfile}.c
132741
+set binfile [standard_output_file ${testfile}]
132741
+if {[gdb_compile_pthreads "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable [list debug "incdir=${objdir}"]] != "" } {
132741
+    return -1
132741
+}
132741
+
132741
+gdb_exit
132741
+gdb_start
132741
+gdb_reinitialize_dir $srcdir/$subdir
132741
+gdb_load ${binfile}
132741
+
132741
+gdb_test "set can-use-hw-watchpoints 1" "" ""
132741
+
132741
+#
132741
+# Run to `main' where we begin our tests.
132741
+#
132741
+
132741
+if ![runto_main] then {
132741
+    gdb_suppress_tests
132741
+}
132741
+
132741
+set args_2 0
132741
+set args_3 0
132741
+
132741
+gdb_breakpoint "thread_function"
132741
+gdb_continue_to_breakpoint "thread_function"
132741
+gdb_test "disable 2" ""
132741
+
132741
+gdb_test_multiple "p args\[2\]" "get initial args2" {
132741
+  -re "\\\$\[0-9\]* = (.*)$gdb_prompt $" {
132741
+    set init_args_2 $expect_out(1,string)
132741
+    pass "get initial args2"
132741
+  }
132741
+}
132741
+
132741
+gdb_test_multiple "p args\[3\]" "get initial args3" {
132741
+  -re "\\\$\[0-9\]* = (.*)$gdb_prompt $" {
132741
+    set init_args_3 $expect_out(1,string)
132741
+    pass "get initial args3"
132741
+  }
132741
+}
132741
+
132741
+set args_2 $init_args_2
132741
+set args_3 $init_args_3
132741
+
132741
+# Watch values that will be modified by distinct threads.
132741
+gdb_test "watch args\[2\]" "Hardware watchpoint 3: args\\\[2\\\]"
132741
+gdb_test "watch args\[3\]" "Hardware watchpoint 4: args\\\[3\\\]"
132741
+
132741
+set init_line [expr [gdb_get_line_number "Init value"]+1]
132741
+set inc_line [gdb_get_line_number "Loop increment"]
132741
+
132741
+# Loop and continue to allow both watchpoints to be triggered.
132741
+for {set i 0} {$i < 30} {incr i} {
132741
+  set test_flag 0
132741
+  gdb_test_multiple "continue" "threaded watch loop" {
132741
+    -re "Hardware watchpoint 3: args\\\[2\\\].*Old value = 0.*New value = 1.*main \\\(\\\) at .*watchthreads-threaded.c:$init_line.*$gdb_prompt $"
132741
+       { set args_2 1; set test_flag 1 }
132741
+    -re "Hardware watchpoint 4: args\\\[3\\\].*Old value = 0.*New value = 1.*main \\\(\\\) at .*watchthreads-threaded.c:$init_line.*$gdb_prompt $"
132741
+       { set args_3 1; set test_flag 1 }
132741
+    -re "Hardware watchpoint 3: args\\\[2\\\].*Old value = $args_2.*New value = [expr $args_2+1].*thread_function \\\(arg=0x2\\\) at .*watchthreads-threaded.c:$inc_line.*$gdb_prompt $"
132741
+       { set args_2 [expr $args_2+1]; set test_flag 1 }
132741
+    -re "Hardware watchpoint 4: args\\\[3\\\].*Old value = $args_3.*New value = [expr $args_3+1].*thread_function \\\(arg=0x3\\\) at .*watchthreads-threaded.c:$inc_line.*$gdb_prompt $"
132741
+       { set args_3 [expr $args_3+1]; set test_flag 1 }
132741
+  }
132741
+  # If we fail above, don't bother continuing loop
132741
+  if { $test_flag == 0 } {
132741
+    set i 30;
132741
+  }
132741
+}
132741
+
132741
+# Print success message if loop succeeded.
132741
+if { $test_flag == 1 } {
132741
+  pass "threaded watch loop"
132741
+}
132741
+
132741
+# Verify that we hit first watchpoint in child thread.
132741
+set message "watchpoint on args\[2\] hit in thread"
132741
+if { $args_2 > 1 } {
132741
+  pass $message
132741
+} else {
132741
+  fail $message
132741
+}
132741
+
132741
+# Verify that we hit second watchpoint in child thread.
132741
+set message "watchpoint on args\[3\] hit in thread"
132741
+if { $args_3 > 1 } {
132741
+  pass $message
132741
+} else {
132741
+  fail $message
132741
+}
132741
+
132741
+# Verify that all watchpoint hits are accounted for.
132741
+set message "combination of threaded watchpoints = 30 + initial values"
132741
+if { [expr $args_2+$args_3] == [expr [expr 30+$init_args_2]+$init_args_3] } {
132741
+  pass $message
132741
+} else {
132741
+  fail $message
132741
+}