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