* win32-i386-low.c: Add 64-bit support.
[deliverable/binutils-gdb.git] / gdb / gdbserver / ChangeLog
CommitLineData
54709339
PM
12010-04-19 Pierre Muller <muller@ics.u-strasbg.fr>
2
3 * win32-i386-low.c: Add 64-bit support.
4 (CONTEXT_EXTENDED_REGISTERS): Set macro to zero if not exisiting.
5 (init_registers_amd64): Declare.
6 (mappings): Add 64-bit version of array.
7 (init_windows_x86): New function.
8 (the_low_target): Change init_arch field to init_windows_x86.
9
e8f0053d
PM
102010-04-19 Pierre Muller <muller@ics.u-strasbg.fr>
11
12 * win32-low.c: Adapt to support also 64-bit architecture.
13 (child_xfer_memory): Use uintptr_t type for local variable `addr'.
14 (get_image_name): Use SIZE_T type for local variable `done'.
15 (psapi_get_dll_name): Use LPVOID type for parameter `BaseAddress'.
16 (toolhelp_get_dll_name): Idem.
17 (handle_load_dll): Use CORE_ADDR type for local variable `load_addr'.
18 Use uintptr_t typecast to avoid warning.
19 (handle_unload_dll): Use uintptr_t typecast to avoid warning.
20 (handle_exception): Use phex_nz to avoid warning.
21 (win32_wait): Remove unused local variable `process'.
22
c481e77e
PM
232010-04-19 Pierre Muller <muller@ics.u-strasbg.fr>
24
25 * configure.srv (srv_amd64_regobj): Replace `x86-64-avx.o' by
26 `amd64-avx.o'.
27
12ea4b69
PM
282010-04-17 Pierre Muller <muller@ics.u-strasbg.fr>
29
30 * configure.ac: Use `ws2_32' library for srv_mingw.
31 * configure: Regenerate.
32 * gdbreplay.c: Include winsock2.h instead of winsock.h.
33 * remote-utils.c: Likewise.
34
f6d1620c
L
352010-04-17 H.J. Lu <hongjiu.lu@intel.com>
36
37 * linux-x86-low.c (xmltarget_amd64_linux_no_xml): Define only
38 if __x86_64__ is defined.
39
8e642873
PM
402010-04-16 Pierre Muller <muller@ics.u-strasbg.fr>
41
42 * configure: Regenerate.
43
711e434b
PM
442010-04-16 Pierre Muller <muller@ics.u-strasbg.fr>
45
46 * server.c (handle_query): Handle 'qGetTIBAddr' query.
47 * target.h (target_ops): New get_tib_address field.
48 * win32-low.h (win32_thread_info): Add thread_local_base field.
49 * win32-low.c (child_add_thread): Add tlb argument.
50 Set thread_local_base field to TLB.
51 (get_child_debug_event): Adapt to child_add_thread change.
52 (win32_get_tib_address): New function.
53 (win32_target_ops): Set get_tib_address field to
54 win32_get_tib_address.
55 * linux-low.c (linux_target_ops): Set get_tib_address field to NULL.
56
505106cd
PA
572010-04-12 Pedro Alves <pedro@codesourcery.com>
58
505106cd
PA
59 * linux-low.c (linux_mourn): Also remove the process.
60 * server.c (handle_target_event): Don't remove the process here.
61 * nto-low.c (nto_mourn): New.
62 (nto_target_ops): Install it.
63 * spu-low.c (spu_mourn): New.
64 (spu_target_ops): Install it.
65 * win32-low.c (win32_mourn): New.
66 (win32_target_ops): Install it.
67
e8470a06
PA
682010-04-12 Pedro Alves <pedro@codesourcery.com>
69
70 * server.h (buffer_xml_printf): Remove redundant `;'.
71
45ba0d02
PA
722010-04-12 Pedro Alves <pedro@codesourcery.com>
73
74 * regcache.c (set_register_cache): Invalidate regcaches before
75 changing the register cache layout.
76 (regcache_invalidate_one): Allow a NULL regcache.
77 * linux-x86-low.c (x86_linux_update_xmltarget): Invalidate
78 regcaches before changing the register cache layout or the target
79 regsets.
80
59e04013
L
812010-04-12 H.J. Lu <hongjiu.lu@intel.com>
82
83 * linux-x86-low.c (x86_linux_update_xmltarget): Avoid unused
84 variable warning on Linux/x86-64.
85
8336d594
PA
862010-04-11 Pedro Alves <pedro@codesourcery.com>
87
88 GDBserver disconnected tracing support.
89
90 * linux-low.c (linux_remove_process): Delete.
91 (add_lwp): Don't set last_resume_kind here.
92 (linux_kill): Use `mourn'.
93 (linux_detach): Use `thread_db_detach', and `mourn'.
94 (linux_mourn): New.
95 (linux_attach_lwp_1): Adjust comment.
96 (linux_attach): last_resume_kind moved the thread_info; adjust.
97 (status_pending_p_callback): Adjust.
98 (linux_wait_for_event_1): Adjust.
99 (count_events_callback, select_singlestep_lwp_callback)
100 (select_event_lwp_callback, cancel_breakpoints_callback)
101 (db_wants_lwp_stopped, linux_wait_1, need_step_over_p)
102 (proceed_one_lwp): Adjust.
103 (linux_async): Add debug output.
104 (linux_thread_stopped): New.
105 (linux_pause_all): New.
106 (linux_target_ops): Install linux_mourn, linux_thread_stopped and
107 linux_pause_all.
108 * linux-low.h (struct lwp_info): Delete last_resume_kind field.
109 (thread_db_free): Delete declaration.
110 (thread_db_detach, thread_db_mourn): Declare.
111 * thread-db.c (thread_db_init): Use thread_db_mourn.
112 (thread_db_free): Delete, split in two.
113 (disable_thread_event_reporting): New.
114 (thread_db_detach): New.
115 (thread_db_mourn): New.
116
117 * server.h (struct thread_info) <last_resume_kind>: New field.
118 <attached>: Add comment.
119 <gdb_detached>: New field.
120 (handler_func): Change return type to int.
121 (handle_serial_event, handle_target_event): Ditto.
122 (gdb_connected): Declare.
123 (tracing): Delete.
124 (disconnected_tracing): Declare.
125 (stop_tracing): Declare.
126
127 * server.c (handle_query) <qSupported>: Report support for
128 disconnected tracing.
129 (queue_stop_reply_callback): Account for running threads.
130 (gdb_wants_thread_stopped): New.
131 (gdb_wants_all_threads_stopped): New.
132 (gdb_reattached_process): New.
133 (handle_status): Clear the `gdb_detached' flag of all processes.
134 In all-stop, stop all threads.
135 (main): Be sure to leave tfind mode. Handle disconnected tracing.
136 (process_serial_event): If the remote connection breaks, or if an
137 exit was forced with "monitor exit", force an event loop exit.
138 Handle disconnected tracing on detach.
139 (handle_serial_event): Adjust.
140 (handle_target_event): If GDB isn't connected, forward events back
141 to the inferior, unless the last process exited, in which case,
142 exit gdbserver. Adjust interface.
143
144 * remote-utils.c (remote_open): Don't block in accept. Instead
145 register an event loop source on the listen socket file
146 descriptor. Refactor bits into ...
147 (listen_desc): ... this new global.
148 (gdb_connected): ... this new function.
149 (enable_async_notification): ... this new function.
150 (handle_accept_event): ... this new function.
151 (remote_close): Clear remote_desc.
152
153 * inferiors.c (add_thread): Set the new thread's last_resume_kind.
154
155 * target.h (struct target_ops) <mourn, thread_stopped, pause_all>:
156 New fields.
157 (mourn_inferior): Define.
158 (target_process_qsupported): Avoid the dangling else problem.
159 (thread_stopped): Define.
160 (pause_all): Define.
161 (target_waitstatus_to_string): Declare.
162 * target.c (target_waitstatus_to_string): New.
163
164 * tracepoint.c (tracing): Make extern.
165 (disconnected_tracing): New.
166 (stop_tracing): Make extern. Handle tracing stops due to GDB
167 disconnecting.
168 (cmd_qtdisconnected): New.
169 (cmd_qtstatus): Report disconnected tracing status in trace reply.
170 (handle_tracepoint_general_set): Handle QTDisconnected.
171
172 * event-loop.c (event_handler_func): Change return type to int.
173 (process_event): Bail out if the event handler wants the event
174 loop to stop.
175 (handle_file_event): Ditto.
176 (start_event_loop): Bail out if the event handler wants the event
177 loop to stop.
178
179 * nto-low.c (nto_target_ops): Adjust.
180 * spu-low.c (spu_wait): Don't remove the process here.
181 (spu_target_ops): Adjust.
182 * win32-low.c (win32_wait): Don't remove the process here.
183 (win32_target_ops): Adjust.
184
5d267c4c
PA
1852010-04-11 Pedro Alves <pedro@codesourcery.com>
186
187 * regcache.c (realloc_register_cache): Invalidate inferior's
188 regcache before recreating it.
189
623ccd72
PA
1902010-04-09 Pedro Alves <pedro@codesourcery.com>
191
192 * tracepoint.c (cmd_qtstatus): Report trace buffer circularity.
193
219f2f23
PA
1942010-04-09 Stan Shebs <stan@codesourcery.com>
195 Pedro Alves <pedro@codesourcery.com>
196
197 * server.h (LONGEST): New.
198 (struct thread_info) <while_stepping>: New field.
199 (unpack_varlen_hex, xrealloc, pulongest, plongest, phex_nz):
200 Declare.
201 (initialize_tracepoint, handle_tracepoint_general_set)
202 (handle_tracepoint_query, tracepoint_finished_step)
203 (tracepoint_was_hit, release_while_stepping_state_list):
204 (current_traceframe): Declare.
205 * server.c (handle_general_set): Handle tracepoint packets.
206 (read_memory): New.
207 (write_memory): New.
208 (handle_search_memory_1): Use read_memory.
209 (handle_query): Report support for conditional tracepoints, trace
210 state variables, and tracepoint sources. Handle tracepoint
211 queries.
212 (main): Initialize the tracepoints module.
213 (process_serial_event): Handle traceframe reads/writes.
214
215 * linux-low.c (handle_tracepoints): New.
216 (linux_wait_1): Call it.
217 (linux_resume_one_lwp): Handle while-stepping.
218 (linux_supports_tracepoints, linux_read_pc, linux_write_pc): New.
219 (linux_target_ops): Install them.
220 * linux-low.h (struct linux_target_ops) <supports_tracepoints>:
221 New field.
222 * linux-x86-low.c (x86_supports_tracepoints): New.
223 (the_low_target). Install it.
224
225 * mem-break.h (delete_breakpoint): Declare.
226 * mem-break.c (delete_breakpoint): Make external.
227
228 * target.h (struct target_ops): Add `supports_tracepoints',
229 `read_pc', and `write_pc' fields.
230 (target_supports_tracepoints): Define.
231 * utils.c (xrealloc, decimal2str, pulongest, plongest, thirty_two)
232 (phex_nz): New.
233
234 * regcache.h (struct regcache) <registers_owned>: New field.
235 (init_register_cache, regcache_cpy): Declare.
236 (regcache_read_pc, regcache_write_pc): Declare.
237 (register_cache_size): Declare.
238 (supply_regblock): Declare.
239 * regcache.c (init_register_cache): New.
240 (new_register_cache): Use it.
241 (regcache_cpy): New.
242 (register_cache_size): New.
243 (supply_regblock): New.
244 (regcache_read_pc, regcache_write_pc): New.
245
246 * tracepoint.c: New.
247
248 * Makefile.in (OBS): Add tracepoint.o.
249 (tracepoint.o): New rule.
250
3a13a53b
L
2512010-04-08 H.J. Lu <hongjiu.lu@intel.com>
252
253 * Makefile.in (clean): Also remove i386-mmx.c i386-mmx-linux.c.
254 (i386-mmx.o): New.
255 (i386-mmx.c): Likewise.
256 (i386-mmx-linux.o): Likewise.
257 (i386-mmx-linux.c): Likewise.
258
259 * configure.srv (srv_i386_regobj): Add i386-mmx.o.
260 (srv_i386_linux_regobj): Add i386-mmx-linux.o.
261 (srv_i386_xmlfiles): Add i386/i386-mmx.xml.
262 (srv_i386_linux_xmlfiles): Add i386/i386-mmx-linux.xml.
263
264 * linux-x86-low.c (init_registers_i386_mmx_linux): New.
265 (x86_linux_update_xmltarget): Call init_registers_i386_mmx_linux
266 and return if ptrace PTRACE_GETFPXREGS failed in 32bit.
267
1570b33e
L
2682010-04-07 H.J. Lu <hongjiu.lu@intel.com>
269
270 * Makefile.in (clean): Updated.
271 (i386-avx.o): New.
272 (i386-avx.c): Likewise.
273 (i386-avx-linux.o): Likewise.
274 (i386-avx-linux.c): Likewise.
275 (amd64-avx.o): Likewise.
276 (amd64-avx.c): Likewise.
277 (amd64-avx-linux.o): Likewise.
278 (amd64-avx-linux.c): Likewise.
279
280 * configure.srv (srv_i386_regobj): Add i386-avx.o.
281 (srv_i386_linux_regobj): Add i386-avx-linux.o.
282 (srv_amd64_regobj): Add amd64-avx.o.
283 (srv_amd64_linux_regobj): Add amd64-avx-linux.o.
284 (srv_i386_32bit_xmlfiles): Add i386/32bit-avx.xml.
285 (srv_i386_64bit_xmlfiles): Add i386/64bit-avx.xml.
286 (srv_i386_xmlfiles): Add i386/i386-avx.xml.
287 (srv_amd64_xmlfiles): Add i386/amd64-avx.xml.
288 (srv_i386_linux_xmlfiles): Add i386/i386-avx-linux.xml.
289 (srv_amd64_linux_xmlfiles): Add i386/amd64-avx-linux.xml.
290
291 * i387-fp.c: Include "i386-xstate.h".
292 (i387_xsave): New.
293 (i387_cache_to_xsave): Likewise.
294 (i387_xsave_to_cache): Likewise.
295 (x86_xcr0): Likewise.
296
297 * i387-fp.h (i387_cache_to_xsave): Likewise.
298 (i387_xsave_to_cache): Likewise.
299 (x86_xcr0): Likewise.
300
301 * linux-arm-low.c (target_regsets): Initialize nt_type to 0.
302 * linux-crisv32-low.c (target_regsets): Likewise.
303 * linux-m68k-low.c (target_regsets): Likewise.
304 * linux-mips-low.c (target_regsets): Likewise.
305 * linux-ppc-low.c (target_regsets): Likewise.
306 * linux-s390-low.c (target_regsets): Likewise.
307 * linux-sh-low.c (target_regsets): Likewise.
308 * linux-sparc-low.c (target_regsets): Likewise.
309 * linux-xtensa-low.c (target_regsets): Likewise.
310
311 * linux-low.c: Include <sys/uio.h>.
312 (regsets_fetch_inferior_registers): Support nt_type.
313 (regsets_store_inferior_registers): Likewise.
314 (linux_process_qsupported): New.
315 (linux_target_ops): Add linux_process_qsupported.
316
317 * linux-low.h (regset_info): Add nt_type.
318 (linux_target_ops): Add process_qsupported.
319
320 * linux-x86-low.c: Include "i386-xstate.h", "elf/common.h"
321 and <sys/uio.h>.
322 (init_registers_i386_avx_linux): New.
323 (init_registers_amd64_avx_linux): Likewise.
324 (xmltarget_i386_linux_no_xml): Likewise.
325 (xmltarget_amd64_linux_no_xml): Likewise.
326 (PTRACE_GETREGSET): Likewise.
327 (PTRACE_SETREGSET): Likewise.
328 (x86_fill_xstateregset): Likewise.
329 (x86_store_xstateregset): Likewise.
330 (use_xml): Likewise.
331 (x86_linux_update_xmltarget): Likewise.
332 (x86_linux_process_qsupported): Likewise.
333 (target_regsets): Add NT_X86_XSTATE entry and Initialize nt_type.
334 (x86_arch_setup): Don't call init_registers_amd64_linux nor
335 init_registers_i386_linux here. Call
336 x86_linux_update_xmltarget.
337 (the_low_target): Add x86_linux_process_qsupported.
338
339 * server.c (handle_query): Call target_process_qsupported.
340
341 * target.h (target_ops): Add process_qsupported.
342 (target_process_qsupported): New.
343
fc7238bb
PA
3442010-04-03 Pedro Alves <pedro@codesourcery.com>
345
346 * inferiors.c (add_thread): Set last_status kind to
347 TARGET_WAITKIND_IGNORE.
348 * linux-low.c (cancel_breakpoint): Remove unnecessary regcache
349 fetch. Use ptid_of. Avoid unnecessary get_lwp_thread calls.
350 (linux_wait_1): Move `thread' local definition to block that uses
351 it. Don't NULL initialize `event_child'.
352 (linux_resume_one_thread): Avoid unnecessary get_lwp_thread calls.
353 Alway set the thread's last_status to TARGET_WAITKIND_IGNORE.
354 * linux-x86-low.c (x86_breakpoint_at): Read raw memory.
355
bdabb078
PA
3562010-04-01 Pedro Alves <pedro@codesourcery.com>
357
358 * linux-low.c (get_stop_pc): Don't adjust the PC if stopped with
359 an extended waitstatus, or by a watchpoint.
360 (cancel_breakpoints_callback): Don't cancel a breakpoint if the
361 thread was stepping or has been stopped by a watchpoint.
362
d3bbe7a0
PA
3632010-04-01 Pedro Alves <pedro@codesourcery.com>
364
365 * mem-break.c (struct raw_breakpoint): New field shlib_disabled.
366 (set_gdb_breakpoint_at): If GDB is inserting a breakpoint on top
367 of another, then delete the previous, and validate all
368 breakpoints.
369 (validate_inserted_breakpoint): New.
370 (delete_disabled_breakpoints): New.
371 (validate_breakpoints): New.
372 (check_mem_read): Validate breakpoints before trusting their
373 shadow. Delete disabled breakpoints.
374 (check_mem_write): Validate breakpoints before trusting they
375 should be inserted. Delete disabled breakpoints.
376 * mem-break.h (validate_breakpoints):
377 * server.c (handle_query): Validate breakpoints when we see a
378 qSymbol query.
379
8b07ae33
PA
3802010-04-01 Pedro Alves <pedro@codesourcery.com>
381
382 * linux-low.c (linux_wait_1): Avoid setting need_step_over is
383 there's a GDB breakpoint at stop_pc. Always report a trap to GDB
384 if we could tell there's a GDB breakpoint at stop_pc.
385 (need_step_over_p): Don't do a step over if we find a GDB
386 breakpoint at the resume PC.
387
388 * mem-break.c (struct raw_breakpoint): New.
389 (enum bkpt_type): New type `gdb_breakpoint'.
390 (struct breakpoint): Delete the `PC', `old_data' and `inserted'
391 fields. New field `raw'.
392 (find_raw_breakpoint_at): New.
393 (set_raw_breakpoint_at): Handle refcounting. Create a raw
394 breakpoint instead.
395 (set_breakpoint_at): Adjust.
396 (delete_raw_breakpoint): New.
397 (release_breakpoint): New.
398 (delete_breakpoint): Rename to...
399 (delete_breakpoint_1): ... this. Add proc parameter. Use
400 release_breakpoint. Return ENOENT.
401 (delete_breakpoint): Reimplement.
402 (find_breakpoint_at): Delete.
403 (find_gdb_breakpoint_at): New.
404 (delete_breakpoint_at): Delete.
405 (set_gdb_breakpoint_at): New.
406 (delete_gdb_breakpoint_at): New.
407 (gdb_breakpoint_here): New.
408 (set_reinsert_breakpoint): Use release_breakpoint.
409 (uninsert_breakpoint): Rename to ...
410 (uninsert_raw_breakpoint): ... this.
411 (uninsert_breakpoints_at): Adjust to handle raw breakpoints.
412 (reinsert_raw_breakpoint): Change parameter type to
413 raw_breakpoint.
414 (reinsert_breakpoints_at): Adjust to handle raw breakpoints
415 instead.
416 (check_breakpoints): Adjust. Use release_breakpoint.
417 (breakpoint_here): Rewrite using find_raw_breakpoint_at.
418 (breakpoint_inserted_here): Ditto.
419 (check_mem_read): Adjust to iterate over raw breakpoints instead.
420 Don't trust the breakpoint's shadow if it is not inserted.
421 (check_mem_write): Adjust to iterate over raw breakpoints instead.
422 (delete_all_breakpoints): Adjust.
423 (free_all_breakpoints): Mark all breakpoints as uninserted, and
424 use delete_breakpoint_1.
425
426 * mem-break.h (breakpoints_supported): Delete declaration.
427 (set_gdb_breakpoint_at): Declare.
428 (gdb_breakpoint_here): Declare.
429 (delete_breakpoint_at): Delete.
430 (delete_gdb_breakpoint_at): Declare.
431
432 * server.h (struct raw_breakpoint): Forward declare.
433 (struct process_info): New field `raw_breakpoints'.
434
435 * linux-x86-low.c (x86_insert_point, x86_remote_point): Handle Z0
436 breakpoints.
437
6bf5e0ba
PA
4382010-03-24 Pedro Alves <pedro@codesourcery.com>
439
440 * linux-low.c (status_pending_p_callback): Fix comment.
441 (linux_wait_for_event_1): Move most of the internal breakpoint
442 handling from here...
443 (linux_wait_1): ... to here.
444 (count_events_callback): New.
445 (select_singlestep_lwp_callback): New.
446 (select_event_lwp_callback): New.
447 (cancel_breakpoints_callback): New.
448 (select_event_lwp): New.
449 (linux_wait_1): Simplify internal breakpoint handling. Give equal
450 priority to all LWPs that have had events that should be reported
451 to the client. Cancel breakpoints when about to reporting the
452 event to the client, not while stopping lwps. No longer cancel
453 finished single-steps here.
454 (cancel_finished_single_step): Delete.
455 (cancel_finished_single_steps): Delete.
456
414a389f
PA
4572010-03-24 Pedro Alves <pedro@codesourcery.com>
458
459 * mem-break.c (enum bkpt_type): New.
460 (struct breakpoint): New field `type'.
461 (set_breakpoint_at): Change return type to struct breakpoint
462 pointer. Set type to `other_breakpoint' by default.
463 (delete_breakpoint): Rewrite, supporting more than one breakpoint
464 in the breakpoint list.
465 (delete_reinsert_breakpoints): Only delete reinsert breakpoints.
466 (reinsert_breakpoint): Rename to ...
467 (reinsert_raw_breakpoint): ... this.
468 (reinsert_breakpoints_at): Adjust.
469 * mem-break.h (struct breakpoint): Declare.
470 (set_breakpoint_at): Change return type to struct breakpoint
471 pointer.
472
2280c721
PA
4732010-03-24 Pedro Alves <pedro@codesourcery.com>
474
475 * server.c (handle_query): Assign, not compare.
476
d50171e4
PA
4772010-03-24 Pedro Alves <pedro@codesourcery.com>
478
479 Teach linux gdbserver to step-over-breakpoints.
480
481 * linux-low.c (can_hardware_single_step): New.
482 (supports_breakpoints): New.
483 (handle_extended_wait): If stopping threads, read the stop pc of
484 the new cloned LWP.
485 (get_pc): New.
486 (get_stop_pc): Add `lwp' parameter. Handle it. Bail out if the
487 low target doesn't support retrieving the PC.
488 (add_lwp): Set last_resume_kind to resume_continue.
489 (linux_attach_lwp_1): Adjust comments. Always set stop_expected.
490 (linux_attach): Don't clear stop_expected. Set the lwp's
491 last_resume_kind to resume_stop.
492 (linux_detach_one_lwp): Don't check for removed breakpoints.
493 (check_removed_breakpoint): Delete.
494 (status_pending_p): Rename to ...
495 (status_pending_p_callback): ... this. Don't check for removed
496 breakpoints. Don't consider threads that are stopped from GDB's
497 perspective.
498 (linux_wait_for_lwp): Always read the stop_pc here.
499 (cancel_breakpoint): New.
500 (step_over_bkpt): New global.
501 (linux_wait_for_event_1): Implement stepping over breakpoints.
502 (gdb_wants_lwp_stopped): New.
503 (gdb_wants_all_stopped): New.
504 (linux_wait_1): Tag threads as gdb-wants-stopped. Cancel finished
505 single-step traps here. Store the thread's last reported target
506 wait status.
507 (send_sigstop): Don't clear stop_expected. Always set it,
508 instead.
509 (mark_lwp_dead): Remove reference to pending_is_breakpoint.
510 (cancel_finished_single_step): New.
511 (cancel_finished_single_steps): New.
512 (wait_for_sigstop): Don't cancel finished single-step traps here.
513 (linux_resume_one_lwp): Don't check for removed breakpoints.
514 Don't set `step' on non-hardware step archs.
515 (linux_set_resume_request): Ignore resume_stop requests if already
516 stopping or stopped. Set the lwp's last_resume_kind.
517 (resume_status_pending_p): Don't check for removed breakpoints.
518 (need_step_over_p): New.
519 (start_step_over): New.
520 (finish_step_over): New.
521 (linux_resume_one_thread): Always queue a sigstop for resume_stop
522 requests. Clear the thread's last reported target waitstatus.
523 Don't use the `suspended' flag. Don't consider pending breakpoints.
524 (linux_resume): Start a step-over if necessary.
525 (proceed_one_lwp): New.
526 (proceed_all_lwps): New.
527 (unstop_all_lwps): New.
528 * linux-low.h (struct lwp_info): Rewrite comment for the
529 `suspended' flag. Add the `stop_pc' field. Delete the
530 `pending_stop_pc' field. Tweak the `stepping' flag's comment.
531 Add `'last_resume_kind' and `need_step_over' fields.
532 * inferiors.c (struct thread_info): Delete, moved elsewhere.
533 * mem-break.c (struct breakpoint): Delete `reinserting' flag.
534 Delete `breakpoint_to_reinsert' field. New flag `inserted'.
535 (set_raw_breakpoint_at): New.
536 (set_breakpoint_at): Rewrite to use it.
537 (reinsert_breakpoint_handler): Delete.
538 (set_reinsert_breakpoint): New.
539 (reinsert_breakpoint_by_bp): Delete.
540 (delete_reinsert_breakpoints): New.
541 (uninsert_breakpoint): Rewrite.
542 (uninsert_breakpoints_at): New.
543 (reinsert_breakpoint): Rewrite.
544 (reinsert_breakpoints_at): New.
545 (check_breakpoints): Rewrite.
546 (breakpoint_here): New.
547 (breakpoint_inserted_here): New.
548 (check_mem_read): Adjust.
549 * mem-break.h (breakpoints_supported, breakpoint_here)
550 (breakpoint_inserted_here, set_reinsert_breakpoint): Declare.
551 (reinsert_breakpoint_by_bp): Delete declaration.
552 (delete_reinsert_breakpoints): Declare.
553 (reinsert_breakpoint): Delete declaration.
554 (reinsert_breakpoints_at): Declare.
555 (uninsert_breakpoint): Delete declaration.
556 (uninsert_breakpoints_at): Declare.
557 (check_breakpoints): Adjust prototype.
558 * server.h: Adjust include order.
559 (struct thread_info): Declare here. Add a `last_status' field.
560
30ba68cb
MS
5612010-03-23 Michael Snyder <msnyder@vmware.com>
562
563 * server.c (crc32): New function.
564 (handle_query): Add handling for 'qCRC:' request.
565
b9a881c2
PA
5662010-03-23 Pedro Alves <pedro@codesourcery.com>
567
568 * linux-x86-low.c (x86_linux_prepare_to_resume): Clear DR6 if the
569 lwp had been stopped by a watchpoint.
570
e92d13d5
PA
5712010-03-16 Pedro Alves <pedro@codesourcery.com>
572
573 * server.h (internal_error): Declare.
574 (gdb_assert, ASSERT_FUNCTION, gdb_assert_fail): Define.
575 * utils.c (internal_error): New function.
576
64daa791
AS
5772010-03-15 Andreas Schwab <schwab@redhat.com>
578
579 * configure.srv: Fix typo setting srv_regobj.
580
f52cd8cd
PA
5812010-03-15 Pedro Alves <pedro@codesourcery.com>
582
583 * linux-low.c (fetch_register): Avoid passing a non string literal
584 format to `error'.
585 (usr_store_inferior_registers): Ditto.
586
93ae6fdc
PA
5872010-03-14 Pedro Alves <pedro@codesourcery.com>
588
589 * linux-low.c (linux_write_memory): Bail out early if peeking
590 memory failed.
591
c3adc08c
PA
5922010-03-14 Pedro Alves <pedro@codesourcery.com>
593
594 * linux-low.h (struct lwp_info): New fields
595 `stopped_by_watchpoint' and `stopped_data_address'.
596 * linux-low.c (linux_wait_for_lwp): Check for watchpoint triggers
597 here, and cache them in the lwp object.
598 (wait_for_sigstop): Check stopped_by_watchpoint lwp field
599 directly.
600 (linux_resume_one_lwp): Clear the lwp's stopped_by_watchpoint
601 field.
602 (linux_stopped_by_watchpoint): Rewrite.
603 (linux_stopped_data_address): Rewrite.
604
bce522a2
PA
6052010-03-06 Simo Melenius <simo.melenius@iki.fi>
606
607 * linux-low.c (linux_wait_for_lwp): Fetch the regcache after
608 switching the current inferior, not before.
609
90884b2b
L
6102010-03-01 H.J. Lu <hongjiu.lu@intel.com>
611
612 * Makefile.in (clean): Replace reg-i386.c, reg-x86-64.c,
613 reg-i386-linux.c and reg-x86-64-linux.c with i386.c, amd64.c,
614 i386-linux.c and amd64-linux.c.
615 (reg-i386.o): Removed.
616 (reg-i386.c): Likewise.
617 (reg-i386-linux.o): Likewise.
618 (reg-i386-linux.c): Likewise.
619 (reg-x86-64.o): Likewise.
620 (reg-x86-64.c): Likewise.
621 (reg-x86-64-linux.o): Likewise.
622 (reg-x86-64-linux.c): Likewise.
623 (i386.o): New.
624 (i386.c): Likewise.
625 (i386-linux.o): Likewise.
626 (i386-linux.c): Likewise.
627 (amd64.o): Likewise.
628 (amd64.c): Likewise.
629 (amd64-linux.o): Likewise.
630 (amd64-linux.c): Likewise.
631
632 * configure.srv (srv_i386_regobj): New.
633 (srv_i386_linux_regobj): Likewise.
634 (srv_amd64_regobj): Likewise.
635 (srv_amd64_linux_regobj): Likewise.
636 (srv_i386_32bit_xmlfiles): Likewise.
637 (srv_i386_64bit_xmlfiles): Likewise.
638 (srv_i386_xmlfiles): Likewise.
639 (srv_amd64_xmlfiles): Likewise.
640 (srv_i386_linux_xmlfiles): Likewise.
641 (srv_amd64_linux_xmlfiles): Likewise.
642 (i[34567]86-*-cygwin*): Set srv_regobj to $srv_i386_regobj. Set
643 srv_xmlfiles to $srv_i386_xmlfiles.
644 (i[34567]86-*-mingw32ce*): Likewise.
645 (i[34567]86-*-mingw*): Likewise.
646 (i[34567]86-*-nto*): Likewise.
647 (i[34567]86-*-linux*): Set srv_regobj to $srv_i386_linux_regobj
648 and $srv_amd64_linux_regobj. Set srv_xmlfiles to
649 $srv_i386_linux_xmlfiles and $srv_amd64_linux_xmlfiles.
650 (x86_64-*-linux*): Likewise.
651
652 * linux-x86-low.c (init_registers_x86_64_linux): Removed.
653 (init_registers_amd64_linux): New.
654 (x86_arch_setup): Replace init_registers_x86_64_linux with
655 init_registers_amd64_linux.
656
193f13e6
MK
6572010-02-23 Maxim Kuvyrkov <maxim@codesourcery.com>
658
659 * configure.ac: Check for libdl. If it is not available link against
660 static libthread_db.
661 * configure: Regenerate.
662
85d721b8
PA
6632010-02-22 Pedro Alves <pedro@codesourcery.com>
664
665 PR9605
666
667 * i386-low.c (i386_length_and_rw_bits): Throw a fatal error if
668 handing a read watchpoint.
669 (i386_low_insert_watchpoint): Read watchpoints aren't supported.
670
6076632b
DE
6712010-02-12 Doug Evans <dje@google.com>
672
673 * linux-low.c (linux_supports_tracefork_flag): Document.
674 (linux_look_up_symbols): Add comment.
675
3327ccf7
L
6762010-02-03 H.J. Lu <hongjiu.lu@intel.com>
677
678 * regcache.c (supply_register): Clear regcache if buf is NULL.
679
0718675c 6802010-02-02 Nicolas Roche <roche@sourceware.org>
3327ccf7 681 Joel Brobecker <brobecker@adacore.com>
0718675c
JB
682
683 * inferiors.c (find_inferior): Add function documentation.
684 (unloaded_dll): Handle the case where the unloaded dll has not
685 been previously registered in the dll list.
686
177321bd
DJ
6872010-02-01 Daniel Jacobowitz <dan@codesourcery.com>
688
689 * linux-arm-low.c (thumb_breakpoint_len): Delete.
690 (thumb2_breakpoint): New.
691 (arm_breakpoint_at): Check for Thumb-2 breakpoints.
692
2b009048
DJ
6932010-01-29 Daniel Jacobowitz <dan@codesourcery.com>
694
695 * linux-low.c (get_stop_pc): Check for SIGTRAP.
696 (linux_wait_for_event_1): Handle SIGILL and SIGSEGV as possible
697 breakpoints.
698
3be029c7
PA
6992010-01-21 Pedro Alves <pedro@codesourcery.com>
700
701 * linux-ppc-low.c (ppc_arch_setup): Adjust to regcache changes.
702
18f5de3b
JK
7032010-01-21 Jan Kratochvil <jan.kratochvil@redhat.com>
704
705 * linux-s390-low.c (s390_collect_ptrace_register)
706 (s390_supply_ptrace_register): Adjust it for the new regcache parameter.
707
3743bb4f
DE
7082010-01-21 Doug Evans <dje@google.com>
709
14ce3065
DE
710 * linux-low.c (PTRACE_ARG3_TYPE): Change from long to void*.
711 (PTRACE_ARG4_TYPE): New macro.
712 (handle_extended_wait): Cast ptrace arg4 to PTRACE_ARG4_TYPE.
713 (linux_wait_for_event_1, linux_resume_one_lwp): Ditto.
714 (fetch_register): Cast to uintptr_t before casting to PTRACE_ARG3_TYPE.
715 (usr_store_inferior_registers): Ditto.
716 (linux_read_memory, linux_write_memory): Ditto.
717 (linux_test_for_tracefork): Ditto.
718
3743bb4f
DE
719 * linux-arm-low.c: Remove redundant include of gdb_proc_service.h.
720 Only include elf.h if gdb_proc_service.h didn't include linux/elf.h.
721
8b315be5
PA
7222010-01-21 Pedro Alves <pedro@codesourcery.com>
723
724 * proc-service.c (ps_lgetregs): Don't refetch registers from the
725 target.
726
85492558
PA
7272010-01-21 Pedro Alves <pedro@codesourcery.com>
728
729 * spu-low.c (spu_fetch_registers, spu_store_registers): Change
730 prototype to take a regcache. Adjust.
731
442ea881
PA
7322010-01-20 Pedro Alves <pedro@codesourcery.com>
733
734 * regcache.h (struct thread_info): Forward declare.
735 (struct regcache): New.
736 (new_register_cache): Adjust prototype.
737 (get_thread_regcache): Declare.
738 (free_register_cache): Adjust prototype.
739 (registers_to_string, registers_from_string): Ditto.
740 (supply_register, supply_register_by_name, collect_register)
741 (collect_register_as_string, collect_register_by_name): Ditto.
742 * regcache.c (struct inferior_regcache_data): Delete.
743 (get_regcache): Rename to ...
744 (get_thread_regcache): ... this. Adjust. Switch inferior before
745 fetching registers.
746 (regcache_invalidate_one): Adjust.
747 (regcache_invalidate): Fix prototype.
748 (new_register_cache): Return the new register cache.
749 (free_register_cache): Change prototype.
750 (realloc_register_cache): Adjust.
751 (registers_to_string): Change prototype to take a regcache. Adjust.
752 (registers_from_string): Ditto.
753 (register_data): Ditto.
754 (supply_register): Ditto.
755 (supply_register_by_name): Ditto.
756 (collect_register): Ditto.
757 (collect_register_as_string): Ditto.
758 (collect_register_by_name): Ditto.
759 * server.c (process_serial_event): Adjust.
760 * linux-low.h (regset_fill_func, regset_store_func): Change
761 prototype.
762 (get_pc, set_pc, collect_ptrace_register, supply_ptrace_register):
763 Change prototype.
764 * linux-low.c (get_stop_pc): Adjust.
765 (check_removed_breakpoint): Adjust.
766 (linux_wait_for_event): Adjust.
767 (linux_resume_one_lwp): Adjust.
768 (fetch_register): Add regcache parameter. Adjust.
769 (usr_store_inferior_registers): Ditto.
770 (regsets_fetch_inferior_registers): Ditto.
771 (regsets_store_inferior_registers): Ditto.
772 (linux_fetch_registers, linux_store_registers): Ditto.
773 * i387-fp.c (i387_cache_to_fsave): Change prototype to take a
774 regcache. Adjust.
775 (i387_fsave_to_cache, i387_cache_to_fxsave, i387_fxsave_to_cache): Ditto.
776 * i387-fp.h (i387_cache_to_fsave, i387_fsave_to_cache): Change
777 prototype to take a regcache.
778 (i387_cache_to_fxsave, i387_fxsave_to_cache): Ditto.
779 * remote-utils.c (convert_ascii_to_int, outreg)
780 (prepare_resume_reply): Change prototype to take a regcache.
781 Adjust.
782 * target.h (struct target_ops) <fetch_registers, store_registers>:
783 Change prototype to take a regcache.
784 (fetch_inferior_registers, store_inferior_registers): Change
785 prototype to take a regcache. Adjust.
786 * proc-service.c (ps_lgetregs): Adjust.
787 * linux-x86-low.c (x86_fill_gregset, x86_store_gregset)
788 (x86_fill_fpregset, x86_store_fpregset, x86_fill_fpxregset)
789 (x86_store_fpxregset, x86_get_pc, x86_set_pc): Change prototype to
790 take a regcache. Adjust.
791 * linux-arm-low.c (arm_fill_gregset, arm_store_gregset)
792 (arm_fill_wmmxregset, arm_store_wmmxregset, arm_fill_vfpregset)
793 (arm_store_vfpregset, arm_get_pc, arm_set_pc):
794 (arm_breakpoint_at): Change prototype to take a regcache. Adjust.
795 * linux-cris-low.c (cris_get_pc, cris_set_pc)
796 (cris_cannot_fetch_register):
797 (cris_breakpoint_at): Change prototype to take a regcache.
798 Adjust.
799 * linux-crisv32-low.c (cris_get_pc, cris_set_pc,
800 cris_reinsert_addr, cris_write_data_breakpoint): Change prototype
801 to take a regcache. Adjust.
802 (cris_breakpoint_at, cris_insert_point, cris_remove_point):
803 Adjust.
804 * linux-m32r-low.c (m32r_get_pc, m32r_set_pc): Change prototype to
805 take a regcache. Adjust.
806 * linux-m68k-low.c (m68k_fill_gregset, m68k_store_gregset)
807 (m68k_fill_fpregset, m68k_store_fpregset, m68k_get_pc,
808 (m68k_set_pc): Change prototype to take a regcache. Adjust.
809 * linux-mips-low.c (mips_get_pc):
810 (mips_set_pc): Change prototype to take a regcache. Adjust.
811 (mips_reinsert_addr): Adjust.
812 (mips_collect_register): Change prototype to take a regcache.
813 Adjust.
814 (mips_supply_register):
815 (mips_collect_register_32bit, mips_supply_register_32bit)
816 (mips_fill_gregset, mips_store_gregset, mips_fill_fpregset)
817 (mips_store_fpregset): Ditto.
818 * linux-ppc-low.c (ppc_supply_ptrace_register, ppc_supply_ptrace_register):
819 Ditto.
820 (parse_spufs_run): Adjust.
821 (ppc_get_pc, ppc_set_pc, ppc_fill_gregset, ppc_fill_vsxregset)
822 (ppc_store_vsxregset, ppc_fill_vrregset, ppc_store_vrregset)
823 (ppc_fill_evrregset, ppc_store_evrregset): Change prototype to
824 take a regcache. Adjust.
825 * linux-s390-low.c (s390_collect_ptrace_register)
826 (s390_supply_ptrace_register, s390_fill_gregset, s390_get_pc)
827 (s390_set_pc): Change prototype to take a regcache. Adjust.
828 (s390_arch_setup): Adjust.
829 * linux-sh-low.c (sh_get_pc, sh_breakpoint_at)
830 (sh_fill_gregset): Change prototype to take a regcache. Adjust.
831 * linux-sparc-low.c (sparc_fill_gregset_to_stack)
832 (sparc_fill_gregset, sparc_store_gregset_from_stack)
833 (sparc_store_gregset, sparc_get_pc): Change prototype to take a
834 regcache. Adjust.
835 (sparc_breakpoint_at): Adjust.
836 * linux-xtensa-low.c (xtensa_fill_gregset):
837 (xtensa_store_gregset):
838 (xtensa_fill_xtregset, xtensa_store_xtregset, xtensa_get_pc)
839 (xtensa_set_pc): Change prototype to take a regcache. Adjust.
840 * nto-low.c (nto_fetch_registers, nto_store_registers): Change
841 prototype to take a regcache. Adjust.
842 * win32-arm-low.c (arm_fetch_inferior_register)
843 (arm_store_inferior_register): Change prototype to take a
844 regcache. Adjust.
845 * win32-i386-low.c (i386_fetch_inferior_register)
846 (i386_store_inferior_register): Change prototype to take a
847 regcache. Adjust.
848 * win32-low.c (child_fetch_inferior_registers)
849 (child_store_inferior_registers): Change prototype to take a
850 regcache. Adjust.
851 (win32_wait): Adjust.
852 (win32_fetch_inferior_registers): Change prototype to take a
853 regcache. Adjust.
854 (win32_store_inferior_registers): Adjust.
855 * win32-low.h (struct win32_target_ops) <fetch_inferior_register,
856 store_inferior_register>: Change prototype to take a regcache.
857
60c3d7b0
DE
8582010-01-20 Doug Evans <dje@google.com>
859
860 * linux-low.c (linux_create_inferior): Wrap use of __SIGRTMIN in
861 #ifdef.
862 (linux_wait_for_event1, linux_init_signals): Ditto.
ec8ebe72 863 (W_STOPCODE): Provide definition if missing.
60c3d7b0 864
dc146f7c
VP
8652010-01-13 Vladimir Prus <vladimir@codesourcery.com>
866
867 * linux-low.c (linux_core_of_thread): New.
868 (compare_ints, show_process, list_threads): New.
869 (linux_qxfer_osdata): Report threads and cores.
870 (linux_target_op): Register linux_core_of_thread.
871 * remote-utils.c (prepare_resume_reply): Report the core.
872 (buffer_xml_printf): Support %d specifier.
873 * server.c (handle_threads_qxfer_proper, handle_threads_qxfer):
874 New.
875 (handle_query): Handle qXfer:threads. Announce availability
876 thereof.
877 * target.h (struct target_ops): New field core_of_thread.
878
7803799a
UW
8792010-01-04 Ulrich Weigand <uweigand@de.ibm.com>
880
881 * Makefile.in (clean): Remove new generated files.
882 (reg-s390.o, reg-s390.c): Remove rules.
883 (reg-s390x.o, reg-s390x.c): Likewise.
884 (s390-linux32.o, s390-linux32.c): Add rules.
885 (s390-linux64.o, s390-linux64.c): Likewise.
886 (s390x-linux64.o, s390x-linux64.c): Likewise.
887 * configure.srv (s390*-*-linux*): Update srv_regobj and srv_xmlfiles.
888 * linux-s390-low.c: Include <elf.h>.
889 (HWCAP_S390_HIGH_GPRS): Define if undefined.
890 (init_registers_s390): Remove prototype.
891 (init_registers_s390x): Likewise.
892 (init_registers_s390_linux32): Add prototype.
893 (init_registers_s390_linux64): Likewise.
894 (init_registers_s390x_linux64): Likewise.
895 (s390_num_regs_3264): New define.
896 (s390_regmap_3264): New global variable.
897 (s390_cannot_fetch_register): Remove obsolete check.
898 (s390_cannot_store_register): Likewise.
899 (s390_collect_ptrace_register): Handle upper/lower register halves.
900 (s390_supply_ptrace_register): Likewise.
901 (s390_fill_gregset): Update to register number changes.
902 (s390_get_hwcap): New routine.
903 (s390_arch_setup): Detect 32-bit process running on 64-bit system.
904 Install appropriate regmap and register set.
905
6e7ffa39
JB
9062010-01-01 Joel Brobecker <brobecker@adacore.com>
907
908 * server.c (gdbserver_version): Update copyright year to 2010.
909 * gdbreplay.c (gdbreplay_version): Likewise.
910
957f3f49
DE
9112009-12-28 Doug Evans <dje@google.com>
912
913 * linux-low.c: Delete inclusion of ansidecl.h, elf/common.h,
914 elf/external.h. Include <elf.h> instead but only if necessary.
915
ca5c370d
PA
9162009-12-28 Pedro Alves <pedro@codesourcery.com>
917
918 * linux-low.c (linux_remove_process): Remove `detaching'
919 parameter. Don't release/detach from thread_db here.
920 (linux_kill): Release/detach from thread_db here, ...
921 (linux_detach): ... and here, before actually detaching.
922 (linux_wait_1): ... and here, when a process exits.
923 * thread-db.c (any_thread_of): New.
924 (thread_db_free): Switch the current inferior to a thread of the
925 passed in process.
926
4ee62156
DE
9272009-12-21 Doug Evans <dje@google.com>
928
d90e6a88
DE
929 * linux-x86-low.c: Delete outdated comment about Elf32_Phdr.
930
c5f62d5f
DE
931 * linux-low.c (kill_lwp): Use __NR_tkill instead of SYS_tkill.
932 Move definition of tkill_failed to ifdef __NR_tkill to avoid gcc
933 warning ifndef __NR_tkill. Move setting of errno there too.
934 Delete unnecessary resetting of errno after syscall.
935 Minor comment changes to match gdb/linux-nat.c:kill_lwp.
936
10e86dd7
DE
937 * configure.ac: Check for dladdr.
938 * config.in: Regenerate.
939 * configure: Regenerate.
940 * thread-db.c (dladdr_to_soname): Only define ifdef HAVE_DLADDR.
941 (try_thread_db_load): Update.
942
4ee62156
DE
943 * linux-low.c (my_waitpid): Delete unnecessary prototype.
944
00f515da
DE
9452009-12-18 Doug Evans <dje@google.com>
946
e9464885
DE
947 * event-loop.c: Include unistd.h if it exists.
948
07d4f67e
DE
949 * linux-low.c (my_waitpid): Move definition away from being in
950 between linux_tracefork_child/linux_test_for_tracefork.
951
00f515da
DE
952 * gdb_proc_service.h (psaddr_t): Fix type.
953 * thread-db.c (thread_db_info.td_thr_tls_get_addr_p): Fix
954 signature to match glibc.
955
1de1badb
DE
9562009-12-16 Doug Evans <dje@google.com>
957
958 * linux-low.c (linux_read_memory): Fix argument to read.
959
aeeb81d1
PA
9602009-11-26 Pedro Alves <pedro@codesourcery.com>
961
962 * win32-low.c (get_child_debug_event): On EXIT_THREAD_DEBUG_EVENT
963 events, don't leave current_inferior pointing at null.
964
10357975
PA
9652009-11-26 Pedro Alves <pedro@codesourcery.com>
966
967 * win32-low.c (LOG): Delete.
968 (OUTMSG): Output to stderr.
969 (OUTMSG2): Conditionalize on `debug_threads' variable, instead of
970 on compile time LOG macro.
971 (win32_wait): Fix debug output.
972
cf6e3471
PA
9732009-11-26 Pedro Alves <pedro@codesourcery.com>
974
975 * win32-low.c (win32_add_one_solib): If the dll name is
976 "ntdll.dll", prepend the system directory to the dll path.
977
0c85e18e
MK
9782009-11-17 Daniel Jacobowitz <dan@codesourcery.com>
979
980 * m68k-tdep.c (m68k_gdbarch_init): Reuse previous initialization.
981
9ac544ce 9822009-11-17 Nathan Sidwell <nathan@codesourcery.com>
0c85e18e 983 Vladimir Prus <vladimir@codesourcery.com>
9ac544ce
MK
984
985 * Makefile.in (reg-cf.o, reg-cf.c): New targets.
986 * configure.ac: Check for __mcoldfire__ and set
987 gdb_cv_m68k_is_coldfire.
988 * configure.srv: Use gdb_cv_m68k_is_coldfire to select between
989 reg-cf.o and reg-m68k.o.
990 * configure: Regenerated.
991
fd7dd3e6
PA
9922009-11-16 Pedro Alves <pedro@codesourcery.com>
993
994 * linux-low.c (linux_remove_process): Add `detaching' parameter.
995 Pass it to thread_db_free.
996 (linux_kill, linux_detach, linux_wait_1): Adjust to pass the
997 proper `detaching' argument to linux_remove_process.
998 * linux-low.h (thread_db_free): Add `detaching' parameter.
999 * thread-db.c (thread_db_init): Pass false as `detaching' argument
1000 to thread_db_free.
1001 (thread_db_free): Add `detaching' parameter. Only
1002 call td_ta_clear_event if detaching from process.
1003
75aa492e
MK
10042009-11-12 Maxim Kuvyrkov <maxim@codesourcery.com>
1005
1006 * thread-db.c (thread_db_free): Fix typo.
1007
21e1bee4
PP
10082009-11-11 Paul Pluzhnikov <ppluzhnikov@google.com>
1009
1010 PR gdb/10838
1011 * thread-db.c (thread_db_free): Call td_ta_clear_event.
1012
8838b45e
NS
10132009-11-03 Nathan Sidwell <nathan@codesourcery.com>
1014
1015 * configure.ac (i[34567]86-*): Check if we're targetting x86-64
1016 with an i686 compiler.
1017 * configure.srv (i[34567]86-*-linux*): Pull in x86-64 handling if
1018 needed.
1019 * configure: Rebuilt.
1020
8a35fb51
SL
10212009-10-29 Sandra Loosemore <sandra@codesourcery.com>
1022
1023 PR gdb/10783
1024
1025 * server.c (handle_search_memory_1): Correct read_addr initialization
1026 in loop for searching subsequent chunks.
1027
96f15937
PP
10282009-10-29 Paul Pluzhnikov <ppluzhnikov@google.com>
1029
1030 * configure.ac: New --with-libthread-db option.
1031 * thread-db.c: Allow direct dependence on libthread_db.
1032 (thread_db_free): Adjust.
1033 * config.in: Regenerate.
1034 * configure: Likewise.
1035
5f7d1694
PP
10362009-10-28 Paul Pluzhnikov <ppluzhnikov@google.com>
1037
1038 PR gdb/10757
1039 * thread-db.c (attach_thread): New function.
1040 (maybe_attach_thread): Return success/failure.
1041 (find_new_threads_callback): Adjust.
1042 (thread_db_find_new_threads): Loop until no new threads.
1043
88e3b899
PA
10442009-10-13 Pedro Alves <pedro@codesourcery.com>
1045
1046 * proc-service.c (ps_lgetregs): Formatting.
1047
cdbfd419
PP
10482009-10-08 Paul Pluzhnikov <ppluzhnikov@google.com>
1049
1050 * acinclude.m4: (SRV_CHECK_THREAD_DB, SRV_CHECK_TLS_GET_ADDR): Remove.
1051 * configure.ac: Adjust.
1052 * linux-low.h (struct process_info_private): Move members to struct
1053 thread_db.
1054 (thread_db_free, thread_db_handle_monitor_command): New prototype.
1055 * linux-low.c (linux_remove_process): Adjust.
1056 (linux_wait_for_event_1, linux_look_up_symbols): Likewise.
1057 * server.c (handle_query): Move code ...
1058 (handle_monitor_command): ... here. New function.
1059 * target.h (struct target_ops): New member.
1060 * thread-db.c (struct thread_db): New.
1061 (libthread_db_search_path): New variable.
1062 (thread_db_create_event, thread_db_enable_reporting)
1063 (find_one_thread, maybe_attach_thread, find_new_threads_callback)
1064 (thread_db_find_new_threads, (thread_db_get_tls_address): Adjust.
1065 (try_thread_db_load_1, dladdr_to_soname): New functions.
1066 (try_thread_db_load, thread_db_load_search): New functions.
1067 (thread_db_init): Search for libthread_db.
1068 (thread_db_free): New function.
1069 (thread_db_handle_monitor_command): Likewise.
1070 * config.in: Regenerate.
1071 * configure: Regenerate.
1072
4168d2d6
UW
10732009-09-27 Ulrich Weigand <uweigand@de.ibm.com>
1074
1075 * spu-low.c (spu_kill): Wait for inferior to terminate.
1076 Call clear_inferiors.
1077 (spu_detach): Call clear_inferiors.
1078
81ecdfbb
RW
10792009-08-22 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
1080
1081 * aclocal.m4: Regenerate.
1082 * config.in: Likewise.
1083 * configure: Likewise.
1084
0b9ff2c0
UW
10852009-07-31 Ulrich Weigand <uweigand@de.ibm.com>
1086
1087 * linux-ppc-low.c (INSTR_SC, NR_spu_run): Define.
1088 (parse_spufs_run): New function.
1089 (ppc_get_pc, ppc_set_pc): Detect and handle SPU PC.
1090 (ppc_breakpoint_at): Handle SPU breakpoints.
1091
efcbbd14
UW
10922009-07-31 Ulrich Weigand <uweigand@de.ibm.com>
1093
1094 * linux-low.c: Include <sys/stat.h> and <sys/vfs.h>.
1095 (SPUFS_MAGIC): Define.
1096 (spu_enumerate_spu_ids): New function.
1097 (linux_qxfer_spu): New function.
1098 (linux_target_ops): Install linux_qxfer_spu.
1099
f4d9bade
UW
11002009-07-31 Ulrich Weigand <uweigand@de.ibm.com>
1101
1102 * configure.srv (powerpc*-*-linux*): Add powerpc-cell32l.o
1103 and powerpc-cell64l.o to srv_regobj. Add rs6000/powerpc-cell32l.xml
1104 and rs6000/powerpc-cell64l.xml to srv_xmlfiles.
1105 * Makefile.in (powerpc-cell32l.o, powerpc-cell32l.c): New rules.
1106 (powerpc-cell64l.o, powerpc-cell64l.c): Likewise.
1107 (clean): Handle powerpc-cell32l.c and powerpc-cell64l.c.
1108 * linux-ppc-low.c (PPC_FEATURE_CELL): Define.
1109 (init_registers_powerpc_cell32l): Add prototype.
1110 (init_registers_powerpc_cell64l): Likewise.
1111 (ppc_arch_setup): Detect Cell/B.E. architecture.
1112
96e946ca
RW
11132009-07-30 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
1114
1115 * Makefile.in (datarootdir): New variable.
1116
58d6951d
DJ
11172009-07-28 Daniel Jacobowitz <dan@codesourcery.com>
1118
1119 * linux-low.c (linux_write_memory): Update debugging output.
1120 * Makefile.in (clean): Add new descriptions.
1121 (arm-with-vfpv2.o, arm-with-vfpv2.c, arm-with-vfpv3.o)
1122 (arm-with-vfpv3.c, arm-with-neon.o, arm-with-neon.c): New rules.
1123 * configure.srv: Add new files for arm*-*-linux*.
1124 * linux-arm-low.c: Add new declarations.
1125 (PTRACE_GETVFPREGS, PTRACE_SETVFPREGS): Define if undefined.
1126 (arm_hwcap, HWCAP_VFP, HWCAP_IWMMXT, HWCAP_NEON, HWCAP_VFPv3)
1127 (HWCAP_VFPv3D16): New.
1128 (arm_fill_wmmxregset, arm_store_wmmxregset): Check HWCAP_IWMMXT
1129 instead of __IWMMXT__.
1130 (arm_fill_vfpregset, arm_store_vfpregset, arm_get_hwcap)
1131 (arm_arch_setup): New.
1132 (target_regsets): Remove #ifdef. Add VFP regset.
1133 (the_low_target): Use arm_arch_setup.
1134
12b42a12
DJ
11352009-07-28 Daniel Jacobowitz <dan@codesourcery.com>
1136
1137 * linux-low.c (linux_kill_one_lwp): Adjust kernel workaround to skip
1138 the main thread again.
1139
ac8c974e
AR
11402009-07-06 Aleksandar Ristovski <aristovski@qnx.com>
1141
1142 Adding Neutrino gdbserver.
1143 * configure: Regenerated.
1144 * configure.ac: Add case for srv_qnx and set LIBS accordingly.
1145 * configure.srv (i[34567]86-*-nto*): New target.
1146 * nto-low.c, nto-low.h, nto-x86-low.c: New files.
1147 * remote-utils.c [__QNX__]: Include sys/iomgr.h
1148 (nto_comctrl) [__QNX__]: New function.
1149 (enable_async_io, disable_async_io) [__QNX__]: Call nto_comctrl.
1150
4424e0c3 11512009-07-05 Danny Backx <dannybackx@users.sourceforge.net>
7437790a
PA
1152
1153 * configure.srv (i[34567]86-*-mingw32ce*): Add i386-low.o to
1154 srv_tgtobj.
1155
912cf4ba
PA
11562009-07-04 Danny Backx <dannybackx@users.sourceforge.net>
1157 Pedro Alves <pedro@codesourcery.com>
1158
1159 * win32-i386-low.c (i386_get_thread_context): Handle systems that
1160 don't support CONTEXT_EXTENDED_REGISTERS.
1161 (i386_win32_breakpoint, i386_win32_breakpoint_len): New.
1162 (the_low_target): Install them.
1163 * win32-low.c (get_child_debug_event): Handle WaitForDebugEvent
1164 failing with ERROR_PIPE_NOT_CONNECTED.
1165
aa5ca48f
DE
11662009-06-30 Doug Evans <dje@google.com>
1167 Pierre Muller <muller@ics.u-strasbg.fr>
1168
1169 Add h/w watchpoint support to x86-linux, win32-i386.
1170 * Makefile.in (SFILES): Add i386-low.c
1171 (i386_low_h): Define.
1172 (i386-low.o): Add dependencies.
1173 (linux-x86-low.o): Add i386-low.h dependency.
1174 (win32-i386-low.o): Ditto.
1175 * i386-low.c: New file.
1176 * i386-low.h: New file.
1177 * configure.srv (i[34567]86-*-cygwin*): Add i386-low.o to srv_tgtobj.
1178 (i[34567]86-*-linux*, i[34567]86-*-mingw*, x86_64-*-linux*): Ditto.
1179 * linux-low.c (linux_add_process): Initialize arch_private.
1180 (linux_remove_process): Free arch_private.
1181 (add_lwp): Initialize arch_private.
1182 (delete_lwp): Free arch_private.
1183 (linux_resume_one_lwp): Call the_low_target.prepare_to_resume if
1184 provided.
1185 * linux-low.h (process_info_private): New member arch_private.
1186 (lwp_info): New member arch_private.
1187 (linux_target_ops): New members new_process, new_thread,
1188 prepare_to_resume.
1189 (ptid_of): New macro.
1190 * linux-x86-low.c: Include stddef.h, i386-low.h.
1191 (arch_process_info): New struct.
1192 (arch_lwp_info): New struct.
1193 (x86_linux_dr_get, x86_linux_dr_set): New functions.
1194 (i386_dr_low_set_addr, i386_dr_low_set_control): New functions.
1195 (i386_dr_low_get_status): New function.
1196 (x86_insert_point, x86_remove_point): New functions.
1197 (x86_stopped_by_watchpoint): New function.
1198 (x86_stopped_data_address): New function.
1199 (x86_linux_new_process, x86_linux_new_thread): New functions.
1200 (x86_linux_prepare_to_resume): New function.
1201 (the_low_target): Add entries for insert_point, remove_point,
1202 stopped_by_watchpoint, stopped_data_address, new_process, new_thread,
1203 prepare_to_resume.
1204 * server.c (debug_hw_points): New global.
1205 (monitor_show_help): Document set debug-hw-points.
1206 (handle_query): Process "set debug-hw-points".
1207 * server.h (debug_hw_points): Declare.
1208 (paddress): Declare.
1209 * utils.c (NUMCELLS, CELLSIZE): New macros.
1210 (get_sell, xsnprintf, paddress): New functions.
1211 * win32-arm-low.c (the_low_target): Add entries for insert_point,
1212 remove_point, stopped_by_watchpoint, stopped_data_address.
1213 * win32-i386-low.c: Include i386-low.h.
1214 (debug_reg_state): Replaces dr.
1215 (i386_dr_low_set_addr, i386_dr_low_set_control): New functions.
1216 (i386_dr_low_get_status): New function.
1217 (i386_insert_point, i386_remove_point): New functions.
1218 (i386_stopped_by_watchpoint): New function.
1219 (i386_stopped_data_address): New function.
1220 (i386_initial_stuff): Update.
1221 (get_thread_context,set_thread_context,i386_thread_added): Update.
1222 (the_low_target): Add entries for insert_point,
1223 remove_point, stopped_by_watchpoint, stopped_data_address.
1224 * win32-low.c (win32_insert_watchpoint): New function.
1225 (win32_remove_watchpoint): New function.
1226 (win32_stopped_by_watchpoint): New function.
1227 (win32_stopped_data_address): New function.
1228 (win32_target_ops): Add entries for insert_watchpoint,
1229 remove_watchpoint, stopped_by_watchpoint, stopped_data_address.
1230 * win32-low.h (win32_target_ops): New members insert_point,
1231 remove_point, stopped_by_watchpoint, stopped_data_address.
1232
d993e290
PA
12332009-06-25 Pedro Alves <pedro@codesourcery.com>
1234
1235 * server.c (process_serial_event): Re-return unsupported, not
1236 error, if the type isn't recognized. Re-allow supporting only
1237 insert or remove packets. Also call require_running for
1238 breakpoints. Add missing break statement to default case. Tidy.
1239 * target.h (struct target_ops): Rename insert_watchpoint to
1240 insert_point, and remove_watchpoint to remove_point.
1241
1242 * linux-low.h (struct linux_target_ops): Likewise.
1243 * linux-low.c (linux_insert_watchpoint): Rename to ...
1244 (linux_insert_point): ... this. Adjust.
1245 (linux_remove_watchpoint): Rename to ...
1246 (linux_remove_point): ... this. Adjust.
1247 (linux_target_ops): Adjust.
1248 * linux-crisv32-low.c (cris_insert_watchpoint): Rename to ...
1249 (cris_insert_point): ... this.
1250 (cris_remove_watchpoint): Rename to ...
1251 (cris_remove_point): ... this.
1252 (the_low_target): Adjust.
1253
0f54c268
PM
12542009-06-24 Pierre Muller <muller@ics.u-strasbg.fr>
1255
1256 * server.c (handle_v_kill): Pass signal_pid to
1257 kill_inferior if multi_process is zero.
1258
c6314022
AR
12592009-06-23 Aleksandar Ristovski <aristovski@qnx.com>
1260
1261 * server.c (process_serial_event): Add support for Z0 and Z1 packet.
1262 * target.h (target_ops): Comment for *_watchpoint to make it clear
1263 the functions can get types '0' and '1'.
1264
4463ce24
AR
12652009-06-22 Aleksandar Ristovski <aristovski@qnx.com>
1266
1267 * linux-low.c (usr_fetch_inferior_registers): Remove check for regno 0.
1268 * proc-service.c (ps_lgetregs): Pass -1 to fetch all registers.
1269 * regcache.c (get_regcache): Likewise.
1270 * spu-low.c (spu_fetch_registers): Remove 0 to -1 conversion.
1271 * win32-low.c (child_fetch_inferior_registers): Remove check for
1272 regno 0.
1273
cf8fd78b
PA
12742009-06-19 Aleksandar Ristovski <aristovski@qnx.com>
1275 Pedro Alves <pedro@codesourcery.com>
1276
1277 * target.h (struct target_ops) <supports_multi_process>: New
1278 callback.
1279 (target_supports_multi_process): New.
1280 * server.c (handle_query): Even if GDB reports support, only
1281 enable multi-process if the target also supports it. Report
1282 multi-process support only if the target backend supports it.
1283 * linux-low.c (linux_supports_multi_process): New function.
1284 (linux_target_ops): Install it as target_supports_multi_process
1285 callback.
1286
47c0c975
DE
12872009-05-24 Doug Evans <dje@google.com>
1288
e09875d4
DE
1289 Global renaming of find_thread_pid to find_thread_ptid.
1290 * server.h (find_thread_ptid): Renamed from find_thread_pid.
1291 * inferiors.c (find_thread_ptid): Renamed from find_thread_pid.
1292 All callers updated.
1293
e27d73f6
DE
1294 * linux-low.c (handle_extended_wait): Use linux_resume_one_lwp
1295 to resume the newly created thread, don't call ptrace (PTRACE_CONT)
1296 directly.
1297
47c0c975
DE
1298 * linux-low.c (get_stop_pc): Print pc if debug_threads.
1299 (check_removed_breakpoint, linux_wait_for_lwp): Ditto.
1300 (linux_resume_one_lwp): Ditto.
1301
2acc282a
DE
13022009-05-23 Doug Evans <dje@google.com>
1303
1304 * linux-low.c (linux_resume_one_lwp): Change type of first arg
1305 from struct inferior_list_entry * to struct lwp_info *.
1306 All callers updated.
1307
9f1036c1
DE
13082009-05-13 Doug Evans <dje@google.com>
1309
1310 * linux-x86-low.c: Don't include assert.h.
1311 (x86_siginfo_fixup): Use fatal, not assert.
1312 (x86_arch_setup): Fix comment.
1313
d0722149
DE
13142009-05-12 Doug Evans <dje@google.com>
1315
1316 Biarch support for i386/amd64 gdbserver.
1317 * Makefile.in (SFILES): Remove linux-i386-low.c, linux-x86-64-low.c.
1318 Add linux-x86-low.c.
1319 (linux-i386-low.o, linux-x86-64-low.o): Delete.
1320 (linux-x86-low.o): Add.
1321 * linux-x86-64-low.c: Delete.
1322 * linux-i386-low.c: Delete.
1323 * linux-x86-low.c: New file.
1324 * configure.srv (i?86-linux srv_tgtobj): Replace linux-i386-low.o with
1325 linux-x86-low.o.
1326 (x86_64-linux srv_tgtobj): Replace linux-x86-64-low.o with
1327 linux-x86-low.o.
1328 (x86_64-linux srv_regobj): Add reg-i386-linux.o.
1329 * linux-low.c: Include ansidecl.h, elf/common.h, elf/external.h.
1330 (linux_child_pid_to_exec_file): New function.
1331 (elf_64_header_p, elf_64_file_p): New functions.
1332 (siginfo_fixup): New function.
1333 (linux_xfer_siginfo): New local inf_siginfo. Call siginfo_fixup to
1334 give target a chance to convert layout.
1335 * linux-low.h (linux_target_ops): New member siginfo_fixup.
1336 (linux_child_pid_to_exec_file, elf_64_file_p): Declare.
1337
fdeb2a12
DE
13382009-05-07 Doug Evans <dje@google.com>
1339
1340 * linux-low.c (regsets_fetch_inferior_registers): Fix memory leak.
1341 (regsets_store_inferior_registers): Ditto.
1342
a6dbe5df
PA
13432009-05-06 Pedro Alves <pedro@codesourcery.com>
1344
1345 PR server/10048
1346
1347 * linux-low.c (must_set_ptrace_flags): Delete.
1348 (linux_create_inferior): Set `lwp->must_set_ptrace_flags' instead
1349 of the global.
1350 (linux_attach_lwp_1): Don't set PTRACE_SETOPTIONS here. Set
1351 `lwp->must_set_ptrace_flags' instead.
ba42693b 1352 (linux_wait_for_event_1): Set ptrace options here.
a6dbe5df
PA
1353 (linux_wait_1): ... not here.
1354
5091eb23
DE
13552009-04-30 Doug Evans <dje@google.com>
1356
9f767825
DE
1357 * inferiors.c (started_inferior_callback): New function.
1358 (attached_inferior_callback): New function.
1359 (have_started_inferiors_p, have_attached_inferiors_p): New functions.
1360 * server.c (print_started_pid, print_attached_pid): New functions.
1361 (detach_or_kill_for_exit): New function.
1362 (main): Call it instead of for_each_inferior (kill_inferior_callback).
1363 * server.h (have_started_inferiors_p): Declare.
1364 (have_attached_inferiors_p): Declare.
1365
5091eb23
DE
1366 * inferiors.c (remove_process): Fix memory leak, free process.
1367 * linux-low.c (linux_remove_process): New function.
1368 (linux_kill): Call it instead of remove_process.
1369 (linux_detach, linux_wait_1): Ditto.
1370
155c8968
PA
13712009-04-19 Danny Backx <dannybackx@users.sourceforge.net>
1372
1373 * configure.srv: Add x86 Windows CE target.
1374
7fe519cb
UW
13752009-04-03 Ulrich Weigand <uweigand@de.ibm.com>
1376
1377 * inferiors.c (get_thread_process): Make global.
1378 * server.h (get_thread_process): Add prototype.
1379 * thread-db.c (find_one_thread): Use get_thread_process
1380 instead of current_process.
1381 (thread_db_get_tls_address): Do not crash if called when
1382 thread layer is not yet initialized.
1383
5472f405
UW
13842009-04-03 Ulrich Weigand <uweigand@de.ibm.com>
1385
1386 * remote-utils.c (prepare_resume_reply): Null-terminate packet.
1387 * spu-low.c (current_tid): Rename to ...
1388 (current_ptid): ... this.
1389 (fetch_ppc_register, fetch_ppc_memory, store_ppc_memory,
1390 spu_proc_xfer_spu, spu_resume, spu_request_interrupt): Use
1391 ptid_get_lwp (current_ptid) instead of current_tid.
1392 (spu_kill, spu_detach, spu_join, spu_wait): Use pid argument
1393 instead of current_tid. Use find_process_pid to verify pid
1394 argument is valid. Pass proper argument to remove_process.
1395 (spu_thread_alive): Compare current_ptid instead of current_tid.
1396 (spu_resume): Likewise.
1397
55ac2b99
PA
13982009-04-02 Pedro Alves <pedro@codesourcery.com>
1399
1400 * linux-low.c (usr_store_inferior_registers): Declare local `pid'
1401 variable.
1402
95954743
PA
14032009-04-01 Pedro Alves <pedro@codesourcery.com>
1404
1405 Implement the multiprocess extensions, and add linux multiprocess
1406 support.
1407
1408 * server.h (ULONGEST): Declare.
1409 (struct ptid, ptid_t): New.
1410 (minus_one_ptid, null_ptid): Declare.
1411 (ptid_build, pid_to_ptid, ptid_get_pid, ptid_get_lwp)
1412 (ptid_get_tid, ptid_equal, ptid_is_pid): Declare.
1413 (struct inferior_list_entry): Change `id' type from unsigned from
1414 to ptid_t.
1415 (struct sym_cache, struct breakpoint, struct
1416 process_info_private): Forward declare.
1417 (struct process_info): Declare.
1418 (current_process): Declare.
1419 (all_processes): Declare.
1420 (initialize_inferiors): Declare.
1421 (add_thread): Adjust to use ptid_t.
1422 (thread_id_to_gdb_id, thread_to_gdb_id, gdb_id_to_thread_id): Ditto.
1423 (add_process, remove_process, find_thread_pid): Declare.
1424 (find_inferior_id): Adjust to use ptid_t.
1425 (cont_thread, general_thread, step_thread): Change type to ptid_t.
1426 (multi_process): Declare.
1427 (push_event): Adjust to use ptid_t.
1428 (read_ptid, write_ptid): Declare.
1429 (prepare_resume_reply): Adjust to use ptid_t.
1430 (clear_symbol_cache): Declare.
1431 * inferiors.c (all_processes): New.
1432 (null_ptid, minus_one_ptid): New.
1433 (ptid_build, pid_to_ptid, ptid_get_pid, ptid_get_lwp)
1434 (ptid_get_tid, ptid_equal, ptid_is_pid): New.
1435 (add_thread): Change unsigned long to ptid. Remove gdb_id
1436 parameter. Adjust.
1437 (thread_id_to_gdb_id, thread_to_gdb_id): Change unsigned long to ptid.
1438 (gdb_id_to_thread): Rename to ...
1439 (find_thread_pid): ... this. Change unsigned long to ptid.
1440 (gdb_id_to_thread_id, find_inferior_id): Change unsigned long to ptid.
1441 (loaded_dll, pull_pid_from_list): Adjust.
1442 (add_process, remove_process, find_process_pid)
1443 (get_thread_process, current_process, initialize_inferiors): New.
1444 * target.h (struct thread_resume) <thread>: Change type to ptid_t.
1445 (struct target_waitstatus) <related_pid>: Ditto.
1446 (struct target_ops) <kill, detach>: Add `pid' argument. Change
1447 return type to int.
1448 (struct target_ops) <join>: Add `pid' argument.
1449 (struct target_ops) <thread_alive>: Change pid's type to ptid_t.
1450 (struct target_ops) <wait>: Add `ptid' field. Change return type
1451 to ptid.
1452 (kill_inferior, detach_inferior, join_inferior): Add `pid' argument.
1453 (mywait): Add `ptid' argument. Change return type to ptid_t.
1454 (target_pid_to_str): Declare.
1455 * target.c (set_desired_inferior): Adjust to use ptids.
1456 (mywait): Add new `ptid' argument. Adjust.
1457 (target_pid_to_str): New.
1458 * mem-break.h (free_all_breakpoints): Declare.
1459 * mem-break.c (breakpoints): Delelete.
1460 (set_breakpoint_at, delete_breakpoint, find_breakpoint_at)
1461 (check_mem_read, check_mem_write, delete_all_breakpoints): Adjust
1462 to use per-process breakpoint list.
1463 (free_all_breakpoints): New.
1464 * remote-utils.c (struct sym_cache) <name>: Drop `const'.
1465 (symbol_cache, all_symbols_looked_up): Delete.
1466 (hexchars): New.
1467 (ishex, unpack_varlen_hex, write_ptid, hex_or_minus_one,
1468 read_ptid): New.
1469 (prepare_resume_reply): Change ptid argument's type from unsigned
1470 long to ptid_t. Adjust. Implement W;process and X;process.
1471 (free_sym_cache, clear_symbol_cache): New.
1472 (look_up_one_symbol): Adjust to per-process symbol cache. *
1473 * server.c (cont_thread, general_thread, step_thread): Change type
1474 to ptid_t.
1475 (attached): Delete.
1476 (multi_process): New.
1477 (last_ptid): Change type to ptid_t.
1478 (struct vstop_notif) <ptid>: Change type to ptid_t.
1479 (queue_stop_reply, push_event): Change `ptid' argument's type to
1480 ptid_t.
1481 (discard_queued_stop_replies): Add `pid' argument.
1482 (start_inferior): Adjust to use ptids. Adjust to mywait interface
1483 changes. Don't reference the `attached' global.
1484 (attach_inferior): Adjust to mywait interface changes.
1485 (handle_query): Adjust to use ptids. Parse GDB's qSupported
1486 features. Handle and report "multiprocess+". Handle
1487 "qAttached:PID".
1488 (handle_v_cont): Adjust to use ptids. Adjust to mywait interface
1489 changes.
1490 (handle_v_kill): New.
1491 (handle_v_stopped): Adjust to use target_pid_to_str.
1492 (handle_v_requests): Allow multiple attaches and runs when
1493 multiprocess extensions are in effect. Handle "vKill".
1494 (myresume): Adjust to use ptids.
1495 (queue_stop_reply_callback): Add `arg' parameter. Handle it.
1496 (handle_status): Adjust to discard_queued_stop_replies interface
1497 change.
1498 (first_thread_of, kill_inferior_callback)
1499 (detach_or_kill_inferior_callback, join_inferiors_callback): New.
1500 (main): Call initialize_inferiors. Adjust to use ptids, killing
1501 and detaching from all inferiors. Handle multiprocess packet
1502 variants.
1503 * linux-low.h: Include gdb_proc_service.h.
1504 (struct process_info_private): New.
1505 (struct linux_target_ops) <pid_of>: Use ptid_get_pid.
1506 <lwpid_of>: Use ptid_get_lwp.
1507 (get_lwp_thread): Adjust.
1508 (struct lwp_info): Add `dead' member.
1509 (find_lwp_pid): Declare.
1510 * linux-low.c (thread_db_active): Delete.
1511 (new_inferior): Adjust comment.
1512 (inferior_pid): Delete.
1513 (linux_add_process): New.
1514 (handle_extended_wait): Adjust.
1515 (add_lwp): Change unsigned long to ptid.
1516 (linux_create_inferior): Add process to processes table. Adjust
1517 to use ptids. Don't set new_inferior here.
1518 (linux_attach_lwp): Rename to ...
1519 (linux_attach_lwp_1): ... this. Add `initial' argument. Handle
1520 it. Adjust to use ptids.
1521 (linux_attach_lwp): New.
1522 (linux_attach): Add process to processes table. Don't set
1523 new_inferior here.
1524 (struct counter): New.
1525 (second_thread_of_pid_p, last_thread_of_process_p): New.
1526 (linux_kill_one_lwp): Add `args' parameter. Handle it. Adjust to
1527 multiple processes.
1528 (linux_kill): Add `pid' argument. Handle it. Adjust to multiple
1529 processes. Remove process from process table.
1530 (linux_detach_one_lwp): Add `args' parameter. Handle it. Adjust
1531 to multiple processes.
1532 (any_thread_of): New.
1533 (linux_detach): Add `pid' argument, and handle it. Remove process
1534 from processes table.
1535 (linux_join): Add `pid' argument. Handle it.
1536 (linux_thread_alive): Change unsighed long argument to ptid_t.
1537 Consider dead lwps as not being alive.
1538 (status_pending_p): Rename `dummy' argument to `arg'. Filter out
1539 threads we're not interested in.
1540 (same_lwp, find_lwp_pid): New.
1541 (linux_wait_for_lwp): Change `pid' argument's type from int to
1542 ptid_t. Adjust.
1543 (linux_wait_for_event): Rename to ...
1544 (linux_wait_for_event_1): ... this. Change `pid' argument's type
1545 from int to ptid_t. Adjust.
1546 (linux_wait_for_event): New.
1547 (linux_wait_1): Add `ptid' argument. Change return type to
1548 ptid_t. Adjust. Use last_thread_of_process_p. Remove processes
1549 that exit from the process table.
1550 (linux_wait): Add `ptid' argument. Change return type to ptid_t.
1551 Adjust.
1552 (mark_lwp_dead): New.
1553 (wait_for_sigstop): Adjust to use ptids. If a process exits while
1554 stopping all threads, mark its main lwp as dead.
1555 (linux_set_resume_request, linux_resume_one_thread): Adjust to use
1556 ptids.
1557 (fetch_register, usr_store_inferior_registers)
1558 (regsets_fetch_inferior_registers)
1559 (regsets_store_inferior_registers, linux_read_memory)
1560 (linux_write_memory): Inline `inferior_pid'.
1561 (linux_look_up_symbols): Adjust to use per-process
1562 `thread_db_active'.
1563 (linux_request_interrupt): Adjust to use ptids.
1564 (linux_read_auxv): Inline `inferior_pid'.
1565 (initialize_low): Don't reference thread_db_active.
1566 * gdb_proc_service.h (struct ps_prochandle) <pid>: Remove.
1567 * proc-service.c (ps_lgetregs): Use find_lwp_pid.
1568 (ps_getpid): Return the pid of the current inferior.
1569 * thread-db.c (proc_handle, thread_agent): Delete.
1570 (thread_db_create_event, thread_db_enable_reporting): Adjust to
1571 per-process data.
1572 (find_one_thread): Change argument type to ptid_t. Adjust to
1573 per-process data.
1574 (maybe_attach_thread): Adjust to per-process data and ptids.
1575 (thread_db_find_new_threads): Ditto.
1576 (thread_db_init): Ditto.
1577 * spu-low.c (spu_create_inferior, spu_attach): Add process to
1578 processes table. Adjust to use ptids.
1579 (spu_kill, spu_detach): Adjust interface. Remove process from
1580 processes table.
1581 (spu_join, spu_thread_alive): Adjust interface.
1582 (spu_wait): Adjust interface. Remove process from processes
1583 table. Adjust to use ptids.
1584 * win32-low.c (current_inferior_tid): Delete.
1585 (current_inferior_ptid): New.
1586 (debug_event_ptid): New.
1587 (thread_rec): Take a ptid. Adjust.
1588 (child_add_thread): Add `pid' argument. Adjust to use ptids.
1589 (child_delete_thread): Ditto.
1590 (do_initial_child_stuff): Add `attached' argument. Add process to
1591 processes table.
1592 (child_fetch_inferior_registers, child_store_inferior_registers):
1593 Adjust.
1594 (win32_create_inferior): Pass 0 to do_initial_child_stuff.
1595 (win32_attach): Pass 1 to do_initial_child_stuff.
1596 (win32_kill): Adjust interface. Remove process from processes
1597 table.
1598 (win32_detach): Ditto.
1599 (win32_join): Adjust interface.
1600 (win32_thread_alive): Take a ptid.
1601 (win32_resume): Adjust to use ptids.
1602 (get_child_debug_event): Ditto.
1603 (win32_wait): Adjust interface. Remove exiting process from
1604 processes table.
1605
bd99dc85
PA
16062009-04-01 Pedro Alves <pedro@codesourcery.com>
1607
1608 Non-stop mode support.
1609
1610 * server.h (non_stop): Declare.
1611 (gdb_client_data, handler_func): Declare.
1612 (delete_file_handler, add_file_handler, start_event_loop):
1613 Declare.
1614 (handle_serial_event, handle_target_event, push_event)
1615 (putpkt_notif): Declare.
1616 * target.h (enum resume_kind): New.
1617 (struct thread_resume): Replace `step' field by `kind' field.
1618 (TARGET_WNOHANG): Define.
1619 (struct target_ops) <wait>: Add `options' argument.
1620 <supports_non_stop, async, start_non_stop>: New fields.
1621 (target_supports_non_stop, target_async): New.
1622 (start_non_stop): Declare.
1623 (mywait): Add `options' argument.
1624 * target.c (mywait): Add `options' argument. Print child exit
1625 notifications here.
1626 (start_non_stop): New.
1627 * server.c (non_stop, own_buf, mem_buf): New globals.
1628 (struct vstop_notif): New.
1629 (notif_queue): New global.
1630 (queue_stop_reply, push_event, discard_queued_stop_replies)
1631 (send_next_stop_reply): New.
1632 (start_inferior): Adjust to use resume_kind. Adjust to mywait
1633 interface changes.
1634 (attach_inferior): In non-stop mode, don't wait for the target
1635 here.
1636 (handle_general_set): Handle QNonStop.
1637 (handle_query): When handling qC, return the current general
1638 thread, instead of the first thread of the list.
1639 (handle_query): If the backend supports non-stop mode, include
1640 QNonStop+ in the qSupported query response.
1641 (handle_v_cont): Adjust to use resume_kind. Handle resume_stop
1642 and non-stop mode.
1643 (handle_v_attach, handle_v_run): Handle non-stop mode.
1644 (handle_v_stopped): New.
1645 (handle_v_requests): Report support for vCont;t. Handle vStopped.
1646 (myresume): Adjust to use resume_kind. Handle non-stop.
1647 (queue_stop_reply_callback): New.
1648 (handle_status): Handle non-stop mode.
1649 (main): Clear non_stop flag on reconnection. Use the event-loop.
1650 Refactor serial protocol handling from here ...
1651 (process_serial_event): ... to this new function. When GDB
1652 selects any thread, select one here. In non-stop mode, wait until
1653 GDB acks all pending events before exiting.
1654 (handle_serial_event, handle_target_event): New.
1655 * remote-utils.c (remote_open): Install remote_desc in the event
1656 loop.
1657 (remote_close): Remove remote_desc from the event loop.
1658 (putpkt_binary): Rename to...
1659 (putpkt_binary_1): ... this. Add `is_notic' argument. Handle it.
1660 (putpkt_binary): New as wrapper around putpkt_binary_1.
1661 (putpkt_notif): New.
1662 (prepare_resume_reply): In non-stop mode, don't change the
1663 general_thread.
1664 * event-loop.c: New.
1665 * Makefile.in (OBJ): Add event-loop.o.
1666 (event-loop.o): New rule.
1667
1668 * linux-low.h (pid_of): Moved here.
1669 (lwpid_of): New.
1670 (get_lwp_thread): Use lwpid_of.
1671 (struct lwp_info): Delete `lwpid' field. Add `suspended' field.
1672 * linux-low.c (pid_of): Delete.
1673 (inferior_pid): Use lwpid_of.
1674 (linux_event_pipe): New.
1675 (target_is_async_p): New.
1676 (delete_lwp): New.
1677 (handle_extended_wait): Use lwpid_of.
1678 (add_lwp): Don't set lwpid field.
1679 (linux_attach_lwp): Adjust debug output. Use lwpid_of.
1680 (linux_kill_one_lwp): If killing a running lwp, stop it first.
1681 Use lwpid_of. Adjust to linux_wait_for_event interface changes.
1682 (linux_detach_one_lwp): If detaching from a running lwp, stop it
1683 first. Adjust to linux_wait_for_event interface changes. Use
1684 lwpid_of.
1685 (linux_detach): Don't delete the main lwp here.
1686 (linux_join): Use my_waitpid. Avoid signal_pid. Use lwpid_of.
1687 (status_pending_p): Don't consider explicitly suspended lwps.
1688 (linux_wait_for_lwp): Take an integer pid instead of a lwp_info
1689 pointer. Add OPTIONS argument. Change return type to int. Use
1690 my_waitpid instead of sleeping. Handle WNOHANG. Use lwpid_of.
1691 (linux_wait_for_event): Take an integer pid instead of a lwp_info
1692 pointer. Add status pointer argument. Return a pid instead of a
1693 status. Use lwpid_of. Adjust to linux_wait_for_lwp interface
1694 changes. In non-stop mode, don't switch to a random thread.
1695 (linux_wait): Rename to...
1696 (linux_wait_1): ... this. Add target_options argument, and handle
1697 it. Adjust to use resume_kind. Use lwpid_of. In non-stop mode,
1698 don't handle the continue thread. Handle TARGET_WNOHANG. Merge
1699 clean exit and signal exit code. Don't stop all threads in
1700 non-stop mode. In all-stop mode, only stop all threads when
1701 reporting a stop to GDB. Handle explicit thread stop requests.
1702 (async_file_flush, async_file_mark): New.
1703 (linux_wait): New.
1704 (send_sigstop): Use lwpid_of.
1705 (wait_for_sigstop): Use lwpid_of. Adjust to linux_wait_for_event
1706 interface changes. In non-stop mode, don't switch to a random
1707 thread.
1708 (linux_resume_one_lwp): Use lwpid_of.
1709 (linux_continue_one_thread, linux_queue_one_thread): Merge into ...
1710 (linux_resume_one_thread): ... this. Handle resume_stop. In
1711 non-stop mode, don't look for pending flag in all threads.
1712 (resume_status_pending_p): Don't consider explicitly suspended
1713 threads.
1714 (my_waitpid): Reimplement. Emulate __WALL.
1715 (linux_request_interrupt, linux_read_offsets, linux_xfer_siginfo):
1716 Use lwpid_of.
1717 (sigchld_handler, linux_supports_non_stop, linux_async)
1718 (linux_start_non_stop): New.
1719 (linux_target_ops): Register linux_supports_non_stop, linux_async
1720 and linux_start_non_stop.
1721 (initialize_low): Install SIGCHLD handler.
1722 * thread-db.c (thread_db_create_event, find_one_thread)
1723 (thread_db_get_tls_address): Use lwpid_of.
1724 * win32-low.c (win32_detach): Adjust to use resume_kind.
1725 (win32_wait): Add `options' argument.
1726 * spu-low.c (spu_resume): Adjust to use resume_kind.
1727 (spu_wait): Add `options' argument.
1728
5b1c542e
PA
17292009-04-01 Pedro Alves <pedro@codesourcery.com>
1730
1731 Decouple target code from remote protocol.
1732
1733 * target.h (enum target_waitkind): New.
1734 (struct target_waitstatus): New.
1735 (struct target_ops) <wait>: Return an unsigned long. Take a
1736 target_waitstatus pointer instead of a char pointer.
1737 (mywait): Likewise.
1738 * target.c (mywait): Change prototype to return an unsigned long.
1739 Take a target_waitstatus pointer instead of a char pointer. Adjust.
1740 * server.h (thread_from_wait, old_thread_from_wait): Delete
1741 declarations.
1742 (prepare_resume_reply): Change prototype to take a
1743 target_waitstatus.
1744 * server.c (thread_from_wait, old_thread_from_wait): Delete.
1745 (last_status, last_ptid): New.
1746 (start_inferior): Remove "statusptr" argument. Adjust. Return a
1747 pid instead of a signal.
1748 (attach_inferior): Remove "status" and "signal" parameters.
1749 Adjust.
1750 (handle_query): For qGetTLSAddr, parse the thread id with strtol,
1751 not as an address.
1752 (handle_v_cont, handle_v_attach, handle_v_run, handle_v_kill)
1753 (handle_v_requests, myresume): Remove "status" and "signal"
1754 parameters. Adjust.
1755 (handle_status): New.
1756 (main): Delete local `status'. Adjust.
1757 * remote-utils.c: Include target.h.
1758 (prepare_resume_reply): Change prototype to take a
1759 target_waitstatus. Adjust.
1760
1761 * linux-low.c (linux_wait): Adjust to new target_ops->wait
1762 interface.
1763 * spu-low.c (spu_wait): Adjust.
1764 * win32-low.c (enum target_waitkind, struct target_waitstatus):
1765 Delete.
1766 (win32_wait): Adjust.
1767
2bd7c093
PA
17682009-04-01 Pedro Alves <pedro@codesourcery.com>
1769
1770 * target.h (struct thread_resume): Delete leave_stopped member.
1771 (struct target_ops): Add a `n' argument to the `resume' callback.
1772 * server.c (start_inferior): Adjust.
1773 (handle_v_cont, myresume): Adjust.
1774 * linux-low.c (check_removed_breakpoint): Adjust to resume
1775 interface change, and to removed leave_stopped field.
1776 (resume_ptr): Delete.
1777 (struct thread_resume_array): New.
1778 (linux_set_resume_request): Add new `arg' parameter. Adjust to
1779 resume interface change.
1780 (linux_continue_one_thread, linux_queue_one_thread)
1781 (resume_status_pending_p): Check if the resume field is NULL
1782 instead of checking the leave_stopped member.
1783 (linux_resume): Adjust to the target resume interface change.
1784 * spu-low.c (spu_resume): Adjust to the target resume interface
1785 change.
1786 * win32-low.c (win32_detach, win32_resume): Ditto.
1787
c35fafde
PA
17882009-04-01 Pedro Alves <pedro@codesourcery.com>
1789
1790 * linux-low.c (linux_wait_for_event): Don't clear the `stepping'
1791 flag.
1792 (wait_for_sigstop): Don't leave a finished single-step SIGTRAP
1793 pending.
1794 (linux_continue_one_thread): Only preserve the stepping flag if
1795 there's a pending breakpoint.
1796
0a59d50b
PA
17972009-03-31 Pedro Alves <pedro@codesourcery.com>
1798
1799 * server.c (main): After the inferior having exited, call
1800 remote_close before exiting gdbserver.
1801
f04c6d38
TJB
18022009-03-25 Thiago Jung Bauermann <bauerman@br.ibm.com>
1803
1804 Fix size of FPSCR in Power 7 processors.
1805 * linux-ppc-low.c (PPC_FEATURE_ARCH_2_05): Remove #define.
1806 (PPC_FEATURE_HAS_DFP): New #define.
1807 (ppc_arch_setup): Check for DFP feature instead of ISA 2.05 to decide on
1808 size of the FPSCR.
1809
78e5cee6
PA
18102009-03-23 Pedro Alves <pedro@codesourcery.com>
1811
1812 * server.c (handle_query) Whitespace and formatting.
1813
1b3f6016
PA
18142009-03-22 Pedro Alves <pedro@codesourcery.com>
1815
1816 * i387-fp.c, linux-arm-low.c, linux-cris-low.c,
1817 linux-crisv32-low.c, linux-i386-low.c, linux-low.c,
1818 linux-mips-low.c, linux-s390-low.c, linux-sparc-low.c,
1819 linux-x86-64-low.c, linux-xtensa-low.c, proc-service.c,
1820 regcache.c, remote-utils.c, server.c, spu-low.c, target.h,
1821 thread-db.c, win32-low.c, xtensa-xtregs.c, gdbreplay.c,
1822 Makefile.in, configure.ac: Fix whitespace throughout.
1823 * configure: Regenerate.
1824
a07b2135
PA
18252009-03-22 Pedro Alves <pedro@codesourcery.com>
1826
1827 * inferiors.c (find_inferior): Make it safe for the callback
1828 function to delete the currently iterated inferior.
1829
67cc2626
PA
18302009-03-22 Pedro Alves <pedro@codesourcery.com>
1831
1832 * Makefile.in (linuw_low_h): Move higher.
1833 (thread-db.o): Depend on $(linux_low_h).
1834
54a0b537
PA
18352009-03-17 Pedro Alves <pedro@codesourcery.com>
1836
1837 Rename "process" to "lwp" throughout.
1838
1839 * linux-low.c (all_processes): Rename to...
1840 (all_lwps): ... this.
1841 (inferior_pid, handle_extended_wait, get_stop_pc): Adjust.
1842 (add_process): Rename to ...
1843 (add_lwp): ... this. Adjust.
1844 (linux_create_inferior): Adjust.
1845 (linux_attach_lwp): Adjust.
1846 (linux_attach): Adjust.
1847 (linux_kill_one_process): Rename to ...
1848 (linux_kill_one_lwp): ... this. Adjust.
1849 (linux_kill): Adjust.
1850 (linux_detach_one_process): Rename to ...
1851 (linux_detach_one_lwp): ... this. Adjust.
1852 (linux_detach): Adjust.
1853 (check_removed_breakpoint): Adjust.
1854 (status_pending_p): Adjust.
1855 (linux_wait_for_process): Rename to ...
1856 (linux_wait_for_lwp): ... this. Adjust.
1857 (linux_wait_for_event): Adjust.
1858 (send_sigstop): Adjust.
1859 (wait_for_sigstop): Adjust.
1860 (stop_all_processes): Rename to ...
1861 (stop_all_lwps): ... this.
1862 (linux_resume_one_process): Rename to ...
1863 (linux_resume_one_lwp): ... this. Adjust.
1864 (linux_set_resume_request, linux_continue_one_thread)
1865 (linux_queue_one_thread, resume_status_pending_p)
1866 (usr_store_inferior_registers, regsets_store_inferior_registers)
1867 (linux_request_interrupt, linux_read_offsets, linux_xfer_siginfo):
1868 Adjust.
1869 * linux-low.h (get_process): Rename to ...
1870 (get_lwp): ... this. Adjust.
1871 (get_thread_process): Rename to ...
1872 (get_thread_lwp): ... this. Adjust.
1873 (get_process_thread): Rename to ...
1874 (get_lwp_thread): ... this. Adjust.
1875 (struct process_info): Rename to ...
1876 (struct lwp_info): ... this.
1877 (all_processes): Rename to ...
1878 (all_lwps): ... this.
1879 * proc-service.c (ps_lgetregs): Adjust.
1880 * thread-db.c (thread_db_create_event, find_one_thread)
1881 (maybe_attach_thread, thread_db_get_tls_address): Adjust.
1882
0b16c5cf
PA
18832009-03-14 Pedro Alves <pedro@codesourcery.com>
1884
1885 * server.c (handle_query): Handle "qAttached".
1886
32de4b9d
NS
18872009-03-13 Nathan Sidwell <nathan@codesourcery.com>
1888
1889 * Makefile.in, hostio-errno.c, errno.c, xtensa-xtregs.c: Change to
1890 GPLv3, update license URL.
1891
2aecd87f
DE
18922009-03-01 Doug Evans <dje@google.com>
1893
93efd302 1894 * Makefile.in (INCLUDE_CFLAGS): Add -I$(srcdir)/../common.
2aecd87f
DE
1895 (server_h): Add gdb_signals.h.
1896 (signals.o): Update.
1897 * server.h (target_signal_from_host,target_signal_to_host_p)
1898 (target_signal_to_host,target_signal_to_name): Moved to gdb_signals.h.
1899
86b1f9c5
PM
19002009-02-14 Pierre Muller <muller@ics.u-strasbg.fr>
1901
1902 * remote-utils.c (getpkt): Also generate remote-debug
1903 information if noack_mode is set.
1904
4aa995e1
PA
19052009-02-06 Pedro Alves <pedro@codesourcery.com>
1906
1907 * server.c (handle_query): Report qXfer:siginfo:read and
1908 qXfer:siginfo:write as supported and handle them.
1909 * target.h (struct target_ops) <qxfer_siginfo>: New field.
1910 * linux-low.c (linux_xfer_siginfo): New.
1911 (linux_target_ops): Set it.
1912
62709adf
PA
19132009-01-26 Pedro Alves <pedro@codesourcery.com>
1914
1915 * server.c (gdbserver_usage): Mention --remote-debug.
1916 (main): Accept '--remote-debug' switch.
1917
aef93bd7
DE
19182009-01-18 Doug Evans <dje@google.com>
1919
1920 * regcache.c (new_register_cache): No need to check result of xcalloc.
1921 * server.c (handle_search_memory): Back out calls to xmalloc,
1922 result is checked and error is returned to user upon failure.
1923 (handle_query): Ditto. Add more checks for result of malloc.
1924 (handle_v_cont): Check result of malloc, report error back to
1925 user upon failure.
1926 (handle_v_run): Ditto. Call freeargv.
1927 * server.h (freeargv): Declare.
1928 * utils.c (freeargv): New fn.
1929
54363045
DE
19302009-01-15 Doug Evans <dje@google.com>
1931
f626972c
DE
1932 * gdbreplay.c (perror_with_name): Make arg const char *.
1933 * server.h (target_signal_to_name): Make return type const char *.
0842e787 1934 * thread-db.c (thread_db_err_str): Make return type const char *.
f626972c 1935 * utils.c (perror_with_name): Make arg const char *.
54363045 1936
18aae699
PA
19372009-01-14 Pedro Alves <pedro@codesourcery.com>
1938
1939 * win32-low.c (get_child_debug_event): Issue a final DBG_CONTINUE
1940 when handling a EXIT_PROCESS_DEBUG_EVENT.
1941
ff703abe
JB
19422009-01-06 Joel Brobecker <brobecker@adacore.com>
1943
1944 * gdbreplay.c (gdbreplay_version): Update copyright year.
1945 * server.c (gdbserver_version): Likewise.
1946
f21cc1a2 19472009-01-05 Doug Evans <dje@google.com>
0e21c1ec
DE
1948
1949 * linux-low.c (linux_attach_lwp): Add some comments/fixmes.
f21cc1a2 1950 (handle_extended_wait): Improve comment.
0e21c1ec 1951
bca929d3
DE
19522008-12-13 Doug Evans <dje@google.com>
1953
1954 * utils.c (xmalloc,xcalloc,xstrdup): New fns.
1955 * server.h (ATTR_MALLOC): New macro.
1956 (xmalloc,xcalloc,xstrdup): Declare.
1957 * hostio.c: Replace malloc,calloc,strdup with xmalloc,xcalloc,xstrdup.
1958 * inferiors.c: Ditto.
1959 * linux-low.c: Ditto.
1960 * mem-break.c: Ditto.
1961 * regcache.c: Ditto.
1962 * remote-utils.c: Ditto.
1963 * server.c: Ditto.
1964 * target.c: Ditto.
1965 * win32-low.c: Ditto.
1966
97438e3f
DE
19672008-12-12 Doug Evans <dje@google.com>
1968
896c7fbb
DE
1969 * linux-low.c (linux_wait_for_process): Don't clobber current_inferior
1970 in debugging printf.
1971
97438e3f
DE
1972 * linux-low.c (handle_extended_wait): Simplify, use my_waitpid.
1973
e3b886f8
DE
19742008-12-09 Doug Evans <dje@google.com>
1975
1976 * linux-low.h (struct process_info): Delete member tid, unused.
1977 * thread-db.c (find_one_thread): Update.
1978 (maybe_attach_thread): Update.
1979
07e059b5
VP
19802008-12-02 Pedro Alves <pedro@codesourcery.com>
1981
1982 * target.h (struct target_ops): Add qxfer_osdata member.
1983 * linux-low.c: Include ctype.h and pwd.h and sys/types.h
1984 and dirent.h.
1985 (linux_qxfer_osdata): New functions.
1986 (linux_target_ops): Register linux_qxfer_osdata as qxfer_osdata
1987 callback.
1988 * server.c (handle_query): Handle "qXfer:osdata:read:".
1989 * remote-utils.c (buffer_grow, buffer_free, buffer_init, buffer_finish)
1990 (buffer_xml_printf): New functions.
1991 * server.h (struct buffer): New.
1992 (buffer_grow_str, buffer_grow_str0): New macros.
1993 (buffer_grow, buffer_free, buffer_init, buffer_finish)
1994 (buffer_xml_printf): Declare.
1995
4cab47ab
DE
19962008-11-24 Doug Evans <dje@google.com>
1997
1998 * Makefile.in (VERSION,DIST,LINT,LINTFLAGS): Delete, unused.
1999
f142445f
DJ
20002008-11-24 Daniel Jacobowitz <dan@codesourcery.com>
2001
2002 * server.c (handle_v_run): Always use the supplied argument list.
2003
d0107bb6
BW
20042008-11-19 Bob Wilson <bob.wilson@acm.org>
2005
2006 * xtensa-xtregs.c (XTENSA_ELF_XTREG_SIZE): Change to 4.
2007 (xtensa_regmap_table): Add entry for scompare1.
2008
2c4ad781
TJB
20092008-11-18 Thiago Jung Bauermann <bauerman@br.ibm.com>
2010
2011 * Makefile.in (powerpc-isa205-32l.o, powerpc-isa205-32l.c,
2012 powerpc-isa205-altivec32l.o, powerpc-isa205-altivec32l.c,
2013 powerpc-isa205-vsx32l.o, powerpc-isa205-vsx32l.c,
2014 powerpc-isa205-64l.o, powerpc-isa205-64l.c,
2015 powerpc-isa205-altivec64l.o, powerpc-isa205-altivec64l.c,
2016 powerpc-isa205-vsx64l.o, powerpc-isa205-vsx64l.c): New targets.
2017 * configure.srv (powerpc*-*-linux*): Add ISA 2.05 object files and
2018 XML target descriptions.
2019 * linux-ppc-low.c (ppc_arch_setup): Init registers with 64-bit FPSCR
2020 when inferior is running on an ISA 2.05 or later processor. Add
2021 special case to return offset for full 64-bit slot of FPSCR when
2022 in 32-bits.
2023
dfb64f85
DJ
20242008-11-14 Daniel Gutson <dgutson@codesourcery.com>
2025
2026 * Makefile.in (SFILES, clean): Added sparc64 files.
2027 (reg-sparc64.o, reg-sparc64.c): New.
2028 * configure.srv (sparc*-*-linux*): New configuration.
2029 * linux-low.c (regsets_fetch_inferior_registers): Swap ptrace
2030 syscall arguments for SPARC.
2031 (regsets_store_inferior_registers): Likewise.
2032 * linux-sparc-low.c: New file.
2033
66b6e1dd
DE
20342008-10-21 Doug Evans <dje@google.com>
2035
2036 * Makefile.in (BFD_DIR,BFD,BFD_SRC,BFD_CFLAGS): Delete.
2037 (READLINE_DIR,READLINE_DEP): Delete.
2038 (INTERNAL_CFLAGS): Update.
2039 (LINTFLAGS): Update.
2040
9b710a42
PA
20412008-10-10 Pedro Alves <pedro@codesourcery.com>
2042
2043 * server.c (handle_v_run): If GDB didn't specify an argv, use the
2044 whole argv from the last run, not just argv[0].
2045
5822d809
PA
20462008-09-08 Pedro Alves <pedro@codesourcery.com>
2047
2048 * regcache.c (new_register_cache): Return NULL if the register
2049 cache size isn't known yet.
2050 (free_register_cache): Avoid dereferencing a NULL regcache.
2051
74aac56f
DJ
20522008-09-04 Daniel Jacobowitz <dan@codesourcery.com>
2053
2054 * configure.srv: Merge MIPS and MIPS64.
2055
400b20f5
MR
20562008-08-24 Maciej W. Rozycki <macro@linux-mips.org>
2057
2058 * Makefile.in (uninstall): Apply $(EXEEXT) too.
2059
677c5bb1
LM
20602008-08-18 Luis Machado <luisgpm@br.ibm.com>
2061
2062 * Makefile.in: Add required vsx dependencies.
2063
2064 * linux-ppc-low: Define PPC_FEATURE_HAS_VSX.
2065 Declare init_registers_powerpc_vsx32l.
2066 Declare init_registers_powerpc_vsx64l.
2067 Define PTRACE_GETVSXREGS and PTRACE_SETVSXREGS.
2068 (ppc_arch_setup): Check for VSX in hwcap.
2069 (ppc_fill_vsxregset): New function.
2070 (ppc_store_vsxregset): New function.
2071 Add new VSX entry in regset_info target_regsets.
2072
2073 * configure.srv: Add new VSX dependencies.
2074
a6f3e723
SL
20752008-08-12 Pedro Alves <pedro@codesourcery.com>
2076
2077 * remote-utils.c (noack_mode, transport_is_reliable): New globals.
2078 (remote_open): Set or clear transport_is_reliable.
2079 (putpkt_binary): Don't expect acks in noack mode.
2080 (getpkt): Don't send ack/nac in noack mode.
2081 * server.c (handle_general_set): Handle QStartNoAckMode.
2082 (handle_query): If connected by tcp pass QStartNoAckMode+ in
2083 qSupported.
2084 (main): Reset noack_mode on every connection.
2085 * server.h (noack_mode): Declare.
2086
a417dc56
RW
20872008-08-07 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
2088
2089 * Makefile.in (GDBREPLAY_OBS): New variable.
2090 (gdbreplay$(EXEEXT)): Use it to avoid unportable $^.
2091
3221518c
UW
20922008-08-05 Ulrich Weigand <uweigand@de.ibm.com>
2093 Daniel Jacobowitz <dan@codesourcery.com>
2094
2095 * linux-low.c (linux_resume_one_process): Ignore ESRCH.
2096 (usr_store_inferior_registers): Likewise.
2097 (regsets_store_inferior_registers): Likewise.
2098
ec56be1b
PA
20992008-07-31 Rolf Jansen <rj@surtec.com>
2100 Pedro Alves <pedro@codesourcery.com>
2101
2102 * configure.ac: Check for memmem declaration.
2103 * server.c [HAVE_MALLOC_H]: Include malloc.h.
2104 (disable_packet_vCont, disable_packet_Tthread, disable_packet_qC)
2105 (disable_packet_qfThreadInfo): Unconditionally compile.
2106 * server.h [!HAVE_DECL_MEMMEM]: Declare memmem.
2107 * configure, config.in: Regenerate.
2108
2fe5e3ff
DE
21092008-07-28 Doug Kwan <dougkwan@google.com>
2110
2111 * linux-low.c (sys/dir.h, sys/user.h): Remove includes.
2112 (linux_write_memory): Remove declaration of errno.
2113
836acd6d
UW
21142008-07-12 Ulrich Weigand <uweigand@de.ibm.com>
2115
2116 * linux-low.c (handle_extended_wait): Do not use "status"
2117 variable uninitialized.
2118
aeba519e
PA
21192008-07-07 Pedro Alves <pedro@codesourcery.com>
2120
2121 * server.c (handle_v_attach): Inhibit reporting dll changes.
2122
db42f210
PA
21232008-06-27 Pedro Alves <pedro@codesourcery.com>
2124
2125 * remote-utils.c (prepare_resume_reply): If requested, don't
2126 output "thread:TID" in the T stop reply.
2127
2128 * server.c (disable_packet_vCont, disable_packet_Tthread)
2129 (disable_packet_qC, disable_packet_qfThreadInfo): New globals.
2130 (handle_query): If requested, disable support for qC, qfThreadInfo
2131 and qsThreadInfo.
2132 (handle_v_requests): If requested, disable support for vCont.
2133 (gdbserver_show_disableable): New.
2134 (main): Handle --disable-packet and --disable-packet=LIST.
2135
2136 * server.h (disable_packet_vCont, disable_packet_Tthread)
2137 (disable_packet_qC, disable_packet_qfThreadInfo): Declare.
2138
8e4c5421
CD
21392008-06-20 Carlos O'Donell <carlos@codesourcery.com>
2140
2141 * server.c (gdbserver_usage): Mention --version.
2142
6e23a804
DJ
21432008-06-06 Daniel Jacobowitz <dan@codesourcery.com>
2144
2145 * Makefile.in (gdbreplay.o): New rule.
2146
90aa6a40
JM
21472008-06-06 Joseph Myers <joseph@codesourcery.com>
2148
2149 * gdbreplay.c (gdbreplay_version): Say gdbreplay in version
2150 message, not gdbserver.
2151
c16158bc
JM
21522008-06-05 Vladimir Prus <vladimir@codesourcery.com>
2153 Nathan Sidwell <nathan@codesourcery.com>
2154 Joseph Myers <joseph@codesourcery.com>
2155
2156 * acinclude.m4: Include ../../config/acx.m4.
2157 * configure.ac: Use ACX_PKGVERSION and ACX_BUGURL.
2158 * configure, config.in: Regenerate.
2159 * Makefile.in (gdbreplay$(EXEEXT)): Add version.o.
2160 * server.c (gdbserver_version): Print PKGVERSION.
2161 (gdbsrever_usage): Add stream parameter. Print REPORT_BUGS_TO.
2162 (main): Adjust gdbserver_usage calls.
2163 * gdbreplay.c (version, host_name): Add declarations.
2164 (gdbreplay_version, gdbreplay_usage): New.
2165 (main): Accept --version and --help options.
2166
aeb75bf5
DJ
21672008-06-04 Daniel Jacobowitz <dan@codesourcery.com>
2168
2169 * linux-arm-low.c (thumb_breakpoint, thumb_breakpoint_len): New.
2170 (arm_breakpoint_at): Handle Thumb.
2171 (the_low_target): Add comment.
2172
76b233dd
UW
21732008-05-29 Ulrich Weigand <uweigand@de.ibm.com>
2174
2175 * linux-ppc-low.c (ppc_collect_ptrace_register): Clear buffer.
2176
08388c79
DE
21772008-05-09 Doug Evans <dje@google.com>
2178
a3c83fae
DE
2179 * server.h (decode_search_memory_packet): Declare.
2180 * remote-utils.c (decode_search_memory_packet): New fn.
2181 * server.c (handle_search_memory_1): New fn.
08388c79
DE
2182 (handle_search_memory): New fn.
2183 (handle_query): Process qSearch:memory packets.
2184
bb9c3d36
UW
21852008-05-08 Ulrich Weigand <uweigand@de.ibm.com>
2186
2187 * regcache.c (registers_length): Remove.
2188 (set_register_cache): Verify that PBUFSIZ is large enough to hold a
2189 full register packet.
2190 * regcache.h (registers_length): Remove prototype.
2191 * server.h (PBUFSIZ): Define to 16384.
2192
7284e1be
UW
21932008-05-03 Ulrich Weigand <uweigand@de.ibm.com>
2194
2195 * configure.srv (powerpc*-*-linux*): Set srv_regobj to
2196 powerpc-32l.o, powerpc-altivec32l.o, powerpc-e500l.o,
2197 powerpc-64l.o, and powerpc-altivec64l.o.
2198 Remove rs6000/powerpc-32.xml, rs6000/powerpc-64.xml, and
2199 rs6000/powerpc-e500.xml; add rs6000/powerpc-32l.xml,
2200 rs6000/powerpc-altivec32l.xml, rs6000/powerpc-e500l.xml,
2201 rs6000/powerpc-64l.xml, rs6000/powerpc-altivec64l.xml,
2202 rs6000/power-linux.xml, and rs6000/power64-linux.xml
2203 to srv_xmlfiles.
2204
2205 * Makefile.in (reg-ppc.o, reg-ppc.c): Remove, replace by ...
2206 (powerpc-32l.o, powerpc-32l.c): ... these new rules.
2207 (powerpc-32.o, powerpc-32.c): Remove, replace by ...
2208 (powerpc-altivec32l.o, powerpc-altivec32l.c): ... these new rules.
2209 (powerpc-e500.o, powerpc-e500.c): Remove, replace by ...
2210 (powerpc-e500l.o, powerpc-e500l.c): ... these new rules.
2211 (reg-ppc64.o, reg-ppc64.c): Remove, replace by ...
2212 (powerpc-64l.o, powerpc-64l.c): ... these new rules.
2213 (powerpc-64.o, powerpc-64.c): Remove, replace by ...
2214 (powerpc-altivec64l.o, powerpc-altivec64l.c): ... these new rules.
2215 (clean): Update.
2216
2217 * linux-ppc-low.c (init_registers_ppc): Remove, replace by ...
2218 (init_registers_powerpc_32l): ... this new prototype.
2219 (init_registers_powerpc_32): Remove, replace by ...
2220 (init_registers_powerpc_altivec32l): ... this new prototype.
2221 (init_registers_powerpc_e500): Remove, replace by ...
2222 (init_registers_powerpc_e500l): ... this new prototype.
2223 (init_registers_ppc64): Remove, replace by ...
2224 (init_registers_powerpc_64l): ... this new prototype.
2225 (init_registers_powerpc_64): Remove, replace by ...
2226 (init_registers_powerpc_altivec64l): ... this new prototype.
2227 (ppc_num_regs): Set to 73.
2228 (PT_ORIG_R3, PT_TRAP): Define if necessary.
2229 (ppc_regmap, ppc_regmap_e500): Add values for orig_r3 and trap.
2230 (ppc_cannot_store_register): Handle orig_r3 and trap.
2231 (ppc_arch_setup): Update init_registers_... calls.
2232 (ppc_fill_gregset): Handle orig_r3 and trap.
2233
2234 * inferiors.c (clear_inferiors): Reset current_inferior.
2235
fdc59709
PB
22362008-04-23 Paolo Bonzini <bonzini@gnu.org>
2237
2238 * acinclude.m4: Add override.m4.
2239 * configure: Regenerate.
2240
c9b2f845
UW
22412008-04-21 Ulrich Weigand <uweigand@de.ibm.com>
2242
2243 * linux-ppc-low.c (ppc_arch_setup): Reset ppc_hwcap after the
2244 initial call to init_register_ppc64.
2245
550512b8
UW
22462008-04-21 Ulrich Weigand <uweigand@de.ibm.com>
2247
2248 * configure.srv (powerpc64-*-linux*, powerpc-*-linux*): Merge into single
2249 powerpc*-*-linux* case.
2250 (s390-*-linux*, s390x-*-linux*): Merge into single s390*-*-linux* case.
2251
b6430ec3
UW
22522008-04-17 Ulrich Weigand <uweigand@de.ibm.com>
2253
2254 * configure.srv [powerpc64-*-linux*]: Remove powerpc-e500.o from
2255 srv_regobj. Remove rs6000/powerpc-e500.xml and rs6000/power-spe.xml
2256 from reg_xmlfiles.
2257 * linux-ppc-low.c: Include <elf.h>.
2258 (PPC_FEATURE_HAS_ALTIVEC, PPC_FEATURE_HAS_SPE): Define.
2259 (ppc_hwcap): New global variable.
2260 (ppc_regmap): Remove __SPE__ #ifdef sections.
2261 (ppc_regmap_e500): New global variable.
2262 (ppc_cannot_store_register): Update __SPE__ special case.
2263 (ppc_get_hwcap): New function.
2264 (ppc_arch_setup): Use it to determine whether inferior supports
2265 AltiVec or SPE registers. Set the_low_target.regmap if appropriate.
2266 (ppc_fill_vrregset, ppc_store_vrregset): Define unconditionally.
2267 Do not access registers if target does not support AltiVec.
2268 (ppc_fill_evrregset, ppc_store_evrregset): Define unconditionally.
2269 Do not access registers if target does not support SPE.
2270 (target_regsets): Unconditionally include AltiVec and SPE regsets.
2271
52fa2412
UW
22722008-04-17 Daniel Jacobowitz <dan@codesourcery.com>
2273
2274 * linux-low.c (disabled_regsets, num_regsets): New.
2275 (use_regsets_p): Delete.
2276 (linux_wait_for_process): Clear disabled_regsets.
2277 (regsets_fetch_inferior_registers): Check and set it.
2278 (regsets_store_inferior_registers): Likewise.
2279 (linux_fetch_registers, linux_store_registers): Do not use
2280 use_regsets_p.
2281 (initialize_low): Allocate disabled_regsets.
2282
e28b3332
DJ
22832008-04-14 Daniel Jacobowitz <dan@codesourcery.com>
2284
2285 * Makefile.in (LIBOBJS): New.
2286 (OBS): Use LIBOBJS.
2287 (memmem.o): New rule.
2288 * configure.ac: Use AC_CONFIG_LIBOBJ_DIR and check for memmem.
2289 * configure: Regenerated.
2290
4536995d
UW
22912008-04-04 Ulrich Weigand <uweigand@de.ibm.com>
2292
2293 * server.c (handle_query): Never return "unsupported" for
2294 qXfer:features:read queries.
2295
221c031f
UW
22962008-03-27 Ulrich Weigand <uweigand@de.ibm.com>
2297
2298 * server.c (get_features_xml): Fix inverted condition.
2299 (handle_query): Always support qXfer:feature:read.
2300
ccd213ac
DJ
23012008-03-10 Daniel Jacobowitz <dan@codesourcery.com>
2302
2303 * server.c (wrapper_argv): New.
2304 (start_inferior): Handle wrapper_argv. If set, expect an extra
2305 trap.
2306 (gdbserver_usage): Document --wrapper.
2307 (main): Parse --wrapper.
2308
6fe305f7
UW
23092008-02-28 Ulrich Weigand <uweigand@de.ibm.com>
2310
2311 * configure.srv [powerpc64-*-linux*]: Add all files mentioned for
2312 powerpc-*-linux* to srv_regobj and reg_xmlfiles.
2313 * linux-ppc-low.c (ppc_get_pc): Support bi-arch operation.
2314 (ppc_set_pc): Likewise.
2315 (ppc_arch_setup): New function.
2316 (ppc_fill_gregset): Call ppc_collect_ptrace_register instead
2317 of collect_register.
2318 (the_low_target): Use ppc_arch_setup as arch_setup initializer.
2319
5b0a002e
UW
23202008-02-28 Ulrich Weigand <uweigand@de.ibm.com>
2321
2322 * configure.srv [powerpc64-*-linux*]: Use linux-ppc-low.o
2323 instead of linux-ppc64-low.o.
2324 * linux-ppc64-low.c: Remove file.
2325 * Makefile.in (SFILES): Remove linux-ppc64-low.c.
2326 (linux-ppc64-low.o): Remove rule.
2327
2328 * linux-ppc-low.c (init_registers_ppc64): Add prototype.
2329 (init_registers_powerpc_64): Likewise.
2330 (ppc_regmap): Conditionally define depending on __powerpc64__.
2331 (ppc_cannot_store_register): Do not special-case "fpscr" when
2332 compiled on __powerpc64__.
2333 (ppc_collect_ptrace_register): New function.
2334 (ppc_supply_ptrace_register): New function.
2335 (ppc_breakpoint): Change type to "unsigned int".
2336 (ppc_breakpoint_at): Change type of "insn" to "unsigned int".
2337 (the_low_target): Conditionally provide initializers for the
2338 arch_setup member depending on __powerpc64__. Install
2339 collect_ptrace_register and supply_ptrace_register members.
2340
9b4b61c8
UW
23412008-02-28 Ulrich Weigand <uweigand@de.ibm.com>
2342
2343 * regcache.h (gdbserver_xmltarget): Add extern declaration.
2344 * server.c (gdbserver_xmltarget): Define.
2345 (get_features_xml): Use it to replace "target.xml" and arch_string.
2346
2347 * configure.srv: Remove srv_xmltarget. Add XML files that were
2348 mentioned there to srv_xmlfiles instead. Remove conditional tests
2349 on gdb_cv_arm_iwmmxt, gdb_cv_ppc_altivec, gdb_cv_ppc_spe; set
2350 srv_xmlfiles and srv_regobj to include all possible choices.
2351 * configure.ac (srv_xmltarget): Remove.
2352 (srv_xmlfiles): Do not add "target.xml".
2353 (gdb_cv_arm_iwmmxt, gdb_cv_ppc_altivec, gdb_cv_ppc_spe): Remove
2354 checks for supplementary target information.
2355 * configure: Regenerate.
2356 * Makefile.in (XML_TARGET): Remove.
2357 (target.xml): Remove rule.
2358 (clean): Do not clean up target.xml.
2359 (.PRECIOUS): Do not mention target.xml.
2360
2361 * target.h (struct target_ops): Remove arch_string member.
2362 * linux-low.c (linux_arch_string): Remove.
2363 (linux_target_ops): Remove arch_string initializer.
2364 * linux-low.h (struct linux_target_ops): Remove arch_string member.
2365 * linux-i386-low.c (the_low_target): Remove arch_string initializer.
2366 * linux-x86-64-low.c (the_low_target): Remove arch_string initializer.
2367 * spu-low.c (spu_arch_string): Remove.
2368 (spu_target_ops): Remove arch_string initializer.
2369 * win32-low.c (win32_arch_string): Remove.
2370 (win32_target_ops): Remove arch_string initializer.
2371 * win32-low.h (struct win32_target_ops): Remove arch_string member.
2372 * win32-arm-low.c (the_low_target): Remove arch_string initializer.
2373 * win32-i368-low.c (the_low_target): Remove arch_string initializer.
2374
ee1a7ae4
UW
23752008-02-27 Ulrich Weigand <uweigand@de.ibm.com>
2376
2377 * linux-low.h (struct linux_target_ops): Replace left_pad_xfer field
2378 by collect_ptrace_register and supply_ptrace_register hooks.
2379 * linux-low.c (fetch_register): Use supply_ptrace_register callback
2380 instead of checking for the_low_target.left_pad_xfer.
2381 (usr_store_inferior_registers): Use collect_ptrace_register callback
2382 instead of checking for the_low_target.left_pad_xfer.
2383
2384 * linux-s390-low.c (s390_collect_ptrace_register): New function.
2385 (s390_supply_ptrace_register): Likewise.
2386 (s390_fill_gregset): Call s390_collect_ptrace_register.
2387 (the_low_target): Update.
2388
2389 * linux-ppc64-low.c (ppc_collect_ptrace_register): New function.
2390 (ppc_supply_ptrace_register): Likewise.
2391 (the_low_target): Update.
2392
2393 * linux-i386-low.c (the_low_target): Update.
2394 * linux-x86-64-low.c (the_low_target): Update.
2395
d61ddec4
UW
23962008-02-27 Ulrich Weigand <uweigand@de.ibm.com>
2397
2398 * configure.srv [s390x-*-linux*]: Set srv_regobj to include both
2399 reg-s390.o and reg-s390x.o.
2400
2401 * linux-low.c (new_inferior): New global variable.
2402 (linux_create_inferior, linux_attach): Set it.
2403 (linux_wait_for_process): Call the_low_target.arch_setup after the
2404 target has stopped for the first time.
2405 (initialize_low): Do not call the_low_target.arch_setup.
2406
2407 * linux-s390-low.c (s390_get_pc): Support bi-arch operation.
2408 (s390_set_pc): Likewise.
2409 (s390_arch_setup): New function.
2410 (the_low_target): Use s390_arch_setup as arch_setup routine.
2411
2412 * regcache.c (realloc_register_cache): New function.
2413 (set_register_cache): Call it for each existing regcache.
2414
d05b4ac3
UW
24152008-02-27 Ulrich Weigand <uweigand@de.ibm.com>
2416
2417 * server.h (init_registers): Remove prototype.
2418
2419 * linux-low.h (struct linux_target_ops): Add arch_setup field.
2420 * linux-low.c (initialize_low): Call the_low_target.arch_setup ()
2421 instead of init_registers ().
2422 * linux-arm-low.c (init_registers_arm): Add prototype.
2423 (init_registers_arm_with_iwmmxt): Likewise.
2424 (the_low_target): Add initializer for arch_setup field.
2425 * linux-cris-low.c (init_registers_cris): Add prototype.
2426 (the_low_target): Add initializer for arch_setup field.
2427 * linux-crisv32-low.c (init_registers_crisv32): Add prototype.
2428 (the_low_target): Add initializer for arch_setup field.
2429 * linux-i386-low.c (init_registers_i386_linux): Add prototype.
2430 (the_low_target): Add initializer for arch_setup field.
2431 * linux-ia64-low.c (init_registers_ia64): Add prototype.
2432 (the_low_target): Add initializer for arch_setup field.
2433 * linux-m32r-low.c (init_registers_m32r): Add prototype.
2434 (the_low_target): Add initializer for arch_setup field.
2435 * linux-m68k-low.c (init_registers_m68k): Add prototype.
2436 (the_low_target): Add initializer for arch_setup field.
2437 * linux-mips-low.c (init_registers_mips_linux): Add prototype.
2438 (init_registers_mips64_linux): Likewise.
2439 (the_low_target): Add initializer for arch_setup field.
2440 * linux-ppc-low.c (init_registers_ppc): Add prototype.
2441 (init_registers_powerpc_32, init_registers_powerpc_e500): Likewise.
2442 (the_low_target): Add initializer for arch_setup field.
2443 * linux-ppc64-low.c (init_registers_ppc64): Add prototype.
2444 (init_registers_powerpc_64): Likewise.
2445 (the_low_target): Add initializer for arch_setup field.
2446 * linux-s390-low.c (init_registers_s390): Add prototype.
2447 (init_registers_s390x): Likewise.
2448 (the_low_target): Add initializer for arch_setup field.
2449 * linux-sh-low.c (init_registers_sh): Add prototype.
2450 (the_low_target): Add initializer for arch_setup field.
2451 * linux-x86-64-low.c (init_registers_x86_64_linux): Add prototype.
2452 (the_low_target): Add initializer for arch_setup field.
2453 * linux-xtensa-low.c (init_registers_xtensa): Add prototype.
2454 (the_low_target): Add initializer for arch_setup field.
2455
2456 * win32-low.h (struct win32_target_ops): Add arch_setup field.
2457 * win32-low.c (initialize_low): Call the_low_target.arch_setup ()
2458 instead of init_registers ().
2459 * win32-arm-low.c (init_registers_arm): Add prototype.
2460 (the_low_target): Add initializer for arch_setup field.
2461 * win32-i386-low.c (init_registers_i386): Add prototype.
2462 (the_low_target): Add initializer for arch_setup field.
2463
2464 * spu-low.c (init_registers_spu): Add prototype.
2465 (initialize_low): Call initialie_registers_spu () instead of
2466 initialize_registers ().
2467
fd96d250
PA
24682008-02-19 Pedro Alves <pedro@codesourcery.com>
2469
2470 * server.c (handle_v_requests): When handling the vRun and vAttach
2471 packets, if already debugging a process, don't kill it. Return an
2472 error instead.
2473
d41b6bb4
DJ
24742008-02-17 Daniel Jacobowitz <dan@codesourcery.com>
2475
2476 * server.c (handle_query): Correct length check.
2477
5ac588cf
PA
24782008-02-14 Pedro Alves <pedro_alves@portugalmail.pt>
2479
2480 * win32-low.c (do_initial_child_stuff): Add process handle
2481 parameter. Set current_process_handle and current_process_id from the
2482 parameters. Clear globals.
2483 (win32_create_inferior): Don't set current_process_handle and
2484 current_process_id here. Instead pass them on the call to
2485 do_initial_child_stuff.
2486 (win32_attach): Likewise.
2487 (win32_clear_inferiors): New.
2488 (win32_kill): Don't close the current process handle or the
2489 current thread handle here. Instead call win32_clear_inferiors.
2490 (win32_detach): Don't open a new handle to the process. Call
2491 win32_clear_inferiors.
2492 (win32_join): Don't rely on current_process_handle; open a new
2493 handle using the process id.
2494 (win32_wait): Call win32_clear_inferiors when the inferior process
2495 has exited.
2496
ecd7ecbc
DJ
24972008-02-14 Daniel Jacobowitz <dan@codesourcery.com>
2498
2499 * server.c (monitor_show_help): Add "exit".
2500
1525d545
MG
25012008-02-11 Maxim Grigoriev <maxim2405@gmail.com>
2502
ecd7ecbc 2503 * Makefile.in (SFILES): Add linux-xtensa-low.c.
1525d545
MG
2504 (clean): Add reg-xtensa.c.
2505 (linux-xtensa-low.o, reg-xtensa.o, reg-xtensa.c): New dependencies.
ecd7ecbc
DJ
2506 * configure.srv (xtensa*-*-linux*) New target.
2507 * linux-xtensa-low.c: New.
2508 * xtensa-xtregs.c: New.
1525d545 2509
59a016f0
PA
25102008-02-01 Pedro Alves <pedro_alves@portugalmail.pt>
2511
2512 * hostio.c: Don't include errno.h.
2513 (errno_to_fileio_errno): Move to hostio-errno.
2514 * hostio.c: (hostio_error): Remove the error parameter. Defer the
2515 error number outputting to the target->hostio_last_error callback.
2516 (hostio_packet_error): Use FILEIO_EINVAL directly.
2517 (handle_open, handle_pread, hostio_error, handle_unlink): Update
2518 calls to hostio_error.
2519 * hostio-errno.c: New.
2520 * server.h (hostio_last_error_from_errno): Declare.
2521 * target.h (target_ops): Add hostio_last_error member.
2522 * linux-low.c (linux_target_op): Register hostio_last_error_from_errno
2523 as hostio_last_error handler.
2524 * spu-low.c (spu_target_ops): Likewise.
2525 * win32-low.c [_WIN32_WCE] (win32_error_to_fileio_error)
2526 (wince_hostio_last_error): New functions.
2527 (win32_target_ops) [_WIN32_WCE]: Register wince_hostio_last_error
2528 as hostio_last_error handler.
2529 (win32_target_ops) [!_WIN32_WCE]: Register
2530 hostio_last_error_from_errno as hostio_last_error handler.
2531 * Makefile.in (SFILES): Add hostio.c and hostio-errno.c.
2532 (hostio-errno.o): New rule.
2533 * configure.ac (GDBSERVER_DEPFILES): Add $srv_hostio_err_objs.
2534 * configure.srv (srv_hostio_err_objs): New variable. Default to
2535 hostio-errno.o.
2536 (arm*-*-mingw32ce*): Set srv_hostio_err_objs to "".
2537 * configure: Regenerate.
2538
2d717e4f
DJ
25392008-01-29 Daniel Jacobowitz <dan@codesourcery.com>
2540
2541 * linux-low.c (linux_attach_lwp): Do not _exit after errors.
2542 (linux_kill, linux_detach): Clean up the process list.
2543 * remote-utils.c (remote_open): Improve port number parsing.
2544 (putpkt_binary, input_interrupt): Only send interrupts if the target
2545 is running.
2546 * server.c (extended_protocol): Make static.
2547 (attached): Define earlier.
2548 (exit_requested, response_needed, program_argv): New variables.
2549 (target_running): New.
2550 (start_inferior): Clear attached here.
2551 (attach_inferior): Set attached here.
2552 (require_running): Define.
2553 (handle_query): Use require_running and target_running. Implement
2554 "monitor exit".
2555 (handle_v_attach, handle_v_run): New.
2556 (handle_v_requests): Use require_running. Handle vAttach and vRun.
2557 (gdbserver_usage): Update.
2558 (main): Redo argument parsing. Handle --debug and --multi. Handle
2559 --attach along with other options or after the port. Save
2560 program_argv. Support no initial program. Resynchronize
2561 communication with GDB after an error. Handle "monitor exit".
2562 Use require_running and target_running. Always allow the extended
2563 protocol. Do not error out for Hc0 or Hc-1. Do not automatically
2564 restart in extended mode.
2565 * README: Refer to the GDB manual. Update --attach usage.
2566
7407e2de
AS
25672007-12-20 Andreas Schwab <schwab@suse.de>
2568
2569 * linux-low.c (STACK_SIZE): Define.
2570 (linux_tracefork_child): Use it. Use __clone2 on ia64.
2571 (linux_test_for_tracefork): Likewise.
2572
b65d95c5
DJ
25732007-12-18 Daniel Jacobowitz <dan@codesourcery.com>
2574
2575 * linux-low.c (linux_wait_for_event): Update messages. Do not
2576 reinsert auto-delete breakpoints.
2577 * mem-break.c (struct breakpoint): Change return type of handler to
2578 int.
2579 (set_breakpoint_at): Update handler type.
2580 (reinsert_breakpoint_handler): Return 1 instead of calling
2581 delete_breakpoint.
2582 (reinsert_breakpoint_by_bp): Check for the original breakpoint before
2583 setting a new one.
2584 (check_breakpoints): Delete auto-delete breakpoints and return 2.
2585 * mem-break.h (set_breakpoint_at): Update handler type.
2586 * thread-db.c (thread_db_create_event, thread_db_create_event): Update.
2587 * win32-low.c (auto_delete_breakpoint): New.
2588 (get_child_debug_event): Use it.
2589
4e799345
DJ
25902007-12-16 Daniel Jacobowitz <dan@codesourcery.com>
2591
2592 * configure.ac: Check for pread and pwrite.
2593 * hostio.c (handle_pread): Fall back to lseek and read.
2594 (handle_pwrite): Fall back to lseek and write.
2595 * config.in, configure: Regenerated.
2596
27524b67
DJ
25972007-12-07 Daniel Jacobowitz <dan@codesourcery.com>
2598
2599 * server.c (myresume): Add own_buf argument.
2600 (main): Update calls.
2601
a20d5e98
DJ
26022007-12-06 Daniel Jacobowitz <dan@codesourcery.com>
2603
2604 * linux-low.c (linux_wait, linux_resume): Do not handle async I/O.
2605 * remote-utils.c (remote_open): Do not call disable_async_io.
2606 (block_async_io): Delete.
2607 (unblock_async_io): Make static.
2608 (initialize_async_io): New.
2609 * server.c (handle_v_cont): Handle async I/O here.
2610 (myresume): Likewise. Move other common resume tasks here...
2611 (main): ... from here. Call initialize_async_io. Disable async
2612 I/O before the main loop.
2613 * server.h (initialize_async_io): Declare.
2614 (block_async_io, unblock_async_io): Delete prototypes.
2615 * spu-low.c (spu_resume, spu_wait): Do not handle async I/O here.
2616
b79d787e
DJ
26172007-12-06 Mick Davis <mickd@goanna.iinet.net.au>
2618
2619 * remote-utils.c (readchar): Allow binary data in received messages.
2620
d97903b2
PA
26212007-12-03 Pedro Alves <pedro_alves@portugalmail.pt>
2622
2623 * win32-low.c (attaching): New global.
2624 (win32_create_inferior): Clear the `attaching' global.
2625 (win32_attach): Set the `attaching' global.
2626 (get_child_debug_event) [_WIN32_WCE]: Stop the inferior when
2627 attaching. Only set a breakpoint at the entry point if not
2628 attaching.
2629
311de423
PA
26302007-12-03 Pedro Alves <pedro_alves@portugalmail.pt>
2631
2632 * server.c (main): Don't report dll events on the initial
2633 connection on attaches.
2634
6c2d16d2
PA
26352007-12-03 Pedro Alves <pedro_alves@portugalmail.pt>
2636
2637 * server.c (main): Relax numerical bases supported for the pid of
2638 the --attach command line argument.
2639
5ca906e6
PA
26402007-12-03 Pedro Alves <pedro_alves@portugalmail.pt>
2641
2642 * win32-low.c (win32_attach): Call OpenProcess before
2643 DebugActiveProcess, not after. Add last error output to error
2644 call.
2645
9c6c8194
PA
26462007-12-03 Pedro Alves <pedro_alves@portugalmail.pt>
2647
2648 * win32-low.c (win32_get_thread_context)
2649 (win32_set_thread_context): New functions.
2650 (thread_rec): Use win32_get_thread_context.
2651 (continue_one_thread, win32_resume): Use win32_set_thread_context.
2652 * win32-low.h (win32_thread_info) [_WIN32_WCE]: Add `base_context'
2653 field.
2654
4d5d1aaa
PA
26552007-12-03 Leo Zayas
2656 Pedro Alves <pedro_alves@portugalmail.pt>
2657
2658 * win32-low.c (soft_interrupt_requested, faked_breakpoint): New
2659 global variables.
2660 (child_add_thread): Minor cleanup.
2661 (child_continue): Resume artificially suspended threads before
2662 calling ContinueDebugEvent.
2663 (suspend_one_thread): New.
2664 (fake_breakpoint_event): New.
2665 (get_child_debug_event): Change return type to int. Check here if
2666 gdb sent an interrupt request. If a soft interrupt was requested,
2667 fake a breakpoint event. Return 0 if there is no event to handle,
2668 and 1 otherwise.
2669 (win32_wait): Don't check here if gdb sent an interrupt request.
2670 Ensure there is a valid event to handle.
2671 (win32_request_interrupt): Add soft interruption method as last
2672 resort.
2673
c436e841
PA
26742007-12-03 Leo Zayas
2675 Pedro Alves <pedro_alves@portugalmail.pt>
2676
2677 * win32-low.h (win32_thread_info): Add descriptions to the
2678 structure members. Replace `suspend_count' counter by a
2679 `suspended' flag.
2680 * win32-low.c (thread_rec): Update condition of when to get the
2681 context from the inferior. Rely on ContextFlags being set if it
2682 has already been retrieved. Only suspend the inferior thread if
2683 we haven't already. Warn if that fails.
2684 (continue_one_thread): s/suspend_count/suspended/. Only call
2685 ResumeThread once. Warn if that fails.
2686
e7b5fa67
PA
26872007-12-02 Pedro Alves <pedro_alves@portugalmail.pt>
2688
2689 * win32-low.c (win32_wait): Don't read from the inferior when it
2690 has already exited.
2691
a385171d
PA
26922007-12-02 Pedro Alves <pedro_alves@portugalmail.pt>
2693
2694 * Makefile.in (win32_low_h): New variable.
2695 (win32-low.o): Add dependency on $(win32_low_h).
2696 (win32-arm-low.o, win32-i386-low.o): New rules.
2697
f80c84b3
DJ
26982007-11-30 Daniel Jacobowitz <dan@codesourcery.com>
2699
2700 * hostio.c: Correct copyright year.
2701
a6b151f1
DJ
27022007-11-30 Daniel Jacobowitz <dan@codesourcery.com>
2703
2704 * Makefile.in (OBS): Add hostio.o.
2705 (hostio.o): New rule.
2706 * server.h (handle_vFile): Declare.
2707 * hostio.c: New file.
2708 * server.c (handle_v_requests): Take packet_len and new_packet_len
2709 for binary packets. Call handle_vFile.
2710 (main): Update call to handle_v_requests.
2711
f9387fc3
DJ
27122007-11-05 Daniel Jacobowitz <dan@codesourcery.com>
2713
2714 * linux-low.c: Include <sched.h>.
2715
51c2684e
DJ
27162007-11-01 Daniel Jacobowitz <dan@codesourcery.com>
2717
2718 * linux-low.c (linux_tracefork_grandchild): New.
2719 (linux_tracefork_child): Use clone.
2720 (linux_test_for_tracefork): Use clone; allocate and free a stack.
2721
75f83163
JB
27222007-10-31 Joel Brobecker <brobecker@adacore.com>
2723
2724 * Makefile.in: Use $(SHELL) instead of "sh" to call regdat.sh.
2725
da5898ce
DJ
27262007-10-24 Daniel Jacobowitz <dan@codesourcery.com>
2727
2728 * linux-low.c (handle_extended_wait): Handle unexpected signals.
2729
24a09b5f
DJ
27302007-10-23 Daniel Jacobowitz <dan@codesourcery.com>
2731
2732 * inferiors.c (change_inferior_id): Delete.
2733 (add_pid_to_list, pull_pid_from_list): New.
2734 * linux-low.c (PTRACE_SETOPTIONS, PTRACE_GETEVENTMSG)
2735 (PTRACE_O_TRACESYSGOOD, PTRACE_O_TRACEFORK, PTRACE_O_TRACEVFORK)
2736 (PTRACE_O_TRACECLONE, PTRACE_O_TRACEEXEC, PTRACE_O_TRACEVFORKDONE)
2737 (PTRACE_O_TRACEEXIT, PTRACE_EVENT_FORK, PTRACE_EVENT_VFORK)
2738 (PTRACE_EVENT_CLONE, PTRACE_EVENT_EXEC, PTRACE_EVENT_VFORK_DONE)
2739 (PTRACE_EVENT_EXIT, __WALL): Provide default definitions.
2740 (stopped_pids, thread_db_active, must_set_ptrace_flags): New variables.
2741 (using_threads): Always set to 1.
2742 (handle_extended_wait): New.
2743 (add_process): Do not set TID.
2744 (linux_create_inferior): Set must_set_ptrace_flags.
2745 (linux_attach_lwp): Remove TID argument. Do not check using_threads.
2746 Use PTRACE_SETOPTIONS. Call new_thread_notify. Update all callers.
2747 (linux_thread_alive): Rename TID argument to LWPID.
2748 (linux_wait_for_process): Handle unknown processes. Do not use TID.
2749 (linux_wait_for_event): Do not use TID or check using_threads. Update
2750 call to dead_thread_notify. Call handle_extended_wait.
2751 (linux_create_inferior): Use PTRACE_SETOPTIONS.
2752 (send_sigstop): Delete sigstop_sent.
2753 (wait_for_sigstop): Avoid TID.
2754 (linux_supports_tracefork_flag, linux_tracefork_child, my_waitpid)
2755 (linux_test_for_tracefork): New.
2756 (linux_lookup_signals): Use thread_db_active and
2757 linux_supports_tracefork_flag.
2758 (initialize_low): Use thread_db_active and linux_test_for_tracefork.
2759 * linux-low.h (get_process_thread): Avoid TID.
2760 (struct process_ifo): Move thread_known and tid to the end. Remove
2761 sigstop_sent.
2762 (linux_attach_lwp, thread_db_init): Update prototypes.
2763 * server.h (change_inferior_id): Delete prototype.
2764 (add_pid_to_list, pull_pid_from_list): New prototypes.
2765 * thread-db.c (thread_db_use_events): New.
2766 (find_first_thread): Rename to...
2767 (find_one_thread): ...this. Update callers and messages. Do not
2768 call fatal. Check thread_db_use_events. Do not call
2769 change_inferior_id or new_thread_notify.
2770 (maybe_attach_thread): Update. Do not call new_thread_notify.
2771 (thread_db_init): Set thread_db_use_events. Check use_events.
2772 * utils.c (fatal, warning): Correct message prefix.
2773
30ed0a8f
DJ
27742007-10-15 Daniel Jacobowitz <dan@codesourcery.com>
2775
2776 * Makefile.in (clean): Remove new files.
2777 (powerpc-32.o, powerpc-32.c, powerpc-e500.o, powerpc-e500.c)
2778 (powerpc-64.o, powerpc-64.c): New rules.
2779 * configure.srv: Use alternate register sets for powerpc64-*-linux*
2780 with AltiVec, powerpc-*-linux* with AltiVec, and powerpc-*-linux*
2781 with SPE.
2782 * linux-ppc-low.c (ppc_regmap): Do not fetch the FP registers for
2783 SPE targets.
2784 (ppc_cannot_store_register): Do not check for FPSCR for SPE targets.
2785 (PTRACE_GETVRREGS, PTRACE_SETVRREGS, SIZEOF_VRREGS, ppc_fill_vrregset)
2786 (ppc_store_vrregset, PTRACE_GETEVRREGS, PTRACE_SETEVRREGS)
2787 (struct gdb_evrregset_t, ppc_fill_evrregset, ppc_store_evrregset): New.
2788 (target_regsets): Add AltiVec and SPE register sets.
2789 * configure.ac: Check for AltiVec and SPE.
2790 * linux-ppc64-low.c (PTRACE_GETVRREGS, PTRACE_SETVRREGS, SIZEOF_VRREGS)
2791 (ppc_fill_vrregset, ppc_store_vrregset): New.
2792 (target_regsets): Add AltiVec register set.
2793 * configure: Regenerated.
2794
fd462a61
DJ
27952007-09-19 Daniel Jacobowitz <dan@codesourcery.com>
2796
2797 * linux-low.c (O_LARGEFILE): Define.
2798 (linux_read_memory): Use /proc/PID/mem.
2799 * configure.ac: Use AC_GNU_SOURCE. Check for pread64.
2800 * configure, config.in: Regenerated.
2801
69f223ed
DJ
28022007-09-04 Daniel Jacobowitz <dan@codesourcery.com>
2803
2804 * linux-low.c (linux_wait_for_event): Do not pass signals while
2805 single-stepping.
2806
aec18585
PA
28072007-09-03 Pedro Alves <pedro_alves@portugalmail.pt>
2808
2809 * win32-low.c (create_process): New.
2810 (win32_create_inferior): Use create_process instead of
2811 CreateProcess. If create_process failed retry appending an ".exe"
2812 suffix. Store the GetLastError result immediatelly after
2813 create_process calls and use it on the call to error.
2814
34d86ddd
PA
28152007-09-03 Pedro Alves <pedro_alves@portugalmail.pt>
2816
2817 * win32-low.c (handle_load_dll): Don't use toolhelp when waiting.
2818
5a0e3bd0
JB
28192007-08-23 Joel Brobecker <brobecker@adacore.com>
2820
2821 * configure.ac: Switch license to GPLv3.
2822
f88c79e6
MS
28232007-08-01 Michael Snyder <msnyder@access-company.com>
2824
2825 * remote-utils.c (putpkt_binary): Memory leak, free buf2.
2826
6b3d9b83
PA
28272007-07-31 Pedro Alves <pedro_alves@portugalmail.pt>
2828
2829 * win32-low.c (winapi_CloseToolhelp32Snapshot) [_WIN32_WCE]: New
2830 typedef.
2831 (win32_CloseToolhelp32Snapshot) [_WIN32_WCE]: New global var.
2832 (load_toolhelp) [_WIN32_WCE]: Load TOOLHELP.DLL. Get
2833 CloseToolhelp32Snapshot.
2834 (toolhelp_get_dll_name) [_WIN32_WCE]: Close the snapshot with
2835 CloseToolhelp32Snapshot.
2836
c588c53c
MS
28372007-07-27 Michael Snyder <michael.snyder@access-company.com>
2838
2839 * server.c (main): Check for inferior exit before main loop.
2840
aa0403d9
PA
28412007-07-18 Pedro Alves <pedro_alves@portugalmail.pt>
2842
2843 * remote-utils.c (remote_open): Set SO_KEEPALIVE on remote_desc
2844 instead of on tmp_desc.
2845
255e7678
DJ
28462007-07-17 Pedro Alves <pedro_alves@portugalmail.pt>
2847 Daniel Jacobowitz <dan@codesourcery.com>
2848
2849 * inferiors.c (all_dlls, dlls_changed, get_dll): New.
2850 (add_thread): Minor cleanups.
2851 (clear_inferiors): Move lower in the file. Clear the DLL
2852 list.
2853 (free_one_dll, match_dll, loaded_dll, unloaded_dll, clear_list): New.
2854 * remote-utils.c (prepare_resume_reply): Check dlls_changed.
2855 (xml_escape_text): New.
2856 * server.c (handle_query): Handle qXfer:libraries:read. Report it
2857 for qSupported.
2858 (handle_v_cont): Report errors.
2859 (gdbserver_version): Update.
2860 (main): Correct size of own_buf. Do not report initial DLL events.
2861 * server.h (struct dll_info, all_dlls, dlls_changed, loaded_dll)
2862 (unloaded_dll, xml_escape_text): New.
2863 * win32-low.c (enum target_waitkind): Update comments.
2864 (win32_add_one_solib, get_image_name, winapi_EnumProcessModules)
2865 (winapi_GetModuleInformation, winapi_GetModuleFileNameExA)
2866 (win32_EnumProcessModules, win32_GetModuleInformation)
2867 (win32_GetModuleFileNameExA, load_psapi, psapi_get_dll_name)
2868 (winapi_CreateToolhelp32Snapshot, winapi_Module32First)
2869 (winapi_Module32Next, win32_CreateToolhelp32Snapshot)
2870 (win32_Module32First, win32_Module32Next, load_toolhelp)
2871 (toolhelp_get_dll_name, handle_load_dll, handle_unload_dll): New.
2872 (get_child_debug_event): Handle DLL events.
2873 (win32_wait): Likewise.
2874
0d37add9
DJ
28752007-07-12 Daniel Jacobowitz <dan@codesourcery.com>
2876
2877 * configure.srv: Set srv_linux_regsets for sh*-*-linux*.
2878 * linux-sh-low.c (sh_fill_gregset, target_regsets): New.
2879
45e2715e
PA
28802007-07-08 Pedro Alves <pedro_alves@portugalmail.pt>
2881
2882 * win32-low.c (handle_output_debug_string): Ignore event if not
2883 waiting.
2884
c5674cf1
PA
28852007-07-08 Pedro Alves <pedro_alves@portugalmail.pt>
2886
2887 * win32-arm-low.c (arm_wince_breakpoint): Fix typo.
2888
2bbe3cc1
DJ
28892007-07-03 Daniel Jacobowitz <dan@codesourcery.com>
2890
2891 * remote-utils.c (look_up_one_symbol): Handle 'm' packets.
2892
ae13219e
DJ
28932007-07-02 Daniel Jacobowitz <dan@codesourcery.com>
2894
2895 * inferiors.c (change_inferior_id): Add comment.
2896 * linux-low.c (check_removed_breakpoint): Add an early
2897 prototype. Improve debug output.
2898 (linux_attach): Doc update.
2899 (linux_detach_one_process, linux_detach): Clean up before releasing
2900 each process.
2901 (send_sigstop, wait_for_sigstop): Improve comments and debug output.
2902 * linux-low.h (struct process_info): Doc improvement.
2903 * mem-break.c (delete_all_breakpoints): New.
2904 * mem-break.h (delete_all_breakpoints): New prototype.
2905 * thread-db.c (find_first_thread): New.
2906 (thread_db_create_event): Call it instead of
2907 thread_db_find_new_threads. Clean up unused variables.
2908 (maybe_attach_thread): Remove first thread handling.
2909 (thread_db_find_new_threads): Use find_first_thread.
2910 (thread_db_get_tls_address): Likewise.
2911
4105de34
DJ
29122007-06-27 Daniel Jacobowitz <dan@codesourcery.com>
2913
2914 * thread-db.c (thread_db_find_new_threads): Add prototype.
2915 (thread_db_create_event): Check for the main thread before adding
2916 a new thread.
2917 (maybe_attach_thread): Only enable event reporting if TID == 0.
2918 (thread_db_get_tls_address): Check for new threads.
2919
2b876972
DJ
29202007-06-20 Daniel Jacobowitz <dan@codesourcery.com>
2921
2922 * linux-low.c (linux_create_inferior): Try execv before execvp.
2923 * spu-low.c (spu_create_inferior): Likewise.
2924
7a245884
DJ
29252007-06-13 Mike Frysinger <vapier@gentoo.org>
2926
2927 * linux-low.c (linux_create_inferior): Change execv to execvp.
2928 * spu-low.c (spu_create_inferior): Likewies.
2929
117ce543
DJ
29302007-06-13 Daniel Jacobowitz <dan@codesourcery.com>
2931
2932 * Makefile.in (clean): Clean new files instead of deleted ones.
2933 (reg-mips.o, reg-mips.c, reg-mips64.o, reg-mips64.c): Delete.
2934 (mips-linux.o, mips-linux.c, mips64-linux.o, mips64-linux.c): New
2935 rules.
2936 * configure.srv: Specify XML files and new regformats for MIPS and
2937 MIPS64 GNU/Linux.
2938 * linux-mips-low.c (mips_num_regs): Set to only used registers.
2939 (mips_regmap): Do not fetch $0. Remove unused registers. Add
2940 an entry for the restart register.
2941 (mips_cannot_fetch_register, mips_cannot_store_register)
2942 (mips_reinsert_addr, mips_fill_fpregset, mips_store_fpregset): Update
2943 register names to match the XML descriptions.
2944 (mips_fill_gregset, mips_store_gregset): Likewise. Handle the
2945 restart register instead of $0.
2946
0e7f50da
UW
29472007-06-12 Ulrich Weigand <uweigand@de.ibm.com>
2948 Markus Deuling <deuling@de.ibm.com>
2949
2950 * remote-utils.c (decode_xfer_write): New function.
2951 * server.h (decode_xfer_write): Add prototype.
2952 * server.c (handle_query): Add PACKET_LEN argument. Support
2953 qXfer:spu:read and qXfer:spu:write packets.
2954 (main): Pass packet_len to handle_query.
2955 * spu-low.c (spu_target_ops): Add spu_proc_xfer_spu.
2956 * target.h (target_ops): Add qxfer_spu.
2957
374c1d38
UW
29582007-06-12 Ulrich Weigand <uweigand@de.ibm.com>
2959
2960 * spu-low.c (spu_proc_xfer_spu): Do not return failure when
2961 accessing non-seekable spufs files.
2962
bb63802a
UW
29632007-05-16 Markus Deuling <deuling@de.ibm.com>
2964
2965 * server.c (handle_query): Add reply for qC packet.
2966
7390519e
PA
29672007-05-10 Pedro Alves <pedro_alves@portugalmail.pt>
2968 Leo Zayas <lerele@champenstudios@com>
2969
2970 * server.h (check_remote_input_interrupt_request): New function.
2971 * remote_utils.c (INVALID_DESCRIPTOR): New define.
2972 (remote_desc): Initialize with INVALID_DESCRIPTOR.
2973 (input_interrupt): Expose on USE_WIN32API too. Fix whitespace.
2974 (check_remote_input_interrupt_request): New function.
2975 * server.h (check_remote_input_interrupt_request): Declare.
3ecf0694 2976 * win32-low.c (winapi_DebugBreakProcess,
7390519e
PA
2977 winapi_GenerateConsoleCtrlEvent): New typedefs.
2978 (get_child_debug_event): Lower Win32 debug event polling from 1 sec
2979 to 250 ms.
2980 (win32_wait): Check for remote interrupt request
2981 with check_remote_input_interrupt_request.
2982 (win32_request_interrupt): New function.
2983 (win32_target_op): Set request_interrupt to win32_request_interrupt.
2984
34b34921
PA
29852007-05-10 Pedro Alves <pedro_alves@portugalmail.pt>
2986
2987 * win32-low.c (debug_registers_changed,
2988 debug_registers_used, CONTEXT_EXTENDED_REGISTERS,
2989 CONTEXT_FLOATING_POINT, CONTEXT_DEBUG_REGISTERS,
2990 CONTEXT_DEBUGGER, CONTEXT_DEBUGGER_DR): Delete.
2991 (thread_rec): Get context using the low target.
2992 (child_add_thread): Call thread_added on the low target,
2993 which does the same thing.
2994 (regptr): Delete.
2995 (do_initial_child_stuff): Remove debug registers references.
2996 Set context using the low target. Resume threads after
2997 setting the contexts.
2998 (child_continue): Remove dead variable. Remove debug
2999 registers references.
3000 (child_fetch_inferior_registers): Go through the low target.
3001 (do_child_store_inferior_registers): Remove.
3002 (child_store_inferior_registers): Go through the low target.
3003 (win32_resume): Remove debug registers references.
3004 Set context using the low target.
3005 (handle_exception): Change return type to void. Don't record
3006 context here. Set status to TARGET_WAITKIND_SPURIOUS on a
3007 first chance exception.
3008 (get_child_debug_event): Change return type to void. Remove
3009 goto loop. Always return after waiting for debug event.
3010 (win32_wait): Convert to switch statement. Handle spurious
3011 events.
3012
3013 * win32-i386-low.c (debug_registers_changed,
3014 debug_registers_used): New.
3015 (initial_stuff): Rename to ...
3016 (i386_initial_stuff): ... this. Clear debug registers
3017 state variables.
3018 (store_debug_registers): Delete.
3019 (i386_get_thread_context): New.
3020 (load_debug_registers): Delete.
3021 (i386_set_thread_context): New.
3022 (i386_thread_added): New.
3023 (single_step): Rename to ...
3024 (i386_single_step): ... this.
3025 (do_fetch_inferior_registers): Rename to ...
3026 (i386_fetch_inferior_register): ... this.
3027 (i386_store_inferior_register): New.
3028 (the_low_target): Adapt to new interface.
3029
3030 * win32-arm-low.c (CONTEXT_FLOATING_POINT): Define.
3031 (arm_get_thread_context): New.
3032 (arm_set_thread_context): New.
3033 (regptr): New.
3034 (do_fetch_inferior_registers): Rename to ...
3035 (arm_fetch_inferior_register): ... this.
3036 (arm_store_inferior_register): New.
3037 (arm_wince_breakpoint): Reimplement as unsigned long.
3038 (arm_wince_breakpoint_len): Define.
3039 (the_low_target): Adapt to new interface.
3040
3041 * win32-low.h (target_ops): Remove regmap, store_debug_registers and
3042 load_debug_registers. Add get_thread_context, set_thread_context,
3043 thread_added and store_inferior_register. Rename
3044 fetch_inferior_registers to fetch_inferior_register.
3045 (regptr): Remove declaration.
3046
dd6953e1
PA
30472007-05-10 Pedro Alves <pedro_alves@portugalmail.pt>
3048
3049 * linux-low.c (linux_detach): Change return type to int. Return 0.
3050 * spu-low.c (spu_detach): Likewise.
3051
444d6139
PA
30522007-05-10 Pedro Alves <pedro_alves@portugalmail.pt>
3053
3054 * target.h (target_ops): Change return type of detach to int.
3055 Add join.
3056 (join_inferior): New.
3057 * server.c (main): Don't skip detach support on mingw32.
3058 If the inferior doesn't support detaching return error.
3059 Call join_inferior instead of using waitpid.
3060 * linux-low.c (linux_join): New.
3061 (linux_target_op): Add linux_join.
3062 * spu-low.c (spu_join): New.
3063 (spu_target_ops): Add spu_join.
3064 * win32-low.c (win32_detach): Adapt to new interface.
3065 Reopen current_process_handle before detaching. Issue a child
3066 resume before detaching.
3067 (win32_join): New.
3068 (win32_target_op): Add win32_join.
3069
1d5315fe
PA
30702007-05-10 Pedro Alves <pedro_alves@portugalmail.pt>
3071
3072 * win32-low.c (win32-attach): Fix return value.
3073 * target.h (target_ops): Describe ATTACH return values.
3074
bf914831
PA
30752007-05-10 Pedro Alves <pedro_alves@portugalmail.pt>
3076
3077 * win32-low.c (GETPROCADDRESS): Define.
3078 (winapi_DebugActiveProcessStop): Add WINAPI. typedef as pointer.
3079 (winapi_DebugSetProcessKillOnExit): Likewise.
3080 (win32_create_inferior): Force usage of ansi CreateProcessA.
3081 (win32_attach): Use GETPROCADDRESS.
3082 (win32_detach): Likewise.
3083
f72f3e60
PA
30842007-05-10 Pedro Alves <pedro_alves@portugalmail.pt>
3085
3086 * win32-low.c (win32_wait): Don't use WSTOPSIG.
3087
ed50f18f
PA
30882007-03-30 Pedro Alves <pedro_alves@portugalmail.pt>
3089
3090 * win32-low.c: Commit leftover changes from 2007-03-29.
3091
0c2ead7e
DJ
30922007-03-30 Daniel Jacobowitz <dan@codesourcery.com>
3093
3094 * i387-fp.c (struct i387_fsave, struct i387_fxsave): Make 16-bit
3095 fields short instead of int. Add explicit padding.
3096 (i387_cache_to_fsave): Remove unnecessary casts.
3097 (i387_fsave_to_cache): Doc fix.
3098 (i387_cache_to_fxsave): Remove unnecessary casts and masking.
3099
73725ff3
DJ
31002007-03-30 Daniel Jacobowitz <dan@codesourcery.com>
3101
3102 * i387-fp.c (i387_cache_to_fxsave): Reinitialize val2 before use.
3103 (i387_fxsave_to_cache): Check fp->ftag while building ftag value.
3104
d99f33d8
PA
31052007-03-29 Pedro Alves <pedro_alves@portugalmail.pt>
3106
3107 * configure.srv (arm*-*-mingw32ce*): Move near the other
3108 arm targets.
3109
68070c10
PA
31102007-03-29 Pedro Alves <pedro_alves@portugalmail.pt>
3111
2482afc6 3112 * configure.ac: Add errno checking.
68070c10
PA
3113 (AC_CHECK_HEADERS): Add errno.h, fcntl.h, signal.h,
3114 sys/file.h and malloc.h.
3115 (AC_CHECK_DECLS): Add perror.
3116 (srv_mingwce): Handle.
2482afc6 3117 * configure.srv (i[34567]86-*-cygwin*): Add
68070c10
PA
3118 win32-i386-low.o to srv_tgtobj.
3119 (i[34567]86-*-mingw*): Likewise.
3120 (arm*-*-mingw32ce*): Add case.
3121 * gdbreplay.c [HAVE_SYS_FILE_H, HAVE_SIGNAL_H,
3122 HAVE_FCNTL_H, HAVE_ERRNO_H, HAVE_MALLOC_H]: Check.
3123 [__MINGW32CE__] (strerror): New function.
3124 [__MINGW32CE__] (errno): Define to GetLastError.
3125 [__MINGW32CE__] (COUNTOF): New macro.
3126 (remote_open): Remove extra close call.
3127 * mem-break.c (delete_breakpoint_at): New function.
3128 * mem-break.h (delete_breakpoint_at): Declare.
3129 * remote-utils.c [HAVE_SYS_FILE_H, HAVE_SIGNAL_H,
3130 HAVE_FCNTL_H, HAVE_UNISTD_H, HAVE_ERRNO_H]: Check.
3131 [USE_WIN32API] (read, write): Add char* casts.
3132 * server.c [HAVE_UNISTD_H, HAVE_SIGNAL_H]: Check.
3133 * server.h: Include wincecompat.h on Windows CE.
3134 [HAVE_ERRNO_H]: Check.
3135 (perror): Declare if not declared.
3136 * utils.c: Add stdlib.h, errno.h and malloc.h includes.
3137 (perror_with_name): Remove errno declaration.
3138 * wincecompat.h: New.
3139 * wincecompat.c: New.
3140 * win32-low.h: New.
3141 * win32-arm-low.c: New.
3142 * win32-i386-low.c: New.
3143 (win32-low.c): Include mem-break.h and win32-low.h, and winnt.h.
3144 (OUTMSG2): Make it safe.
3145 (_T): New macro.
3146 (COUNTOF): New macro.
3147 (NUM_REGS): Get it from the low target.
3148 (CONTEXT_EXTENDED_REGISTERS, CONTEXT_FLOATING_POINT,
3149 CONTEXT_DEBUG_REGISTERS): Add fallbacks to 0.
3150 (thread_rec): Let low target handle debug registers.
3151 (child_add_thread): Likewise.
3152 (child_init_thread_list): Likewise.
3153 (continue_one_thread): Likewise.
3154 (regptr): New.
3155 (do_child_fetch_inferior_registers): Move to ...
3156 * win32-i386-low.c: ... here, and rename to ...
3157 (do_fetch_inferior_registers): ... this.
3158 * win32-low.c (child_fetch_inferior_registers):
3159 Go through the low target.
3160 (do_child_store_inferior_registers): Use regptr.
3161 (strwinerror): New function.
3162 (win32_create_inferior): Handle Windows CE.
3163 Use strwinerror instead of strerror on Windows error
3164 codes. Add program to the error output.
3165 Don't close the main thread handle on Windows CE.
3166 (win32_attach): Use coredll.dll on Windows CE.
3167 (win32_kill): Close current process and current
3168 thread handles.
3169 (win32_detach): Use coredll.dll on Windows CE.
3170 (win32_resume): Let low target handle debug registers, and
3171 step request.
3172 (handle_exception): Add/Remove initial breakpoint. Avoid
3173 non-existant WSTOPSIG on Windows CE.
3174 (win32_read_inferior_memory): Cast to remove warning.
3175 (win32_arch_string): Go through the low target.
3176 (initialize_low): Call set_breakpoint_data with the low
3177 target's breakpoint.
3178 * win32-low.c (dr, FLAG_TRACE_BIT, FCS_REGNUM,
3179 FOP_REGNUM, mappings): Move to ...
3180 * win32-i386-low.c: ... here.
3181 * win32-low.c (win32_thread_info): Move to ...
3182 * win32-low.h: ... here.
3183 * Makefile.in (SFILES): Add win32-low.c, win32-i386-low.c,
3184 win32-arm-low.c and wincecompat.c.
3185 (all:): Add $EXEEXT.
3186 (install-only:): Likewise.
3187 (gdbserver:): Likewise.
3188 (gdbreplay:): Likewise.
3189 * config.in: Regenerate.
3190 * configure: Regenerate.
3191
41093d81
PA
31922007-03-28 Pedro Alves <pedro_alves@portugalmail.pt>
3193
3194 * win32-low.c: Rename typedef thread_info to
3195 win32_thread_info throughout.
3196
544afa54
PA
31972007-03-28 Pedro Alves <pedro_alves@portugalmail.pt>
3198
3199 * win32-i386-low.c: Rename to ...
3200 * win32-low.c: ... this.
3201 * configure.srv: Replace win32-i386-low.o with win32-low.o.
3202 * Makefile.in: Likewise.
3203
bce7165d
PA
32042007-03-27 Pedro Alves <pedro_alves@portugalmail.pt>
3205
3206 * remote-utils.c (monitor_output): Constify msg parameter.
3207 * server.h (monitor_output): Likewise.
3208 * win32-i386-low.c (handle_output_debug_string): New.
3209 (win32_kill): Handle OUTPUT_DEBUG_STRING_EVENT events using
3210 handle_output_debug_string.
3211 (get_child_debug_event): Likewise.
3212
506c7aa0
DJ
32132007-03-27 Mat Hostetter <mat@lcs.mit.edu>
3214
3215 * server.c (main): Correct strtoul check.
3216
42c81e2a
DJ
32172007-03-27 Jon Ringle <jon@ringle.org>
3218
3219 * linux-low.c: Check __ARCH_HAS_MMU__ also.
3220
9453113a
DJ
32212007-03-27 Brooks Moses <brooks.moses@codesourcery.com>
3222
3223 * Makefile.in: Add dummy "pdf" and "install-pdf" targets.
3224
64a69107
DJ
32252007-02-27 Daniel Jacobowitz <dan@codesourcery.com>
3226
3227 * terminal.h: Check HAVE_SGTTY_H.
3228
32292007-02-27 Mat Hostetter <mat@lcs.mit.edu>
6f8486da
DJ
3230
3231 * remote-utils.c (remote_open): Print out the assigned port number.
3232
c74d0ad8
DJ
32332007-02-26 Daniel Jacobowitz <dan@codesourcery.com>
3234
3235 * remote-utils.c (monitor_output): New function.
3236 * server.c (debug_threads): Define here.
3237 (monitor_show_help): New function.
3238 (handle_query): Handle qRcmd.
3239 (main): Do not handle 'd' packet.
3240 * server.h (debug_threads, remote_debug, monitor_output): Declare.
3241 * linux-low.c, spu-low.c, win32-i386-low.c: Remove definitions
3242 of debug_threads.
3243
de7c3b4a
PA
32442007-02-25 Pedro Alves <pedro_alves@portugalmail.pt>
3245
3246 * Makefile.in (EXEEXT): New.
3247 (clean): Use $(EXEEXT).
3248
ef57601b
PA
32492007-02-25 Pedro Alves <pedro_alves@portugalmail.pt>
3250
3251 * target.h (target_ops): Rename send_signal to request_interrupt,
3252 and remove enum target_signal parameter.
3253 * linux-low.c (linux_request_interrupt): Rename from
3254 linux_send_signal, and always send SIGINT.
3255 * spu-low.c (spu_request_interrupt): Rename from spu_send_signal,
3256 and always send SIGINT.
3257 * remote-utils.c (putpkt_binary): Call request_interrupt, instead
3258 of send_signal.
3259 (input_interrupt): Likewise.
3260
820f2bda
PA
32612007-02-25 Pedro Alves <pedro_alves@portugalmail.pt>
3262
3263 * server.c (get_features_xml): Check if target implemented
3264 arch_string.
3265 * win32-i386-low.c (win32_arch_string): New.
3266 (win32_target_ops): Add win32_arch_string as arch_string member.
3267
ab39bf24
UW
32682007-02-22 Markus Deuling <deuling@de.ibm.com>
3269
3270 * spu-low.c (spu_arch_string): New.
3271 (spu_target_ops): Add spu_arch_string.
3272
61ff6e04
DJ
32732007-02-16 Daniel Jacobowitz <dan@codesourcery.com>
3274
3275 * remote-utils.c: Remove HAVE_TERMINAL_H check.
3276 * configure.ac: Do not check for terminal.h.
3277 * configure, config.in: Regenerated.
3278
fb1e4ffc
DJ
32792007-02-08 Daniel Jacobowitz <dan@codesourcery.com>
3280
3281 * Makefile.in (OBS): Add $(XML_BUILTIN).
3282 (XML_DIR, XML_TARGET, XML_FILES, XML_BUILTIN): New.
3283 (clean): Update.
3284 (target.xml, xml-builtin.c, stamp-xml, arm-with-iwmmxt.o)
3285 (arm-with-iwmmxt.c): New.
3286 * config.in, configure: Regenerate.
3287 * configure.ac: Check for iWMMXt. Handle srv_xmltarget,
3288 srv_xmlbuiltin, and srv_xmlfiles. Define USE_XML.
3289 * configure.srv: Mention srv_xmltarget and srv_xmlfiles.
3290 (arm*-*-linux*): Add iWMMXt and regset support.
3291 * linux-arm-low.c (PTRACE_GETWMMXREGS, PTRACE_SETWMMXREGS): Define.
3292 (arm_fill_gregset, arm_store_gregset, arm_fill_wmmxregset)
3293 (arm_store_wmmxregset, target_regsets): New.
3294 * server.c (get_features_xml): Take annex argument. Check builtin
3295 XML documents.
3296 (handle_query): Handle multiple annexes.
3297
0f48aa01
DJ
32982007-01-29 Daniel Jacobowitz <dan@codesourcery.com>
3299
3300 * remote-utils.c [USE_WIN32API] (read, write): Define.
3301 (putpkt_binary, input_interrupt, readchar, getpkt): Use read and
3302 write.
3303
23181151
DJ
33042007-01-09 Daniel Jacobowitz <dan@codesourcery.com>
3305
3306 * linux-i386-low.c (the_low_target): Set arch_string.
3307 * linux-x86-64-low.c (the_low_target): Likewise.
3308 * linux-low.c (linux_arch_string): New.
3309 (linux_target_ops): Add it.
3310 * linux-low.h (struct linux_target_ops): Add arch_string.
3311 * server.c (write_qxfer_response): Use const void * for DATA.
3312 (get_features_xml): New.
3313 (handle_query): Handle qXfer:features:read. Report it for qSupported.
3314 * target.h (struct target_ops): Add arch_string method.
3315
9d606399
DJ
33162007-01-03 Denis Pilat <denis.pilat@st.com>
3317 Daniel Jacobowitz <dan@codesourcery.com>
3318
3319 * linux-low.c (linux_kill): Handle being called with no threads.
3320 * win32-i386-low.c (win32_kill): Likewise.
3321 (get_child_debug_event): Clear current_process_handle.
3322
33232006-12-30 Denis PILAT <denis.pilat@st.com>
8264bb58
DJ
3324 Daniel Jacobowitz <dan@codesourcery.com>
3325
3326 * remote-utils.c (remote_open): Check the type of specified
3327 serial port devices before opening them.
3328 * server.c (main): Kill the inferior if an error occurs during
3329 the first remote_open.
3330
a5e13d24
DJ
33312006-12-05 Markus Deuling <deuling@de.ibm.com>
3332
3333 * README: Update supported targets.
3334
186947f7
DJ
33352006-11-28 Daniel Jacobowitz <dan@codesourcery.com>
3336
3337 * Makefile.in (clean): Remove reg-mips64.c.
3338 (reg-mips64.c, reg-mips64.o): New rules.
3339 * configure.srv: Handle mips64. Include regset support for mips.
3340 * linux-mips-low.c (union mips_register): New.
3341 (mips_get_pc, mips_set_pc, mips_reinsert_addr): Use it.
3342 (mips_breakpoint, mips_breakpoint_at): Use int.
3343 (mips_collect_register, mips_supply_register)
3344 (mips_collect_register_32bit, mips_supply_register_32bit)
3345 (mips_fill_gregset, mips_store_gregset, mips_fill_fpregset)
3346 (mips_store_fpregset, target_regsets): New.
3347 * thread-db.c (thread_db_get_tls_address): Use uintptr_t.
3348
a13e2c95
UW
33492006-11-22 Ulrich Weigand <uweigand@de.ibm.com>
3350
3351 * configure.srv: Add target "spu*-*-*".
3352 * Makefile.in (clean): Remove reg-spu.c.
3353 (reg-spu.c, reg-spu.o, spu-low.o): Add dependencies.
3354 * spu-low.c: New file.
3355
cb7283db
DJ
33562006-11-16 Daniel Jacobowitz <dan@codesourcery.com>
3357
3358 * configure.ac: Correct td_thr_tls_get_addr test.
3359 * configure: Regenerated.
3360
89be2091
DJ
33612006-11-16 Daniel Jacobowitz <dan@codesourcery.com>
3362
3363 * linux-low.c (linux_wait_for_event): Reformat. Use the
3364 pass_signals array.
3365 * remote-utils.c (decode_address_to_semicolon): New.
3366 * server.c (pass_signals, handle_general_set): New.
3367 (handle_query): Mention QPassSignals for qSupported.
3368 (main): Call handle_general_set.
3369 * server.h (pass_signals, decode_address_to_semicolon): New.
3370
000ef4f0
DJ
33712006-11-06 Daniel Jacobowitz <dan@codesourcery.com>
3372
3373 * server.c (handle_query): Correct error handling for read_auxv.
3374
b7149293
UW
33752005-10-19 Ulrich Weigand <uweigand@de.ibm.com>
3376
3377 * configure.srv [s390-*-linux*, s390x-*-linux*]: Set srv_linux_regsets
3378 and srv_linux_thread_db to yes.
3379 * linux-s390-low.c (s390_fill_gregset): New function.
3380 (target_regsets): Define data structure.
3381
dae5f5cf
DJ
33822006-10-17 Daniel Jacobowitz <dan@codesourcery.com>
3383
3384 * acinclude.m4 (SRV_CHECK_TLS_GET_ADDR): New.
3385 * configure.ac: Use it. Define HAVE_TD_THR_TLS_GET_ADDR.
3386 * config.in, configure: Regenerated.
3387 * inferiors.c (gdb_id_to_thread): New function.
3388 (gdb_id_to_thread_id): Use it.
3389 * linux-low.c (linux_target_ops): Use thread_db_get_tls_address.
3390 * linux-low.h (struct process_info): Add th member.
3391 (thread_db_get_tls_address): New prototype.
3392 * remote-utils.c (decode_address): Make non-static.
3393 * server.c (handle_query): Handle qGetTLSAddr.
3394 * server.h (gdb_id_to_thread, decode_address): New prototypes.
3395 * target.h (struct target_ops): Add get_tls_address.
3396 * thread-db.c (maybe_attach_thread): Save the thread handle.
3397 (thread_db_get_tls_address): New.
3398
32ca6d61
DJ
33992006-09-28 Daniel Jacobowitz <dan@codesourcery.com>
3400
3401 * linux-low.c (PTRACE_GETSIGINFO, PTRACE_SETSIGINFO): Define.
3402 (linux_resume_one_process): Take a siginfo_t *. Update all
3403 callers. Queue it if necessary. Use PTRACE_SETSIGINFO.
3404 (struct pending_signals): Add a siginfo_t.
3405 (linux_wait_for_process): Always set last_status.
3406 (linux_wait_for_event): Use PTRACE_GETSIGINFO.
3407 (linux_queue_one_thread): Use PTRACE_GETSIGINFO.
3408 * linux-low.h (struct process_info): Add last_status.
3409
5ffff7c1
DJ
34102006-09-21 Daniel Jacobowitz <dan@codesourcery.com>
3411
3412 * remote-utils.c (try_rle): New function.
3413 (putpkt_binary): Use it.
3414
8695c747
DJ
34152006-08-19 Daniel Jacobowitz <dan@codesourcery.com>
3416
3417 * Makefile.in (clean): Clean reg-x86-64-linux.c.
3418 (reg-x86-64-linux.o, reg-x86-64-linux.c): New.
3419 * configure.srv (x86_64-*-linux*): Use reg-x86-64-linux.o.
3420 * linux-x86-64-low.c (x86_64_regmap): Include ORIG_RAX.
3421 (x86_64_fill_gregset, x86_64_store_gregset): Skip floating
3422 point registers.
3423
290fadea
RS
34242006-08-08 Richard Sandiford <richard@codesourcery.com>
3425
3426 * server.c (terminal_fd): New variable.
3427 (old_foreground_pgrp): Likewise.
3428 (restore_old_foreground_pgrp): New function.
3429 (start_inferior): Record the terminal file descriptor in terminal_fd
3430 and its original foreground group in old_foreground_pgrp. Register
3431 restore_old_foreground_pgrp with atexit().
3432
9f2e1e63
DJ
34332006-07-26 Daniel Jacobowitz <dan@codesourcery.com>
3434
3435 * server.c (handle_query): Correct qPart to qXfer.
3436
b80864fb
DJ
34372006-07-22 Daniel Jacobowitz <dan@codesourcery.com>
3438
3439 * configure.ac: Check for more headers which are missing on
3440 Windows. Automatically supply -lwsock32 and USE_WIN32API.
3441 * configure.srv: Add Cygwin and mingw32.
3442 * remote-utils.c: Don't include headers unconditionally which
3443 are missing on mingw32. Include <winsock.h> for mingw32.
3444 (remote_open): Adjust for mingw32 support. Flush
3445 standard error after writing to it.
3446 (remote_close, putpkt_binary, input_interrupt, block_async_io)
3447 (unblock_async_io, enable_async_io, disable_async_io)
3448 (readchar, getpkt): Update for Winsock support.
3449 (prepare_resume_reply): Expect a protocol signal number.
3450 * server.c: Disable <sys/wait.h> on mingw32.
3451 (start_inferior): Adjust for mingw32 support. Flush
3452 standard error after writing to it.
3453 (attach_inferior): Likewise. Use protocol signal
3454 numbers.
3455 (main): Skip 'D' packet on mingw32. Use protocol signal numbers
3456 and names.
3457 * win32-i386-low.c: New file.
3458 * Makefile.in (XM_CLIBS): Set.
3459 (gdbserver, gdbreplay): Use $(INTERNAL_CFLAGS).
3460 (win32-i386-low.o): New dependency rule.
3461 * linux-low.c (linux_wait): Use target signal numbers.
3462 * target.h (struct target_ops): Doc fix.
3463 * server.h (target_signal_to_name): New prototype.
3464 * gdbreplay.c: Don't include headers unconditionally which
3465 are missing on mingw32. Include <winsock.h> for mingw32.
3466 (remote_close, remote_open): Adjust for Winsock support.
3467 * configure, config.in: Regenerated.
3468
0876f84a
DJ
34692006-07-12 Daniel Jacobowitz <dan@codesourcery.com>
3470
3471 * server.c (decode_xfer_read, write_qxfer_response): New.
3472 (handle_query): Take a packet length argument. Handle
3473 qXfer:auxv:read instead of qPart:auxv:read. Mention it in
3474 the qSupported response.
3475 (main): Update call to handle_query.
3476
01f9e8fa
DJ
34772006-06-22 Daniel Jacobowitz <dan@codesourcery.com>
3478
3479 * remote-utils.c (remote_escape_output, remote_unescape_input): New.
3480 (putpkt_binary): Renamed from putpkt and adjusted for binary
3481 data.
3482 (putpkt): New wrapper for putpkt_binary.
3483 (readchar): Don't mask off the high bit.
3484 (decode_X_packet): New function.
3485 * server.c (main): Call putpkt_binary if a handler sets the packet
3486 length. Save the length of the incoming packet. Handle 'X'.
3487 * server.h (gdb_byte, remote_escape_output, decode_X_packet): New.
3488
be2a5f71
DJ
34892006-06-21 Daniel Jacobowitz <dan@codesourcery.com>
3490
3491 * server.c (handle_query): Handle qSupported.
3492
ea025f5f
DJ
34932006-05-30 Daniel Jacobowitz <dan@codesourcery.com>
3494
3495 * remote-utils.c (all_symbols_looked_up): New variable.
3496 (look_up_one_symbol): Check it.
3497 * server.h (look_up_one_symbol): New declaration.
3498 * thread-db.c (thread_db_init): Set all_symbols_looked_up.
3499
9308fc88
DJ
35002006-05-30 Daniel Jacobowitz <dan@codesourcery.com>
3501
3502 * Makefile.in (linux-arm-low.o): Update dependencies.
66f338c7 3503 * linux-arm-low.c: Include "gdb_proc_service.h".
9308fc88
DJ
3504 (PTRACE_GET_THREAD_AREA): Define.
3505 (ps_get_thread_area): New function.
3506
52fb6437
NS
35072006-05-09 Nathan Sidwell <nathan@codesourcery.com>
3508
3509 * configure.srv (m68k*-*-uclinux*): New target.
3510 * linux-low.c (linux_create_inferior): Use vfork on mmuless systems.
3511 (linux_resume_one_process): Remove extraneous cast.
3512 (linux_read_offsets): New.
3513 (linux_target_op): Add linux_read_offsets on mmuless systems.
3514 * server.c (handle_query): Add qOffsets logic.
3515 * target.h (struct target_ops): Add read_offsets.
3516
21b0f40c
DJ
35172006-03-15 Daniel Jacobowitz <dan@codesourcery.com>
3518
3519 * linux-mips-low.c: Include <sys/ptrace.h> and "gdb_proc_service.h".
3520 (PTRACE_GET_THREAD_AREA): Define.
3521 (ps_get_thread_area): New function.
3522 * Makefile.in (linux-i386-low.o, linux-mips-low.o)
3523 (linux-x86-64-low.o): Update.
3524
0050a760
DJ
35252006-03-15 Daniel Jacobowitz <dan@codesourcery.com>
3526
3527 * configure.ac: Remove checks for prfpregset_t.
3528 * gdb_proc_service.h: New file.
3529 * linux-i386-low.c, linux-x86-64-low.c, thread-db.c: Use the
3530 new "gdb_proc_service.h".
3531 * proc-service.c: Likewise.
3532 (ps_pglobal_lookup, ps_pdread, ps_pdwrite): Use psaddr_t.
3533 (ps_lgetfpregs, ps_lsetfpregs): Use a void* argument.
3534 * Makefile.in (gdb_proc_service_h): Updated.
3535 * configure, config.in: Regenerated.
3536
b92a518e
DJ
35372006-03-03 Daniel Jacobowitz <dan@codesourcery.com>
3538
3539 * remote-utils.c (prepare_resume_reply): Move declaration
3540 of gdb_id_from_wait to the top of the block.
3541
545587ee
DJ
35422006-02-15 Daniel Jacobowitz <dan@codesourcery.com>
3543
3544 * linux-low.c (regsets_store_inferior_registers): Read the regset
3545 from the target before filling it.
3546
9db87ebd
DJ
35472006-02-08 Daniel Jacobowitz <dan@codesourcery.com>
3548
3549 * server.c (attach_inferior): Return SIGTRAP for a successful
3550 attach.
3551
dd24457d
DJ
35522006-02-01 Daniel Jacobowitz <dan@codesourcery.com>
3553
3554 * Makefile.in (OBS): Add version.o.
3555 (STAGESTUFF): Delete.
3556 (version.o): Add dependencies.
3557 (version.c): Replace rule.
3558 (clean): Remove version.c.
3559 * server.c (gdbserver_version): New.
3560 (gdbserver_usage): Use printf.
3561 (main): Handle --version and --help.
3562 * server.h (version, host_name): Add declarations.
3563
6f0f660e
EZ
35642005-12-23 Eli Zaretskii <eliz@gnu.org>
3565
3566 * linux-arm-low.c:
3567 * linux-arm-low.c:
3568 * inferiors.c:
3569 * i387-fp.h:
3570 * i387-fp.c:
3571 * gdbreplay.c:
3572 * regcache.c:
3573 * proc-service.c:
3574 * mem-break.h:
3575 * mem-break.c:
3576 * linux-x86-64-low.c:
3577 * linux-sh-low.c:
3578 * linux-s390-low.c:
3579 * linux-ppc64-low.c:
3580 * linux-ppc-low.c:
3581 * linux-mips-low.c:
3582 * linux-m68k-low.c:
3583 * linux-m32r-low.c:
3584 * linux-low.h:
3585 * linux-low.c:
3586 * linux-ia64-low.c:
3587 * linux-i386-low.c:
3588 * linux-crisv32-low.c:
3589 * thread-db.c:
3590 * terminal.h:
3591 * target.h:
3592 * target.c:
3593 * server.h:
3594 * server.c:
3595 * remote-utils.c:
3596 * regcache.h:
3597 * utils.c:
3598 * Makefile.in:
3599 * configure.ac:
3600 * gdbserver.1: Add (C) after Copyright. Update the FSF
3601 address.
3602
9d1fb177
DJ
36032005-11-13 Daniel Jacobowitz <dan@codesourcery.com>
3604
3605 * linux-arm-low.c (arm_eabi_breakpoint): New variable.
3606 (arm_breakpoint_at): Recognize both breakpoints.
3607 (the_low_target): Use the correct breakpoint instruction.
3608
011a70c2
DJ
36092005-11-02 Daniel Jacobowitz <dan@codesourcery.com>
3610
3611 * configure.srv (x86_64-*-linux*): Turn on thread_db support.
3612 * linux-x86-64-low.c (x86_64_breakpoint, x86_64_breakpoint_len)
3613 (x86_64_get_pc, x86_64_set_pc, x86_64_breakpoint_at): New.
3614 (the_low_target): Update.
3615
7fb85e41
AS
36162005-10-25 Andreas Schwab <schwab@suse.de>
3617
3618 * server.c (main): Allocate mem_buf with PBUFSIZ bytes.
3619
3620 * linux-ia64-low.c (ia64_regmap): Remove NAT registers.
3621 (ia64_num_regs): Reduce to 462.
3622
3db0444b
DJ
36232005-09-17 Daniel Jacobowitz <dan@codesourcery.com>
3624
3625 * acinclude.m4: Correct quoting.
3626 * aclocal.m4: Regenerated.
3627
3628 Suggested by SZOKOVACS Robert <szo@ies.hu>:
3629 * thread-db.c (thread_db_err_str): Handle TD_VERSION.
3630 (thread_db_init): Call thread_db_err_str.
3631 * configure.ac: Check for TD_VERSION.
3632 * config.in, configure: Regenerated.
3633
bee0189a
DJ
36342005-07-31 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
3635
3636 * server.h (error, fatal, warning): Add ATTR_FORMAT.
3637
e9d25b98
DJ
36382005-07-13 Daniel Jacobowitz <dan@codesourcery.com>
3639
3640 * configure.ac: Define HAVE_LINUX_REGSETS even if PTRACE_GETREGS
3641 is not available. Define HAVE_PTRACE_GETREGS if it is.
3642 * config.in, configure: Regenerated.
3643 * configure.srv: Set srv_linux_regsets for PowerPC and PowerPC64.
3644 * linux-i386-low.c, linux-m68k-low.c: Update to use
3645 HAVE_PTRACE_GETREGS.
3646 * linux-low.c (regsets_fetch_inferior_registers)
3647 (regsets_store_inferior_registers): Only return 0 if we processed
3648 GENERAL_REGS.
3649 * linux-ppc-low.c (ppc_fill_gregset, target_regsets): New.
3650 * linux-ppc64-low.c (ppc_fill_gregset, target_regsets): New.
3651
a06660f7
DJ
36522005-07-13 Daniel Jacobowitz <dan@codesourcery.com>
3653
3654 * inferiors.c (struct thread_info): Add gdb_id.
3655 (add_thread): Add gdb_id argument.
3656 (thread_id_to_gdb_id, thread_to_gdb_id, gdb_id_to_thread_id): New.
3657 * linux-low.c (linux_create_inferior, linux_attach_lwp): Update
3658 calls to add_thread.
3659 * remote-utils.c (prepare_resume_reply: Use thread_to_gdb_id.
3660 * server.c (handle_query): Use thread_to_gdb_id.
3661 (handle_v_cont, main): Use gdb_id_to_thread_id.
3662 * server.h (add_thread): Update prototype.
3663 (thread_id_to_gdb_id, thread_to_gdb_id, gdb_id_to_thread_id): New
3664 prototypes.
3665
5a1f5858
DJ
36662005-07-13 Daniel Jacobowitz <dan@codesourcery.com>
3667
3668 * linux-low.c (fetch_register, usr_store_inferior_registers): Handle
3669 left-padded registers.
3670 * linux-low.h (struct linux_target_ops): Add left_pad_xfer.
3671 * linux-ppc64-low.c (the_low_target): Set left_pad_xfer.
3672
e122f1f5
SE
36732005-07-01 Steve Ellcey <sje@cup.hp.com>
3674
3675 * configure.ac (BFD_NEED_DECLARATION): Replace with AC_CHECK_DECLS.
3676 * configure: Regenerate.
3677 * config.in: Regenerate.
3678 * server.h (NEED_DECLARATION_STRERROR):
3679 Replace with !HAVE_DECL_STRERROR.
3680
d592fa2f
DJ
36812005-06-16 Daniel Jacobowitz <dan@codesourcery.com>
3682
3683 * linux-low.c (linux_wait, linux_send_signal): Don't test
3684 an unsigned long variable for > 0 if it could be MAX_ULONG.
3685 * server.c (myresume): Likewise.
3686 * target.c (set_desired_inferior): Likewise.
3687
ccbd4912
MK
36882005-06-13 Mark Kettenis <kettenis@gnu.org>
3689
3690 * configure.ac: Simplify and improve check for socklen_t.
3691 * configure, config.in: Regenerate.
3692
f450004a
DJ
36932005-06-12 Daniel Jacobowitz <dan@codesourcery.com>
3694
3695 * acconfig.h: Remove.
3696 * configure.ac: Add a test for socklen_t. Use three-argument
3697 AC_DEFINE throughout.
3698 * config.in: Regenerated using autoheader 2.59.
3699 * configure: Regenerated.
3700
3701 * gdbreplay.c (socklen_t): Provide a default.
3702 (remote_open): Use socklen_t.
3703 * remote-utils.c (socklen_t): Provide a default.
3704 (remote_open): Use socklen_t.
3705 (convert_int_to_ascii, convert_ascii_to_int, decode_M_packet): Use
3706 unsigned char.
3707
3708 * i387-fp.c (struct i387_fsave, struct i387_fxsave): Use unsigned
3709 char for buffers.
3710 * linux-low.c (linux_read_memory, linux_write_memory)
3711 (linux_read_auxv): Likewise.
3712 * mem-break.c (breakpoint_data, set_breakpoint_data, check_mem_read)
3713 (check_mem_write): Likewise.
3714 * mem-break.h (set_breakpoint_data, check_mem_read, check_mem_write):
3715 Likewise.
3716 * regcache.c (struct inferior_rgcache_data, registers_to_string)
3717 (registers_from_string, register_data): Likewise.
3718 * server.c (handle_query, main): Likewise.
3719 * server.h (convert_ascii_to_int, convert_int_to_ascii)
3720 (decode_M_packet): Likewise.
3721 * target.c (read_inferior_memory, write_inferior_memory): Likewise.
3722 * target.h (struct target_ops): Update read_memory, write_memory,
3723 and read_auxv.
3724 (read_inferior_memory, write_inferior_memory): Update.
3725 * linux-low.h (struct linux_target_ops): Change type of breakpoint
3726 to unsigned char *.
3727 * linux-arm-low.c, linux-cris-low.c, linux-crisv32-low.c,
3728 linux-i386-low.c, linux-m32r-low.c, linux-m68k-low.c,
3729 linux-mips-low.c, linux-ppc-low.c, linux-ppc64-low.c,
3730 linux-s390-low.c, linux-sh-low.c: Update for changes in
3731 read_inferior_memory and the_low_target->breakpoint.
3732
eee84df1
DJ
37332005-05-28 Daniel Jacobowitz <dan@codesourcery.com>
3734
3735 * Makefile.in (SFILES): Add linux-ppc64-low.c.
3736 (linux-ppc64-low.o, reg-ppc64.c, reg-ppc64.o): New targets.
3737 * configure.srv: Add powerpc64-*-linux*.
3738 * linux-ppc64-low.c: New file.
3739
45b134e5
OF
37402005-05-23 Orjan Friberg <orjanf@axis.com>
3741
3742 * linux-cris-low.c: New file with support for CRIS.
3743 * linux-crisv32-low.c: Ditto for CRISv32.
3744 * Makefile.in (SFILES): Add linux-cris-low.c, linux-crisv32-low.c.
3745 (clean): Add reg-cris.c and reg-crisv32.c.
3746 Add linux-cris-low.o, linux-crisv32-low.o, reg-cris.o, reg-cris.c,
3747 reg-crisv32.o, and reg-crisv32.c to make rules.
3748 * configure.srv: Add cris-*-linux* and crisv32-*-linux* to list of
3749 recognized targets.
3750
48d93c75
UW
37512005-05-16 Ulrich Weigand <uweigand@de.ibm.com>
3752
3753 * linux-low.c (fetch_register): Ensure buffer size is a multiple
3754 of sizeof (PTRACE_XFER_TYPE).
3755 (usr_store_inferior_registers): Likewise. Zero out excess bytes.
3756
e013ee27
OF
37572005-05-12 Orjan Friberg <orjanf@axis.com>
3758
3759 * target.h (struct target_ops): Add insert_watchpoint,
3760 remove_watchpoint, stopped_by_watchpoint, stopped_data_address function
3761 pointers for hardware watchpoint support.
3762 * linux-low.h (struct linux_target_ops): Ditto.
3763 * linux-low.c (linux_insert_watchpoint, linux_remove_watchpoint)
3764 (linux_stopped_by_watchpoint, linux_stopped_data_address): New. Add
3765 to linux_target_ops.
3766 * remote-utils.c (prepare_resume_reply): Add watchpoint information to
3767 reply packet.
3768 * server.c (main): Recognize 'Z' and 'z' packets.
3769
b0ded00b
UW
37702005-05-10 Ulrich Weigand <uweigand@de.ibm.com>
3771
3772 * linux-s390-low.c (s390_breakpoint, s390_breakpoint_len): Define.
3773 (s390_get_pc, s390_set_pc, s390_breakpoint_at): New functions.
3774 (the_low_target): Add new members.
3775
8643e2ad
DJ
37762005-05-04 Daniel Jacobowitz <dan@codesourcery.com>
3777
3778 * proc-service.c (ps_lgetregs): Search all_processes instead of
3779 all_threads.
3780
fc620387
DJ
37812005-05-04 Daniel Jacobowitz <dan@codesourcery.com>
3782
3783 * server.c (start_inferior): Change return type to int.
3784 (attach_inferior): Change sigptr to int *.
3785 (handle_v_cont, handle_v_requests): Change signal to int *.
3786 (main): Change signal to int.
3787
37882005-04-15 Kei Sakamoto <sakamoto.kei@renesas.com>
7cfbc4a0
KI
3789
3790 * Makefile.in: Add linux-m32r-low.o, reg-m32r.c and reg-m32r.o.
3791 * configure.srv: Add m32r*-*-linux*.
3792 * linux-m32r-low.c: New file.
3793
e0e76420
DJ
37942005-03-04 Daniel Jacobowitz <dan@codesourcery.com>
3795
3796 * Makefile.in (stamp-h): Set CONFIG_HEADERS explicitly.
3797
a1928bad
DJ
37982005-03-03 Daniel Jacobowitz <dan@codesourcery.com>
3799
3800 * inferiors.c (change_inferior_id, add_thread, find_inferior_id):
3801 Take unsigned long arguments for PIDs.
3802 * linux-low.c (add_process, linux_attach_lwp, linux_attach)
3803 (linux_thread_alive, linux_wait_for_event, kill_lwp, send_sigstop)
3804 (wait_for_sigstop, linux_resume_one_process)
3805 (regsets_fetch_inferior_registers, linux_send_signal)
3806 (linux_read_auxv): Likewise. Update the types of variables holding
3807 PIDs. Update format string specifiers.
3808 * linux-low.h (struct process_info, linux_attach_lwp): Likewise.
3809 * remote-utils.c (prepare_resume_reply): Likewise.
3810 * server.c (cont_thread, general_thread, step_thread)
3811 (thread_from_wait, old_thread_from_wait, signal_pid): Change type to
3812 unsigned long.
3813 (handle_query): Update format specifiers.
3814 (handle_v_cont, main): Use strtoul for thread IDs.
3815 * server.h (struct inferior_list_entry): Use unsigned long for ID.
3816 (add_thread, find_inferior_id, change_inferior_id, cont_thread)
3817 (general_thread, step_thread, thread_from_wait)
3818 (old_thread_from_wait): Update.
3819 * target.h (struct thread_resume): Use unsigned long for THREAD.
3820 (struct target_ops): Use unsigned long for arguments to attach and
3821 thread_alive.
3822
dcdb98d2
DJ
38232005-02-24 Daniel Jacobowitz <dan@codesourcery.com>
3824
3825 * acinclude.m4: Include bfd/bfd.m4 directly.
3826 * configure.ac: Use AC_ARG_PROGRAM. Suggested by Aron Griffis
3827 <agriffis@toolchain.org>.
3828 * aclocal.m4, configure: Regenerated.
3829
bec39cab
AC
38302005-01-07 Andrew Cagney <cagney@gnu.org>
3831
3832 * configure.ac: Rename configure.in, require autoconf 2.59.
3833 * configure: Re-generate.
3834
434c4c77
DJ
38352004-12-08 Daniel Jacobowitz <dan@debian.org>
3836
3837 * acinclude.m4 (SRV_CHECK_THREAD_DB): Add ps_get_thread_area. Reset
3838 LIBS when finished.
3839 * aclocal.m4: Regenerated.
3840 * configure: Regenerated.
3841
db1d3e1b
AS
38422004-11-21 Andreas Schwab <schwab@suse.de>
3843
3844 * linux-m68k-low.c (m68k_num_gregs): Define.
3845 (m68k_fill_gregset, m68k_store_gregset, m68k_fill_fpregset)
3846 (m68k_store_fpregset, target_regsets) [HAVE_LINUX_REGSETS]: New.
3847 (m68k_breakpoint, m68k_breakpoint_len, m68k_get_pc, m68k_set_pc)
3848 (m68k_breakpoint_at): New. Add to the_low_target.
3849
3850 * configure.srv (m68*-*-linux*): Set srv_linux_regsets and
3851 srv_linux_thread_db to yes.
3852
43360365
JB
38532004-10-20 Joel Brobecker <brobecker@gnat.com>
3854
3855 * linux-x86-64-low.c (ARCH_SET_GS): Add definition if missing.
3856 (ARCH_SET_FS): Likewise.
3857 (ARCH_GET_FS): Likewise.
3858 (ARCH_GET_GS): Likewise.
3859
fd500816
DJ
38602004-10-16 Daniel Jacobowitz <dan@debian.org>
3861
3862 * linux-i386-low.c (ps_get_thread_area): New.
3863 * linux-x86-64-low.c (ps_get_thread_area): New.
3864 * linux-low.c: Include <sys/syscall.h>.
3865 (linux_kill_one_process): Don't kill the first thread here.
3866 (linux_kill): Kill the first thread here.
3867 (kill_lwp): New function.
3868 (send_sigstop, linux_send_signal): Use it.
3869 * proc-service.c: Clean up #ifdefs.
3870 (fpregset_info): Delete.
3871 (ps_lgetregs): Update and enable implementation.
3872 (ps_lsetregs, ps_lgetfpregs, ps_lsetfpregs): Remove disabled
3873 implementations.
3874 * remote-utils.c (struct sym_cache, symbol_cache): New.
3875 (input_interrupt): Print a clearer message.
3876 (async_io_enabled): New variable.
3877 (enable_async_io, disable_async_io): Use it. Update comments.
3878 (look_up_one_symbol): Use the symbol cache.
3879 * thread-db.c (thread_db_look_up_symbols): New function.
3880 (thread_db_init): Update comments. Call thread_db_look_up_symbols.
3881
f6de3c42
DJ
38822004-10-16 Daniel Jacobowitz <dan@debian.org>
3883
3884 * configure.in: Test for -rdynamic.
3885 * configure: Regenerated.
3886 * Makefile (INTERNAL_LDFLAGS): New.
3887 (gdbserver, gdbreplay): Use it.
3888
2c0fc042
AC
38892004-09-02 Andrew Cagney <cagney@gnu.org>
3890
3891 * Makefile.in (TAGS): Replace TM_FILE with DEPRECATED_TM_FILE.
3892
075b3282
DJ
38932004-03-23 Daniel Jacobowitz <drow@mvista.com>
3894
3895 * linux-low.c (linux_wait): Clear all_processes list also.
3896
fa6a77dc
DJ
38972004-03-12 Daniel Jacobowitz <drow@mvista.com>
3898
3899 * linux-low.c: Include <errno.h>. Remove extern declaration of
3900 errno.
3901
6d782a97
DJ
39022004-03-12 Daniel Jacobowitz <drow@mvista.com>
3903
3904 * gdbreplay.c, server.h, utils.c: Update copyright years.
3905
3a7fb99b
DJ
39062004-03-04 Nathan J. Williams <nathanw@wasabisystems.com>
3907
3908 * server.c (main): Print child status or termination signal from
3909 variable 'signal', not 'sig'.
3910
c3e735a6
DJ
39112004-03-04 Nathan J. Williams <nathanw@wasabisystems.com>
3912
3913 * linux-low.c (linux_read_memory): Change return type to
3914 int. Check for and return error from ptrace().
3915 * target.c (read_inferior_memory): Change return type to int. Pass
3916 back return status from the_target->read_memory().
3917 * target.h (struct target_ops): Adapt *read_memory() prototype.
3918 Update comment.
3919 (read_inferior_memory): Adapt prototype.
3920 * server.c (main): Return an error packet if
3921 read_inferior_memory() returns an error.
3922
a59d1c82
DJ
39232004-03-04 Daniel Jacobowitz <drow@mvista.com>
3924
3925 * Makefile.in (distclean): Remove config.h, stamp-h, and config.log.
3926 Unify with other clean targets.
3927
dc3f8883
DJ
39282004-02-29 Daniel Jacobowitz <drow@mvista.com>
3929
3930 * server.c (handle_v_cont): Call set_desired_inferior.
3931
89a208da
DJ
39322004-02-29 Daniel Jacobowitz <drow@mvista.com>
3933
3934 * remote-utils.c (prepare_resume_reply): Always supply "thread:".
3935
62ea82f5
DJ
39362004-02-29 Daniel Jacobowitz <drow@mvista.com>
3937
3938 * linux-low.c (linux_wait): Unblock async I/O.
3939 (linux_resume): Block and enable async I/O.
3940 * remote-utils.c (block_async_io, unblock_async_io): New functions.
3941 * server.h (block_async_io, unblock_async_io): Add prototypes.
3942
6910d122
DJ
39432004-02-29 Daniel Jacobowitz <drow@mvista.com>
3944
3945 * remote-utils.c (remote_open): Print a status notice after
3946 opening a TCP port.
3947 * server.c (attach_inferior): Print a status notice after
3948 attaching.
3949
39502004-02-29 Daniel Jacobowitz <drow@mvista.com>
d677d77d
DJ
3951
3952 * linux-arm-low.c (arm_get_pc): Print out stop PC in debug mode.
3953
c89dc5d4
DJ
39542004-02-26 Daniel Jacobowitz <drow@mvista.com>
3955
3956 * remote-utils.c (write_enn): Use "E01" instead of "ENN" for the
3957 error packet.
3958 * server.c, target.h: Update copyright years.
3959
4b8dad4a
RM
39602004-02-25 Roland McGrath <roland@redhat.com>
3961
3962 * target.h (struct target_ops): New member `read_auxv'.
3963 * server.c (handle_query): Handle qPart:auxv:read: query using that.
3964 * linux-low.c (linux_read_auxv): New function.
3965 (linux_target_ops): Initialize `read_auxv' member to that.
3966
d7446758
JB
39672004-02-17 Ulrich Weigand <Ulrich.Weigand@de.ibm.com>
3968
3969 Committed by Jim Blandy <jimb@redhat.com>.
3970
3971 * linux-s390-low.c (s390_num_regs): Update.
4b8dad4a 3972 (s390_regmap): Remove control registers. Use __s390x__ predefine
d7446758
JB
3973 instead of GPR_SIZE to distiguish s390 and s390x targets.
3974
5544ad89
DJ
39752004-01-31 Daniel Jacobowitz <drow@mvista.com>
3976
3977 * linux-low.c: Update copyright year.
3978 (check_removed_breakpoint): Clear pending_is_breakpoint.
3979 (linux_set_resume_request, linux_queue_one_thread)
3980 (resume_status_pending_p): New functions.
3981 (linux_continue_one_thread): Use process->resume.
3982 (linux_resume): Only resume threads if there are no pending events.
3983 * linux-low.h (struct process_info): Add resume request
3984 pointer.
3985
2a68b70e
DJ
39862004-01-30 Daniel Jacobowitz <drow@mvista.com>
3987
3988 * regcache.c (new_register_cache): Clear the allocated register
3989 buffer. Suggested by Atsushi Nemoto <anemo@mba.ocn.ne.jp>.
3990
64386c31
DJ
39912003-10-13 Daniel Jacobowitz <drow@mvista.com>
3992
3993 * linux-low.c (linux_resume): Take a struct thread_resume *
3994 argument.
3995 (linux_wait): Update call.
3996 (resume_ptr): New static variable.
3997 (linux_continue_one_thread): Renamed from
3998 linux_continue_one_process. Use resume_ptr.
3999 (linux_resume): Use linux_continue_one_thread.
4000 * server.c (handle_v_cont, handle_v_requests): New functions.
4001 (myresume): New function.
4002 (main): Handle 'v' case.
4003 * target.h (struct thread_resume): New type.
4004 (struct target_ops): Change argument of "resume" to struct
4005 thread_resume *.
4006 (myresume): Delete macro.
4007
c938e9b0
L
40082003-08-08 H.J. Lu <hongjiu.lu@intel.com>
4009
4010 * Makefile.in (install-only): Create dest dir. Support DESTDIR.
4011 (uninstall): Support DESTDIR.
4012
7f313d07
BC
4013Mon Jul 21 20:09:34 UTC 2003 Brendan Conoboy <blc@redhat.com>
4014
4015 * configure.srv: Add xscale*linux copy of arm*linux entry.
4016
3b2fc2ea
DJ
40172003-07-24 Daniel Jacobowitz <drow@mvista.com>
4018
4019 * linux-arm-low.c (arm_reinsert_addr): New function.
4020 (the_low_target): Add arm_reinsert_addr.
4021
1c0a559e
MK
40222003-07-08 Mark Kettenis <kettenis@gnu.org>
4023
4024 * mem-break.c: Remove whitespace at end of file.
4025
43d5792c
DJ
40262003-06-28 Daniel Jacobowitz <drow@mvista.com>
4027
4028 * configure.in: Check whether we need to prototype strerror.
4029 * server.h: Optionally prototype strerror.
4030 * gdbreplay.c (perror_with_name): Use strerror.
4031 * linux-low.c (linux_attach_lwp): Use strerror.
4032 * utils.c (perror_with_name): Use strerror.
4033 * config.in, configure: Regenerated.
4034
c8a86edf
DJ
40352003-06-28 Daniel Jacobowitz <drow@mvista.com>
4036
4037 * linux-sh-low.c (sh_regmap): Fix FP register offsets, reported by
4038 SUGIOKA Toshinobu <sugioka@itonet.co.jp>.
4039
73d37363
DJ
40402003-06-20 Daniel Jacobowitz <drow@mvista.com>
4041
4042 * Makefile.in (SFILES): Update.
4043 * low-hppabsd.c, low-lynx.c, low-nbsd.c, low-sim.c, low-sparc.c,
4044 low-sun3.c: Remove files.
4045
6ad8ae5c
DJ
40462003-06-17 Daniel Jacobowitz <drow@mvista.com>
4047
4048 * linux-low.c: Move comment to linux_thread_alive where it belonged.
4049 (linux_detach_one_process, linux_detach): New functions.
4050 (linux_target_ops): Add linux_detach.
4051 * server.c (main): Handle 'D' packet.
4052 * target.h (struct target_ops): Add "detach" member.
4053 (detach_inferior): Define.
4054
1581182a
MK
40552003-06-13 Mark Kettenis <kettenis@gnu.org>
4056
4057 From Kelley Cook <kelleycook@wideopenwest.com>:
4058 * configure.srv: Accept i[34567]86 variants.
4059
e5379b03
DJ
40602003-06-05 Daniel Jacobowitz <drow@mvista.com>
4061
4062 * linux-low.c (linux_wait_for_event): Correct comment typos.
4063 (linux_resume_one_process): Call check_removed_breakpoint.
4064 (linux_send_signal): New function.
4065 (linux_target_ops): Add linux_send_signal.
4066 * remote-utils.c (putpkt, input_interrupt): Use send_signal instead
4067 of kill.
4068 * target.h (struct target_ops): Add send_signal.
4069
2ff29de4
JB
40702003-05-29 Jim Blandy <jimb@redhat.com>
4071
4072 * linux-low.c (usr_store_inferior_registers): Transfer buf in
4073 PTRACE_XFER_TYPE-sized chunks, not int-sized chunks. Otherwise,
4074 if 'int' is smaller than PTRACE_XFER_TYPE, you end up throwing
4075 away part of the register's value.
4076
254787d4
DJ
40772003-03-26 Daniel Jacobowitz <drow@mvista.com>
4078
4079 * linux-low.c (linux_create_inferior): Use __SIGRTMIN.
4080 (linux_wait_for_event, linux_init_signals): Likewise.
4081
94e10508
DJ
40822003-03-17 Daniel Jacobowitz <drow@mvista.com>
4083
4084 * configure.in: Check for stdlib.h.
4085 * configure: Regenerated.
4086 * config.in: Regenerated.
4087
4c0711e0
DJ
40882003-01-04 Andreas Schwab <schwab@suse.de>
4089
4090 * linux-m68k-low.c (m68k_num_regs): Define to 29 instead of 31.
4091
ef66e766
AC
40922003-01-02 Andrew Cagney <ac131313@redhat.com>
4093
4094 * Makefile.in: Remove obsolete code.
4095
a1358604
DJ
40962002-11-20 Daniel Jacobowitz <drow@mvista.com>
4097
4098 * linux-s390-low.c (s390_regmap): Check GPR_SIZE instead of
4099 defined(PT_FPR0_HI).
4100
23ce3b1c
DJ
41012002-11-17 Stuart Hughes <seh@zee2.com>
4102
4103 * linux-arm-low.c (arm_num_regs): Increase.
4104 (arm_regmap): Include status register.
4105
41062002-11-17 Daniel Jacobowitz <drow@mvista.com>
4107
4108 * linux-low.c (register_addr): Remove incorrect -1 check.
4109
a9fa9f7d
DJ
41102002-08-29 Daniel Jacobowitz <drow@mvista.com>
4111
4112 * linux-low.c (linux_create_inferior): Call setpgid. Return
4113 the new PID.
4114 (unstopped_p, linux_signal_pid): Remove.
4115 (linux_target_ops): Remove linux_signal_pid.
4116 * remote-utils.c (putpkt, input_interrupt): Use signal_pid
4117 global instead of target method.
4118 * target.h (struct target_ops): Remove signal_pid. Update comment
4119 for create_inferior.
4120 * server.c (signal_pid): New variable.
4121 (create_inferior): Set signal_pid. Block SIGTTOU and SIGTTIN in
4b8dad4a 4122 gdbserver. Set the child to be the foreground process group.
a9fa9f7d
DJ
4123 (attach_inferior): Set signal_pid.
4124
17574093
DJ
41252002-08-23 Daniel Jacobowitz <drow@mvista.com>
4126
4127 * ChangeLog: New file, with entries from gdb/ChangeLog after GDB 5.2.
4128
41292002-08-20 Jim Blandy <jimb@redhat.com>
4130
4131 * Makefile.in (LDFLAGS): Allow the configure script to establish a
4132 default for this.
4133
41342002-08-01 Andrew Cagney <cagney@redhat.com>
4135
4136 * Makefile.in: Make chill references obsolete.
4137
41382002-07-24 Kevin Buettner <kevinb@redhat.com>
4139
4140 * configure.in (unistd.h): Add to AC_CHECK_HEADERS list.
4141 * configure: Regenerate.
4142 * config.in: Regenerate.
4143
41442002-07-09 David O'Brien <obrien@FreeBSD.org>
4145
4146 * gdbreplay.c (stdlib.h, unistd.h): Conditionaly include.
4147 (perror_with_name, remote_close, remote_open, expect, play): Static.
4148
41492002-07-04 Michal Ludvig <mludvig@suse.cz>
4150
4b8dad4a 4151 * linux-x86-64-low.c (x86_64_regmap): Make it an array of
17574093
DJ
4152 byte offsets instead of an array of indexes.
4153 (x86_64_store_gregset, x86_64_store_fpregset): Parameter made const.
4154
41552002-06-13 Daniel Jacobowitz <drow@mvista.com>
4156
4157 * regcache.c: Add comment.
4158
41592002-06-11 Daniel Jacobowitz <drow@mvista.com>
4160
4161 * thread-db.c: New file.
4162 * proc-service.c: New file.
4163 * acinclude.m4: New file.
4164 * Makefile.in: Add GDBSERVER_LIBS, gdb_proc_service_h,
4165 proc-service.o, and thread-db.o.
4166 (linux-low.o): Add USE_THREAD_DB.
4167 * acconfig.h: Add HAVE_PRGREGSET_T, HAVE_PRFPREGSET_T,
4168 HAVE_LWPID_T, HAVE_PSADDR_T, and PRFPREGSET_T_BROKEN.
4169 * aclocal.m4: Regenerated.
4170 * config.in: Regenerated.
4171 * configure: Regenerated.
4172 * configure.in: Check for proc_service.h, sys/procfs.h,
4173 thread_db.h, and linux/elf.h headrs.
4174 Check for lwpid_t, psaddr_t, prgregset_t, prfpregset_t, and
4175 PRFPREGSET_T_BROKEN. Introduce srv_thread_depfiles and USE_THREAD_DB.
4176 Check for -lthread_db and thread support.
4177 * configure.srv: Enable thread_db support for ARM, i386, MIPS,
4178 PowerPC, and SuperH.
4179 * i387-fp.c: Constify arguments.
4180 * i387-fp.h: Likewise.
4181 * inferiors.c: (struct thread_info): Renamed from
4182 `struct inferior_info'. Remove PID member. Use generic inferior
4183 list header. All uses updated.
4184 (inferiors, signal_pid): Removed.
4185 (all_threads): New variable.
4186 (get_thread): Define.
4187 (add_inferior_to_list): New function.
4188 (for_each_inferior): New function.
4189 (change_inferior_id): New function.
4190 (add_inferior): Removed.
4191 (remove_inferior): New function.
4192 (add_thread): New function.
4193 (free_one_thread): New function.
4194 (remove_thread): New function.
4195 (clear_inferiors): Use for_each_inferior and free_one_thread.
4196 (find_inferior): New function.
4197 (find_inferior_id): New function.
4198 (inferior_target_data): Update argument type.
4199 (set_inferior_target_data): Likewise.
4200 (inferior_regcache_data): Likewise.
4201 (set_inferior_regcache_data): Likewise.
4202 * linux-low.c (linux_bp_reinsert): Remove.
4203 (all_processes, stopping_threads, using_thrads)
4204 (struct pending_signals, debug_threads, pid_of): New.
4205 (inferior_pid): Replace with macro.
4206 (struct inferior_linux_data): Remove.
4207 (get_stop_pc, add_process): New functions.
4208 (linux_create_inferior): Restore SIGRTMIN+1 before calling exec.
4209 Use add_process and add_thread.
4210 (linux_attach_lwp): New function, based on old linux_attach. Use
4211 add_process and add_thread. Set stop_expected for new threads.
4212 (linux_attach): New function.
4213 (linux_kill_one_process): New function.
4214 (linux_kill): Kill all LWPs.
4215 (linux_thread_alive): Use find_inferior_id.
4216 (check_removed_breakpoints, status_pending_p): New functions.
4217 (linux_wait_for_process): Renamed from linux_wait_for_one_inferior.
4218 Update. Use WNOHANG. Wait for cloned processes also. Update process
4219 struct for the found process.
4220 (linux_wait_for_event): New function.
4221 (linux_wait): Use it. Support LWPs.
4222 (send_sigstop, wait_for_sigstop, stop_all_processes)
4223 (linux_resume_one_process, linux_continue_one_process): New functions.
4224 (linux_resume): Support LWPs.
4225 (REGISTER_RAW_SIZE): Remove.
4226 (fetch_register): Use register_size instead. Call supply_register.
4227 (usr_store_inferior_registers): Likewise. Call collect_register.
4228 Fix recursive case.
4229 (regsets_fetch_inferior_registers): Improve error message.
4230 (regsets_store_inferior_registers): Add debugging.
4231 (linux_look_up_symbols): Call thread_db_init if USE_THREAD_DB.
4232 (unstopped_p, linux_signal_pid): New functions.
4233 (linux_target_ops): Add linux_signal_pid.
4234 (linux_init_signals): New function.
4235 (initialize_low): Call it. Initialize using_threads.
4236 * regcache.c (inferior_regcache_data): Add valid
4237 flag.
4238 (get_regcache): Fetch registers lazily. Add fetch argument
4239 and update all callers.
4240 (regcache_invalidate_one, regcache_invalidate): New
4241 functions.
4242 (new_register_cache): Renamed from create_register_cache.
4243 Return the new regcache.
4244 (free_register_cache): Change argument to a void *.
4245 (registers_to_string, registers_from_string): Call get_regcache
4246 with fetch flag set.
4247 (register_data): Make static. Pass fetch flag to get_regcache.
4248 (supply_register): Call get_regcache with fetch flag clear.
4249 (collect_register): Call get_regcache with fetch flag set.
4250 (collect_register_as_string): New function.
4251 * regcache.h: Update.
4252 * remote-utils.c (putpkt): Flush after debug output and use
4253 stderr.
4254 Handle input interrupts while waiting for an ACK.
4255 (input_interrupt): Use signal_pid method.
4256 (getpkt): Flush after debug output and use stderr.
4257 (outreg): Use collect_register_as_string.
4258 (new_thread_notify, dead_thread_notify): New functions.
4259 (prepare_resume_reply): Check using_threads. Set thread_from_wait
4260 and general_thread.
4261 (look_up_one_symbol): Flush after debug output.
4262 * server.c (step_thread, server_waiting): New variables.
4263 (start_inferior): Don't use signal_pid. Update call to mywait.
4264 (attach_inferior): Update call to mywait.
4265 (handle_query): Handle qfThreadInfo and qsThreadInfo.
4266 (main): Don't fetch/store registers explicitly. Use
4267 set_desired_inferior. Support proposed ``Hs'' packet. Update
4268 calls to mywait.
4269 * server.h: Update.
4270 (struct inferior_list, struct_inferior_list_entry): New.
4271 * target.c (set_desired_inferior): New.
4272 (write_inferior_memory): Constify.
4273 (mywait): New function.
4274 * target.h: Update.
4275 (struct target_ops): New signal_pid method.
4276 (mywait): Removed macro, added prototype.
4277
4278 * linux-low.h (regset_func): Removed.
4279 (regset_fill_func, regset_store_func): New.
4280 (enum regset_type): New.
4281 (struct regset_info): Add type field. Use new operation types.
4282 (struct linux_target_ops): stop_pc renamed to get_pc.
4283 Add decr_pc_after_break and breakpoint_at.
4284 (get_process, get_thread_proess, get_process_thread)
4285 (strut process_info, all_processes, linux_attach_lwp)
4286 (thread_db_init): New.
4287
4288 * linux-arm-low.c (arm_get_pc, arm_set_pc,
4289 arm_breakpoint, arm_breakpoint_len, arm_breakpoint_at): New.
4290 (the_low_target): Add new members.
4291 * linux-i386-low.c (i386_store_gregset, i386_store_fpregset)
4292 (i386_store_fpxregset): Constify.
4293 (target_regsets): Add new kind identifier.
4294 (i386_get_pc): Renamed from i386_stop_pc. Simplify.
4295 (i386_set_pc): Add debugging.
4296 (i386_breakpoint_at): New function.
4297 (the_low_target): Add new members.
4298 * linux-mips-low.c (mips_get_pc, mips_set_pc)
4299 (mips_breakpoint, mips_breakpoint_len, mips_reinsert_addr)
4300 (mips_breakpoint_at): New.
4301 (the_low_target): Add new members.
4302 * linux-ppc-low.c (ppc_get_pc, ppc_set_pc)
4303 (ppc_breakpoint, ppc_breakpoint_len, ppc_breakpoint_at): New.
4304 (the_low_target): Add new members.
4305 * linux-sh-low.c (sh_get_pc, sh_set_pc)
4306 (sh_breakpoint, sh_breakpoint_len, sh_breakpoint_at): New.
4307 (the_low_target): Add new members.
4308 * linux-x86-64-low.c (target_regsets): Add new kind
4309 identifier.
4310
43112002-05-15 Daniel Jacobowitz <drow@mvista.com>
4312
4313 From Martin Pool <mbp@samba.org>:
4314 * server.c (gdbserver_usage): New function.
4315 (main): Call it.
4316
43172002-05-14 Daniel Jacobowitz <drow@mvista.com>
4318
4319 * mem-break.c (reinsert_breakpoint_by_bp): Correct typo
4320 stop_at -> stop_pc.
4321
43222002-05-04 Andrew Cagney <ac131313@redhat.com>
4323
4324 * Makefile.in: Remove obsolete code.
4325
43262002-04-24 Michal Ludvig <mludvig@suse.cz>
4327
4328 * linux-low.c (regsets_fetch_inferior_registers),
4329 (regsets_store_inferior_registers): Removed cast to int from
4330 ptrace() calls.
4331 * regcache.h: Added declaration of struct inferior_info.
4332
43332002-04-20 Daniel Jacobowitz <drow@mvista.com>
4334
4335 * inferiors.c (struct inferior_info): Add regcache_data.
4336 (add_inferior): Call create_register_cache.
4337 (clear_inferiors): Call free_register_cache.
4338 (inferior_regcache_data, set_inferior_regcache_data): New functions.
4339 * regcache.c (struct inferior_regcache_data): New.
4340 (registers): Remove.
4341 (get_regcache): New function.
4342 (create_register_cache, free_register_cache): New functions.
4343 (set_register_cache): Don't initialize the register cache here.
4344 (registers_to_string, registers_from_string, register_data): Call
4345 get_regcache.
4346 * regcache.h: Add prototypes.
4347 * server.h: Likewise.
4348
43492002-04-20 Daniel Jacobowitz <drow@mvista.com>
4350
4351 * mem-break.c: New file.
4352 * mem-break.h: New file.
4353 * Makefile.in: Add mem-break.o rule; update server.h
4354 dependencies.
4355 * inferiors.c (struct inferior_info): Add target_data
4356 member.
4357 (clear_inferiors): Free target_data member if set.
4358 (inferior_target_data, set_inferior_target_data): New functions.
4359 * linux-i386-low.c (i386_breakpoint, i386_breakpoint_len)
4360 (i386_stop_pc, i386_set_pc): New. Add to the_low_target.
4361 * linux-low.c (linux_bp_reinsert): New variable.
4362 (struct inferior_linux_data): New.
4363 (linux_create_inferior): Use set_inferior_target_data.
4364 (linux_attach): Likewise. Call add_inferior.
4365 (linux_wait_for_one_inferior): New function.
4366 (linux_wait): Call it.
4367 (linux_write_memory): Add const.
4368 (initialize_low): Call set_breakpoint_data.
4369 * linux-low.h (struct linux_target_ops): Add breakpoint
4370 handling members.
4371 * server.c (attach_inferior): Remove extra add_inferior
4372 call.
4373 * server.h: Include mem-break.h. Update inferior.c
4374 prototypes.
4375 * target.c (read_inferior_memory)
4376 (write_inferior_memory): New functions.
4377 * target.h (read_inferior_memory)
4378 (write_inferior_memory): Change macros to prototypes.
4379 (struct target_ops): Update comments. Add const to write_memory
4380 definition.
4381
43822002-04-11 Daniel Jacobowitz <drow@mvista.com>
4383
4384 * linux-low.c (usr_store_inferior_registers): Support
4385 registers which are allowed to fail to store.
4386 * linux-low.h (linux_target_ops): Likewise.
4387 * linux-ppc-low.c (ppc_regmap): Support FPSCR.
4388 (ppc_cannot_store_register): FPSCR may not be storable.
4389
43902002-04-09 Daniel Jacobowitz <drow@mvista.com>
4391
4392 * server.h: Include <string.h> if HAVE_STRING_H.
4393 * ChangeLog: Correct paths in last ChangeLog entry.
4394
43952002-04-09 Daniel Jacobowitz <drow@mvista.com>
4396
4397 * linux-low.h: Remove obsolete prototypes.
4398 (struct linux_target_ops): New.
4399 (extern the_low_target): New.
4400 * linux-low.c (num_regs, regmap): Remove declarations.
4401 (register_addr): Use the_low_target explicitly.
4402 (fetch_register): Likewise.
4403 (usr_fetch_inferior_registers): Likewise.
4404 (usr_store_inferior_registers): Likewise.
4405 * linux-arm-low.c (num_regs): Remove.
4406 (arm_num_regs): Define.
4407 (arm_regmap): Renamed from regmap, made static.
4408 (arm_cannot_fetch_register): Renamed from cannot_fetch_register,
4409 made static.
4410 (arm_cannot_store_register): Renamed from cannot_store_register,
4411 made static.
4412 (the_low_target): New.
4413 * linux-i386-low.c (num_regs): Remove.
4414 (i386_num_regs): Define.
4415 (i386_regmap): Renamed from regmap, made static.
4416 (i386_cannot_fetch_register): Renamed from cannot_fetch_register,
4417 made static.
4418 (i386_cannot_store_register): Renamed from cannot_store_register,
4419 made static.
4420 (the_low_target): New.
4421 * linux-ia64-low.c (num_regs): Remove.
4422 (ia64_num_regs): Define.
4423 (ia64_regmap): Renamed from regmap, made static.
4424 (ia64_cannot_fetch_register): Renamed from cannot_fetch_register,
4425 made static.
4426 (ia64_cannot_store_register): Renamed from cannot_store_register,
4427 made static.
4428 (the_low_target): New.
4429 * linux-m68k-low.c (num_regs): Remove.
4430 (m68k_num_regs): Define.
4431 (m68k_regmap): Renamed from regmap, made static.
4432 (m68k_cannot_fetch_register): Renamed from cannot_fetch_register,
4433 made static.
4434 (m68k_cannot_store_register): Renamed from cannot_store_register,
4435 made static.
4436 (the_low_target): New.
4437 * linux-mips-low.c (num_regs): Remove.
4438 (mips_num_regs): Define.
4439 (mips_regmap): Renamed from regmap, made static.
4440 (mips_cannot_fetch_register): Renamed from cannot_fetch_register,
4441 made static.
4442 (mips_cannot_store_register): Renamed from cannot_store_register,
4443 made static.
4444 (the_low_target): New.
4445 * linux-ppc-low.c (num_regs): Remove.
4446 (ppc_num_regs): Define.
4447 (ppc_regmap): Renamed from regmap, made static.
4448 (ppc_cannot_fetch_register): Renamed from cannot_fetch_register,
4449 made static.
4450 (ppc_cannot_store_register): Renamed from cannot_store_register,
4451 made static.
4452 (the_low_target): New.
4453 * linux-s390-low.c (num_regs): Remove.
4454 (s390_num_regs): Define.
4455 (s390_regmap): Renamed from regmap, made static.
4456 (s390_cannot_fetch_register): Renamed from cannot_fetch_register,
4457 made static.
4458 (s390_cannot_store_register): Renamed from cannot_store_register,
4459 made static.
4460 (the_low_target): New.
4461 * linux-sh-low.c (num_regs): Remove.
4462 (sh_num_regs): Define.
4463 (sh_regmap): Renamed from regmap, made static.
4464 (sh_cannot_fetch_register): Renamed from cannot_fetch_register,
4465 made static.
4466 (sh_cannot_store_register): Renamed from cannot_store_register,
4467 made static.
4468 (the_low_target): New.
4469 * linux-x86-64-low.c (x86_64_regmap): Renamed from regmap.
4470 (the_low_target): New.
4471
44722002-04-09 Daniel Jacobowitz <drow@mvista.com>
4473
4474 * Makefile.in: Add stamp-h target.
4475 * configure.in: Create stamp-h.
4476 * configure: Regenerated.
4477
44782002-04-09 Daniel Jacobowitz <drow@mvista.com>
4479
4480 * inferiors.c: New file.
4481 * target.c: New file.
4482 * target.h: New file.
4483 * Makefile.in: Add target.o and inferiors.o. Update
4484 dependencies.
4485 * linux-low.c (inferior_pid): New static variable,
4486 moved from server.c.
4487 (linux_create_inferior): Renamed from create_inferior.
4488 Call add_inferior. Return 0 on success instead of a PID.
4489 (linux_attach): Renamed from myattach.
4490 (linux_kill): Renamed from kill_inferior. Call clear_inferiors ().
4491 (linux_thread_alive): Renamed from mythread_alive.
4492 (linux_wait): Renamed from mywait. Call clear_inferiors () if the
4493 child dies.
4494 (linux_resume): Renamed from myresume. Add missing ``return 0''.
4495 (regsets_store_inferior_registers): Correct error message.
4496 Add missing ``return 0''.
4497 (linux_fetch_registers): Renamed from fetch_inferior_registers.
4498 (linux_store_registers): Renamed from store_inferior_registers.
4499 (linux_read_memory): Renamed from read_inferior_memory.
4500 (linux_write_memory): Renamed from write_inferior_memory.
4501 (linux_target_ops): New structure.
4502 (initialize_low): Call set_target_ops ().
4503 * remote-utils.c (unhexify): New function.
4504 (hexify): New function.
4505 (input_interrupt): Send signals to ``signal_pid''.
4506 * server.c (inferior_pid): Remove.
4507 (start_inferior): Update create_inferior call.
4508 (attach_inferior): Call add_inferior.
4509 (handle_query): New function.
4510 (main): Call handle_query for `q' packets.
4511 * server.h: Include "target.h". Remove obsolete prototypes.
4512 Add prototypes for "inferiors.c", "target.c", hexify, and unhexify.
4513
45142002-04-09 Daniel Jacobowitz <drow@mvista.com>
4515
4516 * Makefile.in: Add WARN_CFLAGS. Update configury
4517 dependencies.
4518 * configure.in: Check for <string.h>
4519 * configure: Regenerate.
4520 * config.in: Regenerate.
4521 * gdbreplay.c: Include needed system headers.
4522 (remote_open): Remove strchr prototype.
4523 * linux-low.h: Correct #ifdef to HAVE_LINUX_USRREGS.
4524 * regcache.c (supply_register): Change buf argument to const void *.
4525 (supply_register_by_name): Likewise.
4526 (collect_register): Change buf argument to void *.
4527 (collect_register_by_name): Likewise.
4528 * regcache.h: Add missing prototypes.
4529 * remote-utils.c: Include <arpa/inet.h> for inet_ntoa.
4530 * server.c (handle_query): New function.
4531 (attached): New static variable, moved out of main.
4532 (main): Quiet longjmp clobber warnings.
4533 * server.h: Add ATTR_NORETURN and ATTR_FORMAT. Update prototypes.
4534 * utils.c (error): Remove NORETURN.
4535 (fatal): Likewise.
This page took 0.74047 seconds and 4 git commands to generate.