Checkin gdb.arch/i386-avx.exp.
[deliverable/binutils-gdb.git] / gdb / gdbserver / ChangeLog
CommitLineData
fc7238bb
PA
12010-04-03 Pedro Alves <pedro@codesourcery.com>
2
3 * inferiors.c (add_thread): Set last_status kind to
4 TARGET_WAITKIND_IGNORE.
5 * linux-low.c (cancel_breakpoint): Remove unnecessary regcache
6 fetch. Use ptid_of. Avoid unnecessary get_lwp_thread calls.
7 (linux_wait_1): Move `thread' local definition to block that uses
8 it. Don't NULL initialize `event_child'.
9 (linux_resume_one_thread): Avoid unnecessary get_lwp_thread calls.
10 Alway set the thread's last_status to TARGET_WAITKIND_IGNORE.
11 * linux-x86-low.c (x86_breakpoint_at): Read raw memory.
12
bdabb078
PA
132010-04-01 Pedro Alves <pedro@codesourcery.com>
14
15 * linux-low.c (get_stop_pc): Don't adjust the PC if stopped with
16 an extended waitstatus, or by a watchpoint.
17 (cancel_breakpoints_callback): Don't cancel a breakpoint if the
18 thread was stepping or has been stopped by a watchpoint.
19
d3bbe7a0
PA
202010-04-01 Pedro Alves <pedro@codesourcery.com>
21
22 * mem-break.c (struct raw_breakpoint): New field shlib_disabled.
23 (set_gdb_breakpoint_at): If GDB is inserting a breakpoint on top
24 of another, then delete the previous, and validate all
25 breakpoints.
26 (validate_inserted_breakpoint): New.
27 (delete_disabled_breakpoints): New.
28 (validate_breakpoints): New.
29 (check_mem_read): Validate breakpoints before trusting their
30 shadow. Delete disabled breakpoints.
31 (check_mem_write): Validate breakpoints before trusting they
32 should be inserted. Delete disabled breakpoints.
33 * mem-break.h (validate_breakpoints):
34 * server.c (handle_query): Validate breakpoints when we see a
35 qSymbol query.
36
8b07ae33
PA
372010-04-01 Pedro Alves <pedro@codesourcery.com>
38
39 * linux-low.c (linux_wait_1): Avoid setting need_step_over is
40 there's a GDB breakpoint at stop_pc. Always report a trap to GDB
41 if we could tell there's a GDB breakpoint at stop_pc.
42 (need_step_over_p): Don't do a step over if we find a GDB
43 breakpoint at the resume PC.
44
45 * mem-break.c (struct raw_breakpoint): New.
46 (enum bkpt_type): New type `gdb_breakpoint'.
47 (struct breakpoint): Delete the `PC', `old_data' and `inserted'
48 fields. New field `raw'.
49 (find_raw_breakpoint_at): New.
50 (set_raw_breakpoint_at): Handle refcounting. Create a raw
51 breakpoint instead.
52 (set_breakpoint_at): Adjust.
53 (delete_raw_breakpoint): New.
54 (release_breakpoint): New.
55 (delete_breakpoint): Rename to...
56 (delete_breakpoint_1): ... this. Add proc parameter. Use
57 release_breakpoint. Return ENOENT.
58 (delete_breakpoint): Reimplement.
59 (find_breakpoint_at): Delete.
60 (find_gdb_breakpoint_at): New.
61 (delete_breakpoint_at): Delete.
62 (set_gdb_breakpoint_at): New.
63 (delete_gdb_breakpoint_at): New.
64 (gdb_breakpoint_here): New.
65 (set_reinsert_breakpoint): Use release_breakpoint.
66 (uninsert_breakpoint): Rename to ...
67 (uninsert_raw_breakpoint): ... this.
68 (uninsert_breakpoints_at): Adjust to handle raw breakpoints.
69 (reinsert_raw_breakpoint): Change parameter type to
70 raw_breakpoint.
71 (reinsert_breakpoints_at): Adjust to handle raw breakpoints
72 instead.
73 (check_breakpoints): Adjust. Use release_breakpoint.
74 (breakpoint_here): Rewrite using find_raw_breakpoint_at.
75 (breakpoint_inserted_here): Ditto.
76 (check_mem_read): Adjust to iterate over raw breakpoints instead.
77 Don't trust the breakpoint's shadow if it is not inserted.
78 (check_mem_write): Adjust to iterate over raw breakpoints instead.
79 (delete_all_breakpoints): Adjust.
80 (free_all_breakpoints): Mark all breakpoints as uninserted, and
81 use delete_breakpoint_1.
82
83 * mem-break.h (breakpoints_supported): Delete declaration.
84 (set_gdb_breakpoint_at): Declare.
85 (gdb_breakpoint_here): Declare.
86 (delete_breakpoint_at): Delete.
87 (delete_gdb_breakpoint_at): Declare.
88
89 * server.h (struct raw_breakpoint): Forward declare.
90 (struct process_info): New field `raw_breakpoints'.
91
92 * linux-x86-low.c (x86_insert_point, x86_remote_point): Handle Z0
93 breakpoints.
94
6bf5e0ba
PA
952010-03-24 Pedro Alves <pedro@codesourcery.com>
96
97 * linux-low.c (status_pending_p_callback): Fix comment.
98 (linux_wait_for_event_1): Move most of the internal breakpoint
99 handling from here...
100 (linux_wait_1): ... to here.
101 (count_events_callback): New.
102 (select_singlestep_lwp_callback): New.
103 (select_event_lwp_callback): New.
104 (cancel_breakpoints_callback): New.
105 (select_event_lwp): New.
106 (linux_wait_1): Simplify internal breakpoint handling. Give equal
107 priority to all LWPs that have had events that should be reported
108 to the client. Cancel breakpoints when about to reporting the
109 event to the client, not while stopping lwps. No longer cancel
110 finished single-steps here.
111 (cancel_finished_single_step): Delete.
112 (cancel_finished_single_steps): Delete.
113
414a389f
PA
1142010-03-24 Pedro Alves <pedro@codesourcery.com>
115
116 * mem-break.c (enum bkpt_type): New.
117 (struct breakpoint): New field `type'.
118 (set_breakpoint_at): Change return type to struct breakpoint
119 pointer. Set type to `other_breakpoint' by default.
120 (delete_breakpoint): Rewrite, supporting more than one breakpoint
121 in the breakpoint list.
122 (delete_reinsert_breakpoints): Only delete reinsert breakpoints.
123 (reinsert_breakpoint): Rename to ...
124 (reinsert_raw_breakpoint): ... this.
125 (reinsert_breakpoints_at): Adjust.
126 * mem-break.h (struct breakpoint): Declare.
127 (set_breakpoint_at): Change return type to struct breakpoint
128 pointer.
129
2280c721
PA
1302010-03-24 Pedro Alves <pedro@codesourcery.com>
131
132 * server.c (handle_query): Assign, not compare.
133
d50171e4
PA
1342010-03-24 Pedro Alves <pedro@codesourcery.com>
135
136 Teach linux gdbserver to step-over-breakpoints.
137
138 * linux-low.c (can_hardware_single_step): New.
139 (supports_breakpoints): New.
140 (handle_extended_wait): If stopping threads, read the stop pc of
141 the new cloned LWP.
142 (get_pc): New.
143 (get_stop_pc): Add `lwp' parameter. Handle it. Bail out if the
144 low target doesn't support retrieving the PC.
145 (add_lwp): Set last_resume_kind to resume_continue.
146 (linux_attach_lwp_1): Adjust comments. Always set stop_expected.
147 (linux_attach): Don't clear stop_expected. Set the lwp's
148 last_resume_kind to resume_stop.
149 (linux_detach_one_lwp): Don't check for removed breakpoints.
150 (check_removed_breakpoint): Delete.
151 (status_pending_p): Rename to ...
152 (status_pending_p_callback): ... this. Don't check for removed
153 breakpoints. Don't consider threads that are stopped from GDB's
154 perspective.
155 (linux_wait_for_lwp): Always read the stop_pc here.
156 (cancel_breakpoint): New.
157 (step_over_bkpt): New global.
158 (linux_wait_for_event_1): Implement stepping over breakpoints.
159 (gdb_wants_lwp_stopped): New.
160 (gdb_wants_all_stopped): New.
161 (linux_wait_1): Tag threads as gdb-wants-stopped. Cancel finished
162 single-step traps here. Store the thread's last reported target
163 wait status.
164 (send_sigstop): Don't clear stop_expected. Always set it,
165 instead.
166 (mark_lwp_dead): Remove reference to pending_is_breakpoint.
167 (cancel_finished_single_step): New.
168 (cancel_finished_single_steps): New.
169 (wait_for_sigstop): Don't cancel finished single-step traps here.
170 (linux_resume_one_lwp): Don't check for removed breakpoints.
171 Don't set `step' on non-hardware step archs.
172 (linux_set_resume_request): Ignore resume_stop requests if already
173 stopping or stopped. Set the lwp's last_resume_kind.
174 (resume_status_pending_p): Don't check for removed breakpoints.
175 (need_step_over_p): New.
176 (start_step_over): New.
177 (finish_step_over): New.
178 (linux_resume_one_thread): Always queue a sigstop for resume_stop
179 requests. Clear the thread's last reported target waitstatus.
180 Don't use the `suspended' flag. Don't consider pending breakpoints.
181 (linux_resume): Start a step-over if necessary.
182 (proceed_one_lwp): New.
183 (proceed_all_lwps): New.
184 (unstop_all_lwps): New.
185 * linux-low.h (struct lwp_info): Rewrite comment for the
186 `suspended' flag. Add the `stop_pc' field. Delete the
187 `pending_stop_pc' field. Tweak the `stepping' flag's comment.
188 Add `'last_resume_kind' and `need_step_over' fields.
189 * inferiors.c (struct thread_info): Delete, moved elsewhere.
190 * mem-break.c (struct breakpoint): Delete `reinserting' flag.
191 Delete `breakpoint_to_reinsert' field. New flag `inserted'.
192 (set_raw_breakpoint_at): New.
193 (set_breakpoint_at): Rewrite to use it.
194 (reinsert_breakpoint_handler): Delete.
195 (set_reinsert_breakpoint): New.
196 (reinsert_breakpoint_by_bp): Delete.
197 (delete_reinsert_breakpoints): New.
198 (uninsert_breakpoint): Rewrite.
199 (uninsert_breakpoints_at): New.
200 (reinsert_breakpoint): Rewrite.
201 (reinsert_breakpoints_at): New.
202 (check_breakpoints): Rewrite.
203 (breakpoint_here): New.
204 (breakpoint_inserted_here): New.
205 (check_mem_read): Adjust.
206 * mem-break.h (breakpoints_supported, breakpoint_here)
207 (breakpoint_inserted_here, set_reinsert_breakpoint): Declare.
208 (reinsert_breakpoint_by_bp): Delete declaration.
209 (delete_reinsert_breakpoints): Declare.
210 (reinsert_breakpoint): Delete declaration.
211 (reinsert_breakpoints_at): Declare.
212 (uninsert_breakpoint): Delete declaration.
213 (uninsert_breakpoints_at): Declare.
214 (check_breakpoints): Adjust prototype.
215 * server.h: Adjust include order.
216 (struct thread_info): Declare here. Add a `last_status' field.
217
30ba68cb
MS
2182010-03-23 Michael Snyder <msnyder@vmware.com>
219
220 * server.c (crc32): New function.
221 (handle_query): Add handling for 'qCRC:' request.
222
b9a881c2
PA
2232010-03-23 Pedro Alves <pedro@codesourcery.com>
224
225 * linux-x86-low.c (x86_linux_prepare_to_resume): Clear DR6 if the
226 lwp had been stopped by a watchpoint.
227
e92d13d5
PA
2282010-03-16 Pedro Alves <pedro@codesourcery.com>
229
230 * server.h (internal_error): Declare.
231 (gdb_assert, ASSERT_FUNCTION, gdb_assert_fail): Define.
232 * utils.c (internal_error): New function.
233
64daa791
AS
2342010-03-15 Andreas Schwab <schwab@redhat.com>
235
236 * configure.srv: Fix typo setting srv_regobj.
237
f52cd8cd
PA
2382010-03-15 Pedro Alves <pedro@codesourcery.com>
239
240 * linux-low.c (fetch_register): Avoid passing a non string literal
241 format to `error'.
242 (usr_store_inferior_registers): Ditto.
243
93ae6fdc
PA
2442010-03-14 Pedro Alves <pedro@codesourcery.com>
245
246 * linux-low.c (linux_write_memory): Bail out early if peeking
247 memory failed.
248
c3adc08c
PA
2492010-03-14 Pedro Alves <pedro@codesourcery.com>
250
251 * linux-low.h (struct lwp_info): New fields
252 `stopped_by_watchpoint' and `stopped_data_address'.
253 * linux-low.c (linux_wait_for_lwp): Check for watchpoint triggers
254 here, and cache them in the lwp object.
255 (wait_for_sigstop): Check stopped_by_watchpoint lwp field
256 directly.
257 (linux_resume_one_lwp): Clear the lwp's stopped_by_watchpoint
258 field.
259 (linux_stopped_by_watchpoint): Rewrite.
260 (linux_stopped_data_address): Rewrite.
261
bce522a2
PA
2622010-03-06 Simo Melenius <simo.melenius@iki.fi>
263
264 * linux-low.c (linux_wait_for_lwp): Fetch the regcache after
265 switching the current inferior, not before.
266
90884b2b
L
2672010-03-01 H.J. Lu <hongjiu.lu@intel.com>
268
269 * Makefile.in (clean): Replace reg-i386.c, reg-x86-64.c,
270 reg-i386-linux.c and reg-x86-64-linux.c with i386.c, amd64.c,
271 i386-linux.c and amd64-linux.c.
272 (reg-i386.o): Removed.
273 (reg-i386.c): Likewise.
274 (reg-i386-linux.o): Likewise.
275 (reg-i386-linux.c): Likewise.
276 (reg-x86-64.o): Likewise.
277 (reg-x86-64.c): Likewise.
278 (reg-x86-64-linux.o): Likewise.
279 (reg-x86-64-linux.c): Likewise.
280 (i386.o): New.
281 (i386.c): Likewise.
282 (i386-linux.o): Likewise.
283 (i386-linux.c): Likewise.
284 (amd64.o): Likewise.
285 (amd64.c): Likewise.
286 (amd64-linux.o): Likewise.
287 (amd64-linux.c): Likewise.
288
289 * configure.srv (srv_i386_regobj): New.
290 (srv_i386_linux_regobj): Likewise.
291 (srv_amd64_regobj): Likewise.
292 (srv_amd64_linux_regobj): Likewise.
293 (srv_i386_32bit_xmlfiles): Likewise.
294 (srv_i386_64bit_xmlfiles): Likewise.
295 (srv_i386_xmlfiles): Likewise.
296 (srv_amd64_xmlfiles): Likewise.
297 (srv_i386_linux_xmlfiles): Likewise.
298 (srv_amd64_linux_xmlfiles): Likewise.
299 (i[34567]86-*-cygwin*): Set srv_regobj to $srv_i386_regobj. Set
300 srv_xmlfiles to $srv_i386_xmlfiles.
301 (i[34567]86-*-mingw32ce*): Likewise.
302 (i[34567]86-*-mingw*): Likewise.
303 (i[34567]86-*-nto*): Likewise.
304 (i[34567]86-*-linux*): Set srv_regobj to $srv_i386_linux_regobj
305 and $srv_amd64_linux_regobj. Set srv_xmlfiles to
306 $srv_i386_linux_xmlfiles and $srv_amd64_linux_xmlfiles.
307 (x86_64-*-linux*): Likewise.
308
309 * linux-x86-low.c (init_registers_x86_64_linux): Removed.
310 (init_registers_amd64_linux): New.
311 (x86_arch_setup): Replace init_registers_x86_64_linux with
312 init_registers_amd64_linux.
313
193f13e6
MK
3142010-02-23 Maxim Kuvyrkov <maxim@codesourcery.com>
315
316 * configure.ac: Check for libdl. If it is not available link against
317 static libthread_db.
318 * configure: Regenerate.
319
85d721b8
PA
3202010-02-22 Pedro Alves <pedro@codesourcery.com>
321
322 PR9605
323
324 * i386-low.c (i386_length_and_rw_bits): Throw a fatal error if
325 handing a read watchpoint.
326 (i386_low_insert_watchpoint): Read watchpoints aren't supported.
327
6076632b
DE
3282010-02-12 Doug Evans <dje@google.com>
329
330 * linux-low.c (linux_supports_tracefork_flag): Document.
331 (linux_look_up_symbols): Add comment.
332
3327ccf7
L
3332010-02-03 H.J. Lu <hongjiu.lu@intel.com>
334
335 * regcache.c (supply_register): Clear regcache if buf is NULL.
336
0718675c 3372010-02-02 Nicolas Roche <roche@sourceware.org>
3327ccf7 338 Joel Brobecker <brobecker@adacore.com>
0718675c
JB
339
340 * inferiors.c (find_inferior): Add function documentation.
341 (unloaded_dll): Handle the case where the unloaded dll has not
342 been previously registered in the dll list.
343
177321bd
DJ
3442010-02-01 Daniel Jacobowitz <dan@codesourcery.com>
345
346 * linux-arm-low.c (thumb_breakpoint_len): Delete.
347 (thumb2_breakpoint): New.
348 (arm_breakpoint_at): Check for Thumb-2 breakpoints.
349
2b009048
DJ
3502010-01-29 Daniel Jacobowitz <dan@codesourcery.com>
351
352 * linux-low.c (get_stop_pc): Check for SIGTRAP.
353 (linux_wait_for_event_1): Handle SIGILL and SIGSEGV as possible
354 breakpoints.
355
3be029c7
PA
3562010-01-21 Pedro Alves <pedro@codesourcery.com>
357
358 * linux-ppc-low.c (ppc_arch_setup): Adjust to regcache changes.
359
18f5de3b
JK
3602010-01-21 Jan Kratochvil <jan.kratochvil@redhat.com>
361
362 * linux-s390-low.c (s390_collect_ptrace_register)
363 (s390_supply_ptrace_register): Adjust it for the new regcache parameter.
364
3743bb4f
DE
3652010-01-21 Doug Evans <dje@google.com>
366
14ce3065
DE
367 * linux-low.c (PTRACE_ARG3_TYPE): Change from long to void*.
368 (PTRACE_ARG4_TYPE): New macro.
369 (handle_extended_wait): Cast ptrace arg4 to PTRACE_ARG4_TYPE.
370 (linux_wait_for_event_1, linux_resume_one_lwp): Ditto.
371 (fetch_register): Cast to uintptr_t before casting to PTRACE_ARG3_TYPE.
372 (usr_store_inferior_registers): Ditto.
373 (linux_read_memory, linux_write_memory): Ditto.
374 (linux_test_for_tracefork): Ditto.
375
3743bb4f
DE
376 * linux-arm-low.c: Remove redundant include of gdb_proc_service.h.
377 Only include elf.h if gdb_proc_service.h didn't include linux/elf.h.
378
8b315be5
PA
3792010-01-21 Pedro Alves <pedro@codesourcery.com>
380
381 * proc-service.c (ps_lgetregs): Don't refetch registers from the
382 target.
383
85492558
PA
3842010-01-21 Pedro Alves <pedro@codesourcery.com>
385
386 * spu-low.c (spu_fetch_registers, spu_store_registers): Change
387 prototype to take a regcache. Adjust.
388
442ea881
PA
3892010-01-20 Pedro Alves <pedro@codesourcery.com>
390
391 * regcache.h (struct thread_info): Forward declare.
392 (struct regcache): New.
393 (new_register_cache): Adjust prototype.
394 (get_thread_regcache): Declare.
395 (free_register_cache): Adjust prototype.
396 (registers_to_string, registers_from_string): Ditto.
397 (supply_register, supply_register_by_name, collect_register)
398 (collect_register_as_string, collect_register_by_name): Ditto.
399 * regcache.c (struct inferior_regcache_data): Delete.
400 (get_regcache): Rename to ...
401 (get_thread_regcache): ... this. Adjust. Switch inferior before
402 fetching registers.
403 (regcache_invalidate_one): Adjust.
404 (regcache_invalidate): Fix prototype.
405 (new_register_cache): Return the new register cache.
406 (free_register_cache): Change prototype.
407 (realloc_register_cache): Adjust.
408 (registers_to_string): Change prototype to take a regcache. Adjust.
409 (registers_from_string): Ditto.
410 (register_data): Ditto.
411 (supply_register): Ditto.
412 (supply_register_by_name): Ditto.
413 (collect_register): Ditto.
414 (collect_register_as_string): Ditto.
415 (collect_register_by_name): Ditto.
416 * server.c (process_serial_event): Adjust.
417 * linux-low.h (regset_fill_func, regset_store_func): Change
418 prototype.
419 (get_pc, set_pc, collect_ptrace_register, supply_ptrace_register):
420 Change prototype.
421 * linux-low.c (get_stop_pc): Adjust.
422 (check_removed_breakpoint): Adjust.
423 (linux_wait_for_event): Adjust.
424 (linux_resume_one_lwp): Adjust.
425 (fetch_register): Add regcache parameter. Adjust.
426 (usr_store_inferior_registers): Ditto.
427 (regsets_fetch_inferior_registers): Ditto.
428 (regsets_store_inferior_registers): Ditto.
429 (linux_fetch_registers, linux_store_registers): Ditto.
430 * i387-fp.c (i387_cache_to_fsave): Change prototype to take a
431 regcache. Adjust.
432 (i387_fsave_to_cache, i387_cache_to_fxsave, i387_fxsave_to_cache): Ditto.
433 * i387-fp.h (i387_cache_to_fsave, i387_fsave_to_cache): Change
434 prototype to take a regcache.
435 (i387_cache_to_fxsave, i387_fxsave_to_cache): Ditto.
436 * remote-utils.c (convert_ascii_to_int, outreg)
437 (prepare_resume_reply): Change prototype to take a regcache.
438 Adjust.
439 * target.h (struct target_ops) <fetch_registers, store_registers>:
440 Change prototype to take a regcache.
441 (fetch_inferior_registers, store_inferior_registers): Change
442 prototype to take a regcache. Adjust.
443 * proc-service.c (ps_lgetregs): Adjust.
444 * linux-x86-low.c (x86_fill_gregset, x86_store_gregset)
445 (x86_fill_fpregset, x86_store_fpregset, x86_fill_fpxregset)
446 (x86_store_fpxregset, x86_get_pc, x86_set_pc): Change prototype to
447 take a regcache. Adjust.
448 * linux-arm-low.c (arm_fill_gregset, arm_store_gregset)
449 (arm_fill_wmmxregset, arm_store_wmmxregset, arm_fill_vfpregset)
450 (arm_store_vfpregset, arm_get_pc, arm_set_pc):
451 (arm_breakpoint_at): Change prototype to take a regcache. Adjust.
452 * linux-cris-low.c (cris_get_pc, cris_set_pc)
453 (cris_cannot_fetch_register):
454 (cris_breakpoint_at): Change prototype to take a regcache.
455 Adjust.
456 * linux-crisv32-low.c (cris_get_pc, cris_set_pc,
457 cris_reinsert_addr, cris_write_data_breakpoint): Change prototype
458 to take a regcache. Adjust.
459 (cris_breakpoint_at, cris_insert_point, cris_remove_point):
460 Adjust.
461 * linux-m32r-low.c (m32r_get_pc, m32r_set_pc): Change prototype to
462 take a regcache. Adjust.
463 * linux-m68k-low.c (m68k_fill_gregset, m68k_store_gregset)
464 (m68k_fill_fpregset, m68k_store_fpregset, m68k_get_pc,
465 (m68k_set_pc): Change prototype to take a regcache. Adjust.
466 * linux-mips-low.c (mips_get_pc):
467 (mips_set_pc): Change prototype to take a regcache. Adjust.
468 (mips_reinsert_addr): Adjust.
469 (mips_collect_register): Change prototype to take a regcache.
470 Adjust.
471 (mips_supply_register):
472 (mips_collect_register_32bit, mips_supply_register_32bit)
473 (mips_fill_gregset, mips_store_gregset, mips_fill_fpregset)
474 (mips_store_fpregset): Ditto.
475 * linux-ppc-low.c (ppc_supply_ptrace_register, ppc_supply_ptrace_register):
476 Ditto.
477 (parse_spufs_run): Adjust.
478 (ppc_get_pc, ppc_set_pc, ppc_fill_gregset, ppc_fill_vsxregset)
479 (ppc_store_vsxregset, ppc_fill_vrregset, ppc_store_vrregset)
480 (ppc_fill_evrregset, ppc_store_evrregset): Change prototype to
481 take a regcache. Adjust.
482 * linux-s390-low.c (s390_collect_ptrace_register)
483 (s390_supply_ptrace_register, s390_fill_gregset, s390_get_pc)
484 (s390_set_pc): Change prototype to take a regcache. Adjust.
485 (s390_arch_setup): Adjust.
486 * linux-sh-low.c (sh_get_pc, sh_breakpoint_at)
487 (sh_fill_gregset): Change prototype to take a regcache. Adjust.
488 * linux-sparc-low.c (sparc_fill_gregset_to_stack)
489 (sparc_fill_gregset, sparc_store_gregset_from_stack)
490 (sparc_store_gregset, sparc_get_pc): Change prototype to take a
491 regcache. Adjust.
492 (sparc_breakpoint_at): Adjust.
493 * linux-xtensa-low.c (xtensa_fill_gregset):
494 (xtensa_store_gregset):
495 (xtensa_fill_xtregset, xtensa_store_xtregset, xtensa_get_pc)
496 (xtensa_set_pc): Change prototype to take a regcache. Adjust.
497 * nto-low.c (nto_fetch_registers, nto_store_registers): Change
498 prototype to take a regcache. Adjust.
499 * win32-arm-low.c (arm_fetch_inferior_register)
500 (arm_store_inferior_register): Change prototype to take a
501 regcache. Adjust.
502 * win32-i386-low.c (i386_fetch_inferior_register)
503 (i386_store_inferior_register): Change prototype to take a
504 regcache. Adjust.
505 * win32-low.c (child_fetch_inferior_registers)
506 (child_store_inferior_registers): Change prototype to take a
507 regcache. Adjust.
508 (win32_wait): Adjust.
509 (win32_fetch_inferior_registers): Change prototype to take a
510 regcache. Adjust.
511 (win32_store_inferior_registers): Adjust.
512 * win32-low.h (struct win32_target_ops) <fetch_inferior_register,
513 store_inferior_register>: Change prototype to take a regcache.
514
60c3d7b0
DE
5152010-01-20 Doug Evans <dje@google.com>
516
517 * linux-low.c (linux_create_inferior): Wrap use of __SIGRTMIN in
518 #ifdef.
519 (linux_wait_for_event1, linux_init_signals): Ditto.
ec8ebe72 520 (W_STOPCODE): Provide definition if missing.
60c3d7b0 521
dc146f7c
VP
5222010-01-13 Vladimir Prus <vladimir@codesourcery.com>
523
524 * linux-low.c (linux_core_of_thread): New.
525 (compare_ints, show_process, list_threads): New.
526 (linux_qxfer_osdata): Report threads and cores.
527 (linux_target_op): Register linux_core_of_thread.
528 * remote-utils.c (prepare_resume_reply): Report the core.
529 (buffer_xml_printf): Support %d specifier.
530 * server.c (handle_threads_qxfer_proper, handle_threads_qxfer):
531 New.
532 (handle_query): Handle qXfer:threads. Announce availability
533 thereof.
534 * target.h (struct target_ops): New field core_of_thread.
535
7803799a
UW
5362010-01-04 Ulrich Weigand <uweigand@de.ibm.com>
537
538 * Makefile.in (clean): Remove new generated files.
539 (reg-s390.o, reg-s390.c): Remove rules.
540 (reg-s390x.o, reg-s390x.c): Likewise.
541 (s390-linux32.o, s390-linux32.c): Add rules.
542 (s390-linux64.o, s390-linux64.c): Likewise.
543 (s390x-linux64.o, s390x-linux64.c): Likewise.
544 * configure.srv (s390*-*-linux*): Update srv_regobj and srv_xmlfiles.
545 * linux-s390-low.c: Include <elf.h>.
546 (HWCAP_S390_HIGH_GPRS): Define if undefined.
547 (init_registers_s390): Remove prototype.
548 (init_registers_s390x): Likewise.
549 (init_registers_s390_linux32): Add prototype.
550 (init_registers_s390_linux64): Likewise.
551 (init_registers_s390x_linux64): Likewise.
552 (s390_num_regs_3264): New define.
553 (s390_regmap_3264): New global variable.
554 (s390_cannot_fetch_register): Remove obsolete check.
555 (s390_cannot_store_register): Likewise.
556 (s390_collect_ptrace_register): Handle upper/lower register halves.
557 (s390_supply_ptrace_register): Likewise.
558 (s390_fill_gregset): Update to register number changes.
559 (s390_get_hwcap): New routine.
560 (s390_arch_setup): Detect 32-bit process running on 64-bit system.
561 Install appropriate regmap and register set.
562
6e7ffa39
JB
5632010-01-01 Joel Brobecker <brobecker@adacore.com>
564
565 * server.c (gdbserver_version): Update copyright year to 2010.
566 * gdbreplay.c (gdbreplay_version): Likewise.
567
957f3f49
DE
5682009-12-28 Doug Evans <dje@google.com>
569
570 * linux-low.c: Delete inclusion of ansidecl.h, elf/common.h,
571 elf/external.h. Include <elf.h> instead but only if necessary.
572
ca5c370d
PA
5732009-12-28 Pedro Alves <pedro@codesourcery.com>
574
575 * linux-low.c (linux_remove_process): Remove `detaching'
576 parameter. Don't release/detach from thread_db here.
577 (linux_kill): Release/detach from thread_db here, ...
578 (linux_detach): ... and here, before actually detaching.
579 (linux_wait_1): ... and here, when a process exits.
580 * thread-db.c (any_thread_of): New.
581 (thread_db_free): Switch the current inferior to a thread of the
582 passed in process.
583
4ee62156
DE
5842009-12-21 Doug Evans <dje@google.com>
585
d90e6a88
DE
586 * linux-x86-low.c: Delete outdated comment about Elf32_Phdr.
587
c5f62d5f
DE
588 * linux-low.c (kill_lwp): Use __NR_tkill instead of SYS_tkill.
589 Move definition of tkill_failed to ifdef __NR_tkill to avoid gcc
590 warning ifndef __NR_tkill. Move setting of errno there too.
591 Delete unnecessary resetting of errno after syscall.
592 Minor comment changes to match gdb/linux-nat.c:kill_lwp.
593
10e86dd7
DE
594 * configure.ac: Check for dladdr.
595 * config.in: Regenerate.
596 * configure: Regenerate.
597 * thread-db.c (dladdr_to_soname): Only define ifdef HAVE_DLADDR.
598 (try_thread_db_load): Update.
599
4ee62156
DE
600 * linux-low.c (my_waitpid): Delete unnecessary prototype.
601
00f515da
DE
6022009-12-18 Doug Evans <dje@google.com>
603
e9464885
DE
604 * event-loop.c: Include unistd.h if it exists.
605
07d4f67e
DE
606 * linux-low.c (my_waitpid): Move definition away from being in
607 between linux_tracefork_child/linux_test_for_tracefork.
608
00f515da
DE
609 * gdb_proc_service.h (psaddr_t): Fix type.
610 * thread-db.c (thread_db_info.td_thr_tls_get_addr_p): Fix
611 signature to match glibc.
612
1de1badb
DE
6132009-12-16 Doug Evans <dje@google.com>
614
615 * linux-low.c (linux_read_memory): Fix argument to read.
616
aeeb81d1
PA
6172009-11-26 Pedro Alves <pedro@codesourcery.com>
618
619 * win32-low.c (get_child_debug_event): On EXIT_THREAD_DEBUG_EVENT
620 events, don't leave current_inferior pointing at null.
621
10357975
PA
6222009-11-26 Pedro Alves <pedro@codesourcery.com>
623
624 * win32-low.c (LOG): Delete.
625 (OUTMSG): Output to stderr.
626 (OUTMSG2): Conditionalize on `debug_threads' variable, instead of
627 on compile time LOG macro.
628 (win32_wait): Fix debug output.
629
cf6e3471
PA
6302009-11-26 Pedro Alves <pedro@codesourcery.com>
631
632 * win32-low.c (win32_add_one_solib): If the dll name is
633 "ntdll.dll", prepend the system directory to the dll path.
634
0c85e18e
MK
6352009-11-17 Daniel Jacobowitz <dan@codesourcery.com>
636
637 * m68k-tdep.c (m68k_gdbarch_init): Reuse previous initialization.
638
9ac544ce 6392009-11-17 Nathan Sidwell <nathan@codesourcery.com>
0c85e18e 640 Vladimir Prus <vladimir@codesourcery.com>
9ac544ce
MK
641
642 * Makefile.in (reg-cf.o, reg-cf.c): New targets.
643 * configure.ac: Check for __mcoldfire__ and set
644 gdb_cv_m68k_is_coldfire.
645 * configure.srv: Use gdb_cv_m68k_is_coldfire to select between
646 reg-cf.o and reg-m68k.o.
647 * configure: Regenerated.
648
fd7dd3e6
PA
6492009-11-16 Pedro Alves <pedro@codesourcery.com>
650
651 * linux-low.c (linux_remove_process): Add `detaching' parameter.
652 Pass it to thread_db_free.
653 (linux_kill, linux_detach, linux_wait_1): Adjust to pass the
654 proper `detaching' argument to linux_remove_process.
655 * linux-low.h (thread_db_free): Add `detaching' parameter.
656 * thread-db.c (thread_db_init): Pass false as `detaching' argument
657 to thread_db_free.
658 (thread_db_free): Add `detaching' parameter. Only
659 call td_ta_clear_event if detaching from process.
660
75aa492e
MK
6612009-11-12 Maxim Kuvyrkov <maxim@codesourcery.com>
662
663 * thread-db.c (thread_db_free): Fix typo.
664
21e1bee4
PP
6652009-11-11 Paul Pluzhnikov <ppluzhnikov@google.com>
666
667 PR gdb/10838
668 * thread-db.c (thread_db_free): Call td_ta_clear_event.
669
8838b45e
NS
6702009-11-03 Nathan Sidwell <nathan@codesourcery.com>
671
672 * configure.ac (i[34567]86-*): Check if we're targetting x86-64
673 with an i686 compiler.
674 * configure.srv (i[34567]86-*-linux*): Pull in x86-64 handling if
675 needed.
676 * configure: Rebuilt.
677
8a35fb51
SL
6782009-10-29 Sandra Loosemore <sandra@codesourcery.com>
679
680 PR gdb/10783
681
682 * server.c (handle_search_memory_1): Correct read_addr initialization
683 in loop for searching subsequent chunks.
684
96f15937
PP
6852009-10-29 Paul Pluzhnikov <ppluzhnikov@google.com>
686
687 * configure.ac: New --with-libthread-db option.
688 * thread-db.c: Allow direct dependence on libthread_db.
689 (thread_db_free): Adjust.
690 * config.in: Regenerate.
691 * configure: Likewise.
692
5f7d1694
PP
6932009-10-28 Paul Pluzhnikov <ppluzhnikov@google.com>
694
695 PR gdb/10757
696 * thread-db.c (attach_thread): New function.
697 (maybe_attach_thread): Return success/failure.
698 (find_new_threads_callback): Adjust.
699 (thread_db_find_new_threads): Loop until no new threads.
700
88e3b899
PA
7012009-10-13 Pedro Alves <pedro@codesourcery.com>
702
703 * proc-service.c (ps_lgetregs): Formatting.
704
cdbfd419
PP
7052009-10-08 Paul Pluzhnikov <ppluzhnikov@google.com>
706
707 * acinclude.m4: (SRV_CHECK_THREAD_DB, SRV_CHECK_TLS_GET_ADDR): Remove.
708 * configure.ac: Adjust.
709 * linux-low.h (struct process_info_private): Move members to struct
710 thread_db.
711 (thread_db_free, thread_db_handle_monitor_command): New prototype.
712 * linux-low.c (linux_remove_process): Adjust.
713 (linux_wait_for_event_1, linux_look_up_symbols): Likewise.
714 * server.c (handle_query): Move code ...
715 (handle_monitor_command): ... here. New function.
716 * target.h (struct target_ops): New member.
717 * thread-db.c (struct thread_db): New.
718 (libthread_db_search_path): New variable.
719 (thread_db_create_event, thread_db_enable_reporting)
720 (find_one_thread, maybe_attach_thread, find_new_threads_callback)
721 (thread_db_find_new_threads, (thread_db_get_tls_address): Adjust.
722 (try_thread_db_load_1, dladdr_to_soname): New functions.
723 (try_thread_db_load, thread_db_load_search): New functions.
724 (thread_db_init): Search for libthread_db.
725 (thread_db_free): New function.
726 (thread_db_handle_monitor_command): Likewise.
727 * config.in: Regenerate.
728 * configure: Regenerate.
729
4168d2d6
UW
7302009-09-27 Ulrich Weigand <uweigand@de.ibm.com>
731
732 * spu-low.c (spu_kill): Wait for inferior to terminate.
733 Call clear_inferiors.
734 (spu_detach): Call clear_inferiors.
735
81ecdfbb
RW
7362009-08-22 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
737
738 * aclocal.m4: Regenerate.
739 * config.in: Likewise.
740 * configure: Likewise.
741
0b9ff2c0
UW
7422009-07-31 Ulrich Weigand <uweigand@de.ibm.com>
743
744 * linux-ppc-low.c (INSTR_SC, NR_spu_run): Define.
745 (parse_spufs_run): New function.
746 (ppc_get_pc, ppc_set_pc): Detect and handle SPU PC.
747 (ppc_breakpoint_at): Handle SPU breakpoints.
748
efcbbd14
UW
7492009-07-31 Ulrich Weigand <uweigand@de.ibm.com>
750
751 * linux-low.c: Include <sys/stat.h> and <sys/vfs.h>.
752 (SPUFS_MAGIC): Define.
753 (spu_enumerate_spu_ids): New function.
754 (linux_qxfer_spu): New function.
755 (linux_target_ops): Install linux_qxfer_spu.
756
f4d9bade
UW
7572009-07-31 Ulrich Weigand <uweigand@de.ibm.com>
758
759 * configure.srv (powerpc*-*-linux*): Add powerpc-cell32l.o
760 and powerpc-cell64l.o to srv_regobj. Add rs6000/powerpc-cell32l.xml
761 and rs6000/powerpc-cell64l.xml to srv_xmlfiles.
762 * Makefile.in (powerpc-cell32l.o, powerpc-cell32l.c): New rules.
763 (powerpc-cell64l.o, powerpc-cell64l.c): Likewise.
764 (clean): Handle powerpc-cell32l.c and powerpc-cell64l.c.
765 * linux-ppc-low.c (PPC_FEATURE_CELL): Define.
766 (init_registers_powerpc_cell32l): Add prototype.
767 (init_registers_powerpc_cell64l): Likewise.
768 (ppc_arch_setup): Detect Cell/B.E. architecture.
769
96e946ca
RW
7702009-07-30 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
771
772 * Makefile.in (datarootdir): New variable.
773
58d6951d
DJ
7742009-07-28 Daniel Jacobowitz <dan@codesourcery.com>
775
776 * linux-low.c (linux_write_memory): Update debugging output.
777 * Makefile.in (clean): Add new descriptions.
778 (arm-with-vfpv2.o, arm-with-vfpv2.c, arm-with-vfpv3.o)
779 (arm-with-vfpv3.c, arm-with-neon.o, arm-with-neon.c): New rules.
780 * configure.srv: Add new files for arm*-*-linux*.
781 * linux-arm-low.c: Add new declarations.
782 (PTRACE_GETVFPREGS, PTRACE_SETVFPREGS): Define if undefined.
783 (arm_hwcap, HWCAP_VFP, HWCAP_IWMMXT, HWCAP_NEON, HWCAP_VFPv3)
784 (HWCAP_VFPv3D16): New.
785 (arm_fill_wmmxregset, arm_store_wmmxregset): Check HWCAP_IWMMXT
786 instead of __IWMMXT__.
787 (arm_fill_vfpregset, arm_store_vfpregset, arm_get_hwcap)
788 (arm_arch_setup): New.
789 (target_regsets): Remove #ifdef. Add VFP regset.
790 (the_low_target): Use arm_arch_setup.
791
12b42a12
DJ
7922009-07-28 Daniel Jacobowitz <dan@codesourcery.com>
793
794 * linux-low.c (linux_kill_one_lwp): Adjust kernel workaround to skip
795 the main thread again.
796
ac8c974e
AR
7972009-07-06 Aleksandar Ristovski <aristovski@qnx.com>
798
799 Adding Neutrino gdbserver.
800 * configure: Regenerated.
801 * configure.ac: Add case for srv_qnx and set LIBS accordingly.
802 * configure.srv (i[34567]86-*-nto*): New target.
803 * nto-low.c, nto-low.h, nto-x86-low.c: New files.
804 * remote-utils.c [__QNX__]: Include sys/iomgr.h
805 (nto_comctrl) [__QNX__]: New function.
806 (enable_async_io, disable_async_io) [__QNX__]: Call nto_comctrl.
807
4424e0c3 8082009-07-05 Danny Backx <dannybackx@users.sourceforge.net>
7437790a
PA
809
810 * configure.srv (i[34567]86-*-mingw32ce*): Add i386-low.o to
811 srv_tgtobj.
812
912cf4ba
PA
8132009-07-04 Danny Backx <dannybackx@users.sourceforge.net>
814 Pedro Alves <pedro@codesourcery.com>
815
816 * win32-i386-low.c (i386_get_thread_context): Handle systems that
817 don't support CONTEXT_EXTENDED_REGISTERS.
818 (i386_win32_breakpoint, i386_win32_breakpoint_len): New.
819 (the_low_target): Install them.
820 * win32-low.c (get_child_debug_event): Handle WaitForDebugEvent
821 failing with ERROR_PIPE_NOT_CONNECTED.
822
aa5ca48f
DE
8232009-06-30 Doug Evans <dje@google.com>
824 Pierre Muller <muller@ics.u-strasbg.fr>
825
826 Add h/w watchpoint support to x86-linux, win32-i386.
827 * Makefile.in (SFILES): Add i386-low.c
828 (i386_low_h): Define.
829 (i386-low.o): Add dependencies.
830 (linux-x86-low.o): Add i386-low.h dependency.
831 (win32-i386-low.o): Ditto.
832 * i386-low.c: New file.
833 * i386-low.h: New file.
834 * configure.srv (i[34567]86-*-cygwin*): Add i386-low.o to srv_tgtobj.
835 (i[34567]86-*-linux*, i[34567]86-*-mingw*, x86_64-*-linux*): Ditto.
836 * linux-low.c (linux_add_process): Initialize arch_private.
837 (linux_remove_process): Free arch_private.
838 (add_lwp): Initialize arch_private.
839 (delete_lwp): Free arch_private.
840 (linux_resume_one_lwp): Call the_low_target.prepare_to_resume if
841 provided.
842 * linux-low.h (process_info_private): New member arch_private.
843 (lwp_info): New member arch_private.
844 (linux_target_ops): New members new_process, new_thread,
845 prepare_to_resume.
846 (ptid_of): New macro.
847 * linux-x86-low.c: Include stddef.h, i386-low.h.
848 (arch_process_info): New struct.
849 (arch_lwp_info): New struct.
850 (x86_linux_dr_get, x86_linux_dr_set): New functions.
851 (i386_dr_low_set_addr, i386_dr_low_set_control): New functions.
852 (i386_dr_low_get_status): New function.
853 (x86_insert_point, x86_remove_point): New functions.
854 (x86_stopped_by_watchpoint): New function.
855 (x86_stopped_data_address): New function.
856 (x86_linux_new_process, x86_linux_new_thread): New functions.
857 (x86_linux_prepare_to_resume): New function.
858 (the_low_target): Add entries for insert_point, remove_point,
859 stopped_by_watchpoint, stopped_data_address, new_process, new_thread,
860 prepare_to_resume.
861 * server.c (debug_hw_points): New global.
862 (monitor_show_help): Document set debug-hw-points.
863 (handle_query): Process "set debug-hw-points".
864 * server.h (debug_hw_points): Declare.
865 (paddress): Declare.
866 * utils.c (NUMCELLS, CELLSIZE): New macros.
867 (get_sell, xsnprintf, paddress): New functions.
868 * win32-arm-low.c (the_low_target): Add entries for insert_point,
869 remove_point, stopped_by_watchpoint, stopped_data_address.
870 * win32-i386-low.c: Include i386-low.h.
871 (debug_reg_state): Replaces dr.
872 (i386_dr_low_set_addr, i386_dr_low_set_control): New functions.
873 (i386_dr_low_get_status): New function.
874 (i386_insert_point, i386_remove_point): New functions.
875 (i386_stopped_by_watchpoint): New function.
876 (i386_stopped_data_address): New function.
877 (i386_initial_stuff): Update.
878 (get_thread_context,set_thread_context,i386_thread_added): Update.
879 (the_low_target): Add entries for insert_point,
880 remove_point, stopped_by_watchpoint, stopped_data_address.
881 * win32-low.c (win32_insert_watchpoint): New function.
882 (win32_remove_watchpoint): New function.
883 (win32_stopped_by_watchpoint): New function.
884 (win32_stopped_data_address): New function.
885 (win32_target_ops): Add entries for insert_watchpoint,
886 remove_watchpoint, stopped_by_watchpoint, stopped_data_address.
887 * win32-low.h (win32_target_ops): New members insert_point,
888 remove_point, stopped_by_watchpoint, stopped_data_address.
889
d993e290
PA
8902009-06-25 Pedro Alves <pedro@codesourcery.com>
891
892 * server.c (process_serial_event): Re-return unsupported, not
893 error, if the type isn't recognized. Re-allow supporting only
894 insert or remove packets. Also call require_running for
895 breakpoints. Add missing break statement to default case. Tidy.
896 * target.h (struct target_ops): Rename insert_watchpoint to
897 insert_point, and remove_watchpoint to remove_point.
898
899 * linux-low.h (struct linux_target_ops): Likewise.
900 * linux-low.c (linux_insert_watchpoint): Rename to ...
901 (linux_insert_point): ... this. Adjust.
902 (linux_remove_watchpoint): Rename to ...
903 (linux_remove_point): ... this. Adjust.
904 (linux_target_ops): Adjust.
905 * linux-crisv32-low.c (cris_insert_watchpoint): Rename to ...
906 (cris_insert_point): ... this.
907 (cris_remove_watchpoint): Rename to ...
908 (cris_remove_point): ... this.
909 (the_low_target): Adjust.
910
0f54c268
PM
9112009-06-24 Pierre Muller <muller@ics.u-strasbg.fr>
912
913 * server.c (handle_v_kill): Pass signal_pid to
914 kill_inferior if multi_process is zero.
915
c6314022
AR
9162009-06-23 Aleksandar Ristovski <aristovski@qnx.com>
917
918 * server.c (process_serial_event): Add support for Z0 and Z1 packet.
919 * target.h (target_ops): Comment for *_watchpoint to make it clear
920 the functions can get types '0' and '1'.
921
4463ce24
AR
9222009-06-22 Aleksandar Ristovski <aristovski@qnx.com>
923
924 * linux-low.c (usr_fetch_inferior_registers): Remove check for regno 0.
925 * proc-service.c (ps_lgetregs): Pass -1 to fetch all registers.
926 * regcache.c (get_regcache): Likewise.
927 * spu-low.c (spu_fetch_registers): Remove 0 to -1 conversion.
928 * win32-low.c (child_fetch_inferior_registers): Remove check for
929 regno 0.
930
cf8fd78b
PA
9312009-06-19 Aleksandar Ristovski <aristovski@qnx.com>
932 Pedro Alves <pedro@codesourcery.com>
933
934 * target.h (struct target_ops) <supports_multi_process>: New
935 callback.
936 (target_supports_multi_process): New.
937 * server.c (handle_query): Even if GDB reports support, only
938 enable multi-process if the target also supports it. Report
939 multi-process support only if the target backend supports it.
940 * linux-low.c (linux_supports_multi_process): New function.
941 (linux_target_ops): Install it as target_supports_multi_process
942 callback.
943
47c0c975
DE
9442009-05-24 Doug Evans <dje@google.com>
945
e09875d4
DE
946 Global renaming of find_thread_pid to find_thread_ptid.
947 * server.h (find_thread_ptid): Renamed from find_thread_pid.
948 * inferiors.c (find_thread_ptid): Renamed from find_thread_pid.
949 All callers updated.
950
e27d73f6
DE
951 * linux-low.c (handle_extended_wait): Use linux_resume_one_lwp
952 to resume the newly created thread, don't call ptrace (PTRACE_CONT)
953 directly.
954
47c0c975
DE
955 * linux-low.c (get_stop_pc): Print pc if debug_threads.
956 (check_removed_breakpoint, linux_wait_for_lwp): Ditto.
957 (linux_resume_one_lwp): Ditto.
958
2acc282a
DE
9592009-05-23 Doug Evans <dje@google.com>
960
961 * linux-low.c (linux_resume_one_lwp): Change type of first arg
962 from struct inferior_list_entry * to struct lwp_info *.
963 All callers updated.
964
9f1036c1
DE
9652009-05-13 Doug Evans <dje@google.com>
966
967 * linux-x86-low.c: Don't include assert.h.
968 (x86_siginfo_fixup): Use fatal, not assert.
969 (x86_arch_setup): Fix comment.
970
d0722149
DE
9712009-05-12 Doug Evans <dje@google.com>
972
973 Biarch support for i386/amd64 gdbserver.
974 * Makefile.in (SFILES): Remove linux-i386-low.c, linux-x86-64-low.c.
975 Add linux-x86-low.c.
976 (linux-i386-low.o, linux-x86-64-low.o): Delete.
977 (linux-x86-low.o): Add.
978 * linux-x86-64-low.c: Delete.
979 * linux-i386-low.c: Delete.
980 * linux-x86-low.c: New file.
981 * configure.srv (i?86-linux srv_tgtobj): Replace linux-i386-low.o with
982 linux-x86-low.o.
983 (x86_64-linux srv_tgtobj): Replace linux-x86-64-low.o with
984 linux-x86-low.o.
985 (x86_64-linux srv_regobj): Add reg-i386-linux.o.
986 * linux-low.c: Include ansidecl.h, elf/common.h, elf/external.h.
987 (linux_child_pid_to_exec_file): New function.
988 (elf_64_header_p, elf_64_file_p): New functions.
989 (siginfo_fixup): New function.
990 (linux_xfer_siginfo): New local inf_siginfo. Call siginfo_fixup to
991 give target a chance to convert layout.
992 * linux-low.h (linux_target_ops): New member siginfo_fixup.
993 (linux_child_pid_to_exec_file, elf_64_file_p): Declare.
994
fdeb2a12
DE
9952009-05-07 Doug Evans <dje@google.com>
996
997 * linux-low.c (regsets_fetch_inferior_registers): Fix memory leak.
998 (regsets_store_inferior_registers): Ditto.
999
a6dbe5df
PA
10002009-05-06 Pedro Alves <pedro@codesourcery.com>
1001
1002 PR server/10048
1003
1004 * linux-low.c (must_set_ptrace_flags): Delete.
1005 (linux_create_inferior): Set `lwp->must_set_ptrace_flags' instead
1006 of the global.
1007 (linux_attach_lwp_1): Don't set PTRACE_SETOPTIONS here. Set
1008 `lwp->must_set_ptrace_flags' instead.
ba42693b 1009 (linux_wait_for_event_1): Set ptrace options here.
a6dbe5df
PA
1010 (linux_wait_1): ... not here.
1011
5091eb23
DE
10122009-04-30 Doug Evans <dje@google.com>
1013
9f767825
DE
1014 * inferiors.c (started_inferior_callback): New function.
1015 (attached_inferior_callback): New function.
1016 (have_started_inferiors_p, have_attached_inferiors_p): New functions.
1017 * server.c (print_started_pid, print_attached_pid): New functions.
1018 (detach_or_kill_for_exit): New function.
1019 (main): Call it instead of for_each_inferior (kill_inferior_callback).
1020 * server.h (have_started_inferiors_p): Declare.
1021 (have_attached_inferiors_p): Declare.
1022
5091eb23
DE
1023 * inferiors.c (remove_process): Fix memory leak, free process.
1024 * linux-low.c (linux_remove_process): New function.
1025 (linux_kill): Call it instead of remove_process.
1026 (linux_detach, linux_wait_1): Ditto.
1027
155c8968
PA
10282009-04-19 Danny Backx <dannybackx@users.sourceforge.net>
1029
1030 * configure.srv: Add x86 Windows CE target.
1031
7fe519cb
UW
10322009-04-03 Ulrich Weigand <uweigand@de.ibm.com>
1033
1034 * inferiors.c (get_thread_process): Make global.
1035 * server.h (get_thread_process): Add prototype.
1036 * thread-db.c (find_one_thread): Use get_thread_process
1037 instead of current_process.
1038 (thread_db_get_tls_address): Do not crash if called when
1039 thread layer is not yet initialized.
1040
5472f405
UW
10412009-04-03 Ulrich Weigand <uweigand@de.ibm.com>
1042
1043 * remote-utils.c (prepare_resume_reply): Null-terminate packet.
1044 * spu-low.c (current_tid): Rename to ...
1045 (current_ptid): ... this.
1046 (fetch_ppc_register, fetch_ppc_memory, store_ppc_memory,
1047 spu_proc_xfer_spu, spu_resume, spu_request_interrupt): Use
1048 ptid_get_lwp (current_ptid) instead of current_tid.
1049 (spu_kill, spu_detach, spu_join, spu_wait): Use pid argument
1050 instead of current_tid. Use find_process_pid to verify pid
1051 argument is valid. Pass proper argument to remove_process.
1052 (spu_thread_alive): Compare current_ptid instead of current_tid.
1053 (spu_resume): Likewise.
1054
55ac2b99
PA
10552009-04-02 Pedro Alves <pedro@codesourcery.com>
1056
1057 * linux-low.c (usr_store_inferior_registers): Declare local `pid'
1058 variable.
1059
95954743
PA
10602009-04-01 Pedro Alves <pedro@codesourcery.com>
1061
1062 Implement the multiprocess extensions, and add linux multiprocess
1063 support.
1064
1065 * server.h (ULONGEST): Declare.
1066 (struct ptid, ptid_t): New.
1067 (minus_one_ptid, null_ptid): Declare.
1068 (ptid_build, pid_to_ptid, ptid_get_pid, ptid_get_lwp)
1069 (ptid_get_tid, ptid_equal, ptid_is_pid): Declare.
1070 (struct inferior_list_entry): Change `id' type from unsigned from
1071 to ptid_t.
1072 (struct sym_cache, struct breakpoint, struct
1073 process_info_private): Forward declare.
1074 (struct process_info): Declare.
1075 (current_process): Declare.
1076 (all_processes): Declare.
1077 (initialize_inferiors): Declare.
1078 (add_thread): Adjust to use ptid_t.
1079 (thread_id_to_gdb_id, thread_to_gdb_id, gdb_id_to_thread_id): Ditto.
1080 (add_process, remove_process, find_thread_pid): Declare.
1081 (find_inferior_id): Adjust to use ptid_t.
1082 (cont_thread, general_thread, step_thread): Change type to ptid_t.
1083 (multi_process): Declare.
1084 (push_event): Adjust to use ptid_t.
1085 (read_ptid, write_ptid): Declare.
1086 (prepare_resume_reply): Adjust to use ptid_t.
1087 (clear_symbol_cache): Declare.
1088 * inferiors.c (all_processes): New.
1089 (null_ptid, minus_one_ptid): New.
1090 (ptid_build, pid_to_ptid, ptid_get_pid, ptid_get_lwp)
1091 (ptid_get_tid, ptid_equal, ptid_is_pid): New.
1092 (add_thread): Change unsigned long to ptid. Remove gdb_id
1093 parameter. Adjust.
1094 (thread_id_to_gdb_id, thread_to_gdb_id): Change unsigned long to ptid.
1095 (gdb_id_to_thread): Rename to ...
1096 (find_thread_pid): ... this. Change unsigned long to ptid.
1097 (gdb_id_to_thread_id, find_inferior_id): Change unsigned long to ptid.
1098 (loaded_dll, pull_pid_from_list): Adjust.
1099 (add_process, remove_process, find_process_pid)
1100 (get_thread_process, current_process, initialize_inferiors): New.
1101 * target.h (struct thread_resume) <thread>: Change type to ptid_t.
1102 (struct target_waitstatus) <related_pid>: Ditto.
1103 (struct target_ops) <kill, detach>: Add `pid' argument. Change
1104 return type to int.
1105 (struct target_ops) <join>: Add `pid' argument.
1106 (struct target_ops) <thread_alive>: Change pid's type to ptid_t.
1107 (struct target_ops) <wait>: Add `ptid' field. Change return type
1108 to ptid.
1109 (kill_inferior, detach_inferior, join_inferior): Add `pid' argument.
1110 (mywait): Add `ptid' argument. Change return type to ptid_t.
1111 (target_pid_to_str): Declare.
1112 * target.c (set_desired_inferior): Adjust to use ptids.
1113 (mywait): Add new `ptid' argument. Adjust.
1114 (target_pid_to_str): New.
1115 * mem-break.h (free_all_breakpoints): Declare.
1116 * mem-break.c (breakpoints): Delelete.
1117 (set_breakpoint_at, delete_breakpoint, find_breakpoint_at)
1118 (check_mem_read, check_mem_write, delete_all_breakpoints): Adjust
1119 to use per-process breakpoint list.
1120 (free_all_breakpoints): New.
1121 * remote-utils.c (struct sym_cache) <name>: Drop `const'.
1122 (symbol_cache, all_symbols_looked_up): Delete.
1123 (hexchars): New.
1124 (ishex, unpack_varlen_hex, write_ptid, hex_or_minus_one,
1125 read_ptid): New.
1126 (prepare_resume_reply): Change ptid argument's type from unsigned
1127 long to ptid_t. Adjust. Implement W;process and X;process.
1128 (free_sym_cache, clear_symbol_cache): New.
1129 (look_up_one_symbol): Adjust to per-process symbol cache. *
1130 * server.c (cont_thread, general_thread, step_thread): Change type
1131 to ptid_t.
1132 (attached): Delete.
1133 (multi_process): New.
1134 (last_ptid): Change type to ptid_t.
1135 (struct vstop_notif) <ptid>: Change type to ptid_t.
1136 (queue_stop_reply, push_event): Change `ptid' argument's type to
1137 ptid_t.
1138 (discard_queued_stop_replies): Add `pid' argument.
1139 (start_inferior): Adjust to use ptids. Adjust to mywait interface
1140 changes. Don't reference the `attached' global.
1141 (attach_inferior): Adjust to mywait interface changes.
1142 (handle_query): Adjust to use ptids. Parse GDB's qSupported
1143 features. Handle and report "multiprocess+". Handle
1144 "qAttached:PID".
1145 (handle_v_cont): Adjust to use ptids. Adjust to mywait interface
1146 changes.
1147 (handle_v_kill): New.
1148 (handle_v_stopped): Adjust to use target_pid_to_str.
1149 (handle_v_requests): Allow multiple attaches and runs when
1150 multiprocess extensions are in effect. Handle "vKill".
1151 (myresume): Adjust to use ptids.
1152 (queue_stop_reply_callback): Add `arg' parameter. Handle it.
1153 (handle_status): Adjust to discard_queued_stop_replies interface
1154 change.
1155 (first_thread_of, kill_inferior_callback)
1156 (detach_or_kill_inferior_callback, join_inferiors_callback): New.
1157 (main): Call initialize_inferiors. Adjust to use ptids, killing
1158 and detaching from all inferiors. Handle multiprocess packet
1159 variants.
1160 * linux-low.h: Include gdb_proc_service.h.
1161 (struct process_info_private): New.
1162 (struct linux_target_ops) <pid_of>: Use ptid_get_pid.
1163 <lwpid_of>: Use ptid_get_lwp.
1164 (get_lwp_thread): Adjust.
1165 (struct lwp_info): Add `dead' member.
1166 (find_lwp_pid): Declare.
1167 * linux-low.c (thread_db_active): Delete.
1168 (new_inferior): Adjust comment.
1169 (inferior_pid): Delete.
1170 (linux_add_process): New.
1171 (handle_extended_wait): Adjust.
1172 (add_lwp): Change unsigned long to ptid.
1173 (linux_create_inferior): Add process to processes table. Adjust
1174 to use ptids. Don't set new_inferior here.
1175 (linux_attach_lwp): Rename to ...
1176 (linux_attach_lwp_1): ... this. Add `initial' argument. Handle
1177 it. Adjust to use ptids.
1178 (linux_attach_lwp): New.
1179 (linux_attach): Add process to processes table. Don't set
1180 new_inferior here.
1181 (struct counter): New.
1182 (second_thread_of_pid_p, last_thread_of_process_p): New.
1183 (linux_kill_one_lwp): Add `args' parameter. Handle it. Adjust to
1184 multiple processes.
1185 (linux_kill): Add `pid' argument. Handle it. Adjust to multiple
1186 processes. Remove process from process table.
1187 (linux_detach_one_lwp): Add `args' parameter. Handle it. Adjust
1188 to multiple processes.
1189 (any_thread_of): New.
1190 (linux_detach): Add `pid' argument, and handle it. Remove process
1191 from processes table.
1192 (linux_join): Add `pid' argument. Handle it.
1193 (linux_thread_alive): Change unsighed long argument to ptid_t.
1194 Consider dead lwps as not being alive.
1195 (status_pending_p): Rename `dummy' argument to `arg'. Filter out
1196 threads we're not interested in.
1197 (same_lwp, find_lwp_pid): New.
1198 (linux_wait_for_lwp): Change `pid' argument's type from int to
1199 ptid_t. Adjust.
1200 (linux_wait_for_event): Rename to ...
1201 (linux_wait_for_event_1): ... this. Change `pid' argument's type
1202 from int to ptid_t. Adjust.
1203 (linux_wait_for_event): New.
1204 (linux_wait_1): Add `ptid' argument. Change return type to
1205 ptid_t. Adjust. Use last_thread_of_process_p. Remove processes
1206 that exit from the process table.
1207 (linux_wait): Add `ptid' argument. Change return type to ptid_t.
1208 Adjust.
1209 (mark_lwp_dead): New.
1210 (wait_for_sigstop): Adjust to use ptids. If a process exits while
1211 stopping all threads, mark its main lwp as dead.
1212 (linux_set_resume_request, linux_resume_one_thread): Adjust to use
1213 ptids.
1214 (fetch_register, usr_store_inferior_registers)
1215 (regsets_fetch_inferior_registers)
1216 (regsets_store_inferior_registers, linux_read_memory)
1217 (linux_write_memory): Inline `inferior_pid'.
1218 (linux_look_up_symbols): Adjust to use per-process
1219 `thread_db_active'.
1220 (linux_request_interrupt): Adjust to use ptids.
1221 (linux_read_auxv): Inline `inferior_pid'.
1222 (initialize_low): Don't reference thread_db_active.
1223 * gdb_proc_service.h (struct ps_prochandle) <pid>: Remove.
1224 * proc-service.c (ps_lgetregs): Use find_lwp_pid.
1225 (ps_getpid): Return the pid of the current inferior.
1226 * thread-db.c (proc_handle, thread_agent): Delete.
1227 (thread_db_create_event, thread_db_enable_reporting): Adjust to
1228 per-process data.
1229 (find_one_thread): Change argument type to ptid_t. Adjust to
1230 per-process data.
1231 (maybe_attach_thread): Adjust to per-process data and ptids.
1232 (thread_db_find_new_threads): Ditto.
1233 (thread_db_init): Ditto.
1234 * spu-low.c (spu_create_inferior, spu_attach): Add process to
1235 processes table. Adjust to use ptids.
1236 (spu_kill, spu_detach): Adjust interface. Remove process from
1237 processes table.
1238 (spu_join, spu_thread_alive): Adjust interface.
1239 (spu_wait): Adjust interface. Remove process from processes
1240 table. Adjust to use ptids.
1241 * win32-low.c (current_inferior_tid): Delete.
1242 (current_inferior_ptid): New.
1243 (debug_event_ptid): New.
1244 (thread_rec): Take a ptid. Adjust.
1245 (child_add_thread): Add `pid' argument. Adjust to use ptids.
1246 (child_delete_thread): Ditto.
1247 (do_initial_child_stuff): Add `attached' argument. Add process to
1248 processes table.
1249 (child_fetch_inferior_registers, child_store_inferior_registers):
1250 Adjust.
1251 (win32_create_inferior): Pass 0 to do_initial_child_stuff.
1252 (win32_attach): Pass 1 to do_initial_child_stuff.
1253 (win32_kill): Adjust interface. Remove process from processes
1254 table.
1255 (win32_detach): Ditto.
1256 (win32_join): Adjust interface.
1257 (win32_thread_alive): Take a ptid.
1258 (win32_resume): Adjust to use ptids.
1259 (get_child_debug_event): Ditto.
1260 (win32_wait): Adjust interface. Remove exiting process from
1261 processes table.
1262
bd99dc85
PA
12632009-04-01 Pedro Alves <pedro@codesourcery.com>
1264
1265 Non-stop mode support.
1266
1267 * server.h (non_stop): Declare.
1268 (gdb_client_data, handler_func): Declare.
1269 (delete_file_handler, add_file_handler, start_event_loop):
1270 Declare.
1271 (handle_serial_event, handle_target_event, push_event)
1272 (putpkt_notif): Declare.
1273 * target.h (enum resume_kind): New.
1274 (struct thread_resume): Replace `step' field by `kind' field.
1275 (TARGET_WNOHANG): Define.
1276 (struct target_ops) <wait>: Add `options' argument.
1277 <supports_non_stop, async, start_non_stop>: New fields.
1278 (target_supports_non_stop, target_async): New.
1279 (start_non_stop): Declare.
1280 (mywait): Add `options' argument.
1281 * target.c (mywait): Add `options' argument. Print child exit
1282 notifications here.
1283 (start_non_stop): New.
1284 * server.c (non_stop, own_buf, mem_buf): New globals.
1285 (struct vstop_notif): New.
1286 (notif_queue): New global.
1287 (queue_stop_reply, push_event, discard_queued_stop_replies)
1288 (send_next_stop_reply): New.
1289 (start_inferior): Adjust to use resume_kind. Adjust to mywait
1290 interface changes.
1291 (attach_inferior): In non-stop mode, don't wait for the target
1292 here.
1293 (handle_general_set): Handle QNonStop.
1294 (handle_query): When handling qC, return the current general
1295 thread, instead of the first thread of the list.
1296 (handle_query): If the backend supports non-stop mode, include
1297 QNonStop+ in the qSupported query response.
1298 (handle_v_cont): Adjust to use resume_kind. Handle resume_stop
1299 and non-stop mode.
1300 (handle_v_attach, handle_v_run): Handle non-stop mode.
1301 (handle_v_stopped): New.
1302 (handle_v_requests): Report support for vCont;t. Handle vStopped.
1303 (myresume): Adjust to use resume_kind. Handle non-stop.
1304 (queue_stop_reply_callback): New.
1305 (handle_status): Handle non-stop mode.
1306 (main): Clear non_stop flag on reconnection. Use the event-loop.
1307 Refactor serial protocol handling from here ...
1308 (process_serial_event): ... to this new function. When GDB
1309 selects any thread, select one here. In non-stop mode, wait until
1310 GDB acks all pending events before exiting.
1311 (handle_serial_event, handle_target_event): New.
1312 * remote-utils.c (remote_open): Install remote_desc in the event
1313 loop.
1314 (remote_close): Remove remote_desc from the event loop.
1315 (putpkt_binary): Rename to...
1316 (putpkt_binary_1): ... this. Add `is_notic' argument. Handle it.
1317 (putpkt_binary): New as wrapper around putpkt_binary_1.
1318 (putpkt_notif): New.
1319 (prepare_resume_reply): In non-stop mode, don't change the
1320 general_thread.
1321 * event-loop.c: New.
1322 * Makefile.in (OBJ): Add event-loop.o.
1323 (event-loop.o): New rule.
1324
1325 * linux-low.h (pid_of): Moved here.
1326 (lwpid_of): New.
1327 (get_lwp_thread): Use lwpid_of.
1328 (struct lwp_info): Delete `lwpid' field. Add `suspended' field.
1329 * linux-low.c (pid_of): Delete.
1330 (inferior_pid): Use lwpid_of.
1331 (linux_event_pipe): New.
1332 (target_is_async_p): New.
1333 (delete_lwp): New.
1334 (handle_extended_wait): Use lwpid_of.
1335 (add_lwp): Don't set lwpid field.
1336 (linux_attach_lwp): Adjust debug output. Use lwpid_of.
1337 (linux_kill_one_lwp): If killing a running lwp, stop it first.
1338 Use lwpid_of. Adjust to linux_wait_for_event interface changes.
1339 (linux_detach_one_lwp): If detaching from a running lwp, stop it
1340 first. Adjust to linux_wait_for_event interface changes. Use
1341 lwpid_of.
1342 (linux_detach): Don't delete the main lwp here.
1343 (linux_join): Use my_waitpid. Avoid signal_pid. Use lwpid_of.
1344 (status_pending_p): Don't consider explicitly suspended lwps.
1345 (linux_wait_for_lwp): Take an integer pid instead of a lwp_info
1346 pointer. Add OPTIONS argument. Change return type to int. Use
1347 my_waitpid instead of sleeping. Handle WNOHANG. Use lwpid_of.
1348 (linux_wait_for_event): Take an integer pid instead of a lwp_info
1349 pointer. Add status pointer argument. Return a pid instead of a
1350 status. Use lwpid_of. Adjust to linux_wait_for_lwp interface
1351 changes. In non-stop mode, don't switch to a random thread.
1352 (linux_wait): Rename to...
1353 (linux_wait_1): ... this. Add target_options argument, and handle
1354 it. Adjust to use resume_kind. Use lwpid_of. In non-stop mode,
1355 don't handle the continue thread. Handle TARGET_WNOHANG. Merge
1356 clean exit and signal exit code. Don't stop all threads in
1357 non-stop mode. In all-stop mode, only stop all threads when
1358 reporting a stop to GDB. Handle explicit thread stop requests.
1359 (async_file_flush, async_file_mark): New.
1360 (linux_wait): New.
1361 (send_sigstop): Use lwpid_of.
1362 (wait_for_sigstop): Use lwpid_of. Adjust to linux_wait_for_event
1363 interface changes. In non-stop mode, don't switch to a random
1364 thread.
1365 (linux_resume_one_lwp): Use lwpid_of.
1366 (linux_continue_one_thread, linux_queue_one_thread): Merge into ...
1367 (linux_resume_one_thread): ... this. Handle resume_stop. In
1368 non-stop mode, don't look for pending flag in all threads.
1369 (resume_status_pending_p): Don't consider explicitly suspended
1370 threads.
1371 (my_waitpid): Reimplement. Emulate __WALL.
1372 (linux_request_interrupt, linux_read_offsets, linux_xfer_siginfo):
1373 Use lwpid_of.
1374 (sigchld_handler, linux_supports_non_stop, linux_async)
1375 (linux_start_non_stop): New.
1376 (linux_target_ops): Register linux_supports_non_stop, linux_async
1377 and linux_start_non_stop.
1378 (initialize_low): Install SIGCHLD handler.
1379 * thread-db.c (thread_db_create_event, find_one_thread)
1380 (thread_db_get_tls_address): Use lwpid_of.
1381 * win32-low.c (win32_detach): Adjust to use resume_kind.
1382 (win32_wait): Add `options' argument.
1383 * spu-low.c (spu_resume): Adjust to use resume_kind.
1384 (spu_wait): Add `options' argument.
1385
5b1c542e
PA
13862009-04-01 Pedro Alves <pedro@codesourcery.com>
1387
1388 Decouple target code from remote protocol.
1389
1390 * target.h (enum target_waitkind): New.
1391 (struct target_waitstatus): New.
1392 (struct target_ops) <wait>: Return an unsigned long. Take a
1393 target_waitstatus pointer instead of a char pointer.
1394 (mywait): Likewise.
1395 * target.c (mywait): Change prototype to return an unsigned long.
1396 Take a target_waitstatus pointer instead of a char pointer. Adjust.
1397 * server.h (thread_from_wait, old_thread_from_wait): Delete
1398 declarations.
1399 (prepare_resume_reply): Change prototype to take a
1400 target_waitstatus.
1401 * server.c (thread_from_wait, old_thread_from_wait): Delete.
1402 (last_status, last_ptid): New.
1403 (start_inferior): Remove "statusptr" argument. Adjust. Return a
1404 pid instead of a signal.
1405 (attach_inferior): Remove "status" and "signal" parameters.
1406 Adjust.
1407 (handle_query): For qGetTLSAddr, parse the thread id with strtol,
1408 not as an address.
1409 (handle_v_cont, handle_v_attach, handle_v_run, handle_v_kill)
1410 (handle_v_requests, myresume): Remove "status" and "signal"
1411 parameters. Adjust.
1412 (handle_status): New.
1413 (main): Delete local `status'. Adjust.
1414 * remote-utils.c: Include target.h.
1415 (prepare_resume_reply): Change prototype to take a
1416 target_waitstatus. Adjust.
1417
1418 * linux-low.c (linux_wait): Adjust to new target_ops->wait
1419 interface.
1420 * spu-low.c (spu_wait): Adjust.
1421 * win32-low.c (enum target_waitkind, struct target_waitstatus):
1422 Delete.
1423 (win32_wait): Adjust.
1424
2bd7c093
PA
14252009-04-01 Pedro Alves <pedro@codesourcery.com>
1426
1427 * target.h (struct thread_resume): Delete leave_stopped member.
1428 (struct target_ops): Add a `n' argument to the `resume' callback.
1429 * server.c (start_inferior): Adjust.
1430 (handle_v_cont, myresume): Adjust.
1431 * linux-low.c (check_removed_breakpoint): Adjust to resume
1432 interface change, and to removed leave_stopped field.
1433 (resume_ptr): Delete.
1434 (struct thread_resume_array): New.
1435 (linux_set_resume_request): Add new `arg' parameter. Adjust to
1436 resume interface change.
1437 (linux_continue_one_thread, linux_queue_one_thread)
1438 (resume_status_pending_p): Check if the resume field is NULL
1439 instead of checking the leave_stopped member.
1440 (linux_resume): Adjust to the target resume interface change.
1441 * spu-low.c (spu_resume): Adjust to the target resume interface
1442 change.
1443 * win32-low.c (win32_detach, win32_resume): Ditto.
1444
c35fafde
PA
14452009-04-01 Pedro Alves <pedro@codesourcery.com>
1446
1447 * linux-low.c (linux_wait_for_event): Don't clear the `stepping'
1448 flag.
1449 (wait_for_sigstop): Don't leave a finished single-step SIGTRAP
1450 pending.
1451 (linux_continue_one_thread): Only preserve the stepping flag if
1452 there's a pending breakpoint.
1453
0a59d50b
PA
14542009-03-31 Pedro Alves <pedro@codesourcery.com>
1455
1456 * server.c (main): After the inferior having exited, call
1457 remote_close before exiting gdbserver.
1458
f04c6d38
TJB
14592009-03-25 Thiago Jung Bauermann <bauerman@br.ibm.com>
1460
1461 Fix size of FPSCR in Power 7 processors.
1462 * linux-ppc-low.c (PPC_FEATURE_ARCH_2_05): Remove #define.
1463 (PPC_FEATURE_HAS_DFP): New #define.
1464 (ppc_arch_setup): Check for DFP feature instead of ISA 2.05 to decide on
1465 size of the FPSCR.
1466
78e5cee6
PA
14672009-03-23 Pedro Alves <pedro@codesourcery.com>
1468
1469 * server.c (handle_query) Whitespace and formatting.
1470
1b3f6016
PA
14712009-03-22 Pedro Alves <pedro@codesourcery.com>
1472
1473 * i387-fp.c, linux-arm-low.c, linux-cris-low.c,
1474 linux-crisv32-low.c, linux-i386-low.c, linux-low.c,
1475 linux-mips-low.c, linux-s390-low.c, linux-sparc-low.c,
1476 linux-x86-64-low.c, linux-xtensa-low.c, proc-service.c,
1477 regcache.c, remote-utils.c, server.c, spu-low.c, target.h,
1478 thread-db.c, win32-low.c, xtensa-xtregs.c, gdbreplay.c,
1479 Makefile.in, configure.ac: Fix whitespace throughout.
1480 * configure: Regenerate.
1481
a07b2135
PA
14822009-03-22 Pedro Alves <pedro@codesourcery.com>
1483
1484 * inferiors.c (find_inferior): Make it safe for the callback
1485 function to delete the currently iterated inferior.
1486
67cc2626
PA
14872009-03-22 Pedro Alves <pedro@codesourcery.com>
1488
1489 * Makefile.in (linuw_low_h): Move higher.
1490 (thread-db.o): Depend on $(linux_low_h).
1491
54a0b537
PA
14922009-03-17 Pedro Alves <pedro@codesourcery.com>
1493
1494 Rename "process" to "lwp" throughout.
1495
1496 * linux-low.c (all_processes): Rename to...
1497 (all_lwps): ... this.
1498 (inferior_pid, handle_extended_wait, get_stop_pc): Adjust.
1499 (add_process): Rename to ...
1500 (add_lwp): ... this. Adjust.
1501 (linux_create_inferior): Adjust.
1502 (linux_attach_lwp): Adjust.
1503 (linux_attach): Adjust.
1504 (linux_kill_one_process): Rename to ...
1505 (linux_kill_one_lwp): ... this. Adjust.
1506 (linux_kill): Adjust.
1507 (linux_detach_one_process): Rename to ...
1508 (linux_detach_one_lwp): ... this. Adjust.
1509 (linux_detach): Adjust.
1510 (check_removed_breakpoint): Adjust.
1511 (status_pending_p): Adjust.
1512 (linux_wait_for_process): Rename to ...
1513 (linux_wait_for_lwp): ... this. Adjust.
1514 (linux_wait_for_event): Adjust.
1515 (send_sigstop): Adjust.
1516 (wait_for_sigstop): Adjust.
1517 (stop_all_processes): Rename to ...
1518 (stop_all_lwps): ... this.
1519 (linux_resume_one_process): Rename to ...
1520 (linux_resume_one_lwp): ... this. Adjust.
1521 (linux_set_resume_request, linux_continue_one_thread)
1522 (linux_queue_one_thread, resume_status_pending_p)
1523 (usr_store_inferior_registers, regsets_store_inferior_registers)
1524 (linux_request_interrupt, linux_read_offsets, linux_xfer_siginfo):
1525 Adjust.
1526 * linux-low.h (get_process): Rename to ...
1527 (get_lwp): ... this. Adjust.
1528 (get_thread_process): Rename to ...
1529 (get_thread_lwp): ... this. Adjust.
1530 (get_process_thread): Rename to ...
1531 (get_lwp_thread): ... this. Adjust.
1532 (struct process_info): Rename to ...
1533 (struct lwp_info): ... this.
1534 (all_processes): Rename to ...
1535 (all_lwps): ... this.
1536 * proc-service.c (ps_lgetregs): Adjust.
1537 * thread-db.c (thread_db_create_event, find_one_thread)
1538 (maybe_attach_thread, thread_db_get_tls_address): Adjust.
1539
0b16c5cf
PA
15402009-03-14 Pedro Alves <pedro@codesourcery.com>
1541
1542 * server.c (handle_query): Handle "qAttached".
1543
32de4b9d
NS
15442009-03-13 Nathan Sidwell <nathan@codesourcery.com>
1545
1546 * Makefile.in, hostio-errno.c, errno.c, xtensa-xtregs.c: Change to
1547 GPLv3, update license URL.
1548
2aecd87f
DE
15492009-03-01 Doug Evans <dje@google.com>
1550
93efd302 1551 * Makefile.in (INCLUDE_CFLAGS): Add -I$(srcdir)/../common.
2aecd87f
DE
1552 (server_h): Add gdb_signals.h.
1553 (signals.o): Update.
1554 * server.h (target_signal_from_host,target_signal_to_host_p)
1555 (target_signal_to_host,target_signal_to_name): Moved to gdb_signals.h.
1556
86b1f9c5
PM
15572009-02-14 Pierre Muller <muller@ics.u-strasbg.fr>
1558
1559 * remote-utils.c (getpkt): Also generate remote-debug
1560 information if noack_mode is set.
1561
4aa995e1
PA
15622009-02-06 Pedro Alves <pedro@codesourcery.com>
1563
1564 * server.c (handle_query): Report qXfer:siginfo:read and
1565 qXfer:siginfo:write as supported and handle them.
1566 * target.h (struct target_ops) <qxfer_siginfo>: New field.
1567 * linux-low.c (linux_xfer_siginfo): New.
1568 (linux_target_ops): Set it.
1569
62709adf
PA
15702009-01-26 Pedro Alves <pedro@codesourcery.com>
1571
1572 * server.c (gdbserver_usage): Mention --remote-debug.
1573 (main): Accept '--remote-debug' switch.
1574
aef93bd7
DE
15752009-01-18 Doug Evans <dje@google.com>
1576
1577 * regcache.c (new_register_cache): No need to check result of xcalloc.
1578 * server.c (handle_search_memory): Back out calls to xmalloc,
1579 result is checked and error is returned to user upon failure.
1580 (handle_query): Ditto. Add more checks for result of malloc.
1581 (handle_v_cont): Check result of malloc, report error back to
1582 user upon failure.
1583 (handle_v_run): Ditto. Call freeargv.
1584 * server.h (freeargv): Declare.
1585 * utils.c (freeargv): New fn.
1586
54363045
DE
15872009-01-15 Doug Evans <dje@google.com>
1588
f626972c
DE
1589 * gdbreplay.c (perror_with_name): Make arg const char *.
1590 * server.h (target_signal_to_name): Make return type const char *.
0842e787 1591 * thread-db.c (thread_db_err_str): Make return type const char *.
f626972c 1592 * utils.c (perror_with_name): Make arg const char *.
54363045 1593
18aae699
PA
15942009-01-14 Pedro Alves <pedro@codesourcery.com>
1595
1596 * win32-low.c (get_child_debug_event): Issue a final DBG_CONTINUE
1597 when handling a EXIT_PROCESS_DEBUG_EVENT.
1598
ff703abe
JB
15992009-01-06 Joel Brobecker <brobecker@adacore.com>
1600
1601 * gdbreplay.c (gdbreplay_version): Update copyright year.
1602 * server.c (gdbserver_version): Likewise.
1603
f21cc1a2 16042009-01-05 Doug Evans <dje@google.com>
0e21c1ec
DE
1605
1606 * linux-low.c (linux_attach_lwp): Add some comments/fixmes.
f21cc1a2 1607 (handle_extended_wait): Improve comment.
0e21c1ec 1608
bca929d3
DE
16092008-12-13 Doug Evans <dje@google.com>
1610
1611 * utils.c (xmalloc,xcalloc,xstrdup): New fns.
1612 * server.h (ATTR_MALLOC): New macro.
1613 (xmalloc,xcalloc,xstrdup): Declare.
1614 * hostio.c: Replace malloc,calloc,strdup with xmalloc,xcalloc,xstrdup.
1615 * inferiors.c: Ditto.
1616 * linux-low.c: Ditto.
1617 * mem-break.c: Ditto.
1618 * regcache.c: Ditto.
1619 * remote-utils.c: Ditto.
1620 * server.c: Ditto.
1621 * target.c: Ditto.
1622 * win32-low.c: Ditto.
1623
97438e3f
DE
16242008-12-12 Doug Evans <dje@google.com>
1625
896c7fbb
DE
1626 * linux-low.c (linux_wait_for_process): Don't clobber current_inferior
1627 in debugging printf.
1628
97438e3f
DE
1629 * linux-low.c (handle_extended_wait): Simplify, use my_waitpid.
1630
e3b886f8
DE
16312008-12-09 Doug Evans <dje@google.com>
1632
1633 * linux-low.h (struct process_info): Delete member tid, unused.
1634 * thread-db.c (find_one_thread): Update.
1635 (maybe_attach_thread): Update.
1636
07e059b5
VP
16372008-12-02 Pedro Alves <pedro@codesourcery.com>
1638
1639 * target.h (struct target_ops): Add qxfer_osdata member.
1640 * linux-low.c: Include ctype.h and pwd.h and sys/types.h
1641 and dirent.h.
1642 (linux_qxfer_osdata): New functions.
1643 (linux_target_ops): Register linux_qxfer_osdata as qxfer_osdata
1644 callback.
1645 * server.c (handle_query): Handle "qXfer:osdata:read:".
1646 * remote-utils.c (buffer_grow, buffer_free, buffer_init, buffer_finish)
1647 (buffer_xml_printf): New functions.
1648 * server.h (struct buffer): New.
1649 (buffer_grow_str, buffer_grow_str0): New macros.
1650 (buffer_grow, buffer_free, buffer_init, buffer_finish)
1651 (buffer_xml_printf): Declare.
1652
4cab47ab
DE
16532008-11-24 Doug Evans <dje@google.com>
1654
1655 * Makefile.in (VERSION,DIST,LINT,LINTFLAGS): Delete, unused.
1656
f142445f
DJ
16572008-11-24 Daniel Jacobowitz <dan@codesourcery.com>
1658
1659 * server.c (handle_v_run): Always use the supplied argument list.
1660
d0107bb6
BW
16612008-11-19 Bob Wilson <bob.wilson@acm.org>
1662
1663 * xtensa-xtregs.c (XTENSA_ELF_XTREG_SIZE): Change to 4.
1664 (xtensa_regmap_table): Add entry for scompare1.
1665
2c4ad781
TJB
16662008-11-18 Thiago Jung Bauermann <bauerman@br.ibm.com>
1667
1668 * Makefile.in (powerpc-isa205-32l.o, powerpc-isa205-32l.c,
1669 powerpc-isa205-altivec32l.o, powerpc-isa205-altivec32l.c,
1670 powerpc-isa205-vsx32l.o, powerpc-isa205-vsx32l.c,
1671 powerpc-isa205-64l.o, powerpc-isa205-64l.c,
1672 powerpc-isa205-altivec64l.o, powerpc-isa205-altivec64l.c,
1673 powerpc-isa205-vsx64l.o, powerpc-isa205-vsx64l.c): New targets.
1674 * configure.srv (powerpc*-*-linux*): Add ISA 2.05 object files and
1675 XML target descriptions.
1676 * linux-ppc-low.c (ppc_arch_setup): Init registers with 64-bit FPSCR
1677 when inferior is running on an ISA 2.05 or later processor. Add
1678 special case to return offset for full 64-bit slot of FPSCR when
1679 in 32-bits.
1680
dfb64f85
DJ
16812008-11-14 Daniel Gutson <dgutson@codesourcery.com>
1682
1683 * Makefile.in (SFILES, clean): Added sparc64 files.
1684 (reg-sparc64.o, reg-sparc64.c): New.
1685 * configure.srv (sparc*-*-linux*): New configuration.
1686 * linux-low.c (regsets_fetch_inferior_registers): Swap ptrace
1687 syscall arguments for SPARC.
1688 (regsets_store_inferior_registers): Likewise.
1689 * linux-sparc-low.c: New file.
1690
66b6e1dd
DE
16912008-10-21 Doug Evans <dje@google.com>
1692
1693 * Makefile.in (BFD_DIR,BFD,BFD_SRC,BFD_CFLAGS): Delete.
1694 (READLINE_DIR,READLINE_DEP): Delete.
1695 (INTERNAL_CFLAGS): Update.
1696 (LINTFLAGS): Update.
1697
9b710a42
PA
16982008-10-10 Pedro Alves <pedro@codesourcery.com>
1699
1700 * server.c (handle_v_run): If GDB didn't specify an argv, use the
1701 whole argv from the last run, not just argv[0].
1702
5822d809
PA
17032008-09-08 Pedro Alves <pedro@codesourcery.com>
1704
1705 * regcache.c (new_register_cache): Return NULL if the register
1706 cache size isn't known yet.
1707 (free_register_cache): Avoid dereferencing a NULL regcache.
1708
74aac56f
DJ
17092008-09-04 Daniel Jacobowitz <dan@codesourcery.com>
1710
1711 * configure.srv: Merge MIPS and MIPS64.
1712
400b20f5
MR
17132008-08-24 Maciej W. Rozycki <macro@linux-mips.org>
1714
1715 * Makefile.in (uninstall): Apply $(EXEEXT) too.
1716
677c5bb1
LM
17172008-08-18 Luis Machado <luisgpm@br.ibm.com>
1718
1719 * Makefile.in: Add required vsx dependencies.
1720
1721 * linux-ppc-low: Define PPC_FEATURE_HAS_VSX.
1722 Declare init_registers_powerpc_vsx32l.
1723 Declare init_registers_powerpc_vsx64l.
1724 Define PTRACE_GETVSXREGS and PTRACE_SETVSXREGS.
1725 (ppc_arch_setup): Check for VSX in hwcap.
1726 (ppc_fill_vsxregset): New function.
1727 (ppc_store_vsxregset): New function.
1728 Add new VSX entry in regset_info target_regsets.
1729
1730 * configure.srv: Add new VSX dependencies.
1731
a6f3e723
SL
17322008-08-12 Pedro Alves <pedro@codesourcery.com>
1733
1734 * remote-utils.c (noack_mode, transport_is_reliable): New globals.
1735 (remote_open): Set or clear transport_is_reliable.
1736 (putpkt_binary): Don't expect acks in noack mode.
1737 (getpkt): Don't send ack/nac in noack mode.
1738 * server.c (handle_general_set): Handle QStartNoAckMode.
1739 (handle_query): If connected by tcp pass QStartNoAckMode+ in
1740 qSupported.
1741 (main): Reset noack_mode on every connection.
1742 * server.h (noack_mode): Declare.
1743
a417dc56
RW
17442008-08-07 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
1745
1746 * Makefile.in (GDBREPLAY_OBS): New variable.
1747 (gdbreplay$(EXEEXT)): Use it to avoid unportable $^.
1748
3221518c
UW
17492008-08-05 Ulrich Weigand <uweigand@de.ibm.com>
1750 Daniel Jacobowitz <dan@codesourcery.com>
1751
1752 * linux-low.c (linux_resume_one_process): Ignore ESRCH.
1753 (usr_store_inferior_registers): Likewise.
1754 (regsets_store_inferior_registers): Likewise.
1755
ec56be1b
PA
17562008-07-31 Rolf Jansen <rj@surtec.com>
1757 Pedro Alves <pedro@codesourcery.com>
1758
1759 * configure.ac: Check for memmem declaration.
1760 * server.c [HAVE_MALLOC_H]: Include malloc.h.
1761 (disable_packet_vCont, disable_packet_Tthread, disable_packet_qC)
1762 (disable_packet_qfThreadInfo): Unconditionally compile.
1763 * server.h [!HAVE_DECL_MEMMEM]: Declare memmem.
1764 * configure, config.in: Regenerate.
1765
2fe5e3ff
DE
17662008-07-28 Doug Kwan <dougkwan@google.com>
1767
1768 * linux-low.c (sys/dir.h, sys/user.h): Remove includes.
1769 (linux_write_memory): Remove declaration of errno.
1770
836acd6d
UW
17712008-07-12 Ulrich Weigand <uweigand@de.ibm.com>
1772
1773 * linux-low.c (handle_extended_wait): Do not use "status"
1774 variable uninitialized.
1775
aeba519e
PA
17762008-07-07 Pedro Alves <pedro@codesourcery.com>
1777
1778 * server.c (handle_v_attach): Inhibit reporting dll changes.
1779
db42f210
PA
17802008-06-27 Pedro Alves <pedro@codesourcery.com>
1781
1782 * remote-utils.c (prepare_resume_reply): If requested, don't
1783 output "thread:TID" in the T stop reply.
1784
1785 * server.c (disable_packet_vCont, disable_packet_Tthread)
1786 (disable_packet_qC, disable_packet_qfThreadInfo): New globals.
1787 (handle_query): If requested, disable support for qC, qfThreadInfo
1788 and qsThreadInfo.
1789 (handle_v_requests): If requested, disable support for vCont.
1790 (gdbserver_show_disableable): New.
1791 (main): Handle --disable-packet and --disable-packet=LIST.
1792
1793 * server.h (disable_packet_vCont, disable_packet_Tthread)
1794 (disable_packet_qC, disable_packet_qfThreadInfo): Declare.
1795
8e4c5421
CD
17962008-06-20 Carlos O'Donell <carlos@codesourcery.com>
1797
1798 * server.c (gdbserver_usage): Mention --version.
1799
6e23a804
DJ
18002008-06-06 Daniel Jacobowitz <dan@codesourcery.com>
1801
1802 * Makefile.in (gdbreplay.o): New rule.
1803
90aa6a40
JM
18042008-06-06 Joseph Myers <joseph@codesourcery.com>
1805
1806 * gdbreplay.c (gdbreplay_version): Say gdbreplay in version
1807 message, not gdbserver.
1808
c16158bc
JM
18092008-06-05 Vladimir Prus <vladimir@codesourcery.com>
1810 Nathan Sidwell <nathan@codesourcery.com>
1811 Joseph Myers <joseph@codesourcery.com>
1812
1813 * acinclude.m4: Include ../../config/acx.m4.
1814 * configure.ac: Use ACX_PKGVERSION and ACX_BUGURL.
1815 * configure, config.in: Regenerate.
1816 * Makefile.in (gdbreplay$(EXEEXT)): Add version.o.
1817 * server.c (gdbserver_version): Print PKGVERSION.
1818 (gdbsrever_usage): Add stream parameter. Print REPORT_BUGS_TO.
1819 (main): Adjust gdbserver_usage calls.
1820 * gdbreplay.c (version, host_name): Add declarations.
1821 (gdbreplay_version, gdbreplay_usage): New.
1822 (main): Accept --version and --help options.
1823
aeb75bf5
DJ
18242008-06-04 Daniel Jacobowitz <dan@codesourcery.com>
1825
1826 * linux-arm-low.c (thumb_breakpoint, thumb_breakpoint_len): New.
1827 (arm_breakpoint_at): Handle Thumb.
1828 (the_low_target): Add comment.
1829
76b233dd
UW
18302008-05-29 Ulrich Weigand <uweigand@de.ibm.com>
1831
1832 * linux-ppc-low.c (ppc_collect_ptrace_register): Clear buffer.
1833
08388c79
DE
18342008-05-09 Doug Evans <dje@google.com>
1835
a3c83fae
DE
1836 * server.h (decode_search_memory_packet): Declare.
1837 * remote-utils.c (decode_search_memory_packet): New fn.
1838 * server.c (handle_search_memory_1): New fn.
08388c79
DE
1839 (handle_search_memory): New fn.
1840 (handle_query): Process qSearch:memory packets.
1841
bb9c3d36
UW
18422008-05-08 Ulrich Weigand <uweigand@de.ibm.com>
1843
1844 * regcache.c (registers_length): Remove.
1845 (set_register_cache): Verify that PBUFSIZ is large enough to hold a
1846 full register packet.
1847 * regcache.h (registers_length): Remove prototype.
1848 * server.h (PBUFSIZ): Define to 16384.
1849
7284e1be
UW
18502008-05-03 Ulrich Weigand <uweigand@de.ibm.com>
1851
1852 * configure.srv (powerpc*-*-linux*): Set srv_regobj to
1853 powerpc-32l.o, powerpc-altivec32l.o, powerpc-e500l.o,
1854 powerpc-64l.o, and powerpc-altivec64l.o.
1855 Remove rs6000/powerpc-32.xml, rs6000/powerpc-64.xml, and
1856 rs6000/powerpc-e500.xml; add rs6000/powerpc-32l.xml,
1857 rs6000/powerpc-altivec32l.xml, rs6000/powerpc-e500l.xml,
1858 rs6000/powerpc-64l.xml, rs6000/powerpc-altivec64l.xml,
1859 rs6000/power-linux.xml, and rs6000/power64-linux.xml
1860 to srv_xmlfiles.
1861
1862 * Makefile.in (reg-ppc.o, reg-ppc.c): Remove, replace by ...
1863 (powerpc-32l.o, powerpc-32l.c): ... these new rules.
1864 (powerpc-32.o, powerpc-32.c): Remove, replace by ...
1865 (powerpc-altivec32l.o, powerpc-altivec32l.c): ... these new rules.
1866 (powerpc-e500.o, powerpc-e500.c): Remove, replace by ...
1867 (powerpc-e500l.o, powerpc-e500l.c): ... these new rules.
1868 (reg-ppc64.o, reg-ppc64.c): Remove, replace by ...
1869 (powerpc-64l.o, powerpc-64l.c): ... these new rules.
1870 (powerpc-64.o, powerpc-64.c): Remove, replace by ...
1871 (powerpc-altivec64l.o, powerpc-altivec64l.c): ... these new rules.
1872 (clean): Update.
1873
1874 * linux-ppc-low.c (init_registers_ppc): Remove, replace by ...
1875 (init_registers_powerpc_32l): ... this new prototype.
1876 (init_registers_powerpc_32): Remove, replace by ...
1877 (init_registers_powerpc_altivec32l): ... this new prototype.
1878 (init_registers_powerpc_e500): Remove, replace by ...
1879 (init_registers_powerpc_e500l): ... this new prototype.
1880 (init_registers_ppc64): Remove, replace by ...
1881 (init_registers_powerpc_64l): ... this new prototype.
1882 (init_registers_powerpc_64): Remove, replace by ...
1883 (init_registers_powerpc_altivec64l): ... this new prototype.
1884 (ppc_num_regs): Set to 73.
1885 (PT_ORIG_R3, PT_TRAP): Define if necessary.
1886 (ppc_regmap, ppc_regmap_e500): Add values for orig_r3 and trap.
1887 (ppc_cannot_store_register): Handle orig_r3 and trap.
1888 (ppc_arch_setup): Update init_registers_... calls.
1889 (ppc_fill_gregset): Handle orig_r3 and trap.
1890
1891 * inferiors.c (clear_inferiors): Reset current_inferior.
1892
fdc59709
PB
18932008-04-23 Paolo Bonzini <bonzini@gnu.org>
1894
1895 * acinclude.m4: Add override.m4.
1896 * configure: Regenerate.
1897
c9b2f845
UW
18982008-04-21 Ulrich Weigand <uweigand@de.ibm.com>
1899
1900 * linux-ppc-low.c (ppc_arch_setup): Reset ppc_hwcap after the
1901 initial call to init_register_ppc64.
1902
550512b8
UW
19032008-04-21 Ulrich Weigand <uweigand@de.ibm.com>
1904
1905 * configure.srv (powerpc64-*-linux*, powerpc-*-linux*): Merge into single
1906 powerpc*-*-linux* case.
1907 (s390-*-linux*, s390x-*-linux*): Merge into single s390*-*-linux* case.
1908
b6430ec3
UW
19092008-04-17 Ulrich Weigand <uweigand@de.ibm.com>
1910
1911 * configure.srv [powerpc64-*-linux*]: Remove powerpc-e500.o from
1912 srv_regobj. Remove rs6000/powerpc-e500.xml and rs6000/power-spe.xml
1913 from reg_xmlfiles.
1914 * linux-ppc-low.c: Include <elf.h>.
1915 (PPC_FEATURE_HAS_ALTIVEC, PPC_FEATURE_HAS_SPE): Define.
1916 (ppc_hwcap): New global variable.
1917 (ppc_regmap): Remove __SPE__ #ifdef sections.
1918 (ppc_regmap_e500): New global variable.
1919 (ppc_cannot_store_register): Update __SPE__ special case.
1920 (ppc_get_hwcap): New function.
1921 (ppc_arch_setup): Use it to determine whether inferior supports
1922 AltiVec or SPE registers. Set the_low_target.regmap if appropriate.
1923 (ppc_fill_vrregset, ppc_store_vrregset): Define unconditionally.
1924 Do not access registers if target does not support AltiVec.
1925 (ppc_fill_evrregset, ppc_store_evrregset): Define unconditionally.
1926 Do not access registers if target does not support SPE.
1927 (target_regsets): Unconditionally include AltiVec and SPE regsets.
1928
52fa2412
UW
19292008-04-17 Daniel Jacobowitz <dan@codesourcery.com>
1930
1931 * linux-low.c (disabled_regsets, num_regsets): New.
1932 (use_regsets_p): Delete.
1933 (linux_wait_for_process): Clear disabled_regsets.
1934 (regsets_fetch_inferior_registers): Check and set it.
1935 (regsets_store_inferior_registers): Likewise.
1936 (linux_fetch_registers, linux_store_registers): Do not use
1937 use_regsets_p.
1938 (initialize_low): Allocate disabled_regsets.
1939
e28b3332
DJ
19402008-04-14 Daniel Jacobowitz <dan@codesourcery.com>
1941
1942 * Makefile.in (LIBOBJS): New.
1943 (OBS): Use LIBOBJS.
1944 (memmem.o): New rule.
1945 * configure.ac: Use AC_CONFIG_LIBOBJ_DIR and check for memmem.
1946 * configure: Regenerated.
1947
4536995d
UW
19482008-04-04 Ulrich Weigand <uweigand@de.ibm.com>
1949
1950 * server.c (handle_query): Never return "unsupported" for
1951 qXfer:features:read queries.
1952
221c031f
UW
19532008-03-27 Ulrich Weigand <uweigand@de.ibm.com>
1954
1955 * server.c (get_features_xml): Fix inverted condition.
1956 (handle_query): Always support qXfer:feature:read.
1957
ccd213ac
DJ
19582008-03-10 Daniel Jacobowitz <dan@codesourcery.com>
1959
1960 * server.c (wrapper_argv): New.
1961 (start_inferior): Handle wrapper_argv. If set, expect an extra
1962 trap.
1963 (gdbserver_usage): Document --wrapper.
1964 (main): Parse --wrapper.
1965
6fe305f7
UW
19662008-02-28 Ulrich Weigand <uweigand@de.ibm.com>
1967
1968 * configure.srv [powerpc64-*-linux*]: Add all files mentioned for
1969 powerpc-*-linux* to srv_regobj and reg_xmlfiles.
1970 * linux-ppc-low.c (ppc_get_pc): Support bi-arch operation.
1971 (ppc_set_pc): Likewise.
1972 (ppc_arch_setup): New function.
1973 (ppc_fill_gregset): Call ppc_collect_ptrace_register instead
1974 of collect_register.
1975 (the_low_target): Use ppc_arch_setup as arch_setup initializer.
1976
5b0a002e
UW
19772008-02-28 Ulrich Weigand <uweigand@de.ibm.com>
1978
1979 * configure.srv [powerpc64-*-linux*]: Use linux-ppc-low.o
1980 instead of linux-ppc64-low.o.
1981 * linux-ppc64-low.c: Remove file.
1982 * Makefile.in (SFILES): Remove linux-ppc64-low.c.
1983 (linux-ppc64-low.o): Remove rule.
1984
1985 * linux-ppc-low.c (init_registers_ppc64): Add prototype.
1986 (init_registers_powerpc_64): Likewise.
1987 (ppc_regmap): Conditionally define depending on __powerpc64__.
1988 (ppc_cannot_store_register): Do not special-case "fpscr" when
1989 compiled on __powerpc64__.
1990 (ppc_collect_ptrace_register): New function.
1991 (ppc_supply_ptrace_register): New function.
1992 (ppc_breakpoint): Change type to "unsigned int".
1993 (ppc_breakpoint_at): Change type of "insn" to "unsigned int".
1994 (the_low_target): Conditionally provide initializers for the
1995 arch_setup member depending on __powerpc64__. Install
1996 collect_ptrace_register and supply_ptrace_register members.
1997
9b4b61c8
UW
19982008-02-28 Ulrich Weigand <uweigand@de.ibm.com>
1999
2000 * regcache.h (gdbserver_xmltarget): Add extern declaration.
2001 * server.c (gdbserver_xmltarget): Define.
2002 (get_features_xml): Use it to replace "target.xml" and arch_string.
2003
2004 * configure.srv: Remove srv_xmltarget. Add XML files that were
2005 mentioned there to srv_xmlfiles instead. Remove conditional tests
2006 on gdb_cv_arm_iwmmxt, gdb_cv_ppc_altivec, gdb_cv_ppc_spe; set
2007 srv_xmlfiles and srv_regobj to include all possible choices.
2008 * configure.ac (srv_xmltarget): Remove.
2009 (srv_xmlfiles): Do not add "target.xml".
2010 (gdb_cv_arm_iwmmxt, gdb_cv_ppc_altivec, gdb_cv_ppc_spe): Remove
2011 checks for supplementary target information.
2012 * configure: Regenerate.
2013 * Makefile.in (XML_TARGET): Remove.
2014 (target.xml): Remove rule.
2015 (clean): Do not clean up target.xml.
2016 (.PRECIOUS): Do not mention target.xml.
2017
2018 * target.h (struct target_ops): Remove arch_string member.
2019 * linux-low.c (linux_arch_string): Remove.
2020 (linux_target_ops): Remove arch_string initializer.
2021 * linux-low.h (struct linux_target_ops): Remove arch_string member.
2022 * linux-i386-low.c (the_low_target): Remove arch_string initializer.
2023 * linux-x86-64-low.c (the_low_target): Remove arch_string initializer.
2024 * spu-low.c (spu_arch_string): Remove.
2025 (spu_target_ops): Remove arch_string initializer.
2026 * win32-low.c (win32_arch_string): Remove.
2027 (win32_target_ops): Remove arch_string initializer.
2028 * win32-low.h (struct win32_target_ops): Remove arch_string member.
2029 * win32-arm-low.c (the_low_target): Remove arch_string initializer.
2030 * win32-i368-low.c (the_low_target): Remove arch_string initializer.
2031
ee1a7ae4
UW
20322008-02-27 Ulrich Weigand <uweigand@de.ibm.com>
2033
2034 * linux-low.h (struct linux_target_ops): Replace left_pad_xfer field
2035 by collect_ptrace_register and supply_ptrace_register hooks.
2036 * linux-low.c (fetch_register): Use supply_ptrace_register callback
2037 instead of checking for the_low_target.left_pad_xfer.
2038 (usr_store_inferior_registers): Use collect_ptrace_register callback
2039 instead of checking for the_low_target.left_pad_xfer.
2040
2041 * linux-s390-low.c (s390_collect_ptrace_register): New function.
2042 (s390_supply_ptrace_register): Likewise.
2043 (s390_fill_gregset): Call s390_collect_ptrace_register.
2044 (the_low_target): Update.
2045
2046 * linux-ppc64-low.c (ppc_collect_ptrace_register): New function.
2047 (ppc_supply_ptrace_register): Likewise.
2048 (the_low_target): Update.
2049
2050 * linux-i386-low.c (the_low_target): Update.
2051 * linux-x86-64-low.c (the_low_target): Update.
2052
d61ddec4
UW
20532008-02-27 Ulrich Weigand <uweigand@de.ibm.com>
2054
2055 * configure.srv [s390x-*-linux*]: Set srv_regobj to include both
2056 reg-s390.o and reg-s390x.o.
2057
2058 * linux-low.c (new_inferior): New global variable.
2059 (linux_create_inferior, linux_attach): Set it.
2060 (linux_wait_for_process): Call the_low_target.arch_setup after the
2061 target has stopped for the first time.
2062 (initialize_low): Do not call the_low_target.arch_setup.
2063
2064 * linux-s390-low.c (s390_get_pc): Support bi-arch operation.
2065 (s390_set_pc): Likewise.
2066 (s390_arch_setup): New function.
2067 (the_low_target): Use s390_arch_setup as arch_setup routine.
2068
2069 * regcache.c (realloc_register_cache): New function.
2070 (set_register_cache): Call it for each existing regcache.
2071
d05b4ac3
UW
20722008-02-27 Ulrich Weigand <uweigand@de.ibm.com>
2073
2074 * server.h (init_registers): Remove prototype.
2075
2076 * linux-low.h (struct linux_target_ops): Add arch_setup field.
2077 * linux-low.c (initialize_low): Call the_low_target.arch_setup ()
2078 instead of init_registers ().
2079 * linux-arm-low.c (init_registers_arm): Add prototype.
2080 (init_registers_arm_with_iwmmxt): Likewise.
2081 (the_low_target): Add initializer for arch_setup field.
2082 * linux-cris-low.c (init_registers_cris): Add prototype.
2083 (the_low_target): Add initializer for arch_setup field.
2084 * linux-crisv32-low.c (init_registers_crisv32): Add prototype.
2085 (the_low_target): Add initializer for arch_setup field.
2086 * linux-i386-low.c (init_registers_i386_linux): Add prototype.
2087 (the_low_target): Add initializer for arch_setup field.
2088 * linux-ia64-low.c (init_registers_ia64): Add prototype.
2089 (the_low_target): Add initializer for arch_setup field.
2090 * linux-m32r-low.c (init_registers_m32r): Add prototype.
2091 (the_low_target): Add initializer for arch_setup field.
2092 * linux-m68k-low.c (init_registers_m68k): Add prototype.
2093 (the_low_target): Add initializer for arch_setup field.
2094 * linux-mips-low.c (init_registers_mips_linux): Add prototype.
2095 (init_registers_mips64_linux): Likewise.
2096 (the_low_target): Add initializer for arch_setup field.
2097 * linux-ppc-low.c (init_registers_ppc): Add prototype.
2098 (init_registers_powerpc_32, init_registers_powerpc_e500): Likewise.
2099 (the_low_target): Add initializer for arch_setup field.
2100 * linux-ppc64-low.c (init_registers_ppc64): Add prototype.
2101 (init_registers_powerpc_64): Likewise.
2102 (the_low_target): Add initializer for arch_setup field.
2103 * linux-s390-low.c (init_registers_s390): Add prototype.
2104 (init_registers_s390x): Likewise.
2105 (the_low_target): Add initializer for arch_setup field.
2106 * linux-sh-low.c (init_registers_sh): Add prototype.
2107 (the_low_target): Add initializer for arch_setup field.
2108 * linux-x86-64-low.c (init_registers_x86_64_linux): Add prototype.
2109 (the_low_target): Add initializer for arch_setup field.
2110 * linux-xtensa-low.c (init_registers_xtensa): Add prototype.
2111 (the_low_target): Add initializer for arch_setup field.
2112
2113 * win32-low.h (struct win32_target_ops): Add arch_setup field.
2114 * win32-low.c (initialize_low): Call the_low_target.arch_setup ()
2115 instead of init_registers ().
2116 * win32-arm-low.c (init_registers_arm): Add prototype.
2117 (the_low_target): Add initializer for arch_setup field.
2118 * win32-i386-low.c (init_registers_i386): Add prototype.
2119 (the_low_target): Add initializer for arch_setup field.
2120
2121 * spu-low.c (init_registers_spu): Add prototype.
2122 (initialize_low): Call initialie_registers_spu () instead of
2123 initialize_registers ().
2124
fd96d250
PA
21252008-02-19 Pedro Alves <pedro@codesourcery.com>
2126
2127 * server.c (handle_v_requests): When handling the vRun and vAttach
2128 packets, if already debugging a process, don't kill it. Return an
2129 error instead.
2130
d41b6bb4
DJ
21312008-02-17 Daniel Jacobowitz <dan@codesourcery.com>
2132
2133 * server.c (handle_query): Correct length check.
2134
5ac588cf
PA
21352008-02-14 Pedro Alves <pedro_alves@portugalmail.pt>
2136
2137 * win32-low.c (do_initial_child_stuff): Add process handle
2138 parameter. Set current_process_handle and current_process_id from the
2139 parameters. Clear globals.
2140 (win32_create_inferior): Don't set current_process_handle and
2141 current_process_id here. Instead pass them on the call to
2142 do_initial_child_stuff.
2143 (win32_attach): Likewise.
2144 (win32_clear_inferiors): New.
2145 (win32_kill): Don't close the current process handle or the
2146 current thread handle here. Instead call win32_clear_inferiors.
2147 (win32_detach): Don't open a new handle to the process. Call
2148 win32_clear_inferiors.
2149 (win32_join): Don't rely on current_process_handle; open a new
2150 handle using the process id.
2151 (win32_wait): Call win32_clear_inferiors when the inferior process
2152 has exited.
2153
ecd7ecbc
DJ
21542008-02-14 Daniel Jacobowitz <dan@codesourcery.com>
2155
2156 * server.c (monitor_show_help): Add "exit".
2157
1525d545
MG
21582008-02-11 Maxim Grigoriev <maxim2405@gmail.com>
2159
ecd7ecbc 2160 * Makefile.in (SFILES): Add linux-xtensa-low.c.
1525d545
MG
2161 (clean): Add reg-xtensa.c.
2162 (linux-xtensa-low.o, reg-xtensa.o, reg-xtensa.c): New dependencies.
ecd7ecbc
DJ
2163 * configure.srv (xtensa*-*-linux*) New target.
2164 * linux-xtensa-low.c: New.
2165 * xtensa-xtregs.c: New.
1525d545 2166
59a016f0
PA
21672008-02-01 Pedro Alves <pedro_alves@portugalmail.pt>
2168
2169 * hostio.c: Don't include errno.h.
2170 (errno_to_fileio_errno): Move to hostio-errno.
2171 * hostio.c: (hostio_error): Remove the error parameter. Defer the
2172 error number outputting to the target->hostio_last_error callback.
2173 (hostio_packet_error): Use FILEIO_EINVAL directly.
2174 (handle_open, handle_pread, hostio_error, handle_unlink): Update
2175 calls to hostio_error.
2176 * hostio-errno.c: New.
2177 * server.h (hostio_last_error_from_errno): Declare.
2178 * target.h (target_ops): Add hostio_last_error member.
2179 * linux-low.c (linux_target_op): Register hostio_last_error_from_errno
2180 as hostio_last_error handler.
2181 * spu-low.c (spu_target_ops): Likewise.
2182 * win32-low.c [_WIN32_WCE] (win32_error_to_fileio_error)
2183 (wince_hostio_last_error): New functions.
2184 (win32_target_ops) [_WIN32_WCE]: Register wince_hostio_last_error
2185 as hostio_last_error handler.
2186 (win32_target_ops) [!_WIN32_WCE]: Register
2187 hostio_last_error_from_errno as hostio_last_error handler.
2188 * Makefile.in (SFILES): Add hostio.c and hostio-errno.c.
2189 (hostio-errno.o): New rule.
2190 * configure.ac (GDBSERVER_DEPFILES): Add $srv_hostio_err_objs.
2191 * configure.srv (srv_hostio_err_objs): New variable. Default to
2192 hostio-errno.o.
2193 (arm*-*-mingw32ce*): Set srv_hostio_err_objs to "".
2194 * configure: Regenerate.
2195
2d717e4f
DJ
21962008-01-29 Daniel Jacobowitz <dan@codesourcery.com>
2197
2198 * linux-low.c (linux_attach_lwp): Do not _exit after errors.
2199 (linux_kill, linux_detach): Clean up the process list.
2200 * remote-utils.c (remote_open): Improve port number parsing.
2201 (putpkt_binary, input_interrupt): Only send interrupts if the target
2202 is running.
2203 * server.c (extended_protocol): Make static.
2204 (attached): Define earlier.
2205 (exit_requested, response_needed, program_argv): New variables.
2206 (target_running): New.
2207 (start_inferior): Clear attached here.
2208 (attach_inferior): Set attached here.
2209 (require_running): Define.
2210 (handle_query): Use require_running and target_running. Implement
2211 "monitor exit".
2212 (handle_v_attach, handle_v_run): New.
2213 (handle_v_requests): Use require_running. Handle vAttach and vRun.
2214 (gdbserver_usage): Update.
2215 (main): Redo argument parsing. Handle --debug and --multi. Handle
2216 --attach along with other options or after the port. Save
2217 program_argv. Support no initial program. Resynchronize
2218 communication with GDB after an error. Handle "monitor exit".
2219 Use require_running and target_running. Always allow the extended
2220 protocol. Do not error out for Hc0 or Hc-1. Do not automatically
2221 restart in extended mode.
2222 * README: Refer to the GDB manual. Update --attach usage.
2223
7407e2de
AS
22242007-12-20 Andreas Schwab <schwab@suse.de>
2225
2226 * linux-low.c (STACK_SIZE): Define.
2227 (linux_tracefork_child): Use it. Use __clone2 on ia64.
2228 (linux_test_for_tracefork): Likewise.
2229
b65d95c5
DJ
22302007-12-18 Daniel Jacobowitz <dan@codesourcery.com>
2231
2232 * linux-low.c (linux_wait_for_event): Update messages. Do not
2233 reinsert auto-delete breakpoints.
2234 * mem-break.c (struct breakpoint): Change return type of handler to
2235 int.
2236 (set_breakpoint_at): Update handler type.
2237 (reinsert_breakpoint_handler): Return 1 instead of calling
2238 delete_breakpoint.
2239 (reinsert_breakpoint_by_bp): Check for the original breakpoint before
2240 setting a new one.
2241 (check_breakpoints): Delete auto-delete breakpoints and return 2.
2242 * mem-break.h (set_breakpoint_at): Update handler type.
2243 * thread-db.c (thread_db_create_event, thread_db_create_event): Update.
2244 * win32-low.c (auto_delete_breakpoint): New.
2245 (get_child_debug_event): Use it.
2246
4e799345
DJ
22472007-12-16 Daniel Jacobowitz <dan@codesourcery.com>
2248
2249 * configure.ac: Check for pread and pwrite.
2250 * hostio.c (handle_pread): Fall back to lseek and read.
2251 (handle_pwrite): Fall back to lseek and write.
2252 * config.in, configure: Regenerated.
2253
27524b67
DJ
22542007-12-07 Daniel Jacobowitz <dan@codesourcery.com>
2255
2256 * server.c (myresume): Add own_buf argument.
2257 (main): Update calls.
2258
a20d5e98
DJ
22592007-12-06 Daniel Jacobowitz <dan@codesourcery.com>
2260
2261 * linux-low.c (linux_wait, linux_resume): Do not handle async I/O.
2262 * remote-utils.c (remote_open): Do not call disable_async_io.
2263 (block_async_io): Delete.
2264 (unblock_async_io): Make static.
2265 (initialize_async_io): New.
2266 * server.c (handle_v_cont): Handle async I/O here.
2267 (myresume): Likewise. Move other common resume tasks here...
2268 (main): ... from here. Call initialize_async_io. Disable async
2269 I/O before the main loop.
2270 * server.h (initialize_async_io): Declare.
2271 (block_async_io, unblock_async_io): Delete prototypes.
2272 * spu-low.c (spu_resume, spu_wait): Do not handle async I/O here.
2273
b79d787e
DJ
22742007-12-06 Mick Davis <mickd@goanna.iinet.net.au>
2275
2276 * remote-utils.c (readchar): Allow binary data in received messages.
2277
d97903b2
PA
22782007-12-03 Pedro Alves <pedro_alves@portugalmail.pt>
2279
2280 * win32-low.c (attaching): New global.
2281 (win32_create_inferior): Clear the `attaching' global.
2282 (win32_attach): Set the `attaching' global.
2283 (get_child_debug_event) [_WIN32_WCE]: Stop the inferior when
2284 attaching. Only set a breakpoint at the entry point if not
2285 attaching.
2286
311de423
PA
22872007-12-03 Pedro Alves <pedro_alves@portugalmail.pt>
2288
2289 * server.c (main): Don't report dll events on the initial
2290 connection on attaches.
2291
6c2d16d2
PA
22922007-12-03 Pedro Alves <pedro_alves@portugalmail.pt>
2293
2294 * server.c (main): Relax numerical bases supported for the pid of
2295 the --attach command line argument.
2296
5ca906e6
PA
22972007-12-03 Pedro Alves <pedro_alves@portugalmail.pt>
2298
2299 * win32-low.c (win32_attach): Call OpenProcess before
2300 DebugActiveProcess, not after. Add last error output to error
2301 call.
2302
9c6c8194
PA
23032007-12-03 Pedro Alves <pedro_alves@portugalmail.pt>
2304
2305 * win32-low.c (win32_get_thread_context)
2306 (win32_set_thread_context): New functions.
2307 (thread_rec): Use win32_get_thread_context.
2308 (continue_one_thread, win32_resume): Use win32_set_thread_context.
2309 * win32-low.h (win32_thread_info) [_WIN32_WCE]: Add `base_context'
2310 field.
2311
4d5d1aaa
PA
23122007-12-03 Leo Zayas
2313 Pedro Alves <pedro_alves@portugalmail.pt>
2314
2315 * win32-low.c (soft_interrupt_requested, faked_breakpoint): New
2316 global variables.
2317 (child_add_thread): Minor cleanup.
2318 (child_continue): Resume artificially suspended threads before
2319 calling ContinueDebugEvent.
2320 (suspend_one_thread): New.
2321 (fake_breakpoint_event): New.
2322 (get_child_debug_event): Change return type to int. Check here if
2323 gdb sent an interrupt request. If a soft interrupt was requested,
2324 fake a breakpoint event. Return 0 if there is no event to handle,
2325 and 1 otherwise.
2326 (win32_wait): Don't check here if gdb sent an interrupt request.
2327 Ensure there is a valid event to handle.
2328 (win32_request_interrupt): Add soft interruption method as last
2329 resort.
2330
c436e841
PA
23312007-12-03 Leo Zayas
2332 Pedro Alves <pedro_alves@portugalmail.pt>
2333
2334 * win32-low.h (win32_thread_info): Add descriptions to the
2335 structure members. Replace `suspend_count' counter by a
2336 `suspended' flag.
2337 * win32-low.c (thread_rec): Update condition of when to get the
2338 context from the inferior. Rely on ContextFlags being set if it
2339 has already been retrieved. Only suspend the inferior thread if
2340 we haven't already. Warn if that fails.
2341 (continue_one_thread): s/suspend_count/suspended/. Only call
2342 ResumeThread once. Warn if that fails.
2343
e7b5fa67
PA
23442007-12-02 Pedro Alves <pedro_alves@portugalmail.pt>
2345
2346 * win32-low.c (win32_wait): Don't read from the inferior when it
2347 has already exited.
2348
a385171d
PA
23492007-12-02 Pedro Alves <pedro_alves@portugalmail.pt>
2350
2351 * Makefile.in (win32_low_h): New variable.
2352 (win32-low.o): Add dependency on $(win32_low_h).
2353 (win32-arm-low.o, win32-i386-low.o): New rules.
2354
f80c84b3
DJ
23552007-11-30 Daniel Jacobowitz <dan@codesourcery.com>
2356
2357 * hostio.c: Correct copyright year.
2358
a6b151f1
DJ
23592007-11-30 Daniel Jacobowitz <dan@codesourcery.com>
2360
2361 * Makefile.in (OBS): Add hostio.o.
2362 (hostio.o): New rule.
2363 * server.h (handle_vFile): Declare.
2364 * hostio.c: New file.
2365 * server.c (handle_v_requests): Take packet_len and new_packet_len
2366 for binary packets. Call handle_vFile.
2367 (main): Update call to handle_v_requests.
2368
f9387fc3
DJ
23692007-11-05 Daniel Jacobowitz <dan@codesourcery.com>
2370
2371 * linux-low.c: Include <sched.h>.
2372
51c2684e
DJ
23732007-11-01 Daniel Jacobowitz <dan@codesourcery.com>
2374
2375 * linux-low.c (linux_tracefork_grandchild): New.
2376 (linux_tracefork_child): Use clone.
2377 (linux_test_for_tracefork): Use clone; allocate and free a stack.
2378
75f83163
JB
23792007-10-31 Joel Brobecker <brobecker@adacore.com>
2380
2381 * Makefile.in: Use $(SHELL) instead of "sh" to call regdat.sh.
2382
da5898ce
DJ
23832007-10-24 Daniel Jacobowitz <dan@codesourcery.com>
2384
2385 * linux-low.c (handle_extended_wait): Handle unexpected signals.
2386
24a09b5f
DJ
23872007-10-23 Daniel Jacobowitz <dan@codesourcery.com>
2388
2389 * inferiors.c (change_inferior_id): Delete.
2390 (add_pid_to_list, pull_pid_from_list): New.
2391 * linux-low.c (PTRACE_SETOPTIONS, PTRACE_GETEVENTMSG)
2392 (PTRACE_O_TRACESYSGOOD, PTRACE_O_TRACEFORK, PTRACE_O_TRACEVFORK)
2393 (PTRACE_O_TRACECLONE, PTRACE_O_TRACEEXEC, PTRACE_O_TRACEVFORKDONE)
2394 (PTRACE_O_TRACEEXIT, PTRACE_EVENT_FORK, PTRACE_EVENT_VFORK)
2395 (PTRACE_EVENT_CLONE, PTRACE_EVENT_EXEC, PTRACE_EVENT_VFORK_DONE)
2396 (PTRACE_EVENT_EXIT, __WALL): Provide default definitions.
2397 (stopped_pids, thread_db_active, must_set_ptrace_flags): New variables.
2398 (using_threads): Always set to 1.
2399 (handle_extended_wait): New.
2400 (add_process): Do not set TID.
2401 (linux_create_inferior): Set must_set_ptrace_flags.
2402 (linux_attach_lwp): Remove TID argument. Do not check using_threads.
2403 Use PTRACE_SETOPTIONS. Call new_thread_notify. Update all callers.
2404 (linux_thread_alive): Rename TID argument to LWPID.
2405 (linux_wait_for_process): Handle unknown processes. Do not use TID.
2406 (linux_wait_for_event): Do not use TID or check using_threads. Update
2407 call to dead_thread_notify. Call handle_extended_wait.
2408 (linux_create_inferior): Use PTRACE_SETOPTIONS.
2409 (send_sigstop): Delete sigstop_sent.
2410 (wait_for_sigstop): Avoid TID.
2411 (linux_supports_tracefork_flag, linux_tracefork_child, my_waitpid)
2412 (linux_test_for_tracefork): New.
2413 (linux_lookup_signals): Use thread_db_active and
2414 linux_supports_tracefork_flag.
2415 (initialize_low): Use thread_db_active and linux_test_for_tracefork.
2416 * linux-low.h (get_process_thread): Avoid TID.
2417 (struct process_ifo): Move thread_known and tid to the end. Remove
2418 sigstop_sent.
2419 (linux_attach_lwp, thread_db_init): Update prototypes.
2420 * server.h (change_inferior_id): Delete prototype.
2421 (add_pid_to_list, pull_pid_from_list): New prototypes.
2422 * thread-db.c (thread_db_use_events): New.
2423 (find_first_thread): Rename to...
2424 (find_one_thread): ...this. Update callers and messages. Do not
2425 call fatal. Check thread_db_use_events. Do not call
2426 change_inferior_id or new_thread_notify.
2427 (maybe_attach_thread): Update. Do not call new_thread_notify.
2428 (thread_db_init): Set thread_db_use_events. Check use_events.
2429 * utils.c (fatal, warning): Correct message prefix.
2430
30ed0a8f
DJ
24312007-10-15 Daniel Jacobowitz <dan@codesourcery.com>
2432
2433 * Makefile.in (clean): Remove new files.
2434 (powerpc-32.o, powerpc-32.c, powerpc-e500.o, powerpc-e500.c)
2435 (powerpc-64.o, powerpc-64.c): New rules.
2436 * configure.srv: Use alternate register sets for powerpc64-*-linux*
2437 with AltiVec, powerpc-*-linux* with AltiVec, and powerpc-*-linux*
2438 with SPE.
2439 * linux-ppc-low.c (ppc_regmap): Do not fetch the FP registers for
2440 SPE targets.
2441 (ppc_cannot_store_register): Do not check for FPSCR for SPE targets.
2442 (PTRACE_GETVRREGS, PTRACE_SETVRREGS, SIZEOF_VRREGS, ppc_fill_vrregset)
2443 (ppc_store_vrregset, PTRACE_GETEVRREGS, PTRACE_SETEVRREGS)
2444 (struct gdb_evrregset_t, ppc_fill_evrregset, ppc_store_evrregset): New.
2445 (target_regsets): Add AltiVec and SPE register sets.
2446 * configure.ac: Check for AltiVec and SPE.
2447 * linux-ppc64-low.c (PTRACE_GETVRREGS, PTRACE_SETVRREGS, SIZEOF_VRREGS)
2448 (ppc_fill_vrregset, ppc_store_vrregset): New.
2449 (target_regsets): Add AltiVec register set.
2450 * configure: Regenerated.
2451
fd462a61
DJ
24522007-09-19 Daniel Jacobowitz <dan@codesourcery.com>
2453
2454 * linux-low.c (O_LARGEFILE): Define.
2455 (linux_read_memory): Use /proc/PID/mem.
2456 * configure.ac: Use AC_GNU_SOURCE. Check for pread64.
2457 * configure, config.in: Regenerated.
2458
69f223ed
DJ
24592007-09-04 Daniel Jacobowitz <dan@codesourcery.com>
2460
2461 * linux-low.c (linux_wait_for_event): Do not pass signals while
2462 single-stepping.
2463
aec18585
PA
24642007-09-03 Pedro Alves <pedro_alves@portugalmail.pt>
2465
2466 * win32-low.c (create_process): New.
2467 (win32_create_inferior): Use create_process instead of
2468 CreateProcess. If create_process failed retry appending an ".exe"
2469 suffix. Store the GetLastError result immediatelly after
2470 create_process calls and use it on the call to error.
2471
34d86ddd
PA
24722007-09-03 Pedro Alves <pedro_alves@portugalmail.pt>
2473
2474 * win32-low.c (handle_load_dll): Don't use toolhelp when waiting.
2475
5a0e3bd0
JB
24762007-08-23 Joel Brobecker <brobecker@adacore.com>
2477
2478 * configure.ac: Switch license to GPLv3.
2479
f88c79e6
MS
24802007-08-01 Michael Snyder <msnyder@access-company.com>
2481
2482 * remote-utils.c (putpkt_binary): Memory leak, free buf2.
2483
6b3d9b83
PA
24842007-07-31 Pedro Alves <pedro_alves@portugalmail.pt>
2485
2486 * win32-low.c (winapi_CloseToolhelp32Snapshot) [_WIN32_WCE]: New
2487 typedef.
2488 (win32_CloseToolhelp32Snapshot) [_WIN32_WCE]: New global var.
2489 (load_toolhelp) [_WIN32_WCE]: Load TOOLHELP.DLL. Get
2490 CloseToolhelp32Snapshot.
2491 (toolhelp_get_dll_name) [_WIN32_WCE]: Close the snapshot with
2492 CloseToolhelp32Snapshot.
2493
c588c53c
MS
24942007-07-27 Michael Snyder <michael.snyder@access-company.com>
2495
2496 * server.c (main): Check for inferior exit before main loop.
2497
aa0403d9
PA
24982007-07-18 Pedro Alves <pedro_alves@portugalmail.pt>
2499
2500 * remote-utils.c (remote_open): Set SO_KEEPALIVE on remote_desc
2501 instead of on tmp_desc.
2502
255e7678
DJ
25032007-07-17 Pedro Alves <pedro_alves@portugalmail.pt>
2504 Daniel Jacobowitz <dan@codesourcery.com>
2505
2506 * inferiors.c (all_dlls, dlls_changed, get_dll): New.
2507 (add_thread): Minor cleanups.
2508 (clear_inferiors): Move lower in the file. Clear the DLL
2509 list.
2510 (free_one_dll, match_dll, loaded_dll, unloaded_dll, clear_list): New.
2511 * remote-utils.c (prepare_resume_reply): Check dlls_changed.
2512 (xml_escape_text): New.
2513 * server.c (handle_query): Handle qXfer:libraries:read. Report it
2514 for qSupported.
2515 (handle_v_cont): Report errors.
2516 (gdbserver_version): Update.
2517 (main): Correct size of own_buf. Do not report initial DLL events.
2518 * server.h (struct dll_info, all_dlls, dlls_changed, loaded_dll)
2519 (unloaded_dll, xml_escape_text): New.
2520 * win32-low.c (enum target_waitkind): Update comments.
2521 (win32_add_one_solib, get_image_name, winapi_EnumProcessModules)
2522 (winapi_GetModuleInformation, winapi_GetModuleFileNameExA)
2523 (win32_EnumProcessModules, win32_GetModuleInformation)
2524 (win32_GetModuleFileNameExA, load_psapi, psapi_get_dll_name)
2525 (winapi_CreateToolhelp32Snapshot, winapi_Module32First)
2526 (winapi_Module32Next, win32_CreateToolhelp32Snapshot)
2527 (win32_Module32First, win32_Module32Next, load_toolhelp)
2528 (toolhelp_get_dll_name, handle_load_dll, handle_unload_dll): New.
2529 (get_child_debug_event): Handle DLL events.
2530 (win32_wait): Likewise.
2531
0d37add9
DJ
25322007-07-12 Daniel Jacobowitz <dan@codesourcery.com>
2533
2534 * configure.srv: Set srv_linux_regsets for sh*-*-linux*.
2535 * linux-sh-low.c (sh_fill_gregset, target_regsets): New.
2536
45e2715e
PA
25372007-07-08 Pedro Alves <pedro_alves@portugalmail.pt>
2538
2539 * win32-low.c (handle_output_debug_string): Ignore event if not
2540 waiting.
2541
c5674cf1
PA
25422007-07-08 Pedro Alves <pedro_alves@portugalmail.pt>
2543
2544 * win32-arm-low.c (arm_wince_breakpoint): Fix typo.
2545
2bbe3cc1
DJ
25462007-07-03 Daniel Jacobowitz <dan@codesourcery.com>
2547
2548 * remote-utils.c (look_up_one_symbol): Handle 'm' packets.
2549
ae13219e
DJ
25502007-07-02 Daniel Jacobowitz <dan@codesourcery.com>
2551
2552 * inferiors.c (change_inferior_id): Add comment.
2553 * linux-low.c (check_removed_breakpoint): Add an early
2554 prototype. Improve debug output.
2555 (linux_attach): Doc update.
2556 (linux_detach_one_process, linux_detach): Clean up before releasing
2557 each process.
2558 (send_sigstop, wait_for_sigstop): Improve comments and debug output.
2559 * linux-low.h (struct process_info): Doc improvement.
2560 * mem-break.c (delete_all_breakpoints): New.
2561 * mem-break.h (delete_all_breakpoints): New prototype.
2562 * thread-db.c (find_first_thread): New.
2563 (thread_db_create_event): Call it instead of
2564 thread_db_find_new_threads. Clean up unused variables.
2565 (maybe_attach_thread): Remove first thread handling.
2566 (thread_db_find_new_threads): Use find_first_thread.
2567 (thread_db_get_tls_address): Likewise.
2568
4105de34
DJ
25692007-06-27 Daniel Jacobowitz <dan@codesourcery.com>
2570
2571 * thread-db.c (thread_db_find_new_threads): Add prototype.
2572 (thread_db_create_event): Check for the main thread before adding
2573 a new thread.
2574 (maybe_attach_thread): Only enable event reporting if TID == 0.
2575 (thread_db_get_tls_address): Check for new threads.
2576
2b876972
DJ
25772007-06-20 Daniel Jacobowitz <dan@codesourcery.com>
2578
2579 * linux-low.c (linux_create_inferior): Try execv before execvp.
2580 * spu-low.c (spu_create_inferior): Likewise.
2581
7a245884
DJ
25822007-06-13 Mike Frysinger <vapier@gentoo.org>
2583
2584 * linux-low.c (linux_create_inferior): Change execv to execvp.
2585 * spu-low.c (spu_create_inferior): Likewies.
2586
117ce543
DJ
25872007-06-13 Daniel Jacobowitz <dan@codesourcery.com>
2588
2589 * Makefile.in (clean): Clean new files instead of deleted ones.
2590 (reg-mips.o, reg-mips.c, reg-mips64.o, reg-mips64.c): Delete.
2591 (mips-linux.o, mips-linux.c, mips64-linux.o, mips64-linux.c): New
2592 rules.
2593 * configure.srv: Specify XML files and new regformats for MIPS and
2594 MIPS64 GNU/Linux.
2595 * linux-mips-low.c (mips_num_regs): Set to only used registers.
2596 (mips_regmap): Do not fetch $0. Remove unused registers. Add
2597 an entry for the restart register.
2598 (mips_cannot_fetch_register, mips_cannot_store_register)
2599 (mips_reinsert_addr, mips_fill_fpregset, mips_store_fpregset): Update
2600 register names to match the XML descriptions.
2601 (mips_fill_gregset, mips_store_gregset): Likewise. Handle the
2602 restart register instead of $0.
2603
0e7f50da
UW
26042007-06-12 Ulrich Weigand <uweigand@de.ibm.com>
2605 Markus Deuling <deuling@de.ibm.com>
2606
2607 * remote-utils.c (decode_xfer_write): New function.
2608 * server.h (decode_xfer_write): Add prototype.
2609 * server.c (handle_query): Add PACKET_LEN argument. Support
2610 qXfer:spu:read and qXfer:spu:write packets.
2611 (main): Pass packet_len to handle_query.
2612 * spu-low.c (spu_target_ops): Add spu_proc_xfer_spu.
2613 * target.h (target_ops): Add qxfer_spu.
2614
374c1d38
UW
26152007-06-12 Ulrich Weigand <uweigand@de.ibm.com>
2616
2617 * spu-low.c (spu_proc_xfer_spu): Do not return failure when
2618 accessing non-seekable spufs files.
2619
bb63802a
UW
26202007-05-16 Markus Deuling <deuling@de.ibm.com>
2621
2622 * server.c (handle_query): Add reply for qC packet.
2623
7390519e
PA
26242007-05-10 Pedro Alves <pedro_alves@portugalmail.pt>
2625 Leo Zayas <lerele@champenstudios@com>
2626
2627 * server.h (check_remote_input_interrupt_request): New function.
2628 * remote_utils.c (INVALID_DESCRIPTOR): New define.
2629 (remote_desc): Initialize with INVALID_DESCRIPTOR.
2630 (input_interrupt): Expose on USE_WIN32API too. Fix whitespace.
2631 (check_remote_input_interrupt_request): New function.
2632 * server.h (check_remote_input_interrupt_request): Declare.
3ecf0694 2633 * win32-low.c (winapi_DebugBreakProcess,
7390519e
PA
2634 winapi_GenerateConsoleCtrlEvent): New typedefs.
2635 (get_child_debug_event): Lower Win32 debug event polling from 1 sec
2636 to 250 ms.
2637 (win32_wait): Check for remote interrupt request
2638 with check_remote_input_interrupt_request.
2639 (win32_request_interrupt): New function.
2640 (win32_target_op): Set request_interrupt to win32_request_interrupt.
2641
34b34921
PA
26422007-05-10 Pedro Alves <pedro_alves@portugalmail.pt>
2643
2644 * win32-low.c (debug_registers_changed,
2645 debug_registers_used, CONTEXT_EXTENDED_REGISTERS,
2646 CONTEXT_FLOATING_POINT, CONTEXT_DEBUG_REGISTERS,
2647 CONTEXT_DEBUGGER, CONTEXT_DEBUGGER_DR): Delete.
2648 (thread_rec): Get context using the low target.
2649 (child_add_thread): Call thread_added on the low target,
2650 which does the same thing.
2651 (regptr): Delete.
2652 (do_initial_child_stuff): Remove debug registers references.
2653 Set context using the low target. Resume threads after
2654 setting the contexts.
2655 (child_continue): Remove dead variable. Remove debug
2656 registers references.
2657 (child_fetch_inferior_registers): Go through the low target.
2658 (do_child_store_inferior_registers): Remove.
2659 (child_store_inferior_registers): Go through the low target.
2660 (win32_resume): Remove debug registers references.
2661 Set context using the low target.
2662 (handle_exception): Change return type to void. Don't record
2663 context here. Set status to TARGET_WAITKIND_SPURIOUS on a
2664 first chance exception.
2665 (get_child_debug_event): Change return type to void. Remove
2666 goto loop. Always return after waiting for debug event.
2667 (win32_wait): Convert to switch statement. Handle spurious
2668 events.
2669
2670 * win32-i386-low.c (debug_registers_changed,
2671 debug_registers_used): New.
2672 (initial_stuff): Rename to ...
2673 (i386_initial_stuff): ... this. Clear debug registers
2674 state variables.
2675 (store_debug_registers): Delete.
2676 (i386_get_thread_context): New.
2677 (load_debug_registers): Delete.
2678 (i386_set_thread_context): New.
2679 (i386_thread_added): New.
2680 (single_step): Rename to ...
2681 (i386_single_step): ... this.
2682 (do_fetch_inferior_registers): Rename to ...
2683 (i386_fetch_inferior_register): ... this.
2684 (i386_store_inferior_register): New.
2685 (the_low_target): Adapt to new interface.
2686
2687 * win32-arm-low.c (CONTEXT_FLOATING_POINT): Define.
2688 (arm_get_thread_context): New.
2689 (arm_set_thread_context): New.
2690 (regptr): New.
2691 (do_fetch_inferior_registers): Rename to ...
2692 (arm_fetch_inferior_register): ... this.
2693 (arm_store_inferior_register): New.
2694 (arm_wince_breakpoint): Reimplement as unsigned long.
2695 (arm_wince_breakpoint_len): Define.
2696 (the_low_target): Adapt to new interface.
2697
2698 * win32-low.h (target_ops): Remove regmap, store_debug_registers and
2699 load_debug_registers. Add get_thread_context, set_thread_context,
2700 thread_added and store_inferior_register. Rename
2701 fetch_inferior_registers to fetch_inferior_register.
2702 (regptr): Remove declaration.
2703
dd6953e1
PA
27042007-05-10 Pedro Alves <pedro_alves@portugalmail.pt>
2705
2706 * linux-low.c (linux_detach): Change return type to int. Return 0.
2707 * spu-low.c (spu_detach): Likewise.
2708
444d6139
PA
27092007-05-10 Pedro Alves <pedro_alves@portugalmail.pt>
2710
2711 * target.h (target_ops): Change return type of detach to int.
2712 Add join.
2713 (join_inferior): New.
2714 * server.c (main): Don't skip detach support on mingw32.
2715 If the inferior doesn't support detaching return error.
2716 Call join_inferior instead of using waitpid.
2717 * linux-low.c (linux_join): New.
2718 (linux_target_op): Add linux_join.
2719 * spu-low.c (spu_join): New.
2720 (spu_target_ops): Add spu_join.
2721 * win32-low.c (win32_detach): Adapt to new interface.
2722 Reopen current_process_handle before detaching. Issue a child
2723 resume before detaching.
2724 (win32_join): New.
2725 (win32_target_op): Add win32_join.
2726
1d5315fe
PA
27272007-05-10 Pedro Alves <pedro_alves@portugalmail.pt>
2728
2729 * win32-low.c (win32-attach): Fix return value.
2730 * target.h (target_ops): Describe ATTACH return values.
2731
bf914831
PA
27322007-05-10 Pedro Alves <pedro_alves@portugalmail.pt>
2733
2734 * win32-low.c (GETPROCADDRESS): Define.
2735 (winapi_DebugActiveProcessStop): Add WINAPI. typedef as pointer.
2736 (winapi_DebugSetProcessKillOnExit): Likewise.
2737 (win32_create_inferior): Force usage of ansi CreateProcessA.
2738 (win32_attach): Use GETPROCADDRESS.
2739 (win32_detach): Likewise.
2740
f72f3e60
PA
27412007-05-10 Pedro Alves <pedro_alves@portugalmail.pt>
2742
2743 * win32-low.c (win32_wait): Don't use WSTOPSIG.
2744
ed50f18f
PA
27452007-03-30 Pedro Alves <pedro_alves@portugalmail.pt>
2746
2747 * win32-low.c: Commit leftover changes from 2007-03-29.
2748
0c2ead7e
DJ
27492007-03-30 Daniel Jacobowitz <dan@codesourcery.com>
2750
2751 * i387-fp.c (struct i387_fsave, struct i387_fxsave): Make 16-bit
2752 fields short instead of int. Add explicit padding.
2753 (i387_cache_to_fsave): Remove unnecessary casts.
2754 (i387_fsave_to_cache): Doc fix.
2755 (i387_cache_to_fxsave): Remove unnecessary casts and masking.
2756
73725ff3
DJ
27572007-03-30 Daniel Jacobowitz <dan@codesourcery.com>
2758
2759 * i387-fp.c (i387_cache_to_fxsave): Reinitialize val2 before use.
2760 (i387_fxsave_to_cache): Check fp->ftag while building ftag value.
2761
d99f33d8
PA
27622007-03-29 Pedro Alves <pedro_alves@portugalmail.pt>
2763
2764 * configure.srv (arm*-*-mingw32ce*): Move near the other
2765 arm targets.
2766
68070c10
PA
27672007-03-29 Pedro Alves <pedro_alves@portugalmail.pt>
2768
2482afc6 2769 * configure.ac: Add errno checking.
68070c10
PA
2770 (AC_CHECK_HEADERS): Add errno.h, fcntl.h, signal.h,
2771 sys/file.h and malloc.h.
2772 (AC_CHECK_DECLS): Add perror.
2773 (srv_mingwce): Handle.
2482afc6 2774 * configure.srv (i[34567]86-*-cygwin*): Add
68070c10
PA
2775 win32-i386-low.o to srv_tgtobj.
2776 (i[34567]86-*-mingw*): Likewise.
2777 (arm*-*-mingw32ce*): Add case.
2778 * gdbreplay.c [HAVE_SYS_FILE_H, HAVE_SIGNAL_H,
2779 HAVE_FCNTL_H, HAVE_ERRNO_H, HAVE_MALLOC_H]: Check.
2780 [__MINGW32CE__] (strerror): New function.
2781 [__MINGW32CE__] (errno): Define to GetLastError.
2782 [__MINGW32CE__] (COUNTOF): New macro.
2783 (remote_open): Remove extra close call.
2784 * mem-break.c (delete_breakpoint_at): New function.
2785 * mem-break.h (delete_breakpoint_at): Declare.
2786 * remote-utils.c [HAVE_SYS_FILE_H, HAVE_SIGNAL_H,
2787 HAVE_FCNTL_H, HAVE_UNISTD_H, HAVE_ERRNO_H]: Check.
2788 [USE_WIN32API] (read, write): Add char* casts.
2789 * server.c [HAVE_UNISTD_H, HAVE_SIGNAL_H]: Check.
2790 * server.h: Include wincecompat.h on Windows CE.
2791 [HAVE_ERRNO_H]: Check.
2792 (perror): Declare if not declared.
2793 * utils.c: Add stdlib.h, errno.h and malloc.h includes.
2794 (perror_with_name): Remove errno declaration.
2795 * wincecompat.h: New.
2796 * wincecompat.c: New.
2797 * win32-low.h: New.
2798 * win32-arm-low.c: New.
2799 * win32-i386-low.c: New.
2800 (win32-low.c): Include mem-break.h and win32-low.h, and winnt.h.
2801 (OUTMSG2): Make it safe.
2802 (_T): New macro.
2803 (COUNTOF): New macro.
2804 (NUM_REGS): Get it from the low target.
2805 (CONTEXT_EXTENDED_REGISTERS, CONTEXT_FLOATING_POINT,
2806 CONTEXT_DEBUG_REGISTERS): Add fallbacks to 0.
2807 (thread_rec): Let low target handle debug registers.
2808 (child_add_thread): Likewise.
2809 (child_init_thread_list): Likewise.
2810 (continue_one_thread): Likewise.
2811 (regptr): New.
2812 (do_child_fetch_inferior_registers): Move to ...
2813 * win32-i386-low.c: ... here, and rename to ...
2814 (do_fetch_inferior_registers): ... this.
2815 * win32-low.c (child_fetch_inferior_registers):
2816 Go through the low target.
2817 (do_child_store_inferior_registers): Use regptr.
2818 (strwinerror): New function.
2819 (win32_create_inferior): Handle Windows CE.
2820 Use strwinerror instead of strerror on Windows error
2821 codes. Add program to the error output.
2822 Don't close the main thread handle on Windows CE.
2823 (win32_attach): Use coredll.dll on Windows CE.
2824 (win32_kill): Close current process and current
2825 thread handles.
2826 (win32_detach): Use coredll.dll on Windows CE.
2827 (win32_resume): Let low target handle debug registers, and
2828 step request.
2829 (handle_exception): Add/Remove initial breakpoint. Avoid
2830 non-existant WSTOPSIG on Windows CE.
2831 (win32_read_inferior_memory): Cast to remove warning.
2832 (win32_arch_string): Go through the low target.
2833 (initialize_low): Call set_breakpoint_data with the low
2834 target's breakpoint.
2835 * win32-low.c (dr, FLAG_TRACE_BIT, FCS_REGNUM,
2836 FOP_REGNUM, mappings): Move to ...
2837 * win32-i386-low.c: ... here.
2838 * win32-low.c (win32_thread_info): Move to ...
2839 * win32-low.h: ... here.
2840 * Makefile.in (SFILES): Add win32-low.c, win32-i386-low.c,
2841 win32-arm-low.c and wincecompat.c.
2842 (all:): Add $EXEEXT.
2843 (install-only:): Likewise.
2844 (gdbserver:): Likewise.
2845 (gdbreplay:): Likewise.
2846 * config.in: Regenerate.
2847 * configure: Regenerate.
2848
41093d81
PA
28492007-03-28 Pedro Alves <pedro_alves@portugalmail.pt>
2850
2851 * win32-low.c: Rename typedef thread_info to
2852 win32_thread_info throughout.
2853
544afa54
PA
28542007-03-28 Pedro Alves <pedro_alves@portugalmail.pt>
2855
2856 * win32-i386-low.c: Rename to ...
2857 * win32-low.c: ... this.
2858 * configure.srv: Replace win32-i386-low.o with win32-low.o.
2859 * Makefile.in: Likewise.
2860
bce7165d
PA
28612007-03-27 Pedro Alves <pedro_alves@portugalmail.pt>
2862
2863 * remote-utils.c (monitor_output): Constify msg parameter.
2864 * server.h (monitor_output): Likewise.
2865 * win32-i386-low.c (handle_output_debug_string): New.
2866 (win32_kill): Handle OUTPUT_DEBUG_STRING_EVENT events using
2867 handle_output_debug_string.
2868 (get_child_debug_event): Likewise.
2869
506c7aa0
DJ
28702007-03-27 Mat Hostetter <mat@lcs.mit.edu>
2871
2872 * server.c (main): Correct strtoul check.
2873
42c81e2a
DJ
28742007-03-27 Jon Ringle <jon@ringle.org>
2875
2876 * linux-low.c: Check __ARCH_HAS_MMU__ also.
2877
9453113a
DJ
28782007-03-27 Brooks Moses <brooks.moses@codesourcery.com>
2879
2880 * Makefile.in: Add dummy "pdf" and "install-pdf" targets.
2881
64a69107
DJ
28822007-02-27 Daniel Jacobowitz <dan@codesourcery.com>
2883
2884 * terminal.h: Check HAVE_SGTTY_H.
2885
28862007-02-27 Mat Hostetter <mat@lcs.mit.edu>
6f8486da
DJ
2887
2888 * remote-utils.c (remote_open): Print out the assigned port number.
2889
c74d0ad8
DJ
28902007-02-26 Daniel Jacobowitz <dan@codesourcery.com>
2891
2892 * remote-utils.c (monitor_output): New function.
2893 * server.c (debug_threads): Define here.
2894 (monitor_show_help): New function.
2895 (handle_query): Handle qRcmd.
2896 (main): Do not handle 'd' packet.
2897 * server.h (debug_threads, remote_debug, monitor_output): Declare.
2898 * linux-low.c, spu-low.c, win32-i386-low.c: Remove definitions
2899 of debug_threads.
2900
de7c3b4a
PA
29012007-02-25 Pedro Alves <pedro_alves@portugalmail.pt>
2902
2903 * Makefile.in (EXEEXT): New.
2904 (clean): Use $(EXEEXT).
2905
ef57601b
PA
29062007-02-25 Pedro Alves <pedro_alves@portugalmail.pt>
2907
2908 * target.h (target_ops): Rename send_signal to request_interrupt,
2909 and remove enum target_signal parameter.
2910 * linux-low.c (linux_request_interrupt): Rename from
2911 linux_send_signal, and always send SIGINT.
2912 * spu-low.c (spu_request_interrupt): Rename from spu_send_signal,
2913 and always send SIGINT.
2914 * remote-utils.c (putpkt_binary): Call request_interrupt, instead
2915 of send_signal.
2916 (input_interrupt): Likewise.
2917
820f2bda
PA
29182007-02-25 Pedro Alves <pedro_alves@portugalmail.pt>
2919
2920 * server.c (get_features_xml): Check if target implemented
2921 arch_string.
2922 * win32-i386-low.c (win32_arch_string): New.
2923 (win32_target_ops): Add win32_arch_string as arch_string member.
2924
ab39bf24
UW
29252007-02-22 Markus Deuling <deuling@de.ibm.com>
2926
2927 * spu-low.c (spu_arch_string): New.
2928 (spu_target_ops): Add spu_arch_string.
2929
61ff6e04
DJ
29302007-02-16 Daniel Jacobowitz <dan@codesourcery.com>
2931
2932 * remote-utils.c: Remove HAVE_TERMINAL_H check.
2933 * configure.ac: Do not check for terminal.h.
2934 * configure, config.in: Regenerated.
2935
fb1e4ffc
DJ
29362007-02-08 Daniel Jacobowitz <dan@codesourcery.com>
2937
2938 * Makefile.in (OBS): Add $(XML_BUILTIN).
2939 (XML_DIR, XML_TARGET, XML_FILES, XML_BUILTIN): New.
2940 (clean): Update.
2941 (target.xml, xml-builtin.c, stamp-xml, arm-with-iwmmxt.o)
2942 (arm-with-iwmmxt.c): New.
2943 * config.in, configure: Regenerate.
2944 * configure.ac: Check for iWMMXt. Handle srv_xmltarget,
2945 srv_xmlbuiltin, and srv_xmlfiles. Define USE_XML.
2946 * configure.srv: Mention srv_xmltarget and srv_xmlfiles.
2947 (arm*-*-linux*): Add iWMMXt and regset support.
2948 * linux-arm-low.c (PTRACE_GETWMMXREGS, PTRACE_SETWMMXREGS): Define.
2949 (arm_fill_gregset, arm_store_gregset, arm_fill_wmmxregset)
2950 (arm_store_wmmxregset, target_regsets): New.
2951 * server.c (get_features_xml): Take annex argument. Check builtin
2952 XML documents.
2953 (handle_query): Handle multiple annexes.
2954
0f48aa01
DJ
29552007-01-29 Daniel Jacobowitz <dan@codesourcery.com>
2956
2957 * remote-utils.c [USE_WIN32API] (read, write): Define.
2958 (putpkt_binary, input_interrupt, readchar, getpkt): Use read and
2959 write.
2960
23181151
DJ
29612007-01-09 Daniel Jacobowitz <dan@codesourcery.com>
2962
2963 * linux-i386-low.c (the_low_target): Set arch_string.
2964 * linux-x86-64-low.c (the_low_target): Likewise.
2965 * linux-low.c (linux_arch_string): New.
2966 (linux_target_ops): Add it.
2967 * linux-low.h (struct linux_target_ops): Add arch_string.
2968 * server.c (write_qxfer_response): Use const void * for DATA.
2969 (get_features_xml): New.
2970 (handle_query): Handle qXfer:features:read. Report it for qSupported.
2971 * target.h (struct target_ops): Add arch_string method.
2972
9d606399
DJ
29732007-01-03 Denis Pilat <denis.pilat@st.com>
2974 Daniel Jacobowitz <dan@codesourcery.com>
2975
2976 * linux-low.c (linux_kill): Handle being called with no threads.
2977 * win32-i386-low.c (win32_kill): Likewise.
2978 (get_child_debug_event): Clear current_process_handle.
2979
29802006-12-30 Denis PILAT <denis.pilat@st.com>
8264bb58
DJ
2981 Daniel Jacobowitz <dan@codesourcery.com>
2982
2983 * remote-utils.c (remote_open): Check the type of specified
2984 serial port devices before opening them.
2985 * server.c (main): Kill the inferior if an error occurs during
2986 the first remote_open.
2987
a5e13d24
DJ
29882006-12-05 Markus Deuling <deuling@de.ibm.com>
2989
2990 * README: Update supported targets.
2991
186947f7
DJ
29922006-11-28 Daniel Jacobowitz <dan@codesourcery.com>
2993
2994 * Makefile.in (clean): Remove reg-mips64.c.
2995 (reg-mips64.c, reg-mips64.o): New rules.
2996 * configure.srv: Handle mips64. Include regset support for mips.
2997 * linux-mips-low.c (union mips_register): New.
2998 (mips_get_pc, mips_set_pc, mips_reinsert_addr): Use it.
2999 (mips_breakpoint, mips_breakpoint_at): Use int.
3000 (mips_collect_register, mips_supply_register)
3001 (mips_collect_register_32bit, mips_supply_register_32bit)
3002 (mips_fill_gregset, mips_store_gregset, mips_fill_fpregset)
3003 (mips_store_fpregset, target_regsets): New.
3004 * thread-db.c (thread_db_get_tls_address): Use uintptr_t.
3005
a13e2c95
UW
30062006-11-22 Ulrich Weigand <uweigand@de.ibm.com>
3007
3008 * configure.srv: Add target "spu*-*-*".
3009 * Makefile.in (clean): Remove reg-spu.c.
3010 (reg-spu.c, reg-spu.o, spu-low.o): Add dependencies.
3011 * spu-low.c: New file.
3012
cb7283db
DJ
30132006-11-16 Daniel Jacobowitz <dan@codesourcery.com>
3014
3015 * configure.ac: Correct td_thr_tls_get_addr test.
3016 * configure: Regenerated.
3017
89be2091
DJ
30182006-11-16 Daniel Jacobowitz <dan@codesourcery.com>
3019
3020 * linux-low.c (linux_wait_for_event): Reformat. Use the
3021 pass_signals array.
3022 * remote-utils.c (decode_address_to_semicolon): New.
3023 * server.c (pass_signals, handle_general_set): New.
3024 (handle_query): Mention QPassSignals for qSupported.
3025 (main): Call handle_general_set.
3026 * server.h (pass_signals, decode_address_to_semicolon): New.
3027
000ef4f0
DJ
30282006-11-06 Daniel Jacobowitz <dan@codesourcery.com>
3029
3030 * server.c (handle_query): Correct error handling for read_auxv.
3031
b7149293
UW
30322005-10-19 Ulrich Weigand <uweigand@de.ibm.com>
3033
3034 * configure.srv [s390-*-linux*, s390x-*-linux*]: Set srv_linux_regsets
3035 and srv_linux_thread_db to yes.
3036 * linux-s390-low.c (s390_fill_gregset): New function.
3037 (target_regsets): Define data structure.
3038
dae5f5cf
DJ
30392006-10-17 Daniel Jacobowitz <dan@codesourcery.com>
3040
3041 * acinclude.m4 (SRV_CHECK_TLS_GET_ADDR): New.
3042 * configure.ac: Use it. Define HAVE_TD_THR_TLS_GET_ADDR.
3043 * config.in, configure: Regenerated.
3044 * inferiors.c (gdb_id_to_thread): New function.
3045 (gdb_id_to_thread_id): Use it.
3046 * linux-low.c (linux_target_ops): Use thread_db_get_tls_address.
3047 * linux-low.h (struct process_info): Add th member.
3048 (thread_db_get_tls_address): New prototype.
3049 * remote-utils.c (decode_address): Make non-static.
3050 * server.c (handle_query): Handle qGetTLSAddr.
3051 * server.h (gdb_id_to_thread, decode_address): New prototypes.
3052 * target.h (struct target_ops): Add get_tls_address.
3053 * thread-db.c (maybe_attach_thread): Save the thread handle.
3054 (thread_db_get_tls_address): New.
3055
32ca6d61
DJ
30562006-09-28 Daniel Jacobowitz <dan@codesourcery.com>
3057
3058 * linux-low.c (PTRACE_GETSIGINFO, PTRACE_SETSIGINFO): Define.
3059 (linux_resume_one_process): Take a siginfo_t *. Update all
3060 callers. Queue it if necessary. Use PTRACE_SETSIGINFO.
3061 (struct pending_signals): Add a siginfo_t.
3062 (linux_wait_for_process): Always set last_status.
3063 (linux_wait_for_event): Use PTRACE_GETSIGINFO.
3064 (linux_queue_one_thread): Use PTRACE_GETSIGINFO.
3065 * linux-low.h (struct process_info): Add last_status.
3066
5ffff7c1
DJ
30672006-09-21 Daniel Jacobowitz <dan@codesourcery.com>
3068
3069 * remote-utils.c (try_rle): New function.
3070 (putpkt_binary): Use it.
3071
8695c747
DJ
30722006-08-19 Daniel Jacobowitz <dan@codesourcery.com>
3073
3074 * Makefile.in (clean): Clean reg-x86-64-linux.c.
3075 (reg-x86-64-linux.o, reg-x86-64-linux.c): New.
3076 * configure.srv (x86_64-*-linux*): Use reg-x86-64-linux.o.
3077 * linux-x86-64-low.c (x86_64_regmap): Include ORIG_RAX.
3078 (x86_64_fill_gregset, x86_64_store_gregset): Skip floating
3079 point registers.
3080
290fadea
RS
30812006-08-08 Richard Sandiford <richard@codesourcery.com>
3082
3083 * server.c (terminal_fd): New variable.
3084 (old_foreground_pgrp): Likewise.
3085 (restore_old_foreground_pgrp): New function.
3086 (start_inferior): Record the terminal file descriptor in terminal_fd
3087 and its original foreground group in old_foreground_pgrp. Register
3088 restore_old_foreground_pgrp with atexit().
3089
9f2e1e63
DJ
30902006-07-26 Daniel Jacobowitz <dan@codesourcery.com>
3091
3092 * server.c (handle_query): Correct qPart to qXfer.
3093
b80864fb
DJ
30942006-07-22 Daniel Jacobowitz <dan@codesourcery.com>
3095
3096 * configure.ac: Check for more headers which are missing on
3097 Windows. Automatically supply -lwsock32 and USE_WIN32API.
3098 * configure.srv: Add Cygwin and mingw32.
3099 * remote-utils.c: Don't include headers unconditionally which
3100 are missing on mingw32. Include <winsock.h> for mingw32.
3101 (remote_open): Adjust for mingw32 support. Flush
3102 standard error after writing to it.
3103 (remote_close, putpkt_binary, input_interrupt, block_async_io)
3104 (unblock_async_io, enable_async_io, disable_async_io)
3105 (readchar, getpkt): Update for Winsock support.
3106 (prepare_resume_reply): Expect a protocol signal number.
3107 * server.c: Disable <sys/wait.h> on mingw32.
3108 (start_inferior): Adjust for mingw32 support. Flush
3109 standard error after writing to it.
3110 (attach_inferior): Likewise. Use protocol signal
3111 numbers.
3112 (main): Skip 'D' packet on mingw32. Use protocol signal numbers
3113 and names.
3114 * win32-i386-low.c: New file.
3115 * Makefile.in (XM_CLIBS): Set.
3116 (gdbserver, gdbreplay): Use $(INTERNAL_CFLAGS).
3117 (win32-i386-low.o): New dependency rule.
3118 * linux-low.c (linux_wait): Use target signal numbers.
3119 * target.h (struct target_ops): Doc fix.
3120 * server.h (target_signal_to_name): New prototype.
3121 * gdbreplay.c: Don't include headers unconditionally which
3122 are missing on mingw32. Include <winsock.h> for mingw32.
3123 (remote_close, remote_open): Adjust for Winsock support.
3124 * configure, config.in: Regenerated.
3125
0876f84a
DJ
31262006-07-12 Daniel Jacobowitz <dan@codesourcery.com>
3127
3128 * server.c (decode_xfer_read, write_qxfer_response): New.
3129 (handle_query): Take a packet length argument. Handle
3130 qXfer:auxv:read instead of qPart:auxv:read. Mention it in
3131 the qSupported response.
3132 (main): Update call to handle_query.
3133
01f9e8fa
DJ
31342006-06-22 Daniel Jacobowitz <dan@codesourcery.com>
3135
3136 * remote-utils.c (remote_escape_output, remote_unescape_input): New.
3137 (putpkt_binary): Renamed from putpkt and adjusted for binary
3138 data.
3139 (putpkt): New wrapper for putpkt_binary.
3140 (readchar): Don't mask off the high bit.
3141 (decode_X_packet): New function.
3142 * server.c (main): Call putpkt_binary if a handler sets the packet
3143 length. Save the length of the incoming packet. Handle 'X'.
3144 * server.h (gdb_byte, remote_escape_output, decode_X_packet): New.
3145
be2a5f71
DJ
31462006-06-21 Daniel Jacobowitz <dan@codesourcery.com>
3147
3148 * server.c (handle_query): Handle qSupported.
3149
ea025f5f
DJ
31502006-05-30 Daniel Jacobowitz <dan@codesourcery.com>
3151
3152 * remote-utils.c (all_symbols_looked_up): New variable.
3153 (look_up_one_symbol): Check it.
3154 * server.h (look_up_one_symbol): New declaration.
3155 * thread-db.c (thread_db_init): Set all_symbols_looked_up.
3156
9308fc88
DJ
31572006-05-30 Daniel Jacobowitz <dan@codesourcery.com>
3158
3159 * Makefile.in (linux-arm-low.o): Update dependencies.
66f338c7 3160 * linux-arm-low.c: Include "gdb_proc_service.h".
9308fc88
DJ
3161 (PTRACE_GET_THREAD_AREA): Define.
3162 (ps_get_thread_area): New function.
3163
52fb6437
NS
31642006-05-09 Nathan Sidwell <nathan@codesourcery.com>
3165
3166 * configure.srv (m68k*-*-uclinux*): New target.
3167 * linux-low.c (linux_create_inferior): Use vfork on mmuless systems.
3168 (linux_resume_one_process): Remove extraneous cast.
3169 (linux_read_offsets): New.
3170 (linux_target_op): Add linux_read_offsets on mmuless systems.
3171 * server.c (handle_query): Add qOffsets logic.
3172 * target.h (struct target_ops): Add read_offsets.
3173
21b0f40c
DJ
31742006-03-15 Daniel Jacobowitz <dan@codesourcery.com>
3175
3176 * linux-mips-low.c: Include <sys/ptrace.h> and "gdb_proc_service.h".
3177 (PTRACE_GET_THREAD_AREA): Define.
3178 (ps_get_thread_area): New function.
3179 * Makefile.in (linux-i386-low.o, linux-mips-low.o)
3180 (linux-x86-64-low.o): Update.
3181
0050a760
DJ
31822006-03-15 Daniel Jacobowitz <dan@codesourcery.com>
3183
3184 * configure.ac: Remove checks for prfpregset_t.
3185 * gdb_proc_service.h: New file.
3186 * linux-i386-low.c, linux-x86-64-low.c, thread-db.c: Use the
3187 new "gdb_proc_service.h".
3188 * proc-service.c: Likewise.
3189 (ps_pglobal_lookup, ps_pdread, ps_pdwrite): Use psaddr_t.
3190 (ps_lgetfpregs, ps_lsetfpregs): Use a void* argument.
3191 * Makefile.in (gdb_proc_service_h): Updated.
3192 * configure, config.in: Regenerated.
3193
b92a518e
DJ
31942006-03-03 Daniel Jacobowitz <dan@codesourcery.com>
3195
3196 * remote-utils.c (prepare_resume_reply): Move declaration
3197 of gdb_id_from_wait to the top of the block.
3198
545587ee
DJ
31992006-02-15 Daniel Jacobowitz <dan@codesourcery.com>
3200
3201 * linux-low.c (regsets_store_inferior_registers): Read the regset
3202 from the target before filling it.
3203
9db87ebd
DJ
32042006-02-08 Daniel Jacobowitz <dan@codesourcery.com>
3205
3206 * server.c (attach_inferior): Return SIGTRAP for a successful
3207 attach.
3208
dd24457d
DJ
32092006-02-01 Daniel Jacobowitz <dan@codesourcery.com>
3210
3211 * Makefile.in (OBS): Add version.o.
3212 (STAGESTUFF): Delete.
3213 (version.o): Add dependencies.
3214 (version.c): Replace rule.
3215 (clean): Remove version.c.
3216 * server.c (gdbserver_version): New.
3217 (gdbserver_usage): Use printf.
3218 (main): Handle --version and --help.
3219 * server.h (version, host_name): Add declarations.
3220
6f0f660e
EZ
32212005-12-23 Eli Zaretskii <eliz@gnu.org>
3222
3223 * linux-arm-low.c:
3224 * linux-arm-low.c:
3225 * inferiors.c:
3226 * i387-fp.h:
3227 * i387-fp.c:
3228 * gdbreplay.c:
3229 * regcache.c:
3230 * proc-service.c:
3231 * mem-break.h:
3232 * mem-break.c:
3233 * linux-x86-64-low.c:
3234 * linux-sh-low.c:
3235 * linux-s390-low.c:
3236 * linux-ppc64-low.c:
3237 * linux-ppc-low.c:
3238 * linux-mips-low.c:
3239 * linux-m68k-low.c:
3240 * linux-m32r-low.c:
3241 * linux-low.h:
3242 * linux-low.c:
3243 * linux-ia64-low.c:
3244 * linux-i386-low.c:
3245 * linux-crisv32-low.c:
3246 * thread-db.c:
3247 * terminal.h:
3248 * target.h:
3249 * target.c:
3250 * server.h:
3251 * server.c:
3252 * remote-utils.c:
3253 * regcache.h:
3254 * utils.c:
3255 * Makefile.in:
3256 * configure.ac:
3257 * gdbserver.1: Add (C) after Copyright. Update the FSF
3258 address.
3259
9d1fb177
DJ
32602005-11-13 Daniel Jacobowitz <dan@codesourcery.com>
3261
3262 * linux-arm-low.c (arm_eabi_breakpoint): New variable.
3263 (arm_breakpoint_at): Recognize both breakpoints.
3264 (the_low_target): Use the correct breakpoint instruction.
3265
011a70c2
DJ
32662005-11-02 Daniel Jacobowitz <dan@codesourcery.com>
3267
3268 * configure.srv (x86_64-*-linux*): Turn on thread_db support.
3269 * linux-x86-64-low.c (x86_64_breakpoint, x86_64_breakpoint_len)
3270 (x86_64_get_pc, x86_64_set_pc, x86_64_breakpoint_at): New.
3271 (the_low_target): Update.
3272
7fb85e41
AS
32732005-10-25 Andreas Schwab <schwab@suse.de>
3274
3275 * server.c (main): Allocate mem_buf with PBUFSIZ bytes.
3276
3277 * linux-ia64-low.c (ia64_regmap): Remove NAT registers.
3278 (ia64_num_regs): Reduce to 462.
3279
3db0444b
DJ
32802005-09-17 Daniel Jacobowitz <dan@codesourcery.com>
3281
3282 * acinclude.m4: Correct quoting.
3283 * aclocal.m4: Regenerated.
3284
3285 Suggested by SZOKOVACS Robert <szo@ies.hu>:
3286 * thread-db.c (thread_db_err_str): Handle TD_VERSION.
3287 (thread_db_init): Call thread_db_err_str.
3288 * configure.ac: Check for TD_VERSION.
3289 * config.in, configure: Regenerated.
3290
bee0189a
DJ
32912005-07-31 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
3292
3293 * server.h (error, fatal, warning): Add ATTR_FORMAT.
3294
e9d25b98
DJ
32952005-07-13 Daniel Jacobowitz <dan@codesourcery.com>
3296
3297 * configure.ac: Define HAVE_LINUX_REGSETS even if PTRACE_GETREGS
3298 is not available. Define HAVE_PTRACE_GETREGS if it is.
3299 * config.in, configure: Regenerated.
3300 * configure.srv: Set srv_linux_regsets for PowerPC and PowerPC64.
3301 * linux-i386-low.c, linux-m68k-low.c: Update to use
3302 HAVE_PTRACE_GETREGS.
3303 * linux-low.c (regsets_fetch_inferior_registers)
3304 (regsets_store_inferior_registers): Only return 0 if we processed
3305 GENERAL_REGS.
3306 * linux-ppc-low.c (ppc_fill_gregset, target_regsets): New.
3307 * linux-ppc64-low.c (ppc_fill_gregset, target_regsets): New.
3308
a06660f7
DJ
33092005-07-13 Daniel Jacobowitz <dan@codesourcery.com>
3310
3311 * inferiors.c (struct thread_info): Add gdb_id.
3312 (add_thread): Add gdb_id argument.
3313 (thread_id_to_gdb_id, thread_to_gdb_id, gdb_id_to_thread_id): New.
3314 * linux-low.c (linux_create_inferior, linux_attach_lwp): Update
3315 calls to add_thread.
3316 * remote-utils.c (prepare_resume_reply: Use thread_to_gdb_id.
3317 * server.c (handle_query): Use thread_to_gdb_id.
3318 (handle_v_cont, main): Use gdb_id_to_thread_id.
3319 * server.h (add_thread): Update prototype.
3320 (thread_id_to_gdb_id, thread_to_gdb_id, gdb_id_to_thread_id): New
3321 prototypes.
3322
5a1f5858
DJ
33232005-07-13 Daniel Jacobowitz <dan@codesourcery.com>
3324
3325 * linux-low.c (fetch_register, usr_store_inferior_registers): Handle
3326 left-padded registers.
3327 * linux-low.h (struct linux_target_ops): Add left_pad_xfer.
3328 * linux-ppc64-low.c (the_low_target): Set left_pad_xfer.
3329
e122f1f5
SE
33302005-07-01 Steve Ellcey <sje@cup.hp.com>
3331
3332 * configure.ac (BFD_NEED_DECLARATION): Replace with AC_CHECK_DECLS.
3333 * configure: Regenerate.
3334 * config.in: Regenerate.
3335 * server.h (NEED_DECLARATION_STRERROR):
3336 Replace with !HAVE_DECL_STRERROR.
3337
d592fa2f
DJ
33382005-06-16 Daniel Jacobowitz <dan@codesourcery.com>
3339
3340 * linux-low.c (linux_wait, linux_send_signal): Don't test
3341 an unsigned long variable for > 0 if it could be MAX_ULONG.
3342 * server.c (myresume): Likewise.
3343 * target.c (set_desired_inferior): Likewise.
3344
ccbd4912
MK
33452005-06-13 Mark Kettenis <kettenis@gnu.org>
3346
3347 * configure.ac: Simplify and improve check for socklen_t.
3348 * configure, config.in: Regenerate.
3349
f450004a
DJ
33502005-06-12 Daniel Jacobowitz <dan@codesourcery.com>
3351
3352 * acconfig.h: Remove.
3353 * configure.ac: Add a test for socklen_t. Use three-argument
3354 AC_DEFINE throughout.
3355 * config.in: Regenerated using autoheader 2.59.
3356 * configure: Regenerated.
3357
3358 * gdbreplay.c (socklen_t): Provide a default.
3359 (remote_open): Use socklen_t.
3360 * remote-utils.c (socklen_t): Provide a default.
3361 (remote_open): Use socklen_t.
3362 (convert_int_to_ascii, convert_ascii_to_int, decode_M_packet): Use
3363 unsigned char.
3364
3365 * i387-fp.c (struct i387_fsave, struct i387_fxsave): Use unsigned
3366 char for buffers.
3367 * linux-low.c (linux_read_memory, linux_write_memory)
3368 (linux_read_auxv): Likewise.
3369 * mem-break.c (breakpoint_data, set_breakpoint_data, check_mem_read)
3370 (check_mem_write): Likewise.
3371 * mem-break.h (set_breakpoint_data, check_mem_read, check_mem_write):
3372 Likewise.
3373 * regcache.c (struct inferior_rgcache_data, registers_to_string)
3374 (registers_from_string, register_data): Likewise.
3375 * server.c (handle_query, main): Likewise.
3376 * server.h (convert_ascii_to_int, convert_int_to_ascii)
3377 (decode_M_packet): Likewise.
3378 * target.c (read_inferior_memory, write_inferior_memory): Likewise.
3379 * target.h (struct target_ops): Update read_memory, write_memory,
3380 and read_auxv.
3381 (read_inferior_memory, write_inferior_memory): Update.
3382 * linux-low.h (struct linux_target_ops): Change type of breakpoint
3383 to unsigned char *.
3384 * linux-arm-low.c, linux-cris-low.c, linux-crisv32-low.c,
3385 linux-i386-low.c, linux-m32r-low.c, linux-m68k-low.c,
3386 linux-mips-low.c, linux-ppc-low.c, linux-ppc64-low.c,
3387 linux-s390-low.c, linux-sh-low.c: Update for changes in
3388 read_inferior_memory and the_low_target->breakpoint.
3389
eee84df1
DJ
33902005-05-28 Daniel Jacobowitz <dan@codesourcery.com>
3391
3392 * Makefile.in (SFILES): Add linux-ppc64-low.c.
3393 (linux-ppc64-low.o, reg-ppc64.c, reg-ppc64.o): New targets.
3394 * configure.srv: Add powerpc64-*-linux*.
3395 * linux-ppc64-low.c: New file.
3396
45b134e5
OF
33972005-05-23 Orjan Friberg <orjanf@axis.com>
3398
3399 * linux-cris-low.c: New file with support for CRIS.
3400 * linux-crisv32-low.c: Ditto for CRISv32.
3401 * Makefile.in (SFILES): Add linux-cris-low.c, linux-crisv32-low.c.
3402 (clean): Add reg-cris.c and reg-crisv32.c.
3403 Add linux-cris-low.o, linux-crisv32-low.o, reg-cris.o, reg-cris.c,
3404 reg-crisv32.o, and reg-crisv32.c to make rules.
3405 * configure.srv: Add cris-*-linux* and crisv32-*-linux* to list of
3406 recognized targets.
3407
48d93c75
UW
34082005-05-16 Ulrich Weigand <uweigand@de.ibm.com>
3409
3410 * linux-low.c (fetch_register): Ensure buffer size is a multiple
3411 of sizeof (PTRACE_XFER_TYPE).
3412 (usr_store_inferior_registers): Likewise. Zero out excess bytes.
3413
e013ee27
OF
34142005-05-12 Orjan Friberg <orjanf@axis.com>
3415
3416 * target.h (struct target_ops): Add insert_watchpoint,
3417 remove_watchpoint, stopped_by_watchpoint, stopped_data_address function
3418 pointers for hardware watchpoint support.
3419 * linux-low.h (struct linux_target_ops): Ditto.
3420 * linux-low.c (linux_insert_watchpoint, linux_remove_watchpoint)
3421 (linux_stopped_by_watchpoint, linux_stopped_data_address): New. Add
3422 to linux_target_ops.
3423 * remote-utils.c (prepare_resume_reply): Add watchpoint information to
3424 reply packet.
3425 * server.c (main): Recognize 'Z' and 'z' packets.
3426
b0ded00b
UW
34272005-05-10 Ulrich Weigand <uweigand@de.ibm.com>
3428
3429 * linux-s390-low.c (s390_breakpoint, s390_breakpoint_len): Define.
3430 (s390_get_pc, s390_set_pc, s390_breakpoint_at): New functions.
3431 (the_low_target): Add new members.
3432
8643e2ad
DJ
34332005-05-04 Daniel Jacobowitz <dan@codesourcery.com>
3434
3435 * proc-service.c (ps_lgetregs): Search all_processes instead of
3436 all_threads.
3437
fc620387
DJ
34382005-05-04 Daniel Jacobowitz <dan@codesourcery.com>
3439
3440 * server.c (start_inferior): Change return type to int.
3441 (attach_inferior): Change sigptr to int *.
3442 (handle_v_cont, handle_v_requests): Change signal to int *.
3443 (main): Change signal to int.
3444
34452005-04-15 Kei Sakamoto <sakamoto.kei@renesas.com>
7cfbc4a0
KI
3446
3447 * Makefile.in: Add linux-m32r-low.o, reg-m32r.c and reg-m32r.o.
3448 * configure.srv: Add m32r*-*-linux*.
3449 * linux-m32r-low.c: New file.
3450
e0e76420
DJ
34512005-03-04 Daniel Jacobowitz <dan@codesourcery.com>
3452
3453 * Makefile.in (stamp-h): Set CONFIG_HEADERS explicitly.
3454
a1928bad
DJ
34552005-03-03 Daniel Jacobowitz <dan@codesourcery.com>
3456
3457 * inferiors.c (change_inferior_id, add_thread, find_inferior_id):
3458 Take unsigned long arguments for PIDs.
3459 * linux-low.c (add_process, linux_attach_lwp, linux_attach)
3460 (linux_thread_alive, linux_wait_for_event, kill_lwp, send_sigstop)
3461 (wait_for_sigstop, linux_resume_one_process)
3462 (regsets_fetch_inferior_registers, linux_send_signal)
3463 (linux_read_auxv): Likewise. Update the types of variables holding
3464 PIDs. Update format string specifiers.
3465 * linux-low.h (struct process_info, linux_attach_lwp): Likewise.
3466 * remote-utils.c (prepare_resume_reply): Likewise.
3467 * server.c (cont_thread, general_thread, step_thread)
3468 (thread_from_wait, old_thread_from_wait, signal_pid): Change type to
3469 unsigned long.
3470 (handle_query): Update format specifiers.
3471 (handle_v_cont, main): Use strtoul for thread IDs.
3472 * server.h (struct inferior_list_entry): Use unsigned long for ID.
3473 (add_thread, find_inferior_id, change_inferior_id, cont_thread)
3474 (general_thread, step_thread, thread_from_wait)
3475 (old_thread_from_wait): Update.
3476 * target.h (struct thread_resume): Use unsigned long for THREAD.
3477 (struct target_ops): Use unsigned long for arguments to attach and
3478 thread_alive.
3479
dcdb98d2
DJ
34802005-02-24 Daniel Jacobowitz <dan@codesourcery.com>
3481
3482 * acinclude.m4: Include bfd/bfd.m4 directly.
3483 * configure.ac: Use AC_ARG_PROGRAM. Suggested by Aron Griffis
3484 <agriffis@toolchain.org>.
3485 * aclocal.m4, configure: Regenerated.
3486
bec39cab
AC
34872005-01-07 Andrew Cagney <cagney@gnu.org>
3488
3489 * configure.ac: Rename configure.in, require autoconf 2.59.
3490 * configure: Re-generate.
3491
434c4c77
DJ
34922004-12-08 Daniel Jacobowitz <dan@debian.org>
3493
3494 * acinclude.m4 (SRV_CHECK_THREAD_DB): Add ps_get_thread_area. Reset
3495 LIBS when finished.
3496 * aclocal.m4: Regenerated.
3497 * configure: Regenerated.
3498
db1d3e1b
AS
34992004-11-21 Andreas Schwab <schwab@suse.de>
3500
3501 * linux-m68k-low.c (m68k_num_gregs): Define.
3502 (m68k_fill_gregset, m68k_store_gregset, m68k_fill_fpregset)
3503 (m68k_store_fpregset, target_regsets) [HAVE_LINUX_REGSETS]: New.
3504 (m68k_breakpoint, m68k_breakpoint_len, m68k_get_pc, m68k_set_pc)
3505 (m68k_breakpoint_at): New. Add to the_low_target.
3506
3507 * configure.srv (m68*-*-linux*): Set srv_linux_regsets and
3508 srv_linux_thread_db to yes.
3509
43360365
JB
35102004-10-20 Joel Brobecker <brobecker@gnat.com>
3511
3512 * linux-x86-64-low.c (ARCH_SET_GS): Add definition if missing.
3513 (ARCH_SET_FS): Likewise.
3514 (ARCH_GET_FS): Likewise.
3515 (ARCH_GET_GS): Likewise.
3516
fd500816
DJ
35172004-10-16 Daniel Jacobowitz <dan@debian.org>
3518
3519 * linux-i386-low.c (ps_get_thread_area): New.
3520 * linux-x86-64-low.c (ps_get_thread_area): New.
3521 * linux-low.c: Include <sys/syscall.h>.
3522 (linux_kill_one_process): Don't kill the first thread here.
3523 (linux_kill): Kill the first thread here.
3524 (kill_lwp): New function.
3525 (send_sigstop, linux_send_signal): Use it.
3526 * proc-service.c: Clean up #ifdefs.
3527 (fpregset_info): Delete.
3528 (ps_lgetregs): Update and enable implementation.
3529 (ps_lsetregs, ps_lgetfpregs, ps_lsetfpregs): Remove disabled
3530 implementations.
3531 * remote-utils.c (struct sym_cache, symbol_cache): New.
3532 (input_interrupt): Print a clearer message.
3533 (async_io_enabled): New variable.
3534 (enable_async_io, disable_async_io): Use it. Update comments.
3535 (look_up_one_symbol): Use the symbol cache.
3536 * thread-db.c (thread_db_look_up_symbols): New function.
3537 (thread_db_init): Update comments. Call thread_db_look_up_symbols.
3538
f6de3c42
DJ
35392004-10-16 Daniel Jacobowitz <dan@debian.org>
3540
3541 * configure.in: Test for -rdynamic.
3542 * configure: Regenerated.
3543 * Makefile (INTERNAL_LDFLAGS): New.
3544 (gdbserver, gdbreplay): Use it.
3545
2c0fc042
AC
35462004-09-02 Andrew Cagney <cagney@gnu.org>
3547
3548 * Makefile.in (TAGS): Replace TM_FILE with DEPRECATED_TM_FILE.
3549
075b3282
DJ
35502004-03-23 Daniel Jacobowitz <drow@mvista.com>
3551
3552 * linux-low.c (linux_wait): Clear all_processes list also.
3553
fa6a77dc
DJ
35542004-03-12 Daniel Jacobowitz <drow@mvista.com>
3555
3556 * linux-low.c: Include <errno.h>. Remove extern declaration of
3557 errno.
3558
6d782a97
DJ
35592004-03-12 Daniel Jacobowitz <drow@mvista.com>
3560
3561 * gdbreplay.c, server.h, utils.c: Update copyright years.
3562
3a7fb99b
DJ
35632004-03-04 Nathan J. Williams <nathanw@wasabisystems.com>
3564
3565 * server.c (main): Print child status or termination signal from
3566 variable 'signal', not 'sig'.
3567
c3e735a6
DJ
35682004-03-04 Nathan J. Williams <nathanw@wasabisystems.com>
3569
3570 * linux-low.c (linux_read_memory): Change return type to
3571 int. Check for and return error from ptrace().
3572 * target.c (read_inferior_memory): Change return type to int. Pass
3573 back return status from the_target->read_memory().
3574 * target.h (struct target_ops): Adapt *read_memory() prototype.
3575 Update comment.
3576 (read_inferior_memory): Adapt prototype.
3577 * server.c (main): Return an error packet if
3578 read_inferior_memory() returns an error.
3579
a59d1c82
DJ
35802004-03-04 Daniel Jacobowitz <drow@mvista.com>
3581
3582 * Makefile.in (distclean): Remove config.h, stamp-h, and config.log.
3583 Unify with other clean targets.
3584
dc3f8883
DJ
35852004-02-29 Daniel Jacobowitz <drow@mvista.com>
3586
3587 * server.c (handle_v_cont): Call set_desired_inferior.
3588
89a208da
DJ
35892004-02-29 Daniel Jacobowitz <drow@mvista.com>
3590
3591 * remote-utils.c (prepare_resume_reply): Always supply "thread:".
3592
62ea82f5
DJ
35932004-02-29 Daniel Jacobowitz <drow@mvista.com>
3594
3595 * linux-low.c (linux_wait): Unblock async I/O.
3596 (linux_resume): Block and enable async I/O.
3597 * remote-utils.c (block_async_io, unblock_async_io): New functions.
3598 * server.h (block_async_io, unblock_async_io): Add prototypes.
3599
6910d122
DJ
36002004-02-29 Daniel Jacobowitz <drow@mvista.com>
3601
3602 * remote-utils.c (remote_open): Print a status notice after
3603 opening a TCP port.
3604 * server.c (attach_inferior): Print a status notice after
3605 attaching.
3606
36072004-02-29 Daniel Jacobowitz <drow@mvista.com>
d677d77d
DJ
3608
3609 * linux-arm-low.c (arm_get_pc): Print out stop PC in debug mode.
3610
c89dc5d4
DJ
36112004-02-26 Daniel Jacobowitz <drow@mvista.com>
3612
3613 * remote-utils.c (write_enn): Use "E01" instead of "ENN" for the
3614 error packet.
3615 * server.c, target.h: Update copyright years.
3616
4b8dad4a
RM
36172004-02-25 Roland McGrath <roland@redhat.com>
3618
3619 * target.h (struct target_ops): New member `read_auxv'.
3620 * server.c (handle_query): Handle qPart:auxv:read: query using that.
3621 * linux-low.c (linux_read_auxv): New function.
3622 (linux_target_ops): Initialize `read_auxv' member to that.
3623
d7446758
JB
36242004-02-17 Ulrich Weigand <Ulrich.Weigand@de.ibm.com>
3625
3626 Committed by Jim Blandy <jimb@redhat.com>.
3627
3628 * linux-s390-low.c (s390_num_regs): Update.
4b8dad4a 3629 (s390_regmap): Remove control registers. Use __s390x__ predefine
d7446758
JB
3630 instead of GPR_SIZE to distiguish s390 and s390x targets.
3631
5544ad89
DJ
36322004-01-31 Daniel Jacobowitz <drow@mvista.com>
3633
3634 * linux-low.c: Update copyright year.
3635 (check_removed_breakpoint): Clear pending_is_breakpoint.
3636 (linux_set_resume_request, linux_queue_one_thread)
3637 (resume_status_pending_p): New functions.
3638 (linux_continue_one_thread): Use process->resume.
3639 (linux_resume): Only resume threads if there are no pending events.
3640 * linux-low.h (struct process_info): Add resume request
3641 pointer.
3642
2a68b70e
DJ
36432004-01-30 Daniel Jacobowitz <drow@mvista.com>
3644
3645 * regcache.c (new_register_cache): Clear the allocated register
3646 buffer. Suggested by Atsushi Nemoto <anemo@mba.ocn.ne.jp>.
3647
64386c31
DJ
36482003-10-13 Daniel Jacobowitz <drow@mvista.com>
3649
3650 * linux-low.c (linux_resume): Take a struct thread_resume *
3651 argument.
3652 (linux_wait): Update call.
3653 (resume_ptr): New static variable.
3654 (linux_continue_one_thread): Renamed from
3655 linux_continue_one_process. Use resume_ptr.
3656 (linux_resume): Use linux_continue_one_thread.
3657 * server.c (handle_v_cont, handle_v_requests): New functions.
3658 (myresume): New function.
3659 (main): Handle 'v' case.
3660 * target.h (struct thread_resume): New type.
3661 (struct target_ops): Change argument of "resume" to struct
3662 thread_resume *.
3663 (myresume): Delete macro.
3664
c938e9b0
L
36652003-08-08 H.J. Lu <hongjiu.lu@intel.com>
3666
3667 * Makefile.in (install-only): Create dest dir. Support DESTDIR.
3668 (uninstall): Support DESTDIR.
3669
7f313d07
BC
3670Mon Jul 21 20:09:34 UTC 2003 Brendan Conoboy <blc@redhat.com>
3671
3672 * configure.srv: Add xscale*linux copy of arm*linux entry.
3673
3b2fc2ea
DJ
36742003-07-24 Daniel Jacobowitz <drow@mvista.com>
3675
3676 * linux-arm-low.c (arm_reinsert_addr): New function.
3677 (the_low_target): Add arm_reinsert_addr.
3678
1c0a559e
MK
36792003-07-08 Mark Kettenis <kettenis@gnu.org>
3680
3681 * mem-break.c: Remove whitespace at end of file.
3682
43d5792c
DJ
36832003-06-28 Daniel Jacobowitz <drow@mvista.com>
3684
3685 * configure.in: Check whether we need to prototype strerror.
3686 * server.h: Optionally prototype strerror.
3687 * gdbreplay.c (perror_with_name): Use strerror.
3688 * linux-low.c (linux_attach_lwp): Use strerror.
3689 * utils.c (perror_with_name): Use strerror.
3690 * config.in, configure: Regenerated.
3691
c8a86edf
DJ
36922003-06-28 Daniel Jacobowitz <drow@mvista.com>
3693
3694 * linux-sh-low.c (sh_regmap): Fix FP register offsets, reported by
3695 SUGIOKA Toshinobu <sugioka@itonet.co.jp>.
3696
73d37363
DJ
36972003-06-20 Daniel Jacobowitz <drow@mvista.com>
3698
3699 * Makefile.in (SFILES): Update.
3700 * low-hppabsd.c, low-lynx.c, low-nbsd.c, low-sim.c, low-sparc.c,
3701 low-sun3.c: Remove files.
3702
6ad8ae5c
DJ
37032003-06-17 Daniel Jacobowitz <drow@mvista.com>
3704
3705 * linux-low.c: Move comment to linux_thread_alive where it belonged.
3706 (linux_detach_one_process, linux_detach): New functions.
3707 (linux_target_ops): Add linux_detach.
3708 * server.c (main): Handle 'D' packet.
3709 * target.h (struct target_ops): Add "detach" member.
3710 (detach_inferior): Define.
3711
1581182a
MK
37122003-06-13 Mark Kettenis <kettenis@gnu.org>
3713
3714 From Kelley Cook <kelleycook@wideopenwest.com>:
3715 * configure.srv: Accept i[34567]86 variants.
3716
e5379b03
DJ
37172003-06-05 Daniel Jacobowitz <drow@mvista.com>
3718
3719 * linux-low.c (linux_wait_for_event): Correct comment typos.
3720 (linux_resume_one_process): Call check_removed_breakpoint.
3721 (linux_send_signal): New function.
3722 (linux_target_ops): Add linux_send_signal.
3723 * remote-utils.c (putpkt, input_interrupt): Use send_signal instead
3724 of kill.
3725 * target.h (struct target_ops): Add send_signal.
3726
2ff29de4
JB
37272003-05-29 Jim Blandy <jimb@redhat.com>
3728
3729 * linux-low.c (usr_store_inferior_registers): Transfer buf in
3730 PTRACE_XFER_TYPE-sized chunks, not int-sized chunks. Otherwise,
3731 if 'int' is smaller than PTRACE_XFER_TYPE, you end up throwing
3732 away part of the register's value.
3733
254787d4
DJ
37342003-03-26 Daniel Jacobowitz <drow@mvista.com>
3735
3736 * linux-low.c (linux_create_inferior): Use __SIGRTMIN.
3737 (linux_wait_for_event, linux_init_signals): Likewise.
3738
94e10508
DJ
37392003-03-17 Daniel Jacobowitz <drow@mvista.com>
3740
3741 * configure.in: Check for stdlib.h.
3742 * configure: Regenerated.
3743 * config.in: Regenerated.
3744
4c0711e0
DJ
37452003-01-04 Andreas Schwab <schwab@suse.de>
3746
3747 * linux-m68k-low.c (m68k_num_regs): Define to 29 instead of 31.
3748
ef66e766
AC
37492003-01-02 Andrew Cagney <ac131313@redhat.com>
3750
3751 * Makefile.in: Remove obsolete code.
3752
a1358604
DJ
37532002-11-20 Daniel Jacobowitz <drow@mvista.com>
3754
3755 * linux-s390-low.c (s390_regmap): Check GPR_SIZE instead of
3756 defined(PT_FPR0_HI).
3757
23ce3b1c
DJ
37582002-11-17 Stuart Hughes <seh@zee2.com>
3759
3760 * linux-arm-low.c (arm_num_regs): Increase.
3761 (arm_regmap): Include status register.
3762
37632002-11-17 Daniel Jacobowitz <drow@mvista.com>
3764
3765 * linux-low.c (register_addr): Remove incorrect -1 check.
3766
a9fa9f7d
DJ
37672002-08-29 Daniel Jacobowitz <drow@mvista.com>
3768
3769 * linux-low.c (linux_create_inferior): Call setpgid. Return
3770 the new PID.
3771 (unstopped_p, linux_signal_pid): Remove.
3772 (linux_target_ops): Remove linux_signal_pid.
3773 * remote-utils.c (putpkt, input_interrupt): Use signal_pid
3774 global instead of target method.
3775 * target.h (struct target_ops): Remove signal_pid. Update comment
3776 for create_inferior.
3777 * server.c (signal_pid): New variable.
3778 (create_inferior): Set signal_pid. Block SIGTTOU and SIGTTIN in
4b8dad4a 3779 gdbserver. Set the child to be the foreground process group.
a9fa9f7d
DJ
3780 (attach_inferior): Set signal_pid.
3781
17574093
DJ
37822002-08-23 Daniel Jacobowitz <drow@mvista.com>
3783
3784 * ChangeLog: New file, with entries from gdb/ChangeLog after GDB 5.2.
3785
37862002-08-20 Jim Blandy <jimb@redhat.com>
3787
3788 * Makefile.in (LDFLAGS): Allow the configure script to establish a
3789 default for this.
3790
37912002-08-01 Andrew Cagney <cagney@redhat.com>
3792
3793 * Makefile.in: Make chill references obsolete.
3794
37952002-07-24 Kevin Buettner <kevinb@redhat.com>
3796
3797 * configure.in (unistd.h): Add to AC_CHECK_HEADERS list.
3798 * configure: Regenerate.
3799 * config.in: Regenerate.
3800
38012002-07-09 David O'Brien <obrien@FreeBSD.org>
3802
3803 * gdbreplay.c (stdlib.h, unistd.h): Conditionaly include.
3804 (perror_with_name, remote_close, remote_open, expect, play): Static.
3805
38062002-07-04 Michal Ludvig <mludvig@suse.cz>
3807
4b8dad4a 3808 * linux-x86-64-low.c (x86_64_regmap): Make it an array of
17574093
DJ
3809 byte offsets instead of an array of indexes.
3810 (x86_64_store_gregset, x86_64_store_fpregset): Parameter made const.
3811
38122002-06-13 Daniel Jacobowitz <drow@mvista.com>
3813
3814 * regcache.c: Add comment.
3815
38162002-06-11 Daniel Jacobowitz <drow@mvista.com>
3817
3818 * thread-db.c: New file.
3819 * proc-service.c: New file.
3820 * acinclude.m4: New file.
3821 * Makefile.in: Add GDBSERVER_LIBS, gdb_proc_service_h,
3822 proc-service.o, and thread-db.o.
3823 (linux-low.o): Add USE_THREAD_DB.
3824 * acconfig.h: Add HAVE_PRGREGSET_T, HAVE_PRFPREGSET_T,
3825 HAVE_LWPID_T, HAVE_PSADDR_T, and PRFPREGSET_T_BROKEN.
3826 * aclocal.m4: Regenerated.
3827 * config.in: Regenerated.
3828 * configure: Regenerated.
3829 * configure.in: Check for proc_service.h, sys/procfs.h,
3830 thread_db.h, and linux/elf.h headrs.
3831 Check for lwpid_t, psaddr_t, prgregset_t, prfpregset_t, and
3832 PRFPREGSET_T_BROKEN. Introduce srv_thread_depfiles and USE_THREAD_DB.
3833 Check for -lthread_db and thread support.
3834 * configure.srv: Enable thread_db support for ARM, i386, MIPS,
3835 PowerPC, and SuperH.
3836 * i387-fp.c: Constify arguments.
3837 * i387-fp.h: Likewise.
3838 * inferiors.c: (struct thread_info): Renamed from
3839 `struct inferior_info'. Remove PID member. Use generic inferior
3840 list header. All uses updated.
3841 (inferiors, signal_pid): Removed.
3842 (all_threads): New variable.
3843 (get_thread): Define.
3844 (add_inferior_to_list): New function.
3845 (for_each_inferior): New function.
3846 (change_inferior_id): New function.
3847 (add_inferior): Removed.
3848 (remove_inferior): New function.
3849 (add_thread): New function.
3850 (free_one_thread): New function.
3851 (remove_thread): New function.
3852 (clear_inferiors): Use for_each_inferior and free_one_thread.
3853 (find_inferior): New function.
3854 (find_inferior_id): New function.
3855 (inferior_target_data): Update argument type.
3856 (set_inferior_target_data): Likewise.
3857 (inferior_regcache_data): Likewise.
3858 (set_inferior_regcache_data): Likewise.
3859 * linux-low.c (linux_bp_reinsert): Remove.
3860 (all_processes, stopping_threads, using_thrads)
3861 (struct pending_signals, debug_threads, pid_of): New.
3862 (inferior_pid): Replace with macro.
3863 (struct inferior_linux_data): Remove.
3864 (get_stop_pc, add_process): New functions.
3865 (linux_create_inferior): Restore SIGRTMIN+1 before calling exec.
3866 Use add_process and add_thread.
3867 (linux_attach_lwp): New function, based on old linux_attach. Use
3868 add_process and add_thread. Set stop_expected for new threads.
3869 (linux_attach): New function.
3870 (linux_kill_one_process): New function.
3871 (linux_kill): Kill all LWPs.
3872 (linux_thread_alive): Use find_inferior_id.
3873 (check_removed_breakpoints, status_pending_p): New functions.
3874 (linux_wait_for_process): Renamed from linux_wait_for_one_inferior.
3875 Update. Use WNOHANG. Wait for cloned processes also. Update process
3876 struct for the found process.
3877 (linux_wait_for_event): New function.
3878 (linux_wait): Use it. Support LWPs.
3879 (send_sigstop, wait_for_sigstop, stop_all_processes)
3880 (linux_resume_one_process, linux_continue_one_process): New functions.
3881 (linux_resume): Support LWPs.
3882 (REGISTER_RAW_SIZE): Remove.
3883 (fetch_register): Use register_size instead. Call supply_register.
3884 (usr_store_inferior_registers): Likewise. Call collect_register.
3885 Fix recursive case.
3886 (regsets_fetch_inferior_registers): Improve error message.
3887 (regsets_store_inferior_registers): Add debugging.
3888 (linux_look_up_symbols): Call thread_db_init if USE_THREAD_DB.
3889 (unstopped_p, linux_signal_pid): New functions.
3890 (linux_target_ops): Add linux_signal_pid.
3891 (linux_init_signals): New function.
3892 (initialize_low): Call it. Initialize using_threads.
3893 * regcache.c (inferior_regcache_data): Add valid
3894 flag.
3895 (get_regcache): Fetch registers lazily. Add fetch argument
3896 and update all callers.
3897 (regcache_invalidate_one, regcache_invalidate): New
3898 functions.
3899 (new_register_cache): Renamed from create_register_cache.
3900 Return the new regcache.
3901 (free_register_cache): Change argument to a void *.
3902 (registers_to_string, registers_from_string): Call get_regcache
3903 with fetch flag set.
3904 (register_data): Make static. Pass fetch flag to get_regcache.
3905 (supply_register): Call get_regcache with fetch flag clear.
3906 (collect_register): Call get_regcache with fetch flag set.
3907 (collect_register_as_string): New function.
3908 * regcache.h: Update.
3909 * remote-utils.c (putpkt): Flush after debug output and use
3910 stderr.
3911 Handle input interrupts while waiting for an ACK.
3912 (input_interrupt): Use signal_pid method.
3913 (getpkt): Flush after debug output and use stderr.
3914 (outreg): Use collect_register_as_string.
3915 (new_thread_notify, dead_thread_notify): New functions.
3916 (prepare_resume_reply): Check using_threads. Set thread_from_wait
3917 and general_thread.
3918 (look_up_one_symbol): Flush after debug output.
3919 * server.c (step_thread, server_waiting): New variables.
3920 (start_inferior): Don't use signal_pid. Update call to mywait.
3921 (attach_inferior): Update call to mywait.
3922 (handle_query): Handle qfThreadInfo and qsThreadInfo.
3923 (main): Don't fetch/store registers explicitly. Use
3924 set_desired_inferior. Support proposed ``Hs'' packet. Update
3925 calls to mywait.
3926 * server.h: Update.
3927 (struct inferior_list, struct_inferior_list_entry): New.
3928 * target.c (set_desired_inferior): New.
3929 (write_inferior_memory): Constify.
3930 (mywait): New function.
3931 * target.h: Update.
3932 (struct target_ops): New signal_pid method.
3933 (mywait): Removed macro, added prototype.
3934
3935 * linux-low.h (regset_func): Removed.
3936 (regset_fill_func, regset_store_func): New.
3937 (enum regset_type): New.
3938 (struct regset_info): Add type field. Use new operation types.
3939 (struct linux_target_ops): stop_pc renamed to get_pc.
3940 Add decr_pc_after_break and breakpoint_at.
3941 (get_process, get_thread_proess, get_process_thread)
3942 (strut process_info, all_processes, linux_attach_lwp)
3943 (thread_db_init): New.
3944
3945 * linux-arm-low.c (arm_get_pc, arm_set_pc,
3946 arm_breakpoint, arm_breakpoint_len, arm_breakpoint_at): New.
3947 (the_low_target): Add new members.
3948 * linux-i386-low.c (i386_store_gregset, i386_store_fpregset)
3949 (i386_store_fpxregset): Constify.
3950 (target_regsets): Add new kind identifier.
3951 (i386_get_pc): Renamed from i386_stop_pc. Simplify.
3952 (i386_set_pc): Add debugging.
3953 (i386_breakpoint_at): New function.
3954 (the_low_target): Add new members.
3955 * linux-mips-low.c (mips_get_pc, mips_set_pc)
3956 (mips_breakpoint, mips_breakpoint_len, mips_reinsert_addr)
3957 (mips_breakpoint_at): New.
3958 (the_low_target): Add new members.
3959 * linux-ppc-low.c (ppc_get_pc, ppc_set_pc)
3960 (ppc_breakpoint, ppc_breakpoint_len, ppc_breakpoint_at): New.
3961 (the_low_target): Add new members.
3962 * linux-sh-low.c (sh_get_pc, sh_set_pc)
3963 (sh_breakpoint, sh_breakpoint_len, sh_breakpoint_at): New.
3964 (the_low_target): Add new members.
3965 * linux-x86-64-low.c (target_regsets): Add new kind
3966 identifier.
3967
39682002-05-15 Daniel Jacobowitz <drow@mvista.com>
3969
3970 From Martin Pool <mbp@samba.org>:
3971 * server.c (gdbserver_usage): New function.
3972 (main): Call it.
3973
39742002-05-14 Daniel Jacobowitz <drow@mvista.com>
3975
3976 * mem-break.c (reinsert_breakpoint_by_bp): Correct typo
3977 stop_at -> stop_pc.
3978
39792002-05-04 Andrew Cagney <ac131313@redhat.com>
3980
3981 * Makefile.in: Remove obsolete code.
3982
39832002-04-24 Michal Ludvig <mludvig@suse.cz>
3984
3985 * linux-low.c (regsets_fetch_inferior_registers),
3986 (regsets_store_inferior_registers): Removed cast to int from
3987 ptrace() calls.
3988 * regcache.h: Added declaration of struct inferior_info.
3989
39902002-04-20 Daniel Jacobowitz <drow@mvista.com>
3991
3992 * inferiors.c (struct inferior_info): Add regcache_data.
3993 (add_inferior): Call create_register_cache.
3994 (clear_inferiors): Call free_register_cache.
3995 (inferior_regcache_data, set_inferior_regcache_data): New functions.
3996 * regcache.c (struct inferior_regcache_data): New.
3997 (registers): Remove.
3998 (get_regcache): New function.
3999 (create_register_cache, free_register_cache): New functions.
4000 (set_register_cache): Don't initialize the register cache here.
4001 (registers_to_string, registers_from_string, register_data): Call
4002 get_regcache.
4003 * regcache.h: Add prototypes.
4004 * server.h: Likewise.
4005
40062002-04-20 Daniel Jacobowitz <drow@mvista.com>
4007
4008 * mem-break.c: New file.
4009 * mem-break.h: New file.
4010 * Makefile.in: Add mem-break.o rule; update server.h
4011 dependencies.
4012 * inferiors.c (struct inferior_info): Add target_data
4013 member.
4014 (clear_inferiors): Free target_data member if set.
4015 (inferior_target_data, set_inferior_target_data): New functions.
4016 * linux-i386-low.c (i386_breakpoint, i386_breakpoint_len)
4017 (i386_stop_pc, i386_set_pc): New. Add to the_low_target.
4018 * linux-low.c (linux_bp_reinsert): New variable.
4019 (struct inferior_linux_data): New.
4020 (linux_create_inferior): Use set_inferior_target_data.
4021 (linux_attach): Likewise. Call add_inferior.
4022 (linux_wait_for_one_inferior): New function.
4023 (linux_wait): Call it.
4024 (linux_write_memory): Add const.
4025 (initialize_low): Call set_breakpoint_data.
4026 * linux-low.h (struct linux_target_ops): Add breakpoint
4027 handling members.
4028 * server.c (attach_inferior): Remove extra add_inferior
4029 call.
4030 * server.h: Include mem-break.h. Update inferior.c
4031 prototypes.
4032 * target.c (read_inferior_memory)
4033 (write_inferior_memory): New functions.
4034 * target.h (read_inferior_memory)
4035 (write_inferior_memory): Change macros to prototypes.
4036 (struct target_ops): Update comments. Add const to write_memory
4037 definition.
4038
40392002-04-11 Daniel Jacobowitz <drow@mvista.com>
4040
4041 * linux-low.c (usr_store_inferior_registers): Support
4042 registers which are allowed to fail to store.
4043 * linux-low.h (linux_target_ops): Likewise.
4044 * linux-ppc-low.c (ppc_regmap): Support FPSCR.
4045 (ppc_cannot_store_register): FPSCR may not be storable.
4046
40472002-04-09 Daniel Jacobowitz <drow@mvista.com>
4048
4049 * server.h: Include <string.h> if HAVE_STRING_H.
4050 * ChangeLog: Correct paths in last ChangeLog entry.
4051
40522002-04-09 Daniel Jacobowitz <drow@mvista.com>
4053
4054 * linux-low.h: Remove obsolete prototypes.
4055 (struct linux_target_ops): New.
4056 (extern the_low_target): New.
4057 * linux-low.c (num_regs, regmap): Remove declarations.
4058 (register_addr): Use the_low_target explicitly.
4059 (fetch_register): Likewise.
4060 (usr_fetch_inferior_registers): Likewise.
4061 (usr_store_inferior_registers): Likewise.
4062 * linux-arm-low.c (num_regs): Remove.
4063 (arm_num_regs): Define.
4064 (arm_regmap): Renamed from regmap, made static.
4065 (arm_cannot_fetch_register): Renamed from cannot_fetch_register,
4066 made static.
4067 (arm_cannot_store_register): Renamed from cannot_store_register,
4068 made static.
4069 (the_low_target): New.
4070 * linux-i386-low.c (num_regs): Remove.
4071 (i386_num_regs): Define.
4072 (i386_regmap): Renamed from regmap, made static.
4073 (i386_cannot_fetch_register): Renamed from cannot_fetch_register,
4074 made static.
4075 (i386_cannot_store_register): Renamed from cannot_store_register,
4076 made static.
4077 (the_low_target): New.
4078 * linux-ia64-low.c (num_regs): Remove.
4079 (ia64_num_regs): Define.
4080 (ia64_regmap): Renamed from regmap, made static.
4081 (ia64_cannot_fetch_register): Renamed from cannot_fetch_register,
4082 made static.
4083 (ia64_cannot_store_register): Renamed from cannot_store_register,
4084 made static.
4085 (the_low_target): New.
4086 * linux-m68k-low.c (num_regs): Remove.
4087 (m68k_num_regs): Define.
4088 (m68k_regmap): Renamed from regmap, made static.
4089 (m68k_cannot_fetch_register): Renamed from cannot_fetch_register,
4090 made static.
4091 (m68k_cannot_store_register): Renamed from cannot_store_register,
4092 made static.
4093 (the_low_target): New.
4094 * linux-mips-low.c (num_regs): Remove.
4095 (mips_num_regs): Define.
4096 (mips_regmap): Renamed from regmap, made static.
4097 (mips_cannot_fetch_register): Renamed from cannot_fetch_register,
4098 made static.
4099 (mips_cannot_store_register): Renamed from cannot_store_register,
4100 made static.
4101 (the_low_target): New.
4102 * linux-ppc-low.c (num_regs): Remove.
4103 (ppc_num_regs): Define.
4104 (ppc_regmap): Renamed from regmap, made static.
4105 (ppc_cannot_fetch_register): Renamed from cannot_fetch_register,
4106 made static.
4107 (ppc_cannot_store_register): Renamed from cannot_store_register,
4108 made static.
4109 (the_low_target): New.
4110 * linux-s390-low.c (num_regs): Remove.
4111 (s390_num_regs): Define.
4112 (s390_regmap): Renamed from regmap, made static.
4113 (s390_cannot_fetch_register): Renamed from cannot_fetch_register,
4114 made static.
4115 (s390_cannot_store_register): Renamed from cannot_store_register,
4116 made static.
4117 (the_low_target): New.
4118 * linux-sh-low.c (num_regs): Remove.
4119 (sh_num_regs): Define.
4120 (sh_regmap): Renamed from regmap, made static.
4121 (sh_cannot_fetch_register): Renamed from cannot_fetch_register,
4122 made static.
4123 (sh_cannot_store_register): Renamed from cannot_store_register,
4124 made static.
4125 (the_low_target): New.
4126 * linux-x86-64-low.c (x86_64_regmap): Renamed from regmap.
4127 (the_low_target): New.
4128
41292002-04-09 Daniel Jacobowitz <drow@mvista.com>
4130
4131 * Makefile.in: Add stamp-h target.
4132 * configure.in: Create stamp-h.
4133 * configure: Regenerated.
4134
41352002-04-09 Daniel Jacobowitz <drow@mvista.com>
4136
4137 * inferiors.c: New file.
4138 * target.c: New file.
4139 * target.h: New file.
4140 * Makefile.in: Add target.o and inferiors.o. Update
4141 dependencies.
4142 * linux-low.c (inferior_pid): New static variable,
4143 moved from server.c.
4144 (linux_create_inferior): Renamed from create_inferior.
4145 Call add_inferior. Return 0 on success instead of a PID.
4146 (linux_attach): Renamed from myattach.
4147 (linux_kill): Renamed from kill_inferior. Call clear_inferiors ().
4148 (linux_thread_alive): Renamed from mythread_alive.
4149 (linux_wait): Renamed from mywait. Call clear_inferiors () if the
4150 child dies.
4151 (linux_resume): Renamed from myresume. Add missing ``return 0''.
4152 (regsets_store_inferior_registers): Correct error message.
4153 Add missing ``return 0''.
4154 (linux_fetch_registers): Renamed from fetch_inferior_registers.
4155 (linux_store_registers): Renamed from store_inferior_registers.
4156 (linux_read_memory): Renamed from read_inferior_memory.
4157 (linux_write_memory): Renamed from write_inferior_memory.
4158 (linux_target_ops): New structure.
4159 (initialize_low): Call set_target_ops ().
4160 * remote-utils.c (unhexify): New function.
4161 (hexify): New function.
4162 (input_interrupt): Send signals to ``signal_pid''.
4163 * server.c (inferior_pid): Remove.
4164 (start_inferior): Update create_inferior call.
4165 (attach_inferior): Call add_inferior.
4166 (handle_query): New function.
4167 (main): Call handle_query for `q' packets.
4168 * server.h: Include "target.h". Remove obsolete prototypes.
4169 Add prototypes for "inferiors.c", "target.c", hexify, and unhexify.
4170
41712002-04-09 Daniel Jacobowitz <drow@mvista.com>
4172
4173 * Makefile.in: Add WARN_CFLAGS. Update configury
4174 dependencies.
4175 * configure.in: Check for <string.h>
4176 * configure: Regenerate.
4177 * config.in: Regenerate.
4178 * gdbreplay.c: Include needed system headers.
4179 (remote_open): Remove strchr prototype.
4180 * linux-low.h: Correct #ifdef to HAVE_LINUX_USRREGS.
4181 * regcache.c (supply_register): Change buf argument to const void *.
4182 (supply_register_by_name): Likewise.
4183 (collect_register): Change buf argument to void *.
4184 (collect_register_by_name): Likewise.
4185 * regcache.h: Add missing prototypes.
4186 * remote-utils.c: Include <arpa/inet.h> for inet_ntoa.
4187 * server.c (handle_query): New function.
4188 (attached): New static variable, moved out of main.
4189 (main): Quiet longjmp clobber warnings.
4190 * server.h: Add ATTR_NORETURN and ATTR_FORMAT. Update prototypes.
4191 * utils.c (error): Remove NORETURN.
4192 (fatal): Likewise.
This page took 0.975759 seconds and 4 git commands to generate.