]> git.pld-linux.org Git - packages/gdb.git/blame - gdb-6.3-threaded-watchpoints2-20050225.patch
- added devel deps for gdb-lib
[packages/gdb.git] / gdb-6.3-threaded-watchpoints2-20050225.patch
CommitLineData
3a58abaf
AM
12005-02-28 Jeff Johnston <jjohnstn@redhat.com>
2
3 * config/i386/nm-linux.h: Change dr register routines to
4 accept a ptid_t first argument. Change all calling macros
5 to default the inferior_ptid for the first argument.
6 (i386_linux_insert_watchpoint): New prototype.
7 (i386_linux_remove_watchpoint, i386_linux_insert_hw_breakpoint): Ditto.
8 (i386_linux_remove_hw_breakpoint): Ditto.
9 (target_insert_watchpoint, target_remove_watchpoint): Undef and
10 override.
11 (target_insert_hw_breakpoint, target_remove_hw_breakpoint): Ditto.
12 * config/i386/nm-linux64.h: Ditto except add amd64 versions of
13 the watchpoint/hw-breakpoint insert/remove routines.
14 * i386-nat.c: Include "inferior.h" to define inferior_ptid.
15 * i386-linux-nat.c: Change all dr get/set routines to accept
16 ptid_t as first argument and to use this argument to determine
17 the tid for PTRACE.
18 (i386_linux_set_debug_regs_for_thread): New function.
19 (i386_linux_sync_debug_registers_callback): Ditto.
20 (i386_linux_sync_debug_registers_across_threads): Ditto.
21 (i386_linux_insert_watchpoint, i386_linux_remove_watchpoint): Ditto.
22 (i386_linux_hw_breakpoint, i386_linux_remove_hw_breakpoint): Ditto.
23 (i386_linux_new_thread): Ditto.
24 (_initialize_i386_linux_nat): Ditto.
25 * amd64-linux-nat.c: Change all dr get/set routines to accept
26 ptid_t as first argument and to use this argument to determine
27 the tid for PTRACE.
28 (amd64_linux_set_debug_regs_for_thread): New function.
29 (amd64_linux_sync_debug_registers_callback): Ditto.
30 (amd64_linux_sync_debug_registers_across_threads): Ditto.
31 (amd64_linux_insert_watchpoint, amd64_linux_remove_watchpoint): Ditto.
32 (amd64_linux_hw_breakpoint, amd64_linux_remove_hw_breakpoint): Ditto.
33 (amd64_linux_new_thread): Ditto.
34 (_initialize_amd64_linux_nat): Register linux new thread observer.
35 * testsuite/gdb.threads/watchthreads2.c: New test case.
36 * testsuite/gdb.threads/watchthreads2.exp: Ditto.
37
38[ With recent upstream GDB (6.8) reduced only to the testcase. ]
39
40FIXME: The testcase does not expects multiple watchpoints hits per one stop.
41
42Index: gdb-6.5/gdb/testsuite/gdb.threads/watchthreads2.c
43===================================================================
44--- /dev/null 1970-01-01 00:00:00.000000000 +0000
7566401a 45+++ gdb-6.5/gdb/testsuite/gdb.threads/watchthreads-threaded.c 2006-07-12 01:54:29.000000000 -0300
3a58abaf
AM
46@@ -0,0 +1,66 @@
47+/* This testcase is part of GDB, the GNU debugger.
48+
49+ Copyright 2002, 2003, 2004, 2005 Free Software Foundation, Inc.
50+
51+ This program is free software; you can redistribute it and/or modify
52+ it under the terms of the GNU General Public License as published by
53+ the Free Software Foundation; either version 2 of the License, or
54+ (at your option) any later version.
55+
56+ This program is distributed in the hope that it will be useful,
57+ but WITHOUT ANY WARRANTY; without even the implied warranty of
58+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
59+ GNU General Public License for more details.
60+
61+ You should have received a copy of the GNU General Public License
62+ along with this program; if not, write to the Free Software
63+ Foundation, Inc., 59 Temple Place - Suite 330,
64+ Boston, MA 02111-1307, USA.
65+
66+ This file is copied from schedlock.c. */
67+
68+#include <stdio.h>
69+#include <unistd.h>
70+#include <stdlib.h>
71+#include <pthread.h>
72+
73+void *thread_function(void *arg); /* Pointer to function executed by each thread */
74+
75+#define NUM 5
76+
77+unsigned int args[NUM+1];
78+
79+int main() {
80+ int res;
81+ pthread_t threads[NUM];
82+ void *thread_result;
83+ long i;
84+
85+ for (i = 0; i < NUM; i++)
86+ {
87+ args[i] = 1; /* Init value. */
88+ res = pthread_create(&threads[i],
89+ NULL,
90+ thread_function,
91+ (void *) i);
92+ }
93+
94+ args[i] = 1;
95+ thread_function ((void *) i);
96+
97+ exit(EXIT_SUCCESS);
98+}
99+
100+void *thread_function(void *arg) {
101+ int my_number = (long) arg;
102+ int *myp = (int *) &args[my_number];
103+
104+ /* Don't run forever. Run just short of it :) */
105+ while (*myp > 0)
106+ {
107+ (*myp) ++; usleep (1); /* Loop increment. */
108+ }
109+
110+ pthread_exit(NULL);
111+}
112+
113Index: gdb-6.5/gdb/testsuite/gdb.threads/watchthreads2.exp
114===================================================================
115--- /dev/null 1970-01-01 00:00:00.000000000 +0000
7566401a 116+++ gdb-6.5/gdb/testsuite/gdb.threads/watchthreads-threaded.exp 2006-07-12 01:54:29.000000000 -0300
51a5ef0f 117@@ -0,0 +1,126 @@
3a58abaf
AM
118+# This testcase is part of GDB, the GNU debugger.
119+
120+# Copyright 2005 Free Software Foundation, Inc.
121+
122+# This program is free software; you can redistribute it and/or modify
123+# it under the terms of the GNU General Public License as published by
124+# the Free Software Foundation; either version 2 of the License, or
125+# (at your option) any later version.
126+#
127+# This program is distributed in the hope that it will be useful,
128+# but WITHOUT ANY WARRANTY; without even the implied warranty of
129+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
130+# GNU General Public License for more details.
131+#
132+# You should have received a copy of the GNU General Public License
133+# along with this program; if not, write to the Free Software
134+# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
135+
136+# Check that GDB can support multiple watchpoints across threads.
137+
3a58abaf
AM
138+# This test verifies that a watchpoint is detected in the proper thread
139+# so the test is only meaningful on a system with hardware watchpoints.
140+if [target_info exists gdb,no_hardware_watchpoints] {
141+ return 0;
142+}
143+
144+set testfile "watchthreads2"
145+set srcfile ${testfile}.c
146+set binfile ${objdir}/${subdir}/${testfile}
147+if {[gdb_compile_pthreads "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable [list debug "incdir=${objdir}"]] != "" } {
148+ return -1
149+}
150+
151+gdb_exit
152+gdb_start
153+gdb_reinitialize_dir $srcdir/$subdir
154+gdb_load ${binfile}
155+
156+gdb_test "set can-use-hw-watchpoints 1" "" ""
157+
158+#
159+# Run to `main' where we begin our tests.
160+#
161+
162+if ![runto_main] then {
163+ gdb_suppress_tests
164+}
165+
166+set args_2 0
167+set args_3 0
168+
169+gdb_breakpoint "thread_function"
170+gdb_continue_to_breakpoint "thread_function"
171+gdb_test "disable 2" ""
172+
173+gdb_test_multiple "p args\[2\]" "get initial args2" {
174+ -re "\\\$\[0-9\]* = (.*)$gdb_prompt $" {
175+ set init_args_2 $expect_out(1,string)
176+ pass "get initial args2"
177+ }
178+}
179+
180+gdb_test_multiple "p args\[3\]" "get initial args3" {
181+ -re "\\\$\[0-9\]* = (.*)$gdb_prompt $" {
182+ set init_args_3 $expect_out(1,string)
183+ pass "get initial args3"
184+ }
185+}
186+
187+set args_2 $init_args_2
188+set args_3 $init_args_3
189+
190+# Watch values that will be modified by distinct threads.
191+gdb_test "watch args\[2\]" "Hardware watchpoint 3: args\\\[2\\\]"
192+gdb_test "watch args\[3\]" "Hardware watchpoint 4: args\\\[3\\\]"
193+
194+set init_line [expr [gdb_get_line_number "Init value"]+1]
195+set inc_line [gdb_get_line_number "Loop increment"]
196+
197+# Loop and continue to allow both watchpoints to be triggered.
198+for {set i 0} {$i < 30} {incr i} {
199+ set test_flag 0
200+ gdb_test_multiple "continue" "threaded watch loop" {
201+ -re "Hardware watchpoint 3: args\\\[2\\\].*Old value = 0.*New value = 1.*main \\\(\\\) at .*watchthreads2.c:$init_line.*$gdb_prompt $"
202+ { set args_2 1; set test_flag 1 }
203+ -re "Hardware watchpoint 4: args\\\[3\\\].*Old value = 0.*New value = 1.*main \\\(\\\) at .*watchthreads2.c:$init_line.*$gdb_prompt $"
204+ { set args_3 1; set test_flag 1 }
205+ -re "Hardware watchpoint 3: args\\\[2\\\].*Old value = $args_2.*New value = [expr $args_2+1].*in thread_function \\\(arg=0x2\\\) at .*watchthreads2.c:$inc_line.*$gdb_prompt $"
206+ { set args_2 [expr $args_2+1]; set test_flag 1 }
207+ -re "Hardware watchpoint 4: args\\\[3\\\].*Old value = $args_3.*New value = [expr $args_3+1].*in thread_function \\\(arg=0x3\\\) at .*watchthreads2.c:$inc_line.*$gdb_prompt $"
208+ { set args_3 [expr $args_3+1]; set test_flag 1 }
209+ }
210+ # If we fail above, don't bother continuing loop
211+ if { $test_flag == 0 } {
212+ set i 30;
213+ }
214+}
215+
216+# Print success message if loop succeeded.
217+if { $test_flag == 1 } {
218+ pass "threaded watch loop"
219+}
220+
221+# Verify that we hit first watchpoint in child thread.
222+set message "watchpoint on args\[2\] hit in thread"
223+if { $args_2 > 1 } {
224+ pass $message
225+} else {
226+ fail $message
227+}
228+
229+# Verify that we hit second watchpoint in child thread.
230+set message "watchpoint on args\[3\] hit in thread"
231+if { $args_3 > 1 } {
232+ pass $message
233+} else {
234+ fail $message
235+}
236+
237+# Verify that all watchpoint hits are accounted for.
238+set message "combination of threaded watchpoints = 30 + initial values"
239+if { [expr $args_2+$args_3] == [expr [expr 30+$init_args_2]+$init_args_3] } {
240+ pass $message
241+} else {
242+ fail $message
243+}
This page took 0.103393 seconds and 4 git commands to generate.