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