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