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