]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gdb/gdbserver/ChangeLog
gdb/gdbserver:
[thirdparty/binutils-gdb.git] / gdb / gdbserver / ChangeLog
CommitLineData
19560ba5
YQ
12012-03-02 Yao Qi <yao@codesourcery.com>
2
3 * tracepoint.c (collect_ust_data_at_tracepoint): Remove parameters
4 `stop_pc' and `tpoint'. Update caller.
5
1faeff08
MR
62012-03-01 Maciej W. Rozycki <macro@codesourcery.com>
7
8 * linux-low.h (linux_target_ops): Add regset_bitmap member.
9 * linux-low.c (use_linux_regsets): New macro.
10 [!HAVE_LINUX_REGSETS] (regsets_fetch_inferior_registers): Likewise.
11 [!HAVE_LINUX_REGSETS] (regsets_store_inferior_registers): Likewise.
12 (linux_register_in_regsets): New function.
13 (usr_fetch_inferior_registers): Skip registers covered by
14 regsets.
15 (usr_store_inferior_registers): Likewise.
16 (usr_fetch_inferior_registers): New macro.
17 (usr_store_inferior_registers): Likewise.
18 (linux_fetch_registers): Handle mixed regset/non-regset targets.
19 (linux_store_registers): Likewise.
20 * linux-mips-low.c (init_registers_mips_dsp_linux): New
21 prototype.
22 (init_registers_mips64_dsp_linux): Likewise.
23 (init_registers_mips_linux): New macro.
24 (init_registers_mips_dsp_linux): Likewise.
25 (mips_dsp_num_regs): Likewise.
26 (DSP_BASE, DSP_CONTROL): New fallback macros.
27 (mips_base_regs): New macro.
28 (mips_regmap): Use it. Fix the size.
29 (mips_dsp_regmap): New variable.
30 (mips_dsp_regset_bitmap): Likewise.
31 (mips_arch_setup): New function.
32 (mips_cannot_fetch_register): Use the_low_target.regmap rather
33 than mips_regmap.
34 (mips_cannot_store_register): Likewise.
35 (the_low_target): Update .arch_setup, .num_regs and .regmap
36 initializers. Add .regset_bitmap initializer.
37 * linux-arm-low.c (the_low_target): Add .regset_bitmap
38 initializer.
39 * linux-bfin-low.c (the_low_target): Likewise.
40 * linux-cris-low.c (the_low_target): Likewise.
41 * linux-crisv32-low.c (the_low_target): Likewise.
42 * linux-ia64-low.c (the_low_target): Likewise.
43 * linux-m32r-low.c (the_low_target): Likewise.
44 * linux-m68k-low.c (the_low_target): Likewise.
45 * linux-ppc-low.c (the_low_target): Likewise.
46 * linux-s390-low.c (the_low_target): Likewise.
47 * linux-sh-low.c (the_low_target): Likewise.
48 * linux-sparc-low.c (the_low_target): Likewise.
49 * linux-tic6x-low.c (the_low_target): Likewise.
50 * linux-x86-low.c (the_low_target): Likewise.
51 * linux-xtensa-low.c (the_low_target): Likewise.
52 * configure.srv <mips*-*-linux*>: Add mips-dsp-linux.o and
53 mips64-dsp-linux.o to srv_regobj. Add mips-dsp-linux.xml,
54 mips64-dsp-linux.xml, mips-dsp.xml and mips64-dsp.xml to
55 srv_xmlfiles.
56 * Makefile.in (mips-dsp-linux.o, mips-dsp-linux.c): New targets.
57 (mips64-dsp-linux.o, mips64-dsp-linux.c): Likewise.
58
c03e6ccc
YQ
592012-02-29 Yao Qi <yao@codesourcery.com>
60 Pedro Alves <palves@redhat.com>
61
62 * linux-low.c: (linux_wait_1): Call unsuspend_all_lwps when
63 `step_over_finished' is true.
64
644cebc9
PA
652012-02-27 Pedro Alves <palves@redhat.com>
66
67 * linux-low.c (pid_is_stopped): Delete, moved to common/.
68 (linux_attach_lwp_1): Adjust to use linux_proc_pid_is_stopped.
69
c14d7ab2
PA
702012-02-27 Pedro Alves <palves@redhat.com>
71
72 PR server/9684
73 * linux-low.c (pid_is_stopped): New.
74 (linux_attach_lwp_1): Handle attaching to 'T (stopped)' processes.
75
412c89dd
LM
762012-02-25 Luis Machado <lgustavo@codesourcery.com>
77
78 * mem-break.c (clear_gdb_breakpoint_conditions): Fix de-allocation
79 of conditions.
80
b745defe
MR
812012-02-24 Maciej W. Rozycki <macro@codesourcery.com>
82
83 * linux-mips-low.c (mips_regmap): Correct the index of $f9.
84
9f3a5c85
LM
852012-02-24 Luis Machado <lgustavo@codesourcery>
86
87 * server.c (handle_query): Advertise support for target-side
88 breakpoint condition evaluation.
89 (process_point_options): New function.
90 (process_serial_event): When inserting a breakpoint, check for
91 a target-side condition that should be evaluated.
92
93 * mem-break.c: Include regcache.h and ax.h.
94 (point_cond_list_t): New data structure.
95 (breakpoint) <cond_list>: New field.
96 (find_gdb_breakpoint_at): Make non-static.
97 (delete_gdb_breakpoint_at): Clear any target-side
98 conditions.
99 (clear_gdb_breakpoint_conditions): New function.
100 (add_condition_to_breakpoint): Likewise.
101 (add_breakpoint_condition): Likewise.
102 (gdb_condition_true_at_breakpoint): Likewise.
103 (gdb_breakpoint_here): Return result directly instead
104 of going through a local variable.
105
106 * mem-break.h (find_gdb_breakpoint_at): New prototype.
107 (clear_gdb_breakpoint_conditions): Likewise.
108 (add_breakpoint_condition): Likewise.
109 (gdb_condition_true_at_breakpoint): Likewise.
110
111 * linux-low.c (linux_wait_1): Evaluate target-side breakpoint condition.
112 (need_step_over_p): Take target-side breakpoint condition into
113 consideration.
114
5e1dc496
LM
1152012-02-24 Luis Machado <lgustavo@codesourcery>
116
117 * server.h: Include tracepoint.h.
118 (agent_mem_read, agent_get_trace_state_variable_value,
119 agent_set_trace_state_variable_value,
120 agent_tsv_read, agent_mem_read_string, get_get_tsv_func_addr,
121 get_set_tsv_func_addr): New prototypes.
122
123 * ax.h: New include file.
124 * ax.c: New source file.
125
126 * tracepoint.c: Include ax.h.
127 (gdb_agent_op, gdb_agent_op_names, gdb_agent_op_sizes,
128 agent_expr, eval_result_type): Move to ax.h.
129 (parse_agent_expr): Rename to ...
130 (gdb_parse_agent_expr): ... this, make it non-static and move
131 to ax.h.
132 (unparse_agent_expr) Rename to ...
133 (gdb_unparse_agent_expr): ... this, make it non-static and move
134 to ax.h.
135 (eval_agent_expr): Rename to ...
136 (eval_tracepoint_agent_expr): ... this.
137 (agent_mem_read, agent_mem_read_string, agent_tsv_read): Remove
138 forward declarations.
139 (add_tracepoint_action): Call gdb_parse_agent_expr (...).
140 (agent_get_trace_state_variable_value): New function.
141 (agent_set_trace_state_variable_value): New function.
142 (cmd_qtdp): Call gdb_parse_agent_expr (...).
143 (response_tracepoint): Call gdb_unparse_agent_expr (...).
144 (do_action_at_tracepoint): Call eval_tracepoint_agent_expr (...).
145 (condition_true_at_tracepoint): Likewise.
146 (parse_agent_expr): Rename to ...
147 (gdb_parse_agent_expr): ... this and move to ax.c.
148 (unparse_agent_expr): Rename to ...
149 (gdb_unparse_agent_expr): ... this and move to ax.c.
150 (gdb_agent_op_name): Move to ax.c.
151 (eval_agent_expr): Rename to ...
152 (gdb_eval_agent_expr): ... this, use regcache passed as parameter
153 and move to ax.c.
154 (eval_tracepoint_agent_expr): New function.
155 (agent_mem_read, agent_mem_read_string, agent_tsv_read): Make
156 non-static.
157 (current_insn_ptr, emit_error, struct bytecode_address): Move to
158 ax.c.
159 (emit_prologue, emit_epilogue, emit_add, emit_sub, emit_mul, emit_lsh,
160 emit_rsh_signed, emit_rsh_unsigned, emit_ext, emit_log_not,
161 emit_bit_and, emit_bit_or, emit_bit_xor, emit_bit_not, emit_equal,
162 emit_less_signed, emit_less_unsigned, emit_ref, emit_if_goto,
163 emit_goto, write_goto_address, emit_const, emit_reg, emit_pop,
164 emit_stack, emit_zero_ext, emit_swap, emit_stack_adjust,
165 emit_int_call_1, emit_void_call_2, emit_eq_goto, emit_ne_goto,
166 emit_lt_goto, emit_ge_goto, emit_gt_goto, emit_le_goto): Move to ax.c.
167 (get_get_tsv_func_addr, get_set_tsv_func_addr): New functions.
168 (compile_bytecodes): Remove forward declaration.
169 (is_goto_target): Move to ax.c.
170 (compile_bytecodes): Move to ax.c and call
171 agent_get_trace_state_variable_value (...) and
172 agent_set_trace_state_variable_value (...).
173
174 * Makefile.in: Update ax.c and IPA dependencies.
175
277e4e52
PA
1762012-02-24 Pedro Alves <palves@redhat.com>
177
178 * tracepoint.c (cmd_bigqtbuffer): Rename as ...
179 (cmd_bigqtbuffer_circular): ... this. Only handle
180 'QTBuffer:circular:'.
181 (handle_tracepoint_general_set): Adjust.
182
bf4c19f7
YQ
1832012-02-16 Yao Qi <yao@codesourcery.com>
184
185 * inferiors.c: Move code to ...
186 * dll.c: .... here. New.
187 * server.h: Declare clear_dlls.
188 * Makefile.in (SFILES): Add dll.c.
189 (OBS): Add dll.o
190 (dll.o): New rule.
191
d73f2619
YQ
1922012-02-11 Yao Qi <yao@codesourcery.com>
193
194 * server.c: (handle_monitor_command): Add a new parameter
195 `own_buf'.
196 (handle_query): Update caller.
197
f8255c2a
JB
1982012-02-09 Joel Brobecker <brobecker@adacore.com>
199
200 * configure.ac: Add readlink to AC_CHECK_FUNCS list.
201 * configure, config.in: Regenerate.
202 * hostio.c: Provide an alternate implementation if HAVE_READLINK
203 is not defined.
204
da84f473
PA
2052012-02-02 Pedro Alves <palves@redhat.com>
206
207 Try SIGKILL first, then PTRACE_KILL.
208 * linux-low.c (linux_kill_one_lwp): New.
209 (linux_kill_one_lwp): Rename to ...
210 (kill_one_lwp_callback): ... this. Use the new
211 linux_kill_one_lwp.
212
e886a173
PA
2132012-02-02 Pedro Alves <palves@redhat.com>
214
215 * tracepoint.c (cmd_qtminftpilen): Return 0 if there's no current
216 inferior.
217
be07f1a2
PA
2182012-01-27 Pedro Alves <palves@redhat.com>
219
220 * linux-low.c (linux_child_pid_to_exec_file): Delete.
221 (elf_64_file_p): Make static.
222 (linux_pid_exe_is_elf_64_file): New.
223 * linux-low.h (linux_child_pid_to_exec_file, elf_64_file_p):
224 Delete declarations.
225 (linux_pid_exe_is_elf_64_file): Declare.
226 * linux-x86-low.c (x86_arch_setup): Use
227 linux_pid_exe_is_elf_64_file.
228
d8301ad1
JK
2292012-01-25 Jan Kratochvil <jan.kratochvil@redhat.com>
230
231 * linux-low.c (linux_wait_for_event_1): Rename to ...
232 (linux_wait_for_event): ... here and merge it with former
233 linux_wait_for_event - new variable wait_ptid, use it.
234 (linux_wait_for_event): Remove - merge it to linux_wait_for_event_1.
235
01b17894
PA
2362012-01-23 Pedro Alves <palves@redhat.com>
237
238 * server.c (main): Avoid yet another case of infinite loop while
239 detaching/killing after a longjmp.
240
e825046f
JK
2412012-01-20 Jan Kratochvil <jan.kratochvil@redhat.com>
242
243 Code cleanup.
244 * linux-low.c (linux_wait_for_event_1): Use ptid_is_pid.
245
b9e7b9c3
UW
2462012-01-20 Ulrich Weigand <ulrich.weigand@linaro.org>
247
248 * hostio.c (handle_readlink): New function.
249 (handle_vFile): Call it to handle "vFile:readlink" packets.
250
901f9912
UW
2512012-01-20 Pedro Alves <palves@redhat.com>
252 Ulrich Weigand <ulrich.weigand@linaro.org>
253
254 * server.c (handle_v_requests): Only support vAttach and vRun to
255 start multiple processes when in extended protocol mode.
256
fc1ab1a0
PA
2572012-01-17 Pedro Alves <palves@redhat.com>
258
259 * tracepoint.c (initialize_tracepoint): Use mmap instead of
260 memalign plus mprotect to allocate the scratch buffer.
261
7d5d4e98
PA
2622012-01-13 Pedro Alves <palves@redhat.com>
263
264 * server.c (attach_inferior): Clear `cont_thread'.
265
f128d5e9
PA
2662012-01-13 Pedro Alves <palves@redhat.com>
267
268 * server.c (main): Avoid infinite loop while detaching/killing
269 after a longjmp.
270
06db92f0
DE
2712012-01-09 Doug Evans <dje@google.com>
272
273 * server.c (start_inferior): Set last_ptid in --wrapper case.
274
32d92999
YQ
2752012-01-06 Yao Qi <yao@codesourcery.com>
276
277 * tracepoint.c [IN_PROCESS_AGENT] (debug_threads): Macro
278 defined.
279 [IN_PROCESS_AGENT] (debug_agent): New global variable.
280
5e0a92a9
YQ
2812012-01-04 Yao Qi <yao@codesourcery.com>
282
283 * tracepoint.c (cmd_qtdp): Print debug message
284 for static tracepoint.
285
ae639e8c
YQ
2862012-01-04 Yao Qi <yao@codesourcery.com>
287
288 * tracepoint.c (trace_vdebug): Differentiate debug message
289 between gdbserver and IPA.
290
f72429c5
YQ
2912012-01-03 Yao Qi <yao@codesourcery.com>
292
293 * tracepoint.c (tracepoint_was_hit): Don't collect for
294 static tracepoint.
295
12c3e59c
JB
2962012-01-02 Joel Brobecker <brobecker@adacore.com>
297
298 * terminal.h: Reformat copyright header.
299
67827812
JB
3002012-01-02 Joel Brobecker <brobecker@adacore.com>
301
302 * server.c (gdbserver_version): Update copyright year.
303 * gdbreplay.c (gdbreplay_version): Likewise.
304
3e52c33d
JK
3052011-12-18 Jan Kratochvil <jan.kratochvil@redhat.com>
306
307 * linux-low.c (linux_create_inferior): Put empty if clause for write.
308
309 Revert:
310 2011-12-18 Hui Zhu <teawater@gmail.com>
311 * linux-low.c (linux_create_inferior): Save return value to ret.
312
66f1260e
HZ
3132011-12-18 Hui Zhu <teawater@gmail.com>
314
315 * linux-low.c (linux_create_inferior): Save return value to ret.
316
e77616d7
DE
3172011-12-16 Doug Evans <dje@google.com>
318
e7b06c57
DE
319 * linux-low.c (linux_create_inferior): If stdio connection,
320 redirect stdin from /dev/null, stdout to stderr.
321 * remote-utils.c (remote_is_stdio): New static global.
322 (remote_connection_is_stdio): New function.
323 (remote_prepare): Handle stdio connection.
324 (remote_open): Ditto.
325 (remote_close): Don't close stdin for stdio connections.
326 (read_prim,write_prim): New functions. Replace all calls to
327 read/write to these.
328 * server.c (main): Watch for "-" argument. Move call to
329 remote_prepare before start_inferior.
330 * server.h (STDIO_CONNECTION_NAME): New macro.
331 (remote_connection_is_stdio): Declare.
332
e77616d7
DE
333 * remote-utils.c (prepare_resume_reply): Remove extraneous \n
334 in debugging output.
335
82067193
YQ
3362011-12-15 Yao Qi <yao@codesourcery.com>
337
338 * tracepoint.c: Include sys/syscall.h.
339 (gdb_ust_thread): Remove preprocessor conditional.
340
82bfbe7e
PA
3412011-12-14 Pedro Alves <pedro@codesourcery.com>
342
343 * linux-low.c (linux_detach_one_lwp): Call
344 the_low_target.prepare_to_resume before detaching.
345
712c6575
YQ
3462011-12-14 Yao Qi <yao@codesourcery.com>
347
348 * tracepoint.c (gdb_ust_thread): Don't ignore return value
349 of write.
350
d54d1edf
YQ
3512011-12-14 Yao Qi <yao@codesourcery.com>
352
353 * i386-low.c (i386_low_stopped_data_address): Initialize local
354 variable `control'.
355
6210a125
PA
3562011-12-13 Pedro Alves <pedro@codesourcery.com>
357
358 PR remote/13492
359
360 * i386-low.c (i386_low_stopped_data_address): Avoid fetching
361 DR_CONTROL unless necessary. Extend comments.
362 * linux-x86-low.c (x86_linux_prepare_to_resume): Don't write to
363 DR0-3 if not used. If any watchpoint was set, clear DR_STATUS.
364
2ece8244
YQ
3652011-12-13 Yao Qi <yao@codesourcery.com>
366
367 * tracepoint.c (trace_buffer_alloc): Replace magic numbers with
368 macros.
369 (upload_fast_traceframes, upload_fast_traceframes): Likewise.
370
784867a5
JK
3712011-12-08 Jan Kratochvil <jan.kratochvil@redhat.com>
372
373 * linux-low.c (linux_kill): Skip PTRACE_KILL if LWP does not exist.
374 Print new debug message for such case.
375
6bf36717
JK
3762011-12-06 Jan Kratochvil <jan.kratochvil@redhat.com>
377
378 Fix overlapping memcpy.
379 * mem-break.c (set_raw_breakpoint_at): New variable buf. Use it for
380 the read_inferior_memory transfer.
381 (delete_fast_tracepoint_jump): New variable buf. Use it for the
382 write_inferior_memory transfer.
383 (set_fast_tracepoint_jump): New variable buf. Use it for the
384 read_inferior_memory and write_inferior_memory transfers.
385 (uninsert_fast_tracepoint_jumps_at, reinsert_fast_tracepoint_jumps_at)
386 (delete_raw_breakpoint, uninsert_raw_breakpoint): New variable buf.
387 Use it for the write_inferior_memory transfer.
388 (check_mem_read, check_mem_write): New gdb_asserts for overlapping
389 buffers.
390
50275556
MR
3912011-12-06 Maciej W. Rozycki <macro@codesourcery.com>
392
393 * linux-low.c (fetch_register, store_register): Make code
394 consistent, fix formatting.
395
7325beb4
MR
3962011-12-06 Maciej W. Rozycki <macro@codesourcery.com>
397
398 * linux-low.c (usr_store_inferior_registers): Factor out code
399 to handle individual registers into...
400 (store_register): ... this new function.
401
c642a434
UW
4022011-12-06 Ulrich Weigand <uweigand@de.ibm.com>
403
404 * Makefile.in (s390-linux32v1.o, s390-linux32v1.c): New rules.
405 (s390-linux32v2.o, s390-linux32v2.c): Likewise.
406 (s390-linux64v1.o, s390-linux64v1.c): Likewise.
407 (s390-linux64v2.o, s390-linux64v2.c): Likewise.
408 (s390x-linux64v1.o, s390x-linux64v1.c): Likewise.
409 (s390x-linux64v2.o, s390x-linux64v2.c): Likewise.
410 * configure.srv [s390*-*-linux*] (srv_regobj): Add new objects.
411 (srv_xmlfiles): Add new XML files.
412
413 * linux-s390-low.c: Include "elf/common.h", <sys/ptrace.h>,
414 and <sys/uio.h>.
415 (PTRACE_GETREGSET, PTRACE_SETREGSET): Define if undefined.
416 (init_registers_s390_linux32v1): Add prototype.
417 (init_registers_s390_linux32v2): Likewise.
418 (init_registers_s390_linux64v1): Likewise.
419 (init_registers_s390_linux64v2): Likewise.
420 (init_registers_s390x_linux64v1): Likewise.
421 (init_registers_s390x_linux64v2): Likewise.
422 (s390_num_regs): Increment to 52.
423 (s390_regmap): Add orig_r2 register.
424 (s390_num_regs_3264): Increment to 68.
425 (s390_regmap_3264): Add orig_r2 register.
426 (s390_collect_ptrace_register): Handle orig_r2 register.
427 (s390_supply_ptrace_register): Likewise.
428 (s390_fill_last_break): New function.
429 (s390_store_last_break): Likewise.
430 (s390_fill_system_call): New function.
431 (s390_store_system_call): Likewise.
432 (target_regsets): Handle NT_S390_LAST_BREAK and NT_S390_SYSTEM_CALL
433 register sets.
434 (s390_check_regset): New function.
435 (s390_arch_setup): Check for presence of NT_S390_LAST_BREAK and
436 NT_S390_SYSTEM_CALL regsets and use appropriate description.
437 Update target_regsets for available register sets.
438
2268b414
JK
4392011-12-02 Paul Pluzhnikov <ppluzhnikov@google.com>
440 Jan Kratochvil <jan.kratochvil@redhat.com>
441
442 * linux-low.c (get_phdr_phnum_from_proc_auxv, get_dynamic, get_r_debug)
443 (read_one_ptr, struct link_map_offsets, linux_qxfer_libraries_svr4):
444 New.
445 (struct linux_target_ops): Install linux_qxfer_libraries_svr4.
446 * linux-low.h (struct process_info_private): New member r_debug.
447 * server.c (handle_qxfer_libraries): Call
448 the_target->qxfer_libraries_svr4.
449 (handle_qxfer_libraries_svr4): New function.
450 (qxfer_packets): New entry "libraries-svr4".
451 (handle_query): Check QXFER_LIBRARIES_SVR4 and report libraries-svr4.
452 * target.h (struct target_ops): New member qxfer_libraries_svr4.
453 * remote.c (remote_xfer_partial): Call add_packet_config_cmd for
454 PACKET_qXfer_libraries_svr4.
455
d6db1fab
UW
4562011-11-30 Ulrich Weigand <uweigand@de.ibm.com>
457
458 * linux-s390-low.c (s390_collect_ptrace_register): Fully convert
459 PSW address/mask between 8-byte and 16-byte formats.
460 (s390_supply_ptrace_register): Likewise.
461 (s390_get_pc, s390_set_pc): 4-byte PSW address always includes
462 basic addressing mode bit.
463
242f5f1c
SS
4642011-11-24 Stan Shebs <stan@codesourcery.com>
465
466 * tracepoint.c (cmd_qtstatus): Use plongest instead of %llx.
467
f196051f
SS
4682011-11-17 Stan Shebs <stan@codesourcery.com>
469
470 * tracepoint.c (struct tracepoint): New field traceframe_usage.
471 (tracing_start_time): New global.
472 (tracing_stop_time): New global.
473 (tracing_user_name): New global.
474 (tracing_notes): New global.
475 (tracing_stop_note): New global.
476 (cmd_qtstart): Set traceframe_usage, start_time.
477 (stop_tracing): Set stop_time.
478 (cmd_qtstatus): Report additional status.
479 (cmd_qtp): New function.
480 (handle_tracepoint_query): Call it.
481 (cmd_qtnotes): New function.
482 (handle_tracepoint_general_set): Call it.
483 (get_timestamp): Rename from tsv_get_timestamp.
484
405f8e94
SS
4852011-11-14 Stan Shebs <stan@codesourcery.com>
486 Kwok Cheung Yeung <kcy@codesourcery.com>
487
488 * linux-x86-low.c (small_jump_insn): New.
489 (i386_install_fast_tracepoint_jump_pad): Add arguments for
490 trampoline and error message, build a trampoline and issue a small
491 jump instruction to it.
492 (x86_install_fast_tracepoint_jump_pad): Add arguments for
493 trampoline and error message.
494 (x86_get_min_fast_tracepoint_insn_len): New.
495 (the_low_target): Add call to x86_get_min_fast_tracepoint_insn_len.
496 * linux-low.h (struct linux_target_ops): Add arguments to
497 install_fast_tracepoint_jump_pad operation, add new operation.
498 * linux-low.c (linux_install_fast_tracepoint_jump_pad): Add
499 arguments.
500 (linux_get_min_fast_tracepoint_insn_len): New function.
501 (linux_target_op): Add new operation.
502 * tracepoint.c (gdb_trampoline_buffer): New IPA variable.
503 (gdb_trampoline_buffer_end): Ditto.
504 (gdb_trampoline_buffer_error): Ditto.
505 (struct ipa_sym_addresses): Add fields for new IPA variables.
506 (symbol_list): Add entries for new IPA variables.
507 (struct tracepoint): Add fields to hold the address range of the
508 trampoline used by the tracepoint.
509 (trampoline_buffer_head): New static variable.
510 (trampoline_buffer_tail): Ditto.
511 (claim_trampoline_space): New function.
512 (have_fast_tracepoint_trampoline_buffer): New function.
513 (clone_fast_tracepoint): Fill in trampoline fields of tracepoint
514 structure.
515 (install_fast_tracepoint): Ditto, also add error buffer argument.
516 (cmd_qtminftpilen): New function.
517 (handle_tracepoint_query): Add response to qTMinFTPILen packet.
518 (fast_tracepoint_from_trampoline_address): New function.
519 (fast_tracepoint_collecting): Handle trampoline as part of jump
520 pad space.
521 (set_trampoline_buffer_space): New function.
522 (initialize_tracepoint): Initialize new IPA variables.
523 * target.h (struct target_ops): Add arguments to
524 install_fast_tracepoint_jump_pad operation, add new
525 get_min_fast_tracepoint_insn_len operation.
526 (target_get_min_fast_tracepoint_insn_len): New.
527 (install_fast_tracepoint_jump_pad): Add arguments.
528 * server.h (IPA_BUFSIZ): Define.
529 * linux-i386-ipa.c: Include extra header files.
530 (initialize_fast_tracepoint_trampoline_buffer): New function.
531 (initialize_low_tracepoint): Call it.
532 * server.h (set_trampoline_buffer_space): Declare.
533 (claim_trampoline_space): Ditto.
534 (have_fast_tracepoint_trampoline_buffer): Ditto.
535
1e4d1764
YQ
5362011-11-14 Yao Qi <yao@codesourcery.com>
537
538 * server.c (handle_query): Handle InstallInTrace for qSupported.
539 * tracepoint.c (add_tracepoint): Sort list.
540 (install_tracepoint, download_tracepoint): New.
541 (cmd_qtdp): Call them to install and download tracepoints.
542 (sort_tracepoints): Removed.
543 (cmd_qtstart): Update.
544
5c73ff4e
YQ
5452011-11-14 Yao Qi <yao@codesourcery.com>
546
547 * mem-break.c (inc_ref_fast_tracepoint_jump): New.
548 * mem-break.h: Declare.
549 * tracepoint.c (cmd_qtstart): Move some code to ...
550 (clone_fast_tracepoint, install_fast_tracepoint): ... here.
551 New.
552 (download_tracepoints): Move some code to ...
553 (download_tracepoint_1): ... here. New.
554
86a30030
YQ
5552011-11-08 Yao Qi <yao@codesourcery.com>
556
557 * remote-utils.c (relocate_instruction): A comment fix.
558
8d26e50c
JB
5592011-11-07 Joel Brobecker <brobecker@adacore.com>
560
561 * win32-i386-low.c (dr_status_mirror, dr_control_mirror): Delete.
562 (i386_dr_low_get_control, i386_dr_low_get_status): Use
563 dr_status_mirror and dr_control_mirror from debug_reg_state.
564 (i386_dr_low_get_status): Use debug_reg_state.dr_status_mirror
565 (i386_initial_stuff): Remove use of deleted globals.
566 (i386_get_thread_context, i386_set_thread_context,
567 i386_thread_added): Use dr_status_mirror and dr_control_mirror
568 from debug_reg_state.
569
a59306a3
YQ
5702011-11-05 Yao Qi <yao@codesourcery.com>
571
572 * tracepoint.c (gdb_collect): Loop over tracepoints of same
573 address as TPOINT's.
574
3065dfb6
SS
5752011-11-02 Stan Shebs <stan@codesourcery.com>
576
577 * tracepoint.c (agent_mem_read_string): New function.
578 (eval_agent_expr): Call it for tracenz.
579 * server.c (handle_query): Report support for tracenz.
580
fd0d8c7c
YQ
5812011-11-02 Yao Qi <yao@codesourcery.com>
582
583 * tracepoint.c (cmd_qtstart): Remove unused local variables.
584
609086b1
YQ
5852011-11-02 Yao Qi <yao@codesourcery.com>
586
587 * target.h: Fix a typo in comment.
588
b9fd1791
PA
5892011-10-31 Pedro Alves <pedro@codesourcery.com>
590
591 * mem-break.c (check_mem_write): Add `myaddr' parameter. Don't
592 clobber the breakpoints' shadows with fast tracepoint jumps.
593 * mem-break.h (check_mem_write): Add `myaddr' parameter.
594 * target.c (write_inferior_memory): Also pass MYADDR down to
595 check_mem_write.
596
03583c20
UW
5972011-10-07 Ulrich Weigand <ulrich.weigand@linaro.org>
598
599 * configure.ac: Check support for personality routine.
600 * configure: Regenerate.
601 * config.in: Likewise.
602 * linux-low.c: Include <sys/personality.h>.
603 Define ADDR_NO_RANDOMIZE if necessary.
604 (linux_create_inferior): Disable address space randomization when
605 forking inferior, if requested.
606 (linux_supports_disable_randomization): New function.
607 (linux_target_ops): Install it.
608 * server.h (disable_randomization): Declare.
609 * server.c (disable_randomization): New global variable.
610 (handle_general_set): Handle QDisableRandomization.
611 (handle_query): Likewise for qSupported.
612 (main): Support --disable-randomization and --no-disable-randomization
613 command line arguments.
614 * target.h (struct target_ops): Add supports_disable_randomization.
615 (target_supports_disable_randomization): New macro.
616
723b724b
MF
6172011-09-29 Mike Frysinger <vapier@gentoo.org>
618
619 * linux-low.c (target_loadseg): Add defined PTRACE_GETFDPIC to the
620 ifdef check.
621 [PT_GETDSBT] (target_loadmap): Wrap in a defined PT_GETDSBT check.
622 [!PT_GETDSBT] (target_loadmap): New definition.
623 (LINUX_LOADMAP, LINUX_LOADMAP_EXEC, LINUX_LOADMAP_INTERP): Define.
624 (linux_read_loadmap): Change PTRACE_GETDSBT_EXEC to
625 LINUX_LOADMAP_EXEC, PTRACE_GETDSBT_INTERP to LINUX_LOADMAP_INTERP,
626 and PT_GETDSBT to LINUX_LOADMAP.
627 [!PT_GETDSBT] (linux_read_loadmap): Define to NULL.
628 (linux_target_ops): Delete unnecessary ifdef PT_GETDSBT check.
629
55329a5c 6302011-09-21 Ulrich Weigand <ulrich.weigand@linaro.org>
71487fd7
UW
631
632 * linux-arm-low.c (struct arm_linux_hwbp_cap): Remove.
633 (arm_linux_hwbp_cap): New static variable.
634 (arm_linux_get_hwbp_cap): Replace by ...
635 (arm_linux_init_hwbp_cap): ... this new function.
636 (arm_linux_get_hw_breakpoint_count): Use arm_linux_hwbp_cap.
637 (arm_linux_get_hw_watchpoint_count): Likewise.
638 (arm_linux_get_hw_watchpoint_max_length): Likewise.
639 (arm_arch_setup): Call arm_linux_init_hwbp_cap.
640 (arm_prepare_to_resume): Use perror_with_name instead of error.
641
55329a5c 6422011-09-21 Ulrich Weigand <ulrich.weigand@linaro.org>
09b4ad9f
UW
643
644 * linux-arm-low.c: Include <signal.h>.
645 (PTRACE_GETHBPREGS, PTRACE_SETHBPREGS): Define if necessary.
646 (struct arm_linux_hwbp_cap): New data type.
647 (arm_hwbp_type, arm_hwbp_control_t): New typedefs.
648 (struct arm_linux_hw_breakpoint): New data type.
649 (MAX_BPTS, MAX_WPTS): Define.
650 (struct arch_process_info, struct arch_lwp_info): New data types.
651 (arm_linux_get_hwbp_cap): New function.
652 (arm_linux_get_hw_breakpoint_count): Likewise.
653 (arm_linux_get_hw_watchpoint_count): Likewise.
654 (arm_linux_get_hw_watchpoint_max_length): Likewise.
655 (arm_hwbp_control_initialize): Likewise.
656 (arm_hwbp_control_is_enabled): Likewise.
657 (arm_hwbp_control_is_initialized): Likewise.
658 (arm_hwbp_control_disable): Likewise.
659 (arm_linux_hw_breakpoint_equal): Likewise.
660 (arm_linux_hw_point_initialize): Likewise.
661 (struct update_registers_data): New data structure.
662 (update_registers_callback: New function.
663 (arm_insert_point): Likewise.
664 (arm_remove_point): Likewise.
665 (arm_stopped_by_watchpoint): Likewise.
666 (arm_stopped_data_address): Likewise.
667 (arm_new_process): Likewise.
668 (arm_new_thread): Likewise.
669 (arm_prepare_to_resume): Likewise.
670 (the_low_target): Register arm_insert_point, arm_remove_point,
671 arm_stopped_by_watchpoint, arm_stopped_data_address, arm_new_process,
672 arm_new_thread, and arm_prepare_to_resume.
673
6b9801d4
SS
6742011-09-15 Stan Shebs <stan@codesourcery.com>
675
676 * server.h (struct emit_ops): Add compare-goto fields.
677 * tracepoint.c (gdb_agent_op_sizes): New table.
678 (emit_eq_goto): New function.
679 (emit_ne_goto): New function.
680 (emit_lt_goto): New function.
681 (emit_le_goto): New function.
682 (emit_gt_goto): New function.
683 (emit_ge_goto): New function.
684 (is_goto_target): New function.
685 (compile_bytecodes): Recognize special cases of compare-goto
686 combinations and call specialized emitters for them.
687 * linux-x86-low.c (amd64_emit_eq_goto): New function.
688 (amd64_emit_ne_goto): New function.
689 (amd64_emit_lt_goto): New function.
690 (amd64_emit_le_goto): New function.
691 (amd64_emit_gt_goto): New function.
692 (amd64_emit_ge_goto): New function.
693 (amd64_emit_ops): Add the new functions.
694 (i386_emit_eq_goto): New function.
695 (i386_emit_ne_goto): New function.
696 (i386_emit_lt_goto): New function.
697 (i386_emit_le_goto): New function.
698 (i386_emit_gt_goto): New function.
699 (i386_emit_ge_goto): New function.
700 (i386_emit_ops): Add the new functions.
701
bf15cbda
SS
7022011-09-08 Stan Shebs <stan@codesourcery.com>
703
704 * linux-x86-low.c (i386_emit_prologue): Save %ebx.
705 (i386_emit_epilogue): Restore %ebx.
706
943ca1dd
JZ
7072011-08-31 Jie Zhang <jzhang918@gmail.com>
708
709 * server.c (step_thread): Remove definition.
710 (process_serial_event): Don't handle Hs.
711 * server.h (step_thread): Remove declaration.
712 * target.c (set_desired_inferior): Remove use of step_thread.
713
e3deef73
LM
7142011-08-24 Luis Machado <lgustavo@codesourcery.com>
715
716 * linux-low.c: Include linux-procfs.h.
717 (linux_attach_lwp_1): Update comments.
718 (linux_attach): Scan for existing threads when attaching to a
719 process that is the tgid.
720 * Makefile.in: Update dependencies.
721
13da1c97
LM
7222011-08-24 Luis Machado <lgustavo@codesourcery.com>
723
724 * configure.srv: Add linux-procfs.o dependencies.
725
881127c9
YQ
7262011-08-14 Yao Qi <yao@codesourcery.com>
727
728 * target.h (struct target_ops): Fix indent.
729 * win32-low.c (win32_target_ops): Fix comment.
730
58dbd541
YQ
7312011-08-14 Andrew Jenner <andrew@codesourcery.com>
732 Yao Qi <yao@codesourcery.com>
733
734 * Makefile.in (clean): Remove tic6x-*.c files.
735 (linux-tic6x-low.o, tic6x-c62x-linux.o, tic6x-c64x-linux.o): New rules.
736 (tic6x-c64xp-linux.o, tic6x-c62x-linux.c, tic6x-c64x-linux.c): Likewise.
737 (tic6x-c64xp-linux.c): Likewise.
738 * configure.srv: Add support for tic6x-*-uclinux.
739 * linux-tic6x-low.c: New.
740 * linux-low.c (PT_TEXT_ADDR, PT_DATA_ADDR, PT_TEXT_END_ADDR): Define.
741
78d85199
YQ
7422011-08-14 Andrew Stubbs <ams@codesourcery.com>
743 Yao Qi <yao@codesourcery.com>
744
745 * target.h (struct target_ops): Add read_loadmap.
746 * linux-low.c (struct target_loadseg): New type.
747 (struct target_loadmap): New type.
748 (linux_read_loadmap): New function.
749 (linux_target_ops): Add linux_read_loadmap.
750 * server.c (handle_query): Support qXfer:fdpic:read packet.
751 * win32-low.c (win32_target_ops): Initialize field `read_loadmap' to NULL.
752
a959a88d
EZ
7532011-08-05 Eli Zaretskii <eliz@gnu.org>
754
755 * win32-low.c: Include <stdint.h>.
756
1ced966e
PA
7572011-07-22 Pedro Alves <pedro@codesourcery.com>
758
759 * i386-low.c (i386_insert_aligned_watchpoint): Don't pass the info
760 to the inferior here.
761 (i386_remove_aligned_watchpoint): Ditto.
762 (i386_handle_nonaligned_watchpoint): Return immediate on fail to
763 fit part of the watchpoint in the debug registers.
764 (i386_update_inferior_debug_regs): New.
765 (i386_low_insert_watchpoint): Work on a local mirror of the debug
766 registers, and only update the inferior on success.
767 (i386_low_remove_watchpoint): Ditto.
768
d26e3629
KY
7692011-07-22 Kwok Cheung Yeung <kcy@codesourcery.com>
770
771 * linux-low.c (compare_ints, unique, list_threads, show_process,
772 linux_core_of_thread): Delete.
773 (linux_target_ops): Change linux_core_of_thread to
774 linux_common_core_of_thread.
775 (linux_qxfer_osdata): Defer to linux_common_xfer_osdata.
776 * utils.c (malloc_failure): Change type of argument.
777 (xmalloc, xrealloc, xcalloc, xsnprintf): Delete.
778 * Makefile.in (SFILES): Add common/common-utils.c, common/xml-utils.c,
779 common/linux-osdata.c, common/ptid.c and common/buffer.c.
780 (OBS): Add xml-utils.o, common-utils.o, ptid.o and buffer.o.
781 (IPA_OBJS): Add common-utils-ipa.o.
782 (ptid_h, linux_osdata_h): New macros.
783 (server_h): Add common/common-utils.h, common/xml-utils.h,
784 common/buffer.h, common/gdb_assert.h, common/gdb_locale.h and
785 common/ptid.h.
786 (common-utils-ipa.o, common-utils.o, xml-utils.o, linux-osdata.o,
787 ptid.o, buffer.o): New rules.
788 (linux-low.o): Add common/linux-osdata.h as a dependency.
789 * configure.srv (srv_tgtobj): Add linux-osdata.o to Linux targets.
790 * configure.ac: Add AC_HEADER_DIRENT check.
791 * config.in: Regenerate.
792 * configure: Regenerate.
793 * remote-utils.c (xml_escape_text): Delete.
794 (buffer_grow, buffer_free, buffer_init, buffer_finish,
795 buffer_xml_printf): Move to common/buffer.c.
796 * server.c (main): Remove call to initialize_inferiors.
797 * server.h (struct ptid, ptid_t, minus_one_ptid, null_ptid,
798 ptid_build, pid_to_ptid, ptid_get_pid, ptid_get_lwp, ptid_get_tid,
799 ptid_equal, ptid_is_pid, initialize_inferiors, xml_escape_text,
800 internal_error, gdb_assert, gdb_assert_fail): Delete.
801 (struct buffer, buffer_grow, buffer_free, buffer_init, buffer_finish,
802 buffer_xml_printf, buffer_grow_str, buffer_grow_str0): Move to
803 common/buffer.h.
804 * inferiors.c (null_ptid, minus_one_ptid, ptid_build, pid_to_ptid,
805 ptid_get_pid, ptid_get_lwp, ptid_get_tid, ptid_equal, ptid_is_pid,
806 initialize_inferiors): Delete.
807
2275a1a7
PA
8082011-07-20 Pedro Alves <pedro@codesourcery.com>
809
810 * tracepoint.c (tracepoint_look_up_symbols): Return upon the first
811 symbol error.
812
0a5b1e09
PA
8132011-05-31 Pedro Alves <pedro@codesourcery.com>
814
815 * linux-x86-low.c (i386_dr_low_get_addr): Fix off by one in
816 assertion.
817 * win32-i386-low.c (i386_dr_low_get_addr): Ditto.
818
6938fd34
YQ
8192011-05-26 Yao Qi <yao@codesourcery.com>
820
821 * Makefile.in (thread-db.o): Track dependence to
822 common/gdb_thread_db.h.
823 * thread-db.c: include gdb_thread_db.h from right place.
824
b481f9e0
TT
8252011-05-16 Adrian Cornish <gnu@bluedreamer.com>
826
827 * linux-i386-ipa.c (supply_static_tracepoint_registers): Pass
828 __FILE__ and __LINE__ to internal_error.
829
98a5dd13
DE
8302011-05-13 Doug Evans <dje@google.com>
831
832 * thread-db.c (try_thread_db_load_from_sdir): New function.
833 (try_thread_db_load_from_dir): New function.
834 (thread_db_load_search): Handle $sdir, ignore $pdir.
835 Remove trying of system directories if search of
836 libthread-db-search-path fails, that is now done via $sdir.
837
d248b706
KY
8382011-05-12 Kwok Cheung Yeung <kcy@codesourcery.com>
839
840 * server.c (handle_query): Add EnableDisableTracepoints to the list
841 of supported features.
842 * tracepoint.c (clear_installed_tracepoints): Uninstall disabled
843 tracepoints.
844 (cmd_qtenable_disable): New.
845 (cmd_qtstart): Install tracepoints even if disabled.
846 (handle_tracepoint_general_set): Add call to cmd_qtenable_disable on
847 receiving a QTEnable or QTDisable packet.
848 (gdb_collect): Skip data collection if fast tracepoint is disabled.
849 (ust_marker_to_static_tracepoint): Do not ignore disabled static
850 tracepoints.
851 (gdb_probe): Skip data collection if static tracepoint is disabled.
852
84e578fb
DE
8532011-05-10 Doug Evans <dje@google.com>
854
855 * thread-db.c (thread_db_handle_monitor_command): Handle elided path.
856
71f55dd8
DE
8572011-05-04 Doug Evans <dje@google.com>
858
859 * linux-low.c (linux_join): Skip process lookup.
860 * spu-low.c (spu_join): Ditto.
861 * server.c (join_inferiors_callback): Delete.
862 (process_serial_event): For 'D' packet (detach) call join_inferior
863 directly.
864
4d393d60
JM
8652011-05-04 Joseph Myers <joseph@codesourcery.com>
866
867 * README: Don't mention xscale*-*-linux*.
868 * configure.srv (xscale*-*-linux*): Don't handle target.
869
b00ad6ff
NF
8702011-04-27 Nathan Froyd <froydnj@codesourcery.com>
871
872 * linux-x86-low.c (amd64_emit_const): Call memcpy instead of
873 casting pointers.
874 (amd64_emit_reg, amd64_emit_int_call_1, amd64_emit_void_call_2):
875 (i386_emit_const, i386_emit_reg, i386_emit_int_call_1):
876 (i386_emit_void_call_2): Likewise.
877
af96c192
YQ
8782011-04-26 Yao Qi <yao@codesourcery.com>
879
880 * linux-low.c: Move common macros to linux-ptrace.h.
881 Include linux-ptrace.h.
882 * Makefile.in (linux_ptrace_h): New.
883 (linux-low.o): Depends on linux-ptrace.h.
884
03f2bd59
JK
8852011-04-24 Jan Kratochvil <jan.kratochvil@redhat.com>
886
887 * remote-utils.c (handle_accept_event): Close LISTEN_DESC only if
888 RUN_ONCE. Comment for the LISTEN_DESC delete_file_handler call.
889 (remote_prepare): New function with most of the TCP code from ...
890 (remote_open): ... here. Detect PORT here unconditionally. Move also
891 setting transport_is_reliable.
892 * server.c (run_once): New variable.
893 (gdbserver_usage): Document it.
894 (main): Set run_once for `--once'. Call remote_prepare. Exit after
895 the first run if RUN_ONCE.
896 * server.h (run_once, remote_prepare): New declarations.
897
7a9dd1b2
TT
8982011-04-19 Tom Tromey <tromey@redhat.com>
899
900 * win32-low.c (handle_load_dll): Remove duplicate "the".
901
81239425
PM
9022011-04-07 Pierre Muller <muller@ics.u-strasbg.fr>
903
904 Remove support for old Cygwin 1.5 versions.
905 * win32-low.c (win32_create_inferior): Use new cygwin_path_list
906 function to avoid warning.
907 (win32_add_one_solib): Use cygwin_conv_path function to avoid
908 warning.
909
9e0627f1
PM
9102011-03-18 Pierre Muller <muller@ics.u-strasbg.fr>
911
912 * gdbserver/server.h (Macro _): Define it if not available.
913
588eebee
MS
9142011-03-14 Michael Snyder <msnyder@vmware.com>
915
348af9f7 916 * hostio.c (handle_close): Remove unnecessary null test.
588eebee 917
43f70d4c
JB
9182011-03-10 Joel Brobecker <brobecker@adacore.com>
919
920 * Makefile.in (maintainer-clean realclean distclean): Remove
921 "make ... subdir_do" command.
922
348af9f7
MS
9232011-03-10 Michael Snyder <msnyder@vmware.com>
924
925 * tracepoint.c (tracepoint_finish_step): Fix loop variable.
926
927 * server.c (handle_v_run): Free alloced buffer on early return.
928
e637a4f5
YQ
9292011-03-09 Yao Qi <yao@codesourcery.com>
930
931 Revert:
932 2011-03-04 Yao Qi <yao@codesourcery.com>
933
934 * Makefile.in: Remove GNU make feature --directory.
935
936 2011-03-05 Yao Qi <yao@codesourcery.com>
937
938 * Makefile.in (CLEANDIRS, REQUIRED_SUBDIRS): New variable.
939 (subdir_do): New make target. Copied from gdb/Makefile.
940 (maintainer-clean, realclean, distclean, clean): Call corresponding
941 make targets in common/Makefile.
942
943 2011-02-11 Yao Qi <yao@codesourcery.com>
944
945 * configure.ac: Call AC_PROG_RANLIB.
946 * Makefile.in: Remove signals.o from OBS. Link libcommon.a.
947 * configure: Regenerate.
948
e6edda56
JK
9492011-03-07 Jan Kratochvil <jan.kratochvil@redhat.com>
950
951 * remote-utils.c (putpkt_binary_1): Calculate BUF2 size dynamically.
952
e5141119
JB
9532011-03-06 Yao Qi <yao@codesourcery.com>
954
955 * Makefile.in (REQUIRED_SUBDIRS): Remove $(LIBCOMMON_DIR).
956
64794aa4
JB
9572011-03-05 Yao Qi <yao@codesourcery.com>
958
959 * Makefile.in (CLEANDIRS, REQUIRED_SUBDIRS): New variable.
960 (subdir_do): New make target. Copied from gdb/Makefile.
961 (maintainer-clean, realclean, distclean, clean): Call corresponding
962 make targets in common/Makefile.
963
7a762829
YQ
9642011-03-04 Yao Qi <yao@codesourcery.com>
965
966 * Makefile.in: Remove GNU make feature --directory.
967
348af9f7
MS
9682011-03-04 Michael Snyder <msnyder@vmware.com>
969
970 * server.c (queue_stop_reply): Call xmalloc not malloc.
971
9722011-03-02 Michael Snyder <msnyder@vmware.com>
973
974 * linux-arm-low.c (arm_arch_setup): Replace malloc with xmalloc.
975
9f72fee2
MS
9762011-02-28 Michael Snyder <msnyder@vmware.com>
977
588eebee
MS
978 * tracepoint.c (cmd_qtv): Discard unused value 'packet'.
979 (cmd_qtframe): Ditto.
980 (cmd_qtbuffer): Ditto.
981 (cmd_bigqtbuffer): Ditto.
982
9f72fee2
MS
983 * utils.c (decimal2str): Initialize 'width' to nine, then
984 don't mess with it.
985
8040bd49
UW
9862011-02-28 Ulrich Weigand <uweigand@de.ibm.com>
987
988 * hostio.c (require_data): Free *data, not data.
989
7e52cbd0
JK
9902011-02-28 Jan Kratochvil <jan.kratochvil@redhat.com>
991
992 * hostio.c (require_data): Use free, not xfree.
993
9130f83e
MS
9942011-02-27 Michael Snyder <msnyder@vmware.com>
995
4b812f4e
MS
996 * server.c (handle_query): Discard unused value.
997
9130f83e
MS
998 * hostio.c (require_data): Free malloc memory before returning
999 error.
1000
69d37113
MS
10012011-02-26 Michael Snyder <msnyder@vmware.com>
1002
1003 * linux-low.c (list_threads): Call closedir for dirent.
1004
35f5825a
MS
10052011-02-27 Michael Snyder <msnyder@vmware.com>
1006
2a589cef
MS
1007 * i386-low.c (i386-length_and_rw_bits): Comment the fact that
1008 a case statement falls through.
1009
0adea5f7
MS
1010 * linux-low.c (linux_xfer_siginfo): Fix fencepost error.
1011
35f5825a
MS
1012 * linux-amd64-ipa.c (gdb_agent_get_raw_reg): Fix fencepost error
1013 in comparison.
1014
238f1c74
MS
10152011-02-26 Michael Snyder <msnyder@vmware.com>
1016
1017 * utils.c (decimal2str): Eliminate dead code and dead param.
1018 (pulongest): Drop dead param from call to decimal2str.
1019 (plongest): Ditto.
1020
633ff500
JB
10212011-02-24 Joel Brobecker <brobecker@adacore.com>
1022
1023 Revert the following patch (not approved yet):
1024 2011-02-21 Hui Zhu <teawater@gmail.com>
1025 * tracepoint.c (tp_printf): New function.
1026 (eval_agent_expr): Handle gdb_agent_op_printf.
1027
f9c6ff72
HZ
10282011-02-21 Hui Zhu <teawater@gmail.com>
1029
1030 * tracepoint.c (tp_printf): New function.
1031 (eval_agent_expr): Handle gdb_agent_op_printf.
1032
94d5e490
TT
10332011-02-18 Tom Tromey <tromey@redhat.com>
1034
1035 * Makefile.in (tracepoint-ipa.o): Depend on ax.def.
1036 (tracepoint.o): Likewise.
1037 * tracepoint.c (enum gdb_agent_op): Use ax.def.
1038 (gdb_agent_op_names): Likewise.
1039
c7f96d2b
TT
10402011-02-18 Tom Tromey <tromey@redhat.com>
1041
1042 * tracepoint.c (enum gdb_agent_op) <gdb_agent_op_pick,
1043 gdb_agent_op_rot>: New constants.
1044 (gdb_agent_op_names): Add pick and roll.
1045 (eval_agent_expr) <gdb_agent_op_pick, gdb_agent_op_rot>: New
1046 cases.
1047
0feedb2c
JK
10482011-02-15 Jan Kratochvil <jan.kratochvil@redhat.com>
1049
1050 * aclocal.m4: Regenerated with aclocal-1.11.1.
1051
b3b9301e
PA
10522011-02-14 Pedro Alves <pedro@codesourcery.com>
1053
1054 * server.c (handle_qxfer_traceframe_info): New.
1055 (qxfer_packets): Register "traceframe-info".
1056 (handle_query): Report support for qXfer:traceframe-info:read+.
1057 * tracepoint.c (match_blocktype): New.
1058 (traceframe_find_block_type): Rename to ...
1059 (traceframe_walk_blocks): ... this. Add callback filter argument,
1060 and use it.
1061 (traceframe_find_block_type): New, reimplemented on top of
1062 traceframe_walk_blocks.
1063 (build_traceframe_info_xml): New.
1064 (traceframe_read_info): New.
1065 * server.h (traceframe_read_info): Declare.
1066
4f3e6fb7
YQ
10672011-02-11 Yao Qi <yao@codesourcery.com>
1068
1069 * configure.ac: Call AC_PROG_RANLIB.
1070 * Makefile.in: Remove signals.o from OBS. Link libcommon.a.
1071 * configure: Regenerate.
1072
764880b7
PA
10732011-02-07 Pedro Alves <pedro@codesourcery.com>
1074
1075 * server.c (gdb_read_memory): Change return semantics to allow
1076 partial transfers.
1077 (handle_search_memory_1): Adjust.
1078 (process_serial_event) <'m' packet>: Handle partial transfers.
1079 * tracepoint.c (traceframe_read_mem): Handle partial transfers.
1080
1c79eb8a
PA
10812011-01-28 Pedro Alves <pedro@codesourcery.com>
1082
1083 * regcache.c (init_register_cache): Initialize
1084 regcache->register_status.
1085 (free_register_cache): Release regcache->register_status.
1086 (regcache_cpy): Copy register_status.
1087 (registers_to_string): Print 'x's for unavailable registers.
1088 (supply_register): Mark the register's status valid or
1089 unavailable, depending on whether a buffer was passed in or not.
1090 (supply_register_zeroed): New.
1091 (supply_regblock): Mark the registers' status valid or
1092 unavailable, depending on whether a buffer was passed in or not.
1093 * regcache.h (REG_UNAVAILABLE, REG_VALID): New defines.
1094 (struct regcache): New `register_status' field.
1095 (supply_register_zeroed): Declare.
1096 * i387-fp.c (i387_xsave_to_cache): Zero out registers using
1097 supply_register_zeroed, rather than passing a NULL buffer to
1098 supply_register.
1099 * tracepoint.c (fetch_traceframe_registers): Update comment.
1100
85724a0e
PA
11012011-01-28 Pedro Alves <pedro@codesourcery.com>
1102
1103 * i387-fp.c (i387_xsave_to_cache): Make passing NULL as register
1104 buffer explicit.
1105
d08aafef
PA
11062011-01-25 Pedro Alves <pedro@codesourcery.com>
1107
1108 * server.h (decode_xfer_write): Change prototype.
1109 * remote-utils.c (decode_xfer_write): Remove `annex' parameter,
1110 and don't extract the annex here.
1111 * server.c (decode_xfer_read): Remove `annex' parameter,
1112 and don't extract the annex here.
1113 (decode_xfer): New.
1114 (struct qxfer): New.
1115 (handle_qxfer_auxv, handle_qxfer_features, handle_qxfer_libraries)
1116 (handle_qxfer_osdata, handle_qxfer_siginfo, handle_qxfer_spu)
1117 (handle_qxfer_statictrace): New functions, abstracted out from
1118 handle_query, and made to use the struct qxfer interface.
1119 (handle_threads_qxfer_proper): Rename to ...
1120 (handle_qxfer_threads_proper): ... this.
1121 (handle_threads_qxfer): Rename to ...
1122 (handle_qxfer_threads): ... this. Adjust.
1123 (qxfer_packets): New array.
1124 (handle_qxfer): New function.
1125 (handle_query): Use handle_qxfer.
1126
493e2a69
MS
11272011-01-05 Michael Snyder <msnyder@msnyder-server.eng.vmware.com>
1128
1129 * gdbreplay.c: Shorten lines of >= 80 columns.
1130 * linux-low.c: Ditto.
1131 * linux-ppc-low.c: Ditto.
1132 * linux-s390-low.c: Ditto.
1133 * linux-sparc-low.c: Ditto.
1134 * linux-x86-low.c: Ditto.
1135 * linux-xtensa-low.c: Ditto.
1136 * mem-break.c: Ditto.
1137 * nto-low.c: Ditto.
1138 * regcache.h: Ditto.
1139 * remote-utils.c: Ditto.
1140 * server.c: Ditto.
1141 * server.h: Ditto.
1142 * thread-db.c: Ditto.
1143 * tracepoint.c: Ditto.
1144 * utils.c: Ditto.
1145 * win32-low.h: Ditto.
1146
44944448
JB
11472011-01-05 Joel Brobecker <brobecker@adacore.com>
1148
1149 * gdbserver/configure.ac, gdbserver/gdbserver.1: Copyright year
1150 update.
1151
71ce852c
JB
11522011-01-01 Joel Brobecker <brobecker@adacore.com>
1153
1154 * server.c (gdbserver_version): Update copyright year in version
1155 output.
1156 * gdbreplay.c (gdbreplay_version): Ditto.
1157
eb826dc6
MF
11582010-12-29 Jie Zhang <jie.zhang@analog.com>
1159
1160 * configure.srv (bfin-*-*linux*): Handle Blackfin/Linux targets.
1161 * linux-bfin-low.c: New file.
1162 * linux-low.c: Define PT_TEXT_ADDR, PT_TEXT_END_ADDR, and
1163 PT_DATA_ADDR for BFIN targets.
1164 * Makefile.in (SFILES): Add linux-bfin-low.c.
1165 (clean): Remove reg-bfin.c.
1166 (linux-bfin-low.o, reg-bfin.o, reg-bfin.c): New targets.
1167 * README: Mention supported Blackfin targets.
1168
39ab222a
MF
11692010-12-23 Mike Frysinger <vapier@gentoo.org>
1170
1171 * .gitignore: New file.
1172
a1f2ce7d
MF
11732010-11-16 Mike Frysinger <vapier@gentoo.org>
1174
1175 * linux-low.c (linux_tracefork_child): Add char* cast to arg.
1176
f474844c
JZ
11772010-10-22 Jie Zhang <jie@codesourcery.com>
1178
1179 * Makefile.in: Add FLAGS_TO_PASS variable.
1180 (install): Remove dependency of install-only and recursively
1181 invoke make for install-only.
1182
f1048712
DE
11832010-10-04 Doug Evans <dje@google.com>
1184
1185 * Makefile.in (uninstall): Use $(DESTDIR).
1186
b53a1623
PA
11872010-09-24 Pedro Alves <pedro@codesourcery.com>
1188
e6ee044d
PA
1189 PR gdb/11842
1190
b53a1623
PA
1191 * linux-x86-low.c (compat_siginfo_from_siginfo)
1192 (siginfo_from_compat_siginfo): Also copy si_pid and si_uid when
1193 si_code is < 0. Check for si_code == SI_TIMER before checking for
1194 si_code < 0.
1195
fa1bd1e4
JB
11962010-09-13 Joel Brobecker <brobecker@adacore.com>
1197
1198 * lynx-i386-low.c: New file.
1199 * configure.srv: Add handling of i[34567]86-*-lynxos* targets.
1200
47fac8f8
JB
12012010-09-13 Joel Brobecker <brobecker@adacore.com>
1202
1203 * lynx-low.c (ptrace_request_to_str): Remove handling for
1204 request values that have been removed in LynxOS 5.x.
1205
1adfc54d
JB
12062010-09-13 Joel Brobecker <brobecker@adacore.com>
1207
1208 * lynx-low.c, lynx-ppc-loc.c: Include <sys/ptrace.h> instead of
1209 <ptrace.h>
1210
c2a66c29
NS
12112010-09-09 Nathan Sidwell <nathan@codesourcery.com>
1212
1213 * configure.ac: Add --enable-inprocess-agent option.
1214 * configure: Rebuilt.
1215
32fcada3
YQ
12162010-09-06 Yao Qi <yao@codesourcery.com>
1217
1218 * linux-low.c (linux_kill): Remove unused variable.
1219 (linux_stabilize_threads): Likewise.
1220 * server.c (start_inferior): Likewise.
1221 (queue_stop_reply_callback): Likewise.
1222 * tracepoint.c (do_action_at_tracepoint): Likewise.
1223
0cccb683
YQ
12242010-09-06 Yao Qi <yao@codesourcery.com>
1225
1226 * linux-low.c (maybe_move_out_of_jump_pad): Restore current_inferior
1227 on return.
1228
423ec54c
JK
12292010-09-06 Jan Kratochvil <jan.kratochvil@redhat.com>
1230
1231 * target.c (mywait) <TARGET_WAITKIND_EXITED>: Fix to use INTEGER.
1232
12ac6819
PA
12332010-09-06 Pedro Alves <pedro@codesourcery.com>
1234
1235 * Makefile.in (install-only): Replace $IPA_DEPFILES with
1236 "$(IPA_DEPFILES)".
1237
8ed54b31
JB
12382010-09-01 Joel Brobecker <brobecker@adacore.com>
1239
1240 * gdbserver/lynx-low.c, gdbserver/lynx-low.h,
1241 gdbserver/lynx-ppc-low.c: New files.
1242 * Makefile.in (lynx_low_h): New variable.
1243 (lynx-low.o, lynx-ppc-low.o): New rules.
1244 * configure.ac: On LynxOS, link with -lnetinet.
1245 * configure.srv: Add handling of powerpc-*-lynxos* targets.
1246 * configure: regenerate.
1247
bb0116a4
JB
12482010-09-01 Joel Brobecker <brobecker@adacore.com>
1249
1250 * Makefile.in (vasprintf.o, vsnprintf.o): New rules.
1251 * configure.ac: Add check for vasprintf and vsnprintf.
1252 * configure, config.in: Regenerate.
1253 * server.h (vasprintf, vsnprintf): Add conditional declarations.
1254
a778ab81 12552010-09-01 Joel Brobecker <brobecker@adacore.com>
1256
1257 * gdbreplay.c: Move include of alloca.h up, next to include of
1258 malloc.h.
1259 * server.h: Add include of malloc.h.
1260 * mem-break.c: Remove include of malloc.h.
1261 * server.c, tracepoint.c, utils.c, win32-low.c: Likewise.
1262
8b034a19 12632010-09-01 Joel Brobecker <brobecker@adacore.com>
1264
1265 * Makefile.in (memmem.o): Build with -Wno-error.
1266
12672010-09-01 Joel Brobecker <brobecker@adacore.com>
1268
1269 * utils.c (xsnprintf): Make non-static.
1270 * server.h: Add xsnprintf declaration.
1271 * linux-low.c, nto-low.c, target.c, thread-db.c, tracepoint.c:
1272 replace calls to snprintf by calls to xsnprintf throughout.
1273
12742010-09-01 Joel Brobecker <brobecker@adacore.com>
1275
1276 * configure.ac: Add configure check for alloca.
1277 * configure, config.in: Regenerate.
1278 * server.h: Include alloca.h if it exists.
1279 * gdbreplay.c: Include alloca.h if it exists.
1280
1a981360
PA
12812010-08-28 Pedro Alves <pedro@codesourcery.com>
1282
1283 * linux-low.c (__SIGRTMIN): Define if not already defined.
1284 (linux_create_inferior): Check for __ANDROID__ rather than
1285 __SIGRTMIN.
1286 (enqueue_one_deferred_signal): Don't requeue non-RT signals that
1287 are already deferred.
1288 (linux_wait_1): Check for __ANDROID__ rather than __SIGRTMIN.
1289 (linux_resume_one_thread): Don't queue a SIGSTOP if the lwp is
1290 stopped and already has a pending signal to report.
1291 (proceed_one_lwp): : Don't queue a SIGSTOP if the lwp already has
1292 a pending signal to report or is moving out of a jump pad.
1293 (linux_init_signals): Check for __ANDROID__ rather than
1294 __SIGRTMIN.
1295
b4d51a55
PA
12962010-08-28 Pedro Alves <pedro@codesourcery.com>
1297
1298 * linux-low.c (linux_stabilize_threads): Wrap debug output in a
1299 debug_threads check. Avoid a linear search when not doing debug
1300 output.
1301
ec48365d
PA
13022010-08-27 Pedro Alves <pedro@codesourcery.com>
1303
1304 * event-loop.c (event_handle_func): Adjust to use gdb_fildes_t.
1305 (struct gdb_event) <fd>: Change type to gdb_fildes_t.
1306 (struct file_handler) <fd>: Change type to gdb_fildes_t.
1307 (process_event): Change local fd's type to gdb_fildes_t.
1308 (create_file_handler): Adjust prototype.
1309 (delete_file_handler): Adjust prototype.
1310 (handle_file_event): Adjust prototype. Use pfildes.
1311 (create_file_event): Adjsut prototype.
1312 * remote-utils.c (remote_desc, listen_desc): Change type to
1313 gdb_fildes_t.
1314 * server.h: New gdb_fildes_t typedef.
1315 [USE_WIN32API]: Include winsock2.h.
1316 (delete_file_handler, add_file_handler): Adjust prototypes.
1317 (pfildes): Declare.
1318 * utils.c (pfildes): New.
1319
854d88f0
PA
13202010-08-27 Pedro Alves <pedro@codesourcery.com>
1321
1322 * configure.ac (build_warnings): Add -Wno-char-subscripts.
1323 * configure: Regenerate.
1324
0146f85b
PA
13252010-08-27 Pedro Alves <pedro@codesourcery.com>
1326
1327 * linux-low.c (linux_unprepare_to_access_memory): Rename to ...
1328 (linux_done_accessing_memory): ... this.
1329 (linux_target_ops): Adjust.
1330 * linux-x86-low.c (x86_insert_point, x86_remove_point): Adjust.
1331 * nto-low.c (nto_target_ops): Adjust comment.
1332 * server.c (gdb_read_memory, gdb_write_memory): Adjust.
1333 * spu-low.c (spu_target_ops): Adjust comment.
1334 * target.h (target_ops): Rename unprepare_to_access_memory field
1335 to done_accessing_memory.
1336 (unprepare_to_access_memory): Rename to ...
1337 (done_accessing_memory): ... this.
1338
90d74c30
PA
13392010-08-26 Pedro Alves <pedro@codesourcery.com>
1340
1341 * linux-low.c (linux_prepare_to_access_memory): New.
1342 (linux_unprepare_to_access_memory): New.
1343 (linux_target_ops): Install them.
1344 * server.c (read_memory): Rename to ...
1345 (gdb_read_memory): ... this. Use
1346 prepare_to_access_memory/prepare_to_access_memory.
1347 (write_memory): Rename to ...
1348 (gdb_write_memory): ... this. Use
1349 prepare_to_access_memory/prepare_to_access_memory.
1350 (handle_search_memory_1): Adjust.
1351 (process_serial_event): Adjust.
1352 * target.h (struct target_ops): New fields
1353 prepare_to_access_memory and unprepare_to_access_memory.
1354 (prepare_to_access_memory, unprepare_to_access_memory): New.
1355 * linux-x86-low.c (x86_insert_point, x86_remove_point): Use
1356 prepare_to_access_memory/prepare_to_access_memory.
1357 * nto-low.c (nto_target_ops): Adjust.
1358 * spu-low.c (spu_target_ops): Adjust.
1359 * win32-low.c (win32_target_ops): Adjust.
1360
fd467969
PA
13612010-08-26 Pedro Alves <pedro@codesourcery.com>
1362
1363 * Makefile.in (WARN_CFLAGS): Get it from configure.
1364 (WERROR_CFLAGS): New.
1365 (INTERNAL_CFLAGS): Add WERROR_CFLAGS.
1366 * configure.ac: Introduce --enable-werror, which adds -Werror to
1367 the compiler command line. Enabled by default. Disable with
1368 --disable-werror. Add -Wdeclaration-after-statement
1369 Wpointer-arith and -Wformat-nonliteral to warning flags.
1370 * configure: Regenerate.
1371
331e2f5f
PA
13722010-08-26 Pedro Alves <pedro@codesourcery.com>
1373
1374 * mem-break.c [HAVE_MALLOC_H]: Include malloc.h.
1375
e581f2b4
PA
13762010-08-26 Pedro Alves <pedro@codesourcery.com>
1377
1378 * gdbreplay.c (remote_error): New.
1379 (gdbchar): New.
1380 (expect): Use gdbchar. Check for error reading from GDB.
1381 Clarify sync error output.
1382 (play): Check for errors writing to GDB.
1383 * linux-low.c (sigchld_handler): Really ignore `write' errors.
1384 * remote-utils.c (getpkt): Check for errors writing to the remote
1385 descriptor.
1386
3c11dd79
PA
13872010-08-25 Pedro Alves <pedro@codesourcery.com>
1388
1389 * linux-low.c (linux_wait_1): Move non-debugging code out of
1390 `debug_threads' control.
1391
d20a8ad9
PA
13922010-08-25 Pedro Alves <pedro@codesourcery.com>
1393
1394 * linux-low.c (linux_wait_1): Don't set last_status here.
1395 * server.c (push_event, queue_stop_reply_callback): Assert we're
1396 not pushing a TARGET_WAITKIND_IGNORE event.
1397 (start_inferior, start_inferior, attach_inferior, handle_v_cont)
1398 (myresume, handle_target_event): Set the thread's last_resume_kind
1399 and last_status from the target returned status.
1400
964e4306
PA
14012010-08-25 Pedro Alves <pedro@codesourcery.com>
1402
1403 PR threads/10729
1404
1405 * linux-x86-low.c (update_debug_registers_callback): New.
1406 (i386_dr_low_set_addr): Use it.
1407 (i386_dr_low_get_addr): New.
1408 (i386_dr_low_set_control): Use update_debug_registers_callback.
1409 (i386_dr_low_get_control): New.
1410 (i386_dr_low_get_status): Adjust.
1411 * linux-low.c (linux_stop_lwp): New.
1412 * linux-low.h (linux_stop_lwp): Declare.
1413
1414 * i386-low.c (I386_DR_GET_RW_LEN): Take the dr7 contents as
1415 argument instead of a i386_debug_reg_state.
1416 (I386_DR_WATCH_HIT): Take the dr6 contents as argument instead of
1417 a i386_debug_reg_state.
1418 (i386_insert_aligned_watchpoint): Adjust.
1419 (i386_remove_aligned_watchpoint): Adjust.
1420 (i386_low_stopped_data_address): Read the debug registers from the
1421 inferior instead of from the mirrors.
1422 * i386-low.h (struct i386_debug_reg_state): Extend comment.
1423 (i386_dr_low_get_addr): Declare.
1424 (i386_dr_low_get_control): Declare.
1425 (i386_dr_low_get_status): Change prototype.
1426
1427 * win32-i386-low.c (dr_status_mirror, dr_control_mirror): New globals.
1428 (i386_dr_low_get_addr): New.
1429 (i386_dr_low_get_control): New.
1430 (i386_dr_low_get_status): Adjust prototype. Return
1431 dr_status_mirror.
1432 (i386_initial_stuff): Clear dr_status_mirror and
1433 dr_control_mirror.
1434 (i386_get_thread_context): Adjust.
1435 (i386_set_thread_context): Adjust.
1436 (i386_thread_added): Adjust.
1437
5f21a75b
PA
14382010-08-24 Pedro Alves <pedro@codesourcery.com>
1439
1440 * linux-low.h (linux_thread_area): Delete declaration.
1441
3e4c1235
TS
14422010-08-11 Thomas Schwinge <thomas@codesourcery.com>
1443
1444 * linux-low.c (linux_wait_1): Correctly return the ptid of the child
1445 after its termination.
1446
1971b033
PA
14472010-08-09 Pedro Alves <pedro@codesourcery.com>
1448
1449 * linux-low.c (gdb_wants_lwp_stopped): Delete.
1450 (gdb_wants_all_stopped): Delete.
1451 (linux_wait_1): Don't call them.
1452 * server.c (handle_v_cont): Tag all threads as want-stopped.
1453 (gdb_wants_thread_stopped): Fix comments. Tag the thread that
1454 stopped as "client-wants-stopped".
1455
310444ac
PA
14562010-07-31 Pedro Alves <pedro@codesourcery.com>
1457
1458 * Makefile.in (signals_h): New.
1459 (server_h): Depend on it.
1460 (server.o): Don't depend on $(signals_def).
1461 (signals.o): Depend on $(signals_def).
1462
a19cae16
JK
14632010-07-31 Jan Kratochvil <jan.kratochvil@redhat.com>
1464
1465 * Makefile.in (signals_def): New.
1466 (server_h): Append include/gdb/signals.h and signals_def.
1467 (server.o): Append signals_def.
1468
30d50328
JK
14692010-07-25 Jan Kratochvil <jan.kratochvil@redhat.com>
1470
1471 * server.c (handle_target_event): Use target_signal_to_host for
1472 resume_info.sig initialization.
1473 * target.h (struct thread_resume) <sig>: New comment.
1474
5c3216e2
OS
14752010-07-20 Ozkan Sezer <sezeroz@gmail.com>
1476
c6f46ca0
OS
1477 * server.c (handle_query): strcpy() the returned string from paddress()
1478 instead of sprintf().
5c3216e2
OS
1479 * utils.c (paddress): Return phex_nz().
1480
6bd31874
JB
14812010-07-07 Joel Brobecker <brobecker@adacore.com>
1482
1483 * server.c (handle_v_cont): Call mourn_inferior if process
1484 just exited.
1485 (myresume): Likewise.
1486
0fb4aa4b
PA
14872010-07-01 Pedro Alves <pedro@codesourcery.com>
1488
1489 Static tracepoints, and integration with UST.
1490
1491 * configure.ac: Handle --with-ust. substitute ustlibs and ustinc.
1492 * mem-break.c (uninsert_all_breakpoints)
1493 (reinsert_all_breakpoints): New.
1494 * mem-break.h (reinsert_all_breakpoints, uninsert_all_breakpoints):
1495 * tracepoint.c (ust_loaded, helper_thread_id, cmd_buf): New.
1496 (gdb_agent_ust_loaded, helper_thread_id)
1497 (gdb_agent_helper_thread_id): New macros.
1498 (struct ipa_sym_addresses): Add addr_ust_loaded,
1499 addr_helper_thread_id, addr_cmd_buf.
1500 (symbol_list): Add ust_loaded, helper_thread_id, cmd_buf.
1501 (in_process_agent_loaded_ust): New.
1502 (write_e_ust_not_loaded): New.
1503 (maybe_write_ipa_ust_not_loaded): New.
1504 (struct collect_static_trace_data_action): New.
1505 (enum tracepoint_type) <static_tracepoint>: New.
1506 (struct tracepoint) <handle>: Mention static tracepoints.
1507 (struct static_tracepoint_ctx): New.
1508 (CMD_BUF_SIZE): New.
1509 (add_tracepoint_action): Handle static tracepoint actions.
1510 (unprobe_marker_at): New.
1511 (clear_installed_tracepoints): Handle static tracepoints.
1512 (cmd_qtdp): Handle static tracepoints.
1513 (probe_marker_at): New.
1514 (cmd_qtstart): Handle static tracepoints.
1515 (response_tracepoint): Handle static tracepoints.
1516 (cmd_qtfstm, cmd_qtsstm, cmd_qtstmat): New.
1517 (handle_tracepoint_query): Handle qTfSTM, qTsSTM and qTSTMat.
1518 (get_context_regcache): Handle static tracepoints.
1519 (do_action_at_tracepoint): Handle static tracepoint actions.
1520 (traceframe_find_block_type): Handle static trace data blocks.
1521 (traceframe_read_sdata): New.
1522 (download_tracepoints): Download static tracepoint actions.
1523 [HAVE_UST] Include ust/ust.h, dlfcn.h, sys/socket.h, and sys/un.h.
1524 (GDB_PROBE_NAME): New.
1525 (ust_ops): New.
1526 (GET_UST_SYM): New.
1527 (USTF): New.
1528 (dlsym_ust): New.
1529 (ust_marker_to_static_tracepoint): New.
1530 (gdb_probe): New.
1531 (collect_ust_data_at_tracepoint): New.
1532 (gdb_ust_probe): New.
1533 (UNIX_PATH_MAX, SOCK_DIR): New.
1534 (gdb_ust_connect_sync_socket): New.
1535 (resume_thread, stop_thread): New.
1536 (run_inferior_command): New.
1537 (init_named_socket): New.
1538 (gdb_ust_socket_init): New.
1539 (cstr_to_hexstr): New.
1540 (next_st): New.
1541 (first_marker, next_marker): New.
1542 (response_ust_marker): New.
1543 (cmd_qtfstm, cmd_qtsstm): New.
1544 (unprobe_marker_at, probe_marker_at): New.
1545 (cmd_qtstmat, gdb_ust_thread): New.
1546 (gdb_ust_init): New.
1547 (initialize_tracepoint_ftlib): Call gdb_ust_init.
1548 * linux-amd64-ipa.c [HAVE_UST]: Include ust/processor.h
1549 (ST_REGENTRY): New.
1550 (x86_64_st_collect_regmap): New.
1551 (X86_64_NUM_ST_COLLECT_GREGS): New.
1552 (AMD64_RIP_REGNUM): New.
1553 (supply_static_tracepoint_registers): New.
1554 * linux-i386-ipa.c [HAVE_UST]: Include ust/processor.h
1555 (ST_REGENTRY): New.
1556 (i386_st_collect_regmap): New.
1557 (i386_NUM_ST_COLLECT_GREGS): New.
1558 (supply_static_tracepoint_registers): New.
1559 * server.c (handle_query): Handle qXfer:statictrace:read.
1560 <qSupported>: Report support for StaticTracepoints, and
1561 qXfer:statictrace:read features.
1562 * server.h (traceframe_read_sdata)
1563 (supply_static_tracepoint_registers): Declare.
1564 * remote-utils.c (convert_int_to_ascii, hexchars, ishex, tohex)
1565 (unpack_varlen_hex): Include in IPA build.
1566 * Makefile.in (ustlibs, ustinc): New.
1567 (IPA_OBJS): Add remote-utils-ipa.o.
1568 ($(IPA_LIB)): Link -ldl and -lpthread.
1569 (UST_CFLAGS): New.
1570 (IPAGENT_CFLAGS): Add UST_CFLAGS.
1571 * config.in, configure: Regenerate.
1572
9e4344e5
PA
15732010-06-20 Ian Lance Taylor <iant@google.com>
1574 Pedro Alves <pedro@codesourcery.com>
1575
1576 * linux-x86-low.c (always_true): Delete.
1577 (EMIT_ASM, EMIT_ASM32): Use an uncondition asm jmp instead of
1578 trying to fool the compiler with always_true.
1579
c6beb2cb
PA
15802010-06-20 Pedro Alves <pedro@codesourcery.com>
1581
1582 * tracepoint.c (condition_true_at_tracepoint): Don't run compiled
1583 conditions in gdbserver.
1584
d2ed6730
UW
15852010-06-19 Ulrich Weigand <uweigand@de.ibm.com>
1586
1587 * spu-low.c (spu_read_memory): Wrap around local store limit.
1588 (spu_write_memory): Likewise.
1589
4e29fb54
PA
15902010-06-15 Pedro Alves <pedro@codesourcery.com>
1591
1592 * linux-x86-low.c (amd64_emit_const, amd64_emit_void_call_2)
1593 (i386_emit_const, i386_emit_void_call_2): Replace int64_t uses with
1594 LONGEST uses.
1595 * server.h (struct emit_ops): Replace int64_t uses with LONGEST
1596 uses.
1597 * tracepoint.c (emit_const, emit_void_call_2): Replace int64_t
1598 uses with LONGEST uses.
1599
6a271cae
PA
16002010-06-14 Stan Shebs <stan@codesourcery.com>
1601 Pedro Alves <pedro@codesourcery.com>
1602
1603 Bytecode compiler.
1604
1605 * linux-x86-low.c: Include limits.h.
1606 (add_insns): New.
1607 (always_true): New.
1608 (EMIT_ASM): New.
1609 (EMIT_ASM32): New.
1610 (amd64_emit_prologue, amd64_emit_epilogue, amd64_emit_add)
1611 (amd64_emit_sub, amd64_emit_mul, amd64_emit_lsh)
1612 (amd64_emit_rsh_signed, amd64_emit_rsh_unsigned, amd64_emit_ext,
1613 (amd64_emit_log_not, amd64_emit_bit_and, amd64_emit_bit_or)
1614 (amd64_emit_bit_xor, amd64_emit_bit_not, amd64_emit_equal,
1615 (amd64_emit_less_signed, amd64_emit_less_unsigned, amd64_emit_ref,
1616 (amd64_emit_if_goto, amd64_emit_goto, amd64_write_goto_address)
1617 (amd64_emit_const, amd64_emit_call, amd64_emit_reg)
1618 (amd64_emit_pop, amd64_emit_stack_flush, amd64_emit_zero_ext)
1619 (amd64_emit_swap, amd64_emit_stack_adjust, amd64_emit_int_call_1)
1620 (amd64_emit_void_call_2): New.
1621 (amd64_emit_ops): New.
1622 (i386_emit_prologue, i386_emit_epilogue, i386_emit_add)
1623 (i386_emit_sub,i386_emit_mul, i386_emit_lsh, i386_emit_rsh_signed)
1624 (i386_emit_rsh_unsigned, i386_emit_ext, i386_emit_log_not)
1625 (i386_emit_bit_and, i386_emit_bit_or, i386_emit_bit_xor)
1626 (i386_emit_bit_not, i386_emit_equal, i386_emit_less_signed)
1627 (i386_emit_less_unsigned, i386_emit_ref, i386_emit_if_goto)
1628 (i386_emit_goto, i386_write_goto_address, i386_emit_const)
1629 (i386_emit_call, i386_emit_reg, i386_emit_pop)
1630 (i386_emit_stack_flush, i386_emit_zero_ext, i386_emit_swap)
1631 (i386_emit_stack_adjust, i386_emit_int_call_1)
1632 (i386_emit_void_call_2): New.
1633 (i386_emit_ops): New.
1634 (x86_emit_ops): New.
1635 (the_low_target): Install x86_emit_ops.
1636 * server.h (struct emit_ops): New.
1637 (get_raw_reg_func_addr): Declare.
1638 (current_insn_ptr, emit_error): Declare.
1639 * tracepoint.c (get_raw_reg, get_trace_state_variable_value)
1640 (set_trace_state_variable_value): New defines.
1641 (struct ipa_sym_addresses): New fields addr_get_raw_reg,
1642 addr_get_trace_state_variable_value and
1643 addr_set_trace_state_variable_value.
1644 (symbol_list): New fields for get_raw_reg,
1645 get_trace_state_variable_value and set_trace_state_variable_value.
1646 (condfn): New typedef.
1647 (struct tracepoint): New field `compiled_cond'.
1648 (do_action_at_tracepoint): Clear compiled_cond.
1649 (get_trace_state_variable_value, set_trace_state_variable_value):
1650 Export in the IPA.
1651 (condition_true_at_tracepoint): If there's a compiled condition,
1652 run that.
1653 (current_insn_ptr, emit_error): New globals.
1654 (struct bytecode_address): New.
1655 (get_raw_reg_func_addr): New.
1656 (emit_prologue, emit_epilogue, emit_add, emit_sub, emit_mul)
1657 (emit_lsh, emit_rsh_signed, emit_rsh_unsigned, emit_ext)
1658 (emit_log_not, emit_bit_and, emit_bit_or, emit_bit_xor)
1659 (emit_bit_not, emit_equal, emit_less_signed, emit_less_unsigned)
1660 (emit_ref, emit_if_goto, emit_goto, write_goto_address, emit_const)
1661 (emit_reg, emit_pop, emit_stack_flush, emit_zero_ext, emit_swap)
1662 (emit_stack_adjust, emit_int_call_1, emit_void_call_2): New.
1663 (compile_tracepoint_condition, compile_bytecodes): New.
1664 * target.h (emit_ops): Forward declare.
1665 (struct target_ops): New field emit_ops.
1666 (target_emit_ops): New.
1667 * linux-amd64-ipa.c (gdb_agent_get_raw_reg): New.
1668 * linux-i386-ipa.c (gdb_agent_get_raw_reg): New.
1669 * linux-low.c (linux_emit_ops): New.
1670 (linux_target_ops): Install it.
1671 * linux-low.h (struct linux_target_ops): New field emit_ops.
1672
92b72907
UW
16732010-06-14 Ulrich Weigand <uweigand@de.ibm.com>
1674
1675 * linux-ppc-low.c (ppc_arch_setup): Use private regcache to test MSR.
1676 * linux-s390-low.c (ppc_arch_setup): Use private regcache to test PSW.
1677
fa593d66
PA
16782010-06-01 Pedro Alves <pedro@codesourcery.com>
1679 Stan Shebs <stan@codesourcery.com>
1680
1681 * Makefile.in (IPA_DEPFILES, extra_libraries): New.
1682 (all): Depend on $(extra_libraries).
1683 (install-only): Install the IPA.
1684 (IPA_OBJS, IPA_LIB): New.
1685 (clean): Remove the IPA lib.
1686 (IPAGENT_CFLAGS): New.
1687 (tracepoint-ipa.o, utils-ipa.o, remote-utils-ipa.o)
1688 (regcache-ipa.o, i386-linux-ipa.o, linux-i386-ipa.o)
1689 (linux-amd64-ipa.o, amd64-linux-ipa.o): New rules.
1690 * linux-amd64-ipa.c, linux-i386-ipa.c: New files.
1691 * configure.ac: Check for atomic builtins support in the compiler.
1692 (IPA_DEPFILES, extra_libraries): Define.
1693 * configure.srv (ipa_obj): Add description.
1694 (ipa_i386_linux_regobj, ipa_amd64_linux_regobj): Define.
1695 (i[34567]86-*-linux*): Set ipa_obj.
1696 (x86_64-*-linux*): Set ipa_obj.
1697 * linux-low.c (stabilizing_threads): New.
1698 (supports_fast_tracepoints): New.
1699 (linux_detach): Stabilize threads before detaching.
1700 (handle_tracepoints): Handle internal tracing breakpoints. Assert
1701 the lwp is either not stabilizing, or is moving out of a jump pad.
1702 (linux_fast_tracepoint_collecting): New.
1703 (maybe_move_out_of_jump_pad): New.
1704 (enqueue_one_deferred_signal): New.
1705 (dequeue_one_deferred_signal): New.
1706 (linux_wait_for_event_1): If moving out of a jump pad, defer
1707 pending signals to later.
1708 (linux_stabilize_threads): New.
1709 (linux_wait_1): Check if threads need moving out of jump pads, and
1710 do it if so.
1711 (stuck_in_jump_pad_callback): New.
1712 (move_out_of_jump_pad_callback): New.
1713 (lwp_running): New.
1714 (linux_resume_one_lwp): Handle moving out of jump pads.
1715 (linux_set_resume_request): Dequeue deferred signals.
1716 (need_step_over_p): Also step over fast tracepoint jumps.
1717 (start_step_over): Also uninsert fast tracepoint jumps.
1718 (finish_step_over): Also reinsert fast tracepoint jumps.
1719 (linux_install_fast_tracepoint_jump): New.
1720 (linux_target_ops): Install linux_stabilize_threads and
1721 linux_install_fast_tracepoint_jump_pad.
1722 * linux-low.h (linux_target_ops) <get_thread_area,
1723 install_fast_tracepoint_jump_pad>: New fields.
1724 (struct lwp_info) <collecting_fast_tracepoint,
1725 pending_signals_to_report, exit_jump_pad_bkpt>: New fields.
1726 (linux_get_thread_area): Declare.
1727 * linux-x86-low.c (jump_insn): New.
1728 (x86_get_thread_area): New.
1729 (append_insns): New.
1730 (push_opcode): New.
1731 (amd64_install_fast_tracepoint_jump_pad): New.
1732 (i386_install_fast_tracepoint_jump_pad): New.
1733 (x86_install_fast_tracepoint_jump_pad): New.
1734 (the_low_target): Install x86_get_thread_area and
1735 x86_install_fast_tracepoint_jump_pad.
1736 * mem-break.c (set_raw_breakpoint_at): Use read_inferior_memory.
1737 (struct fast_tracepoint_jump): New.
1738 (fast_tracepoint_jump_insn): New.
1739 (fast_tracepoint_jump_shadow): New.
1740 (find_fast_tracepoint_jump_at): New.
1741 (fast_tracepoint_jump_here): New.
1742 (delete_fast_tracepoint_jump): New.
1743 (set_fast_tracepoint_jump): New.
1744 (uninsert_fast_tracepoint_jumps_at): New.
1745 (reinsert_fast_tracepoint_jumps_at): New.
1746 (set_breakpoint_at): Use write_inferior_memory.
1747 (uninsert_raw_breakpoint): Use write_inferior_memory.
1748 (check_mem_read): Mask out fast tracepoint jumps.
1749 (check_mem_write): Mask out fast tracepoint jumps.
1750 * mem-break.h (struct fast_tracepoint_jump): Forward declare.
1751 (set_fast_tracepoint_jump): Declare.
1752 (delete_fast_tracepoint_jump)
1753 (fast_tracepoint_jump_here, uninsert_fast_tracepoint_jumps_at)
1754 (reinsert_fast_tracepoint_jumps_at): Declare.
1755 * regcache.c: Don't compile many functions when building the
1756 in-process agent library.
1757 (init_register_cache) [IN_PROCESS_AGENT]: Don't allow allocating
1758 the register buffer in the heap.
1759 (free_register_cache): If the register buffer isn't owned by the
1760 regcache, don't free it.
1761 (set_register_cache) [IN_PROCESS_AGENT]: Don't re-alocate
1762 pre-existing register caches.
1763 * remote-utils.c (convert_int_to_ascii): Constify `from' parameter
1764 type.
1765 (convert_ascii_to_int): : Constify `from' parameter type.
1766 (decode_M_packet, decode_X_packet): Replace the `to' parameter by
1767 a `to_p' pointer to pointer parameter. If TO_P is NULL, malloc
1768 the needed buffer in-place.
1769 (relocate_instruction): New.
1770 * server.c (handle_query) <qSymbols>: If the target supports
1771 tracepoints, give it a chance of looking up symbols. Report
1772 support for fast tracepoints.
1773 (handle_status): Stabilize threads.
1774 (process_serial_event): Adjust.
1775 * server.h (struct fast_tracepoint_jump): Forward declare.
1776 (struct process_info) <fast_tracepoint_jumps>: New field.
1777 (convert_ascii_to_int, convert_int_to_ascii): Adjust.
1778 (decode_X_packet, decode_M_packet): Adjust.
1779 (relocate_instruction): Declare.
1780 (in_process_agent_loaded): Declare.
1781 (tracepoint_look_up_symbols): Declare.
1782 (struct fast_tpoint_collect_status): Declare.
1783 (fast_tracepoint_collecting): Declare.
1784 (force_unlock_trace_buffer): Declare.
1785 (handle_tracepoint_bkpts): Declare.
1786 (initialize_low_tracepoint)
1787 (supply_fast_tracepoint_registers) [IN_PROCESS_AGENT]: Declare.
1788 * target.h (struct target_ops) <stabilize_threads,
1789 install_fast_tracepoint_jump_pad>: New fields.
1790 (stabilize_threads, install_fast_tracepoint_jump_pad): New.
1791 * tracepoint.c [HAVE_MALLOC_H]: Include malloc.h.
1792 [HAVE_STDINT_H]: Include stdint.h.
1793 (trace_debug_1): Rename to ...
1794 (trace_vdebug): ... this.
1795 (trace_debug): Rename to ...
1796 (trace_debug_1): ... this. Add `level' parameter.
1797 (trace_debug): New.
1798 (ATTR_USED, ATTR_NOINLINE): New.
1799 (IP_AGENT_EXPORT): New.
1800 (gdb_tp_heap_buffer, gdb_jump_pad_buffer, gdb_jump_pad_buffer_end)
1801 (collecting, gdb_collect, stop_tracing, flush_trace_buffer)
1802 (about_to_request_buffer_space, trace_buffer_is_full)
1803 (stopping_tracepoint, expr_eval_result, error_tracepoint)
1804 (tracepoints, tracing, trace_buffer_ctrl, trace_buffer_ctrl_curr)
1805 (trace_buffer_lo, trace_buffer_hi, traceframe_read_count)
1806 (traceframe_write_count, traceframes_created)
1807 (trace_state_variables)
1808 New renaming defines.
1809 (struct ipa_sym_addresses): New.
1810 (STRINGIZE_1, STRINGIZE, IPA_SYM): New.
1811 (symbol_list): New.
1812 (ipa_sym_addrs): New.
1813 (all_tracepoint_symbols_looked_up): New.
1814 (in_process_agent_loaded): New.
1815 (write_e_ipa_not_loaded): New.
1816 (maybe_write_ipa_not_loaded): New.
1817 (tracepoint_look_up_symbols): New.
1818 (debug_threads) [IN_PROCESS_AGENT]: New.
1819 (read_inferior_memory) [IN_PROCESS_AGENT]: New.
1820 (UNKNOWN_SIDE_EFFECTS): New.
1821 (stop_tracing): New.
1822 (flush_trace_buffer): New.
1823 (stop_tracing_bkpt): New.
1824 (flush_trace_buffer_bkpt): New.
1825 (read_inferior_integer): New.
1826 (read_inferior_uinteger): New.
1827 (read_inferior_data_pointer): New.
1828 (write_inferior_data_pointer): New.
1829 (write_inferior_integer): New.
1830 (write_inferior_uinteger): New.
1831 (struct collect_static_trace_data_action): Delete.
1832 (enum tracepoint_type): New.
1833 (struct tracepoint) <type>: New field `type'.
1834 <actions_str, step_actions, step_actions_str>: Only include in GDBserver.
1835 <orig_size, obj_addr_on_target, adjusted_insn_addr>
1836 <adjusted_insn_addr_end, jump_pad, jump_pad_end>: New fields.
1837 (tracepoints): Use IP_AGENT_EXPORT.
1838 (last_tracepoint): Don't include in the IPA.
1839 (stopping_tracepoint): Use IP_AGENT_EXPORT.
1840 (trace_buffer_is_full): Use IP_AGENT_EXPORT.
1841 (alloced_trace_state_variables): New.
1842 (trace_state_variables): Use IP_AGENT_EXPORT.
1843 (traceframe_t): Delete unused variable.
1844 (circular_trace_buffer): Don't include in the IPA.
1845 (trace_buffer_start): Delete.
1846 (struct trace_buffer_control): New.
1847 (trace_buffer_free): Delete.
1848 (struct ipa_trace_buffer_control): New.
1849 (GDBSERVER_FLUSH_COUNT_MASK, GDBSERVER_FLUSH_COUNT_MASK_PREV)
1850 (GDBSERVER_FLUSH_COUNT_MASK_CURR, GDBSERVER_UPDATED_FLUSH_COUNT_BIT):
1851 New.
1852 (trace_buffer_ctrl): New.
1853 (TRACE_BUFFER_CTRL_CURR): New.
1854 (trace_buffer_start, trace_buffer_free, trace_buffer_end_free):
1855 Reimplement as macros.
1856 (trace_buffer_wrap): Delete.
1857 (traceframe_write_count, traceframe_read_count)
1858 (traceframes_created, tracing): Use IP_AGENT_EXPORT.
1859 (struct tracepoint_hit_ctx) <type>: New field.
1860 (struct fast_tracepoint_ctx): New.
1861 (memory_barrier): New.
1862 (cmpxchg): New.
1863 (record_tracepoint_error): Update atomically in the IPA.
1864 (clear_inferior_trace_buffer): New.
1865 (about_to_request_buffer_space): New.
1866 (trace_buffer_alloc): Handle GDBserver and inferior simulatenous
1867 updating the same buffer.
1868 (add_tracepoint): Default the tracepoint's type to trap
1869 tracepoint, and orig_size to -1.
1870 (get_trace_state_variable) [IN_PROCESS_AGENT]: Handle allocated
1871 internal variables.
1872 (create_trace_state_variable): New parameter `gdb'. Handle it.
1873 (clear_installed_tracepoints): Clear fast tracepoint jumps.
1874 (cmd_qtdp): Handle fast tracepoints.
1875 (cmd_qtdv): Adjust.
1876 (max_jump_pad_size): New.
1877 (gdb_jump_pad_head): New.
1878 (get_jump_space_head): New.
1879 (claim_jump_space): New.
1880 (sort_tracepoints): New.
1881 (MAX_JUMP_SIZE): New.
1882 (cmd_qtstart): Handle fast tracepoints. Sync tracepoints with the
1883 IPA.
1884 (stop_tracing) [IN_PROCESS_AGENT]: Don't include the tdisconnected
1885 support. Upload fast traceframes, and delete internal IPA
1886 breakpoints.
1887 (stop_tracing_handler): New.
1888 (flush_trace_buffer_handler): New.
1889 (cmd_qtstop): Upload fast tracepoints.
1890 (response_tracepoint): Handle fast tracepoints.
1891 (tracepoint_finished_step): Upload fast traceframes. Set the
1892 tracepoint hit context's tracepoint type.
1893 (handle_tracepoint_bkpts): New.
1894 (tracepoint_was_hit): Set the tracepoint hit context's tracepoint
1895 type. Add comment about fast tracepoints.
1896 (collect_data_at_tracepoint) [IN_PROCESS_AGENT]: Don't access the
1897 non-existing action_str field.
1898 (get_context_regcache): Handle fast tracepoints.
1899 (do_action_at_tracepoint) [!IN_PROCESS_AGENT]: Don't write the PC
1900 to the regcache.
1901 (fast_tracepoint_from_jump_pad_address): New.
1902 (fast_tracepoint_from_ipa_tpoint_address): New.
1903 (collecting_t): New.
1904 (force_unlock_trace_buffer): New.
1905 (fast_tracepoint_collecting): New.
1906 (collecting): New.
1907 (gdb_collect): New.
1908 (write_inferior_data_ptr): New.
1909 (target_tp_heap): New.
1910 (target_malloc): New.
1911 (download_agent_expr): New.
1912 (UALIGN): New.
1913 (download_tracepoints): New.
1914 (download_trace_state_variables): New.
1915 (upload_fast_traceframes): New.
1916 (IPA_FIRST_TRACEFRAME): New.
1917 (IPA_NEXT_TRACEFRAME_1): New.
1918 (IPA_NEXT_TRACEFRAME): New.
1919 [IN_PROCESS_AGENT]: Include sys/mman.h and fcntl.h.
1920 [IN_PROCESS_AGENT] (gdb_tp_heap_buffer, gdb_jump_pad_buffer)
1921 (gdb_jump_pad_buffer_end): New.
1922 [IN_PROCESS_AGENT] (initialize_tracepoint_ftlib): New.
1923 (initialize_tracepoint): Adjust.
1924 [IN_PROCESS_AGENT]: Allocate the IPA heap, and jump pad scratch
1925 buffer. Initialize the low module.
1926 * utils.c (PREFIX, TOOLNAME): New.
1927 (malloc_failure): Use PREFIX.
1928 (error): In the IPA, an error causes an exit.
1929 (fatal, warning): Use PREFIX.
1930 (internal_error): Use TOOLNAME.
1931 (NUMCELLS): Increase to 10.
1932 * configure, config.in: Regenerate.
1933
d149dd1d
PA
19342010-06-01 Pedro Alves <pedro@codesourcery.com>
1935
1936 * server.c (handle_query) <qSupported>: Do two passes over the
1937 qSupported string to avoid nesting strtok.
1938
f6528abd
JK
19392010-05-28 Jan Kratochvil <jan.kratochvil@redhat.com>
1940
1941 * Makefile.in (SFILES): Add $(srcdir)/proc-service.list.
1942 (CDEPS): New.
1943 * configure.ac (RDYNAMIC): New AC_MSG_CHECKING wrapping. Test also
1944 -Wl,--dynamic-list.
1945 * configure: Regenerate.
1946 * proc-service.list: New.
1947
ca2a87a0
JK
19482010-05-28 Jan Kratochvil <jan.kratochvil@redhat.com>
1949
1950 * linux-low.c (linux_core_of_thread): Fix crash on invalid CONTENT.
1951 New comment.
1952
363a6e9f
OS
19532010-05-26 Ozkan Sezer <sezeroz@gmail.com>
1954
1955 * gdbreplay.c (remote_open): Check error return from socket() call by
1956 its equality to -1 not by it being negative.
1957 * remote-utils.c (remote_open): Likewise.
1958
d23b6cb1
PA
19592010-05-23 Pedro Alves <pedro@codesourcery.com>
1960
1961 * config.h: Regenerate.
1962
28d3cf85
MK
19632010-05-19 Maxim Kuvyrkov <maxim@codesourcery.com>
1964
1965 * linux-m68k-low.c (ps_get_thread_area): Don't define if kernel
1966 doesn't provide PTRACE_GET_THREAD_AREA.
1967
fea36a59
MK
19682010-05-19 Maxim Kuvyrkov <maxim@codesourcery.com>
1969
1970 * linux-m68k-low.c: Include <asm/ptrace.h>
1971 (ps_get_thread_area): Implement.
1972
24b066ba
DE
19732010-05-03 Doug Evans <dje@google.com>
1974
1975 * event-loop.c (struct callback_event): New struct.
1976 (callback_list): New global.
1977 (append_callback_event, delete_callback_event): New functions.
1978 (process_callback): New function.
1979 (start_event_loop): Call it.
1980 * remote-utils.c (NOT_SCHEDULED): Define.
1981 (readchar_buf, readchar_bufcnt, readchar_bufp): New static globals,
1982 moved out of readchar.
1983 (readchar): Rewrite. Call reschedule before returning.
1984 (reset_readchar): New function.
1985 (remote_close): Call it.
1986 (process_remaining, reschedule): New functions.
1987 * server.h (callback_handler_func): New typedef.
1988 (append_callback_event, delete_callback_event): Declare.
1989
9836d6ea
PA
19902010-05-03 Pedro Alves <pedro@codesourcery.com>
1991
1992 * proc-service.c (ps_pglobal_lookup): Use
1993 thread_db_look_up_one_symbol.
1994 * remote-utils.c (look_up_one_symbol): Add new `may_ask_gdb'
1995 parameter. Use it instead of all_symbols_looked_up.
1996 * server.h (struct process_info) <all_symbols_looked_up>: Delete
1997 field.
1998 (all_symbols_looked_up): Don't declare.
1999 (look_up_one_symbol): Add new `may_ask_gdb' parameter.
2000 * thread-db.c (struct thread_db) <all_symbols_looked_up>: New
2001 field.
2002 (thread_db_look_up_symbols): Adjust call to look_up_one_symbol.
2003 Set all_symbols_looked_up here.
2004 (thread_db_look_up_one_symbol): New.
2005 (thread_db_get_tls_address): Adjust.
2006 (thread_db_load_search, try_thread_db_load_1): Always allocate the
2007 thread_db object on the heap, and tentatively set it in the
2008 process structure.
2009 (thread_db_init): Don't set all_symbols_looked_up here.
2010 * linux-low.h (thread_db_look_up_one_symbol): Declare.
2011
7984d532
PA
20122010-05-03 Pedro Alves <pedro@codesourcery.com>
2013
2014 * linux-low.c (linux_kill, linux_detach): Adjust.
2015 (status_pending_p_callback): Remove redundant statement. Check
2016 for !TARGET_WAITIKIND_IGNORE, instead of
2017 TARGET_WAITKIND_STOPPED.
2018 (handle_tracepoints): Make sure LWP is locked. Adjust.
2019 (linux_wait_for_event_1): Adjust.
2020 (linux_cancel_breakpoints): New.
2021 (unsuspend_one_lwp): New.
2022 (unsuspend_all_lwps): New.
2023 (linux_wait_1): If finishing a step-over, unsuspend all lwps.
2024 (send_sigstop_callback): Change return type to int, add new
2025 `except' parameter and handle it.
2026 (suspend_and_send_sigstop_callback): New.
2027 (stop_all_lwps): Add new `suspend' and `expect' parameters, and
2028 pass them down. If SUSPEND, also increment the lwp's suspend
2029 count.
2030 (linux_resume_one_lwp): Add notice about resuming a suspended LWP.
2031 (need_step_over_p): Don't consider suspended LWPs.
2032 (start_step_over): Adjust.
2033 (proceed_one_lwp): Change return type to int, add new `except'
2034 parameter and handle it.
2035 (unsuspend_and_proceed_one_lwp): New.
2036 (proceed_all_lwps): Use find_inferior instead of
2037 for_each_inferior.
2038 (unstop_all_lwps): Add `unsuspend' parameter. If UNSUSPEND, them
2039 also decrement the suspend count of LWPs. Pass `except' down,
2040 instead of hacking its suspend count.
2041 (linux_pause_all): Add `freeze' parameter. Adjust.
2042 (linux_unpause_all): New.
2043 (linux_target_ops): Install linux_unpause_all.
2044 * server.c (handle_status): Adjust.
2045 * target.h (struct target_ops): New fields `unpause_all' and
2046 `cancel_breakpoints'. Add new parameter to `pause_all'.
2047 (pause_all): Add new `freeze' parameter.
2048 (unpause_all): New.
2049 (cancel_breakpoints): New.
2050 * tracepoint.c (clear_installed_tracepoints): Pause threads, and
2051 cancel breakpoints.
2052 (cmd_qtstart): Pause threads.
2053 (stop_tracing): Pause threads, and cancel breakpoints.
2054 * win32-low.c (win32_target_ops): Adjust.
2055
e471f25b
PA
20562010-05-03 Pedro Alves <pedro@codesourcery.com>
2057
2058 * linux-low.c (linux_wait_for_event_1): Move passing the signal to
2059 the inferior right away from here...
2060 (linux_wait_1): ... to here, and adjust to check the thread's
2061 last_resume_kind instead of the lwp's step or stop_expected flags.
2062
1915ef4f
PA
20632010-05-02 Pedro Alves <pedro@codesourcery.com>
2064
2065 * README: Use consistent `GDB' and `GDBserver' spellings.
2066
f9e39928
PA
20672010-05-02 Pedro Alves <pedro@codesourcery.com>
2068
2069 * linux-low.c (linux_kill_one_lwp): Assume the lwp is stopped.
2070 (linux_kill): Stop all lwps here. Don't delete the main lwp here.
2071 (linux_detach_one_lwp): Assume the lwp is stopped.
2072 (any_thread_of): Delete.
2073 (linux_detach): Stop all lwps here. Don't blindly delete all
2074 breakpoints.
2075 (delete_lwp_callback): New.
2076 (linux_mourn): Delete all lwps of the process that is gone.
2077 (linux_wait_1): Don't delete the last lwp of the process here.
2078 * mem-break.h (mark_breakpoints_out): Declare.
2079 * mem-break.c (mark_breakpoints_out): New.
2080 (free_all_breakpoints): Use it.
2081 * server.c (handle_target_event): If the process is gone, mark
2082 breakpoints out.
2083 * thread-db.c (struct thread_db) <create_bp>: New field.
2084 (thread_db_enable_reporting): Fix prototype. Store a thread event
2085 breakpoint reference in the thread_db struct.
2086 (thread_db_load_search): Clear the thread_db object.
2087 (try_thread_db_load_1): Ditto.
2088 (switch_to_process): New.
2089 (disable_thread_event_reporting): Use it.
2090 (remove_thread_event_breakpoints): New.
2091 (thread_db_detach, thread_db_mourn): Use it.
2092
1e7fc18c
PA
20932010-05-01 Pedro Alves <pedro@codesourcery.com>
2094
2095 * linux-low.c (linux_enable_event_reporting): New.
2096 (linux_wait_for_event_1, handle_extended_wait): Use it.
2097
02fc4de7
PA
20982010-04-30 Pedro Alves <pedro@codesourcery.com>
2099
2100 * linux-low.c (linux_kill_one_lwp, linux_kill)
2101 (linux_detach_one_lwp): Adjust to send_sigstop interface change.
2102 (send_sigstop): Take an lwp_info as parameter instead. Queue a
2103 SIGSTOP even if the LWP is stopped.
2104 (send_sigstop_callback): New.
2105 (stop_all_lwps): Use send_sigstop_callback instead.
2106 (linux_resume_one_thread): Adjust.
2107 (proceed_one_lwp): Still proceed an LWP that the client has
2108 requested to stop, if we haven't reported it as stopped yet. Make
2109 sure that LWPs the client want stopped, have a pending SIGSTOP.
2110
bc3b5632
DE
21112010-04-26 Doug Evans <dje@google.com>
2112
ae1ada35
DE
2113 * server.c (handle_general_set): Make static.
2114
bc3b5632
DE
2115 * remote-utils.c (putpkt_binary_1): Call readchar instead of read.
2116 Print received char after testing for error/eof instead of before.
2117 (input_interrupt): Tweak comment.
2118
65730243
DE
21192010-04-23 Doug Evans <dje@google.com>
2120
2121 * server.c (start_inferior): Print inferior argv if --debug.
2122
a8ae7dc0
AR
21232010-04-21 Aleksandar Ristovski <aristovski@qnx.com>
2124
2125 * Makefile.in (nto_low_h nto-low.o nto-x86-low.o): New dependency lists.
2126 * nto-x86-low.c: Include server.h
2127
1c07cc19
PM
21282010-04-20 Pierre Muller <muller@ics.u-strasbg.fr>
2129
2130 * win32-i386-low.c: Use __x86_64__ macro instead of __x86_64 to
2131 be consistent with other sources of this directory.
2132 (init_registers_amd64): Correct name of source file of this function
2133 in the comment.
2134
e0a61e09
PM
21352010-04-19 Pierre Muller <muller@ics.u-strasbg.fr>
2136
2137 * configure.srv (x86_64-*-mingw*): New configuration for Windows
2138 64-bit executables.
2139
54709339
PM
21402010-04-19 Pierre Muller <muller@ics.u-strasbg.fr>
2141
2142 * win32-i386-low.c: Add 64-bit support.
2143 (CONTEXT_EXTENDED_REGISTERS): Set macro to zero if not exisiting.
2144 (init_registers_amd64): Declare.
2145 (mappings): Add 64-bit version of array.
2146 (init_windows_x86): New function.
2147 (the_low_target): Change init_arch field to init_windows_x86.
2148
e8f0053d
PM
21492010-04-19 Pierre Muller <muller@ics.u-strasbg.fr>
2150
2151 * win32-low.c: Adapt to support also 64-bit architecture.
2152 (child_xfer_memory): Use uintptr_t type for local variable `addr'.
2153 (get_image_name): Use SIZE_T type for local variable `done'.
2154 (psapi_get_dll_name): Use LPVOID type for parameter `BaseAddress'.
2155 (toolhelp_get_dll_name): Idem.
2156 (handle_load_dll): Use CORE_ADDR type for local variable `load_addr'.
2157 Use uintptr_t typecast to avoid warning.
2158 (handle_unload_dll): Use uintptr_t typecast to avoid warning.
2159 (handle_exception): Use phex_nz to avoid warning.
2160 (win32_wait): Remove unused local variable `process'.
2161
c481e77e
PM
21622010-04-19 Pierre Muller <muller@ics.u-strasbg.fr>
2163
2164 * configure.srv (srv_amd64_regobj): Replace `x86-64-avx.o' by
2165 `amd64-avx.o'.
2166
12ea4b69
PM
21672010-04-17 Pierre Muller <muller@ics.u-strasbg.fr>
2168
2169 * configure.ac: Use `ws2_32' library for srv_mingw.
2170 * configure: Regenerate.
2171 * gdbreplay.c: Include winsock2.h instead of winsock.h.
2172 * remote-utils.c: Likewise.
2173
f6d1620c
L
21742010-04-17 H.J. Lu <hongjiu.lu@intel.com>
2175
2176 * linux-x86-low.c (xmltarget_amd64_linux_no_xml): Define only
2177 if __x86_64__ is defined.
2178
8e642873
PM
21792010-04-16 Pierre Muller <muller@ics.u-strasbg.fr>
2180
2181 * configure: Regenerate.
2182
711e434b
PM
21832010-04-16 Pierre Muller <muller@ics.u-strasbg.fr>
2184
2185 * server.c (handle_query): Handle 'qGetTIBAddr' query.
2186 * target.h (target_ops): New get_tib_address field.
2187 * win32-low.h (win32_thread_info): Add thread_local_base field.
2188 * win32-low.c (child_add_thread): Add tlb argument.
2189 Set thread_local_base field to TLB.
2190 (get_child_debug_event): Adapt to child_add_thread change.
2191 (win32_get_tib_address): New function.
2192 (win32_target_ops): Set get_tib_address field to
2193 win32_get_tib_address.
2194 * linux-low.c (linux_target_ops): Set get_tib_address field to NULL.
2195
505106cd
PA
21962010-04-12 Pedro Alves <pedro@codesourcery.com>
2197
505106cd
PA
2198 * linux-low.c (linux_mourn): Also remove the process.
2199 * server.c (handle_target_event): Don't remove the process here.
2200 * nto-low.c (nto_mourn): New.
2201 (nto_target_ops): Install it.
2202 * spu-low.c (spu_mourn): New.
2203 (spu_target_ops): Install it.
2204 * win32-low.c (win32_mourn): New.
2205 (win32_target_ops): Install it.
2206
e8470a06
PA
22072010-04-12 Pedro Alves <pedro@codesourcery.com>
2208
2209 * server.h (buffer_xml_printf): Remove redundant `;'.
2210
45ba0d02
PA
22112010-04-12 Pedro Alves <pedro@codesourcery.com>
2212
2213 * regcache.c (set_register_cache): Invalidate regcaches before
2214 changing the register cache layout.
2215 (regcache_invalidate_one): Allow a NULL regcache.
2216 * linux-x86-low.c (x86_linux_update_xmltarget): Invalidate
2217 regcaches before changing the register cache layout or the target
2218 regsets.
2219
59e04013
L
22202010-04-12 H.J. Lu <hongjiu.lu@intel.com>
2221
2222 * linux-x86-low.c (x86_linux_update_xmltarget): Avoid unused
2223 variable warning on Linux/x86-64.
2224
8336d594
PA
22252010-04-11 Pedro Alves <pedro@codesourcery.com>
2226
2227 GDBserver disconnected tracing support.
2228
2229 * linux-low.c (linux_remove_process): Delete.
2230 (add_lwp): Don't set last_resume_kind here.
2231 (linux_kill): Use `mourn'.
2232 (linux_detach): Use `thread_db_detach', and `mourn'.
2233 (linux_mourn): New.
2234 (linux_attach_lwp_1): Adjust comment.
2235 (linux_attach): last_resume_kind moved the thread_info; adjust.
2236 (status_pending_p_callback): Adjust.
2237 (linux_wait_for_event_1): Adjust.
2238 (count_events_callback, select_singlestep_lwp_callback)
2239 (select_event_lwp_callback, cancel_breakpoints_callback)
2240 (db_wants_lwp_stopped, linux_wait_1, need_step_over_p)
2241 (proceed_one_lwp): Adjust.
2242 (linux_async): Add debug output.
2243 (linux_thread_stopped): New.
2244 (linux_pause_all): New.
2245 (linux_target_ops): Install linux_mourn, linux_thread_stopped and
2246 linux_pause_all.
2247 * linux-low.h (struct lwp_info): Delete last_resume_kind field.
2248 (thread_db_free): Delete declaration.
2249 (thread_db_detach, thread_db_mourn): Declare.
2250 * thread-db.c (thread_db_init): Use thread_db_mourn.
2251 (thread_db_free): Delete, split in two.
2252 (disable_thread_event_reporting): New.
2253 (thread_db_detach): New.
2254 (thread_db_mourn): New.
2255
2256 * server.h (struct thread_info) <last_resume_kind>: New field.
2257 <attached>: Add comment.
2258 <gdb_detached>: New field.
2259 (handler_func): Change return type to int.
2260 (handle_serial_event, handle_target_event): Ditto.
2261 (gdb_connected): Declare.
2262 (tracing): Delete.
2263 (disconnected_tracing): Declare.
2264 (stop_tracing): Declare.
2265
2266 * server.c (handle_query) <qSupported>: Report support for
2267 disconnected tracing.
2268 (queue_stop_reply_callback): Account for running threads.
2269 (gdb_wants_thread_stopped): New.
2270 (gdb_wants_all_threads_stopped): New.
2271 (gdb_reattached_process): New.
2272 (handle_status): Clear the `gdb_detached' flag of all processes.
2273 In all-stop, stop all threads.
2274 (main): Be sure to leave tfind mode. Handle disconnected tracing.
2275 (process_serial_event): If the remote connection breaks, or if an
2276 exit was forced with "monitor exit", force an event loop exit.
2277 Handle disconnected tracing on detach.
2278 (handle_serial_event): Adjust.
2279 (handle_target_event): If GDB isn't connected, forward events back
2280 to the inferior, unless the last process exited, in which case,
2281 exit gdbserver. Adjust interface.
2282
2283 * remote-utils.c (remote_open): Don't block in accept. Instead
2284 register an event loop source on the listen socket file
2285 descriptor. Refactor bits into ...
2286 (listen_desc): ... this new global.
2287 (gdb_connected): ... this new function.
2288 (enable_async_notification): ... this new function.
2289 (handle_accept_event): ... this new function.
2290 (remote_close): Clear remote_desc.
2291
2292 * inferiors.c (add_thread): Set the new thread's last_resume_kind.
2293
2294 * target.h (struct target_ops) <mourn, thread_stopped, pause_all>:
2295 New fields.
2296 (mourn_inferior): Define.
2297 (target_process_qsupported): Avoid the dangling else problem.
2298 (thread_stopped): Define.
2299 (pause_all): Define.
2300 (target_waitstatus_to_string): Declare.
2301 * target.c (target_waitstatus_to_string): New.
2302
2303 * tracepoint.c (tracing): Make extern.
2304 (disconnected_tracing): New.
2305 (stop_tracing): Make extern. Handle tracing stops due to GDB
2306 disconnecting.
2307 (cmd_qtdisconnected): New.
2308 (cmd_qtstatus): Report disconnected tracing status in trace reply.
2309 (handle_tracepoint_general_set): Handle QTDisconnected.
2310
2311 * event-loop.c (event_handler_func): Change return type to int.
2312 (process_event): Bail out if the event handler wants the event
2313 loop to stop.
2314 (handle_file_event): Ditto.
2315 (start_event_loop): Bail out if the event handler wants the event
2316 loop to stop.
2317
2318 * nto-low.c (nto_target_ops): Adjust.
2319 * spu-low.c (spu_wait): Don't remove the process here.
2320 (spu_target_ops): Adjust.
2321 * win32-low.c (win32_wait): Don't remove the process here.
2322 (win32_target_ops): Adjust.
2323
5d267c4c
PA
23242010-04-11 Pedro Alves <pedro@codesourcery.com>
2325
2326 * regcache.c (realloc_register_cache): Invalidate inferior's
2327 regcache before recreating it.
2328
623ccd72
PA
23292010-04-09 Pedro Alves <pedro@codesourcery.com>
2330
2331 * tracepoint.c (cmd_qtstatus): Report trace buffer circularity.
2332
219f2f23
PA
23332010-04-09 Stan Shebs <stan@codesourcery.com>
2334 Pedro Alves <pedro@codesourcery.com>
2335
2336 * server.h (LONGEST): New.
2337 (struct thread_info) <while_stepping>: New field.
2338 (unpack_varlen_hex, xrealloc, pulongest, plongest, phex_nz):
2339 Declare.
2340 (initialize_tracepoint, handle_tracepoint_general_set)
2341 (handle_tracepoint_query, tracepoint_finished_step)
2342 (tracepoint_was_hit, release_while_stepping_state_list):
2343 (current_traceframe): Declare.
2344 * server.c (handle_general_set): Handle tracepoint packets.
2345 (read_memory): New.
2346 (write_memory): New.
2347 (handle_search_memory_1): Use read_memory.
2348 (handle_query): Report support for conditional tracepoints, trace
2349 state variables, and tracepoint sources. Handle tracepoint
2350 queries.
2351 (main): Initialize the tracepoints module.
2352 (process_serial_event): Handle traceframe reads/writes.
2353
2354 * linux-low.c (handle_tracepoints): New.
2355 (linux_wait_1): Call it.
2356 (linux_resume_one_lwp): Handle while-stepping.
2357 (linux_supports_tracepoints, linux_read_pc, linux_write_pc): New.
2358 (linux_target_ops): Install them.
2359 * linux-low.h (struct linux_target_ops) <supports_tracepoints>:
2360 New field.
2361 * linux-x86-low.c (x86_supports_tracepoints): New.
2362 (the_low_target). Install it.
2363
2364 * mem-break.h (delete_breakpoint): Declare.
2365 * mem-break.c (delete_breakpoint): Make external.
2366
2367 * target.h (struct target_ops): Add `supports_tracepoints',
2368 `read_pc', and `write_pc' fields.
2369 (target_supports_tracepoints): Define.
2370 * utils.c (xrealloc, decimal2str, pulongest, plongest, thirty_two)
2371 (phex_nz): New.
2372
2373 * regcache.h (struct regcache) <registers_owned>: New field.
2374 (init_register_cache, regcache_cpy): Declare.
2375 (regcache_read_pc, regcache_write_pc): Declare.
2376 (register_cache_size): Declare.
2377 (supply_regblock): Declare.
2378 * regcache.c (init_register_cache): New.
2379 (new_register_cache): Use it.
2380 (regcache_cpy): New.
2381 (register_cache_size): New.
2382 (supply_regblock): New.
2383 (regcache_read_pc, regcache_write_pc): New.
889bf7c5 2384
219f2f23
PA
2385 * tracepoint.c: New.
2386
2387 * Makefile.in (OBS): Add tracepoint.o.
2388 (tracepoint.o): New rule.
2389
3a13a53b
L
23902010-04-08 H.J. Lu <hongjiu.lu@intel.com>
2391
2392 * Makefile.in (clean): Also remove i386-mmx.c i386-mmx-linux.c.
2393 (i386-mmx.o): New.
2394 (i386-mmx.c): Likewise.
2395 (i386-mmx-linux.o): Likewise.
2396 (i386-mmx-linux.c): Likewise.
2397
2398 * configure.srv (srv_i386_regobj): Add i386-mmx.o.
2399 (srv_i386_linux_regobj): Add i386-mmx-linux.o.
2400 (srv_i386_xmlfiles): Add i386/i386-mmx.xml.
2401 (srv_i386_linux_xmlfiles): Add i386/i386-mmx-linux.xml.
2402
2403 * linux-x86-low.c (init_registers_i386_mmx_linux): New.
2404 (x86_linux_update_xmltarget): Call init_registers_i386_mmx_linux
2405 and return if ptrace PTRACE_GETFPXREGS failed in 32bit.
2406
1570b33e
L
24072010-04-07 H.J. Lu <hongjiu.lu@intel.com>
2408
2409 * Makefile.in (clean): Updated.
2410 (i386-avx.o): New.
2411 (i386-avx.c): Likewise.
2412 (i386-avx-linux.o): Likewise.
2413 (i386-avx-linux.c): Likewise.
2414 (amd64-avx.o): Likewise.
2415 (amd64-avx.c): Likewise.
2416 (amd64-avx-linux.o): Likewise.
2417 (amd64-avx-linux.c): Likewise.
2418
2419 * configure.srv (srv_i386_regobj): Add i386-avx.o.
2420 (srv_i386_linux_regobj): Add i386-avx-linux.o.
2421 (srv_amd64_regobj): Add amd64-avx.o.
2422 (srv_amd64_linux_regobj): Add amd64-avx-linux.o.
2423 (srv_i386_32bit_xmlfiles): Add i386/32bit-avx.xml.
2424 (srv_i386_64bit_xmlfiles): Add i386/64bit-avx.xml.
2425 (srv_i386_xmlfiles): Add i386/i386-avx.xml.
2426 (srv_amd64_xmlfiles): Add i386/amd64-avx.xml.
2427 (srv_i386_linux_xmlfiles): Add i386/i386-avx-linux.xml.
2428 (srv_amd64_linux_xmlfiles): Add i386/amd64-avx-linux.xml.
2429
2430 * i387-fp.c: Include "i386-xstate.h".
2431 (i387_xsave): New.
2432 (i387_cache_to_xsave): Likewise.
2433 (i387_xsave_to_cache): Likewise.
2434 (x86_xcr0): Likewise.
2435
2436 * i387-fp.h (i387_cache_to_xsave): Likewise.
2437 (i387_xsave_to_cache): Likewise.
2438 (x86_xcr0): Likewise.
2439
2440 * linux-arm-low.c (target_regsets): Initialize nt_type to 0.
2441 * linux-crisv32-low.c (target_regsets): Likewise.
2442 * linux-m68k-low.c (target_regsets): Likewise.
2443 * linux-mips-low.c (target_regsets): Likewise.
2444 * linux-ppc-low.c (target_regsets): Likewise.
2445 * linux-s390-low.c (target_regsets): Likewise.
2446 * linux-sh-low.c (target_regsets): Likewise.
2447 * linux-sparc-low.c (target_regsets): Likewise.
2448 * linux-xtensa-low.c (target_regsets): Likewise.
2449
2450 * linux-low.c: Include <sys/uio.h>.
2451 (regsets_fetch_inferior_registers): Support nt_type.
2452 (regsets_store_inferior_registers): Likewise.
2453 (linux_process_qsupported): New.
2454 (linux_target_ops): Add linux_process_qsupported.
2455
2456 * linux-low.h (regset_info): Add nt_type.
2457 (linux_target_ops): Add process_qsupported.
2458
2459 * linux-x86-low.c: Include "i386-xstate.h", "elf/common.h"
2460 and <sys/uio.h>.
2461 (init_registers_i386_avx_linux): New.
2462 (init_registers_amd64_avx_linux): Likewise.
2463 (xmltarget_i386_linux_no_xml): Likewise.
2464 (xmltarget_amd64_linux_no_xml): Likewise.
2465 (PTRACE_GETREGSET): Likewise.
2466 (PTRACE_SETREGSET): Likewise.
2467 (x86_fill_xstateregset): Likewise.
2468 (x86_store_xstateregset): Likewise.
2469 (use_xml): Likewise.
2470 (x86_linux_update_xmltarget): Likewise.
2471 (x86_linux_process_qsupported): Likewise.
2472 (target_regsets): Add NT_X86_XSTATE entry and Initialize nt_type.
2473 (x86_arch_setup): Don't call init_registers_amd64_linux nor
2474 init_registers_i386_linux here. Call
2475 x86_linux_update_xmltarget.
2476 (the_low_target): Add x86_linux_process_qsupported.
2477
2478 * server.c (handle_query): Call target_process_qsupported.
2479
2480 * target.h (target_ops): Add process_qsupported.
2481 (target_process_qsupported): New.
2482
fc7238bb
PA
24832010-04-03 Pedro Alves <pedro@codesourcery.com>
2484
2485 * inferiors.c (add_thread): Set last_status kind to
2486 TARGET_WAITKIND_IGNORE.
2487 * linux-low.c (cancel_breakpoint): Remove unnecessary regcache
2488 fetch. Use ptid_of. Avoid unnecessary get_lwp_thread calls.
2489 (linux_wait_1): Move `thread' local definition to block that uses
2490 it. Don't NULL initialize `event_child'.
2491 (linux_resume_one_thread): Avoid unnecessary get_lwp_thread calls.
2492 Alway set the thread's last_status to TARGET_WAITKIND_IGNORE.
2493 * linux-x86-low.c (x86_breakpoint_at): Read raw memory.
2494
bdabb078
PA
24952010-04-01 Pedro Alves <pedro@codesourcery.com>
2496
2497 * linux-low.c (get_stop_pc): Don't adjust the PC if stopped with
2498 an extended waitstatus, or by a watchpoint.
2499 (cancel_breakpoints_callback): Don't cancel a breakpoint if the
2500 thread was stepping or has been stopped by a watchpoint.
2501
d3bbe7a0
PA
25022010-04-01 Pedro Alves <pedro@codesourcery.com>
2503
2504 * mem-break.c (struct raw_breakpoint): New field shlib_disabled.
2505 (set_gdb_breakpoint_at): If GDB is inserting a breakpoint on top
2506 of another, then delete the previous, and validate all
2507 breakpoints.
2508 (validate_inserted_breakpoint): New.
2509 (delete_disabled_breakpoints): New.
2510 (validate_breakpoints): New.
2511 (check_mem_read): Validate breakpoints before trusting their
2512 shadow. Delete disabled breakpoints.
2513 (check_mem_write): Validate breakpoints before trusting they
2514 should be inserted. Delete disabled breakpoints.
2515 * mem-break.h (validate_breakpoints):
2516 * server.c (handle_query): Validate breakpoints when we see a
2517 qSymbol query.
2518
8b07ae33
PA
25192010-04-01 Pedro Alves <pedro@codesourcery.com>
2520
2521 * linux-low.c (linux_wait_1): Avoid setting need_step_over is
2522 there's a GDB breakpoint at stop_pc. Always report a trap to GDB
2523 if we could tell there's a GDB breakpoint at stop_pc.
2524 (need_step_over_p): Don't do a step over if we find a GDB
2525 breakpoint at the resume PC.
2526
2527 * mem-break.c (struct raw_breakpoint): New.
2528 (enum bkpt_type): New type `gdb_breakpoint'.
2529 (struct breakpoint): Delete the `PC', `old_data' and `inserted'
2530 fields. New field `raw'.
2531 (find_raw_breakpoint_at): New.
2532 (set_raw_breakpoint_at): Handle refcounting. Create a raw
2533 breakpoint instead.
2534 (set_breakpoint_at): Adjust.
2535 (delete_raw_breakpoint): New.
2536 (release_breakpoint): New.
2537 (delete_breakpoint): Rename to...
2538 (delete_breakpoint_1): ... this. Add proc parameter. Use
2539 release_breakpoint. Return ENOENT.
2540 (delete_breakpoint): Reimplement.
2541 (find_breakpoint_at): Delete.
2542 (find_gdb_breakpoint_at): New.
2543 (delete_breakpoint_at): Delete.
2544 (set_gdb_breakpoint_at): New.
2545 (delete_gdb_breakpoint_at): New.
2546 (gdb_breakpoint_here): New.
2547 (set_reinsert_breakpoint): Use release_breakpoint.
2548 (uninsert_breakpoint): Rename to ...
2549 (uninsert_raw_breakpoint): ... this.
2550 (uninsert_breakpoints_at): Adjust to handle raw breakpoints.
2551 (reinsert_raw_breakpoint): Change parameter type to
2552 raw_breakpoint.
2553 (reinsert_breakpoints_at): Adjust to handle raw breakpoints
2554 instead.
2555 (check_breakpoints): Adjust. Use release_breakpoint.
2556 (breakpoint_here): Rewrite using find_raw_breakpoint_at.
2557 (breakpoint_inserted_here): Ditto.
2558 (check_mem_read): Adjust to iterate over raw breakpoints instead.
2559 Don't trust the breakpoint's shadow if it is not inserted.
2560 (check_mem_write): Adjust to iterate over raw breakpoints instead.
2561 (delete_all_breakpoints): Adjust.
2562 (free_all_breakpoints): Mark all breakpoints as uninserted, and
2563 use delete_breakpoint_1.
2564
2565 * mem-break.h (breakpoints_supported): Delete declaration.
2566 (set_gdb_breakpoint_at): Declare.
2567 (gdb_breakpoint_here): Declare.
2568 (delete_breakpoint_at): Delete.
2569 (delete_gdb_breakpoint_at): Declare.
2570
2571 * server.h (struct raw_breakpoint): Forward declare.
2572 (struct process_info): New field `raw_breakpoints'.
2573
2574 * linux-x86-low.c (x86_insert_point, x86_remote_point): Handle Z0
2575 breakpoints.
2576
6bf5e0ba
PA
25772010-03-24 Pedro Alves <pedro@codesourcery.com>
2578
2579 * linux-low.c (status_pending_p_callback): Fix comment.
2580 (linux_wait_for_event_1): Move most of the internal breakpoint
2581 handling from here...
2582 (linux_wait_1): ... to here.
2583 (count_events_callback): New.
2584 (select_singlestep_lwp_callback): New.
2585 (select_event_lwp_callback): New.
2586 (cancel_breakpoints_callback): New.
2587 (select_event_lwp): New.
2588 (linux_wait_1): Simplify internal breakpoint handling. Give equal
2589 priority to all LWPs that have had events that should be reported
2590 to the client. Cancel breakpoints when about to reporting the
2591 event to the client, not while stopping lwps. No longer cancel
2592 finished single-steps here.
2593 (cancel_finished_single_step): Delete.
2594 (cancel_finished_single_steps): Delete.
2595
414a389f
PA
25962010-03-24 Pedro Alves <pedro@codesourcery.com>
2597
2598 * mem-break.c (enum bkpt_type): New.
2599 (struct breakpoint): New field `type'.
2600 (set_breakpoint_at): Change return type to struct breakpoint
2601 pointer. Set type to `other_breakpoint' by default.
2602 (delete_breakpoint): Rewrite, supporting more than one breakpoint
2603 in the breakpoint list.
2604 (delete_reinsert_breakpoints): Only delete reinsert breakpoints.
2605 (reinsert_breakpoint): Rename to ...
2606 (reinsert_raw_breakpoint): ... this.
2607 (reinsert_breakpoints_at): Adjust.
2608 * mem-break.h (struct breakpoint): Declare.
2609 (set_breakpoint_at): Change return type to struct breakpoint
2610 pointer.
2611
2280c721
PA
26122010-03-24 Pedro Alves <pedro@codesourcery.com>
2613
2614 * server.c (handle_query): Assign, not compare.
2615
d50171e4
PA
26162010-03-24 Pedro Alves <pedro@codesourcery.com>
2617
2618 Teach linux gdbserver to step-over-breakpoints.
2619
2620 * linux-low.c (can_hardware_single_step): New.
2621 (supports_breakpoints): New.
2622 (handle_extended_wait): If stopping threads, read the stop pc of
2623 the new cloned LWP.
2624 (get_pc): New.
2625 (get_stop_pc): Add `lwp' parameter. Handle it. Bail out if the
2626 low target doesn't support retrieving the PC.
2627 (add_lwp): Set last_resume_kind to resume_continue.
2628 (linux_attach_lwp_1): Adjust comments. Always set stop_expected.
2629 (linux_attach): Don't clear stop_expected. Set the lwp's
2630 last_resume_kind to resume_stop.
2631 (linux_detach_one_lwp): Don't check for removed breakpoints.
2632 (check_removed_breakpoint): Delete.
2633 (status_pending_p): Rename to ...
2634 (status_pending_p_callback): ... this. Don't check for removed
2635 breakpoints. Don't consider threads that are stopped from GDB's
2636 perspective.
2637 (linux_wait_for_lwp): Always read the stop_pc here.
2638 (cancel_breakpoint): New.
2639 (step_over_bkpt): New global.
2640 (linux_wait_for_event_1): Implement stepping over breakpoints.
2641 (gdb_wants_lwp_stopped): New.
2642 (gdb_wants_all_stopped): New.
2643 (linux_wait_1): Tag threads as gdb-wants-stopped. Cancel finished
2644 single-step traps here. Store the thread's last reported target
2645 wait status.
2646 (send_sigstop): Don't clear stop_expected. Always set it,
2647 instead.
2648 (mark_lwp_dead): Remove reference to pending_is_breakpoint.
2649 (cancel_finished_single_step): New.
2650 (cancel_finished_single_steps): New.
2651 (wait_for_sigstop): Don't cancel finished single-step traps here.
2652 (linux_resume_one_lwp): Don't check for removed breakpoints.
2653 Don't set `step' on non-hardware step archs.
2654 (linux_set_resume_request): Ignore resume_stop requests if already
2655 stopping or stopped. Set the lwp's last_resume_kind.
2656 (resume_status_pending_p): Don't check for removed breakpoints.
2657 (need_step_over_p): New.
2658 (start_step_over): New.
2659 (finish_step_over): New.
2660 (linux_resume_one_thread): Always queue a sigstop for resume_stop
2661 requests. Clear the thread's last reported target waitstatus.
2662 Don't use the `suspended' flag. Don't consider pending breakpoints.
2663 (linux_resume): Start a step-over if necessary.
2664 (proceed_one_lwp): New.
2665 (proceed_all_lwps): New.
2666 (unstop_all_lwps): New.
2667 * linux-low.h (struct lwp_info): Rewrite comment for the
2668 `suspended' flag. Add the `stop_pc' field. Delete the
2669 `pending_stop_pc' field. Tweak the `stepping' flag's comment.
2670 Add `'last_resume_kind' and `need_step_over' fields.
2671 * inferiors.c (struct thread_info): Delete, moved elsewhere.
2672 * mem-break.c (struct breakpoint): Delete `reinserting' flag.
2673 Delete `breakpoint_to_reinsert' field. New flag `inserted'.
2674 (set_raw_breakpoint_at): New.
2675 (set_breakpoint_at): Rewrite to use it.
2676 (reinsert_breakpoint_handler): Delete.
2677 (set_reinsert_breakpoint): New.
2678 (reinsert_breakpoint_by_bp): Delete.
2679 (delete_reinsert_breakpoints): New.
2680 (uninsert_breakpoint): Rewrite.
2681 (uninsert_breakpoints_at): New.
2682 (reinsert_breakpoint): Rewrite.
2683 (reinsert_breakpoints_at): New.
2684 (check_breakpoints): Rewrite.
2685 (breakpoint_here): New.
2686 (breakpoint_inserted_here): New.
2687 (check_mem_read): Adjust.
2688 * mem-break.h (breakpoints_supported, breakpoint_here)
2689 (breakpoint_inserted_here, set_reinsert_breakpoint): Declare.
2690 (reinsert_breakpoint_by_bp): Delete declaration.
2691 (delete_reinsert_breakpoints): Declare.
2692 (reinsert_breakpoint): Delete declaration.
2693 (reinsert_breakpoints_at): Declare.
2694 (uninsert_breakpoint): Delete declaration.
2695 (uninsert_breakpoints_at): Declare.
2696 (check_breakpoints): Adjust prototype.
2697 * server.h: Adjust include order.
2698 (struct thread_info): Declare here. Add a `last_status' field.
2699
30ba68cb
MS
27002010-03-23 Michael Snyder <msnyder@vmware.com>
2701
2702 * server.c (crc32): New function.
2703 (handle_query): Add handling for 'qCRC:' request.
2704
b9a881c2
PA
27052010-03-23 Pedro Alves <pedro@codesourcery.com>
2706
2707 * linux-x86-low.c (x86_linux_prepare_to_resume): Clear DR6 if the
2708 lwp had been stopped by a watchpoint.
2709
e92d13d5
PA
27102010-03-16 Pedro Alves <pedro@codesourcery.com>
2711
2712 * server.h (internal_error): Declare.
2713 (gdb_assert, ASSERT_FUNCTION, gdb_assert_fail): Define.
2714 * utils.c (internal_error): New function.
2715
64daa791
AS
27162010-03-15 Andreas Schwab <schwab@redhat.com>
2717
2718 * configure.srv: Fix typo setting srv_regobj.
2719
f52cd8cd
PA
27202010-03-15 Pedro Alves <pedro@codesourcery.com>
2721
2722 * linux-low.c (fetch_register): Avoid passing a non string literal
2723 format to `error'.
2724 (usr_store_inferior_registers): Ditto.
2725
93ae6fdc
PA
27262010-03-14 Pedro Alves <pedro@codesourcery.com>
2727
2728 * linux-low.c (linux_write_memory): Bail out early if peeking
2729 memory failed.
2730
c3adc08c
PA
27312010-03-14 Pedro Alves <pedro@codesourcery.com>
2732
2733 * linux-low.h (struct lwp_info): New fields
2734 `stopped_by_watchpoint' and `stopped_data_address'.
2735 * linux-low.c (linux_wait_for_lwp): Check for watchpoint triggers
2736 here, and cache them in the lwp object.
2737 (wait_for_sigstop): Check stopped_by_watchpoint lwp field
2738 directly.
2739 (linux_resume_one_lwp): Clear the lwp's stopped_by_watchpoint
2740 field.
2741 (linux_stopped_by_watchpoint): Rewrite.
2742 (linux_stopped_data_address): Rewrite.
2743
bce522a2
PA
27442010-03-06 Simo Melenius <simo.melenius@iki.fi>
2745
2746 * linux-low.c (linux_wait_for_lwp): Fetch the regcache after
2747 switching the current inferior, not before.
2748
90884b2b
L
27492010-03-01 H.J. Lu <hongjiu.lu@intel.com>
2750
2751 * Makefile.in (clean): Replace reg-i386.c, reg-x86-64.c,
2752 reg-i386-linux.c and reg-x86-64-linux.c with i386.c, amd64.c,
2753 i386-linux.c and amd64-linux.c.
2754 (reg-i386.o): Removed.
2755 (reg-i386.c): Likewise.
2756 (reg-i386-linux.o): Likewise.
2757 (reg-i386-linux.c): Likewise.
2758 (reg-x86-64.o): Likewise.
2759 (reg-x86-64.c): Likewise.
2760 (reg-x86-64-linux.o): Likewise.
2761 (reg-x86-64-linux.c): Likewise.
2762 (i386.o): New.
2763 (i386.c): Likewise.
2764 (i386-linux.o): Likewise.
2765 (i386-linux.c): Likewise.
2766 (amd64.o): Likewise.
2767 (amd64.c): Likewise.
2768 (amd64-linux.o): Likewise.
2769 (amd64-linux.c): Likewise.
2770
2771 * configure.srv (srv_i386_regobj): New.
2772 (srv_i386_linux_regobj): Likewise.
2773 (srv_amd64_regobj): Likewise.
2774 (srv_amd64_linux_regobj): Likewise.
2775 (srv_i386_32bit_xmlfiles): Likewise.
2776 (srv_i386_64bit_xmlfiles): Likewise.
2777 (srv_i386_xmlfiles): Likewise.
2778 (srv_amd64_xmlfiles): Likewise.
2779 (srv_i386_linux_xmlfiles): Likewise.
2780 (srv_amd64_linux_xmlfiles): Likewise.
2781 (i[34567]86-*-cygwin*): Set srv_regobj to $srv_i386_regobj. Set
2782 srv_xmlfiles to $srv_i386_xmlfiles.
2783 (i[34567]86-*-mingw32ce*): Likewise.
2784 (i[34567]86-*-mingw*): Likewise.
2785 (i[34567]86-*-nto*): Likewise.
2786 (i[34567]86-*-linux*): Set srv_regobj to $srv_i386_linux_regobj
2787 and $srv_amd64_linux_regobj. Set srv_xmlfiles to
2788 $srv_i386_linux_xmlfiles and $srv_amd64_linux_xmlfiles.
2789 (x86_64-*-linux*): Likewise.
2790
2791 * linux-x86-low.c (init_registers_x86_64_linux): Removed.
2792 (init_registers_amd64_linux): New.
2793 (x86_arch_setup): Replace init_registers_x86_64_linux with
2794 init_registers_amd64_linux.
2795
193f13e6
MK
27962010-02-23 Maxim Kuvyrkov <maxim@codesourcery.com>
2797
2798 * configure.ac: Check for libdl. If it is not available link against
2799 static libthread_db.
2800 * configure: Regenerate.
2801
85d721b8
PA
28022010-02-22 Pedro Alves <pedro@codesourcery.com>
2803
2804 PR9605
2805
2806 * i386-low.c (i386_length_and_rw_bits): Throw a fatal error if
2807 handing a read watchpoint.
2808 (i386_low_insert_watchpoint): Read watchpoints aren't supported.
2809
6076632b
DE
28102010-02-12 Doug Evans <dje@google.com>
2811
2812 * linux-low.c (linux_supports_tracefork_flag): Document.
2813 (linux_look_up_symbols): Add comment.
2814
3327ccf7
L
28152010-02-03 H.J. Lu <hongjiu.lu@intel.com>
2816
2817 * regcache.c (supply_register): Clear regcache if buf is NULL.
2818
0718675c 28192010-02-02 Nicolas Roche <roche@sourceware.org>
3327ccf7 2820 Joel Brobecker <brobecker@adacore.com>
0718675c
JB
2821
2822 * inferiors.c (find_inferior): Add function documentation.
2823 (unloaded_dll): Handle the case where the unloaded dll has not
2824 been previously registered in the dll list.
2825
177321bd
DJ
28262010-02-01 Daniel Jacobowitz <dan@codesourcery.com>
2827
2828 * linux-arm-low.c (thumb_breakpoint_len): Delete.
2829 (thumb2_breakpoint): New.
2830 (arm_breakpoint_at): Check for Thumb-2 breakpoints.
2831
2b009048
DJ
28322010-01-29 Daniel Jacobowitz <dan@codesourcery.com>
2833
2834 * linux-low.c (get_stop_pc): Check for SIGTRAP.
2835 (linux_wait_for_event_1): Handle SIGILL and SIGSEGV as possible
2836 breakpoints.
2837
3be029c7
PA
28382010-01-21 Pedro Alves <pedro@codesourcery.com>
2839
2840 * linux-ppc-low.c (ppc_arch_setup): Adjust to regcache changes.
2841
18f5de3b
JK
28422010-01-21 Jan Kratochvil <jan.kratochvil@redhat.com>
2843
2844 * linux-s390-low.c (s390_collect_ptrace_register)
2845 (s390_supply_ptrace_register): Adjust it for the new regcache parameter.
2846
3743bb4f
DE
28472010-01-21 Doug Evans <dje@google.com>
2848
14ce3065
DE
2849 * linux-low.c (PTRACE_ARG3_TYPE): Change from long to void*.
2850 (PTRACE_ARG4_TYPE): New macro.
2851 (handle_extended_wait): Cast ptrace arg4 to PTRACE_ARG4_TYPE.
2852 (linux_wait_for_event_1, linux_resume_one_lwp): Ditto.
2853 (fetch_register): Cast to uintptr_t before casting to PTRACE_ARG3_TYPE.
2854 (usr_store_inferior_registers): Ditto.
2855 (linux_read_memory, linux_write_memory): Ditto.
2856 (linux_test_for_tracefork): Ditto.
2857
3743bb4f
DE
2858 * linux-arm-low.c: Remove redundant include of gdb_proc_service.h.
2859 Only include elf.h if gdb_proc_service.h didn't include linux/elf.h.
2860
8b315be5
PA
28612010-01-21 Pedro Alves <pedro@codesourcery.com>
2862
2863 * proc-service.c (ps_lgetregs): Don't refetch registers from the
2864 target.
2865
85492558
PA
28662010-01-21 Pedro Alves <pedro@codesourcery.com>
2867
2868 * spu-low.c (spu_fetch_registers, spu_store_registers): Change
2869 prototype to take a regcache. Adjust.
2870
442ea881
PA
28712010-01-20 Pedro Alves <pedro@codesourcery.com>
2872
2873 * regcache.h (struct thread_info): Forward declare.
2874 (struct regcache): New.
2875 (new_register_cache): Adjust prototype.
2876 (get_thread_regcache): Declare.
2877 (free_register_cache): Adjust prototype.
2878 (registers_to_string, registers_from_string): Ditto.
2879 (supply_register, supply_register_by_name, collect_register)
2880 (collect_register_as_string, collect_register_by_name): Ditto.
2881 * regcache.c (struct inferior_regcache_data): Delete.
2882 (get_regcache): Rename to ...
2883 (get_thread_regcache): ... this. Adjust. Switch inferior before
2884 fetching registers.
2885 (regcache_invalidate_one): Adjust.
2886 (regcache_invalidate): Fix prototype.
2887 (new_register_cache): Return the new register cache.
2888 (free_register_cache): Change prototype.
2889 (realloc_register_cache): Adjust.
2890 (registers_to_string): Change prototype to take a regcache. Adjust.
2891 (registers_from_string): Ditto.
2892 (register_data): Ditto.
2893 (supply_register): Ditto.
2894 (supply_register_by_name): Ditto.
2895 (collect_register): Ditto.
2896 (collect_register_as_string): Ditto.
2897 (collect_register_by_name): Ditto.
2898 * server.c (process_serial_event): Adjust.
2899 * linux-low.h (regset_fill_func, regset_store_func): Change
2900 prototype.
2901 (get_pc, set_pc, collect_ptrace_register, supply_ptrace_register):
2902 Change prototype.
2903 * linux-low.c (get_stop_pc): Adjust.
2904 (check_removed_breakpoint): Adjust.
2905 (linux_wait_for_event): Adjust.
2906 (linux_resume_one_lwp): Adjust.
2907 (fetch_register): Add regcache parameter. Adjust.
2908 (usr_store_inferior_registers): Ditto.
2909 (regsets_fetch_inferior_registers): Ditto.
2910 (regsets_store_inferior_registers): Ditto.
2911 (linux_fetch_registers, linux_store_registers): Ditto.
2912 * i387-fp.c (i387_cache_to_fsave): Change prototype to take a
2913 regcache. Adjust.
2914 (i387_fsave_to_cache, i387_cache_to_fxsave, i387_fxsave_to_cache): Ditto.
2915 * i387-fp.h (i387_cache_to_fsave, i387_fsave_to_cache): Change
2916 prototype to take a regcache.
2917 (i387_cache_to_fxsave, i387_fxsave_to_cache): Ditto.
2918 * remote-utils.c (convert_ascii_to_int, outreg)
2919 (prepare_resume_reply): Change prototype to take a regcache.
2920 Adjust.
2921 * target.h (struct target_ops) <fetch_registers, store_registers>:
2922 Change prototype to take a regcache.
2923 (fetch_inferior_registers, store_inferior_registers): Change
2924 prototype to take a regcache. Adjust.
2925 * proc-service.c (ps_lgetregs): Adjust.
2926 * linux-x86-low.c (x86_fill_gregset, x86_store_gregset)
2927 (x86_fill_fpregset, x86_store_fpregset, x86_fill_fpxregset)
2928 (x86_store_fpxregset, x86_get_pc, x86_set_pc): Change prototype to
2929 take a regcache. Adjust.
2930 * linux-arm-low.c (arm_fill_gregset, arm_store_gregset)
2931 (arm_fill_wmmxregset, arm_store_wmmxregset, arm_fill_vfpregset)
2932 (arm_store_vfpregset, arm_get_pc, arm_set_pc):
2933 (arm_breakpoint_at): Change prototype to take a regcache. Adjust.
2934 * linux-cris-low.c (cris_get_pc, cris_set_pc)
2935 (cris_cannot_fetch_register):
2936 (cris_breakpoint_at): Change prototype to take a regcache.
2937 Adjust.
2938 * linux-crisv32-low.c (cris_get_pc, cris_set_pc,
2939 cris_reinsert_addr, cris_write_data_breakpoint): Change prototype
2940 to take a regcache. Adjust.
2941 (cris_breakpoint_at, cris_insert_point, cris_remove_point):
2942 Adjust.
2943 * linux-m32r-low.c (m32r_get_pc, m32r_set_pc): Change prototype to
2944 take a regcache. Adjust.
2945 * linux-m68k-low.c (m68k_fill_gregset, m68k_store_gregset)
2946 (m68k_fill_fpregset, m68k_store_fpregset, m68k_get_pc,
2947 (m68k_set_pc): Change prototype to take a regcache. Adjust.
2948 * linux-mips-low.c (mips_get_pc):
2949 (mips_set_pc): Change prototype to take a regcache. Adjust.
2950 (mips_reinsert_addr): Adjust.
2951 (mips_collect_register): Change prototype to take a regcache.
2952 Adjust.
2953 (mips_supply_register):
2954 (mips_collect_register_32bit, mips_supply_register_32bit)
2955 (mips_fill_gregset, mips_store_gregset, mips_fill_fpregset)
2956 (mips_store_fpregset): Ditto.
2957 * linux-ppc-low.c (ppc_supply_ptrace_register, ppc_supply_ptrace_register):
2958 Ditto.
2959 (parse_spufs_run): Adjust.
2960 (ppc_get_pc, ppc_set_pc, ppc_fill_gregset, ppc_fill_vsxregset)
2961 (ppc_store_vsxregset, ppc_fill_vrregset, ppc_store_vrregset)
2962 (ppc_fill_evrregset, ppc_store_evrregset): Change prototype to
2963 take a regcache. Adjust.
2964 * linux-s390-low.c (s390_collect_ptrace_register)
2965 (s390_supply_ptrace_register, s390_fill_gregset, s390_get_pc)
2966 (s390_set_pc): Change prototype to take a regcache. Adjust.
2967 (s390_arch_setup): Adjust.
2968 * linux-sh-low.c (sh_get_pc, sh_breakpoint_at)
2969 (sh_fill_gregset): Change prototype to take a regcache. Adjust.
2970 * linux-sparc-low.c (sparc_fill_gregset_to_stack)
2971 (sparc_fill_gregset, sparc_store_gregset_from_stack)
2972 (sparc_store_gregset, sparc_get_pc): Change prototype to take a
2973 regcache. Adjust.
2974 (sparc_breakpoint_at): Adjust.
2975 * linux-xtensa-low.c (xtensa_fill_gregset):
2976 (xtensa_store_gregset):
2977 (xtensa_fill_xtregset, xtensa_store_xtregset, xtensa_get_pc)
2978 (xtensa_set_pc): Change prototype to take a regcache. Adjust.
2979 * nto-low.c (nto_fetch_registers, nto_store_registers): Change
2980 prototype to take a regcache. Adjust.
2981 * win32-arm-low.c (arm_fetch_inferior_register)
2982 (arm_store_inferior_register): Change prototype to take a
2983 regcache. Adjust.
2984 * win32-i386-low.c (i386_fetch_inferior_register)
2985 (i386_store_inferior_register): Change prototype to take a
2986 regcache. Adjust.
2987 * win32-low.c (child_fetch_inferior_registers)
2988 (child_store_inferior_registers): Change prototype to take a
2989 regcache. Adjust.
2990 (win32_wait): Adjust.
2991 (win32_fetch_inferior_registers): Change prototype to take a
2992 regcache. Adjust.
2993 (win32_store_inferior_registers): Adjust.
2994 * win32-low.h (struct win32_target_ops) <fetch_inferior_register,
2995 store_inferior_register>: Change prototype to take a regcache.
2996
60c3d7b0
DE
29972010-01-20 Doug Evans <dje@google.com>
2998
2999 * linux-low.c (linux_create_inferior): Wrap use of __SIGRTMIN in
3000 #ifdef.
3001 (linux_wait_for_event1, linux_init_signals): Ditto.
ec8ebe72 3002 (W_STOPCODE): Provide definition if missing.
60c3d7b0 3003
dc146f7c
VP
30042010-01-13 Vladimir Prus <vladimir@codesourcery.com>
3005
3006 * linux-low.c (linux_core_of_thread): New.
3007 (compare_ints, show_process, list_threads): New.
3008 (linux_qxfer_osdata): Report threads and cores.
3009 (linux_target_op): Register linux_core_of_thread.
3010 * remote-utils.c (prepare_resume_reply): Report the core.
3011 (buffer_xml_printf): Support %d specifier.
3012 * server.c (handle_threads_qxfer_proper, handle_threads_qxfer):
3013 New.
3014 (handle_query): Handle qXfer:threads. Announce availability
3015 thereof.
3016 * target.h (struct target_ops): New field core_of_thread.
3017
7803799a
UW
30182010-01-04 Ulrich Weigand <uweigand@de.ibm.com>
3019
3020 * Makefile.in (clean): Remove new generated files.
3021 (reg-s390.o, reg-s390.c): Remove rules.
3022 (reg-s390x.o, reg-s390x.c): Likewise.
3023 (s390-linux32.o, s390-linux32.c): Add rules.
3024 (s390-linux64.o, s390-linux64.c): Likewise.
3025 (s390x-linux64.o, s390x-linux64.c): Likewise.
3026 * configure.srv (s390*-*-linux*): Update srv_regobj and srv_xmlfiles.
3027 * linux-s390-low.c: Include <elf.h>.
3028 (HWCAP_S390_HIGH_GPRS): Define if undefined.
3029 (init_registers_s390): Remove prototype.
3030 (init_registers_s390x): Likewise.
3031 (init_registers_s390_linux32): Add prototype.
3032 (init_registers_s390_linux64): Likewise.
3033 (init_registers_s390x_linux64): Likewise.
3034 (s390_num_regs_3264): New define.
3035 (s390_regmap_3264): New global variable.
3036 (s390_cannot_fetch_register): Remove obsolete check.
3037 (s390_cannot_store_register): Likewise.
3038 (s390_collect_ptrace_register): Handle upper/lower register halves.
3039 (s390_supply_ptrace_register): Likewise.
3040 (s390_fill_gregset): Update to register number changes.
3041 (s390_get_hwcap): New routine.
3042 (s390_arch_setup): Detect 32-bit process running on 64-bit system.
3043 Install appropriate regmap and register set.
3044
6e7ffa39
JB
30452010-01-01 Joel Brobecker <brobecker@adacore.com>
3046
3047 * server.c (gdbserver_version): Update copyright year to 2010.
3048 * gdbreplay.c (gdbreplay_version): Likewise.
3049
957f3f49
DE
30502009-12-28 Doug Evans <dje@google.com>
3051
3052 * linux-low.c: Delete inclusion of ansidecl.h, elf/common.h,
3053 elf/external.h. Include <elf.h> instead but only if necessary.
3054
ca5c370d
PA
30552009-12-28 Pedro Alves <pedro@codesourcery.com>
3056
3057 * linux-low.c (linux_remove_process): Remove `detaching'
3058 parameter. Don't release/detach from thread_db here.
3059 (linux_kill): Release/detach from thread_db here, ...
3060 (linux_detach): ... and here, before actually detaching.
3061 (linux_wait_1): ... and here, when a process exits.
3062 * thread-db.c (any_thread_of): New.
3063 (thread_db_free): Switch the current inferior to a thread of the
3064 passed in process.
3065
4ee62156
DE
30662009-12-21 Doug Evans <dje@google.com>
3067
d90e6a88
DE
3068 * linux-x86-low.c: Delete outdated comment about Elf32_Phdr.
3069
c5f62d5f
DE
3070 * linux-low.c (kill_lwp): Use __NR_tkill instead of SYS_tkill.
3071 Move definition of tkill_failed to ifdef __NR_tkill to avoid gcc
3072 warning ifndef __NR_tkill. Move setting of errno there too.
3073 Delete unnecessary resetting of errno after syscall.
3074 Minor comment changes to match gdb/linux-nat.c:kill_lwp.
3075
10e86dd7
DE
3076 * configure.ac: Check for dladdr.
3077 * config.in: Regenerate.
3078 * configure: Regenerate.
3079 * thread-db.c (dladdr_to_soname): Only define ifdef HAVE_DLADDR.
3080 (try_thread_db_load): Update.
3081
4ee62156
DE
3082 * linux-low.c (my_waitpid): Delete unnecessary prototype.
3083
00f515da
DE
30842009-12-18 Doug Evans <dje@google.com>
3085
e9464885
DE
3086 * event-loop.c: Include unistd.h if it exists.
3087
07d4f67e
DE
3088 * linux-low.c (my_waitpid): Move definition away from being in
3089 between linux_tracefork_child/linux_test_for_tracefork.
3090
00f515da
DE
3091 * gdb_proc_service.h (psaddr_t): Fix type.
3092 * thread-db.c (thread_db_info.td_thr_tls_get_addr_p): Fix
3093 signature to match glibc.
3094
1de1badb
DE
30952009-12-16 Doug Evans <dje@google.com>
3096
3097 * linux-low.c (linux_read_memory): Fix argument to read.
3098
aeeb81d1
PA
30992009-11-26 Pedro Alves <pedro@codesourcery.com>
3100
3101 * win32-low.c (get_child_debug_event): On EXIT_THREAD_DEBUG_EVENT
3102 events, don't leave current_inferior pointing at null.
3103
10357975
PA
31042009-11-26 Pedro Alves <pedro@codesourcery.com>
3105
3106 * win32-low.c (LOG): Delete.
3107 (OUTMSG): Output to stderr.
3108 (OUTMSG2): Conditionalize on `debug_threads' variable, instead of
3109 on compile time LOG macro.
3110 (win32_wait): Fix debug output.
3111
cf6e3471
PA
31122009-11-26 Pedro Alves <pedro@codesourcery.com>
3113
3114 * win32-low.c (win32_add_one_solib): If the dll name is
3115 "ntdll.dll", prepend the system directory to the dll path.
3116
0c85e18e
MK
31172009-11-17 Daniel Jacobowitz <dan@codesourcery.com>
3118
3119 * m68k-tdep.c (m68k_gdbarch_init): Reuse previous initialization.
3120
9ac544ce 31212009-11-17 Nathan Sidwell <nathan@codesourcery.com>
889bf7c5 3122 Vladimir Prus <vladimir@codesourcery.com>
9ac544ce
MK
3123
3124 * Makefile.in (reg-cf.o, reg-cf.c): New targets.
3125 * configure.ac: Check for __mcoldfire__ and set
3126 gdb_cv_m68k_is_coldfire.
3127 * configure.srv: Use gdb_cv_m68k_is_coldfire to select between
3128 reg-cf.o and reg-m68k.o.
3129 * configure: Regenerated.
3130
fd7dd3e6
PA
31312009-11-16 Pedro Alves <pedro@codesourcery.com>
3132
3133 * linux-low.c (linux_remove_process): Add `detaching' parameter.
3134 Pass it to thread_db_free.
3135 (linux_kill, linux_detach, linux_wait_1): Adjust to pass the
3136 proper `detaching' argument to linux_remove_process.
3137 * linux-low.h (thread_db_free): Add `detaching' parameter.
3138 * thread-db.c (thread_db_init): Pass false as `detaching' argument
3139 to thread_db_free.
3140 (thread_db_free): Add `detaching' parameter. Only
3141 call td_ta_clear_event if detaching from process.
3142
75aa492e
MK
31432009-11-12 Maxim Kuvyrkov <maxim@codesourcery.com>
3144
3145 * thread-db.c (thread_db_free): Fix typo.
3146
21e1bee4
PP
31472009-11-11 Paul Pluzhnikov <ppluzhnikov@google.com>
3148
3149 PR gdb/10838
3150 * thread-db.c (thread_db_free): Call td_ta_clear_event.
3151
8838b45e
NS
31522009-11-03 Nathan Sidwell <nathan@codesourcery.com>
3153
3154 * configure.ac (i[34567]86-*): Check if we're targetting x86-64
3155 with an i686 compiler.
3156 * configure.srv (i[34567]86-*-linux*): Pull in x86-64 handling if
3157 needed.
3158 * configure: Rebuilt.
3159
8a35fb51
SL
31602009-10-29 Sandra Loosemore <sandra@codesourcery.com>
3161
3162 PR gdb/10783
3163
3164 * server.c (handle_search_memory_1): Correct read_addr initialization
3165 in loop for searching subsequent chunks.
3166
96f15937
PP
31672009-10-29 Paul Pluzhnikov <ppluzhnikov@google.com>
3168
3169 * configure.ac: New --with-libthread-db option.
3170 * thread-db.c: Allow direct dependence on libthread_db.
3171 (thread_db_free): Adjust.
3172 * config.in: Regenerate.
3173 * configure: Likewise.
889bf7c5 3174
5f7d1694
PP
31752009-10-28 Paul Pluzhnikov <ppluzhnikov@google.com>
3176
3177 PR gdb/10757
3178 * thread-db.c (attach_thread): New function.
3179 (maybe_attach_thread): Return success/failure.
3180 (find_new_threads_callback): Adjust.
889bf7c5
PA
3181 (thread_db_find_new_threads): Loop until no new threads.
3182
88e3b899
PA
31832009-10-13 Pedro Alves <pedro@codesourcery.com>
3184
3185 * proc-service.c (ps_lgetregs): Formatting.
3186
cdbfd419
PP
31872009-10-08 Paul Pluzhnikov <ppluzhnikov@google.com>
3188
3189 * acinclude.m4: (SRV_CHECK_THREAD_DB, SRV_CHECK_TLS_GET_ADDR): Remove.
3190 * configure.ac: Adjust.
3191 * linux-low.h (struct process_info_private): Move members to struct
3192 thread_db.
3193 (thread_db_free, thread_db_handle_monitor_command): New prototype.
3194 * linux-low.c (linux_remove_process): Adjust.
3195 (linux_wait_for_event_1, linux_look_up_symbols): Likewise.
3196 * server.c (handle_query): Move code ...
3197 (handle_monitor_command): ... here. New function.
3198 * target.h (struct target_ops): New member.
3199 * thread-db.c (struct thread_db): New.
3200 (libthread_db_search_path): New variable.
3201 (thread_db_create_event, thread_db_enable_reporting)
3202 (find_one_thread, maybe_attach_thread, find_new_threads_callback)
3203 (thread_db_find_new_threads, (thread_db_get_tls_address): Adjust.
3204 (try_thread_db_load_1, dladdr_to_soname): New functions.
3205 (try_thread_db_load, thread_db_load_search): New functions.
3206 (thread_db_init): Search for libthread_db.
3207 (thread_db_free): New function.
3208 (thread_db_handle_monitor_command): Likewise.
3209 * config.in: Regenerate.
3210 * configure: Regenerate.
889bf7c5 3211
4168d2d6
UW
32122009-09-27 Ulrich Weigand <uweigand@de.ibm.com>
3213
3214 * spu-low.c (spu_kill): Wait for inferior to terminate.
3215 Call clear_inferiors.
3216 (spu_detach): Call clear_inferiors.
3217
81ecdfbb
RW
32182009-08-22 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3219
3220 * aclocal.m4: Regenerate.
3221 * config.in: Likewise.
3222 * configure: Likewise.
3223
0b9ff2c0
UW
32242009-07-31 Ulrich Weigand <uweigand@de.ibm.com>
3225
3226 * linux-ppc-low.c (INSTR_SC, NR_spu_run): Define.
3227 (parse_spufs_run): New function.
3228 (ppc_get_pc, ppc_set_pc): Detect and handle SPU PC.
3229 (ppc_breakpoint_at): Handle SPU breakpoints.
3230
efcbbd14
UW
32312009-07-31 Ulrich Weigand <uweigand@de.ibm.com>
3232
3233 * linux-low.c: Include <sys/stat.h> and <sys/vfs.h>.
3234 (SPUFS_MAGIC): Define.
3235 (spu_enumerate_spu_ids): New function.
3236 (linux_qxfer_spu): New function.
3237 (linux_target_ops): Install linux_qxfer_spu.
3238
f4d9bade
UW
32392009-07-31 Ulrich Weigand <uweigand@de.ibm.com>
3240
3241 * configure.srv (powerpc*-*-linux*): Add powerpc-cell32l.o
3242 and powerpc-cell64l.o to srv_regobj. Add rs6000/powerpc-cell32l.xml
3243 and rs6000/powerpc-cell64l.xml to srv_xmlfiles.
3244 * Makefile.in (powerpc-cell32l.o, powerpc-cell32l.c): New rules.
3245 (powerpc-cell64l.o, powerpc-cell64l.c): Likewise.
3246 (clean): Handle powerpc-cell32l.c and powerpc-cell64l.c.
3247 * linux-ppc-low.c (PPC_FEATURE_CELL): Define.
3248 (init_registers_powerpc_cell32l): Add prototype.
3249 (init_registers_powerpc_cell64l): Likewise.
3250 (ppc_arch_setup): Detect Cell/B.E. architecture.
3251
96e946ca
RW
32522009-07-30 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3253
3254 * Makefile.in (datarootdir): New variable.
3255
58d6951d
DJ
32562009-07-28 Daniel Jacobowitz <dan@codesourcery.com>
3257
3258 * linux-low.c (linux_write_memory): Update debugging output.
3259 * Makefile.in (clean): Add new descriptions.
3260 (arm-with-vfpv2.o, arm-with-vfpv2.c, arm-with-vfpv3.o)
3261 (arm-with-vfpv3.c, arm-with-neon.o, arm-with-neon.c): New rules.
3262 * configure.srv: Add new files for arm*-*-linux*.
3263 * linux-arm-low.c: Add new declarations.
3264 (PTRACE_GETVFPREGS, PTRACE_SETVFPREGS): Define if undefined.
3265 (arm_hwcap, HWCAP_VFP, HWCAP_IWMMXT, HWCAP_NEON, HWCAP_VFPv3)
3266 (HWCAP_VFPv3D16): New.
3267 (arm_fill_wmmxregset, arm_store_wmmxregset): Check HWCAP_IWMMXT
3268 instead of __IWMMXT__.
3269 (arm_fill_vfpregset, arm_store_vfpregset, arm_get_hwcap)
3270 (arm_arch_setup): New.
3271 (target_regsets): Remove #ifdef. Add VFP regset.
3272 (the_low_target): Use arm_arch_setup.
3273
12b42a12
DJ
32742009-07-28 Daniel Jacobowitz <dan@codesourcery.com>
3275
3276 * linux-low.c (linux_kill_one_lwp): Adjust kernel workaround to skip
3277 the main thread again.
3278
ac8c974e
AR
32792009-07-06 Aleksandar Ristovski <aristovski@qnx.com>
3280
3281 Adding Neutrino gdbserver.
3282 * configure: Regenerated.
3283 * configure.ac: Add case for srv_qnx and set LIBS accordingly.
3284 * configure.srv (i[34567]86-*-nto*): New target.
3285 * nto-low.c, nto-low.h, nto-x86-low.c: New files.
3286 * remote-utils.c [__QNX__]: Include sys/iomgr.h
3287 (nto_comctrl) [__QNX__]: New function.
3288 (enable_async_io, disable_async_io) [__QNX__]: Call nto_comctrl.
3289
4424e0c3 32902009-07-05 Danny Backx <dannybackx@users.sourceforge.net>
7437790a
PA
3291
3292 * configure.srv (i[34567]86-*-mingw32ce*): Add i386-low.o to
3293 srv_tgtobj.
3294
912cf4ba
PA
32952009-07-04 Danny Backx <dannybackx@users.sourceforge.net>
3296 Pedro Alves <pedro@codesourcery.com>
3297
3298 * win32-i386-low.c (i386_get_thread_context): Handle systems that
3299 don't support CONTEXT_EXTENDED_REGISTERS.
3300 (i386_win32_breakpoint, i386_win32_breakpoint_len): New.
3301 (the_low_target): Install them.
3302 * win32-low.c (get_child_debug_event): Handle WaitForDebugEvent
3303 failing with ERROR_PIPE_NOT_CONNECTED.
3304
aa5ca48f
DE
33052009-06-30 Doug Evans <dje@google.com>
3306 Pierre Muller <muller@ics.u-strasbg.fr>
3307
3308 Add h/w watchpoint support to x86-linux, win32-i386.
3309 * Makefile.in (SFILES): Add i386-low.c
3310 (i386_low_h): Define.
3311 (i386-low.o): Add dependencies.
3312 (linux-x86-low.o): Add i386-low.h dependency.
3313 (win32-i386-low.o): Ditto.
3314 * i386-low.c: New file.
3315 * i386-low.h: New file.
3316 * configure.srv (i[34567]86-*-cygwin*): Add i386-low.o to srv_tgtobj.
3317 (i[34567]86-*-linux*, i[34567]86-*-mingw*, x86_64-*-linux*): Ditto.
3318 * linux-low.c (linux_add_process): Initialize arch_private.
3319 (linux_remove_process): Free arch_private.
3320 (add_lwp): Initialize arch_private.
3321 (delete_lwp): Free arch_private.
3322 (linux_resume_one_lwp): Call the_low_target.prepare_to_resume if
3323 provided.
3324 * linux-low.h (process_info_private): New member arch_private.
3325 (lwp_info): New member arch_private.
3326 (linux_target_ops): New members new_process, new_thread,
3327 prepare_to_resume.
3328 (ptid_of): New macro.
3329 * linux-x86-low.c: Include stddef.h, i386-low.h.
3330 (arch_process_info): New struct.
3331 (arch_lwp_info): New struct.
3332 (x86_linux_dr_get, x86_linux_dr_set): New functions.
3333 (i386_dr_low_set_addr, i386_dr_low_set_control): New functions.
3334 (i386_dr_low_get_status): New function.
3335 (x86_insert_point, x86_remove_point): New functions.
3336 (x86_stopped_by_watchpoint): New function.
3337 (x86_stopped_data_address): New function.
3338 (x86_linux_new_process, x86_linux_new_thread): New functions.
3339 (x86_linux_prepare_to_resume): New function.
3340 (the_low_target): Add entries for insert_point, remove_point,
3341 stopped_by_watchpoint, stopped_data_address, new_process, new_thread,
3342 prepare_to_resume.
3343 * server.c (debug_hw_points): New global.
3344 (monitor_show_help): Document set debug-hw-points.
3345 (handle_query): Process "set debug-hw-points".
3346 * server.h (debug_hw_points): Declare.
3347 (paddress): Declare.
3348 * utils.c (NUMCELLS, CELLSIZE): New macros.
3349 (get_sell, xsnprintf, paddress): New functions.
3350 * win32-arm-low.c (the_low_target): Add entries for insert_point,
3351 remove_point, stopped_by_watchpoint, stopped_data_address.
3352 * win32-i386-low.c: Include i386-low.h.
3353 (debug_reg_state): Replaces dr.
3354 (i386_dr_low_set_addr, i386_dr_low_set_control): New functions.
3355 (i386_dr_low_get_status): New function.
3356 (i386_insert_point, i386_remove_point): New functions.
3357 (i386_stopped_by_watchpoint): New function.
3358 (i386_stopped_data_address): New function.
3359 (i386_initial_stuff): Update.
3360 (get_thread_context,set_thread_context,i386_thread_added): Update.
3361 (the_low_target): Add entries for insert_point,
3362 remove_point, stopped_by_watchpoint, stopped_data_address.
3363 * win32-low.c (win32_insert_watchpoint): New function.
3364 (win32_remove_watchpoint): New function.
3365 (win32_stopped_by_watchpoint): New function.
3366 (win32_stopped_data_address): New function.
3367 (win32_target_ops): Add entries for insert_watchpoint,
3368 remove_watchpoint, stopped_by_watchpoint, stopped_data_address.
3369 * win32-low.h (win32_target_ops): New members insert_point,
3370 remove_point, stopped_by_watchpoint, stopped_data_address.
3371
d993e290
PA
33722009-06-25 Pedro Alves <pedro@codesourcery.com>
3373
3374 * server.c (process_serial_event): Re-return unsupported, not
3375 error, if the type isn't recognized. Re-allow supporting only
3376 insert or remove packets. Also call require_running for
3377 breakpoints. Add missing break statement to default case. Tidy.
3378 * target.h (struct target_ops): Rename insert_watchpoint to
3379 insert_point, and remove_watchpoint to remove_point.
3380
3381 * linux-low.h (struct linux_target_ops): Likewise.
3382 * linux-low.c (linux_insert_watchpoint): Rename to ...
3383 (linux_insert_point): ... this. Adjust.
3384 (linux_remove_watchpoint): Rename to ...
3385 (linux_remove_point): ... this. Adjust.
3386 (linux_target_ops): Adjust.
3387 * linux-crisv32-low.c (cris_insert_watchpoint): Rename to ...
3388 (cris_insert_point): ... this.
3389 (cris_remove_watchpoint): Rename to ...
3390 (cris_remove_point): ... this.
3391 (the_low_target): Adjust.
3392
0f54c268
PM
33932009-06-24 Pierre Muller <muller@ics.u-strasbg.fr>
3394
3395 * server.c (handle_v_kill): Pass signal_pid to
3396 kill_inferior if multi_process is zero.
3397
c6314022
AR
33982009-06-23 Aleksandar Ristovski <aristovski@qnx.com>
3399
3400 * server.c (process_serial_event): Add support for Z0 and Z1 packet.
3401 * target.h (target_ops): Comment for *_watchpoint to make it clear
3402 the functions can get types '0' and '1'.
3403
4463ce24
AR
34042009-06-22 Aleksandar Ristovski <aristovski@qnx.com>
3405
3406 * linux-low.c (usr_fetch_inferior_registers): Remove check for regno 0.
3407 * proc-service.c (ps_lgetregs): Pass -1 to fetch all registers.
3408 * regcache.c (get_regcache): Likewise.
3409 * spu-low.c (spu_fetch_registers): Remove 0 to -1 conversion.
3410 * win32-low.c (child_fetch_inferior_registers): Remove check for
3411 regno 0.
3412
cf8fd78b
PA
34132009-06-19 Aleksandar Ristovski <aristovski@qnx.com>
3414 Pedro Alves <pedro@codesourcery.com>
3415
3416 * target.h (struct target_ops) <supports_multi_process>: New
3417 callback.
3418 (target_supports_multi_process): New.
3419 * server.c (handle_query): Even if GDB reports support, only
3420 enable multi-process if the target also supports it. Report
3421 multi-process support only if the target backend supports it.
3422 * linux-low.c (linux_supports_multi_process): New function.
3423 (linux_target_ops): Install it as target_supports_multi_process
3424 callback.
3425
47c0c975
DE
34262009-05-24 Doug Evans <dje@google.com>
3427
e09875d4
DE
3428 Global renaming of find_thread_pid to find_thread_ptid.
3429 * server.h (find_thread_ptid): Renamed from find_thread_pid.
3430 * inferiors.c (find_thread_ptid): Renamed from find_thread_pid.
3431 All callers updated.
3432
e27d73f6
DE
3433 * linux-low.c (handle_extended_wait): Use linux_resume_one_lwp
3434 to resume the newly created thread, don't call ptrace (PTRACE_CONT)
3435 directly.
3436
47c0c975
DE
3437 * linux-low.c (get_stop_pc): Print pc if debug_threads.
3438 (check_removed_breakpoint, linux_wait_for_lwp): Ditto.
3439 (linux_resume_one_lwp): Ditto.
3440
2acc282a
DE
34412009-05-23 Doug Evans <dje@google.com>
3442
3443 * linux-low.c (linux_resume_one_lwp): Change type of first arg
3444 from struct inferior_list_entry * to struct lwp_info *.
3445 All callers updated.
3446
9f1036c1
DE
34472009-05-13 Doug Evans <dje@google.com>
3448
3449 * linux-x86-low.c: Don't include assert.h.
3450 (x86_siginfo_fixup): Use fatal, not assert.
3451 (x86_arch_setup): Fix comment.
3452
d0722149
DE
34532009-05-12 Doug Evans <dje@google.com>
3454
3455 Biarch support for i386/amd64 gdbserver.
3456 * Makefile.in (SFILES): Remove linux-i386-low.c, linux-x86-64-low.c.
3457 Add linux-x86-low.c.
3458 (linux-i386-low.o, linux-x86-64-low.o): Delete.
3459 (linux-x86-low.o): Add.
3460 * linux-x86-64-low.c: Delete.
3461 * linux-i386-low.c: Delete.
3462 * linux-x86-low.c: New file.
3463 * configure.srv (i?86-linux srv_tgtobj): Replace linux-i386-low.o with
3464 linux-x86-low.o.
3465 (x86_64-linux srv_tgtobj): Replace linux-x86-64-low.o with
3466 linux-x86-low.o.
3467 (x86_64-linux srv_regobj): Add reg-i386-linux.o.
3468 * linux-low.c: Include ansidecl.h, elf/common.h, elf/external.h.
3469 (linux_child_pid_to_exec_file): New function.
3470 (elf_64_header_p, elf_64_file_p): New functions.
3471 (siginfo_fixup): New function.
3472 (linux_xfer_siginfo): New local inf_siginfo. Call siginfo_fixup to
3473 give target a chance to convert layout.
3474 * linux-low.h (linux_target_ops): New member siginfo_fixup.
3475 (linux_child_pid_to_exec_file, elf_64_file_p): Declare.
3476
fdeb2a12
DE
34772009-05-07 Doug Evans <dje@google.com>
3478
3479 * linux-low.c (regsets_fetch_inferior_registers): Fix memory leak.
3480 (regsets_store_inferior_registers): Ditto.
3481
a6dbe5df
PA
34822009-05-06 Pedro Alves <pedro@codesourcery.com>
3483
3484 PR server/10048
3485
3486 * linux-low.c (must_set_ptrace_flags): Delete.
3487 (linux_create_inferior): Set `lwp->must_set_ptrace_flags' instead
3488 of the global.
3489 (linux_attach_lwp_1): Don't set PTRACE_SETOPTIONS here. Set
3490 `lwp->must_set_ptrace_flags' instead.
ba42693b 3491 (linux_wait_for_event_1): Set ptrace options here.
a6dbe5df
PA
3492 (linux_wait_1): ... not here.
3493
5091eb23
DE
34942009-04-30 Doug Evans <dje@google.com>
3495
9f767825
DE
3496 * inferiors.c (started_inferior_callback): New function.
3497 (attached_inferior_callback): New function.
3498 (have_started_inferiors_p, have_attached_inferiors_p): New functions.
3499 * server.c (print_started_pid, print_attached_pid): New functions.
3500 (detach_or_kill_for_exit): New function.
3501 (main): Call it instead of for_each_inferior (kill_inferior_callback).
3502 * server.h (have_started_inferiors_p): Declare.
3503 (have_attached_inferiors_p): Declare.
3504
5091eb23
DE
3505 * inferiors.c (remove_process): Fix memory leak, free process.
3506 * linux-low.c (linux_remove_process): New function.
3507 (linux_kill): Call it instead of remove_process.
3508 (linux_detach, linux_wait_1): Ditto.
3509
155c8968
PA
35102009-04-19 Danny Backx <dannybackx@users.sourceforge.net>
3511
3512 * configure.srv: Add x86 Windows CE target.
3513
7fe519cb
UW
35142009-04-03 Ulrich Weigand <uweigand@de.ibm.com>
3515
3516 * inferiors.c (get_thread_process): Make global.
3517 * server.h (get_thread_process): Add prototype.
3518 * thread-db.c (find_one_thread): Use get_thread_process
3519 instead of current_process.
3520 (thread_db_get_tls_address): Do not crash if called when
3521 thread layer is not yet initialized.
3522
5472f405
UW
35232009-04-03 Ulrich Weigand <uweigand@de.ibm.com>
3524
3525 * remote-utils.c (prepare_resume_reply): Null-terminate packet.
3526 * spu-low.c (current_tid): Rename to ...
3527 (current_ptid): ... this.
3528 (fetch_ppc_register, fetch_ppc_memory, store_ppc_memory,
3529 spu_proc_xfer_spu, spu_resume, spu_request_interrupt): Use
3530 ptid_get_lwp (current_ptid) instead of current_tid.
3531 (spu_kill, spu_detach, spu_join, spu_wait): Use pid argument
3532 instead of current_tid. Use find_process_pid to verify pid
3533 argument is valid. Pass proper argument to remove_process.
3534 (spu_thread_alive): Compare current_ptid instead of current_tid.
3535 (spu_resume): Likewise.
3536
55ac2b99
PA
35372009-04-02 Pedro Alves <pedro@codesourcery.com>
3538
3539 * linux-low.c (usr_store_inferior_registers): Declare local `pid'
3540 variable.
3541
95954743
PA
35422009-04-01 Pedro Alves <pedro@codesourcery.com>
3543
3544 Implement the multiprocess extensions, and add linux multiprocess
3545 support.
3546
3547 * server.h (ULONGEST): Declare.
3548 (struct ptid, ptid_t): New.
3549 (minus_one_ptid, null_ptid): Declare.
3550 (ptid_build, pid_to_ptid, ptid_get_pid, ptid_get_lwp)
3551 (ptid_get_tid, ptid_equal, ptid_is_pid): Declare.
3552 (struct inferior_list_entry): Change `id' type from unsigned from
3553 to ptid_t.
3554 (struct sym_cache, struct breakpoint, struct
3555 process_info_private): Forward declare.
3556 (struct process_info): Declare.
3557 (current_process): Declare.
3558 (all_processes): Declare.
3559 (initialize_inferiors): Declare.
3560 (add_thread): Adjust to use ptid_t.
3561 (thread_id_to_gdb_id, thread_to_gdb_id, gdb_id_to_thread_id): Ditto.
3562 (add_process, remove_process, find_thread_pid): Declare.
3563 (find_inferior_id): Adjust to use ptid_t.
3564 (cont_thread, general_thread, step_thread): Change type to ptid_t.
3565 (multi_process): Declare.
3566 (push_event): Adjust to use ptid_t.
3567 (read_ptid, write_ptid): Declare.
3568 (prepare_resume_reply): Adjust to use ptid_t.
3569 (clear_symbol_cache): Declare.
3570 * inferiors.c (all_processes): New.
3571 (null_ptid, minus_one_ptid): New.
3572 (ptid_build, pid_to_ptid, ptid_get_pid, ptid_get_lwp)
3573 (ptid_get_tid, ptid_equal, ptid_is_pid): New.
3574 (add_thread): Change unsigned long to ptid. Remove gdb_id
3575 parameter. Adjust.
3576 (thread_id_to_gdb_id, thread_to_gdb_id): Change unsigned long to ptid.
3577 (gdb_id_to_thread): Rename to ...
3578 (find_thread_pid): ... this. Change unsigned long to ptid.
3579 (gdb_id_to_thread_id, find_inferior_id): Change unsigned long to ptid.
3580 (loaded_dll, pull_pid_from_list): Adjust.
3581 (add_process, remove_process, find_process_pid)
3582 (get_thread_process, current_process, initialize_inferiors): New.
3583 * target.h (struct thread_resume) <thread>: Change type to ptid_t.
3584 (struct target_waitstatus) <related_pid>: Ditto.
3585 (struct target_ops) <kill, detach>: Add `pid' argument. Change
3586 return type to int.
3587 (struct target_ops) <join>: Add `pid' argument.
3588 (struct target_ops) <thread_alive>: Change pid's type to ptid_t.
3589 (struct target_ops) <wait>: Add `ptid' field. Change return type
3590 to ptid.
3591 (kill_inferior, detach_inferior, join_inferior): Add `pid' argument.
3592 (mywait): Add `ptid' argument. Change return type to ptid_t.
3593 (target_pid_to_str): Declare.
3594 * target.c (set_desired_inferior): Adjust to use ptids.
3595 (mywait): Add new `ptid' argument. Adjust.
3596 (target_pid_to_str): New.
3597 * mem-break.h (free_all_breakpoints): Declare.
3598 * mem-break.c (breakpoints): Delelete.
3599 (set_breakpoint_at, delete_breakpoint, find_breakpoint_at)
3600 (check_mem_read, check_mem_write, delete_all_breakpoints): Adjust
3601 to use per-process breakpoint list.
3602 (free_all_breakpoints): New.
3603 * remote-utils.c (struct sym_cache) <name>: Drop `const'.
3604 (symbol_cache, all_symbols_looked_up): Delete.
3605 (hexchars): New.
3606 (ishex, unpack_varlen_hex, write_ptid, hex_or_minus_one,
3607 read_ptid): New.
3608 (prepare_resume_reply): Change ptid argument's type from unsigned
3609 long to ptid_t. Adjust. Implement W;process and X;process.
3610 (free_sym_cache, clear_symbol_cache): New.
3611 (look_up_one_symbol): Adjust to per-process symbol cache. *
3612 * server.c (cont_thread, general_thread, step_thread): Change type
3613 to ptid_t.
3614 (attached): Delete.
3615 (multi_process): New.
3616 (last_ptid): Change type to ptid_t.
3617 (struct vstop_notif) <ptid>: Change type to ptid_t.
3618 (queue_stop_reply, push_event): Change `ptid' argument's type to
3619 ptid_t.
3620 (discard_queued_stop_replies): Add `pid' argument.
3621 (start_inferior): Adjust to use ptids. Adjust to mywait interface
3622 changes. Don't reference the `attached' global.
3623 (attach_inferior): Adjust to mywait interface changes.
3624 (handle_query): Adjust to use ptids. Parse GDB's qSupported
3625 features. Handle and report "multiprocess+". Handle
3626 "qAttached:PID".
3627 (handle_v_cont): Adjust to use ptids. Adjust to mywait interface
3628 changes.
3629 (handle_v_kill): New.
3630 (handle_v_stopped): Adjust to use target_pid_to_str.
3631 (handle_v_requests): Allow multiple attaches and runs when
3632 multiprocess extensions are in effect. Handle "vKill".
3633 (myresume): Adjust to use ptids.
3634 (queue_stop_reply_callback): Add `arg' parameter. Handle it.
3635 (handle_status): Adjust to discard_queued_stop_replies interface
3636 change.
3637 (first_thread_of, kill_inferior_callback)
3638 (detach_or_kill_inferior_callback, join_inferiors_callback): New.
3639 (main): Call initialize_inferiors. Adjust to use ptids, killing
3640 and detaching from all inferiors. Handle multiprocess packet
3641 variants.
3642 * linux-low.h: Include gdb_proc_service.h.
3643 (struct process_info_private): New.
3644 (struct linux_target_ops) <pid_of>: Use ptid_get_pid.
3645 <lwpid_of>: Use ptid_get_lwp.
3646 (get_lwp_thread): Adjust.
3647 (struct lwp_info): Add `dead' member.
3648 (find_lwp_pid): Declare.
3649 * linux-low.c (thread_db_active): Delete.
3650 (new_inferior): Adjust comment.
3651 (inferior_pid): Delete.
3652 (linux_add_process): New.
3653 (handle_extended_wait): Adjust.
3654 (add_lwp): Change unsigned long to ptid.
3655 (linux_create_inferior): Add process to processes table. Adjust
3656 to use ptids. Don't set new_inferior here.
3657 (linux_attach_lwp): Rename to ...
3658 (linux_attach_lwp_1): ... this. Add `initial' argument. Handle
3659 it. Adjust to use ptids.
3660 (linux_attach_lwp): New.
3661 (linux_attach): Add process to processes table. Don't set
3662 new_inferior here.
3663 (struct counter): New.
3664 (second_thread_of_pid_p, last_thread_of_process_p): New.
3665 (linux_kill_one_lwp): Add `args' parameter. Handle it. Adjust to
3666 multiple processes.
3667 (linux_kill): Add `pid' argument. Handle it. Adjust to multiple
3668 processes. Remove process from process table.
3669 (linux_detach_one_lwp): Add `args' parameter. Handle it. Adjust
3670 to multiple processes.
3671 (any_thread_of): New.
3672 (linux_detach): Add `pid' argument, and handle it. Remove process
3673 from processes table.
3674 (linux_join): Add `pid' argument. Handle it.
3675 (linux_thread_alive): Change unsighed long argument to ptid_t.
3676 Consider dead lwps as not being alive.
3677 (status_pending_p): Rename `dummy' argument to `arg'. Filter out
3678 threads we're not interested in.
3679 (same_lwp, find_lwp_pid): New.
3680 (linux_wait_for_lwp): Change `pid' argument's type from int to
3681 ptid_t. Adjust.
3682 (linux_wait_for_event): Rename to ...
3683 (linux_wait_for_event_1): ... this. Change `pid' argument's type
3684 from int to ptid_t. Adjust.
3685 (linux_wait_for_event): New.
3686 (linux_wait_1): Add `ptid' argument. Change return type to
3687 ptid_t. Adjust. Use last_thread_of_process_p. Remove processes
3688 that exit from the process table.
3689 (linux_wait): Add `ptid' argument. Change return type to ptid_t.
3690 Adjust.
3691 (mark_lwp_dead): New.
3692 (wait_for_sigstop): Adjust to use ptids. If a process exits while
3693 stopping all threads, mark its main lwp as dead.
3694 (linux_set_resume_request, linux_resume_one_thread): Adjust to use
3695 ptids.
3696 (fetch_register, usr_store_inferior_registers)
3697 (regsets_fetch_inferior_registers)
3698 (regsets_store_inferior_registers, linux_read_memory)
3699 (linux_write_memory): Inline `inferior_pid'.
3700 (linux_look_up_symbols): Adjust to use per-process
3701 `thread_db_active'.
3702 (linux_request_interrupt): Adjust to use ptids.
3703 (linux_read_auxv): Inline `inferior_pid'.
3704 (initialize_low): Don't reference thread_db_active.
3705 * gdb_proc_service.h (struct ps_prochandle) <pid>: Remove.
3706 * proc-service.c (ps_lgetregs): Use find_lwp_pid.
3707 (ps_getpid): Return the pid of the current inferior.
3708 * thread-db.c (proc_handle, thread_agent): Delete.
3709 (thread_db_create_event, thread_db_enable_reporting): Adjust to
3710 per-process data.
3711 (find_one_thread): Change argument type to ptid_t. Adjust to
3712 per-process data.
3713 (maybe_attach_thread): Adjust to per-process data and ptids.
3714 (thread_db_find_new_threads): Ditto.
3715 (thread_db_init): Ditto.
3716 * spu-low.c (spu_create_inferior, spu_attach): Add process to
3717 processes table. Adjust to use ptids.
3718 (spu_kill, spu_detach): Adjust interface. Remove process from
3719 processes table.
3720 (spu_join, spu_thread_alive): Adjust interface.
3721 (spu_wait): Adjust interface. Remove process from processes
3722 table. Adjust to use ptids.
3723 * win32-low.c (current_inferior_tid): Delete.
3724 (current_inferior_ptid): New.
3725 (debug_event_ptid): New.
3726 (thread_rec): Take a ptid. Adjust.
3727 (child_add_thread): Add `pid' argument. Adjust to use ptids.
3728 (child_delete_thread): Ditto.
3729 (do_initial_child_stuff): Add `attached' argument. Add process to
3730 processes table.
3731 (child_fetch_inferior_registers, child_store_inferior_registers):
3732 Adjust.
3733 (win32_create_inferior): Pass 0 to do_initial_child_stuff.
3734 (win32_attach): Pass 1 to do_initial_child_stuff.
3735 (win32_kill): Adjust interface. Remove process from processes
3736 table.
3737 (win32_detach): Ditto.
3738 (win32_join): Adjust interface.
3739 (win32_thread_alive): Take a ptid.
3740 (win32_resume): Adjust to use ptids.
3741 (get_child_debug_event): Ditto.
3742 (win32_wait): Adjust interface. Remove exiting process from
3743 processes table.
3744
bd99dc85
PA
37452009-04-01 Pedro Alves <pedro@codesourcery.com>
3746
3747 Non-stop mode support.
3748
3749 * server.h (non_stop): Declare.
3750 (gdb_client_data, handler_func): Declare.
3751 (delete_file_handler, add_file_handler, start_event_loop):
3752 Declare.
3753 (handle_serial_event, handle_target_event, push_event)
3754 (putpkt_notif): Declare.
3755 * target.h (enum resume_kind): New.
3756 (struct thread_resume): Replace `step' field by `kind' field.
3757 (TARGET_WNOHANG): Define.
3758 (struct target_ops) <wait>: Add `options' argument.
3759 <supports_non_stop, async, start_non_stop>: New fields.
3760 (target_supports_non_stop, target_async): New.
3761 (start_non_stop): Declare.
3762 (mywait): Add `options' argument.
3763 * target.c (mywait): Add `options' argument. Print child exit
3764 notifications here.
3765 (start_non_stop): New.
3766 * server.c (non_stop, own_buf, mem_buf): New globals.
3767 (struct vstop_notif): New.
3768 (notif_queue): New global.
3769 (queue_stop_reply, push_event, discard_queued_stop_replies)
3770 (send_next_stop_reply): New.
3771 (start_inferior): Adjust to use resume_kind. Adjust to mywait
3772 interface changes.
3773 (attach_inferior): In non-stop mode, don't wait for the target
3774 here.
3775 (handle_general_set): Handle QNonStop.
3776 (handle_query): When handling qC, return the current general
3777 thread, instead of the first thread of the list.
3778 (handle_query): If the backend supports non-stop mode, include
3779 QNonStop+ in the qSupported query response.
3780 (handle_v_cont): Adjust to use resume_kind. Handle resume_stop
3781 and non-stop mode.
3782 (handle_v_attach, handle_v_run): Handle non-stop mode.
3783 (handle_v_stopped): New.
3784 (handle_v_requests): Report support for vCont;t. Handle vStopped.
3785 (myresume): Adjust to use resume_kind. Handle non-stop.
3786 (queue_stop_reply_callback): New.
3787 (handle_status): Handle non-stop mode.
3788 (main): Clear non_stop flag on reconnection. Use the event-loop.
3789 Refactor serial protocol handling from here ...
3790 (process_serial_event): ... to this new function. When GDB
3791 selects any thread, select one here. In non-stop mode, wait until
3792 GDB acks all pending events before exiting.
3793 (handle_serial_event, handle_target_event): New.
3794 * remote-utils.c (remote_open): Install remote_desc in the event
3795 loop.
3796 (remote_close): Remove remote_desc from the event loop.
3797 (putpkt_binary): Rename to...
3798 (putpkt_binary_1): ... this. Add `is_notic' argument. Handle it.
3799 (putpkt_binary): New as wrapper around putpkt_binary_1.
3800 (putpkt_notif): New.
3801 (prepare_resume_reply): In non-stop mode, don't change the
3802 general_thread.
3803 * event-loop.c: New.
3804 * Makefile.in (OBJ): Add event-loop.o.
3805 (event-loop.o): New rule.
3806
3807 * linux-low.h (pid_of): Moved here.
3808 (lwpid_of): New.
3809 (get_lwp_thread): Use lwpid_of.
3810 (struct lwp_info): Delete `lwpid' field. Add `suspended' field.
3811 * linux-low.c (pid_of): Delete.
3812 (inferior_pid): Use lwpid_of.
3813 (linux_event_pipe): New.
3814 (target_is_async_p): New.
3815 (delete_lwp): New.
3816 (handle_extended_wait): Use lwpid_of.
3817 (add_lwp): Don't set lwpid field.
3818 (linux_attach_lwp): Adjust debug output. Use lwpid_of.
3819 (linux_kill_one_lwp): If killing a running lwp, stop it first.
3820 Use lwpid_of. Adjust to linux_wait_for_event interface changes.
3821 (linux_detach_one_lwp): If detaching from a running lwp, stop it
3822 first. Adjust to linux_wait_for_event interface changes. Use
3823 lwpid_of.
3824 (linux_detach): Don't delete the main lwp here.
3825 (linux_join): Use my_waitpid. Avoid signal_pid. Use lwpid_of.
3826 (status_pending_p): Don't consider explicitly suspended lwps.
3827 (linux_wait_for_lwp): Take an integer pid instead of a lwp_info
3828 pointer. Add OPTIONS argument. Change return type to int. Use
3829 my_waitpid instead of sleeping. Handle WNOHANG. Use lwpid_of.
3830 (linux_wait_for_event): Take an integer pid instead of a lwp_info
3831 pointer. Add status pointer argument. Return a pid instead of a
3832 status. Use lwpid_of. Adjust to linux_wait_for_lwp interface
3833 changes. In non-stop mode, don't switch to a random thread.
3834 (linux_wait): Rename to...
3835 (linux_wait_1): ... this. Add target_options argument, and handle
3836 it. Adjust to use resume_kind. Use lwpid_of. In non-stop mode,
3837 don't handle the continue thread. Handle TARGET_WNOHANG. Merge
3838 clean exit and signal exit code. Don't stop all threads in
3839 non-stop mode. In all-stop mode, only stop all threads when
3840 reporting a stop to GDB. Handle explicit thread stop requests.
3841 (async_file_flush, async_file_mark): New.
3842 (linux_wait): New.
3843 (send_sigstop): Use lwpid_of.
3844 (wait_for_sigstop): Use lwpid_of. Adjust to linux_wait_for_event
3845 interface changes. In non-stop mode, don't switch to a random
3846 thread.
3847 (linux_resume_one_lwp): Use lwpid_of.
3848 (linux_continue_one_thread, linux_queue_one_thread): Merge into ...
3849 (linux_resume_one_thread): ... this. Handle resume_stop. In
3850 non-stop mode, don't look for pending flag in all threads.
3851 (resume_status_pending_p): Don't consider explicitly suspended
3852 threads.
3853 (my_waitpid): Reimplement. Emulate __WALL.
3854 (linux_request_interrupt, linux_read_offsets, linux_xfer_siginfo):
3855 Use lwpid_of.
3856 (sigchld_handler, linux_supports_non_stop, linux_async)
3857 (linux_start_non_stop): New.
3858 (linux_target_ops): Register linux_supports_non_stop, linux_async
3859 and linux_start_non_stop.
3860 (initialize_low): Install SIGCHLD handler.
3861 * thread-db.c (thread_db_create_event, find_one_thread)
3862 (thread_db_get_tls_address): Use lwpid_of.
3863 * win32-low.c (win32_detach): Adjust to use resume_kind.
3864 (win32_wait): Add `options' argument.
3865 * spu-low.c (spu_resume): Adjust to use resume_kind.
3866 (spu_wait): Add `options' argument.
3867
5b1c542e
PA
38682009-04-01 Pedro Alves <pedro@codesourcery.com>
3869
3870 Decouple target code from remote protocol.
3871
3872 * target.h (enum target_waitkind): New.
3873 (struct target_waitstatus): New.
3874 (struct target_ops) <wait>: Return an unsigned long. Take a
3875 target_waitstatus pointer instead of a char pointer.
3876 (mywait): Likewise.
3877 * target.c (mywait): Change prototype to return an unsigned long.
3878 Take a target_waitstatus pointer instead of a char pointer. Adjust.
3879 * server.h (thread_from_wait, old_thread_from_wait): Delete
3880 declarations.
3881 (prepare_resume_reply): Change prototype to take a
3882 target_waitstatus.
3883 * server.c (thread_from_wait, old_thread_from_wait): Delete.
3884 (last_status, last_ptid): New.
3885 (start_inferior): Remove "statusptr" argument. Adjust. Return a
3886 pid instead of a signal.
3887 (attach_inferior): Remove "status" and "signal" parameters.
3888 Adjust.
3889 (handle_query): For qGetTLSAddr, parse the thread id with strtol,
3890 not as an address.
3891 (handle_v_cont, handle_v_attach, handle_v_run, handle_v_kill)
3892 (handle_v_requests, myresume): Remove "status" and "signal"
3893 parameters. Adjust.
3894 (handle_status): New.
3895 (main): Delete local `status'. Adjust.
3896 * remote-utils.c: Include target.h.
3897 (prepare_resume_reply): Change prototype to take a
3898 target_waitstatus. Adjust.
3899
3900 * linux-low.c (linux_wait): Adjust to new target_ops->wait
3901 interface.
3902 * spu-low.c (spu_wait): Adjust.
3903 * win32-low.c (enum target_waitkind, struct target_waitstatus):
3904 Delete.
3905 (win32_wait): Adjust.
3906
2bd7c093
PA
39072009-04-01 Pedro Alves <pedro@codesourcery.com>
3908
3909 * target.h (struct thread_resume): Delete leave_stopped member.
3910 (struct target_ops): Add a `n' argument to the `resume' callback.
3911 * server.c (start_inferior): Adjust.
3912 (handle_v_cont, myresume): Adjust.
3913 * linux-low.c (check_removed_breakpoint): Adjust to resume
3914 interface change, and to removed leave_stopped field.
3915 (resume_ptr): Delete.
3916 (struct thread_resume_array): New.
3917 (linux_set_resume_request): Add new `arg' parameter. Adjust to
3918 resume interface change.
3919 (linux_continue_one_thread, linux_queue_one_thread)
3920 (resume_status_pending_p): Check if the resume field is NULL
3921 instead of checking the leave_stopped member.
3922 (linux_resume): Adjust to the target resume interface change.
3923 * spu-low.c (spu_resume): Adjust to the target resume interface
3924 change.
3925 * win32-low.c (win32_detach, win32_resume): Ditto.
3926
c35fafde
PA
39272009-04-01 Pedro Alves <pedro@codesourcery.com>
3928
3929 * linux-low.c (linux_wait_for_event): Don't clear the `stepping'
3930 flag.
3931 (wait_for_sigstop): Don't leave a finished single-step SIGTRAP
3932 pending.
3933 (linux_continue_one_thread): Only preserve the stepping flag if
3934 there's a pending breakpoint.
3935
0a59d50b
PA
39362009-03-31 Pedro Alves <pedro@codesourcery.com>
3937
3938 * server.c (main): After the inferior having exited, call
3939 remote_close before exiting gdbserver.
3940
f04c6d38
TJB
39412009-03-25 Thiago Jung Bauermann <bauerman@br.ibm.com>
3942
3943 Fix size of FPSCR in Power 7 processors.
3944 * linux-ppc-low.c (PPC_FEATURE_ARCH_2_05): Remove #define.
3945 (PPC_FEATURE_HAS_DFP): New #define.
3946 (ppc_arch_setup): Check for DFP feature instead of ISA 2.05 to decide on
3947 size of the FPSCR.
3948
78e5cee6
PA
39492009-03-23 Pedro Alves <pedro@codesourcery.com>
3950
3951 * server.c (handle_query) Whitespace and formatting.
3952
1b3f6016
PA
39532009-03-22 Pedro Alves <pedro@codesourcery.com>
3954
3955 * i387-fp.c, linux-arm-low.c, linux-cris-low.c,
3956 linux-crisv32-low.c, linux-i386-low.c, linux-low.c,
3957 linux-mips-low.c, linux-s390-low.c, linux-sparc-low.c,
3958 linux-x86-64-low.c, linux-xtensa-low.c, proc-service.c,
3959 regcache.c, remote-utils.c, server.c, spu-low.c, target.h,
3960 thread-db.c, win32-low.c, xtensa-xtregs.c, gdbreplay.c,
3961 Makefile.in, configure.ac: Fix whitespace throughout.
3962 * configure: Regenerate.
3963
a07b2135
PA
39642009-03-22 Pedro Alves <pedro@codesourcery.com>
3965
3966 * inferiors.c (find_inferior): Make it safe for the callback
3967 function to delete the currently iterated inferior.
3968
67cc2626
PA
39692009-03-22 Pedro Alves <pedro@codesourcery.com>
3970
3971 * Makefile.in (linuw_low_h): Move higher.
3972 (thread-db.o): Depend on $(linux_low_h).
3973
54a0b537
PA
39742009-03-17 Pedro Alves <pedro@codesourcery.com>
3975
3976 Rename "process" to "lwp" throughout.
3977
3978 * linux-low.c (all_processes): Rename to...
3979 (all_lwps): ... this.
3980 (inferior_pid, handle_extended_wait, get_stop_pc): Adjust.
3981 (add_process): Rename to ...
3982 (add_lwp): ... this. Adjust.
3983 (linux_create_inferior): Adjust.
3984 (linux_attach_lwp): Adjust.
3985 (linux_attach): Adjust.
3986 (linux_kill_one_process): Rename to ...
3987 (linux_kill_one_lwp): ... this. Adjust.
3988 (linux_kill): Adjust.
3989 (linux_detach_one_process): Rename to ...
3990 (linux_detach_one_lwp): ... this. Adjust.
3991 (linux_detach): Adjust.
3992 (check_removed_breakpoint): Adjust.
3993 (status_pending_p): Adjust.
3994 (linux_wait_for_process): Rename to ...
3995 (linux_wait_for_lwp): ... this. Adjust.
3996 (linux_wait_for_event): Adjust.
3997 (send_sigstop): Adjust.
3998 (wait_for_sigstop): Adjust.
3999 (stop_all_processes): Rename to ...
4000 (stop_all_lwps): ... this.
4001 (linux_resume_one_process): Rename to ...
4002 (linux_resume_one_lwp): ... this. Adjust.
4003 (linux_set_resume_request, linux_continue_one_thread)
4004 (linux_queue_one_thread, resume_status_pending_p)
4005 (usr_store_inferior_registers, regsets_store_inferior_registers)
4006 (linux_request_interrupt, linux_read_offsets, linux_xfer_siginfo):
4007 Adjust.
4008 * linux-low.h (get_process): Rename to ...
4009 (get_lwp): ... this. Adjust.
4010 (get_thread_process): Rename to ...
4011 (get_thread_lwp): ... this. Adjust.
4012 (get_process_thread): Rename to ...
4013 (get_lwp_thread): ... this. Adjust.
4014 (struct process_info): Rename to ...
4015 (struct lwp_info): ... this.
4016 (all_processes): Rename to ...
4017 (all_lwps): ... this.
4018 * proc-service.c (ps_lgetregs): Adjust.
4019 * thread-db.c (thread_db_create_event, find_one_thread)
4020 (maybe_attach_thread, thread_db_get_tls_address): Adjust.
4021
0b16c5cf
PA
40222009-03-14 Pedro Alves <pedro@codesourcery.com>
4023
4024 * server.c (handle_query): Handle "qAttached".
4025
32de4b9d
NS
40262009-03-13 Nathan Sidwell <nathan@codesourcery.com>
4027
4028 * Makefile.in, hostio-errno.c, errno.c, xtensa-xtregs.c: Change to
4029 GPLv3, update license URL.
4030
2aecd87f
DE
40312009-03-01 Doug Evans <dje@google.com>
4032
93efd302 4033 * Makefile.in (INCLUDE_CFLAGS): Add -I$(srcdir)/../common.
2aecd87f
DE
4034 (server_h): Add gdb_signals.h.
4035 (signals.o): Update.
4036 * server.h (target_signal_from_host,target_signal_to_host_p)
4037 (target_signal_to_host,target_signal_to_name): Moved to gdb_signals.h.
4038
86b1f9c5
PM
40392009-02-14 Pierre Muller <muller@ics.u-strasbg.fr>
4040
4041 * remote-utils.c (getpkt): Also generate remote-debug
4042 information if noack_mode is set.
4043
4aa995e1
PA
40442009-02-06 Pedro Alves <pedro@codesourcery.com>
4045
4046 * server.c (handle_query): Report qXfer:siginfo:read and
4047 qXfer:siginfo:write as supported and handle them.
4048 * target.h (struct target_ops) <qxfer_siginfo>: New field.
4049 * linux-low.c (linux_xfer_siginfo): New.
4050 (linux_target_ops): Set it.
4051
62709adf
PA
40522009-01-26 Pedro Alves <pedro@codesourcery.com>
4053
4054 * server.c (gdbserver_usage): Mention --remote-debug.
4055 (main): Accept '--remote-debug' switch.
4056
aef93bd7
DE
40572009-01-18 Doug Evans <dje@google.com>
4058
4059 * regcache.c (new_register_cache): No need to check result of xcalloc.
4060 * server.c (handle_search_memory): Back out calls to xmalloc,
4061 result is checked and error is returned to user upon failure.
4062 (handle_query): Ditto. Add more checks for result of malloc.
4063 (handle_v_cont): Check result of malloc, report error back to
4064 user upon failure.
4065 (handle_v_run): Ditto. Call freeargv.
4066 * server.h (freeargv): Declare.
4067 * utils.c (freeargv): New fn.
4068
54363045
DE
40692009-01-15 Doug Evans <dje@google.com>
4070
f626972c
DE
4071 * gdbreplay.c (perror_with_name): Make arg const char *.
4072 * server.h (target_signal_to_name): Make return type const char *.
0842e787 4073 * thread-db.c (thread_db_err_str): Make return type const char *.
f626972c 4074 * utils.c (perror_with_name): Make arg const char *.
54363045 4075
18aae699
PA
40762009-01-14 Pedro Alves <pedro@codesourcery.com>
4077
4078 * win32-low.c (get_child_debug_event): Issue a final DBG_CONTINUE
4079 when handling a EXIT_PROCESS_DEBUG_EVENT.
4080
ff703abe
JB
40812009-01-06 Joel Brobecker <brobecker@adacore.com>
4082
4083 * gdbreplay.c (gdbreplay_version): Update copyright year.
4084 * server.c (gdbserver_version): Likewise.
4085
f21cc1a2 40862009-01-05 Doug Evans <dje@google.com>
0e21c1ec
DE
4087
4088 * linux-low.c (linux_attach_lwp): Add some comments/fixmes.
f21cc1a2 4089 (handle_extended_wait): Improve comment.
0e21c1ec 4090
bca929d3
DE
40912008-12-13 Doug Evans <dje@google.com>
4092
4093 * utils.c (xmalloc,xcalloc,xstrdup): New fns.
4094 * server.h (ATTR_MALLOC): New macro.
4095 (xmalloc,xcalloc,xstrdup): Declare.
4096 * hostio.c: Replace malloc,calloc,strdup with xmalloc,xcalloc,xstrdup.
4097 * inferiors.c: Ditto.
4098 * linux-low.c: Ditto.
4099 * mem-break.c: Ditto.
4100 * regcache.c: Ditto.
4101 * remote-utils.c: Ditto.
4102 * server.c: Ditto.
4103 * target.c: Ditto.
4104 * win32-low.c: Ditto.
4105
97438e3f
DE
41062008-12-12 Doug Evans <dje@google.com>
4107
896c7fbb
DE
4108 * linux-low.c (linux_wait_for_process): Don't clobber current_inferior
4109 in debugging printf.
4110
97438e3f
DE
4111 * linux-low.c (handle_extended_wait): Simplify, use my_waitpid.
4112
e3b886f8
DE
41132008-12-09 Doug Evans <dje@google.com>
4114
4115 * linux-low.h (struct process_info): Delete member tid, unused.
4116 * thread-db.c (find_one_thread): Update.
4117 (maybe_attach_thread): Update.
4118
07e059b5
VP
41192008-12-02 Pedro Alves <pedro@codesourcery.com>
4120
889bf7c5
PA
4121 * target.h (struct target_ops): Add qxfer_osdata member.
4122 * linux-low.c: Include ctype.h and pwd.h and sys/types.h
4123 and dirent.h.
4124 (linux_qxfer_osdata): New functions.
4125 (linux_target_ops): Register linux_qxfer_osdata as qxfer_osdata
4126 callback.
4127 * server.c (handle_query): Handle "qXfer:osdata:read:".
4128 * remote-utils.c (buffer_grow, buffer_free, buffer_init, buffer_finish)
4129 (buffer_xml_printf): New functions.
4130 * server.h (struct buffer): New.
4131 (buffer_grow_str, buffer_grow_str0): New macros.
4132 (buffer_grow, buffer_free, buffer_init, buffer_finish)
4133 (buffer_xml_printf): Declare.
07e059b5 4134
4cab47ab
DE
41352008-11-24 Doug Evans <dje@google.com>
4136
4137 * Makefile.in (VERSION,DIST,LINT,LINTFLAGS): Delete, unused.
4138
f142445f
DJ
41392008-11-24 Daniel Jacobowitz <dan@codesourcery.com>
4140
4141 * server.c (handle_v_run): Always use the supplied argument list.
4142
d0107bb6 41432008-11-19 Bob Wilson <bob.wilson@acm.org>
889bf7c5 4144
d0107bb6
BW
4145 * xtensa-xtregs.c (XTENSA_ELF_XTREG_SIZE): Change to 4.
4146 (xtensa_regmap_table): Add entry for scompare1.
889bf7c5 4147
2c4ad781
TJB
41482008-11-18 Thiago Jung Bauermann <bauerman@br.ibm.com>
4149
4150 * Makefile.in (powerpc-isa205-32l.o, powerpc-isa205-32l.c,
4151 powerpc-isa205-altivec32l.o, powerpc-isa205-altivec32l.c,
4152 powerpc-isa205-vsx32l.o, powerpc-isa205-vsx32l.c,
4153 powerpc-isa205-64l.o, powerpc-isa205-64l.c,
4154 powerpc-isa205-altivec64l.o, powerpc-isa205-altivec64l.c,
4155 powerpc-isa205-vsx64l.o, powerpc-isa205-vsx64l.c): New targets.
4156 * configure.srv (powerpc*-*-linux*): Add ISA 2.05 object files and
4157 XML target descriptions.
4158 * linux-ppc-low.c (ppc_arch_setup): Init registers with 64-bit FPSCR
4159 when inferior is running on an ISA 2.05 or later processor. Add
4160 special case to return offset for full 64-bit slot of FPSCR when
4161 in 32-bits.
4162
dfb64f85
DJ
41632008-11-14 Daniel Gutson <dgutson@codesourcery.com>
4164
4165 * Makefile.in (SFILES, clean): Added sparc64 files.
4166 (reg-sparc64.o, reg-sparc64.c): New.
4167 * configure.srv (sparc*-*-linux*): New configuration.
4168 * linux-low.c (regsets_fetch_inferior_registers): Swap ptrace
4169 syscall arguments for SPARC.
4170 (regsets_store_inferior_registers): Likewise.
4171 * linux-sparc-low.c: New file.
4172
66b6e1dd
DE
41732008-10-21 Doug Evans <dje@google.com>
4174
4175 * Makefile.in (BFD_DIR,BFD,BFD_SRC,BFD_CFLAGS): Delete.
4176 (READLINE_DIR,READLINE_DEP): Delete.
4177 (INTERNAL_CFLAGS): Update.
4178 (LINTFLAGS): Update.
4179
9b710a42
PA
41802008-10-10 Pedro Alves <pedro@codesourcery.com>
4181
4182 * server.c (handle_v_run): If GDB didn't specify an argv, use the
4183 whole argv from the last run, not just argv[0].
4184
5822d809
PA
41852008-09-08 Pedro Alves <pedro@codesourcery.com>
4186
4187 * regcache.c (new_register_cache): Return NULL if the register
4188 cache size isn't known yet.
4189 (free_register_cache): Avoid dereferencing a NULL regcache.
4190
74aac56f
DJ
41912008-09-04 Daniel Jacobowitz <dan@codesourcery.com>
4192
4193 * configure.srv: Merge MIPS and MIPS64.
4194
400b20f5
MR
41952008-08-24 Maciej W. Rozycki <macro@linux-mips.org>
4196
4197 * Makefile.in (uninstall): Apply $(EXEEXT) too.
4198
677c5bb1
LM
41992008-08-18 Luis Machado <luisgpm@br.ibm.com>
4200
4201 * Makefile.in: Add required vsx dependencies.
4202
4203 * linux-ppc-low: Define PPC_FEATURE_HAS_VSX.
4204 Declare init_registers_powerpc_vsx32l.
4205 Declare init_registers_powerpc_vsx64l.
4206 Define PTRACE_GETVSXREGS and PTRACE_SETVSXREGS.
4207 (ppc_arch_setup): Check for VSX in hwcap.
4208 (ppc_fill_vsxregset): New function.
4209 (ppc_store_vsxregset): New function.
4210 Add new VSX entry in regset_info target_regsets.
4211
4212 * configure.srv: Add new VSX dependencies.
4213
a6f3e723
SL
42142008-08-12 Pedro Alves <pedro@codesourcery.com>
4215
4216 * remote-utils.c (noack_mode, transport_is_reliable): New globals.
4217 (remote_open): Set or clear transport_is_reliable.
4218 (putpkt_binary): Don't expect acks in noack mode.
4219 (getpkt): Don't send ack/nac in noack mode.
4220 * server.c (handle_general_set): Handle QStartNoAckMode.
4221 (handle_query): If connected by tcp pass QStartNoAckMode+ in
4222 qSupported.
4223 (main): Reset noack_mode on every connection.
4224 * server.h (noack_mode): Declare.
4225
a417dc56
RW
42262008-08-07 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
4227
4228 * Makefile.in (GDBREPLAY_OBS): New variable.
4229 (gdbreplay$(EXEEXT)): Use it to avoid unportable $^.
4230
3221518c
UW
42312008-08-05 Ulrich Weigand <uweigand@de.ibm.com>
4232 Daniel Jacobowitz <dan@codesourcery.com>
4233
4234 * linux-low.c (linux_resume_one_process): Ignore ESRCH.
4235 (usr_store_inferior_registers): Likewise.
4236 (regsets_store_inferior_registers): Likewise.
4237
ec56be1b
PA
42382008-07-31 Rolf Jansen <rj@surtec.com>
4239 Pedro Alves <pedro@codesourcery.com>
4240
4241 * configure.ac: Check for memmem declaration.
4242 * server.c [HAVE_MALLOC_H]: Include malloc.h.
4243 (disable_packet_vCont, disable_packet_Tthread, disable_packet_qC)
4244 (disable_packet_qfThreadInfo): Unconditionally compile.
4245 * server.h [!HAVE_DECL_MEMMEM]: Declare memmem.
4246 * configure, config.in: Regenerate.
4247
2fe5e3ff
DE
42482008-07-28 Doug Kwan <dougkwan@google.com>
4249
4250 * linux-low.c (sys/dir.h, sys/user.h): Remove includes.
4251 (linux_write_memory): Remove declaration of errno.
4252
836acd6d
UW
42532008-07-12 Ulrich Weigand <uweigand@de.ibm.com>
4254
4255 * linux-low.c (handle_extended_wait): Do not use "status"
4256 variable uninitialized.
4257
aeba519e
PA
42582008-07-07 Pedro Alves <pedro@codesourcery.com>
4259
4260 * server.c (handle_v_attach): Inhibit reporting dll changes.
4261
db42f210
PA
42622008-06-27 Pedro Alves <pedro@codesourcery.com>
4263
4264 * remote-utils.c (prepare_resume_reply): If requested, don't
4265 output "thread:TID" in the T stop reply.
4266
4267 * server.c (disable_packet_vCont, disable_packet_Tthread)
4268 (disable_packet_qC, disable_packet_qfThreadInfo): New globals.
4269 (handle_query): If requested, disable support for qC, qfThreadInfo
4270 and qsThreadInfo.
4271 (handle_v_requests): If requested, disable support for vCont.
4272 (gdbserver_show_disableable): New.
4273 (main): Handle --disable-packet and --disable-packet=LIST.
4274
4275 * server.h (disable_packet_vCont, disable_packet_Tthread)
4276 (disable_packet_qC, disable_packet_qfThreadInfo): Declare.
4277
8e4c5421
CD
42782008-06-20 Carlos O'Donell <carlos@codesourcery.com>
4279
4280 * server.c (gdbserver_usage): Mention --version.
4281
6e23a804
DJ
42822008-06-06 Daniel Jacobowitz <dan@codesourcery.com>
4283
4284 * Makefile.in (gdbreplay.o): New rule.
4285
90aa6a40
JM
42862008-06-06 Joseph Myers <joseph@codesourcery.com>
4287
4288 * gdbreplay.c (gdbreplay_version): Say gdbreplay in version
4289 message, not gdbserver.
4290
c16158bc 42912008-06-05 Vladimir Prus <vladimir@codesourcery.com>
889bf7c5
PA
4292 Nathan Sidwell <nathan@codesourcery.com>
4293 Joseph Myers <joseph@codesourcery.com>
c16158bc
JM
4294
4295 * acinclude.m4: Include ../../config/acx.m4.
4296 * configure.ac: Use ACX_PKGVERSION and ACX_BUGURL.
4297 * configure, config.in: Regenerate.
4298 * Makefile.in (gdbreplay$(EXEEXT)): Add version.o.
4299 * server.c (gdbserver_version): Print PKGVERSION.
4300 (gdbsrever_usage): Add stream parameter. Print REPORT_BUGS_TO.
4301 (main): Adjust gdbserver_usage calls.
4302 * gdbreplay.c (version, host_name): Add declarations.
4303 (gdbreplay_version, gdbreplay_usage): New.
4304 (main): Accept --version and --help options.
4305
aeb75bf5
DJ
43062008-06-04 Daniel Jacobowitz <dan@codesourcery.com>
4307
4308 * linux-arm-low.c (thumb_breakpoint, thumb_breakpoint_len): New.
4309 (arm_breakpoint_at): Handle Thumb.
4310 (the_low_target): Add comment.
4311
76b233dd
UW
43122008-05-29 Ulrich Weigand <uweigand@de.ibm.com>
4313
4314 * linux-ppc-low.c (ppc_collect_ptrace_register): Clear buffer.
4315
08388c79
DE
43162008-05-09 Doug Evans <dje@google.com>
4317
a3c83fae
DE
4318 * server.h (decode_search_memory_packet): Declare.
4319 * remote-utils.c (decode_search_memory_packet): New fn.
4320 * server.c (handle_search_memory_1): New fn.
08388c79
DE
4321 (handle_search_memory): New fn.
4322 (handle_query): Process qSearch:memory packets.
4323
bb9c3d36
UW
43242008-05-08 Ulrich Weigand <uweigand@de.ibm.com>
4325
4326 * regcache.c (registers_length): Remove.
4327 (set_register_cache): Verify that PBUFSIZ is large enough to hold a
4328 full register packet.
4329 * regcache.h (registers_length): Remove prototype.
4330 * server.h (PBUFSIZ): Define to 16384.
4331
7284e1be
UW
43322008-05-03 Ulrich Weigand <uweigand@de.ibm.com>
4333
4334 * configure.srv (powerpc*-*-linux*): Set srv_regobj to
4335 powerpc-32l.o, powerpc-altivec32l.o, powerpc-e500l.o,
4336 powerpc-64l.o, and powerpc-altivec64l.o.
4337 Remove rs6000/powerpc-32.xml, rs6000/powerpc-64.xml, and
4338 rs6000/powerpc-e500.xml; add rs6000/powerpc-32l.xml,
4339 rs6000/powerpc-altivec32l.xml, rs6000/powerpc-e500l.xml,
4340 rs6000/powerpc-64l.xml, rs6000/powerpc-altivec64l.xml,
4341 rs6000/power-linux.xml, and rs6000/power64-linux.xml
4342 to srv_xmlfiles.
4343
4344 * Makefile.in (reg-ppc.o, reg-ppc.c): Remove, replace by ...
4345 (powerpc-32l.o, powerpc-32l.c): ... these new rules.
4346 (powerpc-32.o, powerpc-32.c): Remove, replace by ...
4347 (powerpc-altivec32l.o, powerpc-altivec32l.c): ... these new rules.
4348 (powerpc-e500.o, powerpc-e500.c): Remove, replace by ...
4349 (powerpc-e500l.o, powerpc-e500l.c): ... these new rules.
4350 (reg-ppc64.o, reg-ppc64.c): Remove, replace by ...
4351 (powerpc-64l.o, powerpc-64l.c): ... these new rules.
4352 (powerpc-64.o, powerpc-64.c): Remove, replace by ...
4353 (powerpc-altivec64l.o, powerpc-altivec64l.c): ... these new rules.
4354 (clean): Update.
4355
4356 * linux-ppc-low.c (init_registers_ppc): Remove, replace by ...
4357 (init_registers_powerpc_32l): ... this new prototype.
4358 (init_registers_powerpc_32): Remove, replace by ...
4359 (init_registers_powerpc_altivec32l): ... this new prototype.
4360 (init_registers_powerpc_e500): Remove, replace by ...
4361 (init_registers_powerpc_e500l): ... this new prototype.
4362 (init_registers_ppc64): Remove, replace by ...
4363 (init_registers_powerpc_64l): ... this new prototype.
4364 (init_registers_powerpc_64): Remove, replace by ...
4365 (init_registers_powerpc_altivec64l): ... this new prototype.
4366 (ppc_num_regs): Set to 73.
4367 (PT_ORIG_R3, PT_TRAP): Define if necessary.
4368 (ppc_regmap, ppc_regmap_e500): Add values for orig_r3 and trap.
4369 (ppc_cannot_store_register): Handle orig_r3 and trap.
4370 (ppc_arch_setup): Update init_registers_... calls.
4371 (ppc_fill_gregset): Handle orig_r3 and trap.
4372
4373 * inferiors.c (clear_inferiors): Reset current_inferior.
4374
fdc59709
PB
43752008-04-23 Paolo Bonzini <bonzini@gnu.org>
4376
889bf7c5
PA
4377 * acinclude.m4: Add override.m4.
4378 * configure: Regenerate.
fdc59709 4379
c9b2f845
UW
43802008-04-21 Ulrich Weigand <uweigand@de.ibm.com>
4381
4382 * linux-ppc-low.c (ppc_arch_setup): Reset ppc_hwcap after the
4383 initial call to init_register_ppc64.
4384
550512b8
UW
43852008-04-21 Ulrich Weigand <uweigand@de.ibm.com>
4386
4387 * configure.srv (powerpc64-*-linux*, powerpc-*-linux*): Merge into single
4388 powerpc*-*-linux* case.
4389 (s390-*-linux*, s390x-*-linux*): Merge into single s390*-*-linux* case.
4390
b6430ec3
UW
43912008-04-17 Ulrich Weigand <uweigand@de.ibm.com>
4392
4393 * configure.srv [powerpc64-*-linux*]: Remove powerpc-e500.o from
889bf7c5 4394 srv_regobj. Remove rs6000/powerpc-e500.xml and rs6000/power-spe.xml
b6430ec3
UW
4395 from reg_xmlfiles.
4396 * linux-ppc-low.c: Include <elf.h>.
4397 (PPC_FEATURE_HAS_ALTIVEC, PPC_FEATURE_HAS_SPE): Define.
4398 (ppc_hwcap): New global variable.
4399 (ppc_regmap): Remove __SPE__ #ifdef sections.
4400 (ppc_regmap_e500): New global variable.
4401 (ppc_cannot_store_register): Update __SPE__ special case.
4402 (ppc_get_hwcap): New function.
4403 (ppc_arch_setup): Use it to determine whether inferior supports
4404 AltiVec or SPE registers. Set the_low_target.regmap if appropriate.
4405 (ppc_fill_vrregset, ppc_store_vrregset): Define unconditionally.
4406 Do not access registers if target does not support AltiVec.
4407 (ppc_fill_evrregset, ppc_store_evrregset): Define unconditionally.
4408 Do not access registers if target does not support SPE.
4409 (target_regsets): Unconditionally include AltiVec and SPE regsets.
4410
52fa2412
UW
44112008-04-17 Daniel Jacobowitz <dan@codesourcery.com>
4412
4413 * linux-low.c (disabled_regsets, num_regsets): New.
4414 (use_regsets_p): Delete.
4415 (linux_wait_for_process): Clear disabled_regsets.
4416 (regsets_fetch_inferior_registers): Check and set it.
4417 (regsets_store_inferior_registers): Likewise.
4418 (linux_fetch_registers, linux_store_registers): Do not use
4419 use_regsets_p.
4420 (initialize_low): Allocate disabled_regsets.
4421
e28b3332
DJ
44222008-04-14 Daniel Jacobowitz <dan@codesourcery.com>
4423
4424 * Makefile.in (LIBOBJS): New.
4425 (OBS): Use LIBOBJS.
4426 (memmem.o): New rule.
4427 * configure.ac: Use AC_CONFIG_LIBOBJ_DIR and check for memmem.
4428 * configure: Regenerated.
4429
4536995d
UW
44302008-04-04 Ulrich Weigand <uweigand@de.ibm.com>
4431
4432 * server.c (handle_query): Never return "unsupported" for
4433 qXfer:features:read queries.
4434
221c031f
UW
44352008-03-27 Ulrich Weigand <uweigand@de.ibm.com>
4436
4437 * server.c (get_features_xml): Fix inverted condition.
4438 (handle_query): Always support qXfer:feature:read.
4439
ccd213ac
DJ
44402008-03-10 Daniel Jacobowitz <dan@codesourcery.com>
4441
4442 * server.c (wrapper_argv): New.
4443 (start_inferior): Handle wrapper_argv. If set, expect an extra
4444 trap.
4445 (gdbserver_usage): Document --wrapper.
4446 (main): Parse --wrapper.
4447
6fe305f7
UW
44482008-02-28 Ulrich Weigand <uweigand@de.ibm.com>
4449
4450 * configure.srv [powerpc64-*-linux*]: Add all files mentioned for
4451 powerpc-*-linux* to srv_regobj and reg_xmlfiles.
4452 * linux-ppc-low.c (ppc_get_pc): Support bi-arch operation.
4453 (ppc_set_pc): Likewise.
4454 (ppc_arch_setup): New function.
4455 (ppc_fill_gregset): Call ppc_collect_ptrace_register instead
4456 of collect_register.
889bf7c5 4457 (the_low_target): Use ppc_arch_setup as arch_setup initializer.
6fe305f7 4458
5b0a002e
UW
44592008-02-28 Ulrich Weigand <uweigand@de.ibm.com>
4460
4461 * configure.srv [powerpc64-*-linux*]: Use linux-ppc-low.o
4462 instead of linux-ppc64-low.o.
4463 * linux-ppc64-low.c: Remove file.
4464 * Makefile.in (SFILES): Remove linux-ppc64-low.c.
4465 (linux-ppc64-low.o): Remove rule.
4466
4467 * linux-ppc-low.c (init_registers_ppc64): Add prototype.
4468 (init_registers_powerpc_64): Likewise.
4469 (ppc_regmap): Conditionally define depending on __powerpc64__.
4470 (ppc_cannot_store_register): Do not special-case "fpscr" when
4471 compiled on __powerpc64__.
4472 (ppc_collect_ptrace_register): New function.
4473 (ppc_supply_ptrace_register): New function.
4474 (ppc_breakpoint): Change type to "unsigned int".
4475 (ppc_breakpoint_at): Change type of "insn" to "unsigned int".
4476 (the_low_target): Conditionally provide initializers for the
889bf7c5 4477 arch_setup member depending on __powerpc64__. Install
5b0a002e
UW
4478 collect_ptrace_register and supply_ptrace_register members.
4479
9b4b61c8
UW
44802008-02-28 Ulrich Weigand <uweigand@de.ibm.com>
4481
4482 * regcache.h (gdbserver_xmltarget): Add extern declaration.
4483 * server.c (gdbserver_xmltarget): Define.
4484 (get_features_xml): Use it to replace "target.xml" and arch_string.
4485
4486 * configure.srv: Remove srv_xmltarget. Add XML files that were
4487 mentioned there to srv_xmlfiles instead. Remove conditional tests
4488 on gdb_cv_arm_iwmmxt, gdb_cv_ppc_altivec, gdb_cv_ppc_spe; set
4489 srv_xmlfiles and srv_regobj to include all possible choices.
4490 * configure.ac (srv_xmltarget): Remove.
4491 (srv_xmlfiles): Do not add "target.xml".
4492 (gdb_cv_arm_iwmmxt, gdb_cv_ppc_altivec, gdb_cv_ppc_spe): Remove
4493 checks for supplementary target information.
4494 * configure: Regenerate.
4495 * Makefile.in (XML_TARGET): Remove.
4496 (target.xml): Remove rule.
4497 (clean): Do not clean up target.xml.
4498 (.PRECIOUS): Do not mention target.xml.
4499
4500 * target.h (struct target_ops): Remove arch_string member.
4501 * linux-low.c (linux_arch_string): Remove.
4502 (linux_target_ops): Remove arch_string initializer.
4503 * linux-low.h (struct linux_target_ops): Remove arch_string member.
4504 * linux-i386-low.c (the_low_target): Remove arch_string initializer.
4505 * linux-x86-64-low.c (the_low_target): Remove arch_string initializer.
4506 * spu-low.c (spu_arch_string): Remove.
4507 (spu_target_ops): Remove arch_string initializer.
4508 * win32-low.c (win32_arch_string): Remove.
4509 (win32_target_ops): Remove arch_string initializer.
4510 * win32-low.h (struct win32_target_ops): Remove arch_string member.
4511 * win32-arm-low.c (the_low_target): Remove arch_string initializer.
4512 * win32-i368-low.c (the_low_target): Remove arch_string initializer.
4513
ee1a7ae4
UW
45142008-02-27 Ulrich Weigand <uweigand@de.ibm.com>
4515
4516 * linux-low.h (struct linux_target_ops): Replace left_pad_xfer field
4517 by collect_ptrace_register and supply_ptrace_register hooks.
4518 * linux-low.c (fetch_register): Use supply_ptrace_register callback
4519 instead of checking for the_low_target.left_pad_xfer.
4520 (usr_store_inferior_registers): Use collect_ptrace_register callback
4521 instead of checking for the_low_target.left_pad_xfer.
4522
4523 * linux-s390-low.c (s390_collect_ptrace_register): New function.
4524 (s390_supply_ptrace_register): Likewise.
4525 (s390_fill_gregset): Call s390_collect_ptrace_register.
4526 (the_low_target): Update.
4527
4528 * linux-ppc64-low.c (ppc_collect_ptrace_register): New function.
4529 (ppc_supply_ptrace_register): Likewise.
4530 (the_low_target): Update.
4531
4532 * linux-i386-low.c (the_low_target): Update.
4533 * linux-x86-64-low.c (the_low_target): Update.
4534
d61ddec4
UW
45352008-02-27 Ulrich Weigand <uweigand@de.ibm.com>
4536
4537 * configure.srv [s390x-*-linux*]: Set srv_regobj to include both
4538 reg-s390.o and reg-s390x.o.
4539
4540 * linux-low.c (new_inferior): New global variable.
4541 (linux_create_inferior, linux_attach): Set it.
4542 (linux_wait_for_process): Call the_low_target.arch_setup after the
4543 target has stopped for the first time.
4544 (initialize_low): Do not call the_low_target.arch_setup.
4545
4546 * linux-s390-low.c (s390_get_pc): Support bi-arch operation.
4547 (s390_set_pc): Likewise.
4548 (s390_arch_setup): New function.
4549 (the_low_target): Use s390_arch_setup as arch_setup routine.
4550
4551 * regcache.c (realloc_register_cache): New function.
4552 (set_register_cache): Call it for each existing regcache.
4553
d05b4ac3
UW
45542008-02-27 Ulrich Weigand <uweigand@de.ibm.com>
4555
4556 * server.h (init_registers): Remove prototype.
4557
4558 * linux-low.h (struct linux_target_ops): Add arch_setup field.
4559 * linux-low.c (initialize_low): Call the_low_target.arch_setup ()
4560 instead of init_registers ().
4561 * linux-arm-low.c (init_registers_arm): Add prototype.
4562 (init_registers_arm_with_iwmmxt): Likewise.
4563 (the_low_target): Add initializer for arch_setup field.
4564 * linux-cris-low.c (init_registers_cris): Add prototype.
4565 (the_low_target): Add initializer for arch_setup field.
4566 * linux-crisv32-low.c (init_registers_crisv32): Add prototype.
4567 (the_low_target): Add initializer for arch_setup field.
4568 * linux-i386-low.c (init_registers_i386_linux): Add prototype.
4569 (the_low_target): Add initializer for arch_setup field.
4570 * linux-ia64-low.c (init_registers_ia64): Add prototype.
4571 (the_low_target): Add initializer for arch_setup field.
4572 * linux-m32r-low.c (init_registers_m32r): Add prototype.
4573 (the_low_target): Add initializer for arch_setup field.
4574 * linux-m68k-low.c (init_registers_m68k): Add prototype.
4575 (the_low_target): Add initializer for arch_setup field.
4576 * linux-mips-low.c (init_registers_mips_linux): Add prototype.
4577 (init_registers_mips64_linux): Likewise.
4578 (the_low_target): Add initializer for arch_setup field.
4579 * linux-ppc-low.c (init_registers_ppc): Add prototype.
4580 (init_registers_powerpc_32, init_registers_powerpc_e500): Likewise.
4581 (the_low_target): Add initializer for arch_setup field.
4582 * linux-ppc64-low.c (init_registers_ppc64): Add prototype.
4583 (init_registers_powerpc_64): Likewise.
4584 (the_low_target): Add initializer for arch_setup field.
4585 * linux-s390-low.c (init_registers_s390): Add prototype.
4586 (init_registers_s390x): Likewise.
4587 (the_low_target): Add initializer for arch_setup field.
4588 * linux-sh-low.c (init_registers_sh): Add prototype.
4589 (the_low_target): Add initializer for arch_setup field.
4590 * linux-x86-64-low.c (init_registers_x86_64_linux): Add prototype.
4591 (the_low_target): Add initializer for arch_setup field.
4592 * linux-xtensa-low.c (init_registers_xtensa): Add prototype.
4593 (the_low_target): Add initializer for arch_setup field.
4594
4595 * win32-low.h (struct win32_target_ops): Add arch_setup field.
4596 * win32-low.c (initialize_low): Call the_low_target.arch_setup ()
4597 instead of init_registers ().
4598 * win32-arm-low.c (init_registers_arm): Add prototype.
4599 (the_low_target): Add initializer for arch_setup field.
4600 * win32-i386-low.c (init_registers_i386): Add prototype.
4601 (the_low_target): Add initializer for arch_setup field.
4602
4603 * spu-low.c (init_registers_spu): Add prototype.
4604 (initialize_low): Call initialie_registers_spu () instead of
4605 initialize_registers ().
4606
fd96d250
PA
46072008-02-19 Pedro Alves <pedro@codesourcery.com>
4608
4609 * server.c (handle_v_requests): When handling the vRun and vAttach
4610 packets, if already debugging a process, don't kill it. Return an
4611 error instead.
4612
d41b6bb4
DJ
46132008-02-17 Daniel Jacobowitz <dan@codesourcery.com>
4614
4615 * server.c (handle_query): Correct length check.
4616
5ac588cf
PA
46172008-02-14 Pedro Alves <pedro_alves@portugalmail.pt>
4618
4619 * win32-low.c (do_initial_child_stuff): Add process handle
4620 parameter. Set current_process_handle and current_process_id from the
4621 parameters. Clear globals.
4622 (win32_create_inferior): Don't set current_process_handle and
4623 current_process_id here. Instead pass them on the call to
4624 do_initial_child_stuff.
4625 (win32_attach): Likewise.
4626 (win32_clear_inferiors): New.
4627 (win32_kill): Don't close the current process handle or the
4628 current thread handle here. Instead call win32_clear_inferiors.
4629 (win32_detach): Don't open a new handle to the process. Call
4630 win32_clear_inferiors.
4631 (win32_join): Don't rely on current_process_handle; open a new
4632 handle using the process id.
4633 (win32_wait): Call win32_clear_inferiors when the inferior process
4634 has exited.
4635
ecd7ecbc
DJ
46362008-02-14 Daniel Jacobowitz <dan@codesourcery.com>
4637
4638 * server.c (monitor_show_help): Add "exit".
4639
1525d545
MG
46402008-02-11 Maxim Grigoriev <maxim2405@gmail.com>
4641
ecd7ecbc 4642 * Makefile.in (SFILES): Add linux-xtensa-low.c.
1525d545
MG
4643 (clean): Add reg-xtensa.c.
4644 (linux-xtensa-low.o, reg-xtensa.o, reg-xtensa.c): New dependencies.
ecd7ecbc
DJ
4645 * configure.srv (xtensa*-*-linux*) New target.
4646 * linux-xtensa-low.c: New.
4647 * xtensa-xtregs.c: New.
1525d545 4648
59a016f0
PA
46492008-02-01 Pedro Alves <pedro_alves@portugalmail.pt>
4650
4651 * hostio.c: Don't include errno.h.
4652 (errno_to_fileio_errno): Move to hostio-errno.
4653 * hostio.c: (hostio_error): Remove the error parameter. Defer the
4654 error number outputting to the target->hostio_last_error callback.
4655 (hostio_packet_error): Use FILEIO_EINVAL directly.
4656 (handle_open, handle_pread, hostio_error, handle_unlink): Update
4657 calls to hostio_error.
4658 * hostio-errno.c: New.
4659 * server.h (hostio_last_error_from_errno): Declare.
4660 * target.h (target_ops): Add hostio_last_error member.
4661 * linux-low.c (linux_target_op): Register hostio_last_error_from_errno
4662 as hostio_last_error handler.
889bf7c5 4663 * spu-low.c (spu_target_ops): Likewise.
59a016f0
PA
4664 * win32-low.c [_WIN32_WCE] (win32_error_to_fileio_error)
4665 (wince_hostio_last_error): New functions.
4666 (win32_target_ops) [_WIN32_WCE]: Register wince_hostio_last_error
4667 as hostio_last_error handler.
4668 (win32_target_ops) [!_WIN32_WCE]: Register
4669 hostio_last_error_from_errno as hostio_last_error handler.
4670 * Makefile.in (SFILES): Add hostio.c and hostio-errno.c.
4671 (hostio-errno.o): New rule.
4672 * configure.ac (GDBSERVER_DEPFILES): Add $srv_hostio_err_objs.
4673 * configure.srv (srv_hostio_err_objs): New variable. Default to
4674 hostio-errno.o.
4675 (arm*-*-mingw32ce*): Set srv_hostio_err_objs to "".
4676 * configure: Regenerate.
4677
2d717e4f
DJ
46782008-01-29 Daniel Jacobowitz <dan@codesourcery.com>
4679
4680 * linux-low.c (linux_attach_lwp): Do not _exit after errors.
4681 (linux_kill, linux_detach): Clean up the process list.
4682 * remote-utils.c (remote_open): Improve port number parsing.
4683 (putpkt_binary, input_interrupt): Only send interrupts if the target
4684 is running.
4685 * server.c (extended_protocol): Make static.
4686 (attached): Define earlier.
4687 (exit_requested, response_needed, program_argv): New variables.
4688 (target_running): New.
4689 (start_inferior): Clear attached here.
4690 (attach_inferior): Set attached here.
4691 (require_running): Define.
4692 (handle_query): Use require_running and target_running. Implement
4693 "monitor exit".
4694 (handle_v_attach, handle_v_run): New.
4695 (handle_v_requests): Use require_running. Handle vAttach and vRun.
4696 (gdbserver_usage): Update.
4697 (main): Redo argument parsing. Handle --debug and --multi. Handle
4698 --attach along with other options or after the port. Save
4699 program_argv. Support no initial program. Resynchronize
4700 communication with GDB after an error. Handle "monitor exit".
4701 Use require_running and target_running. Always allow the extended
4702 protocol. Do not error out for Hc0 or Hc-1. Do not automatically
4703 restart in extended mode.
4704 * README: Refer to the GDB manual. Update --attach usage.
4705
7407e2de
AS
47062007-12-20 Andreas Schwab <schwab@suse.de>
4707
4708 * linux-low.c (STACK_SIZE): Define.
4709 (linux_tracefork_child): Use it. Use __clone2 on ia64.
4710 (linux_test_for_tracefork): Likewise.
4711
b65d95c5
DJ
47122007-12-18 Daniel Jacobowitz <dan@codesourcery.com>
4713
4714 * linux-low.c (linux_wait_for_event): Update messages. Do not
4715 reinsert auto-delete breakpoints.
4716 * mem-break.c (struct breakpoint): Change return type of handler to
4717 int.
4718 (set_breakpoint_at): Update handler type.
4719 (reinsert_breakpoint_handler): Return 1 instead of calling
4720 delete_breakpoint.
4721 (reinsert_breakpoint_by_bp): Check for the original breakpoint before
4722 setting a new one.
4723 (check_breakpoints): Delete auto-delete breakpoints and return 2.
4724 * mem-break.h (set_breakpoint_at): Update handler type.
4725 * thread-db.c (thread_db_create_event, thread_db_create_event): Update.
4726 * win32-low.c (auto_delete_breakpoint): New.
4727 (get_child_debug_event): Use it.
4728
4e799345
DJ
47292007-12-16 Daniel Jacobowitz <dan@codesourcery.com>
4730
4731 * configure.ac: Check for pread and pwrite.
4732 * hostio.c (handle_pread): Fall back to lseek and read.
4733 (handle_pwrite): Fall back to lseek and write.
4734 * config.in, configure: Regenerated.
4735
27524b67
DJ
47362007-12-07 Daniel Jacobowitz <dan@codesourcery.com>
4737
4738 * server.c (myresume): Add own_buf argument.
4739 (main): Update calls.
4740
a20d5e98
DJ
47412007-12-06 Daniel Jacobowitz <dan@codesourcery.com>
4742
4743 * linux-low.c (linux_wait, linux_resume): Do not handle async I/O.
4744 * remote-utils.c (remote_open): Do not call disable_async_io.
4745 (block_async_io): Delete.
4746 (unblock_async_io): Make static.
4747 (initialize_async_io): New.
4748 * server.c (handle_v_cont): Handle async I/O here.
4749 (myresume): Likewise. Move other common resume tasks here...
4750 (main): ... from here. Call initialize_async_io. Disable async
4751 I/O before the main loop.
4752 * server.h (initialize_async_io): Declare.
4753 (block_async_io, unblock_async_io): Delete prototypes.
4754 * spu-low.c (spu_resume, spu_wait): Do not handle async I/O here.
4755
b79d787e
DJ
47562007-12-06 Mick Davis <mickd@goanna.iinet.net.au>
4757
4758 * remote-utils.c (readchar): Allow binary data in received messages.
4759
d97903b2
PA
47602007-12-03 Pedro Alves <pedro_alves@portugalmail.pt>
4761
4762 * win32-low.c (attaching): New global.
4763 (win32_create_inferior): Clear the `attaching' global.
4764 (win32_attach): Set the `attaching' global.
4765 (get_child_debug_event) [_WIN32_WCE]: Stop the inferior when
4766 attaching. Only set a breakpoint at the entry point if not
4767 attaching.
4768
311de423
PA
47692007-12-03 Pedro Alves <pedro_alves@portugalmail.pt>
4770
4771 * server.c (main): Don't report dll events on the initial
4772 connection on attaches.
4773
6c2d16d2
PA
47742007-12-03 Pedro Alves <pedro_alves@portugalmail.pt>
4775
4776 * server.c (main): Relax numerical bases supported for the pid of
4777 the --attach command line argument.
4778
5ca906e6
PA
47792007-12-03 Pedro Alves <pedro_alves@portugalmail.pt>
4780
4781 * win32-low.c (win32_attach): Call OpenProcess before
4782 DebugActiveProcess, not after. Add last error output to error
4783 call.
4784
9c6c8194
PA
47852007-12-03 Pedro Alves <pedro_alves@portugalmail.pt>
4786
4787 * win32-low.c (win32_get_thread_context)
4788 (win32_set_thread_context): New functions.
4789 (thread_rec): Use win32_get_thread_context.
4790 (continue_one_thread, win32_resume): Use win32_set_thread_context.
4791 * win32-low.h (win32_thread_info) [_WIN32_WCE]: Add `base_context'
4792 field.
4793
4d5d1aaa
PA
47942007-12-03 Leo Zayas
4795 Pedro Alves <pedro_alves@portugalmail.pt>
4796
4797 * win32-low.c (soft_interrupt_requested, faked_breakpoint): New
4798 global variables.
4799 (child_add_thread): Minor cleanup.
4800 (child_continue): Resume artificially suspended threads before
4801 calling ContinueDebugEvent.
4802 (suspend_one_thread): New.
4803 (fake_breakpoint_event): New.
4804 (get_child_debug_event): Change return type to int. Check here if
4805 gdb sent an interrupt request. If a soft interrupt was requested,
4806 fake a breakpoint event. Return 0 if there is no event to handle,
4807 and 1 otherwise.
4808 (win32_wait): Don't check here if gdb sent an interrupt request.
4809 Ensure there is a valid event to handle.
4810 (win32_request_interrupt): Add soft interruption method as last
4811 resort.
4812
c436e841
PA
48132007-12-03 Leo Zayas
4814 Pedro Alves <pedro_alves@portugalmail.pt>
4815
4816 * win32-low.h (win32_thread_info): Add descriptions to the
4817 structure members. Replace `suspend_count' counter by a
4818 `suspended' flag.
4819 * win32-low.c (thread_rec): Update condition of when to get the
4820 context from the inferior. Rely on ContextFlags being set if it
4821 has already been retrieved. Only suspend the inferior thread if
4822 we haven't already. Warn if that fails.
4823 (continue_one_thread): s/suspend_count/suspended/. Only call
4824 ResumeThread once. Warn if that fails.
4825
e7b5fa67
PA
48262007-12-02 Pedro Alves <pedro_alves@portugalmail.pt>
4827
4828 * win32-low.c (win32_wait): Don't read from the inferior when it
4829 has already exited.
4830
a385171d
PA
48312007-12-02 Pedro Alves <pedro_alves@portugalmail.pt>
4832
4833 * Makefile.in (win32_low_h): New variable.
4834 (win32-low.o): Add dependency on $(win32_low_h).
4835 (win32-arm-low.o, win32-i386-low.o): New rules.
4836
f80c84b3
DJ
48372007-11-30 Daniel Jacobowitz <dan@codesourcery.com>
4838
4839 * hostio.c: Correct copyright year.
4840
a6b151f1
DJ
48412007-11-30 Daniel Jacobowitz <dan@codesourcery.com>
4842
4843 * Makefile.in (OBS): Add hostio.o.
4844 (hostio.o): New rule.
4845 * server.h (handle_vFile): Declare.
4846 * hostio.c: New file.
4847 * server.c (handle_v_requests): Take packet_len and new_packet_len
4848 for binary packets. Call handle_vFile.
4849 (main): Update call to handle_v_requests.
4850
f9387fc3
DJ
48512007-11-05 Daniel Jacobowitz <dan@codesourcery.com>
4852
4853 * linux-low.c: Include <sched.h>.
4854
51c2684e
DJ
48552007-11-01 Daniel Jacobowitz <dan@codesourcery.com>
4856
4857 * linux-low.c (linux_tracefork_grandchild): New.
4858 (linux_tracefork_child): Use clone.
4859 (linux_test_for_tracefork): Use clone; allocate and free a stack.
4860
75f83163
JB
48612007-10-31 Joel Brobecker <brobecker@adacore.com>
4862
4863 * Makefile.in: Use $(SHELL) instead of "sh" to call regdat.sh.
4864
da5898ce
DJ
48652007-10-24 Daniel Jacobowitz <dan@codesourcery.com>
4866
4867 * linux-low.c (handle_extended_wait): Handle unexpected signals.
4868
24a09b5f
DJ
48692007-10-23 Daniel Jacobowitz <dan@codesourcery.com>
4870
4871 * inferiors.c (change_inferior_id): Delete.
4872 (add_pid_to_list, pull_pid_from_list): New.
4873 * linux-low.c (PTRACE_SETOPTIONS, PTRACE_GETEVENTMSG)
4874 (PTRACE_O_TRACESYSGOOD, PTRACE_O_TRACEFORK, PTRACE_O_TRACEVFORK)
4875 (PTRACE_O_TRACECLONE, PTRACE_O_TRACEEXEC, PTRACE_O_TRACEVFORKDONE)
4876 (PTRACE_O_TRACEEXIT, PTRACE_EVENT_FORK, PTRACE_EVENT_VFORK)
4877 (PTRACE_EVENT_CLONE, PTRACE_EVENT_EXEC, PTRACE_EVENT_VFORK_DONE)
4878 (PTRACE_EVENT_EXIT, __WALL): Provide default definitions.
4879 (stopped_pids, thread_db_active, must_set_ptrace_flags): New variables.
4880 (using_threads): Always set to 1.
4881 (handle_extended_wait): New.
4882 (add_process): Do not set TID.
4883 (linux_create_inferior): Set must_set_ptrace_flags.
4884 (linux_attach_lwp): Remove TID argument. Do not check using_threads.
4885 Use PTRACE_SETOPTIONS. Call new_thread_notify. Update all callers.
4886 (linux_thread_alive): Rename TID argument to LWPID.
4887 (linux_wait_for_process): Handle unknown processes. Do not use TID.
4888 (linux_wait_for_event): Do not use TID or check using_threads. Update
4889 call to dead_thread_notify. Call handle_extended_wait.
4890 (linux_create_inferior): Use PTRACE_SETOPTIONS.
4891 (send_sigstop): Delete sigstop_sent.
4892 (wait_for_sigstop): Avoid TID.
4893 (linux_supports_tracefork_flag, linux_tracefork_child, my_waitpid)
4894 (linux_test_for_tracefork): New.
4895 (linux_lookup_signals): Use thread_db_active and
4896 linux_supports_tracefork_flag.
4897 (initialize_low): Use thread_db_active and linux_test_for_tracefork.
4898 * linux-low.h (get_process_thread): Avoid TID.
4899 (struct process_ifo): Move thread_known and tid to the end. Remove
4900 sigstop_sent.
4901 (linux_attach_lwp, thread_db_init): Update prototypes.
4902 * server.h (change_inferior_id): Delete prototype.
4903 (add_pid_to_list, pull_pid_from_list): New prototypes.
4904 * thread-db.c (thread_db_use_events): New.
4905 (find_first_thread): Rename to...
4906 (find_one_thread): ...this. Update callers and messages. Do not
4907 call fatal. Check thread_db_use_events. Do not call
4908 change_inferior_id or new_thread_notify.
4909 (maybe_attach_thread): Update. Do not call new_thread_notify.
4910 (thread_db_init): Set thread_db_use_events. Check use_events.
4911 * utils.c (fatal, warning): Correct message prefix.
4912
30ed0a8f
DJ
49132007-10-15 Daniel Jacobowitz <dan@codesourcery.com>
4914
4915 * Makefile.in (clean): Remove new files.
4916 (powerpc-32.o, powerpc-32.c, powerpc-e500.o, powerpc-e500.c)
4917 (powerpc-64.o, powerpc-64.c): New rules.
4918 * configure.srv: Use alternate register sets for powerpc64-*-linux*
4919 with AltiVec, powerpc-*-linux* with AltiVec, and powerpc-*-linux*
4920 with SPE.
4921 * linux-ppc-low.c (ppc_regmap): Do not fetch the FP registers for
4922 SPE targets.
4923 (ppc_cannot_store_register): Do not check for FPSCR for SPE targets.
4924 (PTRACE_GETVRREGS, PTRACE_SETVRREGS, SIZEOF_VRREGS, ppc_fill_vrregset)
4925 (ppc_store_vrregset, PTRACE_GETEVRREGS, PTRACE_SETEVRREGS)
4926 (struct gdb_evrregset_t, ppc_fill_evrregset, ppc_store_evrregset): New.
4927 (target_regsets): Add AltiVec and SPE register sets.
4928 * configure.ac: Check for AltiVec and SPE.
4929 * linux-ppc64-low.c (PTRACE_GETVRREGS, PTRACE_SETVRREGS, SIZEOF_VRREGS)
4930 (ppc_fill_vrregset, ppc_store_vrregset): New.
4931 (target_regsets): Add AltiVec register set.
4932 * configure: Regenerated.
4933
fd462a61
DJ
49342007-09-19 Daniel Jacobowitz <dan@codesourcery.com>
4935
4936 * linux-low.c (O_LARGEFILE): Define.
4937 (linux_read_memory): Use /proc/PID/mem.
4938 * configure.ac: Use AC_GNU_SOURCE. Check for pread64.
4939 * configure, config.in: Regenerated.
4940
69f223ed
DJ
49412007-09-04 Daniel Jacobowitz <dan@codesourcery.com>
4942
4943 * linux-low.c (linux_wait_for_event): Do not pass signals while
4944 single-stepping.
4945
aec18585
PA
49462007-09-03 Pedro Alves <pedro_alves@portugalmail.pt>
4947
4948 * win32-low.c (create_process): New.
4949 (win32_create_inferior): Use create_process instead of
4950 CreateProcess. If create_process failed retry appending an ".exe"
4951 suffix. Store the GetLastError result immediatelly after
4952 create_process calls and use it on the call to error.
4953
34d86ddd
PA
49542007-09-03 Pedro Alves <pedro_alves@portugalmail.pt>
4955
4956 * win32-low.c (handle_load_dll): Don't use toolhelp when waiting.
4957
5a0e3bd0
JB
49582007-08-23 Joel Brobecker <brobecker@adacore.com>
4959
4960 * configure.ac: Switch license to GPLv3.
4961
f88c79e6
MS
49622007-08-01 Michael Snyder <msnyder@access-company.com>
4963
4964 * remote-utils.c (putpkt_binary): Memory leak, free buf2.
4965
6b3d9b83
PA
49662007-07-31 Pedro Alves <pedro_alves@portugalmail.pt>
4967
4968 * win32-low.c (winapi_CloseToolhelp32Snapshot) [_WIN32_WCE]: New
4969 typedef.
4970 (win32_CloseToolhelp32Snapshot) [_WIN32_WCE]: New global var.
4971 (load_toolhelp) [_WIN32_WCE]: Load TOOLHELP.DLL. Get
4972 CloseToolhelp32Snapshot.
4973 (toolhelp_get_dll_name) [_WIN32_WCE]: Close the snapshot with
4974 CloseToolhelp32Snapshot.
4975
c588c53c
MS
49762007-07-27 Michael Snyder <michael.snyder@access-company.com>
4977
4978 * server.c (main): Check for inferior exit before main loop.
4979
aa0403d9
PA
49802007-07-18 Pedro Alves <pedro_alves@portugalmail.pt>
4981
4982 * remote-utils.c (remote_open): Set SO_KEEPALIVE on remote_desc
4983 instead of on tmp_desc.
4984
255e7678
DJ
49852007-07-17 Pedro Alves <pedro_alves@portugalmail.pt>
4986 Daniel Jacobowitz <dan@codesourcery.com>
4987
4988 * inferiors.c (all_dlls, dlls_changed, get_dll): New.
4989 (add_thread): Minor cleanups.
4990 (clear_inferiors): Move lower in the file. Clear the DLL
4991 list.
4992 (free_one_dll, match_dll, loaded_dll, unloaded_dll, clear_list): New.
4993 * remote-utils.c (prepare_resume_reply): Check dlls_changed.
4994 (xml_escape_text): New.
4995 * server.c (handle_query): Handle qXfer:libraries:read. Report it
4996 for qSupported.
4997 (handle_v_cont): Report errors.
4998 (gdbserver_version): Update.
4999 (main): Correct size of own_buf. Do not report initial DLL events.
5000 * server.h (struct dll_info, all_dlls, dlls_changed, loaded_dll)
5001 (unloaded_dll, xml_escape_text): New.
5002 * win32-low.c (enum target_waitkind): Update comments.
5003 (win32_add_one_solib, get_image_name, winapi_EnumProcessModules)
5004 (winapi_GetModuleInformation, winapi_GetModuleFileNameExA)
5005 (win32_EnumProcessModules, win32_GetModuleInformation)
5006 (win32_GetModuleFileNameExA, load_psapi, psapi_get_dll_name)
5007 (winapi_CreateToolhelp32Snapshot, winapi_Module32First)
5008 (winapi_Module32Next, win32_CreateToolhelp32Snapshot)
5009 (win32_Module32First, win32_Module32Next, load_toolhelp)
5010 (toolhelp_get_dll_name, handle_load_dll, handle_unload_dll): New.
5011 (get_child_debug_event): Handle DLL events.
5012 (win32_wait): Likewise.
5013
0d37add9
DJ
50142007-07-12 Daniel Jacobowitz <dan@codesourcery.com>
5015
5016 * configure.srv: Set srv_linux_regsets for sh*-*-linux*.
5017 * linux-sh-low.c (sh_fill_gregset, target_regsets): New.
5018
45e2715e
PA
50192007-07-08 Pedro Alves <pedro_alves@portugalmail.pt>
5020
5021 * win32-low.c (handle_output_debug_string): Ignore event if not
5022 waiting.
5023
c5674cf1
PA
50242007-07-08 Pedro Alves <pedro_alves@portugalmail.pt>
5025
5026 * win32-arm-low.c (arm_wince_breakpoint): Fix typo.
5027
2bbe3cc1
DJ
50282007-07-03 Daniel Jacobowitz <dan@codesourcery.com>
5029
5030 * remote-utils.c (look_up_one_symbol): Handle 'm' packets.
5031
ae13219e
DJ
50322007-07-02 Daniel Jacobowitz <dan@codesourcery.com>
5033
5034 * inferiors.c (change_inferior_id): Add comment.
5035 * linux-low.c (check_removed_breakpoint): Add an early
5036 prototype. Improve debug output.
5037 (linux_attach): Doc update.
5038 (linux_detach_one_process, linux_detach): Clean up before releasing
5039 each process.
5040 (send_sigstop, wait_for_sigstop): Improve comments and debug output.
5041 * linux-low.h (struct process_info): Doc improvement.
5042 * mem-break.c (delete_all_breakpoints): New.
5043 * mem-break.h (delete_all_breakpoints): New prototype.
5044 * thread-db.c (find_first_thread): New.
5045 (thread_db_create_event): Call it instead of
5046 thread_db_find_new_threads. Clean up unused variables.
5047 (maybe_attach_thread): Remove first thread handling.
5048 (thread_db_find_new_threads): Use find_first_thread.
5049 (thread_db_get_tls_address): Likewise.
5050
4105de34
DJ
50512007-06-27 Daniel Jacobowitz <dan@codesourcery.com>
5052
5053 * thread-db.c (thread_db_find_new_threads): Add prototype.
5054 (thread_db_create_event): Check for the main thread before adding
5055 a new thread.
5056 (maybe_attach_thread): Only enable event reporting if TID == 0.
5057 (thread_db_get_tls_address): Check for new threads.
5058
2b876972
DJ
50592007-06-20 Daniel Jacobowitz <dan@codesourcery.com>
5060
5061 * linux-low.c (linux_create_inferior): Try execv before execvp.
5062 * spu-low.c (spu_create_inferior): Likewise.
5063
7a245884
DJ
50642007-06-13 Mike Frysinger <vapier@gentoo.org>
5065
5066 * linux-low.c (linux_create_inferior): Change execv to execvp.
5067 * spu-low.c (spu_create_inferior): Likewies.
5068
117ce543
DJ
50692007-06-13 Daniel Jacobowitz <dan@codesourcery.com>
5070
5071 * Makefile.in (clean): Clean new files instead of deleted ones.
5072 (reg-mips.o, reg-mips.c, reg-mips64.o, reg-mips64.c): Delete.
5073 (mips-linux.o, mips-linux.c, mips64-linux.o, mips64-linux.c): New
5074 rules.
5075 * configure.srv: Specify XML files and new regformats for MIPS and
5076 MIPS64 GNU/Linux.
5077 * linux-mips-low.c (mips_num_regs): Set to only used registers.
5078 (mips_regmap): Do not fetch $0. Remove unused registers. Add
5079 an entry for the restart register.
5080 (mips_cannot_fetch_register, mips_cannot_store_register)
5081 (mips_reinsert_addr, mips_fill_fpregset, mips_store_fpregset): Update
5082 register names to match the XML descriptions.
5083 (mips_fill_gregset, mips_store_gregset): Likewise. Handle the
5084 restart register instead of $0.
5085
0e7f50da
UW
50862007-06-12 Ulrich Weigand <uweigand@de.ibm.com>
5087 Markus Deuling <deuling@de.ibm.com>
5088
5089 * remote-utils.c (decode_xfer_write): New function.
5090 * server.h (decode_xfer_write): Add prototype.
5091 * server.c (handle_query): Add PACKET_LEN argument. Support
5092 qXfer:spu:read and qXfer:spu:write packets.
5093 (main): Pass packet_len to handle_query.
5094 * spu-low.c (spu_target_ops): Add spu_proc_xfer_spu.
5095 * target.h (target_ops): Add qxfer_spu.
5096
374c1d38
UW
50972007-06-12 Ulrich Weigand <uweigand@de.ibm.com>
5098
5099 * spu-low.c (spu_proc_xfer_spu): Do not return failure when
5100 accessing non-seekable spufs files.
5101
bb63802a
UW
51022007-05-16 Markus Deuling <deuling@de.ibm.com>
5103
889bf7c5 5104 * server.c (handle_query): Add reply for qC packet.
bb63802a 5105
7390519e
PA
51062007-05-10 Pedro Alves <pedro_alves@portugalmail.pt>
5107 Leo Zayas <lerele@champenstudios@com>
5108
5109 * server.h (check_remote_input_interrupt_request): New function.
5110 * remote_utils.c (INVALID_DESCRIPTOR): New define.
5111 (remote_desc): Initialize with INVALID_DESCRIPTOR.
5112 (input_interrupt): Expose on USE_WIN32API too. Fix whitespace.
5113 (check_remote_input_interrupt_request): New function.
5114 * server.h (check_remote_input_interrupt_request): Declare.
3ecf0694 5115 * win32-low.c (winapi_DebugBreakProcess,
7390519e
PA
5116 winapi_GenerateConsoleCtrlEvent): New typedefs.
5117 (get_child_debug_event): Lower Win32 debug event polling from 1 sec
5118 to 250 ms.
5119 (win32_wait): Check for remote interrupt request
5120 with check_remote_input_interrupt_request.
5121 (win32_request_interrupt): New function.
5122 (win32_target_op): Set request_interrupt to win32_request_interrupt.
5123
34b34921
PA
51242007-05-10 Pedro Alves <pedro_alves@portugalmail.pt>
5125
5126 * win32-low.c (debug_registers_changed,
5127 debug_registers_used, CONTEXT_EXTENDED_REGISTERS,
5128 CONTEXT_FLOATING_POINT, CONTEXT_DEBUG_REGISTERS,
5129 CONTEXT_DEBUGGER, CONTEXT_DEBUGGER_DR): Delete.
5130 (thread_rec): Get context using the low target.
5131 (child_add_thread): Call thread_added on the low target,
5132 which does the same thing.
5133 (regptr): Delete.
5134 (do_initial_child_stuff): Remove debug registers references.
5135 Set context using the low target. Resume threads after
5136 setting the contexts.
5137 (child_continue): Remove dead variable. Remove debug
5138 registers references.
5139 (child_fetch_inferior_registers): Go through the low target.
5140 (do_child_store_inferior_registers): Remove.
5141 (child_store_inferior_registers): Go through the low target.
5142 (win32_resume): Remove debug registers references.
5143 Set context using the low target.
5144 (handle_exception): Change return type to void. Don't record
5145 context here. Set status to TARGET_WAITKIND_SPURIOUS on a
5146 first chance exception.
889bf7c5 5147 (get_child_debug_event): Change return type to void. Remove
34b34921
PA
5148 goto loop. Always return after waiting for debug event.
5149 (win32_wait): Convert to switch statement. Handle spurious
5150 events.
5151
5152 * win32-i386-low.c (debug_registers_changed,
5153 debug_registers_used): New.
5154 (initial_stuff): Rename to ...
5155 (i386_initial_stuff): ... this. Clear debug registers
5156 state variables.
5157 (store_debug_registers): Delete.
5158 (i386_get_thread_context): New.
5159 (load_debug_registers): Delete.
5160 (i386_set_thread_context): New.
5161 (i386_thread_added): New.
5162 (single_step): Rename to ...
5163 (i386_single_step): ... this.
5164 (do_fetch_inferior_registers): Rename to ...
5165 (i386_fetch_inferior_register): ... this.
5166 (i386_store_inferior_register): New.
5167 (the_low_target): Adapt to new interface.
5168
5169 * win32-arm-low.c (CONTEXT_FLOATING_POINT): Define.
5170 (arm_get_thread_context): New.
5171 (arm_set_thread_context): New.
5172 (regptr): New.
5173 (do_fetch_inferior_registers): Rename to ...
5174 (arm_fetch_inferior_register): ... this.
5175 (arm_store_inferior_register): New.
5176 (arm_wince_breakpoint): Reimplement as unsigned long.
5177 (arm_wince_breakpoint_len): Define.
5178 (the_low_target): Adapt to new interface.
5179
5180 * win32-low.h (target_ops): Remove regmap, store_debug_registers and
5181 load_debug_registers. Add get_thread_context, set_thread_context,
5182 thread_added and store_inferior_register. Rename
5183 fetch_inferior_registers to fetch_inferior_register.
5184 (regptr): Remove declaration.
5185
dd6953e1
PA
51862007-05-10 Pedro Alves <pedro_alves@portugalmail.pt>
5187
5188 * linux-low.c (linux_detach): Change return type to int. Return 0.
5189 * spu-low.c (spu_detach): Likewise.
5190
444d6139
PA
51912007-05-10 Pedro Alves <pedro_alves@portugalmail.pt>
5192
5193 * target.h (target_ops): Change return type of detach to int.
5194 Add join.
5195 (join_inferior): New.
5196 * server.c (main): Don't skip detach support on mingw32.
5197 If the inferior doesn't support detaching return error.
5198 Call join_inferior instead of using waitpid.
5199 * linux-low.c (linux_join): New.
5200 (linux_target_op): Add linux_join.
5201 * spu-low.c (spu_join): New.
5202 (spu_target_ops): Add spu_join.
5203 * win32-low.c (win32_detach): Adapt to new interface.
5204 Reopen current_process_handle before detaching. Issue a child
5205 resume before detaching.
5206 (win32_join): New.
5207 (win32_target_op): Add win32_join.
5208
1d5315fe
PA
52092007-05-10 Pedro Alves <pedro_alves@portugalmail.pt>
5210
5211 * win32-low.c (win32-attach): Fix return value.
5212 * target.h (target_ops): Describe ATTACH return values.
5213
bf914831
PA
52142007-05-10 Pedro Alves <pedro_alves@portugalmail.pt>
5215
5216 * win32-low.c (GETPROCADDRESS): Define.
5217 (winapi_DebugActiveProcessStop): Add WINAPI. typedef as pointer.
5218 (winapi_DebugSetProcessKillOnExit): Likewise.
5219 (win32_create_inferior): Force usage of ansi CreateProcessA.
5220 (win32_attach): Use GETPROCADDRESS.
5221 (win32_detach): Likewise.
5222
f72f3e60
PA
52232007-05-10 Pedro Alves <pedro_alves@portugalmail.pt>
5224
5225 * win32-low.c (win32_wait): Don't use WSTOPSIG.
5226
ed50f18f
PA
52272007-03-30 Pedro Alves <pedro_alves@portugalmail.pt>
5228
5229 * win32-low.c: Commit leftover changes from 2007-03-29.
5230
0c2ead7e
DJ
52312007-03-30 Daniel Jacobowitz <dan@codesourcery.com>
5232
5233 * i387-fp.c (struct i387_fsave, struct i387_fxsave): Make 16-bit
5234 fields short instead of int. Add explicit padding.
5235 (i387_cache_to_fsave): Remove unnecessary casts.
5236 (i387_fsave_to_cache): Doc fix.
5237 (i387_cache_to_fxsave): Remove unnecessary casts and masking.
5238
73725ff3
DJ
52392007-03-30 Daniel Jacobowitz <dan@codesourcery.com>
5240
5241 * i387-fp.c (i387_cache_to_fxsave): Reinitialize val2 before use.
5242 (i387_fxsave_to_cache): Check fp->ftag while building ftag value.
5243
d99f33d8
PA
52442007-03-29 Pedro Alves <pedro_alves@portugalmail.pt>
5245
5246 * configure.srv (arm*-*-mingw32ce*): Move near the other
5247 arm targets.
5248
68070c10
PA
52492007-03-29 Pedro Alves <pedro_alves@portugalmail.pt>
5250
2482afc6 5251 * configure.ac: Add errno checking.
68070c10
PA
5252 (AC_CHECK_HEADERS): Add errno.h, fcntl.h, signal.h,
5253 sys/file.h and malloc.h.
5254 (AC_CHECK_DECLS): Add perror.
5255 (srv_mingwce): Handle.
2482afc6 5256 * configure.srv (i[34567]86-*-cygwin*): Add
68070c10
PA
5257 win32-i386-low.o to srv_tgtobj.
5258 (i[34567]86-*-mingw*): Likewise.
5259 (arm*-*-mingw32ce*): Add case.
5260 * gdbreplay.c [HAVE_SYS_FILE_H, HAVE_SIGNAL_H,
5261 HAVE_FCNTL_H, HAVE_ERRNO_H, HAVE_MALLOC_H]: Check.
5262 [__MINGW32CE__] (strerror): New function.
5263 [__MINGW32CE__] (errno): Define to GetLastError.
5264 [__MINGW32CE__] (COUNTOF): New macro.
5265 (remote_open): Remove extra close call.
5266 * mem-break.c (delete_breakpoint_at): New function.
5267 * mem-break.h (delete_breakpoint_at): Declare.
5268 * remote-utils.c [HAVE_SYS_FILE_H, HAVE_SIGNAL_H,
5269 HAVE_FCNTL_H, HAVE_UNISTD_H, HAVE_ERRNO_H]: Check.
5270 [USE_WIN32API] (read, write): Add char* casts.
5271 * server.c [HAVE_UNISTD_H, HAVE_SIGNAL_H]: Check.
5272 * server.h: Include wincecompat.h on Windows CE.
5273 [HAVE_ERRNO_H]: Check.
5274 (perror): Declare if not declared.
5275 * utils.c: Add stdlib.h, errno.h and malloc.h includes.
5276 (perror_with_name): Remove errno declaration.
5277 * wincecompat.h: New.
5278 * wincecompat.c: New.
5279 * win32-low.h: New.
5280 * win32-arm-low.c: New.
5281 * win32-i386-low.c: New.
5282 (win32-low.c): Include mem-break.h and win32-low.h, and winnt.h.
5283 (OUTMSG2): Make it safe.
5284 (_T): New macro.
5285 (COUNTOF): New macro.
5286 (NUM_REGS): Get it from the low target.
5287 (CONTEXT_EXTENDED_REGISTERS, CONTEXT_FLOATING_POINT,
5288 CONTEXT_DEBUG_REGISTERS): Add fallbacks to 0.
5289 (thread_rec): Let low target handle debug registers.
5290 (child_add_thread): Likewise.
5291 (child_init_thread_list): Likewise.
5292 (continue_one_thread): Likewise.
5293 (regptr): New.
5294 (do_child_fetch_inferior_registers): Move to ...
5295 * win32-i386-low.c: ... here, and rename to ...
5296 (do_fetch_inferior_registers): ... this.
889bf7c5 5297 * win32-low.c (child_fetch_inferior_registers):
68070c10
PA
5298 Go through the low target.
5299 (do_child_store_inferior_registers): Use regptr.
5300 (strwinerror): New function.
5301 (win32_create_inferior): Handle Windows CE.
5302 Use strwinerror instead of strerror on Windows error
5303 codes. Add program to the error output.
5304 Don't close the main thread handle on Windows CE.
5305 (win32_attach): Use coredll.dll on Windows CE.
5306 (win32_kill): Close current process and current
5307 thread handles.
5308 (win32_detach): Use coredll.dll on Windows CE.
5309 (win32_resume): Let low target handle debug registers, and
5310 step request.
5311 (handle_exception): Add/Remove initial breakpoint. Avoid
5312 non-existant WSTOPSIG on Windows CE.
5313 (win32_read_inferior_memory): Cast to remove warning.
5314 (win32_arch_string): Go through the low target.
5315 (initialize_low): Call set_breakpoint_data with the low
5316 target's breakpoint.
5317 * win32-low.c (dr, FLAG_TRACE_BIT, FCS_REGNUM,
5318 FOP_REGNUM, mappings): Move to ...
5319 * win32-i386-low.c: ... here.
5320 * win32-low.c (win32_thread_info): Move to ...
5321 * win32-low.h: ... here.
5322 * Makefile.in (SFILES): Add win32-low.c, win32-i386-low.c,
5323 win32-arm-low.c and wincecompat.c.
5324 (all:): Add $EXEEXT.
5325 (install-only:): Likewise.
5326 (gdbserver:): Likewise.
5327 (gdbreplay:): Likewise.
5328 * config.in: Regenerate.
5329 * configure: Regenerate.
5330
41093d81
PA
53312007-03-28 Pedro Alves <pedro_alves@portugalmail.pt>
5332
5333 * win32-low.c: Rename typedef thread_info to
5334 win32_thread_info throughout.
5335
544afa54
PA
53362007-03-28 Pedro Alves <pedro_alves@portugalmail.pt>
5337
5338 * win32-i386-low.c: Rename to ...
5339 * win32-low.c: ... this.
5340 * configure.srv: Replace win32-i386-low.o with win32-low.o.
5341 * Makefile.in: Likewise.
5342
bce7165d
PA
53432007-03-27 Pedro Alves <pedro_alves@portugalmail.pt>
5344
5345 * remote-utils.c (monitor_output): Constify msg parameter.
5346 * server.h (monitor_output): Likewise.
5347 * win32-i386-low.c (handle_output_debug_string): New.
5348 (win32_kill): Handle OUTPUT_DEBUG_STRING_EVENT events using
5349 handle_output_debug_string.
5350 (get_child_debug_event): Likewise.
5351
506c7aa0
DJ
53522007-03-27 Mat Hostetter <mat@lcs.mit.edu>
5353
5354 * server.c (main): Correct strtoul check.
5355
42c81e2a
DJ
53562007-03-27 Jon Ringle <jon@ringle.org>
5357
5358 * linux-low.c: Check __ARCH_HAS_MMU__ also.
5359
9453113a
DJ
53602007-03-27 Brooks Moses <brooks.moses@codesourcery.com>
5361
5362 * Makefile.in: Add dummy "pdf" and "install-pdf" targets.
5363
64a69107
DJ
53642007-02-27 Daniel Jacobowitz <dan@codesourcery.com>
5365
5366 * terminal.h: Check HAVE_SGTTY_H.
5367
53682007-02-27 Mat Hostetter <mat@lcs.mit.edu>
6f8486da
DJ
5369
5370 * remote-utils.c (remote_open): Print out the assigned port number.
5371
c74d0ad8
DJ
53722007-02-26 Daniel Jacobowitz <dan@codesourcery.com>
5373
5374 * remote-utils.c (monitor_output): New function.
5375 * server.c (debug_threads): Define here.
5376 (monitor_show_help): New function.
5377 (handle_query): Handle qRcmd.
5378 (main): Do not handle 'd' packet.
5379 * server.h (debug_threads, remote_debug, monitor_output): Declare.
5380 * linux-low.c, spu-low.c, win32-i386-low.c: Remove definitions
5381 of debug_threads.
5382
de7c3b4a
PA
53832007-02-25 Pedro Alves <pedro_alves@portugalmail.pt>
5384
5385 * Makefile.in (EXEEXT): New.
5386 (clean): Use $(EXEEXT).
5387
ef57601b
PA
53882007-02-25 Pedro Alves <pedro_alves@portugalmail.pt>
5389
5390 * target.h (target_ops): Rename send_signal to request_interrupt,
5391 and remove enum target_signal parameter.
5392 * linux-low.c (linux_request_interrupt): Rename from
5393 linux_send_signal, and always send SIGINT.
5394 * spu-low.c (spu_request_interrupt): Rename from spu_send_signal,
5395 and always send SIGINT.
5396 * remote-utils.c (putpkt_binary): Call request_interrupt, instead
5397 of send_signal.
5398 (input_interrupt): Likewise.
5399
820f2bda
PA
54002007-02-25 Pedro Alves <pedro_alves@portugalmail.pt>
5401
5402 * server.c (get_features_xml): Check if target implemented
5403 arch_string.
5404 * win32-i386-low.c (win32_arch_string): New.
5405 (win32_target_ops): Add win32_arch_string as arch_string member.
5406
ab39bf24
UW
54072007-02-22 Markus Deuling <deuling@de.ibm.com>
5408
5409 * spu-low.c (spu_arch_string): New.
5410 (spu_target_ops): Add spu_arch_string.
5411
61ff6e04
DJ
54122007-02-16 Daniel Jacobowitz <dan@codesourcery.com>
5413
5414 * remote-utils.c: Remove HAVE_TERMINAL_H check.
5415 * configure.ac: Do not check for terminal.h.
5416 * configure, config.in: Regenerated.
5417
fb1e4ffc
DJ
54182007-02-08 Daniel Jacobowitz <dan@codesourcery.com>
5419
5420 * Makefile.in (OBS): Add $(XML_BUILTIN).
5421 (XML_DIR, XML_TARGET, XML_FILES, XML_BUILTIN): New.
5422 (clean): Update.
5423 (target.xml, xml-builtin.c, stamp-xml, arm-with-iwmmxt.o)
5424 (arm-with-iwmmxt.c): New.
5425 * config.in, configure: Regenerate.
5426 * configure.ac: Check for iWMMXt. Handle srv_xmltarget,
5427 srv_xmlbuiltin, and srv_xmlfiles. Define USE_XML.
5428 * configure.srv: Mention srv_xmltarget and srv_xmlfiles.
5429 (arm*-*-linux*): Add iWMMXt and regset support.
5430 * linux-arm-low.c (PTRACE_GETWMMXREGS, PTRACE_SETWMMXREGS): Define.
5431 (arm_fill_gregset, arm_store_gregset, arm_fill_wmmxregset)
5432 (arm_store_wmmxregset, target_regsets): New.
5433 * server.c (get_features_xml): Take annex argument. Check builtin
5434 XML documents.
5435 (handle_query): Handle multiple annexes.
5436
0f48aa01
DJ
54372007-01-29 Daniel Jacobowitz <dan@codesourcery.com>
5438
5439 * remote-utils.c [USE_WIN32API] (read, write): Define.
5440 (putpkt_binary, input_interrupt, readchar, getpkt): Use read and
5441 write.
5442
23181151
DJ
54432007-01-09 Daniel Jacobowitz <dan@codesourcery.com>
5444
5445 * linux-i386-low.c (the_low_target): Set arch_string.
5446 * linux-x86-64-low.c (the_low_target): Likewise.
5447 * linux-low.c (linux_arch_string): New.
5448 (linux_target_ops): Add it.
5449 * linux-low.h (struct linux_target_ops): Add arch_string.
5450 * server.c (write_qxfer_response): Use const void * for DATA.
5451 (get_features_xml): New.
5452 (handle_query): Handle qXfer:features:read. Report it for qSupported.
5453 * target.h (struct target_ops): Add arch_string method.
5454
9d606399
DJ
54552007-01-03 Denis Pilat <denis.pilat@st.com>
5456 Daniel Jacobowitz <dan@codesourcery.com>
5457
5458 * linux-low.c (linux_kill): Handle being called with no threads.
5459 * win32-i386-low.c (win32_kill): Likewise.
5460 (get_child_debug_event): Clear current_process_handle.
5461
54622006-12-30 Denis PILAT <denis.pilat@st.com>
8264bb58
DJ
5463 Daniel Jacobowitz <dan@codesourcery.com>
5464
5465 * remote-utils.c (remote_open): Check the type of specified
5466 serial port devices before opening them.
5467 * server.c (main): Kill the inferior if an error occurs during
5468 the first remote_open.
5469
a5e13d24
DJ
54702006-12-05 Markus Deuling <deuling@de.ibm.com>
5471
5472 * README: Update supported targets.
5473
186947f7
DJ
54742006-11-28 Daniel Jacobowitz <dan@codesourcery.com>
5475
5476 * Makefile.in (clean): Remove reg-mips64.c.
5477 (reg-mips64.c, reg-mips64.o): New rules.
5478 * configure.srv: Handle mips64. Include regset support for mips.
5479 * linux-mips-low.c (union mips_register): New.
5480 (mips_get_pc, mips_set_pc, mips_reinsert_addr): Use it.
5481 (mips_breakpoint, mips_breakpoint_at): Use int.
5482 (mips_collect_register, mips_supply_register)
5483 (mips_collect_register_32bit, mips_supply_register_32bit)
5484 (mips_fill_gregset, mips_store_gregset, mips_fill_fpregset)
5485 (mips_store_fpregset, target_regsets): New.
5486 * thread-db.c (thread_db_get_tls_address): Use uintptr_t.
5487
a13e2c95
UW
54882006-11-22 Ulrich Weigand <uweigand@de.ibm.com>
5489
5490 * configure.srv: Add target "spu*-*-*".
5491 * Makefile.in (clean): Remove reg-spu.c.
5492 (reg-spu.c, reg-spu.o, spu-low.o): Add dependencies.
5493 * spu-low.c: New file.
5494
cb7283db
DJ
54952006-11-16 Daniel Jacobowitz <dan@codesourcery.com>
5496
5497 * configure.ac: Correct td_thr_tls_get_addr test.
5498 * configure: Regenerated.
5499
89be2091
DJ
55002006-11-16 Daniel Jacobowitz <dan@codesourcery.com>
5501
5502 * linux-low.c (linux_wait_for_event): Reformat. Use the
5503 pass_signals array.
5504 * remote-utils.c (decode_address_to_semicolon): New.
5505 * server.c (pass_signals, handle_general_set): New.
5506 (handle_query): Mention QPassSignals for qSupported.
5507 (main): Call handle_general_set.
5508 * server.h (pass_signals, decode_address_to_semicolon): New.
5509
000ef4f0
DJ
55102006-11-06 Daniel Jacobowitz <dan@codesourcery.com>
5511
5512 * server.c (handle_query): Correct error handling for read_auxv.
5513
b7149293
UW
55142005-10-19 Ulrich Weigand <uweigand@de.ibm.com>
5515
5516 * configure.srv [s390-*-linux*, s390x-*-linux*]: Set srv_linux_regsets
5517 and srv_linux_thread_db to yes.
5518 * linux-s390-low.c (s390_fill_gregset): New function.
5519 (target_regsets): Define data structure.
5520
dae5f5cf
DJ
55212006-10-17 Daniel Jacobowitz <dan@codesourcery.com>
5522
5523 * acinclude.m4 (SRV_CHECK_TLS_GET_ADDR): New.
5524 * configure.ac: Use it. Define HAVE_TD_THR_TLS_GET_ADDR.
5525 * config.in, configure: Regenerated.
5526 * inferiors.c (gdb_id_to_thread): New function.
5527 (gdb_id_to_thread_id): Use it.
5528 * linux-low.c (linux_target_ops): Use thread_db_get_tls_address.
5529 * linux-low.h (struct process_info): Add th member.
5530 (thread_db_get_tls_address): New prototype.
5531 * remote-utils.c (decode_address): Make non-static.
5532 * server.c (handle_query): Handle qGetTLSAddr.
5533 * server.h (gdb_id_to_thread, decode_address): New prototypes.
5534 * target.h (struct target_ops): Add get_tls_address.
5535 * thread-db.c (maybe_attach_thread): Save the thread handle.
5536 (thread_db_get_tls_address): New.
5537
32ca6d61
DJ
55382006-09-28 Daniel Jacobowitz <dan@codesourcery.com>
5539
5540 * linux-low.c (PTRACE_GETSIGINFO, PTRACE_SETSIGINFO): Define.
5541 (linux_resume_one_process): Take a siginfo_t *. Update all
5542 callers. Queue it if necessary. Use PTRACE_SETSIGINFO.
5543 (struct pending_signals): Add a siginfo_t.
5544 (linux_wait_for_process): Always set last_status.
5545 (linux_wait_for_event): Use PTRACE_GETSIGINFO.
5546 (linux_queue_one_thread): Use PTRACE_GETSIGINFO.
5547 * linux-low.h (struct process_info): Add last_status.
5548
5ffff7c1
DJ
55492006-09-21 Daniel Jacobowitz <dan@codesourcery.com>
5550
5551 * remote-utils.c (try_rle): New function.
5552 (putpkt_binary): Use it.
5553
8695c747
DJ
55542006-08-19 Daniel Jacobowitz <dan@codesourcery.com>
5555
5556 * Makefile.in (clean): Clean reg-x86-64-linux.c.
5557 (reg-x86-64-linux.o, reg-x86-64-linux.c): New.
5558 * configure.srv (x86_64-*-linux*): Use reg-x86-64-linux.o.
5559 * linux-x86-64-low.c (x86_64_regmap): Include ORIG_RAX.
5560 (x86_64_fill_gregset, x86_64_store_gregset): Skip floating
5561 point registers.
5562
290fadea
RS
55632006-08-08 Richard Sandiford <richard@codesourcery.com>
5564
5565 * server.c (terminal_fd): New variable.
5566 (old_foreground_pgrp): Likewise.
5567 (restore_old_foreground_pgrp): New function.
5568 (start_inferior): Record the terminal file descriptor in terminal_fd
5569 and its original foreground group in old_foreground_pgrp. Register
5570 restore_old_foreground_pgrp with atexit().
5571
9f2e1e63
DJ
55722006-07-26 Daniel Jacobowitz <dan@codesourcery.com>
5573
5574 * server.c (handle_query): Correct qPart to qXfer.
5575
b80864fb
DJ
55762006-07-22 Daniel Jacobowitz <dan@codesourcery.com>
5577
5578 * configure.ac: Check for more headers which are missing on
5579 Windows. Automatically supply -lwsock32 and USE_WIN32API.
5580 * configure.srv: Add Cygwin and mingw32.
5581 * remote-utils.c: Don't include headers unconditionally which
5582 are missing on mingw32. Include <winsock.h> for mingw32.
5583 (remote_open): Adjust for mingw32 support. Flush
5584 standard error after writing to it.
5585 (remote_close, putpkt_binary, input_interrupt, block_async_io)
5586 (unblock_async_io, enable_async_io, disable_async_io)
5587 (readchar, getpkt): Update for Winsock support.
5588 (prepare_resume_reply): Expect a protocol signal number.
5589 * server.c: Disable <sys/wait.h> on mingw32.
5590 (start_inferior): Adjust for mingw32 support. Flush
5591 standard error after writing to it.
5592 (attach_inferior): Likewise. Use protocol signal
5593 numbers.
5594 (main): Skip 'D' packet on mingw32. Use protocol signal numbers
5595 and names.
5596 * win32-i386-low.c: New file.
5597 * Makefile.in (XM_CLIBS): Set.
5598 (gdbserver, gdbreplay): Use $(INTERNAL_CFLAGS).
5599 (win32-i386-low.o): New dependency rule.
5600 * linux-low.c (linux_wait): Use target signal numbers.
5601 * target.h (struct target_ops): Doc fix.
5602 * server.h (target_signal_to_name): New prototype.
5603 * gdbreplay.c: Don't include headers unconditionally which
5604 are missing on mingw32. Include <winsock.h> for mingw32.
5605 (remote_close, remote_open): Adjust for Winsock support.
5606 * configure, config.in: Regenerated.
5607
0876f84a
DJ
56082006-07-12 Daniel Jacobowitz <dan@codesourcery.com>
5609
5610 * server.c (decode_xfer_read, write_qxfer_response): New.
5611 (handle_query): Take a packet length argument. Handle
5612 qXfer:auxv:read instead of qPart:auxv:read. Mention it in
5613 the qSupported response.
5614 (main): Update call to handle_query.
5615
01f9e8fa
DJ
56162006-06-22 Daniel Jacobowitz <dan@codesourcery.com>
5617
5618 * remote-utils.c (remote_escape_output, remote_unescape_input): New.
5619 (putpkt_binary): Renamed from putpkt and adjusted for binary
5620 data.
5621 (putpkt): New wrapper for putpkt_binary.
5622 (readchar): Don't mask off the high bit.
5623 (decode_X_packet): New function.
5624 * server.c (main): Call putpkt_binary if a handler sets the packet
5625 length. Save the length of the incoming packet. Handle 'X'.
5626 * server.h (gdb_byte, remote_escape_output, decode_X_packet): New.
5627
be2a5f71
DJ
56282006-06-21 Daniel Jacobowitz <dan@codesourcery.com>
5629
5630 * server.c (handle_query): Handle qSupported.
5631
ea025f5f
DJ
56322006-05-30 Daniel Jacobowitz <dan@codesourcery.com>
5633
5634 * remote-utils.c (all_symbols_looked_up): New variable.
5635 (look_up_one_symbol): Check it.
5636 * server.h (look_up_one_symbol): New declaration.
5637 * thread-db.c (thread_db_init): Set all_symbols_looked_up.
5638
9308fc88
DJ
56392006-05-30 Daniel Jacobowitz <dan@codesourcery.com>
5640
5641 * Makefile.in (linux-arm-low.o): Update dependencies.
66f338c7 5642 * linux-arm-low.c: Include "gdb_proc_service.h".
9308fc88
DJ
5643 (PTRACE_GET_THREAD_AREA): Define.
5644 (ps_get_thread_area): New function.
5645
52fb6437
NS
56462006-05-09 Nathan Sidwell <nathan@codesourcery.com>
5647
5648 * configure.srv (m68k*-*-uclinux*): New target.
5649 * linux-low.c (linux_create_inferior): Use vfork on mmuless systems.
5650 (linux_resume_one_process): Remove extraneous cast.
5651 (linux_read_offsets): New.
5652 (linux_target_op): Add linux_read_offsets on mmuless systems.
5653 * server.c (handle_query): Add qOffsets logic.
5654 * target.h (struct target_ops): Add read_offsets.
5655
21b0f40c
DJ
56562006-03-15 Daniel Jacobowitz <dan@codesourcery.com>
5657
5658 * linux-mips-low.c: Include <sys/ptrace.h> and "gdb_proc_service.h".
5659 (PTRACE_GET_THREAD_AREA): Define.
5660 (ps_get_thread_area): New function.
5661 * Makefile.in (linux-i386-low.o, linux-mips-low.o)
5662 (linux-x86-64-low.o): Update.
5663
0050a760
DJ
56642006-03-15 Daniel Jacobowitz <dan@codesourcery.com>
5665
5666 * configure.ac: Remove checks for prfpregset_t.
5667 * gdb_proc_service.h: New file.
5668 * linux-i386-low.c, linux-x86-64-low.c, thread-db.c: Use the
5669 new "gdb_proc_service.h".
5670 * proc-service.c: Likewise.
5671 (ps_pglobal_lookup, ps_pdread, ps_pdwrite): Use psaddr_t.
5672 (ps_lgetfpregs, ps_lsetfpregs): Use a void* argument.
5673 * Makefile.in (gdb_proc_service_h): Updated.
5674 * configure, config.in: Regenerated.
5675
b92a518e
DJ
56762006-03-03 Daniel Jacobowitz <dan@codesourcery.com>
5677
5678 * remote-utils.c (prepare_resume_reply): Move declaration
5679 of gdb_id_from_wait to the top of the block.
5680
545587ee
DJ
56812006-02-15 Daniel Jacobowitz <dan@codesourcery.com>
5682
5683 * linux-low.c (regsets_store_inferior_registers): Read the regset
5684 from the target before filling it.
5685
9db87ebd
DJ
56862006-02-08 Daniel Jacobowitz <dan@codesourcery.com>
5687
5688 * server.c (attach_inferior): Return SIGTRAP for a successful
5689 attach.
5690
dd24457d
DJ
56912006-02-01 Daniel Jacobowitz <dan@codesourcery.com>
5692
5693 * Makefile.in (OBS): Add version.o.
5694 (STAGESTUFF): Delete.
5695 (version.o): Add dependencies.
5696 (version.c): Replace rule.
5697 (clean): Remove version.c.
5698 * server.c (gdbserver_version): New.
5699 (gdbserver_usage): Use printf.
5700 (main): Handle --version and --help.
5701 * server.h (version, host_name): Add declarations.
5702
6f0f660e
EZ
57032005-12-23 Eli Zaretskii <eliz@gnu.org>
5704
889bf7c5
PA
5705 * linux-arm-low.c:
5706 * linux-arm-low.c:
5707 * inferiors.c:
5708 * i387-fp.h:
5709 * i387-fp.c:
5710 * gdbreplay.c:
5711 * regcache.c:
5712 * proc-service.c:
5713 * mem-break.h:
5714 * mem-break.c:
5715 * linux-x86-64-low.c:
5716 * linux-sh-low.c:
5717 * linux-s390-low.c:
5718 * linux-ppc64-low.c:
5719 * linux-ppc-low.c:
5720 * linux-mips-low.c:
5721 * linux-m68k-low.c:
5722 * linux-m32r-low.c:
5723 * linux-low.h:
5724 * linux-low.c:
5725 * linux-ia64-low.c:
5726 * linux-i386-low.c:
5727 * linux-crisv32-low.c:
5728 * thread-db.c:
5729 * terminal.h:
5730 * target.h:
5731 * target.c:
5732 * server.h:
5733 * server.c:
5734 * remote-utils.c:
5735 * regcache.h:
5736 * utils.c:
5737 * Makefile.in:
5738 * configure.ac:
6f0f660e
EZ
5739 * gdbserver.1: Add (C) after Copyright. Update the FSF
5740 address.
5741
9d1fb177
DJ
57422005-11-13 Daniel Jacobowitz <dan@codesourcery.com>
5743
5744 * linux-arm-low.c (arm_eabi_breakpoint): New variable.
5745 (arm_breakpoint_at): Recognize both breakpoints.
5746 (the_low_target): Use the correct breakpoint instruction.
5747
011a70c2
DJ
57482005-11-02 Daniel Jacobowitz <dan@codesourcery.com>
5749
5750 * configure.srv (x86_64-*-linux*): Turn on thread_db support.
5751 * linux-x86-64-low.c (x86_64_breakpoint, x86_64_breakpoint_len)
5752 (x86_64_get_pc, x86_64_set_pc, x86_64_breakpoint_at): New.
5753 (the_low_target): Update.
5754
7fb85e41
AS
57552005-10-25 Andreas Schwab <schwab@suse.de>
5756
5757 * server.c (main): Allocate mem_buf with PBUFSIZ bytes.
5758
5759 * linux-ia64-low.c (ia64_regmap): Remove NAT registers.
5760 (ia64_num_regs): Reduce to 462.
5761
3db0444b
DJ
57622005-09-17 Daniel Jacobowitz <dan@codesourcery.com>
5763
5764 * acinclude.m4: Correct quoting.
5765 * aclocal.m4: Regenerated.
5766
5767 Suggested by SZOKOVACS Robert <szo@ies.hu>:
5768 * thread-db.c (thread_db_err_str): Handle TD_VERSION.
5769 (thread_db_init): Call thread_db_err_str.
5770 * configure.ac: Check for TD_VERSION.
5771 * config.in, configure: Regenerated.
5772
bee0189a
DJ
57732005-07-31 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
5774
5775 * server.h (error, fatal, warning): Add ATTR_FORMAT.
5776
e9d25b98
DJ
57772005-07-13 Daniel Jacobowitz <dan@codesourcery.com>
5778
5779 * configure.ac: Define HAVE_LINUX_REGSETS even if PTRACE_GETREGS
5780 is not available. Define HAVE_PTRACE_GETREGS if it is.
5781 * config.in, configure: Regenerated.
5782 * configure.srv: Set srv_linux_regsets for PowerPC and PowerPC64.
5783 * linux-i386-low.c, linux-m68k-low.c: Update to use
5784 HAVE_PTRACE_GETREGS.
5785 * linux-low.c (regsets_fetch_inferior_registers)
5786 (regsets_store_inferior_registers): Only return 0 if we processed
5787 GENERAL_REGS.
5788 * linux-ppc-low.c (ppc_fill_gregset, target_regsets): New.
5789 * linux-ppc64-low.c (ppc_fill_gregset, target_regsets): New.
5790
a06660f7
DJ
57912005-07-13 Daniel Jacobowitz <dan@codesourcery.com>
5792
5793 * inferiors.c (struct thread_info): Add gdb_id.
5794 (add_thread): Add gdb_id argument.
5795 (thread_id_to_gdb_id, thread_to_gdb_id, gdb_id_to_thread_id): New.
5796 * linux-low.c (linux_create_inferior, linux_attach_lwp): Update
5797 calls to add_thread.
5798 * remote-utils.c (prepare_resume_reply: Use thread_to_gdb_id.
5799 * server.c (handle_query): Use thread_to_gdb_id.
5800 (handle_v_cont, main): Use gdb_id_to_thread_id.
5801 * server.h (add_thread): Update prototype.
5802 (thread_id_to_gdb_id, thread_to_gdb_id, gdb_id_to_thread_id): New
5803 prototypes.
5804
5a1f5858
DJ
58052005-07-13 Daniel Jacobowitz <dan@codesourcery.com>
5806
5807 * linux-low.c (fetch_register, usr_store_inferior_registers): Handle
5808 left-padded registers.
5809 * linux-low.h (struct linux_target_ops): Add left_pad_xfer.
5810 * linux-ppc64-low.c (the_low_target): Set left_pad_xfer.
5811
e122f1f5
SE
58122005-07-01 Steve Ellcey <sje@cup.hp.com>
5813
5814 * configure.ac (BFD_NEED_DECLARATION): Replace with AC_CHECK_DECLS.
5815 * configure: Regenerate.
5816 * config.in: Regenerate.
5817 * server.h (NEED_DECLARATION_STRERROR):
5818 Replace with !HAVE_DECL_STRERROR.
5819
d592fa2f
DJ
58202005-06-16 Daniel Jacobowitz <dan@codesourcery.com>
5821
5822 * linux-low.c (linux_wait, linux_send_signal): Don't test
5823 an unsigned long variable for > 0 if it could be MAX_ULONG.
5824 * server.c (myresume): Likewise.
5825 * target.c (set_desired_inferior): Likewise.
5826
ccbd4912
MK
58272005-06-13 Mark Kettenis <kettenis@gnu.org>
5828
5829 * configure.ac: Simplify and improve check for socklen_t.
5830 * configure, config.in: Regenerate.
5831
f450004a
DJ
58322005-06-12 Daniel Jacobowitz <dan@codesourcery.com>
5833
5834 * acconfig.h: Remove.
5835 * configure.ac: Add a test for socklen_t. Use three-argument
5836 AC_DEFINE throughout.
5837 * config.in: Regenerated using autoheader 2.59.
5838 * configure: Regenerated.
5839
5840 * gdbreplay.c (socklen_t): Provide a default.
5841 (remote_open): Use socklen_t.
5842 * remote-utils.c (socklen_t): Provide a default.
5843 (remote_open): Use socklen_t.
5844 (convert_int_to_ascii, convert_ascii_to_int, decode_M_packet): Use
5845 unsigned char.
5846
5847 * i387-fp.c (struct i387_fsave, struct i387_fxsave): Use unsigned
5848 char for buffers.
5849 * linux-low.c (linux_read_memory, linux_write_memory)
5850 (linux_read_auxv): Likewise.
5851 * mem-break.c (breakpoint_data, set_breakpoint_data, check_mem_read)
5852 (check_mem_write): Likewise.
5853 * mem-break.h (set_breakpoint_data, check_mem_read, check_mem_write):
5854 Likewise.
5855 * regcache.c (struct inferior_rgcache_data, registers_to_string)
5856 (registers_from_string, register_data): Likewise.
5857 * server.c (handle_query, main): Likewise.
5858 * server.h (convert_ascii_to_int, convert_int_to_ascii)
5859 (decode_M_packet): Likewise.
5860 * target.c (read_inferior_memory, write_inferior_memory): Likewise.
5861 * target.h (struct target_ops): Update read_memory, write_memory,
5862 and read_auxv.
5863 (read_inferior_memory, write_inferior_memory): Update.
5864 * linux-low.h (struct linux_target_ops): Change type of breakpoint
5865 to unsigned char *.
5866 * linux-arm-low.c, linux-cris-low.c, linux-crisv32-low.c,
5867 linux-i386-low.c, linux-m32r-low.c, linux-m68k-low.c,
5868 linux-mips-low.c, linux-ppc-low.c, linux-ppc64-low.c,
5869 linux-s390-low.c, linux-sh-low.c: Update for changes in
5870 read_inferior_memory and the_low_target->breakpoint.
5871
eee84df1
DJ
58722005-05-28 Daniel Jacobowitz <dan@codesourcery.com>
5873
5874 * Makefile.in (SFILES): Add linux-ppc64-low.c.
5875 (linux-ppc64-low.o, reg-ppc64.c, reg-ppc64.o): New targets.
5876 * configure.srv: Add powerpc64-*-linux*.
5877 * linux-ppc64-low.c: New file.
5878
45b134e5
OF
58792005-05-23 Orjan Friberg <orjanf@axis.com>
5880
5881 * linux-cris-low.c: New file with support for CRIS.
5882 * linux-crisv32-low.c: Ditto for CRISv32.
5883 * Makefile.in (SFILES): Add linux-cris-low.c, linux-crisv32-low.c.
5884 (clean): Add reg-cris.c and reg-crisv32.c.
889bf7c5 5885 Add linux-cris-low.o, linux-crisv32-low.o, reg-cris.o, reg-cris.c,
45b134e5
OF
5886 reg-crisv32.o, and reg-crisv32.c to make rules.
5887 * configure.srv: Add cris-*-linux* and crisv32-*-linux* to list of
5888 recognized targets.
5889
48d93c75
UW
58902005-05-16 Ulrich Weigand <uweigand@de.ibm.com>
5891
5892 * linux-low.c (fetch_register): Ensure buffer size is a multiple
5893 of sizeof (PTRACE_XFER_TYPE).
5894 (usr_store_inferior_registers): Likewise. Zero out excess bytes.
5895
e013ee27
OF
58962005-05-12 Orjan Friberg <orjanf@axis.com>
5897
889bf7c5 5898 * target.h (struct target_ops): Add insert_watchpoint,
e013ee27
OF
5899 remove_watchpoint, stopped_by_watchpoint, stopped_data_address function
5900 pointers for hardware watchpoint support.
5901 * linux-low.h (struct linux_target_ops): Ditto.
5902 * linux-low.c (linux_insert_watchpoint, linux_remove_watchpoint)
5903 (linux_stopped_by_watchpoint, linux_stopped_data_address): New. Add
5904 to linux_target_ops.
5905 * remote-utils.c (prepare_resume_reply): Add watchpoint information to
5906 reply packet.
5907 * server.c (main): Recognize 'Z' and 'z' packets.
5908
b0ded00b
UW
59092005-05-10 Ulrich Weigand <uweigand@de.ibm.com>
5910
5911 * linux-s390-low.c (s390_breakpoint, s390_breakpoint_len): Define.
5912 (s390_get_pc, s390_set_pc, s390_breakpoint_at): New functions.
5913 (the_low_target): Add new members.
5914
8643e2ad
DJ
59152005-05-04 Daniel Jacobowitz <dan@codesourcery.com>
5916
5917 * proc-service.c (ps_lgetregs): Search all_processes instead of
5918 all_threads.
5919
fc620387
DJ
59202005-05-04 Daniel Jacobowitz <dan@codesourcery.com>
5921
5922 * server.c (start_inferior): Change return type to int.
5923 (attach_inferior): Change sigptr to int *.
5924 (handle_v_cont, handle_v_requests): Change signal to int *.
5925 (main): Change signal to int.
5926
59272005-04-15 Kei Sakamoto <sakamoto.kei@renesas.com>
7cfbc4a0
KI
5928
5929 * Makefile.in: Add linux-m32r-low.o, reg-m32r.c and reg-m32r.o.
5930 * configure.srv: Add m32r*-*-linux*.
5931 * linux-m32r-low.c: New file.
5932
e0e76420
DJ
59332005-03-04 Daniel Jacobowitz <dan@codesourcery.com>
5934
5935 * Makefile.in (stamp-h): Set CONFIG_HEADERS explicitly.
5936
a1928bad
DJ
59372005-03-03 Daniel Jacobowitz <dan@codesourcery.com>
5938
5939 * inferiors.c (change_inferior_id, add_thread, find_inferior_id):
5940 Take unsigned long arguments for PIDs.
5941 * linux-low.c (add_process, linux_attach_lwp, linux_attach)
5942 (linux_thread_alive, linux_wait_for_event, kill_lwp, send_sigstop)
5943 (wait_for_sigstop, linux_resume_one_process)
5944 (regsets_fetch_inferior_registers, linux_send_signal)
5945 (linux_read_auxv): Likewise. Update the types of variables holding
5946 PIDs. Update format string specifiers.
5947 * linux-low.h (struct process_info, linux_attach_lwp): Likewise.
5948 * remote-utils.c (prepare_resume_reply): Likewise.
5949 * server.c (cont_thread, general_thread, step_thread)
5950 (thread_from_wait, old_thread_from_wait, signal_pid): Change type to
5951 unsigned long.
5952 (handle_query): Update format specifiers.
5953 (handle_v_cont, main): Use strtoul for thread IDs.
5954 * server.h (struct inferior_list_entry): Use unsigned long for ID.
5955 (add_thread, find_inferior_id, change_inferior_id, cont_thread)
5956 (general_thread, step_thread, thread_from_wait)
5957 (old_thread_from_wait): Update.
5958 * target.h (struct thread_resume): Use unsigned long for THREAD.
5959 (struct target_ops): Use unsigned long for arguments to attach and
5960 thread_alive.
5961
dcdb98d2
DJ
59622005-02-24 Daniel Jacobowitz <dan@codesourcery.com>
5963
5964 * acinclude.m4: Include bfd/bfd.m4 directly.
5965 * configure.ac: Use AC_ARG_PROGRAM. Suggested by Aron Griffis
5966 <agriffis@toolchain.org>.
5967 * aclocal.m4, configure: Regenerated.
5968
bec39cab
AC
59692005-01-07 Andrew Cagney <cagney@gnu.org>
5970
5971 * configure.ac: Rename configure.in, require autoconf 2.59.
5972 * configure: Re-generate.
5973
434c4c77
DJ
59742004-12-08 Daniel Jacobowitz <dan@debian.org>
5975
5976 * acinclude.m4 (SRV_CHECK_THREAD_DB): Add ps_get_thread_area. Reset
5977 LIBS when finished.
5978 * aclocal.m4: Regenerated.
5979 * configure: Regenerated.
5980
db1d3e1b
AS
59812004-11-21 Andreas Schwab <schwab@suse.de>
5982
5983 * linux-m68k-low.c (m68k_num_gregs): Define.
5984 (m68k_fill_gregset, m68k_store_gregset, m68k_fill_fpregset)
5985 (m68k_store_fpregset, target_regsets) [HAVE_LINUX_REGSETS]: New.
5986 (m68k_breakpoint, m68k_breakpoint_len, m68k_get_pc, m68k_set_pc)
5987 (m68k_breakpoint_at): New. Add to the_low_target.
5988
5989 * configure.srv (m68*-*-linux*): Set srv_linux_regsets and
5990 srv_linux_thread_db to yes.
5991
43360365
JB
59922004-10-20 Joel Brobecker <brobecker@gnat.com>
5993
5994 * linux-x86-64-low.c (ARCH_SET_GS): Add definition if missing.
5995 (ARCH_SET_FS): Likewise.
5996 (ARCH_GET_FS): Likewise.
5997 (ARCH_GET_GS): Likewise.
5998
fd500816
DJ
59992004-10-16 Daniel Jacobowitz <dan@debian.org>
6000
6001 * linux-i386-low.c (ps_get_thread_area): New.
6002 * linux-x86-64-low.c (ps_get_thread_area): New.
6003 * linux-low.c: Include <sys/syscall.h>.
6004 (linux_kill_one_process): Don't kill the first thread here.
6005 (linux_kill): Kill the first thread here.
6006 (kill_lwp): New function.
6007 (send_sigstop, linux_send_signal): Use it.
6008 * proc-service.c: Clean up #ifdefs.
6009 (fpregset_info): Delete.
6010 (ps_lgetregs): Update and enable implementation.
6011 (ps_lsetregs, ps_lgetfpregs, ps_lsetfpregs): Remove disabled
6012 implementations.
6013 * remote-utils.c (struct sym_cache, symbol_cache): New.
6014 (input_interrupt): Print a clearer message.
6015 (async_io_enabled): New variable.
6016 (enable_async_io, disable_async_io): Use it. Update comments.
6017 (look_up_one_symbol): Use the symbol cache.
6018 * thread-db.c (thread_db_look_up_symbols): New function.
6019 (thread_db_init): Update comments. Call thread_db_look_up_symbols.
6020
f6de3c42
DJ
60212004-10-16 Daniel Jacobowitz <dan@debian.org>
6022
6023 * configure.in: Test for -rdynamic.
6024 * configure: Regenerated.
6025 * Makefile (INTERNAL_LDFLAGS): New.
6026 (gdbserver, gdbreplay): Use it.
6027
2c0fc042
AC
60282004-09-02 Andrew Cagney <cagney@gnu.org>
6029
6030 * Makefile.in (TAGS): Replace TM_FILE with DEPRECATED_TM_FILE.
6031
075b3282
DJ
60322004-03-23 Daniel Jacobowitz <drow@mvista.com>
6033
6034 * linux-low.c (linux_wait): Clear all_processes list also.
6035
fa6a77dc
DJ
60362004-03-12 Daniel Jacobowitz <drow@mvista.com>
6037
6038 * linux-low.c: Include <errno.h>. Remove extern declaration of
6039 errno.
6040
6d782a97
DJ
60412004-03-12 Daniel Jacobowitz <drow@mvista.com>
6042
6043 * gdbreplay.c, server.h, utils.c: Update copyright years.
6044
3a7fb99b
DJ
60452004-03-04 Nathan J. Williams <nathanw@wasabisystems.com>
6046
6047 * server.c (main): Print child status or termination signal from
6048 variable 'signal', not 'sig'.
6049
c3e735a6
DJ
60502004-03-04 Nathan J. Williams <nathanw@wasabisystems.com>
6051
6052 * linux-low.c (linux_read_memory): Change return type to
6053 int. Check for and return error from ptrace().
6054 * target.c (read_inferior_memory): Change return type to int. Pass
6055 back return status from the_target->read_memory().
6056 * target.h (struct target_ops): Adapt *read_memory() prototype.
6057 Update comment.
6058 (read_inferior_memory): Adapt prototype.
6059 * server.c (main): Return an error packet if
6060 read_inferior_memory() returns an error.
6061
a59d1c82
DJ
60622004-03-04 Daniel Jacobowitz <drow@mvista.com>
6063
6064 * Makefile.in (distclean): Remove config.h, stamp-h, and config.log.
6065 Unify with other clean targets.
6066
dc3f8883
DJ
60672004-02-29 Daniel Jacobowitz <drow@mvista.com>
6068
6069 * server.c (handle_v_cont): Call set_desired_inferior.
6070
89a208da
DJ
60712004-02-29 Daniel Jacobowitz <drow@mvista.com>
6072
6073 * remote-utils.c (prepare_resume_reply): Always supply "thread:".
6074
62ea82f5
DJ
60752004-02-29 Daniel Jacobowitz <drow@mvista.com>
6076
6077 * linux-low.c (linux_wait): Unblock async I/O.
6078 (linux_resume): Block and enable async I/O.
6079 * remote-utils.c (block_async_io, unblock_async_io): New functions.
6080 * server.h (block_async_io, unblock_async_io): Add prototypes.
6081
6910d122
DJ
60822004-02-29 Daniel Jacobowitz <drow@mvista.com>
6083
6084 * remote-utils.c (remote_open): Print a status notice after
6085 opening a TCP port.
6086 * server.c (attach_inferior): Print a status notice after
6087 attaching.
6088
60892004-02-29 Daniel Jacobowitz <drow@mvista.com>
d677d77d
DJ
6090
6091 * linux-arm-low.c (arm_get_pc): Print out stop PC in debug mode.
6092
c89dc5d4
DJ
60932004-02-26 Daniel Jacobowitz <drow@mvista.com>
6094
6095 * remote-utils.c (write_enn): Use "E01" instead of "ENN" for the
6096 error packet.
6097 * server.c, target.h: Update copyright years.
6098
4b8dad4a
RM
60992004-02-25 Roland McGrath <roland@redhat.com>
6100
6101 * target.h (struct target_ops): New member `read_auxv'.
6102 * server.c (handle_query): Handle qPart:auxv:read: query using that.
6103 * linux-low.c (linux_read_auxv): New function.
6104 (linux_target_ops): Initialize `read_auxv' member to that.
6105
d7446758
JB
61062004-02-17 Ulrich Weigand <Ulrich.Weigand@de.ibm.com>
6107
6108 Committed by Jim Blandy <jimb@redhat.com>.
6109
6110 * linux-s390-low.c (s390_num_regs): Update.
4b8dad4a 6111 (s390_regmap): Remove control registers. Use __s390x__ predefine
d7446758
JB
6112 instead of GPR_SIZE to distiguish s390 and s390x targets.
6113
5544ad89
DJ
61142004-01-31 Daniel Jacobowitz <drow@mvista.com>
6115
6116 * linux-low.c: Update copyright year.
6117 (check_removed_breakpoint): Clear pending_is_breakpoint.
6118 (linux_set_resume_request, linux_queue_one_thread)
6119 (resume_status_pending_p): New functions.
6120 (linux_continue_one_thread): Use process->resume.
6121 (linux_resume): Only resume threads if there are no pending events.
6122 * linux-low.h (struct process_info): Add resume request
6123 pointer.
6124
2a68b70e
DJ
61252004-01-30 Daniel Jacobowitz <drow@mvista.com>
6126
6127 * regcache.c (new_register_cache): Clear the allocated register
6128 buffer. Suggested by Atsushi Nemoto <anemo@mba.ocn.ne.jp>.
6129
64386c31
DJ
61302003-10-13 Daniel Jacobowitz <drow@mvista.com>
6131
6132 * linux-low.c (linux_resume): Take a struct thread_resume *
6133 argument.
6134 (linux_wait): Update call.
6135 (resume_ptr): New static variable.
6136 (linux_continue_one_thread): Renamed from
6137 linux_continue_one_process. Use resume_ptr.
6138 (linux_resume): Use linux_continue_one_thread.
6139 * server.c (handle_v_cont, handle_v_requests): New functions.
6140 (myresume): New function.
6141 (main): Handle 'v' case.
6142 * target.h (struct thread_resume): New type.
6143 (struct target_ops): Change argument of "resume" to struct
6144 thread_resume *.
6145 (myresume): Delete macro.
6146
c938e9b0
L
61472003-08-08 H.J. Lu <hongjiu.lu@intel.com>
6148
6149 * Makefile.in (install-only): Create dest dir. Support DESTDIR.
6150 (uninstall): Support DESTDIR.
6151
7f313d07
BC
6152Mon Jul 21 20:09:34 UTC 2003 Brendan Conoboy <blc@redhat.com>
6153
6154 * configure.srv: Add xscale*linux copy of arm*linux entry.
6155
3b2fc2ea
DJ
61562003-07-24 Daniel Jacobowitz <drow@mvista.com>
6157
6158 * linux-arm-low.c (arm_reinsert_addr): New function.
6159 (the_low_target): Add arm_reinsert_addr.
6160
1c0a559e
MK
61612003-07-08 Mark Kettenis <kettenis@gnu.org>
6162
6163 * mem-break.c: Remove whitespace at end of file.
6164
43d5792c
DJ
61652003-06-28 Daniel Jacobowitz <drow@mvista.com>
6166
6167 * configure.in: Check whether we need to prototype strerror.
6168 * server.h: Optionally prototype strerror.
6169 * gdbreplay.c (perror_with_name): Use strerror.
6170 * linux-low.c (linux_attach_lwp): Use strerror.
6171 * utils.c (perror_with_name): Use strerror.
6172 * config.in, configure: Regenerated.
6173
c8a86edf
DJ
61742003-06-28 Daniel Jacobowitz <drow@mvista.com>
6175
6176 * linux-sh-low.c (sh_regmap): Fix FP register offsets, reported by
6177 SUGIOKA Toshinobu <sugioka@itonet.co.jp>.
6178
73d37363
DJ
61792003-06-20 Daniel Jacobowitz <drow@mvista.com>
6180
6181 * Makefile.in (SFILES): Update.
6182 * low-hppabsd.c, low-lynx.c, low-nbsd.c, low-sim.c, low-sparc.c,
6183 low-sun3.c: Remove files.
6184
6ad8ae5c
DJ
61852003-06-17 Daniel Jacobowitz <drow@mvista.com>
6186
6187 * linux-low.c: Move comment to linux_thread_alive where it belonged.
6188 (linux_detach_one_process, linux_detach): New functions.
6189 (linux_target_ops): Add linux_detach.
6190 * server.c (main): Handle 'D' packet.
6191 * target.h (struct target_ops): Add "detach" member.
6192 (detach_inferior): Define.
6193
1581182a
MK
61942003-06-13 Mark Kettenis <kettenis@gnu.org>
6195
6196 From Kelley Cook <kelleycook@wideopenwest.com>:
6197 * configure.srv: Accept i[34567]86 variants.
6198
e5379b03
DJ
61992003-06-05 Daniel Jacobowitz <drow@mvista.com>
6200
6201 * linux-low.c (linux_wait_for_event): Correct comment typos.
6202 (linux_resume_one_process): Call check_removed_breakpoint.
6203 (linux_send_signal): New function.
6204 (linux_target_ops): Add linux_send_signal.
6205 * remote-utils.c (putpkt, input_interrupt): Use send_signal instead
6206 of kill.
6207 * target.h (struct target_ops): Add send_signal.
6208
2ff29de4
JB
62092003-05-29 Jim Blandy <jimb@redhat.com>
6210
6211 * linux-low.c (usr_store_inferior_registers): Transfer buf in
6212 PTRACE_XFER_TYPE-sized chunks, not int-sized chunks. Otherwise,
6213 if 'int' is smaller than PTRACE_XFER_TYPE, you end up throwing
6214 away part of the register's value.
6215
254787d4
DJ
62162003-03-26 Daniel Jacobowitz <drow@mvista.com>
6217
6218 * linux-low.c (linux_create_inferior): Use __SIGRTMIN.
6219 (linux_wait_for_event, linux_init_signals): Likewise.
6220
94e10508
DJ
62212003-03-17 Daniel Jacobowitz <drow@mvista.com>
6222
6223 * configure.in: Check for stdlib.h.
6224 * configure: Regenerated.
6225 * config.in: Regenerated.
6226
4c0711e0
DJ
62272003-01-04 Andreas Schwab <schwab@suse.de>
6228
6229 * linux-m68k-low.c (m68k_num_regs): Define to 29 instead of 31.
6230
ef66e766
AC
62312003-01-02 Andrew Cagney <ac131313@redhat.com>
6232
6233 * Makefile.in: Remove obsolete code.
6234
a1358604
DJ
62352002-11-20 Daniel Jacobowitz <drow@mvista.com>
6236
6237 * linux-s390-low.c (s390_regmap): Check GPR_SIZE instead of
6238 defined(PT_FPR0_HI).
6239
23ce3b1c
DJ
62402002-11-17 Stuart Hughes <seh@zee2.com>
6241
6242 * linux-arm-low.c (arm_num_regs): Increase.
6243 (arm_regmap): Include status register.
6244
62452002-11-17 Daniel Jacobowitz <drow@mvista.com>
6246
6247 * linux-low.c (register_addr): Remove incorrect -1 check.
6248
a9fa9f7d
DJ
62492002-08-29 Daniel Jacobowitz <drow@mvista.com>
6250
6251 * linux-low.c (linux_create_inferior): Call setpgid. Return
6252 the new PID.
6253 (unstopped_p, linux_signal_pid): Remove.
6254 (linux_target_ops): Remove linux_signal_pid.
6255 * remote-utils.c (putpkt, input_interrupt): Use signal_pid
6256 global instead of target method.
6257 * target.h (struct target_ops): Remove signal_pid. Update comment
6258 for create_inferior.
6259 * server.c (signal_pid): New variable.
6260 (create_inferior): Set signal_pid. Block SIGTTOU and SIGTTIN in
4b8dad4a 6261 gdbserver. Set the child to be the foreground process group.
a9fa9f7d
DJ
6262 (attach_inferior): Set signal_pid.
6263
17574093
DJ
62642002-08-23 Daniel Jacobowitz <drow@mvista.com>
6265
6266 * ChangeLog: New file, with entries from gdb/ChangeLog after GDB 5.2.
6267
62682002-08-20 Jim Blandy <jimb@redhat.com>
6269
6270 * Makefile.in (LDFLAGS): Allow the configure script to establish a
6271 default for this.
6272
62732002-08-01 Andrew Cagney <cagney@redhat.com>
6274
6275 * Makefile.in: Make chill references obsolete.
6276
62772002-07-24 Kevin Buettner <kevinb@redhat.com>
6278
6279 * configure.in (unistd.h): Add to AC_CHECK_HEADERS list.
6280 * configure: Regenerate.
6281 * config.in: Regenerate.
6282
62832002-07-09 David O'Brien <obrien@FreeBSD.org>
6284
6285 * gdbreplay.c (stdlib.h, unistd.h): Conditionaly include.
6286 (perror_with_name, remote_close, remote_open, expect, play): Static.
6287
62882002-07-04 Michal Ludvig <mludvig@suse.cz>
6289
4b8dad4a 6290 * linux-x86-64-low.c (x86_64_regmap): Make it an array of
17574093
DJ
6291 byte offsets instead of an array of indexes.
6292 (x86_64_store_gregset, x86_64_store_fpregset): Parameter made const.
6293
62942002-06-13 Daniel Jacobowitz <drow@mvista.com>
6295
6296 * regcache.c: Add comment.
6297
62982002-06-11 Daniel Jacobowitz <drow@mvista.com>
6299
6300 * thread-db.c: New file.
6301 * proc-service.c: New file.
6302 * acinclude.m4: New file.
6303 * Makefile.in: Add GDBSERVER_LIBS, gdb_proc_service_h,
6304 proc-service.o, and thread-db.o.
6305 (linux-low.o): Add USE_THREAD_DB.
6306 * acconfig.h: Add HAVE_PRGREGSET_T, HAVE_PRFPREGSET_T,
6307 HAVE_LWPID_T, HAVE_PSADDR_T, and PRFPREGSET_T_BROKEN.
6308 * aclocal.m4: Regenerated.
6309 * config.in: Regenerated.
6310 * configure: Regenerated.
6311 * configure.in: Check for proc_service.h, sys/procfs.h,
6312 thread_db.h, and linux/elf.h headrs.
6313 Check for lwpid_t, psaddr_t, prgregset_t, prfpregset_t, and
6314 PRFPREGSET_T_BROKEN. Introduce srv_thread_depfiles and USE_THREAD_DB.
6315 Check for -lthread_db and thread support.
6316 * configure.srv: Enable thread_db support for ARM, i386, MIPS,
6317 PowerPC, and SuperH.
6318 * i387-fp.c: Constify arguments.
6319 * i387-fp.h: Likewise.
6320 * inferiors.c: (struct thread_info): Renamed from
6321 `struct inferior_info'. Remove PID member. Use generic inferior
6322 list header. All uses updated.
6323 (inferiors, signal_pid): Removed.
6324 (all_threads): New variable.
6325 (get_thread): Define.
6326 (add_inferior_to_list): New function.
6327 (for_each_inferior): New function.
6328 (change_inferior_id): New function.
6329 (add_inferior): Removed.
6330 (remove_inferior): New function.
6331 (add_thread): New function.
6332 (free_one_thread): New function.
6333 (remove_thread): New function.
6334 (clear_inferiors): Use for_each_inferior and free_one_thread.
6335 (find_inferior): New function.
6336 (find_inferior_id): New function.
6337 (inferior_target_data): Update argument type.
6338 (set_inferior_target_data): Likewise.
6339 (inferior_regcache_data): Likewise.
6340 (set_inferior_regcache_data): Likewise.
6341 * linux-low.c (linux_bp_reinsert): Remove.
6342 (all_processes, stopping_threads, using_thrads)
6343 (struct pending_signals, debug_threads, pid_of): New.
6344 (inferior_pid): Replace with macro.
6345 (struct inferior_linux_data): Remove.
6346 (get_stop_pc, add_process): New functions.
6347 (linux_create_inferior): Restore SIGRTMIN+1 before calling exec.
6348 Use add_process and add_thread.
6349 (linux_attach_lwp): New function, based on old linux_attach. Use
6350 add_process and add_thread. Set stop_expected for new threads.
6351 (linux_attach): New function.
6352 (linux_kill_one_process): New function.
6353 (linux_kill): Kill all LWPs.
6354 (linux_thread_alive): Use find_inferior_id.
6355 (check_removed_breakpoints, status_pending_p): New functions.
6356 (linux_wait_for_process): Renamed from linux_wait_for_one_inferior.
6357 Update. Use WNOHANG. Wait for cloned processes also. Update process
6358 struct for the found process.
6359 (linux_wait_for_event): New function.
6360 (linux_wait): Use it. Support LWPs.
6361 (send_sigstop, wait_for_sigstop, stop_all_processes)
6362 (linux_resume_one_process, linux_continue_one_process): New functions.
6363 (linux_resume): Support LWPs.
6364 (REGISTER_RAW_SIZE): Remove.
6365 (fetch_register): Use register_size instead. Call supply_register.
6366 (usr_store_inferior_registers): Likewise. Call collect_register.
6367 Fix recursive case.
6368 (regsets_fetch_inferior_registers): Improve error message.
6369 (regsets_store_inferior_registers): Add debugging.
6370 (linux_look_up_symbols): Call thread_db_init if USE_THREAD_DB.
6371 (unstopped_p, linux_signal_pid): New functions.
6372 (linux_target_ops): Add linux_signal_pid.
6373 (linux_init_signals): New function.
6374 (initialize_low): Call it. Initialize using_threads.
6375 * regcache.c (inferior_regcache_data): Add valid
6376 flag.
6377 (get_regcache): Fetch registers lazily. Add fetch argument
6378 and update all callers.
6379 (regcache_invalidate_one, regcache_invalidate): New
6380 functions.
6381 (new_register_cache): Renamed from create_register_cache.
6382 Return the new regcache.
6383 (free_register_cache): Change argument to a void *.
6384 (registers_to_string, registers_from_string): Call get_regcache
6385 with fetch flag set.
6386 (register_data): Make static. Pass fetch flag to get_regcache.
6387 (supply_register): Call get_regcache with fetch flag clear.
6388 (collect_register): Call get_regcache with fetch flag set.
6389 (collect_register_as_string): New function.
6390 * regcache.h: Update.
6391 * remote-utils.c (putpkt): Flush after debug output and use
6392 stderr.
6393 Handle input interrupts while waiting for an ACK.
6394 (input_interrupt): Use signal_pid method.
6395 (getpkt): Flush after debug output and use stderr.
6396 (outreg): Use collect_register_as_string.
6397 (new_thread_notify, dead_thread_notify): New functions.
6398 (prepare_resume_reply): Check using_threads. Set thread_from_wait
6399 and general_thread.
6400 (look_up_one_symbol): Flush after debug output.
6401 * server.c (step_thread, server_waiting): New variables.
6402 (start_inferior): Don't use signal_pid. Update call to mywait.
6403 (attach_inferior): Update call to mywait.
6404 (handle_query): Handle qfThreadInfo and qsThreadInfo.
6405 (main): Don't fetch/store registers explicitly. Use
6406 set_desired_inferior. Support proposed ``Hs'' packet. Update
6407 calls to mywait.
6408 * server.h: Update.
6409 (struct inferior_list, struct_inferior_list_entry): New.
6410 * target.c (set_desired_inferior): New.
6411 (write_inferior_memory): Constify.
6412 (mywait): New function.
6413 * target.h: Update.
6414 (struct target_ops): New signal_pid method.
6415 (mywait): Removed macro, added prototype.
6416
6417 * linux-low.h (regset_func): Removed.
6418 (regset_fill_func, regset_store_func): New.
6419 (enum regset_type): New.
6420 (struct regset_info): Add type field. Use new operation types.
6421 (struct linux_target_ops): stop_pc renamed to get_pc.
6422 Add decr_pc_after_break and breakpoint_at.
6423 (get_process, get_thread_proess, get_process_thread)
6424 (strut process_info, all_processes, linux_attach_lwp)
6425 (thread_db_init): New.
6426
6427 * linux-arm-low.c (arm_get_pc, arm_set_pc,
6428 arm_breakpoint, arm_breakpoint_len, arm_breakpoint_at): New.
6429 (the_low_target): Add new members.
6430 * linux-i386-low.c (i386_store_gregset, i386_store_fpregset)
6431 (i386_store_fpxregset): Constify.
6432 (target_regsets): Add new kind identifier.
6433 (i386_get_pc): Renamed from i386_stop_pc. Simplify.
6434 (i386_set_pc): Add debugging.
6435 (i386_breakpoint_at): New function.
6436 (the_low_target): Add new members.
6437 * linux-mips-low.c (mips_get_pc, mips_set_pc)
6438 (mips_breakpoint, mips_breakpoint_len, mips_reinsert_addr)
6439 (mips_breakpoint_at): New.
6440 (the_low_target): Add new members.
6441 * linux-ppc-low.c (ppc_get_pc, ppc_set_pc)
6442 (ppc_breakpoint, ppc_breakpoint_len, ppc_breakpoint_at): New.
6443 (the_low_target): Add new members.
6444 * linux-sh-low.c (sh_get_pc, sh_set_pc)
6445 (sh_breakpoint, sh_breakpoint_len, sh_breakpoint_at): New.
6446 (the_low_target): Add new members.
6447 * linux-x86-64-low.c (target_regsets): Add new kind
6448 identifier.
6449
64502002-05-15 Daniel Jacobowitz <drow@mvista.com>
6451
6452 From Martin Pool <mbp@samba.org>:
6453 * server.c (gdbserver_usage): New function.
6454 (main): Call it.
6455
64562002-05-14 Daniel Jacobowitz <drow@mvista.com>
6457
6458 * mem-break.c (reinsert_breakpoint_by_bp): Correct typo
6459 stop_at -> stop_pc.
6460
64612002-05-04 Andrew Cagney <ac131313@redhat.com>
6462
6463 * Makefile.in: Remove obsolete code.
6464
64652002-04-24 Michal Ludvig <mludvig@suse.cz>
6466
6467 * linux-low.c (regsets_fetch_inferior_registers),
6468 (regsets_store_inferior_registers): Removed cast to int from
6469 ptrace() calls.
6470 * regcache.h: Added declaration of struct inferior_info.
6471
64722002-04-20 Daniel Jacobowitz <drow@mvista.com>
6473
6474 * inferiors.c (struct inferior_info): Add regcache_data.
6475 (add_inferior): Call create_register_cache.
6476 (clear_inferiors): Call free_register_cache.
6477 (inferior_regcache_data, set_inferior_regcache_data): New functions.
6478 * regcache.c (struct inferior_regcache_data): New.
6479 (registers): Remove.
6480 (get_regcache): New function.
6481 (create_register_cache, free_register_cache): New functions.
6482 (set_register_cache): Don't initialize the register cache here.
6483 (registers_to_string, registers_from_string, register_data): Call
6484 get_regcache.
6485 * regcache.h: Add prototypes.
6486 * server.h: Likewise.
6487
64882002-04-20 Daniel Jacobowitz <drow@mvista.com>
6489
6490 * mem-break.c: New file.
6491 * mem-break.h: New file.
6492 * Makefile.in: Add mem-break.o rule; update server.h
6493 dependencies.
6494 * inferiors.c (struct inferior_info): Add target_data
6495 member.
6496 (clear_inferiors): Free target_data member if set.
6497 (inferior_target_data, set_inferior_target_data): New functions.
6498 * linux-i386-low.c (i386_breakpoint, i386_breakpoint_len)
6499 (i386_stop_pc, i386_set_pc): New. Add to the_low_target.
6500 * linux-low.c (linux_bp_reinsert): New variable.
6501 (struct inferior_linux_data): New.
6502 (linux_create_inferior): Use set_inferior_target_data.
6503 (linux_attach): Likewise. Call add_inferior.
6504 (linux_wait_for_one_inferior): New function.
6505 (linux_wait): Call it.
6506 (linux_write_memory): Add const.
6507 (initialize_low): Call set_breakpoint_data.
6508 * linux-low.h (struct linux_target_ops): Add breakpoint
6509 handling members.
6510 * server.c (attach_inferior): Remove extra add_inferior
6511 call.
6512 * server.h: Include mem-break.h. Update inferior.c
6513 prototypes.
6514 * target.c (read_inferior_memory)
6515 (write_inferior_memory): New functions.
6516 * target.h (read_inferior_memory)
6517 (write_inferior_memory): Change macros to prototypes.
6518 (struct target_ops): Update comments. Add const to write_memory
6519 definition.
6520
65212002-04-11 Daniel Jacobowitz <drow@mvista.com>
6522
6523 * linux-low.c (usr_store_inferior_registers): Support
6524 registers which are allowed to fail to store.
6525 * linux-low.h (linux_target_ops): Likewise.
6526 * linux-ppc-low.c (ppc_regmap): Support FPSCR.
6527 (ppc_cannot_store_register): FPSCR may not be storable.
6528
65292002-04-09 Daniel Jacobowitz <drow@mvista.com>
6530
6531 * server.h: Include <string.h> if HAVE_STRING_H.
6532 * ChangeLog: Correct paths in last ChangeLog entry.
6533
65342002-04-09 Daniel Jacobowitz <drow@mvista.com>
6535
6536 * linux-low.h: Remove obsolete prototypes.
6537 (struct linux_target_ops): New.
6538 (extern the_low_target): New.
6539 * linux-low.c (num_regs, regmap): Remove declarations.
6540 (register_addr): Use the_low_target explicitly.
6541 (fetch_register): Likewise.
6542 (usr_fetch_inferior_registers): Likewise.
6543 (usr_store_inferior_registers): Likewise.
6544 * linux-arm-low.c (num_regs): Remove.
6545 (arm_num_regs): Define.
6546 (arm_regmap): Renamed from regmap, made static.
6547 (arm_cannot_fetch_register): Renamed from cannot_fetch_register,
6548 made static.
6549 (arm_cannot_store_register): Renamed from cannot_store_register,
6550 made static.
6551 (the_low_target): New.
6552 * linux-i386-low.c (num_regs): Remove.
6553 (i386_num_regs): Define.
6554 (i386_regmap): Renamed from regmap, made static.
6555 (i386_cannot_fetch_register): Renamed from cannot_fetch_register,
6556 made static.
6557 (i386_cannot_store_register): Renamed from cannot_store_register,
6558 made static.
6559 (the_low_target): New.
6560 * linux-ia64-low.c (num_regs): Remove.
6561 (ia64_num_regs): Define.
6562 (ia64_regmap): Renamed from regmap, made static.
6563 (ia64_cannot_fetch_register): Renamed from cannot_fetch_register,
6564 made static.
6565 (ia64_cannot_store_register): Renamed from cannot_store_register,
6566 made static.
6567 (the_low_target): New.
6568 * linux-m68k-low.c (num_regs): Remove.
6569 (m68k_num_regs): Define.
6570 (m68k_regmap): Renamed from regmap, made static.
6571 (m68k_cannot_fetch_register): Renamed from cannot_fetch_register,
6572 made static.
6573 (m68k_cannot_store_register): Renamed from cannot_store_register,
6574 made static.
6575 (the_low_target): New.
6576 * linux-mips-low.c (num_regs): Remove.
6577 (mips_num_regs): Define.
6578 (mips_regmap): Renamed from regmap, made static.
6579 (mips_cannot_fetch_register): Renamed from cannot_fetch_register,
6580 made static.
6581 (mips_cannot_store_register): Renamed from cannot_store_register,
6582 made static.
6583 (the_low_target): New.
6584 * linux-ppc-low.c (num_regs): Remove.
6585 (ppc_num_regs): Define.
6586 (ppc_regmap): Renamed from regmap, made static.
6587 (ppc_cannot_fetch_register): Renamed from cannot_fetch_register,
6588 made static.
6589 (ppc_cannot_store_register): Renamed from cannot_store_register,
6590 made static.
6591 (the_low_target): New.
6592 * linux-s390-low.c (num_regs): Remove.
6593 (s390_num_regs): Define.
6594 (s390_regmap): Renamed from regmap, made static.
6595 (s390_cannot_fetch_register): Renamed from cannot_fetch_register,
6596 made static.
6597 (s390_cannot_store_register): Renamed from cannot_store_register,
6598 made static.
6599 (the_low_target): New.
6600 * linux-sh-low.c (num_regs): Remove.
6601 (sh_num_regs): Define.
6602 (sh_regmap): Renamed from regmap, made static.
6603 (sh_cannot_fetch_register): Renamed from cannot_fetch_register,
6604 made static.
6605 (sh_cannot_store_register): Renamed from cannot_store_register,
6606 made static.
6607 (the_low_target): New.
6608 * linux-x86-64-low.c (x86_64_regmap): Renamed from regmap.
6609 (the_low_target): New.
6610
66112002-04-09 Daniel Jacobowitz <drow@mvista.com>
6612
6613 * Makefile.in: Add stamp-h target.
6614 * configure.in: Create stamp-h.
6615 * configure: Regenerated.
6616
66172002-04-09 Daniel Jacobowitz <drow@mvista.com>
6618
6619 * inferiors.c: New file.
6620 * target.c: New file.
6621 * target.h: New file.
6622 * Makefile.in: Add target.o and inferiors.o. Update
6623 dependencies.
6624 * linux-low.c (inferior_pid): New static variable,
6625 moved from server.c.
6626 (linux_create_inferior): Renamed from create_inferior.
6627 Call add_inferior. Return 0 on success instead of a PID.
6628 (linux_attach): Renamed from myattach.
6629 (linux_kill): Renamed from kill_inferior. Call clear_inferiors ().
6630 (linux_thread_alive): Renamed from mythread_alive.
6631 (linux_wait): Renamed from mywait. Call clear_inferiors () if the
6632 child dies.
6633 (linux_resume): Renamed from myresume. Add missing ``return 0''.
6634 (regsets_store_inferior_registers): Correct error message.
6635 Add missing ``return 0''.
6636 (linux_fetch_registers): Renamed from fetch_inferior_registers.
6637 (linux_store_registers): Renamed from store_inferior_registers.
6638 (linux_read_memory): Renamed from read_inferior_memory.
6639 (linux_write_memory): Renamed from write_inferior_memory.
6640 (linux_target_ops): New structure.
6641 (initialize_low): Call set_target_ops ().
6642 * remote-utils.c (unhexify): New function.
6643 (hexify): New function.
6644 (input_interrupt): Send signals to ``signal_pid''.
6645 * server.c (inferior_pid): Remove.
6646 (start_inferior): Update create_inferior call.
6647 (attach_inferior): Call add_inferior.
6648 (handle_query): New function.
6649 (main): Call handle_query for `q' packets.
6650 * server.h: Include "target.h". Remove obsolete prototypes.
6651 Add prototypes for "inferiors.c", "target.c", hexify, and unhexify.
6652
66532002-04-09 Daniel Jacobowitz <drow@mvista.com>
6654
6655 * Makefile.in: Add WARN_CFLAGS. Update configury
6656 dependencies.
6657 * configure.in: Check for <string.h>
6658 * configure: Regenerate.
6659 * config.in: Regenerate.
6660 * gdbreplay.c: Include needed system headers.
6661 (remote_open): Remove strchr prototype.
6662 * linux-low.h: Correct #ifdef to HAVE_LINUX_USRREGS.
6663 * regcache.c (supply_register): Change buf argument to const void *.
6664 (supply_register_by_name): Likewise.
6665 (collect_register): Change buf argument to void *.
6666 (collect_register_by_name): Likewise.
6667 * regcache.h: Add missing prototypes.
6668 * remote-utils.c: Include <arpa/inet.h> for inet_ntoa.
6669 * server.c (handle_query): New function.
6670 (attached): New static variable, moved out of main.
6671 (main): Quiet longjmp clobber warnings.
6672 * server.h: Add ATTR_NORETURN and ATTR_FORMAT. Update prototypes.
6673 * utils.c (error): Remove NORETURN.
6674 (fatal): Likewise.