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