]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gdb/gdbserver/ChangeLog
*** empty log message ***
[thirdparty/binutils-gdb.git] / gdb / gdbserver / ChangeLog
CommitLineData
03583c20
UW
12011-10-07 Ulrich Weigand <ulrich.weigand@linaro.org>
2
3 * configure.ac: Check support for personality routine.
4 * configure: Regenerate.
5 * config.in: Likewise.
6 * linux-low.c: Include <sys/personality.h>.
7 Define ADDR_NO_RANDOMIZE if necessary.
8 (linux_create_inferior): Disable address space randomization when
9 forking inferior, if requested.
10 (linux_supports_disable_randomization): New function.
11 (linux_target_ops): Install it.
12 * server.h (disable_randomization): Declare.
13 * server.c (disable_randomization): New global variable.
14 (handle_general_set): Handle QDisableRandomization.
15 (handle_query): Likewise for qSupported.
16 (main): Support --disable-randomization and --no-disable-randomization
17 command line arguments.
18 * target.h (struct target_ops): Add supports_disable_randomization.
19 (target_supports_disable_randomization): New macro.
20
723b724b
MF
212011-09-29 Mike Frysinger <vapier@gentoo.org>
22
23 * linux-low.c (target_loadseg): Add defined PTRACE_GETFDPIC to the
24 ifdef check.
25 [PT_GETDSBT] (target_loadmap): Wrap in a defined PT_GETDSBT check.
26 [!PT_GETDSBT] (target_loadmap): New definition.
27 (LINUX_LOADMAP, LINUX_LOADMAP_EXEC, LINUX_LOADMAP_INTERP): Define.
28 (linux_read_loadmap): Change PTRACE_GETDSBT_EXEC to
29 LINUX_LOADMAP_EXEC, PTRACE_GETDSBT_INTERP to LINUX_LOADMAP_INTERP,
30 and PT_GETDSBT to LINUX_LOADMAP.
31 [!PT_GETDSBT] (linux_read_loadmap): Define to NULL.
32 (linux_target_ops): Delete unnecessary ifdef PT_GETDSBT check.
33
55329a5c 342011-09-21 Ulrich Weigand <ulrich.weigand@linaro.org>
71487fd7
UW
35
36 * linux-arm-low.c (struct arm_linux_hwbp_cap): Remove.
37 (arm_linux_hwbp_cap): New static variable.
38 (arm_linux_get_hwbp_cap): Replace by ...
39 (arm_linux_init_hwbp_cap): ... this new function.
40 (arm_linux_get_hw_breakpoint_count): Use arm_linux_hwbp_cap.
41 (arm_linux_get_hw_watchpoint_count): Likewise.
42 (arm_linux_get_hw_watchpoint_max_length): Likewise.
43 (arm_arch_setup): Call arm_linux_init_hwbp_cap.
44 (arm_prepare_to_resume): Use perror_with_name instead of error.
45
55329a5c 462011-09-21 Ulrich Weigand <ulrich.weigand@linaro.org>
09b4ad9f
UW
47
48 * linux-arm-low.c: Include <signal.h>.
49 (PTRACE_GETHBPREGS, PTRACE_SETHBPREGS): Define if necessary.
50 (struct arm_linux_hwbp_cap): New data type.
51 (arm_hwbp_type, arm_hwbp_control_t): New typedefs.
52 (struct arm_linux_hw_breakpoint): New data type.
53 (MAX_BPTS, MAX_WPTS): Define.
54 (struct arch_process_info, struct arch_lwp_info): New data types.
55 (arm_linux_get_hwbp_cap): New function.
56 (arm_linux_get_hw_breakpoint_count): Likewise.
57 (arm_linux_get_hw_watchpoint_count): Likewise.
58 (arm_linux_get_hw_watchpoint_max_length): Likewise.
59 (arm_hwbp_control_initialize): Likewise.
60 (arm_hwbp_control_is_enabled): Likewise.
61 (arm_hwbp_control_is_initialized): Likewise.
62 (arm_hwbp_control_disable): Likewise.
63 (arm_linux_hw_breakpoint_equal): Likewise.
64 (arm_linux_hw_point_initialize): Likewise.
65 (struct update_registers_data): New data structure.
66 (update_registers_callback: New function.
67 (arm_insert_point): Likewise.
68 (arm_remove_point): Likewise.
69 (arm_stopped_by_watchpoint): Likewise.
70 (arm_stopped_data_address): Likewise.
71 (arm_new_process): Likewise.
72 (arm_new_thread): Likewise.
73 (arm_prepare_to_resume): Likewise.
74 (the_low_target): Register arm_insert_point, arm_remove_point,
75 arm_stopped_by_watchpoint, arm_stopped_data_address, arm_new_process,
76 arm_new_thread, and arm_prepare_to_resume.
77
6b9801d4
SS
782011-09-15 Stan Shebs <stan@codesourcery.com>
79
80 * server.h (struct emit_ops): Add compare-goto fields.
81 * tracepoint.c (gdb_agent_op_sizes): New table.
82 (emit_eq_goto): New function.
83 (emit_ne_goto): New function.
84 (emit_lt_goto): New function.
85 (emit_le_goto): New function.
86 (emit_gt_goto): New function.
87 (emit_ge_goto): New function.
88 (is_goto_target): New function.
89 (compile_bytecodes): Recognize special cases of compare-goto
90 combinations and call specialized emitters for them.
91 * linux-x86-low.c (amd64_emit_eq_goto): New function.
92 (amd64_emit_ne_goto): New function.
93 (amd64_emit_lt_goto): New function.
94 (amd64_emit_le_goto): New function.
95 (amd64_emit_gt_goto): New function.
96 (amd64_emit_ge_goto): New function.
97 (amd64_emit_ops): Add the new functions.
98 (i386_emit_eq_goto): New function.
99 (i386_emit_ne_goto): New function.
100 (i386_emit_lt_goto): New function.
101 (i386_emit_le_goto): New function.
102 (i386_emit_gt_goto): New function.
103 (i386_emit_ge_goto): New function.
104 (i386_emit_ops): Add the new functions.
105
bf15cbda
SS
1062011-09-08 Stan Shebs <stan@codesourcery.com>
107
108 * linux-x86-low.c (i386_emit_prologue): Save %ebx.
109 (i386_emit_epilogue): Restore %ebx.
110
943ca1dd
JZ
1112011-08-31 Jie Zhang <jzhang918@gmail.com>
112
113 * server.c (step_thread): Remove definition.
114 (process_serial_event): Don't handle Hs.
115 * server.h (step_thread): Remove declaration.
116 * target.c (set_desired_inferior): Remove use of step_thread.
117
e3deef73
LM
1182011-08-24 Luis Machado <lgustavo@codesourcery.com>
119
120 * linux-low.c: Include linux-procfs.h.
121 (linux_attach_lwp_1): Update comments.
122 (linux_attach): Scan for existing threads when attaching to a
123 process that is the tgid.
124 * Makefile.in: Update dependencies.
125
13da1c97
LM
1262011-08-24 Luis Machado <lgustavo@codesourcery.com>
127
128 * configure.srv: Add linux-procfs.o dependencies.
129
881127c9
YQ
1302011-08-14 Yao Qi <yao@codesourcery.com>
131
132 * target.h (struct target_ops): Fix indent.
133 * win32-low.c (win32_target_ops): Fix comment.
134
58dbd541
YQ
1352011-08-14 Andrew Jenner <andrew@codesourcery.com>
136 Yao Qi <yao@codesourcery.com>
137
138 * Makefile.in (clean): Remove tic6x-*.c files.
139 (linux-tic6x-low.o, tic6x-c62x-linux.o, tic6x-c64x-linux.o): New rules.
140 (tic6x-c64xp-linux.o, tic6x-c62x-linux.c, tic6x-c64x-linux.c): Likewise.
141 (tic6x-c64xp-linux.c): Likewise.
142 * configure.srv: Add support for tic6x-*-uclinux.
143 * linux-tic6x-low.c: New.
144 * linux-low.c (PT_TEXT_ADDR, PT_DATA_ADDR, PT_TEXT_END_ADDR): Define.
145
78d85199
YQ
1462011-08-14 Andrew Stubbs <ams@codesourcery.com>
147 Yao Qi <yao@codesourcery.com>
148
149 * target.h (struct target_ops): Add read_loadmap.
150 * linux-low.c (struct target_loadseg): New type.
151 (struct target_loadmap): New type.
152 (linux_read_loadmap): New function.
153 (linux_target_ops): Add linux_read_loadmap.
154 * server.c (handle_query): Support qXfer:fdpic:read packet.
155 * win32-low.c (win32_target_ops): Initialize field `read_loadmap' to NULL.
156
a959a88d
EZ
1572011-08-05 Eli Zaretskii <eliz@gnu.org>
158
159 * win32-low.c: Include <stdint.h>.
160
1ced966e
PA
1612011-07-22 Pedro Alves <pedro@codesourcery.com>
162
163 * i386-low.c (i386_insert_aligned_watchpoint): Don't pass the info
164 to the inferior here.
165 (i386_remove_aligned_watchpoint): Ditto.
166 (i386_handle_nonaligned_watchpoint): Return immediate on fail to
167 fit part of the watchpoint in the debug registers.
168 (i386_update_inferior_debug_regs): New.
169 (i386_low_insert_watchpoint): Work on a local mirror of the debug
170 registers, and only update the inferior on success.
171 (i386_low_remove_watchpoint): Ditto.
172
d26e3629
KY
1732011-07-22 Kwok Cheung Yeung <kcy@codesourcery.com>
174
175 * linux-low.c (compare_ints, unique, list_threads, show_process,
176 linux_core_of_thread): Delete.
177 (linux_target_ops): Change linux_core_of_thread to
178 linux_common_core_of_thread.
179 (linux_qxfer_osdata): Defer to linux_common_xfer_osdata.
180 * utils.c (malloc_failure): Change type of argument.
181 (xmalloc, xrealloc, xcalloc, xsnprintf): Delete.
182 * Makefile.in (SFILES): Add common/common-utils.c, common/xml-utils.c,
183 common/linux-osdata.c, common/ptid.c and common/buffer.c.
184 (OBS): Add xml-utils.o, common-utils.o, ptid.o and buffer.o.
185 (IPA_OBJS): Add common-utils-ipa.o.
186 (ptid_h, linux_osdata_h): New macros.
187 (server_h): Add common/common-utils.h, common/xml-utils.h,
188 common/buffer.h, common/gdb_assert.h, common/gdb_locale.h and
189 common/ptid.h.
190 (common-utils-ipa.o, common-utils.o, xml-utils.o, linux-osdata.o,
191 ptid.o, buffer.o): New rules.
192 (linux-low.o): Add common/linux-osdata.h as a dependency.
193 * configure.srv (srv_tgtobj): Add linux-osdata.o to Linux targets.
194 * configure.ac: Add AC_HEADER_DIRENT check.
195 * config.in: Regenerate.
196 * configure: Regenerate.
197 * remote-utils.c (xml_escape_text): Delete.
198 (buffer_grow, buffer_free, buffer_init, buffer_finish,
199 buffer_xml_printf): Move to common/buffer.c.
200 * server.c (main): Remove call to initialize_inferiors.
201 * server.h (struct ptid, ptid_t, minus_one_ptid, null_ptid,
202 ptid_build, pid_to_ptid, ptid_get_pid, ptid_get_lwp, ptid_get_tid,
203 ptid_equal, ptid_is_pid, initialize_inferiors, xml_escape_text,
204 internal_error, gdb_assert, gdb_assert_fail): Delete.
205 (struct buffer, buffer_grow, buffer_free, buffer_init, buffer_finish,
206 buffer_xml_printf, buffer_grow_str, buffer_grow_str0): Move to
207 common/buffer.h.
208 * inferiors.c (null_ptid, minus_one_ptid, ptid_build, pid_to_ptid,
209 ptid_get_pid, ptid_get_lwp, ptid_get_tid, ptid_equal, ptid_is_pid,
210 initialize_inferiors): Delete.
211
2275a1a7
PA
2122011-07-20 Pedro Alves <pedro@codesourcery.com>
213
214 * tracepoint.c (tracepoint_look_up_symbols): Return upon the first
215 symbol error.
216
0a5b1e09
PA
2172011-05-31 Pedro Alves <pedro@codesourcery.com>
218
219 * linux-x86-low.c (i386_dr_low_get_addr): Fix off by one in
220 assertion.
221 * win32-i386-low.c (i386_dr_low_get_addr): Ditto.
222
6938fd34
YQ
2232011-05-26 Yao Qi <yao@codesourcery.com>
224
225 * Makefile.in (thread-db.o): Track dependence to
226 common/gdb_thread_db.h.
227 * thread-db.c: include gdb_thread_db.h from right place.
228
b481f9e0
TT
2292011-05-16 Adrian Cornish <gnu@bluedreamer.com>
230
231 * linux-i386-ipa.c (supply_static_tracepoint_registers): Pass
232 __FILE__ and __LINE__ to internal_error.
233
98a5dd13
DE
2342011-05-13 Doug Evans <dje@google.com>
235
236 * thread-db.c (try_thread_db_load_from_sdir): New function.
237 (try_thread_db_load_from_dir): New function.
238 (thread_db_load_search): Handle $sdir, ignore $pdir.
239 Remove trying of system directories if search of
240 libthread-db-search-path fails, that is now done via $sdir.
241
d248b706
KY
2422011-05-12 Kwok Cheung Yeung <kcy@codesourcery.com>
243
244 * server.c (handle_query): Add EnableDisableTracepoints to the list
245 of supported features.
246 * tracepoint.c (clear_installed_tracepoints): Uninstall disabled
247 tracepoints.
248 (cmd_qtenable_disable): New.
249 (cmd_qtstart): Install tracepoints even if disabled.
250 (handle_tracepoint_general_set): Add call to cmd_qtenable_disable on
251 receiving a QTEnable or QTDisable packet.
252 (gdb_collect): Skip data collection if fast tracepoint is disabled.
253 (ust_marker_to_static_tracepoint): Do not ignore disabled static
254 tracepoints.
255 (gdb_probe): Skip data collection if static tracepoint is disabled.
256
84e578fb
DE
2572011-05-10 Doug Evans <dje@google.com>
258
259 * thread-db.c (thread_db_handle_monitor_command): Handle elided path.
260
71f55dd8
DE
2612011-05-04 Doug Evans <dje@google.com>
262
263 * linux-low.c (linux_join): Skip process lookup.
264 * spu-low.c (spu_join): Ditto.
265 * server.c (join_inferiors_callback): Delete.
266 (process_serial_event): For 'D' packet (detach) call join_inferior
267 directly.
268
4d393d60
JM
2692011-05-04 Joseph Myers <joseph@codesourcery.com>
270
271 * README: Don't mention xscale*-*-linux*.
272 * configure.srv (xscale*-*-linux*): Don't handle target.
273
b00ad6ff
NF
2742011-04-27 Nathan Froyd <froydnj@codesourcery.com>
275
276 * linux-x86-low.c (amd64_emit_const): Call memcpy instead of
277 casting pointers.
278 (amd64_emit_reg, amd64_emit_int_call_1, amd64_emit_void_call_2):
279 (i386_emit_const, i386_emit_reg, i386_emit_int_call_1):
280 (i386_emit_void_call_2): Likewise.
281
af96c192
YQ
2822011-04-26 Yao Qi <yao@codesourcery.com>
283
284 * linux-low.c: Move common macros to linux-ptrace.h.
285 Include linux-ptrace.h.
286 * Makefile.in (linux_ptrace_h): New.
287 (linux-low.o): Depends on linux-ptrace.h.
288
03f2bd59
JK
2892011-04-24 Jan Kratochvil <jan.kratochvil@redhat.com>
290
291 * remote-utils.c (handle_accept_event): Close LISTEN_DESC only if
292 RUN_ONCE. Comment for the LISTEN_DESC delete_file_handler call.
293 (remote_prepare): New function with most of the TCP code from ...
294 (remote_open): ... here. Detect PORT here unconditionally. Move also
295 setting transport_is_reliable.
296 * server.c (run_once): New variable.
297 (gdbserver_usage): Document it.
298 (main): Set run_once for `--once'. Call remote_prepare. Exit after
299 the first run if RUN_ONCE.
300 * server.h (run_once, remote_prepare): New declarations.
301
7a9dd1b2
TT
3022011-04-19 Tom Tromey <tromey@redhat.com>
303
304 * win32-low.c (handle_load_dll): Remove duplicate "the".
305
81239425
PM
3062011-04-07 Pierre Muller <muller@ics.u-strasbg.fr>
307
308 Remove support for old Cygwin 1.5 versions.
309 * win32-low.c (win32_create_inferior): Use new cygwin_path_list
310 function to avoid warning.
311 (win32_add_one_solib): Use cygwin_conv_path function to avoid
312 warning.
313
9e0627f1
PM
3142011-03-18 Pierre Muller <muller@ics.u-strasbg.fr>
315
316 * gdbserver/server.h (Macro _): Define it if not available.
317
588eebee
MS
3182011-03-14 Michael Snyder <msnyder@vmware.com>
319
348af9f7 320 * hostio.c (handle_close): Remove unnecessary null test.
588eebee 321
43f70d4c
JB
3222011-03-10 Joel Brobecker <brobecker@adacore.com>
323
324 * Makefile.in (maintainer-clean realclean distclean): Remove
325 "make ... subdir_do" command.
326
348af9f7
MS
3272011-03-10 Michael Snyder <msnyder@vmware.com>
328
329 * tracepoint.c (tracepoint_finish_step): Fix loop variable.
330
331 * server.c (handle_v_run): Free alloced buffer on early return.
332
e637a4f5
YQ
3332011-03-09 Yao Qi <yao@codesourcery.com>
334
335 Revert:
336 2011-03-04 Yao Qi <yao@codesourcery.com>
337
338 * Makefile.in: Remove GNU make feature --directory.
339
340 2011-03-05 Yao Qi <yao@codesourcery.com>
341
342 * Makefile.in (CLEANDIRS, REQUIRED_SUBDIRS): New variable.
343 (subdir_do): New make target. Copied from gdb/Makefile.
344 (maintainer-clean, realclean, distclean, clean): Call corresponding
345 make targets in common/Makefile.
346
347 2011-02-11 Yao Qi <yao@codesourcery.com>
348
349 * configure.ac: Call AC_PROG_RANLIB.
350 * Makefile.in: Remove signals.o from OBS. Link libcommon.a.
351 * configure: Regenerate.
352
e6edda56
JK
3532011-03-07 Jan Kratochvil <jan.kratochvil@redhat.com>
354
355 * remote-utils.c (putpkt_binary_1): Calculate BUF2 size dynamically.
356
e5141119
JB
3572011-03-06 Yao Qi <yao@codesourcery.com>
358
359 * Makefile.in (REQUIRED_SUBDIRS): Remove $(LIBCOMMON_DIR).
360
64794aa4
JB
3612011-03-05 Yao Qi <yao@codesourcery.com>
362
363 * Makefile.in (CLEANDIRS, REQUIRED_SUBDIRS): New variable.
364 (subdir_do): New make target. Copied from gdb/Makefile.
365 (maintainer-clean, realclean, distclean, clean): Call corresponding
366 make targets in common/Makefile.
367
7a762829
YQ
3682011-03-04 Yao Qi <yao@codesourcery.com>
369
370 * Makefile.in: Remove GNU make feature --directory.
371
348af9f7
MS
3722011-03-04 Michael Snyder <msnyder@vmware.com>
373
374 * server.c (queue_stop_reply): Call xmalloc not malloc.
375
3762011-03-02 Michael Snyder <msnyder@vmware.com>
377
378 * linux-arm-low.c (arm_arch_setup): Replace malloc with xmalloc.
379
9f72fee2
MS
3802011-02-28 Michael Snyder <msnyder@vmware.com>
381
588eebee
MS
382 * tracepoint.c (cmd_qtv): Discard unused value 'packet'.
383 (cmd_qtframe): Ditto.
384 (cmd_qtbuffer): Ditto.
385 (cmd_bigqtbuffer): Ditto.
386
9f72fee2
MS
387 * utils.c (decimal2str): Initialize 'width' to nine, then
388 don't mess with it.
389
8040bd49
UW
3902011-02-28 Ulrich Weigand <uweigand@de.ibm.com>
391
392 * hostio.c (require_data): Free *data, not data.
393
7e52cbd0
JK
3942011-02-28 Jan Kratochvil <jan.kratochvil@redhat.com>
395
396 * hostio.c (require_data): Use free, not xfree.
397
9130f83e
MS
3982011-02-27 Michael Snyder <msnyder@vmware.com>
399
4b812f4e
MS
400 * server.c (handle_query): Discard unused value.
401
9130f83e
MS
402 * hostio.c (require_data): Free malloc memory before returning
403 error.
404
69d37113
MS
4052011-02-26 Michael Snyder <msnyder@vmware.com>
406
407 * linux-low.c (list_threads): Call closedir for dirent.
408
35f5825a
MS
4092011-02-27 Michael Snyder <msnyder@vmware.com>
410
2a589cef
MS
411 * i386-low.c (i386-length_and_rw_bits): Comment the fact that
412 a case statement falls through.
413
0adea5f7
MS
414 * linux-low.c (linux_xfer_siginfo): Fix fencepost error.
415
35f5825a
MS
416 * linux-amd64-ipa.c (gdb_agent_get_raw_reg): Fix fencepost error
417 in comparison.
418
238f1c74
MS
4192011-02-26 Michael Snyder <msnyder@vmware.com>
420
421 * utils.c (decimal2str): Eliminate dead code and dead param.
422 (pulongest): Drop dead param from call to decimal2str.
423 (plongest): Ditto.
424
633ff500
JB
4252011-02-24 Joel Brobecker <brobecker@adacore.com>
426
427 Revert the following patch (not approved yet):
428 2011-02-21 Hui Zhu <teawater@gmail.com>
429 * tracepoint.c (tp_printf): New function.
430 (eval_agent_expr): Handle gdb_agent_op_printf.
431
f9c6ff72
HZ
4322011-02-21 Hui Zhu <teawater@gmail.com>
433
434 * tracepoint.c (tp_printf): New function.
435 (eval_agent_expr): Handle gdb_agent_op_printf.
436
94d5e490
TT
4372011-02-18 Tom Tromey <tromey@redhat.com>
438
439 * Makefile.in (tracepoint-ipa.o): Depend on ax.def.
440 (tracepoint.o): Likewise.
441 * tracepoint.c (enum gdb_agent_op): Use ax.def.
442 (gdb_agent_op_names): Likewise.
443
c7f96d2b
TT
4442011-02-18 Tom Tromey <tromey@redhat.com>
445
446 * tracepoint.c (enum gdb_agent_op) <gdb_agent_op_pick,
447 gdb_agent_op_rot>: New constants.
448 (gdb_agent_op_names): Add pick and roll.
449 (eval_agent_expr) <gdb_agent_op_pick, gdb_agent_op_rot>: New
450 cases.
451
0feedb2c
JK
4522011-02-15 Jan Kratochvil <jan.kratochvil@redhat.com>
453
454 * aclocal.m4: Regenerated with aclocal-1.11.1.
455
b3b9301e
PA
4562011-02-14 Pedro Alves <pedro@codesourcery.com>
457
458 * server.c (handle_qxfer_traceframe_info): New.
459 (qxfer_packets): Register "traceframe-info".
460 (handle_query): Report support for qXfer:traceframe-info:read+.
461 * tracepoint.c (match_blocktype): New.
462 (traceframe_find_block_type): Rename to ...
463 (traceframe_walk_blocks): ... this. Add callback filter argument,
464 and use it.
465 (traceframe_find_block_type): New, reimplemented on top of
466 traceframe_walk_blocks.
467 (build_traceframe_info_xml): New.
468 (traceframe_read_info): New.
469 * server.h (traceframe_read_info): Declare.
470
4f3e6fb7
YQ
4712011-02-11 Yao Qi <yao@codesourcery.com>
472
473 * configure.ac: Call AC_PROG_RANLIB.
474 * Makefile.in: Remove signals.o from OBS. Link libcommon.a.
475 * configure: Regenerate.
476
764880b7
PA
4772011-02-07 Pedro Alves <pedro@codesourcery.com>
478
479 * server.c (gdb_read_memory): Change return semantics to allow
480 partial transfers.
481 (handle_search_memory_1): Adjust.
482 (process_serial_event) <'m' packet>: Handle partial transfers.
483 * tracepoint.c (traceframe_read_mem): Handle partial transfers.
484
1c79eb8a
PA
4852011-01-28 Pedro Alves <pedro@codesourcery.com>
486
487 * regcache.c (init_register_cache): Initialize
488 regcache->register_status.
489 (free_register_cache): Release regcache->register_status.
490 (regcache_cpy): Copy register_status.
491 (registers_to_string): Print 'x's for unavailable registers.
492 (supply_register): Mark the register's status valid or
493 unavailable, depending on whether a buffer was passed in or not.
494 (supply_register_zeroed): New.
495 (supply_regblock): Mark the registers' status valid or
496 unavailable, depending on whether a buffer was passed in or not.
497 * regcache.h (REG_UNAVAILABLE, REG_VALID): New defines.
498 (struct regcache): New `register_status' field.
499 (supply_register_zeroed): Declare.
500 * i387-fp.c (i387_xsave_to_cache): Zero out registers using
501 supply_register_zeroed, rather than passing a NULL buffer to
502 supply_register.
503 * tracepoint.c (fetch_traceframe_registers): Update comment.
504
85724a0e
PA
5052011-01-28 Pedro Alves <pedro@codesourcery.com>
506
507 * i387-fp.c (i387_xsave_to_cache): Make passing NULL as register
508 buffer explicit.
509
d08aafef
PA
5102011-01-25 Pedro Alves <pedro@codesourcery.com>
511
512 * server.h (decode_xfer_write): Change prototype.
513 * remote-utils.c (decode_xfer_write): Remove `annex' parameter,
514 and don't extract the annex here.
515 * server.c (decode_xfer_read): Remove `annex' parameter,
516 and don't extract the annex here.
517 (decode_xfer): New.
518 (struct qxfer): New.
519 (handle_qxfer_auxv, handle_qxfer_features, handle_qxfer_libraries)
520 (handle_qxfer_osdata, handle_qxfer_siginfo, handle_qxfer_spu)
521 (handle_qxfer_statictrace): New functions, abstracted out from
522 handle_query, and made to use the struct qxfer interface.
523 (handle_threads_qxfer_proper): Rename to ...
524 (handle_qxfer_threads_proper): ... this.
525 (handle_threads_qxfer): Rename to ...
526 (handle_qxfer_threads): ... this. Adjust.
527 (qxfer_packets): New array.
528 (handle_qxfer): New function.
529 (handle_query): Use handle_qxfer.
530
493e2a69
MS
5312011-01-05 Michael Snyder <msnyder@msnyder-server.eng.vmware.com>
532
533 * gdbreplay.c: Shorten lines of >= 80 columns.
534 * linux-low.c: Ditto.
535 * linux-ppc-low.c: Ditto.
536 * linux-s390-low.c: Ditto.
537 * linux-sparc-low.c: Ditto.
538 * linux-x86-low.c: Ditto.
539 * linux-xtensa-low.c: Ditto.
540 * mem-break.c: Ditto.
541 * nto-low.c: Ditto.
542 * regcache.h: Ditto.
543 * remote-utils.c: Ditto.
544 * server.c: Ditto.
545 * server.h: Ditto.
546 * thread-db.c: Ditto.
547 * tracepoint.c: Ditto.
548 * utils.c: Ditto.
549 * win32-low.h: Ditto.
550
44944448
JB
5512011-01-05 Joel Brobecker <brobecker@adacore.com>
552
553 * gdbserver/configure.ac, gdbserver/gdbserver.1: Copyright year
554 update.
555
71ce852c
JB
5562011-01-01 Joel Brobecker <brobecker@adacore.com>
557
558 * server.c (gdbserver_version): Update copyright year in version
559 output.
560 * gdbreplay.c (gdbreplay_version): Ditto.
561
eb826dc6
MF
5622010-12-29 Jie Zhang <jie.zhang@analog.com>
563
564 * configure.srv (bfin-*-*linux*): Handle Blackfin/Linux targets.
565 * linux-bfin-low.c: New file.
566 * linux-low.c: Define PT_TEXT_ADDR, PT_TEXT_END_ADDR, and
567 PT_DATA_ADDR for BFIN targets.
568 * Makefile.in (SFILES): Add linux-bfin-low.c.
569 (clean): Remove reg-bfin.c.
570 (linux-bfin-low.o, reg-bfin.o, reg-bfin.c): New targets.
571 * README: Mention supported Blackfin targets.
572
39ab222a
MF
5732010-12-23 Mike Frysinger <vapier@gentoo.org>
574
575 * .gitignore: New file.
576
a1f2ce7d
MF
5772010-11-16 Mike Frysinger <vapier@gentoo.org>
578
579 * linux-low.c (linux_tracefork_child): Add char* cast to arg.
580
f474844c
JZ
5812010-10-22 Jie Zhang <jie@codesourcery.com>
582
583 * Makefile.in: Add FLAGS_TO_PASS variable.
584 (install): Remove dependency of install-only and recursively
585 invoke make for install-only.
586
f1048712
DE
5872010-10-04 Doug Evans <dje@google.com>
588
589 * Makefile.in (uninstall): Use $(DESTDIR).
590
b53a1623
PA
5912010-09-24 Pedro Alves <pedro@codesourcery.com>
592
e6ee044d
PA
593 PR gdb/11842
594
b53a1623
PA
595 * linux-x86-low.c (compat_siginfo_from_siginfo)
596 (siginfo_from_compat_siginfo): Also copy si_pid and si_uid when
597 si_code is < 0. Check for si_code == SI_TIMER before checking for
598 si_code < 0.
599
fa1bd1e4
JB
6002010-09-13 Joel Brobecker <brobecker@adacore.com>
601
602 * lynx-i386-low.c: New file.
603 * configure.srv: Add handling of i[34567]86-*-lynxos* targets.
604
47fac8f8
JB
6052010-09-13 Joel Brobecker <brobecker@adacore.com>
606
607 * lynx-low.c (ptrace_request_to_str): Remove handling for
608 request values that have been removed in LynxOS 5.x.
609
1adfc54d
JB
6102010-09-13 Joel Brobecker <brobecker@adacore.com>
611
612 * lynx-low.c, lynx-ppc-loc.c: Include <sys/ptrace.h> instead of
613 <ptrace.h>
614
c2a66c29
NS
6152010-09-09 Nathan Sidwell <nathan@codesourcery.com>
616
617 * configure.ac: Add --enable-inprocess-agent option.
618 * configure: Rebuilt.
619
32fcada3
YQ
6202010-09-06 Yao Qi <yao@codesourcery.com>
621
622 * linux-low.c (linux_kill): Remove unused variable.
623 (linux_stabilize_threads): Likewise.
624 * server.c (start_inferior): Likewise.
625 (queue_stop_reply_callback): Likewise.
626 * tracepoint.c (do_action_at_tracepoint): Likewise.
627
0cccb683
YQ
6282010-09-06 Yao Qi <yao@codesourcery.com>
629
630 * linux-low.c (maybe_move_out_of_jump_pad): Restore current_inferior
631 on return.
632
423ec54c
JK
6332010-09-06 Jan Kratochvil <jan.kratochvil@redhat.com>
634
635 * target.c (mywait) <TARGET_WAITKIND_EXITED>: Fix to use INTEGER.
636
12ac6819
PA
6372010-09-06 Pedro Alves <pedro@codesourcery.com>
638
639 * Makefile.in (install-only): Replace $IPA_DEPFILES with
640 "$(IPA_DEPFILES)".
641
8ed54b31
JB
6422010-09-01 Joel Brobecker <brobecker@adacore.com>
643
644 * gdbserver/lynx-low.c, gdbserver/lynx-low.h,
645 gdbserver/lynx-ppc-low.c: New files.
646 * Makefile.in (lynx_low_h): New variable.
647 (lynx-low.o, lynx-ppc-low.o): New rules.
648 * configure.ac: On LynxOS, link with -lnetinet.
649 * configure.srv: Add handling of powerpc-*-lynxos* targets.
650 * configure: regenerate.
651
bb0116a4
JB
6522010-09-01 Joel Brobecker <brobecker@adacore.com>
653
654 * Makefile.in (vasprintf.o, vsnprintf.o): New rules.
655 * configure.ac: Add check for vasprintf and vsnprintf.
656 * configure, config.in: Regenerate.
657 * server.h (vasprintf, vsnprintf): Add conditional declarations.
658
a778ab81 6592010-09-01 Joel Brobecker <brobecker@adacore.com>
660
661 * gdbreplay.c: Move include of alloca.h up, next to include of
662 malloc.h.
663 * server.h: Add include of malloc.h.
664 * mem-break.c: Remove include of malloc.h.
665 * server.c, tracepoint.c, utils.c, win32-low.c: Likewise.
666
8b034a19 6672010-09-01 Joel Brobecker <brobecker@adacore.com>
668
669 * Makefile.in (memmem.o): Build with -Wno-error.
670
6712010-09-01 Joel Brobecker <brobecker@adacore.com>
672
673 * utils.c (xsnprintf): Make non-static.
674 * server.h: Add xsnprintf declaration.
675 * linux-low.c, nto-low.c, target.c, thread-db.c, tracepoint.c:
676 replace calls to snprintf by calls to xsnprintf throughout.
677
6782010-09-01 Joel Brobecker <brobecker@adacore.com>
679
680 * configure.ac: Add configure check for alloca.
681 * configure, config.in: Regenerate.
682 * server.h: Include alloca.h if it exists.
683 * gdbreplay.c: Include alloca.h if it exists.
684
1a981360
PA
6852010-08-28 Pedro Alves <pedro@codesourcery.com>
686
687 * linux-low.c (__SIGRTMIN): Define if not already defined.
688 (linux_create_inferior): Check for __ANDROID__ rather than
689 __SIGRTMIN.
690 (enqueue_one_deferred_signal): Don't requeue non-RT signals that
691 are already deferred.
692 (linux_wait_1): Check for __ANDROID__ rather than __SIGRTMIN.
693 (linux_resume_one_thread): Don't queue a SIGSTOP if the lwp is
694 stopped and already has a pending signal to report.
695 (proceed_one_lwp): : Don't queue a SIGSTOP if the lwp already has
696 a pending signal to report or is moving out of a jump pad.
697 (linux_init_signals): Check for __ANDROID__ rather than
698 __SIGRTMIN.
699
b4d51a55
PA
7002010-08-28 Pedro Alves <pedro@codesourcery.com>
701
702 * linux-low.c (linux_stabilize_threads): Wrap debug output in a
703 debug_threads check. Avoid a linear search when not doing debug
704 output.
705
ec48365d
PA
7062010-08-27 Pedro Alves <pedro@codesourcery.com>
707
708 * event-loop.c (event_handle_func): Adjust to use gdb_fildes_t.
709 (struct gdb_event) <fd>: Change type to gdb_fildes_t.
710 (struct file_handler) <fd>: Change type to gdb_fildes_t.
711 (process_event): Change local fd's type to gdb_fildes_t.
712 (create_file_handler): Adjust prototype.
713 (delete_file_handler): Adjust prototype.
714 (handle_file_event): Adjust prototype. Use pfildes.
715 (create_file_event): Adjsut prototype.
716 * remote-utils.c (remote_desc, listen_desc): Change type to
717 gdb_fildes_t.
718 * server.h: New gdb_fildes_t typedef.
719 [USE_WIN32API]: Include winsock2.h.
720 (delete_file_handler, add_file_handler): Adjust prototypes.
721 (pfildes): Declare.
722 * utils.c (pfildes): New.
723
854d88f0
PA
7242010-08-27 Pedro Alves <pedro@codesourcery.com>
725
726 * configure.ac (build_warnings): Add -Wno-char-subscripts.
727 * configure: Regenerate.
728
0146f85b
PA
7292010-08-27 Pedro Alves <pedro@codesourcery.com>
730
731 * linux-low.c (linux_unprepare_to_access_memory): Rename to ...
732 (linux_done_accessing_memory): ... this.
733 (linux_target_ops): Adjust.
734 * linux-x86-low.c (x86_insert_point, x86_remove_point): Adjust.
735 * nto-low.c (nto_target_ops): Adjust comment.
736 * server.c (gdb_read_memory, gdb_write_memory): Adjust.
737 * spu-low.c (spu_target_ops): Adjust comment.
738 * target.h (target_ops): Rename unprepare_to_access_memory field
739 to done_accessing_memory.
740 (unprepare_to_access_memory): Rename to ...
741 (done_accessing_memory): ... this.
742
90d74c30
PA
7432010-08-26 Pedro Alves <pedro@codesourcery.com>
744
745 * linux-low.c (linux_prepare_to_access_memory): New.
746 (linux_unprepare_to_access_memory): New.
747 (linux_target_ops): Install them.
748 * server.c (read_memory): Rename to ...
749 (gdb_read_memory): ... this. Use
750 prepare_to_access_memory/prepare_to_access_memory.
751 (write_memory): Rename to ...
752 (gdb_write_memory): ... this. Use
753 prepare_to_access_memory/prepare_to_access_memory.
754 (handle_search_memory_1): Adjust.
755 (process_serial_event): Adjust.
756 * target.h (struct target_ops): New fields
757 prepare_to_access_memory and unprepare_to_access_memory.
758 (prepare_to_access_memory, unprepare_to_access_memory): New.
759 * linux-x86-low.c (x86_insert_point, x86_remove_point): Use
760 prepare_to_access_memory/prepare_to_access_memory.
761 * nto-low.c (nto_target_ops): Adjust.
762 * spu-low.c (spu_target_ops): Adjust.
763 * win32-low.c (win32_target_ops): Adjust.
764
fd467969
PA
7652010-08-26 Pedro Alves <pedro@codesourcery.com>
766
767 * Makefile.in (WARN_CFLAGS): Get it from configure.
768 (WERROR_CFLAGS): New.
769 (INTERNAL_CFLAGS): Add WERROR_CFLAGS.
770 * configure.ac: Introduce --enable-werror, which adds -Werror to
771 the compiler command line. Enabled by default. Disable with
772 --disable-werror. Add -Wdeclaration-after-statement
773 Wpointer-arith and -Wformat-nonliteral to warning flags.
774 * configure: Regenerate.
775
331e2f5f
PA
7762010-08-26 Pedro Alves <pedro@codesourcery.com>
777
778 * mem-break.c [HAVE_MALLOC_H]: Include malloc.h.
779
e581f2b4
PA
7802010-08-26 Pedro Alves <pedro@codesourcery.com>
781
782 * gdbreplay.c (remote_error): New.
783 (gdbchar): New.
784 (expect): Use gdbchar. Check for error reading from GDB.
785 Clarify sync error output.
786 (play): Check for errors writing to GDB.
787 * linux-low.c (sigchld_handler): Really ignore `write' errors.
788 * remote-utils.c (getpkt): Check for errors writing to the remote
789 descriptor.
790
3c11dd79
PA
7912010-08-25 Pedro Alves <pedro@codesourcery.com>
792
793 * linux-low.c (linux_wait_1): Move non-debugging code out of
794 `debug_threads' control.
795
d20a8ad9
PA
7962010-08-25 Pedro Alves <pedro@codesourcery.com>
797
798 * linux-low.c (linux_wait_1): Don't set last_status here.
799 * server.c (push_event, queue_stop_reply_callback): Assert we're
800 not pushing a TARGET_WAITKIND_IGNORE event.
801 (start_inferior, start_inferior, attach_inferior, handle_v_cont)
802 (myresume, handle_target_event): Set the thread's last_resume_kind
803 and last_status from the target returned status.
804
964e4306
PA
8052010-08-25 Pedro Alves <pedro@codesourcery.com>
806
807 PR threads/10729
808
809 * linux-x86-low.c (update_debug_registers_callback): New.
810 (i386_dr_low_set_addr): Use it.
811 (i386_dr_low_get_addr): New.
812 (i386_dr_low_set_control): Use update_debug_registers_callback.
813 (i386_dr_low_get_control): New.
814 (i386_dr_low_get_status): Adjust.
815 * linux-low.c (linux_stop_lwp): New.
816 * linux-low.h (linux_stop_lwp): Declare.
817
818 * i386-low.c (I386_DR_GET_RW_LEN): Take the dr7 contents as
819 argument instead of a i386_debug_reg_state.
820 (I386_DR_WATCH_HIT): Take the dr6 contents as argument instead of
821 a i386_debug_reg_state.
822 (i386_insert_aligned_watchpoint): Adjust.
823 (i386_remove_aligned_watchpoint): Adjust.
824 (i386_low_stopped_data_address): Read the debug registers from the
825 inferior instead of from the mirrors.
826 * i386-low.h (struct i386_debug_reg_state): Extend comment.
827 (i386_dr_low_get_addr): Declare.
828 (i386_dr_low_get_control): Declare.
829 (i386_dr_low_get_status): Change prototype.
830
831 * win32-i386-low.c (dr_status_mirror, dr_control_mirror): New globals.
832 (i386_dr_low_get_addr): New.
833 (i386_dr_low_get_control): New.
834 (i386_dr_low_get_status): Adjust prototype. Return
835 dr_status_mirror.
836 (i386_initial_stuff): Clear dr_status_mirror and
837 dr_control_mirror.
838 (i386_get_thread_context): Adjust.
839 (i386_set_thread_context): Adjust.
840 (i386_thread_added): Adjust.
841
5f21a75b
PA
8422010-08-24 Pedro Alves <pedro@codesourcery.com>
843
844 * linux-low.h (linux_thread_area): Delete declaration.
845
3e4c1235
TS
8462010-08-11 Thomas Schwinge <thomas@codesourcery.com>
847
848 * linux-low.c (linux_wait_1): Correctly return the ptid of the child
849 after its termination.
850
1971b033
PA
8512010-08-09 Pedro Alves <pedro@codesourcery.com>
852
853 * linux-low.c (gdb_wants_lwp_stopped): Delete.
854 (gdb_wants_all_stopped): Delete.
855 (linux_wait_1): Don't call them.
856 * server.c (handle_v_cont): Tag all threads as want-stopped.
857 (gdb_wants_thread_stopped): Fix comments. Tag the thread that
858 stopped as "client-wants-stopped".
859
310444ac
PA
8602010-07-31 Pedro Alves <pedro@codesourcery.com>
861
862 * Makefile.in (signals_h): New.
863 (server_h): Depend on it.
864 (server.o): Don't depend on $(signals_def).
865 (signals.o): Depend on $(signals_def).
866
a19cae16
JK
8672010-07-31 Jan Kratochvil <jan.kratochvil@redhat.com>
868
869 * Makefile.in (signals_def): New.
870 (server_h): Append include/gdb/signals.h and signals_def.
871 (server.o): Append signals_def.
872
30d50328
JK
8732010-07-25 Jan Kratochvil <jan.kratochvil@redhat.com>
874
875 * server.c (handle_target_event): Use target_signal_to_host for
876 resume_info.sig initialization.
877 * target.h (struct thread_resume) <sig>: New comment.
878
5c3216e2
OS
8792010-07-20 Ozkan Sezer <sezeroz@gmail.com>
880
c6f46ca0
OS
881 * server.c (handle_query): strcpy() the returned string from paddress()
882 instead of sprintf().
5c3216e2
OS
883 * utils.c (paddress): Return phex_nz().
884
6bd31874
JB
8852010-07-07 Joel Brobecker <brobecker@adacore.com>
886
887 * server.c (handle_v_cont): Call mourn_inferior if process
888 just exited.
889 (myresume): Likewise.
890
0fb4aa4b
PA
8912010-07-01 Pedro Alves <pedro@codesourcery.com>
892
893 Static tracepoints, and integration with UST.
894
895 * configure.ac: Handle --with-ust. substitute ustlibs and ustinc.
896 * mem-break.c (uninsert_all_breakpoints)
897 (reinsert_all_breakpoints): New.
898 * mem-break.h (reinsert_all_breakpoints, uninsert_all_breakpoints):
899 * tracepoint.c (ust_loaded, helper_thread_id, cmd_buf): New.
900 (gdb_agent_ust_loaded, helper_thread_id)
901 (gdb_agent_helper_thread_id): New macros.
902 (struct ipa_sym_addresses): Add addr_ust_loaded,
903 addr_helper_thread_id, addr_cmd_buf.
904 (symbol_list): Add ust_loaded, helper_thread_id, cmd_buf.
905 (in_process_agent_loaded_ust): New.
906 (write_e_ust_not_loaded): New.
907 (maybe_write_ipa_ust_not_loaded): New.
908 (struct collect_static_trace_data_action): New.
909 (enum tracepoint_type) <static_tracepoint>: New.
910 (struct tracepoint) <handle>: Mention static tracepoints.
911 (struct static_tracepoint_ctx): New.
912 (CMD_BUF_SIZE): New.
913 (add_tracepoint_action): Handle static tracepoint actions.
914 (unprobe_marker_at): New.
915 (clear_installed_tracepoints): Handle static tracepoints.
916 (cmd_qtdp): Handle static tracepoints.
917 (probe_marker_at): New.
918 (cmd_qtstart): Handle static tracepoints.
919 (response_tracepoint): Handle static tracepoints.
920 (cmd_qtfstm, cmd_qtsstm, cmd_qtstmat): New.
921 (handle_tracepoint_query): Handle qTfSTM, qTsSTM and qTSTMat.
922 (get_context_regcache): Handle static tracepoints.
923 (do_action_at_tracepoint): Handle static tracepoint actions.
924 (traceframe_find_block_type): Handle static trace data blocks.
925 (traceframe_read_sdata): New.
926 (download_tracepoints): Download static tracepoint actions.
927 [HAVE_UST] Include ust/ust.h, dlfcn.h, sys/socket.h, and sys/un.h.
928 (GDB_PROBE_NAME): New.
929 (ust_ops): New.
930 (GET_UST_SYM): New.
931 (USTF): New.
932 (dlsym_ust): New.
933 (ust_marker_to_static_tracepoint): New.
934 (gdb_probe): New.
935 (collect_ust_data_at_tracepoint): New.
936 (gdb_ust_probe): New.
937 (UNIX_PATH_MAX, SOCK_DIR): New.
938 (gdb_ust_connect_sync_socket): New.
939 (resume_thread, stop_thread): New.
940 (run_inferior_command): New.
941 (init_named_socket): New.
942 (gdb_ust_socket_init): New.
943 (cstr_to_hexstr): New.
944 (next_st): New.
945 (first_marker, next_marker): New.
946 (response_ust_marker): New.
947 (cmd_qtfstm, cmd_qtsstm): New.
948 (unprobe_marker_at, probe_marker_at): New.
949 (cmd_qtstmat, gdb_ust_thread): New.
950 (gdb_ust_init): New.
951 (initialize_tracepoint_ftlib): Call gdb_ust_init.
952 * linux-amd64-ipa.c [HAVE_UST]: Include ust/processor.h
953 (ST_REGENTRY): New.
954 (x86_64_st_collect_regmap): New.
955 (X86_64_NUM_ST_COLLECT_GREGS): New.
956 (AMD64_RIP_REGNUM): New.
957 (supply_static_tracepoint_registers): New.
958 * linux-i386-ipa.c [HAVE_UST]: Include ust/processor.h
959 (ST_REGENTRY): New.
960 (i386_st_collect_regmap): New.
961 (i386_NUM_ST_COLLECT_GREGS): New.
962 (supply_static_tracepoint_registers): New.
963 * server.c (handle_query): Handle qXfer:statictrace:read.
964 <qSupported>: Report support for StaticTracepoints, and
965 qXfer:statictrace:read features.
966 * server.h (traceframe_read_sdata)
967 (supply_static_tracepoint_registers): Declare.
968 * remote-utils.c (convert_int_to_ascii, hexchars, ishex, tohex)
969 (unpack_varlen_hex): Include in IPA build.
970 * Makefile.in (ustlibs, ustinc): New.
971 (IPA_OBJS): Add remote-utils-ipa.o.
972 ($(IPA_LIB)): Link -ldl and -lpthread.
973 (UST_CFLAGS): New.
974 (IPAGENT_CFLAGS): Add UST_CFLAGS.
975 * config.in, configure: Regenerate.
976
9e4344e5
PA
9772010-06-20 Ian Lance Taylor <iant@google.com>
978 Pedro Alves <pedro@codesourcery.com>
979
980 * linux-x86-low.c (always_true): Delete.
981 (EMIT_ASM, EMIT_ASM32): Use an uncondition asm jmp instead of
982 trying to fool the compiler with always_true.
983
c6beb2cb
PA
9842010-06-20 Pedro Alves <pedro@codesourcery.com>
985
986 * tracepoint.c (condition_true_at_tracepoint): Don't run compiled
987 conditions in gdbserver.
988
d2ed6730
UW
9892010-06-19 Ulrich Weigand <uweigand@de.ibm.com>
990
991 * spu-low.c (spu_read_memory): Wrap around local store limit.
992 (spu_write_memory): Likewise.
993
4e29fb54
PA
9942010-06-15 Pedro Alves <pedro@codesourcery.com>
995
996 * linux-x86-low.c (amd64_emit_const, amd64_emit_void_call_2)
997 (i386_emit_const, i386_emit_void_call_2): Replace int64_t uses with
998 LONGEST uses.
999 * server.h (struct emit_ops): Replace int64_t uses with LONGEST
1000 uses.
1001 * tracepoint.c (emit_const, emit_void_call_2): Replace int64_t
1002 uses with LONGEST uses.
1003
6a271cae
PA
10042010-06-14 Stan Shebs <stan@codesourcery.com>
1005 Pedro Alves <pedro@codesourcery.com>
1006
1007 Bytecode compiler.
1008
1009 * linux-x86-low.c: Include limits.h.
1010 (add_insns): New.
1011 (always_true): New.
1012 (EMIT_ASM): New.
1013 (EMIT_ASM32): New.
1014 (amd64_emit_prologue, amd64_emit_epilogue, amd64_emit_add)
1015 (amd64_emit_sub, amd64_emit_mul, amd64_emit_lsh)
1016 (amd64_emit_rsh_signed, amd64_emit_rsh_unsigned, amd64_emit_ext,
1017 (amd64_emit_log_not, amd64_emit_bit_and, amd64_emit_bit_or)
1018 (amd64_emit_bit_xor, amd64_emit_bit_not, amd64_emit_equal,
1019 (amd64_emit_less_signed, amd64_emit_less_unsigned, amd64_emit_ref,
1020 (amd64_emit_if_goto, amd64_emit_goto, amd64_write_goto_address)
1021 (amd64_emit_const, amd64_emit_call, amd64_emit_reg)
1022 (amd64_emit_pop, amd64_emit_stack_flush, amd64_emit_zero_ext)
1023 (amd64_emit_swap, amd64_emit_stack_adjust, amd64_emit_int_call_1)
1024 (amd64_emit_void_call_2): New.
1025 (amd64_emit_ops): New.
1026 (i386_emit_prologue, i386_emit_epilogue, i386_emit_add)
1027 (i386_emit_sub,i386_emit_mul, i386_emit_lsh, i386_emit_rsh_signed)
1028 (i386_emit_rsh_unsigned, i386_emit_ext, i386_emit_log_not)
1029 (i386_emit_bit_and, i386_emit_bit_or, i386_emit_bit_xor)
1030 (i386_emit_bit_not, i386_emit_equal, i386_emit_less_signed)
1031 (i386_emit_less_unsigned, i386_emit_ref, i386_emit_if_goto)
1032 (i386_emit_goto, i386_write_goto_address, i386_emit_const)
1033 (i386_emit_call, i386_emit_reg, i386_emit_pop)
1034 (i386_emit_stack_flush, i386_emit_zero_ext, i386_emit_swap)
1035 (i386_emit_stack_adjust, i386_emit_int_call_1)
1036 (i386_emit_void_call_2): New.
1037 (i386_emit_ops): New.
1038 (x86_emit_ops): New.
1039 (the_low_target): Install x86_emit_ops.
1040 * server.h (struct emit_ops): New.
1041 (get_raw_reg_func_addr): Declare.
1042 (current_insn_ptr, emit_error): Declare.
1043 * tracepoint.c (get_raw_reg, get_trace_state_variable_value)
1044 (set_trace_state_variable_value): New defines.
1045 (struct ipa_sym_addresses): New fields addr_get_raw_reg,
1046 addr_get_trace_state_variable_value and
1047 addr_set_trace_state_variable_value.
1048 (symbol_list): New fields for get_raw_reg,
1049 get_trace_state_variable_value and set_trace_state_variable_value.
1050 (condfn): New typedef.
1051 (struct tracepoint): New field `compiled_cond'.
1052 (do_action_at_tracepoint): Clear compiled_cond.
1053 (get_trace_state_variable_value, set_trace_state_variable_value):
1054 Export in the IPA.
1055 (condition_true_at_tracepoint): If there's a compiled condition,
1056 run that.
1057 (current_insn_ptr, emit_error): New globals.
1058 (struct bytecode_address): New.
1059 (get_raw_reg_func_addr): New.
1060 (emit_prologue, emit_epilogue, emit_add, emit_sub, emit_mul)
1061 (emit_lsh, emit_rsh_signed, emit_rsh_unsigned, emit_ext)
1062 (emit_log_not, emit_bit_and, emit_bit_or, emit_bit_xor)
1063 (emit_bit_not, emit_equal, emit_less_signed, emit_less_unsigned)
1064 (emit_ref, emit_if_goto, emit_goto, write_goto_address, emit_const)
1065 (emit_reg, emit_pop, emit_stack_flush, emit_zero_ext, emit_swap)
1066 (emit_stack_adjust, emit_int_call_1, emit_void_call_2): New.
1067 (compile_tracepoint_condition, compile_bytecodes): New.
1068 * target.h (emit_ops): Forward declare.
1069 (struct target_ops): New field emit_ops.
1070 (target_emit_ops): New.
1071 * linux-amd64-ipa.c (gdb_agent_get_raw_reg): New.
1072 * linux-i386-ipa.c (gdb_agent_get_raw_reg): New.
1073 * linux-low.c (linux_emit_ops): New.
1074 (linux_target_ops): Install it.
1075 * linux-low.h (struct linux_target_ops): New field emit_ops.
1076
92b72907
UW
10772010-06-14 Ulrich Weigand <uweigand@de.ibm.com>
1078
1079 * linux-ppc-low.c (ppc_arch_setup): Use private regcache to test MSR.
1080 * linux-s390-low.c (ppc_arch_setup): Use private regcache to test PSW.
1081
fa593d66
PA
10822010-06-01 Pedro Alves <pedro@codesourcery.com>
1083 Stan Shebs <stan@codesourcery.com>
1084
1085 * Makefile.in (IPA_DEPFILES, extra_libraries): New.
1086 (all): Depend on $(extra_libraries).
1087 (install-only): Install the IPA.
1088 (IPA_OBJS, IPA_LIB): New.
1089 (clean): Remove the IPA lib.
1090 (IPAGENT_CFLAGS): New.
1091 (tracepoint-ipa.o, utils-ipa.o, remote-utils-ipa.o)
1092 (regcache-ipa.o, i386-linux-ipa.o, linux-i386-ipa.o)
1093 (linux-amd64-ipa.o, amd64-linux-ipa.o): New rules.
1094 * linux-amd64-ipa.c, linux-i386-ipa.c: New files.
1095 * configure.ac: Check for atomic builtins support in the compiler.
1096 (IPA_DEPFILES, extra_libraries): Define.
1097 * configure.srv (ipa_obj): Add description.
1098 (ipa_i386_linux_regobj, ipa_amd64_linux_regobj): Define.
1099 (i[34567]86-*-linux*): Set ipa_obj.
1100 (x86_64-*-linux*): Set ipa_obj.
1101 * linux-low.c (stabilizing_threads): New.
1102 (supports_fast_tracepoints): New.
1103 (linux_detach): Stabilize threads before detaching.
1104 (handle_tracepoints): Handle internal tracing breakpoints. Assert
1105 the lwp is either not stabilizing, or is moving out of a jump pad.
1106 (linux_fast_tracepoint_collecting): New.
1107 (maybe_move_out_of_jump_pad): New.
1108 (enqueue_one_deferred_signal): New.
1109 (dequeue_one_deferred_signal): New.
1110 (linux_wait_for_event_1): If moving out of a jump pad, defer
1111 pending signals to later.
1112 (linux_stabilize_threads): New.
1113 (linux_wait_1): Check if threads need moving out of jump pads, and
1114 do it if so.
1115 (stuck_in_jump_pad_callback): New.
1116 (move_out_of_jump_pad_callback): New.
1117 (lwp_running): New.
1118 (linux_resume_one_lwp): Handle moving out of jump pads.
1119 (linux_set_resume_request): Dequeue deferred signals.
1120 (need_step_over_p): Also step over fast tracepoint jumps.
1121 (start_step_over): Also uninsert fast tracepoint jumps.
1122 (finish_step_over): Also reinsert fast tracepoint jumps.
1123 (linux_install_fast_tracepoint_jump): New.
1124 (linux_target_ops): Install linux_stabilize_threads and
1125 linux_install_fast_tracepoint_jump_pad.
1126 * linux-low.h (linux_target_ops) <get_thread_area,
1127 install_fast_tracepoint_jump_pad>: New fields.
1128 (struct lwp_info) <collecting_fast_tracepoint,
1129 pending_signals_to_report, exit_jump_pad_bkpt>: New fields.
1130 (linux_get_thread_area): Declare.
1131 * linux-x86-low.c (jump_insn): New.
1132 (x86_get_thread_area): New.
1133 (append_insns): New.
1134 (push_opcode): New.
1135 (amd64_install_fast_tracepoint_jump_pad): New.
1136 (i386_install_fast_tracepoint_jump_pad): New.
1137 (x86_install_fast_tracepoint_jump_pad): New.
1138 (the_low_target): Install x86_get_thread_area and
1139 x86_install_fast_tracepoint_jump_pad.
1140 * mem-break.c (set_raw_breakpoint_at): Use read_inferior_memory.
1141 (struct fast_tracepoint_jump): New.
1142 (fast_tracepoint_jump_insn): New.
1143 (fast_tracepoint_jump_shadow): New.
1144 (find_fast_tracepoint_jump_at): New.
1145 (fast_tracepoint_jump_here): New.
1146 (delete_fast_tracepoint_jump): New.
1147 (set_fast_tracepoint_jump): New.
1148 (uninsert_fast_tracepoint_jumps_at): New.
1149 (reinsert_fast_tracepoint_jumps_at): New.
1150 (set_breakpoint_at): Use write_inferior_memory.
1151 (uninsert_raw_breakpoint): Use write_inferior_memory.
1152 (check_mem_read): Mask out fast tracepoint jumps.
1153 (check_mem_write): Mask out fast tracepoint jumps.
1154 * mem-break.h (struct fast_tracepoint_jump): Forward declare.
1155 (set_fast_tracepoint_jump): Declare.
1156 (delete_fast_tracepoint_jump)
1157 (fast_tracepoint_jump_here, uninsert_fast_tracepoint_jumps_at)
1158 (reinsert_fast_tracepoint_jumps_at): Declare.
1159 * regcache.c: Don't compile many functions when building the
1160 in-process agent library.
1161 (init_register_cache) [IN_PROCESS_AGENT]: Don't allow allocating
1162 the register buffer in the heap.
1163 (free_register_cache): If the register buffer isn't owned by the
1164 regcache, don't free it.
1165 (set_register_cache) [IN_PROCESS_AGENT]: Don't re-alocate
1166 pre-existing register caches.
1167 * remote-utils.c (convert_int_to_ascii): Constify `from' parameter
1168 type.
1169 (convert_ascii_to_int): : Constify `from' parameter type.
1170 (decode_M_packet, decode_X_packet): Replace the `to' parameter by
1171 a `to_p' pointer to pointer parameter. If TO_P is NULL, malloc
1172 the needed buffer in-place.
1173 (relocate_instruction): New.
1174 * server.c (handle_query) <qSymbols>: If the target supports
1175 tracepoints, give it a chance of looking up symbols. Report
1176 support for fast tracepoints.
1177 (handle_status): Stabilize threads.
1178 (process_serial_event): Adjust.
1179 * server.h (struct fast_tracepoint_jump): Forward declare.
1180 (struct process_info) <fast_tracepoint_jumps>: New field.
1181 (convert_ascii_to_int, convert_int_to_ascii): Adjust.
1182 (decode_X_packet, decode_M_packet): Adjust.
1183 (relocate_instruction): Declare.
1184 (in_process_agent_loaded): Declare.
1185 (tracepoint_look_up_symbols): Declare.
1186 (struct fast_tpoint_collect_status): Declare.
1187 (fast_tracepoint_collecting): Declare.
1188 (force_unlock_trace_buffer): Declare.
1189 (handle_tracepoint_bkpts): Declare.
1190 (initialize_low_tracepoint)
1191 (supply_fast_tracepoint_registers) [IN_PROCESS_AGENT]: Declare.
1192 * target.h (struct target_ops) <stabilize_threads,
1193 install_fast_tracepoint_jump_pad>: New fields.
1194 (stabilize_threads, install_fast_tracepoint_jump_pad): New.
1195 * tracepoint.c [HAVE_MALLOC_H]: Include malloc.h.
1196 [HAVE_STDINT_H]: Include stdint.h.
1197 (trace_debug_1): Rename to ...
1198 (trace_vdebug): ... this.
1199 (trace_debug): Rename to ...
1200 (trace_debug_1): ... this. Add `level' parameter.
1201 (trace_debug): New.
1202 (ATTR_USED, ATTR_NOINLINE): New.
1203 (IP_AGENT_EXPORT): New.
1204 (gdb_tp_heap_buffer, gdb_jump_pad_buffer, gdb_jump_pad_buffer_end)
1205 (collecting, gdb_collect, stop_tracing, flush_trace_buffer)
1206 (about_to_request_buffer_space, trace_buffer_is_full)
1207 (stopping_tracepoint, expr_eval_result, error_tracepoint)
1208 (tracepoints, tracing, trace_buffer_ctrl, trace_buffer_ctrl_curr)
1209 (trace_buffer_lo, trace_buffer_hi, traceframe_read_count)
1210 (traceframe_write_count, traceframes_created)
1211 (trace_state_variables)
1212 New renaming defines.
1213 (struct ipa_sym_addresses): New.
1214 (STRINGIZE_1, STRINGIZE, IPA_SYM): New.
1215 (symbol_list): New.
1216 (ipa_sym_addrs): New.
1217 (all_tracepoint_symbols_looked_up): New.
1218 (in_process_agent_loaded): New.
1219 (write_e_ipa_not_loaded): New.
1220 (maybe_write_ipa_not_loaded): New.
1221 (tracepoint_look_up_symbols): New.
1222 (debug_threads) [IN_PROCESS_AGENT]: New.
1223 (read_inferior_memory) [IN_PROCESS_AGENT]: New.
1224 (UNKNOWN_SIDE_EFFECTS): New.
1225 (stop_tracing): New.
1226 (flush_trace_buffer): New.
1227 (stop_tracing_bkpt): New.
1228 (flush_trace_buffer_bkpt): New.
1229 (read_inferior_integer): New.
1230 (read_inferior_uinteger): New.
1231 (read_inferior_data_pointer): New.
1232 (write_inferior_data_pointer): New.
1233 (write_inferior_integer): New.
1234 (write_inferior_uinteger): New.
1235 (struct collect_static_trace_data_action): Delete.
1236 (enum tracepoint_type): New.
1237 (struct tracepoint) <type>: New field `type'.
1238 <actions_str, step_actions, step_actions_str>: Only include in GDBserver.
1239 <orig_size, obj_addr_on_target, adjusted_insn_addr>
1240 <adjusted_insn_addr_end, jump_pad, jump_pad_end>: New fields.
1241 (tracepoints): Use IP_AGENT_EXPORT.
1242 (last_tracepoint): Don't include in the IPA.
1243 (stopping_tracepoint): Use IP_AGENT_EXPORT.
1244 (trace_buffer_is_full): Use IP_AGENT_EXPORT.
1245 (alloced_trace_state_variables): New.
1246 (trace_state_variables): Use IP_AGENT_EXPORT.
1247 (traceframe_t): Delete unused variable.
1248 (circular_trace_buffer): Don't include in the IPA.
1249 (trace_buffer_start): Delete.
1250 (struct trace_buffer_control): New.
1251 (trace_buffer_free): Delete.
1252 (struct ipa_trace_buffer_control): New.
1253 (GDBSERVER_FLUSH_COUNT_MASK, GDBSERVER_FLUSH_COUNT_MASK_PREV)
1254 (GDBSERVER_FLUSH_COUNT_MASK_CURR, GDBSERVER_UPDATED_FLUSH_COUNT_BIT):
1255 New.
1256 (trace_buffer_ctrl): New.
1257 (TRACE_BUFFER_CTRL_CURR): New.
1258 (trace_buffer_start, trace_buffer_free, trace_buffer_end_free):
1259 Reimplement as macros.
1260 (trace_buffer_wrap): Delete.
1261 (traceframe_write_count, traceframe_read_count)
1262 (traceframes_created, tracing): Use IP_AGENT_EXPORT.
1263 (struct tracepoint_hit_ctx) <type>: New field.
1264 (struct fast_tracepoint_ctx): New.
1265 (memory_barrier): New.
1266 (cmpxchg): New.
1267 (record_tracepoint_error): Update atomically in the IPA.
1268 (clear_inferior_trace_buffer): New.
1269 (about_to_request_buffer_space): New.
1270 (trace_buffer_alloc): Handle GDBserver and inferior simulatenous
1271 updating the same buffer.
1272 (add_tracepoint): Default the tracepoint's type to trap
1273 tracepoint, and orig_size to -1.
1274 (get_trace_state_variable) [IN_PROCESS_AGENT]: Handle allocated
1275 internal variables.
1276 (create_trace_state_variable): New parameter `gdb'. Handle it.
1277 (clear_installed_tracepoints): Clear fast tracepoint jumps.
1278 (cmd_qtdp): Handle fast tracepoints.
1279 (cmd_qtdv): Adjust.
1280 (max_jump_pad_size): New.
1281 (gdb_jump_pad_head): New.
1282 (get_jump_space_head): New.
1283 (claim_jump_space): New.
1284 (sort_tracepoints): New.
1285 (MAX_JUMP_SIZE): New.
1286 (cmd_qtstart): Handle fast tracepoints. Sync tracepoints with the
1287 IPA.
1288 (stop_tracing) [IN_PROCESS_AGENT]: Don't include the tdisconnected
1289 support. Upload fast traceframes, and delete internal IPA
1290 breakpoints.
1291 (stop_tracing_handler): New.
1292 (flush_trace_buffer_handler): New.
1293 (cmd_qtstop): Upload fast tracepoints.
1294 (response_tracepoint): Handle fast tracepoints.
1295 (tracepoint_finished_step): Upload fast traceframes. Set the
1296 tracepoint hit context's tracepoint type.
1297 (handle_tracepoint_bkpts): New.
1298 (tracepoint_was_hit): Set the tracepoint hit context's tracepoint
1299 type. Add comment about fast tracepoints.
1300 (collect_data_at_tracepoint) [IN_PROCESS_AGENT]: Don't access the
1301 non-existing action_str field.
1302 (get_context_regcache): Handle fast tracepoints.
1303 (do_action_at_tracepoint) [!IN_PROCESS_AGENT]: Don't write the PC
1304 to the regcache.
1305 (fast_tracepoint_from_jump_pad_address): New.
1306 (fast_tracepoint_from_ipa_tpoint_address): New.
1307 (collecting_t): New.
1308 (force_unlock_trace_buffer): New.
1309 (fast_tracepoint_collecting): New.
1310 (collecting): New.
1311 (gdb_collect): New.
1312 (write_inferior_data_ptr): New.
1313 (target_tp_heap): New.
1314 (target_malloc): New.
1315 (download_agent_expr): New.
1316 (UALIGN): New.
1317 (download_tracepoints): New.
1318 (download_trace_state_variables): New.
1319 (upload_fast_traceframes): New.
1320 (IPA_FIRST_TRACEFRAME): New.
1321 (IPA_NEXT_TRACEFRAME_1): New.
1322 (IPA_NEXT_TRACEFRAME): New.
1323 [IN_PROCESS_AGENT]: Include sys/mman.h and fcntl.h.
1324 [IN_PROCESS_AGENT] (gdb_tp_heap_buffer, gdb_jump_pad_buffer)
1325 (gdb_jump_pad_buffer_end): New.
1326 [IN_PROCESS_AGENT] (initialize_tracepoint_ftlib): New.
1327 (initialize_tracepoint): Adjust.
1328 [IN_PROCESS_AGENT]: Allocate the IPA heap, and jump pad scratch
1329 buffer. Initialize the low module.
1330 * utils.c (PREFIX, TOOLNAME): New.
1331 (malloc_failure): Use PREFIX.
1332 (error): In the IPA, an error causes an exit.
1333 (fatal, warning): Use PREFIX.
1334 (internal_error): Use TOOLNAME.
1335 (NUMCELLS): Increase to 10.
1336 * configure, config.in: Regenerate.
1337
d149dd1d
PA
13382010-06-01 Pedro Alves <pedro@codesourcery.com>
1339
1340 * server.c (handle_query) <qSupported>: Do two passes over the
1341 qSupported string to avoid nesting strtok.
1342
f6528abd
JK
13432010-05-28 Jan Kratochvil <jan.kratochvil@redhat.com>
1344
1345 * Makefile.in (SFILES): Add $(srcdir)/proc-service.list.
1346 (CDEPS): New.
1347 * configure.ac (RDYNAMIC): New AC_MSG_CHECKING wrapping. Test also
1348 -Wl,--dynamic-list.
1349 * configure: Regenerate.
1350 * proc-service.list: New.
1351
ca2a87a0
JK
13522010-05-28 Jan Kratochvil <jan.kratochvil@redhat.com>
1353
1354 * linux-low.c (linux_core_of_thread): Fix crash on invalid CONTENT.
1355 New comment.
1356
363a6e9f
OS
13572010-05-26 Ozkan Sezer <sezeroz@gmail.com>
1358
1359 * gdbreplay.c (remote_open): Check error return from socket() call by
1360 its equality to -1 not by it being negative.
1361 * remote-utils.c (remote_open): Likewise.
1362
d23b6cb1
PA
13632010-05-23 Pedro Alves <pedro@codesourcery.com>
1364
1365 * config.h: Regenerate.
1366
28d3cf85
MK
13672010-05-19 Maxim Kuvyrkov <maxim@codesourcery.com>
1368
1369 * linux-m68k-low.c (ps_get_thread_area): Don't define if kernel
1370 doesn't provide PTRACE_GET_THREAD_AREA.
1371
fea36a59
MK
13722010-05-19 Maxim Kuvyrkov <maxim@codesourcery.com>
1373
1374 * linux-m68k-low.c: Include <asm/ptrace.h>
1375 (ps_get_thread_area): Implement.
1376
24b066ba
DE
13772010-05-03 Doug Evans <dje@google.com>
1378
1379 * event-loop.c (struct callback_event): New struct.
1380 (callback_list): New global.
1381 (append_callback_event, delete_callback_event): New functions.
1382 (process_callback): New function.
1383 (start_event_loop): Call it.
1384 * remote-utils.c (NOT_SCHEDULED): Define.
1385 (readchar_buf, readchar_bufcnt, readchar_bufp): New static globals,
1386 moved out of readchar.
1387 (readchar): Rewrite. Call reschedule before returning.
1388 (reset_readchar): New function.
1389 (remote_close): Call it.
1390 (process_remaining, reschedule): New functions.
1391 * server.h (callback_handler_func): New typedef.
1392 (append_callback_event, delete_callback_event): Declare.
1393
9836d6ea
PA
13942010-05-03 Pedro Alves <pedro@codesourcery.com>
1395
1396 * proc-service.c (ps_pglobal_lookup): Use
1397 thread_db_look_up_one_symbol.
1398 * remote-utils.c (look_up_one_symbol): Add new `may_ask_gdb'
1399 parameter. Use it instead of all_symbols_looked_up.
1400 * server.h (struct process_info) <all_symbols_looked_up>: Delete
1401 field.
1402 (all_symbols_looked_up): Don't declare.
1403 (look_up_one_symbol): Add new `may_ask_gdb' parameter.
1404 * thread-db.c (struct thread_db) <all_symbols_looked_up>: New
1405 field.
1406 (thread_db_look_up_symbols): Adjust call to look_up_one_symbol.
1407 Set all_symbols_looked_up here.
1408 (thread_db_look_up_one_symbol): New.
1409 (thread_db_get_tls_address): Adjust.
1410 (thread_db_load_search, try_thread_db_load_1): Always allocate the
1411 thread_db object on the heap, and tentatively set it in the
1412 process structure.
1413 (thread_db_init): Don't set all_symbols_looked_up here.
1414 * linux-low.h (thread_db_look_up_one_symbol): Declare.
1415
7984d532
PA
14162010-05-03 Pedro Alves <pedro@codesourcery.com>
1417
1418 * linux-low.c (linux_kill, linux_detach): Adjust.
1419 (status_pending_p_callback): Remove redundant statement. Check
1420 for !TARGET_WAITIKIND_IGNORE, instead of
1421 TARGET_WAITKIND_STOPPED.
1422 (handle_tracepoints): Make sure LWP is locked. Adjust.
1423 (linux_wait_for_event_1): Adjust.
1424 (linux_cancel_breakpoints): New.
1425 (unsuspend_one_lwp): New.
1426 (unsuspend_all_lwps): New.
1427 (linux_wait_1): If finishing a step-over, unsuspend all lwps.
1428 (send_sigstop_callback): Change return type to int, add new
1429 `except' parameter and handle it.
1430 (suspend_and_send_sigstop_callback): New.
1431 (stop_all_lwps): Add new `suspend' and `expect' parameters, and
1432 pass them down. If SUSPEND, also increment the lwp's suspend
1433 count.
1434 (linux_resume_one_lwp): Add notice about resuming a suspended LWP.
1435 (need_step_over_p): Don't consider suspended LWPs.
1436 (start_step_over): Adjust.
1437 (proceed_one_lwp): Change return type to int, add new `except'
1438 parameter and handle it.
1439 (unsuspend_and_proceed_one_lwp): New.
1440 (proceed_all_lwps): Use find_inferior instead of
1441 for_each_inferior.
1442 (unstop_all_lwps): Add `unsuspend' parameter. If UNSUSPEND, them
1443 also decrement the suspend count of LWPs. Pass `except' down,
1444 instead of hacking its suspend count.
1445 (linux_pause_all): Add `freeze' parameter. Adjust.
1446 (linux_unpause_all): New.
1447 (linux_target_ops): Install linux_unpause_all.
1448 * server.c (handle_status): Adjust.
1449 * target.h (struct target_ops): New fields `unpause_all' and
1450 `cancel_breakpoints'. Add new parameter to `pause_all'.
1451 (pause_all): Add new `freeze' parameter.
1452 (unpause_all): New.
1453 (cancel_breakpoints): New.
1454 * tracepoint.c (clear_installed_tracepoints): Pause threads, and
1455 cancel breakpoints.
1456 (cmd_qtstart): Pause threads.
1457 (stop_tracing): Pause threads, and cancel breakpoints.
1458 * win32-low.c (win32_target_ops): Adjust.
1459
e471f25b
PA
14602010-05-03 Pedro Alves <pedro@codesourcery.com>
1461
1462 * linux-low.c (linux_wait_for_event_1): Move passing the signal to
1463 the inferior right away from here...
1464 (linux_wait_1): ... to here, and adjust to check the thread's
1465 last_resume_kind instead of the lwp's step or stop_expected flags.
1466
1915ef4f
PA
14672010-05-02 Pedro Alves <pedro@codesourcery.com>
1468
1469 * README: Use consistent `GDB' and `GDBserver' spellings.
1470
f9e39928
PA
14712010-05-02 Pedro Alves <pedro@codesourcery.com>
1472
1473 * linux-low.c (linux_kill_one_lwp): Assume the lwp is stopped.
1474 (linux_kill): Stop all lwps here. Don't delete the main lwp here.
1475 (linux_detach_one_lwp): Assume the lwp is stopped.
1476 (any_thread_of): Delete.
1477 (linux_detach): Stop all lwps here. Don't blindly delete all
1478 breakpoints.
1479 (delete_lwp_callback): New.
1480 (linux_mourn): Delete all lwps of the process that is gone.
1481 (linux_wait_1): Don't delete the last lwp of the process here.
1482 * mem-break.h (mark_breakpoints_out): Declare.
1483 * mem-break.c (mark_breakpoints_out): New.
1484 (free_all_breakpoints): Use it.
1485 * server.c (handle_target_event): If the process is gone, mark
1486 breakpoints out.
1487 * thread-db.c (struct thread_db) <create_bp>: New field.
1488 (thread_db_enable_reporting): Fix prototype. Store a thread event
1489 breakpoint reference in the thread_db struct.
1490 (thread_db_load_search): Clear the thread_db object.
1491 (try_thread_db_load_1): Ditto.
1492 (switch_to_process): New.
1493 (disable_thread_event_reporting): Use it.
1494 (remove_thread_event_breakpoints): New.
1495 (thread_db_detach, thread_db_mourn): Use it.
1496
1e7fc18c
PA
14972010-05-01 Pedro Alves <pedro@codesourcery.com>
1498
1499 * linux-low.c (linux_enable_event_reporting): New.
1500 (linux_wait_for_event_1, handle_extended_wait): Use it.
1501
02fc4de7
PA
15022010-04-30 Pedro Alves <pedro@codesourcery.com>
1503
1504 * linux-low.c (linux_kill_one_lwp, linux_kill)
1505 (linux_detach_one_lwp): Adjust to send_sigstop interface change.
1506 (send_sigstop): Take an lwp_info as parameter instead. Queue a
1507 SIGSTOP even if the LWP is stopped.
1508 (send_sigstop_callback): New.
1509 (stop_all_lwps): Use send_sigstop_callback instead.
1510 (linux_resume_one_thread): Adjust.
1511 (proceed_one_lwp): Still proceed an LWP that the client has
1512 requested to stop, if we haven't reported it as stopped yet. Make
1513 sure that LWPs the client want stopped, have a pending SIGSTOP.
1514
bc3b5632
DE
15152010-04-26 Doug Evans <dje@google.com>
1516
ae1ada35
DE
1517 * server.c (handle_general_set): Make static.
1518
bc3b5632
DE
1519 * remote-utils.c (putpkt_binary_1): Call readchar instead of read.
1520 Print received char after testing for error/eof instead of before.
1521 (input_interrupt): Tweak comment.
1522
65730243
DE
15232010-04-23 Doug Evans <dje@google.com>
1524
1525 * server.c (start_inferior): Print inferior argv if --debug.
1526
a8ae7dc0
AR
15272010-04-21 Aleksandar Ristovski <aristovski@qnx.com>
1528
1529 * Makefile.in (nto_low_h nto-low.o nto-x86-low.o): New dependency lists.
1530 * nto-x86-low.c: Include server.h
1531
1c07cc19
PM
15322010-04-20 Pierre Muller <muller@ics.u-strasbg.fr>
1533
1534 * win32-i386-low.c: Use __x86_64__ macro instead of __x86_64 to
1535 be consistent with other sources of this directory.
1536 (init_registers_amd64): Correct name of source file of this function
1537 in the comment.
1538
e0a61e09
PM
15392010-04-19 Pierre Muller <muller@ics.u-strasbg.fr>
1540
1541 * configure.srv (x86_64-*-mingw*): New configuration for Windows
1542 64-bit executables.
1543
54709339
PM
15442010-04-19 Pierre Muller <muller@ics.u-strasbg.fr>
1545
1546 * win32-i386-low.c: Add 64-bit support.
1547 (CONTEXT_EXTENDED_REGISTERS): Set macro to zero if not exisiting.
1548 (init_registers_amd64): Declare.
1549 (mappings): Add 64-bit version of array.
1550 (init_windows_x86): New function.
1551 (the_low_target): Change init_arch field to init_windows_x86.
1552
e8f0053d
PM
15532010-04-19 Pierre Muller <muller@ics.u-strasbg.fr>
1554
1555 * win32-low.c: Adapt to support also 64-bit architecture.
1556 (child_xfer_memory): Use uintptr_t type for local variable `addr'.
1557 (get_image_name): Use SIZE_T type for local variable `done'.
1558 (psapi_get_dll_name): Use LPVOID type for parameter `BaseAddress'.
1559 (toolhelp_get_dll_name): Idem.
1560 (handle_load_dll): Use CORE_ADDR type for local variable `load_addr'.
1561 Use uintptr_t typecast to avoid warning.
1562 (handle_unload_dll): Use uintptr_t typecast to avoid warning.
1563 (handle_exception): Use phex_nz to avoid warning.
1564 (win32_wait): Remove unused local variable `process'.
1565
c481e77e
PM
15662010-04-19 Pierre Muller <muller@ics.u-strasbg.fr>
1567
1568 * configure.srv (srv_amd64_regobj): Replace `x86-64-avx.o' by
1569 `amd64-avx.o'.
1570
12ea4b69
PM
15712010-04-17 Pierre Muller <muller@ics.u-strasbg.fr>
1572
1573 * configure.ac: Use `ws2_32' library for srv_mingw.
1574 * configure: Regenerate.
1575 * gdbreplay.c: Include winsock2.h instead of winsock.h.
1576 * remote-utils.c: Likewise.
1577
f6d1620c
L
15782010-04-17 H.J. Lu <hongjiu.lu@intel.com>
1579
1580 * linux-x86-low.c (xmltarget_amd64_linux_no_xml): Define only
1581 if __x86_64__ is defined.
1582
8e642873
PM
15832010-04-16 Pierre Muller <muller@ics.u-strasbg.fr>
1584
1585 * configure: Regenerate.
1586
711e434b
PM
15872010-04-16 Pierre Muller <muller@ics.u-strasbg.fr>
1588
1589 * server.c (handle_query): Handle 'qGetTIBAddr' query.
1590 * target.h (target_ops): New get_tib_address field.
1591 * win32-low.h (win32_thread_info): Add thread_local_base field.
1592 * win32-low.c (child_add_thread): Add tlb argument.
1593 Set thread_local_base field to TLB.
1594 (get_child_debug_event): Adapt to child_add_thread change.
1595 (win32_get_tib_address): New function.
1596 (win32_target_ops): Set get_tib_address field to
1597 win32_get_tib_address.
1598 * linux-low.c (linux_target_ops): Set get_tib_address field to NULL.
1599
505106cd
PA
16002010-04-12 Pedro Alves <pedro@codesourcery.com>
1601
505106cd
PA
1602 * linux-low.c (linux_mourn): Also remove the process.
1603 * server.c (handle_target_event): Don't remove the process here.
1604 * nto-low.c (nto_mourn): New.
1605 (nto_target_ops): Install it.
1606 * spu-low.c (spu_mourn): New.
1607 (spu_target_ops): Install it.
1608 * win32-low.c (win32_mourn): New.
1609 (win32_target_ops): Install it.
1610
e8470a06
PA
16112010-04-12 Pedro Alves <pedro@codesourcery.com>
1612
1613 * server.h (buffer_xml_printf): Remove redundant `;'.
1614
45ba0d02
PA
16152010-04-12 Pedro Alves <pedro@codesourcery.com>
1616
1617 * regcache.c (set_register_cache): Invalidate regcaches before
1618 changing the register cache layout.
1619 (regcache_invalidate_one): Allow a NULL regcache.
1620 * linux-x86-low.c (x86_linux_update_xmltarget): Invalidate
1621 regcaches before changing the register cache layout or the target
1622 regsets.
1623
59e04013
L
16242010-04-12 H.J. Lu <hongjiu.lu@intel.com>
1625
1626 * linux-x86-low.c (x86_linux_update_xmltarget): Avoid unused
1627 variable warning on Linux/x86-64.
1628
8336d594
PA
16292010-04-11 Pedro Alves <pedro@codesourcery.com>
1630
1631 GDBserver disconnected tracing support.
1632
1633 * linux-low.c (linux_remove_process): Delete.
1634 (add_lwp): Don't set last_resume_kind here.
1635 (linux_kill): Use `mourn'.
1636 (linux_detach): Use `thread_db_detach', and `mourn'.
1637 (linux_mourn): New.
1638 (linux_attach_lwp_1): Adjust comment.
1639 (linux_attach): last_resume_kind moved the thread_info; adjust.
1640 (status_pending_p_callback): Adjust.
1641 (linux_wait_for_event_1): Adjust.
1642 (count_events_callback, select_singlestep_lwp_callback)
1643 (select_event_lwp_callback, cancel_breakpoints_callback)
1644 (db_wants_lwp_stopped, linux_wait_1, need_step_over_p)
1645 (proceed_one_lwp): Adjust.
1646 (linux_async): Add debug output.
1647 (linux_thread_stopped): New.
1648 (linux_pause_all): New.
1649 (linux_target_ops): Install linux_mourn, linux_thread_stopped and
1650 linux_pause_all.
1651 * linux-low.h (struct lwp_info): Delete last_resume_kind field.
1652 (thread_db_free): Delete declaration.
1653 (thread_db_detach, thread_db_mourn): Declare.
1654 * thread-db.c (thread_db_init): Use thread_db_mourn.
1655 (thread_db_free): Delete, split in two.
1656 (disable_thread_event_reporting): New.
1657 (thread_db_detach): New.
1658 (thread_db_mourn): New.
1659
1660 * server.h (struct thread_info) <last_resume_kind>: New field.
1661 <attached>: Add comment.
1662 <gdb_detached>: New field.
1663 (handler_func): Change return type to int.
1664 (handle_serial_event, handle_target_event): Ditto.
1665 (gdb_connected): Declare.
1666 (tracing): Delete.
1667 (disconnected_tracing): Declare.
1668 (stop_tracing): Declare.
1669
1670 * server.c (handle_query) <qSupported>: Report support for
1671 disconnected tracing.
1672 (queue_stop_reply_callback): Account for running threads.
1673 (gdb_wants_thread_stopped): New.
1674 (gdb_wants_all_threads_stopped): New.
1675 (gdb_reattached_process): New.
1676 (handle_status): Clear the `gdb_detached' flag of all processes.
1677 In all-stop, stop all threads.
1678 (main): Be sure to leave tfind mode. Handle disconnected tracing.
1679 (process_serial_event): If the remote connection breaks, or if an
1680 exit was forced with "monitor exit", force an event loop exit.
1681 Handle disconnected tracing on detach.
1682 (handle_serial_event): Adjust.
1683 (handle_target_event): If GDB isn't connected, forward events back
1684 to the inferior, unless the last process exited, in which case,
1685 exit gdbserver. Adjust interface.
1686
1687 * remote-utils.c (remote_open): Don't block in accept. Instead
1688 register an event loop source on the listen socket file
1689 descriptor. Refactor bits into ...
1690 (listen_desc): ... this new global.
1691 (gdb_connected): ... this new function.
1692 (enable_async_notification): ... this new function.
1693 (handle_accept_event): ... this new function.
1694 (remote_close): Clear remote_desc.
1695
1696 * inferiors.c (add_thread): Set the new thread's last_resume_kind.
1697
1698 * target.h (struct target_ops) <mourn, thread_stopped, pause_all>:
1699 New fields.
1700 (mourn_inferior): Define.
1701 (target_process_qsupported): Avoid the dangling else problem.
1702 (thread_stopped): Define.
1703 (pause_all): Define.
1704 (target_waitstatus_to_string): Declare.
1705 * target.c (target_waitstatus_to_string): New.
1706
1707 * tracepoint.c (tracing): Make extern.
1708 (disconnected_tracing): New.
1709 (stop_tracing): Make extern. Handle tracing stops due to GDB
1710 disconnecting.
1711 (cmd_qtdisconnected): New.
1712 (cmd_qtstatus): Report disconnected tracing status in trace reply.
1713 (handle_tracepoint_general_set): Handle QTDisconnected.
1714
1715 * event-loop.c (event_handler_func): Change return type to int.
1716 (process_event): Bail out if the event handler wants the event
1717 loop to stop.
1718 (handle_file_event): Ditto.
1719 (start_event_loop): Bail out if the event handler wants the event
1720 loop to stop.
1721
1722 * nto-low.c (nto_target_ops): Adjust.
1723 * spu-low.c (spu_wait): Don't remove the process here.
1724 (spu_target_ops): Adjust.
1725 * win32-low.c (win32_wait): Don't remove the process here.
1726 (win32_target_ops): Adjust.
1727
5d267c4c
PA
17282010-04-11 Pedro Alves <pedro@codesourcery.com>
1729
1730 * regcache.c (realloc_register_cache): Invalidate inferior's
1731 regcache before recreating it.
1732
623ccd72
PA
17332010-04-09 Pedro Alves <pedro@codesourcery.com>
1734
1735 * tracepoint.c (cmd_qtstatus): Report trace buffer circularity.
1736
219f2f23
PA
17372010-04-09 Stan Shebs <stan@codesourcery.com>
1738 Pedro Alves <pedro@codesourcery.com>
1739
1740 * server.h (LONGEST): New.
1741 (struct thread_info) <while_stepping>: New field.
1742 (unpack_varlen_hex, xrealloc, pulongest, plongest, phex_nz):
1743 Declare.
1744 (initialize_tracepoint, handle_tracepoint_general_set)
1745 (handle_tracepoint_query, tracepoint_finished_step)
1746 (tracepoint_was_hit, release_while_stepping_state_list):
1747 (current_traceframe): Declare.
1748 * server.c (handle_general_set): Handle tracepoint packets.
1749 (read_memory): New.
1750 (write_memory): New.
1751 (handle_search_memory_1): Use read_memory.
1752 (handle_query): Report support for conditional tracepoints, trace
1753 state variables, and tracepoint sources. Handle tracepoint
1754 queries.
1755 (main): Initialize the tracepoints module.
1756 (process_serial_event): Handle traceframe reads/writes.
1757
1758 * linux-low.c (handle_tracepoints): New.
1759 (linux_wait_1): Call it.
1760 (linux_resume_one_lwp): Handle while-stepping.
1761 (linux_supports_tracepoints, linux_read_pc, linux_write_pc): New.
1762 (linux_target_ops): Install them.
1763 * linux-low.h (struct linux_target_ops) <supports_tracepoints>:
1764 New field.
1765 * linux-x86-low.c (x86_supports_tracepoints): New.
1766 (the_low_target). Install it.
1767
1768 * mem-break.h (delete_breakpoint): Declare.
1769 * mem-break.c (delete_breakpoint): Make external.
1770
1771 * target.h (struct target_ops): Add `supports_tracepoints',
1772 `read_pc', and `write_pc' fields.
1773 (target_supports_tracepoints): Define.
1774 * utils.c (xrealloc, decimal2str, pulongest, plongest, thirty_two)
1775 (phex_nz): New.
1776
1777 * regcache.h (struct regcache) <registers_owned>: New field.
1778 (init_register_cache, regcache_cpy): Declare.
1779 (regcache_read_pc, regcache_write_pc): Declare.
1780 (register_cache_size): Declare.
1781 (supply_regblock): Declare.
1782 * regcache.c (init_register_cache): New.
1783 (new_register_cache): Use it.
1784 (regcache_cpy): New.
1785 (register_cache_size): New.
1786 (supply_regblock): New.
1787 (regcache_read_pc, regcache_write_pc): New.
889bf7c5 1788
219f2f23
PA
1789 * tracepoint.c: New.
1790
1791 * Makefile.in (OBS): Add tracepoint.o.
1792 (tracepoint.o): New rule.
1793
3a13a53b
L
17942010-04-08 H.J. Lu <hongjiu.lu@intel.com>
1795
1796 * Makefile.in (clean): Also remove i386-mmx.c i386-mmx-linux.c.
1797 (i386-mmx.o): New.
1798 (i386-mmx.c): Likewise.
1799 (i386-mmx-linux.o): Likewise.
1800 (i386-mmx-linux.c): Likewise.
1801
1802 * configure.srv (srv_i386_regobj): Add i386-mmx.o.
1803 (srv_i386_linux_regobj): Add i386-mmx-linux.o.
1804 (srv_i386_xmlfiles): Add i386/i386-mmx.xml.
1805 (srv_i386_linux_xmlfiles): Add i386/i386-mmx-linux.xml.
1806
1807 * linux-x86-low.c (init_registers_i386_mmx_linux): New.
1808 (x86_linux_update_xmltarget): Call init_registers_i386_mmx_linux
1809 and return if ptrace PTRACE_GETFPXREGS failed in 32bit.
1810
1570b33e
L
18112010-04-07 H.J. Lu <hongjiu.lu@intel.com>
1812
1813 * Makefile.in (clean): Updated.
1814 (i386-avx.o): New.
1815 (i386-avx.c): Likewise.
1816 (i386-avx-linux.o): Likewise.
1817 (i386-avx-linux.c): Likewise.
1818 (amd64-avx.o): Likewise.
1819 (amd64-avx.c): Likewise.
1820 (amd64-avx-linux.o): Likewise.
1821 (amd64-avx-linux.c): Likewise.
1822
1823 * configure.srv (srv_i386_regobj): Add i386-avx.o.
1824 (srv_i386_linux_regobj): Add i386-avx-linux.o.
1825 (srv_amd64_regobj): Add amd64-avx.o.
1826 (srv_amd64_linux_regobj): Add amd64-avx-linux.o.
1827 (srv_i386_32bit_xmlfiles): Add i386/32bit-avx.xml.
1828 (srv_i386_64bit_xmlfiles): Add i386/64bit-avx.xml.
1829 (srv_i386_xmlfiles): Add i386/i386-avx.xml.
1830 (srv_amd64_xmlfiles): Add i386/amd64-avx.xml.
1831 (srv_i386_linux_xmlfiles): Add i386/i386-avx-linux.xml.
1832 (srv_amd64_linux_xmlfiles): Add i386/amd64-avx-linux.xml.
1833
1834 * i387-fp.c: Include "i386-xstate.h".
1835 (i387_xsave): New.
1836 (i387_cache_to_xsave): Likewise.
1837 (i387_xsave_to_cache): Likewise.
1838 (x86_xcr0): Likewise.
1839
1840 * i387-fp.h (i387_cache_to_xsave): Likewise.
1841 (i387_xsave_to_cache): Likewise.
1842 (x86_xcr0): Likewise.
1843
1844 * linux-arm-low.c (target_regsets): Initialize nt_type to 0.
1845 * linux-crisv32-low.c (target_regsets): Likewise.
1846 * linux-m68k-low.c (target_regsets): Likewise.
1847 * linux-mips-low.c (target_regsets): Likewise.
1848 * linux-ppc-low.c (target_regsets): Likewise.
1849 * linux-s390-low.c (target_regsets): Likewise.
1850 * linux-sh-low.c (target_regsets): Likewise.
1851 * linux-sparc-low.c (target_regsets): Likewise.
1852 * linux-xtensa-low.c (target_regsets): Likewise.
1853
1854 * linux-low.c: Include <sys/uio.h>.
1855 (regsets_fetch_inferior_registers): Support nt_type.
1856 (regsets_store_inferior_registers): Likewise.
1857 (linux_process_qsupported): New.
1858 (linux_target_ops): Add linux_process_qsupported.
1859
1860 * linux-low.h (regset_info): Add nt_type.
1861 (linux_target_ops): Add process_qsupported.
1862
1863 * linux-x86-low.c: Include "i386-xstate.h", "elf/common.h"
1864 and <sys/uio.h>.
1865 (init_registers_i386_avx_linux): New.
1866 (init_registers_amd64_avx_linux): Likewise.
1867 (xmltarget_i386_linux_no_xml): Likewise.
1868 (xmltarget_amd64_linux_no_xml): Likewise.
1869 (PTRACE_GETREGSET): Likewise.
1870 (PTRACE_SETREGSET): Likewise.
1871 (x86_fill_xstateregset): Likewise.
1872 (x86_store_xstateregset): Likewise.
1873 (use_xml): Likewise.
1874 (x86_linux_update_xmltarget): Likewise.
1875 (x86_linux_process_qsupported): Likewise.
1876 (target_regsets): Add NT_X86_XSTATE entry and Initialize nt_type.
1877 (x86_arch_setup): Don't call init_registers_amd64_linux nor
1878 init_registers_i386_linux here. Call
1879 x86_linux_update_xmltarget.
1880 (the_low_target): Add x86_linux_process_qsupported.
1881
1882 * server.c (handle_query): Call target_process_qsupported.
1883
1884 * target.h (target_ops): Add process_qsupported.
1885 (target_process_qsupported): New.
1886
fc7238bb
PA
18872010-04-03 Pedro Alves <pedro@codesourcery.com>
1888
1889 * inferiors.c (add_thread): Set last_status kind to
1890 TARGET_WAITKIND_IGNORE.
1891 * linux-low.c (cancel_breakpoint): Remove unnecessary regcache
1892 fetch. Use ptid_of. Avoid unnecessary get_lwp_thread calls.
1893 (linux_wait_1): Move `thread' local definition to block that uses
1894 it. Don't NULL initialize `event_child'.
1895 (linux_resume_one_thread): Avoid unnecessary get_lwp_thread calls.
1896 Alway set the thread's last_status to TARGET_WAITKIND_IGNORE.
1897 * linux-x86-low.c (x86_breakpoint_at): Read raw memory.
1898
bdabb078
PA
18992010-04-01 Pedro Alves <pedro@codesourcery.com>
1900
1901 * linux-low.c (get_stop_pc): Don't adjust the PC if stopped with
1902 an extended waitstatus, or by a watchpoint.
1903 (cancel_breakpoints_callback): Don't cancel a breakpoint if the
1904 thread was stepping or has been stopped by a watchpoint.
1905
d3bbe7a0
PA
19062010-04-01 Pedro Alves <pedro@codesourcery.com>
1907
1908 * mem-break.c (struct raw_breakpoint): New field shlib_disabled.
1909 (set_gdb_breakpoint_at): If GDB is inserting a breakpoint on top
1910 of another, then delete the previous, and validate all
1911 breakpoints.
1912 (validate_inserted_breakpoint): New.
1913 (delete_disabled_breakpoints): New.
1914 (validate_breakpoints): New.
1915 (check_mem_read): Validate breakpoints before trusting their
1916 shadow. Delete disabled breakpoints.
1917 (check_mem_write): Validate breakpoints before trusting they
1918 should be inserted. Delete disabled breakpoints.
1919 * mem-break.h (validate_breakpoints):
1920 * server.c (handle_query): Validate breakpoints when we see a
1921 qSymbol query.
1922
8b07ae33
PA
19232010-04-01 Pedro Alves <pedro@codesourcery.com>
1924
1925 * linux-low.c (linux_wait_1): Avoid setting need_step_over is
1926 there's a GDB breakpoint at stop_pc. Always report a trap to GDB
1927 if we could tell there's a GDB breakpoint at stop_pc.
1928 (need_step_over_p): Don't do a step over if we find a GDB
1929 breakpoint at the resume PC.
1930
1931 * mem-break.c (struct raw_breakpoint): New.
1932 (enum bkpt_type): New type `gdb_breakpoint'.
1933 (struct breakpoint): Delete the `PC', `old_data' and `inserted'
1934 fields. New field `raw'.
1935 (find_raw_breakpoint_at): New.
1936 (set_raw_breakpoint_at): Handle refcounting. Create a raw
1937 breakpoint instead.
1938 (set_breakpoint_at): Adjust.
1939 (delete_raw_breakpoint): New.
1940 (release_breakpoint): New.
1941 (delete_breakpoint): Rename to...
1942 (delete_breakpoint_1): ... this. Add proc parameter. Use
1943 release_breakpoint. Return ENOENT.
1944 (delete_breakpoint): Reimplement.
1945 (find_breakpoint_at): Delete.
1946 (find_gdb_breakpoint_at): New.
1947 (delete_breakpoint_at): Delete.
1948 (set_gdb_breakpoint_at): New.
1949 (delete_gdb_breakpoint_at): New.
1950 (gdb_breakpoint_here): New.
1951 (set_reinsert_breakpoint): Use release_breakpoint.
1952 (uninsert_breakpoint): Rename to ...
1953 (uninsert_raw_breakpoint): ... this.
1954 (uninsert_breakpoints_at): Adjust to handle raw breakpoints.
1955 (reinsert_raw_breakpoint): Change parameter type to
1956 raw_breakpoint.
1957 (reinsert_breakpoints_at): Adjust to handle raw breakpoints
1958 instead.
1959 (check_breakpoints): Adjust. Use release_breakpoint.
1960 (breakpoint_here): Rewrite using find_raw_breakpoint_at.
1961 (breakpoint_inserted_here): Ditto.
1962 (check_mem_read): Adjust to iterate over raw breakpoints instead.
1963 Don't trust the breakpoint's shadow if it is not inserted.
1964 (check_mem_write): Adjust to iterate over raw breakpoints instead.
1965 (delete_all_breakpoints): Adjust.
1966 (free_all_breakpoints): Mark all breakpoints as uninserted, and
1967 use delete_breakpoint_1.
1968
1969 * mem-break.h (breakpoints_supported): Delete declaration.
1970 (set_gdb_breakpoint_at): Declare.
1971 (gdb_breakpoint_here): Declare.
1972 (delete_breakpoint_at): Delete.
1973 (delete_gdb_breakpoint_at): Declare.
1974
1975 * server.h (struct raw_breakpoint): Forward declare.
1976 (struct process_info): New field `raw_breakpoints'.
1977
1978 * linux-x86-low.c (x86_insert_point, x86_remote_point): Handle Z0
1979 breakpoints.
1980
6bf5e0ba
PA
19812010-03-24 Pedro Alves <pedro@codesourcery.com>
1982
1983 * linux-low.c (status_pending_p_callback): Fix comment.
1984 (linux_wait_for_event_1): Move most of the internal breakpoint
1985 handling from here...
1986 (linux_wait_1): ... to here.
1987 (count_events_callback): New.
1988 (select_singlestep_lwp_callback): New.
1989 (select_event_lwp_callback): New.
1990 (cancel_breakpoints_callback): New.
1991 (select_event_lwp): New.
1992 (linux_wait_1): Simplify internal breakpoint handling. Give equal
1993 priority to all LWPs that have had events that should be reported
1994 to the client. Cancel breakpoints when about to reporting the
1995 event to the client, not while stopping lwps. No longer cancel
1996 finished single-steps here.
1997 (cancel_finished_single_step): Delete.
1998 (cancel_finished_single_steps): Delete.
1999
414a389f
PA
20002010-03-24 Pedro Alves <pedro@codesourcery.com>
2001
2002 * mem-break.c (enum bkpt_type): New.
2003 (struct breakpoint): New field `type'.
2004 (set_breakpoint_at): Change return type to struct breakpoint
2005 pointer. Set type to `other_breakpoint' by default.
2006 (delete_breakpoint): Rewrite, supporting more than one breakpoint
2007 in the breakpoint list.
2008 (delete_reinsert_breakpoints): Only delete reinsert breakpoints.
2009 (reinsert_breakpoint): Rename to ...
2010 (reinsert_raw_breakpoint): ... this.
2011 (reinsert_breakpoints_at): Adjust.
2012 * mem-break.h (struct breakpoint): Declare.
2013 (set_breakpoint_at): Change return type to struct breakpoint
2014 pointer.
2015
2280c721
PA
20162010-03-24 Pedro Alves <pedro@codesourcery.com>
2017
2018 * server.c (handle_query): Assign, not compare.
2019
d50171e4
PA
20202010-03-24 Pedro Alves <pedro@codesourcery.com>
2021
2022 Teach linux gdbserver to step-over-breakpoints.
2023
2024 * linux-low.c (can_hardware_single_step): New.
2025 (supports_breakpoints): New.
2026 (handle_extended_wait): If stopping threads, read the stop pc of
2027 the new cloned LWP.
2028 (get_pc): New.
2029 (get_stop_pc): Add `lwp' parameter. Handle it. Bail out if the
2030 low target doesn't support retrieving the PC.
2031 (add_lwp): Set last_resume_kind to resume_continue.
2032 (linux_attach_lwp_1): Adjust comments. Always set stop_expected.
2033 (linux_attach): Don't clear stop_expected. Set the lwp's
2034 last_resume_kind to resume_stop.
2035 (linux_detach_one_lwp): Don't check for removed breakpoints.
2036 (check_removed_breakpoint): Delete.
2037 (status_pending_p): Rename to ...
2038 (status_pending_p_callback): ... this. Don't check for removed
2039 breakpoints. Don't consider threads that are stopped from GDB's
2040 perspective.
2041 (linux_wait_for_lwp): Always read the stop_pc here.
2042 (cancel_breakpoint): New.
2043 (step_over_bkpt): New global.
2044 (linux_wait_for_event_1): Implement stepping over breakpoints.
2045 (gdb_wants_lwp_stopped): New.
2046 (gdb_wants_all_stopped): New.
2047 (linux_wait_1): Tag threads as gdb-wants-stopped. Cancel finished
2048 single-step traps here. Store the thread's last reported target
2049 wait status.
2050 (send_sigstop): Don't clear stop_expected. Always set it,
2051 instead.
2052 (mark_lwp_dead): Remove reference to pending_is_breakpoint.
2053 (cancel_finished_single_step): New.
2054 (cancel_finished_single_steps): New.
2055 (wait_for_sigstop): Don't cancel finished single-step traps here.
2056 (linux_resume_one_lwp): Don't check for removed breakpoints.
2057 Don't set `step' on non-hardware step archs.
2058 (linux_set_resume_request): Ignore resume_stop requests if already
2059 stopping or stopped. Set the lwp's last_resume_kind.
2060 (resume_status_pending_p): Don't check for removed breakpoints.
2061 (need_step_over_p): New.
2062 (start_step_over): New.
2063 (finish_step_over): New.
2064 (linux_resume_one_thread): Always queue a sigstop for resume_stop
2065 requests. Clear the thread's last reported target waitstatus.
2066 Don't use the `suspended' flag. Don't consider pending breakpoints.
2067 (linux_resume): Start a step-over if necessary.
2068 (proceed_one_lwp): New.
2069 (proceed_all_lwps): New.
2070 (unstop_all_lwps): New.
2071 * linux-low.h (struct lwp_info): Rewrite comment for the
2072 `suspended' flag. Add the `stop_pc' field. Delete the
2073 `pending_stop_pc' field. Tweak the `stepping' flag's comment.
2074 Add `'last_resume_kind' and `need_step_over' fields.
2075 * inferiors.c (struct thread_info): Delete, moved elsewhere.
2076 * mem-break.c (struct breakpoint): Delete `reinserting' flag.
2077 Delete `breakpoint_to_reinsert' field. New flag `inserted'.
2078 (set_raw_breakpoint_at): New.
2079 (set_breakpoint_at): Rewrite to use it.
2080 (reinsert_breakpoint_handler): Delete.
2081 (set_reinsert_breakpoint): New.
2082 (reinsert_breakpoint_by_bp): Delete.
2083 (delete_reinsert_breakpoints): New.
2084 (uninsert_breakpoint): Rewrite.
2085 (uninsert_breakpoints_at): New.
2086 (reinsert_breakpoint): Rewrite.
2087 (reinsert_breakpoints_at): New.
2088 (check_breakpoints): Rewrite.
2089 (breakpoint_here): New.
2090 (breakpoint_inserted_here): New.
2091 (check_mem_read): Adjust.
2092 * mem-break.h (breakpoints_supported, breakpoint_here)
2093 (breakpoint_inserted_here, set_reinsert_breakpoint): Declare.
2094 (reinsert_breakpoint_by_bp): Delete declaration.
2095 (delete_reinsert_breakpoints): Declare.
2096 (reinsert_breakpoint): Delete declaration.
2097 (reinsert_breakpoints_at): Declare.
2098 (uninsert_breakpoint): Delete declaration.
2099 (uninsert_breakpoints_at): Declare.
2100 (check_breakpoints): Adjust prototype.
2101 * server.h: Adjust include order.
2102 (struct thread_info): Declare here. Add a `last_status' field.
2103
30ba68cb
MS
21042010-03-23 Michael Snyder <msnyder@vmware.com>
2105
2106 * server.c (crc32): New function.
2107 (handle_query): Add handling for 'qCRC:' request.
2108
b9a881c2
PA
21092010-03-23 Pedro Alves <pedro@codesourcery.com>
2110
2111 * linux-x86-low.c (x86_linux_prepare_to_resume): Clear DR6 if the
2112 lwp had been stopped by a watchpoint.
2113
e92d13d5
PA
21142010-03-16 Pedro Alves <pedro@codesourcery.com>
2115
2116 * server.h (internal_error): Declare.
2117 (gdb_assert, ASSERT_FUNCTION, gdb_assert_fail): Define.
2118 * utils.c (internal_error): New function.
2119
64daa791
AS
21202010-03-15 Andreas Schwab <schwab@redhat.com>
2121
2122 * configure.srv: Fix typo setting srv_regobj.
2123
f52cd8cd
PA
21242010-03-15 Pedro Alves <pedro@codesourcery.com>
2125
2126 * linux-low.c (fetch_register): Avoid passing a non string literal
2127 format to `error'.
2128 (usr_store_inferior_registers): Ditto.
2129
93ae6fdc
PA
21302010-03-14 Pedro Alves <pedro@codesourcery.com>
2131
2132 * linux-low.c (linux_write_memory): Bail out early if peeking
2133 memory failed.
2134
c3adc08c
PA
21352010-03-14 Pedro Alves <pedro@codesourcery.com>
2136
2137 * linux-low.h (struct lwp_info): New fields
2138 `stopped_by_watchpoint' and `stopped_data_address'.
2139 * linux-low.c (linux_wait_for_lwp): Check for watchpoint triggers
2140 here, and cache them in the lwp object.
2141 (wait_for_sigstop): Check stopped_by_watchpoint lwp field
2142 directly.
2143 (linux_resume_one_lwp): Clear the lwp's stopped_by_watchpoint
2144 field.
2145 (linux_stopped_by_watchpoint): Rewrite.
2146 (linux_stopped_data_address): Rewrite.
2147
bce522a2
PA
21482010-03-06 Simo Melenius <simo.melenius@iki.fi>
2149
2150 * linux-low.c (linux_wait_for_lwp): Fetch the regcache after
2151 switching the current inferior, not before.
2152
90884b2b
L
21532010-03-01 H.J. Lu <hongjiu.lu@intel.com>
2154
2155 * Makefile.in (clean): Replace reg-i386.c, reg-x86-64.c,
2156 reg-i386-linux.c and reg-x86-64-linux.c with i386.c, amd64.c,
2157 i386-linux.c and amd64-linux.c.
2158 (reg-i386.o): Removed.
2159 (reg-i386.c): Likewise.
2160 (reg-i386-linux.o): Likewise.
2161 (reg-i386-linux.c): Likewise.
2162 (reg-x86-64.o): Likewise.
2163 (reg-x86-64.c): Likewise.
2164 (reg-x86-64-linux.o): Likewise.
2165 (reg-x86-64-linux.c): Likewise.
2166 (i386.o): New.
2167 (i386.c): Likewise.
2168 (i386-linux.o): Likewise.
2169 (i386-linux.c): Likewise.
2170 (amd64.o): Likewise.
2171 (amd64.c): Likewise.
2172 (amd64-linux.o): Likewise.
2173 (amd64-linux.c): Likewise.
2174
2175 * configure.srv (srv_i386_regobj): New.
2176 (srv_i386_linux_regobj): Likewise.
2177 (srv_amd64_regobj): Likewise.
2178 (srv_amd64_linux_regobj): Likewise.
2179 (srv_i386_32bit_xmlfiles): Likewise.
2180 (srv_i386_64bit_xmlfiles): Likewise.
2181 (srv_i386_xmlfiles): Likewise.
2182 (srv_amd64_xmlfiles): Likewise.
2183 (srv_i386_linux_xmlfiles): Likewise.
2184 (srv_amd64_linux_xmlfiles): Likewise.
2185 (i[34567]86-*-cygwin*): Set srv_regobj to $srv_i386_regobj. Set
2186 srv_xmlfiles to $srv_i386_xmlfiles.
2187 (i[34567]86-*-mingw32ce*): Likewise.
2188 (i[34567]86-*-mingw*): Likewise.
2189 (i[34567]86-*-nto*): Likewise.
2190 (i[34567]86-*-linux*): Set srv_regobj to $srv_i386_linux_regobj
2191 and $srv_amd64_linux_regobj. Set srv_xmlfiles to
2192 $srv_i386_linux_xmlfiles and $srv_amd64_linux_xmlfiles.
2193 (x86_64-*-linux*): Likewise.
2194
2195 * linux-x86-low.c (init_registers_x86_64_linux): Removed.
2196 (init_registers_amd64_linux): New.
2197 (x86_arch_setup): Replace init_registers_x86_64_linux with
2198 init_registers_amd64_linux.
2199
193f13e6
MK
22002010-02-23 Maxim Kuvyrkov <maxim@codesourcery.com>
2201
2202 * configure.ac: Check for libdl. If it is not available link against
2203 static libthread_db.
2204 * configure: Regenerate.
2205
85d721b8
PA
22062010-02-22 Pedro Alves <pedro@codesourcery.com>
2207
2208 PR9605
2209
2210 * i386-low.c (i386_length_and_rw_bits): Throw a fatal error if
2211 handing a read watchpoint.
2212 (i386_low_insert_watchpoint): Read watchpoints aren't supported.
2213
6076632b
DE
22142010-02-12 Doug Evans <dje@google.com>
2215
2216 * linux-low.c (linux_supports_tracefork_flag): Document.
2217 (linux_look_up_symbols): Add comment.
2218
3327ccf7
L
22192010-02-03 H.J. Lu <hongjiu.lu@intel.com>
2220
2221 * regcache.c (supply_register): Clear regcache if buf is NULL.
2222
0718675c 22232010-02-02 Nicolas Roche <roche@sourceware.org>
3327ccf7 2224 Joel Brobecker <brobecker@adacore.com>
0718675c
JB
2225
2226 * inferiors.c (find_inferior): Add function documentation.
2227 (unloaded_dll): Handle the case where the unloaded dll has not
2228 been previously registered in the dll list.
2229
177321bd
DJ
22302010-02-01 Daniel Jacobowitz <dan@codesourcery.com>
2231
2232 * linux-arm-low.c (thumb_breakpoint_len): Delete.
2233 (thumb2_breakpoint): New.
2234 (arm_breakpoint_at): Check for Thumb-2 breakpoints.
2235
2b009048
DJ
22362010-01-29 Daniel Jacobowitz <dan@codesourcery.com>
2237
2238 * linux-low.c (get_stop_pc): Check for SIGTRAP.
2239 (linux_wait_for_event_1): Handle SIGILL and SIGSEGV as possible
2240 breakpoints.
2241
3be029c7
PA
22422010-01-21 Pedro Alves <pedro@codesourcery.com>
2243
2244 * linux-ppc-low.c (ppc_arch_setup): Adjust to regcache changes.
2245
18f5de3b
JK
22462010-01-21 Jan Kratochvil <jan.kratochvil@redhat.com>
2247
2248 * linux-s390-low.c (s390_collect_ptrace_register)
2249 (s390_supply_ptrace_register): Adjust it for the new regcache parameter.
2250
3743bb4f
DE
22512010-01-21 Doug Evans <dje@google.com>
2252
14ce3065
DE
2253 * linux-low.c (PTRACE_ARG3_TYPE): Change from long to void*.
2254 (PTRACE_ARG4_TYPE): New macro.
2255 (handle_extended_wait): Cast ptrace arg4 to PTRACE_ARG4_TYPE.
2256 (linux_wait_for_event_1, linux_resume_one_lwp): Ditto.
2257 (fetch_register): Cast to uintptr_t before casting to PTRACE_ARG3_TYPE.
2258 (usr_store_inferior_registers): Ditto.
2259 (linux_read_memory, linux_write_memory): Ditto.
2260 (linux_test_for_tracefork): Ditto.
2261
3743bb4f
DE
2262 * linux-arm-low.c: Remove redundant include of gdb_proc_service.h.
2263 Only include elf.h if gdb_proc_service.h didn't include linux/elf.h.
2264
8b315be5
PA
22652010-01-21 Pedro Alves <pedro@codesourcery.com>
2266
2267 * proc-service.c (ps_lgetregs): Don't refetch registers from the
2268 target.
2269
85492558
PA
22702010-01-21 Pedro Alves <pedro@codesourcery.com>
2271
2272 * spu-low.c (spu_fetch_registers, spu_store_registers): Change
2273 prototype to take a regcache. Adjust.
2274
442ea881
PA
22752010-01-20 Pedro Alves <pedro@codesourcery.com>
2276
2277 * regcache.h (struct thread_info): Forward declare.
2278 (struct regcache): New.
2279 (new_register_cache): Adjust prototype.
2280 (get_thread_regcache): Declare.
2281 (free_register_cache): Adjust prototype.
2282 (registers_to_string, registers_from_string): Ditto.
2283 (supply_register, supply_register_by_name, collect_register)
2284 (collect_register_as_string, collect_register_by_name): Ditto.
2285 * regcache.c (struct inferior_regcache_data): Delete.
2286 (get_regcache): Rename to ...
2287 (get_thread_regcache): ... this. Adjust. Switch inferior before
2288 fetching registers.
2289 (regcache_invalidate_one): Adjust.
2290 (regcache_invalidate): Fix prototype.
2291 (new_register_cache): Return the new register cache.
2292 (free_register_cache): Change prototype.
2293 (realloc_register_cache): Adjust.
2294 (registers_to_string): Change prototype to take a regcache. Adjust.
2295 (registers_from_string): Ditto.
2296 (register_data): Ditto.
2297 (supply_register): Ditto.
2298 (supply_register_by_name): Ditto.
2299 (collect_register): Ditto.
2300 (collect_register_as_string): Ditto.
2301 (collect_register_by_name): Ditto.
2302 * server.c (process_serial_event): Adjust.
2303 * linux-low.h (regset_fill_func, regset_store_func): Change
2304 prototype.
2305 (get_pc, set_pc, collect_ptrace_register, supply_ptrace_register):
2306 Change prototype.
2307 * linux-low.c (get_stop_pc): Adjust.
2308 (check_removed_breakpoint): Adjust.
2309 (linux_wait_for_event): Adjust.
2310 (linux_resume_one_lwp): Adjust.
2311 (fetch_register): Add regcache parameter. Adjust.
2312 (usr_store_inferior_registers): Ditto.
2313 (regsets_fetch_inferior_registers): Ditto.
2314 (regsets_store_inferior_registers): Ditto.
2315 (linux_fetch_registers, linux_store_registers): Ditto.
2316 * i387-fp.c (i387_cache_to_fsave): Change prototype to take a
2317 regcache. Adjust.
2318 (i387_fsave_to_cache, i387_cache_to_fxsave, i387_fxsave_to_cache): Ditto.
2319 * i387-fp.h (i387_cache_to_fsave, i387_fsave_to_cache): Change
2320 prototype to take a regcache.
2321 (i387_cache_to_fxsave, i387_fxsave_to_cache): Ditto.
2322 * remote-utils.c (convert_ascii_to_int, outreg)
2323 (prepare_resume_reply): Change prototype to take a regcache.
2324 Adjust.
2325 * target.h (struct target_ops) <fetch_registers, store_registers>:
2326 Change prototype to take a regcache.
2327 (fetch_inferior_registers, store_inferior_registers): Change
2328 prototype to take a regcache. Adjust.
2329 * proc-service.c (ps_lgetregs): Adjust.
2330 * linux-x86-low.c (x86_fill_gregset, x86_store_gregset)
2331 (x86_fill_fpregset, x86_store_fpregset, x86_fill_fpxregset)
2332 (x86_store_fpxregset, x86_get_pc, x86_set_pc): Change prototype to
2333 take a regcache. Adjust.
2334 * linux-arm-low.c (arm_fill_gregset, arm_store_gregset)
2335 (arm_fill_wmmxregset, arm_store_wmmxregset, arm_fill_vfpregset)
2336 (arm_store_vfpregset, arm_get_pc, arm_set_pc):
2337 (arm_breakpoint_at): Change prototype to take a regcache. Adjust.
2338 * linux-cris-low.c (cris_get_pc, cris_set_pc)
2339 (cris_cannot_fetch_register):
2340 (cris_breakpoint_at): Change prototype to take a regcache.
2341 Adjust.
2342 * linux-crisv32-low.c (cris_get_pc, cris_set_pc,
2343 cris_reinsert_addr, cris_write_data_breakpoint): Change prototype
2344 to take a regcache. Adjust.
2345 (cris_breakpoint_at, cris_insert_point, cris_remove_point):
2346 Adjust.
2347 * linux-m32r-low.c (m32r_get_pc, m32r_set_pc): Change prototype to
2348 take a regcache. Adjust.
2349 * linux-m68k-low.c (m68k_fill_gregset, m68k_store_gregset)
2350 (m68k_fill_fpregset, m68k_store_fpregset, m68k_get_pc,
2351 (m68k_set_pc): Change prototype to take a regcache. Adjust.
2352 * linux-mips-low.c (mips_get_pc):
2353 (mips_set_pc): Change prototype to take a regcache. Adjust.
2354 (mips_reinsert_addr): Adjust.
2355 (mips_collect_register): Change prototype to take a regcache.
2356 Adjust.
2357 (mips_supply_register):
2358 (mips_collect_register_32bit, mips_supply_register_32bit)
2359 (mips_fill_gregset, mips_store_gregset, mips_fill_fpregset)
2360 (mips_store_fpregset): Ditto.
2361 * linux-ppc-low.c (ppc_supply_ptrace_register, ppc_supply_ptrace_register):
2362 Ditto.
2363 (parse_spufs_run): Adjust.
2364 (ppc_get_pc, ppc_set_pc, ppc_fill_gregset, ppc_fill_vsxregset)
2365 (ppc_store_vsxregset, ppc_fill_vrregset, ppc_store_vrregset)
2366 (ppc_fill_evrregset, ppc_store_evrregset): Change prototype to
2367 take a regcache. Adjust.
2368 * linux-s390-low.c (s390_collect_ptrace_register)
2369 (s390_supply_ptrace_register, s390_fill_gregset, s390_get_pc)
2370 (s390_set_pc): Change prototype to take a regcache. Adjust.
2371 (s390_arch_setup): Adjust.
2372 * linux-sh-low.c (sh_get_pc, sh_breakpoint_at)
2373 (sh_fill_gregset): Change prototype to take a regcache. Adjust.
2374 * linux-sparc-low.c (sparc_fill_gregset_to_stack)
2375 (sparc_fill_gregset, sparc_store_gregset_from_stack)
2376 (sparc_store_gregset, sparc_get_pc): Change prototype to take a
2377 regcache. Adjust.
2378 (sparc_breakpoint_at): Adjust.
2379 * linux-xtensa-low.c (xtensa_fill_gregset):
2380 (xtensa_store_gregset):
2381 (xtensa_fill_xtregset, xtensa_store_xtregset, xtensa_get_pc)
2382 (xtensa_set_pc): Change prototype to take a regcache. Adjust.
2383 * nto-low.c (nto_fetch_registers, nto_store_registers): Change
2384 prototype to take a regcache. Adjust.
2385 * win32-arm-low.c (arm_fetch_inferior_register)
2386 (arm_store_inferior_register): Change prototype to take a
2387 regcache. Adjust.
2388 * win32-i386-low.c (i386_fetch_inferior_register)
2389 (i386_store_inferior_register): Change prototype to take a
2390 regcache. Adjust.
2391 * win32-low.c (child_fetch_inferior_registers)
2392 (child_store_inferior_registers): Change prototype to take a
2393 regcache. Adjust.
2394 (win32_wait): Adjust.
2395 (win32_fetch_inferior_registers): Change prototype to take a
2396 regcache. Adjust.
2397 (win32_store_inferior_registers): Adjust.
2398 * win32-low.h (struct win32_target_ops) <fetch_inferior_register,
2399 store_inferior_register>: Change prototype to take a regcache.
2400
60c3d7b0
DE
24012010-01-20 Doug Evans <dje@google.com>
2402
2403 * linux-low.c (linux_create_inferior): Wrap use of __SIGRTMIN in
2404 #ifdef.
2405 (linux_wait_for_event1, linux_init_signals): Ditto.
ec8ebe72 2406 (W_STOPCODE): Provide definition if missing.
60c3d7b0 2407
dc146f7c
VP
24082010-01-13 Vladimir Prus <vladimir@codesourcery.com>
2409
2410 * linux-low.c (linux_core_of_thread): New.
2411 (compare_ints, show_process, list_threads): New.
2412 (linux_qxfer_osdata): Report threads and cores.
2413 (linux_target_op): Register linux_core_of_thread.
2414 * remote-utils.c (prepare_resume_reply): Report the core.
2415 (buffer_xml_printf): Support %d specifier.
2416 * server.c (handle_threads_qxfer_proper, handle_threads_qxfer):
2417 New.
2418 (handle_query): Handle qXfer:threads. Announce availability
2419 thereof.
2420 * target.h (struct target_ops): New field core_of_thread.
2421
7803799a
UW
24222010-01-04 Ulrich Weigand <uweigand@de.ibm.com>
2423
2424 * Makefile.in (clean): Remove new generated files.
2425 (reg-s390.o, reg-s390.c): Remove rules.
2426 (reg-s390x.o, reg-s390x.c): Likewise.
2427 (s390-linux32.o, s390-linux32.c): Add rules.
2428 (s390-linux64.o, s390-linux64.c): Likewise.
2429 (s390x-linux64.o, s390x-linux64.c): Likewise.
2430 * configure.srv (s390*-*-linux*): Update srv_regobj and srv_xmlfiles.
2431 * linux-s390-low.c: Include <elf.h>.
2432 (HWCAP_S390_HIGH_GPRS): Define if undefined.
2433 (init_registers_s390): Remove prototype.
2434 (init_registers_s390x): Likewise.
2435 (init_registers_s390_linux32): Add prototype.
2436 (init_registers_s390_linux64): Likewise.
2437 (init_registers_s390x_linux64): Likewise.
2438 (s390_num_regs_3264): New define.
2439 (s390_regmap_3264): New global variable.
2440 (s390_cannot_fetch_register): Remove obsolete check.
2441 (s390_cannot_store_register): Likewise.
2442 (s390_collect_ptrace_register): Handle upper/lower register halves.
2443 (s390_supply_ptrace_register): Likewise.
2444 (s390_fill_gregset): Update to register number changes.
2445 (s390_get_hwcap): New routine.
2446 (s390_arch_setup): Detect 32-bit process running on 64-bit system.
2447 Install appropriate regmap and register set.
2448
6e7ffa39
JB
24492010-01-01 Joel Brobecker <brobecker@adacore.com>
2450
2451 * server.c (gdbserver_version): Update copyright year to 2010.
2452 * gdbreplay.c (gdbreplay_version): Likewise.
2453
957f3f49
DE
24542009-12-28 Doug Evans <dje@google.com>
2455
2456 * linux-low.c: Delete inclusion of ansidecl.h, elf/common.h,
2457 elf/external.h. Include <elf.h> instead but only if necessary.
2458
ca5c370d
PA
24592009-12-28 Pedro Alves <pedro@codesourcery.com>
2460
2461 * linux-low.c (linux_remove_process): Remove `detaching'
2462 parameter. Don't release/detach from thread_db here.
2463 (linux_kill): Release/detach from thread_db here, ...
2464 (linux_detach): ... and here, before actually detaching.
2465 (linux_wait_1): ... and here, when a process exits.
2466 * thread-db.c (any_thread_of): New.
2467 (thread_db_free): Switch the current inferior to a thread of the
2468 passed in process.
2469
4ee62156
DE
24702009-12-21 Doug Evans <dje@google.com>
2471
d90e6a88
DE
2472 * linux-x86-low.c: Delete outdated comment about Elf32_Phdr.
2473
c5f62d5f
DE
2474 * linux-low.c (kill_lwp): Use __NR_tkill instead of SYS_tkill.
2475 Move definition of tkill_failed to ifdef __NR_tkill to avoid gcc
2476 warning ifndef __NR_tkill. Move setting of errno there too.
2477 Delete unnecessary resetting of errno after syscall.
2478 Minor comment changes to match gdb/linux-nat.c:kill_lwp.
2479
10e86dd7
DE
2480 * configure.ac: Check for dladdr.
2481 * config.in: Regenerate.
2482 * configure: Regenerate.
2483 * thread-db.c (dladdr_to_soname): Only define ifdef HAVE_DLADDR.
2484 (try_thread_db_load): Update.
2485
4ee62156
DE
2486 * linux-low.c (my_waitpid): Delete unnecessary prototype.
2487
00f515da
DE
24882009-12-18 Doug Evans <dje@google.com>
2489
e9464885
DE
2490 * event-loop.c: Include unistd.h if it exists.
2491
07d4f67e
DE
2492 * linux-low.c (my_waitpid): Move definition away from being in
2493 between linux_tracefork_child/linux_test_for_tracefork.
2494
00f515da
DE
2495 * gdb_proc_service.h (psaddr_t): Fix type.
2496 * thread-db.c (thread_db_info.td_thr_tls_get_addr_p): Fix
2497 signature to match glibc.
2498
1de1badb
DE
24992009-12-16 Doug Evans <dje@google.com>
2500
2501 * linux-low.c (linux_read_memory): Fix argument to read.
2502
aeeb81d1
PA
25032009-11-26 Pedro Alves <pedro@codesourcery.com>
2504
2505 * win32-low.c (get_child_debug_event): On EXIT_THREAD_DEBUG_EVENT
2506 events, don't leave current_inferior pointing at null.
2507
10357975
PA
25082009-11-26 Pedro Alves <pedro@codesourcery.com>
2509
2510 * win32-low.c (LOG): Delete.
2511 (OUTMSG): Output to stderr.
2512 (OUTMSG2): Conditionalize on `debug_threads' variable, instead of
2513 on compile time LOG macro.
2514 (win32_wait): Fix debug output.
2515
cf6e3471
PA
25162009-11-26 Pedro Alves <pedro@codesourcery.com>
2517
2518 * win32-low.c (win32_add_one_solib): If the dll name is
2519 "ntdll.dll", prepend the system directory to the dll path.
2520
0c85e18e
MK
25212009-11-17 Daniel Jacobowitz <dan@codesourcery.com>
2522
2523 * m68k-tdep.c (m68k_gdbarch_init): Reuse previous initialization.
2524
9ac544ce 25252009-11-17 Nathan Sidwell <nathan@codesourcery.com>
889bf7c5 2526 Vladimir Prus <vladimir@codesourcery.com>
9ac544ce
MK
2527
2528 * Makefile.in (reg-cf.o, reg-cf.c): New targets.
2529 * configure.ac: Check for __mcoldfire__ and set
2530 gdb_cv_m68k_is_coldfire.
2531 * configure.srv: Use gdb_cv_m68k_is_coldfire to select between
2532 reg-cf.o and reg-m68k.o.
2533 * configure: Regenerated.
2534
fd7dd3e6
PA
25352009-11-16 Pedro Alves <pedro@codesourcery.com>
2536
2537 * linux-low.c (linux_remove_process): Add `detaching' parameter.
2538 Pass it to thread_db_free.
2539 (linux_kill, linux_detach, linux_wait_1): Adjust to pass the
2540 proper `detaching' argument to linux_remove_process.
2541 * linux-low.h (thread_db_free): Add `detaching' parameter.
2542 * thread-db.c (thread_db_init): Pass false as `detaching' argument
2543 to thread_db_free.
2544 (thread_db_free): Add `detaching' parameter. Only
2545 call td_ta_clear_event if detaching from process.
2546
75aa492e
MK
25472009-11-12 Maxim Kuvyrkov <maxim@codesourcery.com>
2548
2549 * thread-db.c (thread_db_free): Fix typo.
2550
21e1bee4
PP
25512009-11-11 Paul Pluzhnikov <ppluzhnikov@google.com>
2552
2553 PR gdb/10838
2554 * thread-db.c (thread_db_free): Call td_ta_clear_event.
2555
8838b45e
NS
25562009-11-03 Nathan Sidwell <nathan@codesourcery.com>
2557
2558 * configure.ac (i[34567]86-*): Check if we're targetting x86-64
2559 with an i686 compiler.
2560 * configure.srv (i[34567]86-*-linux*): Pull in x86-64 handling if
2561 needed.
2562 * configure: Rebuilt.
2563
8a35fb51
SL
25642009-10-29 Sandra Loosemore <sandra@codesourcery.com>
2565
2566 PR gdb/10783
2567
2568 * server.c (handle_search_memory_1): Correct read_addr initialization
2569 in loop for searching subsequent chunks.
2570
96f15937
PP
25712009-10-29 Paul Pluzhnikov <ppluzhnikov@google.com>
2572
2573 * configure.ac: New --with-libthread-db option.
2574 * thread-db.c: Allow direct dependence on libthread_db.
2575 (thread_db_free): Adjust.
2576 * config.in: Regenerate.
2577 * configure: Likewise.
889bf7c5 2578
5f7d1694
PP
25792009-10-28 Paul Pluzhnikov <ppluzhnikov@google.com>
2580
2581 PR gdb/10757
2582 * thread-db.c (attach_thread): New function.
2583 (maybe_attach_thread): Return success/failure.
2584 (find_new_threads_callback): Adjust.
889bf7c5
PA
2585 (thread_db_find_new_threads): Loop until no new threads.
2586
88e3b899
PA
25872009-10-13 Pedro Alves <pedro@codesourcery.com>
2588
2589 * proc-service.c (ps_lgetregs): Formatting.
2590
cdbfd419
PP
25912009-10-08 Paul Pluzhnikov <ppluzhnikov@google.com>
2592
2593 * acinclude.m4: (SRV_CHECK_THREAD_DB, SRV_CHECK_TLS_GET_ADDR): Remove.
2594 * configure.ac: Adjust.
2595 * linux-low.h (struct process_info_private): Move members to struct
2596 thread_db.
2597 (thread_db_free, thread_db_handle_monitor_command): New prototype.
2598 * linux-low.c (linux_remove_process): Adjust.
2599 (linux_wait_for_event_1, linux_look_up_symbols): Likewise.
2600 * server.c (handle_query): Move code ...
2601 (handle_monitor_command): ... here. New function.
2602 * target.h (struct target_ops): New member.
2603 * thread-db.c (struct thread_db): New.
2604 (libthread_db_search_path): New variable.
2605 (thread_db_create_event, thread_db_enable_reporting)
2606 (find_one_thread, maybe_attach_thread, find_new_threads_callback)
2607 (thread_db_find_new_threads, (thread_db_get_tls_address): Adjust.
2608 (try_thread_db_load_1, dladdr_to_soname): New functions.
2609 (try_thread_db_load, thread_db_load_search): New functions.
2610 (thread_db_init): Search for libthread_db.
2611 (thread_db_free): New function.
2612 (thread_db_handle_monitor_command): Likewise.
2613 * config.in: Regenerate.
2614 * configure: Regenerate.
889bf7c5 2615
4168d2d6
UW
26162009-09-27 Ulrich Weigand <uweigand@de.ibm.com>
2617
2618 * spu-low.c (spu_kill): Wait for inferior to terminate.
2619 Call clear_inferiors.
2620 (spu_detach): Call clear_inferiors.
2621
81ecdfbb
RW
26222009-08-22 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
2623
2624 * aclocal.m4: Regenerate.
2625 * config.in: Likewise.
2626 * configure: Likewise.
2627
0b9ff2c0
UW
26282009-07-31 Ulrich Weigand <uweigand@de.ibm.com>
2629
2630 * linux-ppc-low.c (INSTR_SC, NR_spu_run): Define.
2631 (parse_spufs_run): New function.
2632 (ppc_get_pc, ppc_set_pc): Detect and handle SPU PC.
2633 (ppc_breakpoint_at): Handle SPU breakpoints.
2634
efcbbd14
UW
26352009-07-31 Ulrich Weigand <uweigand@de.ibm.com>
2636
2637 * linux-low.c: Include <sys/stat.h> and <sys/vfs.h>.
2638 (SPUFS_MAGIC): Define.
2639 (spu_enumerate_spu_ids): New function.
2640 (linux_qxfer_spu): New function.
2641 (linux_target_ops): Install linux_qxfer_spu.
2642
f4d9bade
UW
26432009-07-31 Ulrich Weigand <uweigand@de.ibm.com>
2644
2645 * configure.srv (powerpc*-*-linux*): Add powerpc-cell32l.o
2646 and powerpc-cell64l.o to srv_regobj. Add rs6000/powerpc-cell32l.xml
2647 and rs6000/powerpc-cell64l.xml to srv_xmlfiles.
2648 * Makefile.in (powerpc-cell32l.o, powerpc-cell32l.c): New rules.
2649 (powerpc-cell64l.o, powerpc-cell64l.c): Likewise.
2650 (clean): Handle powerpc-cell32l.c and powerpc-cell64l.c.
2651 * linux-ppc-low.c (PPC_FEATURE_CELL): Define.
2652 (init_registers_powerpc_cell32l): Add prototype.
2653 (init_registers_powerpc_cell64l): Likewise.
2654 (ppc_arch_setup): Detect Cell/B.E. architecture.
2655
96e946ca
RW
26562009-07-30 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
2657
2658 * Makefile.in (datarootdir): New variable.
2659
58d6951d
DJ
26602009-07-28 Daniel Jacobowitz <dan@codesourcery.com>
2661
2662 * linux-low.c (linux_write_memory): Update debugging output.
2663 * Makefile.in (clean): Add new descriptions.
2664 (arm-with-vfpv2.o, arm-with-vfpv2.c, arm-with-vfpv3.o)
2665 (arm-with-vfpv3.c, arm-with-neon.o, arm-with-neon.c): New rules.
2666 * configure.srv: Add new files for arm*-*-linux*.
2667 * linux-arm-low.c: Add new declarations.
2668 (PTRACE_GETVFPREGS, PTRACE_SETVFPREGS): Define if undefined.
2669 (arm_hwcap, HWCAP_VFP, HWCAP_IWMMXT, HWCAP_NEON, HWCAP_VFPv3)
2670 (HWCAP_VFPv3D16): New.
2671 (arm_fill_wmmxregset, arm_store_wmmxregset): Check HWCAP_IWMMXT
2672 instead of __IWMMXT__.
2673 (arm_fill_vfpregset, arm_store_vfpregset, arm_get_hwcap)
2674 (arm_arch_setup): New.
2675 (target_regsets): Remove #ifdef. Add VFP regset.
2676 (the_low_target): Use arm_arch_setup.
2677
12b42a12
DJ
26782009-07-28 Daniel Jacobowitz <dan@codesourcery.com>
2679
2680 * linux-low.c (linux_kill_one_lwp): Adjust kernel workaround to skip
2681 the main thread again.
2682
ac8c974e
AR
26832009-07-06 Aleksandar Ristovski <aristovski@qnx.com>
2684
2685 Adding Neutrino gdbserver.
2686 * configure: Regenerated.
2687 * configure.ac: Add case for srv_qnx and set LIBS accordingly.
2688 * configure.srv (i[34567]86-*-nto*): New target.
2689 * nto-low.c, nto-low.h, nto-x86-low.c: New files.
2690 * remote-utils.c [__QNX__]: Include sys/iomgr.h
2691 (nto_comctrl) [__QNX__]: New function.
2692 (enable_async_io, disable_async_io) [__QNX__]: Call nto_comctrl.
2693
4424e0c3 26942009-07-05 Danny Backx <dannybackx@users.sourceforge.net>
7437790a
PA
2695
2696 * configure.srv (i[34567]86-*-mingw32ce*): Add i386-low.o to
2697 srv_tgtobj.
2698
912cf4ba
PA
26992009-07-04 Danny Backx <dannybackx@users.sourceforge.net>
2700 Pedro Alves <pedro@codesourcery.com>
2701
2702 * win32-i386-low.c (i386_get_thread_context): Handle systems that
2703 don't support CONTEXT_EXTENDED_REGISTERS.
2704 (i386_win32_breakpoint, i386_win32_breakpoint_len): New.
2705 (the_low_target): Install them.
2706 * win32-low.c (get_child_debug_event): Handle WaitForDebugEvent
2707 failing with ERROR_PIPE_NOT_CONNECTED.
2708
aa5ca48f
DE
27092009-06-30 Doug Evans <dje@google.com>
2710 Pierre Muller <muller@ics.u-strasbg.fr>
2711
2712 Add h/w watchpoint support to x86-linux, win32-i386.
2713 * Makefile.in (SFILES): Add i386-low.c
2714 (i386_low_h): Define.
2715 (i386-low.o): Add dependencies.
2716 (linux-x86-low.o): Add i386-low.h dependency.
2717 (win32-i386-low.o): Ditto.
2718 * i386-low.c: New file.
2719 * i386-low.h: New file.
2720 * configure.srv (i[34567]86-*-cygwin*): Add i386-low.o to srv_tgtobj.
2721 (i[34567]86-*-linux*, i[34567]86-*-mingw*, x86_64-*-linux*): Ditto.
2722 * linux-low.c (linux_add_process): Initialize arch_private.
2723 (linux_remove_process): Free arch_private.
2724 (add_lwp): Initialize arch_private.
2725 (delete_lwp): Free arch_private.
2726 (linux_resume_one_lwp): Call the_low_target.prepare_to_resume if
2727 provided.
2728 * linux-low.h (process_info_private): New member arch_private.
2729 (lwp_info): New member arch_private.
2730 (linux_target_ops): New members new_process, new_thread,
2731 prepare_to_resume.
2732 (ptid_of): New macro.
2733 * linux-x86-low.c: Include stddef.h, i386-low.h.
2734 (arch_process_info): New struct.
2735 (arch_lwp_info): New struct.
2736 (x86_linux_dr_get, x86_linux_dr_set): New functions.
2737 (i386_dr_low_set_addr, i386_dr_low_set_control): New functions.
2738 (i386_dr_low_get_status): New function.
2739 (x86_insert_point, x86_remove_point): New functions.
2740 (x86_stopped_by_watchpoint): New function.
2741 (x86_stopped_data_address): New function.
2742 (x86_linux_new_process, x86_linux_new_thread): New functions.
2743 (x86_linux_prepare_to_resume): New function.
2744 (the_low_target): Add entries for insert_point, remove_point,
2745 stopped_by_watchpoint, stopped_data_address, new_process, new_thread,
2746 prepare_to_resume.
2747 * server.c (debug_hw_points): New global.
2748 (monitor_show_help): Document set debug-hw-points.
2749 (handle_query): Process "set debug-hw-points".
2750 * server.h (debug_hw_points): Declare.
2751 (paddress): Declare.
2752 * utils.c (NUMCELLS, CELLSIZE): New macros.
2753 (get_sell, xsnprintf, paddress): New functions.
2754 * win32-arm-low.c (the_low_target): Add entries for insert_point,
2755 remove_point, stopped_by_watchpoint, stopped_data_address.
2756 * win32-i386-low.c: Include i386-low.h.
2757 (debug_reg_state): Replaces dr.
2758 (i386_dr_low_set_addr, i386_dr_low_set_control): New functions.
2759 (i386_dr_low_get_status): New function.
2760 (i386_insert_point, i386_remove_point): New functions.
2761 (i386_stopped_by_watchpoint): New function.
2762 (i386_stopped_data_address): New function.
2763 (i386_initial_stuff): Update.
2764 (get_thread_context,set_thread_context,i386_thread_added): Update.
2765 (the_low_target): Add entries for insert_point,
2766 remove_point, stopped_by_watchpoint, stopped_data_address.
2767 * win32-low.c (win32_insert_watchpoint): New function.
2768 (win32_remove_watchpoint): New function.
2769 (win32_stopped_by_watchpoint): New function.
2770 (win32_stopped_data_address): New function.
2771 (win32_target_ops): Add entries for insert_watchpoint,
2772 remove_watchpoint, stopped_by_watchpoint, stopped_data_address.
2773 * win32-low.h (win32_target_ops): New members insert_point,
2774 remove_point, stopped_by_watchpoint, stopped_data_address.
2775
d993e290
PA
27762009-06-25 Pedro Alves <pedro@codesourcery.com>
2777
2778 * server.c (process_serial_event): Re-return unsupported, not
2779 error, if the type isn't recognized. Re-allow supporting only
2780 insert or remove packets. Also call require_running for
2781 breakpoints. Add missing break statement to default case. Tidy.
2782 * target.h (struct target_ops): Rename insert_watchpoint to
2783 insert_point, and remove_watchpoint to remove_point.
2784
2785 * linux-low.h (struct linux_target_ops): Likewise.
2786 * linux-low.c (linux_insert_watchpoint): Rename to ...
2787 (linux_insert_point): ... this. Adjust.
2788 (linux_remove_watchpoint): Rename to ...
2789 (linux_remove_point): ... this. Adjust.
2790 (linux_target_ops): Adjust.
2791 * linux-crisv32-low.c (cris_insert_watchpoint): Rename to ...
2792 (cris_insert_point): ... this.
2793 (cris_remove_watchpoint): Rename to ...
2794 (cris_remove_point): ... this.
2795 (the_low_target): Adjust.
2796
0f54c268
PM
27972009-06-24 Pierre Muller <muller@ics.u-strasbg.fr>
2798
2799 * server.c (handle_v_kill): Pass signal_pid to
2800 kill_inferior if multi_process is zero.
2801
c6314022
AR
28022009-06-23 Aleksandar Ristovski <aristovski@qnx.com>
2803
2804 * server.c (process_serial_event): Add support for Z0 and Z1 packet.
2805 * target.h (target_ops): Comment for *_watchpoint to make it clear
2806 the functions can get types '0' and '1'.
2807
4463ce24
AR
28082009-06-22 Aleksandar Ristovski <aristovski@qnx.com>
2809
2810 * linux-low.c (usr_fetch_inferior_registers): Remove check for regno 0.
2811 * proc-service.c (ps_lgetregs): Pass -1 to fetch all registers.
2812 * regcache.c (get_regcache): Likewise.
2813 * spu-low.c (spu_fetch_registers): Remove 0 to -1 conversion.
2814 * win32-low.c (child_fetch_inferior_registers): Remove check for
2815 regno 0.
2816
cf8fd78b
PA
28172009-06-19 Aleksandar Ristovski <aristovski@qnx.com>
2818 Pedro Alves <pedro@codesourcery.com>
2819
2820 * target.h (struct target_ops) <supports_multi_process>: New
2821 callback.
2822 (target_supports_multi_process): New.
2823 * server.c (handle_query): Even if GDB reports support, only
2824 enable multi-process if the target also supports it. Report
2825 multi-process support only if the target backend supports it.
2826 * linux-low.c (linux_supports_multi_process): New function.
2827 (linux_target_ops): Install it as target_supports_multi_process
2828 callback.
2829
47c0c975
DE
28302009-05-24 Doug Evans <dje@google.com>
2831
e09875d4
DE
2832 Global renaming of find_thread_pid to find_thread_ptid.
2833 * server.h (find_thread_ptid): Renamed from find_thread_pid.
2834 * inferiors.c (find_thread_ptid): Renamed from find_thread_pid.
2835 All callers updated.
2836
e27d73f6
DE
2837 * linux-low.c (handle_extended_wait): Use linux_resume_one_lwp
2838 to resume the newly created thread, don't call ptrace (PTRACE_CONT)
2839 directly.
2840
47c0c975
DE
2841 * linux-low.c (get_stop_pc): Print pc if debug_threads.
2842 (check_removed_breakpoint, linux_wait_for_lwp): Ditto.
2843 (linux_resume_one_lwp): Ditto.
2844
2acc282a
DE
28452009-05-23 Doug Evans <dje@google.com>
2846
2847 * linux-low.c (linux_resume_one_lwp): Change type of first arg
2848 from struct inferior_list_entry * to struct lwp_info *.
2849 All callers updated.
2850
9f1036c1
DE
28512009-05-13 Doug Evans <dje@google.com>
2852
2853 * linux-x86-low.c: Don't include assert.h.
2854 (x86_siginfo_fixup): Use fatal, not assert.
2855 (x86_arch_setup): Fix comment.
2856
d0722149
DE
28572009-05-12 Doug Evans <dje@google.com>
2858
2859 Biarch support for i386/amd64 gdbserver.
2860 * Makefile.in (SFILES): Remove linux-i386-low.c, linux-x86-64-low.c.
2861 Add linux-x86-low.c.
2862 (linux-i386-low.o, linux-x86-64-low.o): Delete.
2863 (linux-x86-low.o): Add.
2864 * linux-x86-64-low.c: Delete.
2865 * linux-i386-low.c: Delete.
2866 * linux-x86-low.c: New file.
2867 * configure.srv (i?86-linux srv_tgtobj): Replace linux-i386-low.o with
2868 linux-x86-low.o.
2869 (x86_64-linux srv_tgtobj): Replace linux-x86-64-low.o with
2870 linux-x86-low.o.
2871 (x86_64-linux srv_regobj): Add reg-i386-linux.o.
2872 * linux-low.c: Include ansidecl.h, elf/common.h, elf/external.h.
2873 (linux_child_pid_to_exec_file): New function.
2874 (elf_64_header_p, elf_64_file_p): New functions.
2875 (siginfo_fixup): New function.
2876 (linux_xfer_siginfo): New local inf_siginfo. Call siginfo_fixup to
2877 give target a chance to convert layout.
2878 * linux-low.h (linux_target_ops): New member siginfo_fixup.
2879 (linux_child_pid_to_exec_file, elf_64_file_p): Declare.
2880
fdeb2a12
DE
28812009-05-07 Doug Evans <dje@google.com>
2882
2883 * linux-low.c (regsets_fetch_inferior_registers): Fix memory leak.
2884 (regsets_store_inferior_registers): Ditto.
2885
a6dbe5df
PA
28862009-05-06 Pedro Alves <pedro@codesourcery.com>
2887
2888 PR server/10048
2889
2890 * linux-low.c (must_set_ptrace_flags): Delete.
2891 (linux_create_inferior): Set `lwp->must_set_ptrace_flags' instead
2892 of the global.
2893 (linux_attach_lwp_1): Don't set PTRACE_SETOPTIONS here. Set
2894 `lwp->must_set_ptrace_flags' instead.
ba42693b 2895 (linux_wait_for_event_1): Set ptrace options here.
a6dbe5df
PA
2896 (linux_wait_1): ... not here.
2897
5091eb23
DE
28982009-04-30 Doug Evans <dje@google.com>
2899
9f767825
DE
2900 * inferiors.c (started_inferior_callback): New function.
2901 (attached_inferior_callback): New function.
2902 (have_started_inferiors_p, have_attached_inferiors_p): New functions.
2903 * server.c (print_started_pid, print_attached_pid): New functions.
2904 (detach_or_kill_for_exit): New function.
2905 (main): Call it instead of for_each_inferior (kill_inferior_callback).
2906 * server.h (have_started_inferiors_p): Declare.
2907 (have_attached_inferiors_p): Declare.
2908
5091eb23
DE
2909 * inferiors.c (remove_process): Fix memory leak, free process.
2910 * linux-low.c (linux_remove_process): New function.
2911 (linux_kill): Call it instead of remove_process.
2912 (linux_detach, linux_wait_1): Ditto.
2913
155c8968
PA
29142009-04-19 Danny Backx <dannybackx@users.sourceforge.net>
2915
2916 * configure.srv: Add x86 Windows CE target.
2917
7fe519cb
UW
29182009-04-03 Ulrich Weigand <uweigand@de.ibm.com>
2919
2920 * inferiors.c (get_thread_process): Make global.
2921 * server.h (get_thread_process): Add prototype.
2922 * thread-db.c (find_one_thread): Use get_thread_process
2923 instead of current_process.
2924 (thread_db_get_tls_address): Do not crash if called when
2925 thread layer is not yet initialized.
2926
5472f405
UW
29272009-04-03 Ulrich Weigand <uweigand@de.ibm.com>
2928
2929 * remote-utils.c (prepare_resume_reply): Null-terminate packet.
2930 * spu-low.c (current_tid): Rename to ...
2931 (current_ptid): ... this.
2932 (fetch_ppc_register, fetch_ppc_memory, store_ppc_memory,
2933 spu_proc_xfer_spu, spu_resume, spu_request_interrupt): Use
2934 ptid_get_lwp (current_ptid) instead of current_tid.
2935 (spu_kill, spu_detach, spu_join, spu_wait): Use pid argument
2936 instead of current_tid. Use find_process_pid to verify pid
2937 argument is valid. Pass proper argument to remove_process.
2938 (spu_thread_alive): Compare current_ptid instead of current_tid.
2939 (spu_resume): Likewise.
2940
55ac2b99
PA
29412009-04-02 Pedro Alves <pedro@codesourcery.com>
2942
2943 * linux-low.c (usr_store_inferior_registers): Declare local `pid'
2944 variable.
2945
95954743
PA
29462009-04-01 Pedro Alves <pedro@codesourcery.com>
2947
2948 Implement the multiprocess extensions, and add linux multiprocess
2949 support.
2950
2951 * server.h (ULONGEST): Declare.
2952 (struct ptid, ptid_t): New.
2953 (minus_one_ptid, null_ptid): Declare.
2954 (ptid_build, pid_to_ptid, ptid_get_pid, ptid_get_lwp)
2955 (ptid_get_tid, ptid_equal, ptid_is_pid): Declare.
2956 (struct inferior_list_entry): Change `id' type from unsigned from
2957 to ptid_t.
2958 (struct sym_cache, struct breakpoint, struct
2959 process_info_private): Forward declare.
2960 (struct process_info): Declare.
2961 (current_process): Declare.
2962 (all_processes): Declare.
2963 (initialize_inferiors): Declare.
2964 (add_thread): Adjust to use ptid_t.
2965 (thread_id_to_gdb_id, thread_to_gdb_id, gdb_id_to_thread_id): Ditto.
2966 (add_process, remove_process, find_thread_pid): Declare.
2967 (find_inferior_id): Adjust to use ptid_t.
2968 (cont_thread, general_thread, step_thread): Change type to ptid_t.
2969 (multi_process): Declare.
2970 (push_event): Adjust to use ptid_t.
2971 (read_ptid, write_ptid): Declare.
2972 (prepare_resume_reply): Adjust to use ptid_t.
2973 (clear_symbol_cache): Declare.
2974 * inferiors.c (all_processes): New.
2975 (null_ptid, minus_one_ptid): New.
2976 (ptid_build, pid_to_ptid, ptid_get_pid, ptid_get_lwp)
2977 (ptid_get_tid, ptid_equal, ptid_is_pid): New.
2978 (add_thread): Change unsigned long to ptid. Remove gdb_id
2979 parameter. Adjust.
2980 (thread_id_to_gdb_id, thread_to_gdb_id): Change unsigned long to ptid.
2981 (gdb_id_to_thread): Rename to ...
2982 (find_thread_pid): ... this. Change unsigned long to ptid.
2983 (gdb_id_to_thread_id, find_inferior_id): Change unsigned long to ptid.
2984 (loaded_dll, pull_pid_from_list): Adjust.
2985 (add_process, remove_process, find_process_pid)
2986 (get_thread_process, current_process, initialize_inferiors): New.
2987 * target.h (struct thread_resume) <thread>: Change type to ptid_t.
2988 (struct target_waitstatus) <related_pid>: Ditto.
2989 (struct target_ops) <kill, detach>: Add `pid' argument. Change
2990 return type to int.
2991 (struct target_ops) <join>: Add `pid' argument.
2992 (struct target_ops) <thread_alive>: Change pid's type to ptid_t.
2993 (struct target_ops) <wait>: Add `ptid' field. Change return type
2994 to ptid.
2995 (kill_inferior, detach_inferior, join_inferior): Add `pid' argument.
2996 (mywait): Add `ptid' argument. Change return type to ptid_t.
2997 (target_pid_to_str): Declare.
2998 * target.c (set_desired_inferior): Adjust to use ptids.
2999 (mywait): Add new `ptid' argument. Adjust.
3000 (target_pid_to_str): New.
3001 * mem-break.h (free_all_breakpoints): Declare.
3002 * mem-break.c (breakpoints): Delelete.
3003 (set_breakpoint_at, delete_breakpoint, find_breakpoint_at)
3004 (check_mem_read, check_mem_write, delete_all_breakpoints): Adjust
3005 to use per-process breakpoint list.
3006 (free_all_breakpoints): New.
3007 * remote-utils.c (struct sym_cache) <name>: Drop `const'.
3008 (symbol_cache, all_symbols_looked_up): Delete.
3009 (hexchars): New.
3010 (ishex, unpack_varlen_hex, write_ptid, hex_or_minus_one,
3011 read_ptid): New.
3012 (prepare_resume_reply): Change ptid argument's type from unsigned
3013 long to ptid_t. Adjust. Implement W;process and X;process.
3014 (free_sym_cache, clear_symbol_cache): New.
3015 (look_up_one_symbol): Adjust to per-process symbol cache. *
3016 * server.c (cont_thread, general_thread, step_thread): Change type
3017 to ptid_t.
3018 (attached): Delete.
3019 (multi_process): New.
3020 (last_ptid): Change type to ptid_t.
3021 (struct vstop_notif) <ptid>: Change type to ptid_t.
3022 (queue_stop_reply, push_event): Change `ptid' argument's type to
3023 ptid_t.
3024 (discard_queued_stop_replies): Add `pid' argument.
3025 (start_inferior): Adjust to use ptids. Adjust to mywait interface
3026 changes. Don't reference the `attached' global.
3027 (attach_inferior): Adjust to mywait interface changes.
3028 (handle_query): Adjust to use ptids. Parse GDB's qSupported
3029 features. Handle and report "multiprocess+". Handle
3030 "qAttached:PID".
3031 (handle_v_cont): Adjust to use ptids. Adjust to mywait interface
3032 changes.
3033 (handle_v_kill): New.
3034 (handle_v_stopped): Adjust to use target_pid_to_str.
3035 (handle_v_requests): Allow multiple attaches and runs when
3036 multiprocess extensions are in effect. Handle "vKill".
3037 (myresume): Adjust to use ptids.
3038 (queue_stop_reply_callback): Add `arg' parameter. Handle it.
3039 (handle_status): Adjust to discard_queued_stop_replies interface
3040 change.
3041 (first_thread_of, kill_inferior_callback)
3042 (detach_or_kill_inferior_callback, join_inferiors_callback): New.
3043 (main): Call initialize_inferiors. Adjust to use ptids, killing
3044 and detaching from all inferiors. Handle multiprocess packet
3045 variants.
3046 * linux-low.h: Include gdb_proc_service.h.
3047 (struct process_info_private): New.
3048 (struct linux_target_ops) <pid_of>: Use ptid_get_pid.
3049 <lwpid_of>: Use ptid_get_lwp.
3050 (get_lwp_thread): Adjust.
3051 (struct lwp_info): Add `dead' member.
3052 (find_lwp_pid): Declare.
3053 * linux-low.c (thread_db_active): Delete.
3054 (new_inferior): Adjust comment.
3055 (inferior_pid): Delete.
3056 (linux_add_process): New.
3057 (handle_extended_wait): Adjust.
3058 (add_lwp): Change unsigned long to ptid.
3059 (linux_create_inferior): Add process to processes table. Adjust
3060 to use ptids. Don't set new_inferior here.
3061 (linux_attach_lwp): Rename to ...
3062 (linux_attach_lwp_1): ... this. Add `initial' argument. Handle
3063 it. Adjust to use ptids.
3064 (linux_attach_lwp): New.
3065 (linux_attach): Add process to processes table. Don't set
3066 new_inferior here.
3067 (struct counter): New.
3068 (second_thread_of_pid_p, last_thread_of_process_p): New.
3069 (linux_kill_one_lwp): Add `args' parameter. Handle it. Adjust to
3070 multiple processes.
3071 (linux_kill): Add `pid' argument. Handle it. Adjust to multiple
3072 processes. Remove process from process table.
3073 (linux_detach_one_lwp): Add `args' parameter. Handle it. Adjust
3074 to multiple processes.
3075 (any_thread_of): New.
3076 (linux_detach): Add `pid' argument, and handle it. Remove process
3077 from processes table.
3078 (linux_join): Add `pid' argument. Handle it.
3079 (linux_thread_alive): Change unsighed long argument to ptid_t.
3080 Consider dead lwps as not being alive.
3081 (status_pending_p): Rename `dummy' argument to `arg'. Filter out
3082 threads we're not interested in.
3083 (same_lwp, find_lwp_pid): New.
3084 (linux_wait_for_lwp): Change `pid' argument's type from int to
3085 ptid_t. Adjust.
3086 (linux_wait_for_event): Rename to ...
3087 (linux_wait_for_event_1): ... this. Change `pid' argument's type
3088 from int to ptid_t. Adjust.
3089 (linux_wait_for_event): New.
3090 (linux_wait_1): Add `ptid' argument. Change return type to
3091 ptid_t. Adjust. Use last_thread_of_process_p. Remove processes
3092 that exit from the process table.
3093 (linux_wait): Add `ptid' argument. Change return type to ptid_t.
3094 Adjust.
3095 (mark_lwp_dead): New.
3096 (wait_for_sigstop): Adjust to use ptids. If a process exits while
3097 stopping all threads, mark its main lwp as dead.
3098 (linux_set_resume_request, linux_resume_one_thread): Adjust to use
3099 ptids.
3100 (fetch_register, usr_store_inferior_registers)
3101 (regsets_fetch_inferior_registers)
3102 (regsets_store_inferior_registers, linux_read_memory)
3103 (linux_write_memory): Inline `inferior_pid'.
3104 (linux_look_up_symbols): Adjust to use per-process
3105 `thread_db_active'.
3106 (linux_request_interrupt): Adjust to use ptids.
3107 (linux_read_auxv): Inline `inferior_pid'.
3108 (initialize_low): Don't reference thread_db_active.
3109 * gdb_proc_service.h (struct ps_prochandle) <pid>: Remove.
3110 * proc-service.c (ps_lgetregs): Use find_lwp_pid.
3111 (ps_getpid): Return the pid of the current inferior.
3112 * thread-db.c (proc_handle, thread_agent): Delete.
3113 (thread_db_create_event, thread_db_enable_reporting): Adjust to
3114 per-process data.
3115 (find_one_thread): Change argument type to ptid_t. Adjust to
3116 per-process data.
3117 (maybe_attach_thread): Adjust to per-process data and ptids.
3118 (thread_db_find_new_threads): Ditto.
3119 (thread_db_init): Ditto.
3120 * spu-low.c (spu_create_inferior, spu_attach): Add process to
3121 processes table. Adjust to use ptids.
3122 (spu_kill, spu_detach): Adjust interface. Remove process from
3123 processes table.
3124 (spu_join, spu_thread_alive): Adjust interface.
3125 (spu_wait): Adjust interface. Remove process from processes
3126 table. Adjust to use ptids.
3127 * win32-low.c (current_inferior_tid): Delete.
3128 (current_inferior_ptid): New.
3129 (debug_event_ptid): New.
3130 (thread_rec): Take a ptid. Adjust.
3131 (child_add_thread): Add `pid' argument. Adjust to use ptids.
3132 (child_delete_thread): Ditto.
3133 (do_initial_child_stuff): Add `attached' argument. Add process to
3134 processes table.
3135 (child_fetch_inferior_registers, child_store_inferior_registers):
3136 Adjust.
3137 (win32_create_inferior): Pass 0 to do_initial_child_stuff.
3138 (win32_attach): Pass 1 to do_initial_child_stuff.
3139 (win32_kill): Adjust interface. Remove process from processes
3140 table.
3141 (win32_detach): Ditto.
3142 (win32_join): Adjust interface.
3143 (win32_thread_alive): Take a ptid.
3144 (win32_resume): Adjust to use ptids.
3145 (get_child_debug_event): Ditto.
3146 (win32_wait): Adjust interface. Remove exiting process from
3147 processes table.
3148
bd99dc85
PA
31492009-04-01 Pedro Alves <pedro@codesourcery.com>
3150
3151 Non-stop mode support.
3152
3153 * server.h (non_stop): Declare.
3154 (gdb_client_data, handler_func): Declare.
3155 (delete_file_handler, add_file_handler, start_event_loop):
3156 Declare.
3157 (handle_serial_event, handle_target_event, push_event)
3158 (putpkt_notif): Declare.
3159 * target.h (enum resume_kind): New.
3160 (struct thread_resume): Replace `step' field by `kind' field.
3161 (TARGET_WNOHANG): Define.
3162 (struct target_ops) <wait>: Add `options' argument.
3163 <supports_non_stop, async, start_non_stop>: New fields.
3164 (target_supports_non_stop, target_async): New.
3165 (start_non_stop): Declare.
3166 (mywait): Add `options' argument.
3167 * target.c (mywait): Add `options' argument. Print child exit
3168 notifications here.
3169 (start_non_stop): New.
3170 * server.c (non_stop, own_buf, mem_buf): New globals.
3171 (struct vstop_notif): New.
3172 (notif_queue): New global.
3173 (queue_stop_reply, push_event, discard_queued_stop_replies)
3174 (send_next_stop_reply): New.
3175 (start_inferior): Adjust to use resume_kind. Adjust to mywait
3176 interface changes.
3177 (attach_inferior): In non-stop mode, don't wait for the target
3178 here.
3179 (handle_general_set): Handle QNonStop.
3180 (handle_query): When handling qC, return the current general
3181 thread, instead of the first thread of the list.
3182 (handle_query): If the backend supports non-stop mode, include
3183 QNonStop+ in the qSupported query response.
3184 (handle_v_cont): Adjust to use resume_kind. Handle resume_stop
3185 and non-stop mode.
3186 (handle_v_attach, handle_v_run): Handle non-stop mode.
3187 (handle_v_stopped): New.
3188 (handle_v_requests): Report support for vCont;t. Handle vStopped.
3189 (myresume): Adjust to use resume_kind. Handle non-stop.
3190 (queue_stop_reply_callback): New.
3191 (handle_status): Handle non-stop mode.
3192 (main): Clear non_stop flag on reconnection. Use the event-loop.
3193 Refactor serial protocol handling from here ...
3194 (process_serial_event): ... to this new function. When GDB
3195 selects any thread, select one here. In non-stop mode, wait until
3196 GDB acks all pending events before exiting.
3197 (handle_serial_event, handle_target_event): New.
3198 * remote-utils.c (remote_open): Install remote_desc in the event
3199 loop.
3200 (remote_close): Remove remote_desc from the event loop.
3201 (putpkt_binary): Rename to...
3202 (putpkt_binary_1): ... this. Add `is_notic' argument. Handle it.
3203 (putpkt_binary): New as wrapper around putpkt_binary_1.
3204 (putpkt_notif): New.
3205 (prepare_resume_reply): In non-stop mode, don't change the
3206 general_thread.
3207 * event-loop.c: New.
3208 * Makefile.in (OBJ): Add event-loop.o.
3209 (event-loop.o): New rule.
3210
3211 * linux-low.h (pid_of): Moved here.
3212 (lwpid_of): New.
3213 (get_lwp_thread): Use lwpid_of.
3214 (struct lwp_info): Delete `lwpid' field. Add `suspended' field.
3215 * linux-low.c (pid_of): Delete.
3216 (inferior_pid): Use lwpid_of.
3217 (linux_event_pipe): New.
3218 (target_is_async_p): New.
3219 (delete_lwp): New.
3220 (handle_extended_wait): Use lwpid_of.
3221 (add_lwp): Don't set lwpid field.
3222 (linux_attach_lwp): Adjust debug output. Use lwpid_of.
3223 (linux_kill_one_lwp): If killing a running lwp, stop it first.
3224 Use lwpid_of. Adjust to linux_wait_for_event interface changes.
3225 (linux_detach_one_lwp): If detaching from a running lwp, stop it
3226 first. Adjust to linux_wait_for_event interface changes. Use
3227 lwpid_of.
3228 (linux_detach): Don't delete the main lwp here.
3229 (linux_join): Use my_waitpid. Avoid signal_pid. Use lwpid_of.
3230 (status_pending_p): Don't consider explicitly suspended lwps.
3231 (linux_wait_for_lwp): Take an integer pid instead of a lwp_info
3232 pointer. Add OPTIONS argument. Change return type to int. Use
3233 my_waitpid instead of sleeping. Handle WNOHANG. Use lwpid_of.
3234 (linux_wait_for_event): Take an integer pid instead of a lwp_info
3235 pointer. Add status pointer argument. Return a pid instead of a
3236 status. Use lwpid_of. Adjust to linux_wait_for_lwp interface
3237 changes. In non-stop mode, don't switch to a random thread.
3238 (linux_wait): Rename to...
3239 (linux_wait_1): ... this. Add target_options argument, and handle
3240 it. Adjust to use resume_kind. Use lwpid_of. In non-stop mode,
3241 don't handle the continue thread. Handle TARGET_WNOHANG. Merge
3242 clean exit and signal exit code. Don't stop all threads in
3243 non-stop mode. In all-stop mode, only stop all threads when
3244 reporting a stop to GDB. Handle explicit thread stop requests.
3245 (async_file_flush, async_file_mark): New.
3246 (linux_wait): New.
3247 (send_sigstop): Use lwpid_of.
3248 (wait_for_sigstop): Use lwpid_of. Adjust to linux_wait_for_event
3249 interface changes. In non-stop mode, don't switch to a random
3250 thread.
3251 (linux_resume_one_lwp): Use lwpid_of.
3252 (linux_continue_one_thread, linux_queue_one_thread): Merge into ...
3253 (linux_resume_one_thread): ... this. Handle resume_stop. In
3254 non-stop mode, don't look for pending flag in all threads.
3255 (resume_status_pending_p): Don't consider explicitly suspended
3256 threads.
3257 (my_waitpid): Reimplement. Emulate __WALL.
3258 (linux_request_interrupt, linux_read_offsets, linux_xfer_siginfo):
3259 Use lwpid_of.
3260 (sigchld_handler, linux_supports_non_stop, linux_async)
3261 (linux_start_non_stop): New.
3262 (linux_target_ops): Register linux_supports_non_stop, linux_async
3263 and linux_start_non_stop.
3264 (initialize_low): Install SIGCHLD handler.
3265 * thread-db.c (thread_db_create_event, find_one_thread)
3266 (thread_db_get_tls_address): Use lwpid_of.
3267 * win32-low.c (win32_detach): Adjust to use resume_kind.
3268 (win32_wait): Add `options' argument.
3269 * spu-low.c (spu_resume): Adjust to use resume_kind.
3270 (spu_wait): Add `options' argument.
3271
5b1c542e
PA
32722009-04-01 Pedro Alves <pedro@codesourcery.com>
3273
3274 Decouple target code from remote protocol.
3275
3276 * target.h (enum target_waitkind): New.
3277 (struct target_waitstatus): New.
3278 (struct target_ops) <wait>: Return an unsigned long. Take a
3279 target_waitstatus pointer instead of a char pointer.
3280 (mywait): Likewise.
3281 * target.c (mywait): Change prototype to return an unsigned long.
3282 Take a target_waitstatus pointer instead of a char pointer. Adjust.
3283 * server.h (thread_from_wait, old_thread_from_wait): Delete
3284 declarations.
3285 (prepare_resume_reply): Change prototype to take a
3286 target_waitstatus.
3287 * server.c (thread_from_wait, old_thread_from_wait): Delete.
3288 (last_status, last_ptid): New.
3289 (start_inferior): Remove "statusptr" argument. Adjust. Return a
3290 pid instead of a signal.
3291 (attach_inferior): Remove "status" and "signal" parameters.
3292 Adjust.
3293 (handle_query): For qGetTLSAddr, parse the thread id with strtol,
3294 not as an address.
3295 (handle_v_cont, handle_v_attach, handle_v_run, handle_v_kill)
3296 (handle_v_requests, myresume): Remove "status" and "signal"
3297 parameters. Adjust.
3298 (handle_status): New.
3299 (main): Delete local `status'. Adjust.
3300 * remote-utils.c: Include target.h.
3301 (prepare_resume_reply): Change prototype to take a
3302 target_waitstatus. Adjust.
3303
3304 * linux-low.c (linux_wait): Adjust to new target_ops->wait
3305 interface.
3306 * spu-low.c (spu_wait): Adjust.
3307 * win32-low.c (enum target_waitkind, struct target_waitstatus):
3308 Delete.
3309 (win32_wait): Adjust.
3310
2bd7c093
PA
33112009-04-01 Pedro Alves <pedro@codesourcery.com>
3312
3313 * target.h (struct thread_resume): Delete leave_stopped member.
3314 (struct target_ops): Add a `n' argument to the `resume' callback.
3315 * server.c (start_inferior): Adjust.
3316 (handle_v_cont, myresume): Adjust.
3317 * linux-low.c (check_removed_breakpoint): Adjust to resume
3318 interface change, and to removed leave_stopped field.
3319 (resume_ptr): Delete.
3320 (struct thread_resume_array): New.
3321 (linux_set_resume_request): Add new `arg' parameter. Adjust to
3322 resume interface change.
3323 (linux_continue_one_thread, linux_queue_one_thread)
3324 (resume_status_pending_p): Check if the resume field is NULL
3325 instead of checking the leave_stopped member.
3326 (linux_resume): Adjust to the target resume interface change.
3327 * spu-low.c (spu_resume): Adjust to the target resume interface
3328 change.
3329 * win32-low.c (win32_detach, win32_resume): Ditto.
3330
c35fafde
PA
33312009-04-01 Pedro Alves <pedro@codesourcery.com>
3332
3333 * linux-low.c (linux_wait_for_event): Don't clear the `stepping'
3334 flag.
3335 (wait_for_sigstop): Don't leave a finished single-step SIGTRAP
3336 pending.
3337 (linux_continue_one_thread): Only preserve the stepping flag if
3338 there's a pending breakpoint.
3339
0a59d50b
PA
33402009-03-31 Pedro Alves <pedro@codesourcery.com>
3341
3342 * server.c (main): After the inferior having exited, call
3343 remote_close before exiting gdbserver.
3344
f04c6d38
TJB
33452009-03-25 Thiago Jung Bauermann <bauerman@br.ibm.com>
3346
3347 Fix size of FPSCR in Power 7 processors.
3348 * linux-ppc-low.c (PPC_FEATURE_ARCH_2_05): Remove #define.
3349 (PPC_FEATURE_HAS_DFP): New #define.
3350 (ppc_arch_setup): Check for DFP feature instead of ISA 2.05 to decide on
3351 size of the FPSCR.
3352
78e5cee6
PA
33532009-03-23 Pedro Alves <pedro@codesourcery.com>
3354
3355 * server.c (handle_query) Whitespace and formatting.
3356
1b3f6016
PA
33572009-03-22 Pedro Alves <pedro@codesourcery.com>
3358
3359 * i387-fp.c, linux-arm-low.c, linux-cris-low.c,
3360 linux-crisv32-low.c, linux-i386-low.c, linux-low.c,
3361 linux-mips-low.c, linux-s390-low.c, linux-sparc-low.c,
3362 linux-x86-64-low.c, linux-xtensa-low.c, proc-service.c,
3363 regcache.c, remote-utils.c, server.c, spu-low.c, target.h,
3364 thread-db.c, win32-low.c, xtensa-xtregs.c, gdbreplay.c,
3365 Makefile.in, configure.ac: Fix whitespace throughout.
3366 * configure: Regenerate.
3367
a07b2135
PA
33682009-03-22 Pedro Alves <pedro@codesourcery.com>
3369
3370 * inferiors.c (find_inferior): Make it safe for the callback
3371 function to delete the currently iterated inferior.
3372
67cc2626
PA
33732009-03-22 Pedro Alves <pedro@codesourcery.com>
3374
3375 * Makefile.in (linuw_low_h): Move higher.
3376 (thread-db.o): Depend on $(linux_low_h).
3377
54a0b537
PA
33782009-03-17 Pedro Alves <pedro@codesourcery.com>
3379
3380 Rename "process" to "lwp" throughout.
3381
3382 * linux-low.c (all_processes): Rename to...
3383 (all_lwps): ... this.
3384 (inferior_pid, handle_extended_wait, get_stop_pc): Adjust.
3385 (add_process): Rename to ...
3386 (add_lwp): ... this. Adjust.
3387 (linux_create_inferior): Adjust.
3388 (linux_attach_lwp): Adjust.
3389 (linux_attach): Adjust.
3390 (linux_kill_one_process): Rename to ...
3391 (linux_kill_one_lwp): ... this. Adjust.
3392 (linux_kill): Adjust.
3393 (linux_detach_one_process): Rename to ...
3394 (linux_detach_one_lwp): ... this. Adjust.
3395 (linux_detach): Adjust.
3396 (check_removed_breakpoint): Adjust.
3397 (status_pending_p): Adjust.
3398 (linux_wait_for_process): Rename to ...
3399 (linux_wait_for_lwp): ... this. Adjust.
3400 (linux_wait_for_event): Adjust.
3401 (send_sigstop): Adjust.
3402 (wait_for_sigstop): Adjust.
3403 (stop_all_processes): Rename to ...
3404 (stop_all_lwps): ... this.
3405 (linux_resume_one_process): Rename to ...
3406 (linux_resume_one_lwp): ... this. Adjust.
3407 (linux_set_resume_request, linux_continue_one_thread)
3408 (linux_queue_one_thread, resume_status_pending_p)
3409 (usr_store_inferior_registers, regsets_store_inferior_registers)
3410 (linux_request_interrupt, linux_read_offsets, linux_xfer_siginfo):
3411 Adjust.
3412 * linux-low.h (get_process): Rename to ...
3413 (get_lwp): ... this. Adjust.
3414 (get_thread_process): Rename to ...
3415 (get_thread_lwp): ... this. Adjust.
3416 (get_process_thread): Rename to ...
3417 (get_lwp_thread): ... this. Adjust.
3418 (struct process_info): Rename to ...
3419 (struct lwp_info): ... this.
3420 (all_processes): Rename to ...
3421 (all_lwps): ... this.
3422 * proc-service.c (ps_lgetregs): Adjust.
3423 * thread-db.c (thread_db_create_event, find_one_thread)
3424 (maybe_attach_thread, thread_db_get_tls_address): Adjust.
3425
0b16c5cf
PA
34262009-03-14 Pedro Alves <pedro@codesourcery.com>
3427
3428 * server.c (handle_query): Handle "qAttached".
3429
32de4b9d
NS
34302009-03-13 Nathan Sidwell <nathan@codesourcery.com>
3431
3432 * Makefile.in, hostio-errno.c, errno.c, xtensa-xtregs.c: Change to
3433 GPLv3, update license URL.
3434
2aecd87f
DE
34352009-03-01 Doug Evans <dje@google.com>
3436
93efd302 3437 * Makefile.in (INCLUDE_CFLAGS): Add -I$(srcdir)/../common.
2aecd87f
DE
3438 (server_h): Add gdb_signals.h.
3439 (signals.o): Update.
3440 * server.h (target_signal_from_host,target_signal_to_host_p)
3441 (target_signal_to_host,target_signal_to_name): Moved to gdb_signals.h.
3442
86b1f9c5
PM
34432009-02-14 Pierre Muller <muller@ics.u-strasbg.fr>
3444
3445 * remote-utils.c (getpkt): Also generate remote-debug
3446 information if noack_mode is set.
3447
4aa995e1
PA
34482009-02-06 Pedro Alves <pedro@codesourcery.com>
3449
3450 * server.c (handle_query): Report qXfer:siginfo:read and
3451 qXfer:siginfo:write as supported and handle them.
3452 * target.h (struct target_ops) <qxfer_siginfo>: New field.
3453 * linux-low.c (linux_xfer_siginfo): New.
3454 (linux_target_ops): Set it.
3455
62709adf
PA
34562009-01-26 Pedro Alves <pedro@codesourcery.com>
3457
3458 * server.c (gdbserver_usage): Mention --remote-debug.
3459 (main): Accept '--remote-debug' switch.
3460
aef93bd7
DE
34612009-01-18 Doug Evans <dje@google.com>
3462
3463 * regcache.c (new_register_cache): No need to check result of xcalloc.
3464 * server.c (handle_search_memory): Back out calls to xmalloc,
3465 result is checked and error is returned to user upon failure.
3466 (handle_query): Ditto. Add more checks for result of malloc.
3467 (handle_v_cont): Check result of malloc, report error back to
3468 user upon failure.
3469 (handle_v_run): Ditto. Call freeargv.
3470 * server.h (freeargv): Declare.
3471 * utils.c (freeargv): New fn.
3472
54363045
DE
34732009-01-15 Doug Evans <dje@google.com>
3474
f626972c
DE
3475 * gdbreplay.c (perror_with_name): Make arg const char *.
3476 * server.h (target_signal_to_name): Make return type const char *.
0842e787 3477 * thread-db.c (thread_db_err_str): Make return type const char *.
f626972c 3478 * utils.c (perror_with_name): Make arg const char *.
54363045 3479
18aae699
PA
34802009-01-14 Pedro Alves <pedro@codesourcery.com>
3481
3482 * win32-low.c (get_child_debug_event): Issue a final DBG_CONTINUE
3483 when handling a EXIT_PROCESS_DEBUG_EVENT.
3484
ff703abe
JB
34852009-01-06 Joel Brobecker <brobecker@adacore.com>
3486
3487 * gdbreplay.c (gdbreplay_version): Update copyright year.
3488 * server.c (gdbserver_version): Likewise.
3489
f21cc1a2 34902009-01-05 Doug Evans <dje@google.com>
0e21c1ec
DE
3491
3492 * linux-low.c (linux_attach_lwp): Add some comments/fixmes.
f21cc1a2 3493 (handle_extended_wait): Improve comment.
0e21c1ec 3494
bca929d3
DE
34952008-12-13 Doug Evans <dje@google.com>
3496
3497 * utils.c (xmalloc,xcalloc,xstrdup): New fns.
3498 * server.h (ATTR_MALLOC): New macro.
3499 (xmalloc,xcalloc,xstrdup): Declare.
3500 * hostio.c: Replace malloc,calloc,strdup with xmalloc,xcalloc,xstrdup.
3501 * inferiors.c: Ditto.
3502 * linux-low.c: Ditto.
3503 * mem-break.c: Ditto.
3504 * regcache.c: Ditto.
3505 * remote-utils.c: Ditto.
3506 * server.c: Ditto.
3507 * target.c: Ditto.
3508 * win32-low.c: Ditto.
3509
97438e3f
DE
35102008-12-12 Doug Evans <dje@google.com>
3511
896c7fbb
DE
3512 * linux-low.c (linux_wait_for_process): Don't clobber current_inferior
3513 in debugging printf.
3514
97438e3f
DE
3515 * linux-low.c (handle_extended_wait): Simplify, use my_waitpid.
3516
e3b886f8
DE
35172008-12-09 Doug Evans <dje@google.com>
3518
3519 * linux-low.h (struct process_info): Delete member tid, unused.
3520 * thread-db.c (find_one_thread): Update.
3521 (maybe_attach_thread): Update.
3522
07e059b5
VP
35232008-12-02 Pedro Alves <pedro@codesourcery.com>
3524
889bf7c5
PA
3525 * target.h (struct target_ops): Add qxfer_osdata member.
3526 * linux-low.c: Include ctype.h and pwd.h and sys/types.h
3527 and dirent.h.
3528 (linux_qxfer_osdata): New functions.
3529 (linux_target_ops): Register linux_qxfer_osdata as qxfer_osdata
3530 callback.
3531 * server.c (handle_query): Handle "qXfer:osdata:read:".
3532 * remote-utils.c (buffer_grow, buffer_free, buffer_init, buffer_finish)
3533 (buffer_xml_printf): New functions.
3534 * server.h (struct buffer): New.
3535 (buffer_grow_str, buffer_grow_str0): New macros.
3536 (buffer_grow, buffer_free, buffer_init, buffer_finish)
3537 (buffer_xml_printf): Declare.
07e059b5 3538
4cab47ab
DE
35392008-11-24 Doug Evans <dje@google.com>
3540
3541 * Makefile.in (VERSION,DIST,LINT,LINTFLAGS): Delete, unused.
3542
f142445f
DJ
35432008-11-24 Daniel Jacobowitz <dan@codesourcery.com>
3544
3545 * server.c (handle_v_run): Always use the supplied argument list.
3546
d0107bb6 35472008-11-19 Bob Wilson <bob.wilson@acm.org>
889bf7c5 3548
d0107bb6
BW
3549 * xtensa-xtregs.c (XTENSA_ELF_XTREG_SIZE): Change to 4.
3550 (xtensa_regmap_table): Add entry for scompare1.
889bf7c5 3551
2c4ad781
TJB
35522008-11-18 Thiago Jung Bauermann <bauerman@br.ibm.com>
3553
3554 * Makefile.in (powerpc-isa205-32l.o, powerpc-isa205-32l.c,
3555 powerpc-isa205-altivec32l.o, powerpc-isa205-altivec32l.c,
3556 powerpc-isa205-vsx32l.o, powerpc-isa205-vsx32l.c,
3557 powerpc-isa205-64l.o, powerpc-isa205-64l.c,
3558 powerpc-isa205-altivec64l.o, powerpc-isa205-altivec64l.c,
3559 powerpc-isa205-vsx64l.o, powerpc-isa205-vsx64l.c): New targets.
3560 * configure.srv (powerpc*-*-linux*): Add ISA 2.05 object files and
3561 XML target descriptions.
3562 * linux-ppc-low.c (ppc_arch_setup): Init registers with 64-bit FPSCR
3563 when inferior is running on an ISA 2.05 or later processor. Add
3564 special case to return offset for full 64-bit slot of FPSCR when
3565 in 32-bits.
3566
dfb64f85
DJ
35672008-11-14 Daniel Gutson <dgutson@codesourcery.com>
3568
3569 * Makefile.in (SFILES, clean): Added sparc64 files.
3570 (reg-sparc64.o, reg-sparc64.c): New.
3571 * configure.srv (sparc*-*-linux*): New configuration.
3572 * linux-low.c (regsets_fetch_inferior_registers): Swap ptrace
3573 syscall arguments for SPARC.
3574 (regsets_store_inferior_registers): Likewise.
3575 * linux-sparc-low.c: New file.
3576
66b6e1dd
DE
35772008-10-21 Doug Evans <dje@google.com>
3578
3579 * Makefile.in (BFD_DIR,BFD,BFD_SRC,BFD_CFLAGS): Delete.
3580 (READLINE_DIR,READLINE_DEP): Delete.
3581 (INTERNAL_CFLAGS): Update.
3582 (LINTFLAGS): Update.
3583
9b710a42
PA
35842008-10-10 Pedro Alves <pedro@codesourcery.com>
3585
3586 * server.c (handle_v_run): If GDB didn't specify an argv, use the
3587 whole argv from the last run, not just argv[0].
3588
5822d809
PA
35892008-09-08 Pedro Alves <pedro@codesourcery.com>
3590
3591 * regcache.c (new_register_cache): Return NULL if the register
3592 cache size isn't known yet.
3593 (free_register_cache): Avoid dereferencing a NULL regcache.
3594
74aac56f
DJ
35952008-09-04 Daniel Jacobowitz <dan@codesourcery.com>
3596
3597 * configure.srv: Merge MIPS and MIPS64.
3598
400b20f5
MR
35992008-08-24 Maciej W. Rozycki <macro@linux-mips.org>
3600
3601 * Makefile.in (uninstall): Apply $(EXEEXT) too.
3602
677c5bb1
LM
36032008-08-18 Luis Machado <luisgpm@br.ibm.com>
3604
3605 * Makefile.in: Add required vsx dependencies.
3606
3607 * linux-ppc-low: Define PPC_FEATURE_HAS_VSX.
3608 Declare init_registers_powerpc_vsx32l.
3609 Declare init_registers_powerpc_vsx64l.
3610 Define PTRACE_GETVSXREGS and PTRACE_SETVSXREGS.
3611 (ppc_arch_setup): Check for VSX in hwcap.
3612 (ppc_fill_vsxregset): New function.
3613 (ppc_store_vsxregset): New function.
3614 Add new VSX entry in regset_info target_regsets.
3615
3616 * configure.srv: Add new VSX dependencies.
3617
a6f3e723
SL
36182008-08-12 Pedro Alves <pedro@codesourcery.com>
3619
3620 * remote-utils.c (noack_mode, transport_is_reliable): New globals.
3621 (remote_open): Set or clear transport_is_reliable.
3622 (putpkt_binary): Don't expect acks in noack mode.
3623 (getpkt): Don't send ack/nac in noack mode.
3624 * server.c (handle_general_set): Handle QStartNoAckMode.
3625 (handle_query): If connected by tcp pass QStartNoAckMode+ in
3626 qSupported.
3627 (main): Reset noack_mode on every connection.
3628 * server.h (noack_mode): Declare.
3629
a417dc56
RW
36302008-08-07 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3631
3632 * Makefile.in (GDBREPLAY_OBS): New variable.
3633 (gdbreplay$(EXEEXT)): Use it to avoid unportable $^.
3634
3221518c
UW
36352008-08-05 Ulrich Weigand <uweigand@de.ibm.com>
3636 Daniel Jacobowitz <dan@codesourcery.com>
3637
3638 * linux-low.c (linux_resume_one_process): Ignore ESRCH.
3639 (usr_store_inferior_registers): Likewise.
3640 (regsets_store_inferior_registers): Likewise.
3641
ec56be1b
PA
36422008-07-31 Rolf Jansen <rj@surtec.com>
3643 Pedro Alves <pedro@codesourcery.com>
3644
3645 * configure.ac: Check for memmem declaration.
3646 * server.c [HAVE_MALLOC_H]: Include malloc.h.
3647 (disable_packet_vCont, disable_packet_Tthread, disable_packet_qC)
3648 (disable_packet_qfThreadInfo): Unconditionally compile.
3649 * server.h [!HAVE_DECL_MEMMEM]: Declare memmem.
3650 * configure, config.in: Regenerate.
3651
2fe5e3ff
DE
36522008-07-28 Doug Kwan <dougkwan@google.com>
3653
3654 * linux-low.c (sys/dir.h, sys/user.h): Remove includes.
3655 (linux_write_memory): Remove declaration of errno.
3656
836acd6d
UW
36572008-07-12 Ulrich Weigand <uweigand@de.ibm.com>
3658
3659 * linux-low.c (handle_extended_wait): Do not use "status"
3660 variable uninitialized.
3661
aeba519e
PA
36622008-07-07 Pedro Alves <pedro@codesourcery.com>
3663
3664 * server.c (handle_v_attach): Inhibit reporting dll changes.
3665
db42f210
PA
36662008-06-27 Pedro Alves <pedro@codesourcery.com>
3667
3668 * remote-utils.c (prepare_resume_reply): If requested, don't
3669 output "thread:TID" in the T stop reply.
3670
3671 * server.c (disable_packet_vCont, disable_packet_Tthread)
3672 (disable_packet_qC, disable_packet_qfThreadInfo): New globals.
3673 (handle_query): If requested, disable support for qC, qfThreadInfo
3674 and qsThreadInfo.
3675 (handle_v_requests): If requested, disable support for vCont.
3676 (gdbserver_show_disableable): New.
3677 (main): Handle --disable-packet and --disable-packet=LIST.
3678
3679 * server.h (disable_packet_vCont, disable_packet_Tthread)
3680 (disable_packet_qC, disable_packet_qfThreadInfo): Declare.
3681
8e4c5421
CD
36822008-06-20 Carlos O'Donell <carlos@codesourcery.com>
3683
3684 * server.c (gdbserver_usage): Mention --version.
3685
6e23a804
DJ
36862008-06-06 Daniel Jacobowitz <dan@codesourcery.com>
3687
3688 * Makefile.in (gdbreplay.o): New rule.
3689
90aa6a40
JM
36902008-06-06 Joseph Myers <joseph@codesourcery.com>
3691
3692 * gdbreplay.c (gdbreplay_version): Say gdbreplay in version
3693 message, not gdbserver.
3694
c16158bc 36952008-06-05 Vladimir Prus <vladimir@codesourcery.com>
889bf7c5
PA
3696 Nathan Sidwell <nathan@codesourcery.com>
3697 Joseph Myers <joseph@codesourcery.com>
c16158bc
JM
3698
3699 * acinclude.m4: Include ../../config/acx.m4.
3700 * configure.ac: Use ACX_PKGVERSION and ACX_BUGURL.
3701 * configure, config.in: Regenerate.
3702 * Makefile.in (gdbreplay$(EXEEXT)): Add version.o.
3703 * server.c (gdbserver_version): Print PKGVERSION.
3704 (gdbsrever_usage): Add stream parameter. Print REPORT_BUGS_TO.
3705 (main): Adjust gdbserver_usage calls.
3706 * gdbreplay.c (version, host_name): Add declarations.
3707 (gdbreplay_version, gdbreplay_usage): New.
3708 (main): Accept --version and --help options.
3709
aeb75bf5
DJ
37102008-06-04 Daniel Jacobowitz <dan@codesourcery.com>
3711
3712 * linux-arm-low.c (thumb_breakpoint, thumb_breakpoint_len): New.
3713 (arm_breakpoint_at): Handle Thumb.
3714 (the_low_target): Add comment.
3715
76b233dd
UW
37162008-05-29 Ulrich Weigand <uweigand@de.ibm.com>
3717
3718 * linux-ppc-low.c (ppc_collect_ptrace_register): Clear buffer.
3719
08388c79
DE
37202008-05-09 Doug Evans <dje@google.com>
3721
a3c83fae
DE
3722 * server.h (decode_search_memory_packet): Declare.
3723 * remote-utils.c (decode_search_memory_packet): New fn.
3724 * server.c (handle_search_memory_1): New fn.
08388c79
DE
3725 (handle_search_memory): New fn.
3726 (handle_query): Process qSearch:memory packets.
3727
bb9c3d36
UW
37282008-05-08 Ulrich Weigand <uweigand@de.ibm.com>
3729
3730 * regcache.c (registers_length): Remove.
3731 (set_register_cache): Verify that PBUFSIZ is large enough to hold a
3732 full register packet.
3733 * regcache.h (registers_length): Remove prototype.
3734 * server.h (PBUFSIZ): Define to 16384.
3735
7284e1be
UW
37362008-05-03 Ulrich Weigand <uweigand@de.ibm.com>
3737
3738 * configure.srv (powerpc*-*-linux*): Set srv_regobj to
3739 powerpc-32l.o, powerpc-altivec32l.o, powerpc-e500l.o,
3740 powerpc-64l.o, and powerpc-altivec64l.o.
3741 Remove rs6000/powerpc-32.xml, rs6000/powerpc-64.xml, and
3742 rs6000/powerpc-e500.xml; add rs6000/powerpc-32l.xml,
3743 rs6000/powerpc-altivec32l.xml, rs6000/powerpc-e500l.xml,
3744 rs6000/powerpc-64l.xml, rs6000/powerpc-altivec64l.xml,
3745 rs6000/power-linux.xml, and rs6000/power64-linux.xml
3746 to srv_xmlfiles.
3747
3748 * Makefile.in (reg-ppc.o, reg-ppc.c): Remove, replace by ...
3749 (powerpc-32l.o, powerpc-32l.c): ... these new rules.
3750 (powerpc-32.o, powerpc-32.c): Remove, replace by ...
3751 (powerpc-altivec32l.o, powerpc-altivec32l.c): ... these new rules.
3752 (powerpc-e500.o, powerpc-e500.c): Remove, replace by ...
3753 (powerpc-e500l.o, powerpc-e500l.c): ... these new rules.
3754 (reg-ppc64.o, reg-ppc64.c): Remove, replace by ...
3755 (powerpc-64l.o, powerpc-64l.c): ... these new rules.
3756 (powerpc-64.o, powerpc-64.c): Remove, replace by ...
3757 (powerpc-altivec64l.o, powerpc-altivec64l.c): ... these new rules.
3758 (clean): Update.
3759
3760 * linux-ppc-low.c (init_registers_ppc): Remove, replace by ...
3761 (init_registers_powerpc_32l): ... this new prototype.
3762 (init_registers_powerpc_32): Remove, replace by ...
3763 (init_registers_powerpc_altivec32l): ... this new prototype.
3764 (init_registers_powerpc_e500): Remove, replace by ...
3765 (init_registers_powerpc_e500l): ... this new prototype.
3766 (init_registers_ppc64): Remove, replace by ...
3767 (init_registers_powerpc_64l): ... this new prototype.
3768 (init_registers_powerpc_64): Remove, replace by ...
3769 (init_registers_powerpc_altivec64l): ... this new prototype.
3770 (ppc_num_regs): Set to 73.
3771 (PT_ORIG_R3, PT_TRAP): Define if necessary.
3772 (ppc_regmap, ppc_regmap_e500): Add values for orig_r3 and trap.
3773 (ppc_cannot_store_register): Handle orig_r3 and trap.
3774 (ppc_arch_setup): Update init_registers_... calls.
3775 (ppc_fill_gregset): Handle orig_r3 and trap.
3776
3777 * inferiors.c (clear_inferiors): Reset current_inferior.
3778
fdc59709
PB
37792008-04-23 Paolo Bonzini <bonzini@gnu.org>
3780
889bf7c5
PA
3781 * acinclude.m4: Add override.m4.
3782 * configure: Regenerate.
fdc59709 3783
c9b2f845
UW
37842008-04-21 Ulrich Weigand <uweigand@de.ibm.com>
3785
3786 * linux-ppc-low.c (ppc_arch_setup): Reset ppc_hwcap after the
3787 initial call to init_register_ppc64.
3788
550512b8
UW
37892008-04-21 Ulrich Weigand <uweigand@de.ibm.com>
3790
3791 * configure.srv (powerpc64-*-linux*, powerpc-*-linux*): Merge into single
3792 powerpc*-*-linux* case.
3793 (s390-*-linux*, s390x-*-linux*): Merge into single s390*-*-linux* case.
3794
b6430ec3
UW
37952008-04-17 Ulrich Weigand <uweigand@de.ibm.com>
3796
3797 * configure.srv [powerpc64-*-linux*]: Remove powerpc-e500.o from
889bf7c5 3798 srv_regobj. Remove rs6000/powerpc-e500.xml and rs6000/power-spe.xml
b6430ec3
UW
3799 from reg_xmlfiles.
3800 * linux-ppc-low.c: Include <elf.h>.
3801 (PPC_FEATURE_HAS_ALTIVEC, PPC_FEATURE_HAS_SPE): Define.
3802 (ppc_hwcap): New global variable.
3803 (ppc_regmap): Remove __SPE__ #ifdef sections.
3804 (ppc_regmap_e500): New global variable.
3805 (ppc_cannot_store_register): Update __SPE__ special case.
3806 (ppc_get_hwcap): New function.
3807 (ppc_arch_setup): Use it to determine whether inferior supports
3808 AltiVec or SPE registers. Set the_low_target.regmap if appropriate.
3809 (ppc_fill_vrregset, ppc_store_vrregset): Define unconditionally.
3810 Do not access registers if target does not support AltiVec.
3811 (ppc_fill_evrregset, ppc_store_evrregset): Define unconditionally.
3812 Do not access registers if target does not support SPE.
3813 (target_regsets): Unconditionally include AltiVec and SPE regsets.
3814
52fa2412
UW
38152008-04-17 Daniel Jacobowitz <dan@codesourcery.com>
3816
3817 * linux-low.c (disabled_regsets, num_regsets): New.
3818 (use_regsets_p): Delete.
3819 (linux_wait_for_process): Clear disabled_regsets.
3820 (regsets_fetch_inferior_registers): Check and set it.
3821 (regsets_store_inferior_registers): Likewise.
3822 (linux_fetch_registers, linux_store_registers): Do not use
3823 use_regsets_p.
3824 (initialize_low): Allocate disabled_regsets.
3825
e28b3332
DJ
38262008-04-14 Daniel Jacobowitz <dan@codesourcery.com>
3827
3828 * Makefile.in (LIBOBJS): New.
3829 (OBS): Use LIBOBJS.
3830 (memmem.o): New rule.
3831 * configure.ac: Use AC_CONFIG_LIBOBJ_DIR and check for memmem.
3832 * configure: Regenerated.
3833
4536995d
UW
38342008-04-04 Ulrich Weigand <uweigand@de.ibm.com>
3835
3836 * server.c (handle_query): Never return "unsupported" for
3837 qXfer:features:read queries.
3838
221c031f
UW
38392008-03-27 Ulrich Weigand <uweigand@de.ibm.com>
3840
3841 * server.c (get_features_xml): Fix inverted condition.
3842 (handle_query): Always support qXfer:feature:read.
3843
ccd213ac
DJ
38442008-03-10 Daniel Jacobowitz <dan@codesourcery.com>
3845
3846 * server.c (wrapper_argv): New.
3847 (start_inferior): Handle wrapper_argv. If set, expect an extra
3848 trap.
3849 (gdbserver_usage): Document --wrapper.
3850 (main): Parse --wrapper.
3851
6fe305f7
UW
38522008-02-28 Ulrich Weigand <uweigand@de.ibm.com>
3853
3854 * configure.srv [powerpc64-*-linux*]: Add all files mentioned for
3855 powerpc-*-linux* to srv_regobj and reg_xmlfiles.
3856 * linux-ppc-low.c (ppc_get_pc): Support bi-arch operation.
3857 (ppc_set_pc): Likewise.
3858 (ppc_arch_setup): New function.
3859 (ppc_fill_gregset): Call ppc_collect_ptrace_register instead
3860 of collect_register.
889bf7c5 3861 (the_low_target): Use ppc_arch_setup as arch_setup initializer.
6fe305f7 3862
5b0a002e
UW
38632008-02-28 Ulrich Weigand <uweigand@de.ibm.com>
3864
3865 * configure.srv [powerpc64-*-linux*]: Use linux-ppc-low.o
3866 instead of linux-ppc64-low.o.
3867 * linux-ppc64-low.c: Remove file.
3868 * Makefile.in (SFILES): Remove linux-ppc64-low.c.
3869 (linux-ppc64-low.o): Remove rule.
3870
3871 * linux-ppc-low.c (init_registers_ppc64): Add prototype.
3872 (init_registers_powerpc_64): Likewise.
3873 (ppc_regmap): Conditionally define depending on __powerpc64__.
3874 (ppc_cannot_store_register): Do not special-case "fpscr" when
3875 compiled on __powerpc64__.
3876 (ppc_collect_ptrace_register): New function.
3877 (ppc_supply_ptrace_register): New function.
3878 (ppc_breakpoint): Change type to "unsigned int".
3879 (ppc_breakpoint_at): Change type of "insn" to "unsigned int".
3880 (the_low_target): Conditionally provide initializers for the
889bf7c5 3881 arch_setup member depending on __powerpc64__. Install
5b0a002e
UW
3882 collect_ptrace_register and supply_ptrace_register members.
3883
9b4b61c8
UW
38842008-02-28 Ulrich Weigand <uweigand@de.ibm.com>
3885
3886 * regcache.h (gdbserver_xmltarget): Add extern declaration.
3887 * server.c (gdbserver_xmltarget): Define.
3888 (get_features_xml): Use it to replace "target.xml" and arch_string.
3889
3890 * configure.srv: Remove srv_xmltarget. Add XML files that were
3891 mentioned there to srv_xmlfiles instead. Remove conditional tests
3892 on gdb_cv_arm_iwmmxt, gdb_cv_ppc_altivec, gdb_cv_ppc_spe; set
3893 srv_xmlfiles and srv_regobj to include all possible choices.
3894 * configure.ac (srv_xmltarget): Remove.
3895 (srv_xmlfiles): Do not add "target.xml".
3896 (gdb_cv_arm_iwmmxt, gdb_cv_ppc_altivec, gdb_cv_ppc_spe): Remove
3897 checks for supplementary target information.
3898 * configure: Regenerate.
3899 * Makefile.in (XML_TARGET): Remove.
3900 (target.xml): Remove rule.
3901 (clean): Do not clean up target.xml.
3902 (.PRECIOUS): Do not mention target.xml.
3903
3904 * target.h (struct target_ops): Remove arch_string member.
3905 * linux-low.c (linux_arch_string): Remove.
3906 (linux_target_ops): Remove arch_string initializer.
3907 * linux-low.h (struct linux_target_ops): Remove arch_string member.
3908 * linux-i386-low.c (the_low_target): Remove arch_string initializer.
3909 * linux-x86-64-low.c (the_low_target): Remove arch_string initializer.
3910 * spu-low.c (spu_arch_string): Remove.
3911 (spu_target_ops): Remove arch_string initializer.
3912 * win32-low.c (win32_arch_string): Remove.
3913 (win32_target_ops): Remove arch_string initializer.
3914 * win32-low.h (struct win32_target_ops): Remove arch_string member.
3915 * win32-arm-low.c (the_low_target): Remove arch_string initializer.
3916 * win32-i368-low.c (the_low_target): Remove arch_string initializer.
3917
ee1a7ae4
UW
39182008-02-27 Ulrich Weigand <uweigand@de.ibm.com>
3919
3920 * linux-low.h (struct linux_target_ops): Replace left_pad_xfer field
3921 by collect_ptrace_register and supply_ptrace_register hooks.
3922 * linux-low.c (fetch_register): Use supply_ptrace_register callback
3923 instead of checking for the_low_target.left_pad_xfer.
3924 (usr_store_inferior_registers): Use collect_ptrace_register callback
3925 instead of checking for the_low_target.left_pad_xfer.
3926
3927 * linux-s390-low.c (s390_collect_ptrace_register): New function.
3928 (s390_supply_ptrace_register): Likewise.
3929 (s390_fill_gregset): Call s390_collect_ptrace_register.
3930 (the_low_target): Update.
3931
3932 * linux-ppc64-low.c (ppc_collect_ptrace_register): New function.
3933 (ppc_supply_ptrace_register): Likewise.
3934 (the_low_target): Update.
3935
3936 * linux-i386-low.c (the_low_target): Update.
3937 * linux-x86-64-low.c (the_low_target): Update.
3938
d61ddec4
UW
39392008-02-27 Ulrich Weigand <uweigand@de.ibm.com>
3940
3941 * configure.srv [s390x-*-linux*]: Set srv_regobj to include both
3942 reg-s390.o and reg-s390x.o.
3943
3944 * linux-low.c (new_inferior): New global variable.
3945 (linux_create_inferior, linux_attach): Set it.
3946 (linux_wait_for_process): Call the_low_target.arch_setup after the
3947 target has stopped for the first time.
3948 (initialize_low): Do not call the_low_target.arch_setup.
3949
3950 * linux-s390-low.c (s390_get_pc): Support bi-arch operation.
3951 (s390_set_pc): Likewise.
3952 (s390_arch_setup): New function.
3953 (the_low_target): Use s390_arch_setup as arch_setup routine.
3954
3955 * regcache.c (realloc_register_cache): New function.
3956 (set_register_cache): Call it for each existing regcache.
3957
d05b4ac3
UW
39582008-02-27 Ulrich Weigand <uweigand@de.ibm.com>
3959
3960 * server.h (init_registers): Remove prototype.
3961
3962 * linux-low.h (struct linux_target_ops): Add arch_setup field.
3963 * linux-low.c (initialize_low): Call the_low_target.arch_setup ()
3964 instead of init_registers ().
3965 * linux-arm-low.c (init_registers_arm): Add prototype.
3966 (init_registers_arm_with_iwmmxt): Likewise.
3967 (the_low_target): Add initializer for arch_setup field.
3968 * linux-cris-low.c (init_registers_cris): Add prototype.
3969 (the_low_target): Add initializer for arch_setup field.
3970 * linux-crisv32-low.c (init_registers_crisv32): Add prototype.
3971 (the_low_target): Add initializer for arch_setup field.
3972 * linux-i386-low.c (init_registers_i386_linux): Add prototype.
3973 (the_low_target): Add initializer for arch_setup field.
3974 * linux-ia64-low.c (init_registers_ia64): Add prototype.
3975 (the_low_target): Add initializer for arch_setup field.
3976 * linux-m32r-low.c (init_registers_m32r): Add prototype.
3977 (the_low_target): Add initializer for arch_setup field.
3978 * linux-m68k-low.c (init_registers_m68k): Add prototype.
3979 (the_low_target): Add initializer for arch_setup field.
3980 * linux-mips-low.c (init_registers_mips_linux): Add prototype.
3981 (init_registers_mips64_linux): Likewise.
3982 (the_low_target): Add initializer for arch_setup field.
3983 * linux-ppc-low.c (init_registers_ppc): Add prototype.
3984 (init_registers_powerpc_32, init_registers_powerpc_e500): Likewise.
3985 (the_low_target): Add initializer for arch_setup field.
3986 * linux-ppc64-low.c (init_registers_ppc64): Add prototype.
3987 (init_registers_powerpc_64): Likewise.
3988 (the_low_target): Add initializer for arch_setup field.
3989 * linux-s390-low.c (init_registers_s390): Add prototype.
3990 (init_registers_s390x): Likewise.
3991 (the_low_target): Add initializer for arch_setup field.
3992 * linux-sh-low.c (init_registers_sh): Add prototype.
3993 (the_low_target): Add initializer for arch_setup field.
3994 * linux-x86-64-low.c (init_registers_x86_64_linux): Add prototype.
3995 (the_low_target): Add initializer for arch_setup field.
3996 * linux-xtensa-low.c (init_registers_xtensa): Add prototype.
3997 (the_low_target): Add initializer for arch_setup field.
3998
3999 * win32-low.h (struct win32_target_ops): Add arch_setup field.
4000 * win32-low.c (initialize_low): Call the_low_target.arch_setup ()
4001 instead of init_registers ().
4002 * win32-arm-low.c (init_registers_arm): Add prototype.
4003 (the_low_target): Add initializer for arch_setup field.
4004 * win32-i386-low.c (init_registers_i386): Add prototype.
4005 (the_low_target): Add initializer for arch_setup field.
4006
4007 * spu-low.c (init_registers_spu): Add prototype.
4008 (initialize_low): Call initialie_registers_spu () instead of
4009 initialize_registers ().
4010
fd96d250
PA
40112008-02-19 Pedro Alves <pedro@codesourcery.com>
4012
4013 * server.c (handle_v_requests): When handling the vRun and vAttach
4014 packets, if already debugging a process, don't kill it. Return an
4015 error instead.
4016
d41b6bb4
DJ
40172008-02-17 Daniel Jacobowitz <dan@codesourcery.com>
4018
4019 * server.c (handle_query): Correct length check.
4020
5ac588cf
PA
40212008-02-14 Pedro Alves <pedro_alves@portugalmail.pt>
4022
4023 * win32-low.c (do_initial_child_stuff): Add process handle
4024 parameter. Set current_process_handle and current_process_id from the
4025 parameters. Clear globals.
4026 (win32_create_inferior): Don't set current_process_handle and
4027 current_process_id here. Instead pass them on the call to
4028 do_initial_child_stuff.
4029 (win32_attach): Likewise.
4030 (win32_clear_inferiors): New.
4031 (win32_kill): Don't close the current process handle or the
4032 current thread handle here. Instead call win32_clear_inferiors.
4033 (win32_detach): Don't open a new handle to the process. Call
4034 win32_clear_inferiors.
4035 (win32_join): Don't rely on current_process_handle; open a new
4036 handle using the process id.
4037 (win32_wait): Call win32_clear_inferiors when the inferior process
4038 has exited.
4039
ecd7ecbc
DJ
40402008-02-14 Daniel Jacobowitz <dan@codesourcery.com>
4041
4042 * server.c (monitor_show_help): Add "exit".
4043
1525d545
MG
40442008-02-11 Maxim Grigoriev <maxim2405@gmail.com>
4045
ecd7ecbc 4046 * Makefile.in (SFILES): Add linux-xtensa-low.c.
1525d545
MG
4047 (clean): Add reg-xtensa.c.
4048 (linux-xtensa-low.o, reg-xtensa.o, reg-xtensa.c): New dependencies.
ecd7ecbc
DJ
4049 * configure.srv (xtensa*-*-linux*) New target.
4050 * linux-xtensa-low.c: New.
4051 * xtensa-xtregs.c: New.
1525d545 4052
59a016f0
PA
40532008-02-01 Pedro Alves <pedro_alves@portugalmail.pt>
4054
4055 * hostio.c: Don't include errno.h.
4056 (errno_to_fileio_errno): Move to hostio-errno.
4057 * hostio.c: (hostio_error): Remove the error parameter. Defer the
4058 error number outputting to the target->hostio_last_error callback.
4059 (hostio_packet_error): Use FILEIO_EINVAL directly.
4060 (handle_open, handle_pread, hostio_error, handle_unlink): Update
4061 calls to hostio_error.
4062 * hostio-errno.c: New.
4063 * server.h (hostio_last_error_from_errno): Declare.
4064 * target.h (target_ops): Add hostio_last_error member.
4065 * linux-low.c (linux_target_op): Register hostio_last_error_from_errno
4066 as hostio_last_error handler.
889bf7c5 4067 * spu-low.c (spu_target_ops): Likewise.
59a016f0
PA
4068 * win32-low.c [_WIN32_WCE] (win32_error_to_fileio_error)
4069 (wince_hostio_last_error): New functions.
4070 (win32_target_ops) [_WIN32_WCE]: Register wince_hostio_last_error
4071 as hostio_last_error handler.
4072 (win32_target_ops) [!_WIN32_WCE]: Register
4073 hostio_last_error_from_errno as hostio_last_error handler.
4074 * Makefile.in (SFILES): Add hostio.c and hostio-errno.c.
4075 (hostio-errno.o): New rule.
4076 * configure.ac (GDBSERVER_DEPFILES): Add $srv_hostio_err_objs.
4077 * configure.srv (srv_hostio_err_objs): New variable. Default to
4078 hostio-errno.o.
4079 (arm*-*-mingw32ce*): Set srv_hostio_err_objs to "".
4080 * configure: Regenerate.
4081
2d717e4f
DJ
40822008-01-29 Daniel Jacobowitz <dan@codesourcery.com>
4083
4084 * linux-low.c (linux_attach_lwp): Do not _exit after errors.
4085 (linux_kill, linux_detach): Clean up the process list.
4086 * remote-utils.c (remote_open): Improve port number parsing.
4087 (putpkt_binary, input_interrupt): Only send interrupts if the target
4088 is running.
4089 * server.c (extended_protocol): Make static.
4090 (attached): Define earlier.
4091 (exit_requested, response_needed, program_argv): New variables.
4092 (target_running): New.
4093 (start_inferior): Clear attached here.
4094 (attach_inferior): Set attached here.
4095 (require_running): Define.
4096 (handle_query): Use require_running and target_running. Implement
4097 "monitor exit".
4098 (handle_v_attach, handle_v_run): New.
4099 (handle_v_requests): Use require_running. Handle vAttach and vRun.
4100 (gdbserver_usage): Update.
4101 (main): Redo argument parsing. Handle --debug and --multi. Handle
4102 --attach along with other options or after the port. Save
4103 program_argv. Support no initial program. Resynchronize
4104 communication with GDB after an error. Handle "monitor exit".
4105 Use require_running and target_running. Always allow the extended
4106 protocol. Do not error out for Hc0 or Hc-1. Do not automatically
4107 restart in extended mode.
4108 * README: Refer to the GDB manual. Update --attach usage.
4109
7407e2de
AS
41102007-12-20 Andreas Schwab <schwab@suse.de>
4111
4112 * linux-low.c (STACK_SIZE): Define.
4113 (linux_tracefork_child): Use it. Use __clone2 on ia64.
4114 (linux_test_for_tracefork): Likewise.
4115
b65d95c5
DJ
41162007-12-18 Daniel Jacobowitz <dan@codesourcery.com>
4117
4118 * linux-low.c (linux_wait_for_event): Update messages. Do not
4119 reinsert auto-delete breakpoints.
4120 * mem-break.c (struct breakpoint): Change return type of handler to
4121 int.
4122 (set_breakpoint_at): Update handler type.
4123 (reinsert_breakpoint_handler): Return 1 instead of calling
4124 delete_breakpoint.
4125 (reinsert_breakpoint_by_bp): Check for the original breakpoint before
4126 setting a new one.
4127 (check_breakpoints): Delete auto-delete breakpoints and return 2.
4128 * mem-break.h (set_breakpoint_at): Update handler type.
4129 * thread-db.c (thread_db_create_event, thread_db_create_event): Update.
4130 * win32-low.c (auto_delete_breakpoint): New.
4131 (get_child_debug_event): Use it.
4132
4e799345
DJ
41332007-12-16 Daniel Jacobowitz <dan@codesourcery.com>
4134
4135 * configure.ac: Check for pread and pwrite.
4136 * hostio.c (handle_pread): Fall back to lseek and read.
4137 (handle_pwrite): Fall back to lseek and write.
4138 * config.in, configure: Regenerated.
4139
27524b67
DJ
41402007-12-07 Daniel Jacobowitz <dan@codesourcery.com>
4141
4142 * server.c (myresume): Add own_buf argument.
4143 (main): Update calls.
4144
a20d5e98
DJ
41452007-12-06 Daniel Jacobowitz <dan@codesourcery.com>
4146
4147 * linux-low.c (linux_wait, linux_resume): Do not handle async I/O.
4148 * remote-utils.c (remote_open): Do not call disable_async_io.
4149 (block_async_io): Delete.
4150 (unblock_async_io): Make static.
4151 (initialize_async_io): New.
4152 * server.c (handle_v_cont): Handle async I/O here.
4153 (myresume): Likewise. Move other common resume tasks here...
4154 (main): ... from here. Call initialize_async_io. Disable async
4155 I/O before the main loop.
4156 * server.h (initialize_async_io): Declare.
4157 (block_async_io, unblock_async_io): Delete prototypes.
4158 * spu-low.c (spu_resume, spu_wait): Do not handle async I/O here.
4159
b79d787e
DJ
41602007-12-06 Mick Davis <mickd@goanna.iinet.net.au>
4161
4162 * remote-utils.c (readchar): Allow binary data in received messages.
4163
d97903b2
PA
41642007-12-03 Pedro Alves <pedro_alves@portugalmail.pt>
4165
4166 * win32-low.c (attaching): New global.
4167 (win32_create_inferior): Clear the `attaching' global.
4168 (win32_attach): Set the `attaching' global.
4169 (get_child_debug_event) [_WIN32_WCE]: Stop the inferior when
4170 attaching. Only set a breakpoint at the entry point if not
4171 attaching.
4172
311de423
PA
41732007-12-03 Pedro Alves <pedro_alves@portugalmail.pt>
4174
4175 * server.c (main): Don't report dll events on the initial
4176 connection on attaches.
4177
6c2d16d2
PA
41782007-12-03 Pedro Alves <pedro_alves@portugalmail.pt>
4179
4180 * server.c (main): Relax numerical bases supported for the pid of
4181 the --attach command line argument.
4182
5ca906e6
PA
41832007-12-03 Pedro Alves <pedro_alves@portugalmail.pt>
4184
4185 * win32-low.c (win32_attach): Call OpenProcess before
4186 DebugActiveProcess, not after. Add last error output to error
4187 call.
4188
9c6c8194
PA
41892007-12-03 Pedro Alves <pedro_alves@portugalmail.pt>
4190
4191 * win32-low.c (win32_get_thread_context)
4192 (win32_set_thread_context): New functions.
4193 (thread_rec): Use win32_get_thread_context.
4194 (continue_one_thread, win32_resume): Use win32_set_thread_context.
4195 * win32-low.h (win32_thread_info) [_WIN32_WCE]: Add `base_context'
4196 field.
4197
4d5d1aaa
PA
41982007-12-03 Leo Zayas
4199 Pedro Alves <pedro_alves@portugalmail.pt>
4200
4201 * win32-low.c (soft_interrupt_requested, faked_breakpoint): New
4202 global variables.
4203 (child_add_thread): Minor cleanup.
4204 (child_continue): Resume artificially suspended threads before
4205 calling ContinueDebugEvent.
4206 (suspend_one_thread): New.
4207 (fake_breakpoint_event): New.
4208 (get_child_debug_event): Change return type to int. Check here if
4209 gdb sent an interrupt request. If a soft interrupt was requested,
4210 fake a breakpoint event. Return 0 if there is no event to handle,
4211 and 1 otherwise.
4212 (win32_wait): Don't check here if gdb sent an interrupt request.
4213 Ensure there is a valid event to handle.
4214 (win32_request_interrupt): Add soft interruption method as last
4215 resort.
4216
c436e841
PA
42172007-12-03 Leo Zayas
4218 Pedro Alves <pedro_alves@portugalmail.pt>
4219
4220 * win32-low.h (win32_thread_info): Add descriptions to the
4221 structure members. Replace `suspend_count' counter by a
4222 `suspended' flag.
4223 * win32-low.c (thread_rec): Update condition of when to get the
4224 context from the inferior. Rely on ContextFlags being set if it
4225 has already been retrieved. Only suspend the inferior thread if
4226 we haven't already. Warn if that fails.
4227 (continue_one_thread): s/suspend_count/suspended/. Only call
4228 ResumeThread once. Warn if that fails.
4229
e7b5fa67
PA
42302007-12-02 Pedro Alves <pedro_alves@portugalmail.pt>
4231
4232 * win32-low.c (win32_wait): Don't read from the inferior when it
4233 has already exited.
4234
a385171d
PA
42352007-12-02 Pedro Alves <pedro_alves@portugalmail.pt>
4236
4237 * Makefile.in (win32_low_h): New variable.
4238 (win32-low.o): Add dependency on $(win32_low_h).
4239 (win32-arm-low.o, win32-i386-low.o): New rules.
4240
f80c84b3
DJ
42412007-11-30 Daniel Jacobowitz <dan@codesourcery.com>
4242
4243 * hostio.c: Correct copyright year.
4244
a6b151f1
DJ
42452007-11-30 Daniel Jacobowitz <dan@codesourcery.com>
4246
4247 * Makefile.in (OBS): Add hostio.o.
4248 (hostio.o): New rule.
4249 * server.h (handle_vFile): Declare.
4250 * hostio.c: New file.
4251 * server.c (handle_v_requests): Take packet_len and new_packet_len
4252 for binary packets. Call handle_vFile.
4253 (main): Update call to handle_v_requests.
4254
f9387fc3
DJ
42552007-11-05 Daniel Jacobowitz <dan@codesourcery.com>
4256
4257 * linux-low.c: Include <sched.h>.
4258
51c2684e
DJ
42592007-11-01 Daniel Jacobowitz <dan@codesourcery.com>
4260
4261 * linux-low.c (linux_tracefork_grandchild): New.
4262 (linux_tracefork_child): Use clone.
4263 (linux_test_for_tracefork): Use clone; allocate and free a stack.
4264
75f83163
JB
42652007-10-31 Joel Brobecker <brobecker@adacore.com>
4266
4267 * Makefile.in: Use $(SHELL) instead of "sh" to call regdat.sh.
4268
da5898ce
DJ
42692007-10-24 Daniel Jacobowitz <dan@codesourcery.com>
4270
4271 * linux-low.c (handle_extended_wait): Handle unexpected signals.
4272
24a09b5f
DJ
42732007-10-23 Daniel Jacobowitz <dan@codesourcery.com>
4274
4275 * inferiors.c (change_inferior_id): Delete.
4276 (add_pid_to_list, pull_pid_from_list): New.
4277 * linux-low.c (PTRACE_SETOPTIONS, PTRACE_GETEVENTMSG)
4278 (PTRACE_O_TRACESYSGOOD, PTRACE_O_TRACEFORK, PTRACE_O_TRACEVFORK)
4279 (PTRACE_O_TRACECLONE, PTRACE_O_TRACEEXEC, PTRACE_O_TRACEVFORKDONE)
4280 (PTRACE_O_TRACEEXIT, PTRACE_EVENT_FORK, PTRACE_EVENT_VFORK)
4281 (PTRACE_EVENT_CLONE, PTRACE_EVENT_EXEC, PTRACE_EVENT_VFORK_DONE)
4282 (PTRACE_EVENT_EXIT, __WALL): Provide default definitions.
4283 (stopped_pids, thread_db_active, must_set_ptrace_flags): New variables.
4284 (using_threads): Always set to 1.
4285 (handle_extended_wait): New.
4286 (add_process): Do not set TID.
4287 (linux_create_inferior): Set must_set_ptrace_flags.
4288 (linux_attach_lwp): Remove TID argument. Do not check using_threads.
4289 Use PTRACE_SETOPTIONS. Call new_thread_notify. Update all callers.
4290 (linux_thread_alive): Rename TID argument to LWPID.
4291 (linux_wait_for_process): Handle unknown processes. Do not use TID.
4292 (linux_wait_for_event): Do not use TID or check using_threads. Update
4293 call to dead_thread_notify. Call handle_extended_wait.
4294 (linux_create_inferior): Use PTRACE_SETOPTIONS.
4295 (send_sigstop): Delete sigstop_sent.
4296 (wait_for_sigstop): Avoid TID.
4297 (linux_supports_tracefork_flag, linux_tracefork_child, my_waitpid)
4298 (linux_test_for_tracefork): New.
4299 (linux_lookup_signals): Use thread_db_active and
4300 linux_supports_tracefork_flag.
4301 (initialize_low): Use thread_db_active and linux_test_for_tracefork.
4302 * linux-low.h (get_process_thread): Avoid TID.
4303 (struct process_ifo): Move thread_known and tid to the end. Remove
4304 sigstop_sent.
4305 (linux_attach_lwp, thread_db_init): Update prototypes.
4306 * server.h (change_inferior_id): Delete prototype.
4307 (add_pid_to_list, pull_pid_from_list): New prototypes.
4308 * thread-db.c (thread_db_use_events): New.
4309 (find_first_thread): Rename to...
4310 (find_one_thread): ...this. Update callers and messages. Do not
4311 call fatal. Check thread_db_use_events. Do not call
4312 change_inferior_id or new_thread_notify.
4313 (maybe_attach_thread): Update. Do not call new_thread_notify.
4314 (thread_db_init): Set thread_db_use_events. Check use_events.
4315 * utils.c (fatal, warning): Correct message prefix.
4316
30ed0a8f
DJ
43172007-10-15 Daniel Jacobowitz <dan@codesourcery.com>
4318
4319 * Makefile.in (clean): Remove new files.
4320 (powerpc-32.o, powerpc-32.c, powerpc-e500.o, powerpc-e500.c)
4321 (powerpc-64.o, powerpc-64.c): New rules.
4322 * configure.srv: Use alternate register sets for powerpc64-*-linux*
4323 with AltiVec, powerpc-*-linux* with AltiVec, and powerpc-*-linux*
4324 with SPE.
4325 * linux-ppc-low.c (ppc_regmap): Do not fetch the FP registers for
4326 SPE targets.
4327 (ppc_cannot_store_register): Do not check for FPSCR for SPE targets.
4328 (PTRACE_GETVRREGS, PTRACE_SETVRREGS, SIZEOF_VRREGS, ppc_fill_vrregset)
4329 (ppc_store_vrregset, PTRACE_GETEVRREGS, PTRACE_SETEVRREGS)
4330 (struct gdb_evrregset_t, ppc_fill_evrregset, ppc_store_evrregset): New.
4331 (target_regsets): Add AltiVec and SPE register sets.
4332 * configure.ac: Check for AltiVec and SPE.
4333 * linux-ppc64-low.c (PTRACE_GETVRREGS, PTRACE_SETVRREGS, SIZEOF_VRREGS)
4334 (ppc_fill_vrregset, ppc_store_vrregset): New.
4335 (target_regsets): Add AltiVec register set.
4336 * configure: Regenerated.
4337
fd462a61
DJ
43382007-09-19 Daniel Jacobowitz <dan@codesourcery.com>
4339
4340 * linux-low.c (O_LARGEFILE): Define.
4341 (linux_read_memory): Use /proc/PID/mem.
4342 * configure.ac: Use AC_GNU_SOURCE. Check for pread64.
4343 * configure, config.in: Regenerated.
4344
69f223ed
DJ
43452007-09-04 Daniel Jacobowitz <dan@codesourcery.com>
4346
4347 * linux-low.c (linux_wait_for_event): Do not pass signals while
4348 single-stepping.
4349
aec18585
PA
43502007-09-03 Pedro Alves <pedro_alves@portugalmail.pt>
4351
4352 * win32-low.c (create_process): New.
4353 (win32_create_inferior): Use create_process instead of
4354 CreateProcess. If create_process failed retry appending an ".exe"
4355 suffix. Store the GetLastError result immediatelly after
4356 create_process calls and use it on the call to error.
4357
34d86ddd
PA
43582007-09-03 Pedro Alves <pedro_alves@portugalmail.pt>
4359
4360 * win32-low.c (handle_load_dll): Don't use toolhelp when waiting.
4361
5a0e3bd0
JB
43622007-08-23 Joel Brobecker <brobecker@adacore.com>
4363
4364 * configure.ac: Switch license to GPLv3.
4365
f88c79e6
MS
43662007-08-01 Michael Snyder <msnyder@access-company.com>
4367
4368 * remote-utils.c (putpkt_binary): Memory leak, free buf2.
4369
6b3d9b83
PA
43702007-07-31 Pedro Alves <pedro_alves@portugalmail.pt>
4371
4372 * win32-low.c (winapi_CloseToolhelp32Snapshot) [_WIN32_WCE]: New
4373 typedef.
4374 (win32_CloseToolhelp32Snapshot) [_WIN32_WCE]: New global var.
4375 (load_toolhelp) [_WIN32_WCE]: Load TOOLHELP.DLL. Get
4376 CloseToolhelp32Snapshot.
4377 (toolhelp_get_dll_name) [_WIN32_WCE]: Close the snapshot with
4378 CloseToolhelp32Snapshot.
4379
c588c53c
MS
43802007-07-27 Michael Snyder <michael.snyder@access-company.com>
4381
4382 * server.c (main): Check for inferior exit before main loop.
4383
aa0403d9
PA
43842007-07-18 Pedro Alves <pedro_alves@portugalmail.pt>
4385
4386 * remote-utils.c (remote_open): Set SO_KEEPALIVE on remote_desc
4387 instead of on tmp_desc.
4388
255e7678
DJ
43892007-07-17 Pedro Alves <pedro_alves@portugalmail.pt>
4390 Daniel Jacobowitz <dan@codesourcery.com>
4391
4392 * inferiors.c (all_dlls, dlls_changed, get_dll): New.
4393 (add_thread): Minor cleanups.
4394 (clear_inferiors): Move lower in the file. Clear the DLL
4395 list.
4396 (free_one_dll, match_dll, loaded_dll, unloaded_dll, clear_list): New.
4397 * remote-utils.c (prepare_resume_reply): Check dlls_changed.
4398 (xml_escape_text): New.
4399 * server.c (handle_query): Handle qXfer:libraries:read. Report it
4400 for qSupported.
4401 (handle_v_cont): Report errors.
4402 (gdbserver_version): Update.
4403 (main): Correct size of own_buf. Do not report initial DLL events.
4404 * server.h (struct dll_info, all_dlls, dlls_changed, loaded_dll)
4405 (unloaded_dll, xml_escape_text): New.
4406 * win32-low.c (enum target_waitkind): Update comments.
4407 (win32_add_one_solib, get_image_name, winapi_EnumProcessModules)
4408 (winapi_GetModuleInformation, winapi_GetModuleFileNameExA)
4409 (win32_EnumProcessModules, win32_GetModuleInformation)
4410 (win32_GetModuleFileNameExA, load_psapi, psapi_get_dll_name)
4411 (winapi_CreateToolhelp32Snapshot, winapi_Module32First)
4412 (winapi_Module32Next, win32_CreateToolhelp32Snapshot)
4413 (win32_Module32First, win32_Module32Next, load_toolhelp)
4414 (toolhelp_get_dll_name, handle_load_dll, handle_unload_dll): New.
4415 (get_child_debug_event): Handle DLL events.
4416 (win32_wait): Likewise.
4417
0d37add9
DJ
44182007-07-12 Daniel Jacobowitz <dan@codesourcery.com>
4419
4420 * configure.srv: Set srv_linux_regsets for sh*-*-linux*.
4421 * linux-sh-low.c (sh_fill_gregset, target_regsets): New.
4422
45e2715e
PA
44232007-07-08 Pedro Alves <pedro_alves@portugalmail.pt>
4424
4425 * win32-low.c (handle_output_debug_string): Ignore event if not
4426 waiting.
4427
c5674cf1
PA
44282007-07-08 Pedro Alves <pedro_alves@portugalmail.pt>
4429
4430 * win32-arm-low.c (arm_wince_breakpoint): Fix typo.
4431
2bbe3cc1
DJ
44322007-07-03 Daniel Jacobowitz <dan@codesourcery.com>
4433
4434 * remote-utils.c (look_up_one_symbol): Handle 'm' packets.
4435
ae13219e
DJ
44362007-07-02 Daniel Jacobowitz <dan@codesourcery.com>
4437
4438 * inferiors.c (change_inferior_id): Add comment.
4439 * linux-low.c (check_removed_breakpoint): Add an early
4440 prototype. Improve debug output.
4441 (linux_attach): Doc update.
4442 (linux_detach_one_process, linux_detach): Clean up before releasing
4443 each process.
4444 (send_sigstop, wait_for_sigstop): Improve comments and debug output.
4445 * linux-low.h (struct process_info): Doc improvement.
4446 * mem-break.c (delete_all_breakpoints): New.
4447 * mem-break.h (delete_all_breakpoints): New prototype.
4448 * thread-db.c (find_first_thread): New.
4449 (thread_db_create_event): Call it instead of
4450 thread_db_find_new_threads. Clean up unused variables.
4451 (maybe_attach_thread): Remove first thread handling.
4452 (thread_db_find_new_threads): Use find_first_thread.
4453 (thread_db_get_tls_address): Likewise.
4454
4105de34
DJ
44552007-06-27 Daniel Jacobowitz <dan@codesourcery.com>
4456
4457 * thread-db.c (thread_db_find_new_threads): Add prototype.
4458 (thread_db_create_event): Check for the main thread before adding
4459 a new thread.
4460 (maybe_attach_thread): Only enable event reporting if TID == 0.
4461 (thread_db_get_tls_address): Check for new threads.
4462
2b876972
DJ
44632007-06-20 Daniel Jacobowitz <dan@codesourcery.com>
4464
4465 * linux-low.c (linux_create_inferior): Try execv before execvp.
4466 * spu-low.c (spu_create_inferior): Likewise.
4467
7a245884
DJ
44682007-06-13 Mike Frysinger <vapier@gentoo.org>
4469
4470 * linux-low.c (linux_create_inferior): Change execv to execvp.
4471 * spu-low.c (spu_create_inferior): Likewies.
4472
117ce543
DJ
44732007-06-13 Daniel Jacobowitz <dan@codesourcery.com>
4474
4475 * Makefile.in (clean): Clean new files instead of deleted ones.
4476 (reg-mips.o, reg-mips.c, reg-mips64.o, reg-mips64.c): Delete.
4477 (mips-linux.o, mips-linux.c, mips64-linux.o, mips64-linux.c): New
4478 rules.
4479 * configure.srv: Specify XML files and new regformats for MIPS and
4480 MIPS64 GNU/Linux.
4481 * linux-mips-low.c (mips_num_regs): Set to only used registers.
4482 (mips_regmap): Do not fetch $0. Remove unused registers. Add
4483 an entry for the restart register.
4484 (mips_cannot_fetch_register, mips_cannot_store_register)
4485 (mips_reinsert_addr, mips_fill_fpregset, mips_store_fpregset): Update
4486 register names to match the XML descriptions.
4487 (mips_fill_gregset, mips_store_gregset): Likewise. Handle the
4488 restart register instead of $0.
4489
0e7f50da
UW
44902007-06-12 Ulrich Weigand <uweigand@de.ibm.com>
4491 Markus Deuling <deuling@de.ibm.com>
4492
4493 * remote-utils.c (decode_xfer_write): New function.
4494 * server.h (decode_xfer_write): Add prototype.
4495 * server.c (handle_query): Add PACKET_LEN argument. Support
4496 qXfer:spu:read and qXfer:spu:write packets.
4497 (main): Pass packet_len to handle_query.
4498 * spu-low.c (spu_target_ops): Add spu_proc_xfer_spu.
4499 * target.h (target_ops): Add qxfer_spu.
4500
374c1d38
UW
45012007-06-12 Ulrich Weigand <uweigand@de.ibm.com>
4502
4503 * spu-low.c (spu_proc_xfer_spu): Do not return failure when
4504 accessing non-seekable spufs files.
4505
bb63802a
UW
45062007-05-16 Markus Deuling <deuling@de.ibm.com>
4507
889bf7c5 4508 * server.c (handle_query): Add reply for qC packet.
bb63802a 4509
7390519e
PA
45102007-05-10 Pedro Alves <pedro_alves@portugalmail.pt>
4511 Leo Zayas <lerele@champenstudios@com>
4512
4513 * server.h (check_remote_input_interrupt_request): New function.
4514 * remote_utils.c (INVALID_DESCRIPTOR): New define.
4515 (remote_desc): Initialize with INVALID_DESCRIPTOR.
4516 (input_interrupt): Expose on USE_WIN32API too. Fix whitespace.
4517 (check_remote_input_interrupt_request): New function.
4518 * server.h (check_remote_input_interrupt_request): Declare.
3ecf0694 4519 * win32-low.c (winapi_DebugBreakProcess,
7390519e
PA
4520 winapi_GenerateConsoleCtrlEvent): New typedefs.
4521 (get_child_debug_event): Lower Win32 debug event polling from 1 sec
4522 to 250 ms.
4523 (win32_wait): Check for remote interrupt request
4524 with check_remote_input_interrupt_request.
4525 (win32_request_interrupt): New function.
4526 (win32_target_op): Set request_interrupt to win32_request_interrupt.
4527
34b34921
PA
45282007-05-10 Pedro Alves <pedro_alves@portugalmail.pt>
4529
4530 * win32-low.c (debug_registers_changed,
4531 debug_registers_used, CONTEXT_EXTENDED_REGISTERS,
4532 CONTEXT_FLOATING_POINT, CONTEXT_DEBUG_REGISTERS,
4533 CONTEXT_DEBUGGER, CONTEXT_DEBUGGER_DR): Delete.
4534 (thread_rec): Get context using the low target.
4535 (child_add_thread): Call thread_added on the low target,
4536 which does the same thing.
4537 (regptr): Delete.
4538 (do_initial_child_stuff): Remove debug registers references.
4539 Set context using the low target. Resume threads after
4540 setting the contexts.
4541 (child_continue): Remove dead variable. Remove debug
4542 registers references.
4543 (child_fetch_inferior_registers): Go through the low target.
4544 (do_child_store_inferior_registers): Remove.
4545 (child_store_inferior_registers): Go through the low target.
4546 (win32_resume): Remove debug registers references.
4547 Set context using the low target.
4548 (handle_exception): Change return type to void. Don't record
4549 context here. Set status to TARGET_WAITKIND_SPURIOUS on a
4550 first chance exception.
889bf7c5 4551 (get_child_debug_event): Change return type to void. Remove
34b34921
PA
4552 goto loop. Always return after waiting for debug event.
4553 (win32_wait): Convert to switch statement. Handle spurious
4554 events.
4555
4556 * win32-i386-low.c (debug_registers_changed,
4557 debug_registers_used): New.
4558 (initial_stuff): Rename to ...
4559 (i386_initial_stuff): ... this. Clear debug registers
4560 state variables.
4561 (store_debug_registers): Delete.
4562 (i386_get_thread_context): New.
4563 (load_debug_registers): Delete.
4564 (i386_set_thread_context): New.
4565 (i386_thread_added): New.
4566 (single_step): Rename to ...
4567 (i386_single_step): ... this.
4568 (do_fetch_inferior_registers): Rename to ...
4569 (i386_fetch_inferior_register): ... this.
4570 (i386_store_inferior_register): New.
4571 (the_low_target): Adapt to new interface.
4572
4573 * win32-arm-low.c (CONTEXT_FLOATING_POINT): Define.
4574 (arm_get_thread_context): New.
4575 (arm_set_thread_context): New.
4576 (regptr): New.
4577 (do_fetch_inferior_registers): Rename to ...
4578 (arm_fetch_inferior_register): ... this.
4579 (arm_store_inferior_register): New.
4580 (arm_wince_breakpoint): Reimplement as unsigned long.
4581 (arm_wince_breakpoint_len): Define.
4582 (the_low_target): Adapt to new interface.
4583
4584 * win32-low.h (target_ops): Remove regmap, store_debug_registers and
4585 load_debug_registers. Add get_thread_context, set_thread_context,
4586 thread_added and store_inferior_register. Rename
4587 fetch_inferior_registers to fetch_inferior_register.
4588 (regptr): Remove declaration.
4589
dd6953e1
PA
45902007-05-10 Pedro Alves <pedro_alves@portugalmail.pt>
4591
4592 * linux-low.c (linux_detach): Change return type to int. Return 0.
4593 * spu-low.c (spu_detach): Likewise.
4594
444d6139
PA
45952007-05-10 Pedro Alves <pedro_alves@portugalmail.pt>
4596
4597 * target.h (target_ops): Change return type of detach to int.
4598 Add join.
4599 (join_inferior): New.
4600 * server.c (main): Don't skip detach support on mingw32.
4601 If the inferior doesn't support detaching return error.
4602 Call join_inferior instead of using waitpid.
4603 * linux-low.c (linux_join): New.
4604 (linux_target_op): Add linux_join.
4605 * spu-low.c (spu_join): New.
4606 (spu_target_ops): Add spu_join.
4607 * win32-low.c (win32_detach): Adapt to new interface.
4608 Reopen current_process_handle before detaching. Issue a child
4609 resume before detaching.
4610 (win32_join): New.
4611 (win32_target_op): Add win32_join.
4612
1d5315fe
PA
46132007-05-10 Pedro Alves <pedro_alves@portugalmail.pt>
4614
4615 * win32-low.c (win32-attach): Fix return value.
4616 * target.h (target_ops): Describe ATTACH return values.
4617
bf914831
PA
46182007-05-10 Pedro Alves <pedro_alves@portugalmail.pt>
4619
4620 * win32-low.c (GETPROCADDRESS): Define.
4621 (winapi_DebugActiveProcessStop): Add WINAPI. typedef as pointer.
4622 (winapi_DebugSetProcessKillOnExit): Likewise.
4623 (win32_create_inferior): Force usage of ansi CreateProcessA.
4624 (win32_attach): Use GETPROCADDRESS.
4625 (win32_detach): Likewise.
4626
f72f3e60
PA
46272007-05-10 Pedro Alves <pedro_alves@portugalmail.pt>
4628
4629 * win32-low.c (win32_wait): Don't use WSTOPSIG.
4630
ed50f18f
PA
46312007-03-30 Pedro Alves <pedro_alves@portugalmail.pt>
4632
4633 * win32-low.c: Commit leftover changes from 2007-03-29.
4634
0c2ead7e
DJ
46352007-03-30 Daniel Jacobowitz <dan@codesourcery.com>
4636
4637 * i387-fp.c (struct i387_fsave, struct i387_fxsave): Make 16-bit
4638 fields short instead of int. Add explicit padding.
4639 (i387_cache_to_fsave): Remove unnecessary casts.
4640 (i387_fsave_to_cache): Doc fix.
4641 (i387_cache_to_fxsave): Remove unnecessary casts and masking.
4642
73725ff3
DJ
46432007-03-30 Daniel Jacobowitz <dan@codesourcery.com>
4644
4645 * i387-fp.c (i387_cache_to_fxsave): Reinitialize val2 before use.
4646 (i387_fxsave_to_cache): Check fp->ftag while building ftag value.
4647
d99f33d8
PA
46482007-03-29 Pedro Alves <pedro_alves@portugalmail.pt>
4649
4650 * configure.srv (arm*-*-mingw32ce*): Move near the other
4651 arm targets.
4652
68070c10
PA
46532007-03-29 Pedro Alves <pedro_alves@portugalmail.pt>
4654
2482afc6 4655 * configure.ac: Add errno checking.
68070c10
PA
4656 (AC_CHECK_HEADERS): Add errno.h, fcntl.h, signal.h,
4657 sys/file.h and malloc.h.
4658 (AC_CHECK_DECLS): Add perror.
4659 (srv_mingwce): Handle.
2482afc6 4660 * configure.srv (i[34567]86-*-cygwin*): Add
68070c10
PA
4661 win32-i386-low.o to srv_tgtobj.
4662 (i[34567]86-*-mingw*): Likewise.
4663 (arm*-*-mingw32ce*): Add case.
4664 * gdbreplay.c [HAVE_SYS_FILE_H, HAVE_SIGNAL_H,
4665 HAVE_FCNTL_H, HAVE_ERRNO_H, HAVE_MALLOC_H]: Check.
4666 [__MINGW32CE__] (strerror): New function.
4667 [__MINGW32CE__] (errno): Define to GetLastError.
4668 [__MINGW32CE__] (COUNTOF): New macro.
4669 (remote_open): Remove extra close call.
4670 * mem-break.c (delete_breakpoint_at): New function.
4671 * mem-break.h (delete_breakpoint_at): Declare.
4672 * remote-utils.c [HAVE_SYS_FILE_H, HAVE_SIGNAL_H,
4673 HAVE_FCNTL_H, HAVE_UNISTD_H, HAVE_ERRNO_H]: Check.
4674 [USE_WIN32API] (read, write): Add char* casts.
4675 * server.c [HAVE_UNISTD_H, HAVE_SIGNAL_H]: Check.
4676 * server.h: Include wincecompat.h on Windows CE.
4677 [HAVE_ERRNO_H]: Check.
4678 (perror): Declare if not declared.
4679 * utils.c: Add stdlib.h, errno.h and malloc.h includes.
4680 (perror_with_name): Remove errno declaration.
4681 * wincecompat.h: New.
4682 * wincecompat.c: New.
4683 * win32-low.h: New.
4684 * win32-arm-low.c: New.
4685 * win32-i386-low.c: New.
4686 (win32-low.c): Include mem-break.h and win32-low.h, and winnt.h.
4687 (OUTMSG2): Make it safe.
4688 (_T): New macro.
4689 (COUNTOF): New macro.
4690 (NUM_REGS): Get it from the low target.
4691 (CONTEXT_EXTENDED_REGISTERS, CONTEXT_FLOATING_POINT,
4692 CONTEXT_DEBUG_REGISTERS): Add fallbacks to 0.
4693 (thread_rec): Let low target handle debug registers.
4694 (child_add_thread): Likewise.
4695 (child_init_thread_list): Likewise.
4696 (continue_one_thread): Likewise.
4697 (regptr): New.
4698 (do_child_fetch_inferior_registers): Move to ...
4699 * win32-i386-low.c: ... here, and rename to ...
4700 (do_fetch_inferior_registers): ... this.
889bf7c5 4701 * win32-low.c (child_fetch_inferior_registers):
68070c10
PA
4702 Go through the low target.
4703 (do_child_store_inferior_registers): Use regptr.
4704 (strwinerror): New function.
4705 (win32_create_inferior): Handle Windows CE.
4706 Use strwinerror instead of strerror on Windows error
4707 codes. Add program to the error output.
4708 Don't close the main thread handle on Windows CE.
4709 (win32_attach): Use coredll.dll on Windows CE.
4710 (win32_kill): Close current process and current
4711 thread handles.
4712 (win32_detach): Use coredll.dll on Windows CE.
4713 (win32_resume): Let low target handle debug registers, and
4714 step request.
4715 (handle_exception): Add/Remove initial breakpoint. Avoid
4716 non-existant WSTOPSIG on Windows CE.
4717 (win32_read_inferior_memory): Cast to remove warning.
4718 (win32_arch_string): Go through the low target.
4719 (initialize_low): Call set_breakpoint_data with the low
4720 target's breakpoint.
4721 * win32-low.c (dr, FLAG_TRACE_BIT, FCS_REGNUM,
4722 FOP_REGNUM, mappings): Move to ...
4723 * win32-i386-low.c: ... here.
4724 * win32-low.c (win32_thread_info): Move to ...
4725 * win32-low.h: ... here.
4726 * Makefile.in (SFILES): Add win32-low.c, win32-i386-low.c,
4727 win32-arm-low.c and wincecompat.c.
4728 (all:): Add $EXEEXT.
4729 (install-only:): Likewise.
4730 (gdbserver:): Likewise.
4731 (gdbreplay:): Likewise.
4732 * config.in: Regenerate.
4733 * configure: Regenerate.
4734
41093d81
PA
47352007-03-28 Pedro Alves <pedro_alves@portugalmail.pt>
4736
4737 * win32-low.c: Rename typedef thread_info to
4738 win32_thread_info throughout.
4739
544afa54
PA
47402007-03-28 Pedro Alves <pedro_alves@portugalmail.pt>
4741
4742 * win32-i386-low.c: Rename to ...
4743 * win32-low.c: ... this.
4744 * configure.srv: Replace win32-i386-low.o with win32-low.o.
4745 * Makefile.in: Likewise.
4746
bce7165d
PA
47472007-03-27 Pedro Alves <pedro_alves@portugalmail.pt>
4748
4749 * remote-utils.c (monitor_output): Constify msg parameter.
4750 * server.h (monitor_output): Likewise.
4751 * win32-i386-low.c (handle_output_debug_string): New.
4752 (win32_kill): Handle OUTPUT_DEBUG_STRING_EVENT events using
4753 handle_output_debug_string.
4754 (get_child_debug_event): Likewise.
4755
506c7aa0
DJ
47562007-03-27 Mat Hostetter <mat@lcs.mit.edu>
4757
4758 * server.c (main): Correct strtoul check.
4759
42c81e2a
DJ
47602007-03-27 Jon Ringle <jon@ringle.org>
4761
4762 * linux-low.c: Check __ARCH_HAS_MMU__ also.
4763
9453113a
DJ
47642007-03-27 Brooks Moses <brooks.moses@codesourcery.com>
4765
4766 * Makefile.in: Add dummy "pdf" and "install-pdf" targets.
4767
64a69107
DJ
47682007-02-27 Daniel Jacobowitz <dan@codesourcery.com>
4769
4770 * terminal.h: Check HAVE_SGTTY_H.
4771
47722007-02-27 Mat Hostetter <mat@lcs.mit.edu>
6f8486da
DJ
4773
4774 * remote-utils.c (remote_open): Print out the assigned port number.
4775
c74d0ad8
DJ
47762007-02-26 Daniel Jacobowitz <dan@codesourcery.com>
4777
4778 * remote-utils.c (monitor_output): New function.
4779 * server.c (debug_threads): Define here.
4780 (monitor_show_help): New function.
4781 (handle_query): Handle qRcmd.
4782 (main): Do not handle 'd' packet.
4783 * server.h (debug_threads, remote_debug, monitor_output): Declare.
4784 * linux-low.c, spu-low.c, win32-i386-low.c: Remove definitions
4785 of debug_threads.
4786
de7c3b4a
PA
47872007-02-25 Pedro Alves <pedro_alves@portugalmail.pt>
4788
4789 * Makefile.in (EXEEXT): New.
4790 (clean): Use $(EXEEXT).
4791
ef57601b
PA
47922007-02-25 Pedro Alves <pedro_alves@portugalmail.pt>
4793
4794 * target.h (target_ops): Rename send_signal to request_interrupt,
4795 and remove enum target_signal parameter.
4796 * linux-low.c (linux_request_interrupt): Rename from
4797 linux_send_signal, and always send SIGINT.
4798 * spu-low.c (spu_request_interrupt): Rename from spu_send_signal,
4799 and always send SIGINT.
4800 * remote-utils.c (putpkt_binary): Call request_interrupt, instead
4801 of send_signal.
4802 (input_interrupt): Likewise.
4803
820f2bda
PA
48042007-02-25 Pedro Alves <pedro_alves@portugalmail.pt>
4805
4806 * server.c (get_features_xml): Check if target implemented
4807 arch_string.
4808 * win32-i386-low.c (win32_arch_string): New.
4809 (win32_target_ops): Add win32_arch_string as arch_string member.
4810
ab39bf24
UW
48112007-02-22 Markus Deuling <deuling@de.ibm.com>
4812
4813 * spu-low.c (spu_arch_string): New.
4814 (spu_target_ops): Add spu_arch_string.
4815
61ff6e04
DJ
48162007-02-16 Daniel Jacobowitz <dan@codesourcery.com>
4817
4818 * remote-utils.c: Remove HAVE_TERMINAL_H check.
4819 * configure.ac: Do not check for terminal.h.
4820 * configure, config.in: Regenerated.
4821
fb1e4ffc
DJ
48222007-02-08 Daniel Jacobowitz <dan@codesourcery.com>
4823
4824 * Makefile.in (OBS): Add $(XML_BUILTIN).
4825 (XML_DIR, XML_TARGET, XML_FILES, XML_BUILTIN): New.
4826 (clean): Update.
4827 (target.xml, xml-builtin.c, stamp-xml, arm-with-iwmmxt.o)
4828 (arm-with-iwmmxt.c): New.
4829 * config.in, configure: Regenerate.
4830 * configure.ac: Check for iWMMXt. Handle srv_xmltarget,
4831 srv_xmlbuiltin, and srv_xmlfiles. Define USE_XML.
4832 * configure.srv: Mention srv_xmltarget and srv_xmlfiles.
4833 (arm*-*-linux*): Add iWMMXt and regset support.
4834 * linux-arm-low.c (PTRACE_GETWMMXREGS, PTRACE_SETWMMXREGS): Define.
4835 (arm_fill_gregset, arm_store_gregset, arm_fill_wmmxregset)
4836 (arm_store_wmmxregset, target_regsets): New.
4837 * server.c (get_features_xml): Take annex argument. Check builtin
4838 XML documents.
4839 (handle_query): Handle multiple annexes.
4840
0f48aa01
DJ
48412007-01-29 Daniel Jacobowitz <dan@codesourcery.com>
4842
4843 * remote-utils.c [USE_WIN32API] (read, write): Define.
4844 (putpkt_binary, input_interrupt, readchar, getpkt): Use read and
4845 write.
4846
23181151
DJ
48472007-01-09 Daniel Jacobowitz <dan@codesourcery.com>
4848
4849 * linux-i386-low.c (the_low_target): Set arch_string.
4850 * linux-x86-64-low.c (the_low_target): Likewise.
4851 * linux-low.c (linux_arch_string): New.
4852 (linux_target_ops): Add it.
4853 * linux-low.h (struct linux_target_ops): Add arch_string.
4854 * server.c (write_qxfer_response): Use const void * for DATA.
4855 (get_features_xml): New.
4856 (handle_query): Handle qXfer:features:read. Report it for qSupported.
4857 * target.h (struct target_ops): Add arch_string method.
4858
9d606399
DJ
48592007-01-03 Denis Pilat <denis.pilat@st.com>
4860 Daniel Jacobowitz <dan@codesourcery.com>
4861
4862 * linux-low.c (linux_kill): Handle being called with no threads.
4863 * win32-i386-low.c (win32_kill): Likewise.
4864 (get_child_debug_event): Clear current_process_handle.
4865
48662006-12-30 Denis PILAT <denis.pilat@st.com>
8264bb58
DJ
4867 Daniel Jacobowitz <dan@codesourcery.com>
4868
4869 * remote-utils.c (remote_open): Check the type of specified
4870 serial port devices before opening them.
4871 * server.c (main): Kill the inferior if an error occurs during
4872 the first remote_open.
4873
a5e13d24
DJ
48742006-12-05 Markus Deuling <deuling@de.ibm.com>
4875
4876 * README: Update supported targets.
4877
186947f7
DJ
48782006-11-28 Daniel Jacobowitz <dan@codesourcery.com>
4879
4880 * Makefile.in (clean): Remove reg-mips64.c.
4881 (reg-mips64.c, reg-mips64.o): New rules.
4882 * configure.srv: Handle mips64. Include regset support for mips.
4883 * linux-mips-low.c (union mips_register): New.
4884 (mips_get_pc, mips_set_pc, mips_reinsert_addr): Use it.
4885 (mips_breakpoint, mips_breakpoint_at): Use int.
4886 (mips_collect_register, mips_supply_register)
4887 (mips_collect_register_32bit, mips_supply_register_32bit)
4888 (mips_fill_gregset, mips_store_gregset, mips_fill_fpregset)
4889 (mips_store_fpregset, target_regsets): New.
4890 * thread-db.c (thread_db_get_tls_address): Use uintptr_t.
4891
a13e2c95
UW
48922006-11-22 Ulrich Weigand <uweigand@de.ibm.com>
4893
4894 * configure.srv: Add target "spu*-*-*".
4895 * Makefile.in (clean): Remove reg-spu.c.
4896 (reg-spu.c, reg-spu.o, spu-low.o): Add dependencies.
4897 * spu-low.c: New file.
4898
cb7283db
DJ
48992006-11-16 Daniel Jacobowitz <dan@codesourcery.com>
4900
4901 * configure.ac: Correct td_thr_tls_get_addr test.
4902 * configure: Regenerated.
4903
89be2091
DJ
49042006-11-16 Daniel Jacobowitz <dan@codesourcery.com>
4905
4906 * linux-low.c (linux_wait_for_event): Reformat. Use the
4907 pass_signals array.
4908 * remote-utils.c (decode_address_to_semicolon): New.
4909 * server.c (pass_signals, handle_general_set): New.
4910 (handle_query): Mention QPassSignals for qSupported.
4911 (main): Call handle_general_set.
4912 * server.h (pass_signals, decode_address_to_semicolon): New.
4913
000ef4f0
DJ
49142006-11-06 Daniel Jacobowitz <dan@codesourcery.com>
4915
4916 * server.c (handle_query): Correct error handling for read_auxv.
4917
b7149293
UW
49182005-10-19 Ulrich Weigand <uweigand@de.ibm.com>
4919
4920 * configure.srv [s390-*-linux*, s390x-*-linux*]: Set srv_linux_regsets
4921 and srv_linux_thread_db to yes.
4922 * linux-s390-low.c (s390_fill_gregset): New function.
4923 (target_regsets): Define data structure.
4924
dae5f5cf
DJ
49252006-10-17 Daniel Jacobowitz <dan@codesourcery.com>
4926
4927 * acinclude.m4 (SRV_CHECK_TLS_GET_ADDR): New.
4928 * configure.ac: Use it. Define HAVE_TD_THR_TLS_GET_ADDR.
4929 * config.in, configure: Regenerated.
4930 * inferiors.c (gdb_id_to_thread): New function.
4931 (gdb_id_to_thread_id): Use it.
4932 * linux-low.c (linux_target_ops): Use thread_db_get_tls_address.
4933 * linux-low.h (struct process_info): Add th member.
4934 (thread_db_get_tls_address): New prototype.
4935 * remote-utils.c (decode_address): Make non-static.
4936 * server.c (handle_query): Handle qGetTLSAddr.
4937 * server.h (gdb_id_to_thread, decode_address): New prototypes.
4938 * target.h (struct target_ops): Add get_tls_address.
4939 * thread-db.c (maybe_attach_thread): Save the thread handle.
4940 (thread_db_get_tls_address): New.
4941
32ca6d61
DJ
49422006-09-28 Daniel Jacobowitz <dan@codesourcery.com>
4943
4944 * linux-low.c (PTRACE_GETSIGINFO, PTRACE_SETSIGINFO): Define.
4945 (linux_resume_one_process): Take a siginfo_t *. Update all
4946 callers. Queue it if necessary. Use PTRACE_SETSIGINFO.
4947 (struct pending_signals): Add a siginfo_t.
4948 (linux_wait_for_process): Always set last_status.
4949 (linux_wait_for_event): Use PTRACE_GETSIGINFO.
4950 (linux_queue_one_thread): Use PTRACE_GETSIGINFO.
4951 * linux-low.h (struct process_info): Add last_status.
4952
5ffff7c1
DJ
49532006-09-21 Daniel Jacobowitz <dan@codesourcery.com>
4954
4955 * remote-utils.c (try_rle): New function.
4956 (putpkt_binary): Use it.
4957
8695c747
DJ
49582006-08-19 Daniel Jacobowitz <dan@codesourcery.com>
4959
4960 * Makefile.in (clean): Clean reg-x86-64-linux.c.
4961 (reg-x86-64-linux.o, reg-x86-64-linux.c): New.
4962 * configure.srv (x86_64-*-linux*): Use reg-x86-64-linux.o.
4963 * linux-x86-64-low.c (x86_64_regmap): Include ORIG_RAX.
4964 (x86_64_fill_gregset, x86_64_store_gregset): Skip floating
4965 point registers.
4966
290fadea
RS
49672006-08-08 Richard Sandiford <richard@codesourcery.com>
4968
4969 * server.c (terminal_fd): New variable.
4970 (old_foreground_pgrp): Likewise.
4971 (restore_old_foreground_pgrp): New function.
4972 (start_inferior): Record the terminal file descriptor in terminal_fd
4973 and its original foreground group in old_foreground_pgrp. Register
4974 restore_old_foreground_pgrp with atexit().
4975
9f2e1e63
DJ
49762006-07-26 Daniel Jacobowitz <dan@codesourcery.com>
4977
4978 * server.c (handle_query): Correct qPart to qXfer.
4979
b80864fb
DJ
49802006-07-22 Daniel Jacobowitz <dan@codesourcery.com>
4981
4982 * configure.ac: Check for more headers which are missing on
4983 Windows. Automatically supply -lwsock32 and USE_WIN32API.
4984 * configure.srv: Add Cygwin and mingw32.
4985 * remote-utils.c: Don't include headers unconditionally which
4986 are missing on mingw32. Include <winsock.h> for mingw32.
4987 (remote_open): Adjust for mingw32 support. Flush
4988 standard error after writing to it.
4989 (remote_close, putpkt_binary, input_interrupt, block_async_io)
4990 (unblock_async_io, enable_async_io, disable_async_io)
4991 (readchar, getpkt): Update for Winsock support.
4992 (prepare_resume_reply): Expect a protocol signal number.
4993 * server.c: Disable <sys/wait.h> on mingw32.
4994 (start_inferior): Adjust for mingw32 support. Flush
4995 standard error after writing to it.
4996 (attach_inferior): Likewise. Use protocol signal
4997 numbers.
4998 (main): Skip 'D' packet on mingw32. Use protocol signal numbers
4999 and names.
5000 * win32-i386-low.c: New file.
5001 * Makefile.in (XM_CLIBS): Set.
5002 (gdbserver, gdbreplay): Use $(INTERNAL_CFLAGS).
5003 (win32-i386-low.o): New dependency rule.
5004 * linux-low.c (linux_wait): Use target signal numbers.
5005 * target.h (struct target_ops): Doc fix.
5006 * server.h (target_signal_to_name): New prototype.
5007 * gdbreplay.c: Don't include headers unconditionally which
5008 are missing on mingw32. Include <winsock.h> for mingw32.
5009 (remote_close, remote_open): Adjust for Winsock support.
5010 * configure, config.in: Regenerated.
5011
0876f84a
DJ
50122006-07-12 Daniel Jacobowitz <dan@codesourcery.com>
5013
5014 * server.c (decode_xfer_read, write_qxfer_response): New.
5015 (handle_query): Take a packet length argument. Handle
5016 qXfer:auxv:read instead of qPart:auxv:read. Mention it in
5017 the qSupported response.
5018 (main): Update call to handle_query.
5019
01f9e8fa
DJ
50202006-06-22 Daniel Jacobowitz <dan@codesourcery.com>
5021
5022 * remote-utils.c (remote_escape_output, remote_unescape_input): New.
5023 (putpkt_binary): Renamed from putpkt and adjusted for binary
5024 data.
5025 (putpkt): New wrapper for putpkt_binary.
5026 (readchar): Don't mask off the high bit.
5027 (decode_X_packet): New function.
5028 * server.c (main): Call putpkt_binary if a handler sets the packet
5029 length. Save the length of the incoming packet. Handle 'X'.
5030 * server.h (gdb_byte, remote_escape_output, decode_X_packet): New.
5031
be2a5f71
DJ
50322006-06-21 Daniel Jacobowitz <dan@codesourcery.com>
5033
5034 * server.c (handle_query): Handle qSupported.
5035
ea025f5f
DJ
50362006-05-30 Daniel Jacobowitz <dan@codesourcery.com>
5037
5038 * remote-utils.c (all_symbols_looked_up): New variable.
5039 (look_up_one_symbol): Check it.
5040 * server.h (look_up_one_symbol): New declaration.
5041 * thread-db.c (thread_db_init): Set all_symbols_looked_up.
5042
9308fc88
DJ
50432006-05-30 Daniel Jacobowitz <dan@codesourcery.com>
5044
5045 * Makefile.in (linux-arm-low.o): Update dependencies.
66f338c7 5046 * linux-arm-low.c: Include "gdb_proc_service.h".
9308fc88
DJ
5047 (PTRACE_GET_THREAD_AREA): Define.
5048 (ps_get_thread_area): New function.
5049
52fb6437
NS
50502006-05-09 Nathan Sidwell <nathan@codesourcery.com>
5051
5052 * configure.srv (m68k*-*-uclinux*): New target.
5053 * linux-low.c (linux_create_inferior): Use vfork on mmuless systems.
5054 (linux_resume_one_process): Remove extraneous cast.
5055 (linux_read_offsets): New.
5056 (linux_target_op): Add linux_read_offsets on mmuless systems.
5057 * server.c (handle_query): Add qOffsets logic.
5058 * target.h (struct target_ops): Add read_offsets.
5059
21b0f40c
DJ
50602006-03-15 Daniel Jacobowitz <dan@codesourcery.com>
5061
5062 * linux-mips-low.c: Include <sys/ptrace.h> and "gdb_proc_service.h".
5063 (PTRACE_GET_THREAD_AREA): Define.
5064 (ps_get_thread_area): New function.
5065 * Makefile.in (linux-i386-low.o, linux-mips-low.o)
5066 (linux-x86-64-low.o): Update.
5067
0050a760
DJ
50682006-03-15 Daniel Jacobowitz <dan@codesourcery.com>
5069
5070 * configure.ac: Remove checks for prfpregset_t.
5071 * gdb_proc_service.h: New file.
5072 * linux-i386-low.c, linux-x86-64-low.c, thread-db.c: Use the
5073 new "gdb_proc_service.h".
5074 * proc-service.c: Likewise.
5075 (ps_pglobal_lookup, ps_pdread, ps_pdwrite): Use psaddr_t.
5076 (ps_lgetfpregs, ps_lsetfpregs): Use a void* argument.
5077 * Makefile.in (gdb_proc_service_h): Updated.
5078 * configure, config.in: Regenerated.
5079
b92a518e
DJ
50802006-03-03 Daniel Jacobowitz <dan@codesourcery.com>
5081
5082 * remote-utils.c (prepare_resume_reply): Move declaration
5083 of gdb_id_from_wait to the top of the block.
5084
545587ee
DJ
50852006-02-15 Daniel Jacobowitz <dan@codesourcery.com>
5086
5087 * linux-low.c (regsets_store_inferior_registers): Read the regset
5088 from the target before filling it.
5089
9db87ebd
DJ
50902006-02-08 Daniel Jacobowitz <dan@codesourcery.com>
5091
5092 * server.c (attach_inferior): Return SIGTRAP for a successful
5093 attach.
5094
dd24457d
DJ
50952006-02-01 Daniel Jacobowitz <dan@codesourcery.com>
5096
5097 * Makefile.in (OBS): Add version.o.
5098 (STAGESTUFF): Delete.
5099 (version.o): Add dependencies.
5100 (version.c): Replace rule.
5101 (clean): Remove version.c.
5102 * server.c (gdbserver_version): New.
5103 (gdbserver_usage): Use printf.
5104 (main): Handle --version and --help.
5105 * server.h (version, host_name): Add declarations.
5106
6f0f660e
EZ
51072005-12-23 Eli Zaretskii <eliz@gnu.org>
5108
889bf7c5
PA
5109 * linux-arm-low.c:
5110 * linux-arm-low.c:
5111 * inferiors.c:
5112 * i387-fp.h:
5113 * i387-fp.c:
5114 * gdbreplay.c:
5115 * regcache.c:
5116 * proc-service.c:
5117 * mem-break.h:
5118 * mem-break.c:
5119 * linux-x86-64-low.c:
5120 * linux-sh-low.c:
5121 * linux-s390-low.c:
5122 * linux-ppc64-low.c:
5123 * linux-ppc-low.c:
5124 * linux-mips-low.c:
5125 * linux-m68k-low.c:
5126 * linux-m32r-low.c:
5127 * linux-low.h:
5128 * linux-low.c:
5129 * linux-ia64-low.c:
5130 * linux-i386-low.c:
5131 * linux-crisv32-low.c:
5132 * thread-db.c:
5133 * terminal.h:
5134 * target.h:
5135 * target.c:
5136 * server.h:
5137 * server.c:
5138 * remote-utils.c:
5139 * regcache.h:
5140 * utils.c:
5141 * Makefile.in:
5142 * configure.ac:
6f0f660e
EZ
5143 * gdbserver.1: Add (C) after Copyright. Update the FSF
5144 address.
5145
9d1fb177
DJ
51462005-11-13 Daniel Jacobowitz <dan@codesourcery.com>
5147
5148 * linux-arm-low.c (arm_eabi_breakpoint): New variable.
5149 (arm_breakpoint_at): Recognize both breakpoints.
5150 (the_low_target): Use the correct breakpoint instruction.
5151
011a70c2
DJ
51522005-11-02 Daniel Jacobowitz <dan@codesourcery.com>
5153
5154 * configure.srv (x86_64-*-linux*): Turn on thread_db support.
5155 * linux-x86-64-low.c (x86_64_breakpoint, x86_64_breakpoint_len)
5156 (x86_64_get_pc, x86_64_set_pc, x86_64_breakpoint_at): New.
5157 (the_low_target): Update.
5158
7fb85e41
AS
51592005-10-25 Andreas Schwab <schwab@suse.de>
5160
5161 * server.c (main): Allocate mem_buf with PBUFSIZ bytes.
5162
5163 * linux-ia64-low.c (ia64_regmap): Remove NAT registers.
5164 (ia64_num_regs): Reduce to 462.
5165
3db0444b
DJ
51662005-09-17 Daniel Jacobowitz <dan@codesourcery.com>
5167
5168 * acinclude.m4: Correct quoting.
5169 * aclocal.m4: Regenerated.
5170
5171 Suggested by SZOKOVACS Robert <szo@ies.hu>:
5172 * thread-db.c (thread_db_err_str): Handle TD_VERSION.
5173 (thread_db_init): Call thread_db_err_str.
5174 * configure.ac: Check for TD_VERSION.
5175 * config.in, configure: Regenerated.
5176
bee0189a
DJ
51772005-07-31 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
5178
5179 * server.h (error, fatal, warning): Add ATTR_FORMAT.
5180
e9d25b98
DJ
51812005-07-13 Daniel Jacobowitz <dan@codesourcery.com>
5182
5183 * configure.ac: Define HAVE_LINUX_REGSETS even if PTRACE_GETREGS
5184 is not available. Define HAVE_PTRACE_GETREGS if it is.
5185 * config.in, configure: Regenerated.
5186 * configure.srv: Set srv_linux_regsets for PowerPC and PowerPC64.
5187 * linux-i386-low.c, linux-m68k-low.c: Update to use
5188 HAVE_PTRACE_GETREGS.
5189 * linux-low.c (regsets_fetch_inferior_registers)
5190 (regsets_store_inferior_registers): Only return 0 if we processed
5191 GENERAL_REGS.
5192 * linux-ppc-low.c (ppc_fill_gregset, target_regsets): New.
5193 * linux-ppc64-low.c (ppc_fill_gregset, target_regsets): New.
5194
a06660f7
DJ
51952005-07-13 Daniel Jacobowitz <dan@codesourcery.com>
5196
5197 * inferiors.c (struct thread_info): Add gdb_id.
5198 (add_thread): Add gdb_id argument.
5199 (thread_id_to_gdb_id, thread_to_gdb_id, gdb_id_to_thread_id): New.
5200 * linux-low.c (linux_create_inferior, linux_attach_lwp): Update
5201 calls to add_thread.
5202 * remote-utils.c (prepare_resume_reply: Use thread_to_gdb_id.
5203 * server.c (handle_query): Use thread_to_gdb_id.
5204 (handle_v_cont, main): Use gdb_id_to_thread_id.
5205 * server.h (add_thread): Update prototype.
5206 (thread_id_to_gdb_id, thread_to_gdb_id, gdb_id_to_thread_id): New
5207 prototypes.
5208
5a1f5858
DJ
52092005-07-13 Daniel Jacobowitz <dan@codesourcery.com>
5210
5211 * linux-low.c (fetch_register, usr_store_inferior_registers): Handle
5212 left-padded registers.
5213 * linux-low.h (struct linux_target_ops): Add left_pad_xfer.
5214 * linux-ppc64-low.c (the_low_target): Set left_pad_xfer.
5215
e122f1f5
SE
52162005-07-01 Steve Ellcey <sje@cup.hp.com>
5217
5218 * configure.ac (BFD_NEED_DECLARATION): Replace with AC_CHECK_DECLS.
5219 * configure: Regenerate.
5220 * config.in: Regenerate.
5221 * server.h (NEED_DECLARATION_STRERROR):
5222 Replace with !HAVE_DECL_STRERROR.
5223
d592fa2f
DJ
52242005-06-16 Daniel Jacobowitz <dan@codesourcery.com>
5225
5226 * linux-low.c (linux_wait, linux_send_signal): Don't test
5227 an unsigned long variable for > 0 if it could be MAX_ULONG.
5228 * server.c (myresume): Likewise.
5229 * target.c (set_desired_inferior): Likewise.
5230
ccbd4912
MK
52312005-06-13 Mark Kettenis <kettenis@gnu.org>
5232
5233 * configure.ac: Simplify and improve check for socklen_t.
5234 * configure, config.in: Regenerate.
5235
f450004a
DJ
52362005-06-12 Daniel Jacobowitz <dan@codesourcery.com>
5237
5238 * acconfig.h: Remove.
5239 * configure.ac: Add a test for socklen_t. Use three-argument
5240 AC_DEFINE throughout.
5241 * config.in: Regenerated using autoheader 2.59.
5242 * configure: Regenerated.
5243
5244 * gdbreplay.c (socklen_t): Provide a default.
5245 (remote_open): Use socklen_t.
5246 * remote-utils.c (socklen_t): Provide a default.
5247 (remote_open): Use socklen_t.
5248 (convert_int_to_ascii, convert_ascii_to_int, decode_M_packet): Use
5249 unsigned char.
5250
5251 * i387-fp.c (struct i387_fsave, struct i387_fxsave): Use unsigned
5252 char for buffers.
5253 * linux-low.c (linux_read_memory, linux_write_memory)
5254 (linux_read_auxv): Likewise.
5255 * mem-break.c (breakpoint_data, set_breakpoint_data, check_mem_read)
5256 (check_mem_write): Likewise.
5257 * mem-break.h (set_breakpoint_data, check_mem_read, check_mem_write):
5258 Likewise.
5259 * regcache.c (struct inferior_rgcache_data, registers_to_string)
5260 (registers_from_string, register_data): Likewise.
5261 * server.c (handle_query, main): Likewise.
5262 * server.h (convert_ascii_to_int, convert_int_to_ascii)
5263 (decode_M_packet): Likewise.
5264 * target.c (read_inferior_memory, write_inferior_memory): Likewise.
5265 * target.h (struct target_ops): Update read_memory, write_memory,
5266 and read_auxv.
5267 (read_inferior_memory, write_inferior_memory): Update.
5268 * linux-low.h (struct linux_target_ops): Change type of breakpoint
5269 to unsigned char *.
5270 * linux-arm-low.c, linux-cris-low.c, linux-crisv32-low.c,
5271 linux-i386-low.c, linux-m32r-low.c, linux-m68k-low.c,
5272 linux-mips-low.c, linux-ppc-low.c, linux-ppc64-low.c,
5273 linux-s390-low.c, linux-sh-low.c: Update for changes in
5274 read_inferior_memory and the_low_target->breakpoint.
5275
eee84df1
DJ
52762005-05-28 Daniel Jacobowitz <dan@codesourcery.com>
5277
5278 * Makefile.in (SFILES): Add linux-ppc64-low.c.
5279 (linux-ppc64-low.o, reg-ppc64.c, reg-ppc64.o): New targets.
5280 * configure.srv: Add powerpc64-*-linux*.
5281 * linux-ppc64-low.c: New file.
5282
45b134e5
OF
52832005-05-23 Orjan Friberg <orjanf@axis.com>
5284
5285 * linux-cris-low.c: New file with support for CRIS.
5286 * linux-crisv32-low.c: Ditto for CRISv32.
5287 * Makefile.in (SFILES): Add linux-cris-low.c, linux-crisv32-low.c.
5288 (clean): Add reg-cris.c and reg-crisv32.c.
889bf7c5 5289 Add linux-cris-low.o, linux-crisv32-low.o, reg-cris.o, reg-cris.c,
45b134e5
OF
5290 reg-crisv32.o, and reg-crisv32.c to make rules.
5291 * configure.srv: Add cris-*-linux* and crisv32-*-linux* to list of
5292 recognized targets.
5293
48d93c75
UW
52942005-05-16 Ulrich Weigand <uweigand@de.ibm.com>
5295
5296 * linux-low.c (fetch_register): Ensure buffer size is a multiple
5297 of sizeof (PTRACE_XFER_TYPE).
5298 (usr_store_inferior_registers): Likewise. Zero out excess bytes.
5299
e013ee27
OF
53002005-05-12 Orjan Friberg <orjanf@axis.com>
5301
889bf7c5 5302 * target.h (struct target_ops): Add insert_watchpoint,
e013ee27
OF
5303 remove_watchpoint, stopped_by_watchpoint, stopped_data_address function
5304 pointers for hardware watchpoint support.
5305 * linux-low.h (struct linux_target_ops): Ditto.
5306 * linux-low.c (linux_insert_watchpoint, linux_remove_watchpoint)
5307 (linux_stopped_by_watchpoint, linux_stopped_data_address): New. Add
5308 to linux_target_ops.
5309 * remote-utils.c (prepare_resume_reply): Add watchpoint information to
5310 reply packet.
5311 * server.c (main): Recognize 'Z' and 'z' packets.
5312
b0ded00b
UW
53132005-05-10 Ulrich Weigand <uweigand@de.ibm.com>
5314
5315 * linux-s390-low.c (s390_breakpoint, s390_breakpoint_len): Define.
5316 (s390_get_pc, s390_set_pc, s390_breakpoint_at): New functions.
5317 (the_low_target): Add new members.
5318
8643e2ad
DJ
53192005-05-04 Daniel Jacobowitz <dan@codesourcery.com>
5320
5321 * proc-service.c (ps_lgetregs): Search all_processes instead of
5322 all_threads.
5323
fc620387
DJ
53242005-05-04 Daniel Jacobowitz <dan@codesourcery.com>
5325
5326 * server.c (start_inferior): Change return type to int.
5327 (attach_inferior): Change sigptr to int *.
5328 (handle_v_cont, handle_v_requests): Change signal to int *.
5329 (main): Change signal to int.
5330
53312005-04-15 Kei Sakamoto <sakamoto.kei@renesas.com>
7cfbc4a0
KI
5332
5333 * Makefile.in: Add linux-m32r-low.o, reg-m32r.c and reg-m32r.o.
5334 * configure.srv: Add m32r*-*-linux*.
5335 * linux-m32r-low.c: New file.
5336
e0e76420
DJ
53372005-03-04 Daniel Jacobowitz <dan@codesourcery.com>
5338
5339 * Makefile.in (stamp-h): Set CONFIG_HEADERS explicitly.
5340
a1928bad
DJ
53412005-03-03 Daniel Jacobowitz <dan@codesourcery.com>
5342
5343 * inferiors.c (change_inferior_id, add_thread, find_inferior_id):
5344 Take unsigned long arguments for PIDs.
5345 * linux-low.c (add_process, linux_attach_lwp, linux_attach)
5346 (linux_thread_alive, linux_wait_for_event, kill_lwp, send_sigstop)
5347 (wait_for_sigstop, linux_resume_one_process)
5348 (regsets_fetch_inferior_registers, linux_send_signal)
5349 (linux_read_auxv): Likewise. Update the types of variables holding
5350 PIDs. Update format string specifiers.
5351 * linux-low.h (struct process_info, linux_attach_lwp): Likewise.
5352 * remote-utils.c (prepare_resume_reply): Likewise.
5353 * server.c (cont_thread, general_thread, step_thread)
5354 (thread_from_wait, old_thread_from_wait, signal_pid): Change type to
5355 unsigned long.
5356 (handle_query): Update format specifiers.
5357 (handle_v_cont, main): Use strtoul for thread IDs.
5358 * server.h (struct inferior_list_entry): Use unsigned long for ID.
5359 (add_thread, find_inferior_id, change_inferior_id, cont_thread)
5360 (general_thread, step_thread, thread_from_wait)
5361 (old_thread_from_wait): Update.
5362 * target.h (struct thread_resume): Use unsigned long for THREAD.
5363 (struct target_ops): Use unsigned long for arguments to attach and
5364 thread_alive.
5365
dcdb98d2
DJ
53662005-02-24 Daniel Jacobowitz <dan@codesourcery.com>
5367
5368 * acinclude.m4: Include bfd/bfd.m4 directly.
5369 * configure.ac: Use AC_ARG_PROGRAM. Suggested by Aron Griffis
5370 <agriffis@toolchain.org>.
5371 * aclocal.m4, configure: Regenerated.
5372
bec39cab
AC
53732005-01-07 Andrew Cagney <cagney@gnu.org>
5374
5375 * configure.ac: Rename configure.in, require autoconf 2.59.
5376 * configure: Re-generate.
5377
434c4c77
DJ
53782004-12-08 Daniel Jacobowitz <dan@debian.org>
5379
5380 * acinclude.m4 (SRV_CHECK_THREAD_DB): Add ps_get_thread_area. Reset
5381 LIBS when finished.
5382 * aclocal.m4: Regenerated.
5383 * configure: Regenerated.
5384
db1d3e1b
AS
53852004-11-21 Andreas Schwab <schwab@suse.de>
5386
5387 * linux-m68k-low.c (m68k_num_gregs): Define.
5388 (m68k_fill_gregset, m68k_store_gregset, m68k_fill_fpregset)
5389 (m68k_store_fpregset, target_regsets) [HAVE_LINUX_REGSETS]: New.
5390 (m68k_breakpoint, m68k_breakpoint_len, m68k_get_pc, m68k_set_pc)
5391 (m68k_breakpoint_at): New. Add to the_low_target.
5392
5393 * configure.srv (m68*-*-linux*): Set srv_linux_regsets and
5394 srv_linux_thread_db to yes.
5395
43360365
JB
53962004-10-20 Joel Brobecker <brobecker@gnat.com>
5397
5398 * linux-x86-64-low.c (ARCH_SET_GS): Add definition if missing.
5399 (ARCH_SET_FS): Likewise.
5400 (ARCH_GET_FS): Likewise.
5401 (ARCH_GET_GS): Likewise.
5402
fd500816
DJ
54032004-10-16 Daniel Jacobowitz <dan@debian.org>
5404
5405 * linux-i386-low.c (ps_get_thread_area): New.
5406 * linux-x86-64-low.c (ps_get_thread_area): New.
5407 * linux-low.c: Include <sys/syscall.h>.
5408 (linux_kill_one_process): Don't kill the first thread here.
5409 (linux_kill): Kill the first thread here.
5410 (kill_lwp): New function.
5411 (send_sigstop, linux_send_signal): Use it.
5412 * proc-service.c: Clean up #ifdefs.
5413 (fpregset_info): Delete.
5414 (ps_lgetregs): Update and enable implementation.
5415 (ps_lsetregs, ps_lgetfpregs, ps_lsetfpregs): Remove disabled
5416 implementations.
5417 * remote-utils.c (struct sym_cache, symbol_cache): New.
5418 (input_interrupt): Print a clearer message.
5419 (async_io_enabled): New variable.
5420 (enable_async_io, disable_async_io): Use it. Update comments.
5421 (look_up_one_symbol): Use the symbol cache.
5422 * thread-db.c (thread_db_look_up_symbols): New function.
5423 (thread_db_init): Update comments. Call thread_db_look_up_symbols.
5424
f6de3c42
DJ
54252004-10-16 Daniel Jacobowitz <dan@debian.org>
5426
5427 * configure.in: Test for -rdynamic.
5428 * configure: Regenerated.
5429 * Makefile (INTERNAL_LDFLAGS): New.
5430 (gdbserver, gdbreplay): Use it.
5431
2c0fc042
AC
54322004-09-02 Andrew Cagney <cagney@gnu.org>
5433
5434 * Makefile.in (TAGS): Replace TM_FILE with DEPRECATED_TM_FILE.
5435
075b3282
DJ
54362004-03-23 Daniel Jacobowitz <drow@mvista.com>
5437
5438 * linux-low.c (linux_wait): Clear all_processes list also.
5439
fa6a77dc
DJ
54402004-03-12 Daniel Jacobowitz <drow@mvista.com>
5441
5442 * linux-low.c: Include <errno.h>. Remove extern declaration of
5443 errno.
5444
6d782a97
DJ
54452004-03-12 Daniel Jacobowitz <drow@mvista.com>
5446
5447 * gdbreplay.c, server.h, utils.c: Update copyright years.
5448
3a7fb99b
DJ
54492004-03-04 Nathan J. Williams <nathanw@wasabisystems.com>
5450
5451 * server.c (main): Print child status or termination signal from
5452 variable 'signal', not 'sig'.
5453
c3e735a6
DJ
54542004-03-04 Nathan J. Williams <nathanw@wasabisystems.com>
5455
5456 * linux-low.c (linux_read_memory): Change return type to
5457 int. Check for and return error from ptrace().
5458 * target.c (read_inferior_memory): Change return type to int. Pass
5459 back return status from the_target->read_memory().
5460 * target.h (struct target_ops): Adapt *read_memory() prototype.
5461 Update comment.
5462 (read_inferior_memory): Adapt prototype.
5463 * server.c (main): Return an error packet if
5464 read_inferior_memory() returns an error.
5465
a59d1c82
DJ
54662004-03-04 Daniel Jacobowitz <drow@mvista.com>
5467
5468 * Makefile.in (distclean): Remove config.h, stamp-h, and config.log.
5469 Unify with other clean targets.
5470
dc3f8883
DJ
54712004-02-29 Daniel Jacobowitz <drow@mvista.com>
5472
5473 * server.c (handle_v_cont): Call set_desired_inferior.
5474
89a208da
DJ
54752004-02-29 Daniel Jacobowitz <drow@mvista.com>
5476
5477 * remote-utils.c (prepare_resume_reply): Always supply "thread:".
5478
62ea82f5
DJ
54792004-02-29 Daniel Jacobowitz <drow@mvista.com>
5480
5481 * linux-low.c (linux_wait): Unblock async I/O.
5482 (linux_resume): Block and enable async I/O.
5483 * remote-utils.c (block_async_io, unblock_async_io): New functions.
5484 * server.h (block_async_io, unblock_async_io): Add prototypes.
5485
6910d122
DJ
54862004-02-29 Daniel Jacobowitz <drow@mvista.com>
5487
5488 * remote-utils.c (remote_open): Print a status notice after
5489 opening a TCP port.
5490 * server.c (attach_inferior): Print a status notice after
5491 attaching.
5492
54932004-02-29 Daniel Jacobowitz <drow@mvista.com>
d677d77d
DJ
5494
5495 * linux-arm-low.c (arm_get_pc): Print out stop PC in debug mode.
5496
c89dc5d4
DJ
54972004-02-26 Daniel Jacobowitz <drow@mvista.com>
5498
5499 * remote-utils.c (write_enn): Use "E01" instead of "ENN" for the
5500 error packet.
5501 * server.c, target.h: Update copyright years.
5502
4b8dad4a
RM
55032004-02-25 Roland McGrath <roland@redhat.com>
5504
5505 * target.h (struct target_ops): New member `read_auxv'.
5506 * server.c (handle_query): Handle qPart:auxv:read: query using that.
5507 * linux-low.c (linux_read_auxv): New function.
5508 (linux_target_ops): Initialize `read_auxv' member to that.
5509
d7446758
JB
55102004-02-17 Ulrich Weigand <Ulrich.Weigand@de.ibm.com>
5511
5512 Committed by Jim Blandy <jimb@redhat.com>.
5513
5514 * linux-s390-low.c (s390_num_regs): Update.
4b8dad4a 5515 (s390_regmap): Remove control registers. Use __s390x__ predefine
d7446758
JB
5516 instead of GPR_SIZE to distiguish s390 and s390x targets.
5517
5544ad89
DJ
55182004-01-31 Daniel Jacobowitz <drow@mvista.com>
5519
5520 * linux-low.c: Update copyright year.
5521 (check_removed_breakpoint): Clear pending_is_breakpoint.
5522 (linux_set_resume_request, linux_queue_one_thread)
5523 (resume_status_pending_p): New functions.
5524 (linux_continue_one_thread): Use process->resume.
5525 (linux_resume): Only resume threads if there are no pending events.
5526 * linux-low.h (struct process_info): Add resume request
5527 pointer.
5528
2a68b70e
DJ
55292004-01-30 Daniel Jacobowitz <drow@mvista.com>
5530
5531 * regcache.c (new_register_cache): Clear the allocated register
5532 buffer. Suggested by Atsushi Nemoto <anemo@mba.ocn.ne.jp>.
5533
64386c31
DJ
55342003-10-13 Daniel Jacobowitz <drow@mvista.com>
5535
5536 * linux-low.c (linux_resume): Take a struct thread_resume *
5537 argument.
5538 (linux_wait): Update call.
5539 (resume_ptr): New static variable.
5540 (linux_continue_one_thread): Renamed from
5541 linux_continue_one_process. Use resume_ptr.
5542 (linux_resume): Use linux_continue_one_thread.
5543 * server.c (handle_v_cont, handle_v_requests): New functions.
5544 (myresume): New function.
5545 (main): Handle 'v' case.
5546 * target.h (struct thread_resume): New type.
5547 (struct target_ops): Change argument of "resume" to struct
5548 thread_resume *.
5549 (myresume): Delete macro.
5550
c938e9b0
L
55512003-08-08 H.J. Lu <hongjiu.lu@intel.com>
5552
5553 * Makefile.in (install-only): Create dest dir. Support DESTDIR.
5554 (uninstall): Support DESTDIR.
5555
7f313d07
BC
5556Mon Jul 21 20:09:34 UTC 2003 Brendan Conoboy <blc@redhat.com>
5557
5558 * configure.srv: Add xscale*linux copy of arm*linux entry.
5559
3b2fc2ea
DJ
55602003-07-24 Daniel Jacobowitz <drow@mvista.com>
5561
5562 * linux-arm-low.c (arm_reinsert_addr): New function.
5563 (the_low_target): Add arm_reinsert_addr.
5564
1c0a559e
MK
55652003-07-08 Mark Kettenis <kettenis@gnu.org>
5566
5567 * mem-break.c: Remove whitespace at end of file.
5568
43d5792c
DJ
55692003-06-28 Daniel Jacobowitz <drow@mvista.com>
5570
5571 * configure.in: Check whether we need to prototype strerror.
5572 * server.h: Optionally prototype strerror.
5573 * gdbreplay.c (perror_with_name): Use strerror.
5574 * linux-low.c (linux_attach_lwp): Use strerror.
5575 * utils.c (perror_with_name): Use strerror.
5576 * config.in, configure: Regenerated.
5577
c8a86edf
DJ
55782003-06-28 Daniel Jacobowitz <drow@mvista.com>
5579
5580 * linux-sh-low.c (sh_regmap): Fix FP register offsets, reported by
5581 SUGIOKA Toshinobu <sugioka@itonet.co.jp>.
5582
73d37363
DJ
55832003-06-20 Daniel Jacobowitz <drow@mvista.com>
5584
5585 * Makefile.in (SFILES): Update.
5586 * low-hppabsd.c, low-lynx.c, low-nbsd.c, low-sim.c, low-sparc.c,
5587 low-sun3.c: Remove files.
5588
6ad8ae5c
DJ
55892003-06-17 Daniel Jacobowitz <drow@mvista.com>
5590
5591 * linux-low.c: Move comment to linux_thread_alive where it belonged.
5592 (linux_detach_one_process, linux_detach): New functions.
5593 (linux_target_ops): Add linux_detach.
5594 * server.c (main): Handle 'D' packet.
5595 * target.h (struct target_ops): Add "detach" member.
5596 (detach_inferior): Define.
5597
1581182a
MK
55982003-06-13 Mark Kettenis <kettenis@gnu.org>
5599
5600 From Kelley Cook <kelleycook@wideopenwest.com>:
5601 * configure.srv: Accept i[34567]86 variants.
5602
e5379b03
DJ
56032003-06-05 Daniel Jacobowitz <drow@mvista.com>
5604
5605 * linux-low.c (linux_wait_for_event): Correct comment typos.
5606 (linux_resume_one_process): Call check_removed_breakpoint.
5607 (linux_send_signal): New function.
5608 (linux_target_ops): Add linux_send_signal.
5609 * remote-utils.c (putpkt, input_interrupt): Use send_signal instead
5610 of kill.
5611 * target.h (struct target_ops): Add send_signal.
5612
2ff29de4
JB
56132003-05-29 Jim Blandy <jimb@redhat.com>
5614
5615 * linux-low.c (usr_store_inferior_registers): Transfer buf in
5616 PTRACE_XFER_TYPE-sized chunks, not int-sized chunks. Otherwise,
5617 if 'int' is smaller than PTRACE_XFER_TYPE, you end up throwing
5618 away part of the register's value.
5619
254787d4
DJ
56202003-03-26 Daniel Jacobowitz <drow@mvista.com>
5621
5622 * linux-low.c (linux_create_inferior): Use __SIGRTMIN.
5623 (linux_wait_for_event, linux_init_signals): Likewise.
5624
94e10508
DJ
56252003-03-17 Daniel Jacobowitz <drow@mvista.com>
5626
5627 * configure.in: Check for stdlib.h.
5628 * configure: Regenerated.
5629 * config.in: Regenerated.
5630
4c0711e0
DJ
56312003-01-04 Andreas Schwab <schwab@suse.de>
5632
5633 * linux-m68k-low.c (m68k_num_regs): Define to 29 instead of 31.
5634
ef66e766
AC
56352003-01-02 Andrew Cagney <ac131313@redhat.com>
5636
5637 * Makefile.in: Remove obsolete code.
5638
a1358604
DJ
56392002-11-20 Daniel Jacobowitz <drow@mvista.com>
5640
5641 * linux-s390-low.c (s390_regmap): Check GPR_SIZE instead of
5642 defined(PT_FPR0_HI).
5643
23ce3b1c
DJ
56442002-11-17 Stuart Hughes <seh@zee2.com>
5645
5646 * linux-arm-low.c (arm_num_regs): Increase.
5647 (arm_regmap): Include status register.
5648
56492002-11-17 Daniel Jacobowitz <drow@mvista.com>
5650
5651 * linux-low.c (register_addr): Remove incorrect -1 check.
5652
a9fa9f7d
DJ
56532002-08-29 Daniel Jacobowitz <drow@mvista.com>
5654
5655 * linux-low.c (linux_create_inferior): Call setpgid. Return
5656 the new PID.
5657 (unstopped_p, linux_signal_pid): Remove.
5658 (linux_target_ops): Remove linux_signal_pid.
5659 * remote-utils.c (putpkt, input_interrupt): Use signal_pid
5660 global instead of target method.
5661 * target.h (struct target_ops): Remove signal_pid. Update comment
5662 for create_inferior.
5663 * server.c (signal_pid): New variable.
5664 (create_inferior): Set signal_pid. Block SIGTTOU and SIGTTIN in
4b8dad4a 5665 gdbserver. Set the child to be the foreground process group.
a9fa9f7d
DJ
5666 (attach_inferior): Set signal_pid.
5667
17574093
DJ
56682002-08-23 Daniel Jacobowitz <drow@mvista.com>
5669
5670 * ChangeLog: New file, with entries from gdb/ChangeLog after GDB 5.2.
5671
56722002-08-20 Jim Blandy <jimb@redhat.com>
5673
5674 * Makefile.in (LDFLAGS): Allow the configure script to establish a
5675 default for this.
5676
56772002-08-01 Andrew Cagney <cagney@redhat.com>
5678
5679 * Makefile.in: Make chill references obsolete.
5680
56812002-07-24 Kevin Buettner <kevinb@redhat.com>
5682
5683 * configure.in (unistd.h): Add to AC_CHECK_HEADERS list.
5684 * configure: Regenerate.
5685 * config.in: Regenerate.
5686
56872002-07-09 David O'Brien <obrien@FreeBSD.org>
5688
5689 * gdbreplay.c (stdlib.h, unistd.h): Conditionaly include.
5690 (perror_with_name, remote_close, remote_open, expect, play): Static.
5691
56922002-07-04 Michal Ludvig <mludvig@suse.cz>
5693
4b8dad4a 5694 * linux-x86-64-low.c (x86_64_regmap): Make it an array of
17574093
DJ
5695 byte offsets instead of an array of indexes.
5696 (x86_64_store_gregset, x86_64_store_fpregset): Parameter made const.
5697
56982002-06-13 Daniel Jacobowitz <drow@mvista.com>
5699
5700 * regcache.c: Add comment.
5701
57022002-06-11 Daniel Jacobowitz <drow@mvista.com>
5703
5704 * thread-db.c: New file.
5705 * proc-service.c: New file.
5706 * acinclude.m4: New file.
5707 * Makefile.in: Add GDBSERVER_LIBS, gdb_proc_service_h,
5708 proc-service.o, and thread-db.o.
5709 (linux-low.o): Add USE_THREAD_DB.
5710 * acconfig.h: Add HAVE_PRGREGSET_T, HAVE_PRFPREGSET_T,
5711 HAVE_LWPID_T, HAVE_PSADDR_T, and PRFPREGSET_T_BROKEN.
5712 * aclocal.m4: Regenerated.
5713 * config.in: Regenerated.
5714 * configure: Regenerated.
5715 * configure.in: Check for proc_service.h, sys/procfs.h,
5716 thread_db.h, and linux/elf.h headrs.
5717 Check for lwpid_t, psaddr_t, prgregset_t, prfpregset_t, and
5718 PRFPREGSET_T_BROKEN. Introduce srv_thread_depfiles and USE_THREAD_DB.
5719 Check for -lthread_db and thread support.
5720 * configure.srv: Enable thread_db support for ARM, i386, MIPS,
5721 PowerPC, and SuperH.
5722 * i387-fp.c: Constify arguments.
5723 * i387-fp.h: Likewise.
5724 * inferiors.c: (struct thread_info): Renamed from
5725 `struct inferior_info'. Remove PID member. Use generic inferior
5726 list header. All uses updated.
5727 (inferiors, signal_pid): Removed.
5728 (all_threads): New variable.
5729 (get_thread): Define.
5730 (add_inferior_to_list): New function.
5731 (for_each_inferior): New function.
5732 (change_inferior_id): New function.
5733 (add_inferior): Removed.
5734 (remove_inferior): New function.
5735 (add_thread): New function.
5736 (free_one_thread): New function.
5737 (remove_thread): New function.
5738 (clear_inferiors): Use for_each_inferior and free_one_thread.
5739 (find_inferior): New function.
5740 (find_inferior_id): New function.
5741 (inferior_target_data): Update argument type.
5742 (set_inferior_target_data): Likewise.
5743 (inferior_regcache_data): Likewise.
5744 (set_inferior_regcache_data): Likewise.
5745 * linux-low.c (linux_bp_reinsert): Remove.
5746 (all_processes, stopping_threads, using_thrads)
5747 (struct pending_signals, debug_threads, pid_of): New.
5748 (inferior_pid): Replace with macro.
5749 (struct inferior_linux_data): Remove.
5750 (get_stop_pc, add_process): New functions.
5751 (linux_create_inferior): Restore SIGRTMIN+1 before calling exec.
5752 Use add_process and add_thread.
5753 (linux_attach_lwp): New function, based on old linux_attach. Use
5754 add_process and add_thread. Set stop_expected for new threads.
5755 (linux_attach): New function.
5756 (linux_kill_one_process): New function.
5757 (linux_kill): Kill all LWPs.
5758 (linux_thread_alive): Use find_inferior_id.
5759 (check_removed_breakpoints, status_pending_p): New functions.
5760 (linux_wait_for_process): Renamed from linux_wait_for_one_inferior.
5761 Update. Use WNOHANG. Wait for cloned processes also. Update process
5762 struct for the found process.
5763 (linux_wait_for_event): New function.
5764 (linux_wait): Use it. Support LWPs.
5765 (send_sigstop, wait_for_sigstop, stop_all_processes)
5766 (linux_resume_one_process, linux_continue_one_process): New functions.
5767 (linux_resume): Support LWPs.
5768 (REGISTER_RAW_SIZE): Remove.
5769 (fetch_register): Use register_size instead. Call supply_register.
5770 (usr_store_inferior_registers): Likewise. Call collect_register.
5771 Fix recursive case.
5772 (regsets_fetch_inferior_registers): Improve error message.
5773 (regsets_store_inferior_registers): Add debugging.
5774 (linux_look_up_symbols): Call thread_db_init if USE_THREAD_DB.
5775 (unstopped_p, linux_signal_pid): New functions.
5776 (linux_target_ops): Add linux_signal_pid.
5777 (linux_init_signals): New function.
5778 (initialize_low): Call it. Initialize using_threads.
5779 * regcache.c (inferior_regcache_data): Add valid
5780 flag.
5781 (get_regcache): Fetch registers lazily. Add fetch argument
5782 and update all callers.
5783 (regcache_invalidate_one, regcache_invalidate): New
5784 functions.
5785 (new_register_cache): Renamed from create_register_cache.
5786 Return the new regcache.
5787 (free_register_cache): Change argument to a void *.
5788 (registers_to_string, registers_from_string): Call get_regcache
5789 with fetch flag set.
5790 (register_data): Make static. Pass fetch flag to get_regcache.
5791 (supply_register): Call get_regcache with fetch flag clear.
5792 (collect_register): Call get_regcache with fetch flag set.
5793 (collect_register_as_string): New function.
5794 * regcache.h: Update.
5795 * remote-utils.c (putpkt): Flush after debug output and use
5796 stderr.
5797 Handle input interrupts while waiting for an ACK.
5798 (input_interrupt): Use signal_pid method.
5799 (getpkt): Flush after debug output and use stderr.
5800 (outreg): Use collect_register_as_string.
5801 (new_thread_notify, dead_thread_notify): New functions.
5802 (prepare_resume_reply): Check using_threads. Set thread_from_wait
5803 and general_thread.
5804 (look_up_one_symbol): Flush after debug output.
5805 * server.c (step_thread, server_waiting): New variables.
5806 (start_inferior): Don't use signal_pid. Update call to mywait.
5807 (attach_inferior): Update call to mywait.
5808 (handle_query): Handle qfThreadInfo and qsThreadInfo.
5809 (main): Don't fetch/store registers explicitly. Use
5810 set_desired_inferior. Support proposed ``Hs'' packet. Update
5811 calls to mywait.
5812 * server.h: Update.
5813 (struct inferior_list, struct_inferior_list_entry): New.
5814 * target.c (set_desired_inferior): New.
5815 (write_inferior_memory): Constify.
5816 (mywait): New function.
5817 * target.h: Update.
5818 (struct target_ops): New signal_pid method.
5819 (mywait): Removed macro, added prototype.
5820
5821 * linux-low.h (regset_func): Removed.
5822 (regset_fill_func, regset_store_func): New.
5823 (enum regset_type): New.
5824 (struct regset_info): Add type field. Use new operation types.
5825 (struct linux_target_ops): stop_pc renamed to get_pc.
5826 Add decr_pc_after_break and breakpoint_at.
5827 (get_process, get_thread_proess, get_process_thread)
5828 (strut process_info, all_processes, linux_attach_lwp)
5829 (thread_db_init): New.
5830
5831 * linux-arm-low.c (arm_get_pc, arm_set_pc,
5832 arm_breakpoint, arm_breakpoint_len, arm_breakpoint_at): New.
5833 (the_low_target): Add new members.
5834 * linux-i386-low.c (i386_store_gregset, i386_store_fpregset)
5835 (i386_store_fpxregset): Constify.
5836 (target_regsets): Add new kind identifier.
5837 (i386_get_pc): Renamed from i386_stop_pc. Simplify.
5838 (i386_set_pc): Add debugging.
5839 (i386_breakpoint_at): New function.
5840 (the_low_target): Add new members.
5841 * linux-mips-low.c (mips_get_pc, mips_set_pc)
5842 (mips_breakpoint, mips_breakpoint_len, mips_reinsert_addr)
5843 (mips_breakpoint_at): New.
5844 (the_low_target): Add new members.
5845 * linux-ppc-low.c (ppc_get_pc, ppc_set_pc)
5846 (ppc_breakpoint, ppc_breakpoint_len, ppc_breakpoint_at): New.
5847 (the_low_target): Add new members.
5848 * linux-sh-low.c (sh_get_pc, sh_set_pc)
5849 (sh_breakpoint, sh_breakpoint_len, sh_breakpoint_at): New.
5850 (the_low_target): Add new members.
5851 * linux-x86-64-low.c (target_regsets): Add new kind
5852 identifier.
5853
58542002-05-15 Daniel Jacobowitz <drow@mvista.com>
5855
5856 From Martin Pool <mbp@samba.org>:
5857 * server.c (gdbserver_usage): New function.
5858 (main): Call it.
5859
58602002-05-14 Daniel Jacobowitz <drow@mvista.com>
5861
5862 * mem-break.c (reinsert_breakpoint_by_bp): Correct typo
5863 stop_at -> stop_pc.
5864
58652002-05-04 Andrew Cagney <ac131313@redhat.com>
5866
5867 * Makefile.in: Remove obsolete code.
5868
58692002-04-24 Michal Ludvig <mludvig@suse.cz>
5870
5871 * linux-low.c (regsets_fetch_inferior_registers),
5872 (regsets_store_inferior_registers): Removed cast to int from
5873 ptrace() calls.
5874 * regcache.h: Added declaration of struct inferior_info.
5875
58762002-04-20 Daniel Jacobowitz <drow@mvista.com>
5877
5878 * inferiors.c (struct inferior_info): Add regcache_data.
5879 (add_inferior): Call create_register_cache.
5880 (clear_inferiors): Call free_register_cache.
5881 (inferior_regcache_data, set_inferior_regcache_data): New functions.
5882 * regcache.c (struct inferior_regcache_data): New.
5883 (registers): Remove.
5884 (get_regcache): New function.
5885 (create_register_cache, free_register_cache): New functions.
5886 (set_register_cache): Don't initialize the register cache here.
5887 (registers_to_string, registers_from_string, register_data): Call
5888 get_regcache.
5889 * regcache.h: Add prototypes.
5890 * server.h: Likewise.
5891
58922002-04-20 Daniel Jacobowitz <drow@mvista.com>
5893
5894 * mem-break.c: New file.
5895 * mem-break.h: New file.
5896 * Makefile.in: Add mem-break.o rule; update server.h
5897 dependencies.
5898 * inferiors.c (struct inferior_info): Add target_data
5899 member.
5900 (clear_inferiors): Free target_data member if set.
5901 (inferior_target_data, set_inferior_target_data): New functions.
5902 * linux-i386-low.c (i386_breakpoint, i386_breakpoint_len)
5903 (i386_stop_pc, i386_set_pc): New. Add to the_low_target.
5904 * linux-low.c (linux_bp_reinsert): New variable.
5905 (struct inferior_linux_data): New.
5906 (linux_create_inferior): Use set_inferior_target_data.
5907 (linux_attach): Likewise. Call add_inferior.
5908 (linux_wait_for_one_inferior): New function.
5909 (linux_wait): Call it.
5910 (linux_write_memory): Add const.
5911 (initialize_low): Call set_breakpoint_data.
5912 * linux-low.h (struct linux_target_ops): Add breakpoint
5913 handling members.
5914 * server.c (attach_inferior): Remove extra add_inferior
5915 call.
5916 * server.h: Include mem-break.h. Update inferior.c
5917 prototypes.
5918 * target.c (read_inferior_memory)
5919 (write_inferior_memory): New functions.
5920 * target.h (read_inferior_memory)
5921 (write_inferior_memory): Change macros to prototypes.
5922 (struct target_ops): Update comments. Add const to write_memory
5923 definition.
5924
59252002-04-11 Daniel Jacobowitz <drow@mvista.com>
5926
5927 * linux-low.c (usr_store_inferior_registers): Support
5928 registers which are allowed to fail to store.
5929 * linux-low.h (linux_target_ops): Likewise.
5930 * linux-ppc-low.c (ppc_regmap): Support FPSCR.
5931 (ppc_cannot_store_register): FPSCR may not be storable.
5932
59332002-04-09 Daniel Jacobowitz <drow@mvista.com>
5934
5935 * server.h: Include <string.h> if HAVE_STRING_H.
5936 * ChangeLog: Correct paths in last ChangeLog entry.
5937
59382002-04-09 Daniel Jacobowitz <drow@mvista.com>
5939
5940 * linux-low.h: Remove obsolete prototypes.
5941 (struct linux_target_ops): New.
5942 (extern the_low_target): New.
5943 * linux-low.c (num_regs, regmap): Remove declarations.
5944 (register_addr): Use the_low_target explicitly.
5945 (fetch_register): Likewise.
5946 (usr_fetch_inferior_registers): Likewise.
5947 (usr_store_inferior_registers): Likewise.
5948 * linux-arm-low.c (num_regs): Remove.
5949 (arm_num_regs): Define.
5950 (arm_regmap): Renamed from regmap, made static.
5951 (arm_cannot_fetch_register): Renamed from cannot_fetch_register,
5952 made static.
5953 (arm_cannot_store_register): Renamed from cannot_store_register,
5954 made static.
5955 (the_low_target): New.
5956 * linux-i386-low.c (num_regs): Remove.
5957 (i386_num_regs): Define.
5958 (i386_regmap): Renamed from regmap, made static.
5959 (i386_cannot_fetch_register): Renamed from cannot_fetch_register,
5960 made static.
5961 (i386_cannot_store_register): Renamed from cannot_store_register,
5962 made static.
5963 (the_low_target): New.
5964 * linux-ia64-low.c (num_regs): Remove.
5965 (ia64_num_regs): Define.
5966 (ia64_regmap): Renamed from regmap, made static.
5967 (ia64_cannot_fetch_register): Renamed from cannot_fetch_register,
5968 made static.
5969 (ia64_cannot_store_register): Renamed from cannot_store_register,
5970 made static.
5971 (the_low_target): New.
5972 * linux-m68k-low.c (num_regs): Remove.
5973 (m68k_num_regs): Define.
5974 (m68k_regmap): Renamed from regmap, made static.
5975 (m68k_cannot_fetch_register): Renamed from cannot_fetch_register,
5976 made static.
5977 (m68k_cannot_store_register): Renamed from cannot_store_register,
5978 made static.
5979 (the_low_target): New.
5980 * linux-mips-low.c (num_regs): Remove.
5981 (mips_num_regs): Define.
5982 (mips_regmap): Renamed from regmap, made static.
5983 (mips_cannot_fetch_register): Renamed from cannot_fetch_register,
5984 made static.
5985 (mips_cannot_store_register): Renamed from cannot_store_register,
5986 made static.
5987 (the_low_target): New.
5988 * linux-ppc-low.c (num_regs): Remove.
5989 (ppc_num_regs): Define.
5990 (ppc_regmap): Renamed from regmap, made static.
5991 (ppc_cannot_fetch_register): Renamed from cannot_fetch_register,
5992 made static.
5993 (ppc_cannot_store_register): Renamed from cannot_store_register,
5994 made static.
5995 (the_low_target): New.
5996 * linux-s390-low.c (num_regs): Remove.
5997 (s390_num_regs): Define.
5998 (s390_regmap): Renamed from regmap, made static.
5999 (s390_cannot_fetch_register): Renamed from cannot_fetch_register,
6000 made static.
6001 (s390_cannot_store_register): Renamed from cannot_store_register,
6002 made static.
6003 (the_low_target): New.
6004 * linux-sh-low.c (num_regs): Remove.
6005 (sh_num_regs): Define.
6006 (sh_regmap): Renamed from regmap, made static.
6007 (sh_cannot_fetch_register): Renamed from cannot_fetch_register,
6008 made static.
6009 (sh_cannot_store_register): Renamed from cannot_store_register,
6010 made static.
6011 (the_low_target): New.
6012 * linux-x86-64-low.c (x86_64_regmap): Renamed from regmap.
6013 (the_low_target): New.
6014
60152002-04-09 Daniel Jacobowitz <drow@mvista.com>
6016
6017 * Makefile.in: Add stamp-h target.
6018 * configure.in: Create stamp-h.
6019 * configure: Regenerated.
6020
60212002-04-09 Daniel Jacobowitz <drow@mvista.com>
6022
6023 * inferiors.c: New file.
6024 * target.c: New file.
6025 * target.h: New file.
6026 * Makefile.in: Add target.o and inferiors.o. Update
6027 dependencies.
6028 * linux-low.c (inferior_pid): New static variable,
6029 moved from server.c.
6030 (linux_create_inferior): Renamed from create_inferior.
6031 Call add_inferior. Return 0 on success instead of a PID.
6032 (linux_attach): Renamed from myattach.
6033 (linux_kill): Renamed from kill_inferior. Call clear_inferiors ().
6034 (linux_thread_alive): Renamed from mythread_alive.
6035 (linux_wait): Renamed from mywait. Call clear_inferiors () if the
6036 child dies.
6037 (linux_resume): Renamed from myresume. Add missing ``return 0''.
6038 (regsets_store_inferior_registers): Correct error message.
6039 Add missing ``return 0''.
6040 (linux_fetch_registers): Renamed from fetch_inferior_registers.
6041 (linux_store_registers): Renamed from store_inferior_registers.
6042 (linux_read_memory): Renamed from read_inferior_memory.
6043 (linux_write_memory): Renamed from write_inferior_memory.
6044 (linux_target_ops): New structure.
6045 (initialize_low): Call set_target_ops ().
6046 * remote-utils.c (unhexify): New function.
6047 (hexify): New function.
6048 (input_interrupt): Send signals to ``signal_pid''.
6049 * server.c (inferior_pid): Remove.
6050 (start_inferior): Update create_inferior call.
6051 (attach_inferior): Call add_inferior.
6052 (handle_query): New function.
6053 (main): Call handle_query for `q' packets.
6054 * server.h: Include "target.h". Remove obsolete prototypes.
6055 Add prototypes for "inferiors.c", "target.c", hexify, and unhexify.
6056
60572002-04-09 Daniel Jacobowitz <drow@mvista.com>
6058
6059 * Makefile.in: Add WARN_CFLAGS. Update configury
6060 dependencies.
6061 * configure.in: Check for <string.h>
6062 * configure: Regenerate.
6063 * config.in: Regenerate.
6064 * gdbreplay.c: Include needed system headers.
6065 (remote_open): Remove strchr prototype.
6066 * linux-low.h: Correct #ifdef to HAVE_LINUX_USRREGS.
6067 * regcache.c (supply_register): Change buf argument to const void *.
6068 (supply_register_by_name): Likewise.
6069 (collect_register): Change buf argument to void *.
6070 (collect_register_by_name): Likewise.
6071 * regcache.h: Add missing prototypes.
6072 * remote-utils.c: Include <arpa/inet.h> for inet_ntoa.
6073 * server.c (handle_query): New function.
6074 (attached): New static variable, moved out of main.
6075 (main): Quiet longjmp clobber warnings.
6076 * server.h: Add ATTR_NORETURN and ATTR_FORMAT. Update prototypes.
6077 * utils.c (error): Remove NORETURN.
6078 (fatal): Likewise.